﻿.foo {} /* -- W3C Validator Requirement. */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*                 Layout StyleSheet - Quality Signatures
*           Created by Jeremy S. Cargilo for ETR Consulting.
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Purpose: 
*   This stylesheet contains the master layout css styles for the entire project.
*   All subpage styles, links, forms, and other non-layout items can be found in 
*   their respective style sheets.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

/* MasterPage Layout Styles
-------------------------------------------------------------------------------*/
* { 
	margin: 0px; 
	padding: 0px; 
}
body { 
    text-align: center;
    background-color: #003370;
}
#wrapper {
	width: 970px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	background: #003370 url("Images/wrapper-bg.gif") repeat-y;
}

/* Typography Styles
-------------------------------------------------------------------------------*/
h1 { font-size: 18px; margin: 7px 0px 7px 0px; }
h2 { color: Red; font-size: 16px; margin: 7px 0px 7px 0px; }
h3 { color: Green; font-size: 12px; }
h4 { color: #003370; font-size: 12px; }
hr { margin: 5px 0px 5px 0px; }
ul { list-style-image: url("Images/bullet.gif"); }
textarea { font-size: 12px; font-family: Tahoma; }
.highlight { background-color: #EAEAEA; color: #000000; }
#SiteMapPath { display: block; margin: 0 0 10px 0; }
.error_summary li { margin: 0px 0px 15px 30px; }
.CheckBox label { margin-left: 5px; vertical-align: top; }
.RadioButtonList label { margin: 0px 10px 0px 5px; }

/* Custom Styles
-------------------------------------------------------------------------------*/
.modalBackground { background-color:Gray; filter:alpha(opacity=75);-moz-opacity:.75;opacity:.75; }
.modalPopup {
	background-color: #EBF5FF;
	border: solid 3px #CCE5FF;
    color: #006699;
	padding:7px;
	width:525px;
}

/* -- AJAX Accordion -- */
.accordionHeader {
    font-size: 12px;
	font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.accordionHeader a {
	text-decoration: none;
}

.accordionHeaderSelected
{
    background-color: #EBF5FF;
	font-size: 12px;
	font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.accordionHeaderSelected a {
	text-decoration: none;
}

.accordionContent {
    margin-top: 1px;
    padding: 10px 15px 5px 15px;
}

/* -- Message Styles -- */
.messages-success { color: Green; font-weight: bold; }
.messages-error { color: Red; font-weight: bold; display: block; margin-bottom: .5em; }
span.required { color: Red; font-weight: bold; }

/* Master Header Section Styles
-------------------------------------------------------------------------------*/
#master-header { height: 89px; }

#master-mainnav, #master-footer {
	position: relative;
	z-index: 0;
	width: 900px;
	height: 46px;
	margin-left: 37px;
	background: url("Images/mainnav-bg.gif") no-repeat;
}
#master-mainnav .links {
	float: right;
}

/* Master Body Styles
-------------------------------------------------------------------------------*/
#master-body {
	clear: both;
	margin-left: 28px;
}

/* Master Footer Section Styles
-------------------------------------------------------------------------------*/   
#master-footer {
	color: #FFFFFF;
}
#master-footer .content {
	position: relative;
	top: 17px;
	left: 19px;
	width: 855px;
	display: block;
}
#footer-wrapper {
	width: 970px;
	height: 41px;
	background: #003370 url("Images/footer-bg.gif") no-repeat;
}

/* Copyright & Site Design Styles
-------------------------------------------------------------------------------*/   
#master-footer .content #copyright {
	float: left;
}
#master-footer .content #footernav {
	float: right;
}

/* SubPage Background Template Styles
-------------------------------------------------------------------------------*/   
#subpage-body { margin-left: 28px; }
#subpage-body .top { 
	width: 920px;
	height: 26px;
	background: url("Images/subpage-bg-top.gif") no-repeat;
}
#subpage-body .body { 
	float: left;
	width: 920px;
	background: url("Images/subpage-bg.gif") repeat-y;
}
* html #subpage-body .body { height: 300px; }

#subpage-body .body #content {
	float: left;
	padding-left: 36px;
	width: 639px;
}

* html #subpage-body .body { height: 300px; }
#subpage-body .bottom { 
	width: 920px;
	height: 35px;
	background: url("Images/subpage-bg-bot.gif") no-repeat;
}

/* SubPage Sidebar Styles
-------------------------------------------------------------------------------*/   
#subpage-body .body #sidebar {
	float: left;
	padding-left: 25px;
	width: 189px;
}
#sidebar .title { 
	padding: 0 0 6px 8px;
}
#sidebar #client-login {
	border: solid 1px #6EB0E3;
	background-color: #A3D1FF;
	padding: 9px;
	margin-bottom: 21px;
}
#sidebar #client-login a:link, #sidebar #client-login a:visited {
	color: #000000;
	text-decoration: underline;	
}
#sidebar #client-login a:hover {
	font-weight: bold;
}

#sidebar #sidebar-testimonial {
	float: right;
	position: relative;
	z-index: 6;
	text-align: right;
	margin-bottom: 5px;
}

#sidebar #sidebar-photo {
	clear: right;
	position: relative;
	z-index: 5;
	background: url("Images/sidebar-photo.gif") no-repeat;
	min-height: 300px;
	margin: 0 0 -32px -6px;
}
* html #sidebar #sidebar-photo { height: 300px }

/* CSS Hacks Section Styles
-------------------------------------------------------------------------------*/       

/* ----------------------------------------------------------------------------
    P.I.E. FLOAT CLEARING
    See http://www.positioniseverything.net/easyclearing.html 
-------------------------------------------------------------------------------*/
.clearfix:after {
    content: ".";
    clear: both;
    height: 0;
    visibility: hidden;
    display: block;
}
.clearfix {
    display: inline-block; /* Fixes IE/Mac */
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */