/*
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/

/* Background image banner and navigation at top*/

.custom #header_area{display:none;}

.custom #nav_area ul {border-bottom:none; border-left:none;}
.custom #nav_area ul li {margin-top:4px; border-width:0; margin-bottom:0; padding-bottom:0; background:none;}
.custom #header {border-bottom:none;}

.custom #title_area {padding:0em 0 0.5em;}
.custom #header {border-bottom:none; height:145px; width:100%; padding-top:0; padding-bottom:0;}
.custom #header #logo {display:none;}
.custom #header #tagline {display:none;}

body.custom { background: #ffffff url('images/header.png') 50% 0 no-repeat; }

.custom #container { margin-top: 2em; margin-bottom: 2em; }
.custom #page { background: #fff; }

.custom #tabs {float:right}
.custom ul#tabs {width: 350px}

/*Hide page titles*/
.custom #nohl .headline_area {  display: none; }

/*Custom Footer*/
.custom #footer_area .page {
padding-bottom:0;}

.custom #footer {
border-top:none;
clear:both;}

.custom #footer {padding-top: 1.1em; color: #BBBBBC; text-align: center;}
.custom #footer a {color: #BBBBBC;}
.custom #footer a:hover {color: #BBBBBC;}
.custom #footer p {font-size:1.1em; line-height: 1.2em;}


/*Hide Sidebars*/
.custom #sidebars {display: none;}

/*Post Date-Non-help cursor*/
.custom abbr, acronym {
cursor: text;}

/*Gallery Customization*/
.custom #gallery-1 img {
border:0px solid #ffffff;
}
.custom #gallery-1 .gallery-item {
margin:0px; href:none; title:none
}

//Paragraph Spaces//
.custom p{margin-bottom:0;}
.custom ul{margin-top:0;}