﻿.carousel {
    position: relative;
    width: 100%;
    min-width: 1200px;
    min-height:400px;
}

.carousel-item {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    opacity: 0;
    z-index: 1;
    height: 400px;
    background-position: center;
    /*-moz-transition: all linear 1s;
    -o-transition: all linear 1s;
    -webkit-transition: all linear 1s;
    transition: all linear 1s;*/
}

    .carousel-item.show {
        position: relative;
        z-index: 10;
        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
        filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
        opacity: 1;
    }

    .carousel-item img {
        width: 100%;
    }

.carousel-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 100;
}

    .carousel-nav span {
        display: inline-block;
        text-decoration: none;
        font-size: 20px;
        color: #FFF;
        cursor:pointer;
        margin: 0 8px;
    }

        .carousel-nav span.curr {
            color: #808080;
        }

.anifrm {
    position: relative;
    width: 1200px;
    height: 400px;
    margin: auto;
}

.anieffect {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
