.menu {
	position: absolute;
	top: 30px; left: 0px;
	font-size: 10px;
	}

.menu ul.navigation {
	margin: 0; padding: 0;
	list-style-type: none;
	}

.menu ul.navigation ul {
	margin: 0; padding: 0;
	list-style-type: none;
	}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	width: 175px;
	}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
	width: 175px;
	}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 0px;
	t\op: 0px;
	}

