a:link
{
color: blue;
text-decoration: underline;
}

a:visited
{
color: #8400FF;
text-decoration: underline;
}

a:hover
{
color: #8400FF;
text-decoration: underline;
}

a:active
{
color: blue;
text-decoration: underline;
}



/*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: 40px;
background: #ffffff;
}

/*SETS GENERAL VALUES*/

/*paragraph style*/
p
{
	font-family: verdana,arial,helvetica,sans-serif;
	font-variant: normal;
	font-size: 13px;
	line-height: 1.2em;
	text-align: left;
	font-weight: 400;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


/*adds 3 px space at bottom*/
.spacebot3
	{margin-bottom: 3px;
	}

/*adds 6 px space at bottom*/
.spacebot6
	{margin-bottom: 6px;
	}

/*adds 9 px space at bottom*/
.spacebot9
	{margin-bottom: 9px;
	}
	
	.spacebot12
	{margin-bottom: 12px;
	}

/*no space top or bottom*/

.nospace
{margin-top: 0px;
margin-bottom: 0px;
}

.spaceright10
{margin-right: 10px;
}

.spaceleft10
{margin-left: 10px;
}

.spacetop10
{margin-top: 10px;
}

.space10
{margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 10px;
}


/*indents a paragraph*/
.indent
	{
	text-indent: 20px;
	}
	
/*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 8 pt*/
.font8
	{
	font-size: 11px;
	line-height: 1.2em;
	}
	
	/*makes the font size 9 pt*/
.font9
	{
	font-size: 12px;
	line-height: 1.2em;
	}
	
	/*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 14 pt*/
.font14
{
	font-size: 19px;
	line-height: 1.2em;
}


.font16
{
	font-size: 22px;
	line-height: 1.2em;
}

.font20
{
	font-size: 26px;
	line-height: 1.2em;
}



/*makes the font purple*/
.color
{color: #8400FF;
}
	
/*makes the font bold*/
.bold
 {
	font-weight: 700;
	}

/*defines h1*/
	h1
	{font-family: verdana,arial,helvetica,sans-serif;	
	font-size: 15px;
	line-height: 1.2em;
	text-align: left;
	font-weight: 700;
	color: #8400FF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}
	

/*defines h2*/
	h2
	{font-family: verdana,arial,helvetica,sans-serif;	
	font-size: 13px;
	line-height: 1.2em;
	text-align: left;
	font-weight: 400;
	color: #8400FF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}

.verdana
{
	font-family: verdana,arial,helvetica,sans-serif;
	font-variant: normal;
	font-size: 13px;
	line-height: 1.2em;
	text-align: left;
	font-weight: 400;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}

/*list item style with space after each item*/
li.bullet
{
	list-style-image: url(./pics/bullet_purple.jpg);
	}
		


/*this makes the border around an image purple and 2px wide*/
.photoborder
{border-style: solid;
border-color: #8400FF;
border-width: 2px;
}

.photoleft
{float: left;
}

.photoright
{float: right;
}

