
/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 707px;	 
	height:235px;	
	border:1px solid #afafaf;
	margin:30px 0 10px 0;
		
}

div.scrollable2 {  
	position:relative;
	overflow:hidden;
	width: 660px;	 
	height:160px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	/*border:1px solid #222; */
}
#thumbs div a { text-decoration:none;}

#thumbs img {text-align:center; margin-left:33px;}


/* single item */
#thumbs div {
	float:left;
	width:687px;
	height:215px; 
	padding:20px 0 0 20px;
	/*background:url(elements/h150.png) repeat-x 0 146px; */
	/*color:#fff; */
	/*border-left:1px solid #333; */
	cursor:pointer;
	
}

#thumbs div p {line-height:1.28em;}

/* style when mouse is over the item */
#thumbs div.hover {
	/*background-color:#444;	*/
}

/* style when element is active (clicked) */
#thumbs div.active {
	/*background-color:#066; */
	cursor:default;
}

#thumbs h3, #thumbs p, #thumbs span {
	/*margin:0 0 13px 0;*/		
	text-align:left;
}
#thumbs a {color:#222;}

#thumbs a:hover {text-decoration:underline; color:#F60}

#thumbs2 {	
	position:absolute;
	width:20000em;	
	clear:both;
	/*border:1px solid #222; */
}
#thumbs2 div a { text-decoration:none;}

#thumbs2 img {text-align:center; margin-left:33px }


/* single item */
#thumbs2 div {
	float:left;
	width:660px;
	height:160px; 
	/*background:url(elements/h150.png) repeat-x 0 146px; */
	/*color:#fff; */
	/*border-left:1px solid #333; */
	cursor:pointer;
}

/* style when mouse is over the item */
#thumbs2 div.hover {
	/*background-color:#444;	*/
}

/* style when element is active (clicked) */
#thumbs2 div.active {
	/*background-color:#066; */
	cursor:default;
}

#thumbs2 h3, #thumbs p, #thumbs span {
	/*margin:0 0 13px 0;*/		
	text-align:left;
}
#thumbs2 a {color:#222;}

#thumbs2 a:hover {text-decoration:underline; color:#F60}












#top1 {height:48px; background:url(elements/top1.gif); background-repeat:no-repeat;}
#btm {height:48px; background:url(elements/btm.gif); background-repeat:no-repeat; clear:both}

#icons {
	position:absolute;
	background:url(elements/package-icons.png);
	height:146px;
	width:676px;
	left: 33px;
	top: -63px;
}

/* this makes it possible to add next button beside scrollable */
a.prev {
position:absolute;
left:20px;
top:20px;
z-index:1000;
}
a.next {
position:absolute;
right:20px;
top:20px;
z-index:10;
	
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:22px;
	height:22px;
	background:url(img/arrow/left2.png) no-repeat;
	float:left;
	margin:0;
	cursor:pointer;
	
	
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -22px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(img/arrow/right2.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:45%;
	width:200px;
	height:20px;
	position:absolute;
	z-index:66;
	top:5px;
	
}


/* items inside navigator */
div.navi a {
	width:12px;
	height:12px;
	float:left;
	margin:3px;
	background:url(img/navigator2.png) 0 0 no-repeat;     
	cursor:pointer;
	outline:none;
}

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

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





