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

/* menu nav reset */
/* I moved these to the top to reset the nav menu items before anything else */
.custom ul#tabs {
	border-bottom:none; 
	border-left:none;
}

.custom ul#tabs li {
	margin-bottom:0; 
	border:none; 
	background:none;
}

.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {
	padding-bottom:0; 
	background:none;
}

.custom ul#tabs li.rss {}

.custom ul#tabs li a {}

.custom ul#tabs li a:hover {
	text-decoration:none;
}

.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {}
	
/*  end of nav reset */

body.custom {
	background: #c3dee9 url('images/bkg_body.png') repeat-x;
	margin-bottom: 2em;
}

.custom h1,
.custom h1 a {
	color: #307a47;
}

.custom h2,
.custom h2 a {
	color: #c9232a;
}

.custom h3,
.custom h3 a {
	color: #c9232a;
}

.custom #header_area .page {
	padding: 0;
	background: url('images/banner_header.png') no-repeat top center;
	height: 183px;
	margin: 0 auto;
	width: 965px;
}

.custom #header {
	border: none;
	padding: 0;
}

.custom #content_area .page {
	padding: 0;
	margin: 0 auto;
	background-color: #f0f2b6;
	border-left: 3px solid #000000;
	border-right: 3px solid #000000;
	width: 959px;
}

.custom #content_box {
	padding: 0;
	margin: 10px 0 0;
	background: none;
}

.custom ul#tabs {
	width: 98%;
	margin: 0 auto;
}

.custom ul#tabs li a {
	letter-spacing: 1px;
	text-transform: none;
	font-weight: bold;
	color: #000000;
	display: inline;
}

.custom ul#tabs li a:hover {
	color: #2c76c8;
}

.custom ul#tabs li.current_page_item a,
.custom ul#tabs li.current-cat a {
	color: #2c76c8;
}

.custom #content {
	width: 75em;
}

.custom .wp-caption {
	background-color: #e1e2aa;
	border-color: #36a448;
}

.custom.attractions .format_text {
	margin: 10px 20px;
}

.custom .prev_next {
	border-top: 1px solid #e92452;
}

.custom .post_box {
}

.custom #comments {
	display: none;
}

.custom .to_comments {
	display: none;
}

.custom #wp-calendar {
	border: 1px solid #cccccc;
	border-collapse: none;
}

.custom li.widget {
	line-height: 1.3em;
	margin-bottom: 1.5em;
}

.custom li.widget abbr {
	font-size: 1em;
}

.custom li.widget abbr img {
	margin-bottom: -2px;
}

.custom li.widget ul li {
	margin-bottom: .1em;
}

.custom .sidebar h3 {
	margin-bottom: .3em;
	font-variant: normal;
	letter-spacing: 1px;
}

.custom #image_box,
.custom #video_box,
.custom #custom_box {
	padding: 0;
	background: none;
	text-align: center;
}

.custom #image_box img {
	border: 2px solid #000000;
}

.custom #footer_area .page {
	padding: 44px 0 0 0;
	background: url('images/bkg_bottomEdge.png') no-repeat top center;
	width: 965px;
}

.custom #footer {
	padding: 0;
	border: none;
	color: #000000;
}

.custom #footer a {
	color: #618fc5;
	border-bottom: 1px solid #618fc5;
}

.custom #footer a:hover {
	color: #000000;
}

/* For contact form page and form */
 .custom.contact-us .page #content_box {
 	background: none;
 }

.custom input,
.custom textarea {
	font-family: arial, sans-serif;
}

 .custom #contactA {
 	width: 600px;
 	font-size: 1.3em;
 	font-family: arial;
 	margin: 4px auto;
 }
 
 .custom #contactB {
 	width: 500px;
 	margin: 4px auto;
 }
 
 .custom #wpcf .challenge {
 	width: 50px;
 }
 
 .custom .wpcfh1{
 	font-size: 2em;
 	font-weight: bold;
 	color: #307a47;
 	width: 600px;
 	margin: 1em auto;
 }
 
.custom .addyBox {
 	text-align: center;
 	margin: 1em auto;
 	font-weight: bold;
}
 
/* end of contact form CSS */

