﻿/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
    text-align:left;
float:left;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    border:0px solid #ccc;
    padding-top:0px;
    margin-left:0px;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 35px; 
    height: 33px;
	margin:3px 3px 0 0;
}
.jcarousel-item img{
	cursor:pointer;
}
/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

.jcarousel-skin-ie7 .jcarousel-container-horizontal {
    width: 188px;
    height:20px;
    text-align:left;
    margin:0;
    padding:0;
    border: 0px solid #000;
}


.jcarousel-skin-ie7 .jcarousel-clip-horizontal {
    margin:0;
    padding:0;
    width:  188px;
    height: 40px;
    text-align:left;
    border: 0px solid #000;
}


/**
 *  Horizontal Buttons
 */
.jcarousel-skin-ie7 .jcarousel-next-horizontal {
    position: absolute;
    top: 38px;
    right: 0px;
    width: 45px;
    height: 14px;
    cursor: pointer;
    background: transparent url(../images/arrow_next.png) no-repeat 0 0;
}




.jcarousel-skin-ie7 .jcarousel-next-horizontal:active {
    background-position: -68px 0;
}

.jcarousel-skin-ie7 .jcarousel-next-disabled-horizontal,
.jcarousel-skin-ie7 .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-ie7 .jcarousel-next-disabled-horizontal:active {
    cursor: default;
}

.jcarousel-skin-ie7 .jcarousel-prev-horizontal {
    position: absolute;
    top: 38px;
    left: 0px;
  width: 73px;
    height: 14px;
    cursor: pointer;
    background: transparent url(../images/arrow_previous.png) no-repeat 0 0;
}



.jcarousel-skin-ie7 .jcarousel-prev-horizontal:active {
    background-position: -84px 0;
}

.jcarousel-skin-ie7 .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-ie7 .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-ie7 .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
}
