/*
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.custom { background: #4F8835 url('images/bg.gif') repeat; }

.custom #page {margin-top:15px; margin-bottom:10px; padding:10px;
background: #FFF url(images/pagebg2.gif) repeat;}

.custom #menu {
border-bottom: none;}

.custom #content_box { margin-top:.5em;}

.custom #header { padding:0em; clear: both; }

.custom .no_sidebars .post_box { margin: 0 1.1em; padding-top:1.1em; }

/*custom blockquotes*/

.custom blockquote {
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	background:#F8F4F4 none repeat scroll 0 0;
	border-color:#DDDDDD #666666 #666666 #DDDDDD;
	border-style:solid;
	border-width:1px;
	font-style:italic;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 15px;
	margin-left: 10px;
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 20px;
}

/*sales page call outs */

.custom .options {
	background-color: #DEE5D4;
	margin-right: 35px;
	margin-bottom: 5px;
	margin-left: 35px;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	border: medium groove #73A357;
}	

.custom .highlights {
	padding: 20px;
	margin-top: 5px;
	margin-right: 15px;
	margin-bottom: 5px;
	margin-left: 15px;
	border: thin solid #7d4245;
}

.payments {
	text-align: center;
	margin-right: 40px;
	margin-left: 40px;
}



/*NAV MENU*/

.custom ul.menu {background: #fff url('http://danifakewebb.com/images/navbg.gif') repeat; height:40px;}

.custom .menu li a {
	background: none;
	font-family:arial !important;
	font-size:11px;
	font-weight:bold;
	margin-top:4px;
	border-top-width: 0px;
	border-right-width: medium;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #61476B;
	padding-top: 0.667em;
	padding-right: 0.833em;
	padding-bottom: 0.667em;
	padding-left: 0.833em;
}

.custom .menu li a:hover { background: none;
color:#DC944C;
}

.custom .menu li.current_page_item { background: none;
color:#DC944C;
}

.custom li.tab-7 a {border-top-width: 0px;
	border-right-width: medium;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	}
	
/*HEADLINES*/

.custom .format_text h1 { color:#7d4245; line-height:normal; font-weight:bold;}

.custom .format_text h2 { color:#7d4245; line-height:normal;}

.custom .format_text h3 {
	color:#651679;
	line-height:normal;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0; font-weight:bold;
}

.custom .format_text h4 { color:#7d4245; line-height:normal;}


.custom .format_text h5 { color:#651679; line-height:normal;}

.custom .format_text h6 {
color:#6173A9;
}

.custom .format_text p {
margin-bottom:1.24em;}

/*---:[ feature box ]:---  (http://danifakewebb.com/images/featbg.jpg) repeat; border-style: none  */
.custom #feature_box {background:none; margin-top:2.2em;}
.custom #feature_box p {font-size:12px;}
.custom #feature_box li {font-size:12px;}
.custom #feature_box a {font-size:12px;}
/*---:[ splash styles ]:---*/
.splash #sidebars { display: none; border: none; }
.splash #tabs {display:none;}
.splash .comments_closed { display: none; }
.splash #content { margin: 0 auto; float: none; }
.splash div.headline_area h1 {display:none;}
/*sidebar edits*/
.custom .sidebar a img { border: none;}
/*---:[ form inputs ]:---*/
input, textarea { font-family: Georgia, "Times New Roman", Times, serif; }
.optin {width: 100%; padding: 0.2em; border-width: 0.067em 0.067em 0.067em 0.067em; }
#commentform textarea { width: 96%; }
.format_text input.form_submit, #commentform .form_submit { font-size: 1.143em; padding: 0.313em 0.25em; }
.sidebar .text_input, .sidebar .form_submit { padding: 0.308em; font-family: Georgia, "Times New Roman", Times, serif; }
.sidebar input[type="text"], .sidebar input[type="submit"] { padding: 0.308em; font-family: Georgia, "Times New Roman", Times, serif; }
.optinsubmit {background:none; border:none;}





	
	
