/* ====== CSS Variables for Easy Maintenance ====== */
:root {
  --font-family-main: Verdana, Arial, SunSans-Regular, sans-serif;
  --font-family-alt: Verdana, Arial, Helvetica, sans-serif;
  --font-size-small: 0.8em;
  --font-size-base: 0.9em;
  --font-size-large: 1.2em;
  --font-size-xlarge: 1.8em;
  --color-text: #333333;
  --color-light: #e0e0e0;
  --color-light2: #e2e2e2;
  --color-dark: #484848;
  --color-border: #888888;
  --color-gray-link: #747474;
  --color-gray-dark: #444444;
  --color-gray-mid: #777777;
  --color-gray-light: #999999;
  --color-white: white;
  --color-black: black;
  --max-width: 1200px;
}

/* ====== Base Styles ====== */
body {
  font-size: var(--font-size-base);
  font-family: var(--font-family-main);
  margin: 0;
  padding-left: 50%;
  clear: both;
  position: absolute;
  background: var(--color-light) url("images/bggrad2.gif") repeat-x scroll 0% 0%;
}

a {
  text-decoration: none;
  color: var(--color-gray-link);
}

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

/* ====== Layout Containers ====== */
#container, #container1 {
  width: 700px;
  margin-left: -50%;
}

#container2 {
  width: 730px;
  margin-left: -50%;
}

/* ====== Navigation ====== */
#nav1 {
  width: 126px;
  height: 30px;
  float: left;
  background: rgba(0, 0, 0, 0) url("images/navl.jpg") no-repeat scroll 0% 0%;
}

#nav2,
#nav3,
#nav4,
#nav5 {
  width: 112px;
  height: 30px;
  float: left;
  background: rgba(0, 0, 0, 0) url("images/nav.jpg") no-repeat scroll 0% 0%;
}

#nav6 {
  width: 126px;
  height: 30px;
  float: left;
  background: rgba(0, 0, 0, 0) url("images/navr.jpg") no-repeat scroll 0% 0%;
}

.buttonText {
  text-align: center;
  padding-top: 14px;
  font-size: var(--font-size-base);
  font-weight: bold;
}

#navcontainer {
  clear: both;
  margin-top: 10px;
}

#hidden {
  clear: both;
  height: 15px;
}

/* ====== Main Content ====== */
#main {
  padding: 4px;
  width: 689px;
  text-align: justify;
  color: var(--color-text);
  line-height: 1.6em;
  background-color: var(--color-light2);
  border: 1px solid var(--color-border);
  float: left;
}

#main2 {
  padding: 4px;
  width: 720px;
  text-align: justify;
  color: var(--color-text);
  line-height: 1.6em;
  background-color: var(--color-light2);
  border: 1px solid var(--color-border);
  float: left;
}

#fpic {
  width: 689px;
  height: 200px;
  clear: both;
  background: rgba(0, 0, 0, 0) url("images/harping.gif") no-repeat scroll 0% 0%;
}

#sidebar {
  width: 197px;
  border-left: 1px solid #bbbbbb;
  float: right;
  margin-left: 9px;
  margin-top: 5px;
  padding-left: 8px;
  text-align: left;
  clear: both;
}

/* ====== Typography ====== */
h1 {
  font-size: var(--font-size-xlarge);
  font-weight: bold;
  padding-top: 5px;
}

.hideme {
  display: none;
  color: var(--color-white);
}

.headertext1 {
  font-size: var(--font-size-large);
  font-weight: bold;
}

.headertext2 {
  font-size: var(--font-size-small);
  font-weight: bold;
}

/* ====== Footer ====== */
#footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  vertical-align: middle;
  height: 20px;
  padding-top: 5px;
  clear: both;
  width: 699px;
}

#footer2 {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  vertical-align: middle;
  height: 20px;
  padding-top: 5px;
  clear: both;
  width: 730px;
}

/* ====== Sidebar Menu ====== */
#b2 {
  width: 213px;
  padding: 0;
  margin-bottom: 1em;
  font-size: var(--font-size-base);
  font-weight: normal;
  font-family: var(--font-family-main);
  color: var(--color-text);
}

#b2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
}

#b2 li {
  border-bottom: 1px solid var(--color-gray-light);
  margin: 0;
  width: auto;
}

#b2 li a {
  display: block;
  padding: 3px 0 2px 0.5em;
  border-left: 5px solid #555555;
  border-right: 5px solid #555555;
  color: var(--color-white);
  text-decoration: none;
  width: auto;
  background-color: var(--color-gray-mid);
}

#b2 li a:hover {
  border-left: 5px solid #222222;
  border-right: 5px solid #222222;
  color: var(--color-white);
  background-color: var(--color-gray-light);
  font-weight: bold;
}

.bhz {
  width: auto;
  font-family: var(--font-family-alt);
  font-size: var(--font-size-small);
  text-align: left;
  font-weight: bold;
  color: var(--color-white);
  padding-top: 3px;
  padding-bottom: 4px;
  padding-left: 4px;
  border-left: 5px solid var(--color-gray-dark);
  border-right: 5px solid var(--color-gray-dark);
  display: block;
  background-color: var(--color-gray-dark);
}

.ht1 {
  font-size: var(--font-size-small);
  font-weight: bold;
  color: var(--color-border);
  font-family: var(--font-family-alt);
  text-decoration: none;
}

.hw2 {
  font-size: var(--font-size-base);
  font-weight: bold;
  color: var(--color-gray-light);
  font-family: var(--font-family-alt);
  text-decoration: none;
}

#smenu {
  position: relative;
  width: 213px;
  height: 200px;
  background: #666666 none repeat scroll 0% 0%;
  float: right;
  clear: both;
}

/* ====== Notes and Blocks ====== */
.noteblock1 {
  background: #d0d0d0 none repeat scroll 0% 0%;
  width: 465px;
  padding: 5px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  margin: 7px 0;
}

.mod {
  margin: 5px 0 10px;
  padding: 0;
}

.push {
  margin: 7px 0;
}

.noteheader {
  width: auto;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-black);
  height: 24px;
  font-family: var(--font-family-main);
  font-size: var(--font-size-base);
  font-weight: bold;
  margin-bottom: 3px;
  text-align: left;
}

p {
  margin: 0;
  padding: 0;
}