body {
  background-color: #FFFFFF;
  margin: 40px;
  padding: 0;
}

.scrollTop {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: -1;
  background-image: url('SnowTop.png');
  background-repeat: no-repeat;
}

.scrollPage {
  position: relative;
  text-align: center;
}

.pageCenter {
  text-align:center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
  background: rgba(255,255,255,0.8);
  box-shadow: 3px 3px 4px 2px rgba(0,0,0,0.5);
}

.pageTitle {
  text-align: center;
  padding-bottom: 40px;
  color: #222;
  text-shadow: 0px 2px 3px #555555;
  font: 32px Tahoma, Helvetica, Arial, Sans-Serif;
}

.textHeader {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 10px;
  color: #111;
  font: 28px Tahoma, Helvetica, Arial, Sans-Serif;
}

.textHeader a:link {
  color: #111;
  text-decoration: none;
}

.textHeader a:visited {
  color: #111;
  text-decoration: none;
}

.textHeader a:hover {
  color: #111;
  text-decoration: underline;
}

.textHeader a:active {
  color: #111;
  text-decoration: underline;
}

.fps {
  padding-left: 20px;
  padding-bottom: 10px;
  text-align: left;
  color: #111;
  font: 14px Tahoma, Helvetica, Arial, Sans-Serif;
}

.textPar {
  padding-left: 20px;
  padding-bottom: 10px;
  text-align: left;
  color: #111;
  font: 14px Tahoma, Helvetica, Arial, Sans-Serif;
}

.normalPar {
  display: inline;
}

.boldPar {
  font-weight: bold;
  display: inline;
}

.italicPar {
  font-style: italic;
  display: inline;
}

.codePar {
  color: #111;
  font: 14px Consolas, Sans-Serif;
  background-color: #F4F4F4;
  display: inline;
}

.linkPar:link {
  color: #111;
  text-decoration: underline;
}

.linkPar:visited {
  color: #111;
  text-decoration: underline;
}

.linkPar:hover {
  color: #11F;
  text-decoration: underline;
}

.linkPar:active {
  color: #11F;
  text-decoration: underline;
}

.codeTableScroll {
  border: 1px solid #888;
  overflow-x: auto;
  margin-left: 20px;
  margin-bottom: 10px;
  background-color: #F8F8F8;
}

.codeTable {
  border: none;
  border-collapse: collapse;
  margin: 0px;
  padding: 0px;
  color: #111;
  font: 14px Consolas, Sans-Serif;
  width: 100%;
}

.headerRow {
  padding: 0px;
  margin: 0px;
}

.headerCell {
  padding: 0px 5px 0px 5px;
  background-color: #CCC;
  margin: 0px;
}

.tableHeader {
  color: #111;
  font-weight: bold;
}

.tableHeader a:link {
  color: #111;
  text-decoration: none;
}

.tableHeader a:visited {
  color: #111;
  text-decoration: none;
}

.tableHeader a:hover {
  color: #111;
  text-decoration: underline;
}

.tableHeader a:active {
  color: #111;
  text-decoration: underline;
}

.codeTableRow {
  padding: 0px;
  margin: 0px;
}

.codeLineNums {
  text-align: right;
  padding: 0px 5px 0px 5px;
  margin: 0px;
  background-color: #DDD;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.codeLineText {
  text-align: left;
  white-space: nowrap;
  padding: 0px 5px 0px 5px;
  margin: 0px;
  width: 100%;
}

.codePart {
  padding: 0px;
  margin: 0px;
  display: inline-block;
  white-space: nowrap;
}

.codeLineCenter {
  text-align: center;
}

.codeLineLightRed {
  background-color: #F8C8C8;
}

.codeLineLightGreen {
  background-color: #C8F8C8;
}

.codeLineLight {
  background-color: #E8E8E8;
}

.codeLineRed {
  background-color: #D88;
}

.codeLineGreen {
  background-color: #8D8;
}

.pageImage {
  padding-bottom: 10px;
  display: inline-block;
}

.pageImage a:link {
  color: #111;
  text-decoration: none;
}

.pageImage a:visited {
  color: #111;
  text-decoration: none;
}

.pageImage a:hover {
  color: #111;
  text-decoration: underline;
}

.pageImage a:active {
  color: #111;
  text-decoration: underline;
}

.pageCanvas {
  min-width: 64px;
  min-height: 48px;
  max-width: 640px;
  max-height: 480px;
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 0px 0px 0px 0px;
  border: 1px solid #888;
}

.pageLargeCanvas {
  min-width: 64px;
  min-height: 48px;
  max-width: 1280px;
  max-height: 960px;
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 0px 0px 0px 0px;
  border: 1px solid #888;
}

.test-box {
  overflow: hidden;
  height: 100px;
  width: 100px;
  float: left;
  padding: 4px;
}

.test-link {
  height: 100px;
  width: 100px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.test-link:hover {
  -webkit-transition: all 5.0s ease-in;
  -moz-transition: all 5.0s ease-in;
  transition: all 5.0s ease-in;
  transform: scale(1.5);
}

.test-link a {
  overflow: hidden;
  width: auto;
  height: 100%;
}

.test-link a img {
  width: 100%;
}
