<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/****************************************
MENU STRUCTURE, POSITIONING, VISIBILITY
****************************************/
.mainMenu { position: relative; top: 0; left: 0; }  /* Top OL */
.mainMenu, .mainMenu OL {                         /* All LIs. */
	list-style: none; margin: 0 10px 0 0; padding: 0;
}
.mainMenu OL { margin-left: 20px; }     /* Multi-level indent */
.mainMenu .closed OL {    /* Hide contents of closed folders. */
	display: none;
}
/****************************************
LINK SIZE &amp; POSITION
****************************************/
.mainMenu A {
  display: block; width: 100%; /* Width:100% CRITICAL for IE */
  margin: 0; padding-left: 25px;    /* Indent text past icon. */
}
/****************************************
LINK ICONS
Background images for links which are part of menu - both 
items and folders
****************************************/
.mainMenu .open A {                         /* Open folder. */
   background-image: url(../images/open.gif);
   background-repeat: no-repeat; background-position: 0 3px;
}
.mainMenu .closed A {                     /* Closed folder. */
   background-image: url(../images/closed.gif);
   background-repeat: no-repeat;
	background-position: 3px 3px;
}
.mainMenu .popup A {        /* Item which opens new window. */
   background-image: url(../images/popup.gif);
   background-repeat: no-repeat;
   background-position: 2px 3px;
}
.mainMenu .doc A {               /* Item - not current page */
   background-image: url(../images/doc.gif);
   background-repeat: no-repeat;
   background-position: 4px 3px;
}
.mainMenu .current A { /* Item with “you are here” */
   background-image: url(../images/current.gif);
   background-repeat: no-repeat;
   background-position: 3px 1px;
}
/****************************************
LINK COLOURS, BG COLOURS, FONTS, TEXT DECORATION.
*  We change background color for all A:hover including As 
   which contain titles of folders - these are not clickable
   unless Javascript is enabled  AND the browser is supported
   (the Javascript decides this).
*  IE does not understand child selectors, only descendants. 
   So we must use "redundant" descendant selectors to control
   specificity.
****************************************/
.mainMenu A { text-decoration: none; }
/* Link colors &amp; weight: folders. */
.mainMenu .open A, .mainMenu .closed A {
   font-weight: bold; color: green;
}
/* Link colors &amp; weight: non-folder items - use LI classes 
   to raise specificity so that these neither inherit nor
   over-ride rules for the folder LIs which contain them.
   Must be AFTER the rules for folders, otherwise the folder
   rules would over-ride parts of these. */
.mainMenu .doc A, .mainMenu .current A, .mainMenu .popup A
   { font-weight: normal; }
.mainMenu .doc A:link, .mainMenu .current A:link,
      .mainMenu .popup A:link,
      .mainMenu .doc A:active, .mainMenu .current A:active,
      .mainMenu .popup A:active
	{ color: blue; }
.mainMenu .doc A:visited, .mainMenu .current A:visited,
      .mainMenu .popup A:visited
	{ color: purple; }
.mainMenu .doc A:hover, .mainMenu .current A:hover,
      .mainMenu .popup A:hover
	{ background-color: #ffffee; color: red; }

h1 {
	font-family: arial;
	color: blue;
}

td {
	font-family: arial;
	padding-left: 8px;
	padding-top: 6px;
	padding-bottom: 4px;
	padding-right: 8px;
}

p {
	margin-top:0in;
	margin-bottom: 0.0835in;
}

code {
	font-family: arial;
	font-size: 12px;
}

*.List {
	font-family:'Times New Roman';
	font-size:10pt;
	margin-top:0in;
	margin-bottom:0.0835in;
}
*.ListBullet {
	font-family:'Times New Roman';
	font-size:10pt; margin-left:0in;
	margin-right:0in;
	text-indent:0in;
}

.banner {
	font-weight: bold;
	text-align: center;
}

.header {
  font-weight: bold;
	font-size: 18px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 10px;
}

.annotation {
	font-family: arial;
	font-size: 12px;
}

.prompt {
	font-family: arial;
	font-weight: bold;
	text-align: right;
	vertical-align: top;
}

.warning {
	font-family: arial;
	font-weight: bold;
	color: red;
}

.messagediv {
	font-family: arial;
	border-width: 1px;
	border-style: outset;
	padding: 5px;
  //background-color: gra;
}

.failedMsg, .errorMsg, .warningMsg {
	font-family: arial;
	font-weight: bold;
  color: red;
  //color: blue;
}
.successMsg {
	font-family: arial;
	font-weight: bold;
	color: green;
}

.msgField {
	font-family: arial;
	font-weight: bold;
}
.msgText {
	font-family: arial;
	//font-weight: bold;
}
</pre></body></html>