/* The common layout definitions */
#header {
  position: relative;
  width: 100%;
  padding-top: 1em;
  height: 7em;
}

#wrapper {
  /*width: 90%; /* this can fixed or fluid */
  margin: 0 auto; /* NN will put content out of scrollable reach if auto is used unless there is a min-width on body too*/
}

#content-header {
  width: 100%;
}

#content-subnav {
  width: 100%;
}

#contentfloatholder {/* also makes the right "sliding" tab */
  float: left;
  width: 100%;
  position: relative;
}

#contentfloatholder:after {
 /* this is for NN6 to clear floats */
    content: "."; 
    display: block; 
    height: 0px;
    clear: both; 
    visibility: hidden;
}

