#stickyspymenu{
	position: relative;
	width: 180px;
	background: white;
	border:2px solid black;
	border-width: 0 3px 15px 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#stickyspymenu .header{
  text-align: center;
  background: black;
  color: white;
  font: bold 1.2em Germand;
}

#stickyspymenu ul{
	list-style: none;
	margin: 0;
	padding: 0;
}


#stickyspymenu ul li a{
	color: black;
	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: red;
	border-left: 5px solid red;
}

a div.progress{
	background: #eee;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}