/*
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/
*/


/*When images are left-aligned add no extra space to the left, top, or bottom but 1em space to the right*/
.custom img.alignleft { margin: 0 1em 1em 0; }

/*Separate list items by 10px space in the content area – does not affect list items in sidebars*/
.custom #content li { padding-bottom: 10px; }

/*Reduce the space between widgets in the sidebars*/
.custom li.widget { margin-bottom: 15px; }

/* changes background color */


.custom #page {
    background: #fff;
}

.custom a {color: #FF8C00;}
.custom a:hover {color:#787878; text-decoration: none;}

body.custom {
    background: #787878	;
}

.custom #container {
    margin-top: 0em;
    margin-bottom: 2em;
    padding: 0.4em;
    background: #ccc;
    border: 0.4em solid #333;
}

.custom #page {
    background: #fff;
}

/*To make nav styles disappear and style the new nav*/
/*---:[ nav menu styles ]:---*/

.custom ul#tabs {border-bottom:0; border-width:0; background:#C0D3DE;}
.custom ul#tabs li a {color:#000;}
.custom ul#tabs li {color:#000; border-bottom:0; background:#C0D3DE; border:none;}
.custom ul#tabs li.rss {background:none;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#E0EEEE;}
.custom ul#tabs li.rss a:hover {
text-decoration: underline;
background: no-repeat;
background-position: right;}
.custom ul#tabs li a:hover {text-decoration:none; background:#E0EEEE; color: #000;}
.custom ul#tabs li.current_page_item a:hover {text-decoration:none; background:#E0EEEE;}
.custom ul#tabs li.current-cat a:hover {text-decoration:none; background:#E0EEEE;}
		
/*header customization*/		

.custom #header{ background: #fff; text-align:left; border:0;}
.custom #header #logo a {color: #333; text-decoration: none;}
.custom #header #logo a:hover {color: #B0E0E6;}

.custom #header #tagline {color #ccc;}

/* footer */
.custom #footer{background: #787878; color: #fff; text-align:center;} 
.custom #footer a {color: #fff;}
.custom #footer a:hover {color: #fff; text-decoration: underline; }

/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#787878 none repeat scroll 0 0;
width: 100%;
float: left;
}
.custom ul#topnav li { float: right; padding: 3px 10px 3px 0px; }
.custom ul#topnav li a { font-size: 1.1em; color: #fff; }
.custom ul#topnav li a:hover { text-decoration: underline; } 



/* Sidebar headers */
.custom .sidebar h3 {font-weight: bold; color: #000; padding: .3em; background: #C0D3DE; text-align:center;}
.custom .sidebar a {color: #333;}
.custom .sidebar a:hover {color: #FF8C00; text-decoration: underline;}

/* header banner ad 
.custom #leaderboard_ad { float: right; position: absolute; width: 468px; height: 60px; top: 75px; left: 550px; }*/

/* sponsor ad below content */

.custom div.promobox2 { border-top: 6px solid #2361A1; border-bottom: 6px solid #2361A1; background-color: #E0EEEE; color: black; padding:1em; margin-bottom: 0.5em;}
.custom div.promobox2 H3{ margin-top:0em;}
.custom div.promobox2 a {color: 2361A1; text-decoration:underline;}
.custom div.promobox2 a:hover {text-decoration: none}
.custom div.promobox2 a:hover img {border:3px solid #bebebe;}
.custom div.promobox2 a img {border:3px solid #FFCC66;}
.custom div.promobox2 img {padding: 0px;}

/* style the rss email sub */
.custom div.feed-subscription {
text-align:center;
background-color: #FFE4B5;
padding: 10px;
border: 1px solid #ee7411;
}
.custom div.feed-subscription:hover {
background: transparent url(http://i29.tinypic.com/20kw102.jpg) no-repeat scroll center left;
}
.custom div.textarea { width:240px; background-color: #fff; border-top: 2px solid #000; border-left: 2px solid #000;}