/*
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/
*/




/* Link Color */
	.custom .teaser_author a, .custom a:visited { color: #ADD9E3; }
	.custom .teaser_author a:hover { color: #FFF; }		





.custom .title-avatar {float:left; width:5em; margin-right:1em;}
.thesis_widget_subscriptions .sub_twit a { padding-left: 20px; background: url('http://www.chucktowndeals.com/media/layout/twitter-icon.gif') 0 50% no-repeat; } 




    /* This line sets up our clickable background image based on the site title's link */
    /* Adjust the height & width below to reflect the actual size of your image */
    /* Change the filename of your image to reflect the actual header's file name */
    .custom #header #logo a { display: block; height: 120px; width: 845px; background: url('images/blogo.gif') no-repeat; outline: none; }




    /* This line gets rid of the site title & tagline by casting them out to the far left */
  .custom #header #logo, .custom #header #tagline { text-indent: -9999px; }




    /* This line collapses the vertical space of the tagline so that there isn�t unnecessary white space after the header image */
 .custom #header #tagline { height: 0; } 




    /* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
    .custom #header { padding: 0; } 




 /* This line adds your custom background graphic */




body.custom { background: #5B5848; }




.custom #container { margin-top: 1.5em; margin-bottom: 1.5em; padding: 0.3em; background: #111111; border: 1px solid #ADD9E3; }




.custom #page { background: #5B5848; }




/* background image */




body.custom {
    background: #5B5848 url('images/tile.png') repeat;
}




.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}




.custom #page {
    background: #5B5848;
}




/* Navigation Customized */




.custom ul#tabs li.rss {background:none;}
.custom ul#tabs li.rss a:hover {
text-decoration: underline;
background: url(http://wpresser.com/wp-content/themes/thesis/images/icon-rss.gif) no-repeat;
background-position: right;}




/* teaser */
.custom .teaser { text-align: left; }




/*---:[ form inputs ]:---*/
input, textarea { font-size: 1em; color: #ADD9E2; background: #111; border: 1px solid #ADD9E2; border-right-color: #ADD9E2; border-bottom-color: #ADD9E2; }
input:focus, textarea:focus { background: #111; border-color: #ADD9E2; border-right-color: #ADD9E2; border-bottom-color: #ADD9E2; }
	.sidebar .text_input { width: 95%; }
	input.form_submit { font-weight: bold; color: #111; background: #A89A81; border: 3px double #A89A81; border-top-color: #A89A81; border-left-color: #A89A81; cursor: pointer; width: auto !important; overflow: visible; }
	#commentform input.form_submit { border-width: 3px; }
	input.form_submit:hover { color: #FFF; }




small { font-size: 10px; color: #FFF;}
p { font-size: 10px; color: #FFF;}




/*Comments*/
.custom 
.custom span.bracket {
	display:none;
	}
	
.custom .to_comments {
	background-image:url(images/chat.jpg);
	background-repeat:no-repeat;
	padding:0 2.8em;
	}




.custom .to_comments a:hover {
  border: solid 1px #ADD9E2;
}




.custom .to_comments a:visited {
  color:#ADD9E2;
}
	
.custom .post_box {
	border-bottom:1px solid #cccccc !important;
	border-top:medium none;
	
	}
	
.custom .post_box:last-child{
	border-bottom:none !important;
	}




/* Photo Caption Text */
.wp-caption-text { font-size: 11px; color: #5B5848;}

/* The following lines control the whitespace at the very top of the page (i.e., above the header image). If you set the padding-top property value to 0 (zero), your header image will be flush with the top of the page.
*/
.custom #page {
padding-top: 0;
}









