/**
 * Undo the strange <span:display=inline-block> created by BrightcoveExperiences.js
 * This causes complete layout failure for both IE8 and IE9. This is most probably
 * because the flash region tries to render using width & height set to 100% - I
 * don't know enough about the video player at this time to be confident in removing
 * these percent values. So for the timebeing, switching IE to use "block" fixes the issue.
 */
#zone-content #region-content .field-name-field-brightcove-id span {
  display: block !important;
}