/* CSS Document */

/* === menu === */
#menu {
	float:left;
	padding: 10px;
	background-color: #f6b33d;
	border: thin solid #014E0B;
	border-width:1px;
	width: 250px;
	margin: 5px 20px 20px 10px;
	color: white;
	border-radius:10px;
	/*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*/
#menu h3 {
	font-size: 32px;
	line-height: 50px;
	padding: 0 10px;
	cursor: pointer;
	background: #d29105; 
}

/*list items*/
#menu li {
	list-style-type: none;
}

/*links*/
#menu ul li h3 a {
	color: white;
	text-decoration: none;
	font-size: 32px;
	line-height: 50px;
	padding: 0 10px;
	background: #d29105; 
}
#menu ul ul li a {
	color: white;
	text-decoration: none;
	font-size: 26px;
	line-height: 35px;
	display: block;
	padding: 0 15px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}

/*hover effect on links*/
#menu ul li h3 a:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
	border-left: 5px solid lightgreen;
}
#menu ul ul li a:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
	border-left: 5px solid lightgreen;
}

/*Lets hide the non active LIs by default*/
#menu ul ul {
	display: none;
}
#menu li.active ul {
	display: block;
}
