/*
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-color: #f5f5f5
}

.custom #content_box {
   background:transparent url(images/background.gif) repeat-y scroll 0 0;
   padding-left: 20px;
   padding-right: 200px;
}

.custom #page {

    background: #fff;

}

.custom #footer {
color: #001970;
background: #F9E04C;
text-align:center;
border-top: 5px solid #001970;
}
.custom h1, .custom h1 a, .custom h1 a:hover {
color:#000000;
font-weight:bold;
}
.custom h2, .custom h2 a, .custom h2 a:hover {
color:#000000;
font-weight:bold;
}

.custom .title_text {
color: #001970;
font-weight:bold;
}
/*
.custom #header #logo a {
  color: #001970;
} 
*/
/*--REMOVE COMMENTS ARE CLOSED--*/
/* note: second one - ".page" is only when from search page? */
.custom .comments_closed, .custom .to_comments {
display:none;
}
/* This line sets up our clickable background image based on the site title's link */
.custom #header #logo a { display: block; height: 100px; background: #F9E04C url('images/header.png') no-repeat; outline: none;}

.custom #header a {color: #FFF; background-color: #cccccc; padding: 0px; border-bottom-width: 0px; border-bottom-style: solid; border-bottom-color: #FFF; text-decoration: none;}

/* 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; }
/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0;
     
     border-bottom: 5px solid #001970;
 }
.custom #container {
border: 1px solid #001970;
overflow: hidden/*auto*/;
/*width: 785px;*/
}
/* less space between lines */
.custom .headline_area {
   margin-bottom: 2px;
}
.custom p {
   margin-bottom: 0px;
}
/* but NOT on "Our Staff" post 12 */
.custom #post-12 p {
   margin-bottom: 1.0em;
}
.custom .format_text ul {
   margin-bottom: 2px;
}
.custom .post_box, .custom .teasers_box, .custom .full_width #content_box .page {
   margin-bottom: 10px; 
  /*   margin: 0 0.9em 0 0.5em;*/
}
/* make the menu/sidebar like the header text */
.custom li.widget {
   font-weight: bold;
   font-color: #001970;
}
/* tighter space in lists... */
.custom .format_text ul {
   line-height: 1.40em;
}
/* stupid image on home page */
.custom #post-1 img {
   margin-right: 2.1em;
}
/* why have an extra wide page, and then force big margins? */
.custom .format_text {
   margin-right: 10.0em;
}
/* but not on homepage... */
.custom #post-1 .format_text {
   margin-right: 0.0em;
}
/* tighter line-heights on examples of our work */
.custom #post-29 .format_text, .custom #post-37 .format_text {
   line-height: 1.3em;
}
/* adjusting sidebar/menu down for text aligning... */
.custom #sidebar_1 {
   margin-top: 7px;
}