/*_____________________________________________ Start - Projects - jCarouselLiteDemo _____________________________________________*/
 
#jCarouselLiteDemo .carousel  {
    padding: 10px 0 0 0;
    margin: 0 0 20px 10px;
    position: relative;
}
#jCarouselLiteDemo .main {
    margin-left: 10px;
    margin-right: 10px;
}

#jCarouselLiteDemo .carousel a.prev, #jCarouselLiteDemo .carousel a.next {
    display: block;
    float: left;
    width: 30px;
    height: 120px;
    text-decoration: none;
    background: url("../../../../images/imageNavLeftHover.gif") left  no-repeat;
}

#jCarouselLiteDemo .carousel a.next {
    display: block;
    background: url("../../../../images/imageNavRightHover.gif") right  no-repeat;
}

#jCarouselLiteDemo .carousel a.next:hover {
    display: block;
    background-image: url("../../../../images/imageNavRightHover.gif");
}
#jCarouselLiteDemo .carousel a.prev:hover {
    display: block;
    background-image: url("../../../../images/imageNavLeftHover.gif");
}    
#jCarouselLiteDemo .carousel a:hover, #jCarouselLiteDemo .carousel a:active {
    border: none;
    outline: none;
}                 

#jCarouselLiteDemo .carousel .jCarouselLite {
    border: 1px solid #0066ff;
    float: left;
    background-color: #ffffff;
    width:600px;
    /* Needed for rendering without flicker */
    position: relative;
    visibility: hidden;
/*    left: -5000px; */
}
#jCarouselLiteDemo .carousel  ul {
    margin: 0;
    overflow: hidden;
    visibility: visible;
    position: relative;
    z-index: 2; 
    left: 0px;    
    height:120px;  
}
#jCarouselLiteDemo .carousel ul li {
    overflow: hidden;
    float: left;
    width: 180px;
/*    height: 120px; */
    font-size:10px;    
}
#jCarouselLiteDemo .carousel ul li a {
    font-size:10px;
    color:#0066ff;
}

#jCarouselLiteDemo .carousel li img{
    
}

/*_____________________________________________ End - Projects - jCarouselLiteDemo _____________________________________________*/
/*_____________________________________________ Start - Utility classes _____________________________________________*/

/* Default classes for clearing float, also clearing the end without presentational markup*/
.clear { clear: both; }
