/*
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-color:#003366 }

	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #000000; }

		.custom #page { background: #fff; }

.custom li.widget .resume_box { padding: 0.846em; line-height: 1.385em; background: #e3f0f2; border: 0.077em solid #addde6; }

/*increases spacing below h3 tags and changes font to Trajan Pro*/
.custom .format_text h3{ margin-bottom: 1.5em; font-family: Trebuchet MS, Helvetica, Sans-serif; font-weight:bold; font-size:22px}
.custom .format_text h4{ margin-bottom: 1.5em; font-weight:bold; font-size:30px; line-height: 1.2em; text-align: center}
.custom .format_text h2{ margin-bottom: 1.5em; font-weight:bold; font-size:24px; line-height: 1.2em; text-align: center}
div.narrowpage { margin-left: 75px; margin-right: 75px }

/*the first line customizes all entry titles for posts to Trajan Pro font bolded
The second line customizes all individual page titles to Trajan Pro font bolded
.custom .entry-title, .custom .entry-title a { font-weight:bold; font-family: Trajan Pro, Verdana, Arial, Helvetica, Sans-serif}
.custom h2{ font-weight:bold; font-family: Trajan Pro, Verdana, Arial, Helvetica, Sans-serif}
*/


/*THIS WHOLE SECTION SETS OFF THE CUSTOM HEADER IMAGE*/
/* 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: 125px; width: 860px; background: url('images/banner_two_column.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; }

/*create div just like the p class="note" so that you can use lists, etc*/
.format_text div.note { background-color:#ffffa0; border: 1px solid #dddddd; padding: 20px; margin-top: 10px; margin-bottom: 10px; margin-left: 30px; margin-right: 30px}
/*old div.note gray color: #f5f5f5*/
.format_text div.alert { background-color:#e3f0f2; border: 1px solid #e5e597; padding: 20px; margin-top: 10px; margin-bottom: 10px;  margin-left: 30px; margin-right: 30px}

/*Feature book hook style*/
#feature_box .sidebar { font-size: 13px; padding-top: 0.3em; padding-bottom: 0.3em; text-indent: -7px;}
.custom .sidebar a:hover { text-decoration: none; color: #FFFFFF; background-color:#666666}

/*starts to customize the navigation menu tabs similar to the Constabulary blog, causes tabs to turn dark gray with white font when mouse hovers over the tab*/
.custom ul#tabs li a:hover { color: #FFFFFF; text-decoration: none; background:#666666;}

/*37-38 removes the automatic link underline from posts and the li.widget and changes it to underline on hover like the default widgets*/
.custom .format_text a { text-decoration: none}
/*If want to add an underline on hover, it's a:hover {text-decoration: underline}*/
.custom .format_text a:hover { text-decoration: none; color: #FFFFFF; background-color:#666666}
.custom li.widget a { text-decoration: none; }
.custom li.widget a:hover { text-decoration: none; color: #FFFFFF; background-color:#666666}

.custom div.welcome_box {
width: 90%;
padding: 0.571em 0.786em;
margin-left: 1em;
margin-right: 1em;
margin-bottom: -2.0em;
margin-top: 1em;
padding-bottom: 0em;
}