html, body {
	height: 100%;
}

body{
	margin: 0% 5%;
	min-width: 600px;	
}


/*container for everything but nav bar and title. */
div#container{ 
	height: 90%;
}

/* all divs */
div{
	vertical-align: top;
	text-align: left;
}

/* menu bar *************************************************/
table#menu{
	cursor: pointer;
	border: none;
	width: 100%;
}

#menu td{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: yellow;
	border: 1px solid green;
	text-align: center;
	padding: 2px;
}

#menu td > div{
	position: absolute;
	display: none;
	background-color: #99FF99;
	color: black;
	border: 1px solid yellow;
	text-align: left;
	width: 20%;
}

#menu td:hover > div{
	display: block;
}

#menu td > a:focus + div{
	display: block;
}

#menu td div > li{
	list-style: none;
}

#menu td:hover div#search{
	width: 40%;
}

/* Events bar is located on the left of the home page *******/
div#events{
	display: inline;
	width: 19%;
	height: 100%;
	float: left;
	min-height: 300px;
}

/* title for each event for events bar */
#events > .title{
	font-size: 16px;
	font-weight: bold;
	display: block;
}

/* matching date for each event title */
#events > .date{
	font-size: 12px;
	font-style: italic;
	display: block;
}


#events > a#header{
	text-align: center;
	font-size: 24px;
	width: 100%;
}

#events > a{
	font-size: 14px;
}


#events > .toggle{
	cursor: pointer;
	color: blue;
	font-size: 12px;
	margin: 0px;
}


#events > .toggle > div{
	display: none;
	position: relative;
	font-size: 16px;
	font-style: italic;
	color: black;
	cursor: auto;
	text-align: justify;
	padding: 4px;
}


/*contents area*************************************************/
div#content{
	width: 57%;
	margin: 0% 1.5%;
	float: left;
	background-color: #FFFFFFF; /*#FF9999; */
	display: block;
	
}

#content span.timestamp{
	display: block;
	font-style: italic;
	font-size: 12px;
	
}

#content span.content{
	display: block;
	font-size: 16px;
}

span#title{
	width: 100%;
	display: block;
	font-size: 46px;
	font-family: "Times New Roman";
}



form{
	text-align: left;
	vertical-align: top;
	width: 50%;
}

form > input{
	font-family: "Times New Roman";
	min-width: 150px;
	width: 40%;
}

form > textarea{
	height: 20%;
	width: 100%;
	min-width: 200px;
}

form * {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}

form *:focus, form input[type=submit]:hover{
	background-color: #CCFF66;
}

form > input[type=submit]{
	font-size: 16px;

}

form > .dateInput{
	width: 15%;
	min-width: 40px; 

}

#season{
	margin-left: 5%;
	margin-right: 5%;
	border: 1px solid blue;
	min-height: 75%;
}

#season > div:nth-child(even){
	background-color: silver;
	
}

#season > div:nth-child(odd){
	background-color: white;
}

#season > div{
	padding: 5px;
	display: block;
}

#season > div > span.title{
	display: block;
	font-size: 18px;
	font-weight: bold;
}

#season > div > span.details{
	display: block;
	text-align: justify;
}

.info{
	padding: 5px;
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 5%;
	border: 1px solid blue;
	min-height: 75%;
	text-align: justify;
	line-height: 120%;
}

.rightTitle{
	font-size: 64px; 
	width: 500px; 
	text-align: right; 
}

form#search{
	display: inline;
}

td  form#search{
	width: 15%;
}

form#search > input{
	display: inline;
}

form.delete_event > span.title{
	width: 70%;
}

form.delete_event > input[type=submit]{
	width: 27%;
}

.content .u_title{
	font-weight: bold;
	display: block;
}

div#side_banner{
	float: right;
	width: 19%;
	height: 100%;
	margin-right: 0%;
	/* border: 1px solid black; FOR DEBUGGING */
}

.seasonnum{
	font-size: 18pt;	
	font-weight: bolder;
}



			
