/**
* 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
*/


/**
* Styles for the puzzle
*/
#puzzle {
 
  padding: 20px;
	margin: 80px auto;
	background: #9ecb3b;
	width: 400px;
	border-radius: 20px;
	


}

.left_{left:1.2em}

/* style for each square in the puzzle */
#puzzle .puzzleSquare {
    height: 35px;
    width: 35px;
    text-transform: uppercase;
    background-color: white;
 
    cursor: pointer;
    font: 1em "Trebuchet MS";
    border: 1px solid #00abe8;
    
    font-weight: bold;
}


/* indicates when a square has been selected */

#puzzle .puzzleSquare:hover {
  background-color: orange;
}
#puzzle .selected {
  background-color: orange;
}

/* indicates that the square is part of a word that has been found */ 
#puzzle .found {
  background-color: green;
  color: white;
  border: 1px solid #fff !important
}

#puzzle .solved {
  background-color: purple;
  color: white;
}

/* indicates that all words have been found 
#puzzle .complete {
  background-color: green;
}*/

/**
* Styles for the word list
*/
#words {
  padding-top: 90px;
  float:left;

  width: 200px;
}

#words ul {
  list-style-type: none;
}

#words li {
  padding: 3px 0;
  font: 1em sans-serif;
}

/* indicates that the word has been found */
#words .wordFound {
  text-decoration: line-through;
  color: gray;
}

/**
* Styles for the button
*/
#solve {

border-radius: 3px;
cursor:pointer;
}






