#stickyspymenu{
	position: relative;
	width: 230px;
	background: white;
	border-width: 0 3px 15px 3px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-left:5px;
}

#stickyspymenu .header{
	text-align: left;
	padding: 4px;
	color: #4C4E52;
	font-family: Verdana;
	margin-bottom:15px;
	font-weight:600;
}

#stickyspymenu ul{
	list-style: none;
	margin: 0;
	padding: 0;
}


#stickyspymenu ul li a{
	color: lightslategray;
	display: block; /* set to "block" so link can facilitate displaying a progress bar DIV inside it */
	padding: 5px;
	padding-left:15px;
	border-left: 3px solid lightgrey;
	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;
	font-family: Verdana;
	transition: all 0.5s; /* transition any property changes inside link */
	text-decoration:none;
}

#stickyspymenu ul li a.selected{
	color: black;
	border-left: 3px solid #339966;
	text-decoration: none;
	font-family: Verdana;
	background-color:rgba(211, 211, 211, 0.377);
	border-top-right-radius:3px;
	border-bottom-right-radius:3px;
}

#stickyspymenu ul li a:hover{
	color: black;
}

/*a div.progress{
	background: #FFFF93;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
	*/