/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, img, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

body {
	background-color: #fff;
	color: #2a2d2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	margin: 0 0 0 0; /* (top, right, bottom, left) */
	padding: 0 0 0 0; /* (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}

h1 {
	color: #6982b5;
	font-size: large;
	font-weight: bold;
    line-height: 1.3;
		margin-bottom: 0.2em;
}

h2 {
	color: #6982b5;
	font-size: 14px;
	font-weight: bold;
    line-height: 1.3;
	margin-bottom: 0.2em;
	margin-top: 1em;
}

h4 {
    font-weight: bold;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    font-size: 100%;
}

p {
    margin-top: 0;
    line-height: 1.3;
    color: #484848;
    margin-bottom: 0.6em;
}

a, a:link {
	color: #d74f4f;
	font-weight: bold;
	text-decoration: none;
}

a:visited {
	color: #3b62a6;
	font-weight: bold;
	text-decoration: none;
}

a:hover {
	color: #ca0009;
	text-decoration: underline;
}

a:focus {
	color: #ca0009;
}

a:active {
	color: #262499;
}

#globalWrapper {
	background-color: #fff;
	background-image:url(../images/container_border_01.gif);
	margin: 0 auto 0 auto; /* (top, right, bottom, left) */
	text-align: left;
	width: 780px;
}

#globalContent {
	padding-left:10px;
	padding-right:10px;
}

#header {
	background-color: #fff; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 10px 10px 10px 10px;
}
#submenu {
	border-bottom: solid 1px #5a6484; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: small;
	line-height: 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #d9d9d9;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}
#pageGraphic {
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #C3CDC2;
}
#innerContent {
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	padding-top: 25px;
}
#leftColumn1 {
	background-color: #eaeff5;
	border-right: solid 1px #8e9fd0; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 140px;
	margin-right: 10px;
}
#rightColumn1 {
	background-color: #eaeff5;
	border-left: solid 1px #8e9fd0; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 140px;
	margin-left: 20px;
}

#rightColumn1 h2 {
	margin: 0px;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
.clearFloat {
	clear: both;
	display: block;
}
#footer {
	background-color: #eaeff5;
	border-top: solid 1px #8e9fd0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#footer p {
	font-size: 10px;
	margin-bottom: 0em;
	margin-top: 0em;
}
#pageEnd {
	background-color: #fff;
	background-image:url(../images/container_border_01_bottom.gif);
	margin: 0 auto 0 auto;
	text-align: right;
	font-size: 10px;
	width: 760px;
	background-repeat: no-repeat;
	background-position: top;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#navlist {
	padding-left: 0;
	margin-left: 0;
	border-bottom: 1px solid gray;
	width: 100%;
}
#navlist li {
	list-style: none;
	margin: 0;
	padding: 0.25em;
	border-top: 1px solid gray;
}
#navlist li a {
	text-decoration: none;
}
#topnav ul {
	padding-left: 0;
	background-color: #5E5E5E;
	color: White;
	float: left;
	width: 100%;
	font-family: arial, helvetica, sans-serif;
	margin: 0;
}
#topnav li {
	display: inline;
}
#topnav a {
	padding: 0.2em 1em;
	background-color: #5E5E5E;
	color: White;
	text-decoration: none;
	float: left;
	border-right: 1px solid #fff;
}
#topnav a:hover, body#home #nav-home a, body#insurance #nav-insurance a, body#contact #nav-contact a, body#about #nav-about a, body#links #nav-links a {
	background-color: #d9d9d9;
	color: #5E5E5E;
}
