/*
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/
*/

/* banner, nav */
.custom #header_area {background:#31312D url(images/header_banner.jpg) no-repeat scroll 0 0; height:290px;}
.custom #header {border-bottom:0;}
.custom #nav_area {background:#F0ECDB; border-bottom:1px solid #DBD4B7; padding-top:10px;}
.custom ul#tabs {border-bottom:0; border-color:#DBD4B7;}
.custom ul#tabs li {border-color:#DBD4B7; background-color:#E6DEC0;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#fff;}
.custom #header #logo {padding-top:75px; padding-left:185px; font-size:4.6em; text-indent: -9999em}
.custom #header #logo a {color:#e4e4e4;}
.custom #header #tagline {color:#888888; font-weight:normal;padding-left:375px; font-size:2.8em; text-indent: -9999em}
.full_width > .page {
background:transparent none repeat scroll 0 0;
}

/* headers */
.custom h1, .custom h2, .custom h3, .custom h4, .custom h5, .custom h6 {
	font-family:Myriad Pro,Helvetica,Arial,sans-serif;
	font-weight:bold;
	text-transform:uppercase;
}
.custom h3 {
	border-bottom:1px dotted #DDDDDD;
	color:#440a7e;
	font-size:1.4em;
	letter-spacing:1px;
	padding-bottom:2px;
}

/* sidebar boxes */
#subscriptions , #facebookconnector {
	background: #FFFBCC;
	border: 1px solid #E6DB55;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;
}

/* plain link in the subscribe box */
.custom a.nomail { background: none !important; padding-left: 0 !important;}

/*sidebar background */
.custom #content_box {background-color:#F5F5F5;}
.custom #content {background-color:#fff;}

/*Stay-Connected and Share-This-Post Box*/
.box { margin: 0; padding: 0.7em; background: #F4E6CC; border: 1px solid #0262A5;}
.box h3 { margin-top: 0; }
.box p { margin-bottom: 0; }
.box .stayintheloop {float:left; width:48%;}
.box .social_icons {float:right; width:48%; }
.box .social_icons a, .box .social_icons a:hover {border:none;}
.box .social_icons img {filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0;-khtml-opacity: 1.0; }
.box .social_icons img:hover {filter:alpha(opacity=50);-moz-opacity: 0.5; opacity: 0.5;-khtml-opacity: 0.5;}
/* Author highlight box */
.postauthor { background: #F4E6CC; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding-top: 1.5em; }
.postauthor .authorpic { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 1em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }


/* comment background */
.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #E7F8FB none repeat scroll 0 0; padding-top:20px;}

/*Tabbed Widget Version 2.0*/
.tabbedwidget {
background:#FFFBCC none repeat scroll 0 0;
border:1px solid #E6DB55;
margin:3em 0 1.1em 1.1em;
padding:10px 5px 5px;
width:362px;
font-size: 1.3em;
}

.tabnav {
margin-bottom: 10px;
}

.tabnav li {
display: inline;
list-style: none;
padding-right: 5px;
}

.tabnav li a {
background: #e5f6fc;
border: 1px solid #0262A5;
padding: 4px 6px;
}

.tabnav li a:hover, .tabnav li a:active, .tabnav li.ui-tabs-selected a {
background: #e5f6fc;
border: 1px solid #0262A5;
}

.tabdiv {
margin-top: 2px;
background: #e5f6fc;
border: 1px solid #0262A5;
padding: 7px;
}

.tabdiv li {
list-style: none;
margin-bottom: 0.667em;
}

.ui-tabs-hide {
display: none;
}
/* end of tabbed widget styling */