﻿#menu {
    list-style: none;
    padding: 0px;
    margin: 0px
    width: 250px;
}
#menu div {
    display: block;
    height:30px;
    line-height: 30px;
    background-color: #b9b1a8;
    /*border: #4b4d52 solid 3px;*/
    color: #4b4d52;
    font-weight: bold;
    margin: 2px;
    cursor: pointer;
    padding-right: 5px;
    list-style: circle;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
}
#menu ul {
    list-style: none;
    padding: 0px;
}
#menu ul{
    display: none;
}
#menu ul li {
    font-weight: bold;
    cursor: auto;
    background-color: #D2D2D2;
    margin: 3px;
    padding: 5px;
}
#menu ul li:hover {
background-color: #A3A3A3;
}
#menu a {
    text-decoration: none;
    color: cadetblue;
}
#menu a:hover {
    /*text-decoration: underline;*/
    color: black;
}