/**
 * Standard CSS file for Logahawk website.
 *
 * FYI to anyone reading this -- I'm a total CSS neophyte, if you see me doing
 * something stupid feel free to let me know!
 */
body {
  font-family: sans-serif;
  text-indent: 25px;
  width: 100%;
}

table.content {
    border-style: none;
    width: 100%;
}

/**
 * .menu - The menu on the left of every page
 * .divider - The main horizontal dividing text headers in the body of the pages.
 * .subdivider - Similar to .divider but for sub-divisions within .divider sections.
 */
.menu, .divider, .subdivider {
  color: #c7ebf4;
  background-color: #1c4a99;
  border-top-color: #123166;;
  border-left-color: #123166;
  border-bottom-color: #2462cc;
  border-right-color: #2462cc;
  border-width: 3px;
  border-style: outset;
  font-weight: bold;
  padding: 3px;
}

.divider, .divider table tr {
  width: 100%;
}

.menu {
  color: #c7ebf4;
}

/** Style for links in the menu */
.menu a {
  text-decoration: none
}

.menu a:link {
  color: #c7ebf4;
}

.menu a:hover {
  color: #FFFFFF;
}

.menu a:visited {
  color: #8C8984;
}

.menu a:active {
  color: #FFFFFF;
}

.subdivider {
  /* Inverted from .divider */
  color: #1c4a99;
  background-color: #c7ebf4;
  border-width: 1px;
  border-style: none;
}

.title {
  color: #1c4a99;
}


