@charset "UTF-8";
html {
    overflow-y:scroll;
}
body {
	margin: 0;
	padding: 0;
	
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	background-color: #DBDBDc;
	
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}


/* ~~ this fixed width container surrounds the other divs ~~ */
#container {
	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 ~~ */
#masthead {
	background: #FFF url(../assets/masthead.jpg) no-repeat center center;
	width: 980px;
	height: 108px;
	padding: 7px 0 0;
	margin: 0;
}
#nav {
	/*background-image: url(../assets/nav.jpg);*/
	background-repeat: no-repeat;
	background-position: center;
	margin: 0px;
	padding: 0px;
	height: 22px;
	width: 980px;	
}
#listmenu {
	
	height: 22px;
	width: 976px;
	float: left;
	font: normal 12px "Trebuchet MS", sans-serif;
	letter-spacing: 1px;
	margin: 0;
	padding: 0 0 0 10px;
	
}


#phone {
	/*height: 58px;
	width: 143px;*/
	float: right;
	margin: 0px;
	padding: 0px 10px 0px 0px;
	z-index: 100;	/*padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;*/
}
#icons {
	margin: 0px;
	height: 42px;
	float: right;
	padding: 0px 10px 0px 0px;
	clear: both;
}
.iconsImg  {
	padding: 5px 0px 0px 5px;
}


/* ~~ The footer ~~ */
#footer {
	padding: 10px 0;
	margin: 0px auto;
	width: 980px;
	text-align: center;
}
#footer p {
	font-size: 12px;
	text-align: center;
}
#microsoft {
	background-color: #FFF;
	padding: 5px 5px 3px;
	width: 400px;
	margin: 0px auto;
}
#microsoft img {
	padding-left: 5px;
	padding-right: 5px;
}

/* ~~ 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: 10px;
}
.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: 10px;
}
.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;
}

/* text styles */
p {
	margin: 0px 0px 10px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
h1 {
	
	text-align: left;
	padding: 0px;
	margin: 0px;	
	letter-spacing: .05em;
	line-height: 130%;
}

h2 {
	font-size: 18px;
	text-align: left;
	color: #ef4035;
	line-height: 120%;
	letter-spacing: normal;
	padding: 0px;
	margin: 0px 0px 5px;
	
	/*font-family: Arial, Helvetica, sans-serif;*/
}
h3 {
	font-size: 18px;
	
	color: #ef4035;
	line-height: 120%;
	letter-spacing: normal;
	padding: 0px;
	margin: 0px 0px 5px;

}
#phone p {
	color: #092177;
	font-weight: bold;
	text-align: right;
}


/* special text styles */
.blue {
	color: #257B99;
}
.blueBigger {
	color: #257b99;
	font-size: 20px;
	letter-spacing: 1px;
	
}
.ital {
	font-style: italic;
	font-weight: normal;
}
.smaller {
	font-size: 13px;
}
.boldEmphasize {
	font-weight: bold;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	letter-spacing: normal;
	font-size: 15px;
}

/* list with check graphic */

.greenCheck li {
	list-style-type: none;
	padding: 0;
	list-style-position: outside;
	list-style-image: url(../assets/bulletCheck.png);
	margin: 0px 0px 3px;
	font-size: 15px;
	font-weight: bold;
	color: #257b99;
}


/* link styles */
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: #EF4035;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #EF4035;
	text-decoration: none;
}
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: underline;
	color: #061344;
}


/*menu styles*/

div#listmenu ul {
	margin-top: 5px;
	padding-left: 120px;	
}
div#listmenu li {
	float: left;
	list-style-type: none;
	padding: 0;
}
div#listmenu a {
	text-decoration: none;
	color: #ffffff;
	/*margin-left: 25px;*/	
    margin-right:75px;
}
div#listmenu a:hover {
	text-decoration: none;
	background-color: #35498E;
}
*html div#listmenu {
	float: left;
}

/* misc */ 

hr.line {
	  border: 0;
	  width: 50%;
	color: #CCCCCC;
	height: 1px;
	text-align: left;
	padding: 0px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.quote p{
	display: block;
	background-image: url(../assets/quote.png);
	background-repeat: no-repeat;
	padding-top: 7px;
	padding-left: 35px;
	width: 725px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 16px;	
}

