.drsElement {
    position: absolute;
    background-color: #FFF;
    border: 1px solid #333;
}

.drsMoveHandle {
    height: 50px;
    z-index: 9;
    width: 20%;
    top: 0px;
    left: 0px;
    float: left;
    position: absolute;
    font-size: 32px;
    color: #da56a0;
    text-align: center;
    background-color: rgb(255, 202, 252);
    border-bottom: 1px solid #AAA;
    cursor: move;
}

.graphHoverArea {
    width: 20%;
    height: 40px;
    float: left;
    top: 0px;
    position: absolute;
    z-index: 5;
}

.dragresize {
    position: absolute;
    width: 5px;
    height: 5px;
    font-size: 1px;
    background: #EEE;
    border: 1px solid #333;
}

.dragresize-tl {
    top: -8px;
    left: -8px;
    cursor: nw-resize;
}

.dragresize-tm {
    top: -8px;
    left: 50%;
    margin-left: -4px;
    cursor: n-resize;
}

.dragresize-tr {
    top: -8px;
    right: -8px;
    cursor: ne-resize;
}

.dragresize-ml {
    top: 50%;
    margin-top: -4px;
    left: -8px;
    cursor: w-resize;
}

.dragresize-mr {
    top: 50%;
    margin-top: -4px;
    right: -8px;
    cursor: e-resize;
}

.dragresize-bl {
    bottom: -8px;
    left: -8px;
    cursor: sw-resize;
}

.dragresize-bm {
    bottom: -8px;
    left: 50%;
    margin-left: -4px;
    cursor: s-resize;
}

.dragresize-br {
    bottom: -8px;
    right: -8px;
    cursor: se-resize;
}