/*
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/
*/

span.modulename { font-family:Consolas,"Andale Mono",Monaco,Courier,"Courier New",Verdana,sans-serif; }
span.function { font-family:Consolas,"Andale Mono",Monaco,Courier,"Courier New",Verdana,sans-serif; }
span.command { font-family:Consolas,"Andale Mono",Monaco,Courier,"Courier New",Verdana,sans-serif; }
span.variable { font-family:Consolas,"Andale Mono",Monaco,Courier,"Courier New",Verdana,sans-serif; font-style: italic;}

.footnotes {
  font-size: 75%;
  line-height: 1.5em;
  padding: 10px 0 10px 0;
  clear: left;
}

.footnotes .footnotedivider {
  width: 120px;
  border-bottom: 1px solid #ccc;
}

.footnotes li {
  margin: 0 0 5px 0;
}

sup.footnote a {
  text-decoration: none;
  font-size: 80%;
}

sup.footnote {
  line-height: 0em;
}

.footnotereverse a {
  padding: 0 0 0 5px;
  text-decoration: none;
}

.homepage div.headline_area { display: none; }
.homepage div#header { display: none; }
.homepage img#homepage-logo { margin-left: -10px; }

.aboutpage h1 { padding-bottom: .3em;}
.aboutpage h1.section { padding-bottom: .3em; padding-top: .5em;}
.aboutpage .format_text p { margin-bottom: .75em; }
.aboutpage div.headline_area { display: none; } 

.bookpage h1 { padding-bottom: 10px; padding-top: 5px;}
.bookpage ul { margin-top: -1em; }
.bookpage div.headline_area { display: none; }

.buypage ul { padding-top: 1em; }
.buypage div.headline_area { display: none; }

.talkpage h1 { padding-bottom: 0px; padding-top: 20px;} 
.talkpage div.headline_area { display: none; }

.classpage h2 { margin-top: .75em; }
.classpage ul { margin-top: -1em; }
.classpage div.headline_area { display: none; }

.contactpage div.headline_area { display: none; }

.custom #header  { color: #ffffff; display: block;  background: url('images/whoa.gif') 0% 20% no-repeat; outline: none; padding-bottom: 2.4em; padding-top: 2.4em; margin-top: 10px;}
.custom #logo,#tagline { margin-left: 100px;}
.custon #tagline {margin-left: 100px; }

h1 { 
padding-bottom: .3em;
line-height: 1em;
}