/*
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/
*/


/*---:[ Set 6: image of ocean water that slides into a tranquil blue-green color ]:---*/

.custom #header #logo a { display: block; height: 199px; width: 856px; background: url('images/header-6.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 */

/* 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; }

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #8db6b6 url('images/blueBG2a.jpg') 50% 0 no-repeat; background-attachment: fixed;}
	
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #fff; border: 0.1em solid #fff; }

.custom #page { background: #ffffff; }
		
/*---:[ end Set 1 ]:---*/

/*  Change Colors of Menu Tabs When Hovering */ 
.custom ul#tabs li a:hover { background: #99ccff; color:#0066ff; }

/* Change Color of Active Menu Tab */
.custom ul#tabs li.current-cat a, .custom ul#tabs li.current_page_item a { background-color: #3399ff; color: ccff66; }

/* Remove Underline on Menu Tabs When Hovering */
.custom ul#tabs li a:hover { text-decoration: none; }

/* Remove Uppercase Formatting on Menu Tabs Text */
.custom ul#tabs li a { text-transform: none; }

/*remove header border*/
.custom #header {  border:none ; }

/*remove content box border*/
.custom #content_box {background: none;}

/*custom sidebar border*/
.custom #sidebar_1 {border-left:none;}

/*remove footer border*/
.custom #footer {border:none;}

/*remove ul tabs border*/
.custom ul#tabs {border:none;}

/*The above removes any borders and fancy stuff… pretty much everything except the padding, main layout and fonts1*/
.custom ul#tabs {border-bottom:none; border-left:none;}

.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:none;}
.custom ul#tabs li.rss {}
	
/*removes margins, borders from nav bar and sets background color*/
.custom ul#tabs li {margin-bottom:0; border:none; background-color: #99cc00;}
		

		
/* this creates a full width menu bar */
.custom ul#tabs {background: #99cc00;}

/*change/set border/margin to top of footer and top of sidebar-1*/
.custom #footer { border-top:10px solid #ffffff; }
.custom #sidebar_1 {border-top:10px solid #ffffff;}

/*change/set background color of footer and Sidebar-1*/
.custom #footer { background-color: #000000; }
.custom #sidebar_1 {background-color: #fff;}
	