/*
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: #eee;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #333;
	margin: 0;
	padding: 0;
}

/* @group Forms */
form#cformsform {
	margin: 5px 0;
}

form#cformsform span {
	text-align: left;
}

form#cformsform ol {
		padding: 5px 0 10px 0 !important;
		margin: 0 !important;
		list-style: none !important;
	}
	
form#cformsform ol li {
		padding: 5px 0 10px 0;
		list-style: none !important;
	}

form#cformsform ol li label {
		display: block;
		font-weight: bold;
		padding-bottom: 2px;
	padding-top: 10px;
	float: left;
}

form#cformsform ol li input {
		width: 300px;
		margin-right: 5px;
		padding: 2px 4px !important;
	}		

form#cformsform ol li textarea {
		width: 380px;
		height: 120px;
		margin-right: 5px;
	}	

form#cformsform .reqtxt, form#cformsform .emailreqtxt {
		color: #e95c2e;
		font-size: .9em;
		position: absolute;
		display: block;
		margin-bottom: 15px;
}

form#cformsform #sendbutton {
		background: #ffb200;
		color: #000;
		position: relative;
		margin-bottom: 20px;
		border: 1px solid #afafaf;
		float: left;
	padding-right: 10px;
	padding-top: 4px;
	padding-bottom: 4px;
	font: 16px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

p.entry-meta {
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}		

#usermessagea, #usermessageb {
		font-weight: bold;
		color: #e95c2e;
		font-size: 15px;
		margin-top: 20px;
}
	
form#cformsform fieldset {
		border: none;
		visibility: hidden;
	}
	
.linklove {
	display:none;
}

p.center {
	text-align: center;
}

	



/* @end */

.custom #container {
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	margin-top: 0;
}

.custom #page {
	margin-top: 0;
	padding-top: 0;
}

.custom #header {
	background: url(images/ke-header.jpg) no-repeat;
	height: 126px;
	margin: 0 0 15px;
	padding: 0;
	width: 100%;
}

.custom .rss {
	visibility: hidden;
}

.custom h1 {
	color: #ca2027;
	font-size: 28pt;
	border-bottom: 1px solid #ddd;
	display: block;
	background: url(images/ke_circle.jpg) no-repeat right bottom;
	margin: 0;
	padding: 0;
}

.custom h2 {
	color: #333;
	font-size: 18pt;
	margin: 0;
	padding: 0;
}

.custom h3 {
	color: #333;
	font-size: 14pt;
	margin: 0 0 10px;
	padding: 0;
}

.custom div.headline_area h2 {
	color: #ca2027;
	font-size: 28pt;
	border-bottom: 1px solid #ddd;
	display: block;
	background: url(images/ke_circle.jpg) no-repeat right bottom;
	margin: 0;
	padding: 0;
}

.custom div.headline_area h2.entry-title {
	color: #ca2027;
	font-size: 24pt;
	border-bottom: 1px solid #ddd;
	display: block;
	margin: 0;
	padding: 0;
}

.custom #container #page .tab a {
	background-color: #f8cd68;
}

.custom #container #page .tab a:hover {
	background-color: #ffb200;
}

.custom #container #page .current a {
	background-color: #fff;
	color: #ca2027;
}

.custom #container #page .current a:hover {
	background-color: #fff;
	color: #666;
}

div.comments_closed {
	visibility: hidden;
}

/* @group Sidebars */

.custom div#sidebar_1.sidebar ul.sidebar_list {
	margin-left: 15px;
	margin-top: 15px;
	padding: 0;
}

.custom div#sidebars a {
	color: #ca2027;
}

.custom div#sidebar_1.sidebar ul.sidebar_list h3 {
	color: #fff;
	padding-left: 10px;
	height: 20px;
	padding-top: 10px;
	padding-bottom: 2px;
	background: #666;
	font-variant: normal;
	font-size: 12pt;
}

.custom div#sidebar_1.sidebar ul.sidebar_list {
}

.custom div#sidebar_1.sidebar ul.sidebar_list ul {
	background: #eee;
}

.custom div#sidebar_1.sidebar li a {
	color: #ca2027;
	font-size: 100%;
	text-decoration: none;
	padding-top: 5px;
	padding-left: 10px;
}

.custom #sidebar_1.sidebar li a:hover {
	color: #666;
}

.custom li#subscriptions.widget thesis_widget_subscriptions ul li.sub_rss {
	list-style-type: none;
}
/* @end */

.custom p {
	margin: 0 0 10px;
	padding: 0;
}

.custom a {
	color: #ca2027;

}

.custom a:hover {
	color: #666;

}

.custom div#footer li {
	padding-right: 10px;
	list-style-type: none;
	display: inline;
	font-size: 12px;
}

.custom div#footer ul {
	text-align: left;
}

div#footer {
	text-align: left;
}

#logo {
	visibility: hidden;
}

#tagline {
	visibility: hidden;
}