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

/* Background */
body.custom { background: #BBFEBB url('images/bg.gif') repeat; }
.custom #container { background: #fff; }
.custom #page { background: #fff; }

/* Header */
.custom #header { border-bottom:none; padding: 0 0 30px 0;}

/* Post Area */
.custom h1, h2, h3, h4, h5, h6 { text-align: left; }

.custom h2.entry-title { font-weight: bold; text-align: left; }
.custom .post a:hover{ background:#4B8214; color:#FFFFFF; text-decoration:none; }
.custom .format_text { text-align: justify; }

/* Teaser */
.custom .teaser a.teaser_link:hover { background:#4B8214; color:#FFFFFF; text-decoration:none; }
.custom .teaser { text-align: justify; }

/* Change Sidebar Color */
.custom #content_box {background:#D0E6AF;}
.custom #content_box {background:none;}
.custom #content {background:#fff;}

/* Archive Modify */
.custom .archive h3 {margin-top: 0;}
.custom .archive ul {font-size: .85em; }
.custom .archivel { float: left; width: 40%;}
.custom .archiver { float: right; width: 60%;}

/* Menu */
.custom .menu { background: #4B8214; }

/* Header Ads */
.custom #header #header_ad { float:right; margin-top:-7em; width:468px; }

/* Footer Ads */
.custom #footer_ad { background: #EBFFCF; text-align:center; padding:10px 0 5px 0; border-top: 3px solid #015F00; }

/* Footer Submitter */
.custom #submitter { text-align:center; margin-top:5px; }

/* Feature Ads */
.custom #feature_box { background: #EBFFCF; padding:0 0 5px 0; border-bottom: 3px solid #015F00; }

/* Sidebar Widget */
.custom 	li.widget { padding-bottom:20px; }
li.widget ul li { background:#FFFFFF; border-bottom:1px solid #D0E6AF; display:block; margin:0; padding:0.5em; }
li.widget ul li:hover { background:#EBFFCF; display:block; margin:0; padding:0.5em; }
.custom li.widget { margin-bottom: 0.5em; line-height: 1.2em; }
.custom li.widget a { color: #003300; border-bottom: 0px solid #030; }
.custom li.widget a:hover { color:#222222; text-decoration: none; border-bottom: 1px solid #030; background: none; }
.custom .sidebar h3 { border-bottom:2px solid #015F00; text-align: right; font-family: Arial, Verdana, Serief; font-size:16px; color: #336600; font-weight: bold; padding:0.2em; }

/* Footer */
.custom #footer { background:#4B8214; border-top: double; color:#FFFFFF; }
.custom #footer a { color:#CCCCCC; border-bottom: none; }
.custom #footer a:hover { color:#000000; border-bottom: none; }

/* Reply text in Threaded Comments to a Button */
.custom dl#comment_list dd p.reply { margin: 1em 0 1.5em 0; }
.custom dl#comment_list dd p.reply a { background: #4B8214; color: #FFF;font-size: 12x;font-weight: normal;padding: 4px 6px;text-transform: uppercase; }
.custom dl#comment_list dd p.reply a:hover { background:#73A046; color:#000; border: 0; text-decoration: none; }

/* Read More */
.custom #read_more { float: left; margin: 1em 0 1.5em 0; }
.custom #read_more a { background: #4B8214; color: #fff; font-size: 12x; font-weight: normal; padding: 4px 6px; border: 1px solid #EBFFCF; text-decoration: none;}
.custom #read_more a:hover { background:#EBFFCF; color: #000; border: 1px solid #4B8214; text-decoration: none; }

/* Form */
.custom	input.form_submit { border: 1px solid #bbb; }
.custom input.form_submit:hover { color: #336600; background: #EBFFCF;}

/* Custom box */
.custom .custom_box { text-align: justify; background: #73A046; margin-top: 10px; }
.custom .custom_box a { color:#000000; border-bottom: 1px solid #000; }
.custom .custom_box a:hover { background: #EBFFCF; color: #000000; border: none; }
.custom .socmed a { border: none; }
.custom .socmed a:hover { background: none; border: none; }