/* Basic carousel, carousel-container and button styles */
#jcl-demo2{
    position: relative;
    /* width: 100%;
    height: 100%;  */
    /* width: 1397px;
    height: 344px; */
}
#jcl-demo2 .custom-container {
    /* margin: 20px 0; */
}

#jcl-demo2 .carousel, #jcl-demo2 .carousel * {
    box-sizing: content-box;    /* My theme uses border-box for whatever reason, I don't know. I am switching it to the standard content-box here */
}

#jcl-demo2 .carousel {
    /* border: 1px solid #bababa; */
    /* border-radius: 10px; */
    background-color: ghostwhite;
    float: left;
    /* padding-left: 10px; */

    /* Needed for rendering without flicker */
    position: relative;
    visibility: hidden;
    left: -5000px;
}
#jcl-demo2 .carousel>ul {}
#jcl-demo2 .carousel>ul>li {}
#jcl-demo2 .carousel>ul>li>img,
#jcl-demo2 .carousel>ul>li>p {
    /* mandatory */
    /* width: 1397px;
    height: 344px; */
    /* width: 100%;
    height: 100%;  */
    vertical-align:middle;

    /* optional */
    /* margin: 10px 10px 10px 0; */
    border-radius: 0px;
}
#jcl-demo2 .carousel>ul>li>p {
    /* mandatory */
    width: 130px;
    height: 98px;

    border: 1px solid #808080;
    line-height: normal;
    background-color: #fff;
    padding: 10px;
}

/* Additional styles for <a> based buttons with images */
#jcl-demo2 a.prev, #jcl-demo2 a.next, #jcl-demo2 a.go {
    display: block;
    width: 50px;
    height: 100px;
    text-align: center;
    line-height: 93px;
    background-color: #333333;
    color: ghostwhite;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 55px;
    opacity: 0.6;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 8px;

    float: left;
}
#jcl-demo2 a.prev {
    text-indent: 7px;
    position: absolute;
    left: 0;
    top: 140px;
    z-index: 99;
}
#jcl-demo2 a.next {
    text-indent: 10px;
    position: absolute;
    right: 0;
    top: 140px;
    z-index: 99;
}
#jcl-demo2 a.prev:hover, #jcl-demo2 a.next:hover, #jcl-demo2 a.go:hover {
    background-color: #666666;
}

/* Additional carousel styles for external controls, slider, widget, mid etc. */

#jcl-demo2 .externalControl button,
#jcl-demo2 .imageSliderExt button {
    margin: 5px 5px 0 0;
}
    #jcl-demo2 .externalControl a.next, #jcl-demo2 .externalControl a.prev, #jcl-demo2 .externalControl a.go,
    #jcl-demo2 .imageSliderExt a.next, #jcl-demo2 .imageSliderExt a.prev, #jcl-demo2 .imageSliderExt a.go
    {
        margin: 0 5px 0 0;
        padding: 7px 5px 0 5px;
        font-size: 15px;
        text-align: center;
        border-radius: 3px;
    }


    #jcl-demo2 .widget img {
    cursor: pointer;
}
#jcl-demo2 .mid {
    margin-left: 50px;
    width: 400px;
    height: 300px;
}
#jcl-demo2 .vertical {
    margin-left: 170px;
}
#jcl-demo2 .vertical .carousel {   /* so that in IE 6, the carousel div doesnt expand to fill the space */
    /*width: 160px;*/
}
#jcl-demo2 .imageSlider .carousel>ul>li>img,
#jcl-demo2 .imageSliderExt .carousel>ul>li>img {
    width: 400px;
    height: 300px;
}
#jcl-demo2 .imageSlider .carousel>ul>li>p,
#jcl-demo2 .imageSliderExt .carousel>ul>li>p {
    width: 380px;
    height: 280px;
}


/* Other Styles */

#jcl-demo2 h4 {
    font-weight: bold;
}


.mybanner {
    position: relative;
}
.mybanner a.prev, .mybanner a.next, .mybanner a.go {
    display: block;
    width: 50px;
    height: 100px;
    text-align: center;
    line-height: 93px;
    background-color: #333333;
    color: ghostwhite;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 55px;
    opacity: 0.6;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 8px;

    float: left;
}
.mybanner a.prev {
    text-indent: 7px;
    position: absolute;
    left: 63px;
    top: 200px;
    z-index: 99;
}
.mybanner a.next {
    text-indent: 10px;
    position: absolute;
    right: 0;
    top: 200px;
    z-index: 99;
}








