/*Carousel standard*/
.carousel
{
	width: 450px; /* Defines the size of the visible part of the carousel 		Attention : if you only want to see plain items in the viewport, 		the width of the viewport should take into account of : 		- the items width 		- the right and left padding of items 		- the number of items you want to see in the viewport 	 */
	overflow: hidden; /* Hides extra elements, those outside the viewport area */
}
.carousel ul
{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
}
.carousel li
{
	width: 450px; /* Defines the size of inner element */
	height: 150px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	margin: 0px;
	display: block; /* Cosmetic */
	background: url(../layout_img/hotel_bg.jpg);
	text-align: center;
}

/*Carousel ShakyMakaky events*/
.carouselShakyMakaky
{
	width: 430px; /* Defines the size of the visible part of the carousel 		Attention : if you only want to see plain items in the viewport, 		the width of the viewport should take into account of : 		- the items width 		- the right and left padding of items 		- the number of items you want to see in the viewport 	 */
	overflow: hidden; /* Hides extra elements, those outside the viewport area */
	border: solid 1px gray;
}
.carouselShakyMakaky ul
{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
}
.carouselShakyMakaky li
{
	width: 428px;
	height: 300px;
	float: left;
	list-style: none;
	margin: 0px;
	display: block;
	text-align: justify;
	border-bottom: solid 1px gray;
}
.carouselShakyMakaky li img
{
	max-height:240px;
	width:200px;	
}
/*Carousel Eventi*/
.carouselEventi
{
	width: 450px; /* Defines the size of the visible part of the carousel 		Attention : if you only want to see plain items in the viewport, 		the width of the viewport should take into account of : 		- the items width 		- the right and left padding of items 		- the number of items you want to see in the viewport 	 */
	overflow: hidden; /* Hides extra elements, those outside the viewport area */
	margin-left: 30px;
}
.carouselEventi ul
{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
}
.carouselEventi li
{
	width: 450px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	margin: 0px;
}


/*Carousel Appartamenti*/

.carouselAppartamenti
{
	width: 450px; /* Defines the size of the visible part of the carousel 		Attention : if you only want to see plain items in the viewport, 		the width of the viewport should take into account of : 		- the items width 		- the right and left padding of items 		- the number of items you want to see in the viewport 	 */
	overflow: hidden; /* Hides extra elements, those outside the viewport area */
	margin-left: 30px;
}
.carouselAppartamenti ul
{
	position: relative; /* Enables positionning of elements inside viewport */
	padding: 0; /* Resets default - User Agent - style */
}
.carouselAppartamenti a
{
	text-decoration: none;
	color: #111111;
}
.carouselAppartamenti a:hover .details
{
	text-decoration: none;
	color: #FFCC00;
}
.carouselAppartamenti li
{
	background: url(../layout_img/appartamento_bg.jpg) no-repeat;
	width: 450px;
	height: 150px;
	float: left; /* Places list items side by side*/
	list-style: none; /* Resets default - User Agent - style */
	margin: 0px;
	display: block;
}
.carouselAppartamenti li h3
{
	display: block;
	margin-top: 0px;
	margin-left: 5px;
	font-family: Segoe Print;
	color: #0066CC;
}
.carouselAppartamenti li p
{
	float: right;
	height: 120px;
	margin-top: -30px;
	margin-right: 30px;
	margin-bottom: 50px;
	font-size: 12px;
}

.carouselAppartamenti li img
{
	float: left;
	height: 110px;
	margin-top: -15px;
	margin-left: 10px;
}

/*Carousel VenditaImmobiliare , AttivitąCommerciali*/

/* Controls */
.previous
{
	cursor: pointer;
	background: #3366FF url(previous.png) no-repeat 0px 0px;
	float: left;
	width: 12px;
	font-size: 0.8em;
	text-align: left;
	text-indent: 15px;
}
.next
{
	cursor: pointer;
	background: #3366FF url(next.png) no-repeat 0px 0px;
	float: right;
	width: 12px;
	text-align: left;
	font-size: 0.8em;
	text-indent: -30px;
}

