@charset "utf-8";
/* CSS Document */
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 640px;	
	height: 260px;
	float:left;	
	
	/* custom decorations */
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* custom decoration */
	width:660px;
	padding:0;
	margin-right: 0px;	

}


/* prev, next, prevPage and nextPage buttons */
a.prev, a.prevPage, a.next, a.nextPage {
	display:inline;
	width:18px;
	height:36px;
	background:url(../images/left_waste.png) no-repeat;
	float:left;
	cursor:pointer;
	font-size:1px;
	margin: 87px 0 0 0;
	padding:0px;
}

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

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

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




ul.tabs {
margin: 0;
padding:0;
height:30px;
list-style-type: none;
cursor:pointer;
}
ul.tabs li { display: inline; height:30px; color:#662d91; cursor:pointer; padding:0 10px; }
ul.tabs li a { display: inline;  text-decoration: none; cursor:pointer; color:#662d91; }
ul.tabs li.active {color:#b046ff; font-weight:bold;}
.scroll_content {
	float:left;
	text-align:left;
	font-size:10px;
	margin:0px;
	padding:10px 5px;
	width:120px;
}
ul.scroll_content {
	list-style-type:none;
}