/* CSS Document */

// Previous background: black, text: darkgreen

body {
    font-family: Helvetica;/* was sans-serif */
    background-color: white;
}

/* Cursors reference: http://www.w3schools.com/cssref/pr_class_cursor.asp */
body.homepage {
    /*cursor:crosshair;*/
}

h1 {
    color: black;
    font-family: Helvetica;
}

h2,h3 {
    font-family: Helvetica;
}

#welcome a, a:link, a:visited {
    text-decoration: none;
    color: black
}
#welcome a:hover, a:focus {
    text-decoration: none;
    color: black;
    cursor: text;
}

hr {
    width: 70%;
}
  
a, a:link, a:visited {
    font-family: Helvetica;
    text-decoration: none;
    color: blue;
}

a:hover, a:focus {
    font-family: Helvetica;
    text-decoration: underline;
    color: blue;
}

p {
    font-family: Helvetica;
    color: black;
}

pre {
    font-family: Helvetica;
    color: black;
    /* wrap text: http://stackoverflow.com/questions/248011/how-do-i-wrap-text-in-a-pre-tag */
    white-space: pre-wrap;       /* CSS 3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

table {
    font-family: Helvetica;
    color: black;
}

#linkbar a:link {
    margin-right: 2em;
}

