body {
  min-width: 550px;  /* Minimum width we accept when the browser is resized*/
}

#container {
  padding-left: 200px;   /* Left Column width, fixed*/
  padding-right: 150px;  /* Right Column width, fixed */
}

#container .column {
  float: left;
  position: relative;
}

#center {
  width: 100%;	/* The central column has a variable width */
}

#left {
  width: 200px;        /* LC width */
  margin-left: -100%;  
  right: 200px;        /* LC width */
}

#right {
  width: 150px;          /* RC width */
  margin-right: -150px;  /* RC width */
}

#footer {
  clear: both;	/* We "clear" floated elements on both sides */
}
/* CSS Document */


