/*CONTENIDO WEB*/
.formulario
{
	position:relative;
	float:left;
	width:100%;
	margin:20px 0;
	display:flex;
	align-items:center;
	justify-content: center;
}
.formulario form
{
	margin:0 auto;
}
.formulario form select
{
	background-color: rgba(194,161,178,0.2);
   	color:#666;
   	border:#666 solid 1px;
   	float:left;
   	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:1.2em;
	line-height: 150%;
	padding:2px 0 2px 0;
	margin:0 10px 0 10px;
	text-align:left;
}
.formulario form input
{
	background-color: #def;
	border-color: rgba(194,161,178,1);
	margin-top:6px;
}
.formulario form label
{
	margin-top:6px;
	margin-left:5px;
}
section {
	position:relative;
	float:left;
	width:100%;
	padding:0;
	margin:3% 0;
	z-index:96;
	overflow:hidden;
}
article {
	position:relative;
	float:left;
	width:750px;
	padding:15px;
	margin-left:calc((100% - 800px) / 2);
	margin-right:calc((100% - 800px) / 2);
	margin-bottom:10px;
	border: rgba(194,161,178,1);
	border-style:solid;
	border-width:1px;
	border-radius:1px;
	-webkit-box-shadow: inset 0px 0px 7px 3px rgba(204,204,204,1);
    -moz-box-shadow: inset 0px 0px 7px 3px rgba(204,204,204,1);
    box-shadow: inset 0px 0px 7px 3px rgba(204,204,204,1);
}
article h1{
	position:relative;
	float:left;
	width:100%;
	margin-bottom:10px;
	text-align:center;
	font-size:1.5em;
	letter-spacing: 1px;
	font-weight: bold;
}
article span{
	position:relative;
	float:left;
	width:100%;
	text-align:right;
	font-size:1em;
	letter-spacing: 1px;
}
article p{
	position:relative;
	float:left;
	width:100%;
	text-align:justify;
	font-size:1em;
}
article a{
	/*position:relative;
	float:left;*/
	width:100%;
	text-align:left;
	font-size:1.1em;
	color: rgba(0,0,0,1);
	text-decoration:none;
}
article a:hover{
	color:rgba(194,161,178,1);
}
article p img{
	position:relative;
	float:right;
	max-width:30%;
	max-height:200px;
	margin:0 10px;
}
@media screen and (max-width:800px ) {
article {
	width:calc(100% - 40px);
	margin-left:0;
	margin-right:0;
}
}