1"html { \
2    display: block; \
3    height:100%; \
4    width:100%; \
5	position: relative; \
6} \
7 \
8head { \
9    display: none \
10} \
11 \
12meta { \
13    display: none \
14} \
15 \
16title { \
17    display: none \
18} \
19 \
20link { \
21    display: none \
22} \
23 \
24style { \
25    display: none \
26} \
27 \
28script { \
29    display: none \
30} \
31 \
32body { \
33	display:block;  \
34	margin:8px;  \
35    height:100%; \
36    width:100%; \
37} \
38 \
39p { \
40	display:block;  \
41	margin-top:1em;  \
42	margin-bottom:1em; \
43} \
44 \
45b, strong { \
46	display:inline;  \
47	font-weight:bold; \
48} \
49 \
50i, em { \
51	display:inline;  \
52	font-style:italic; \
53} \
54 \
55center  \
56{ \
57	text-align:center; \
58	display:block; \
59} \
60 \
61a:link \
62{ \
63	text-decoration: underline; \
64	color: #00f; \
65	cursor: pointer; \
66} \
67 \
68h1, h2, h3, h4, h5, h6, div { \
69	display:block; \
70} \
71 \
72h1 { \
73	font-weight:bold;  \
74	margin-top:0.67em;  \
75	margin-bottom:0.67em;  \
76	font-size: 2em; \
77} \
78 \
79h2 { \
80	font-weight:bold;  \
81	margin-top:0.83em;  \
82	margin-bottom:0.83em;  \
83	font-size: 1.5em; \
84} \
85 \
86h3 { \
87	font-weight:bold;  \
88	margin-top:1em;  \
89	margin-bottom:1em;  \
90	font-size:1.17em; \
91} \
92 \
93h4 { \
94	font-weight:bold;  \
95	margin-top:1.33em;  \
96	margin-bottom:1.33em \
97} \
98 \
99h5 { \
100	font-weight:bold;  \
101	margin-top:1.67em;  \
102	margin-bottom:1.67em; \
103	font-size:.83em; \
104} \
105 \
106h6 { \
107	font-weight:bold;  \
108	margin-top:2.33em;  \
109	margin-bottom:2.33em; \
110	font-size:.67em; \
111}  \
112 \
113br { \
114	display:inline-block; \
115} \
116 \
117br[clear=\"all\"] \
118{ \
119	clear:both; \
120} \
121 \
122br[clear=\"left\"] \
123{ \
124	clear:left; \
125} \
126 \
127br[clear=\"right\"] \
128{ \
129	clear:right; \
130} \
131 \
132span { \
133	display:inline \
134} \
135 \
136img { \
137	display: inline-block; \
138} \
139 \
140img[align=\"right\"] \
141{ \
142	float: right; \
143} \
144 \
145img[align=\"left\"] \
146{ \
147	float: left; \
148} \
149 \
150hr { \
151    display: block; \
152    margin-top: 0.5em; \
153    margin-bottom: 0.5em; \
154    margin-left: auto; \
155    margin-right: auto; \
156    border-style: inset; \
157    border-width: 1px \
158} \
159 \
160 \
161/***************** TABLES ********************/ \
162 \
163table { \
164    display: table; \
165    border-collapse: separate; \
166    border-spacing: 2px; \
167    border-top-color:gray; \
168    border-left-color:gray; \
169    border-bottom-color:black; \
170    border-right-color:black; \
171} \
172 \
173tbody, tfoot, thead { \
174	display:table-row-group; \
175	vertical-align:middle; \
176} \
177 \
178tr { \
179    display: table-row; \
180    vertical-align: inherit; \
181    border-color: inherit; \
182} \
183 \
184td, th { \
185    display: table-cell; \
186    vertical-align: inherit; \
187    border-width:1px; \
188    padding:1px; \
189} \
190 \
191th { \
192	font-weight: bold; \
193} \
194 \
195table[border] { \
196    border-style:solid; \
197} \
198 \
199table[border|=0] { \
200    border-style:none; \
201} \
202 \
203table[border] td, table[border] th { \
204    border-style:solid; \
205    border-top-color:black; \
206    border-left-color:black; \
207    border-bottom-color:gray; \
208    border-right-color:gray; \
209} \
210 \
211table[border|=0] td, table[border|=0] th { \
212    border-style:none; \
213} \
214 \
215caption { \
216	display: table-caption; \
217} \
218 \
219td[nowrap], th[nowrap] { \
220	white-space:nowrap; \
221} \
222 \
223tt, code, kbd, samp { \
224    font-family: monospace \
225} \
226 \
227pre, xmp, plaintext, listing { \
228    display: block; \
229    font-family: monospace; \
230    white-space: pre; \
231    margin: 1em 0 \
232} \
233 \
234/***************** LISTS ********************/ \
235 \
236ul, menu, dir { \
237    display: block; \
238    list-style-type: disc; \
239    margin-top: 1em; \
240    margin-bottom: 1em; \
241    margin-left: 0; \
242    margin-right: 0; \
243    padding-left: 40px \
244} \
245 \
246ol { \
247    display: block; \
248    list-style-type: decimal; \
249    margin-top: 1em; \
250    margin-bottom: 1em; \
251    margin-left: 0; \
252    margin-right: 0; \
253    padding-left: 40px \
254} \
255 \
256li { \
257    display: list-item; \
258} \
259 \
260ul ul, ol ul { \
261    list-style-type: circle; \
262} \
263 \
264ol ol ul, ol ul ul, ul ol ul, ul ul ul { \
265    list-style-type: square; \
266} \
267 \
268dd { \
269    display: block; \
270    margin-left: 40px; \
271} \
272 \
273dl { \
274    display: block; \
275    margin-top: 1em; \
276    margin-bottom: 1em; \
277    margin-left: 0; \
278    margin-right: 0; \
279} \
280 \
281dt { \
282    display: block; \
283} \
284 \
285ol ul, ul ol, ul ul, ol ol { \
286    margin-top: 0; \
287    margin-bottom: 0 \
288} \
289 \
290blockquote { \
291	display: block; \
292	margin-top: 1em; \
293	margin-bottom: 1em; \
294	margin-left: 40px; \
295	margin-left: 40px; \
296} \
297 \
298/*********** FORM ELEMENTS ************/ \
299 \
300form { \
301	display: block; \
302	margin-top: 0em; \
303} \
304 \
305option { \
306	display: none; \
307} \
308 \
309input, textarea, keygen, select, button, isindex { \
310	margin: 0em; \
311	color: initial; \
312	line-height: normal; \
313	text-transform: none; \
314	text-indent: 0; \
315	text-shadow: none; \
316	display: inline-block; \
317} \
318input[type=\"hidden\"] { \
319	display: none; \
320} \
321 \
322 \
323article, aside, footer, header, hgroup, nav, section  \
324{ \
325	display: block; \
326} \
327\
328small, sub, sup { font-size: 80%; } \
329sub, sup { position: relative; } \
330sub { top: +0.5em; } \
331sup { top: -0.5em; } \
332"
333