* {
	margin: 0;
	padding: 0;
}

ul li {
	background: pink;
	position: relative;
	float: left;
	padding: 5px;
	list-style: none;
}

li ul {
	display: none;
}

ul li a {
	text-decoration: none;
}

li:hover ul {
	display: block;
}

li:hover li {
	float: none;
}

p {
	font-size: 23px;
	font-weight: bold;
}

.body {
	width: 908px;
	margin: auto;
	border: 4px black dashed;
	text-align: center;
	font-size: 23px;
	font-weight: bold;
}

.header {
	width: 900px;
	color: blue;
	border: 4px blue dotted;
	background-color: #CEF3FF;
}

.left {
	width: 200px;
	height: 250px;
	color: red;
	border: 4px red dotted;
	background-color: #FDE0E1;
	float: left;
}

.center {
	width: 484px;
	height: 250px;
	color: green;
	border: 4px green dotted;
	background-color: #CFFFE3;
	float: left;
}

.right {
	width: 200px;
	height: 250px;
	color: orange;
	border: 4px orange dotted;
	background-color: #FFFBCF;
	float: right;
}

.footer {
	width: 900px;
	color: brown;
	border: 4px brown dotted;
	background-color: #FFE2CD;
}

.f1 {
	width: 300px;
	float: left;
}

.f2 {
	width: 300px;
	float: left;
}

.f3 {
	width: 300px;
	float: left;
}

#logo {	
	border: 3px solid black;
	position: relative;
	width: 150px;
	height: 90px;
	top: 5px;
	left: 30px;
	float: left;
}

#banner {
	border: 3px solid black;
	position: relative;
	width: 600px;
	height: 100px;
	right: 10 px;
	float: right;
}

.clear {
	clear: both;
}