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

/* ----------------------------------------------------*/
/* Replace the header text with the header image       */
/* ----------------------------------------------------*/
.custom #header #logo a { 
	display: block;
	margin: 0 0 0 150px;
	height: 160px;
	width: 637px;
	background: url('images/header.png') no-repeat center;
	outline: none; 
}
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header { padding: 0; }
.custom #header { border-bottom: 0; }

/* ----------------------------------------------------*/
/* Style the Background													       */
/* ----------------------------------------------------*/
body.custom {background: #44443f;}
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }
.custom #page { background: #fff; }

/* ----------------------------------------------------*/
/* Replace Widget Titles with Pickle Font Images       */
/* ----------------------------------------------------*/
/* 26 high without drop, 40 with*/
.widget_categories h3 {text-indent: -9999px; background-image: url('images/h-categories.png'); display: block; width: 125px; height: 40px;}
.thesis_widget_search h3 {text-indent: -9999px; background-image: url('images/h-search.png'); display: block; width: 78px; height: 26px;}
.widget_pages h3 {text-indent: -9999px; background-image: url('images/h-pages.png'); display: block; width: 70px; height: 40px;}
.widget_recent_entries h3 {text-indent: -9999px; background-image: url('images/h-recent.png'); display: block; width: 129px; height: 26px;}
.widget_tag_cloud h3 {text-indent: -9999px; background-image: url('images/h-cloud.png'); display: block; width: 121px; height: 40px;}
.widget_recent_comments h3 {text-indent: -9999px; background-image: url('images/h-latestcomments.png'); display: block; width: 194px; height: 26px;}


/* ----------------------------------------------------*/
/* Font styles and colors 											       */
/* ----------------------------------------------------*/
.headline_area h1, .headline_area h2, .headline_area a {color: #3C8C42;}
.headline_area a:hover {color: #3C8C42;text-decoration: underline;}