/*
 * Styles for the maze page
 *
 * Copyright 2010 - Michael Sinz
 */

@import url(frame/style.css);

html, body
{
  width: 100%;
  height: 100%;
	color: black;
}

div, span, body, html, td, tr, table
{
  border: 0px;
  margin: 0px;
  padding: 0px;
}

a, a:visited
{
  color: navy;
  text-decoration: none;
}

a:hover, a:active
{
  color: blue;
  text-decoration: underline;
}

#pagetable
{
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

#content
{
  background-color: white;
}

#InfoDisplay
{
  display: none;
  position: absolute;
  border: 8px solid white;
  margin: 8px;
  padding: 0px;
  top: 0px;
  left: 0px;
}

#InfoDisplay table
{
  background-color: yellow;
  border: 4px solid black;
  margin: 0px;
  padding: 6px;
}

#Browser
{
  font-size: 85%;
  font-weight: normal;
}

#MazeWidth, #MazeHeight, #MazeSize
{
  font-weight: bold;
}

#MazeHeight
{
  padding-right: 1em;
}

#InJavaScript, #InJavaScriptPerf, #InBrowser, #InBrowserPerf, #TotalTime, #TotalTimePerf, #TilesPerSecond, #Steps
{
  text-align: right;
}

#InJavaScriptPerf, #InBrowserPerf, #TotalTimePerf, #Steps
{
  padding-left: 1em;
}

#OtherStyles
{
  font-size: 85%;
}

#OtherStyles a, #OtherStyles a:visited, #OtherStyles a:hover, #OtherStyles a:active
{
  font-weight: bold;
}

td.link
{
  font-size: 110%;
  font-weight: bold;
  padding-right: 0.5em;
}

td.quicklink
{
  font-size: 70%;
  text-align: center;
  padding-left: 2em;
}

.Row, .FloatRow, .FastFloatRow
{
  line-height: 0px;  /* We don't want the row to be influenced by line height */
}

/* The no-table form uses this row type */
.Row
{
}

.Row div
{
  display: inline-block;
}

/* The difference between Float and Fast Float is this one extra CSS line */
.FloatRow
{
  overflow: auto;
}

.FastFloatRow
{
  overflow: hidden;  /* This makes IE much, much faster than normal float */
}

/* The divs in the float rows are float left */
.FloatRow div, .FastFloatRow div
{
  float: left;
}

/* Floors are where you walk and walls are where you can not */
.Wall, .Floor, .BlueWall
{
  width: 6px;
  height: 6px;
  line-height: 0px;
}

.Wall
{
  background-color: black;
}

.Floor
{
  background-color: white;
}

.BlueWall
{
  background-color: blue;
}
