/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's 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!
*/
body {
	background: #3c3c3c;
	color: #000;
	padding: 13px 0 25px 0;
	
}
#page {
	background:#FFF;
	padding: 10px 25px 25px 25px;
	font-size: 1.0em;
}


li.widget div.subnav ul li { 
	margin-bottom: 0; 
	padding-left: 0; 
	background: none; 
}
li.widget div.subnav li ul { margin-top: 0; }

div.subnav li {
	list-style:none;
	font-size: 1em;
	font-family: Arial,Verdana;
	}

div.subnav li a:link, div.subnav li a:visited {
	background:#eef5e1;
	display:block;
	padding:4px 4px 4px 8px;
	border-left:4px solid #e4efd5;
	}
		
div.subnav li a:hover, div.subnav li a:active {
	background:#e4efd5;
	text-decoration:none;
	color: #7da939;
	}

div.subnav li li a:link, div.subnav li li a:visited {
	border-left:none
	}
		

div.subnav .children {
	background:#e4efd5;
	}
	
div.subnav .children li {
	list-style: square;
	margin-left:28px;
	border-bottom:1px solid #e4efd5;
	}
	
div.subnav .children li a, div.subnav .children li a:visited {
	padding:2px 2px 2px 0px;
	border:0;
	background:#e4efd5;
	color: #818d6f;
	}

div.subnav .children li a:hover, div.subnav .children li a:active	{				
	color:#465d23
	}
	
	#search_form .search_input { width: 14.69231em; padding: 0em; color: #444; font: normal 1em Georgia, "Times New Roman", Times, serif; background: #eee; border: 0.07692em solid #aaa; border-right-color: #ddd; border-bottom-color: #ddd; }
