/*
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 #container {width:1004px; background:#fff url('images/page-bg.gif') no-repeat;padding:0px;margin:0 auto;} 
.custom input, .custom textarea {background:#fff;} 
body.custom {background: url('images/bg.gif') repeat-x;} 
.custom #page {background:none;padding:0;}

 /* HEADER */ 
.custom #header {background:none; border:0px; padding:0px; margin:0px 2px;} 

/* MENU */ 
.custom .menu a {padding:7px 16px 7px 16px;text-transform:uppercase;letter-spacing:2px; border:none;} 
.custom .menu {background:#505e17;border:none;padding-left:192px;margin:-4px 2px 0px 2px;} 

/* CONTENT */ 
#content {width:540px;padding-left:25px;} 
.custom #content_box {background:none;} 
.custom .headline_area h2, .custom .headline_area h1 {font-size:22px; line-height:26px;padding-bottom:5px;} 
.custom .post_box, .custom .teasers_box, .custom .full_width #content_box .page {margin:0 20px 0 0;}
.custom .post_box, .teasers_box {border:none;} 
.custom #content_box {margin-top:15px;}
.custom #content .top {border:none;} 
.custom .teaser .format_teaser {margin-bottom:10px;margin-top:5px;} 
.custom .teaser .teaser_link {float:right; padding-right:0px;} 
.custom .headline_meta {margin-top:4px;} 
.custom .entry-title {border-bottom:1px solid #a2ad45;} 
.custom .format_text a {text-decoration:none;} 
.custom .format_text a:hover {text-decoration:underline;} 
.custom #feature_box, #archive_info, #comment_nav_2 {border-width:0;} 
.custom #archive_info, .prev_next {padding-left:0;} 
.custom #feature_box {background:none;}

/* TEASERS */
.custom .teasers_box {width:500px;}
.custom .teaser {width:230px;}

/* PREV/NEXT POST */ 
.custom .prev_next {background:#fff; border:0px;padding:20px 20px 20px 0px; margin:0px 0px 10px;} 
.custom .prev_next p {font-size:14px; line-height:24px;} 
.custom .prev_next a {font-size:17px;} 

/* BLOCKQUOTE */ 
.custom .format_text blockquote {border:1px dotted #505e17;margin:0 0 15px;padding:20px 20px 5px;} 
.custom blockquote {border:none;} 
.custom .format_text blockquote h2, .custom .format_text blockquote h3 {margin-top:0px;} 

/* COMMENT BODERS */ 
.custom dl#comment_list {border-top:1px solid #a2ad45;} 
.custom dl#comment_list dd {border-bottom:1px solid #a2ad45;} 
.custom #commentform {border-top:1px solid #a2ad45;} 
.custom #commentform input.form_submit {background:#505e17;border-width:0px;color:#FFFFFF;font-weight:normal;padding:10px;} 
.custom #comments {margin-right:0px;} 
.custom dl#comment_list .bypostauthor {background:#f4f4f4;} 

/* DOUBLE SIDEBARS */
.custom .image_box, .custom .custom_box {border:0;}
.custom #multimedia_box {border:0; padding:0; margin:0; background:none;}
#subscribeicons {width:391px;margin:0 auto 20px 0px;padding:0px;}

 /* SIDEBARS */ 
.custom #sidebars {width:420px; margin-bottom:20px;margin-top:9px;} 
.custom #sidebar_1 {width:205px;border:0;padding:0;}
.custom #sidebar_2 {width:205px;border:0;padding:0;}
.custom .sidebar ul.sidebar_list {padding-left:0;}

/* SIDEBAR ADS */
.custom #sidebarads {margin:0px 0px 25px 0px;} 
.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;}

/* SEARCH */ 
.custom #sidebarsearch {width:385px;margin:20px 0;}
.custom #sidebarsearch input, .custom #sidebarsearch textarea {width:382px; height:22px; padding-top:5px; border:1px solid #a2ad45; padding-left:5px;background:#fff;} 

/* SIDEBAR TITLES */ 
.custom #sidebars h3 {background:#a2ad45; border-top:2px solid #111; border-bottom:2px solid #111; padding:9px 10px 7px;font-variant:normal;text-transform:uppercase; } 

/* FOOTER */ 
.custom #footer {border-top:1px solid #a2ad45; padding:20px; margin:20px 0px 0px; text-align:center;} 
.custom #footer img {margin:4px 0 10px;} 
.custom #footer p {margin:0px 0 10px;} 
.custom #footer a {border:0; font-weight:bold;} 

/* WP THREAD COMMENT */ 
.custom .chalt {background:#fff;} 
.custom .comment-childs {padding:15px; margin-bottom:10px; border:1px dotted #555;} 
