/*
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/
*/


/*page border and making the rest content box white*/
.custom #container {
	padding:.5em;
	background-color:#E4F3FC;
	border:none;
	}
.custom #column_wrap {background-color:#F2F2F2;}
.custom #footer {background-color:#0096D7;}

/*Home page don't show title*/
.custom #post-3 .headline_area {display: none;}

/*home page have background color in body content*/
.custom .no_sidebars #content{
	background-image: url('../custom/images/home-bg.gif');
	background-repeat: repeat-x;
	}

/*give background border for body content only to match with header and footer*/
.custom #content_box {
	border:solid 3px #0096D7;
	background-color:#8CC63F;
	}
.custom #content {
	background-color:#fff;
	}
.custom #header img {padding:0;}
.custom #header {padding:0; background-color:#fff;
}

/*image styles for calls to action on home page*/
.custom img.button a {
	text-decoration:none;
	}

/*custom navigation*/
.custom .menu, .custom ul.menu {border-bottom: 0; border-left:0; border-top:none;}
.custom ul.menu li a:hover {font-weight:bold; letter-spacing:1px;}
.custom ul.menu {
	font:Arial, Helvetica, sans-serif;
	font-variant:normal;
	z-index:100;
	background-color:#0096D7;
	font-size:1.1em;
	font-weight:bold;
	border-left:solid 3px #0096D7;
	border-right:solid 3px #0096D7;
	margin-top:-0.25em;
	width:936px;
	border-top:none;
	}
.custom ul.menu li a{ 
	letter-spacing:1px;
	font-variant:normal;
	padding-top:7px;
	padding-bottom:7px;
	padding-left:13px;
	padding-right:13px;
	z-index:100;
	text-transform:none;
	border-top:none;
	}

/*styling for facebook and flickr icons above header*/
.custom #icons {
	width:900px;
	padding-right:1.4em;
	padding-bottom:0.5em;
	margin-left:auto;
	margin-right:auto;
	background-color: #E4F3FC;
	}
.custom #icons a {
font-size:14px;
margin-top:-0.75em;
	}
.custom #icons img {
	padding-top:0.5em;
	}
/*styling for sidebar titles*/
.custom h4
	{background-color: #8CC63F;
	display:block;
	width:240px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:12px;
	margin-top:2em;
	padding:0.3em 0.6em 0.3em 0.6em;
	color:#fff;
	margin-bottom:1.5em;
	letter-spacing:1px;
	text-align:center;
	}
.custom .pad {
	padding-right:3em;
	}

/*styling for footer*/
.custom #footer a {
	color:#FFFBF0;
	}
.custom #footer {
	color:#fff;
	text-align:left;
	border:solid 3px #0096D7;
	width:914px;
	}

/*home page header tags and internal tags*/
.format_text h2 {
	margin-top:1em;
	padding-left:none;
	font-family:"Lucida Grande", "Lucida Sans", "Lucida Sans Unicode",sans-serif;
	font-size:1.4em;
	letter-spacing:none;
	color:#8CC63F;
	}
.format_text h1 {
	font-size:2em;
	padding-left:none;
	font-family:"Lucida Grande", "Lucida Sans", "Lucida Sans Unicode",sans-serif;
	color:#8CC63F;
	letter-spacing:none;
	font-weight:bold;
	}


/*adding extra padding around page text and headers*/
.custom .format_text {
	padding-left:1em;
	padding-right:1em;
	}
.custom .headline_area {
	padding-left:1.4em;
	margin-bottom:0.5em;
	}
	
/*sidebars*/
.custom #sidebars {
	width:26.5em; }
.custom #sidebars p {
	font-size:12px;
	line-height:120%;
	}

/*image rotators*/
.custom #image_box {background-color:transparent;}

/*sidebar text widgets*/
.custom .sidebar h3 {
	color:#fff;
	font-variant:normal;
	font-size:1.5em;
	font-weight:bold;
	}
.custom .sidebar {
	color:#fff;
	}
.custom .textwidget img {
	padding-left:10px;
	padding-right:12px;
	}
	
#feature {
	float:right;
	width:200px;
	background-color:#6DB33F;
	border:solid 1px #000;
	padding-right:0.85em;
	padding-left:0.85em;
	margin-left:1em;
	height:auto;
	}
#feature h3 {
	color:#fff;
	padding-top:0;
	margin-top:0.5em;
	}
#feature p {
	color:#fff;
	}

/*removes padding and makes paypal button look right*/
.custom .format_text input, #commentform input, #commentform textarea {
border-width:0;
padding:0;
width:auto;
}

/*div for constant contact signup*/
.custom #newsletter {
	float:right;
	width:200px;
	padding-right:0.85em;
	padding-left:0.85em;
	margin-left:1em;
	height:auto;
	}
.custom img.brochure {
	padding-right:2em;
	}