@charset "utf-8";
/* CSS Document */

/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
	overflow:hidden;
}
/*--Window/Masking Styles--*/
.window {
	height: 300px;
	width: 1000px;
	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 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#FFF;
	position:relative;
	bottom: 250px; right:-15px;
	width: 100px; height:20px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 20px;
	<!--background: url(paging_bg2.png) no-repeat;-->
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:14px;
	color:#000;
	padding: 5px;
	text-decoration: none;
	color: #000;
}
.paging a.active {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#000;
	font-weight: bold;
	background:#FFF;
}
.paging a:hover {
	font-weight: bold;
	text-decoration:none;
	color:#CCC;
}
