/* carousel */

.carousel
{
    display: none;
}

.img-carousel-container
{
    max-width: 100%;
    position: relative;
}
.img-carousel-ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    width: 9999px;
}

.img-carousel-inner
{
	/* background: -moz-linear-gradient(center top, #FCFCFC 0%, #EEEEEE 100%) repeat scroll 0 0 #FCFCFC; */
	/* background: none repeat scroll 0% 0% rgba(0, 0, 0, 0.1); */
	
	background:rgba(255,255,255,0.3);
    border: 1px solid #CCC;
	border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;  
	
    float: left;
    overflow: hidden;
    width: 100%;
	
}
.img-carousel-item
{
    cursor: pointer;
    float: left;
    line-height: 0;
    margin: 0;
    padding: 0;
    position: relative;
}
.img-carousel-item img
{
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 10px;
    max-height: 100px;
    max-width: 180px;
    width: 100%;
}
.img-carousel-nav-left, .img-carousel-nav-right
{
    cursor: pointer;
    height: 22px;
    opacity: 0.5;
    position: absolute;
    width: 22px;
    z-index: 100;
}
.img-carousel-nav-left
{
    background: url("../images/index_pg/client_slider/button-previous.png") no-repeat scroll 0 0 transparent;
    left: 10px;
}
.img-carousel-nav-right
{
	background: url("../images/index_pg/client_slider/button-next.png") no-repeat scroll 0 0 transparent;
	right: 10px;
}
