

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/

*/
/*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; padding:0;}

.custom #header_area{ display: none; }

.custom #nav_area { background: none; padding: 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: 0; border-bottom: none; }

.custom #header { border-bottom: none; padding: 0; margin-top:0; vertical-align:top;} 

.custom #page { border-bottom: none; padding-left:15px; padding-top:0; vertical-align:top; margin-top:0; } 



/*Attaching an image/logo in the header*/
/*.custom #title_area { background: none; padding: 1em 0 0.5em; border-bottom: none; }*/

/*.custom #header { border-bottom: none; height: 120px; padding-top: 0; padding-bottom: 0; background: url(images/logo.png) top left no-repeat; } */

.custom #header #logo { display: none; }

.custom #header #tagline { display: none; } 

.custom ul#tabs {border-bottom:none; border-left:none; width:350px;height:0; position:absolute;}
	.custom ul#tabs li {margin-bottom: -0.1em; background: #000; border: 0; border-left: 0; float: left; margin: 3px; 0px; 3px; 0px; font-family:Tahoma,Arial; font-size:11px;position:relative;left:605px;top:60px;}
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background: #eee; color:#000;}
	.custom ul#tabs li.rss {display: none;}
	/*.custom ul#tabs li.rss {margin-bottom: -0.1em; background: none; font-size:8px;color:#000;}
	.custom ul#tabs li.rss a {margin-bottom: -0.1em; background: none; font-size:8px;color:#000;}
	.custom ul#tabs li.rss a:hover {margin-bottom: -0.1em; background: none; font-size:8px;color:#000;}*/
	.custom ul#tabs li a {text-transform: none; color:#fff;}
	.custom ul#tabs li a:hover {text-decoration:none; background: #eee; color:#000;}
	.custom ul#tabs li a:active {text-decoration:none;background: #eee; color:#000;}
	.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {text-decoration:none; background: #eee; color:#000;}

.custom a, .custom a:visited { color: #000; }




