/*--Main Container--*/
.main_view {
	float: right;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:261px;	width: 740px;
	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:none;width:740px;height:261px;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 2px; right: 0px;
	width: 99%; height:27px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: right;
	padding-right:10px;
	line-height: 27px;
	/*background: url(paging_bg2.png) no-repeat #444;*/
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
	background: #920000;
}
.paging a.active {
	font-weight: bold;
	background: #520000;
	border: 0px solid #eee;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {font-weight: bold;}