/* CSS Document */
/**************** menu coding *****************/
#menu {
width: 99%;
background: #eee;
float: left;
border: 1px solid #cccccc;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 7em;
float: none;
}

#menu a, #menu h2 {
font:bold 14px Georgia, "Times New Roman", Times, serif;
display: block;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #470103;
background: #eee;
}

#menu a {
color: #000;
background: #eee;
text-decoration: none;
}

#menu a:hover {
color: #a00;
background: #eee;
}

#menu li {position: relative;}

#menu ul ul {
position: relative;
right:7em;
z-index: 500;
border: solid #cccccc; border-width: 1px;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}
