/*
 * jqPuzzle - Sliding Puzzles with jQuery
 * Default CSS theme
 * 
 * Copyright (c) 2008 Ralf Stoltze, http://www.2meter3.de/jqPuzzle/
 * Dual-licensed under the MIT and GPL licenses.
 *
 * Note that some CSS properties are set by the jqPuzzle script itself to make 
 * sure that the puzzle works properly. These properties will overwrite 
 * user-defined properties.
 * 
 * The class 'jqp-solved' is added to the outermost element when a puzzle is 
 * solved by the user. Use '.jqPuzzle.jqp-solved' to define different styles
 * for solved puzzles.
 */
/* outermost element which holds the full puzzle interface */
*{
	margin: 0px;
	padding: 0px;
	font-family: 'Quicksand', sans-serif;
				font-size: 12px;
				color: #666666;
				text-decoration: none;
}
body{
	background-image: url(../images/fondo.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
    font-size: 2px !important;
}

img.logo-head {
    width: 20%;
    margin: 0 auto;
	display: block;
	position: relative;
	top: 25%;
	margin-top: -32px;
	
}
.content-head{
	background: #767B4D;
	height: 162px;
}
.jqPuzzle {
	position: relative;
	margin: 5% auto;
	padding: 10px;
	border: 1px solid #222222;
	background-color: rgba(0,0,0,0.8);
	font-family: 'Quicksand', sans-serif;
	width: 265px;
    height: 265px;
    text-align: left;
    overflow: hidden;
    display: block;
}

/* only needed if external css rules set defaults for divs,
   this rule only resets the most common properties */
.jqPuzzle div {
	background-color: transparent;	
	border-style: none;
}

/* div wrapper which holds the puzzle pieces and the solution image */
.jqPuzzle .jqp-wrapper {
	padding: 2px;
	border: 1px solid #FFFFFF;
	background-color: #444455;
}

/* a single puzzle piece */
.jqPuzzle .jqp-piece {
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-size: 36px;
}

.jqPuzzle .jqp-piece:hover {
	border-style: dashed;
}

.jqPuzzle.jqp-solved .jqp-piece:hover {
	border-style: solid;
}

/* the controls area which holds the buttons and the display */
.jqPuzzle .jqp-controls {
	margin: 0 auto;
    display: table;
}

/* a button */
.jqPuzzle .jqp-controls a {
	font-family: 'Quicksand', sans-serif;
    padding: 5px;
    background-color: #767B4D;
    color: #FFFFFF;
    font-size: 14px;
    line-height: normal;
    float: left;
    display: inherit;
    margin: auto;
    width: 29%;
    text-align: center;
    position: relative;
    margin-left: 70px;
    margin-top: 10px;
    border-radius: 5px;
}

.contendor_popup{
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    z-index: 1000px;
}

.jqPuzzle .jqp-controls a:hover {
	background-color: #989e68;
}

/* toggle/down state for buttons */
/*.jqPuzzle .jqp-controls a.jqp-toggle, 
.jqPuzzle .jqp-controls a.jqp-down {
	padding-left: 4px;
	padding-right: 6px;
	border-style: inset;
	background-color: #333333;
}
*/
/* disabled state for buttons */
.jqPuzzle .jqp-controls a.jqp-disabled {
	background-color: rgba(224, 224, 224, 0.3);
	color: #FFFFFF;
}

/* the area which holds the moves/seconds display */
.jqPuzzle .jqp-controls span {
	font-family: 'Quicksand', sans-serif;
	margin-top: 8px;
	padding: 10px 4px;
	padding-left: 10px;
	border: none;
	background-color: transparent;
	color: #ffffff;
	font-size: 14px;
	margin: 0 auto;
    display: table;
		
}

/* disabled state for the display (non-shuffled puzzle) */
.jqPuzzle .jqp-controls span.jqp-disabled {
	color: #ffffff;
	margin: 0 auto;
    display: table;
}

/* solved state for the display (non-shuffled puzzle) */
.jqPuzzle.jqp-solved .jqp-controls span {
	padding: 1px 3px;
    border: 1px dotted #92b003;
    background-color: #676767;
    color: #ffffff;
}

/* a text field for the moves/seconds display */
.jqPuzzle .jqp-controls span input {
	margin: 0px 3px;
	padding: 3px;
	padding-bottom: 2px;
	border-style: none;
	background-color: #FFFFFF;
	color: #666666;
	font-weight: bold;
	text-align: center;
}

/* disabled state for the text fields */
.jqPuzzle .jqp-controls span.jqp-disabled input {
	background-color: #EEEEFF;
	color: #AAAAAA;
}

/* solved state for the text fields */
.jqPuzzle.jqp-solved .jqp-controls span input {
	background-color: #92b003;
    color: #444444;
}


/*Popup*/

.content-body{
	display: table;
    position: relative;
    margin: 50px auto;
}

.botones{
	display: table;
    position: relative;
    margin: 0px auto;
}

.btn{
	font-family: 'Quicksand', sans-serif;
    padding: 7px;
    background-color: #767B4D;
    color: #FFFFFF;
    font-size: 14px;
    float: left;
    display: inherit;
    margin: auto;
    width: auto;
    text-align: center;
    position: relative;
    margin-left: 70px;
    margin-top: 10px;
    border-radius: 5px;}

    .btn:hover {
	background-color: #989e68;
	cursor: pointer;
}
