﻿/* Style Sheet for all pages */
@media screen {

body { font-family: arial; color: #FFFFFF; font-size: 10pt; }

/* 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 }

/* Normal Bold Grey text, non-hyperlink */
div.NoLinkText { font-size: 10pt; font-style: normal; font-weight: bold;}

/* 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: #0099FF; }
 :visited { text-decoration: none; color: #0099FF; }
 :active { text-decoration: none; color: #0099FF; }
 :hover {
	text-decoration: none;
	color: #FFFFFF;
}

/* Normal Bold Grey text, hyperlink */

a.BoldLinkText { font-size: 10pt; font-weight: bold; }

}
/* Printer style */
@media print {

 .awmAnchor { display:none; }

 }
