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

/* SAVE THIS IN CUSTOM.CSS FILE */
/* change all widget header details */
.custom .sidebar h3 {font-weight: bold; color: #111111; padding: 0px 5px; background: #81B5F9;}

/* change specific widget header details */ 
.custom li#top-commentators h3 {font-weight: bold; color: #FFFFFF; padding: 0px 5px; background: #B8860B;}
.custom li#recent-comments h3 {font-weight: bold; color: #FFFFFF; padding: 0px 5px; background: #008000;}
.custom li#wp_digi_cart_widgets h3 {font-weight: bold; color: #ffffff; padding: 0px 5px; background: #000000;}

/* change space between widgets */
.custom li.widget {margin-bottom: 2em;}

/* Change colour of Comments Bracket */
.custom .format_text .to_comments span.bracket {color: #ff0000;}

/* Remove {0 Comments} Entirely */
remove_action('thesis_hook_after_post', 'thesis_comments_link');

/* Hide "Comments on this entry are closed" Message */
.custom .comments_closed p {display: none;}

.custom #header {
padding-bottom:0px;
padding-top:0px;
}

.custom #header
{
   padding-left:0px;
   padding-right:0px;
margin-top: -10px;
}

ul.menu {width:765px; margin-left:auto; margin-right:auto;}
ul.menu li.tab {width:127px;}

.custom ul#tabs {border:0; margin:0;}

.custom .menu a {
padding:0.667em 0.7em;
text-align:center;
}

.custom #header { border-style: none }