* {
	margin:0; /* Borra los margenes que vienen por defecto con el navegador*/
	padding:0;
	font-family: helvetica;
}
 
body {
	background:"#F2F2F2";
}

header {
	width: 100%;
	height:60px;
	}

nav {
	width:100%;
	max-width:100%;
	background:url(img/vherfondito1.png);
	background-attachment: contain;
	background-repeat: no-repeat;
	margin:0px 35px auto; /* 20 px arriba y abajo MENU*/
	}


nav ul {
	list-style:none;

	}
nav > ul {
	display:table;  /*todos se muestres en tamaño similar y en cajas */
	overflow:hidden;
	width: 100%px;
	border-color:#999;
	position:relative; /* sirve para menu desplegable */
	} 
nav > ul li {
	display:table-cell; /*Se displaya a lo largo como celdas*/
		}	

/*SUBMENU*/
nav > ul > li:hover > ul {
	display:block;
	height:8%;
	}
	
nav > ul > li > ul {
	display:block;
	position:fixed; /*Nos permite tener un menu desplegable*/
	background:#000;
	left:0px;
	right:0px;
	overflow:hidden;
	height:0%; /*con el 0% el submenu no tiene espacio para mostrarse*/	
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
	}



nav > ul li a {
	color:#222222;
	display:block; /*Podemos cambiar el ancho y largo a nuestro elemento a*/
	line-height: 20px;
	padding:18px; /* Espacio a todos los lados */
	position:relative;
	text-align:center;
	font-family: helvetica;
	font-weight:normal;
	font-size:13px;
	text-decoration:none; /*Quitamos el subrayado*/
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;	
	
	}	
nav > ul > li > ul > li a:hover {
	background:#5da5a2;
	}

nav > ul > li > a span {
	background:#174459;
	display:block;
	height:100%;
	width:100%;
	left:0px;
	position:absolute;
	top:-54px;
-webkit-transition: all .3s ease;
-moz-transition: all .3s ease;
-ms-transition: all .3s ease;
-o-transition: all .3s ease;
transition: all .3s ease;
	}
nav > ul > li > a span .icon {
	display:block;
	line-height:60px;
	}
nav > ul > li > a:hover > span {
	top:0px;
	}

/*COLORES*/
nav ul li a .primero {
	background:url(img/menu1.png);
	}
nav ul li a .segundo {
	background:url(img/menu2.png);
	}
nav ul li a .tercero {
	background:url(img/menu3.png);
	}	
nav ul li a .cuarto {
	background:url(img/menu4.png);
	}
nav ul li a .quinto {
	background:url(img/menu5.png);
	}
nav ul li a .sexto {
	background:url(img/menu6.png);
	}
	
	 
.main {
	width:100%;
	max-width:1000px;
	margin:0px auto; /* 20 px arriba y abajo */
}
 
.slides {
	width:100%;
}
 
.slides img {
	width:100%;
	height:557px;
}
 
.slidesjs-pagination {
	background:url(img/vherfondito.png);
	list-style:none;
	overflow:hidden;
	margin-top:0px;
}
 
.slidesjs-pagination li {
	float:left;
}
 
.slidesjs-pagination li a {
	display:block;
	padding:10px 20px;
	color:#fff;
	text-decoration:none;
}
 
.slidesjs-pagination li a:hover {
	background:#030;
}
 
.slides .active {
	background:#006600;
}
 
.slidesjs-navigation{
	background:url(img/vherfondito.png);
	color:#fff;
	text-decoration:none;
	display:inline-block;
	padding:11px 20px;
	float:right;
}


.txtmatter p {
	font-family: Verdana;
	font-size: 12px;
	line-height: 18px;
	padding-left: 10px;
	text-align: justify;
	padding-right: 20px;
	padding-top: 2px;
	color: #666666;
}