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

/* kackleberryfarm.com  */

body.custom {
	background: #4d793a url(http://kackleberryfarm.com/images/bkgNew_blueGreen2010.png) repeat-x;
	padding: 0;
	margin: 0 auto;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}

.custom p {
	padding: 0;   /*  SR removed padding */
}

.custom a {
	text-decoration: none;
	outline: none;
	color: #000000;
}

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

.custom h1 {
	font: 18pt Georgia, "Times New Roman", Times, serif;
	color: #e6001d;
	text-align: center;
}

.custom h2 {
	color: #479cfd; 
}
.custom h3 {
	color: #9a4a32;
}
.custom h4 {
	color: #ff7f00;
}
.custom h5 {
	color: #00c900;
}


.custom #header_area .page {
	margin: 0 auto;
	border: 8px solid #000000;
	border-bottom: none;
	/* background: #f6f1d9 url('http://kackleberryfarm.com/images/bkg_Top.png') no-repeat top center; */
}

.custom .menu {
	display: none;
}

.custom #header {
	background: #f6f1d9 url('http://kackleberryfarm.com/images/banner_blog.png') no-repeat top center;
	border: none;
	margin: 0 auto;
	padding: 0;
	height: 198px;
}

.custom #content_area .page {
	margin: 0 auto;
	border: 8px solid #000000;
	border-top: none;
	background: #f6f1d9;
}

.custom #content_box {
	background: none;
}

.custom #content {
	width: 64.0em;
}

.custom .format_text {
	line-height: 1.2em;
}

.custom .format_text a,
.custom .post_nav a {
	color: #cfb070;
}

.custom .format_text a:hover,
.custom .post_nav a:hover {
	color: #000000;
}

.custom .prev_next {
	border: none;
}

.custom #archive_info {
	display: none;
}

.custom #multimedia_box {
	background-color: transparent;
	border: none;
}

.custom #image_box {
	background-color: transparent;
	border: none;
	/* border: 1px solid #000000; */
}

.custom #image_box img {
	background-color: transparent;
	border: none;
	/* border: 1px solid #000000; */
}

.custom li.widget {
	margin-bottom: 1em;
	font-weight: bold;
	font-size: 1.2em;
}

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

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

.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 .to_comments {
	display: none;
}

.custom .comments_closed {
	display: none;
}


.custom form.search_form p {
	padding: 0;
}

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

.custom #footer_area .page {
	background: transparent;
	width: 924px;
	margin: 0 auto;
}

.custom #footer {
	border: none;
	color: #ffffff;
	font-size: smaller;
	padding: 0;
	margin: 0;
}

.custom #footer a {
	color: #c9c9c9;
	font-size: .8em;
	margin: 0;
	padding: 0;
}

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

#menuBar {
	background: url(http://kackleberryfarm.com/images/bkg_menuBar_inside.png) no-repeat center top;
	font-family:"Comic Sans MS", cursive;
	font-size: 13px;
	text-align: center;
	margin: 0 auto;
	padding: 12px 0 0 0;
	width: 924px;
	height: 34px;
	font-weight: bold;
}

#menuBar a {
	color: #000000;
	text-decoration: none;
	margin: 0 10px;
}

#menuBar a:hover {
	color: #cc2229;
	margin: 0 10px;
}

#lowerMenu {
	background: url(http://kackleberryfarm.com/images/bkg_footer.png) no-repeat top center;
	font-family:"Comic Sans MS", cursive;
	font-size: 13px;
	text-align: center;
	margin: 0;
	padding: 2px 0 0 0;
	width: 924px;
	height: 27px;
	font-weight: bold;
}

#lowerMenu a {
	color: #000000;
	text-decoration: none;
	margin: 0 10px 0;
}

#lowerMenu a:hover {
	color: #cc2229;
}

