.container {
	width: 790px;
	padding: 0;
	margin: 0 auto;
}


/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:195px;
	width: 950px;
	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 {
	width: 200px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: right;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	position: absolute;
	background-color: transparent;
	bottom: 2px;
	height: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin: 0px;
	right: 5px;
	line-height: 20px;
}


.paging    a {
	text-decoration: none;
	color: #CCCCCC;
	font-weight: bold;
	background-repeat: repeat-x;
	background-color: #FFFFFF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	font-size: 8px;
}
.paging a.active {
	font-weight: bold;
	background-color: #86AA12;
	color: #FFFFFF;
}
.paging a:hover {
	background-color: #028DB4;
	color: #FFFFFF;
}
