/*
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-color: #4e7b78;
	margin: 1em auto;
}

.custom #header_area {
	background: #4e7b78 url('images/kaska_bkg3.png') repeat-y center top;
	margin: 0 auto;
}

.custom #header_area .page {
	background-color: #000000;
	padding: 0 .2em;
	border: 0;
	margin: 0 auto;
}

.custom ul#tabs {
	background-color: #446699;
}

.custom ul#tabs li.current_page_item,
.custom ul#tabs li.current-cat {
	background-color: #4caf84;
	color: #ffffff;
}

.custom ul#tabs li.current_page_item a,
.custom ul#tabs li.current-cat a {
	background-color: #4caf84;
	color: #ffffff;
}

.custom ul#tabs li.current_page_item a:hover,
.custom ul#tabs li.current-cat a:hover {
	background-color: #446699;
	color: #ffffff;
}

.custom ul#tabs li a {
	background-color: #446699;
	color: #ffffff;
	text-transform: none;
}

.custom ul#tabs li a:hover {
	background-color: #4caf84;
	color: #ffffff;
}

.custom #header {
	background: #aed5df url('images/blogBanner2.png') no-repeat top center;
	margin: 0;
	padding: 0;
	border: 0;
	height: 220px;
}

.custom #content_area {
	background: #4e7b78 url('images/kaska_bkg3.png') repeat-y center top;
	margin: 0 auto;
}

.custom #content_area .page {
	background-color: #000000;
	padding: 0 .2em;
}

.custom #content_box {
	background-color: #ffffff;
	/*
	padding: 0 .3em .3em;
width: 97.87%;
	border: .3em solid #5d7b52;
*/
	border-top: none;
}

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

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

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

.custom #footer_area {
	background: #4e7b78 url('images/kaska_bkg3.png') repeat-y center top;
	margin: 0 auto;
}

.custom #footer_area .page {
	background-color: #000000;
	padding: 0 .2em .2em;
}

.custom #footer {
	background-color: #ffffff;
	border: none;
	color: #000000;
}

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

 .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: #ff0000;
 	width: 600px;
 	margin: 1em auto;
 }
 
.custom .addyBox {
 	text-align: center;
 	margin: 1em auto;
 	font-weight: bold;
}
 
/* end of contact form CSS */

/* For calendar page */
 .custom.event-calendar .page #content_box {
	background: none;
	background-color: #ffffff;
 }

/* end of calendar CSS */

/* For weather bug page */
 .custom.weather-bug .page #content_box {
	background: none;
	background-color: #ffffff;
 }

/* end of weather bug CSS */

/* For tour other farms page */
 .custom.tour-farms .page #content_box {
	background: none;
	background-color: #ffffff;
 }

 .tour_farms {
 	margin: 20px auto;
 	width: 700px;
 	font-size: 1.3em;
 	line-height: 1.5em;
 }
 
 .tour_farms p {
 	margin: 6px 0;
 }
/* end of tour other farms CSS */

