.ui-rotatable-handle {
	z-index: 10;
	position: absolute;
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.ui-rotatable-handle-t {
    height: 15%;
    width: 100%;
    left: 0;
    top: 0;
    /*background-color: blue;*/
}

.ui-rotatable-handle-r {
    height: 100%;
    width: 15%;
    right: 0;
    top: 0;
    /*background-color: red;*/
}

.ui-rotatable-handle-b {
    height: 15%;
    width: 100%;
    left: 0;
    bottom: 0;
    /*background-color: yellow;*/
}

.ui-rotatable-handle-l {
    height: 100%;
    width: 15%;
    left: 0;
    top: 0;
    /*background-color: orange;*/
}

.ui-rotatable-handle:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}