/*
body {
    font-family: Tahoma, Geneva, 'DejaVu Sans Condensed', sans-serif;
    font-size: 0.8em;
}

.carousel {        
    width: 710px;
}
*/
/***********************************\

[[ Carousel CSS ]]


\***********************************/

.carousel {
    height: 153px !important;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.carousel > div.crsl_scroller {        
    height: 140px;
    padding-top: 30px;
    white-space: nowrap;
    /*
    overflow-x: auto;
    overflow-y: hidden;
    */
    overflow: hidden;    
}

.carousel img {
    border: none;
}

.carousel > div.crsl_back {
    background-image: url(carousel-back.gif);
    background-repeat: repeat-x;
    background-position: bottom center;
    
    display: block;
    height: 123px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-radius: 20px;
}

.carousel > div > ul {
    list-style: none;
    padding: 5px;
    margin: 5px 0px ;
    display: block;
    
    left: 0px;
    position: relative;
    -webkit-transition: left 0.1s ease-out;
    -moz-transition: left 0.1s ease-out;
}

.carousel > div > ul li {
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
    /*
    margin-left: 27px;
    margin-right: 27px;
    */
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.carousel > div > ul li > div.crsl_title {
    position: absolute;
    top: -25px;
    width: 100%;
    text-align: center;
    color: #666;
}

.carousel > div > ul li > a {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    text-decoration: none;
    display: block;
    color: #999;
    font-size: 0;
    
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
}

.carousel > div > ul li > a > div.shadow {
    overflow: hidden;
    height: 25px;
    font-size: 0;
}

.carousel > div > ul li > a > div.shadow > img {
    -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: flipv; /*IE*/
}

.carousel > div > ul li > a > div.shadow > div {
    background-image: url(shadow-flip.png);
    position: absolute;
    display: block;
    height: 123px;
    width: 100px;
    top: -5px;
}

.carousel > div > ul li > a.scaled {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    filter: scale(1);
        
    color: #333;

    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
}

/** ----------------------------
 *   Edge arrows
 ** --------------------------- */

.carousel > div.crsl_arrows > a {
    display:block;
    width: 12px;
    height: 40px;
    background-image: url(carousel-arrows.png);
    background-repeat: no-repeat;
    position: absolute;
    text-decoration: none;
    padding-top: 30px;
    padding-bottom: 30px;
    top: 38px;
    opacity: 0.5;
}

.carousel > div.crsl_arrows > a:hover {
    opacity: 1;
}

.carousel > div.crsl_arrows > a.crsl_larr {
    background-position: 5px 38px;
    left: 0px;
    padding-left: 5px;
}

.carousel > div.crsl_arrows > a.crsl_rarr {
    background-position: -12px 38px;
    right: 0px;
    padding-right: 5px;
}

/** ----------------------------
 *   Description bubbles
 ** --------------------------- */

.crsl_bubble {
    display: none;
    position: absolute;
    border: solid 1px #666;
    padding: 10px;
    background: #fff url(carousel-bubblebg.gif) repeat-x bottom;
    color: #000;
    
    max-width: 200px;
    
    -moz-box-shadow: 0px 0px 5px #666;
    -webkit-box-shadow: 0px 0px 5px #666;
    -ms-box-shadow: 0px 0px 5px #666;
    -o-box-shadow: 0px 0px 5px #666;
    box-shadow: 0px 0px 5px #666;
    
    border-radius: 20px 20px 20px 0px;
    -moz-border-radius: 20px 20px 20px 0px;
    -mwebkit-border-radius: 20px 20px 20px 0px;
    -ms-border-radius: 20px 20px 20px 0px;
    -o-border-radius: 20px 20px 20px 0px;
    border-radius: 20px 20px 20px 0px;
}

.crsl_bubble > h3 {
    font-size: 13px;
    color: #3D89AB;
    font-weight: bold;
    margin: 0px;
}

.crsl_bubble > p {
    font-size: 11px;
    margin: 0px;
}
