/*

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 Background ]:---*/



body.custom { background: #000 url(http://gnomeamps.com/images/seamlessglowgnome.jpg) repeat-x left top;}



.custom #container { margin-top: 0em; margin-bottom: 2em; border: .8em solid #000; }



	.custom #page { background: #000; }



/*---:[ Custom Remove Borders ]:---*/



.custom #sidebar_1, .custom #sidebar_2 {

        border-right: 0px;

        border-left: 0px;

}



/*---:[ Custom Header ]:---*/



.custom #header {

	margin: 0;

	padding: 0;

        border-bottom: 0px;

	background: url(http://www.gnomeamps.com/images/branchygnome.jpg) no-repeat left top; /*replace header.gif with the name of your image*/



}





.custom #header #logo {

	text-indent: -9999px;

}

.custom #header #tagline {

	text-indent: -9999px;

}



.custom #header #logo a {

	display: block;

	width: 622px; /*change this to the width of your image*/

	height: 173px; /*change this to the height of your image*/

}



/*---:[ No Headline on Homepage ]:---*/



.home div.headline_area h2 {display: none;}

.althome div.headline_area h2 {display: none;}





/*---:[ Home Page Newsletter ]:---*/



#newsletter {

float: left;
margin-top: 1px;
padding-left: 60px;

}

#newsletter h3 {

font-color: #dc9a20;
font-style: courier, verdana, arial, sans-serif;

}



/*---:[ Home Page Newsletter ]:---*/



#you_live_in_a_box {
	
border-top: 4px;
border-bottom: 4px;
}




/*---:[ Custom Comments ]:---*/



.custom dt#comment_list .bypostauthor, dl#comment_list .bypostauthor {

		background: transparent;

	}


.custom .comment_author {

		color: #ddd;

	}



/*---:[ Custom Feature Box ]:---*/


.custom #feature_box {

background:none; 
border:none; 
padding-top:0;
padding-bottom: 30px;

}



.custom #feature_box p {
 
padding: 20px;
font-size: 1.5em;
line-height:1.571em;
text-align: justify;

}

