/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
 #mycarousel .jcarousel-item-placeholder {
    background: transparent url(/img/loading.gif) 50% 50% no-repeat;
}
 
.jcarousel-container {
    position: relative;
    padding-top: 32px;
	background: url(img/picture-gallery-header.gif) no-repeat;
	width: 377px;
	height: 252px;
	top: 20px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 340px;
    height: 220px;
}

/**
 * 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 .jcarousel-container {
    -moz-border-radius: 10px;
    background-color: #D4D0C8;
    border: 1px solid #808080;
}

.jcarousel .jcarousel-container-horizontal {
    width: 245px;
    padding: 20px 40px;
}

.jcarousel .jcarousel-clip-horizontal {
    width:  330px;
    height: 220px;
    /*margin: 5px auto 0 auto;*/
    margin:36px 0 0 66px;
}

* html .jcarousel .jcarousel-clip-horizontal{
	padding-top: 33px;
	margin: 0;
	padding-left: 66px;
	width: 260px;
}

.jcarousel .jcarousel-item {
    width: 340px;
    height: 220px;
}

.jcarousel .jcarousel-item:hover {
    border-color: #808080;
}

.jcarousel .jcarousel-item-horizontal {
    margin-right: 7px;
}

.jcarousel .jcarousel-item-placeholder {
}

/**
 *  Horizontal Buttons
 */
.jcarousel .jcarousel-next-horizontal {
    position: absolute;
    top: 63px;
    right: 5px;
    width: 15px;
    height: 171px;
    cursor: pointer;
    background: transparent url(img/gallery-right-arrow.gif) no-repeat 0 -171px;
}

.jcarousel .jcarousel-next-horizontal:hover {
    background-position: 0px 0;
}

.jcarousel .jcarousel-next-horizontal:active {
    background-position: 0px -171px;
}

.jcarousel .jcarousel-next-disabled-horizontal,
.jcarousel .jcarousel-next-disabled-horizontal:hover,
.jcarousel .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: 0px 0;
}

.jcarousel .jcarousel-prev-horizontal {
    position: absolute;
    top: 63px;
    left: 5px;
    width: 15px;
    height: 171px;
    cursor: pointer;
    background: transparent url(img/gallery-left-arrow.gif) no-repeat 0px -171px;
}

.jcarousel .jcarousel-prev-horizontal:hover {
    background-position: 0px 0;
}

.jcarousel .jcarousel-prev-horizontal:active {
    background-position: 0px -171px;
}

.jcarousel .jcarousel-prev-disabled-horizontal,
.jcarousel .jcarousel-prev-disabled-horizontal:hover,
.jcarousel .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: 0px 0;
}

.jcarousel-list a:link, .jcarousel-list a:visited{

}

.jcarousel-list a:hover img{
	border: 0px none !important; 
}



