
.carouselOwner {
    margin: 20px 0 20px 0;
}
.carouselContainer {
    display: block;
    position: relative;
    /*top: 0px; /*10px*/
    left: 0px;
    height: 3000px;
    width: 100%;
    overflow: hidden;
}
.carouselContainer .carousel_item {
    display: block;
    position: absolute;
    top: 0px;
    height: 350px;
    width: 150px;
    cursor: pointer;
    overflow: hidden;
}
.carouselContainer .carousel_item img {
    opacity: .5; 
}
.carouselContainer .carousel_item img:hover {
    opacity: 1; 
}
    .carouselContainer .carousel_item div {
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 4px;
        background-color: #cc9966;
        color: #993300;
        font-weight: bold;
    }
.carouselLeft{
    position: absolute;
    top: 60px;
    left: 0px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.5;
}
.carouselRight{
    position: absolute;
    top: 60px;
    left: 100%;
    margin-left: -40px;
    cursor: pointer;
    z-index: 2;
    opacity: 0.5;
}
.carouselLeft:hover {
    opacity: 1;
}
.carouselRight:hover {
    opacity: 1;
}
#mask {
    background-color: rgba(0,0,0,1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none; 
    z-index: 100;
    margin: auto;
}
#carousel_item_show {
    text-align: center;
}
#carousel_item_show div {
    left: 0;
    width: 100%;
    text-align: center;
    padding: 4px;
    background-color: #cc9966;
    max-width: 600px;
}
