
/**
 *  File:         layout.css
 *  Description:  An external cascading style sheet used to format major HTML elements
 *                and serves as the parent CSS for entire site.
 *  Authors:      Warren Lam
 *                Justin Higa
 *  Date:         January 21, 2005
 */

body {
    background-color: #336699; /* dark blue */
}

p {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #FFFFFF; /* white */
}

h1 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: large;
    color: #FFFFFF; /* white */
}

h3 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    font-weight: bold;
    color: #FFFFFF; /* white */
}

h4 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: large;
    color: #FFFFFF; /* white */
}

h5 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #FFFFFF; /* white */
    text-align: center;
}

hr {
    height: 3px;
    background-color: #99B3CC; /* light blue */
}

table {
    border: none;
    background-color: #336699; /* dark blue */
    text-align: center;
    background-position: center;
}

td {
    vertical-align: top;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding: 8px;
    color: #FFFFFF; /* white */
}

dt {
    font-weight: bold;
}

dl {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #FFFFFF; /* white */
    text-align: left;
}

ul {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #FFFFFF; /* white */
    text-align: left;
}

/**
 * Displays black font with light blue background.
 */
.emphasis {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #000000; /* black */
    background-color: #99B3CC; /* light blue */
    font-weight: bold;
    text-align: center;
}

/**
 * Formats the text displayed in news/events fader
 */
.news {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #FFFFFF; /* white */
}

/**
 * visited links: yellow
 */
a:visited {
    color: #FFFF00;
}

/**
 * active links: purple
 */
a:active {
    color: #FF00FF;
}

/**
 * unvisited links: yellow
 */
a:link {
    color: #FFFF00;
}

/**
 * mouse over link: red
 */
a:hover {
  color: #FF0000;
}

/**
 * Container for the news/events JavaScript fader
 */
#divNewsCont {
    position: relative;
    width:150;
    background-color: #336699;
    layer-background-color: #336699;
    clip: rect(0 150 200 0);
}

/**
 * Nested in the container and displays the news/events
 * defined in news_events.js
 */
#divNewsText {
    position: relative;
    width: 150;
    background-color: #336699;
    layer-background-color: #336699;
    clip: rect(0 150 200 0);
}
