/*
newstylemain.css
main webpage style sheet
revised 10-23-2005 jwb -- added generic font family (sans-serif)
revised 11-13-2005 jwb -- added blockquote workaround (p.quote)
revised 04-14-2008 jwb -- added header, content and footer
revised 10/16/2008 jwb -- adjusted header, content and footer params
*/

#header	{
	font-family: times;
	font-size: 18px;
	margin-bottom: 5%;
	margin-top: 5%
	}

body	{
	background: white;
    color: black;
    /* margin-top: 5%; */
    margin-left: 15%;
    margin-right: 15%
    }

#content  {
	font-family: verdana, sans-serif;
    font-size: 12px;
    line-height: 14pt;			/* spacing between lines of text */
    }

p {
	font-family: verdana, sans-serif;
    font-size: 12px;
    line-height: 14px      
    }

P.quote   {
	font-style: italic;
    margin-left: 10%;
    margin-right: 10%
    }  /* added 11-13-2005 jwb -- a blockquote workaround */
        /* useage tip: <p class="quote">                                   */	    

UL        {
	font-family: verdana, sans-serif;
    font-size: 12px;
    line-height: 14pt;
    list-style: none
    }
	
.imageleft {
         padding:5px;
         margin-right:10px;
         float:left;
}

.imageright {
         margin-top:15px;
		 margin-bottom:2px;
		 margin-left:20px;
         float:right;
} 

A:link    {
	color: blue;
    background-color: white
    }
    
A:active  {
	color: green;
    background-color: white
    }
    
A:visited {
	color: red;
    background-color: white
    }

div.box   {
	border: solid; border-width: thin; padding-left: 2em; padding-top: 1em; padding-bottom: 1em; padding-right: 1em; width: 80%
	} 
/* ^^^ draws a line box around text */

#nav_bottom {
	font-family: verdana, sans-serif;
	font-size:14px;
	text-align: center
	}

#footer {
   font-size: 10px; 
   font-style: italic;
   text-align:center
	   }
