@charset "utf-8";
/* CSS Document */
body, html { 
	margin:0; 
	padding:0; 
	color:#000; 
	background: #DDD; /* #a7a09a; */
	font-family: Arial, Helvetica, sans-serif;
}

/* ----- containers to layout sections -----*/
#wrap { 
	background: #EEE;
	width:800px; 
	margin:0 auto; 
} 

#headerContainer {
	height: 120px;
	width: 100%;
}

#navContainer {  /* horizontal navigation */
	background: #98bf21;
}

#leftContainer{
	background: #ddd;
	float: left;
	width: 70%;
}

#rightContainer {
	background: #ddd;
	float: right;
	width: 30%;	
}

#footerContainer {
	clear: both;
	background: #666;
	color: #ccc;
	width: 100%;
	text-align: center;
}


/* ----- navigation stylesheet -----*/
#navContainer ul { 
	list-style-type:none; 
	margin:0px;
	padding:0px;
	overflow: hidden;
} 

#navContainer li {
	float: left;
} 

#navContainer a:link,a:visited {
	display: block;
	font-weight:bold;
	color:#FFFFFF;
	background-color:#98bf21;
	width: 125px;
	padding: 4px;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
}

#navContainer a:hover,a:active {
	background-color:#7A991A;
}

/* ----- text styling ----- */


h1 {
	color:#F60;
	font-size:16px;
}

.announcement { 						/* separate announcement stories */
	background-color:#fff;
	border: 1px solid gray;
	padding: 10px;
	margin: 3px;
}


.issues { 								/* separate issues */
	background-color:#fff;
	border: 1px solid gray;
	padding: 10px;
	margin: 3px;
	font-size: 12px;
	line-height: 2;
}

.eventHeader {
	color: #333;
	font-size: 16px;
	padding-left: 20px;
}

.event {
	background-color: #98bf21;
	padding-left: 15px;
	margin-top: 5px;
	margin-left: 5px;
	border-bottom-width: thin;
	border-left-width: thin;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;	
}

.eventName {
	font-size: 16px;
}
.eventLocation {
	font-size: 12px;
	font-style: italic;
}
.eventTime {
	font-size: 12px;
}


