html {
	background-color: #FFF;
	height: 100%
	}


body {
	background-color:Black;
	width: 1000px;
	margin: 18px auto;
	border: 1px solid #000;
	padding: 18px;
	}

/* START Main Structural boxes */

header {
	background-color:#000;
	background-repeat: no-repeat;
	background-image: url(../img/banner.jpg); /* background image is on top of the background color */
	padding: 0px; /* a single value means all four sides are the same */
	height: 373px;
	position: relative; /* permits child elements to be placed absolutely */
	}

#time{
	color: #FFF;
	float: right;
}
		
#logo {
	/*float: right;*/
	position: absolute; 
	bottom: 0;
	right: 0;
	}

.container{
	overflow: hidden;
}	

/* Start Navigation Menu */

.nav_box{
overflow: hidden;
}

nav{
	height: 50px;
	background-color:#FFF;
	position: relative;
	margin: 0 0 18px 0;
	text-align:center;
	
}

ul.menu {
	list-style-type: none;  
	padding: 6px; 
	height: 36px; 
	line-height: 36px; 
	border: 1px solid #333; 
	margin: 12px auto 0 auto;
	background-color:#FFF;
	position: absolute; /* placed at the bottom of the header, which is position: relative; */
	bottom: 0;
	width: 99%;
	}

a:link {text-decoration: underline;}

ul.menu > li {display: inline;}

 /* END Navigation Menu  */

aside { /* this is the sidebar */
	float: left;  /* floats break the text flow */
	width: 182px;
	margin: 0 18px 72px 0;
	border: 1px solid #F60;
	padding: 8px;
	background-color: silver;
}
	
/* Start Checker Board */ 	
.content { 
	background-color: #F0F8FF;
	border: 1px inset blue;
	margin-left:218px;
	text-align:center;
	padding:10px;
}

.rules{
	background-color: white;
	border: 1px inset blue;
	margin-left:218px;
	text-align:left;
	padding:10px;
	line-height: 25px;
}

.users{
	width: 100%;
}
.username{
	width: 150px;
	padding: 10px 0;
}
.new_user{
	background-color: #F0F8FF;
	border: 1px inset blue;
	margin-left:218px;
	text-align:left;
	padding:10px;
}
.label{
	width: 150px
}
.label_error{
	visibility: hidden;
	color: red;
}


.board{
	margin: 0 auto;
}
	
.board_row {
	height: 50px;
}

.square_white{
	background-color: white;
	width: 50px;
	
}

.square_black{
	background-color: black;
	width: 50px;
}
 
/* END Checker Board */ 

footer {
	border: 2px solid #090;
	background-color:#CCC;
	margin: 12px 0;
	padding-left: 8px;
	height: 48px;
	line-height: 48px;
	text-align: left;
	}
.footer_links{
	float: right;
	margin-right: 8px;
}

/* END Main Structural boxes */

h1 {
	margin: 0; 
	color: Purple; 
	font-size:100px;
	/*text-shadow:2px 2px 8px #000000; *//* A CSS 3 drop shadow effect for text */ 
	position:relative; /* repositions the text relative to where it would normally be by default in the text flow */
	top: 24px;
	left: 24px;
	}

