#stickyspymenu{
   /* position: relative; */
   position: fixed;
   width: 225px;
   background: white;
   /* border:2px solid green; */
   /* box-shadow: 10px 10px 20px rgba(95, 100, 95, 0.5); */

   border-width: 0px 0px 0px 0px;
   box-sizing: border-box;
}


#stickyspymenu .header{
  text-align: center;
  background: green;
  color: white;
  font: bold 1.2em;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#stickyspymenu ul{
   list-style: none;
   margin: 0;
   padding: 0;
}


#stickyspymenu ul li a{
   color: #4444aa;
   display: block; /* set to "block" so link can facilitate displaying a progress bar DIV inside it */
   padding: 10px;
   border-bottom: 1px solid #eee;
   /* border-left: 5px solid #eee; */
   position: relative; /* set to "relative" so link can facilitate displaying a progress bar DIV inside it */
   left: 0;
   top: 0;
   z-index: 1;
   outline: none;
   overflow: hidden; /* set to "hidden" so link can facilitate displaying a progress bar DIV inside it */
   text-decoration: none;
   transition: all 0.5s; /* transition any property changes inside link */
}

#stickyspymenu ul li a.selected{
   color: #ff8800;
   /* border-left: 5px solid red; */
   font-weight: bold;
}

a div.progress{
   background: #f0fff0;
   /* border-bottom:2px solid red; */
   position: absolute;
   height: 100%;
   width: 100%;
   top: 0;
   left: 0;
   z-index: -1;
}