/**
 * CSS Menu Structure
 * Template: Horizontal Dropdown
 * @version 1.00
 */
 
/**
 * General menu settings
 */
#menu 
{
	z-index: 1000;
	display: inline-block;
	margin: 0 auto;	
}


/**
 * General menu frame (not HTML frame) settings
 */
#menu ul
{
	list-style: none;
	padding: 0;
	white-space: nowrap;
	text-align: left;
	height: 32px;
	margin-top: 0;
}

/**
 * General menu item settings
 */
#menu li
{
	white-space: nowrap;
	float: left;
	position: relative;
}


/**
 * General menu item settings
 */
#menu a, #menu h3
{
	display: block;
	margin: 0;
}

/**
 * General empty menu item (h1) settings
 */
#menu h3
{
	cursor: default;
}

/**
 * General menu link settings
 */
#menu a
{
	cursor: pointer;
}

/**
 * Menu level 2 frame (not HTML frame) settings
 */
#menu ul ul
{
	position: absolute;
	height: 100%;
}


/**
 * Menu level 2 (and 3 if not otherwise defined) item settings
 */
#menu ul ul li
{
}

/**
 * Menu level 3 frame (not HTML frame) settings
 */
#menu ul ul ul
{
	position: relative;
	top: 0;
}

/**
 * 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;}
