/* red color: #EA0B0B */

/*
body{
	font-family: Comic Sans MS, Calibri, Arial, Helvetica, Sans-Serif;
	height: 100%;
	width: 100%;
    margin: 0;
    padding: 0;
    line-height: 16px;
    font-size: 14px;
	color: #000000;
	background-color: #BBBBBB;
    -webkit-font-smoothing: antialiased;
}
a{
	text-decoration: none;

}
span{

}
ul{
	list-style: none;
}
.clearBoth{
    clear: both;
    display: block;
}
.floatL{
    float: left!important;
}
.floatR{
    float: right!important;
}
.full-width{
    width: 100%!important;
    max-width: 100%!important;
}
*/
input:focus,
select:focus{
    outline:none;
}

/*
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
*/

/* ******************** Loader ******************** */
.loader{
    background: url("../images/circle-silver-loader.gif") no-repeat center;
    width: 24px;
    height: 24px;

    position: absolute;
    top: 50%;
    left: 50%;
}

/* ******************** Sudoku Table ******************** */
.sudoku-tbl, .block{
    border: 1px solid #000;
    border-collapse: collapse;
    border-spacing: 0;
}
.sudoku-tbl td, .block td{
    padding: 0;
    margin: 0;
}
.block td{
    border: 1px solid #000;
    width: 35px;
    height: 35px;
}
.block input{
    display: block;
    text-align: center;
    border: 0px;
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 35px;
}
.block td.number-on-load input{
    background: #0B0;
}
.block td.same-val-marker input{
    background: #FF0;
}
.block td.illegal-val-marker input{
    background: #FF2525;
}