/*
Works around IE8 bug where article images are stretched vertically (this bug I think: http://bytes.com/topic/html-css/answers/870359-ie8-display-table-cell-max-width-bug). The workaround is to fix the image width/height rather than scaling it - but the scaling is becoming less important anyway as 1024x768 becomes standard (and we're moving to non-fluid soon anyway).
*/
.articleImage { width: auto; }

#centreColumn { overflow: visible; }

.code, .samp { font-size: .8em; } /* code box text looks ridiculously big otherwise */

/* Stop IE8 treating max-height: 30em as height: 30em in this context */
/* .articleResponseBody .code, .postContent .code { max-height: 15em; } */
/* NO: overflow: scroll breaks IE8 completely and forces it into compatibility view! Stupid browser... */
/* .articleResponseBody .code, .postContent .code { overflow: scroll; } */


#followTab { 
  background: url('/res/Image/v4/follow-tab/ie-gradient.png');
}

/* If there's a horiz scroll, IE8 makes max-height = height. Duh! OK in IE7 & IE9. */
/* http://edskes.net/ie8expandingboxmaxheightbug.htm */
.syntaxhighlighter { max-height: inherit; }
