.glossymenu{
padding: 0;
width: 190px; /*width of menu*/
}

.glossymenu a.menuitem{
background: url("../images/css/menu_back.png");
font: bold 12px Arial;
color: white;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
text-decoration: none;
padding-left: 10px;
padding-top: 7px;
padding-bottom: 7px;
}

.glossymenu a.menuitem_selected{
    background: url("../images/css/menu_back_selected.png");
    font: bold 12px Arial;
    color: white;
    display: block;
    position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
    text-decoration: none;
    padding-left: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    }

.glossymenu a.menuitem:visited, .glossymenu .menuitem:active{
color: white;
}

.glossymenu a.menuitem .statusicon{ /*CSS for icon image that gets dynamically added to headers*/
position: absolute;
top: 7px;
right: 0px;
border: none;
}

.glossymenu div.submenu{ /*DIV that contains each sub menu*/
background: 9bdcf6;
border: 1px solid #9bdcf6;
border-bottom-width: 0; 
border-top-width: 0; 
}

.glossymenu div.submenu ul{ /*UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
}

.glossymenu div.submenu ul li{
border-bottom: 1px solid #77b0c7;
}

.glossymenu div.submenu ul li a{
display: block;
font: normal 10px Verdana;
color: black;
text-decoration: none;
padding: 2px 0;
padding-left: 10px;
}

.glossymenu div.submenu ul li a:hover{
background: #E1EDF2;

}