.heapBox {
    clear: both;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    position: relative;
    width: 185px;
}
.heapBox * {
    margin: 0;
    padding: 0;
    outline: none;
}
.heapBox.disabled .holder {
    color: #989898;
}
.heapBox.disabled .handler {
    background: url(../gfx/heapbox_bg.jpg) repeat-x;
}
.heapBox a {
    text-decoration: none;
    color: #fff;
}
.heapBox .holder {
    background-color: rgb(230, 230, 230);
    color: rgb(42, 43, 45);
    font: 14px/36px proximanova-light;
    height: 36px;
    overflow: hidden;
    text-indent: 20px;
    width: 100%;
}
.heapBox .handler {
    background: rgb(230, 230, 230) url("../img/dropdown-big-ico.png") no-repeat scroll 0 center;
    display: block;
    height: 100%;
    position: absolute;
    right: 16px;
    top: 0;
    width: 11px;
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.heapBox a[rel="smaller"]::after {
    background: rgba(0, 0, 0, 0) url("../img/dropdown-itm-ico.png") no-repeat scroll 0 center;
    content: "";
    display: inline-block;
    position: absolute;
    height: 100%;
    line-height: 36px;
    margin-left: 6px;
    vertical-align: middle;
    width: 7px;
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}
.heapBox a[rel="bigger"]::after {
    background: rgba(0, 0, 0, 0) url("../img/dropdown-itm-ico.png") no-repeat scroll 0 center;
    content: "";
    display: inline-block;
    position: absolute;
    height: 100%;
    line-height: 36px;
    margin-left: 6px;
    vertical-align: middle;
    width: 7px;
    
}
.heapBox.open .handler {
    transform: rotate(0);
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
}
.heapBox .holder,
.heapBox .handler {
    float: left;
    z-index: 10;
}
.heapBox div.heap {
    background-color: rgb(230, 230, 230);
    display: none;
    left: 0;
    list-style-type: none;
    overflow: hidden;
    position: absolute;
    top: 36px;
    width: 185px;
    z-index: 1001;
}
.heapBox .heap .heapOptions {
    display: block;
    overflow: hidden;
    z-index: 20;
    position: relative;
}
.heapBox .heap a.sliderUp {
    display: block;
    width: 100%;
    height: 15px;
    background: #333 url(../gfx/slider_arrow_up.png);
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom: 1px solid #111;
    position: absolute;
    top: 0px;
    z-index: 30;
}
.heapBox .heap a.sliderDown {
    display: block;
    width: 100%;
    height: 15px;
    background: #333 url(../gfx/slider_arrow_down.png);
    background-repeat: no-repeat;
    background-position: center center;
    border-top: 1px solid #111;
    position: absolute;
    bottom: 0px;
    z-index: 30;
}
.heapBox .heap .heapOptions .heapOption {
    z-index: 20;
    position: relative;
    display: block;
    height: 35px;
}
.heapBox .heap .heapOptions .heapOption a {
    border-top: 1px solid rgba(137, 137, 138, 0.32);
    color: rgb(42, 43, 45);
    display: block;
    font: 14px/36px proximanova-light;
    text-indent: 20px;
    width: 100%;
}
.heapBox .heap .heapOptions .heapOption a:hover {
    background-color: rgb(0, 110, 176);
    border-color: rgb(0, 110, 176);
    color: rgb(255, 255, 255);
}
.heapBox .heap .heapOptions .heapOption a.selected {
    background-color: rgb(0, 110, 176);
    border-color: rgb(0, 110, 176);
    color: rgb(255, 255, 255);
}
.heapBox .heap .heapOptions .heapOption a.disabled {
    color: #777;
}
.heapBox .heap .heapOptions .heapOption a.disabled:hover {
    background: url(../gfx/heapbox_heapitem_bg.jpg) repeat-x;
}