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

body.custom {
	background: #000 url('images/body-bg.jpg') repeat-y 50% 0;
}
.custom #container {
	margin-top: 7em;
	margin-bottom: 2em;
}
.custom #page {
	background: #fff;
	margin-top: 210px;
}
/*---:[ #header styles ]:---*/
.custom #logo a {
	display:block;
	height:197px;
	width:485px;
	background:url(images/logo.png) center no-repeat;
	text-indent:-9999px;
	padding-left: 355px;
}
/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline {
	text-indent: -9999px;
}
.custom body {
	padding-top: 141px;
}
.custom #header {
	margin-top: -241px;
	border-bottom: 0px double #ddd;
}
/*---:[ global elements ]:---*/
.custom a {
	text-decoration: none;
	color: #2a6145;
}
.custom a:hover {
	text-decoration: underline;
}
/*---:[ universal image classes ]:---*/
.custom img.frame {
	background: #eee;
	border-style: solid;
	border-color: #ddd;
}
/*---:[ headlines and bylines ]:---*/
.custom h2 a {
	color: #111;
}
.custom h2 a:hover {
	color: #F7A516;
	text-decoration: none;
}
/*---:[ core layout elements ]:---*/
.custom #content_box {
	background: none;
}
/*.custom #sidebar_1 {
	background-image: url(images/top.gif);
	background-repeat: no-repeat;
	background-position: top;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
*/
/*---:[ nav menu styles ]:---*/
.custom ul#tabs li {
	background-color: #34836c;
	border: 1px solid #2a6145;
}
.custom ul#tabs li a {
	color: #fff;
}
.custom ul#tabs li.current_page_item a, ul#tabs li.current-cat a {
	color: #000;
}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat {
	background: #fff;
	border-bottom: 0;
}
/*---:[ content styles ]:---*/
.custom .format_text a {
	text-decoration: underline;
}
.custom .format_text a:hover {
	text-decoration: none;
}
.format_text .to_comments a {
	text-decoration: none;
}
/*---:[ sidebar styles ]:---*/
.custom ul.sidebar_list {
	list-style: none;
	background-color: /*#f6f5d5*/ #efebcb;
}
/*.custom .sidebar ul.sidebar_list {
	background-attachment: scroll;
	background-image: url(images/topR.gif);
	background-repeat: no-repeat;
	background-position: right top;
}*/
.custom .sidebar h3 {
	letter-spacing: 2px;
	color: #393939;
	text-transform: uppercase;
	font-weight: bold;
}
