@charset "UTF-8";
/* CSS Document */

h1 {
    color: black;
	font-family: "Times New Roman", Times, serif;
    margin-left: 20px;
}

h2 {
    color: black;
	font-family: "Times New Roman", Times, serif;
    margin-left: 20px;
}

h3 {
    color: black;
	font-family: "Times New Roman", Times, serif;
    /* margin-left: 20px; */
}

p {
    color: black;
	font-family: "Times New Roman", Times, serif;
    font-size: 1.3em;
    margin-left: 20px;
}

li {
    font-size: 1.3em;
}

a:link {
    text-decoration: underline;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}
/* unvisited link */
a:link {
    color: black;
}

/* visited link */
a:visited {
    color: black;
}

/* mouse over link */
a:hover {
    color: red;
}

/* selected link */
a:active {
    color: black;
}