/*=====================================================================
  Selectric
======================================================================*/

.selectricWrapper {
    position: relative;
    margin: 0 0 28px;
   width: 100%;
    cursor: pointer;
}

.selectricDisabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectricOpen {
    z-index: 9999;
}

.selectricOpen .selectricItems {
    display: block;
}

.selectricHideSelect {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}

.selectricHideSelect select {
    position: absolute;
    left: -100%;
    display: none;
}

.selectricInput {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    _font: 0/0 a;
    background: none !important;
}

.selectricTempShow {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

.selectricOpen .selectric {
    border-color: #dfe1e2;
;
    background: #fff;
    z-index: 9999;
}
.selectric {
    border: 2px solid #E3E3E3;
    background: #FFFFFF;
    position: relative;
    border-radius: 1px;
}
.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 37px 0 0;
    padding: 0.2em 1.6em .3em;
    font-size: 12px;
    line-height: 32px;
    text-align: left;
    color: #444444;
    min-height: 32px;
    font-weight: 400;
}
.selectric .button {
    background: none;
    border-radius: 0px;
    display: block;
    position: absolute;
    right: 0;
    top: -3px;
    width: 44px;
    height: 44px;
    color: #E3E3E3;
    text-align: center;
    font: 0/0 a;
    /* IE Fix */
    *font: 12px/44px Lucida Sans Unicode, Arial Unicode MS, Arial;
}
.selectric .button:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #E3E3E3;
    border-bottom: none;
}
.selectricHover .selectric {
    border-color: #cacaca;
}
.selectricHover .selectric .button {
    color: #cacaca;
}
.selectricHover .selectric .button:after {
    border-top-color: #cacaca;
}
/* Items box */

.selectricItems {
    display: none !important;
    position: absolute;
    overflow: auto;
    top: 100%;
    left: 0;
    background: #F9F9F9;
    border: 1px solid #CCC;
    z-index: 9998;
    -webkit-box-shadow: 0 0 10px -6px;
    box-shadow: 0 0 10px -6px;
}

.selectricItems ul,
.selectricItems li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 20px;
    line-height: 20px;
    font-size: 12px;
}

.selectricItems li {
    padding: 5px;
    cursor: pointer;
    display: block;
    border-bottom: 1px solid #EEE;
    color: #666;
}

.selectricItems li.selected {
    background: #EFEFEF;
    color: #444;
    border-top-color: #E0E0E0;
}

.selectricItems li:hover {
    background: #F0F0F0;
    color: #444;
}

.selectricItems li.disabled {
    background: #F5F5F5;
    color: #BBB;
    border-top-color: #FAFAFA;
    cursor: default;
}
