/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.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: 75px;
    height: 75px;
}

/**
 * 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;
}


/**
 * Additional styles for the controls.
 */
.jcarousel-control 
{	
	float:left;
	width:48px; 	/*48px - 24px*/
	height: 189px;	/*212 -56px*/
	padding: 22px 0 0 0;
}

.jcarousel-control a
{
	width:16px;
	height:16px;
	display: block;
	font-size: 1px;
	text-decoration: none;
	margin: 0 0 0 20px!important;
	text-align: center;
}

.jcarousel-control a.inactive 
{
	background: url('../images/carousel-point.jpg') no-repeat center;
	color: #ffffff;
}

.jcarousel-control a.active
{
	background:  url('../images/carousel-point-active.jpg') no-repeat center;
	color:#69be2d;

}

.jcarousel-control  div
{
	width: 16px;
	height: 10px;
}


#mycarousel-prev 
{
	width:15px;
	height:9px;
    cursor: pointer;
	float: left;
    background: url('../images/arrow-up.jpg') no-repeat;
    font-size: 11px;
	margin: 23px 0 0 21px;
	display: inline;
}
#mycarousel-prev:hover
{
    background: url('../images/arrow-up-active.jpg') no-repeat;
}


#mycarousel-next
{
	width:15px;
	height:9px;
    cursor: pointer;
	display: inline;
	float: left;
    font-size: 11px;
	display:inline;
	margin: 6px 0 0 21px;
    background: url('../images/arrow-down.jpg') no-repeat;
}

#mycarousel-next:hover
{
    background: url('../images/arrow-down-active.jpg') no-repeat;
}
