/* FONT */

@font-face {
    font-family: 'Megalopolis';
    src: url('../fonts/megalopolisextra-webfont.eot');
    src: url('../fonts/megalopolisextra-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/megalopolisextra-webfont.woff') format('woff'),
         url('../fonts/megalopolisextra-webfont.ttf') format('truetype'),
         url('../fonts/megalopolisextra-webfont.svg#MEgalopolisExtraRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* GENERAL */

body{
	background-color:#f2eff7;
	background-image: url(../images/cortopolis_background.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin:0;
	padding:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 16px;
	color: #333333;
}

a,
a:link,
a:visited,
a:active {
	text-decoration: none;
	color: #0488BC;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
	color: #333333;
	font-weight: bold;
}

.nota {
	color: #999999;
	font-size: 10px;
}

.text-title {
	font-family: "Megalopolis", "Arial Black", Arial, Verdana, Helvetica, sans-serif; ;
	text-align: center;
	color: #543375;
	font-size: 36px;
	line-height: 34px;
	margin-top: 15px;
	margin-bottom: 30px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.text-header {
	font-size: 12px;
	line-height: 19px;
	padding-bottom: 30px;
	border-bottom: #CCC solid 1px;
	margin-bottom: 20px;
}

.text-form {
}

.logo {
	margin-top: 20px;
}

.text-pasos {
	background-color: #f7f7f7;
	width: 400px;
	text-align: center;
	margin-left: 50px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	padding: 15px 0;
	border: #efefef 1px solid;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1) inset;
}

/* -------------- FORMULARIO -------------- */

.form-container {
	background-color: #FFFFFF;
	background-color: rgba(255,255,255,0.95);
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	margin-top: 20px;
	margin-bottom: 60px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}

.form-padding {
	padding: 20px;
}

.generos {
	padding: 5px;
}

/* LABELS DE LOS CAMPOS */
label {
	font-weight: bold;
}

/* CAMPOS Y OTROS FORMATOS GENERALES */
input,
textarea,
select {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 5px;
	border: #D9D9D9 solid 1px; 
	padding: 3px;
	vertical-align: middle;
	color: #444444;
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 12px;
	font-style: normal;
	width: 350px;
}

textarea {
	line-height: 16px;
}

input {
	height: 20px;
}

select {
	height: 25px;
	width: 360px;
}

/* CAMPOS OBLIGATORIOS */
input.required,
textarea.required,
select.required {
	border: #FF0000 solid 1px;
}

/* CAMPOS QUE PASAN LA VERIFICACION */
input.validation-passed, 
select.validation-passed,
textarea.validation-passed {
	border: 1px solid #33CC00;
	color : #444444;
}

/* CAMPOS QUE NO PASAN LA VERIFICACION */
input.validation-failed,
select.validation-failed,
textarea.validation-failed {
	border: 1px solid #FF0000;
	color : #FF0000;
}

/* BOTON */
input.sendbutton {
	color: #FFF;
	height: 50px;
	width: 300px;
	font-family: "Megalopolis", "Arial Black", Arial, Verdana, Helvetica, sans-serif; ;
	font-size: 16px;
	background-color: #543476; 
	border: 1px solid #5f348d;
	box-shadow: 0 -20px 20px rgba(0,0,0,0.2) inset, 0 2px 2px rgba(0,0,0,0.2);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.2);
	cursor: pointer;
}

input.sendbutton:hover {
	background-color: #743ab1;
	border: 1px solid #543476; 
}

/* MENSAJE DE ERROR */
.validation-advice {
	background-image: url(../images/cortopolis_error.png);
	background-position: top left;
	background-repeat:no-repeat;
	margin-top: 5px;
	padding-top: 11px;
	padding-left: 30px;
	width: 252px;
	height: 34px;
	color: #FFFFFF;
}

/* REEMPLAZO DE CHECKS Y RADIOS */
label.checkbox_checked {
	background: url(../images/tick.gif);
	background-repeat: no-repeat;
	background-position: left;
	display: block;
	font-weight: normal;
	vertical-align: middle;
	margin: 2px;
	padding: 3px;
	padding-left: 22px;
}

label.checkbox_unchecked  {
	background-image: url(../images/cross.gif);
	background-repeat: no-repeat;
	background-position: left;
	display: block;
	font-weight: normal;
	vertical-align: middle;
	margin: 2px;
	padding: 3px;	
	padding-left: 22px;
}

label.radio_checked {
	background: #fff url(../images/bullet_green.png) no-repeat;	
	display: block;
	padding-left: 20px;
	font-weight: normal;
}

label.radio_unchecked  {
	background: #fff url(../images/bullet_white.png) no-repeat;	
	display: block;
	padding-left: 20px;
	font-weight: normal;
}

label.highlighted {
	border: 1px solid #333;
}

#generos label:hover{
	background-color:#F9F9F9;
}

.crirHidden {
	position: absolute;
	left: -1000px;
}