.sidenav
{
	position: fixed;
	height: 100%;
	width: 180px;
	padding-top: 20px;
	background-color: #111;
	top: 0;
	left: 0;
	z-index: 1;
	overflow-x: hidden;
}

.sidenav ul
{
	*zoom: 1;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.sidenav ul:before,.sidenav ul:after
{
	content: "";
	display: table;
}

.sidenav ul:after
{
	clear: both;
}

.sidenav ul > li
{
	position: relative;
}

.sidenav a
{
	padding: 6px 8px 6px 16px;
	text-decoration: none;
	font-size: 20px;
	background-color: black;
	color: gold;
	display: block;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	outline: none;
}

.sidenav a:hover
{
	background-color: gold;
	color: black;
}

.active
{
	background-color: black;
	color: gold;
}

.sidenav li ul
{
	position: relative;
	top: 0;
	width: 100%;
	padding-left: 8px;
	background-color: #383838;
	color: gold;
	left: 0;
	z-index: 1;
}

.sidenav li ul li
{
	overflow: hidden;
	max-height: 0;
	transition: max-height 1s ease 2s;
}

.sidenav ul > li:hover ul li
{
	max-height: 150px;
	transition: max-height 2s ease;
}
