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

/*---:[ #header styles ]:---*/

.custom #header #logo { font-weight: bold; }

	.custom #header #logo a { color: #111; }

	.custom #header #logo a:hover { color: #2361a1; }
	
.custom #header #tagline { font-weight: normal; color: #333942; }

.custom #tagline {  font; color: #414650;
}

.custom h1#tagline {
	color: #606060;
}



body.custom {
	background-color: #333942;
}

.custom #container {
	margin:0 auto;
	width: 940px;
	padding: 0;
}



.custom #page {
	background-color: #b7bcae;
	width: 920px;
}

.custom #content {
	float:left;
	width: 748px;
	border-right: 2px solid #ddd;
}
.custom #content_box {
	background: transparent url(images/dot-ddd.gif) repeat-y scroll 64em 0;
	width:100%;
}



/*---:[ sidebar styles ]:---*/

.custom #sidebars {
	float:right;
	width: 170px;
	border-left: none;
}



/*---:[ nav menu styles ]:---*/

.custom ul#tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }

	.custom ul#tabs li { margin-bottom: -0.1em; border: 1px solid #ddd; border-left: 0; float: left;
	background-color: #afc0cb;
}

	.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #7e9aa6; border-bottom: 0;
	color: #94b0bd;
}
	
	.custom ul#tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; }

	.custom ul#tabs li a:hover { color: #111; text-decoration: underline; }
	
	.custom ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }
		
	.custom ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }
	
	.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
		
	.custom ul#tabs li.rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }



.custom #comments {
	margin-left:0;
	margin-right:2.3em;
}
	
.cunstom .format_text .to_comments span {
font-size: inherit;
}


	
	
/*---:[ post navigation links ]:---*/

.custom .prev_next { text-transform: uppercase; letter-spacing: 2px; border-top: 2px solid #ddd; color: #666; clear: both; }

	.custom .prev_next .next { text-align: right; }

	.custom .prev_next .floated { float: left; }

	.custom .prev_next a { text-decoration: none; }
	
	.custom .prev_next a:hover { text-decoration: underline; }
	
	.custom .post_nav a { text-transform: none; letter-spacing: normal; }

