#wide-wrapper {
   background-position: center;
    margin-left: 80px;
    margin-top: -40px;
}

.carousel {
    position: relative;
	   background-position: center;
    margin: 0px;
    padding: 0px;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.carousel .carousel-item {
    background-image: url(carousel-assets/images/preloader.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFF;
    position: absolute;
    cursor: pointer;
}

.carousel .out {
    border: #DDD 2px solid;
}

.carousel .over {
    border: #DDD 2px solid;
    -moz-box-shadow: 0px 0px 10px #d4d4d4;
    -webkit-box-shadow: 0px 0px 10px #d4d4d4;
    box-shadow: 0px 0px 10px #d4d4d4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=130, Color='#d4d4d4')";

}

.carousel .click {
    border: #DDD 2px solid;
    -moz-box-shadow: 0px 0px 10px #000;
    -webkit-box-shadow: 0px 0px 10px #000;
    box-shadow: 0px 0px 10px #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=130, Color='#000000')";
}

.carousel .select {
    border: #DDD 2px solid;
    -moz-box-shadow: 0px 0px 10px #000;
    -webkit-box-shadow: 0px 0px 10px #000;
    box-shadow: 0px 0px 10px #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=130, Color='#000000')";
}

.carousel .tooltip {
    position: absolute;
    z-index: 9999;
    background-color: #DDD;
    margin-bottom: 20px;
    border: #EEE solid 4px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.carousel .tooltip p {
    color: #999;
    padding: 10px;
    margin: 0px;
}

.carousel .scrollbar {
    width: 340px;
    position: absolute;
    margin-top: 100px;

}

.carousel .scrollbar .track {
    background-image: url(carousel-assets/images/track.png);
    width: 300px;
    height: 20px;
    position: absolute;
    left: 20px;
}

.carousel .scrollbar .thumb {
    background-image: url(carousel-assets/images/thumb.png);
    width: 70px;
    height: 20px;
    position: absolute;
    cursor: pointer;
}

.carousel .scrollbar .left {
    background-image: url(carousel-assets/images/left.png);
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    left: 0px;
}

.carousel .scrollbar .right {
    background-image: url(carousel-assets/images/right.png);
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    right: 0px;
}