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

.custom #header_area {
	background: url('images/header_bg.png') repeat-x;
	border-bottom: 1px solid #fff;
	height: 14em;
}

.custom #header {
	border:none;
	padding-top:1.1em;
}

.custom #header #logo {
	float:left;
	font-style:italic;
}

.custom #header #logo a {
	color:#cb0043;
}

.custom #header #tagline {
	color:#eddddd;
	float:left;
	font-size:1.8em;
	font-style:italic;
	margin: 0.7em 0 0 1em;
}

.custom ul#tabs {
	border:none;
	clear:both;
	margin-top:5.7em;
}

.custom ul#tabs li {
	border:none;
	margin: 0 0.1em;
}

.custom ul#tabs li a {
	background:#88b2bf;
	color:#164a50;
	font-weight:bold;
	letter-spacing:1px;
	text-transform:none;
}

.custom ul#tabs li.current_page_item a,
.custom ul#tabs li.current-cat a {
	background:#fff;
}

.custom #image_box, .custom #custom_box {
	background:#cec8b9;
}

.custom #custom_box {
	text-align:center;
}

.custom #image_box img {
	background:none;
}

.custom .format_text img {
	background:#cec8b9;
	padding:0.3em;
}

.custom img.frame {
	background:#cec8b9;
}

.custom #content_area {
	background: #f2ebd8 url('images/content_bg.png') top repeat-x;
	padding-top: 1.1em;
}

.custom #column_wrap {
	background:none;
}

.custom #content_box {
	background:none;
}

.custom .post_box {
	border-top:1px dashed #d0c5b1;
}

.custom .teasers_box {
	border-top: 1px dashed #d0c5b1;
}

.custom #content h1, #content h2 {
	color: #cf0031;
	font-weight:bold;
}

.custom h2 a {
	color:#cf0031;
	font-weight:bold;
}

.custom .headline_meta {
	color:#aa9393;
}

.custom blockquote {
	border-left:1px solid #e9d4d4;
	color:#988484;
}

.custom .format_text p a.more-link {
	background:#cb0043 url('images/arrow_down_readmore.png') bottom center no-repeat;
	color: #fff;
	float:right;
	margin-bottom:-3em;
	padding: 0.3em 1em 0.7em 1em;
	text-decoration:none;
}

.custom .format_text p a.more-link:hover {
	text-decoration:underline;
}

.custom .format_text .post_tags {
	color:#aa9393;
}

.custom .prev_next {
	border-top:2px solid #d0c5b1;
}

.custom #archive_info {
	border-bottom:2px solid #d0c5b1;
}

.custom .format_text p.to_comments {
	background: #e7dac4;
	padding: 0.3em 1em;
	float:left;
}

.custom .format_text .to_comments a {
	background: url('images/icon_comment.png') no-repeat;
	color:#313131;
	font-size:1.1em;
	padding-left: 1.8em;
}

.custom .format_text .to_comments a:hover {
	color:#313131;
}

.custom #respond p {
	color:#988484;
}

.custom dl#trackback_list {
	border-top:1px dashed #d0c5b1;
}

.custom dl#comment_list {
	border-top:1px dashed #d0c5b1;
	/*clear:both;*/
}

dl#comment_list dd {
	border-bottom:1px dashed #d0c5b1;
}

.custom #commentform {
	border-top:1px dashed #d0c5b1;
}

.custom input, textarea {
	background:#f3dcdc;
}

.custom input.form_submit:hover {
	color:#cb0043;
}

.custom .author_comment {
	background:#cb0043;
	color: #fff;
}

.custom .author_comment .comment_author, .custom .author_comment .comment_author a {
	color:#f7a2be;
}

.custom .author_comment .comment_time a,
.custom .author_comment .edit_comment a,
.custom .author_comment .edit_comment,
.custom .author_comment .format_text a {
	color:#650025;
}

.custom #sidebar_1 {
	border:none;
}

.custom .sidebar h3 {
	color:#cb0043;
	font-size: 1.1em;
	font-weight:bold;
	letter-spacing:1px;
}

.custom #footer_area {
	background: url('images/footer_bg.png') repeat-x;
	border-top: 3px solid #9f0c41;
	height: 14em;
}

.custom #footer {
	border:none;
}

.custom #footer p {
	color:#fff;
	float:left;
}

.custom #footer p.right {
	float:right;
}

.custom #footer a {
	color:#c36a8a;
	border-bottom:1px solid #be5e81;
}