@charset "utf-8";
html, body {height: 100%;}
body {
	font: 14px/22px Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0;
	padding: 0;
	color: #000
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1{font-family:Verdana, Geneva, sans-serif; font-size:30px; color:#53A1CC;}
h2{font-family:Verdana, Geneva, sans-serif; font-size:24px; color:#53A1CC;}
h3{font-family:Verdana, Geneva, sans-serif; font-size:18px; color:#53A1CC;}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	min-height: 100%;
	width: 980px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.headerBackLeft{
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	height:237px;
	width:50%;
	background: #000000;	
}
.headerBackRight{
	position:absolute;
	top:0;
	left:50%;
	z-index:-1;
	height:237px;
	width:50%;
	background: #7cc4ee;
}
.header {
	position:relative;
	height:237px;
	background-image:url("../images/background-header.png");
	background-position:center;
	background-repeat:repeat-y;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	background: #FFF;
	color:#000;
	padding: 15px 0px 110px 0px;
}

/* ~~ The footer ~~ */
.footer {
	position: relative;
	margin-top: -110px; /* negative value of footer height */
	height: 110px;
	clear:both;	
	background-image:url("../images/background-footer.png");
	background-repeat:repeat-x;
	background-position:bottom center;
}
.Contact{
	text-align:center;
	font-size:10px;
	line-height:14px;
	margin-top:20px;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.EmployeeLogin{
	position:absolute;
	width:153px;
	height:30px;
	line-height:40px;
	right: 0px;
	top:0;
	text-align:center;
	color:#fff;
	font-style:italic;
	z-index:10;
}
.EmployeeLogin a{
	color:#666666;
	text-decoration:none;
}
.EmployeeLogin a:hover{
	color:#fff;
	text-decoration:none;
}
fieldset{
	position:relative;
	border:2px #000000 solid;
	border-radius:20px;
	margin-top:50px;
}
legend{
	position:absolute;
	color:#FFFFFF;
	background:#00479D;
	font-weight:bold;
	border: 1px solid #000000;
	border-radius:10px 10px 0px 0px;
	padding: 2px 6px;
	top:-29px;
	left:25px;
}
form input[type=submit]
{
	border-top: 1px solid #96d1f8;
	/* Old browsers */
	background: #65a9d7;
	text-shadow: rgba(0,0,0,.4) 1px 2px 1px;
	color: white;
	font-size: 18px;
	font-family: 'Lucida Grande', Helvetica, Arial, Sans-Serif;
	text-decoration: none;
	padding: 7.5px 15px;
	vertical-align: middle;
	cursor:pointer;
	/* Chrome,Safari4+ */
	background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
	/* Chrome10+,Safari5.1+ */
	background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
	/* FF3.6+ */
	background: -moz-linear-gradient(top, #3e779d, #65a9d7);
	/* IE10+ */
	background: -ms-linear-gradient(top, #3e779d, #65a9d7);
	/* Opera 11.10+ */
	background: -o-linear-gradient(top, #3e779d, #65a9d7);
	/* Chrome,Safari4+ */
	-webkit-border-radius: 5px;
	/* FF3.6+ */
	-moz-border-radius: 5px;
	/* Old browsers */
	border-radius: 5px;
	/* Chrome,Safari4+ */
	-webkit-box-shadow: rgba(0,0,0,1) 1px 2px 1px;
	/* FF3.6+ */
	-moz-box-shadow: rgba(0,0,0,1) 1px 2px 1px;
	/* Old browsers */
	box-shadow: rgba(0,0,0,1) 1px 2px 1px;
}
.cfinputBoxes{
	padding: 5px;
	border: solid 1px #E5E5E5;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	background: #FFFFFF url('../images/bg-form.png') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}
.cfinputBoxes:hover, .cfinputBoxes:focus{
	border-color:#F7851E; 
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;	
}
form input[type=text]
{
	padding: 5px;
	border: solid 1px #E5E5E5;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	background: #FFFFFF url('../images/bg-form.png') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}
form input[type=text]:hover, form input[type=text]:focus{
	border-color:#F7851E; 
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;	
}
textarea
{
	padding: 5px;
	border: solid 1px #E5E5E5;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	background: #FFFFFF url('../images/bg-form.png') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}
textarea:hover, textarea:focus{
	border-color:#F7851E; 
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;	
}
select
{
	padding: 2px;
	border: solid 1px #E5E5E5;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	background: #FFFFFF url('../images/bg-form.png') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}
select:hover, select:focus{
	border-color:#F7851E; 
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;	
}
option
{
	padding: 2px;
	border: solid 1px #E5E5E5;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	background: #FFFFFF url('../images/bg-form.png') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}
option:hover, option:focus{
	border-color:#F7851E; 
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;	
	background:#F7851E;
}
form input[type=password]
{
	padding: 5px;
	border: solid 1px #E5E5E5;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	background: #FFFFFF url('../images/bg-form.png') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	color:#900;
}
form input[type=password]:hover, form input[type=password]:focus{
	border-color:#F7851E; 
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;	
}
form input[type=submit]:hover {
   border-top-color: #28597a;
   background: #28597a;
   color: #ccc;
}
form input[type=submit]:active {
   border-top-color: #1b435e;
   background: #1b435e;
}


