@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #666;
	margin: 0;
	padding: 0;
	color: #000;
	border:medium;
	border-bottom-color:#000;
	padding-top: 20px;

}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
quote{

	font-style:italic;
	font-size:13px;
	line-height:normal;
	
}
a img {
	border: none;
}

a:link {
	color: #000;
}
a:visited {
	color: #6E6C64;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;

}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 790px;
	padding: 5px 5px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background: #fff;
	font:Verdana, Geneva, sans-serif;
}
.content {

	width: 790px;
	float:inherit;
	padding-bottom:5px ;
	padding-top:5px;
}
.table{
	
}

#levelone
{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:36px;
border-collapse: collapse;
background-color:#ffffff;
color:#000000;
border-color:#000;
border-style:solid;
border-width:2px;
margin-top: 10px;

}
.leveloneleft
{

background-color:#000;
}

.smallt{
	font-size:32px;
}

.leveloneright
{
padding-top:2px;
padding-bottom:2px;
padding-left:5px;
}


#leveltwo
{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
border-collapse: collapse;
background-color:#ffffff;
color:#000000;
border-color:#000;
border-style:solid;
border-width:2px;
margin-top: 10px;

}
.leveltwoleft
{
width:41px;
background-color:#000;
}

.leveltworight
{
padding-top:2px;
padding-bottom:2px;
padding-left:5px;

}

.leveltwopicture
{
width:749px;
padding-top:0px;
padding-bottom:0px;
padding-left:0px;
background-color:#000;
float:right;
}

.leveltwopictures
{
padding-top:4px;
padding-bottom:4px;
padding-left:5px;
background-color:#fff;
    max-width: 80px;

}

.leveltwovideo
{
padding-left:3px;
padding-right:1px;
padding-bottom: 3px;
background-color:#fff;
}

.leveltwopicdescription
{
padding-top:1px;
padding-bottom:1px;
padding-left:4px;
background-color:#fff;
}

#gamelist{
margin-top:15px;
}

#gamelist td {
background-color:#eee;
border:1px solid #000;
}
a#link {
display:block;
width:100%;
height:100%;
font-family:verdana,arial,helvetica,sans-serif;
font-size:13px;
color:#000;
text-decoration:none;
}
a#link #span1 {
display:block;
}
a#link:hover {
background-color:#666;
color:#ccc;
}

#centeredmenu li{
	display:inline;
	}

#centeredmenu {
   float:inherit;
   width:790px;
   background:#fff;
   border-bottom:4px solid #000;
   overflow:hidden;
   list-style:none;
   
}
#centeredmenu ul {
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   text-align:center;
}

#centeredmenu ul li {
   
   float:inherit;
   list-style:none;
   margin:0;
   padding:0;
   /*position:relative;*/
}
   
#centeredmenu ul li a {
   display:inline;
   margin:0 2px 0px 0px;
   padding:3px 10px;
   background:#ddd;
   color:#000;
   text-decoration:none;
   line-height:1.3em;

}
#centeredmenu ul li a:hover {
   background:#369;
   color:#fff;
}
#centeredmenu ul li a.active,
#centeredmenu ul li a.active:hover {
   color:#fff;
   background:#000;
}

#leftmenu {
   float:right;
   width:180px;
   background:#fff;
   
   overflow:hidden;
   
}
#leftmenu ul {
   float:right;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   text-align:center;
}

#leftmenu ul li {
   
   float:inherit;
   list-style:none;
   margin:0;
   padding:0;
   /*position:relative;*/
}

#leftmenu ul li a {
   display:inline;
   margin:0 0px 0px 2px;
   /*padding:3px 10px;*/
   background:#ddd;
   color:#000;
   text-decoration:none;
   line-height:1.3em;
}



/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #CCC49F;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both;
	font-size:12px; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}