/*
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/
*/

/* HEADER */
.custom #header_area{display:none;}

.custom #nav_area ul {border-bottom:none; border-left:none;}
	.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}

.custom #header {border-bottom:none;}

.custom #header_area{display:none;}

.custom #nav_area {background:#B32826;   }
	.custom #nav_area ul {border-bottom:none; border-left:none;}
		.custom #nav_area ul li {border-width:0; margin-bottom:0; padding-bottom:0; background:none;}


.custom #title_area {background:#ffffff; padding:1em 0 0.5em; }
	.custom #header {border-bottom:none; height:200px; padding-top:0; padding-bottom:0; background:url(images/header02.jpg) no-repeat;}
		.custom #header #logo {display:none;}
		.custom #header #tagline {display:none;}

/* - NAV LINKS - */
.custom ul#tabs li a, ul#tabs li a:visited { text-transform: lowercase; text-decoration: none; color: #ffffff;}
	
		/*ul#tabs li a:hover {  background:#ffffff; color:#B32826; }*/
		
		/*ul#tabs li.current a, ul#tabs li.current a:visited {   text-transform: lowercase; color: #3F879F; cursor: default; }*/

.custom .menu {
	background: #B32826; }

.custom .menu a:visited {
	color: #ffffff; }



/* - ROTATING BANNER - */
div#rotate {margin-left:auto; margin-right:auto; padding: 30px; margin-top: 30px;} 

/* - AD BLOCK - */
.custom #custom_box {background-color: #FFFFFF;} 
.custom div.adblock img {margin:1px;}
.custom div.adblock a:hover img {border:2px solid #ABC06C;}
.custom div.adblock a img {border:2px solid #eee;}

/* - LINKS - */

.custom .format_text a, a:visited {color: #000 ;}
.custom .format_text a:hover {background: #ADCB6A ;}
.custom .format_text {line-height: 2em ;}

/* - TEXT CUSTOMIZATION - */
.custom h3 {color: #B32826; font-style: bold; font-size: 24px;}
.custom h4 {color: #7F9B40; font-size: 18px;}
.custom .format_text h4 a, a:visited {color: #789030 ; text-decoration: none;}
.custom .sidebar h3 {color: #000; font-style: bold; font-size: 16px; letter-spacing: 1;}
.custom blockquote  {color: #B32826; font-style: normal; font-size: 14px;}


/* PRODUCT FEATURE BOX */
.format_text .goodness_box_1 {
background: #E1DFD6; border: 1px solid #CAC8C0; margin: 10px 5px 10px 5px; padding: 1.5em; overflow: hidden; -moz-border-radius: 15px; -webkit-border-radius: 5px;}

.format_text .goodness_box_2 {
background: #ffffff; border: 1px solid #CAC8C0; margin: 10px 5px 10px 5px; padding: 1.5em; overflow: hidden; -moz-border-radius: 15px; -webkit-border-radius: 5px;}
