/*
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 .fl { float: left; }
.custom .fr { float: right; } */

/* --- Remove content borders --- */
.custom #content_box {background:#FFFFFF;}

/* .custom #content_box {background:none;}
.custom #column_wrap {background:none;} */

/*=== Header ===*/

.custom #header { background:#004424; padding:0; height:125px; margin-bottom:10px; border-bottom:none; }
.custom #header #tagline { height: 0; }
.custom #header_area .page { background:#FFFFFF;}

/*=== Logo ===*/
/* .custom #logo a { display:block; height:90px; width:570px; background:url(images/dfa_logo.png) center no-repeat; text-indent:-9999px; } */

/*BEGIN Custom Top Nav*/
.custom #custom_top_nav {list-style-image:none; list-style-position:outside; list-style-type:none; margin:0 0 10px; padding:0 0 10px; font-size: 1.2em;}
.custom #custom_top_nav li {float:right;}
.custom #custom_top_nav li.text {float:left; border-right: 1px solid #004424; display: inline; margin-right: 10px; padding-right: 10px;}
.custom #custom_top_nav li.text a {color:#004424; font-weight:normal; text-decoration:none;}
.custom #custom_top_nav li.text a:hover {text-decoration:underline;}
.custom #custom_top_nav li.noborder {border-right: 0px;}

/*=== Social Icons ===*/
.custom #custom_top_nav li.twitter a {padding: 0 20px 2px 18px; background:transparent url(images/twit_16.png) no-repeat scroll 0 0; }
.custom #custom_top_nav li.facebook a {padding: 0 20px 2px 18px; background:transparent url(images/fb_16.png) no-repeat scroll 0 0; }
.custom #custom_top_nav li.youtube a {padding: 0 20px 2px 18px; background:transparent url(images/yt_16.png) no-repeat scroll 0 0; }
.custom #custom_top_nav li.rss a {padding: 0 20px 2px 18px; background:transparent url(images/rss_16.png) no-repeat scroll 0 0; }
.custom #custom_top_nav li.email a {padding: 0 0px 2px 18px; background:transparent url(images/email.gif) no-repeat scroll 0 0; }

/*=== Banner Ad Centering ===*/
/* .custom  div.banner_home {width: 468px; display:block; margin-left: auto; margin-right: auto;} */
.custom  div.banner_end {width: 468px; display:block; padding-bottom: 15px;}

/* === Post Author styling on single posts === */
.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor a {text-decoration:underline;}
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }
.socialmedia { background: none; border-top: 1px solid #DDD; border-bottom: 1px solid #DDD; overflow: hidden; padding: 1em; text-align: center;}
.socialmedia p { color: #515151; font-size: 1.3em;}

/* === Category archives on pages styling === */
.custom .lowerpost {clear:both; border-bottom:1px;}
.custom .lowerpost {border-bottom:1px dotted #DDD;}
.custom .lowerpost img {margin: 0 10px 10px 0;}
.custom .lowerpost img {padding-right: 10px;}

/*=== Submit Button Styling ===*/
.custom  .submit {width: 100px}

/*== Sidebar ===*/
/* --- Customize spacing between sidebar widgets --- */
/* .custom li.widget {margin-bottom: 1.5em;} */

/*=== Footer ===*/
.custom #footer .fl { float: left; }
.custom #footer .fr { float: right; }

/* <h#> formatting from FreshNews */
/* h2{
	color: #197B30;
	font: 24px;
	font-weight: bold;
	margin: 15px 0;
}
h2 a{
	color: #197B30;
	font: 24px;
	font-weight: normal;
	text-decoration:none;
} */
h3{
	color: #363636;
	font-size: 12px;
	font-weight: bold;
	margin: 0 0 5px;
}
h4{
	color: #363636;
	font-size: 15px;
	font-weight: bold;
	margin: 0 0 10px;
}
h5{
	color: #363636;
	background:#ebe9e1;
	font-size: 13px;
	font-weight: normal;
	padding: 5px 8px;
	display: block;
	border: 1px solid #dedbd1;
	margin: 0 0 12px;
}
h6{
	color: #363636;
	font-size: 10px;
	font-weight: normal;
	font-style: italic;
	margin: 0 0 5px;
}
