/*----------------------------------------------------------------------
  FILENAME: ie7-fixes.css
  DESCRIPTION: Styles defined here only apply to IE 7.
----------------------------------------------------------------------*/

/* Fixes previous blocks from disappearing */
.mediaQuestion ul {
    height: 1%;
}

/* Fixes disappearing imgBlock */
.imgBlock {
    border: 1px solid transparent;
}

/* Fixes disappearing list numbers */
.mediaItem .tabbedArea {
    display: inline;
}

.scrollable {
    position: relative;
}

/* needed to get the tops of the two columns to align after fieldset hack */
.col_2-2 {
    width: 49.9%;
}

/* IE won't correctly detect width of inline element */
._tdCrushInner {
    display: block;
}

/* Make spacing between legend and fielset consistent */
form fieldset {
    padding-top: 2em;
}

/* Floating the close button expands the containing block.  Need to use an
  alternative method */
#linkUsage .close {
    float: none;
    position: absolute;
    right: 0;
    margin-right: 0.5em;
}

#qrCode .close {
    float: none;
    position: absolute;
    right: 0;
    margin-right: 0.5em;
}

/* Without this, empty areas of the div do not pickup a click event. */
.expandSelf {
    height: 1%;
}

.getCode .section.mediaConfig {
    margin-top: 2em;
}

/* Removes the space between the tabs and the tab area */
.tabs {
    height: 1%;
}

/* Prevents the textarea from clearing a floated block */
.htmlUrl, .jsCode, .htmlCode, .linkUrl {
    height: 1%;
}

/* A lazy fix for a single select box that will most likely be too wide for 
  the browser window */
#fldCountries {
    width: 100%;
}

