body
{
	color: #787E7D;
	font-family: Arial, Sans-Serif;
	font-size: 10pt;
}

/*
	*
	*** Paragrahps and Headings ***
	*
*/
H1
{
	font-weight: bolder;
	font-size: 14pt;
	margin-top: 0;
}
H2
{
	font-weight: bolder;
	font-size: 12pt;
}
H3
{
	font-weight: bolder;
	font-size: 10pt;
}
H4
{
	font-weight: bolder;
	font-size: 10pt;
	font-style: italic;
}
.highlight
{
	color: #0000FF;
}
p.badFormFeedback  /* used to point out missed info in red at the top of forms */
{
	color: Red;
	font-size: larger;
	font-weight: bolder;
}

/*	
	*
	*** Other Tag Classes ***
	*
*/
IMG.blackBorder
{
	border: solid thin Black;
	border: solid 1 Black;
}
FORM.noWhiteSpace
{
	margin-bottom: 0;
	margin-top: 0;
}

/*	
	*
	*** Table formatting ***
	*
*/
/* infoTable - a table used for presenting data rather than for layout */
TABLE.infoTable
{
	margin-bottom: 10px
}
TABLE.infoTable THEAD TD
{
	background-color: silver;
	font: 8pt Verdana;
	font-weight: bolder;
}
TABLE.infoTable TD
{
	font: 9pt Verdana;
	border-style: none;
	background-color: whitesmoke;
	vertical-align: top;
}
TABLE.infoTable TD.required
{
	font: 9pt Verdana;
	color: Red;
	border-style: none;
	background-color: whitesmoke;
	vertical-align: top;
}
TABLE.infoTable TD.section
{
	text-align: center;
	color: White;
	font: 9pt Verdana;
	border-style: none;
	background-color:  Gray;
	vertical-align: top;
}
td.fieldComment
{
	font-style:italic;
	font-size:small;
	text-align:left;
}
TABLE[summary="narrow"]  /* if an infoTable also has a summary field defined as "narrow", it will not be the full 100% width */
{
	width: 689px;   /* width to match screen shots on Console docs pages */
	margin-left: 25px;
}
table.formtable tr
{
	vertical-align: top;
}

/*	
	*
	*** <A> link formatting ***
	*
*/
/* override the default blue link colour */
A
{
	color: #787E7D;
}
A.HeaderA
{
	text-decoration: none;  /* override fact that links are normally underlined */
	color: #0000FF;  /* override our link colour back to blue */
	font-weight: bolder;
	font-size: 14pt;
}
A.MenuA
{
	font-weight: bold;
	text-decoration: none;  /* override fact that links are normally underlined */
	padding-left: 2px;
	padding-right: 2px;
}
A.mouseBeOnMe 
{
	border-bottom: solid thin black;
	border-bottom: solid 1 black;  /* 1 is only understood by IE, so by having both of these, we've essentially given a different setting to IE than to Mozilla in order to make the IE border appear thinner */
	font-weight: bold;
	text-decoration: none;  /* override fact that links are normally underlined */
	padding-left: 2px;
	padding-right: 2px;
}

/*	
	*
	*** DIV's ***
	*
*/
div#container
{
	width: 750px;
	background-color: #ECF0EF;
	margin: auto;
}
div#header
{
	width: 750px;
	height: 87px;
	background-color: #186B5A;
	cursor:pointer;
}
div#menu
{
	width: 750px;
	border-bottom: solid thin #C7C4DA;
	border-bottom: solid 1 #C7C4DA;  /* 1 is only understood by IE, so by having both of these, we've essentially given a different setting to IE than to Mozilla in order to make the IE border appear thinner */
	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
	padding-right: 1px;
	background-color: white;
}
div#body   /* contains content and rightSide div's */
{
	width: 742px;
/*
	position: relative;
	left: 0;
	top: 5;
*/
	margin: 0px 4px 0px 4px;
}
div#footer
{
	width: 750px;
	text-align: right;
	padding-bottom: 5px;
}
div#footer span
{
	font-size: 9pt;
	color: #787E7D;
	font-family: Arial, Sans-Serif;
	font-weight: normal;
}

div.importantParagraph  /* emphasized with top and bottom border, and indents, usually contains P */
{
	border-top: solid medium #7E8FC8;
	border-top: solid 2 #7E8FC8;
	border-bottom: solid medium #7E8FC8;
	border-bottom: solid 2 #7E8FC8;
	margin-left: 15px;
	margin-right: 15px;
}
div.importantParagraph p
{
	margin-top: .5em;
	margin-bottom: .5em;
}

/*
	*
	*** Generic Classes ***
	*
*/
.plain  /* typically used for A or IMG to avoid underlines and borders associated with links */
{
	border-style: none;
	text-decoration: none;
}
.hidden
{
	display: none;
}
.visible
{
	display: block;
}
