/*
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 Navigation
Background Image:349px
NavArea:56px
Logo:38px


 */
body.custom {
    background: #fff url(images/bg_body.jpg) no-repeat top;
}
.custom #container {
    margin-top: 0px;
    margin-bottom: 2em;
    padding-top:0px;
    background: none;
    border: #000 solid 0px;
    overflow:hidden;
    width:1000px;
}
.custom #page {
    background: none;
    padding:0px;
    overflow: hidden;
}
#content{padding-left:20px;}
#content_box {background:none;}
ul#tabs {float:none;width:990px;background:url(images/logo.gif) no-repeat; padding-left:300px; padding-top:18px; margin-left:20px;height:36px; border:0px; border-bottom:#d0d6e2 solid 0px; overflow: hidden;}
    ul#tabs li.current_page_item, ul#tabs li.current-cat {float:none;display:inline;width:80px;background:none;border-bottom:#085a87 solid 0px;}
    ul#tabs li {float:none;display:inline;width:80px;background: none;border:none}
        ul#tabs li a {float:none;display:inline;width:80px;color:#085a87;}
            ul#tabs li a:hover {float:none;display:inline;width:80px;color:#085a87; text-decoration: none; font-weight:bold;}

.custom #header {float:left;display:inline;width:990px;border:0px;border-top:#082458 solid 0px;height:275px;padding:0px;padding-top:20px;padding-left:8px;margin-left:20px;}
#lead_main {float:left; width:970px; border:#000 solid 0px;}    
#left_lead {float:left; width:500px;display:inline; width:495px; border:#000 0px solid;}
    h1#lead_copy {float:left; width:500px; display:inline;background: url(images/lead_copy.png) no-repeat; height:140px;}
    ul#lead_buttons {float:left; width:500px;display:inline;padding-top:60px;list-style-image: none;list-style-position: outside; list-style-type: none;}
        ul#lead_buttons li {float:left; width:200px;display:inline; margin-right:50px; }
    #donate_content {float:right; width:380px;text-align: center; border:#000 solid 0px;}
        h1#donate_copy {float:none;color:#cae2ff; font-size:14pt;}
        p#donate_copy_tagline {float:none;color:#afc5df; font-size:11pt;}
        #donate_content img {float:none;border:#092a63 solid 15px;margin-top:10px;}

        #email_signup {float:right;width:460px;height:70px;margin-top:70px; text-align: left; border:#000 solid 0px; width:464;}
            #email_signup_form h5 {margin-left:2px;color:#3e434a; font-size:11pt;}
            #email_signup_form p {margin-left:2px;color:#636b75; font-size:8px;}
            #email_signup_form input {background:#d1d4d3}
            #email_signup_form input.cleardefault {font-size:9pt; line-height: 1; padding:4px; margin-top:10px;}
            #email_signup_submit_button {margin-left:10px; border:none;}
            #email_signup_fieldset {border:0px}
            #email_signup_legend {display:none;}
            #email_address_label {display:none;}
            span.label,span.spacer,span.multiple span {width:120px; } 
            span.multiple {} 
            span.button {} 
            div.clear {clear:both;padding-top:5px;} 
            * html #email_signup{
              overflow-x: auto; overflow-y: hidden; 
              width: expression(document.body.offsetWidth - 400);}
              
/* Table of Contents */
.toc {
  border: #ccc solid 1px;
  float: right;
  font-size: .9em;
  margin: 0 0 5px 12px;
  width: 250px;
  background-color:#fafdff;
}

.toc ol {
  margin: 5px;
  padding-left: 30px;
}

/* editing the video box to get rid of the default black background */
#video_box {
background:#FFFFFF none repeat scroll 0 0;
padding:1em;
}