.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:380px;	width: 965px;
	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; border:0;}

/*--Paging Styles--*/
.paging {

	position: absolute;
	bottom: 12px; right: 0px;
	width: 216px; height:68px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 28px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding-top:4px;
	padding-right:6px;
	padding-bottom:4px;
	padding-left:6px;
	text-decoration: none;
	color: #fff;
	background:#333;
}
.paging a.active {
	font-weight: bold;
	background: #999999;
}
.paging a:hover {font-weight: bold;}