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

/* not in use */
/*.custom #header #logo a { display: block; height: 160px; width: 950px; background: url('/images/roofing_logo.gif') 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; }


/* full width styling */

/* 
.custom #header_area {background: #002B51 url('/images/header_bg.png') repeat-x;}
.custom #content { background: #fff; }
.custom #footer_area { background: #002B51; border-top: 2px solid #F8E250; }
.custom #footer {background: #002B51;} 
.custom #content_area { background: #002B51;} 
*/

/*#content_box { background:url("/images/bg-home.jpg") no-repeat scroll right bottom; } */

/* styling for homepage boxes */

.custom #boxes { float: left; width: 140px; height: 420px; background: #E0EEF3; border: 1px solid #ddd; margin: 0.15em; padding: 0.5em;}
.custom #boxes h3 { background: #376376; color: #fff; margin: 0; padding: 0.25em; font-size: 1.15em;}
.custom #boxes p { font-size: 0.75m;}


/* styles for image in sidebar */

.custom #finance img { padding-left: 12px; margin: 0 0 0.5em 0;}

/* styling for blockquote */

.custom .format_text blockquote { text-align: center; background: #fff; 
padding: 1em; margin: 1em; border: 1px solid #06c; }
.custom .format_text blockquote p { font-style: italic; margin: 0; font-size: 1.5em;}
.custom .format_text blockquote a { color: #06c; text-decoration: none;}
.custom .format_text blockquote a:hover { color: #C44000; text-decoration: underline;}

/*#content_box  {background: #fff url('/images/content-bg.png') 50% 50% repeat-y;} */

/*.custom h1 { font-family:Georgia,"Times New Roman",Times,serif; line-height:1.267em; } */

.custom .format_text h2 { margin: 0.5em 0 1em 0; }

.custom #content img {border: 3px solid #fff;}
.custom .wp-caption p { background: #fff; padding: 0.25em;}

.custom span.wpcf7-list-item { display: block; }

.custom input[type="checkbox"] { width: 15px }
.custom input[type="submit"] { width: 160px }

.custom .comments_closed p {display: none ;}


/* menu styles */
.custom .menu {
	width: 100%;
	background: #DC0E18;
}

.custom ul.menu li ul.submenu li a { background: #006C80;}
.custom ul.menu li ul.submenu li a:hover { background: #DC0E18;}

/* overwites capitals in main nav */

.custom .menu a { text-transform: none; }
.custom .menu a { font-size: 1.5em;}

/* footer styling */

.custom #footer { background: #376376; }
.custom #footer a { color: #C4DFEA; text-decoration: none;}
.custom #footer a:hover { color: #fff;}
.custom #footer p {text-align: left; color: #fff;}

/* widget styles */

.custom #sidebars {background: #E0EEF3;} 
.custom .widget h3 {background: #376376; color: #fff; padding:0.5em;}
.custom #sidebars h3 a {color:fff;}
.custom .widget {background: #E0EEF3; padding: 0.25em;}
/*.custom .span_price { background: #f90;} */
/*.custom h3 a.twitterwidget.twitterwidget-title {color:#fff;} */

/* form styling for widgets */

.custom .widget input[type="submit"] { width: 150px; border: 2px solid #fff; background: #ACC40A; font-weight: bold; color: #fff; }

/* killer recent entries widget */

.custom #widget_killer_recent_entries-2 li { list-style: square; margin-left: 1em; color: #CD5856; }

.custom #widget_killer_recent_entries-3 li { list-style: square; margin-left: 1em; color: #CD5856; }

.custom #widget_killer_recent_entries-4 li { list-style: square; margin-left: 1em; color: #CD5856; }

.custom li.widget ul li { list-style: square; margin-left: 1em; color: #376376; }
.custom li.widget ul li a { text-decoration: underline; }
.custom li.widget ul li a:hover { text-decoration: none; }


/* styling  for contact page form */

.custom .format_text input[type="submit"]{width: 150px; border: 2px solid #000; background: #DC0E18; font-weight: bold; color: #fff; }
	
.custom .format_text form {width: 440px; background: #E0EEF3; padding: 1em;}


