.ecgviewer {
    position: absolute;
    overflow: hidden;
    background-color: #EEE;
    width: 100%;
    height: 500px;

}

.ecgviewer .wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
}

.ecgviewer>.wrapper>svg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
}


.slider_outer {
    display: block;
    position: absolute;
    top: 17px;
    left: 17px;
    width: 30px;
    height: 129px;
    padding: 0px;
    margin: 0px;
    background: transparent url(../images/scale.png) 0px 0px no-repeat;
    z-index: 98;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    -moz-drag-select: none;
    -khtml-drag-select: none;
    drag-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.slider_plus {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    border: 0px none;
    background: transparent url(../images/plus_off.png) no-repeat 0px 0px;
}

.slider_plus:hover,
.slider_plus:focus {
    background: transparent url(../images/plus_on.png) no-repeat 0px 0px;
}

.openhand_cursor {
    cursor: grab;
    /*url(../images/openhand.cur), default;*/
}

.openhand_cursor:active .closehand_cursor:active {
    cursor: grabbing;
    /*url(../images/openhand.cur), default;*/
}

.closehand_cursor {
    cursor: grabbing;
    /*url(../images/closedhand.cur), default;*/
}


.slider_minus {
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    border: 0px none;
    background: transparent url(../images/minus_off.png) no-repeat 0px 0px;
}

.slider_minus:hover,
.slider_minus:focus {
    background: transparent url(../images/minus_on.png) no-repeat 0px 0px;
}

.slider_inner {
    position: relative;
    width: 30px;
    height: 72px;
    padding: 0px;
    margin: 29px 0 28px 0;
    border: 0px none;
    background: transparent;
}

.slider_knob {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 30px;
    height: 11px;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    border: 0px none;
    background: transparent url(../images/slider_off.png) no-repeat 0px 0px;
}

.slider_knob:hover,
.slider_knob:focus,
.slider_knob.onfocus {
    background: transparent url(../images/slider_on.png) no-repeat 0px 0px;
}

.fullscreenarea {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 0;
    z-index: 20000;
    overflow-y: auto;
    overflow-x: hidden;
    border: none;
}