
/* Main container */
div.hoverscrollLarge {
	position:relative;
	border: 0px;
	background: #fff;
}


/* List container */
div.hoverscrollLarge div.listcontainer {
	overflow:hidden;
}
div.hoverscrollLarge div.fixed-listcontainer {
    overflow: hidden;
    float: left;
}

/* Actual list containing items */
div.hoverscrollLarge ul.list {
	list-style:none;
	margin:0;
	padding:0;
}

/* Items contained in the list */
div.hoverscrollLarge ul.list li.item {
	display:block;
	padding:0;
}
div.hoverscrollLarge.horizontal ul.list li.item {
	float:left;
}
div.hoverscrollLarge.horizontal.rtl ul.list li.item {
	float: right;
}



/* Arrows */
div.hoverscrollLarge div.arrow {
	position:absolute;
	float:none;
	background-color:#fff;
	background-position:center;
	background-repeat:no-repeat;
	opacity:0.8;
	filter:alpha(opacity=80);
}
div.hoverscrollLarge div.fixed-arrow {
    display: block;
    float: left;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
}

div.hoverscrollLarge div.arrow.left,
div.hoverscrollLarge div.arrow.right,
div.hoverscrollLarge div.fixed-arrow.left,
div.hoverscrollLarge div.fixed-arrow.right {
	top:0px;
	width:40px;
	height:100%;
}
div.hoverscrollLarge div.arrow.left,
div.hoverscrollLarge div.fixed-arrow.left {
	left:0px;
	background-image:url('Images/arrow-left-small.png');
}
div.hoverscrollLarge div.arrow.right,
div.hoverscrollLarge div.fixed-arrow.right {
	right:0px;
	background-image:url('Images/arrow-right-small.png');
}

div.hoverscrollLarge div.arrow.top,
div.hoverscrollLarge div.arrow.bottom,
div.hoverscrollLarge div.fixed-arrow.top,
div.hoverscrollLarge div.fixed-arrow.bottom {
	left:0px;
	width:100%;
	height:40px;
}
div.hoverscrollLarge div.arrow.top,
div.hoverscrollLarge div.fixed-arrow.top {
	top:0px;
	background-image:url('Images/arrow_up_large.gif');
	
}
div.hoverscrollLarge div.arrow.bottom,
div.hoverscrollLarge div.fixed-arrow.bottom {
	bottom:0px;
	background-image:url('Images/arrow_down_large.gif');
}

