/* CSS for sudoku */

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

br{
	line-height: 5px;
}

#puzzle_info{
	margin: 0 auto;
	text-align: center;
	padding: 10px 0 10px 0;
	font-size: 8pt;
	font-weight: bold;
}

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

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

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

a{
	text-decoration: none;
	font-size: 8pt;
	font-weight: bold;
}

a:link{
	text-decoration: none;
}

tr.s
{
  height: 20px;
}

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

td.s
{
	width: 20px;
	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: 9pt;
	text-align: center;
	color: Blue;
	width: 20px;
	text-decoration: none;
	background-color: transparent;
	font-weight: bold;
	font-family: Arial;
}

.btnlink{
	font-family: Arial;
	font-size: 8pt;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: ActiveCaption;
}


