@charset "utf-8";
.titulo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: bold;
	color: #000;
}
.subtitulo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
}

.textos {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
}
.textoblanco {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFF;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 17px;
	white-space: normal;
}
.textoazul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #96BCFC;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 17px;
	white-space: normal;
}

.enlace {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BBA17C;
	padding: 8px;
	font-weight: bold;
	letter-spacing: 1px;
}


.fondo {
	background-image: url(img/fondo.jpg);
}
.fondo1 {
	background-image: url(img/fondo01.jpg);
}

body {
font-family: Arial, Helvetica, sans-serif;
  padding: 10px 10px 200px;
  font-size: 18px;
  text-align: center;
  background: #E3CAA1;
}

body {
 font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FFF;
	padding: 8px;
	font-weight: bold;
}

body {
 font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FFF;
	padding: 8px;
	font-weight: bold;
}

ul {
  text-align: left;
  display: inline;
  margin: 0;
  padding: 8px;
  list-style: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
ul li {
  font: 12px/18px sans-serif;
  display: inline-block;
  margin-right: -4px;
  position: relative;
  padding: 15px 20px;
  background: #000000;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
ul li:hover {
  background: #2E2E2E;
  color: #fff;
}
ul li ul {
  padding: 0;
  position: absolute;
  top: 48px;
  left: 0;
  width: 300px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}
ul li ul li { 
  background: #333; 
  display: block; 
  color: #fff;
  text-shadow: 0 -1px 0 #000;
}
ul li ul li:hover { background: #444; }
ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
