blob: bacdbd6644d8a5be60344e1b9912e769d63bfd71 (
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
|
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#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.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: 185px;
min-height: 100px;
}
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 p.excerpt {
color: #404040;
}
|