/*SCROLLER EVENTI - NEWS - OFFERTE*/
/*
 * simplyScroll 1.0.3 - a scroll-tastic jQuery plugin
 *
 * http://logicbox.net/jquery/simplyscroll
 * http://logicbox.net/blog/simplyscroll-jquery-plugin
 * http://plugins.jquery.com/project/simplyScroll
 *
 * Copyright (c) 2009 Will Kelly - http://logicbox.net
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Last revised: 03/07/2009 21:13
 *
 */

/* Default/Master classes 

Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded

<div class="your-custom-class simply-scroll-container">
	<div class="simply-scroll-btn simply-scroll-btn-left"></div>
	<div class="simply-scroll-btn simply-scroll-btn-right"></div>
	<div class="simply-scroll-clip">
		<ul class="simply-scroll-list">
			<li>...</li>
			...
		</ul>
	</div>
</div>


*/

/* Container DIV - automatically generated */
#special_rooms_list .simply-scroll-container { /*PER ROOMS*/
	position: relative;	
	background:none;
}

#special_rooms_list .simply-scroll-container { /*PER ROOMS: non serve la scrollbar, quindi non la visualizzo*/
	position: relative;	
	/*background:url(../images/misuratore_scroll.jpg) center right no-repeat;*/
	background:none;
}

.simply-scroll-container { 
	position: relative;	
	background:url(../images/misuratore_scroll_royalspotorno.jpg) center right no-repeat;
}

.simply-scroll-container { 
	position: relative;	
	background:url(../images/misuratore_scroll_royalspotorno.jpg) center right no-repeat;
}

/* Clip DIV - automatically generated */
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
	z-index: 2;	
}

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list { 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;	
}
	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}
	
.simply-scroll-list li img {
	border: none;
	display: block;
}

/* Master button styles - note that left and right 
versions are included although they are not used in this example */

.simply-scroll-btn {
	position: absolute;
	background-image: url(../images/buttons_royalspotorno.gif);
	width: 42px;
	height: 44px;
	z-index:3;
	cursor: pointer;
}

/* Custom class modifications - adds to / overrides above
Vertical scroller example, with custom base class */
/* Container DIV */
.vert { 
	width: 103%; /* wider than clip for custom button pos. */
	height: 300px;
	/*background:url(../images/misuratore_scroll.gif) center right no-repeat;*/
}

/* Clip DIV */
.vert .simply-scroll-clip {
	width:360px;
	height: 300px;	
}

/* Explicitly set height/width of each list item */
.vert .simply-scroll-list li {	
	border-bottom:1px dotted #110305;
	margin:0px;
	padding:10px 0 10px 0;
	height:75px;
}

/* Modified button positions, overriding previous styles */
.vert .simply-scroll-btn-up{ 
	right: -15px;
	top: 0px;
}

.vert .simply-scroll-btn-down { 
	right: 0;
	top: 285px;
}