/*



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/



*/







body {



	background: #090909;



	color: #111;



	font-size: 62.5%;



}







* {



	padding: 0;



	margin: 0;



}







#container {



	width: 101.2em;



	margin: 0 auto;



	background-color: white;



}







#page {



	padding: 4em;



}







#header {



	/*border-bottom: 3px double #ddd;*/



	clear: both;



}







#column_wrap {



	float: left;



}







.post_box, .teasers_box {



	border-top: 1px dotted #bbb;



	clear: both;



}







.teasers_box .post_box {



	margin: 0;



	border-top: none;



	clear: none;



}







.teaser {



	float: left;



}







.teaser_right {



	float: right;



}







.top {



	border: none !important;



}







#sidebars {



	border-style: solid;



	border-color: #ddd;



}







#sidebar_1 {



	border-style: dotted;



	border-color: #ddd;



}







#footer {



	color: #888;



	border-top: 3px double #ddd;



	text-align: right;



	clear: both;



}







.sidebar h3 {



	font-size: 1em;



	margin-bottom: 1em;



	color: black;



	font-variant: normal;



	font-weight: bold;



	text-decoration: none;



	letter-spacing: 0px;



	border-bottom: 1px solid #c8c8c8;



	padding-bottom: 2px;



}











body.custom {

    background: #090909 url('images/brian-bg.jpg') 50% 0 no-repeat;

}



.custom #container {

    width: 980px;

}



.custom #page {

	background-color:none;

	padding: 0px;

}



.custom #bird {

position:absolute;

top:41px;

margin-left:662px;

}

.custom #header {

    background: #090909 url('images/brian-bg.jpg') 50% 0 no-repeat;

	height:150px;

}

.custom #logo {margin-top:40px;}
.custom #logo a { color:#FFF;}
.custom #header { border:none; }

.custom #header #tagline { font-size: 1.8em; font-style:italic;color:#FFF;}

.custom .menu { border:none; }

.custom  ul#tabs {

    background: #4e004e url('images/tabs-bg.jpg') top right no-repeat;

}



.custom  ul#tabs li a { padding:8px 20px 17px 20px; text-transform:capitalize;}



.custom #content_box {padding-top: 20px; background:none;}



.custom #content {padding-right:10px;padding-left:10px;/*width:620px;*/}

/*.custom .teasers_box {width:600px;}

.custom .teaser {width:290px;}*/



.post_box {padding-top: 0em;}



.custom #sidebars {/*padding-right:20px;*/ width:44em;}

.custom #sidebar_1 {border-width: 0 0.1em 0 0.1em; width:260px;}



.custom  #footer { color: #fff; border-top: none; text-align: right; clear: both; background:#090909; padding-bottom: 50px;}

.custom  #footer a { color: #fff; border-bottom: none; }

.custom  #footer a:hover { color: #fff; text-decoration:underline;}



.custom #email-newsletters { border:1px solid #cccd95; background-color:#e6e7b1; text-align:center; padding:15px 10px 5px 15px;}

.custom #email-newsletters input {margin-bottom:10px;}

.custom #submit-button { background: url('images/submit-button.gif') top left no-repeat; height:30px; width:110px; border:none;}



