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

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

/* 
Create a box with background color (light yellow in this case) for an article layout.
*/
.clean-yellow{
border:solid 2px #DEDEDE;
background:#FFFF99;
color:#222222;
padding:14px;
}

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

.custom #page {
    background: #fff;
}

/* 
Stop Thesis from putting so much space before headlines
*/
div.format_text h1 {margin-top:-1.3em; margin-bottom:0.2em; line-height:1.2em;}

div.format_text h2 {margin-top:-0.8em; margin-bottom:0.2em; line-height:1.4em;}


.C7input { width: 100px; }

/* Following added to deal with formatting issues with Gravity Forms */
ul.gfield_radio li input {width:5%!important}
.gform_footer input[type=image] {border:none!important; border-color:none!important; background-color:none!important}

/* Changing the size of the text on the waivers, also in Gravity Forms */
.gform_wrapper .gfield_description {
	font-size:13px !important;
	font-style:normal!important;
}
