body, pre, td, p, input, br, select, textarea {
	/* These rules define the majority of text throughout the site.*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000
}
body {
	/* This selector sets the background color of the body to white, while not affecting the background color of the other classes listed above.*/
	background-color: #FFFFFF;
}
form {
	/* This selector ensures that no extra lines are displayed after a form. */
	display: inline;
}
A {
	/* This selector removes the underlining from hyperlinks. */
	text-decoration : none;
}
A:link {
	/* This selector sets the color of hyperlinks. */
	color: #4C5F84;
}
A:visited {
	/* This selector sets the color of hyperlinks. */
	color: #8C9FC7;
}
A:hover {
	/* This selector sets the color of hyperlinks as the mouse cursor passes over them. */
	color : #FF0000;
}
HR {
	color : #899DC5;
	height : 1px;
}
.errorMsg {
	/* This class defines the style for error messages that are a result of possible user mistakes, which need to be resolved before the user can continue. */
	color: #FF9900;
}
.errorMsgDark {
	/* This class defines the style for error messages with emphasized text. */
	color: #CC9900;
	font-weight : bold;
}
.button, .button A, .button A:visited, .buttonBold, .buttonBold A, .buttonBold A:visited {
	/* This class defines the style for buttons used on forms. */
	background-color: #0D2746;
	color: #FFFFFF;
	font-size: 11px;
	text-align : center;
}
.buttonBold, .buttonBold A, .buttonBold A:visited {
	/* This class defines the style for emphasized button text. */
	font-weight: bold;
}
.buttonHl, .buttonHl A, .buttonHl A:visited {
	/* This class defines the style for button text which is being highlighted for some reason. */
	background-color: #0D2746;
	color: #FFFFFF;
	font-size: 16px;
	text-align : center;
}
.buttonBg, .shading {
	/* This class defines the background shading on button bevels and shading on other objects. */
	background-color: #666666;
}
.footer {
	font-size : 10px;
}
.list, .list input {
	/* This class defines the style of list items that might appear in the first column, or in the main body of a page. */
	font-size: 11px;
	color: #000000;
}
.listHl {
	/* This class defines the style of emphasized list items. */
	font-weight: bold;
}
.cell {
	/* This class defines the style of regular table cell text. */
	/* There is currently no specific formatting for this class, but the class should be used for possible future enhancement. */
}
.cellHl {
	/* This class defines the style of highlighted table cell text. */
	/* It is used, for example, to alternate colors of table rows to make them easier to distinguish from one another. */
	background-color: #D0E4FF;
}
.headline {
	/* This class defines the style of the main headline (page title) of each page. */
	font-size: 20px;
}
.headlineSub, .sectionHead {
	/* This class defines the style of any subheaders for a page, or for section titles. */
	font-size: 14px;
	font-weight: bold;
}
.textLarge {
	/* This class defines the style of large text that is not a subhead. */
	font-size: 18pt;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
}
.lineBg {
	/* This class defines the colors the lines around tables and between sections on the page. */
	background-color: #899DC5;
}
.inputDisabled {
	/* This class defines the style of input elements that are to be shown, but are unavailable to the user for some reason. */
	font-size: 11px;
	color: #808080;
}
.definedTerm {
	/* This class defines the style of text elements which have a definition that the user can view by holding the cursor over the text. */
	color: Red;
}
.onepixborder {
	border-width : 1px;
	border-color : Black;
	border-style : solid;
}


