/*
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/
*/

/* 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; }

/* Gets rid of 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; }

/* Removes the padding from the header. */
.custom #header { padding: 0; border:none; }

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

/* Changes the sidebar border from dotted to solid. */
.custom #sidebar_1 { border-style:solid; }

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

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

/* Removes the underline from links in subscription widget in sidebar. */
.custom #text-436013791 a {color: #780A0A; text-decoration:none; }
.custom #text-436013791 a:hover {color: #780A0A; text-decoration:underline;}

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

/* Gives all the author comments a different colored background. */
.custom dl#comment_list .bypostauthor { background: #e7e7e7; }

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

/* Changes the subheadline style. */
.custom #content h3 {font-color:#474747; font-size:14px; font-weight:bold; padding-bottom:10px;}

/* Adds 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;}
.custom .format_text input { width: auto; }