/*
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/
*/

/* === START: HEADER custom code by Kristella.com === */

.custom #header_area{display:none;}

.custom #nav_area {background:#608FA7; padding:0.5em 0; border-bottom:none;}
	.custom #nav_area ul {border-bottom:none; border-left:none;}
		.custom #nav_area ul li {color:#E3E4D6; border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #title_area {background:#CCCCCC; padding:0 0 0; border-bottom:0px solid #000;}
	.custom #header {border-bottom:none; height:170px; padding-top:0; padding-bottom:0; background:url(images/header.jpg) center left no-repeat;}
		.custom #header #logo {display:none;}
		.custom #header #tagline {display:none;}

.custom ul#tabs li a {color:#000; display:block; letter-spacing:2px; line-height:1em; text-transform:lowercase; }	

.custom ul#tabs li a:hover {color:#fff; text-decoration:none; }			
			
/* === END: HEADER custom code by Kristella.com === */

/* === START: CHANGE BACKGROUND OF MULTIMEDIA BOX === */

.custom #custom_box { background-color: #fff; }

/* === END: CHANGE BACKGROUND OF MULTIMEDIA BOX === */

/* === START: SIDEBAR custom code for sidebar 1 twitter widget === */

.custom #twitter_div {padding:0.625em; border:3px double #ddd; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px;}
	.custom #twitter_div img {float:right;}

/* === END: SIDEBAR custom code for sidebar 1 twitter widget === */

/*---:[ Footer Color Change 1 ]:---*/

.custom #footer a { color: #fff; border-bottom: 1px solid #fff; }

#footer a:hover { color: #000; border-bottom: 1px solid #000; }

/*---:[ end Footer Color Change 1 ]:---*/

/* === START: POST dropcap === */

.dropcaps {
font-family: , Verdana, Georgia, Times New Roman, Serif;
font-weight:normal;
float:left;
line-height:30px;
font-size:36px;
padding: 3px 3px 0 0;
}

/* === END: POST dropcap === */

/* === START: AFFILIATE After Post === */
#aff_after_post {
	clear: both;
	padding: 0.714em;
	background-color: #eceefa;
	border-top: 0.214em solid #111026;
}

/* === END: AFFILIATE After Post === */

/* === START: POST center headline & bylines for posts === */

.custom .entry-title { text-align: center !important; }
.custom .headline_meta {text-align: center; }

/* === END: POST center headline & bylines for posts === */

/* === START: FOOTER custom code by Kristella.com === */

.custom #footer_area {background:#608FA7; padding:0.5em 0; border-top:0px solid #bbd;}
	.custom #footer {border-top:0;}

.custom #footer_1 {text-align:left; color:#fff; text-transform:lowercase;}
	.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#fff;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#fff; border-bottom:0; }
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#000;}

/* === END: FOOTER custom code by Kristella.com === */

/*---:[ Footer Color Change 2 ]:---*/

.custom #footer {
color:#fff;
}

/*---:[ end Footer Color Change 2 ]:---*/

/* === START: CUSTOM BACKGROUND COLOR === */

body.custom {
    background: #5F8FA7;
}

/* === END: CUSTOM BACKGROUND COLOR === */

/* === START: CUSTOM BACKGROUND COLOR FOR SIDEBAR === */

.custom #content_box {background-color:#5F8FA7;}
.custom #content {background-color:#fff;}

/* === END: CUSTOM BACKGROUND COLOR FOR SIDEBAR === */

/* === START: CUSTOM TEXT COLOR FOR SIDEBAR === */

.sidebar a{color:#fff;}
.sidebar a:hover {color:#000;}

/* === START: CUSTOM TEXT COLOR FOR SIDEBAR === */

/* === START: CUSTOM TEXT COLOR FOR SIDEBAR HEADER === */

.sidebar h3 {color:#000;}

/* === END: CUSTOM TEXT COLOR FOR SIDEBAR HEADER === */

/* === START: CLOSE COMMENTS ON SOME PAGES === */

.custom .comments_closed p {
  display: none;
}

/* === END: CLOSE COMMENTS ON SOME PAGES === */
