/****
	General.CSS
	CSS for familiar style commands.
****/

/****
	Layout Style Commands
	Used in the layout of a document.
****/

.alignRight  { text-align:right;  }
.alignLeft   { text-align:left;   }
.alignCenter { text-align:center; }

/****
	Text Style Commands
	Used for formatting the documents fonts
****/

.redText { color      :#CC0000; }
.bold	 { font-weight:bold;    }
.italic  { font-style :italic;  }

.boldItalic {
	font-weight	:bold;
	font-style	:italic;
}

/* messageText: used to display a system generated message that needs to catch the user eye. */
.messageText {
	font-weight	:bold;
	color		:#CC0000;
}
	
/* .title {
	font-weight :bold;
	font-size	:125%;
} */

.copyright {
	text-align  : center;
	font-family	: Verdana;
	font-size	: 8pt;
	font-weight : bold;
}

/****
	Image Style Commands
	Used for images within document.
****/

.noBorder {
	border: 0px; 
	}

.thinBorder {
	border: 1px solid;
	}
