/* Menu styles */

/*
Stylesheet rules used to format the sub menus and their content.
Feel free to alter the menu layout however you want. All you have to do is ensure the script
has the correct CSS property name (like 'visibility' or 'display') that you want it to change,
and that your submenus are set as hidden by default.

RULES FOR THE "LISTMENU" OBJECT
This uses the 'display' property, so you can remove the positions and run it inline if you want.
Basically, nested UL tags are offset from their parent LIs using CSS positioning.
Feel free to experiment with CSS visual effects!
One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
That covers rearranging lists, e.g. for horizontal menus.
Consult your favourite CSS reference for editing fonts/borders/etc.
*/

/* For the class="menulist" element,
 and all 'ul' tags inside it. */
.menulist, .menulist ul {
	margin: 0;
	padding: 0;
	width: 16em;
	list-style: none;
	border-bottom-width: 0;
}

/* Submenus */
.menulist ul {
	position: absolute;
	top: -1px;
	left: 16.15em;
	display: none;
}

/* Menu items */
.menulist li {
	position: relative;
}

/* Links inside the menu, with 'hover' lightup,
and a 'highlighted' class the script applies */
.menulist a {
	display: block;
	position: relative;
	padding: 3px;
	text-decoration: none;
}

.menulist a:hover {
	color: black;
	background-color: #DDF;
}

.menulist a.highlighted {
	color: red;
}

.menulist a.visited {
	color: blue;
}

.menulist a.link {
	color: blue;
}

/* To override the transparent color of the menulist <a> reference */
.submenu {
	color: blue;
	background-color: white;
	border: 1px solid;
}

/* Holly Hack \*/
* html .menulist li {
	float: left;
	height: 1%;
}

* html .menulist a {
	height: 1%;
}
/* End Hack */