.simplified-scrollpane {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.simplified-scrollpane-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
    background: transparent;
}

.simplified-scrollpane-content {
    height: 100%;
}

.simplified-scrollpane-leftarrow {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    height: 100%;
    width: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.simplified-scrollpane-rightarrow {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
    height: 100%;
    width: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.simplified-scrollpane-toparrow {
    position: absolute;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.simplified-scrollpane-bottomarrow {
    position: absolute;
    bottom: 0;
    z-index: 99;
    width: 100%;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}
