First, you should start off with this basic structure.
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="styles.css"> <!-- include your external css here -->
</head>
<body>
<div id="container">
<div id="header">
<a href="index.html"><img src="logo.jpg" alt="My Company"></a> <!-- standard practice to make logos a link back to homepage -->
<ul id="nav">
<li>Home</li>
<li>Products</li>
<li>XYZ</li>
<li>Features</li>
</ul>
<ul id="contentNav">
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
</div>
<div id="content">
</div>
</div>
<script type="text/javascript" src="scripts.js"></script> <!-- include your javascript here, if any -->
</body>
</html>
Once you have the template, you can start building your CSS. While I wont style the entire page for you, a will give you a few pointers on what to do...
In order to achieve the > effect in between the ULs, you can either use <li> > </li> or you can place an image of > as a background-image of the li items. If you choose the former you will need to play around with padding to get the position just right, if you choose the later you will need to add extra classes to the li items to determine which get the background and which shouldn't.
In order to get the inner border effect, just give a border to the div id="content".
To get the content Nav to intersect the content border, you need to take it out of the flow of the document with absolute positioning.
In order to get the content nav to have the style you want, just apply a border to to the li and apply the rollover effects using the :link :visited: :hover :focus :active pseudo-classes.