body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-color: #001D34;
	background-image: url(images/body_bg.gif);
	background-repeat: repeat-x;
	font-family:verdana, tahoma, arial, sans-serif;
}
div#container {
	width: 825px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 10px auto;
	padding: 10px 10px 5px;
	background-color: #FFF;
	border: solid #001D34 1px;
	
} 
div#header {
	padding: 0 0 10px 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. */
	background-color: #FFF;
} 
div#header img {
	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: 0 0 10px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
 	
}
div#leftbar {
	float: left; /* since this element is floated, a width must be given */
	width: 220px;
	padding: 0;
	background-color: white;
}

div#menu {
	background-image: url(images/menu_bg.gif);
	background-repeat: repeat-y;
}
div#menu ul {
	list-style-position: outside;
	list-style-type: none;	
}
div#menu li {
	position: relative;
	width: 175px;
	margin-left: -20px;	
}
div#menu a {
	text-decoration: none;
	font-size: 1.2em;
	color: #001D34;
	display: block;
	width: 175px;
	background-color: #6699CC;
	margin: 0 0 6px;
	padding: 3px 6px;
}
div#menu a:focus, div#menu a:hover, div#menu a:active {
	background-color: #00A99D;
}
#mainContent {
	margin: 0 0 10px 245px;
	padding: 0 20px;
} 
#footer {
	padding: 10px;
	background-color: #FCD2C1;
} 
div#footer p {
	font-size: 9px;
	color: #5C3900;
	margin: 0;
	line-height: 1.5em;
}
div #footer a, div #footer a:visited {
	text-decoration: none;
	color: #5C3900;
}
div #footer a:focus, div #footer a:hover, div #footer a:active {
	font-style: italic;
	text-decoration: underline;
}
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.eform {
	border-top: 2px inset #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 2px inset #CCC;
	padding: 3px;
}
.eform li {
	list-style-type: none;
}
.links {
	border: 0;
	margin: 5px auto;
}
.links a {
	text-decoration: none;
}
.links img {
	margin: 5px;
	border: 0;
}
div#a2kform {
	border: 1px outset #666666;
	padding: 6px;
}