/*
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 line sets up the clickable header image */
.custom #header #logo a { display: block; height: 220px; width: 960px; background: url('images/kc-header.jpg') no-repeat; outline: 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; }

/* This is a bit of a kludge, but it seems to work. */
.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; border:none; }

/* This adds the border around the page. */
.custom #container { border: 0.2em solid #818588; }

/* This changes the footer border style. */
.custom #footer { border-top: 1px; }

/* This adds padding below each of the titles in the Recent Posts widget. */
.custom #recent-posts-2 li { padding-bottom:6px; }

/* This removes the underline from the links in the Subscribe and Connect sidebar widgets. */
.custom #text-436013791 a {color: #780A0A; text-decoration:none; }
.custom #text-436013791 a:hover {color: #780A0A; text-decoration:underline;}
.custom #text-436128252 a {color: #780A0A; text-decoration:none; }
.custom #text-436128252 a:hover {color: #780A0A; text-decoration:underline;}


/* This changes the hover color on the Submit button in the comment form. */
.custom input.form_submit:hover { color: #780A0A; }


/* This changes the color of the page titles and post titles. */
.custom h1 {color: #780A0A; }
.custom .entry-title a {color: #780A0A; text-decoration:none; }
.custom .entry-title a:hover {color: #780A0A; text-decoration:underline;}

/* This line gives all the author comments a different colored background so they stand out from the reader comments. */
.custom dl#comment_list .bypostauthor { background: #e7e7e7; }

/* These lines add the formatting for screenplay excerpts. */
.screenplay {
	font-family: 12px Courier New, Courier, 'American Typewriter', 'Times New Roman', serif;
	padding-left: 15px;
	}


/* These lines add style to the contact form. */
.custom #wpcf {margin-left: 4em;}
.custom #wpcf label {clear: both; float: left; width: 160px;}
.custom #wpcf input {float: left; width: 200px; padding: 1px; margin: 2px 5px 2px 0;}
.custom #wpcf input[type=checkbox] {width: auto;}
.custom #wpcf textarea {width: 360px; height: 100px; padding: 1px; margin: 0 5px 10px 0;}
.custom #wpcf #contactsubmit {margin-left: 250px; width: 100px;}