/* basic element selectors */
html {
	margin:0;
	padding: 0;
	}
body {
	font: 100% garamond, serif;
	color: #1c1c1c;
	background: #ffffff;
	margin: 10px;
	padding: 0;
	}
h1 {
	text-align: center;
	}
dt {
	font: normal 20px "times new roman", serif;
	letter-spacing: 1px;
	color: #000000;
	}

/* ID selectors */
#para1, #footer {
	text-align: center;
	}

/* class selectors */
.center {
	text-align: center;
	color: black;
	font-weight: bold;
}

/* Pseudo selectors */
a:link {
	font-weight: bold;
	text-decoration: none;
	color: #7a417a;
	}
a:visited {
	font-weight: bold;
	text-decoration: none;
	color: #b387b3;
	}
a:hover, a:active {
	text-decoration: underline;
	color: #9685BA;
	}