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

/*--Main Container--*/
.main_view {
	width:950px;
	height:307px;
	float:left;
	position:relative;
}
/*--Window/Masking Styles--*/
.window {
	height:307px;	
	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;
	border:none;
}

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



.paging a {
	text-decoration: none;
	color: #222;
	margin-left:2px;
	padding:9px 12px 5px 11px;
	width:28px;
	background:url(images/sliderButton.png) no-repeat;
}
.paging a.active {
	color:#fff;
	font-weight: normal;
	/*-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;*/
	background-image:url(images/sliderButtonactive.png);
}
.paging a:hover {font-weight: normal;
	background-image:url(images/sliderButtonactive.png);
}