/* Used for crearting a normal underlined link with black text and no background. */
a.clear:link { 
	color: #000000;
}

a.clear:visited {
	color: #000000;
}

a.clear:hover {
	color: #000000;
}

a.clear:active {
	color: #000000;
}

/* User for creating links that are underlined with a blue text and no background. */
a.plain:link {
	color: #1A3662;
}

a.plain:visited {
	color: #1A3662;
}

a.plain:hover {
	color: #1A3662;
}

a.plain:active {
	color: #1A3662;
}

/* Used for creating the standard table for box elements on the site. */
.box {
	width: 100%;
	align: center;
	padding: 5px;
	cellspacing: 0px;
	background-color: #A8A6A6;
	border-collapse: collapse;
}
.cell {
	border: 3px solid #192751;
}
