/*scroller styles-------------------------------------*/
.main_view {
	width:578px;
	height:287px;	
}
/*--Window/Masking Styles--*/

#windowBox {
	width:578px;
	height:287px;
	padding:6px;
	border: solid 1px #cccccc;
}
.window {
	width:578px;
	height:287px;
	overflow:hidden; /*--Hides anything outside of the set width/height--*/
	position:relative;
}
.image_reel {
	position:absolute;
	top:0;
	left:0;
}
.image_reel img {
	float:left;
}
/*--Paging Styles--*/
.paging {
	width:370px;
	height:18px;
	line-height:40px;
	margin-left:235px;
	display:none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	float:left;
	width:14px;
	height:18px;
	background:url(../img/dots.gif);
	background-position: 14px 0;
}
.paging a.active {
	background-position: 0 0;
}
.paging a:hover {
	background-position: 0 0;
}

