a:link
{
color: blue;
background-color: #ffffff;
text-decoration: none;
}

a:visited
{
color: blue;
background-color: #ffffff;
text-decoration: none;
}

a:hover
{
color: red;
text-decoration: none;
}

a:active
{
color: blue;
background-color: #ffffff;
text-decoration: none;
}



/*the address of the background image is relative to the stylesheet not to the html page*/

/*margins are not inherited*/

/*Sets the page background and gives the page a 30pt left-hand margin so that when viewed on a pc the page is not jammed against the left-hand side of the page.*/

body
{margin-left: 30px;
background-color: #ffffff;
}

#navbar p
{
font-family: arial,verdana,helvetica,sans-serif;
font-variant: small-caps;
font-size: 17px;
line-height: 1.3em;
text-align: left;
text-indent: 0px;
font-weight: 500;
color: black;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 10px;
}



/*SETS GENERAL VALUES*/

p
{font-family: arial,verdana,helvetica,sans-serif;
	font-variant: normal;
	font-size: 13px;
	line-height: 1.2em;
	text-align: left;
	text-indent: 20px;
	font-weight: 400;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}

.spacetop6
{margin-top: 8px;
}

.spacetop10
{margin-top: 13px;
}


.spacebottom6
{margin-bottom: 8px;
}

.spacebottom10
{margin-bottom: 13px;
}

.photoborder
{border: solid;
border-width: 2px;
border-color: black;
}

.marginleft10
{margin-left: 13px;
}


	
/*indents a paragraph*/
.noindent
	{
	text-indent: 0px;
	}
	
.nospacebot
{margin-bottom: 0px;
}
	
	
/*aligns the text right*/
.textright
	{
	text-align: right;
	}
	
/*aligns the text center*/
.textcenter
	{
	text-align: center;
	}
	
/*aligns the text justified*/
.textjustify
{
	text-align: justify;
}

	/*aligns the text left*/
.textleft
{
	text-align: left;
}


	/*makes the font size 10 pt*/
.font10
	{
	font-size: 13px;
	line-height: 1.2em;
	}
	
	
/*makes the font size 11 pt*/
.font11
	{
	font-size: 15px;
	line-height: 1.2em;
	}
	
	/*makes the font size 12 pt*/
.font12
	{
	font-size: 16px;
	line-height: 1.2em;
	}
	
	/*makes the font size 13 pt*/
.font13
	{
	font-size: 17px;
	line-height: 1.2em;
	}
	
	/*makes the font size 14 pt*/
.font14
	{
	font-size: 18px;
	line-height: 1.2em;
	}
	

/*makes the font size 16 pt*/
.font16
{
	font-size: 22px;
	line-height: 1.2em;
}
	
/*makes the font bold*/
.bold
 {
	font-weight: 700;
	}
	

/*defines h1*/
	h1
	{font-family: arial,verdana,helvetica,sans-serif;	
	font-size: 19px;
	line-height: 1.2em;
	text-align: left;
	text-indent: 0px;
	font-weight: 400;
	color: #0000ff;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}
	

/*defines h2*/
	h2
	{font-family: arial,verdana,helvetica,sans-serif;	
	font-size: 15px;
	line-height: 1.2em;
	text-align: left;
	font-weight: 400;
		color: #0000ff;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}

/*unorder list with no marker and no space before but with space after the list*/

ol
	{
	list-style-type: decimal;
	margin-top: 0px;
	margin-bottom: 0px;
}


	ul.none
	{
	list-style-type: none;
	margin-top: 0px;
	margin-bottom: 0px;
}
	
/*list item style with space after each item*/
li
{
	font-family: arial,verdana,helvetica,sans-serif;
	font-variant: normal;
	font-size: 13px;
	line-height: 1.2em;
	text-align: left;
	font-weight: 400;
	margin-top: 0px;
	margin-bottom: 8px;
	}
	
	
	/*list item style with no space after each item*/
	li.none
{
	font-family: arial,verdana,helvetica,sans-serif;
	font-variant: normal;
	font-size: 13px;
	line-height: 1.2em;
	text-align: left;
	font-weight: 400;
	margin-top: 0px;
	margin-bottom: 0px;
	}


	
	/*this makes a 1 pt rule down a column*/
	td.vrule
	{
	border-left-style: solid;
	border-left-width: 1px;
	border-left-color: black;
	}

