/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the &lt;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/
*/
 
/* NAV MENU */
.custom .menu { padding-top: 0; padding-left: 5.5em; }
.custom .menu .tab-home { padding: 3px 3px 0 3px; }
.custom .menu .tab-1 { padding: 3px 3px 0 3px; }
.custom .menu .tab-2 { padding: 3px 3px 0 3px; }
.custom .menu .tab-3 { padding: 3px 3px 0 3px; }
.custom .menu .tab-4 { padding: 3px 3px 0 3px; }
.custom .menu .tab-5 { padding: 3px 3px 0 3px; }
.custom .menu .tab-6 { padding: 3px 3px 0 3px; }

/* HEADER */
.custom #header #logo a { display: block; height: 372px; width: 950px; background: url('images/ggheader3.jpg') no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header { padding: 0; }

/* FEATURE BOX */
.custom #feature_box { padding: 0; border: none; }
	.custom #feature_box img { display: block; }

/* TEASERS */
.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 0px;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0px;
}

/* PAGE & CONTENT */
.custom .post_box, .custom .teasers_box {border-top:1px solid #000;}
.custom .top {padding-top:2em; border-top:0;}
.custom .prev_next {font-size:12px;}
.custom .comments_closed p {display: none;}

/* text block styles */
.custom .format_text h4, .custom .format_text h5 {margin-bottom:0.785em;}
.custom .format_text blockquote {border:solid #ccc; border-width:1px 0; padding:0.786em 0 0 0.786em;}
.custom .format_text blockquote.right, .custom .format_text blockquote.left {padding:0.786em; text-align:center;}
.custom .format_text ul, .custom .format_text ol {background:#f5f5f5; padding:0.25em 0;}
	.custom .format_text ul li, .custom .format_text ol li {padding:0 0.5em;}
.custom .format_text pre {background-color:#f5f5f5; border-color:#ccc;}

.custom p.post_tags {background:#f5f5f5; border-bottom:1px solid #ccc; padding:0.25em 0.5em;}

/* FOOTER */    
.custom #footer_area { background: #fff; margin: 0 auto 2em; border-top: none; }
.custom #footer_area #footer { border: none; }  

.custom #footer .sidebar {border-bottom: solid #000; border-top: solid #000; border-width:0.1em; padding-top:.0; margin-bottom:1.1em; float:left; width:100%;}
.custom #footer ul.sidebar_list {}
.custom #footer li.widget {float:left; width:23%; padding-right:2%; text-align:left; margin-bottom:22px;}

/* DIV STYLING */
div#home_pic { padding-top: 1em; padding-bottom: 1em; padding-left: 14em;}
div#bg_big { padding-top: 1em; padding-left: 2em; }
div#bg_big_gallery { padding-top: 1em; }
div#bg_link_small { padding: 0; }
div#social_sidebar { padding-left: 1em; } 
div#cd_buy_sidebar { padding-left: 7em; }
div#music_content { float: left; }
div#recording_gallery { float: left; }
div#itunes { float: right; padding-top: 0; padding-right: 3em; padding-bottom: 1em; }
div#reverb_player { padding-left: 3em; }
div#reverb_player_2 { float: right; padding-right: 3em; padding-top: 1em; }
div#reverb_player_3 { margin-left: 5em; }

div#tune_widget { padding-left: 5em; }
div#gallery_pics { float: right; padding-right: 3em; }

/* Styles for nav menu search box*/
#s {
float:right;
color:#1f1f1f; 
background:#fff; 
border: 4px solid #d7d7d7;
margin-left:16px;
font:"Verdana", Arial, Helvetica, sans-serif;
font-size:12px; 
width:240px;
height:30px;  
letter-spacing:0px;
}

