#navicol ul {
	margin: 0 auto 0; padding: 0;
	list-style-type: none;
	width: 320px;
	}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#navicol li {
	float: left;
	margin: 0; padding: 0; 
	height: 30px;
	}

#navicol li a {
	display: block;
	font-size: 12px;
	font-weight: bold;
	line-height: 50px;
	text-decoration: none; 
	padding: 0px 15px;
	}

/* style the top level hover */
#navicol li a:hover { 
	color: red;
	}

* html #navicol li a:hover { 
	color: red;
	}

#navicol li :hover > a {
	color: red;
	}

