/* Validated by http://jigsaw.w3.org/css-validator/ */

/**********************************************************************/
/* White background, black text, ... */

.white {
	background-color: white;
	color: black;
}
.white a:link {
	color: blue;
	background-color: white;
}
.white a:visited {
	color: red;
	background-color: white;
}
.white a:active {
	color: gray;
	background-color: white;
}

/**********************************************************************/
/* Headings, etc */

h1 {
	background-color: #066666;
	color: white;
    width: 100%;
    text-align: center;
    font-size: 18pt;
    font-family: "Liberation Sans", "Lucida Sans", Verdana, Arial, Helvetica, sans-serif;
}

h2 {
	background-color: #e0e0e0;
	color: black;
    width: 100%;
    text-align: center;
    font-size: 14pt;
    font-family: "Liberation Sans", "Lucida Sans", Verdana, Arial, Helvetica, sans-serif;
    margin: 0px;
}

/**********************************************************************/
/* Body text */

body {
    font-family: "Liberation Serif", "Lucida Serif", "Times New Roman", serif;
    font-size: 11pt; 
}

/**********************************************************************/
/* Green background, white text */

.green_white {
	background-color: #066666;
	color: white;
}

/**********************************************************************/
/* shaded background, black text, ... */

.shaded {
	background-color: #e0e0e0;
	color: black;
}
.shaded a:link {
	background-color: #e0e0e0;
	color: black;
}
.shaded a:visited {
	background-color: #e0e0e0;
	color: blue;
}

/**********************************************************************/
/* Miscellaneous */

.center        { text-align: center ; }
.larger       { font-size: larger ; }
