/*
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: #330066;
}
.custom #page, .custom #content {
    background: #fff;
}

/* header area ################################### */
.custom #header { position: relative; height: 180px; padding: 0 3em; 
   background: #ffffff no-repeat url('images/header.png'); border: none; }
/* no longer used...   we have no header link!
    -- try to get it back someday?
.custom #header #logo a { display: block; height: 111px; width: 860px; 
   background: url('images/header.jpg') 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; }


.custom a.rsssub {
background:transparent url(images/icon-rss.gif) no-repeat scroll 0 50%;
padding-left:15px;
}
.custom a.emailsub {
background:transparent url(images/icon-email.gif) no-repeat scroll 0 50%;
padding-left:15px;
}

/* nav area/tabs ##################################### */
.custom .menu { background: #086608; }


.custom #footer {
text-align:center;
background: white;
}
.custom #header { 
   padding: 0;
}
/* little spacer below the menu */
.custom #aftermenu {
   height: 10px;
   background-color: #94bd94;   
   /* even paler green:  #e9f1e2 */
}

/* this next thing does the background for the right sidebar! */
.custom #content_box { 
   background: transparent url('images/palegreen500.gif') 594px 0 repeat-y; 
}
/* note: there was a background "line" in here, we didn't want */
/*
.custom #column_wrap { background: transparent; }
*/

.custom #container {
border: 1px solid #043e84;
overflow: hidden/*auto*/;
/*width: 785px;*/
}
.custom .sidebar h3 {
  font-variant: inherit;
  /*ok...  for this one, much styling...  does header for sidebars */
  text-transform: uppercase;

  background-color:#330066;
  border-bottom:3px double #FFFFFF;
  border-top: 3px double #FFFFFF;
  color:#FFFFFF;
  margin-top:5px;
  padding:4px;
  text-align:center;
}
/* let the weather widget use it's own styles */
.custom li.widget div.weathercom {
    font-size: inherit;
    line-height: inherit;
}
.custom .headline_area h1 {
color: #330066;
}
.custom h2 a {
color:#086608;
}


/* restore normal submit buttons */
.custom input.form_submit, .custom input[type="submit"], .custom input[type="reset"] {background:ButtonFace; color:ButtonText; border:2px outset ButtonFace;}
.custom input.form_submit:active {border-style:inset; -webkit-appearance:push-button;}
.custom input[type="image"], .custom input[type="radio"] { border: 0px transparent; padding: 0px; border-width: 0px;  }
.custom .format_text input {
    width: auto;
}

/* hide a couple of things on the sticky frontpage post */
.custom #post-1 .headline_meta { display: none; }
.custom #post-1 .to_comments { display: none; }
