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

.main_view {
	float: left;
	position: relative;
}

.window {
	width: 1000px;
	height:395px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}

.image_reel {
	position: absolute;
	top: -1px;
	left: 0;
}

.image_reel img {float: left;}

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

.paging a {
	text-decoration: none;
	display:inline-block;
	background: url(/images/dot_grey.png) 0 0 no-repeat;
	height: 10px;
	width: 10px;
	padding: 0;
	margin: 0px;
}

.paging a.active {
	background: url(/images/dot_blue.png) 0 0 no-repeat;
}

.paging a:hover {
	background: url(/images/dot_blue.png) 0 0 no-repeat;
}