blob: 1c58f05bbd9cc1bbc3eb0c25276787fff08cb625 (
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
|
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #CCCCCC;
}
h1 {
}
h3 {
font-size: 12pt;
font-family: sans-serif;
}
p, li {
font-size: 10pt;
font-family: sans-serif;
}
a {
color: #000000;
text-decoration: underline;
font-family: sans-serif;
}
ul {
margin: 0px 0px 0px 16px;
}
header {
background-color: #336699;
padding: 0px;
border-bottom: 4px solid #CC0033;
height: 64px;
}
header .logo {
width: 64px;
height: 64px;
font-size: 24pt;
text-align: center;
float: left;
line-height: 64px;
}
header div.nav {
margin: 0px 0px 0px 64px;
position: relative;
}
header ul {
height: 32px;
width: 100%;
line-height: 32px;
list-style-type: none;
margin: 0px;
padding: 0px;
position: absolute;
left: 0px;
top: 0px;
}
header ul li {
float: left;
margin: 0px;
}
header ul li a {
display: block;
font-weight: bold;
font-size: 12pt;
margin: 0px;
padding: 0px 8px 0px 8px;
text-decoration: none;
}
header ul li:hover {
background-color: #6699CC;
}
header ul li ul {
display: none;
height: 32px;
line-height: 32px;
position: absolute;
left: 0px;
top: 32px;
margin: 0px;
}
header ul li:hover ul {
display: block;
}
header ul li ul li a {
background-color: #6699CC;
}
header ul li a:hover {
color: #CCCC33;
}
div.wrapper div {
border: 2px solid #333333;
margin: 8px;
}
div.wrapper div h3 {
background-color: #333333;
color: #FFFFFF;
padding: 2px;
}
div.wrapper div p, div.wrapper div ul {
padding: 8px;
}
div.main {
margin-right: 292px;
}
div.sidebar {
float: right;
width: 300px;
}
footer {
margin: 8px;
clear: both;
}
footer p {
font-size: 8pt;
text-align: right;
}
|