/**************************************
    Universal Reset
 **************************************/

* {
	margin: 0;
	padding: 0;
	border-width: 0;
}

/**************************************
    General Element Styles
 **************************************/

body {
	padding: 5px;
	font-family: sans-serif;
	font-size: 12px;
	line-height: 2em;
	color: #000;
	background-color: #EED;
}

h1 {
	padding-top: 0.5em;
	padding-bottom: 0.2em;
	font-size: 1.5em;
	font-weight: bold;
	color: #D93;
}

h2 {
	padding-top: 0.5em;
	padding-bottom: 0.2em;
	font-size: 1.2em;
	font-weight: bold;
	color: #690;
}

a {
	color: #339;
	text-decoration: none;
}

a:hover {
	color: #960;
}

div {
	overflow: hidden;  /* to fix IE6 bug */
}

/**************************************
    Site Layout Containers
 **************************************/

#wrapper {
	position: relative;
	width: 768px;
	margin: 0 auto;
	border: 1px solid #CCC;
}

#header {
	position: relative;
	width: 748px;
	height: 171px;
	padding: 10px;
	background: url(../images/banner.jpg) no-repeat left top;
}

#navigation {
	position: relative;
	width: 768px;
	background-color: #D93;
}

#content {
	position: relative;
	width: 748px;
	padding: 10px;
	background-color: #FFF;
	clear: both;
}

#footer {
	position: relative;
	width: 748px;
	padding: 10px;
	background-color: #FFF;
	text-align: right;
}

/**************************************
    Navigation Bar
 **************************************/

#navigation ul {
	list-style: none;
}

#navigation ul:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}

#navigation li {
	float: left;
}

#navigation a {
	display: block;
	margin: 5px 10px;
	padding: 0 0 0 25px;
	font-size: 20px;
	color: #000;
	background: url(../images/BlackStone.png) no-repeat left center;
}

#navigation li.current a {
	color: #FFF;
}

#navigation a:hover {
	background: url(../images/WhiteStone.png) no-repeat left center;
}

/**************************************
    Go Board
 **************************************/

#goban {
	width: 171px;
	height: 171px;
	background: url(../images/tiles.png) no-repeat -216px;  /* Hack for IE6 quick load */
}

.boardRow {
	width: 171px;
	height: 9px;
}

.boardRow div {
	width: 9px;
	height: 9px;
	float: left;
	background-image: url(../images/tiles.png);
}

.boardRow .TL {
	background-position: 0px top;
}

.boardRow .T {
	background-position: -9px top;
}

.boardRow .TR {
	background-position: -18px top;
}

.boardRow .L {
	background-position: -27px top;
}

.boardRow .NoStar {
	background-position: -36px top;
}

.boardRow .R {
	background-position: -45px top;
}

.boardRow .BL {
	background-position: -54px top;
}

.boardRow .B {
	background-position: -63px top;
}

.boardRow .BR {
	background-position: -72px top;
}

.boardRow .Star {
	background-position: -81px top;
}

.boardRow .Black {
	background-position: -90px top;
}

.boardRow .White {
	background-position: -99px top;
}

