/* get rid of those system borders being generated for A tags */
#specialattraction a:active {
  outline:none;
}
:focus {
  -moz-outline-style:none;
}
* {
	outline:none;
}
/* root element for the whole scrollable setup */
#specialattraction div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 650px;	 
	height:364px;
}

#specialattraction #thumbs .images {  
	width: 650px;	 
	height:364px;
}

#specialattraction #thumbs .images img {
	width:650px;
	height:276px;
}


#specialattraction #thumbs p {
	text-align:center;
	margin:0px;
	padding-top:20px;
}
/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#specialattraction #thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}
/* single item */
#specialattraction #thumbs div {
	float:left;
	cursor:pointer;
}
/* style when mouse is over the item */
#specialattraction #thumbs div.hover {

}
/* style when element is active (clicked) */
#specialattraction #thumbs div.active {
	cursor:default;
}
/* this makes it possible to add next button beside scrollable */
#specialattraction div.scrollable {
	float:left;	
}
/* prev, next, prevPage and nextPage buttons */
#specialattraction a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:31px;
	height:311px;
	float:left;
	cursor:pointer;
	background-image: url(../images/arrow_left.gif);
	background-repeat: no-repeat;
	background-position: center;
}
/* disabled navigational button */
#specialattraction a.disabled {
	visibility:hidden !important;		
}
/* next button uses another background image */
#specialattraction a.next, a.nextPage {
	background-image:url(../images/arrow_right.gif);
	clear:right;	
}
/*********** navigator ***********/
/* position and dimensions of the navigator */
#specialattraction div.navi {
	margin-left:310px;
	width:650px;
	height:20px;
	margin-top:15px;
}
/* items inside navigator */
#specialattraction div.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 */
#specialattraction div.navi a:hover {
	background-position:0 -8px;      
}
/* active state (current page state) */
#specialattraction div.navi a.active {
	background-position:0 -16px;     
} 	
