/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
}
/*--Window/Masking Styles--*/
.window {
	height:300px;
	width: 800px;
	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;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	cursor: default;
}

/*--Paging Styles--*/
.paging {
	position: absolute;
	width: auto;
	height:20px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 20px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
	background-color: #005EC4;
	background-repeat: no-repeat;
	font-family: Verdana, Geneva, sans-serif;
	right: 0px;
	top: -20px;
}
.paging a {
	color: #005EC4;
	text-decoration: none;
	cursor: default;

}
.paging a.active {
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {
}
#contenido_contactar p a {
	color: #000;
	text-decoration: none;
}

