.dk_container {
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: normal;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	/*margin-right:10px;*/
	/*margin-right:-1000px;*/
}
.dk_container:focus {
/*outline: 0;*/

}
.dk_container a {
	cursor: pointer;
	text-decoration: none;
}
.dk_toggle {
	background-color: #fff;
	border: 1px solid #d9d9d9;
	color: #898989;
	padding: 7px 10px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-webkit-transition: border-color .5s;
	-moz-transition: border-color .5s;
	-o-transition: border-color .5s;
	transition: border-color .5s;
	position: relative;
	width: 100% !important;
	height: 34px;
}
.alert-danger .dk_toggle {
	background-color: #f2dede;
	color: #a94442;	
}
.alert-danger .dk_toggle .fa-caret-down {
	background-color: #a94442;
}
.dk_toggle:hover {
	border-color: #c9222d;
	color: #898989;
}
.dk_toggle .fa-caret-down {
	background-color: #005ca9;
	color: #fff;
	font-size: 20px;
	height: 34px;
	line-height: 34px;
	margin-top: -1px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 34px;
	-webkit-transition: all 500ms ease-in-out 0s;
	-moz-transition: all 500ms ease-in-out 0s;
	-ms-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	transition: all 500ms ease-in-out 0s;
}
.dk_toggle:hover > .fa-caret-down {
	background-color: #c9222d;
}
/* Applied when the dropdown is focused */

.dk_focus .dk_toggle {
	background-color: #f5f4f2;
	/*border-color: #40b5e2;
	box-shadow: 0 0 5px #40b5e2;
	-moz-box-shadow: 0 0 5px #40b5e2;
	-webkit-box-shadow: 0 0 5px #40b5e2;*/
	color: #232323;
}
.dk_focus .dk_toggle:after {
	border-top: 5px solid #fff;
}
/* Applied whenever the dropdown is open */

.dk_open {
	/**

	* Help: Dropdown menu is covered by something

	* Try setting this value higher

	*/

	z-index: 10;
}
.dk_open .dk_toggle {
	color: #232323;
	background-color: #f5f4f2;
}
/* The outer container of the options */

.dk_options {
	background: #fefefe;
	/* Removes transparent background on iOS5+ scroll */

	box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
}
.dk_options a {
	background-color: #fff;
	border-bottom: none;
	font-weight: normal;
	padding: 5px 16px;
	color: #10100f;
}
.dk_options a:hover,  .dk_options .dk_option_current a {
	background-color: #c9222d;
	color: #fff;
	text-decoration: none;
	text-shadow: 0 0;
}
.dk_options li:last-child a {
	border-bottom: none;
}
.dk_options .disabled {
	cursor: default;
}
.dk_options .disabled a {
	color: #aaa;
}
.dk_options .disabled:hover, .dk_options .disabled:hover a {
	cursor: default;
	background-color: #fff;
	border-bottom-color: #999;
	text-shadow: none;
}
/* Inner container for options, this is what makes the scrollbar possible. */

.dk_options_inner {
	list-style: none;
	padding: 0;
	margin: 0px;
	max-height: 250px;
	border: 1px solid #d9d9d9;
	border-bottom-width: 1px;
	border-bottom-color: #d9d9d9;
	color: #333;
	text-shadow: #fff 0 1px 0;
	border-radius: 0;
19  -moz-border-radius: 0;
	-webkit-border-radius: 0;
	width: 100%;
}
/******  End Theme ******/

/***** Critical to the continued enjoyment of working dropdowns ******/

.dk_container {
	display: none;
}
.dk_container a {
	outline: 0;
}
.dk_toggle {
	display: -moz-inline-stack;
	display: inline-block;
 *display: inline;
	position: relative;
	zoom: 1;
}
.dk_open {
	position: relative;
}
.dk_open .dk_options {
	display: block;
}
.dk_open .dk_label {
	color: inherit;
}
.dk_label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	padding-left: 5px;
	position: relative;
	z-index: 1;
}
.dk_options {
	display: none;
	margin-top: 0px;
	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;
	-webkit-overflow-scrolling: touch;
}
/* Hides only dropkick <select> instances */

.dk_container select {
	position: absolute;
	top: -99999em;
	visibility: hidden;
	width: 0;
}
/*  nativeMobile override */ 

.dk_mobile {
	position: relative;
}
.dk_mobile select {
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	visibility: visible;
	opacity: 0;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
