
/* used http://www.humboldt.edu/~jpv1/styles/main.css for inspiration,
 *    then backpedaled from that to simplify it;
 * ...and using examples adapted from
 *    http://www.csstutorial.net/css_tutorial_part1.php
 * ...as well, in trying to get this operational!
 *
 * modified by: Sharon M. Tuttle, st10@humboldt.edu
 * last modified: 1-08-11 - added .right class to right-justify
 *                          numeric columns in scrip table; also
 *                          added a little padding to table for
 *                          better readability
 *                9-23-09 - trying to add table border here...
 *                3-16-09 - continuing to tweak in response to School
 *                          Board comments, and to make it look better
 *                3-14-09 - problem was Humboldt1 server sending
 *                          wrong MIME type for the .css file!!
 *                          now just trying to address School Board
 *                          comments, make look better
 *                3-13-09 - since it still didn't work in Mac OS X
 *                          Firefox even with validated CSS, trying
 *                          adding in a little CSS at a time
 *                3-12-09 - fixing errors found while attempting to
 *                          validate page's CSS
 *                5-27-08
 */

/********************* LAYOUT DIVS ***********************/

.right
{
    text-align: right;
    padding: 5px;
}

body 
{
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1em;
    color: #333333;
    background-image: url('../images/SM-post-anniversary-banner.jpg');
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
    /*background-color: #FFFFC0;*/
    /*background-position: 6cm 0.3cm;*/
}

p 
{
    width: 80%;
}

li 
{
    list-style-type: disc;
    line-height: 150%;
}

h1 
{
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 2em;
    font-weight: bold;
    /*color: #000000;*/
    color: rgb(0, 0, 200);
}

h2 
{
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1.5em;
    font-weight: bold;
    /*color: #000000;*/
    color: rgb(0, 0, 200);
}

td
{
    border-style: double;
    padding: 5px;
}

/**************** Pseudo classes ****************/

a:link 
{
    color: #0066CB;
    text-decoration: underline;
    font-weight: bold;
}

li:link 
{
    color: #0066CB;
    /*text-decoration: none;*/
    text-decoration: underline;
    font-weight: bold;
}

a:visited 
{
    color: #47268A;
    text-decoration: underline;
    font-weight: bold;
}

li a:visited 
{
    color: #47268A;
    /*text-decoration: none;*/
    text-decoration: underline;
    font-weight: bold;
}

a:hover 
{
    color: #000000;
    font-weight: bold;
}

li a:hover 
{
/*    display: block;*/  /* removed because caused text after
                            to jump to next line when hovering --
			    weird! 04-14-10 */
    color: #000000;
    font-weight: bold;
}

a:active 
{
    color: rgb(255, 0, 102);
    font-weight: bold;
}

table.double
{
    border-style: double;

}

tr.double
{
    border-style: double;
}

/************************* ID's *************************/

#navigation 
{
    float: left;
    width: 220px;
    /*height: 600px;*/
    margin: 0;
    margin-top: 0px;
    /*border-right: 2px solid #000000;*/
    font-weight: normal;
}

#centerDoc 
{
    /*position: absolute;*/
    padding: 0px 10px 10px 20px; /*top right bottom left*/
    border-left: 2px solid #000000;
    margin-top: 180px;
    margin-left: 235px;
} 

#contact 
{
  width: 1200px;
  /*margin: 0 auto 10em;*/
  text-align: center;
}

/**** classes? ***/
.sublist
{
    font-size: 0.75em
}

