/*
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/
*/

/* This code adds the header image and makes it a clickable link to the home page. */
.custom #header {
background: #ffffff;
padding-top: 0em; padding-right: 0em; padding-bottom: 0em; padding-left: 0em;
border-top: 0em; border-right: 0em; border-bottom: 0em; border-left: 0em;
margin-top: 0em; margin-right: 0em; margin-bottom: 0em; margin-left: 0em;
}

.custom #header #logo a {
display:block;
width:960px;
height:168px;
background:url(images/gary_loper_header.jpg) center no-repeat;
color:#000000;
text-indent: -9999px;
padding-top: 0em; padding-right: 0em; padding-bottom: 0em; padding-left: 0em;
border-top: 0em; border-right: 0em; border-bottom: 0em; border-left: 0em;
margin-top: 0em; margin-right: 0em; margin-bottom: 0em; margin-left: 0em;
}

.custom #header #tagline {
color:#000000;
text-indent: -9999px;
line-height:0;
} 

/* This changes the color of the page titles and post titles. */
.custom h1 {color: #0B1D73; }
.custom .entry-title a {color: #0B1D73; text-decoration:none; }
.custom .entry-title a:hover {color: #0B1D73; text-decoration:underline;}

/* Link styling for sidebar links */
.custom #sidebars a {color: #0B1D73; text-decoration:none; }
.custom #sidebars a:hover {color: #0B1D73; text-decoration:underline; }

/* This sets the style for the Call To Action box at the bottom of the site. */
.custom .makecontact {
	width: 95%;
	background:#faf3d3;
	color:#000000;
	border: 1px solid 0B1D73;
	padding:6px;
	font: 15px Verdana, Geneva, sans-serif;
	text-align:center;
}
.custom .makecontacttext {
	padding: 10px;
}

/* This changes the styling for the free report box. */
.custom .freereportbox { padding-bottom:15px; }
.custom .custom_box { background: #FFFFFF; border:0; }
.custom .custom_box img { display: block; margin-right: auto; margin-left: auto; float: none; clear: both; border:0; }

/* This sets the style for the "Visit us at" box/widget. */
.custom .visit-us {
	background:#FAF3D3;
	color:#000000;
	border: 1px solid #0B1D73;
	padding:5px;
	text-align:center;
}
.custom .visit-us h3 {
	font: 14px Verdana, Geneva, sans-serif;
	text-transform:uppercase;
	padding-bottom:8px;
}

/* This changes the footer border style. */
.custom #footer { border-top: 1px #ddd; }


/* This code changes the border above the Previous/Next post links. */
.prev_next { text-transform: uppercase; letter-spacing: 2px; color: #666; border-top: 0px; clear: both; }

/* remove the "Books" h1 title from the Books page */
.books .headline_area h1 { display: none; }

/* This styles the MailChimp newsletter subscription form. */
#mc_embed_signup form {padding:10px; border: 1px solid #96d3da; margin-left:15px; background-color:#FAF3D3;}
#mc_embed_signup p {margin:0 0 0 0.25em; padding:0; color:a279b1; font:Verdana, Geneva, sans-serif; text-align:right; padding: 0 40px 5px 5px; }
#mc_embed_signup fieldset {border:0;}
#mc_embed_signup h3 {font: Verdana, Geneva, sans-serif; letter-spacing: 1px; color: #784063; padding-left:10px; padding-bottom:15px;}
#mc_embed_signup input { font:Verdana, Geneva, sans-serif;  font-size: 1em; color: #000; background: #FFF; border: 1px solid #784063; }
#mc_embed_signup textarea { font-size: 1em; color: #000; background: #FFF; border: 1px solid #784063; }

/* This styles the MailChimp free report sign-up form. */
#mc_embed_signup2 form {border: 1px solid #96D3Da; background-color:#FAF3D3;}
#mc_embed_signup2 p {margin:0 0 0 5px; padding:0; color:#784063; font:Verdana, Geneva, sans-serif; text-align:left; padding: 0 10px 5px 5px; }
#mc_embed_signup2 fieldset {border:0;}
#mc_embed_signup2 input { font:Verdana, Geneva, sans-serif;  font-size: 1em; color: #000; background: #FFF; border: 1px solid #784063; }
#mc_embed_signup2 textarea { font-size: 1em; color: #000; background: #FFF; border: 1px solid #784063;}
