@charset "utf-8";
/* CSS Document */

#menu ul {
list-style: none;
margin: 0;
padding: 0;
}

#menu ul li{z-index:9999}
#menu ul ul li{z-index:9999}
#menu ul ul ul li{z-index:9999}

#menu a {
color:#333333;
font-size:0.9em;
display:block;
font-weight:normal;
padding-top:8px;
padding-bottom:8px;
border-bottom:1px dotted #333333;
}

#menu ul ul a{
padding:7px;
border-left:1px solid #ffffff;
border-bottom:1px solid #ffffff;
}

#menu a {
color: #000;
background: #E7E7E7;
text-decoration: none;
}

#menu a:hover {
text-decoration:underline;
}

#menu ul ul a:hover{
background-color:#CCCCCC;
}

#menu li {
position: relative;
}

#menu ul ul {
position: absolute;
top: 0;
left: 100%;
width: 200px;
}

div#menu ul ul,
div#menu ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul
{display: block;}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
width: 200px;
}

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;}

#menu ul li:last-child a{border-bottom:none;}