
/* Print Style Sheet */

.print-only {
  // other style sheets should hide this class
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-align: left;
  background: white;
  color: black;
  font-size: 12pt;
}

h1 {
  font-size: 16pt;
  font-weight: bold;
  color: black;
}

#site-title {
  font-weight: bold;
  color: black;
  width: 100%;
}

#site-title h1 {
  font-size: 24pt;
  border-bottom: 2pt solid black;
  margin-bottom: 0.1em;
}

#site-title p {
  font-size: 16pt;
  margin-top: 0.1em;
}

#logo-text {
  display: none;
}

h2 {
  font-size: 14pt;
  font-weight: bold;
  color: black
}

.mini {
  font-size: 10pt;
  color: black;
}

/* 2 column code */

#left {
  display: none;
}

#right {
  display: none;  
}

#center {
  width: 90%;
  position: relative;
}

/* Links */

a {
  color: black;
  text-decoration: underline;
}

a:link {
  color: black;
  text-decoration: underline;
}

a:hover {
  color: black;
  text-decoration: underline;
}

a:active {
  color: black;
  text-decoration: underline;
}

a:visited {
  color: black;
  text-decoration: underline;
}

/* General Tag Mods */

img {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

.inline-left {
  text-align: left;
}

.inline-center {
  text-align: center;
}

.inline-right {
  text-align: right;
}

.box-center {
  margin: auto;
}

.box-right {
  float: right;
}

.box-left {
  float: left;
}

.clear-both {
  clear: both;
}

.clear {
  clear: both; /* alias */
}

