.applemenu
{
margin: 5px 5px;
padding: 20;
width: 240px; /*width of menu*/
border: 1px solid red;
}

.applemenu div.silverheader a{
background: red repeat-x center left;
border-bottom: 1px solid white;
font: normal 12px Tahoma, "Lucida Grande", "Trebuchet MS", Helvetica, sans-serif;
font-weight: bold;
color: white;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
width: auto;
padding: 5px 0;
padding-left: 8px;
text-decoration: none;
}

.applemenu div.silverheader a:active{
color: white;
}


.applemenu div.selected a, .applemenu div.silverheader a:hover{
background: white;
background-image:url('arrow.gif');
background-position:95% 50%;
background-repeat:no-repeat;
border-bottom: 1px solid red;
color: red;

}

.applemenu div.submenu a{ /*DIV that contains each sub menu*/
background: white;
text-decoration: none;
padding-left: 12px;
height: 0px; /*Height that applies to all sub menu DIVs. A good idea when headers are toggled via "mouseover" instead of "click"*/
font: normal 13px Tahoma, "Lucida Grande", "Trebuchet MS", Helvetica, sans-serif;
color: red;
border-bottom-color:red;

}

.applemenu div.submenu a:hover{ /*DIV that contains each sub menu*/
display: block;
background-image:url('arrow.gif');
background-position:95% 50%;
background-repeat:no-repeat;
}
