/*
File:			custom.css
Description:	Wufoo Red Skin for the Thesis Wordpress Theme

============================================================
Visit http://seekingff.com/thesis-skins for more free skins 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: url(images/stripe2.png) repeat;}
.custom #container {margin-top: 0em; margin-bottom: 0em; background: #CD3B1A; border: 1.0em solid #B12F17;}
.custom #page {background: #CD3B1A;}
.custom #header {background: #CD3B1A; border-bottom: 0px double #ddd; padding-top:0em; padding-left: 0.2em; padding-bottom:1em;}

.custom #header #logo a { color: #fff; }
.custom #header #logo a:hover { color: #FADC76;}
.custom #header #tagline {font-size: 17px; color: #FADC76; }

.custom #header-adblock img {margin:1px; align:center;}
.custom div.header-adblock a img {position:absolute; top:3px; right:400px;}
.custom div.header-adblock img {padding: 1px;}

.custom #content_box {background: #fff;}
.custom #content {padding-left: 1em; margin-right: -1em; background: #fff;}
.custom #sidebars {background: #fff; border-left: 1px solid #ddd;}

.custom .entry-title {text-align: center !important; color: #B12F17;}
.custom .entry-title a{color: #B12F17;}
.custom .entry-title a:hover {color: #000;}
.custom .headline_meta {text-align: center; }

.custom #footer {background: #CD3B1A; font-size: 11px; font-weight:bold; color: #FADC76; border:none;}
.custom #footer a {color: #fff; border:none;}
.custom #footer a:hover { color: #fff; border-bottom: 2px solid #348ABB;}

.custom ul#tabs {background: #348ABB; border:none;}
.custom ul#tabs li { margin-bottom: -0.1em; background: #348ABB; border: 0px solid #B12F17; border-left: 0; float: left; }
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0em; background: #348ABB; border-bottom: 0; }
.custom ul#tabs li a, ul#tabs li a:visited { display: block; padding: 0.364em 0.636em 0.455em 0.636em; color: #fff; background: #348ABB; text-transform: none;}
.custom ul#tabs li a:hover { background: #93BB34; color: #fff; text-decoration: none;}
.custom ul#tabs li.current_page_item a, ul#tabs li.current-cat a { background: #348ABB; color: #fff; text-decoration: none; }
.custom ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { background: #93BB34; color: #fff; text-decoration: none; }

.custom ul#tabs li.rss { size: 16px; padding-right: 10px; border: none; float: right; background: url('images/icon-rss.gif') 100% 50% no-repeat;}
.custom ul#tabs li.rss a { color: #fff; padding-right: 16px; background: none; }
ul#tabs li.rss a.hover {text-decoration:underline; background: none;}

.custom div.welcome_box { border: 3px solid #F2EC49; background-color: #FFFDCB; color: black; padding:0.5em; margin-left:0.5em; margin-right: 1.8em; margin-top: 1em; padding-bottom: 0em;}
.custom .format_text .code1 {color:#009900;}