/*custom font for text*/
@import url(https://fonts.googleapis.com/css?family=Nunito);

/*Basic reset*/
* {margin: 0; padding: 0;}

body {
	background: #2b2b2b;
	font-family: Nunito, arial, verdana;
}
#accordian {
	background: #2b2b2b;
	width: 160px;
	color: white;
    text-align: left;
	/*Some cool shadow and glow effect*/
    /*
    box-shadow: 
		0 5px 15px 1px rgba(0, 0, 0, 0.6), 
		0 0 200px 1px rgba(255, 255, 255, 0.5);
    */
}
/*heading styles*/
#accordian h3 {
	font-size: 14px;
	line-height: 28px;
	padding: 0 5px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background: #2b2b2b; 
	/*background: linear-gradient(#333333, #212121);*/
}
/*heading hover effect*/
#accordian h3:hover {
	background: #333333;
	border-right: 4px solid #2b2b2b;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}
/*list items*/
#accordian li {
	list-style-type: none;
}
/*links*/
#accordian ul ul li a {
    background: #333333;
	border-right: 4px solid #2b2b2b;
	color: white;
	text-decoration: none;
	font-size: 11px;
    font-weight: bold;
	line-height: 27px;
	display: block;
	padding: 0 6px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
	background: #2b2b2b;
	border-left: 5px solid #da1312;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}
#accordian li.active ul {