
/*----------   SLIDER   ----------*/

*{outline: none;}
img {border: 0;}
.container {
	width: 939px;
	padding: 0;
	margin: 0px;
}
.folio_block {
	position: relative;
	left: 0px;
	top: 0px;
	margin:0px;
}


/*--Main Container--*/
.main_view {
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:321px;	width: 939px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.image_reel {
	position: absolute;
	top: 0; left: 0;
	z-index: 200;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 0px; 
	left: 0px;
	right: 0px;
	top: 0px;
	width: 939px; 
	height:321px;
	font-size:18px;
	z-index: 300; /*--Assures the paging stays on the top layer--*/
	text-align: left;
	line-height: 570px;
	padding-left:20px;
	background: url(../images/slides/bkg.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 3px;
	text-decoration: none;
	font-weight: bold; 
	color: #063165;
}
.paging a.active {
	color:#FFF;
	font-weight: bold; 
	background: #063165; 
	border: 1px solid #063165;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {font-weight: bold;}

