:root {
    --font-primary: Arial, Helvetica, sans-serif;
    --font-color-link: #FF0000;
    --background-image-url: url(../Images/bkg2.gif);  // Adjust path as necessary
    --font-size-base: 0.9rem;  // approx. 9pt
    --font-size-h1: 1.8rem;  // approx. 18pt
    --font-size-h2: 1.6rem;  // approx. 16pt
    --font-size-h3: 1.4rem;  // approx. 14pt
    --font-size-h4: 1.2rem;  // approx. 12pt
    --font-size-h5: 1rem;    // approx. 10pt
}

body {
    background-image: var(--background-image-url);
    background-repeat: repeat-y;
    background-position: left 20%;
    margin-left: 90px;  // Consider using 'rem' for responsiveness
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

p, a, div, table {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

a {
    text-decoration: none;
    color: var(--font-color-link);
    font-weight: normal;
}

a:hover {
    text-decoration: underline;
    font-weight: bold;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: normal;
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: bold;
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: bold;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: bold;
}

div, table {
    font-weight: normal;
}

/* Additional styles for links */
a:link, a:visited, a:active {
    color: var(--font-color-link);
}
TABLE {
	font-family : Arial, Helvetica, sans-serif;
	font-size : 9pt;
	font-weight : normal;

}
