
/* this changes the way links (anchors) look  */


a:link {color: white; text-decoration: none;}
a:visited {color: purple; text-decoration: none;}
a:hover {font-weight: bold; text-decoration: none;}
a:focus {background-color: yellow;}
a:active {color: red; text-decoration: none;}












/* Creates a headline 1 in white */

h1 	{
    color: #FFFFFF;
    font-family:Verdana; sans-serif;
    font-size:200%;
    text-align: center;
	}

/* Creates a headline 2 in dark goldenrod */

h2 	{
    color: #FFFFFF;
    font-family:Verdana; sans-serif;
    font-size:120%;
	}

/* Creates a headline 3 in dark khaki */

h3 	{
    color: #BDB76B;
    font-family:Verdana; sans-serif;
    font-size:100%;
	}

/* Creates a headline 4 in green */

h4 	{
    color: #008000;
    font-family:Verdana; sans-serif;
    font-size:90%;
	}


/* Creates a headline 5 in indigo */
h5 	{
    color: #4B0082;
    font-family:Verdana; sans-serif;
    font-size:75%;
	}





/* Makes the Body font to be Verdana (or default to a sans serif font), slightly reduced in size from normal because Verdana is a big font, and adds a left-margin */

body {

	color: white;
	font-family: Verdana; sans-serif;
	font-size: 105%;
	margin-left: 100px;
	margin-right: 80px;
}


bl	{
	font-weight: bold;
	}