.dk_container {
    font-family: "Trebuchet MS",Arial,Tahoma;
    font-size: 16px;
    font-weight: normal;
    margin:0 9px 18px 0;
    background: url('../images/custom_select_bg.png') no-repeat;
    height:43px;
}
.dk_container a {
    cursor: pointer;
    text-decoration: none;
}   
/* Opens the dropdown and holds the menu label */
.dk_toggle {
    padding:11px 11px 10px 11px;
    height:22px;
    line-height:22px;
}   
/* Applied whenever the dropdown is open */
.dk_open {
    z-index: 10;
}  
/* The outer container of the options */
.dk_options {
    background: url('../images/custom_select_option_bg.png') left bottom no-repeat;
}
.dk_options a {
    margin:0 3px;
}
.dk_options a:hover, .dk_option_current a {
    background-color: #e3e3e3;
    color: #000;
    text-decoration: none;
}  
/* Inner container for options, this is what makes the scrollbar possible. */
.dk_options_inner {
    max-height: 200px;
}

/* Set a max-height on the options inner */
.dk_options_inner, .dk_touch .dk_options {
    max-height: 250px;
}

/******  End Theme ******/  
  
/***** Critical to the continued enjoyment of working dropdowns ******/

.dk_container {
    display: none;
    float: left;
    position: relative;
}
.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_options {
    display: none;
    margin-top: -3px;
    position: absolute;
    right: 0;
    width: 100%;
}
.dk_options a,
.dk_options a:link,
.dk_options a:visited {
    display: block;
    padding:6px 7px 4px 7px;
}
.dk_options_inner {
    overflow: auto;
    position: relative;
    padding-bottom:3px;
    -webkit-overflow-scrolling: touch;
}
.dk_options_inner a {
    font-size:15px;
}
.dk_touch .dk_options {
    overflow: hidden;
}

.dk_touch .dk_options_inner {
    max-height: none;
    overflow: visible;
}

.dk_fouc select {
    position: relative;
    top: -99999em;
    visibility: hidden;
}
/* Hides only dropkick <select> instances */
.dk_container select {
    position: absolute;
    top: -99999em;
    visibility: hidden; }

/*  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; 
}

/***** End Critical to the continued enjoyment of working dropdowns ******/  
  
/* black theme */

.dk_container.dk_theme_black {
    height:35px;
    margin:0;
    font-size:18px;
    background: url('../images/custom_black_select_bg.png') no-repeat;
}
.dk_container.dk_theme_black .dk_toggle {
    color:#fff!important;
    height:35px!important;
    line-height:35px!important;
    padding:0 34px 0 0;
}
.dk_container.dk_theme_black .dk_options {
    background:#1e1e1e;
}
.dk_container.dk_theme_black .dk_options a {
    margin:0;
    padding:0 34px 0 0!important;
    height:25px!important;
    line-height:25px!important;
    color:#fff!important;
    font-weight:bold;
}
.dk_container.dk_theme_black .dk_options a:hover, .dk_container.dk_theme_black .dk_option_current a {
    background:#2d2d2d!important;
    text-decoration:none!important;
}



