/* NAVBAR */

/* !CPU HIGH, fix for IE6 shake when scroll */
* html,* html body {
    _background-image:url(about:blank);
    _background-attachment:fixed;
  }
  /* !CPU HIGH, fix for IE6 not support fixed position */
  .navbar-fixed-top {
    _position:absolute;
    _bottom:auto;
    _top:expression(eval(document.documentElement.scrollTop));
  }
  /* !CPU HIGH, fix for IE6 not support fixed position */
  .navbar-fixed-bottom {
    _position:absolute;
    _bottom:auto;
    _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));
  }
  
  /* DROPDOWN */
  .dropup,
  .dropdown {
    *zoom:1;
  }
  
  /* CLOSE 调整 IE6 中关闭按钮的字体大小（可能因默认字体问题导致显示异常）。*/
  .close {
    _font-size: 15px;
  }
  
  /* 修复 IE6/7 中标题的显示模式，并触发 hasLayout。 */
  .modal-header h3 {
    *display: inline;
    *zoom:1;
  }
  
  /* MODALS */
  /* 用表达式动态设置背景层的宽高为整个页面滚动区域的尺寸（IE6 不支持全屏覆盖）。 */
  .modal-backdrop {
    _position: absolute;
    _top:0;
    _margin-top:0;
    _width:expression(eval(document.documentElement.scrollWidth));
    _height:expression(eval(document.documentElement.scrollHeight));
  }
  
  /* 模拟模态框在滚动时居中固定。 */
  .modal {
    _position:absolute;
    _top:0;
    _margin-top:0;
    _top:expression(eval(document.documentElement.scrollTop));
  }
  
  
  
  /* filter: alpha(opacity=...) 是 IE6 的透明度实现方式（标准 CSS 使用 opacity）。 */
  .modal.fade.in {
    _filter:alpha(opacity=100);
  }
  .modal-backdrop {
    _filter: alpha(opacity=80);
  }
  
  
  /* 如果内容超过 400px，则固定高度为 400px 并显示滚动条（避免溢出问题）。 */
  .modal-body {
    _height:expression(this.scrollHeight > 400 ? "400px" : "auto");
  }
  