/*
    Document   : index
    Created on : Dec 21, 2008, 8:53:53 PM
    Author     : skotdavis
    Description:
        Purpose of the stylesheet follows.
*/

/*
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/



body {
    background: black;
    color: white;
    font-size: 14px;
}

table.login {
    border: solid white 1px;
}

td.login {
    font: bold 10px;
    background: navy;
    color: white;
    left: 10px;  
}


input.login {
    background-color: #aaaaaa;
    font-weight: bold;
    width: 100;
}
input.login:focus {
    background-color: red;
    font-weight: bold;
}

input.button {
    background: darkgreen;
    color: white;
}

input.logout {
    background: red;
    color: white;
}

/*************************************
            Default LINKS
*************************************/
a:link
{
    color: yellow;
}
a:visited
{
    color: yellow;
}
a:hover
{
    color: white;
}
a:active
{
    color: yellow;
}

