/* screen.css */

body               { font-family: Verdana, Helvetica, Arial, sans-serif;
                     font-size: small;
                     margin-top: 1.5em;
                     margin-right: 12%;
                     margin-bottom: 1.5em;
                     margin-left: 12%;
                     background: blue;
                     color: black;
                   }

h1                 { font-family: Georgia, Times, serif;
                     font-size: 200%;
                     color: navy;
                   }
h2                 { font-family: Georgia, Times, serif;
                     font-size: large;
                     color: navy;
                   }
h3, h4, h5, h6     { font-family: Georgia, Times, serif; }

a:link             { color: black; text-decoration: underline; }
a:visited          { color: black; text-decoration: underline; }
a:hover            { color: red;   text-decoration: underline; }
a:active           { color: black; text-decoration: underline; }

table              { font-size: small; }

#sidebar           { margin: 0;
                     padding: 0;
                     border: 1px solid black;
                     color: white;
                     background-color: navy;
                     width: 9%;
                     position: absolute;
                     top: 1em;
                     left: .5em;
                   }

#sidebar h3        { text-align: center; }
#sidebar a         { text-align: center;
                     display: block;
                     margin: 1px;
                     padding: 0;
                     border: 1px solid black;
                   }
#sidebar a:link    { color: white; text-decoration: none; }
#sidebar a:visited { color: white; text-decoration: none; }

#header            {
                     border: 1px solid black;
                     background: white;
                     color: black;
                     text-align: center;
                   }
#tagline p         { font-style: italic; }
#body              { border: 1px solid black;
                     padding: 1em;
                     background: white;
                     color: black;
                   }
#body h1           { font-size: 150%; }

#left              { background: white; float: left; }

#right             { background: white; float: right; }

#footer            { text-align: center;
                     background: white;
		     color: black;
                   }
