@charset "utf-8";
/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
	top:17px;
	left:-19px;
}
/*--Window/Masking Styles--*/
.window {
	height:371px;	width: 966px;
	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 {
	position: absolute;
	bottom: -45px;
	right: 0px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: url(paging_bg2.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 1px 4px 1px 4px;
	text-decoration: none;
	color: #000;
}
.paging a.active {
	background: #c0c0c0;
	color:#fff;
}

