blob: d3d156c897ef58f4c0c76e832c5eb9b11445d8f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
html {
background-color: white;
color: black;
font-family: Arial, sans-serif;
text-align: justify;
}
a {
color: inherit;
background-color: inherit;
}
a:link {
color: #0000e0;
}
a:visited {
color: #8000a0;
}
a:hover {
color: red;
}
img {
border-style: none;
}
p.footer {
clear: both;
border-top-style: solid;
border-top-width: 1px;
padding-top: 1ex;
text-align: center;
font-size: smaller;
}
li {
text-align: left;
}
|