/*File:			custom.cssDescription:	Custom styles for ThesisBASIC 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 themWHY THIS WORKS:By using the "custom" class, you are creating more specific CSS declarations for HTMLelements. CSS styling is applied through rules of specificity, and because declarationsprepended 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 foundin the User's Guide:	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/*/body.custom {    background: #000000;}.custom #container {    margin-top: 0em;    margin-bottom: 2em;    padding: 0.0em;    background: #33332f;    border: 0.0em solid #3e3e3a;}
.custom #page {    background: #fff;}
.custom #header {border:0; padding:0; margin:0; background:#000000;}
.custom ul#tabs {border-bottom:none; border-left:none; background:#000000; }
.custom ul#tabs li a {color:#FFFFFF}
.custom ul#tabs li {margin-bottom:0; border:none; background:none}
.custom ul#tabs li.current_page_item, 
.custom ul#tabs li.current-cat {padding-bottom:0; background:#000000}
.custom ul#tabs li.rss {}.custom ul#tabs li a {}
.custom ul#tabs li a:hover {text-decoration:none; background:#C0C0C0}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a }
.custom ul#tabs li.current_page_item a:hover {text-decoration:none; background:#C0C0C0;}
.custom ul#tabs li.current-cat a:hover {text-decoration:none; background:#C0C0C0}



.custom #footer {background: #000000;}
.custom #footer a:hover {color: #FFFFFF;}

/* 1Serpent START */

/* home page */
.home .headline_area { display: none }
.home .post_box { margin: 0; }
.home .home_featured { margin: 0 2.2em 0 1.1em; }
	.home .home_header { font-size: 2em; font-weight: bold; line-height: 1.364em; margin: 0 0 1em; }
	.home p.featured_more_link { text-align: right; }
		.home .home_featured a.home_teaser_link { font-size: 1em; line-height: 1.364em; margin: 0 0 1em; }

.home img.alignright { margin: 0 0 0.5em 0.5em; }

.home .home_teasers_box { background: transparent url(images/teasers.gif) repeat-x scroll 0 0; border-top: 1px solid #B0B0B0; clear: both; margin: 0; padding: 0 0 2.2em; width: 100%; }	
	.home .home_teaser { float: left; padding: 12px; width: 269px; }
	.home .home_teaser_right { float: right; padding: 12px; width: 269px; }.home .comments_closed { display: none; }
		.home .home_entry_title { font-size: 1.4em; font-weight: bold; margin: 0 0 0.5em; letter-spacing: -0.8px; line-height: 1em; text-decoration: none; }
		.home .home_teaser_content { font-size: 0.9em; line-height: 1.5em; }
			.home .teaser_more { margin: 0; text-align: right; }
			.home .home_entry_title a { color: #312F2F; text-decoration: none; }
			.home a.home_teaser_link { font-size: 0.9em; text-decoration: none; }
			.home a.home_teaser_link:hover { text-decoration: underline; }

.ie .home_teasers_box { padding: 0; }

/* 1Serpent END */

/*--- START SIDEBAR AREA ---*//*--change padding--*/
.custom ul.sidebar_list li {margin-bottom:.25em;}
.custom ul.sidebar_list {     padding-top: .25em;}
.custom .sidebar ul.sidebar_list {      padding-right: 1.0em;      padding-left: 1.0em;}
.custom .sidebar ul.sidebar_list {      padding-top: .5em;}



/*optin button*/
.optinbutton {
 border: 5px solid red;
  background-color: #D0E6F2;
  padding: 2px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
}

 
.optinbutton:hover {
 color: #000000;
 border: 5px solid #009900;
background: #B4CEE2;
cursor: pointer;
cursor: hand;}


/*feature box*/
.custom #feature_box {
 background: #FFFF00;
 color: #000000;
}

/* Custom Widget Styling */
.custom #widget_content {
background: #000033;
color: #FFFFFF;
padding-left: 1em;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:7px ;
padding: 2em 1em 0em 1em;
border: 1px solid #000033;
}

.custom li.widget .my_widget_header {
background: #ffcc00;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
}

.custom li.widget .my_widget_header h4 {
color: #FFFFFF;
font-size: 2em;
text-align: center;
}

/* Custom Widget Spacing */

.custom li.widget {margin-bottom: .5em;}

/* Helps with Pic width in Posts */
.format_text input, #commentform input, #commentform textarea { width:100%; }
