/* Blue Sky menu.css - CSS Document  for the responsive CSS Menu */

/*Strip the ul of padding and list styling*/
menu ul {
	list-style-type:none;
	margin:0px;
	padding:0px;
	position: relative; /* absolute */
}

/*Create a horizontal list with spacing*/
menu li {
	display:inline-block;
	float: left;
	margin-top: 3px;
	margin-right: 3px;
}

/*Style for menu links*/
menu li a {
	display:block;
	min-width:80px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #2f3036;
	text-decoration: none;
}

/*Hover state for top level links*/
menu li:hover a {
	background: #19c589;
}

/*Style for dropdown links*/
menu li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 30px;
	line-height: 30px;
}

/*Hover state for dropdown links*/
menu li:hover ul a:hover {
	background: #19c589;
	color: #fff;
	display: block;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
}

menu li:hover ul {
	display: block;
}

/*Make dropdown links vertical*/
menu li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
menu li ul li a {
	width: auto;
	min-width: 80px;
	padding: 0 10px;
}

/*Display the dropdown on hover*/
menu ul li a:hover + .hidden, .hidden:hover {
	display: block;
}