/** CORE
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
	height: 190px;
	width: 712px;
	padding: 0px 35px 0px 35px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    height: 190px;
    overflow: hidden;
    position: relative;
    top: 0;
    /*left: -177px;*/
    margin: 0;
    padding: 0;
}

.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 182px;
    height: 189px;
}

/**
 * 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;
    position: absolute;
    top: 79px;
    right: 0px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(imgs/next-horizontal.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover {
   /* background-position: -32px 0; */
}

.jcarousel-next-horizontal:active {
    /* background-position: -64px 0; */
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
   /* cursor: default;
    background-position: -96px 0;*/
}

.jcarousel-prev {
    z-index: 3;
    display: none;
    position: absolute;
    top: 79px;
    left: 0px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(imgs/prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover {
    /*background-position: -32px 0; */
}

.jcarousel-prev-horizontal:active {
    /*background-position: -64px 0;*/
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    /* cursor: default;
    background-position: -96px 0;*/
}





/* END CORE */

/*
*	COMMON
*/

.navbar .jcarousel-container {
    width: 704px;
    margin: 0px;
}

.navbar .jcarousel-item {
    width: 182px;
    height: 189px;
    border: 0px;
    cursor: pointer;
	margin-bottom: 0px;
}

.navbar img {
    width: 156px;
    border: none;
}


.navbar .jcarousel-item:hover {
	border-color: #808080;
}

.navbar .jcarousel-item-placeholder {
    /*background-image: url(../../Images/placeholder_background.png);
    background-attachment: scroll;*/
}

/*
*	HORIZONTAL SETTINGS
*/
.navbar .jcarousel-container-horizontal {
    padding: 0px 40px 0px 40px;
    width: 704px;
}

.navbar .jcarousel-clip-horizontal {
    /*width:  245px;
    height: 77px;
    width: 100%;*/
}

.navbar .jcarousel-item-horizontal {
	margin-right: 0px;
	margin-top: 15px;
}

/**
 *  Horizontal Buttons
 */
.navbar .jcarousel-next-horizontal {
    position: absolute;
    top: 64px;
    right: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(next-horizontal.png) no-repeat 0 0;
}

.navbar .jcarousel-next-horizontal:hover {
    background-position: -32px 0;
}

.navbar .jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.navbar .jcarousel-next-disabled-horizontal,
.navbar .jcarousel-next-disabled-horizontal:hover,
.navbar .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.navbar .jcarousel-prev-horizontal {
    position: absolute;
    top: 64px;
    left: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(prev-horizontal.png) no-repeat 0 0;
}

.navbar .jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.navbar .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.navbar .jcarousel-prev-disabled-horizontal,
.navbar .jcarousel-prev-disabled-horizontal:hover,
.navbar .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

/*
*	VERTICAL SETTINGS
*/

.navbar.jcarousel-container-vertical {
    width: 75px;
    height: 245px;
    padding: 40px 20px;
}

.navbar .jcarousel-clip-vertical {
    width:  77px;
    height: 245px;
}


.navbar .jcarousel-item-vertical {
	margin-bottom: 7px;
}