/* Style for grid cells */
.rf-tgrid {
    
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-weight: bold;
    font-size: 12px;
    margin: 1px;
    padding: 4px 8px 4px 8px;
/*    border: 1px solid bisque;*/
    vertical-align: middle;
    text-align: center;

}

/* Style for the grid */
.rf-tablestyle {
    border: 2px solid;
    border-color: #FF6600;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;	
	-webkit-box-shadow:0 0 10px #000;
	-moz-box-shadow:0 0 10px #000;
	box-shadow:0 0 10px #000;
    background-color: #D1E0E5;
    cursor: pointer;

}

/* Style for the div containing the grid */
#rf-searchgamecontainer {
    float: left;
    margin-right: 20px; 
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;	
}

/* Style for the div containing the word list */
#rf-wordcontainer {
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 12px;
    float :left;
    padding-right: 20px; 
	margin : 0 1em 1em 0;
	
    border: 2px solid;
    border-color: #FF6600;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;	
	-webkit-box-shadow:0 0 10px #000;
	-moz-box-shadow:0 0 10px #000;
	box-shadow:0 0 10px #000;
    
	cursor: pointer;	
}

/* Style for the words that have been found */
.rf-foundword {
    font-family: Verdana,Arial,Helvetica,sans-serif;
	text-decoration : line-through;
	color : lightgray;
	font-style : italic;

}

#rf-tablegrid .rf-armed {
/*	background: lightcyan;*/
}

#rf-tablegrid .rf-highlight {
    background: greenyellow;
}


#rf-tablegrid .rf-glowing {
	background: greenyellow;
        
}

#rf-tablegrid .rf-selected {
	background: #FF6600;
}

/* style for words that didn't make it on the grid */
.rf-pfalse {
    color: gray;
    visibility: hidden; 
}

#theGrid {
	margin-left:10px;
}

#onWordSearchComplete {
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
	-webkit-box-shadow:0 0 10px #000;
	-moz-box-shadow:0 0 10px #000;
	box-shadow:0 0 10px #000;
	display:none;
	opacity:80;
	filter:alpha(opacity=80);
	-webkit-transform:translate3d(0,0,-100px);
	-moz-transform:translate3d(0,0,-100px);
	-ms-transform:translate3d(0,0,-100px);
	-o-transform:translate3d(0,0,-100px);
	transform:translate3d(0,0,-100px);
	-webkit-transition:all .3s ease-out;
	-moz-transition:all .3s ease-out;
	-o-transition:all .3s ease-out;
	transition:all .3s ease-out;
	color: white;
	background:rgba(0,0,0,.95);
	position:absolute;
	margin-top:20px;
	margin-left:20px;
	text-align:center;
	padding:15px;
	width:300px;
	z-index:1;
}
