blob: cccf44239f8e39e5e5a1b9ae5599cd46203a9dd6 (
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 {
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;
}
pre {
overflow: auto;
}
div#wrapper {
position: relative;
width: 909px;
margin: 0 auto;
text-align: left;
}
div#header {
height: 224px;
}
div#main_navigation ul {
margin-left: 0;
padding-left: 0;
}
div#main_navigation li {
list-style-type: none;
}
div#main_navigation a {
text-decoration: none;
font-size: 18px;
color: #d1d1d1;
}
div#main_navigation a:hover {
color: #535353;
}
div#main_navigation a.active {
color: #535353;
font-size: 22px;
}
div#frontpage_calendar {
}
div#frontpage_calendar h2 {
border-top: 2px solid #000000;
border-bottom: 2px dashed #000000;
font-size: 18px;
padding-top: 2px;
padding-bottom: 2px;
}
div.author_and_date {
font-style: italic;
}
div#left_column {
position: absolute;
background-image: url(/images/left_column.png);
background-position: top right;
background-repeat: no-repeat;
left: 0px;
width: 145px;
min-height: 100px;
text-align: right;
padding-right: 40px;
}
div#center_column {
position: absolute;
background-color: #ffffff;
left: 185px;
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;
}
div.teaser_ruler {
border-top: 2px solid #000000;
border-bottom: 2px dashed #000000;
height: 3px;
margin-top: 30px;
}
div.article_partial h2 a {
text-decoration: none;
}
div.article_partial p.excerpt {
color: #404040;
}
|