/*File:			custom.cssDescription:	Custom styles for ThesisBASIC 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 themWHY THIS WORKS:By using the "custom" class, you are creating more specific CSS declarations for HTMLelements. CSS styling is applied through rules of specificity, and because declarationsprepended 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 foundin the User's Guide:	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/*//*body { background: #C78847; color: #111; font-size: 62.5%; }.full_width .page {background:#EFF1EF none repeat scroll 0 0;}*/div#heroshot { float: left; clear: none; overflow:hidden; width: 485px; height: 230px; border: 1px solid #ddd; margin: 15px 8px 0 0; background: url('images/heroshot-bg.jpg'); background-repeat: no-repeat; }div#heroshot .insert { float: right; clear: none; overflow: hidden; font-size:12px; text-transform: uppercase; line-height: 2.5em; margin: 75px 10px 0px 0px; width: 274px; color: #4C4C4C; text-align:right; }/*---:[ homepage contact form ]:---*/div#c2a_form_wrapper { float: left; clear: none; overflow:hidden; width: 284px; height: 210px; padding: 10px; border: 1px solid #ddd; margin: 15px 0px 0px 0px; }div.gform_wrapper { text-align: right; }div.gform_wrapper input.button { border:0px solid #888888;/*width:100px;*/ }div.gform_wrapper #gform_heading { font-weight: bold; text-transform: uppercase; color: #4C4C4C; margin: 0 0 10px; }div.gform_wrapper #gform_heading h3 { font-weight: bold; font-size: 14px; }.gform_body { float:left; width:284px; }.gform_body ul li { list-style: none; float: right; clear: both; margin: 0 0 5px; width: 280px; }.gform_body ul li .gfield_label { float: left; clear: none; overflow:hidden; font-size: 12px; color: #4c4c4c; font-weight: bold; text-transform: uppercase; width: 70px; text-align: right; }.gform_body ul li .ginput_container { float: left; clear: none; overflow:hidden; width: 210px; }.gform_body ul li .ginput_container input { width: 200px; background-color: #e6e6e6; border: none; padding: 3px; }.gform_body ul li .ginput_container textarea { width: 200px; height: 65px; background-color: #e6e6e6; border: none; padding: 3px; }div.gform_wrapper .gform_footer { float: right; clear: both; overflow:hidden; width: 103px; margin: 0px; padding: 0px; }.gform_wrapper .validation_error {clear:none;color:#FF0000;float:left;font-family:Helvetica,sans-serif;font-size:14px;font-weight:normal;line-height:150%;width:315px;}