@charset "utf-8";
/* CSS Document */

.divider {
	height: 26px;
	width: 1px;
	float:left;
}

/* Container DIV */
#menu { 
	position: absolute;
	z-index: 5;
	width: 820px;
	background-color: #fff;
	}

/* Display CSS */

#menu ul {
	position: relative;
	list-style: none;
	margin: 0px auto;
	padding: 0px;
	width: 101px;
	float: left;
	background: #fff;
	}

#menu a, #menu h2 {
	font: 12pt Verdana, courier;
	color: #f00;
	display: block;
	border: none;
	margin: 0px;
	padding: 0px;
	}

#menu a {	
	color:#333;
	font-size: 8pt;
	line-height: 1.3em;
	background: #fff;
	text-decoration: none;
	padding: 4px 6px;
	letter-spacing: 0.1em;
	text-align:left;
	}

#menu h2 a {
	font-size: 10pt;
	color:#777;
	text-transform:capitalize;
	letter-spacing: 0em;
	text-align:center;
	background-image:none;
	background:#FFF;
	margin:0px;
	padding:3px 0px;
	}

#menu li { position: relative; }

#menu ul li { float:left; width: 100%; }

#menu ul li ul li a:hover {
	color: #222;
	background-color:#EEE;
	}

#menu ul ul {
	position: absolute;
	left: -1px;
	z-index: +1;
	border: 1px #000 solid;
	width: 180px;
	}

#menu ul ul ul {
	position: absolute;
	top: 5px;
	left: 85px;
	z-index: +1;
	}
	
/* Keep everything hidden at the start */
div#menu ul ul,
div#menu ul ul ul,
div#menu ul ul ul ul {
	display: none;
	}

/* Hide pop-outs two further than our hover */
div#menu li:hover ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul,
div#menu ul ul ul li:hover ul ul {
	display: none;
	}

/* Display pop-outs one further than our hover */
div#menu li:hover ul,
div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul,
div#menu ul ul ul ul li:hover ul {
	display: block;
	}