/* main.css */

/* unindent entire lst */
#menu ul {
	margin-left: -1em;
	}
	
/* set li as buttons */
#menu li {
	list-style-type: none;
	border: 1px black solid;;
	width: 10em;
	background-color: #cccccc;
	text-align: center;
	}
	
/*display anchors asbuttons */
#menu a {
	color: black;
	text-decoration: none;
	dsplay: block;
	}
	
/* flash white on anchor hover */
#menu a:hover {
	background-color: white;
	}
	
/* colapse menus */
#menu li ul {
	display: none;
	}

/*show submenus on hover */	
#menu li:hover > ul {
	display: block;
	margn-left: -2em;
	}
	

#all {
	background-color:#D94038;
	border: 2px solid black;
	position: relative;
	width: 100%;
	height: 100%;
	}

/*creating head bgcolor*/
#head {
	color: #88D938;
	background-color: #D94038;
}

#head {
	border-bottom: 2px solid black;
	position: relative;
	left: 0%;
	top: 0%;
	width: 99.5%;
	height: 54%;
	text-align: center;
}

/*creating menu bgcolor*/

#menu {
	color: #278998;
	background-color: #D94038;
}

#menu {
	border: none;
	float: left;
	width: 18%
}

/*creating content bgcolor*/

#content {
	color: #88D938;
	background-color: #D94038;
}

#content {
	border: none;
	float: left;
	width: 74.5%;
}

#footer {
	color: #88D938;
	background-color: #D94038;
}

#footer {
	border-top: 2px solid black;
	clear:both;
	width: 99.5%;
	height: 20%;
	text-align: center;
}