body {
	color: White;
	font-family: "Times New Roman";
	font-size: medium;
	text-align: center;
	background-color: Black;
}

.term {
	color: Red;
	text-align: center;
	font-family: "Times New Roman";
	font-weight: bold;
	text-decoration: underline;
	font: medium;
}

.title {
    	text-align: center;
	font-size: x-large;
	color: White;
	font-family: "Arial Unicode MS";
	font-weight: bolder;
}

a {
	color: White;
}

a:hover {
	color: Red;
}

h2 {
	font-size: xx-large;
	text-align: center;
	color: White;
	font-family: "Times New Roman";
	text-decoration: underline;
}

h3 {
	font-size: large;
	text-align: center;
	color: White;
	font-family: "Times New Roman";
	margin-bottom: 0px;
}

h4 {
	font-size: medium;
	text-align: center;
	color: White;
	font-family: "Times New Roman";
}

h5 {
	font-size: large;
	text-align: center;
	color: White;
	font-family: "Times New Roman";
	text-decoration: underline;
}

address {
	font-size: x-small;
	font-style: italic;
	text-align: center;
	font-family: "Comic Sans MS";
}

img {
	border: none;
}

img.headerImage {
     height: 100px;
}

img.eventImage {
     height: 300px;
}

/* Responsive CSS for tables.  From https://css-tricks.com/responsive-data-tables/ */
@media screen and (max-width: 600px) {
	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 0; 
		position: center;
		text-align: center;
	}
	img.headerImage {
         width: 85%;
     }
     img.eventImage {
         width: 75%;
     }
}