/*
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: url('images/backg.jpg') 100% repeat;
}

.custom #container {
    margin-top: 0.5em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;

}

.custom a, .custom a:visited { color: #0000ff; }	
	.custom a:hover { color: #5CB3FF; }	

/*space between widget list items*/
.custom li.widget ul li { margin-bottom: 0.1em ; }

/*Reduce the space between widgets in the sidebars*/
.custom li.widget { margin-bottom: 10px; }

/*Reduce white space under header*/
.custom #header #tagline { height: 0; }

/*Remove white space around header*/
.custom #header { padding: 0; border-bottom:none;}

/*Improve image captions*/
.format_text .alignleft { margin: 0 1em 1em 0; float: left; clear: left; }
.format_text .alignright { margin: 0 0 1em 1em; float: right; clear: right; }
.format_text .aligncenter { display: block; margin: 0 auto 1em auto; float: none; clear: both; }
.format_text .alignnone { display: block; margin: 0 auto 1em 0; clear: both; }
.format_text .wp-caption { background-color: #f3f3f3; border: 0.071em solid #ccc; text-align: center; padding: 0.714em; }
.format_text .wp-caption p { font-size: smaller; font-style: italic; margin-bottom: 0; }

/* remove divider lines */
.custom #content_box {background:none;}

/*---:[ nav menu styles ]:---*/

.custom ul#tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }
	ul#tabs li { margin-bottom: -0.1em; background: url('images/backg.jpg') 100%; border: 0px solid #ddd; border-left: 0; float: left;}
	ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background:#00FF00; border-bottom: 0; }
		ul#tabs li a { display: block; line-height: 1em; color: white; text-transform: uppercase; letter-spacing: 2px; }
		ul#tabs li a:hover { color: #111; text-decoration: underline; }
		ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }
		ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }