blob: ff0044dd770f6e7c90080b82c168b435d995011a (
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
|
body {
margin: 0;
padding: 0;
text-align: center;
font-family: Verdana, sans-serif;
font-size: 10pt;
}
a {
color: #000000;
}
a:visited {
color: #000000;
}
a:hover {
color: #ff9600;
}
div#wrapper {
position: relative;
width: 909px;
margin: 0 auto;
text-align: left;
}
div#header {
height: 224px;
}
div.author_and_date {
font-style: italic;
}
div#left_column {
position: absolute;
background-color: #f1f1f1;
left: 0px;
width: 177px;
height: 100px;
}
div#center_column {
position: absolute;
background-color: #ffffff;
left: 177px;
width: 528px;
padding-left: 15px;
padding-right: 15px;
}
div#center_column h2 a {
font-size: 12pt;
}
div#right_column {
position: absolute;
background-color: #f1f1f1;
left: 735px;
width: 174px;
height: 100px;
}
|