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


/*
The four lines below change the background color and borders of the tab menu at the top of the screen. BDC
*/
.custom ul#tabs { border-left: 1px solid #B0B0B0; }
.custom ul#tabs li { background: #DCD0A3; border: solid 1px #B0B0B0; border-left: 0;}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #FFFFFF; border: solid 1px #B0B0B0; border-bottom-color: #fff;}
.custom ul#tabs li.rss { background: none; } 

/*
Create a new custom BHS font color for headers that match the color of the logo and headline on the website
*/
.bhsgreen { color: #00502F; font-weight: bold; }
.largebhsgreen { color: #00502F; }

/*
Change the nav links to match BHS font color 
*/
.custom .sidebar a, a:visited {color: #000080;}

/*
Change the background color of the page to enclose the page
*/
body.custom {
    background: #253F22;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0em;
    background: #FFFFFF;
    border: 1em solid #C4B062;
}

.custom #page {
    background: #fff;
}


/*
The default behavior for category archives pages is to style an <h1> the same as an <h3> so that the focus is on the post titles, which are <h2> and, 
therefore, larger.  If you want category archives pages to behave with <h1> as a true <h1>, the styling item below fixes the situation.
*/

.custom #content #archive_info h1 { font-size: 3em; }

/*
Styling code for the image_menu bookmarks function, used on the Home Page
*/
.bookmarks-gallery {
	text-align: center;
	margin: 0 auto;
	}
.bookmarks-gallery img {
	width: 200px;
	height: 200px;
	margin: 0 8px 15px 8px;
	}


/*
The line below reduces whitespace above & below the BHS banner at the top of the page.
Based on how much things changed, seems like default amount of padding on top and bottom is probably 2 ems.
*/

.custom #header { padding-top: 1.2em; }
.custom #header { padding-bottom: 0.7em; }

.contact_input { width: 100px; }

 		