﻿/* Style Sheet for all pages */
@media screen {

body { font-family: arial; color: #ffffff; }

/* 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 }

/* Default settings for all Tables */
table { border-style: none; border-color:#78A2D4 }

/* 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: #78A2D4; }
 :visited { text-decoration: none; color: #78A2D4; }
 :active { text-decoration: none; color: #78A2D4; }
 :hover {text-decoration: none; color: #ffffff;}

/* Normal Bold Grey text, hyperlink */

a.BoldLinkText { font-size: 12pt; font-weight: bold; }

}
/* Printer style */
@media print {

 .awmAnchor { display:none; }

 }
