/*
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/
*/
body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
	width: 77.1em;
}

.custom #page {
    background: #fff;
}

.custom #header {
padding: 0 0 0 0;
background: #fff;	
border-width: 0
}

/*
width:728px; height:90px;

*/
.custom #header:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}

.custom #header #logo { border: 0em solid #3effff;  }
.custom #header #header_ad {height:100px; float:right;  padding: 6px 2px 0 0;}
.custom #header #header_ad #header_ad1 { height:100px; border: 1px solid #403f3f; float:right;}

.breadcrumb { padding-top: 5px; text-transform: uppercase; letter-spacing: 1px; color: #666; border-style: none; border-color: #ddd; clear: both; }

.custom .sidebar a { text-decoration: underline; }

/* hyperlinks */
.custom a:hover { text-decoration: underline; }


/*--RSS Email*/
.custom ul.menu li.rss_email { padding-right: 0; background: none; border: none; float: right; }
  	.custom ul.menu li.rss_email a { padding-right: 19px; background: url('/wp-content/themes/thesis_16/custom/images/icon-envelope-blue.gif') 100% 50% no-repeat; }

/*--Twitter in nav bar--*/
.custom ul.menu li.twitter-bar { padding-right: 0; background: none; border: none; float: right; }		
  	.custom ul.menu li.twitter-bar a { padding-right: 16px; background: url('/wp-content/themes/thesis_16/custom/images/twitter-bird-16x16.jpg') 100% 50% no-repeat; }
ul.menu li.twitter-bar a {border:0;}
ul.menu li.rss_email a {border:0;}

div.fancy-subscribe-widget {
padding: 5px 5px 5px 5px; background:#f9f7e4; none repeat scroll 0 0; border-color:#ADDDE6; border-style:solid; border-width: 1px;
}


div.fancy-submit-widget {
padding: 5px 5px 5px 5px; background:#f9f7e4; none repeat scroll 0 0; border-color:#ADDDE6; border-style:solid; border-width: 1px;
}

div.fancy-widget {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#E3F0F2 none repeat scroll 0 0;
border-color:#ADDDE6;
border-style:solid;
padding:5px;
}

.custom .stbutton {
margin-left: 10px;
}
.prev_next { padding-left: 0; text-transform: uppercase; letter-spacing: 1px; color: #666; border-style: none; border-color: #ddd; clear: both; }
	.prev_next .next { text-align: right; }
	.prev_next .floated { float: left; }
	.prev_next a { text-decoration: none; }
	.prev_next a:hover { text-decoration: underline; }
	.post_nav a { text-transform: none; letter-spacing: normal; }

.custom div#subscribebox {padding:12px; line-height:18px; background:#f9f7e4; border-color:#ADDDE6; border-width: 0; border-style:solid; overflow: auto; width:auto;}
.custom div#subscribebox #leftbox {margin-left: 8px; margin-top: 8px; margin-bottom: 8px; width:55%; float: left;}
.custom div#subscribebox form { margin-top: 8px;}
.custom input.form_submit { padding:1px 5px;}
.custom div#subscribebox ul#utilitylinks { float:left; list-style-type: none; margin: 0 0 0 0;}
.custom div#subscribebox ul#utilitylinks li {margin-left: 10px; padding:8px;}

.custom #optiontable
{
width:100%;
border-collapse:collapse;
}
.custom #optiontable td, #optiontable th 
{
font-size:1.1em;
border:1px solid #98bf21;
padding:3px 7px 2px 7px;
}
.custom #optiontable th 
{
font-size:1.2em;
text-align:left;
padding-top:5px;
padding-bottom:4px;
background-color:#E3F0F2;
}
.custom #optiontable tr.alt td 
{
color:#000;
background-color:#F9F7E4;
}
