/*
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/
*/


/*** HEADER ***/

.custom #header_area {
background: #393939;
padding: 0;
}

.custom #header_area .page {
background: #393939;
padding: 0;
}

.custom #header {
padding: 0;
border: 0 none;
margin: 0;
}

/*** NAVIGATION MENU ***/

.custom .menu {
background:#A3C159;
border-left: none;
}

.custom .menu li {
margin-bottom:0;
}

.custom .menu a, .custom .menu li ul {
background:#A3C159;
color: #ffffff;
border: none;
}

.custom .menu .current a, .custom .menu .current a:hover, .custom .menu .current-cat a, .custom .menu .current-cat a:hover, .custom .menu a:hover {
background: #666666;
color: #ffffff;
}

.custom .menu li#search {
float:right;
padding-right:5px;
padding-top: 1px;
}

.custom #s {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
border:1px solid #888888;
color:#000000;
float:none;
font-size:10px;
height:13px;
letter-spacing:1px;
padding:6px 5px;
text-transform:capitalize;
width:180px;
}

/*** FEATURE BOX ***/

.custom #feature_box {
	background:#FFF;
	border-bottom:1px dotted #A3C159;
	border-left:1px dotted #A3C159;
	border-right:1px dotted #A3C159;
}
#my-feature-box {
	width:100%;
	color:#000000;
}

#my-feature-box p {
/*	padding-bottom:10px;
	font-size:1.3em;*/
}

.custom  .format_text h2 {
/*	font-size:1.6em;
	margin-bottom:3px;
	font-weight: bold;*/
margin: 5px;
}
#feature-box-column-left {
	width:45%;
	float:left;
	margin-left:1px;
}
#feature-box-column-right {
	width:45%;
	float:right;
}

/*** CONTENT ***/

.custom #content_area {
background: #393939;
}

.custom #content_area .page {
background: #FFFFFF;
}
.custom #content_box {
background: #ffffff url("../lib/images/dot-ddd.gif") repeat-y scroll 59.7em 0;
}

.custom h2 a {
color:#2361A1;
text-decoration: none;
}

.custom h2 a:hover {
color:#2361A1;
text-decoration: underline;
}

/*** SIDEBARS ***/

.custom .sidebar h3 {
background: #A3C159;
padding:2px 5px;
color: #ffffff;
}
.custom li.widget {margin-bottom:1em;}

/* SIDEBAR TABS WIDGET */
.custom div.scrollable_fwithout_icons  {
font-variant:small-caps;
letter-spacing:2px;
}

.custom .sidebarTabs_divs ul {
list-style:none outside none;
}

.custom .sidebarTabs_divs ul li {
margin-bottom:0.692em;
}

.custom div.sidebarTabs_panes .tb a {
font-size:13px;
}

/*** FOOTER ***/

.custom #footer_area, .custom #footer_area .page {
background: #393939;
}

/*** NO SIDEBAR ***/

.custom #content_box.no_sidebars { margin:auto;width:650px; }