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

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

.jcarousel-list {
    z-index: 1;
    position: relative;
    top: 0;
    left:0;
    margin: 0;
    padding: 0;
    text-align:center;
    max-width:78px;
}

.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;
    position: relative;
}

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


/* Styling up the image gallery */
 
#slideshow-main {
	width:839px; 
	height: 504px;
	position:relative;
	margin:0 auto;
	
}

#slideshow-main ul {
	margin:0; 
	padding:0; 
	width:839px;
}

#slideshow-main li {
	width:839px;
	height: 504px;
	display:none;
	position:relative;
}

#slideshow-main li.active {
	display:block !important;
}

#slideshow-main li span.opacity {
	position:absolute;
	bottom:0; left:0;
	display:block; 
	width:100%;
	height:60px;
	z-index:500;
}

#slideshow-main li span.content {
	position:absolute;
	top:27px; right:37px;
	display:block; 
	width:100%;
	height:60px;
	z-index:1000;
	font-size:15px;
	color:#bc964f;
	width:100px;
}

#slideshow-main li span.content p {
	font-size:15px;
	margin:5px 0;
	padding:0 10px;
	color:#bc964f;
}

#slideshow-main li span.content h1 {
	font-size:11px;
	margin:5px 0;
	padding:0 10px;
	color:#42e2e8;
}

#slideshow-carousel {
	float:left; 
	width:78px;
	position:absolute;
	top:25px;
	left:100px;
	*margin-left:100px;
	*margin-top:25px;
}

#slideshow-carousel ul {
	margin:0; 
	padding:0;
	list-style:none;
}

#slideshow-carousel li {

	height:90px; 
	position:relative;
}

#slideshow-carousel li .arrow {
	left: 15px;
	top:-8px; 
	position:absolute; 
	width:33px; 
	height:40px; 
	display:block;
	
}

#slideshow-carousel li a {

	display:block; 
	width:78px; 
	height:75px;
}


#slideshow-carousel .active {
	filter:alpha(opacity=100); 
	-moz-opacity:1.0; 
	-khtml-opacity: 1.0; 
	opacity: 1.0;
}
/*
#slideshow-carousel .faded {
	filter:alpha(opacity=50); 
	-moz-opacity:0.5; 
	-khtml-opacity: 0.5; 
	opacity: 0.5;
}*/