/* CSS Document */




body{
margin:0px;
padding:0px;
color:#333333;
}

/*
Purpose:Default font and text size for listed tags
Application:Automatic
*/
body,table,td,th,p,ol,ul,li {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}

/*
Purpose:The page background color & a custom class (.bodycolor)
to use when you need the same background color as the body.
Application:Automatic to <body>.
.bodycolor Application: <table>,<td>,<p>,<span>,<div>
*/
body, .bodycolor{
background-color:#000000;
}

/*
Purpose: Mostly used as alternative background color in table cells
Application: <table>,<td>,<p>,<span>,<div>
*/
.bckgrndcolor{
background-color:#990000;
}

/*
Purpose: Mostly used as alternative background color in table cells
Also since the background color is a yellowish, it is used to highlite information.
Application: <table>,<td>,<p>,<span>,<div>
*/
.rowcolor { 
background-color : #990000; 
}

/*
Purpose:Style all <th> with the specified color text and background color
Application:Automatic
*/
th{
color:#FFFFFF;
background-color:#990000;
font-size: 13px;
}



/*
Purpose:Used for copyright notice and other text needing "fine print"
Application:<table>,<td>,<p>
*/
.smallprint {
font-size: 10px;
}

/*
Purpose: Used for the page header include, but can serve other purposes
Application:<span>,<table>,<td>,<p>
*/
.header {
font-size: 13px;
font-weight: bold;
color: #FFFFFF;
background-color: #6284AC;
}

/*
Purpose:Used for the page footer include
Application:<span>,<table>,<td>,<p>
*/
.footer {
font-size: 9px;
color: #999999;
}

/*
Purpose: Set the font to sans-serif for IE
Application: Automatic
Note: NS4x uses mono-space font in the .fieldcell class
*/
textarea, select{
font-family:Arial, Helvetica, sans-serif;
font-size: 11px;
}

/*
Purpose: Set the font to mono-space for NS4x.
This helps to keep form elements a similar size cross-browser.
Application: Applied to the <td> tag only
Note: NS4x only. Other browsers use the textarea, select defined above
*/ 
.fieldcell{
font-family:"Courier New", Courier, mono;
}


/*
Purpose: Make an obvious area to display important message.
Application:<div>,<span>,<table>,<td>,<p>
*/ 
.txtalert {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #990099;
}
