/********************************************************************************************/
/*////////////////////////////////////////////////////////////////////////////////////////////
/**	* Carousel
	* @package		CSS
	* @copyright	This website
	* @licence		Under licence, as specified in the licence.txt file
	* @description	Styles used in the WYSIWYG
	* @help			Check http://www.cafecentral.fr/fr/wiki/ for help
/////////////////////////////////////////////////////////////////////////////////////////////
/********************************************************************************************/

/********************************************************************************************/
/*	Caroussel
/********************************************************************************************/
.hcarousel {
	float:left;
  	width: 100%;
  	height: 430px;
  	position: relative;  
}
.hcarousel .container {
	position: absolute;
	top: 0;
	left: 0;  
	width: 616px;
	height: 373px;
	overflow:hidden;
}
.hcarousel ul.slider {
	margin: 0;
	padding:0;
	width: 100000px;
	position: relative;
	top: 0;
	left: 0;
	height: 200px;
}
.hcarousel ul.slider li {
	float: left;
	width: 616px;
}
.hcarousel ul.slider li .titre {
	font-size: 12px;
}

.hcarousel .previous_button {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 12px;
	height: 23px;
	background: url('../image/carousel_bt_previous.png');
	z-index: 100;    
	cursor:pointer;
}

.hcarousel .next_button {
	position: absolute;
	bottom: 0px;
	right: 0;
	width: 12px;
	height: 23px;
	background: url('../image/carousel_bt_next.png');
	z-index: 100;
	cursor:pointer;
}

.hcarousel .previous_button_disabled,
.hcarousel .next_button_disabled {
	display: none;
}

.hcarousel ul.nav {
	width: 616px;
	position: absolute;
	bottom: 4px;
	left: 10px;
}
.hcarousel ul.nav li {
	float: left;
	padding-left: 12px;
	font-size: 14px;
}
.hcarousel ul.nav li a {
	color: #333333;
	padding: 2px 4px;
	border: 1px solid transparent;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}
.hcarousel ul.nav li.on a {
	color: #000000;
	border: 1px solid #CECECE;
	background: #FFFFFF;
	text-decoration: none;
}
