body { 
font-family : verdana, helvetica, sans-serif;
font-size: 12px;
}	

td { 
font-family: verdana, helvetica, sans-serif;
font-size: 12px;
line-height : 170%;
}	

th { 
font-size: 12px;
}	

p:{
	line-height : 170%;
}

a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: blue;
}

a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: red;
}

input {
	font-size: 12px;
}

select {
	font-size: 12px;
}


ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 167px;
	/* Width of Menu Items */
	border-bottom: 0px solid White;
}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 0px; /* Set 1px less than menu width */
	top: 30;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: White;
	background: #96B7F3;
	/* IE6 Bug */
	padding: 5px;
	border: 1px solid White;
	border-bottom: 1px White;
}

/* 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: White;
	background: #1C0064;
} /* Hover Styles */
		
li ul li a { padding: 1px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */