﻿/* Style Sheet for all pages */
@media screen {

body {
	font-family: arial;
	color: #000000;
	background-color: #16316F;
}

/* Default settings for all input boxes */
input { font-family: Arial; font-size: 8pt; border: none; padding-left: 4; padding-right: 4; padding-top: 1; padding-bottom: 1 }

/* Remove underline from all links */

/* Default Look for all links once clicked 
Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!
Note: a:active MUST come after a:hover in the CSS definition in order to be effective
*/
 :link { text-decoration: none; color: #ab381d; }
 :visited { text-decoration: none; color: #ab381d; }
 :active { text-decoration: none; color: #ab381d; }
 :hover {text-decoration: none; color: #16316F;}

/* Top links white with lightblue roll over */
a.TopLinkText:link { font-family: Arial; text-decoration: none; color: #FFFFFF; }
a.TopLinkText:visited  { font-family: Arial; text-decoration: none; color: #FFFFFF; }
a.TopLinkText:active  { font-family: Arial; text-decoration: none; color: #FFFFFF; }
a.TopLinkText:hover  { font-family: Arial; text-decoration: none; color: #D0DaF1; }


/* Normal Bold Grey text, hyperlink */

a.BoldLinkText { font-size: 10pt; font-weight: bold; }

}
/* Printer style */
@media print {

 .awmAnchor { display:none; }

 }