div.bootstrapDropdown {
    width: 100%;
}

div.bootstrapDropdown > button {
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    padding: 0 30px 0 12px;
    color: #6e6e6e;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 28px;
    line-height: 26px;
    border-radius: 4px;
    border: 1px solid #b4b4b4;
    text-decoration: none;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 1px 2px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 1px 2px 1px rgba(0, 0, 0, 0.1);
    background: -moz-linear-gradient(top, #ffffff 0%, #e6e6e6 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #e6e6e6)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #e6e6e6 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #e6e6e6 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #e6e6e6 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6'); /* IE6-9 */
    -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6'); /* IE6-9 */
    z-index: 30;
}

div.bootstrapDropdown.disabled > button {
    color: #b4b4b4;
    border: 1px solid #c5c5c5 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #e6e6e6;
    cursor: default;
}

div.bootstrapDropdown > button:after {
    right: 14px;
    top: 11px;
    display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    background-image: url(../images/common/sp_form.png);
    background-repeat: no-repeat;
    background-position: 0 -34px;
}

div.bootstrapDropdown.open > button:after {
    background-position: -10px -34px;
}

div.bootstrapDropdown > div {
    min-width: 50px;
    width: 100%;
}

div.bootstrapDropdown > div > button {
    width: 100%;
    word-break: break-all;
    position: relative;
    min-height: 27px;
    padding: 6px 14px 6px 14px;
    color: #6e6e6e;
    line-height: 1.3;
    cursor: pointer;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
}

div.bootstrapDropdown > div > button:hover, div.bootstrapDropdown > div > button:focus {
    background: #f7f2c0;
}

div.bootstrapDropdown > div > button.selection, div.bootstrapDropdown > div > button.on {
    background: #dcf1f2;
}