/**
 * Slidebox default styles
 * 
 * http://github.com/keithjgrant/slidebox
 * Version 0.9
 */

.slidebox-container {
    position: relative;
}

.slidebox {
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* iOS swipe-scroll support */
    padding: 10px;
}

.slidebox-content {
}

.slidebox-controls {
    border: #fff 1px solid;
    border-radius: 3px;
    opacity: 0.5;
    position: absolute;
    top: 0;
    bottom: 15px; /* don't cover scrollbar */
    width: 10%;
}

.slidebox-left {
    background: rgba(128, 128, 128, 0.5) url(../images/left-arrow.png) center center no-repeat;
    left: 0;
    cursor: w-resize;
}

.slidebox-right {
    background: rgba(128, 128, 128, 0.5) url(../images/right-arrow.png) center center no-repeat;
    right: 0;
    cursor: e-resize;
}
