<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 514px;	 
	width: 180px;	
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.item {
	margin: 0px 0px 9px 10px;
}

/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	width:150px;
}

.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
.actions {
	width:152px;
	height:18px;
	position:relative;
	padding-bottom:9px;
	margin-left:10px;
}

.actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

.actions a:hover {
	text-decoration:underline;
	color:#000;
}

.actions .prev.button{
	background-image:url('/images/scrollable_up.png');
	background-position:0px 0px;
	background-repeat:no-repeat;
}

.actions .next.button{
	background-image:url('/images/scrollable_down.png');
	background-position:0px 0px;
	background-repeat:no-repeat;
}

.actions .prev.button:hover{
	background-image:url('/images/scrollable_up.png');
	background-position:0px -18px;
	background-repeat:no-repeat;
}

.actions .next.button:hover{
	background-image:url('/images/scrollable_down.png');
	background-position:0px -18px;
	background-repeat:no-repeat;
}

#slideshow .prev, #slideshow .next, #slideshow .prev img, #slideshow .next img, #slideshow a.prev , #slideshow a.next {
	display:block;
	margin:0px;
	padding:0px;
	border:none;
	height:18px;
	width:18px;
}

#slideshow a.prev{
	top:0px;
	left:0px;
}

#slideshow a.next{
	top:0px;
	right:0px;
}
 
#slideshow img{
	margin:0px;
}
 
.disabled {
	visibility:hidden;		
}

.mod_ural .facility {
	width:172px;
}

.mod_ural .facility h3{
	margin-top:4px;
}

.vertical {
	_width:172px;
}
.mod_hotel .facility, .mod_ural .facility {
	$position:relative;
}</pre></body></html>