﻿/* Elements */

html, body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 78%;
    color: #cccccc;
    background: #000000;
}

table {
    font-size: 1em;
}

h1 {
    font-size: 2.0em;
    margin-top: 0em;
    margin-bottom: 0em;
    font-weight: bold;
}

h2 {
    font-size: 1.8em;
    margin: 1.2em 0em 1.2em 0em;
    font-weight: bold;
}

h3 {
    font-size: 1.6em;
    margin: 1.2em 0em 1.2em 0em;
    font-weight: bold;
}

h4 {
    font-size: 1.4em;
    margin: 1.2em 0em 1.2em 0em;
    font-weight: bold;
}

h5 {
    font-size: 1.0em;
    margin: 1.2em 0em 1.2em 0em;
    font-weight: bold;
}

h6 {
    font-size: 0.8em;
    margin: 1.2em 0em 1.2em 0em;
    font-weight: bold;
}

ol, ul, li {
    font-size: 1.0em;
    line-height: 1.2em;
    margin-top: 0.2em;
    margin-bottom: 0.1em;
}

p {
    font-size: 1.2em;
    margin: 1.2em 0em 1.2em 0em;
}

li > p {
    margin-top: 0.2em;
}

pre {
    font-family: monospace;
    font-size: 1.0em;
}

strong, b {
    font-weight: bold;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: #cccccc;
}

a:link {
    text-decoration: none;
    color: #cccccc;
}

a:visited {
    text-decoration: none;
    color: #cccccc;
}

a:hover {
    text-decoration: underline;
    color: #cccccc;
}

a:active {
    text-decoration: none;
    color: #cccccc;
}

label {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    font-size: 1.0em;
    font-weight: bold;
}

input {
    font-family: Verdana, Arial, Helvetica, Sans-Serif;
    font-size: 1.0em;
    line-height: 1.0em;
    font-weight: normal;
}

cite {
    font-family: Arial, Sans-Serif;
    font-size: 0.7em;
    font-weight: bold;
}

/* Classes */

.allcaps {
    text-transform: uppercase;
}

.fcgiblue {
    color: #1a5dbb;
    font-family: Verdana, Arial, sans-serif;
}
.nav {
    color: #cccccc;
    font-family: Verdana, Arial, sans-serif;
}

/* Identifiers */

/* Menu */
.mattblacktabs {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid black; /*bottom horizontal line that runs beneath tabs*/
}

.mattblacktabs ul {
    margin: 0;
    padding: 0;
    padding-left: 10px; /*offset of tabs relative to browser left edge*/
    font: bold 12px Verdana;
    list-style-type: none;
}

.mattblacktabs li {
    display: inline;
    margin: 0;
}

.mattblacktabs li a {
    float: left;
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 7px 8px; /*padding inside each tab*/
/*    border-right: 1px solid white; */
/*    border-bottom: 1px solid white; */
    color: white;
    background: black; /*background of tabs (default state)*/
}

.mattblacktabs li a:visited {
    color: white;
}

.mattblacktabs li a:hover, .mattblacktabs li.selected a {
    background: #414141; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}

