/*
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/
*/

/* My own sitemap and archives page */
.custom .sitemap h3 {margin-top: 0;}
.custom .sitemap ul {font-size: .85em; }
.custom .sitemapl { float: left; width: 40%;}
.custom .sitemapr { float: right; width: 60%;}

/* My own 404 Error page */
.custom div#errorpage h2 {margin-top:0px;}
.custom div#errorpage {border:0px dashed #bbbbbb;padding:10px;float:left;}
.custom div#errorpage img {float:left;width:100px;padding:10px;}
.custom div#errorpage p {padding:15px 0px;margin:0px;}
.custom div#errorpage #error-inside{margin-left:130px;}

/* Background Color or Image */
body.custom { background: #8db6b6 url('') 50% 0 no-repeat; }
.custom #container { margin-top: 2em; margin-bottom: 2em; }
.custom #page { background: #fff; }

/***************************************************************/
/* Custom Header or Logo */
/***************************************************************/

.custom #header {background:url(images/logo.jpg) center top no-repeat; height:140px; padding:0 1.1em;}
	.custom #header #logo a {display:block; height:140px; text-indent:-9999px;}
	
	/* This line gets rid of the site title & tagline by casting them out to the far left */
	.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 */
	.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; }
	



/***************************************************************/
/* Google Adsense on Bottom of Home Page */
/***************************************************************/
.custom #comments { clear: both; }
.adhome { background: #ffffff; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.adhome ul { list-style-position: inside;  list-style-type: square; margin-left: 1.5em; }
.adhome li { margin-bottom: 5px; }
.adhome h4 {width:95% font-family: Georgia; clear:both; width:95% margin-top: 5px; margin-bottom:15px; font-size:14px; color: #000000; line-height:14px; text-shadow: 1px 1px 2px #000; border-bottom: 3px solid #F0F2ED; padding-bottom: 10px; }

/***************************************************************/
/* Google Adsense on Bottom of Each Post */
/***************************************************************/
.custom #comments { clear: both; }
.adbanner { background: #ffffff; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.2em; }
.adbanner ul { list-style-position: inside;  list-style-type: square; margin-left: 1.5em; }
.adbanner li { margin-bottom: 5px; }
.adbanner h4 { color: #151515; font-size: 12px; text-transform: uppercase; padding-top: 5px; padding-bottom: 5px; }
.adbanner h3 { font-size: 1.7em; letter-spacing: normal; margin-left: 1em; padding-top: 5px; padding-bottom: 5px;}
.adbanner a { font-size: 1em; border-bottom: 1px solid #ffffff; line-height: 1.5em; }