/*

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 {
	margin:0;
	padding:0;
	background: url('images/bg.gif') repeat-x top #004f7f;
}
#container {
	background: transparent url('images/header.jpg') no-repeat center top;
}

#header {
	padding:0;
	height: 322px;
	border-bottom: none;
}


#header #logo {
	background: transparent url('images/logo.png') no-repeat left top;
	text-indent: -9999px;
	
}

#header #logo, #header #logo a {
	display:block;
	width:300px;
	height:96px;
}

#header #logo a {
}
#header #tagline {
	display:none;

}

#tabs {
	border: none;
	float: right;
}

#tabs .current_page_item, #tabs .current-cat {
	background:none;
}

#tabs .current_page_item, #tabs .current-cat a {
	cursor:none;
}

#tabs li {
	background:none;
	border:none;
}

#tabs li a {
color: #fff;
}
#tabs li a:hover {
	border:none;
	color: #222;
	background: #fff;
}
#tabs .rss a {
	color: #fff;
	background: none;
	padding-right: .545em;
}
#tabs .rss a:hover {
	text-decoration: none;
}
#content_box {
	background: #fff url('images/bg-white.jpg') repeat-x center top;
}

#content_box.no_sidebars {
background: #fff url('images/bg-white.jpg') repeat-x center top !important; 
}

#page {
	padding: 0em;
}

.post_box {
	padding-top:0;
}

#sidebars {
	background: transparent;
}

#custom_box {
	background:none;
	border-bottom:1px solid #DDDDDD;
}

#content {
border-right: 1px dotted #ccc;
width: 61.1em;
}

.post_box, .teasers_box, .full_width #content_box .page {
margin:0 2.3em;
}

.squeeze .headline_area {
display:none;
}

.squeeze h1 {
font: bold 1.7em/1.1em Tahoma, Helvetica, Arial, sans-serif;
color: #002145;
margin-bottom: .7em;
text-align: center;
}

.squeeze .subhead {
font: normal 1.5em/1.1em Tahoma, Helvetica, Arial, sans-serif;
color:#004F7F;
}

.squeeze h2 {
background: #004F7F;
border-top: 1px solid #002345;
border-bottom: 1px solid #002345;
padding: .5em;
color: #fff;
text-align: center;
}

.wordtube {
text-align: center;
}

.format_text ul li {
margin-bottom: .5em;
}

/* 
....................................
Optin Box 
....................................
*/
.preopt {
	text-align: center;
	margin: 0;
}
.optcenter {
	width: 256px;
	margin: 0 auto;
}
#optintop {
	margin:0 auto;
	padding-top:0px;
	background: url(images/optin-top.png) no-repeat center bottom;
	width:293px; height: 301px;
}
#optinmid {
	background: url(images/optin-mid.jpg) repeat-y center top;
	width: 249px;
	padding: 0 22px;
	color: #D2AF93;
	margin: 0 auto;
}

#optinbot {
	margin:0 auto;
	background: url(images/optin-bot.png) no-repeat center top;
	width: 293px; height:62px;
}
#optinhm {
	position:relative;
}
#optinarrow {
	position: absolute;
	top: -27px;
	left: -36px;
	z-index:2;
}
.optinhd {
	text-align: center;
	color: #FFF;
	font: normal 18px/22px Arial, Helvetica, sans-serif;
	margin-bottom: 6px;
}
.optinbd {
	text-align: center;
	font: italic 16px/20px Arial, Helvetica, sans-serif;
	color:#FA9600;
}
#optinhm {
	width: 250px;
	margin: 0 auto;
}
#GRCategory3, .optinfield, .optinfield:focus {
	width: 230px; height:21px;
	background: url(images/optin-field.jpg) no-repeat left top;
	border: none;
	padding: 5px 10px 5px 10px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #222;
	font-size: 16px;
	line-height: 16px;
	margin: 0 0 3px;
}
.optinfield:focus {
}
#optinbtn {
	margin: 15px 0 0 10px;
	border:none;
}
#optinbtn:hover {
	margin: 15px 0 0 11px;
}
.optinsub {
	font-size: 12px;
	color: #FFF;
	margin: 0;
	padding: 15px 0;
	text-align:center;
}



#footer {
	width:980;
	height:141;
	margin:0;
	padding:10px 10px auto;
	border-top: none;
	background: transparent url('images/footer.gif') no-repeat center top;
}
#footer p {
	color:#FFF;
	font-size:1.2em;
	line-height:1.667em;
}
#footer a:hover {
	color:#999;
}

#footer a {
	color:#FFF;
	border-bottom:1px solid #fff;
}


