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

/*--Main Container--*/
.main_view {
	float:left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:345px;	width: 1020px;
	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 {
	position: absolute;
	bottom: 0px; right: 40px;
	width: 1020px; height:39px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: right;
	line-height: 30px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}

.paging a {
	padding-right:20px;
	text-decoration: none;
	color: #fff;
	background-image:url(../slider/unselected.png);
	background-repeat:no-repeat;
}
.paging a.active {
	font-weight: bold;
	color:#000;
	border: 1px solid #666;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-image:url(../slider/selected.png);
	background-repeat:no-repeat;
}
.paging a:hover {
	font-weight: bold;
	background-image:url(../slider/hover.png);
	background-repeat:no-repeat;
}
