/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define
Modifications by ETK for breathehope.org

Use:
The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's style.css file.

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!
*/

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 130px; width: 930px; background: url('images/bh2.png') 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; }


/*--HEADLINES--*/

.custom h1 {font-family:baskerville,palatino,'palatino linotype', georgia,serif; font-size: 2em; font-weight: bold; line-height: 1.1em; font-variant:small-caps;  color: #339999;}


.custom h3 { color: #339999;}

.custom h4 { color: #339999; font-weight:bold; line-height: 1.1em;}

.custom h2 { font-family:baskerville,palatino,'palatino linotype', georgia,serif; font-size: 2em; font-weight: bold; line-height: 1.1em; font-variant:small-caps; }

	.custom .content_inner h2 { padding-top: 1.1em; border-top: 1px dotted #bbb; border-color: #65C739;}


.sidebar h2 {color: #33CCCC; font-family:baskerville,palatino,'palatino linotype', georgia,serif; font-size: 0.84615em; line-height: 1.45455em; font-weight: bold; font-variant:small-caps; }


/*---:[ #header styles ]:---*/

.custom #header #logo {font-weight: normal; font-color: #33CCCC; font-size: 3.6em; line-height: 1em; margin-bottom: 0.25em; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #33CC33;}

.custom	#header #logo a, #header #logo a:visited { color: #33CCCC; text-decoration: none; }

.custom	#header #logo a:hover { color: #65C739; }
	
.custom #header h1 { font-weight: bold; font-style:italic; text-transform: lowercase; font-size: 1.4em; line-height: 1em; color: #339999; }

.custom #header p#tagline { font-weight: normal; font-style:italic; font-size: 1.4em; line-height: 1em; color: #339999; }


/*--LINK colors, bgs, and borders--*/

.custom a, .custom a:visited { color: #33CCCC; text-decoration: none; padding: 1px;}

.custom a:hover, .custom a:focus { color: #65C739;  padding: 1px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #FFFFFF; text-decoration: none;}

.custom ul#tabs li a, .custom ul#tabs li a:visited { color: #33CCCC; text-decoration: none;}

.custom	ul#tabs li a:hover { color: #65C739; text-decoration: none; background-color: transparent; border-bottom:none;}

.custom .format_text a:link, .custom .format_text a:visited; {color: #9D9595;}

.custom .sidebar a:link, .custom .sidebar a:visited { color: #65C739;}

.custom .sidebar a:hover {color: #65C739; padding: 1px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #33CC33; text-decoration: none;}

.custom #footer a:link, .custom #footer a:visited { color: #B4ABAB;}	

.custom #footer a:active, .custom #footer a:hover {color:#65C739;}	

