@charset "utf-8";
/* CSS Document */

<style type="text/css">

.glossymenu{

padding: 0;
width: 170px; /*width of menu*/

}

.glossymenu a.menuitem{

font: bold 13px "arial";
color: #494949;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
width: auto;
padding: 1px 0;
padding-left: 2px;
text-decoration: none;
}


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

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

.glossymenu a.menuitem:hover{
background-color:#DCDFE9;
}

.glossymenu div.submenu{ /*DIV that contains each sub menu*/
background: white;
}

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

.glossymenu div.submenu ul li{

}

.glossymenu div.submenu ul li a{
display: block;
font: bold 13px "arial";
color: black;
text-decoration: none;
padding: 2px 0;
padding-left: 2px;
}

.glossymenu div.submenu ul li a:hover{
background:#DCDFE9;
colors: #494949;
}

</style>

