/* NWOET Style Sheet
	Created in 2004 by James Dusseau
	for the Northwest Ohio Educational Technology Foundation
	Bowling Green State University
	Bowling Green, Ohio
*/

/* 
	This document was orginally created for another purpose and adapted. 
	Commented code is "just in case," but is free to be deleted.
*/

/* Holds all page elements */
.constrainbox {
	width: 782;
	border: 1px solid black;
/*	overflow:hidden;*/
}

/* Header at top of every page
Contains Header banner (banner.jpg) */
#heading {
	padding: 0px;
	width: 780px;
	height: 115px;
	margin: 0px;
	vertical-align: bottom;
	background-image: url('images/banner.gif');
	color: #FFFFFF;
	font-size: 24px;
	font-variant: normal;
	font-weight: bolder;
	font-family: "Courier New", Courier, mono;
	text-align: left;
	overflow: hidden;
	border-bottom: 1px solid black
}

/* Size of site minus size of nav and banner elements.
This is where all content goes. */
.content {
	float: right;
	width: 758;
	clear: right;
	/*font-family: "Times New Roman", Times, serif;*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-bottom: 20px;

}

/* Style of links within the content area */
.content a {
	color: #6F1100; /*darkest red*/
	text-decoration: underline;
	font-family: "Courier New", Courier, mono;
	font-size: 14px;
	font-weight: bold;
}

.staffAttrib {
	font-weight: 600;
}

.darkBlueTimes {
	color: #122441; /* dark blue */
	font-family: "Times New Roman", Times, serif;
}

.content li {
	margin-top: 5px;
}

/* Style of text headings within the content area */
.textheading {
	text-align:center;
	/*border: 0px solid  #990000;*/
	font-size: 24px;
	/*color: #990000;*/	/* red */
	color: #BD3A00; /* dark red*/
	/*color: black;*/
	text-decoration:underline;
	font-family: "Courier New", Courier, mono;
	font-weight: bold;
}



/* Container box for events on the events page.
Height is on there due to problems with the float tag on eventImg(Odd || Even)
Without height, the box shortens, and latter elements overcrowd.
I realize that the height tag may cause problems later.*/
/*Took height out because it was causing problems. The fix is to add a height to the 
tag like so: <div class="eventElement" style="height: 185px; "> for blocks that are too short.*/
.eventElement {
	border: 0px;
	margin-top: 10px;
	margin-bottom: 5px;
	padding-bottom: 15px;
	padding-top: 5px;
}

/*Style of event titles*/
.eventTitle {
	/*border-bottom: 1px solid #990000;*/
	border-bottom: 1px solid #BD3A00;
	text-align: left;
	font-size: 16px;
	color: #000000;
	font-family: "Courier New", Courier, mono;
	font-weight: bold;
	margin-top: 0px;
}

.subHeading {
	/*border-bottom: 1px solid #990000;*/
	border-bottom: 1px solid #BD3A00;
	text-align: left;
	font-size: 16px;
	color: #000000;
	font-family: "Courier New", Courier, mono;
	font-weight: bold;
	margin-top: 0px;
}

/* floats the image right. Intended for odd numbered (every other) events. */
.eventImgOdd {
	float: right;
	border: 1px solid #BD3A00;
	width: 100px;
	margin-left: 5px;
}

/* floats the image left. Intended for even numbered (every other) events. */
.eventImgEven {
	float: left;
	border: 1px solid #BD3A00;
	width: 100px;
	margin-right: 5px;
}

/* Sets up size, look, and text of footer */
.footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-bottom-style: none;
	border-top-color: #000000;
	float: both;
	clear: both;
	font-size: 12px;
	color:#FFFFFF;
	font-style: normal;
	font-weight: bolder;
	letter-spacing: 0.15em;
	text-align: center;
	font-family: "Courier New", Courier, mono;
	background-color:#666666;
}

/*Style of footer link text. */
.footer a {
	color: #6F1100;
	text-decoration: underline;
	font-family: "Courier New", Courier, mono;
	font-size: 12px;
}
