@charset "utf-8";
/* CSS Document */

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width:890px;
	height:120px;
	margin:0 auto;

	/* custom decorations */
	border:1px solid #DDD;
	background:url(../images/sponsor_box.jpg) 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;
}

.scrollable .items div {
	float:left;
	width:140px;
	height:120px;
	padding:2px 5px;
}

.scrollable .items a { 
	border:1px solid #FFF;
	margin:0;
	padding:0;
}
.scrollable .items a:hover {
	opacity:0.4;
	filter:alpha(opacity=40);
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:15px 10px 10px 10px;
	background-color:#fff;
	padding:2px;	
	width:100px;
	height:75px;
	/*border:1px solid #ccc;	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;*/
}

/* active item */
.scrollable .active {
	/*opacity:0.6;
	filter:alpha(opacity=60);
	border:1px solid #CCC;*/
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	z-index:9999;
	position:relative;
}




/*****************************************************************************************************
** BUTTONS
*************************************************************************************************** */


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/sponsor_btns.jpg) no-repeat;
	display:block;
	width:18px;
	height:122px;
	float:left;
	margin:0;

	font-size:1px;
}

/* right */
a.right 				{ background-position:-54px 0; clear:right; margin:0;}
a.right:hover 		{ background-position:-36px 0; }
a.right:active 	{ background-position:-36px 0; } 


/* left */
a.left				{ margin:0; } 
a.left:hover  		{ background-position:-18px 0; }
a.left:active  	{ background-position:-18px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../images/icons/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	/*visibility:hidden !important;*/
	visibility:visible;		
} 	





