/* CSS Document */
#menu {
width: 100%;
background: #d3d3d3;
float: left;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 100px;
float: left;
}

#menu a, #menu h2 {
font: 11px/16px arial, helvetica, sans-serif;
display: block;
font-weight:bold;
margin: 0;

}

#menu h2 {
color: #807F83;
background: #d3d3d3;
text-align:center;
}

#menu a {
color: #000;
background: #d3d3d3;
text-decoration: none;
}

#menu a:hover {
color: #1C3E7D;
background: #FFDB4E;
height:18px;
}
#menu a:active {
color: #ffffff;
background: #8B8B8B;
height:18px;
}

#menu li {position: relative;}

#menu ul ul {
position: absolute;
z-index: 500;
width: 100px;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}
