header, nav, section, article, footer, aside {
	border: 2px solid rgba(100, 165, 0, 1);
	font-family: arial;
	padding: 10px;
	margin: 2px;
	margin-bottom: 0px;
	margin-top: 0px;
	background-color: rgba(255, 165, 0, 1);
}
#main > header
{
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	margin-bottom: 0px;
	border-bottom: 0px;
}
/* [element > child] selector de hijo */
#main > footer
{
	border-top: 0px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;	
	padding-top: 20px;
	padding-bottom: 0px;
	color: rgba(255, 239, 213, 1);
}
#main > header, #main > footer
{
	display: block;
	height: 3rem;
}

#cuerpo > section
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
    align-items: center;
}
#cuerpo > section
{
	background-color: rgba(255, 239, 213, 1);
}
#autor, #autorFecha
{
	margin: 0px;
	text-align: right;
	font-size: 10px;
}
#nameCurso
{
	margin: 0px;
	font-weight: bold;
	font-family: arial;
	position: absolute;
	top: 24px;
}
#nameModulo
{
	margin: 0px;
	/*text-align: center;*/
	font-size: 40px;
	color: rgba(255, 239, 213, 1);
}
#resultado
{
	background-image: url('../img/brick_2.gif');
	width: 563px;
	height: 488px;
	color: white;
	font-size: 35px;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
	
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
#resultado > div
{
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}