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

*/

/* This section sets the formatting for the navigation */
.custom ul#tabs {background: #9d1926; border-bottom:none; border-left:none; height: 30px;
}
	.custom ul#tabs li {margin-bottom:0; border:none; background: #9d1926 none;
	padding-left: 30px;
}
	.custom ul#tabs li a {color: #ffffff;
	font-size: larger;
}
		.custom ul#tabs li a:hover {text-decoration:underline;
		}
		
/* This line sets up our clickable background image */

.custom #header #logo a { display: block; height: 256px; width: 930px; background: url('images/percy-header.jpg') no-repeat; outline: none; }

/* This line removes the double line below the header */
.custom #header { border-bottom:0 double #DDDDDD;
clear:both;
}

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

/* Custom background area*/

body.custom { background: #9d1926 url('images/red-gradient.jpg') no-repeat fixed; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #9d1926; border: 1.4em solid #000000; }

.custom #page { background: #fff; }
		
/* End custom background */

.custom #footer {color:#9D1926;
text-align:right;
	background-color:#fff3a1;
	border-top:3px double #000000;
clear:both;
}

/* DO NOT DISPLAY "COMMENTS CLOSED" IF THEY ARE CLOSED ON POSTS AND PAGES*/
.custom .comments_closed p { display: none; }

.custom #page {
    background: #fdf7bb;
}
