﻿:link /* unvisited links */
    { 
        background: transparent; 
        color: blue; 
    }

:visited /*visited links*/
    { 
        background: transparent; 
        color: purple; 
    }

:link:hover, :visited:hover, :link:active, :visited:active /* active links */
      { 
        background: transparent; 
        color: red;
    } 

body /*main text settings*/ 
{
    background-color: transparent;
    font-family: 'Times New Roman', Times, serif;
    font-size: 15px;
    color: black;
}

p img /*image settings*/
{ 
    float: right; /*auto-float to the right of the page*/ 
}

h1 /*heading type 1 properties*/
{
    font-family: 'Times New Roman', Times, serif;
    font-size: 250%;
	margin: 0;
	padding: 15px;
    /*border-bottom: medium solid blue; /*this sets up the line beneath the headers*/
	text-align: center;
	color: white;
	background-color: #333/*#003399*/

}

h2 /*heading type 2 properties*/
{
    font-family: 'Times New Roman', Times, serif;
    font-size: 200%;
}

h3 /*heading type 3 properties*/
{
    font-family: 'Times New Roman', Times, serif;
    font-size: 150%;
}

table /*table properties*/
{
    border: 1px solid black;
    border-collapse: collapse;
    width: 100%;
}

th /*table header cell properties*/
{
    border: 1pt solid black;
    border-collapse: collapse;
    padding: 15px;
    height: 30px;
    font-size: 110%;
}

td /*table cell properties*/
{
    border: 1pt solid black;
    border-collapse: collapse;
    padding: 15px;
    height: 30px;
    text-align: center;
}

.footer /*footer settings*/
{
    border-top: thin solid black;
    font-size: smaller; 
    font-style: italic;
}

dt /*dictonary title-term settings*/
{
    margin-top: 0.5em;
    font-weight: bold; 
    display: run-in;
    background: transparent; 
    color: blue /*#006600;*/
}

/*dd changes the dictonary definition settings*/

h1#h1alt /*alternative to header 1, designed to just draw a line between sections*/
{
    font-family: 'Times New Roman', Times, serif;
    font-size: 250%;
    border-bottom: thick solid blue; /*this sets up the line beneath the headers*/
}

h3#h3UL /*underlined version of header 3, no bottom border */
{
    font-family: 'Times New Roman', Times, serif;
    font-size: 150%;
	border-bottom: solid blue; /*this sets up the line beneath the headers*/
} 

/*navigation bar settings*/
ul#navigation 
{
	list-style-type: none;
	font-weight: bold;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
}

li#navigation
{
	float: left;
}

li#navigation a
{
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

li#navigation a:hover
{
	background-color: red
}

/*end of navigation bar settings*/