/*
Site:			GECKO cn
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/
*/



/* get rid of uppercase in nav */
.custom ul#tabs li a { display: block; line-height: 1em; color: #769d42; text-transform: none; letter-spacing: 2px; }

/* change button styles */

.custom #nav_area ul#tabs { border-color:#none; border-style:dotted; border-width:0 0 0px 0px; list-style-image:none; list-style-position:outside; list-style-type:none; }

/*To make nav styles disappear and style the new nav*/
.custom #header_area{ display: none; }

.custom #nav_area ul { border-bottom: none; border-left: none; }

.custom #nav_area ul li { border-width: 0; margin-bottom: 0; padding-bottom: 0; background: none; }

.custom #header { border-bottom: 5px; }

.custom #header_area{ display: none; }

.custom #nav_area { background: none; padding: 0.5em 0; border-bottom: none; }

.custom #nav_area ul { border-bottom: none; border-left: none; }

.custom #nav_area ul li { border-width: 0; margin-bottom: 0; padding-bottom: 0; background: none; }

.custom #title_area { background: none; padding: 1em 0; border-bottom: none; }

.custom #header { border-bottom: none; } 

/* adjust position of header image */
.custom #header {padding:0 0 0 0; margin:0; border:0;}


/* .custom ul#tabs li { margin-bottom: -0.1em; background: #efefef; border: 1px solid #ddd; border-left: 0; float: left; } */
/* custom buttons */
.custom ul#tabs li {background:#ffffff;}
.custom ul#tabs li.rss {background:none;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#bed468;}
.custom ul#tabs li.rss a:hover {
text-decoration: underline;
background: url(http://www.greennovate.net/wp-content/themes/thesis/images/icon-rss.gif) no-repeat;
background-position: right;}
.custom ul#tabs li a:hover {text-decoration:none; color: #ffffff; background:#769d42;}
.custom ul#tabs li.current_page_item a:hover {text-decoration:none; background:#769d42;}
.custom ul#tabs li.current-cat a:hover {text-decoration:none; background:#769d42;}

/* .custom ul#tabs { background: #ffffff; list-style: none; margin-top: .5em; padding-left: 1em; width: 97em;} */

/* remove gap between header and nav bar */
#header {border:none; padding-bottom:0px;}

/* controls nav bar width */
.custom ul#tabs { background: #ffffff; list-style: none; margin-top: .5em; padding-left: none; width: 90em;}

/* remove border around menu tabs */
.custom #tabs, .custom #tabs li {
  border-style: none;
}

/* enable dropdowns in nav bar */
.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
.custom ul#tabs li ul li {float:none;}
.custom ul#tabs li:hover ul {display:block;}
.custom ul#tabs { margin-bottom:0px;} /* Fix for IE6 */