/*
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: #4B4B4B; }
	
	.custom #container { margin-top: 0em; margin-bottom: 2em; padding: 0.2em; background: #CFCD9C; border: 0.3em solid #BEBD90; }

		.custom #page { background: #fff; }

/*---:[ START Custom Header Logo In Background ]:---*/

.custom #header #logo a { display: block; height: 137px; width: 925px; background: url('/wp-content/themes/thesis/custom/images/ccheader2.jpg') no-repeat; outline: none; }

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

.custom #header #tagline { height: 0; }

.custom #header { padding-right:10px; padding-top:0px; padding-left: 0px; padding-bottom: 10px; }

/*---:[ END Custom Header Logo In Background ]:---*/

.custom .teaser_right { border-top: 1px dotted #bbb; clear: both; padding-top: 22px; margin-top: 22px; width: 100%; }
.custom .teaser { clear: both; width: 100%; }

/*---:[ Hide closed comment notice on single post pages]:---*/

.comments_closed p  { display: none; }

/*---:[ Hide link to comments/closed comment notice on excerpts]:---*/

.format_text .to_comments  {display: none; } 


.custom input, textarea {
background:#EEEEEE none repeat scroll 0 0;
border-color:#AAAAAA #DDDDDD #DDDDDD #AAAAAA;
border-style:solid;
border-width:1px;
color:#111111;
font-size:12pt;
}

.custom #footer {
color: #666666;
}

.custom #footer a {
color: #666666;
}

.custom .headline_meta {
color:#666666;
}

.custom .teaser .teaser_date {
color:#666666;
}

.custom .teasers_box {
width:660px;
}

.custom .teaser_right {
float: none;
}

.sidebar_header {
background-color:#3A6E00;
border-bottom-color:#666666;
border-bottom-style:solid;
border-bottom-width:2px;
color:#FFFFFF !important;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
padding-top:5px;
}

.SimpleSideNav h3 {
background-color:#3A6E00;
border-bottom-color:#666666;
border-bottom-style:solid;
border-bottom-width:2px;
color:#FFFFFF !important;
padding-bottom:5px;
padding-left:5px;
padding-right:5px;
padding-top:5px;
}

.SimpleSideNav li {
border-bottom:1px dotted #999;
padding-bottom: 3px;
margin-left:3px;
}

.custom blockquote {
border-left:2px solid #CCCCCC;
color:#333333;
}

#rightsidebox {width:200px;border:1px solid #31506C;background-color:#FFEFBB;padding:15px;margin:10px;float:right;}
#rightsidebox h1 {font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; font-size:1em; font-weight: bold; color:#000000; margin-bottom:10px; line-height:1.15em;}
#rightsidebox p {font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; font-size:.8em; color:#000000;line-height:1.3em}
#rightsidebox ol li {font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; font-size:.8em; color:#000000;line-height:1.3em; padding-bottom:8px;}
#rightsidebox ul li {font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif; font-size:.8em; color:#000000;line-height:1.3em; padding-bottom:8px;}

