.dropcontainer {
	position: relative;
	font-size: 16px;
	color: #3fbeb1;
}

.trigger {
	font-family: Quicksand;
	text-decoration: none;
	color: #3fbeb1;
	padding: 10px;
	font-size: 16px;
	width: 97px;
	background: #fff url(../images/select-arrow-open.png) 93% center no-repeat;
	display: block;
	border: 1px solid #ccc;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	margin-top: -10px;
}

.trigger:hover {
	font-family: Quicksand;
	color: #3fbeb1;
	background: #f5f5f5 url(../images/select-arrow-open.png) 93% center no-repeat;
}

.activetrigger {
	font-family: Quicksand;
	color: #3fbeb1;
	padding: 10px;
	font-size: 16px;
	width: 97px;
	background: #f5f5f5 url(../images/select-arrow-close.png) 93% center no-repeat;
	display: block;
	border: 1px solid #ccc;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: -10px;
}

.activetrigger:hover {
	background: #f5f5f5 url(../images/select-arrow-close.png) 93% center no-repeat;
	color: #777;
	text-decoration: none;
}

.activetrigger:active {
	background: #f5f5f5 url(../images/select-arrow-close.png) 93% center no-repeat;
	color: #777;
}

.dropcontainer ul {
	font-size: 16px;
	border: 1px solid #ccc;
	border-top: none;
	background: #fff;
	list-style-type: none;
	padding: 10px;
	margin: 0;
	width: 100%;
	z-index: 100;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.dropcontainer ul li {
	padding: 5px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.dropcontainer ul li:hover {
	background: #f5f5f5;
	outline: none;
}

.dropcontainer ul li:first-child {
	display: none;
}

.dropcontainer ul li:last-child {
	border-bottom: none;
}

.dropdownhidden {
	display: none;
}

.dropdownvisible {
	height: auto;
	text-decoration: none;
}
.dropdownvisible {
	height: 150px;
	overflow-y: scroll;
}
.dropdownvisible a {
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	color: #3fbeb1;
}

