/*
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/
*/
.custom ul#tabs li.rss {display:none;}

.custom .overclear {
	width: 100%;
	overflow: hidden;
}

.custom #header_area {
	background: url('images/header_bg.png') repeat-x;
	height: 360px;
}
	.custom #header_area .page {
		padding-top: 0;
	}
	

.custom #header {
	padding: 0;
	border-bottom: none;
}
.custom #header #logo,
.custom #header #tagline {
	text-indent: -9999px;
}
.custom #header #logo a {
	display: block;
	height: 332px;
	background: url('images/header_logo.jpg') no-repeat;
	outline: none;
}

.custom #sidebar_1 {
	border-style:none;
}

.custom .sidebar h3 {
	border-top: 3px solid #333;
	border-bottom: 1px dotted #444;
	padding: 0;
}

.custom #custom_box {
	background: none;
	border: none;
}

.custom #content_area {
	background: #f1e0b1 url('images/content_bg.png') top repeat-x;
	border: none;
	padding-top: 10px;
}
		
.custom h2 a,
.custom #content h1,
.custom #content h2 {
	color: #ff0000;
}
	.custom h2 a {
		font-size: 1em;
	}

.custom dl#comment_list .comment_num a {
	color: #ff0000;
}
.custom .comment_num a {
	font-size: 2em;
}

.custom .prev_next {
	border-top: 1px solid #ff0000;
	letter-spacing: 1px;
	text-align: right;
}
	.custom .prev_next p {
		font-size: 1.2em;
	}
	.custom .prev_next .previous {
		text-align: left;
	}
	
.custom #content .format_text table {
	width: 100%;
	border-top: 2px solid #ff0000;
	border-bottom: 2px solid #ff0000;
	margin: 0 0 0 0;
	font-size: .85em;
}


.custom ul#tabs {
	width:80%;
	margin:0 auto;
	border:none;
	clear:both;	
}


.custom ul#tabs li {
	border:none;
	margin: 0 0.1em;
}

.custom ul#tabs li a {
	background:#f1e0b1;
	color:#212121;
	font-weight:bold;
	letter-spacing:1px;
	text-transform:none;
}

.custom ul#tabs li.current_page_item a,
.custom ul#tabs li.current-cat a {
	background:#f1e0b1;
	color:#ff0000;
}

.custom #footer_area {
	height: 165px;
	background: url('images/footer_bg.png') repeat-x;
}
	.custom #footer_area .page {
		padding-top: 5em;
	}

.custom #footer {
	border-top: none;
	color: #666;
}
		
.custom #footer a,
.custom #footer a:visited {
	color: #666;
	border-bottom: none;
	text-decoration: underline;
}
.custom #footer a:hover {
	text-decoration: underline;
	color: #fff;
}
.custom #footer .alignleft {
	width: 49%;
	float: left;
	text-align: left;
}
.custom #footer .alignright {
	width: 49%;
	float: right;
	text-align: right;
}
	
#goog-fixurl {
	padding: 0 1em 0 1em;
	background-color: #ffffee;
	border: 1px dotted #bbb;
}