/*--Main Container--*/
.main_view {
	position: relative;
	margin-bottom: 3px;
}
/*--Window/Masking Styles--*/
.window {
	height:338px;	width: 960px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
	margin-top: 160px;
}
.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;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #000;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.35);
	background-color: #fff;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a.active {
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.35);
	background-color: #f89c2d;
	color: #fff;
}
.paging a:hover {
	background-color: #f89c2d;
	color: #fff;
}

.slide {
	width: 960px;
	height: 338px;
	float: left;
}

.slideTxt {
	width: 264px;
	height: 298px;
	padding: 20px;
	float: left;
	background-color: #2a2a2a;
    -o-border-radius: 3px 0 0 3px;
    -icab-border-radius: 3px 0 0 3px;
    -khtml-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#272827), to(#454545));
    background: -webkit-linear-gradient(top, #454545, #272827);
    background: -moz-linear-gradient(top, #454545, #272827);
    background: -ms-linear-gradient(top, #454545, #272827);
    background: -o-linear-gradient(top, #454545, #272827);
}

.slideImg {
	float: left;
	-o-border-radius: 0 3px 3px 0;
	-icab-border-radius: 0 3px 3px 0;
	-khtml-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	-webkit-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}

.slideBigImg {
	-o-border-radius: 3px;
	-icab-border-radius: 3px;
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}