@charset "utf-8";

/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:244px;	width: 980px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	margin-top:10px;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 0px; right: 8px; height:40px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	display:none;
}

.paging a {
	background-image:url('../images/paginginActiveBg.png');
	width:13px;
	height:13px;
	display:block;
	font-size:14px;
	background-repeat:no-repeat;
	float:left;
	text-decoration: none;
	color: #534741;
	padding:8px 0px 0px 0px;
	margin:0 5px;
}
.paging a.active {
	font-weight: bold;
	background-image:url('../images/pagingActiveBg.png');
	background-repeat:no-repeat;
	color: #fff;
}