/* container for slides */
.images {
	position: relative;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:436px;
}

	.images div img {
		float: left;
		margin-left: 10px;
		margin-top: 10px;
	}
			
	.images div span {
		float: left;
		width: 417px;
		color: #FFF;
		font-family: Helvetica, Arial, sans-serif;
		margin-left: 20px;
	}
	
		.images div span h1 {
			font-size: 48px;
			font-weight: bold;
		}
		
		.images div span p {
			font-size: 24px;
		}
			

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin: 440px 0 0 670px;
}

/* single tab */
.tabs a {
	width:16px;
	height:16px;
	float:left;
	margin:3px;
	display:block;
	background-image: url(imagenes/tab-off.png);
}

/* mouseover state */
.tabs a:hover {
	background-image: url(imagenes/tab-on.png);
}

/* active state (current page state) */
.tabs a.current {
	background-image: url(imagenes/tab-on.png);
} 	

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}