/**
 * Main style sheet for The Tuskers Institute. This containss global style
 * rules which apply across all presentations.
 */
body {
  background: #cccccc;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  margin: 0px;
  padding: 0px;
}

/* Parent of all page content. */
div#centering-container #content-container {
  background: #eeeeee;
  border: 1px solid #333333;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;;
  -khtml-border-radius: 8px;
  height: 100%;
  padding: 8px;
  width: 100%;
}

/* Base style for links. */
a:link {
  color: blue;
  text-decoration: underline;
}
a:visited {
  color: blue;
}
a:hover {
  text-decoration: none;
}
a:active {
  color: #36c99c;
  outline: none;
}
