<!--
////////////////////////////////////////
////           Demo #1              ////
////////////////////////////////////////
-->

.mydropdown .dropcontainer {
	position:relative;
	font-size: 16px;
	color: #777;
	} 

.mydropdown .trigger {
	color: #777;
	padding: 10px;
	font-size: 16px;
	width: 100%;
	background: #fff url(../images/select-arrow-open.png) 98% 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;
	}

.mydropdown .trigger:hover {
	color: #777;
	background: #f5f5f5 url(../images/select-arrow-open.png) 98% center no-repeat;
	}

.mydropdown .activetrigger {
	color: #777;
	padding: 10px;
	font-size: 16px;
	width: 100%;
	background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
	display: block;
	border: 1px solid #ccc;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

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

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

.mydropdown .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;
	}

.mydropdown .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;
	}

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

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

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

.mydropdown .dropdownhidden {
	display: none;
	}

.mydropdown .dropdownvisible {
	height: auto;
	}


<!--
////////////////////////////////////////
////           Demo #2              ////
////////////////////////////////////////
-->	


.mydropdown .dropcontainer_demo2 {
	position:relative;
	font-size: 16px;
	color: #666;
	} 

.mydropdown .trigger_demo2 {
	color: #666;
	padding: 6px 10px;
	font-size: 14px;
	width: 100%;
	background: #fff url(../images/select-arrow-open.png) 98% 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;
	border-radius: 4px;
	text-decoration: none !important;
	}

.mydropdown .trigger_demo2:hover {
	color: #777;
	background: #f5f5f5 url(../images/select-arrow-open.png) 98% center no-repeat;
	text-decoration: none !important;
	}

.mydropdown .activetrigger_demo2 {
	color: #777;
	padding: 6px 10px;
	font-size: 14px;
	width: 100%;
	background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
	display: block;
	border: 1px solid #173782;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	
	}

.mydropdown .activetrigger_demo2:hover {
	background: #f5f5f5 url(../images/select-arrow-close.png) 98% center no-repeat;
	color: #777;
	}

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

.mydropdown .dropcontainer_demo2 ul {
	font-size: 16px;
	border: 1px solid #ccc;
	border-top: none;
	background: #fff;
	list-style-type: none;
	padding: 10px;
	margin: 0;
	width: 88%;
	z-index: 100;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
	
.mydropdown .dropcontainer_demo2 ul li a { color: #000;font-size: 14px;}
.mydropdown .dropcontainer_demo2 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;
	border-top: 1px solid #EDEAEA;
	}

.mydropdown .dropcontainer_demo2 ul li:hover {
	background: #f1f1f1;
	color: #666;
	outline: none;
	text-decoration: none;
	}
.mydropdown .dropcontainer_demo2 ul li a:hover {
	text-decoration: none;
	}
.mydropdown .dropcontainer_demo2 ul li:first-child {
	display: none;
	}

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

.mydropdown .dropdownhidden_demo2 {
	display: none;
	}

.mydropdown .dropdownvisible_demo2 {
	height: auto;
	}

.mydropdown .dropdownvisible_demo2 {
	max-height: 200px;
	overflow-y: scroll;
	position: absolute;
	z-index: 9999;
	}