div#container {
  overflow: scroll;
  /* if you don't want a scrollbar, set to hidden */
  overflow-x: hidden;
  /* hides horizontal scrollbar on newer browsers */
  overflow-y: hidden;
  /* resize and min-height are optional, allows user to resize viewable area */
  -webkit-resize: vertical;
  -moz-resize: vertical;
  resize: vertical;
}

iframe#embed {
  width: 100%;
  /* set this to approximate width of entire page you're embedding */
  height: 2340px;
  /* determines where the bottom of the page cuts off */
  margin-left: unset;
  /* clipping left side of page */
  margin-top: -119px;
  /* clipping top of page */
  overflow: hidden;
  margin-bottom: -600px;
  /* resize seems to inherit in at least Firefox */
  -webkit-resize: none;
  -moz-resize: none;
  resize: none;
}
