﻿/*  ======================================================
    base.css -- Basic styles for all parts of the web site
    
    color: #507baf, #538fde
    ======================================================
*/

/*  -------------------------------------------------------
    Link styles. Text colour is some grey-blue-violet, when
    hovered or focused it's set to yellow.
    -------------------------------------------------------
*/
a {
    color: #538fde;
    font-family: "Segoe Print", "Arial", sans-serif;
    font-size: 95%;
    text-decoration: none;
}

a:active, a:focus, a:hover {
    color: yellow;
}

/*  --------------------
*/
body {
    background-repeat: no-repeat;
    background-color: black;
    color: #538fde;
    font-family: "Trebuchet MS", "Arial", sans-serif;
    font-size: 11pt;
    letter-spacing: 0.08em;
}

/*  -----------------------------
    Shortcuts for text alignments
    -----------------------------
*/

.center { text-align: center; }
.left   { text-align: left; }
.right  { text-align: right; }

.nowrap { white-space: nowrap; }
