/** Carousel **/

.igalery_carousel_wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.igalery {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom:30px;
}

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

.igalery li {
    float: left;
    margin:0 5px
}

.igalery img {
    display: block;
    max-width: 100%;
    height: auto !important;
}

/** Carousel Controls **/

.igalery-control-prev,
.igalery-control-next {
    position:absolute; width:16px; height:25px; 
    background: url(./tango/main_gal_nav.png); 
    cursor:pointer;
    bottom:0;
}

.igalery-control-prev {
    left:0;
}

.igalery-control-next {
    background-position:16px 0; right:0;
}

/** Carousel Pagination **/

.igalery-pagination {
    position: absolute;
    bottom: 7px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.igalery-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background:url(/images/list_pager.png); 
    color: #4E443C;
    text-indent: -9999px;

    margin-right: 5px;
}

.igalery-pagination a.active {
    background-position:10px 0;
    color: #fff;
    opacity: 1;
}

