
/* Style for grid cells */
.rf-tgrid {
    font-weight: bold;
    font-size: 16px;
    margin: 1px;
    padding: 10px;
    vertical-align: middle;
    text-align: center;

}

/* Style for the grid */
.rf-tablestyle {   
    position: absolute;
    top: 0px;
    left: 50%;
    background-color: #DFE4F2;
    cursor: pointer;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    -khtml-border-radius: 13px;
    border-radius: 13px;    
    padding:7px;
}

/* Style for the div containing the grid */
#rf-searchgamecontainer {
    position: relative;
    display: table-cell;
    vertical-align: top;
}

/* Style for the div containing the word list */
#rf-wordcontainer {
    display: table-cell;
    vertical-align: top;
    position: relative;
    margin : 0px;
    padding-right: 5px;
    
	overflow-y: auto;
	overflow-x: hidden;
}
#rf-wordcontainer ul {
    width:100%;
    margin:0;
    padding:0;
}

#rf-wordcontainer ul li:nth-child(1){   border-radius: 10px 10px 0px 0px;   }
#rf-wordcontainer ul li:nth-last-child(1){   border-radius: 0px 0px 10px 10px;   }

li.rf-ptrue{
    padding: 3px 10px;
    list-style: none;
    width:100%;
    background-color: #cfeaff;
    line-height: 35px;
    margin-bottom: 3px;
}
li.rf-ptrue:not(.noClic):not(.wellDone):not(.malDone):hover{
    color:#ffffff;
    background-color:#a9d6f9;
    cursor: pointer;
    
}


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

}

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

#rf-tablegrid .rf-highlight {
    background: red;
    color: white;
}


#rf-tablegrid .rf-glowing {
    background: #fecb00;
    color: white;
}

#rf-tablegrid .rf-selected {
    background: green; /*#63baff;*/
    color: white;
}

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

