/*
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/
*/
/*-------Overall Site Settings-------*/
body {
	background: url('../custom/images/bkgrnd2.gif');
	background-color: #dccbd1;	
}
#container {

	background-color: #dccbd1;
	border: 1px solid #bcbcbc;
}
#feature_box {
	height: 0;
	visibility: collapse;
}
#header {
	background-image: url('../custom/images/hab_header_georgia.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-color: transparent;
	height: 185px;
	border-bottom: none;
	border-top: none;
}
#page {
	background-color: #ffdbfc;
	border-left: 1px solid #999 !important;
	border-bottom: none !important;
	border-top: none !important;
}
#content {
	background-color: #fff;
	width: 555px;
}
#content_box {
	background-color: #fff;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
}
.custom blockquote {
	width: 435px;
	color: #333;
	font-size: .9em;
	font-style: italic;
	background-color: #f8e5b5;
	border-left: 7px solid #f6de9f;
	border-right: 15px solid #f8e5b5;
	padding-top: 1em;
	padding-bottom: 1em;
	margin-top: 1em;
	margin-left: 4em;
}
#footer {
	border-top: none;
}

/*-------Typography-------*/
.custom p#logo {
	text-indent: -9999px  !important;
}
.custom p#logo a {
	font-family: "Georgia", Times, serif;
	font-weight: normal;
	color: #e91ca8 !important;
}
.custom h1#tagline {
	text-indent: -9999px !important;
}
.custom p#tagline {
	text-indent: -9999px !important;
}
.custom ul#tabs {
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	width: 85.7em;
	margin-top: 1em;
	line-height: 1em;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: none !important;
}
.custom h1.entry-title {
	font-family: "Georgia", Times, serif;
	font-size: 2.2em;
	color: #e91ca8 !important;
}
.custom h2.entry-title a{
	font-family: "Georgia", Times, serif;
	font-size: 1.0em;
	color: #e91ca8 !important;
}
.custom .headline_meta {
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
}

/*-------Tab Colors-------*/
.custom ul#tabs li {
	border-bottom: none;
}
.custom ul#tabs li a {
	background-color: #f6de9f;
	line-height: 1.7em;
	border-bottom: 1px solid #999;
}
.custom ul#tabs li.current_page_item a {
	background-color: #fff;
	border-bottom: none;
}
.custom ul#tabs li.page-item-56 a {
	background-color: #75ce98;
	border-bottom: 1px solid #999;
}
.custom ul#tabs li.page-item-56.current_page_item a {
	background-color: #fff !important;
	border-bottom: 1px solid #fff !important;
}
.custom ul#tabs li.page-item-56.current_page_parent a {
	background-color: #fff !important;
	border-bottom: 1.5px solid #fff !important;
}
.custom ul#tabs li.page-item-4 a {
	background-color: #9bb9d7;
	border-bottom: 1px solid #999;
}
.custom ul#tabs li.page-item-4.current_page_item a {
	background-color: #fff;
	border-bottom: 1px solid #fff;
}
.custom ul#tabs li.page-item-5 a {
	background-color: #bea592;
	border-bottom: 1px solid #999;
}
.custom ul#tabs li.page-item-5.current_page_item a {
	background-color: #fff;
	border-bottom: 1px solid #fff;
}
.custom ul#tabs li.page-item-6 a {
	background-color: #e77bb1;
	border-bottom: 1px solid #999;
}
.custom ul#tabs li.page-item-6.current_page_item a {
	background-color: #fff;
	border-bottom: 1px solid #fff;
}
.custom ul#tabs li.page-item-7 a {
	background-color: #75ce98;
	border-bottom: 1px solid #999;
}
.custom ul#tabs li.page-item-7.current_page_item a {
	background-color: #fff;
	border-bottom: 1px solid #fff;
}
.custom ul#tabs li.page-item-8 a {
	background-color: #d97d6a;
	border-bottom: 1px solid #999;
}
.custom ul#tabs li.page-item-8.current_page_item a {
	background-color: #fff;
	border-bottom: 1px solid #fff;
}
.custom ul#tabs li.rss a {
	width: 100px;
	background-color: #fff;
	padding-left: -2em;
	border-right: 6px solid #fff;
	border-bottom: 2px solid #fff;
}
/*-------Footer Styling-------*/
.custom #footer {
	text-align: center;
	text-decoration: none;
	color: #333;
}
.custom #footer a {
	border-bottom: none !important;
	color: #2361a1;
}
.custom #footerlinks {
	text-align: center;
	font-size: 1.0em;
	color: #333;
}
.custom #footerlinks a {
	text-align: center;
	font-size: 1.1em;
	color: #2361a1;
	text-decoration: none !important;
}
.custom #footer p {
	text-align: center !important;
	font-size: .9em !important;
}
/*-------Home Page Styling-------*/
.custom #content #post-132 .headline_area h2 {
	text-indent: -9999px;
}
.custom #post-132.post_box.top {
	background-image: url(../custom/images/hab_hero_shot_thesis.png);
	background-repeat: no-repeat;
	background-position: top center;
	height: 400px;
	width: 834px;
	margin-top: 2em;
}
.custom #splash_copy {
	width: 455px;
	margin-left: 20px;
	margin-top: -5em;
}
.custom #splash_copy p {
	margin-top: -1em;
}	
.custom #post-132 #splash_copy h3 {
	font-size: 1.9em;
	font-family: "Georgia", Times, serif;
	color: #e91ca8;
}
.custom #splash_copy ul {
	font-size: 1.4em;
	line-height: 1.4em;
	color: #555;
}
.custom #show_me_btn a {
	position: absolute;
	margin-left: 16em;
	margin-top: -2em;
}
/*-------Shop Page Styling-------*/
.custom #post-4.post_box .format_text {
	margin-left: 4em;
	margin-top: -5em;
	padding-bottom: 2em;
}
.custom #post-4.post_box .headline_area h1 {
	text-indent: -9999px;
}

.custom #post-4.post_box .format_text h3 {
	text-align: center;
	margin-top: -2em;
}
/*-------Sidebar Styling-------*/
.custom .sidebar_list h3 {
	font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
	font-size: .9em;
	text-transform: uppercase;
	color: #252525;
}
.custom .sidebar_list li {
	font-size: 1.1em;
}
/*-------FAQ Page Styling-------*/
.custom #post-5 .headline_area h1 {
	text-indent: -9999px;
	height: 0px;
	margin-top: -1em;
}
.custom #post-5 h3 {
	font-family: "Georgia", Times, serif;
	color: #e91ca8;
	margin-bottom: 0px;
}
.custom #post-5 .format_text {
	margin-left: 6em;
	width: 650px;
}
/*-------About Page Styling-------*/
.custom #post-6 .headline_area h1 {
	text-indent: -9999px;
	height: 0px;
	margin-top: -1em;
}
.custom #post-6 h3 {
	font-family: "Georgia", Times, serif;
	color: #e91ca8;
	margin-bottom: 0px;
}
.custom #post-6 #sig h3{
	margin-top: -1em;
}
.custom #post-6 .format_text {
	margin-left: 6em;
	width: 650px;
}
.custom #post-6 blockquote {
	width: 435px;
	color: #333;
	font-size: .9em;
	font-style: italic;
	background-color: #f8e5b5;
	border-left: 7px solid #f6de9f;
	border-right: 15px solid #f8e5b5;
	padding-top: 1em;
	padding-bottom: 1em;
	margin-top: 1em;
	margin-left: 8em;
}
.custom #post-6 img {
	border-left: 1px solid #111;
	border-bottom: 1px solid #111;
	border-right: 1px solid #111;
}

/*-------Contact Page Styling-------*/
.custom #post-8 .headline_area h1 {
	text-indent: -9999px;
	height: 0px;
	margin-top: -1em;
}
/*-------Privacy Policy Page Styling-------*/
.custom #post-9 .headline_area h1 {
	font-family: "Georgia", Times, serif;
	font-size: 2.4em;
	color: #e91ca8;
	margin-left: 3em;
	margin-bottom: -15px;
}
.custom #post-9 h3 {
	font-family: "Georgia", Times, serif;
	color: #e91ca8;
	margin-bottom: 0px;
}
.custom #post-9 .format_text {
	margin-left: 6em;
	width: 650px;
}
.custom #post-9 fieldset#formwrap {
	padding-bottom: 2em !important;
}
/*-------Newsletter Signup Page Styling-------*/
.custom #post-30 h1 {
	font-family: "Georgia", Times, serif;
	margin-left: 1em;
	color: #e91ca8;
}
.custom #post-30 .format_text {
	margin-left: 6em;
	width: 650px;
}
