@charset "UTF-8";
/* CSS Document */
html, body {
	font:Arial, Helvetica, sans-serif;
	font-size:13px;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
img {
	border:0;
}
h1 {
	margin:0;
	padding:0;
	bottom:0;
	font-weight:normal;
	color:#2353a3;
}
h2 {
	margin:0;
	padding:0;
	font-weight:normal;
	color:#ee3a42;
}
p.counties {
	font-size:11px;
}
ul.bullets {
	margin:0;
	padding-left:20px;
}
ul.bullets2 {
	padding-left:10px;
}
a:link.bottom {
	font-family:Arial, Helvetica, sans-serif;
	color:#ee3a42;
	font-size:20px;
	text-decoration:none;
}
a:hover.bottom {
	font-family:Arial, Helvetica, sans-serif;
	color:#ee3a42;
	font-size:20px;
	text-decoration:none;
}
a:visited.bottom {
	font-family:Arial, Helvetica, sans-serif;
	color:#ee3a42;
	font-size:20px;
	text-decoration:none;
}
a:active.bottom {
	font-family:Arial, Helvetica, sans-serif;
	color:#ee3a42;
	font-size:20px;
	text-decoration:none;
}
td.padding {
	padding-left:5px;
	padding-right:5px;
}
#container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-top:10px;
}
#header {
	background-image:url(images/header-bg.jpg);
	background-repeat:no-repeat;
	height:125px; 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type:none;
	padding:0;
	margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
	float:left;
	position:relative;
	z-index:100;
}

/* use the table to position the dropdown list */

/* style all the links */
.menu a {
	display:block;
	font-size:12px;
	width:100%;
	padding-top:10px;
	padding-left:25px;
	padding-right:25px;
	color:#2353a3;
	text-decoration:none;
	margin-right:1px;
	text-align:center;
	font-family:verdana, sans-serif;
}
.menu li li a{
	display:block;
	font-size:10px;
	width:150px;
	padding:1px;
	padding-top:3px;
	color:#2353a3;
	text-decoration:none;
	margin-right:1px;
	text-align:left;
	font-family:verdana, sans-serif;
	padding-left:15px;
}
/* style the links hover */
.menu li a:hover, .menu li a.current {color:#2353a3;}
.menu li li a:hover, .menu li li a.current {font-weight:bold; text-align:left;padding-left:15px; width:150px;}
/* hide the sub level links */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	width:100%;
	height:0;
	margin-left:40px;
	top:23px;
}
.menu ul li ul li{width:100%;}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
}

#phone{
	position:absolute;
	left:50%;
	margin-left:-250px;
	top:95px;
	font-size:24px;
	font-weight:bold;
	color:#696969;
}

#emergency-service{
	position:absolute;
	left:50%;
	margin-left:210px;
	top:64px;
}
.containerHEADER {
   position: relative;
   height: 50px;
}

.left-element {
   position: absolute;
   padding-top:12px;
   left: 0;
   width: 25%;
}

.right-element {
   position: absolute;
   right: 0;
   width: 75%;
   text-align: right; /* depends on element width */
   margin-left:100px;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 310px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding-right:10px;
	padding-top:29px;
}
#mainContent { 
	margin: 0 0 0 305px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent1 {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#content {
 padding-top:15px;
}
#flash {
	position:absolute;
	width:275px;
	height:470px;
	left:50%;
	margin-left:5
	0px;
}
#block {
	background-color:#c7d9f0;
	padding:8px;
} 
#bottom {
	background-image:url(images/bottom-bg.jpg);
	background-repeat:no-repeat;
	height:88px;
	text-align:center;
	color:#ee3a42;
	font-size:20px;
	padding-top:18px;
	padding-left:10px;
	padding-right:10px;
	margin-top:10px;
}
.table-line {
	border:0;
	text-align:center;
	background-image:url(images/red-line.png);
	background-position:right;
	background-repeat:repeat-y;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding-top:5px;
	text-align:center;
}
.clearfloat {
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.envelop1 a {
	position:absolute;
	left:50%;
	margin-top:75px;
	margin-left:-385px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop1 a:hover {background-image:url(images/envelope-T1.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop2 a {
	position:absolute;
	left:50%;
	margin-top:225px;
	margin-left:-350px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop2 a:hover {background-image:url(images/envelope-T2.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop3 a {
	position:absolute;
	left:50%;
	margin-top:425px;
	margin-left:-400px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop3 a:hover {background-image:url(images/envelope-T3.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop4 a {
	position:absolute;
	left:50%;
	margin-top:75px;
	margin-left:-50px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop4 a:hover {background-image:url(images/envelope-T4.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop5 a {
	position:absolute;
	left:50%;
	margin-top:315px;
	margin-left:220px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop5 a:hover {background-image:url(images/envelope-T5.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop6 a {
	position:absolute;
	left:50%;
	margin-top:95px;
	margin-left:230px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop6 a:hover {background-image:url(images/envelope-T6.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop7 a {
	position:absolute;
	left:50%;
	margin-top:325px;
	margin-left:-200px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop7 a:hover {background-image:url(images/envelope-T7.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop8 a {
	position:absolute;
	left:50%;
	margin-top:425px;
	margin-left:70px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop8 a:hover {background-image:url(images/envelope-T8.png); background-repeat:no-repeat; width:250px; height:100px;}
.envelop9 a {
	position:absolute;
	left:50%;
	margin-top:225px;
	margin-left:70px;
	z-index:1;
	width:150px;
	height:84px;
	display:block;
	background-image:url(images/envelope.png);
	background-repeat:no-repeat;
}
.envelop9 a:hover {background-image:url(images/envelope-T9.png); background-repeat:no-repeat; width:250px; height:100px;}