/*
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/
*/

/* OVERALL SETTINGS */
.custom .page {background:none;}
.custom .full_width .page {width:980px;}
.custom input, .custom textarea {background:#fff;} 

/* HEADER */
.custom #header_area {height:230px; background:url('images/header_bg.gif') top center repeat-x;padding:0px;margin-bottom:20px;}
body.custom {background: url('images/background.jpg') repeat-y;} 
.custom #header {height:190px;padding:0px;border:0px;}

/* MENU */
.custom .menu a {background:none; text-transform:none;letter-spacing:0px;line-height:8px;}
.custom .menu a:hover {background:#685236; color:#fff;}
.custom .menu .current a:hover {color:#685236;}
.custom .menu {border:0px; height:40px;padding:0px; margin-left:200px;}
.custom .menu .current a, .custom .menu .current-cat a {background:none;}
.custom .menu li ul{background:#fff;border:1px solid #685236;}
.custom .menu li ul a {background:#fff; color:#685236;}
.custom .menu li ul a:hover {background:#685236; color:#fff;}

/* CONTENT */
#content {width:550px; margin-top:-20px;}
.custom #content_box {background:none;}
.custom .headline_area h1, .custom .headline_area h2 {font-size:; line-height:;}
.custom .post_box, .custom .teasers_box, .custom .full_width #content_box .page {margin:0 40px 0 0;}
.custom .post_box, .teasers_box {border-color:#A3AA28;border-style:solid;}
.custom #content .top {border:none;}
.custom .prev_next {border:0px; padding-left:0px;}
.custom .prev_next a {color:#685236;}
.custom .format_teaser img {padding:0px 8px 4px 0px;}
.custom blockquote {border-left:5px solid #76CABD;color:inherit;}

/* SIDEBARS */
.custom #sidebars {width:400px;}
.custom #sidebar_1 {width:190px; border:0px; margin-right:20px;}
.custom .sidebar ul.sidebar_list {padding:0px;}
.custom #sidebar_2 {width:190px;}
#sidebar_2 ul.sidebar_list {padding-right:0;}

/* SIDEBAR SEARCH */
.custom #sidebarsearch {background: url('images/search_form.gif') no-repeat; width:400px;height:40px;padding-top:7px; padding-left:107px;margin-top:25px; margin-bottom:10px;}
.custom #sidebarsearch input, .custom #sidebarsearch textarea {width:277px; height:23px; padding-top:3px; border:0px; padding-left:5px; background:#fff;}

/* SIDEBAR ADS */
.custom #sidebarads {margin:0 0 20px 2px;} 
.custom #sidebarads ul {display:inline; list-style:none;} 
.custom #sidebarads ul li {height:125px; width:125px; padding:3px; float:left;} 
.custom #sidebarads img {border:0px solid #555;}


/* WELCOME */
#welcome {margin-bottom:4px;font-size:14px;color:inherit;line-height:24px;}
#welcome img {margin-right:10px;border:1px solid #888888; padding:3px;}

/* SUBSCRIBE ICONS */
#subscribeicons {width:404px;margin:0px;padding:0;}

/* RECTANGLE AD */
.custom #multimedia_box, .custom .custom_box {background:none; margin:0; padding:0px; border:none;}
.custom #multimedia_box {margin-bottom:20px; padding-bottom:0px;}

/* SIDEBAR TITLES */
.custom #recent-posts-4 h3 {background:transparent url(images/recent_posts.gif) no-repeat scroll 0 0; clear:both; height:40px; margin:0 auto; text-indent:-9999px; }

.custom #text-17 h3 {background:transparent url(images/savings.gif) no-repeat scroll 0 0; clear:both; height:50px; margin:0 auto 5px; text-indent:-9999px; }

.custom #archives-4 h3 {background:transparent url(images/archives.gif) no-repeat scroll 0 0; clear:both; height:40px; margin:0 auto; text-indent:-9999px; }

.custom #categories-4 h3 {background:transparent url(images/categories.gif) no-repeat scroll 0 0; clear:both; height:50px; margin:0 auto 5px; text-indent:-9999px; }

.custom #text-16 h3 {background:transparent url(images/grab_button.gif) no-repeat scroll 0 0; clear:both; height:40px; margin:0 auto 5px; text-indent:-9999px; }

/* COMMENTS */
.custom dl#comment_list {border-top:1px solid #A3AA28;}
.custom dl#comment_list dd {border-bottom:1px solid #A3AA28;}


/* FOOTER */
.custom #footer_area {border:0px;padding:0px; margin-top:30px;}
.custom #footer {border:0px;}
.custom #footer p {text-align:center;}

/* DROP CAPS */
span.cap {color:#A3AA28;float:left;font-size:300%;line-height:1em;margin-bottom:-0.4em;margin-right:0.05em;position:relative;}
