/*
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 { font-family: "Lucida Grande", Verdana, Arial, sans-serif; background: #456; color: #444; }
	.custom #container { margin-top: 2em; margin-bottom: 2em; border: 1em solid #345; }
	.custom #page { background: #fff; padding:0 0;}

.custom .headline_meta { font-style: normal; }
.custom .headline_meta span, .headline_meta abbr { font-style: normal; text-transform: uppercase; letter-spacing: 1px; }

/* change nav bar */
/*
.custom ul#tabs {border-bottom:none; border-left:none; background:#EEEEEE;}
.custom ul#tabs li {margin-bottom:0; border:none; background:none;}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:#FFFFFF;}
.custom ul#tabs li.rss {}
.custom ul#tabs li a {font-size: 90%; }
.custom ul#tabs li a:hover {text-decoration:none; background:#FFFFFF;}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {}
.custom ul#tabs li.current_page_item a:hover, .custom ul#tabs li.current-cat a:hover {text-decoration:none; background:#FFFFFF;}
*/

.custom #nav { width: 94.4em; padding-right: 1em; padding-left: 3em; background: #dae7ee; }
.custom ul#tabs { width: auto; border: none; }
.custom ul#tabs li { margin-bottom: 0; border: none; background: none; }
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat { padding-bottom: 0; background: #fff; }
.custom ul#tabs li a { padding: 1em 1em; background: none; }
.custom ul#tabs li a:hover { background: #c0d3de; }
.custom ul#tabs li.current_page_item a:hover, .custom ul#tabs li.current-cat a:hover { background: #fff; }

/* change sidebar background color */
.custom #content_box {background-color:#fff;}

/* change content area background color */
.custom #content {background-color:#fff; }

/* custom header */

.custom #header {background: url(images/header.png) no-repeat; height: 175px; width: 960px;}
.custom #header {padding: 0; border-bottom:none;}

.custom h3 {
color:#897E7C;
}

/* Widget headings */
.custom .widget h3 {
   font-family: "Lucida Grande", Verdana, Arial, sans-serif; color: #369; text-transform: lowercase;
}

/* forms */
.custom form div {clear: left; margin: 0; padding: 0; padding-top: 0.6em;}
.custom div label {float: left;}
.custom form input {margin-top: 5px; margin-bottom: 5px; border: 1px solid #999; padding: 3px;}
	
	
	