/*	KEM: BEGIN Hide "Comments on this entry are closed" for pages with closed comments
	KEM: Taken from http://diythemes.com/answers/hide-comments-entry-closed-message/#some_pages */
.custom .comments_closed p { display: none;}
/*	KEM: END Hide "Comments on this entry are closed" for pages with closed comments */


/*	KEM: BEGIN archive page (search results, etc.) styling */
#archive_info { background-color: #ffc; margin: 20px 20px 0 0; }
.hfeed .page .to_comments { display: none; }
.hentry .entry-title a { color: #3535FF; }
.hentry .entry-title a:hover { text-decoration: underline; }
.hentry { border-bottom: 2px solid #cbcbcb}
.hfeed .page .headline_area .headline_meta { display: none; }
/*	KEM: END archive page (search results, etc.) styling */


/*	KEM: BEGIN Styling header */
.custom #header {
	border-width: 0em;
	padding: 0em;
	margin-bottom: 1em;
	/* Remove default padding and bottom border from header */ }
.custom #footer { padding: 1.5em 0em 1.5em 0em; /* Remove default padding from footer to remain consistent with header */ }
	/*	KEM: BEGIN Styling the Thesis Search form field */
	.custom #header form.search_form { float: right; /* Move search form to the right */ }
	.custom #header #s {
		font-size: 1.3em;
		padding: 0.308em;
		width: 18em; } /* was width: 15.385em; */
	/*	KEM: END Styling the Thesis Search form field */
/*	KEM: END Styling header */


/*	KEM: BEGIN Display Twitter user name from Twitterlink */
.custom p.tweet_user {font-size: 1.2em; float: left;}
/*	KEM: END Twitter user name from Twitterlink */


/*	KEM: BEGIN Styling form elements
	Includes styling for Twitterlink field in the Comment Form */
/*---:[ form inputs ]:---*/
input, textarea { font-family: "Lucida Console", Consolas, Courier; }
.format_text input, #commentform input, #commentform * input, #commentform textarea {
	width: 55%;
	padding: 0.214em;
	border-width: 0.071em 0.071em 0.071em 0.071em;
}
#commentform textarea { width: 96%; }
.format_text input.form_submit, #commentform .form_submit {
	font-size: 1.143em;
	padding: 0.313em 0.25em;
	font-family: inherit; }
input.form_submit:hover { color: #3535FF; }

.sidebar .text_input { font-family: "Lucida Console", Consolas, Courier; }
.sidebar .text_input, .sidebar .form_submit { padding: 0.308em; }
.sidebar .form_submit { font-family: inherit;  }
.sidebar input[type="text"], .sidebar input[type="password"] { font-family: "Lucida Console", Consolas, Courier; }
form p, dd.comment p { text-align: left; } /* fixes justification in form labels and comments */
/*	KEM: END Styling form elements */










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/
*/