/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:900px;
	height:500px;
	margin:0 auto;

	/* custom decorations */
	/*border:1px solid #ccc;*/
	/*background:url(/images/h300.png) repeat-x;*/
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:900px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0 5px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	/*width:500px;*/
	height:500px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable img:hover {
	background-color:#123;	
}

.scrollable img#first {
	margin-left:40px;	
}

.scrollable img#second {
	margin-left:70px;	
}

.scrollable img#third {
	margin-left:160px;	
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

/* position and dimensions of the navigator */
.hp {
	padding-top: 20px;
	padding-left: 120px;
}

.delloglio {
	padding-left: 30px;
}

.donna {
	padding-left: 100px;
}

.navi {
	margin:0 auto;
	width:170px;
	height:20px;
}

/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}


/* nsl03 */
.scrollable3 {
	/* required settings */
	position:relative;
	overflow:hidden;
	width:590px;
	height:190px;
	/*border:1px solid yellow;*/
	/* custom decorations */
	/*border:1px solid #ccc;*/
	/*background:url(/images/h300.png) repeat-x;*/
}

.scrollable3 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable3 .items div {
	float:left;
	width:590px;
}

/* single scrollable item */
.scrollable3 img {
	float:left;
	margin:0 5px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:180px;
	height:180px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable3 img:hover {
	background-color:#123;	
}

.tooltip {
	display:none;
	background:transparent url(../images/black_arrow.png);
	font-size:11px !important;
	height:80px;
	width:180px;
	padding:15px 15px 20px;
	color:#fff;	
}

