/*
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/
*/

.custom #page {border:4px solid #436322; width:980px;}
body.custom {background: url('images/greenswirl.jpg') repeat;}

/* Header ad */
#headerad {width:728px; margin:10px auto 20px auto;}

/* Footer ad */
#footerad {width:300px; margin:20px auto;}

/* Header */
.custom #header {padding:0px; height:250px; border:0px;}

/* Menu */
.custom .menu a {font-size:1.6em; letter-spacing:1px;}

/* Content */
.custom #content {width:565px;}
.custom #content_box {background:none;}
.custom .format_text h5 {font-size:11px; font-weight:bold; color:#474747; text-transform:none; letter-spacing:0px; line-height:12px; margin:0px 0px 13px 0px;}

/* BLOCKQUOTE */
.custom .format_text blockquote {background:none repeat scroll 0 0;border:1px dotted #40386B;margin:0 0 15px;padding:20px 20px 5px;color:#2b2b2b;}
.custom blockquote {border:none;}
.custom .format_text blockquote h2, .custom .format_text blockquote h3 {margin-top:0px;}

/* Teasers */
.custom .teasers_box {border-color:#40386B; border-style:solid;}
.custom .format_teaser img {padding:0px 8px 4px 0px;}

/* Navigation*/
.custom .prev_next {border-width:0.1em 0 0; border-color:#40386B;}
.custom .prev_next p {font-size:1.9em;font-family:verdana, arial, sans-serif; letter-spacing:0;text-transform:none;}

/* Miscellaneous */
#feature_box, #archive_info, #comment_nav_2 {border-width:0em;}

/* Sidebars */
.custom #sidebars {width:415px; border:0px; margin-bottom:15px;}
.custom #multimedia_box {background:none; border:0px; margin-bottom:0px;}
.custom #subscribeicons {margin:0px -5px;}
.custom .sidebar h3 {font-variant:normal; letter-spacing:0px;}
.custom #sidebar_1 {border-style:none;width:195px;}

/* Sidebar Ads */
.custom #sidebarads {margin:0px 0px 10px 11px;} 
.custom #sidebarads ul {display:inline; list-style:none;} 
.custom #sidebarads ul li {height:125px; width:125px; padding:3px; float:left;} 
.custom #sidebarads img {border:1px solid #555;}
.custom #sidebarads p {font-size:12px; text-align:right; margin:8px 10px 0px 0px;}

/* Footer */
.custom #footer {border-width:0px; background:#40386B;}
.custom #footer a:link, .custom #footer a:visited {text-decoration:none;} 
.custom #footer a:hover, .custom #footer a:active {color:#fff; text-decoration:none;} 

/* Recipe Page */ 
.custom #recipe_headline {text-align:center; margin-top:25px;}
.custom #recipe_divider {background: url('images/headlinediv.gif') top center no-repeat; padding-top:15px; height:19px;}
.custom .recipeitem li {float:left; width:150px; height:150px; background:#DCEFB4; border:1px solid #BFD394;margin:5px; padding:5px;} 
.custom .recipeitem {list-style:none; display:inline;} 
.custom #recipetitle {font-size:13px; color:#403515; text-align:center;padding:8px;} 
.custom .recipeitem li a:active,.custom .recipeitem li a:hover {text-decoration:underline; color:#403515;} 
.custom .recipe_box {width:516px; margin:30px auto;}

/* GOOGLE AD */
.custom #googlead {background:#9DBD5B;width:300px;margin:10px auto 20px;}