/*
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.css for Killgoreadventures.com
*/

body.custom {
background: #000033;
background-image:url(images/background.png);
 }

.custom #container { background: #000033;}

.custom #page {background: #ffffff;}

.custom #content_box {background: #ffffff;}

.custom #header #logo {float:center;}

.custom #header #logo a { display:block; height: 150px; width: 990px; background: #000000 url('images/header.png') no-repeat; outline: none; }
.custom #header {padding:0; border:0; height:150px;}

.custom h1 { margin-top: 0.5em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:24px; color: #000033;}
.custom h2 { margin-bottom: 0.5em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:20px; color: #000066;}
.custom h3 { margin-top: 0.1em; font-family: Geneva, Arial, Helvetica, sans-serif; font-size:18px; color: #CC0000; text-transform:none; font-variant:normal; letter-spacing:0px;}
.custom h4 { margin-top: 0.5em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:18px; color: #000000;}
.custom h5 { margin-bottom:-0.1em; font-family:Geneva, Arial, Helvetica, sans-serif; font-size:16px; color: #000066;text-transform:none; }
.custom h6 { margin-bottom:-0.1em; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; color: #CC0000; text-transform:none; font-stretch:semi-condensed;}
.format_text ul { margin-top:.05em;}

/*This fills in the navigation menu with the black background color to match buttons*/
.custom .menu {background-color:#000000;}

/*This gives the footer a custom background color*/
.custom #footer {
background-color: #000000;
text-align: center;
color:#FFFFFF;
}

/*This gives the sidebar1 a background color*/
.custom #sidebar_1 {
background-color: #CCCCCC;

}


/* Feature box with white background and dashed border at bottom */

.custom .page #footer_area #footer {
 background: #CCCCCC;
 font-style:italic;
 font-size:12px;
 padding: 2em;
  }

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

