/*
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 Shadowing for ALL Author Comments*/
custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}

/* FULL WIDTH FRAMEWORK STUFF */
.full_width {
clear:both;
width:100%;
background:#696969;
}
.custom .full_width .page {
margin:0 auto;
padding-left:0em;
padding-right:0em;
width:95.4em;
background:#222;
}


/*.custom #header { background: #fff; } */


/* SIDEBARS */
.custom #sidebars {
background: #C7C7C7;
}

/* FOOTER */
#footer {
border-top:none;
}

//** .custom .format_text .drop_cap {
color:#342197;
} **//

/* COMMENTS CUSTOMIZATION */
.custom .format_text .to_comments span { font-size: inherit; }


/* REMOVE COMMENTS ARE CLOSED */
.custom .comments_closed p {display: none ;}

/* HIDING THE HEADER 
#header {display:none;} */
/* HIDING THE ARCHIVES INFO 
#archive_info {display:none;} */

/* CONTENT BOX COLOR CUSTOMIZATION */
.custom #content_box {background:none;}
.custom #content_box {background-color:#fff;}
.custom #content {background-color:#fff;}

/* WELCOME BOX CUSTOMIZATION THIS SITS ON HOMEPAGE USING OPEN HOOK TO CALL */
.custom div.welcome_box {
width: 90%;
padding: 0.571em 0.786em;
background: #fff;
margin-left: 1em;
margin-right: 1em;
margin-bottom: 1em;
margin-top: 1em;
margin-bottom: 0em;
padding-bottom: 0em;
}

/* FEATURED POST FORMATING ON HOMEPAGE */
.custom #my-feature-box { font-family: Helvetica,Arial,sans-serif; color: #ffffff; background: #bbbbbb; padding: 22px 15px 22px 15px; }
.custom #my-feature-box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #my-feature-box h2 a { color: #000000; text-decoration: none; }
.custom #my-feature-box h2 a:hover { color: #ffffff; }
.custom #my-feature-box p { font-size: 1.4em; line-height:1.571em; text-align: justify;}
.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0; }
.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; }

/* Teasers One Across */
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;} 

/* SIDEBAR CUSTOMIZATION */
div#HomeSideBar.sidebar {
	width: 315px;
	float: left;
	background-color: yellow;
}