*{
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;

	font-size: 12px;
	color: #3b3b3b;
}

body{
	width: 600px;
	/*margin: auto;*/
	background-color: #ffffff;
}
.formulario{
	border: 1px solid #01184c;
	border-radius: 6px;
	padding: 45px 45px 20px;
	/*margin-top: 50px;*/
	background-color: #faf9f7;
	/*box-shadow: 0px 5px 10px #223a70, 0 0 0 10px #acbdd5 inset;*/
}

.listado{
	border: 1px solid #01184c;
	border-radius: 6px;
	padding: 0px 0px 0px 5px;
	margin-top: 20px;
	background-color: #faf9f7;
  width:600px;
	/*box-shadow: 0px 5px 10px #223a70, 0 0 0 10px #acbdd5 inset;*/
}

.concursantes{
	border: 1px solid #01184c;
	border-radius: 6px;
	padding: 0px 0px 0px 5px;
	margin-top: 8px;
	background-color: #faf9f7;
  width:1400;
	/*box-shadow: 0px 5px 10px #223a70, 0 0 0 10px #acbdd5 inset;*/
}



.formulario label{
	display: block; 
	font-weight: bold;
}
.formulario div{
	margin-bottom: 15px;
}


.formulario input[type='text'], .formulario select{
	padding: 7px 6px;
	width: 500px;z
	border: 1px solid #a8a8a8;
	resize: none;
	box-shadow:0 0 0 3px #eaeaea;
	margin: 5px 0;
}
.formulario input[type='text']:focus, .formulario select:focus{
	outline: none;
	box-shadow:0 0 0 3px #fcf2ca;
}




.formulario input[type='fecha']{
	padding: 7px 6px;
	width: 50px;
	border: 1px solid #a8a8a8;
	resize: none;
	box-shadow:0 0 0 3px #eaeaea;
	margin: 5px 0;
}

.formulario input[type='fecha']:focus{
	outline: none;
	box-shadow:0 0 0 3px #fcf2ca;
}

.formulario input[type='captcha']{
	padding: 7px 6px;
	width: 70px;
	height:27px;
	border: 1px solid #a8a8a8;
	resize: none;
	box-shadow:0 0 0 3px #eaeaea;
	margin: 5px 0;
	letter-spacing:5px; 
}
.formulario input[type='captcha']:focus{
	outline: none;
	box-shadow:0 0 0 3px #fcf2ca;
}


.formulario input[type='submit']{
	cursor:pointer;
  text-decoration: none;
  font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  left:290px;
  border: 1px solid #a8a8a8;
	background: #f5f5f5; 
	padding: 8px 16px;
  color: #3b3b3b;
	
}
.formulario input[type='submit']:hover{
	background: #e0e0e0; 
	cursor:hand;
}
.formulario input[type='submit']:active{
	background: #e0e0e0; 
}


.error{
	background-color: #BC1010;
	padding: 6px 12px;
	border-radius: 4px;
	color: white;
	font-weight: bold;
	margin-left: 16px;
	margin-top: 6px;
	position: absolute;
  /*border: 2px solid #000000;*/
}



.error:before{
	content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #BC1010;
    border-left: 8px solid transparent;
    left: -16px;
    position: absolute;
    top: 5px;
}



