/* CSS Document */

.rotate {
    position: relative;
    width: 100%;
    height: 475px;
    margin: 0 auto;
    overflow: hidden;
}

    .rotate ul {
        position: absolute;
        top: 0;
        left: 0;
    }

    .rotate li {
        float: left;
        display: inline;
    }

.ctrlBo {
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-size: 0;
}

    .ctrlBo a {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 2px;
        overflow: hidden;
        background: #ccc;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
    }

        .ctrlBo a:hover {
            background: orange;
        }

        .ctrlBo a.on {
            background: orange;
        }

.ctrlPo {
    display: none;
}

    .ctrlPo a {
        position: absolute;
        top: 50%;
        width: 30px;
        height: 30px;
        margin-top: -15px;
        background-color: rgba(0,0,0,.3);
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#4C000000', EndColorStr='#4C000000');
    }

.leftCtrl {
    left: 10px;
}

.rightCtrl {
    right: 10px;
}

.ctrlPo a:hover {
    background-color: rgba(0,0,0,.6);
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#99000000', EndColorStr='#99000000');
}

.leftCtrl i, .rightCtrl i {
    position: absolute;
    top: 5px;
    width: 0;
    height: 0;
    border-width: 10px;
    line-height: 0;
}

.leftCtrl i {
    left: 0;
    border-style: dashed solid dashed dashed;
    border-color: transparent #fff transparent transparent;
}

.rightCtrl i {
    right: 0;
    border-style: dashed dashed dashed solid;
    border-color: transparent transparent transparent #fff;
}