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

        /* allows buttons */
        float: left;

	/* required settings */
	height:57px;
	margin-bottom: 15px;
	overflow:hidden;
	position:relative;
	width: 378px;

	/* custom decorations
	border:1px solid #ccc;
	background:url(/img/global/gradient/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.
*/
#week_scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
#week_scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:15px;
	height:51px;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.scroll_right		{ background: url(/images/events/rightarrow.png);}
/* hover/active feedback 
a.scroll_right:hover 		{ background-position:-15px -15px; }
a.scroll_right:active 	{ background-position:-30px -15px; } */


/* left */
a.scroll_left		{ background: url(/images/events/leftarrow.png);}
/* hover/active feedback 
a.scroll_left:hover  		{ background-position:-15px 0; }
a.scroll_left:active  	{ background-position:-30px 0; } */

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

