/* Created by Willem Frankenhuis */
/* Updated on January 2, 2010 */


/* Notes 
- To give more spacing between lines: line-height: 150%
- Add some space between list items: li {margin-bottom: 1em}
- Colors used
	- Blue #193252
	- Light grey #C0C0C0
	- Olive #524C18
	- Tan #9E812F 
*/


/* Sets the background color for the screen */
body {background-color: #193252}


/* The section for content*/
div.content
{
background-color: white;
padding:0.5em;
margin-left: auto;
margin-right: auto;
width: 620px;
margin-top: 50px
}


/* The footer for the updated date */
div.footer
{
padding:0.5em;
background-color:#524C18;
clear:left;
font-family: Times New Roman, serif;
color:#9E812F;
}


/* The main text */
p
{
color: black;
font-family: Times New Roman, serif;
font-size: 80%;
margin-left: 10%;
margin-right: 10%;
}


/* An emphasis - only used to tel, email, url */
em
{
font-style: normal;
font-family: times;
font-size: 80%;
color: #193252;
font-variant: small-caps;
}


/* lists */
ul
{
color: black;
font-family: Times New Roman, serif;
font-size: 80%;
margin-left: 10%;
margin-right: 10%;
}


/* This sets up another list item, for lists where I want a space between items */
li.long {margin-bottom: 1em}


/* text for tables */
td
{
color: black;
font-family: Times New Roman, serif;
font-size: 80%;
margin-left: 10%;
margin-right: 10%;
}


/* header */
h1
{
color: #193252;
font-family: times;
font-size: 120%;
font-variant: small-caps;
margin-left: 10%;
margin-right: 10%;
}

/*CHANGE HYPERLINKS ONLY AFTER HAVING CHANGED EVERYTHING ELSE
/* Links */
/* To remove the underlines, add text-decoration: none */
a:link     {color:#8A0808; text-decoration: none}
a:visited  {color:#2666C5; text-decoration: none}
a:hover    {color:#9E812F; text-decoration: underline}
a:active   {color:#9E812F; text-decoration: underline}
