@charset "utf-8";
/* CSS Document */
/**
* Wordfind.js 0.0.1
* (c) 2012 Bill, BunKat LLC.
* Wordfind is freely distributable under the MIT license.
* For all details and documentation:
*     http://github.com/bunkat/wordfind
*/

p {
  font: 22pt sans-serif;
 /* margin: 20px 20px 0px 20px;*/
}


/**
* Styles for the puzzle
*/
#juego {
  border: 1px solid black;
  padding: 20px;
  /*float: left;*/
  margin: 30px 20px; /*30px 20px*/
}

#juego div {
  width: 100%;
  margin: 0 auto;
}

/* style for each square in the puzzle */
#juego .puzzleSquare {
  height: 30px;
  width: 30px;
  text-transform: uppercase;
  background-color: white;
  border: 0;
  font: 1em sans-serif;
}

button::-moz-focus-inner {
  border: 0;
}

/* indicates when a square has been selected */
#juego .selected {
  background-color: lightgray;
}

/* indicates that the square is part of a word that has been found */ 
#juego .found {
  background-color: forestgreen;
  color: white;
}

#juego .solved {
  background-color: #195A43;
  color: white;
}

/* indicates that all words have been found */
#juego .complete {
  background-color: green;
}

/**
* Styles for the word list
*/
#Palabras {
  padding-top: 70px;
  /*-moz-column-count: 2;*/
  -moz-column-gap: 70px;
  /*-webkit-column-count: 2;*/
  -webkit-column-gap: 70px;
  /*column-count: 2;*/
  column-gap: 20px;
  width: 300px;
}

#Palabras ul {
  list-style-type: none;
}

#Palabras li {
  padding: 3px 0;
  font: 1em sans-serif;
}

/* indicates that the word has been found */
#Palabras .wordFound {
  text-decoration: line-through;
  color: gray;
}

/**
* Styles for the button
*/
#solve {
	background-color: #195a43;
	color: white;
	width: 100px;
	height: 40px;
  	margin: 0 30px;
}

#recarga {
	background-color: #195a43;
	color: white;
	width: 100px;
	height: 40px;
  	margin: 0 30px;
}

