The layer (Front-Page) styles are rephrased as div and div1 respectively.

The code in the last style

/* CSS layout */
#masthead {
position: relative;
width: 100%;
}

#top_left {
width: 200px;
position: absolute;
left: 0px;
top: 0px;
}

#header {
margin-left:200px;
}

#container {
position: relative;
width: 100%;
}

#left_col {
width: 200px;
position: absolute;
left: 0px;
top: 0px;
}

#page_content {
margin-right: 200px;
margin-left: 200px;
}

#right_col {
width: 200px;
position: absolute;
right: 0px;
top: 0px;
}

#footer {
}
 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>Untitled 2</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="Untitled_2.css" />
</head>

<body>

<div id="masthead">
<div id="top_left">
</div>
<div id="header">
</div>
</div>
<div id="container">
<div id="left_col">
</div>
<div id="page_content">
</div>
<div id="right_col">
</div>
</div>
<div id="footer">
</div>

</body>

</html>