• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1ul {
2	list-style-type:disc;
3}
4ul ul {
5	list-style-type:circle;
6}
7
8div#notes {
9	font-style:italic;
10}
11
12table.invisible {
13	border-spacing:0;
14}
15
16table#interlace td {
17	text-align:center;
18}
19
20div.hiddenparagraph {
21	display:none;
22}
23
24@media not print {
25	a[href*="#"] {
26		text-decoration:none;
27		color:blue;
28	}
29
30	span.rcomp {
31		background:#FAA;
32	}
33	span.gcomp {
34		background:#8F8;
35	}
36	span.bcomp {
37		background:#BBF;
38	}
39
40	h2 span {
41		font-size:small;
42		font-weight:normal;
43		text-decoration:underline;
44	}
45
46	div.togglevisall span {
47		font-weight:bold;
48		text-decoration:underline;
49	}
50}
51
52@media print {
53	table,
54	li {
55		page-break-inside:avoid;
56	}
57
58	h2 span,
59	div.togglevisall {
60		display:none;
61	}
62}
63