/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 1200px;
    height: 384px;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
    position: relative;
}

.jcarousel li > div {
    position: absolute;
    top: 30px;
    left: 160px;
    right: 160px;
    height: 260px;
    z-index: 9;
}

    #hero li div img {
        width: 275px;
        height: 86px;
        margin: 0 0 10px;
    }

    #hero h1 {
        font-size: 3.4em;
        font-weight: 700;
        line-height: 1;
        color: #fff;
    }

    #hero h2 {
        font-size: 3.4em;
        font-weight: 700;
        line-height: 1;
        color: #e31937;
        margin: 0 0 30px;
    }

    #hero .btn {
        width: 114px;
    }

/** Carousel Controls **/

#hero i {
    position: absolute;
    top: 36%;
    z-index: 9;
    opacity: .9;
    cursor: pointer;
}

    #hero i:hover {
        opacity: 1;
    }

.left-arrow {
    left: 100px;
	background-color:#D1E8FF;
}

.right-arrow {
    right: 100px;
	background-color:#D1E8FF;
}


    #hero i.inactive {
        opacity: .6!important;
        cursor: default;
    }

/** Carousel Pagination **/

.pagination {
    position: absolute;
    bottom: 50px;
    right: 100px;
    overflow: hidden;
}

.pagination a {
    float: left;
    margin-left: 4px;
}

.pagination a.active {
}