{!-- This sets the background color and background image for the site. Makes the image show down the left-hand side of the screen. --}
body {
	background-image: url("media/back-bicolor.gif");
	background-repeat: repeat-y;
}

p {color: tan;}

{!-- Sets colors for links. --}
a.main:link {color: #00FFFF; text-decoration: none;}
a.main:visited {color: #00FFFF; text-decoration: none;}
a.main:hover {
	text-decoration: underline;
}

a.link:link {color: #00FFCC; text-decoration: none;}
a.link:visited {
	color: #00FFCC;
	text-decoration: none;
}
a.link:hover {
	text-decoration: underline;
}


{!-- Sets attribs for definition terms. --}
dt {
	text-decoration : underline;
	font-weight : bold;
}