/*
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: #39505E url(images/bg12-2.png) repeat-x scroll 0 0 ;
}

/*.custom #header {
    background: #024170 url(images/bg_sky.gif) repeat-x scroll left -280px;
}
*/

.custom #header {
    background: #fff url(images/clw-header-withtext.jpg) top left no-repeat;
}
.custom #header #logo a {
display: block;
width: 865px;
height: 120px;
}

.custom .menu, .custom .menu li {
   margin:0em 0em 1em 0em;
   padding-top: .5em;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #fff;
    border: 0.4em solid #fff;
}

.custom #page {
    background: #fff;
}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post.post_box {
  background: url('../custom/images/heading-bg-red.gif') repeat-x scroll 0 0;
   border:2px solid #DDDDDD;
   margin:1em 1em 1em 0em;
   padding:1.1em;
}
/* Make all widget headings red */
.custom .widget h3 {
   color: #fff;
   background: #39505E; 
   height: 25px;
   text-align: center;
   padding-top: 5px;
   margin-top: -25px;
}

.custom li.widget-quote { 
	background:#DCF5F5 none repeat scroll 0 0;
	border-right:0.846em solid #8ADEDE;
	padding:0.846em 1.692em 0.846em 0.846em;
	width:21.615em;
	background:#DCF5F5 none repeat scroll 0 0;

}
.custom .format_text blockquote.mustard {
background:#F8EAB0 none repeat scroll 0 0;
border-left:1.1em solid #ECD163;
margin:4.4em 4.4em 4.4em 0;
padding-left:2.4em;
padding-right:2.2em;
}
.custom .format_text blockquote.blue {
background:#9FCCE3 none repeat scroll 0 0;
border-left:1.1em solid #395056;
margin:4.4em 4.4em 4.4em 0;
padding-left:2.4em;
padding-right:2.2em;
}

.custom .format_text blockquote.right {
   border: 3px double #aaa;
   color: #111;
   background-color: #eee;
}

.custom .format_text blockquote.left {
   border: 3px double #aaa;
   color: #111;
   background-color: #eee;
}
.format_text blockquote.quote {
margin:0 0 1.571em 0.786em;
padding-left:0.786em;
padding-right:1.786em;
}

blockquote.quote {
border-left:2px solid #395056;
color:#880303;
}

/* Disabled on Comments are Closed on Some Pages and Posts  */
.custom .comments_closed p {
  display: none;
}

