/*--Main Container--*/
.slider {
	position: relative;
	margin:20px 0;
}
/*--Window/Masking Styles--*/
.window {
	width: 720px; height:352px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}
.fotos {
	position: absolute;
	top: 0; left: 0;
}
.fotos img { float: left; margin:0; border:0; }

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: -10px; right: 35px;
	width: auto; height:38px;
	padding:0 15px;
	
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: right;
	line-height: 40px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	background-image:url(../imgs/paging_bkg.png);
	text-align:center;
	
	-moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
}
.paging a {
	padding:8px 12px;
	text-decoration: none;
	font-weight:bold;
	font-size:12px;
	color:#fff;
	background: url(../imgs/paging.png) no-repeat;
}
.paging a.active { background: url(../imgs/paging_active.png) no-repeat; color:#fff; }
.paging a:hover { background: url(../imgs/paging_hover.png) no-repeat; color:#995011; }