/* use a keyword ("medium") tp specify the base font size so that zooming works in Internet Explorer */
/* Most other font sizes should be specified as a percentage relative to this			    */

body {
	font-family: verdana, arial, helvetica, sans-serif; 
	font-size: medium;
	background-color: while;
}

/* Underline links only when the mouse is hovering over them */
:link {
     text-decoration:none;
 }

:visited {
     text-decoration:none;
 }

:link:hover {
     text-decoration:underline;
     background-color: #CCCCCC;
}

:visited:hover {
     text-decoration:underline;
     background-color: #CCCCCC;

}
