/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scroll_events { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden;
	float:left;
   /* width: 555px; */
    width: 590px; 
    height:720px; 
} 
div.scroller {
    /* required settings */ 
    position:relative; 
    overflow:hidden;
	float:left;	
    width: 385px; 
    height:410px;
}
div.view-id-feedback.scroller {
	height:750px;
}
/* 
    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.scroll_events div.items,div.scroller div.items{ 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
/* 
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scroll_events div.items div { 
    float:left;
	width:185px;
	margin:0px 2px 0px 0px;
	overflow:visible;
} 
div.scroller div.items div{ 
    float:left;
	width:385px;
	margin:0px;
}
/* you may want to setup some decorations to active item */ 
div.scroll_events div.items div.active { 
    border:0px solid #ccc; 
    background-color:#e6f388;
	height:290px;
	overflow:visible;
}

div.prev,div.next{
	float:left;
}
div.prev a,div.next a{
	cursor:pointer;
}

/* prev, next, prevPage and nextPage buttons */
a.prev,a.next{
	display:block;
	width:30px;
	height:30px;
	background:url(jquery.fancybox/fancy_left.png) no-repeat;
	float:left;
	margin:150px 10px;
	cursor:pointer;
	font-size:0px;
}
a.events-prev,a.events-next{
	display:block;
	width:30px;
	height:30px;
	background:url(jquery.fancybox/fancy_left.png) no-repeat;
	float:left;
	margin:210px 10px 0px 0px;
	cursor:pointer;
	font-size:0px;
}
a.events-next{
	background-image:url(jquery.fancybox/fancy_right.png);
	margin:210px 0px 0px 10px;
	clear:right;	
}
/* mouseover state */
a.prev:hover, a.next:hover{
	background-position:0px 0px;		
}

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

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

/* FANCYBOX STYLES */
div#fancy_div p{
	padding:0 0 1em 0;
}