/* Copyright 2007-2008 SOFTRITE Technology, Inc - All Rights Reserved 
 _siteScrollMenu.css 

 Scrolling Menu

*/


/* 
------------------------------------------------------------------------------------------------------------------------
CSS Layout
------------------------------------------------------------------------------------------------------------------------
*/

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 742px;	 
	height:218px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}


/* single item */
#thumbs div {
	float:left;
	width:148px;
	height:218px;
	color:#fff;
	cursor:pointer;
}

/* 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:13px;		
	font-family:"bitstream vera sans";
	font-size:13px;
	color:#fff;	
}

#thumbs h3 em {
	font-style:normal;
	color:yellow;
}

<!--paste from external-->

div.scrollable{
}

a.prev, a.prevPage {
	display:block;
	width:63px;
	height:18px;
	background:url(_siteimages/menu/arrow_l.png);
	background-position:0px -18px;
	float:left;
	cursor:pointer;
	z-index:6;
	position:absolute;
	left:8px;
	top:500px;	
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px 0px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background:url(_siteimages/menu/arrow_r.png);
	background-position:0px -18px;
	clear:right;
	display:block;
	width:63px;
	height:18px;
	float:left;
	cursor:pointer;
	z-index:5;
	position:absolute;
	left:680px;
	top:500px;
}	

