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

/*---:[ responsive resets ]:---*/

.format_text img,
.format_teaser img,
.format_text iframe,
.format_text object {
	max-width: 100%
}

.format_text img,
.format_teaser img {
	height: auto
}

/* Custom header area */
.custom .logo { float: right; padding: 5px 0 10px;}
.custom .call_header { float: left; text-decoration:bold; font-size:20px; color: #414141; margin-top: 65px; }
.custom .phoneicon {float: left; margin-top: 63px; margin-right: 10px; }

/* Custom menu navigation bar */
.custom #nav_area { padding: 0 0 10px; }
.custom #nav_area .menu { background: #414141; font-size: 12px; }
.custom #nav_area .menu li { float: right; width:150px; text-align: center;}
.custom #nav_area .menu li+li { 
display: inline-block;
content: " | ";
border-right: 1px solid #555;}

.custom .social_icons_navbar {float: left; padding: 0 0 0 3px; }
/*
.custom #menu-item-246 a { float: left;
 height:15px; width:15px; text-indent:-9999px; margin: 5px; background-image:url('/wp-includes/images/Facebook.jpg'); }
*/
/* Slide show area */

.custom #slideshowfp { padding: 0 0 10px; }

/* CONTENT ZONE */

.custom #content_area { background: #f3f3f3; }

.custom #content_area .page { background: #f3f3f3; }

.custom #content_box { background: #f3f3f3; }

/* Custom footer area */

.custom #footer a {border-bottom: none;
color:  #5f5a59;
}

/* Custom Contact Form (Fast Secure) */
.custom #contactfrontpage {float: left; margin: 0px 30px 3px 0px; width: 330px; height: 460px; text-decoration:bold; border-right:1px dotted #000; padding: 0 20px; }
.custom #FSContact2 {float: right; }
.custom #FSContact2 form {float: left; text-align: right; }
.custom #FSContact2 form input{background: #fff; }
.custom #FSContact2 form #fsc-submit-2{float: left; color:#fff; background: #35B1E5; font-size: 40px; padding: 5px 40px 5px 40px; }
.custom #contactpage {float: right; }

/* updated style for FS contact */
.custom #contactfrontpage {float: left; margin: 0px 30px 13px 0px; width: 330px; height: 440px; text-decoration:bold; border-right:1px dotted #000; padding: 0 10px 40px; }
.custom #FSContact2 form #fscf_submit_div2{float: left; }
.custom #FSContact2 form #fscf_submit2{float: left; color:#fff; background: #35B1E5; font-size: 40px; padding: 5px 40px 5px 40px; }
/* end update */
/* Controlling the white space above the header*/
.custom #header { padding: 0px 0px 5px; position: relative; clear:both; }

/* Category recent posts on sidebar 1 */
.custom .category-recent-posts { padding:1.0em; margin-bottom:1.8em; }
	.custom .category-recent-posts h3 { margin-bottom:1.0em; font-size: 1.4em; margin-top: 20px; }
	.custom .category-recent-posts a { color:#126E21; border-bottom:1px dotted #fff; text-decoration:none; font-size:1.2em; }
		.custom .category-recent-posts a:hover { color: #00f; text-decoration:underline; }

/*Custom link decoration */
.custom  a:hover { text-decoration: underline; }

/* Archive Intro */
.custom #archive_intro { background: #fff; border: 1px solid #ddd; width: auto; margin: 0 0 30px; padding: 20px 30px 18px; margin-right: 23px; }
.custom #archive_intro h1 { border-bottom: 2px dotted #ddd; font-weight: bold; }
.custom.author #archive_intro h1 { margin: 0; padding: 0; border: 0; text-transform: uppercase; font-size: 20px; font-weight; bold; }
.authorarchive { background: #fff; border: 1px solid #ddd; padding: 30px 30px 10px; margin-right: 23px; margin-bottom: 20px; font-size: 14px; }
.authorarchive h4 { font-size: 30px; font-weight: bold; border-bottom: 2px dotted #ddd; margin-bottom: 20px; padding-bottom: 3px; }
.authorarchive img { float: left; padding: 8px; background: #fff; border: 1px solid #ddd; border-left: 1px solid #eee; border-top: 1px solid #eee; margin-right: 15px; margin-bottom: 15px; }
.authorarchive p { font-size: 14px; margin-bottom: 20px; line-height: 1.4em; }
.authorarchive p.hlight { font-weight: bold; }
.authorarchive p.hlight span { color: #073d9f; }