/*--Main Container--*/
.main_view {
	float:left;
	position:relative;

}
/*--Window/Masking Styles--*/
.window {
	height:300px;	width:960px;
	overflow:hidden; /*--Hides anything outside of the set width/height--*/
	position:relative;
	outline:none;
}
.image_reel {
	position:absolute;
	top:0; left:0;
	outline:none;
	
}
.image_reel img {float:left; border:none;}


/*--Paging Styles--*/
.paging {
	position:absolute;
	bottom:10px; right:-7px;
	width:340px; height:20px;
	z-index:100; /*--Assures the paging stays on the top layer--*/
	text-align:center;
	line-height:20px;
	background:transparent;
	display:none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	width:10px;
	padding:5px;
	font-weight:normal;
	font-size:12px;
	text-decoration:none;
	color:#fff;
	background:url(../images/flash/grey_dot.png) center no-repeat transparent;
}
.paging a.active {
	width:10px;
	font-weight:normal;
	font-size:11px;
	background:url(../images/flash/orange_dot.png) center no-repeat transparent;
}
.paging a:hover {
	width:10px;
	font-weight:normal;
	font-size:11px;
}
