/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.sponsors-scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 540px; 
    height:100px;
     
} 
 
/* 
    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 width and height for the root element and 
    not for this element. 
*/ 
div.sponsors-scrollable div.sponsors-items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.sponsors-scrollable div.sponsors-items div { 
    float:left;
    height: 100px;
    width: 125px;
	margin-left:10px;
	margin-right:0px;
} 




 
/* you may want to setup some decorations to active the item */ 
div.sponsors-items div.active { 

}

/*BUTTONS*/

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

/* prev, next, prevPage and nextPage buttons */
a.sponsors-browse {
	background:url(../img/nav/arrow_yellow.png) no-repeat;
	display:block;
	width:20px;
	height:20px;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.sponsors-right
{ 
	background-position: 0 0px; 
	clear:right; 
	margin-right: 0px;
	position: relative;
	left: 10px;
	top: 35px;
}



/* left */
a.sponsors-left
{ 
	margin-left: 0px;
	background-position: 0 -20px;
	position: relative;
	left: -5px;
	top: 35px;
} 


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



/* position and dimensions of the navigator */ 
.sponsors-navi { 
    width:200px; 
    height:20px; 
} 
 
 
/* items inside navigator */ 
.sponsors-navi a { 
    width:8px; 
    height:8px; 
    float:left; 
    margin:3px; 
    background:url(../img/nav/navigator.png) 0 -16px no-repeat; 
    display:block; 
    font-size:1px; 
} 
 
/* mouseover state */ 
.sponsors-navi a:hover { 
    background-position:0 -8px;       
} 
 
/* active state (current page state) */ 
.sponsors-navi a.active { 
    background-position:0 0px;      
}