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

.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;
}

.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;
}

#jcarousel-nav {
	float: left;
	width: 650px;
	height: inherit;
	margin: 20px 0 10px 0;
	padding: 10px 0px 10px 0px;
	border-top: 1px solid #990000;
}
#jcarousel-nav #jcarousel-paging {
	margin: auto;
	padding: 0 0 0 0;
	text-align: center;
	width: 650px;
	height: 75px;
}

/* Prev and Next Buttons */
#mycarousel-prev a
{
	float: left;
	background: transparent url(../images/jcarousel/prev-horizontal.gif) scroll left top;
	background-repeat: no-repeat;
	height: 32px;
	width: 32px;
	text-indent:-999em;
	display: block;
	padding: 0px;
	margin: 0px;
}
#mycarousel-prev a:hover
{
	float: left;
	background: transparent url(../images/jcarousel/prev-horizontal.gif) scroll left top;
	background-repeat: no-repeat;
	background-position: -64px 0;
	height: 32px;
	width: 32px;
	text-indent:-999em;
	display: block;
	padding: 0px;
	margin: 0px;
}
#mycarousel-next a
{
	float: right;
	background: transparent url(../images/jcarousel/next-horizontal.gif) scroll left top;
	background-repeat: no-repeat;
	height: 32px;
	width: 32px;
	text-indent:-999em;
	display: block;
	padding: 0px;
	margin: 0px;
}
#mycarousel-next a:hover
{
	float: right;
	background: transparent url(../images/jcarousel/next-horizontal.gif) scroll left top;
	background-repeat: no-repeat;
	background-position: -64px 0;	
	height: 32px;
	width: 32px;
	text-indent:-999em;
	display: block;
	padding: 0px;
	margin: 0px;
}

/* Buttons */
#control-center {
	float: left;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	width: 586px;
	height: auto;
}
.jcarousel-control {
	float: left;
	margin: 0;
	padding: 0;
	height: auto;
	width: 586px;
	text-align: center;
}
.jcarousel-control a{
	float: left;
    background: transparent url(../images/jcarousel/link-button.gif) no-repeat scroll center;
	height: 32px;
	width: 32px;
	display: inline;
	text-indent: -999em;
}
.jcarousel-control a:hover{
    background: transparent url(../images/jcarousel/link-button-highlight.gif) no-repeat scroll center;
	height: 32px;
	width: 32px;
	display: inline;
	text-indent:-999em;
}
.jcarousel-control a:active{
    background: transparent url(../images/jcarousel/link-button-highlight.gif) no-repeat scroll center;
	height: 32px;
	width: 32px;
	display: inline;
	text-indent:-999em;
}
