/*
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:#000}

.custom img.frame {padding:0; border:0.4em solid #ddd;}
.custom p.left {text-align:left;}
.custom p.right {text-align:right;}
.custom p span.strike {text-decoration:line-through;}


.custom div.img { 
background-color:#EEEEEE;
border:0.1em solid #ddd;
font-style:normal;
text-align:left;
padding:0.5em 0.5em 0.5em 0.5em;
}

.custom div.img div { 
font-size:0.857em;
line-height:1.5em;
margin-bottom:0;
}

.custom li.widget ul li ul li {
list-style-image:url(images/bg_arrow_right_2.gif);
list-style-position:outside;
list-style-type:none;
}

.custom li.widget ul li {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}

.custom #s {
font-size:0.857em;
}

.custom .format_text .hd_input input {
border-width:0em;
padding:0em;
width: 21px;
}

.custom #amzn_search_textfield {
border-width:0.071em;
padding:0em;
width: 80px;
}

.custom #amazon_widget_CA_8002_0 {
float: right;
}

.custom #amazon_widget_US_8002_0 {
float: left;
}

/* === TITLE === */
.custom #header_area .page {width:100%; margin:0; padding:0; position:fixed; z-index:-1;}
.custom #header {border-bottom:none; background:#222; padding-bottom:0;}

	.custom #header #logo a { display: block; height: 248px; background: url('images/header.jpg') no-repeat; outline: none;}
	.custom #header a {color: #FFF; background-color: #FFF; padding: 0px; border-bottom-width: 0px; border-bottom-style: solid; border-bottom-color: #FFF; text-decoration: 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; }

	
/* === NAV === */
.custom #nav_area {background:#000; border-color:#111; border-style:solid; border-width:0.1em 0; margin-top:0em;}
.custom #nav_area .page {width:90em;}
	.custom ul.menu {border-width:0;}
		.custom ul.menu li {background:#000; border-width:0; margin-bottom:0;}
			.custom ul.menu li a {line-height:2em; color:#fff; display:block; padding-right:6em;}
			.custom ul.menu li a:hover {color:#fff; background:#222; text-decoration:none;}
		.custom ul.menu li.current_page_item, .custom ul.menu li.current-cat {background:#111; padding-bottom:0}
			.custom ul.menu li.current_page_item a, .custom ul.menu li.current-cat a {cursor:pointer;}
		.custom ul.menu li.search_box {float:right; padding-top:0.83em;}
		.custom ul.menu li.search_box input {height:2em;}


/* === CONTENT BORDERS === */
.custom #content_area {width:76.2em; padding:0.3em; margin:5em auto; border:0.4em solid #111; background:#222;}
.custom #content_area .page {background:#fff;}
.custom #content_box {background:#fff;}

.custom .format_text {
padding-bottom: 25px;
}

.custom .format_text p{
margin-top: 1.571em;
}

.custom .entry-content, .custom .format_text {font-family:Helvetica, Arial, sans-serif;}
.custom .entry-content h1,
.custom .entry-content h2,
.custom .entry-content h3,
.custom .entry-content h4,
.custom .format_text h1,
.custom .format_text h2,
.custom .format_text h3,
.custom .format_text h4

.custom .format_text img {max-width:700px;}


/* === FOOTER === */
.custom #footer {background:#000; border-color:#222; border-style:solid; border-width:0.1em 0; margin-bottom:2em; text-align: left; color:#fff}
		.custom #footer a {}
		.custom #footer a:hover {color:#fff;}