/*Style sheet for on-screen viewing*/Body {	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;	color: #FFFFFF;	margin: 0px; 	background-color : #202020;	background-repeat: repeat-y;	}li {	list-style-type: none;	line-height: 200%;	}p {	line-height:150%;	}	.Content {/*the main content area*/	text-align: left;	margin-left: 70px;	margin-top:30px;/*to position the content area to the right of the navigation*/	margin-right: 100px;/*breathing space for the text*/	padding-top:0px;	font-size: 15px;	min-width: 500px; /*readbility even on big screens*/	max-width: 700px; /*readbility even on big screens*/	width: auto;/*	width:expression(document.body.clientWidth > 700? "700px": "auto" ); /*fix for max-width not working in IE, other browsers ignore it*/	width: expression( document.body.clientWidth > 900 ? "700px": (document.body.clientWidth < 700 ? "500px": "auto") ); /*fix for max-width not working in IE, other browsers ignore it*/	border: 0.1px solid #202020;/*to insure that NN4.xx renders the background-color of the content area*/	border-left: 1px solid #202020;	}/*normal links in the text*/a:link {	background: transparent;	color: #A0A0A0;	text-decoration: none;	}a:visited {	background: transparent;	color: #707070;	text-decoration: none;        }a:hover {	background: transparent;	color: #D0D0D0;	text-decoration: none;        }