
 * {
    margin: 0;
    padding: 0;
}

#vertical-menu {
    background: #eee;
    width: 250px;
    margin: 10px auto 0 auto;
    color: white;
}
/*heading styles*/
 #vertical-menu h3 {
    font-size: 12px;
    line-height: 34px;
    padding: 0 10px;
    cursor: pointer;
    background: #003040;
    background: linear-gradient(#b41717, #b41717);
    color:white;
}
/*heading hover effect*/
 #vertical-menu h3:hover {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
 #vertical-menu h3 span {
    font-size: 16px;
    margin-right: 10px;
}
/*list items*/
 #vertical-menu li {
    list-style-type: none;
    border-bottom: 1px solid lightgray;
}
/*links*/
 #vertical-menu ul ul li a {
    color: black;
    text-decoration: none;
    font-size: 13px;
    line-height: 27px;
    display: block;
    padding: 0 15px;
    transition: all 0.15s;
}
/*hover effect on links*/
 #vertical-menu ul ul li a:hover {
    background: #b41717;
    color:white;
}
/*Lets hide the non active LIs by default*/
 #vertical-menu ul ul {
    display: none;
}
#vertical-menu li.active ul {
    display: block;
}
.sub_sermenu{
	color:#282323;
	font-size:13px;
	font-weight:bold;
	margin-left:10px;
}












