<!--
////////////////////////////////////////
////           Demo #1              ////
////////////////////////////////////////
-->

.dropcontainer {
	position:relative;
	font-size: 1em;
	width:100%;
	color: #777;
	} 

.trigger {
	color: #4858b5;
	padding: 5px;
	font-size: 1em;
	font-weight:bold;
	width: 100%;
	background-color:#ccc;
	/*background: #fff url(../images/select-arrow-open.png) 98% center no-repeat;
	background-size:20px;*/
	display: block;
	border: 1px solid #ccc;
  	border-radius: 5px 5px 0 0; 
	-moz-border-radius: 5px 5px 0 0; 
	-webkit-border-radius: 5px 5px 0 0; 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease; 
	transition: all 0.1s ease;
	}

.trigger:hover {
	color: #777;
	/*background: #f5f5f5 url(../images/select-arrow-open.png) 98% center no-repeat;
	background-size:20px;*/
	}

.activetrigger {
	color: #4858b5;
	padding: 5px;
	/*background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
	background-size:20px;*/
	background-color:#ccc;
	-moz-border-radius: 5px 5px 0 0; 
	-webkit-border-radius: 5px 5px 0 0; 
	-webkit-box-sizing: border-box;
	display: block;
	font-weight:bold;
	border: 1px solid #ccc;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

.activetrigger:hover {
	/*background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
	background-size:20px;*/
	color: #777;
	font-weight:bold;
	-webkit-transition: all 0.1s ease; 
	-moz-transition: all 0.1s ease; 
	-o-transition: all 0.1s ease; 
	transition: all 0.1s ease;
	}

.activetrigger:active {
	/*background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
	background-size:20px;*/
	color: #777;
	-webkit-transition: all 0.1s ease; 
	-moz-transition: all 0.1s ease; 
	-o-transition: all 0.1s ease; 
	transition: all 0.1s ease;

	}

.dropcontainer ul {
	font-size: 1em;
	border: 1px solid #ccc;
	border-top: none;
	background: #fff;
	list-style-type: none;
	padding: 2px;
	margin: 0;
	width: 100%;
	z-index: 100;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0 0 5px 5px; 
	-moz-border-radius: 0 0 5px 5px; 
	-webkit-border-radius: 0 0 5px 5px; 
	}

.dropcontainer ul li {
	padding: 2px;
	-webkit-transition: all 0.1s ease; 
	-moz-transition: all 0.1s ease; 
	-o-transition: all 0.1s ease; 
	transition: all 0.1s ease;
	}

.dropcontainer ul li:hover {
	background: #ddd;
	outline: none;
	}

.dropcontainer ul li:first-child {
	display: none;
	}

.dropcontainer ul li:last-child {
	border-bottom: none;
	}

.dropdownhidden {
	display: block;
	}

.dropdownvisible {
	height: auto;
	width:100%;
	overflow-y:scroll;
	}


