/* Set Width and Background */
#menu {
width: 15em; /* set width of menu */
background: #eee;
}
/* Remove Padding */
#menu ul {
list-style: none;
margin: 0;
padding: 0;
}
/* Set Font and Colors */
#menu a, #menu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #000;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
color: #000;
background: #CCCCCC;
text-decoration: none;
letter-spacing: 1px;
}

#menu a:hover {
color: #00FF00;
background: gray;
}

/* Absolute Positioning Initializing */
#menu li {position: relative;}
#menu ul ul ul {
position: absolute;
top: 0;
left: -100%;
width: 100%;
}

/* Hide All Popouts*/
div#menu ul ul ul
{display: none;}

/* If Hover, All Children Appear */
div#menu ul ul li:hover ul
{display: block;}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

#menuH {
width: 100%;
background: #000;
float: left;
}

#menuH ul {
list-style: none;
margin: 0;
padding: 0;
width: 11em;
float: left;
}

#menuH a, #menuH h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
margin: 0;
padding: 2px 3px;
}

#menuH h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menuH a {
color: #fff;
background: #000;
text-decoration: none;
}

#menuH a:hover {
color: #a00;
background: #fff;
}

#menuH li {
position: relative;
color: #000;
background: #efefef;
}

#menuH ul ul {
position: absolute;
z-index: 500;
}

#menuH ul ul ul {
top: 0;
left: 100%;
}

div#menuH ul ul,
div#menuH ul li:hover ul ul,
div#menuH ul ul li:hover ul ul
{display: none;}

div#menuH ul li:hover ul,
div#menuH ul ul li:hover ul,
div#menuH ul ul ul li:hover ul
{display: block;}
