/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the \"custom\" class, like so: <body class=\"custom\">. You can use 
the \"custom\" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the \"custom\" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User\'s Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/


/*
To add custom background, change image url. */

body.custom {
    background: #fcfcf3 url(http://www.texaschicksblogsandpics.com/wp-content/uploads/2009/11/tan-background.jpg) 50% 0 repeat-y;
    background-attachment: scroll;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
}

/* To change widget font size and color. */
.custom .sidebar h3 {color: #634624; font-size: 1.3em;}

/* To remove tagline and logo from . */

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }



/* To remove padding from above header. */
.custom #header { padding: 0; }


/*
To change content background color, change hex number. */
.custom #page { background: #fcfcf3; }


/* Featured Post Formatting */
.custom #feature_box { font-color: #111111; background: #e4ddbf; margin: 1px 1px 1px 1px; }
.custom #feature_box h2 { font-size: 2.2em;  margin: 0 0 0px 0; padding: 0px 0px 0px 0px; }
.custom #feature_box h2 a { color: #6e46224; font-style: bold;  text-decoration: none; }
.custom #feature_box h2 a:hover { color: #6e4624; }
.custom #feature_box p { font-size: 1.4em; line-height:1.571em; text-align: justify;}
.custom #feature_box li { font-size: 1.4em; line-height:1.571em; text-align: justify;}
.custom #feature_box { padding: 0px 0px 0px 0px; }
.custom #feature_box img {margin: 0 0 0 0; }

/*
To change link color.*/
.custom a { color:#8eb6b4; font-weight:bold; }
.custom a:hover { color:#6e4624; font-weight:bold; }

/*
To change menu tab color.*/
.custom #tabs li {
   background: #fcfcf3;
}

/*to customize nav menu font.*/
.custom ul#tabs
To change navigation tab padding.*/
.custom #tabs {padding:  45px 45px 45px 45px; }


/*
To remove borders around menu tabs.*/
.custom #tabs, .custom #tabs li {
  border-color: #fcfcf3;
}



/*
To modify archives a la Mattflies.com*/
.custom .archive h3 {margin-top: 0;}
.custom .archive ul {font-size: .85em; }
.custom .archivel { float: left; width: 40%;}
.custom .archiver { float: right; width: 60%;}

/*
To remove category titles on category pages a la Mattflies.com*/
#archive_info {display:none;}

/*
To change post headline color.*/


.custom h2 {color: #8eb6b4; font-weight: bold }
.custom h2 a {color: #8eb6b4; }
.custom h2 a:active {color: #8eb6b4; }
.custom h2 a:visited {color: #8eb6b4; }
.custom h2 a:hover {color: #634624; font-weight: bold }

.custom h1 {color: #8eb6b4; font-weight: bold }
.custom h1 a {color: #8eb6b4; }
.custom h1 a:active {color: #8eb6b4; }
.custom h1 a:visited {color: #8eb6b4; }
.custom h1 a:hover {color: #6e4624; font-weight: bold  }

.custom h3 {color: #8eb6b4; font-weight: bold }
.custom h3 a {color: #8eb6b4; }
.custom h3 a:active {color: #8eb6b4; }
.custom h3 a:visited {color: #8eb6b4; }
.custom h3 a:hover {color: #6e4624; font-weight: bold  }

/* To change color of body text. */
body.custom { color: #634624}




/* To change border around multi-media box. */
.custom #image_box{background: none;}
.custom #multimedia_box{
	background: none; }
}

/* To remove gray lines from teasers boxes.*/
.custom .teaser {
border-top:none;}

/* to add 3 125s under mm  box*/
.custom div.mmadblock img { padding: 4px 4px 6px 4px ; background-color: #fff; }
.custom .centermm {text-align: center;}

/*To ad banner above content*/
.custom .bannerunderheader {text-align: center;}



/*to remove borders from menu line*/
custom .menu {
	border: none; }
}

input: focus, textarea: focus {
	padding: .1em; }
}