/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
	height:475px;	
	background-color:#000;
}
.main_view h1 {
	float: left;
	color:#ff0000;
	font-size:11px;
	font-weight:bold;
	font-family: Helvetica, sans-serif;
	letter-spacing:1px;
	text-transform:uppercase;
	padding-bottom:10px;
	width:600px;
}

/*--Window/Masking Styles--*/
.window {
	height:475px;	width: 714px;
	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;
	top: 2px; right: 3px;
	width: 350px; height:20px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: right;
	line-height: 11px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	font-family:'HelveticaNeueLT57CnBold';
	text-transform:uppercase;
}
.paging a {
	padding: 3px;
	padding-bottom: 0px;
	text-decoration: none;
	font-family:'HelveticaNeueLT57CnBold';
	color: #ff0000;
	font-weight: normal;
	font-size:9px;
	letter-spacing:1px;
}
.paging a.active {
	font-weight: normal;
	font-size:9px;
	color: #fff;

}
.paging a:hover {font-weight: normal;	border:none;color: #fff;

}
