1/* --------------------------------------------------------------
2
3   ie.css
4
5   Contains every hack for Internet Explorer,
6   so that our core files stay sweet and nimble.
7
8-------------------------------------------------------------- */
9
10/* Make sure the layout is centered in IE5 */
11body { text-align: center; }
12.container { text-align: left; }
13
14/* Fixes IE margin bugs */
15* html .column { overflow-x: hidden; }
16
17
18/* Elements
19-------------------------------------------------------------- */
20
21/* Fixes incorrect styling of legend in IE6. */
22* html legend { margin:-18px -8px 16px 0; padding:0; }
23
24/* Fixes incorrect placement of ol numbers in IE6/7. */
25ol { margin-left:2em; }
26
27/* Fixes wrong line-height on sup/sub in IE. */
28sup { vertical-align: text-top; }
29sub { vertical-align: text-bottom; }
30
31/* Fixes IE7 missing wrapping of code elements. */
32html>body p code { *white-space: normal; }
33
34/* IE 6&7 has problems with setting proper <hr> margins. */
35hr  { margin: -8px auto 11px; }
36