body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #16212b;
	font: normal 11px verdana;
}

h1 {
	font-family: verdana;
	font-size: 14px;
}
h2 {
	font-family: verdana;
	font-size: 15px;
}
.dark_link{
	color: #000000;
	font-weight: bold;
	font-size: 12px;
	font-family: tahoma;
	
}

a:link { 
	color: #16212b;
	font-weight: bold;
	}
a:visited { 
	color: #16212b;
	font-weight: bold;
	}
a:hover { 
	color: #334D62;
	text-decoration: underline;
	}
a:active { 
	color: #334D62;
	}

.style1 {
	color: #16212b;
	font-size: 12px;
	font: normal 11px verdana;
	font-weight: bold;
}
.style2 {
	color: #16212b;
	font-size: 12px;
	font-family: tahoma;
	line-height: 18px;
}
.styleLink {
	color: #16212b;
	font-size: 12px;
	font-family: tahoma;
}
.style4 {
	color: #6da04b;
	font-size: 12px;
	font-family: tahoma;
	font-weight: bold;
}
.style5 {
	color: #ce9b00;
	font-weight: bold;
	font-size: 12px;
	font-family: tahoma
}
.style6 {
	color: #d1d1d2;
	font-size: 12px;
	font-family: tahoma;
}
.style7 {
	color: #333333;
	font-size: 12px;
	font-family: tahoma;
}
#header {
  background: #334D62;
  width: 100%;
}
#leftcol {
  background: #334D62;
  float: left;
  width: 150px;
  height: 99%;
  padding: 4px;
  border: solid #16212b 0px;
}
#rightcol {
  float: left;
  background: #ffffff;
  width: 20%;
  height: 99%;
  border: solid #16212b 0px;
  padding: 4px;
}
#content {
  float: left;
  width: 60%;
  height: 99%;
  border: solid #16212b 0px;
  padding: 4px;
}
#footer {
  background: #cccccc;
  clear: both;
  width: 100%;
}

/*-------------------------------------------------begin menuing-------------------------------------------------*/
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #white;
	background: #651717; /* 6C80A6  IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover { color: #651717; background: #400F0F; } /* f9f9f9f Hover Styles */
		
li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */

