/*
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: #dfc691 url('images/bgaber.jpg') center center fixed repeat-y; }



.custom #page { background: #eee1ad url('images/content.jpg'); 
 background-position:Top Center; 
 background-attachment:fixed; 
 background-repeat:no-repeat;  }

.custom #header { border-bottom:none;
height:190px;
padding-top:0;
padding-bottom:0;
background:url('images/hdraber.jpg') center center no-repeat;
position: absolute;
top: 10px;
 }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }

/*** This is for the rearranging of the menu and header graphic - Jimmy ***/
.custom #content_box { margin-top:225px; }
.custom ul#tabs { position: absolute; top: 200px;  }
.custom #header { position: absolute; top: 10px; width: 1060px; }
.custom li.rss { margin-left: 240px; }
/*************************************************************************/

ul#tabs li { background:transparent none repeat scroll 0 0; }
ul#tabs li a { font-family: Georgia,"Times New Roman",Times,serif; }

/*change the background color of unselected tabs*/
.custom ul#tabs li a { background:transparent none repeat scroll 0 0; }
/*change the font color of unselected tabs*/
.custom ul#tabs li a { color: #000000; }

/*change the background of color the selected tab*/
.custom ul#tabs li.current_page_item a { background: #dfc691; }
/*change the font color of the selected tab*/
.custom ul#tabs li.current_page_item a { color: #000000; }

/*change the background color of unselected tab when the cursor hovers over it*/
.custom ul#tabs li a:hover { background: #c7b081; }
/*change the font color of unselected tab when the cursor hovers over it*/
.custom ul#tabs li a:hover { color: #ffffff; }
