@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #1c356b;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 0px;
	padding-left: 0px;
	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;
	padding:0px;
	margin:0px;
}

.body a:active    		{text-decoration: underline;}		
.body a:hover     		{text-decoration: underline;}		
.body a:link      		{text-decoration: none;}		
.body a:visited   		{text-decoration: none;}

.body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	FONT-SIZE: 10pt;
	color: #000000;
}
.nav {
	padding-top:4px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	background-color:#1c356b;
	font-size:11px;
	text-align:center;
	height:20px;
	width:100%; 
	color:#FFFFFF;
	letter-spacing:.05em;
}
.nav a:active {
	text-decoration: none;
	color: #FFFFFF;
}
.nav a:link {
	text-decoration: none;
	color: #FFFFFF;
}
.nav a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
.nav a:hover {
	text-decoration: underline;
	color: #CCCCCC;
}
.nav a:visited:hover {
	text-decoration: underline;
	color: #CCCCCC;
}

.footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	FONT-SIZE: 8pt;
	color: #666666;
}
.body-bold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	FONT-SIZE: 10pt;
	font-weight: bolder;
	color: #000000;
}
.red-bold {

	FONT-SIZE: 10pt;
	COLOR: #FF0000;
	FONT-FAMILY: Arial, Verdana, Helvetica, sans-serif;
	TEXT-DECORATION: none;
	vlink: #5A5A5A;
	font-style: normal;
	font-weight: bold;
}
.oneColElsCtrHdr #container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	background: #DDDDDD; 
	padding: 0px;
	margin: 0px;
} 
.oneColElsCtrHdr #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColElsCtrHdr #mainContent {
	padding: 10px 40px;
	margin:0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColElsCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.oneColElsCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}