/*
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 a,
.custom a:hover,
.custom .format_text .to_comments a,
.custom .format_text .to_comments a:hover,
.custom .format_text .to_comments a span,
.custom .format_text .to_comments a:hover span,
.custom #sidebars a:hover {
	color: #b12f35;
}

.custom ul#tabs {
	background: transparent url(images/semi-teal.png) repeat left top;
	font-size: 1.4em;
	text-align: center;
	padding: 12px 8px;
	border: none;


}

	.custom ul#tabs li {
		float: none;
		display: inline;
		background-color: transparent;
		border: none;

	}
	
	.custom ul#tabs li:after {
		content: "|";
		color: #444;
	}

	.custom ul#tabs li.current_page_item {
		background-color: transparent;
		padding-bottom: 0;
	}
	
		.custom ul#tabs li.current_page_item a {
		}
	
	.custom ul#tabs li.rss {
		float: none;
		display: inline;
		padding-right: 10px;
	}
	
	.custom ul#tabs li.rss:after {
		content: "";
	}

		.custom ul#tabs li a {
			display: inline;
			color: #444;
			font-size: 1em;
			text-transform: lowercase;
			letter-spacing: 0;
			padding-left: .5em;
		}

body.custom {
	color: #111;
	background-color: #eaf1f1; /*url(images/fadebg.gif) repeat-x left top;*/
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    border: none;
}

.custom #page {
	background-color: #fff;
	padding-top: 0;
}

.custom a {
	text-decoration: none;
}

.custom a:hover {
	text-decoration: underline;
}

.custom ul#tabs {
	background: transparent url(images/semi-teal.png) repeat left top;
	font-size: 1.4em;
	text-align: center;
	padding: 12px 8px;
	border: none;


}

	.custom ul#tabs li {
		float: none;
		display: inline;
		background-color: transparent;
		border: none;

	}
	
	.custom ul#tabs li:after {
		content: "|";
		color: #444;
	}

	.custom ul#tabs li.current_page_item {
		background-color: transparent;
		padding-bottom: 0;
	}
	
		.custom ul#tabs li.current_page_item a {
		}
	
	.custom ul#tabs li.rss {
		float: none;
		display: inline;
		padding-right: 10px;
	}
	
	.custom ul#tabs li.rss:after {
		content: "";
	}

		.custom ul#tabs li a {
			display: inline;
			color: #444;
			font-size: 1em;
			text-transform: lowercase;
			letter-spacing: 0;
			padding-left: .5em;
		}
		
.custom #header {
	padding-left: 2em;
	padding-top: 3em;
	padding-bottom: 4em;
	border: none;
	border-bottom: 3px solid #cbe4e4;
}

.custom #header #tagline {
	height: 16px;
	position: relative;
	color: #66b0b1;
	font-style: ;
	letter-spacing: .05em;
	text-align: center;
}
		
.custom #logo a {
	height: 124px;
	display: block;
	background: transparent url(images/wellness_logo.png) no-repeat 110px top;
	text-indent: -5000px;
}

.custom #content_box {
	background-color: #fff;
	border: none;
}

.custom #content {
	padding-top: 2em;
	padding-left: 2em;
	width: 61em;
}

.custom h2 a {
	color: #111;
}

.custom #sidebars {
	width: 23.2em;
	padding-left: 1em;
}

.custom #sidebars a {
	color: #bf5559;

}

.custom .sidebar {
	color: #111;
}

.custom .sidebar img {
	display: block;
	margin-bottom: .5em;
}


.custom .sidebar #twitter_div h3 {
	margin-bottom: .8em;
}

.custom .sidebar #twitter_div h3 a {
	display: block;
	height: 41px;
	background: transparent url(images/twitter.gif) no-repeat left top;
	text-indent: -5000px;
}

.custom .post_box {
	padding-top: 0;
	margin-left: 0;
	margin-bottom: 2em;
	border-top: none;
	border-bottom: 1px dotted #ccc;
}

.custom .to_comments {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
}

.custom .comments_closed p {
  display: none;
}

.custom #footer {
	text-align: center;
	padding-bottom: 3em;
	border: none;
	margin: 0 auto;
}