<!-- JQuery  -->
/*_____________________________________________ Start - jCarouselLiteDemo _____________________________________________*/

#jCarouselLiteDemo .carousel  {
    /*border: 1px solid black;*/
    padding: 10px 0 0 0;
    margin: 0 0 10px 10px;
    position: relative;
    /*width: 70%; */  
}
    #jCarouselLiteDemo .main {
        margin-left: 5px;
    }

    /* #jCarouselLiteDemo .demo em {
        color: #FF3300;
        font-weight: bold;
        font-size: 60%;        
        font-style: normal;
    }*/
    #jCarouselLiteDemo .carousel button { /*Don't remove this. we still use this for individual demos. only the front pages use images as of now*/
        float: left;
    }              
    #jCarouselLiteDemo .carousel a.prev, #jCarouselLiteDemo .carousel a.next {
        display: block;
        float: left;
        width: 25px;
        height: 159px;
		padding-top:10px;
        text-decoration: none;
        background: url("../images/leftarrow.png") left 6px no-repeat;
    }
        #jCarouselLiteDemo .carousel a.next {
            background: url("../images/rightarrow.png") right 6px no-repeat;
        }
            #jCarouselLiteDemo .carousel a.next:hover {
                background-image:url("../images/rightarrow.png");
            }
            #jCarouselLiteDemo .carousel a.prev:hover {
                background-image:url("../images/leftarrow.png");
            }    
            #jCarouselLiteDemo .carousel a:hover, #jCarouselLiteDemo .carousel a:active {
                outline: none;
            }                 
    #jCarouselLiteDemo .carousel .jCarouselLite {
        /*border: 1px solid black;*/
        float: left;
        background-color: #ffffff; /*CB0E14*/
        
        
        /* Needed for rendering without flicker */
        position: relative;
        visibility: hidden;
        left: -5000px;
    }
        #jCarouselLiteDemo .carousel ul {
            margin: 5px;
        }
        #jCarouselLiteDemo .carousel li img, 
        #jCarouselLiteDemo .carousel li p {
            background-color: #ffffff; /*CB0E14*/
            width: 120px;
            height: 120px;
            margin: 3px;
			border:0px;


        }
        
       /* #jCarouselLiteDemo .widget img {
            cursor: pointer;
        }*/
            /*#jCarouselLiteDemo .mid {
                margin-left: 80px;
                width: 400px;
                height: 300px;
            }*/
            /*#jCarouselLiteDemo .vertical {
                margin-left: 170px;
            }*/
              <!--  #jCarouselLiteDemo .vertical .jCarouselLite {   /* so that in IE 6, the carousel div doesnt expand to fill the space */
                    width: 170px;
                } -->
           /* #jCarouselLiteDemo .imageSlider li img, 
            #jCarouselLiteDemo .imageSlider li p, 
            #jCarouselLiteDemo .imageSliderExt li img , 
            #jCarouselLiteDemo .imageSliderExt li p {
                width: 400px;
                height: 300px;
            }*/

/*_____________________________________________ Start - Utility classes _____________________________________________*/

/* Default classes for clearing float, also clearing the end without presentational markup*/
.clear { clear: both; }
    .cLeft { clear: left; }
    .cRight { clear: right; }
    .cEnd {
    /* clear fix without presentational markup. Mostly use .cEnd class for the float container. But when lotta containers
    in one selector, add it directly here like #propertyEntry div */
        display: inline-table;
    /* Hides from IE-mac \*/
        height: 1%;
        display: block;
    /* End hide from IE-mac */
    }
        html>body .cEnd {
        height: auto;
    }
    .cEnd:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }