/*
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/
*/

/* MASTHEAD
***********************************************************************/

/* override the default border now that we don't need it (since the navigation is below the header) */
.custom #header { border-bottom: none; padding: 1; }

*/ BACKGROUND MARGINS/COLOR
***********************************************************************/

.custom #header{
    margin-top: 0em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: none
    border: none}

body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

/*---:[ headlines color]:---*/
.custom h1, h2 { color: #1379A0 }
.custom h2 { color: #1379A0 }
.custom h3 { color: #44443F }
.custom h4 { color: #A84307 }
.custom .sidebar h3 { font-weight: bold; font-size: 1.3em; line-height: 1.385em; margin-bottom: 0.692em; 
border-top-width: thin;	border-top-style: dotted; border-top-color: gray;
}

/*---:[ headlines ]:---*/
.headline_area h1, .headline_area h2 { font-size: 2.5em; line-height: 1.364em; }
.format_text h1 { font-size: 1.75em; line-height: 1.222em; margin: 1.0em 0 0.611em 0; }
.format_text h2 { font-size: 1.6em; line-height: 1.222em; margin: 1.0em 0 0.611em 0; }
.format_text h3 { font-weight: bold; font-size: 1.3em; line-height: 1.222em; margin: 0.0em 0 0.611em 0; padding-bottom: 0em }
.format_text h4 { font-size: 1em; }
.format_text h5 { font-size: 0.786em; }
.format_text h6 { font-size: 0.786em; }
.format_text p  { font-size: 1em;}
.teaser h2 { 
}

#archive_info h1 { font-size: 1.8em; line-height: 1em; }

/*---:[ content elements ]:---*/
body { font-family: Verdana, sans-serif; }
	#header { padding-top: 2.2em; padding-bottom: 1em; }
		.post_box { padding-top: 1em; }
			.headline_area { margin-bottom: 1em; }
		.teasers_box { padding-top: 2.2em; padding-bottom: 2.2em; }
		#multimedia_box { margin-bottom: 2.2em; }
	#footer { padding-top: 1.1em; padding-bottom: 1.1em; }

/*---:[ fixed checkbox]:---*/
.custom ul.gfield_radio li input {width:5%!important}
.gform_footer input[type=image] {border:none!important; border-color:none!important; background-color:none!important}
ul.gfield_checkbox li input {width:5%!important}
