@charset "utf-8";

/* Estilos genéricos: */

body {
	font-family: 'Tangerine', serif;
	font-size: xx-large;
}

h1 {
	font-size: 1.5em;
	color: #123445;
}

h2 {
	font-size: 1.25em;
	color: blue;
}

p {
	font-size: 1em;
	color: #333333;	
}

/* Estilo para enlaces */

.fondo {
	background: #15baff;
}

/* Estilos que se aplican dentro de la caja con el esquema*/
#caja {
	margin:5px;
	border:1px solid #15baff;
	-moz-box-shadow:0 1px 1px #333333;
	-webkit-box-shadow:0 1px 1px #333333;
	box-shadow:0 1px 1px #333333;
	padding: 10px;
	background: #ffe400; /* For Safari 5.1 to 6.0 */
}

#caja header, section {
	border:1px solid #15baff;
}

#caja, section{
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}

/* Estilos del section */

section{
	background: -webkit-linear-gradient(#ffe400, #00ff08); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#ffe400, #00ff08); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#ffe400, #00ff08); /* For Firefox 3.6 to 15 */
	background: linear-gradient(#ffe400, #00ff08); /* Standard syntax */
	margin:10px 0px 10px 0px;
	padding:20px;
}