/*
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 { 
	background: #98A476 url(images/bodyBG-grad.jpg) repeat-x top left;
}

p {
	width:90%;
}

#header #logo {
	font-size:3em;
	line-height:1.188em;
}

#header {
	background: #938338 url(images/BTSC-Masthead2.jpg) no-repeat;
	height: 80px;
	padding-bottom:0;
	padding-top: 50px;
	padding-left: 208px;
}

h4 {
color: #3A4824;
} 

.home h2 {
	display:none;
}

.home h1 {
	font-size:1.5em;
	line-height:1.2em;
}

.home .format_text p {
margin-bottom:0.5em;
margin-top:0.5em;
}

.comments_closed p {
	display:none;
	color:#888888;
	letter-spacing:1px;
	text-transform:uppercase;
}


.format_text img.frame, .format_text .wp-caption {
	border-width:0;
	padding:0; 
}


.sidebar h3 {
color:##7a9c69;
}

#sidebars {
	background:transparent url(images/sidebarBG-grad.jpg) repeat-x top left;
	height:900px;
}

.menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {
background:transparent none repeat scroll 0 0;
border-bottom:1px dotted black;
color:black;
display:block;
font-size:11px;
width:140px;
}

.menu .rss {
	border-top:1px dotted black;
	float:left;
	margin:20px 0;
	padding:22px 40px 0 0;
}

li.widget {
	background:transparent none repeat scroll 0 0;
	font-size:1.0em;
	line-height:1.385em;
	margin-bottom:2.769em;
}

.menu a, .menu .current ul a, .menu .current-cat ul a {
	background:transparent none repeat scroll 0 0;
	color:#405237;
}

.menu, .menu a, .menu li ul {
	border-style:none;
}

#multimedia_box {
	margin-bottom:2.4em;
}

.mmechinacea {
	width:12.5em;
	height:10.5em;
	background:transparent url(http://bodytherapyskincare.com/wp-content/uploads/2010/02/Echinachea-sm.jpg) no-repeat 0 0;
	overflow:hidden;
}

.custom_box {
	background:none repeat scroll 0 0;
}


#footer, #footer a {
	color:#776D57;
}


#footer p {
	width:100%;
}


#footer {
	border-color:#9D8F74;
	border-style:double;
	clear:both;
	text-align:right;
}

.waxing td {
	border-bottom:1px dotted black;
}

.comments_closed p {
	display:none;
}

.home .format_text img.left, .format_text img.alignleft, .wp-caption.alignleft {
margin:0 1.571em 0 0;
}