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

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */


/* Begin Menu */

ul#tabs { margin: 0; list-style: none; background: #ff0000; }

	ul#tabs li { margin-bottom: -.1em; width:auto; border-left: 1px solid #4f7c96; float:left; position:relative; }

ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }

ul#tabs li li.current_page_item, ul#tabs li li.current-cat { background: #efefef; padding-bottom: 0em; }

ul#tabs li li.current_page_item a, ul#tabs li li.current-cat a { text-decoration:underline; }
	
ul#tabs li a { font-weight: bold; display: block; line-height:inherit; color: #fff; text-transform: capitalize; width:auto; padding:14px 20px 11px 20px; }

ul#tabs li a:hover { color: #111; text-decoration:underline; padding:14px 20px 11px 20px;  }

ul#tabs li li:hover { background-color:#fff;}
	
ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }

ul#tabs li.current_page_item li a, ul#tabs li.current-cat li a {  }

ul#tabs li li.current_page_item  a:hover, ul#tabs li li.current-cat  a:hover { text-decoration:underline; }
		
ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }
	
ul#tabs li.rss { padding-right: 16px; background: none; border: none; float: right; }
		
ul#tabs li.rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }

ul#tabs li ul { list-style:none; position:absolute; left:-9999px;  border:1px solid #000033; border-top:0; float:left; background: url(/wpimages/dropbg.jpg); overflow:hidden;}

ul#tabs li:hover ul { left:auto; display:inline-block; margin:0; padding:0;}

ul#tabs li ul li { margin:0; padding:0; float:left; display:block; clear:both; border:0; width: 240px; }

ul#tabs li ul li:hover {  }

ul#tabs li ul li a { display:block; padding:8px 0 8px 15px;}

ul#tabs li ul li a:hover { color: #003366; text-decoration: underline; padding:8px 0 8px 15px; }

ul#tabs li ul li + li { border-top:0px solid #ddd; }
