body { font-family: Arial, Helvetica, "Sans Serif";
       color: Black;
}

a:link { color: DarkBlue;
text-decoration: none;
}

a:visited { color: DarkBlue;
text-decoration: none;
}

a:hover { color: Red;
text-decoration: none;
}


li{margin-left:-22px;}
li{margin-top:0px;}
li{margin-bottom:2px;}

ul{margin-top:3px;}
ul{margin-bottom:10px;}
ul{margin-left:0px;}

@media print { 
    body { 
        transform: scale(0.9); /* Adjust the scale factor as needed */ 
        transform-origin: top center; /* Set the origin for the scale */ 
        width: 100%; /* Ensure the width is 100% to avoid clipping */ 
        /* height: auto; Allow height to adjust automatically */ 
        overflow: hidden; /* Prevent overflow issues */ 
	font-size: 10pt; /* Optimal for body text */
    } 

/* Specific margins for different sides */
  @page {
    margin-top: 0.4in;
    margin-bottom: 0.4in;
    margin-left: 0.2in;
    margin-right: 0.4in;

    p {
        margin-bottom: 0.2em; /* Smaller margin for print */
    	padding-bottom: -2px;
    }

    ul {
    	margin-bottom: -10px;
    }

} 