.left-menu {
    margin-top: 16px;
}
.left-menu ul {
    background: #e1e1e1;
	border: 1px solid #bcbcbc;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #aaa;
}
.left-menu ul li {
	list-style: none;
        color: #444444;
}
.left-menu ul li a {
	display: block;
	padding-top: 16px;
	padding-bottom: 16px;
        padding-left: 20px;
        padding-right: 20px;
	border-bottom: 1px solid #bcbcbc;
        color: #444444;
        text-decoration: none;
        text-shadow: 1px 1px 0 #FFF;
        background: rgba(255, 255, 255, 0);
	transition-duration: 500ms;
	transition-property: background;
	font: 14px Tahoma;
}
.left-menu ul li:last-child a {
	border-bottom: none;
}
.left-menu ul li a:hover, .left-menu ul li a.root-item-selected{
	background: rgb(235, 28, 36);
	background: -moz-linear-gradient(top, #67c1eb 0%, #1177b7 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #67c1eb), color-stop(100%, #1177b7));
	background: -webkit-linear-gradient(top, #67c1eb 0%, #1177b7 100%);
	background: -o-linear-gradient(top, #67c1eb 0%, #1177b7 100%);
	background: -ms-linear-gradient(top, #67c1eb 0%, #1177b7 100%);
	background: linear-gradient(to bottom, #67c1eb 0%, #1177b7 100%);
	color: #fff;
	text-shadow: 1px 1px 1px #333;
}

a.item-selected{
	text-decoration:underline !important;
}
.left-menu ul li ul{
	display: none;
}
.left-menu ul li.root-item-selected ul{
	display: block;
}

.left-menu ul li ul li a{
	padding-left:35px;
}
