/* 
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/ 
*/  

/* Tile a background image to span the width of the page */  
.custom #header_area {  padding-top:0; background: url('images/bar_hdr.jpg') repeat-x; outline: none; }  
.custom #header_area .page { padding-top:0; padding-left: 0;}  
.custom #header #logo a { display: block; height: 200px; width: 975px; background: url('images/hdr1.jpg') no-repeat; outline: 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 line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */  
.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; } 

/* Feature box Formatting */
#feature_box { width:600px;border-width:5px; border-style:double; border-color:#FEA500; padding-left:1em; margin-top:20px; background-color:#fff; }
.custom #my-feature-box { font-family: Verdana,Arial,Helvetica,sans-serif; color: #000000; background: #fff; padding: 25px;}
.custom #my-feature-box h2 { /*font-size: 2.2em;*/ font-size:1.9em; margin: 0 0 15px 0; }
.custom #my-feature-box h2 a { color: #660099; text-decoration: none; }
.custom #my-feature-box h2 a:hover { color: #0033cc; }
.custom #my-feature-box p { /*font-size: 1.4em;*/ font-size:1.2em; line-height:1.571em; text-align: left;}
.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0; }
.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; color:#990099; }  

/* Change teasers on home page to display one across, not two */
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;}

