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

#slider-wrapper, #slider-wrapper-big {
	width: 480px;
	height: 330px;
	float: left;
	position: relative;
}

#slider-wrapper-center {
	width: 480px;
	height: 330px;
	background-color: #aaa;
	margin: 0 auto;
	position: relative;
}

/*--Window/Masking Styles--*/
.window {
	height:330px; /*286*/
	width: 480px; /*790*/
	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: 40px; right: -7px;
	width: 178px; height:47px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: url(../images/slider-page-bgBlue.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
}
.paging a.active {
	font-weight: bold;
	background: #0d5cb2;
	border: 1px solid #064f9f;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {font-weight: bold;}




/*--Paging Styles 480px width--*/
#slider-wrapper-big .paging {
	position: absolute;
	bottom: 30px; /*40*/
	right: -8px;
	width: 480px;
	height:47px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: url(../images/slider-page-bgBlue480.png) right center no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
#slider-wrapper-big .paging a {
	padding: 4px;
	text-decoration: none;
	color: #fff;
	font-size: 11px;
}
#slider-wrapper-big .paging a.active {
	font-weight: normal;
	background: #0d5cb2;
	border: 1px solid #064f9f;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
#slider-wrapper-big .paging a:hover {
	font-weight: normal;
	color: #b5d0f9;
}