/** Slydeshow Styles **/

.slydeshow {
    position: relative;
    width: 1120px;
    height: 380px;
}

.slydeshow > ul {
    position: relative;
    width: 1000px;
    height: 380px;
    left: 60px;
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
}

.slydeshow > ul > li {
    position: relative;
    float: left;
    display: inline;
    min-width: 999px;
    max-width: 1069px;
    padding-top: 1px;
    padding-left: 1px;
}

.slydeshow-controls {
    z-index: 3;
    position: absolute;
    width: 1120px;
    top: 110px;
}

.slydeshow-controls .arrow-prev {
    z-index: 2;
    position: absolute;
    cursor: pointer;
    left: 5px;
    width: 44px;
    height: 95px;
    text-decoration: none;
    background: url('../image/arrow-left.png') 0 0 no-repeat;
}

.slydeshow-controls .arrow-prev:hover {
    background-position:0 -95px;
}

.slydeshow-controls .arrow-next {
    z-index: 2;
    position: absolute;
    cursor: pointer;
    right: 5px;
    width: 44px;
    height: 95px;
    text-decoration: none;
    background: url('../image/arrow-right.png') 0 0 no-repeat;
}

.slydeshow-controls .arrow-next:hover {
    background-position:0 -95px;
}

.slydeshow-pills {
    z-index: 1;
    position: absolute;
    display: block;
    height: 14px;
    bottom: 0;
}
.slydeshow-pills span {
    display: inline-block;
    border: solid 1px #0c1722;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #032b3e;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -3px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -3px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -3px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.slydeshow-pills span.active {
    background-color: #054e70;
}
.slydeshow-pills span:hover {
    background: #054e70;
}