/*
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/
*/

/* ---------- Global ---------- */

body.cat_news #archive_info, body.cat_events #archive_info {
	border: 0;
	padding-top: 0;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 2.2em;
}

body.cat_news #archive_info p, body.cat_events #archive_info p {
	display: none;
}

body.home .headline_area {
	margin-bottom: 5px;
}

body.home .headline_area h2 {
	text-align: center;
}

/* ---------- Container ---------- */

#content_box {
	background: url(images/content_box_bg.png) right top repeat-y;
}


/* ---------- Header ---------- */

#header {
	background: url(images/header.jpg) no-repeat;
	height: 158px;
	padding: 0;
	position: relative;
	border-bottom: 3px solid #fff;
}

#logo {
	position: absolute;
	left: 20px;
	top: 10px;
	width: 195px;
	height: 130px;
	text-indent: -9999px;
}

#logo a {
	display: block;
	width: 195px;
	height: 130px;
}

/* ---------- Navigation ---------- */

ul.menu {
	background: #346633;
	border-bottom: 6px solid #fff;
} 

ul.menu li a {
	text-transform: none;
	letter-spacing: normal;
}

ul.menu li.tab-7 {
	float: right;
	margin-right: 10px;
	width: 237px;
	position: relative;
}

#search .search_input {
	position: absolute;
	top: 8px;
	left: 0;
	width: 160px;
}

#search .search_input input {
	padding: 3px;
	width: 160px;
}

#search .search_submit {
	position: absolute;
	top: 10px;
	left: 175px;
	width: 80px;
}

#search .search_submit #searchsubmit {
	background: transparent;
	color: #fff;
	border: 0;
	font-size: 12px;
}


/* ---------- Feature Box ---------- */

#feature_box {
	padding: 0;
	background: #fff;
	border: 0;
	margin-bottom: 20px;
}

#feature_box ul.items {
	margin: 0 8px;
	padding: 0;
	float: left;
	width: 258px;
}

#feature_box ul.items li {
	margin: 0 0 5px 0;
	list-style: none;
	overflow: hidden;
	font-size: 14px;
	color: #000;
}

#feature_box ul.items li img {
	float: left;
	width: 84px;
	height: 53px;
	margin-right: 5px;
}

#feature_box ul.items li a {
	color: #000;
	text-decoration: none;
	display: block;
	width: 250px;
	height: 54px;
	padding: 4px;
	background: #9acc99;
}

#feature_box ul.items li a:hover {
	text-decoration: nones;
	background: #346633;
	color: #fff;
}

#feature_box .box {
	display: block;
	margin: 0;
	padding: 0;
}

#feature_box .box img {
	height: 263px;
	width: 400px;
}

#feature_box ul.detail {
	margin: 10px 8px 0;
	padding: 0;
}

#feature_box ul.detail li {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.5em;
	list-style: none;
	padding-left: 10px;
}

#feature_box ul.detail li h2 {
	text-align: right;
	padding-right: 20px;
}

/* ---------- Home Page Content ----------- */

/* This hides the home page content - just in case you ever want to add any */
#post-56 {
	display: none;
}

#home_events {
	float: left;
	width: 325px;
	margin-bottom: 20px;
}

#home_news {
	float: left;
	width: 325px;
	margin: 0 14px 20px 10px;	
}

#home_events h2, #home_news h2 {
	background: #346633 url(images/events_button.png) 0 4px no-repeat;
	height: 35px;
	color: #fff;
	padding: 14px 0 0 39px;
	margin-bottom: 20px;
	font-size: 18px;
}

#home_news .post h3, #home_events .post h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

#home_news .postcontent, #home_events .postcontent {
	font-size: 14px;
	line-height: 1.5em;
}

.clear {
	clear: both;
}


/* ---------- Content ----------- */

.post_box {
	padding-top: 0;
	margin-right: 10px;
}

.headline_area h1, body.cat_news #archive_info h1, body.cat_events #archive_info h1 {
	background: #003466 url(images/headline_bg.png) 40px 0 no-repeat;
	color: #fff;
	font-weight: bold;
	height: 56px;
	line-height: 56px;
	padding-left: 110px;
	font-size: 22px;
}

/* ---------- Sidebars ---------- */

#sidebars {
	text-align: center;
}

.sidebar ul.sidebar_list {
	padding-top: 0;
	padding-left: 15px;
	padding-right: 17px;
	border-top: 15px solid #99CDFF;
}

.sidebar a {
	color: #fff;
}


/* ---------- Contribute Section ---------- */

#contribute {
	margin-bottom: 30px;
	font-size: 13px;
}

#contribute #heading {
	background: #346633 url(images/events_button.png) 15px 15px no-repeat;
	padding: 10px 5px 5px;
	height: 45px;
	margin-bottom: 20px;
}

#contribute #heading h3 {
	font-size: 24px;
	font-weight: normal;
	letter-spacing: normal;
	font-variant: normal;
	margin: 0;
}

#contribute #heading p {
	font-size: 13px;
	
}

#contribute ul {
	margin: 0 auto;
	padding: 0;
	width: 190px;
}

#contribute li {
	margin: 0 0 15px 0;
	padding: 0 0 0 30px;
	list-style: none;
	color: #ffff99;
	text-align: left;
	background: url(images/sidebar_icon.png) left top no-repeat;
	font-size: 16px;
}

#contribute li a {
	color: #ffff99;
	text-decoration: none;
}

#contribute li a:hover {
	text-decoration: none;
}

#contribute li p {
	color: #fff;
	font-size: 13px;
	margin-top: 0px;
}

/* ---------- Widgets ---------- */

.widget h3 {
	letter-spacing: normal;
	font-variant: normal;
}


/* ---------- Footer ---------- */

#footer {
	background: #346633;
	text-align: left;
	font-size: 11px;
	border: 0;
}

#footer ul {
	margin: 0;
	padding: 0;
}

#footer li {
	margin: 0 15px 0 0;
	padding: 0;
	list-style: none;
	display: inline;
}



/* ---------- CF7 styling ---------- */

span.wpcf7-list-item { display: block; }

.custom .format_text input, #commentform input, #commentform textarea {
width:auto;
}

.custom .home .headline_area h1, .headline_area h2 {display: none;}