.mymenu {
   width: 273px; /*width of menu*/
   font-size:24px;
   font-family:"FELIX";
}

.mymenu .title {
   font-weight:bold;
   color: #996600;
   margin-bottom: 0;  
}

.mymenu ul {
   list-style-type: none;
   margin: 0;
   padding-left:20px;
   padding-right:20px; 
}

.mymenu ul li {
   margin-top: 5px; /*spacing between menu items*/
}

.mymenu li a {
   padding: 5px;
   width:233px;  /*because we have padding:5 - 190px-10px*/
   display:block;
   color:#996600;
   font-weight:bold;
   text-decoration: none;
}

.mymenu li a:hover {
   color:#993300;
   text-decoration: none;
}

.mymenu li a span {
   color:white; 
}

.mymenu li a:hover span { /*hover menu item*/
   color: #ffffff;
}