html{
background:#000;
}

#wrap {
width:900px;
background:#000;
margin:0 auto;
}

#header {
height:285px;
background:#000 url('images/header.png') no-repeat center;
padding:0;
}

#nav {
background:#000;
padding:0px;
}

#nav ul {
list-style:none;
margin:0;
padding:0;
}

#nav li {
display:inline;
margin:0;
padding:0;
}

#main {
min-height:400px;
float:left;
width:651px;
background:#E2DED2;
padding:10px;
}

h2 {
margin:0 0 1em;
}

#sidebar {
float:right;
width:200px;
background:#fff;
padding:10px;
}

#footer {
clear:both;
background:#000;
color:#FFF;
padding:5px 10px;
}

#footer p,h1 {
margin:0;
}

* html #footer {
height:1px;
}

/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:10px;
width:111px;
padding:7px 0;
color:#000;
background:#EF4E56;
text-decoration:none;
margin-right:1px;
text-align:center;
font-family:verdana, sans-serif;

}

/* style the links hover */
.menu :hover{
color:#444;
background:#d4d8bd;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:111px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;

}