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

/* robafamilyfarms.com  */

/* menu nav reset */
/* I moved these to the top to reset the nav menu items before anything else */
.custom .menu {
	border-bottom:none; 
	border-left:none;
}
.custom .menu li {
	margin-bottom:0; 
	border:none; 
	background:none;
}
.custom .menu li.current_page_item,
.custom .menu li.current-cat {
	padding-bottom:0; 
	background:none;
}
.custom .menu li.rss {}

.custom .menu li a {}

.custom .menu li a:hover {
		text-decoration:none;
}
.custom .menu li.current_page_item a,
.custom .menu li.current-cat a {}

/*  end of nav reset */

body.custom {
	background: url(http://robafamilyfarms.com/images/bkg_body_2010.png) repeat-x;
	color: #444;
	font-family: verdana, tahoma, arial, sans-serif; 
	margin: 0 0 30px;
	padding: 0;
	text-align: left;

}

.custom h1,
.custom h2,
.custom h3 {
	font-family: Georgia, Verdana, Arial, Serif;
}

.custom #header_area .page {
	
}

.custom #header {
	border: none;
	height: 260px;
	/* margin: 3em 0 0; */
	padding: 0;
	background: url('images/banner_blog_2010.png') no-repeat top center;
}

.custom #content_area {
	background: url('http://robafamilyfarms.com/images/bkg_mainContent.png') repeat-y center;
}

.custom #content_area .page {
	background: #f2ecd6 url(../images/bkg_cream.png) repeat;
	/*
border-left: 3px solid #7d9fa1;
	border-right: 3px solid #7d9fa1;
	border-bottom: 3px solid #7d9fa1;
*/
	width:944px;
}

.custom .menu {
	background-color: #f2ecd6;
	border: none;
	font-weight: bold;
}

.custom .menu a {
	background-color: #f2ecd6;
	border: none;
}

.custom .menu a:hover {
	background-color: #ffffff;
}

.custom .menu .current a,
.custom .menu .current-cat a {
	background-color: #ffffff;
}

.custom .menu .current ul a:hover,
.custom .menu .current-cat ul a:hover {
	background-color: #ffffff;
}

.custom #content_box {
	background: transparent;
	padding-top: 1em;
}

.custom #content {
	width: 684px;
}

.custom #comments {
	display: none;
}

.custom #sidebars {
	background-color: #7d9fa1;
	padding: 0 5px 5px 0;
	margin: 0 5px 5px 0;
}

.custom .sidebar h3 {
	font-variant: normal;
	letter-spacing:1px;
	font-weight: bold;
	color: #ffffff;
}

.custom .sidebar a {
	color: #000000;
}

.custom .sidebar a:hover {
	color: #ffffff;
	text-decoration: none;
}

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

.custom li.widget {
	line-height: 1.1em;
	font-size: 1.1em;
}

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

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

.custom li.widget ul li {
	margin-bottom: .2em;
	font-weight: bold;
}

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

.custom #footer {
	background: transparent url(http://robafamilyfarms.com/images/logo_footer.png) no-repeat top center;
	height: 75px;
	color: #000000;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
}

.custom #footer a {
	color: #339933;
}

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

.custom .footLeft {
	float: left;
	width: 38%;
	color: #000000;
	text-align: right;
	padding-top: 4px;
	margin-top: 7px;
}

.custom .footRight {
	float: right;
	width: 38%;
	color: #000000;
	text-align: left;
	padding-top: 4px;
	margin-top: 7px;
}

.custom #crumbbar {
	background-color: transparent;
	clear: both;
	/*height: 12px;*/
	margin: 0 auto;
	padding: 4px;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
}

.custom #crumbbar a,
.custom #crumbbar a:link,
.custom #crumbbar a:visited  {
	text-decoration: none;
	color: #000000;
}

.custom #crumbbar a:hover,
.custom #crumbbar a:active {
	color: #8f0000;
}

