*{
	margin:0;
	padding:0;
}
html{
	background-color: #eaf0f2;
}
.container{
	text-align: center;
	font: bold 14px sans-serif;
}

.dropdown{
	text-align: center;
	width: 200px;
	margin: 50px auto 160px;
	position: relative;
	color: gray;
}

.dropdown a{
	display: block;
	box-sizing: border-box;
	text-decoration: none;
	color: #FFF;
	text-align: center;
	background-color: #6BB9E1;
	font-size: 13px;
	width: 120px;
	padding: 9px 0;
	border-radius: 2px;
	margin: 4px auto 0;
	opacity: 0.8;

	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}

.dropdown span {
	background-color: #EC7164;
	display: block;
	box-sizing: border-box;
	color: #FFF;
	text-align: left;
	font-size: 16px;
	width: 200px;
	padding: 11px 15px;
	line-height: 1;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.dropdown span:after{
	content: '';
	position: absolute;
	right: 20px;
	top: 17px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #fff transparent transparent transparent;
	-webkit-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
}

.dropdown ul li a.active{
	background-color: #687AD7;
	opacity: 0.8 !important;
}

.dropdown ul li a:hover {
	opacity: 1;
}

.dropdown ul{
	position: absolute;
	z-index: 200;
	left: 50%;
	margin: 10px 0 0 -250px;
	list-style: none;
	padding: 0;
	overflow: hidden;

	width: 500px;

	height: 0;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
}

.dropdown ul li{
	display: inline-block;
}

.dropdown:hover ul {
	height: 180px;
}