blob: 223767b6f92652a40ed6b2d18c526ad8a830b699 (
plain) (
blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
a {
color: #C9C9C9;
text-decoration: none;
background-color : inherit;
}
a:link {
color: #C9C9C9;
text-decoration: none;
background-color : inherit;
}
a:visited {
color: #C9C9C9;
text-decoration: none;
background-color : inherit;
}
a:active {
color: #000;
text-decoration: none;
background-color : inherit;
}
a:hover {
color: #000;
text-decoration: underline;
background-color : inherit;
}
body {
margin: 0px 20px 20px 0px;
font-size: 11px;
font-family: Lucila, Arial, Helvetica;
background: #B1DAB2;
color: #000;
}
.tab a,
.tab a:link,
.tab a:visited {
background: transparent;
color: #C9C9C9;
text-decoration: none;
}
.tab a:hover,
.tab a:active {
background: transparent;
color: #748C33;
text-decoration: underline;
}
.header {
border-bottom: 1px solid #99C;
font-size: 37px;
font-family: Garamond, Lucila, Helvetica;
padding: 3px;
}
.content {
padding: 5px;
color: #424242;
}
|