/* 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;
}

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

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

h1.green_white, h2.green_white {
	background-color: #066666;
	color: white;
    width: 100%;
    text-align: center;
}

/**********************************************************************/
/* 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 ; }

p, ul {
    margin-left: 5%;
    margin-right: 5%;
}



