/* ========== HOME PAGE CAROUSEL ============ */







.carousel
{ 
	position: relative;	
	width: 880px;
	height: 322px;
	overflow: hidden;
	border:0; 
	border-radius:7px; 
	box-shadow:4px 4px 9px #999; 	
}

.carousel ul.carousel-images 
{
	position: absolute;
	left: 0;
	top: 0;
	width: 15000px;					/* a very big width to hold all images twice */
	margin: 0;
	padding: 0;	
	list-style: none;
}

.carousel ul.carousel-images li 
{
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	border: none;
	background-color: #fff;
	position: relative;
}

.carousel ul.carousel-images li img 
{
	display: block;
	border: none;
	border-radius:7px;
}



.carousel ul.carousel-images li.item .description
{
	display: none;
}

.carousel ul.carousel-images li.item .description .title
{
	font-weight: bold;
	padding-bottom: 3px;
}


.carousel ul.carousel-controls 
{ 
	position: absolute; 
	bottom: 8px; 
	left: 10px;
	margin: 0;
	padding: 0 0 5px 10px;
	list-style: none;
	width: 800px;
}

.carousel ul.carousel-controls li
{
	margin: 0;
	padding: 0;
}

.carousel .carousel-controls a 
{ 
	display: block;
	overflow: hidden;
	float: left; 
	width: 20px; 
	height: 20px; 
	background: #CBD5E5; 
	text-decoration: none;
	border-radius: 12px;	
	border: 2px solid #FFF;
	margin: 0 12px 0 0;
}
.carousel .carousel-controls a:hover,
.carousel .carousel-controls a.selected
{ 
	background: #2D518C;
}


/* ========================================== */