/*

Dark Red - #8A2026
Montco Red - #B72B34
Dark grey - #333333
Medium grey - #555555
Body - #CCC
White - #FBFBFB

*/

body {
    background-color: #CCC;
    margin-left: 20px;
    font-family: Helvetica, Arial, sans-serif;
    color: #111;
}

.main {
    margin: 100px 30px 60px 50px;
    padding: 0px 10px;
}

/*Text*/
h1 {
    text-align: center;
}

h3 {
    color: #8A2026;
}

q {
    font-family: serif;
}

/*Links*/
a {
    text-decoration: none;
    color: #8A2026;
}

a:hover {
    color: #B72B34;
}

a:active {
    text-decoration: underline;
}

/*Tables*/
table, th, td {
    padding: 5px;
}

th {
    color: #FBFBFB;
    background-color: #B72B34;
}

td {
    overflow: hidden;
}

td a {
    display: block;
    margin: -10em;
    padding: 10em;
}

td.highlight:hover {
    background-color: #DDD;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: right;
    font-size: 8pt;
    background-image: linear-gradient(#444, #333333);
    color: #FBFBFB;
}

footer a {
    float: left;
    margin: 7px;
}

footer button {
    color: #FBFBFB;
    padding: 7px 10px;
    background-color: rgba(0,0,0,0);
    border: none; 
    border-radius: 3px;
    font-size: 1.5em;
    transition: background-color 0.2s;
}

footer button:hover {
    background-color: rgba(255,255,255,0.2);
    transition: background-color 0.2s;
}

/* Wiki */

div#wikiLinks {
    position: fixed;
    left: 1em;
    top: 100px;
}

div#wikiLinks a {
    display: block;
    padding: 10px;
    background-color: #B72B34;
    color: #FBFBFB;
}

div#wikiLinks a:hover {
    background-color: #A72A30;
}

div#wikiContent {
    padding-left: 60px;
}

div#wikiContent li {
    list-style: none;
    margin-bottom: 2px;
}

img.wikiImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}

a.wikiViewButton {
    background-color: #999999; 
    padding: 10pt; 
    margin-left: 20%;
    transition: background-color 0.1s;
}

a.wikiViewButton:hover {
    background-color: #AAAAAA;
}