div.menu {
	height: 50px;
	margin-bottom: 40px;
	text-align: center;
}

div.menu-wrapper {
	width: 664px;
	height: 50px;
	margin: 0 auto;
}

div.menu-item {
	cursor: pointer;
	width: 220px;
	height: 70%;
	color: rgb(120,120,120);
	font-size: 18px;
	margin: 0 auto;
	
	
	-webkit-transition: all 500ms ease;
	
	text-align: center;
	
	float: left;
	padding-top: 10px;
	
	/* Background */
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(70,70,70,1)), to(rgba(50,50,50,1)));
	background: -moz-linear-gradient(100% 100% 90deg, rgb(50,50,50), rgb(70,70,70));
	background-color: rgb(70,70,70);
	
	//border: 1px solid black;
	border-top: none;
	margin-left: 1px;
	
	/* Rounded corners */
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	
	/* Shadow */
	-o-box-shadow: 0px 10px 14px black;
	-icab-box-shadow: 0px 10px 14px black;
	-khtml-box-shadow: 0px 10px 14px black;
	-moz-box-shadow: 0px 10px 14px black;
	-webkit-box-shadow: 0px 10px 14px black;
}