/* COLORPICKER 1 EXAMPLE */
#colorPicker
{
    width:          15px;
    height:         15px;
    position: relative;
    clear: both;
    margin: 10px auto 10px;
}

#colorPicker .track {
    background:     #EFEFEF url(images/text-color.png) no-repeat 50% 50%;
    height:         50px;
    width:          50px;
    padding:        10px;
    position:       absolute;
    cursor:         crosshair;
    float:          left;
    left:           -71px;
    top:            -71px;
    display:        none;
    border:         1px solid #ccc;
    z-index:        10;
    -webkit-border-radius:50px;
    -moz-border-radius: 50px;
    border-radius: 50px;

}

#colorPicker .color {
    width:          10px;
    height:         10px;
    padding:        1px;
    border:         1px solid #ccc;
    display:        block;
    position:       relative;
    z-index:        11;
    background-color: #EFEFEF;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    cursor: pointer;
}

#colorPicker .colorInner {
    width:          10px;
    height:         10px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

#colorPicker .dropdown {
    list-style: none;
    display: none;
    width: 12px;
    position: absolute;
    top: 10px;
    border: 1px solid #ccc;
    left: 0;
    z-index: 1000;
}

#colorPicker .dropdown li{
    height: 10px;
    cursor: pointer;
}
