/**
 * CSS Menu Structure
 * Template: Horizontal Dropdown
 * @version 1.00
 */

/**
 * General menu settings
 */
#menu 
{
	position: static;
}

/**
 * General menu frame (not HTML frame) settings
 */
#menu ul
{
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}

/**
 * General menu item settings
 */
#menu li
{
	position: relative;
	white-space: nowrap;
}

/**
 * General menu item settings
 */
#menu a, #menu h1
{
	display: block;
	margin: 0;
}

/**
 * General empty menu item (h1) settings
 */
#menu h1
{
	cursor: default;
}

/**
 * General menu link settings
 */
#menu a
{
	cursor: pointer;
}

/**
 * Menu level 2 frame (not HTML frame) settings
 */
#menu ul ul
{
	position: absolute;
	z-index: 100;
}

/**
 * Menu level 3 frame (not HTML frame) settings
 */
#menu ul ul ul
{
	position: absolute;
	top: 0;
	left: 100%;
}

/**
 * Submenu visibility settings
 * DO NOT EDIT
 */
div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

/**
 * Submenu visibility settings
 * DO NOT EDIT
 */
div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}
