/*dropkick select style*/
.dk_container {
	font-family: Arial, 'Helvetica', sans-serif;
	height:38px;
	width: auto;
}
.dk_container:focus { outline: 0; }
.dk_container a {
	cursor: pointer;
	text-decoration: none;
	font-size:14px;
	color:#444;
}


/* Opens the dropdown and holds the menu label */
.dk_toggle {
	background: transparent url('../../images/button/blue-big-arrow.png') 100% center no-repeat;
	border: 1px solid transparent;
	color: #008db1;
	padding: 5px 30px 5px 5px;
	-webkit-transition: border-color .5s;
	-moz-transition: border-color .5s;
	-o-transition: border-color .5s;
	transition: border-color .5s;
	height: 31px;
	line-height: 14px;
	width:100%;
	background-color: #ffffff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.dk_toggle:hover { 
	text-decoration: none;
}
a.dk_toggle span.dk_label{font-size:14px;color: #037eb9;}

/* Applied whenever the dropdown is open */
.dk_open {
	z-index: 10;
}
.dk_open .dk_toggle {
	background-color: #ececec;
	border-color: #8c8c8c;
	color: #ccc;
	box-shadow: inset 0 -2px 5px #ccc;
}

/* The outer container of the options */
.dk_options {
	box-shadow: rgba(0, 0, 0, .2) 0 2px 8px;
	-moz-box-shadow: rgba(0, 0, 0, .2) 0 2px 8px;
	-webkit-box-shadow: rgba(0, 0, 0, .2) 0 2px 8px;
	width:auto;
}
.dk_options a {
	background-color: #fff;
	border-bottom: 1px solid #999;
	padding: 8px 10px;
	line-height: 18px;
}
.dk_options li:last-child a {border-bottom: none;}

.dk_options a:hover,
.dk_option_current a {
	background-color: #008db1;
	color: #fff;
	text-decoration: none;
}
.dk_options a:hover{
	color: #fff;
}
.dk_container {
	position: relative;
}
.dk_container a {outline: 0;}
.dk_toggle {
	display: -moz-inline-stack;
	display: inline-block;
	*display: inline;
	position: relative;
	zoom: 1;
	border: 1px solid #ddd;
}
.dk_open {position: relative;}
.dk_open .dk_options {display: block;}
.dk_open .dk_label {color: inherit;}

.dk_options {
	display: none;
	position: absolute;
	/* right: 0; */
	width: 100%;
}
.dk_options a,
.dk_options a:link,
.dk_options a:visited {
	display: block;
}
.dk_options_inner {
	overflow: auto;
	position: relative;
	border: 1px solid #008db1;
	margin: 0;
}
.dk_touch .dk_options {overflow: hidden;}

.dk_touch .dk_options_inner {
	max-height: none;
	overflow: visible;
	
}