/* --------------------------------------------
  select
 ----------------------------------------------- */
/* select */
.menu_dropbox {
    width: 350px;
    height: 30px;
    line-height:20px;
    margin: 0;
    padding: 0;
    list-style: none;  
    box-sizing:border-box;
}
.menu_dropbox li {
    position: relative;
}
.menu_dropbox a {
    display:inline-block;
    background-color:#FFF;
    width: 100%;
    padding-left: 8px;
    padding-right: 15px;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing:border-box;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space:nowrap;    
}
.menu_dropbox a.dropbox_current {
    box-sizing:border-box;
    border: #BBB 1px solid;
    border-radius: 5px;
    line-height:30px;
    height:30px;
    position:relative;
}
.menu_dropbox a.dropbox_current .title {

}
.menu_dropbox li:hover > a {
    color: #333;
}
*html .menu_dropbox li a:hover /* IE6 */ {
    color: #fafafa;
}

/* child open */
/*
.menu_dropbox li:hover > ul {
    display: block;
}
*/

.menu_dropbox li.open > ul {
    display: block;
}
 
/* child */
.menu_dropbox ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;    
    position: absolute;
    top: 29px;
    left: 0;
    z-index: 99999;    
    background: #FFF;
    opacity:1.0;   
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    width:100%;
    box-sizing:border-box;
    border: #BBB 1px solid;
}
 
.menu_dropbox ul li {
    float: none;
    width:100%;
    margin: 0;
    padding: 0;
    display: block;  
}

.menu_dropbox ul a {
    height: auto;
    line-height: 20px;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
    box-sizing:border-box;
}
*html .menu_dropbox ul a /* IE6 */ {
    height: 10px;
    width: 150px;
}
*:first-child+html .menu_dropbox ul a /* IE7 */ {
    height: 10px;
    width: 150px;
}

.menu_dropbox ul a:hover {
    background: #bad1e8;
}

.menu_dropbox ul li:last-child a {
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* clear */
.menu_dropbox:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html .menu_dropbox             { zoom: 1; } /* IE6 */
*:first-child+html .menu_dropbox { zoom: 1; } /* IE7 */

.caret {
  position:absolute;
  right:5px;
  top: 11px;
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-top: 8px solid #555;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  opacity: 1;
}

.menu_dropbox ul li a.selected {
    /* background: #bad1e8; */
    font-weight:bold;
}