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

body.custom {
	background: #f4efbd url('http://blog.folkschool.org/wp-content/themes/thesis/custom/images/bkg_light-to-dark.png') repeat-x ;
}

.custom h1,
.custom h2,
.custom h3,
.custom h4 {
	color: #db0d15;
}

.custom h1 a,
.custom h2 a,
.custom h3 a,
.custom h4 a {
	color: #db0d15;
}

.custom h1 a:hover,
.custom h2 a:hover,
.custom h3 a:hover,
.custom h4 a:hover {
	color: #a40a10;
}

.custom .rss {
	padding: 3px 0 0;
	background: none;
	border: none; float: right;
}
		
.custom .rss a {
	padding-right: 16px;
	background: url('http://blog.folkschool.org/wp-content/themes/thesis/custom/images/icon-rss.gif') 100% 50% no-repeat;
	font-size: 1.5em;
	color: #000000;
}

.custom .rss a:hover {
	color: #fedf65;
}

/*
.custom img.alignnone,
.custom img.block,
.custom img.alignright,
.custom img.right,
.custom img.alignleft,
.custom img.left,
.custom img.aligncenter,
.custom img.center,
.custom img.size-full {
	padding: .4em;
	background-color: #ffffff;
	border: 1px solid #dab3a2;
	border-bottom: 1px solid #dab3a2;
	margin: 0 auto;
}
*/

/*
.custom .format_text p a img {
	padding: .4em;
	background-color: #ffffff;
	border: 1px solid #dab3a2;
	border-bottom: 1px solid #dab3a2;	
}
*/

/*
.custom .format_text a img {
	padding: .4em;
	background-color: #ffffff;
	border: 1px solid #dab3a2;
	border-bottom: 1px solid #dab3a2;	
}
*/

/*
.custom .format_text p object {
	padding: .4em;
	background-color: #ffffff;
	border: 1px solid #dab3a2;
	border-bottom: 1px solid #dab3a2;	
}
*/

.custom #container {
	width: 97em; /* was 96em */
	margin: 0 auto 2em;
}

.custom #page {
	background-color: #ffffff;
	/* width: 902px; */
	margin: 0 auto;
	padding: 0;
	border: 2px solid #000000;
	border-top: none;
}

.custom #page #header {
	border-top: 2px solid #000000;
}

.custom #header {
		background-color: #000000;
		background: #000000 url('http://blog.folkschool.org/wp-content/themes/thesis/custom/images/banner_header_A.png') no-repeat  top;
		height: 218px;
		margin: 0;
		padding: 0;
		border-bottom: none;
}

.custom #header #logo a { color: #ffffff; }

.custom #header #tagline { font-weight: normal; color: #c0c0c0; }

.custom .menu {
	display: none;
}

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

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

.custom #content_box {
	padding-top: 12px;
}

.custom #multimedia_box {
	width: 96.4%;
	margin: 0 auto 5px;
}

.custom #image_box {
	background-color: #ffffff;
	border: 1px solid #dab3a2;
	border-bottom: 1px solid #dab3a2;
	padding: .4em;
	text-align: center;
}

.custom #image_box img {
	border: none;
	margin: 0 auto;
}

.custom .wp-caption {
	background-color: #ffffff;
	border: 1px solid #dab3a2;
	text-align:center;	
}

.custom #sidebars {
	margin-right: 3px;
}

.custom li.widget ul a {
	color: #000000;
}

.custom li.widget ul a:hover {
	color: #f02d00;
}

.custom .headline_area h2 {
	color: #b42a29;
}

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

.custom .to_comments {
	display: none;
}
*/

#middleMenu {
	width: 968px;
	height: 24px;
	margin: 0 auto;
	font-family: Georgia, serif;
	font-size: 11pt;
	font-weight: normal;
	color: #f0e6b9;
	text-align: center;
	background-color: #000000;
}

#middleMenu img {
	padding: 0;
	margin: 0:
}

#middleMenu2 {
	width: 450px;
	height: 20px;
	margin: 2px 20px 0 0;
	font-size: 8pt;
	font-weight: bold;
	color: #f0e6b9;
	text-align: right;
	background-color: #000000;
	float: right;
}

#middleMenu #leftHalf {
	width: 30%;
	float: left;
	text-align: left;
	margin: 0px 0 0 30px;
	color: #f0e6b9;
}

#middleMenu #rightHalf {
	width: 50%;
	float: right;
	text-align: right;
	margin: 2px 30px 5px 0;
}

#middleMenu ul,
#middleMenu2 ul {
	display: inline;
}

#middleMenu ul li,
#middleMenu2 ul li {
	display: inline;
	list-style: none;
	color: #f0eccb;
	margin: 5px 8px 5px;
}

#middleMenu #rightHalf ul li a:link,
#middleMenu #rightHalf ul li a:visited,
#middleMenu2 #rightHalf ul li a:link,
#middleMenu2 #rightHalf ul li a:visited {
	text-decoration: none;
	color: #f0eccb;
}

#middleMenu #rightHalf ul li a:hover,
#middleMenu #rightHalf ul li a:active,
#middleMenu2 #rightHalf ul li a:hover,
#middleMenu2 #rightHalf ul li a:active {
	color: #fedf65;
}



#lowerMenu {
	width: 968px;
	height: 24px;
	text-align: center;
	background-color: #000000;
	padding: 8px 0 0 0;
	font-family: arial, sans-serif;
}

#lowerMenu ul {
	margin: 0px 0 0 0;
}

#lowerMenu ul li {
	list-style: none;
	display: inline;
	margin: 0 8px;
}

#lowerMenu ul li a:link,
#lowerMenu ul li a:visited,
#lowerMenu ul li a:active {
	text-decoration: none;
	color:#f0eccb;
	font-size: 9pt;
	font-weight: bold;
}

#lowerMenu ul li a:hover {
	color:#fedf65;
	font-size: 9pt;
	font-weight: bold;
}


.custom #footer {
	background: url(images/fsLogoChop_sm.png) no-repeat center;
	height: 80px;
	margin: 0 auto;
	font-size: 8pt;
	clear: both;
	color: #000000;
}

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

.custom #footer #leftBox {
	width: 40%;
	float: left;
	text-align: left;
	margin: 8px 0 0 30px;
}

.custom #footer #rightBox {
	width: 40%;
	float: right;
	text-align: right;
	margin: 8px 30px 0 0;
}
