
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 650px;
	height:260px;

	/* custom decorations */
//	border:1px solid #ccc;
//	background:url(images/scrollable/h300.png) repeat-x;
}

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

/* single scrollable item */
.scrollable div {
	float:left;
	margin:0px;
	background-color:#fff;
	padding:0px;
	cursor:pointer;
	width:650px;
	height:260px;
}

.scrollable img {
	cursor:pointer;
	width:650px;
	height:260px;
}


/* active item */
.scrollable .active {
	z-index:99;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* Scrollable News Headlines */

#newsheadlines { 
    position:relative; 
    width:650px;
    height:310px;
    overflow:hidden; 
    clear:both; 
} 
 
/* override single pane */ 
#newsheadlines .item { 
    float:left; 
    display:block; 
    width:650px;
    height:290px;
    cursor:pointer; 
    font-size:14px; 
	font-family: "Lucida Grande", sans-serif;
	font-size: 11px;
} 
 
/* our additional wrapper element for the items */ 
#newsheadlines .items { 
    width:20000em; 
    position:absolute; 
    clear:both; 
    margin:0; 
    padding:0; 
} 
 
#newsheadlines .less, #newsheadlines .less a { 
    color:#999 !important; 
    font-size:11px; 
}


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

/* position and dimensions of the navigator */
.navi {
	margin-left:290px;
	height:20px;
}


/* items inside navigator */
.navi a {
background:transparent url(images/scrollable/navigator.png) no-repeat scroll 0 0;
display:block;
float:left;
font-size:1px;
height:8px;
margin:3px;
width:8px;
}

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

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