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

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 150px; width: 949px; background: url('images/banner.png') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

/* Navigation "Pricing & Sign Up" */
.custom ul#tabs li.page-item-4 { background:#E2F2F9; font-weight: bold; }

/* Sidebar "Take Control" Box */
.custom #text-435967861 { background: #F7F3E2; border: 1px solid #DDCE93; }
	.custom #text-435967861 h3 { padding: 0.571em 0.786em; }
	.custom #text-435967861 div { padding: 0 0.786em;; }
	.custom #text-435967861 p a { background: transparent url('images/button.png') no-repeat 0 0; display: block; height: 42px; margin: 1em 0 0; text-indent: -9999px; width: 177px; }

/* Sign Up page */
.signup #content_box { background: #E8ECDC !important; }
.signup .headline_area { display: none; }
.signup h2 { font-size: 1.6em; font-weight: bold; margin: 0 0 0.2em; text-align: center; }
.signup h3 { margin: 0 0 1.2em; text-align: center; }
.signup h3 a { color: #000000; font-weight: bold; text-decoration: none; text-transform: uppercase; }
.signup h4 { text-align: center; }

.custom div.sign_up { clear: both; height: 580px; margin: 0 auto 2em; width: 891px; }
	.custom div.sign_up div { background: #EFEFEF; border: 1px solid #999999; float: left; height: 480px; margin: 40px 0 0; padding: 1em 0; position: relative; width: 220px; }
		.custom div.sign_up div h3,
		.custom div.sign_up div h4,
		.custom div.sign_up div ul { padding: 0 1em; }
	.custom div.sign_up p { text-align: center; }
	.custom div.sign_up p.line { border-bottom: 1px solid #999999; padding: 0 1em 1em; margin: 0 0 1em; }
	.custom div.sign_up div h3 { margin: 0 0 0.5em; }
		.custom div.sign_up div h3 a { color: #542400; }
	.custom div.sign_up div h4 { font-size: 1.2em; font-weight: normal; margin: 0 0 0.2em; }
		.custom div.sign_up div.featured_left { background: #EFEFEF url('images/shadow1.png') repeat-y 100% 0; border-right: none; }
			.custom div.sign_up div.featured_left ul { font-size: 0.9em; line-height: 1.4em; }
		.custom div.sign_up div.featured { background: #FFFFFF; border: 4px solid #3671A1; height: 540px; margin: 0; width: 220px; }
			.custom div.sign_up div.featured p.line { margin: 0 0.8em 1em; }
		.custom div.sign_up div.featured_right { background: #EFEFEF url('images/shadow2.png') repeat-y 0 0; border-left: none; border-right: none; }
			.custom div.sign_up div p a { background: transparent url('images/button_small.png') no-repeat 0 0; bottom: 20px; display: block; height: 42px; left: 45px; position: absolute; text-indent: -9999px; width: 122px; }
			.custom div.sign_up div.featured p a { bottom: 23px; left: 50px; }

.custom div.faq { padding: 1em; margin: 0 auto; width: 880px; }
	.custom div.faq h2 { margin: 0 0 2em; }
	.custom div.faq div.faq_left { float: left; margin: 0 40px 0 0; width: 420px; }
	.custom div.faq div.faq_right { float: left; width: 420px; }
	.custom div.faq hr { clear: both; margin: 0 0 1.2em; }
	.custom div.faq div.faq_bottom { clear: both; }
		.custom div.faq p.faq_heading { font-size: 1.2em; font-weight: bold; margin-bottom: 0; }

/* Firefox Outline fix */
.custom a { outline: none; }

/* Multimedia Box */
.custom #image_box { background: none; }
	.custom #image_box img { border: none; }