/* CSS for sudoku */

body
{
	background: white;
	color: black;
	padding: 0;
	margin: 0 auto;
	width: 800px;
	font: medium Arial;
	font-size: 10pt;
	font-weight: normal;
}

#d_body
{
		text-align: center;
}

#header{
  background: white;
  padding-right: 10px;
  padding-left: 10px;
  color: black;
  height: 90px;
  margin: 0;
  text-align: center;
}

#footer{
	background: transparent;
	margin: 0 auto;
	text-align: center;
	padding-top: 15px;
}

#sudoku{
	margin: 0 auto;
	text-align: center;
}

#cpr{
	margin: 0 auto;
	text-align: center;
	padding-top: 20px;
	font-family: Arial;
	font-size: 10pt;
}

/*
#levels{
	display: inline;	
	float: right;
}
*/

#left_menu{
	float: left;
	width: 162px;
	margin-top: 10px;
}



h1{
	font-size: 12pt;
	font-weight: bold;	
}

a{
	text-decoration: none;
}

a:link{
	text-decoration: none;
}

p.s
{
  font-size: 14pt;
  text-align: center;
}

tr.s
{
  height: 40px;
}

table.s
{
	table-layout: fixed;
	text-align: center;
	vertical-align: middle;
	font-size: 16pt;
	border-style: solid;
	border-width: 3px;
	border-color: #949090;
	border-collapse: collapse;
	margin: 0 auto;
}

td.s
{
	width: 40px;
	border-top: 1px solid #949090;
	border-right: 1px solid #949090;
	text-align: center;
	margin: 0 auto;
}

td.thickright
{
  border-right: 2px solid #949090;
}

td.thicktop
{
  border-top: 2px solid #949090;
}

td.solution
{
  color: red;
}

input
{
	border: none;
	border-style: none none none none;
	font-size: 18pt;
	text-align: center;
	color: Blue;
	font: medium Arial, Helvetica, sans-serif;
	width: 30px;
	text-decoration: none;
	background-color: transparent;
	font-weight: bold;
}

.btns{
	background-color: #E2E2E2;
	font-family: Arial;
	font-size: 12pt;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
}


#sitemaplink{
	text-decoration: none;
	font-size: 8pt;
	color: gray;
}

#result_popup{
		display: none;
        position: absolute;
        top: 180px;
        left: 25%;
        width: 50%;
        height: 120px;
        padding: 16px;
        border: 5px solid red;
        background-color: white;
        z-index:1002;
        overflow: auto;
}

#timer_div{
	float: left;
	margin-left: 16px;
	text-align: center;
	font-size: 20px;
}

.srow
{
    display: table;
    width: 100%; /*Optional*/
    table-layout: fixed; /*Optional*/
    border-spacing: 10px; /*Optional*/
}
