/*
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/
*/

/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 200px; width: 960px; background: url('images/header.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; }

/* Blue box in sidebar widget */
.custom li.widget .blue_box_callout { padding: 0.500em; line-height: 1.385em; background: #fff; border: 0.077em solid #ebebeb; }

.custom #tabs,
.custom #tabs li    {border:0; background:#674a9a;}
.custom #tabs       {border-top:2px solid #440e62; border-bottom:2px solid #440e62; padding:0 0; text-transform:lowercase;}
.custom #tabs li,
.custom #tabs .current_page_item,
.custom #tabs .current-cat {padding:2px 4px; background:none; border-right:0.5px dotted #7458a4;}
.custom #tabs a:link,
.custom #tabs a:visited          {padding:8px 9px 7px; color:#c9adfb;}
.custom #tabs a:hover,
.custom #tabs a:active           {background:#603aa2; color:#fff; text-decoration:none;}
.custom #tabs .current_page_item a:link,
.custom #tabs .current_page_item a:visited,
.custom #tabs .current-cat a:link,
.custom #tabs .current-cat a:visited {color:#fff; background:none;}
.custom #tabs .current_page_item a:hover,
.custom #tabs .current_page_item a:active,
.custom #tabs .current-cat a:hover,
.custom #tabs .current-cat a:active  {color:#fff;}
.custom #footer_widgets ul.sidebar_list {text-align:left; border-bottom:3px double #ddd; margin-bottom:1em;}
.custom #footer_widgets li.widget {width:24%; margin:0 0.5%; float:left; font-size:1.2em;}

/*Background */

body.custom {
    background: #603aa2 url('images/bg.png') 50% 0 no-repeat; background-attachment: fixed;
}

.custom #container { margin-top: 1em; margin-bottom: 2em; padding: 0.0em; background: #dddddd; border: 1.0em solid #EFCC0D; }

.custom #page {
    background: #F6EFCE; }
	
/* === SIDEBAR HEADINGS === */
.custom .sidebar h3 {font-variant:normal; text-transform:lowercase; color:#440e62;  border-bottom:2px dotted #440e62; line-height:2em; padding:0 0.25em;}


