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

/* Modified colours
Dark Green: 9CB45C -> 8ca34e
Very light Brown: C1A562 -> e8e4da
*/

/* Background colours */
	.custom #content_box {
		background-color:#e5eecd;
	}

/* Layout modification */
	.custom #header {
		border-bottom-color: #A29068;
	}
	.custom div.entry-content p {
			max-width:480px;
		}
	.custom div.post .highlight {
		max-width:240px;
		float:right;
		margin:0em 0em 1.5em 1em;
		}
	.custom #logo {
		text-align: center;
	}
	.custom #footer {
		display: none;
	}

/* Teasers */
	.custom a.post_image_link img.alignnone {
		margin: 0 auto 0 0;
	}
	.custom .format_teaser {
		margin-top: 1em;
		margin-bottom: 1em;
	}
	
/* Global Elements */
	.custom a {
		color:#D94B48;
		font-weight:bold;
	}
	.custom hr {
		color: #504930;
		margin: 0 0 1em;
	}

/* Headers */
	/* Main Page */
		.custom h2.entry-title {
			background-color:#A29068;
			padding-left:5px;
		}
		.custom h2.entry-title:hover {
			background-color:#9CB45C;
		}
		.custom h2.entry-title a {
			color:#2F2914;
			font-weight:normal;
		}
		.custom h2.entry-title a:hover {
			text-decoration: underline;
		}
	/* Particular Pages*/
		.custom h1.entry-title {	
			background-color:#9CB45C;
			color:#2F2914;
			padding-left:5px;
		}


/* Entry information such as author, date and so on... */
	.custom p.headline_meta {
		background-color:#2F2914;
		color:#fff;
		padding:0.2em;
		padding-left:5px;
	}
	.custom p.headline_meta *.author {
		color:#D94B48;
	}

/* Entry Contents */
	.custom div.entry-content p {
		text-indent: 0.5em;
	}
	.custom .format_text a { 
		text-decoration: none;
		color:#8ca34e;
	}
	.custom .format_text a:hover { 
		text-decoration: underline;
	}
	.custom .highlight_box {
		background-color: #eccb7d; 
		border: 1px solid #c1a562; 
		padding: 0.5em;
		margin: 0 1.5em 1em;
	}
	.custom .entry_highlighted_text {
		float:right;
		background-color:#c8d4a8;
		color:#2F2914;
		font-size:0.8em;
		text-align:justify;
		margin-left:1em;
		margin-bottom:0.5em;
		padding:0.5em;
		max-width:200px;		
	}
	.custom .entry_highlighted_text h4 {
		margin:0em;
	}
	.custom li {
		margin-bottom:0.5em;
	}
	.custom dl dt {
		font-weight: bold;
		color: #504930;
	}
	.custom dl dd {
		padding: 0 0 0 1em;
		margin: 0 0 0.5em 0;
	}
/* Audio: Podcasts, Interviews and so on */

	.custom p.audioplayer_container { margin: 0 0 0 0; }

/* Comments */
	/* Changes to the whole list */
		.custom #comment_list {
		}	
	/* Comment made by post Author */
		.custom dl#comment_list .bypostauthor { /* Changes setting on comment */
			background-color:#504930;
		}
		.custom span.comment_author { /* Author name */
			color:#ABCF4A;
		}
		.custom dl#comment_list .bypostauthor div.format_text { /* Text of the comment */
			color:#fff;
		}
	/* Regular Comments */
		.custom dl#comment_list dd {
			border-bottom-width: 1px; 
			border-bottom-style: solid;
			border-bottom-color: #9CB45C;
		}
		/** You can use this style for your INPUT, TEXTAREA, SELECT elements **/
		.custom input#author, input#email, input#url, textarea#comment {
			border: 1px solid #82983E;
			background: url(none) no-repeat #f3f5ea;
			font-family: tahoma, helvetica, sans-serif;
			font-style: normal;
			font-size: 14px;
			color: #2F2914;
		}
		.custom input#author:hover, input#email:hover, input#url:hover, textarea#comment:hover {
			border: 1px solid #2F2914;
			background: url(none) no-repeat #F3F5EA;
			color: #2F2914;
		}
		.custom input#author:focus, input#email:focus, input#url:focus, textarea#comment:focus {
			border: 1px solid #D94B48;
			background: url(none) no-repeat #FFFFFF;
			color: #2F2914;
		}
		/** You can use this style for your LABEL elements **/
		.custom label {
			font-family: tahoma, helvetica, sans-serif;
			font-weight: bold;
			font-size: 13px;
			color: #D94B48;
		}


/* Images */
	.custom #image_box {
		background-color: #C1A562;
	}
	.custom p.wp-caption-text { /* Caption for images on posts */
		background-color:#9CB45C;
		color:#2F2914;
		font-weight:bold;
		padding:0.2em;
	}

/* Sidebars */
	.custom #sidebars {
		/* background-color:#504930; */
		padding-top: 2.2em;
	}
	.custom #sidebars h3 {
		background-color:#9CB45C;
		font-weight:bold;
		color:#504930;
		padding:0.2em;
	}
	.custom .sidebar_list {
		padding-top: 0; /* Aligns sidebar with content on the main area */
	}

/* Widgets */
	.custom li.widget .widget_box {
		background-color: #fff5dc;
		border-top-color: #C1A562;
		border-right-color: #C1A562;
		border-bottom-color: #C1A562;
		border-left:1px solid #C1A562;
	}
	.custom a.twitterwidget-title {
		color:#504930;
	}
	/* Thesis Sidebar Teasers */
	.custom #thesis_sidebar_teasers-3 .teaser {
		width: 100%;
		font-size: 80%;
	}

/* Navigation links */
	.custom #tabs li {
		padding-bottom: 0.1em;
		background-color: #ffffff;
		background-image: none;
		background-repeat: repeat;
		background-attachment: scroll;
		background-position: 0% 0%;
		border-bottom-width: 0pt;
		border-bottom-style: none;
		border-bottom-color: -moz-use-text-color;
	}
	.custom #tabs .current_page_item, #tabs .current-cat {
		background-color:#A29068;
		border-top-color: #2F2914;
		border-right-color: #2F2914;
		border-left-width: 1px;
		border-left-style: solid;
		border-left-color: #2F2914;
		border-bottom-color: #2F2914;
	}