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

/* HELPERS
*****************************************************************************************************/
.custom .left { float:left; }
.custom .right { float:right; }
.custom .center { text-align:center; margin:0 auto; display:block; }
.custom .clear{background:none;border:0;clear:both;display:block;float:none;font-size:0;list-style:none;margin:0;padding:0;overflow:hidden;visibility:hidden;width:0;height:0}

/* WRAPPERS
****************************************************************************************************/
body.custom {
	background: #2b2620 url('images/body.gif') repeat;
}

.custom #page {
	background-color: transparent;
}

.custom #container {
	width:960px;
}

.custom #content_box {
	background: #fff url('images/content-box-bg.gif') repeat-y top left;
}

/* HEADER
****************************************************************************************************/
.custom #header {
	background: url('images/header-bg.gif') no-repeat bottom left;
	padding:0 10px;
	height:164px;
}

/* NAV */
.custom .menu {
	height:40px;
	margin:-10px 0 20px 0;
	padding:0 0 0 10px;
}

	.custom .menu li {
		margin:5px 10px 0 0;
	}
	
	.custom .menu a:link, .custom .menu a:visited  {
		-khtml-border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		text-shadow:1px 1px #3f4d08;
		font-weight:bold;
		background: #94b314;
	}
	
	.custom .menu a:hover, .custom .menu a:active {
		background: #687E0B;
	}
	
		.custom .menu li.tab-home a:link, .custom .menu li.tab-home a:visited {
			background: #94b314 url('images/icons/home.png') no-repeat 0.818em 6px;
			padding:0.636em 0.818em 0.636em 28px;
		}
	
		.custom .menu li.tab-home a:hover, .custom .menu li.tab-home a:active {
			background: #687E0B url('images/icons/home-hover.png') no-repeat 0.818em 6px;
			padding:0.636em 0.818em 0.636em 28px;
		}
	
	.custom .menu li.tab-home.current a {
		background: #687E0B url('images/icons/home-hover.png') no-repeat 0.818em 6px;
		padding:0.636em 0.818em 0.636em 28px;
	}
	
	.custom .menu li.current a {
		padding:0.636em 0.818em;
	}
	
	.custom .menu li.rss {
		margin-right:20px;
	}
	
/* SUBMENU */
.custom .submenu {
	background: url('images/sub-menu-nav-arrow.png') no-repeat 5px 0;
	padding:14px 0 0 0;
}

	.custom .submenu li {
		margin:0;
		width:250px;
		background:#94B314;
		padding:5px;
		-khtml-border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}

		.custom .submenu li a {
			text-transform: capitalize;
			width:auto;
		}

/* LOGO */	
.custom #logo {
	width:443px;
	height:96px;
	margin:26px 0 0 0;
}

.custom h1#tagline, .custom p#tagline {
	text-indent:-99999px;
	height:0;
}

#header .header_right {
	width:300px;
	float:right;
	display:inline;
	margin:14px 0 0 0;
}

.custom #header .contact_us {
	float:right;
	display:inline;
	margin:6px 0 14px 0;
}

.custom .search_wrap {
	float:right;
	width:280px;
}

	.custom .search_wrap .label {
		display:block;
		margin:0 0 8px 0;
	}

.custom .search {
	background: url('images/search-input.gif') no-repeat;
	width:280px;
	height:33px;
	margin:0;
}

.custom .search input.text_input {
	background:none;
	border:none;
	width:240px;
	padding:4px 10px 0 0;
	height:25px;
	color:#5D7208;
	float:right;
	display:inline;
	font-size:14px;
	position:relative;
	outline:none;
}

.custom .search #searchsubmit {
	text-indent:-9999px;
	width:30px;
	height:33px;
	cursor:pointer;
	float:left;
	display:inline;
	margin:0;
	padding:0;
	background:none;
	border:0;
}


/* SIDEBAR
****************************************************************************************************/
.custom #sidebars {
	background: #ece8e2;
	width:285px;
}

.widget h3 {
	text-indent:-9999px;
	width:280px;
	height:56px;
	margin:0;
}

.widget h3.show-archs {
	background: url('images/sidebar-heading-arch-down.gif') no-repeat top left; 
	cursor:pointer;
}

.widget h3.hide-archs {
	background: url('images/sidebar-heading-arch-up.gif') no-repeat top left;
	cursor:pointer;
}

.widget a.see-list, .widget a.hide-list {
	text-align:center;
	font-size:16px;
	font-style:italic;
	font-weight:bold;
	margin:0 0 0 80px;
}

.widget a.see-list {
	margin:0 0 0 85px;
}

.widget_archive h3 { background: url('images/sidebar-heading-archives.gif') no-repeat top left; }
.widget_links h3 { background: url('images/sidebar-heading-blogroll.gif') no-repeat top left; }
.widget_calendar h3 { background: url('images/sidebar-heading-calendar.gif') no-repeat top left; }
.widget_categories h3 { background: url('images/sidebar-heading-categories.gif') no-repeat top left; }
#execphp-4 h3 { background: url('images/sidebar-heading-subscribe.gif') no-repeat top left; }
#execphp-5 h3 { background: url('images/sidebar-heading-rfp.gif') no-repeat top left; }
#execphp-6 h3 { background: url('images/sidebar-heading-centers.gif') no-repeat top left; }
#execphp-7 h3 { background: url('images/sidebar-heading-camps.gif') no-repeat top left; }
#text-7 h3 { background: url('images/sidebar-heading-contact.gif') no-repeat top left; }

.custom ul.sidebar_list {
	padding:0;
}

li.widget ul {
	margin:0 0 0 20px;
}

/* Calendar */
table#wp-calendar caption {
	background:none;
}

/* Feedburner */
li.widget p.subscribe_message {
	padding:0 20px;
	font-size:12px;
	margin:0 0 8px 0;
}

.feedburner {
	width:200px;
	margin:0 auto;
}

	.feedburner .input_wrap {
		background: url('images/feedburner-input-email.gif') no-repeat;
		width:220px;
		float:left;
		display:inline;
		margin:0 0 7px 0;
		padding:0;
		position:relative;
	}

	.feedburner input.email {
		background: none;
		border:0;
		width:185px;
		padding:0 10px 0 7px;
		height:27px;
		color:#d9c9b4;
		font-size:14px;
		outline:none;
	}

	.feedburner label { 
		position: absolute; 
		top: -11px; 
		left: 5px;
		font-size:10px;
	}

	.feedburner label.over_apply { 
		position: absolute; 
		top: 7px; 
		left: 12px; 
		text-indent:0;
		color:#898989;
		font-size:14px;
	}

	.feedburner input.button {
		width:64px;
		height:27px;
		cursor:pointer;
		background:none;
		border:0 none;
		float:right;
		display:inline;
		background:url('images/feedburner-button-subscribe.gif') no-repeat;
		text-indent:-9999px;
		margin:0;
		line-height:27px;
		padding:0;
	}

	.feedburner a.feedburnerLogo {
		float:left;
		height:22px;
		width:80px;
		margin:0 0 0 5px;
	}
	
/* RFP Widget */
.custom .widget_rfp {
	margin:0 20px 0 30px;
}

/* Quick Contact Form */
.widget_contact_form {
	width:280px;
}

	.widget_contact_form span.wpcf7-not-valid-tip, .widget_contact_form div.wpcf7-validation-errors {
		width:190px;
		background:#FFC2C8;
		color:#A80500;
		border:1px solid #A80500;
		padding:0 4px;
	}
	
	.widget_contact_form div.wpcf7-validation-errors {
		margin:0 0 20px 20px;
		width:230px;
		padding:5px;
	}
	
	.widget_contact_form .wpcf7-mail-sent-ok {
		margin:0 0 20px 20px;
		width:230px;
		padding:5px;
		background:#D3FFB9;
		color:#166F00;
		border:1px solid #166F00;
		padding:0 4px;
	}
	
	.widget_contact_form label {
		padding:0 0 0 10px;
	}
	
		.widget_contact_form label span {
			font-size:10px;
		}

	.widget_contact_form input, .widget_contact_form textarea {
		padding:5px;
		background:#fff;
		border:none;
		border:1px solid #b9a080;
		-khtml-border-radius: 20px;
		-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
		border-radius: 20px;
		color:#D9C9B4;
		width:175px;
	}

	.widget_contact_form textarea {
		-khtml-border-radius: 10px;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		width:230px;
	}
	
	.widget_contact_form li.submit input {
		margin:5px 0 0 0;
		font-size:14px;
		font-weight:bold;
		background:#b9a080;
		border:2px solid;
		width:120px;
		color:#413a30;
		cursor:pointer;
	}

/* POSTS
****************************************************************************************************/
.custom #content {
	width:650px;
	padding:10px 10px 0;
	background: url('images/content-bg.gif') no-repeat top left;
	min-height:670px;
	height:auto !important;
}
	
.custom .post_box {
	padding:0;
	margin:0 20px 60px 10px;
}

.custom .headline_area h1, .custom .headline_area h2 {
	font-size:24px;
	font-weight:bold;
}

.custom .headline_date {
	color:#fff;
	background: url('images/post-date-bar.gif') no-repeat top left;
	font-weight:bold;
	line-height:15px;
	padding:0 0 0 4px;
	margin:0 0 15px 0;
}

.custom .post_meta {
	font-size:11px;
	border-top:1px solid #ece8e2;
	padding:5px 0 0 0;
}

	.custom .post_meta .social {
		float:right;
		display:inline;
	}
	
		.custom .entry-content .post_meta img {
			border:0;
			padding:0;
		}
	
	.custom .post_meta .left-col {
		float:left;
		display:inline;
		width:450px;
	}
	
.custom .prev_next p.previous, .custom .prev_next p.next {
	background: url('images/post-nav-bg.gif') no-repeat top left;
	width:163px;
	text-align:center;
	line-height:40px;
	font-size:14px;
	font-weight:bold;
	color:#524a41;
	text-transform:capitalize;
	display:block;
	letter-spacing:0;
}

.custom .prev_next p.next {
	float:right;
}

	.custom .prev_next a {
		color:#524a41;
	}
	
.custom .entry-content img {
	padding:5px;
	border:1px solid #ECE8E2;
}

/* COMMENTS
****************************************************************************************************/
.custom .comments_intro p {
	color:#b9a080;
}

	.custom .comments_intro p span {
		color:#775834;
	}

.custom .comments_intro span.bracket {
	color:#b9a080;
}

.custom .comment_time a:link, .custom .edit_comment a:visited {
	color:#b9a080;
}

.custom .comment_time a:hover, .custom .edit_comment a:active {
	color:#b9a080;
}

.custom dl#comment_list {
	border-top:1px dotted #ECE8E2;
}

	.custom dl#comment_list dd {
		border-bottom:1px dotted #ECE8E2;
	}

.custom #commentform {
	border-top:1px solid #ECE8E2;
}

.custom #commentform input, .custom #commentform textarea {
	background:#ECE8E2;
	border:1px solid #ac9f92;
}

.custom #commentform input.form_submit {
	color:#423a32;
	border:2px solid;
}

.custom #commentform input.form_submit:hover {
	color:#5D7208;
}

/* ARCHIVE PAGES (Search and the like)
****************************************************************************************************/
#archive_info h1 {
	font-size:26px;
	color:#d6721f;
	margin:0 0 20px 0;
}

#archive_info h1 {
	font-size:26px;
	color:#d6721f;
	margin:0 0 20px 0;
}

#page .headline_date {
	background: none;
	border-bottom:1px dotted;
	color:#5D7208;
	margin:0 0 5px;
}

/* CONTACT US PAGE
****************************************************************************************************/
form fieldset {padding:10px;display:block;border:1px solid #eee;margin-bottom:18px;-khtml-border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius: 5px;}
form fieldset legend{font:bold 11px Arial,Sans-serif;color:#b9a080;padding:0px 3px 0px 3px;}
form fieldset legend span{color:#A80500;}

.page_contact_form ul {
	list-style-type:none;
	margin:0;
}

	.page_contact_form ul li {
		float:left;
		display:inline;
		clear:both;
		margin:0 0 20px 0;
		list-style:none;
		width:598px;
	}

	.page_contact_form span.wpcf7-not-valid-tip, .page_contact_form div.wpcf7-validation-errors {
		width:190px;
		background:#FFC2C8;
		color:#A80500;
		border:1px solid #A80500;
		padding:0 4px;
	}
	
	.page_contact_form div.wpcf7-validation-errors {
		margin:0 0 20px 0;
		padding:10px;
		width:598px;
		font-size:14px;
		font-weight:bold;
	}
	
	.page_contact_form div.wpcf7-mail-sent-ok {
		margin:0 0 20px 0;
		padding:10px;
		width:598px;
		font-size:14px;
		font-weight:bold;
		background:#D3FFB9;
		color:#166F00;
		border:1px solid #166F00;
	}
	
	.page_contact_form label {
		float:left;
		display:inline;
		margin:0 20px 0 0;
		width:120px;
		text-align:right;
		font-size:14px;
	}
	
		.page_contact_form label span {
			color:#A80500;
		}

	.page_contact_form input, .page_contact_form textarea {
		padding:5px;
		background:#fff;
		border:none;
		border:1px solid #b9a080;
		-khtml-border-radius: 20px;
		-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
		border-radius: 20px;
		width:225px;
		float:left;
		display:inline;
	}
	
	.page_contact_form li.small input, .page_contact_form span.aux-input input {
		width:75px;
	}
	
	.page_contact_form span.aux-input {
		margin:0 0 0 10px;
		float:left;
	}
	
		.page_contact_form span.aux-input input {
			margin:0 0 0 5px;
			float:right;
		}

	.page_contact_form textarea {
		-khtml-border-radius: 10px;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		width:440px;
	}
	
	.page_contact_form li.submit input {
		margin:5px 0 0 140px;
		font-size:14px;
		font-weight:bold;
		background:#b9a080;
		border:2px solid;
		width:243px;
		color:#413a30;
		cursor:pointer;
	}
	
/* FOOTER
****************************************************************************************************/
#footer {
	display:none;
}
	
#tree_footer {
	background: url('images/footer.gif') no-repeat bottom center;
	height:590px;
}

.footer_content {
	padding:460px 0 0 0;
	text-align:center;
	font-size:12px;
}

	.footer_content, .footer_content a {
		color:#fff;
	}