body
{
    font-family: "Times New Roman", Times, serif;
    font-size: 12pt;
    margin-left: 20px;
}

a
{
    font-family: "Times New Roman", Times, serif;
    font-size: 16pt;
}

#background
{
    width: 100%; 
    height: 100%; 
    position: fixed; 
    left: 0px; 
    top: 0px; 
    z-index: -1; /* Ensure div tag stays behind content; -999 might work, too. */
}

.stretch
{
    width: 100%;
    height: 100%;
}

.marquee
{
    width: 100%;
    font-size: 36px;
    color: darkgreen;
    white-space: nowrap;
}

.marquee p
{
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee
{
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

