確認テスト【2−2】

<?xml version="1.0" encording="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="Content-style-Type" content="text/css"/>
<title>確認テスト2-2</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
#nav ul{
list-style-type: none;
}
#container{
width: 830px;
overflow: auto;
background-color: #e0ffff;
}
#header{
width: 800px;
height: 120px;
background-color: #ffff80;
margin: 10px 10px 10px 10px;
}
#nav ul{
width: 800px;
height: 60px;
background-color: #00ff00;
margin: 0 0 0 10px;
}
#nav li{
display: block;
float: left;
width: 159px;
height:60px;
border-left: solid 1px #000;
}
#nav  a{
	display: block;
	width: 160px;
	height: 60px;
	text-decoration: none;
}
#nav a:hover{
	background-color:#30C
}
#content{
width: 830px;
height: 370px;
clear: both;
margin: 0 0 10px 0;
}
#left{
float: left;
width: 200px;
height: 360px;
background-color: #ffc;
margin: 10px 0 10px 10px;
}
#right{
float: right;
width: 600px;
height: 360px;
background-color: #ffc0c0;
margin: 10px 10px 10px 10px;
}
#footer{
width: 800px;
height: 60px;
background-color: #e0e0e0;
margin: 10px 10px 10px 10px;
clear: both;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
</div>
<div id="nav">
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
</ul>
</div>
<div id="content">
<div id="left">
</div>
<div id="right">
</div>
</div>
<div id="footer">
</div>
</div>
</body>
</html>