﻿/**
 * Plugin Carousel Style Sheet
 */
.carousel {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.carousel .inner {
    height: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
}

.carousel .inner .item {
	
}

.carousel .ctrl {
    position: absolute;
    height: 8px;
    line-height: 8px;
    z-index: 11;
    right: 0;
    bottom: 5px;
    width: 100%;
    text-align: center;
}

.carousel .ctrl span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #808080;
    border-radius: 5px;
    margin: 0 3px;
}

.carousel .ctrl span.curr {
    background: #fff;
}

.carousel .num {
    width: 35px;
    line-height: 18px;
    height: 18px;
    position: absolute;
    z-index: 101;
    bottom: 10px;
    right: 10px;
}

.carousel .num .bg {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: black;
    opacity: 0.3;
}

.carousel .num .text {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 12px;
}

.carousel .num .text i {
    font-style: normal;
}