@charset "UTF-8";
/* CSS Document */
/*
COLORS and MISC NOTES:
 lumc red = #ff0000
 text dark gray = #CCC
 cream = #f8edcd
 */
 /* DIV IDs */
body,td,th {
	background-color: #f8edcd;
	font-family: 'Alegreya', serif;
	font-size: 16px;
	color: #333;
}
#wrapper {
	margin:auto;
}
#header {
	position: relative;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	width: 1100px;
}
#borderbox {
	position: relative;
	margin-top: 50px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 1100px;
	padding-top: 10px;
	padding-right: 60px;
	padding-bottom: 10px;
	padding-left: 60px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #333;
}
.eventsbox {
	position: relative;
	width: 250px;
	height: auto;
	border: thin solid #F00;
  	padding-right: 8px;
	padding-left: 8px;
}
/* IMAGE CLASSES */
.imageborder {
	border: 2px solid #FFF;
}
.imageleft {
	margin-right: 12px;
	border: 2px solid #FFF;
}
.imageright {
	margin-left: 12px;
	border: 2px solid #FFF;
}
.imagetopmargin {
	margin-top: 18px;
}
/* TYPOGRAPHY and link classes */
/* Default typeface FYI repeats from top line
BODY FONT INFO = body,td,th {
	font-family: 'Alegreya', serif;
	font-size: 16px;
	color: # 333;
}
*/
/* Typeface colors */
.white {
	color:#FFF; 
}
.red {
	color: #ff0000; 
}
/* Special typographical styles */
.headertext {
	font-weight: bold;
	word-spacing: 1px;
}
.caption {
	font-size: large;
	color: #145b2e; 
}
/* LINKED-TEXT CLASS - Links for text with dotted underline on hover */
a.text:link {
	color: #333;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
}
a.text:visited {
	color: #333;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
}
a.text:hover {
	color: #333;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ff0000;
}
a.text:active {
	color: #333;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
}
/* LINKED-IMAGE CLASS = no class - Links for images and other elements requiring no (text) decoration in linkage; text will default to web-blue on hover */
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
