/*
Purpose:Page margins and colors
Application:Automatic
Note:Margin is set for IE Browser only. Set Margins for NS in the body tag if desired.
*/
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, Arial, Helvetica, Geneva, sans-serif;
	font-size: 11px;
	color: #000000;
	}

/*
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:#336699;
	
}

/*
Purpose:Default document link styles
Application:Automatic
Note: a:hover and a:active are not available in NS4x
*/
a:link{
color:#003366;
}

a:hover{
color:#000000;
text-decoration:none;
}
a:active{
color:#003366;
text-decoration:none;
}
/*
Purpose:Services Popup link styles
Application:Automatic
Note: a:hover and a:active are not available in NS4x
*/

.nav a:link{
font-weight:normal;
color:#FFFFFF;
text-decoration:underline;
}
.nav a:visited{
font-weight:normal;
color:#999999;
text-decoration:underline;
}
.nav a:hover{
font-weight:normal;
color:#FFFF00;
text-decoration:underline;
}
.nav a:active{
font-weight:normal;
color:#0099FF;
text-decoration:none;
}
/*
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: Verdana, Arial, Helvetica, Geneva, sans-serif;
}

/*
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;
background-color: #FFFFFF;
}
