/* Style sheet for the whole website */


/* General settings */
* {border: none; text-align: justify;}

/* Specify width, background and default font size. 
   Margins are auto so that page is centered if screen is larger than page */
body {background-color: white; width: 975px;
      font-size: 12pt;
      margin: 0 auto 0 auto;}
p {padding-left: 15px;  /* indent paragraph */
   padding-bottom: 10px}  /* leave some space between paragraphs */
a {text-decoration: underline;
   color: blue;
   cursor: pointer;}  /* otherwise the cursor does not change to the typical hand (as it does for normal links) */

/* Bold */
em.bold {font-weight: bold;
         border: none;} 

/* Headers */
h1 {font-size: 28px;}
h2 {font-size: 22px;}

/* Tables */
table * {border: 1pt solid black;}
table {border: 2pt solid black;
       margin-left: auto; margin-right: auto;}   /* Center table */

/* Lists */
dt {font-size: 22px; font-weight: bold;}   /* title of description list */
li {margin-top: .5em;
    margin-bottom: .5em;}






/* Header */
.header {position: relative; top: 0px;
         z-index: 20;}


/* Navigation bar */
.navigation {position: relative; top: -60px;
             width: 190px; height: 1px; overflow: visible; 
             z-index: 10;
             /*background-image: url("images/navigation.gif");*/}
.navigation a {text-decoration: none}
.buttontext {font-size: 20px; font-weight: bold; color: white;}


/* Content */
.content {position: relative; top: 0px; left: 190px;
          width: 750px;
          min-height: 500px;
          }


/* Footer */
.footer {position: relative; top: 0px;
         width: 724px; height: 40px;
         border-top: solid 3px rgb(1,167,190);
         padding-top: 5px; padding-left: 100px;
         margin-left: 100px;}


