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

/* miklesfamilyfarm.com  */


/* 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: #929392 url('images/backgroundPlank.jpg') repeat-x;
	margin-top: 2em;
	margin-bottom: 2em;
}

.custom #header_area .page {
	background: url('images/banner_header.gif') no-repeat top center;
	margin: 0 auto;
}

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

.custom ul#tabs {
	padding: 0 8em;
}

.custom #content_area .page {
	background: url('images/bkg_content.png') repeat-y center;
	margin: 0 auto;
}

.custom #content_box {
	padding: 0 8em 0 8em;
	background: none;
	width: 86%;
}

.custom #content {
	width: 70.0em;
}

/* sylvia added these */
.custom #content h1 {
	color: #960000;
}
.custom #content h2 {
	color: #346a46;
}
.custom #content h3 {
	color: #61748f;
}
.custom #content h4 {
	color: #da9604;
}
/* ------------------- */
.custom ul#tabs {
	color: Black;
	font-weight: bold;
	letter-spacing: normal;
}
.custom ul#tabs li a {
	color: Black;
	text-decoration: none;
	letter-spacing: normal;
}
.custom ul#tabs li a:hover {
	color: #960000;
	text-decoration: none;
}
.custom ul#tabs li.current_page_item a,
.custom ul#tabs li.current-cat a {
	color: #346a46;
	text-decoration: none;
}
.custom ul#tabs li.current_page_item a:hover,
.custom ul#tabs li.current-cat a:hover {
	color: #61748f;
	text-decoration: none;
}
/* ------------------------------ */
.custom .sidebar h3 {
	font-weight: bold;
	font-variant: normal;
	letter-spacing: 1px;
	line-height: 1.3em;
	margin-bottom: 0.4em;
	color: Black;
	text-decoration: underline;
}
.custom .sidebar a {
}
.custom .sidebar a:hover {
	text-decoration: none;
	color: Black;
}

/* end of sylvia's stuff */

.custom .to_comments,
.custom .comments_closed,
.custom .comments_intro  {
	display: none;
}

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

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

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

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

.custom #footer_area .page {
	background: url('images/bkg_bottomEdge.png') no-repeat top center;
}

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

.custom #footer a {
	color: #333333;
	border-bottom: 1px solid #333333;
	text-decoration: none;
}

.custom #footer a:hover {
	color: #000000;
	border-bottom: 1px solid #000000;
	text-decoration: none;
}

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


