/*
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/
*/

body.custom { background: #73b3d9; }

/* 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 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: 2px 0px 2px 0px; border-bottom: none; margin: .1em -2.3em -4.0em -2.3em; }

.custom #page {	background: #f2f0f1; }

/*---:[ Font Adjustments ]:---*/
.custom .headline_meta, .headline_meta span, .headline_meta abbr {text-transform:none; font-style:italic}
.custom .format_text .to_comments span {font-size:1.2em;}

/*---:[ Sidebar Adjustments ]:---*/
.custom #sidebar_1 {background: #b8d2d9; border-style:solid; margin: .1em 0em 0em 0em}
/*---.custom #sidebar_2 {background: #E4E2D4;}---*/

/* .custom #footer {border-top:none;} ---*/

/* cancel border properties of nav bar */
.custom #tabs { border-color: none; border-style: none; border-width: none; margin: -2.3em 0em 0em -2.3em; }
.custom #tabs a { color: #ffffff; }
/* add a line to top right bottom left of nav bar tabs */
.custom #tabs li {
        /* background of tabs is lite gray */
	background: #626473; 
        /* lines between tabs are none*/
	border-color: #626473;
	/* solid border on right of tab */
	border-style: solid;
}
/* change behavior of tabs when hovered over */
.custom #tabs .current_page_item a:hover,#tabs .current-cat a:hover{ 
	/* word has underline when hovered over */
	text-decoration: underline; 
	/* word becomes bold weight when hovered over */
	font-weight: bold;
}

/* change behavior of tabs when current page */
.custom #tabs .current_page_item a,#tabs .current-cat a { 
	/* color of the background when current page */
	background: #252326; 
	border-color: #252326; 
	/* word has no underline when current page */
	text-decoration: none; 
	/* word becomes bold weight when current page */
	font-weight: bold;
	/* width of border of top right bottom left tab */
	border-width: 0px 0px 0px 0px;	
	padding: 0 0 -1 0}
