.jslide {
    width: 100%;
    height: 100%;
}

.jslide .show {
    position: relative;
    float: left;
    height: 100%;
}

.jslide .show .slide {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jslide .frames {
    float: right;
    width: 146px;
    height: 100%;
}

.jslide .frames .content {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.jslide .frames .content .frame {
    height: 100px;
    width: 100%;
    position: absolute;
    cursor: pointer;
}

.jslide .show .arrow,
.jslide .show .arrow .fill,
.jslide .frames .arrow,
.jslide .frames .arrow .fill {
    width: 0;
    height: 0;
    border-style: solid;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.jslide .show .arrow.arrow-top,
.jslide .frames .arrow.arrow-top {
    border: 20px solid transparent;
    border-top-width: 0;
    top: 5px;
}

.jslide .show .arrow.arrow-top .fill,
.jslide .frames .arrow.arrow-top .fill {
    border: 17px solid transparent;
    border-top-width: 0;
    top: 2px;
    left: -17px;
}

.jslide .show .arrow.arrow-bottom,
.jslide .frames .arrow.arrow-bottom {
    border: 20px solid transparent;
    border-bottom-width: 0;
    bottom: 5px;
}

.jslide .show .arrow.arrow-bottom .fill,
.jslide .frames .arrow.arrow-bottom .fill {
    border: 17px solid transparent;
    border-bottom-width: 0;
    top: -19px;
    left: -17px;
}

/* Colors */

.jslide {
    background-color: #cecece;
}

.jslide .show {
    background-color: #ffffff;
}

.jslide .show .slide {
    background-color: #ffffff;
}

.jslide .frames {
    background-color: #ffffff;
}

.jslide .show .arrow.arrow-top,
.jslide .frames .arrow.arrow-top {
    border-bottom-color: #454545;
}

.jslide .show .arrow.arrow-top .fill,
.jslide .frames .arrow.arrow-top .fill {
    border-bottom-color: #777;
}

.jslide .show .arrow.arrow-top:hover,
.jslide .frames .arrow.arrow-top:hover {
    border-bottom-color: #CC6600;
}

.jslide .show .arrow.arrow-top .fill:hover,
.jslide .frames .arrow.arrow-top .fill:hover {
    border-bottom-color: #FF9900;
}

.jslide .show .arrow.arrow-bottom,
.jslide .frames .arrow.arrow-bottom {
    border-top-color: #454545;
}

.jslide .show .arrow.arrow-bottom .fill,
.jslide .frames .arrow.arrow-bottom .fill {
    border-top-color: #777;
}

.jslide .show .arrow.arrow-bottom:hover,
.jslide .frames .arrow.arrow-bottom:hover {
    border-top-color: #CC6600;
}

.jslide .show .arrow.arrow-bottom .fill:hover,
.jslide .frames .arrow.arrow-bottom .fill:hover {
    border-top-color: #FF9900;
}

.jslide .frames .content {
    background-color: #ffffff;
}

.jslide .frames .content .frame {
    background-color: #ffffff;
}

.jslide .frames .content .frame.selected {
    background-color: #CC6600;
}

.jslide .frames .content .frame:hover,
.jslide .frames .content .frame.selected:hover {
    background-color: #eee;
}

