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

/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #413b37; }
	
	.custom #container { margin-top: 1em; margin-bottom: 1em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }

		.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/

	.custom a { color: #7f2215; } 
	.custom a:hover { color: #7f2215; text-decoration: underline;}
	
	.custom .sidebar h3 { border-bottom: 1px dotted #DDD; border-top: 1px solid #DDD; font-weight: bold; }
	.custom dl#comment_list .bypostauthor { background: #dddddd; } 
	
	.custom #tabs .current_page_item{ border-bottom: 1px; padding-bottom: 0;}
	
.custom #header #logo a { display: block; height: 150px; width: 960px; background: url('images/fetidus_banner1.jpg') 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 */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* 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 { padding: 0; border-bottom:none;}
	
/* was working fine -- .custom #header { display: block; height: 150px; width: 960px; background: url('images/fetidus_banner1.jpg') no-repeat; height: 150; width: 960; padding:0; border-bottom:none; } */

	/* .custom #title_area {background:#bf3e23; padding:1em 0; border-bottom:none; background:url(images/fetidus_banner1.jpg) top left repeat-x;}  */

.custom .format_text h1 { font-size:1.7em; line-height:1.267em; }	
.custom .format_text h2 { font-size:1.8em; line-height:1.267em; }
.custom .format_text h3 { font-size:1.5em; line-height:1.267em; }
.custom .format_text h4 { font-size:1.3em; line-height:1.267em; }
.custom .format_text h5 { font-size:1.1em; line-height:1.267em; }

.custom div.welcome_box { border: 3px solid #F2EC49; background-color: #FFFDCB; color: #000; padding:1em; margin-left:0em; margin-right: 0em; margin-top: 0.5em; margin-bottom: 0.5em; padding-bottom: 0em;}

.custom div.welcome_box2 { border: 3px solid #f2ec49; background: #fffdcb; padding: 1.0em 15px; margin: 0 0 1.46667em 0; clear: both; }

.custom div.welcome_box3 {
	border: 3px solid #8B7572;
	clear: both;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	background-color: #EAE9E8;
	margin-top: 22px;
	margin-right: 22px;
	margin-bottom: 5px;
	margin-left: 22px;
}
