/* Normally Bootstrap classes would be used to control the top two column widths
   but Bootstrap V 2.3.2 doesn't allow different columns per display width. The
   top two columns need to stack as soon as BS 2.3.2 become fluid, which is at a
   width greater than when BS stacks. */
.panel-binomial .panel-top-left {
  margin-bottom: 21px;
}
@media (min-width: 980px) {
  .panel-binomial .panel-top-left {
    margin-bottom: 0;
    float: left;
    width: 220px;
  }
}
@media (min-width: 1200px) {
  .panel-binomial .panel-top-left {
    width: 270px;
  }
}

@media (min-width: 980px) {
  .panel-binomial .panel-top-right {
    float: right;
    width: 700px;
  }
}
@media (min-width: 1200px) {
  .panel-binomial .panel-top-right {
    width: 870px;
  }
}

