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

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #C7C7C7;
    border: 0.4em solid #C7C7C7;
    width: 840px;
}

.custom #sidebar_1 {
float:left;
width:49%;
}

.custom #sidebar_2 {
float:right;
width:49%;
}

/* Warnings/Alerts */
.custom .warning, .alert {
	padding: 6px 9px;
	background: #fffbbc;
	border: 1px solid #E6DB55;
	}

/* Errors */
.custom  .error {
	padding: 6px 9px;
	background: #ffebe8;
	border: 1px solid #C00;
	}

/* Downloads */
.custom  .download {
	padding: 6px 9px;
	background: #e7f7d3;
	border: 1px solid #6c3;
	}

/*--LINK colors, bgs, and borders--*/
.custom a, .custom a:visited { color: #CC6600; text-decoration: none; padding: 1px;}
.custom a:hover, .custom a:focus { color: #669900; padding: 1px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #FFE1E1; text-decoration: none;} 
.custom ul.menu li a, .custom ul.menu li a:visited { color: #fff; text-decoration: none; font-weight:bold;}
.custom	ul.menu li a:hover , .custom a:focus{ color: #99E600; text-decoration: none; background-color: transparent; border-bottom:none;}
.custom #footer a:link, .custom #footer a:visited { color: #CC6600;}	
.custom #footer a:active, .custom #footer a:hover {color:#669900;}	


/* This line sets up our clickable background image based on the site title's link */
.custom #header #logo a { display: block; height: 238px; width: 800px; background: url('images/header.jpg') no-repeat; outline: none;}

.custom #header a {color: #FFF; background-color: #FFF; padding: 0px; border-bottom-width: 0px; border-bottom-style: solid; border-bottom-color: #FFF; text-decoration: 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 { color: #CC6600; font-weight: bold;}
.custom h2 { color: #CC6600; font-weight: bold;}
.custom h3 { color: #669900; font-weight: bold;}
.custom h4 { color: #333; font-weight:bold; line-height: 1.1em;}

/*--BORDERLINES--*/
.custom ul.menu li { border-top: 0px; border-right: 0px; border-bottom: 0px; background: #669900; border-left: 0px solid #D9CFCF; padding-right: 3em;}
.custom ul.menu {background: #669900;  padding: 0.9em;}

/*--REMOVE HEADLINE ON FRONT PAGE--*/
.custom #noheadline .headline_area {
display:none;
}

/*--BLOCKQUOTES--*/
.custom blockquote{
background-color: transparent;
border-top: 3px double #CC6600;
border-left: none;
border-bottom: 3px double #CC6600;
padding: 5px;
font-style: oblique;
font-size: 1em;
margin-left: 15px;
margin-right: 0;
width: 290px;
float: right;
}

.custom blockquote p{
margin-bottom: 5px;
}

/*--SIGNUPFORM--*/
.custom #eventform {
background: url(http://askstagingdivalive.com/wp-content/uploads/2008/11/bg.gif) no-repeat;
width: 300px;
height: 560px;
margin: 0px;
margin-left: 15px;
padding-top: 1px;
font-family: Arial, Helvetica, sans-serif;
padding-left: 0px;
float: right;
}
.custom #eventform p{
color: #363636;
font-size: 13px;
font-weight: bold;
line-height: 15px;
margin-top: 0px;
padding: 15px 0px;
padding-left: 20px;
padding-right: 20px;
margin-bottom: 0px;
}
.custom .formlabel {
color: #333333;
font-size: 14px;
font-weight: bold;
padding-left: 10px;
width: 80px;
}
.custom .forminput {
padding-left: 5px;
background-color: #eef2e0;
border: 1px solid #c4c4c4;
}
.custom .formsubmit {
background: url(http://askstagingdivalive.com/wp-content/uploads/2008/11/submitbtn.gif) no-repeat;
width: 170px;
height: 29px;
border: none;
cursor:pointer;
margin-top: 10px;
}

.custom  #eventform #footer p {
font-size: 11px;
font-weight: bold;
line-height: 15px;
margin-top: 0px;
margin-bottom: 0px;
padding: 0px 0px;
padding-left: 20px;
padding-right: 20px;
text-align: left;
}

.custom .center {
text-align: center;
}
.custom table td {
padding: 2px;
}
.custom table tr {
padding: 0px;
}

.custom #sidebars { 
}

.custom .widget_text { 
margin-top: 0px;
}

.custom .widget_text img { 
margin-top: 0px;
margin-right: 10px;
margin-bottom: 10px;
}

.custom #footer {
color: #333333;
text-align:center;
}

a img:hover {
    border: none !important;
    margin: 0px;
    background-color: none;
}

a img:focus{
    border: none !important;
    margin: 0px;
    background-color: none;
}