/* Style rules for standard HTML elements */

/* styles for links  */

a:link { color: blue;
background: transparent;
text-decoration: none
}

a:visited    { color: purple; text-decoration: none; background-color: transparent }

a:hover  { color: yellow;
background: transparent;
text-decoration: none
}

a:active   { color: red; text-decoration: none; background-color: transparent }

address { font-style: italic;
text-align: center }

/* BLOCKQUOTE is used as a general text block for all the text on the left side of the page */

blockquote { margin-right: 40px;
margin-left: 40px
}


/* style for BODY: */
/*	- normal font size */
/*	- serif font (preferably Georgia */
/*	- 1601px width to prevent tiling */
/*	- here is the version with the universal background image (check regards its size) */

body    { font-size: 1em; line-height: 1.33; font-family: Georgia, Tahoma, "Times New Roman", Times, serif; background-image: url(../web_images/Background_slice.jpg); margin: 0em 0%; padding: 8px; width: 1601px; cursor: default
 }

em { font-style: italic }

/* styles for standard HTML headers */

h1 {background: transparent;
font: 2em/1 "Albertus Medium", Tahoma, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
margin: .67em 0
}

h2 { font: 1.5em/1 "Albertus Medium", Tahoma, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
margin: .83em 0
}

h3 { font: 1.17em/1 "Albertus Medium", Tahoma, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
margin: 1em 0
}

h4 { font-family: "Albertus Medium", Tahoma, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
margin: 1.33em 0
}

h5 { font-family: "Albertus Medium", Tahoma, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif
}

h6 { font-family: "Albertus Medium", Tahoma, Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif
}

/* style for list items */

li   { line-height: 1em; margin: 1em 3% 1em 15% }

/* style for normal HTML paragraph: */
/* 	- font size is normal (1em) with line height 1 */

p  { font: 1em/1 Georgia, "Times New Roman", Times, serif }



/* style for small font size is used for SUPscript font */

small, sub, sup { font-size: .83em
}

/* style for rendering centered HTML tables ?? IE */

table { margin-left: auto;
margin-right: auto;
}

/* style for unordered HTML lists with disc-type style for the lsit items */

ul { margin: 0em 0% 0em 0%;
list-style: disc
}

