/*
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/
*/

.custom {background-image: url(/images/background.jpg);
backgroud-repeat: repeat-y;
background-position: top center;}

.custom #tabs li { background-image: url(images/nav.jpg);
background-repeat: repeat-x;}

.custom #content { width: 60em; float: left; }
.custom #content_box { width: 100%; background: url('images/dot-ddd.gif') 60em 0 repeat-y; }
.custom #sidebars { width: 30em; border: 0; float: right; background: #f2f2f2; border-left: 1px solid #DDD;border-top: 1px solid #DDD;border-right: 1px solid #DDD; -moz-border-radius-topright: 6px;
-webkit-border-top-right-radius: 6px; -moz-border-radius-topleft: 6px;
-webkit-border-top-left-radius: 6px;}

#nav_menu_wrapper { /* this will ba used as a wrapper for the nav_menu so we can center it (nav_menu). especially for IE */
	height:30px; /* fix bar's height */
	width:100%; /* use 100% of width */
	
	/* the code below will PUT the bar at the bottom */	
	top:0px;
	position: fixed;
	z-index: 1;
	/* hide scrollbar for this wrapper */
	/*overflow:hidden;*/
}

	#nav_menu_wrapper .nav_menu { /* the menu itself */
		height:220px; /* fix bar's height */
		width:100%; /* fixed width */

		/* center this div */
		margin-left:auto;
		margin-right:auto;
	       
		
		/* add effect */
		background-image: url(/images/banner.png);
backgroud-repeat: repeat-x;
background-position: center;
	}
	
	/*
	 * menu links and link effects
	 */
		#nav_menu_wrapper .nav_menu ul {
			list-style:none;
margin-left: 15em;
		}
		
		#nav_menu_wrapper .nav_menu li {
			display:inline;
		}
		
		#nav_menu_wrapper .nav_menu li a {
			padding-top:3px;
			padding-bottom:5px;
			padding-left:9px;			
			padding-right:9px;
		}
		
		#nav_menu_wrapper .nav_menu a:link, #nav_menu_wrapper .nav_menu a:visited {
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:12px;
			text-decoration:none;
			
		}

		#nav_menu_wrapper .nav_menu a:hover {
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:12px;
			color:#FFFFFF;
			text-decoration:none;
			}

.custom #tabs { list-style: none; border: 1px none #ddd; border-width: 0 0 0px 0px; }

.custom	#tabs li { margin-bottom: -0.1em; background: transparent; border:  none #ddd; border-left: 0; float: left; }

.custom #tabs .current_page_item, #tabs .current-cat { padding-bottom: 0.1em; background: transparent; border-bottom: 0; }
.custom	#tabs a { display: block; line-height: 1em;  text-transform: uppercase; letter-spacing: 2px; }

.custom	#tabs a:hover { color: #111; text-decoration: underline; }

.custom #tabs .current_page_item a, #tabs 

.current-cat a { cursor: text; }

.custom	#tabs .current_page_item a:hover, 

.custom #tabs .current-cat a:hover { text-decoration: none; }

.custom	#tabs .rss { padding-right: 0; background: none; border: none; float: right; }

.custom	#tabs .rss a { padding-right: 10em;}

.custom a {color: #999;}

.custom .postbox {padding: 0px;}


.custom #header {
border-bottom:3px none #DDDDDD;
clear:both;
height:160px;
text-indent: -9999px;
}

.custom #container {

border:0.2em solid;
border-color: #33332F;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
margin-top: 0em;
margin-bottom: 2em;
padding: .3em;
background-color: white;
}

.alignleft {
background-color:#FFFFFF;
border:1px solid #A9A9A9;
margin:4px 0 4px 5px;
padding:4px;
}