/* My campus web page CSS                 */
/* (an experiment in-progress...)         */
/*                                        */
/* NOTE: in Spring 2014, started          */
/*     PRECEDING this with normalize.css! */

/* by: Sharon Tuttle              */
/* created:       2010-06-21      */
/* last modified: 2014-08-24 - added margin-left and margin-right to body   */
/*                             element, because normalized the text became  */
/*                             flush with the body's edges                  */
/*                             (adding padding-left and padding-right to    */
/*                             td, th elements for similar reasons)         */
/*                             ...using em in hopes more scalable for       */
/*                                different devices?                        */
/*                2015-02-16 - changed table border width from 1px to thin  */
/*                             in hopes more scalable as well...?           */

body
{
    background-color: #FFFFDC;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.centered 
{   
    text-align: center;
}

.centered table
{
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

h1, h2, th
{
    color: #006600;
}

h1
{
    font-family: verdana;
    font-size: 1.5em;
    font-weight: bold;
}

h2
{
    font-family: verdana;
    font-size: 1.0em;
    font-weight: bold;
}

table
{
    border-collapse:collapse;
}

table, th, td
{
    border: thin solid black;
}

caption
{
    font-family: verdana;
    font-weight: bold;
}

th, td
{
    text-align: center;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

th
{
    font-family: verdana;
    font-weight: bold;
}

