.GraphicSlider {
    /* layout */
    width: 500px;
    height: 200px;
    margin: auto;
    overflow: hidden;
    
    /* colors */
    border: solid black 1px;
}

.GraphicSlider-frame {
    /* layout */
    height: 100%;
    width: 300px;
    margin: auto;
    
    /* colors */
}

.GraphicSlider-position {
    /* layout */
    position: absolute;
    height: 0;
    width: inherit;
    
    /* colors */
    text-align: center;
}

.GraphicSlider-position-item {
    /* layout */
    display: inline-block;
    width: 16px;
    height: 16px;
}

.GraphicSlider-position-item.selected {
    color: red;
}

.GraphicSlider-arrow-frame {
    /* layout */
    height: inherit;
    width: 100px;
    
    /* colors */
}

.GraphicSlider-arrow-frame.left {
    /* layout */
    position: absolute;
    height: inherit;
}

.GraphicSlider-arrow-frame.right {
    /* layout */
    float: right;
}

.GraphicSlider-arrow {
    /* layout */
    position:absolute;
    height: inherit;
    width: inherit;
    
    /* colors */
    background:red;
    -ms-opacity: 0.5;
    opacity: 0.5;
}

.GraphicSlider-roll {
    /* layout */
    display: block;
    height: 100%;
    width: 100%;
    margin-left: 0;
    white-space: nowrap;
    
    /* animation */
    -o-transition: margin 0.5s ease;
    -ie-transition: margin 0.5s ease;
    -moz-transition: margin 0.5s ease;
    -webkit-transition: margin 0.5s ease;
    transition: margin 0.5s ease;

    /* colors */
}

.GraphicSlider-slide {
    /* layout */
    display: inline-block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    
    /* colors */
    background: rgba(100, 100, 100, 0.3);
}



