body, html {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

#main header{
	text-align: center;
	background-color: lightblue;
	font-family: courier, serif;
	display: block;
}

#main footer{
	background: lightgrey;
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	clear: both;
}

#menu{
	background-color: darkgrey;

}

#main2 {
	height: 80%;
	display: -webkit-flex;
	display: flex;
	flex-flow: row;
}

#main2 nav{
	flex: 1 6 20%;
	order: 1;
	width: 120px;
	height: 408px;
}

#main2 article{
	background: lightyellow;
	margin-left: 20px;
	flex: 1 6 80%;
	order: 2;
}


#contenedor{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.vertical{
	padding: 3px;
	border: 1px solid black;
	background-color: white;
	width: 300px;
	height: 400px;
	float: left;
}

.horizontal{
	border: 1px solid black;
	background-color: white;
	width: 500px;
	height: 406px;
	margin-left: 10px;
}

#fotoGaleria{
	width: 70px;
	height: 90px;
}

#videoGaleria{
	width: 300px;
	height: 200px;
}
#webGaleria{
	width: 500px;
	height: 353px;
}

/*Menu vertical*/
.listaVertical nav {
	width: 120px;
}

.listaVertical ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-left-color: #CCC;
	
}

.listaVertical a{
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: none;
	font-size: 0.9em;
	display: block;
	padding: 6px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	background-color: #EAEAEA;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;				
}

.listaVertical a:hover{
	color: #FFF;
	background-color: #666;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #36F;
}

