/*HEADER STYLING*/
/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { 
display: block; 
height: 180px; 
width: 960px;
background: url('images/header.png') no-repeat; 
outline: none;
}

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline {
text-indent: -9999px;
}
/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
.custom #header #tagline {
display:none;
}
/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { 
border-bottom:none; 
padding: 0;
}
	
/*this code gets rid of the top margin*/
.custom #header_area .page {
padding-top:0;
}

/*END HEADER STYLING*/

/*PAGE STYLING*/

/*this code changes the page-wide hyperlink colors.  They must be styled more specifically if they are to be different from each other.
.custom a, .custom a:visited {
color:#b70809;
text-decoration:none;
}*/

.custom #container {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding: 0;
    background: #fff;
    border: 3px solid #b70809;
	width: 96em;

}

#content {
margin-top:20px;
}


/*get rid of dotted link box in FireFox*/
:-moz-any-link:focus {
  outline: none;
}

/*END PAGE STYLING*/

/*SIDEBAR STYLING*/

/*this code for sidebar headings*/

.custom .sidebar h3 {
color:#b70809; 
font-variant:normal;
letter-spacing: 0px;
}

.custom .sidebar a, .sidebar a:hover {
color:#444544;
text-decoration:underline;
}



/*END SIDEBAR STYLING*/

/*HEADLINE STYLING*/
/*this code set the color for post headlines*/

.custom .headline_area h2.entry-title {
color: #b70809;
}

.custom .headline_area h2 a {
color: #b70809;
}
.custom .headline_area h2 a:visited {
color:#b70809;
}
.custom .headline_area h2 a:hover {
color:#b70809;
}

.custom .h1, .h2, .h2 a, h2 a:hover, h2.entry-title {
color:#b70809;
}

/*this code for page headlines*/
.custom h1 {
color:#b70809;
}

/*this code for front page headline*/
.custom .headline_area h2 {
color:#b70809;
}



/*END HEADLINE STYLING*/

/*MULTIMEDIA BOX STYLING*/

/*this code sets the rotator box background color and gets rid of the border underneath*/
.custom #image_box, video_box, custom_box { 
background-color: #fff; 
border-bottom:0;
}

/*END MULTIMEDIA BOX STYLING*/

/*NAVIGATION STYLING*/

/*nav bar customization, this sets the default color for the whole width of the nav bar*/

ul.menu {
	border-width: 0.2em 0 0.2em 0;
	border-color: #ecd78e
	}

ul.menu li a {
	border-width:0 0 1px;
		font-weight:bold;
			}

ul.menu li a hover {
color:#000;
}

	
.menu .current .tab, .menu .current-cat > a {
border-bottom-color:#ECD78E;
font-weight:bold;
}

.menu .rss {
margin-right:10px;
}

.menu .rss a:hover {
background:#b70809;
text-decoration:none;
}


/*END NAVIGATION STYLING*/

/*FOOTER STYLING*/

#footer {
border-style: none;
}






