/**
 * 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;
    
}
/*this is important. if didnt set the width and height, it will cause alert error*/
.jcarousel-list li {
    /* We set the width/height explicitly. No width/height causes infinite loops. */
	width:90px; 
	height:90px;
	display: inline-block;
	float: left;
}

/**
 * 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 {
	margin:20px 20px 20px 0;
}

#slideshow-main ul {
	margin:0; 
	padding:0; 
}

#slideshow-main li {
	display:none;
	position:relative;
	text-align :center;
	list-style :none;	
}

#slideshow-main li .bigphoto
{
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
}

#slideshow-main li.active {
	display:block !important;
}

#slideshow-main li span.opacity {
	position:absolute;
	bottom:10px; 
	left:8px;
	right: 8px;
	display:block; 
	height:60px;
	background:#000;
	filter:alpha(opacity=40); 
	-moz-opacity:0.5; 
	-khtml-opacity: 0.5; 
	opacity: 0.5;
	z-index:500;
}


#slideshow-main li span.content {
	position:absolute;
	bottom:0;
	left:0;
	display:block; 
	width:100%;
	height:60px;
	z-index:1000;
}

#slideshow-main li span.content h1 {
	font-size:14px;
	margin:5px 0;
	padding:0 10px;
	color:#42e2e8;
}

#slideshow-main li span.content p {
	font-size:11px;
	margin:5px 0;
	padding:0 10px;
	color:#fff;
	
}

/* Styling up the carousel */  

#slideshow-carousel {
	float:left; 
	width:100px;
	position:relative;
	padding-top: 30px;
}

#slideshow-carousel ul {
	margin:0; 
	padding:0;
	list-style:none;
}

#slideshow-carousel li {
	background:transparent; 
	position:relative;
}

#slideshow-carousel li .arrow {
	left:-5px; 
	top:20px; 
	position:absolute; 
	width:40px; 
	height:40px; 
	background:url(../../../App_File/Image/JCarousel/arrow_white.png) no-repeat 0 0; 
	display:block;
}

#slideshow-carousel .pic
{
    margin: 2px 2px;
    _margin: 1px 1px;
    width: 40px;
    height: 40px;
    float: left; /*background-color:Blue;*/
}


#slideshow-carousel li a {
	display:block; 
	width:70px; 
	height:70px; 
	text-align :center;
	vertical-align :middle;
	float:left;
	border:2px solid #c3c3c3;
	cursor :pointer ;
	margin:4px;
	padding:5px;	
}

.photo 
{
	float: left;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    width:70px; 
	height:70px;
	z-index: 1;
	
    /* We set the width/height explicitly. No width/height causes infinite loops. */
}

#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;
}

