﻿.jquery-carousel
{
    position:relative;
    overflow:hidden;
}

.jquery-carousel ul
{
    width:100%;
    height:100%;
    position:absolute;
    top:0px;
    left:0px;
}

.jquery-carousel .carousel-item
{
    position:relative;
    float:left;
    display:block;
}

.jquery-carousel .carousel-item .button
{
    position:absolute;
    right:15px;
    bottom:10px;
    
    -webkit-border-radius: 4px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 4px;
    -moz-border-radius-bottomright: 0;
    border-radius: 4px;
    border-bottom-right-radius: 0;
}

HTML.lt-ie9 .jquery-carousel .carousel-item .button
{
    position: absolute;
}

.jquery-carousel .carousel-item .button > span
{
    padding:7px 10px;
    height:16px;
    
}
.jquery-carousel .carousel-item .button > span > span.icon
{
    display: block;
    float: left;
    width: 10px;
    height: 14px;
    margin-right:3px;

    background-image:url(../images/widgets.png);
    background-repeat:no-repeat;
    background-position:0px -728px;
}

.jquery-carousel .carousel-arrow
{
    position:absolute;
    margin-top:50%;
    top:-35px;
    height:70px;
    width:70px;

    background-image:url(../images/widgets.png);
    background-repeat:no-repeat;

    transition: all 0.3s ease 0.6s;
    -webkit-transition: all 0.3s ease 0.6s;
}
.jquery-carousel .carousel-arrow.previous
{
    left:-75px;
    background-position:0px -750px;
}
.jquery-carousel .carousel-arrow.next
{
    right:-75px;
    background-position:-70px -750px;
}
.jquery-carousel:hover .carousel-arrow.previous
{
    left:15px;
}
html.lt-ie10 .jquery-carousel:hover .carousel-arrow.previous
{
    left:-75px;
}
.jquery-carousel:hover .carousel-arrow.next
{
    right:15px;
}
html.lt-ie10 .jquery-carousel:hover .carousel-arrow.next
{
    right:-75px;
}
.jquery-carousel .carousel-indicator
{
    position:absolute;
    bottom:10px;
    height:6px;
    width:6px;

    cursor: pointer;

    background-color:#ffffff;

    border: 2px solid #DEDEDE;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;

    transition: all 0.3s ease 0.6s;
    -webkit-transition: all 0.3s ease 0.6s;
}
.jquery-carousel .carousel-indicator.active
{
    border-color:#ffffff;
    background-color:#c30045;

    transform: scale(1.5);
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
}

html.lt-ie10 .jquery-carousel .carousel-indicator
{
    background-image:url(../images/widgets.png);
    background-repeat:no-repeat;
    background-position:0px -820px;
}