.menuButton {
	cursor:pointer;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background: url(images/svg/drop-down-menu.svg) 0px 0px no-repeat;
	height: 22px;
	width: 26px;
	padding-left:12px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	}
.menuButton:hover, .menuButton:focus {
	background-color: #fff;
	background-repeat: no-repeat;
	color:#c30;
	outline:0;
	background-image: url(images/svg/drop-down-menu-red.svg);
}
	

.menuList {
	position: absolute;
	background-color: #ddd;
	overflow: hidden;
	border-radius: 10px 0px 0px 10px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	margin-top: 10px;
	-webkit-transition: height 0.3s ease-in;
	-moz-transition: height 0.3s ease-in;
	-o-transition: height 0.3s ease-in;
	-ms-transition: height 0.3s ease-in;
	transition: height 0.3s;
	width: 390px;
	padding: 0px;
	height: 0px;
}
.menuList a {
	color: #000;
	display: block;
	margin: 0px;
	font-size: 16px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
}
.menuList a:hover {
	color: #c30;
	background-color: #eee;
}


.show {
	height: 400px;


}
