
.carousel-component {
	display: none; /* component turns it on when first item is rendered */
	overflow: hidden;   /* causes the clipping */
	position: relative;
}
				
.carousel-component ul.carousel-list {
	position: relative;
	width: 10000000px;
	z-index: 1; 
}

.carousel-component .carousel-list li {
	float: left;
	list-style: none;
	overflow: hidden;
}

/* start carousel global styles */

.carousel-component .carousel-vertical li {
	margin-bottom: 0px;
	/* Fix for extra spacing in IE */
	clear: left;
	float: left;  
	/* Force the LI to respect the HEIGHT specified */
	display: block;
	overflow: hidden;
}

/* For vertical carousel, not set, width defaults to auto */
/* Note if you explicitly set width to auto, this might cause */
/* problems with Safari... as in up/down button not working in some examples. */
 
.carousel-component ul.carousel-vertical {
	/*	width: auto; */
}

.carousel-component .carousel-clip-region {
	margin: 0px auto;
	overflow: hidden; /* Secret to the clipping */
	position: relative;
}

/**
Safe to override. It is safe to override background, padding, margin, color,
text alignment, fonts, etc. Define a separate CSS file and override your style
preferences.
 **/

.carousel-component {
	background: #666666;
	color: #618cbe;
	padding: 0px;
}

.carousel-component ul.carousel-list {
	line-height: 0px;
	margin: 0px;
	padding: 0px;
}

.carousel-component .carousel-list li {
	color: #f1f1f1;
	font: 10px verdana,arial,sans-serif;
	margin: 0px;
	padding: 0px;
	text-align:center;
}

.carousel-component .carousel-vertical li {}

.carousel-component ul.carousel-vertical {}

.carousel-component {
	margin: 0 auto 0 auto;
	padding: 8px 16px 5px 16px;
}

.carousel-component .carousel-list li {
	height: 93px; /* image + row of text (87) + border-top (1) + border-bottom(1) + margin-bottom(4) */
	margin: 4px;
	/* margin-left: auto; */ /* for testing IE auto issue */
	width: 134px; /* img width is 75 px from flickr + a.border-left (1) + a.border-right(1) + img.border-left (1) + img.border-right (1) */
}

.carousel-component .carousel-list li a {
	border: 1px solid #666666;
	display: block;
	outline: none;
}

.carousel-component .carousel-list li a:hover {
	border: 1px solid #ffffff; 
}

.carousel-component .carousel-list li img {
	border: 1px solid #ffffff;
	display: block;
}
                                
.carousel-component .carousel-prev {
	cursor: pointer;
	left: 5px;
	position: absolute;
	top: 40px;
	z-index: 4;
}

.carousel-component .carousel-next {
	cursor: pointer;
	position: absolute;
	right: 0px;
	top: 40px;
	z-index: 4;
}
