/*
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: #ffffff url(images/bkg_goldMaize.jpg) no-repeat center fixed;
}

.custom #header  {
	background: #ffffff url(images/blogTitle_cornPress.png) no-repeat  top;
	display: block;
	height: 192px;
	width: 961px;
	margin: 0;
	padding: 0;
 }
 
 .custom #feature_box {
 	background-color: #cccccc;
 	color: #FF6347;
 	font-size: 13px;
 	font-weight: bold;
 	font-family: arial;
 	height: 16px;
 	text-align: center;
 	margin: 0px auto;
 	padding: 4px 0;
 }
 /* added by Sylvia */
 .custom .sidebar h3 { color: #ff6347; font-weight: bold; }
 .custom .headline_meta { font-style: italic; color: #FF6347; }
 .custom .headline_meta span, .headline_meta abbr { font-style: normal; text-transform: uppercase; letter-spacing: 1px; }
 .custom .headline_meta a { color: #FF6347; border-bottom: 1px solid #eee; }
 .custom #header #tagline { font-weight: normal; color: #FF6347; }
 .custom #footer a { color: #FF6347; border-bottom: 1px solid #ccc; }
 .custom a { color: #478eb2; text-decoration: none; }
 .custom h2 a:hover { color: #305E73; }
 .custom #header #logo a:hover { color: #305E73; }
 .custom li.thesis_widget_google_cse form input[type="submit"]:hover { color: #305E73; }
 
 .custom #archive_info {
 	border: none;
 }
 
 .custom .archive-description {
 	border-bottom: 2px solid #dddddd;
 	font-size: 1.3em;
 	margin-left: 12px;
 }
 
 .custom .teaser .teaser_date {
 	display: none;
 }
 
 .custom.t-shirt #page #content_box,
 .custom.contact-us #page #content_box {
	background: transparent url('images/bkg_goldMaize.jpg') no-repeat center fixed;
 }
 .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;
}

/* new NavMenu items */
.custom ul.menu {
 	background-color: #a4be2b;
 	color: #000000;
}

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

.custom .menu a,
.custom .menu .current ul a,
.custom .menu .current-cat ul a {
	letter-spacing: 1px;
	line-height: 1em;
	text-transform: none;
 	background-color: #a4be2b;
 	color: #000000;
}

.custom .menu .current a,
.custom .menu .current-cat a,
.custom .menu .current a:hover,
.custom .menu .current-cat a:hover,
.custom .menu .current ul a:hover,
.custom .menu .current-cat ul a:hover {
	background-color: #fddb4f;
 	color: #000000;
}
/* end of new NavMenu items */

/* old NavMenu items */ 
 .custom ul#tabs {
 	background-color: #a4be2b;
 	color: #000000;
}
 
.custom ul#tabs li {
 	background-color: #a4be2b;
}

.custom ul#tabs li a {
	letter-spacing: 1px;
	line-height: 1em;
	text-transform: none;
}

.custom ul#tabs li a:hover {
	text-decoration: none;
	background-color: #20358c;
	color: #ffffff;
}


.custom ul#tabs li.current_page_item,
.custom ul#tabs li.current-cat {
	background-color: #fddb4f;
}
/* end old NavMenu items, keeping for reference only */

.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.2em;
}

.custom #comments {
	display: none;
}

.custom .to_comments {
	display: none;
}

.custom #footer {
	font-size: 1.2em;
}

