/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the  tag 
will be appended with the "custom" class, like so: . 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://diythem





/*---:[ Set 6: image of ocean water that slides into a tranquil blue-green color ]:---*/

body.custom
{
    background: #8db6b6 url('images/bg-ocean.jpg') 50% 0 no-repeat;
}

.custom #container { margin-top: 2em; margin-bottom: 2em; }

	.custom #page { background: #fff; }
	
/*---[ end Set 6 ]:---*/


/*-- OLD changing top nav bar --



.custom ul#tabs
{
    list-style: none;
    background-color: #0099CC;
    color: #009999;
}

.custom ul#tabs li
{
       margin-bottom: -0.1em;
    border: none;
    float: left;
    background-color: #0099CC;
}
.custom ul#tabs li a, ul#tabs li a:visited
{
    color:White;
    font: font-family: 'Arial Black'; 
    vertical-align: middle;
    text-align:center
}
*/


/*--Begin NEW Changes to Dropdown Nav Bar --*/

.custom ul#tabs li
{
       margin-bottom: -0.1em;
    border: none;
    float: left;
    background-color: #0099CC;
}

.custom ul#tabs li ul {

display:none; position:absolute; list-style:none;
background-color: #0099CC;
}



.custom ul#tabs li ul li {

float:none;
background-color: #0099CC;

}

.custom ul#tabs li:hover ul {
display:block;
background-color: #0099CC;

}
.custom ul#tabs {

 margin-bottom:-1px;
background-color: #0099CC;

} 
ul#tabs li a:visited
{
    color:White;
    font: font-family: 'Arial Black' font-size 12px; 
    vertical-align: middle;
    text-align:center
}


/* Fix for IE6 */

/*--End Changes to Dropdown Nav Bar --*/

/*Changes to the container --*/

.custom #page
{background-color: #E8FFFF;
}

/*--End Changes to the container --*/




/*--Changes to the Header -- */
#header {
background: url('images/sample_banner.gif') 
  0 no-repeat; padding: 1.2em 1.1em; height: 100px;
    border-bottom-color:none;
border-bottom-style:none;
clear: both;

 }

/*--End Changes to the Header -- */


/*-- Begin Changes to the Sidebars -- */

 .custom #sidebar_1 h3
{  
    background-color: #0099CC;
    color:White;
    font: font-family: 'Arial Black'; font-size: medium;
    vertical-align: middle;
    text-align:center }
    
    .custom #sidebar_2 h3
{  
    background-color: #0099CC;
    color:White;
    font: font-family: 'Arial Black'; font-size: medium;
    vertical-align: middle;
    text-align:center 
    }
    
    .custom h2.widgettitle
    
{  
    background-color: #0099CC;
    color:White;
    font: font-family: 'Arial Black'; font-size: medium;
    vertical-align: middle;
    text-align:center 
    }    


/*--End Changes to the Sidebars --*/



.custom ul#tabs li a { 
    color:White;
    font: 10pt "Arial Black"} 