.escudos {
    width: 90%;
    position: relative;
    top: 20px;
    left: 5%;
	background: green; /* For browsers that do not support gradients */
	background: -webkit-linear-gradient(green, white); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(green, white); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(green, white); /* For Firefox 3.6 to 15 */
	background: linear-gradient(green, white); /* Standard syntax */
	border-radius: 25px;
	padding: 10px;
}
.bloque {
    width: 50%;
    display: inline-block;
}
.columnas{
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
}
.instr {
    width: 80%;
    position: relative;
    left: 10%;
    background-color: #ffffff;
    text-align: left;
    font-weight: bold;
}
.preg {
    width: 80%;
    position: relative;
    left: 10%;
    background-color: #f2edd7;
    text-align: left;
    padding: 10px;
}
.centro {
    text-align: center;
}
.etiq {
    font-size: 80%;
}
.enviar {
    width: 80%;
    position: relative;
    left: 10%;
    background-color: #ffffff;
    text-align: left;
}