/*** BUTTONS ***/
.restart_button,
.next_button,
.ins_button{
	position: absolute;
	z-index: 5;
}
.restart_button,
.next_button{
	background-repeat: no-repeat;
	background-position: center;
}
.restart_button{	
	background-image: url('../img/Juego/SB_L_G10_U02_L03_reiniciar.png');
	width:235px;
	height: 50px;
	right: 56px;
	top: 18px; 
}
.next_button{
	background-image: url('../img/Juego/SB_L_G10_U02_L03_siguiente.png');
	width: 317px;
	height: 52px;
	right: 20px;
	top: 73px;
}
.ins_button{
	right: 20px;
	top: 132px;
}
.next_button.disabled{
	opacity: 0.5;
	filter: alpha(opacity=50);
}
/*** BUTTONS ***/

/*** DRAW ***/
.drawing_box{
	position: absolute;
	top: 0px;
	left: 0px;
}
.drawing_box img.head,
.drawing_box img.body,
.drawing_box img.right_arm,
.drawing_box img.left_arm,
.drawing_box img.right_leg,
.drawing_box img.left_leg,
.drawing_box img.winner,
.drawing_box img.hangman{
	position: absolute;
  	left: 363px;
  	top: 14px;
}
/*** DRAW ***/

/*** GUESSING BOX ***/ 
.guessing_box{
	width: 1235px;
	height: 74px;
	background: white;
	border: 1px solid #666666;
	position: absolute;
	bottom: 136px;
	left: 5px;
	text-align: center;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 15px 7px;
}
.guessing_box .word{
	display: block;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}
.guessing_box .word .letter{
	display: inline-block;
	font-size: 2em;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: lowercase;
	margin-right: 4px;
	color: transparent;
	background-color: #ccffcc;
	border: 1px solid #99cc99;
	width: 40px;
	height: 40px;
	text-align: center;
}
.guessing_box .word .letter.guessed{
	color: black;
}
.guessing_box .word .letter.wrong{
	background-color: #ff9966;
	border: 1px solid #dd512c;
	color: black;
}
.guessing_box .word .space{
	margin-left: 22px;
	display: inline-block;
}
/*** GUESSING BOX ***/ 

/*** KEYBOARD ***/
.keyboard{
	width: 829px;
	height: 90px;
	display: block;
	position: absolute;
	bottom: 39px;
	right: 186px;
	text-align: center;
}
.keyboard .letter{
	display: inline-block;
  	background: #ffaf50;
  	border: 1px solid #965b1a;
  	margin-left: 4px;
	font-size: 2.8em;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: lowercase;
  	margin-bottom: 7px;
  	cursor: pointer;
  	width: 55px;
  	height: 55px;
  	text-align: center;
}
.keyboard.disabled{
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.keyboard.disabled .letter{
	cursor: default;
}
.keyboard .letter.disabled{
	opacity: 0.5;
	filter: alpha(opacity=50);
	background-color: #dddddd;
	border: 1px solid #7f7f7f;
}
.keyboard .letter[data-sg-key='M']{
	margin-right: 17px;
}
/*** KEYBOARD ***/

/*** POPUP ***/
.popup{
	width: 1133px;
	height: 667px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('../img/SB_L_G10_U02_L03_resumen.png');
}
.popup .title, .popup .subtitle, .popup .info, .popup .ins{
	position: absolute;
}
.popup .title{
	font-size: 2.44em;
	font-style: italic;
	font-weight: bold;
	top: 8px;
	left: 75px;
}
.popup .subtitle{
	font-size: 2.25em;
	font-style: italic;
	font-weight: bold;
	top: 14px;
	right: 94px;
}
.popup .info{
	font-size: 2.88em;
	top: 79px;
	left: 76px;
	text-align: center;
	width: 433px;
	line-height: 1em;
}
.popup .ins{
	font-size: 2.31em;
	width: 583px;
	right: 12px;
	line-height: 1em;
}
.popup .ins.ins1{
	text-align: center;
	top: 121px;
}
.popup .ins.ins2{
	padding-left: 80px;
	padding-right: 33px;
	top: 238px;
}
.popup .ins.ins3{
	padding-left: 80px;
	padding-right: 30px;
	bottom: 62px
}
.popup .icon_close_button{
	position: absolute;
	right: -18px;
	top: 10px;
}
/*** POPUP ***/

/*** MESSAGES ***/
.message {
	font-size: 4.5em;
	font-style: italic;
	font-weight: bold;
	position: absolute;
	z-index: 10;
	color: #fbab7b;
	top: 168px;
}
.message.winner{
	left: 19px;
}
.message.hangman{
	left: 19px;
	width: 400px;
}
.message.finished{
	left: 400px;
}
/*** MESSAGES ***/