/* default font */

html, body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: black;
}

/* size modification */

.small { font-size: smaller; }

.large { font-size: larger; }

/* weight modification */

.bold { font-weight: bolder; }

/* no margin */

.nomargin { margin: 0; }

/* headers */

h1 { font-size: 24px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }

/* color modification */

.blue { color: #3464C5; }
.white { color: white; }

/* links */

a:active, a:link, a:visited, a:hover {
	color: #3464C5;
	font-weight: bold;
	text-decoration: none;
}

a:visited {
	color: #336688;
}

a:hover {
	color: #BB33AA;
	background-color: #FFFF99;
}
