/* Global Styles */
body {
	background-color: #f2f2f2; /* Example background color */
	color: #333;
	font-family: verdana, Arial, sans-serif;
}

/* Header Styles */
header {
	background-color: #2E3B4E;
	color: white;
	font-family: Georgia, serif;
}

/* Heading Styles */
h1 {
	line-height: 200%;
}

h2 {
	color: #1F4F82; /* Medium blue */
	font-family: Georgia, serif;
}

/* Navigation Styles */
nav {
	background-color: #87CEEB; /* Sky blue */
	font-weight: bold;
}

/* Description List Styles */
dt {
	color: #0A2F5A; /* Dark blue */
	font-weight: bold;
}

/* Custom Class */
.special {
	color: #1F4F82; /* Medium blue */
	font-size: 1.2em;
}
/* Footer Styles */
footer {
	font-size: small;
	font-style: italic;
	text-align: center;
}

/* Centered Page Layout */
#wrapper {
	width: 80%;
	margin: 0 auto;
}

	