@charset "UTF-8";
/* CSS Document */
html{
	font-family: 'Open Sans', sans-serif;
	line-height: 1.8em;
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
	font-size:15px;
}
p{
	line-height: 1.3em;	
}
body{
    /*border-radius: 8px;
    -moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	padding: 10px 10px 30px 30px;
	border: 1px solid #adaa9f;
    box-shadow: 0 2px 2px #9c9c9c;
    -moz-box-shadow: 0 2px 2px #9c9c9c;
	-webkit-box-shadow: 0 2px 2px #9c9c9c;*/
	margin:20px;
	height: 100%;
	color:#5a5a5a;
}
h1{
	font-weight: bold;
	font-size: 18px;
	color: #e1a587;
	text-align: left;
	margin-top:0;
}
h2{
	font-weight: bold;
	font-size: 12px;
	color: #999;
	margin-bottom: 0;
}
.incorrecto{
	border:1px solid #F00;
	color:#600;
	background-color: transparent;
	background-image: url(tache.png);
	background-repeat: no-repeat;
	background-position: right;
}
.correcto{
	border:1px solid #0C0;
	color:#030;
	background-color: transparent;
	background-image: url(palomita.png);
	background-repeat: no-repeat;
	background-position: right;
}
/*----BOTONES----*/
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    height: 40px;
    text-align: center;
    font-size: 15px;
    /*font-weight: 800;*/
    margin-top: 4px;
    margin-left: 0px;
    margin-right: 10px;	
    padding: 10px;
    clear: none;
    color: rgba(255, 255, 255, 1);	
	background-color: #FF757C;
    border-radius: 7px;
    /*border-width: 2px;*/
    border:solid 2px #FF757C;
	/*border-color: #666;*/
}
button:hover,
html input:hover[type="button"], /* 1 */
input:hover[type="reset"],
input:hover[type="submit"] {
    color: #FF757C;
	background-color: rgba(255, 255, 255, 1);
	border-color: #FF757C;	
	transition: color 500ms ease, background-color 500ms ease;
	-webkit-transition: color 500ms ease, background-color 500ms ease;
	font-weight:bold;
}
#calificar,#btnReiniciar {
	margin-left: 20px;
}
@media (max-width: 480px) {
    html{
        margin:0;
        padding: 0;
    }
    body{
        padding: 0;
        border: none;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        margin:0.5em;
    }
    ol{
        padding-left:1.5em;
    }
}

/* estilo de dibujos */
.dibujo {
	max-width:150px;	
	
}
.dibujo img {
	width:100%;
	border: solid 1px #FF757C;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-o-border-radius:5px;
}