blob: 8a7f4960d1e72a8ff1fff7390db65df8ecf15393 (
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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
body {
font-family: Verdana, Helvetica, sans-serif;
font-size: .9em;
color: #230100;
background-color: #f7f4d3;
margin: 0;
}
.content {
text-align: center;
}
.content > * {
background-color: #e5bf5e;
border: solid 2px;
padding: .2em 1em .2em 1em;
margin: 1em;
text-align: left;
}
textarea, select, input {
background-color: #ffec9e;
border: 1px solid;
padding: 1px 3px 1px 3px;
}
.menu {
text-align: right;
background-color: #e5bf5e;
padding: 3px;
border-bottom: solid 2px;
}
a {
color: black;
text-decoration: none;
}
h1 {
margin-top: 1em;
}
hr {
border: solid 1px;
}
a img {
border: none;
}
.expand {
}
.expand h1 {
font-size: 1em;
cursor: pointer;
margin: 0;
}
.expand h1 span {
margin-left: 2em;
margin-right: 2em;
}
.center {
text-align: center;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.highlight {
}
.fleft {
margin-right: 2em;
float: left;
}
.fright {
float: left;
}
.cleft {
clear:left;
}
.cright {
clear:right;
}
.both {
clear:both;
}
.drawing {
border-collapse:collapse
}
.drawing .images {
height: 100px;
}
.drawing .images td {
padding: 0px;
width: 100px;
}
.drawing tr .left {
text-align: left;
}
.drawing tr .right {
text-align: right;
}
|