ul {
list-style-position:outside;
list-style-type:disc;
color:#6284AC;
}

ol {
list-style-position:outside;
color:#6284AC;
}

dl {
list-style-position:outside;
list-style-type:disc;
color:#25476C;
}

em {
background:#FFFF00;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size : xx-small;
font-style : italic;
}

H1        {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:#990000;
	weight:bold;
	font-size:24pt
}
H2        {
	font-family: Impact;
	color:#25476C;
	weight:bold;
	font-size:18pt
}
H3        {
	font-family: Impact;
	color:#6284AC;
	font-weight:bold;
	font-size:16pt
}
H4        {
	font-family: Verdana;
	color:#990000;
	font-weight:bold;
	font-style:italic;
	font-size:14pt
}
H5        {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:black;
	font-weight:light;
	font-style:italic;
	font-size:12pt
}
H6        {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	color:#6284AC;
	font-weight:bold;
	font-size:10pt
}

/*
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.
Additional Info: Learn more about margins and CSS at http://www.dwfaq.com/tutorials/basics/margins.asp
*/
body{
margin:0px;
padding:0px;
color:#333333;
text-align:left;
font-size:10pt;
scrollbar-base-color: white;
scrollbar-arrow-color: #990000;
scrollbar-shadow-color: #30435A;
scrollbar-lightshadow-color: #C8D3E1;
scrollbar-darkshadow-color: black;
scrollbar-highlight-color: #6284AC;
scrollbar-3dlight-color: black;
}


/*
Purpose:justify certain areas of text indented
*/

blockquote {
text-align : justify;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
}


/*
Purpose:Default font and text size for listed tags
Application:Automatic
*/
body,table,td,th,p,ol,ul,dl,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:#FFFFFF;
}

/*
Purpose: Mostly used as alternative background color in table cells
Application: <table>,<td>,<p>,<span>,<div>
*/
.bckgrndcolor{
background-color:#C8D3E1;
}

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

/*
Purpose:Style all <th> with the specified color text and background color
Application:Automatic
*/
th{
color:#C8D3E1;
background-color:#30435A;
font-size: 13px;
}

td{
font-size:9pt;
color:#000000;
}

/*
Purpose:Default document link styles
Application:Automatic
Note: a:hover and a:active are not available in NS4x
*/
a:link{
color:#6284AC;
text-decoration:none;
}/*unvisited link*/
a:visited{
color:#6284AC;
text-decoration:none;
} /*visited link*/
a:hover{
color:#30435A;
text-decoration:underline;
}
a:active{
color:#FFFFFF;
text-decoration:underline;
background:#6284AC;
}

/*
Purpose:Navigation- Plain and Linked Text
Application:<table>,<td>,<p>
Note: How this class is applied may affect earlier browsers.
Be sure to check your application early in the design process, and often.
*/
.nav{
color:#FFFFFF;
background-color:#6284AC;
}
.nav a:link{
font-weight:bold;
color:#99CCFF;
text-decoration:none;
}
.nav a:visited{
font-weight:bold;
color:#99CCFF;
text-decoration:none;
}
.nav a:hover{
font-weight:bold;
color:#FFFFFF;
text-decoration:none;
}
.nav a:active{
font-weight:bold;
color:#FFFFFF;
text-decoration:none;
}

.actions{
color:#FFFFFF;
background-color:#6284AC;
border:2px solid #000000;
}
.actions a:link{
font-weight:bold;
color:#99CCFF;
text-decoration:none;
}
.actions a:visited{
font-weight:bold;
color:#99CCFF;
text-decoration:none;
}
.actions a:hover{
font-weight:bold;
color:#FFFFFF;
text-decoration:none;
}
.actions a:active{
font-weight:bold;
color:#FFFFFF;
text-decoration:none;
}

/*
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:Verdana,Arial,Helvetica,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;
}

/*
Purpose:To make colored form buttons
Application:<input type="button"> only. The .buttons class cannot be used elsewhere
*/
input.buttons{
font:bold 11px Verdana,Arial,Helvetica,sans-serif;
color: #C8D3E1;
background-color: #30435A;
border:2px #6197D1 inset;
}

/*
Purpose:To make colored form buttons
Application:<input type="button"> only. The .buttons class cannot be used elsewhere
*/
input.buttonsred{
font:bold 11px Verdana,Arial,Helvetica,sans-serif;
color: #C8D3E1;
background-color: #990000;
border:2px #6197D1 inset;
}

/*
Purpose:To make colored horizontal rule
Application:Automatic
*/
hr {
color: #6284AC;
}

/*
Purpose:To make the thin outline on the right and bottom of the table
Application:<table>
*/
.tableborder {
border-top: 0px;
border-right: 1px solid #30435A;
border-bottom: 1px solid #30435A;
border-left: 0px;
}

/*
Purpose:To make the thin outline on all sides of an inside table
Application:<table>
*/
.insidetableborder {
border-top: 1px solid #30435A;
border-right: 1px solid #30435A;
border-bottom: 1px solid #30435A;
border-left: 1px solid #30435A;
}

/*
Purpose:To make thin lines between table cells
Application:Automatic as long as .tableborder is applied to the <table> tag
*/
.tableborder td, .tableborder th{
border-top: 1px solid #30435A;
border-right: 0px;
border-bottom: 0px;
border-left: 1px solid #30435A;
}

/*Purpose:To make sure that deeply nested table's cells
do not inherit the borders given them in the class above.
Application:Automatic
*/
.tableborder table td, .tableborder table th{
border: 0px;
}