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

/*===================
***** Main Body ****
===================*/
body.custom {
	background-color: #5f5f5f;
}

/*===================
*****   Header   ****
===================*/

/* Add path to headerimage here.This custom.css is designed for a header that is
   950 X 185 */
.custom #header {
	background: transparent url(images/RebirthLife-Header.jpg) 0px 0px no-repeat;
	height: 270px;
}

.custom ul#tabs {
	border: 0px none;
	position: relative;
	top: 285px;
}

/* Tab background color */
.custom ul#tabs li {
	background-color: #a40900;  
}

/* Tab text color */
.custom ul#tabs li a {
	color: #ffffff;
}

.custom ul#tabs li.rss {
	position: relative;
	top: 290px;
	display: none;
}

/*===================
*****   Content   ****
===================*/

/* Frame border color */
.custom #container {
	background-color: #fff;
	border: 0.4em solid #fff;
	margin:2em auto 4em;
	padding: 0.3em;
	width:99.9em;
}

.custom #content_box {
	background:transparent url(images/dot-ddd.gif) 52.5em 0pt repeat-y;
}

.custom #content {
	width: 44.3em;
}

.custom #page {
	background-color: #fff;
	padding: .4em 4.95em 2em;
}

.custom div.sidebar {
	margin: 2em 0em 0em 0em;
}

/*===================
*****   Footer   ****
===================*/

.custom div#footer p {
	text-align: center;
}