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

.custom {background:#999 url(images/body_bg.jpg) repeat;}
	.custom #container {border:0.2em solid #333; padding:0.3em; background:#666; margin:2em auto;}
		.custom #page {background:#ddd; padding:0.5em;}

a {color:#294973;}
a:hover {color:#666;}

/* === HEADER === */
.custom #header {background:#fff url(images/grey_grad.jpg) left top repeat-x; border-bottom:0; border-left:1px solid #fff;}


/* === NAV === */
/* page nav */
.custom #page_nav {position:relative;}

.custom ul.menu {border-bottom:none; border-left:none;}

.custom form.search_form {position:absolute; right:0; top:0.5em;}
	.custom form.search_form input#s {font-size:1.2em; padding:0.3em; width:14em;}

/* category nav */
.custom #cat_nav {}
.custom #cat_nav:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}

.custom #cat_nav ul {list-style:none; background:#294973 url(images/blue_grad.jpg) left bottom repeat-x; float:left; width:100%;}
.custom #cat_nav ul:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
	.custom #cat_nav li {float:left; margin:0 1.5em;}
		.custom #cat_nav li a {display:block; line-height:1em; color:#fff; text-transform:uppercase; letter-spacing:2px; font-size:1.2em; padding:1em 0.818em}
		.custom #cat_nav li a:hover {text-decoration:none; background:#ddd; color:#111;}


/* === CONTENT === */
.custom #content_box {padding-top:0.5em;}

.custom .post_box {border:0.1em solid #ccc !important; background:#f5f5f5; margin-right:1.1em; padding:0.4em; margin:0 0 1.1em;}
	.custom .post_box .headline_area {background:#fff; margin-bottom:0; padding:1.1em;}
		.custom .entry-title a:hover {color:#111;}
	.custom .post_box .format_text {background:#fff; padding:1.1em 1.1em 0;}

.custom .teasers_box {border-top:0; margin:0; width:auto; padding:0 0 1.1em;}
	.custom .teaser {border:0.1em solid #ccc; background:#f5f5f5; padding:0.4em; width:29.9em;}
		.custom .teaser_inner {padding:1.1em 1.1em 0; background:#fff;}
			.custom h3.teaser_cat {border:1px solid #ccc; background:#f5f5f5 url(images/grey_grad.jpg) left top repeat-x; padding:0.8em 0.5em 0.5em; font-size:1.8em; text-align:center; font-variant:small-caps; letter-spacing:2px; margin-bottom:1.1em;}
				.custom h3.teaser_cat a {color:#1E3554;}
				.custom h3.teaser_cat a:hover {color:#294973;}
			.custom .teaser .format_teaser {margin-bottom:0; padding-bottom:1.5em;}
				.custom .teaser .format_teaser img.alignleft {margin:0 0.833em 0.2em 0;}
		.custom a.teaser_link {padding:0 1.1em 1.1em; background:#fff; display:block;}

.custom #comments {border:0.1em solid #ccc; background:#f5f5f5; padding:0.4em; margin:0 0 1.1em;}
	.custom .comments_intro {background:#294973 url(images/blue_grad.jpg) left bottom repeat-x; margin:0; padding:1.1em; border:0.4em solid #fff;}
		.custom .comments_intro p {color:#ddd;}
			.custom .comments_intro p span {color:#fff;}
			.custom .comments_intro p a {color:#fff;}
			.custom .comments_intro p a:hover {text-decoration:none;}
	.custom dl#comment_list {border-top:0; background:#fff; padding:0.4em;}
		.custom dl#comment_list dt, .custom dl#comment_list dd {border-bottom:0;}
		.custom dl#comment_list dt.odd, .custom dl#comment_list dd.odd {background:#eee;}
		.custom dl#comment_list dd {margin-bottom:1.1em;}
		.custom dl#comment_list dd.odd code {background:#fff;}
		.custom dl#comment_list .bypostauthor {background:#A8B9CE;}
	
/* === SIDEBAR === */
.custom #image_box {border:0.1em solid #ccc;}

.custom ul.sidebar_list {padding:0;}

.custom li.widget {width:auto; border:0.1em solid #ccc; background:#f5f5f5; padding:0.4em; margin-bottom:1.1em;}
	.custom li.widget h3 {background:#294973 url(images/blue_grad.jpg) left bottom repeat-x; border:0.3em solid #fff; color:#fff; margin-bottom:0; border-bottom-width:1em; padding:0.4em; text-align:center;}
	.custom li.widget p, .custom li.widget ul {background:#fff; margin-bottom:0; padding:0 0.786em 1.429em;}

.custom li.widget p.sub {margin-bottom:0; padding-bottom:0;}
.custom li.sub_email {}
	.custom li.sub_email p {padding:0; text-align:right; font-size:larger; font-style:italic;}
	.custom li.sub_email form p {font-size:smaller;}
	.custom li.sub_email form p input {width:20em;}
.custom li.sub_rss {padding-left:1.1em; margin-top:1em;}
	.custom li.sub_rss a {background:url(images/rss.png) left center no-repeat; display:block; line-height:48px; padding-left:58px; font-size:larger; font-style:italic;}

/* === FOOTER === */
.custom #footer {border-top:0; background:#fff url(images/grey_grad.jpg) left top repeat-x; border-left:1px solid #fff;}