/*
   ________________________________________________________________________________

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: #D9E9A5 ;  
        }

.custom #container 
        {  margin-top: 6em; 
           margin-bottom: 8em; 
        }

.custom #page 
        {  background: #FFFFCC;  
        }

.custom #header
        {  background: #FFFFCC url('images/header.jpg') no-repeat;
           border-top: 0px solid #993300 ;
           border-bottom: 0px solid #D9E9A5 ;
           height: 250px;
	   padding: 0em;
        }

.custom #footer
	{  border-top: 3px solid #D9E9A5 ;  
	}
	

/* NONE OF #NAV WORKS. WHY?*/
/*.custom #nav   
        {  width: 95.5em; 
           padding-right: 3em; 
           padding-left: 3em; 
           background: #993300 url('images/header.jpg') %100 0 no-repeat;  
           font-size: 10.55em;
           font: bold 12px Georgia;
           text-transform: lowercase;
        }
*/

.custom ul#tabs
        {  font-size: 1.1em;
           font-weight: bold;
	}  

.custom ul#tabs li 
        {  background: #D9E9A5;            
           border-left: 1px solid #993300 ;
           border-right: 1px solid #993300 ;
	}  

.custom ul#tabs li.rss 
	{  background: #ffffcc; 
           border-left: 0px solid #993300 ;
           border-right: 0px solid #993300 ;
	}

.custom ul#tabs li.current-cat, .custom ul#tabs li.current_page_item 
        {  background: #993300; 
           border-left: 0px solid #993300 ;
           border-right: 0px solid #993300 ;
           font-weight: bolder;
        }


/*________font text for current tab is yellow; all others are wine________________*/

.custom ul#tabs li a 
	{  color: #993300; 
	   font-weight: bold;
	}

.custom ul#tabs li.rss a 
	{  color: #993300; 
	}

.custom ul#tabs li.current-cat a , .custom ul#tabs li.current_page_item a 
	{  color: #ffffcc; 
	}


/*________sidebars and their widgets___________________________________________*/


.custom #sidebars 
        {  background: #FFFFCC; 
        }

.custom .widget 
	{  background-color: #D9E9A5; 
           font-size: 1.40em;
           text-align: center;
           margin: 0;
	} 

.custom .widget h3  /*  the label for each widget should match the tabs of the nav bar  */
	{  color: #993300;
  	   font-weight: bold;
	}

.custom ul#widget_recent_entries li /* why doesn't this work */
	{  background: #ffffcc; 
	}

.custom .widget_recent_entries a, a:visited 
	{  color: #000000 ;  /*  better than that stupid blue  */
	   font-weight: normal; 
	}

.custom .search_form
	{  border: .5px solid #D9E9A5;
	   background-color: #ffffcc ;
	}	

.custom .search_form .text_input 
	{  border: 0px solid #D9E9A5; /* the border spills over the border for the sidebar. so make it 0*/
	   background-color: #ffffcc ;
	}	

.custom #custom_box 
	{  background: #ffffcc;
	}



/*________maybe this will be useful some day_____________________________________________ */

.custom .format_text .drop_cap 
	{  color: #993300; 
	   float: left; 
	}