1/* some pages also use their own CSS files, so: NO CUSTOM CLASS NAMES HERE */ 2 3body { 4 background:white; 5 color:black; 6 font-family:sans-serif; 7} 8 9table { 10 background:black; 11 border-spacing:2px; 12} 13th, td { 14 padding:3px 5px; 15 vertical-align:middle; 16 empty-cells:show; 17} 18th { 19 background:silver; 20} 21td { 22 background:white; 23} 24 25h1 { 26 text-align:center; 27} 28pre, tt { 29 font-size:120%; 30} 31abbr { 32 text-decoration:underline; 33} 34 35@media print { 36 .noprint { 37 display:none; 38 } 39 a[href] { 40 color:black; 41 text-decoration:none; 42 } 43} 44