/*
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/
*/




/*Menu Area*/
.custom .menu { background: #4e86ae; border: 0; }

.custom .menu li.tab a, li.tab { border: 0; }




/*Hide "Comments Closed" Text on Pages*/
.custom .comments_closed p {
  display: none;
}

/*Header Color Full-Width*/
.custom #header_area {background:#fcfbea;}
	.custom #header_area .page {background:transparent;}
		.custom #header {border-bottom:0;}

/*Change Size of Category Description Font*/
.catdesc p { font-size: 1.5em; margin-top: 5px;}

/*Prettier Header/Nav Area*/
.custom #nav_area {background:#4e86ae; border-top:1px solid #DDDDDD; padding-top:0px;}
	.custom #nav_area .page {background:transparent;}
		.custom ul#tabs {border-bottom:0; border-color:#DBD4B7;}
			.custom ul#tabs li {border-color:#DBD4B7; background-color:#E6DEC0;}

/*Remove Padding from Header*/
.custom #header {padding:0px;}
			.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#fff;}

/*Full-Width Teasers*/
.custom .teaser {
width: 100%;
margin-top: 2em;
padding-top: 2em;
border-top: 1px dotted #bbb;
text-align: justify;
}
.custom .teasers_box {
padding-top: 0;
padding-bottom:0;
border-top: 0;
}

/*Photo Attribution Link*/
.custom .photo_right {
	background: #eee;
	border: 0.071em solid #ccc;
	color: #888;
	margin-bottom: 1.571em;
	padding: 0.714em;
}

.custom .photo_right {
	clear: right;
	float: right;
	margin-left: 1.571em;
	text-align: right;
}



/*Footer Background*/
.custom #footer_area {background:#9EC0E0; padding:0.5em 0; border-top:1px solid #bbd;}
	.custom #footer_area .page {background:transparent;}
		.custom #footer {border-top:0;}

/*Footer Links Styling*/
.custom #footer {text-align:left; color:#333;}

.custom #footer a {
border-bottom:1px dotted #4e86ae;
color:#fcfbea;
}



/*Text Link Formatting
.custom .format_text a:hover {border: 0; color: #2F497B ; background: #c3d9d6;}
*/


/*Sidebar Text*/
.custom .sidebar h3 {
background-color: #4e86ae; 
-moz-border-radius: 4px;&nbsp;
padding: 0.1em 0.1em 0.3em 0.5em; 
font-size:16px; color:#ffffff;
}

/*OLD SIDEBAR HEADING
.custom .sidebar h3 {
border-bottom:0.5px dotted #4e86ae;
border-top:0.5px dotted #4e86ae;
color:#333;
font-size:18px;
font-weight:bold;
padding-left:5px;
}*/


/* My own  sitemap and archives page */
.custom .sitemap h3 {margin-top: 0;}
.custom .sitemap ul {font-size: .85em; }
.custom .sitemapl { float: left; width: 40%;}
.custom .sitemapr { float: right; width: 60%;}


/*Float Left WP Post Image*/
.wp-post-image {float:left;
border: 1px solid #cdcdcd; 
padding: 5px; 
background-color: #ffffff;
margin-right: 1.8em;
margin-bottom: 1.8em;
}



/*Header Size 4*/
.custom h4 {
color:#4E86AE;
font-size:18px;
}

/*Category Description Styling*/
.catdesc {
	margin-top: 100px;
	margin-left: 11px;
	font-style: italic;
}

#archive_intro h1 {
    margin-top:-90px;
}