blob: 5f14e85ef336bbf5223c98c670202737ce9a8420 (
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
123
124
125
126
127
128
129
130
131
132
133
|
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #FBDEE3;
width: 900px;
margin: auto;
}
.header {
margin-top: 40px;
margin-bottom: 50px;
text-align: center;
font-size: 72px;
text-shadow: 2px 2px #ADADAD;
font-family: pacifico;
}
.header > a {
color: #222222;
}
.header > a:hover {
color: #222222;
}
#content {
margin-top: 120px;
background-color: white;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
padding: 50px 80px 30px;
}
h1 {
font-size: 36px;
margin-bottom: 30px;
margin-left: 10px;
font-weight: bold;
color: #F52F8A;
}
h2 {
font-size: 26px;
margin-bottom: 30px;
margin-left: 10px;
color: #F52F8A;
font-weight: bold;
}
p {
margin-bottom: 30px;
text-indent: 30px;
line-height: 24px;
text-align: justify;
}
img {
display: block;
margin: auto;
margin-bottom: 30px;
}
ul {
margin-bottom: 30px;
counter-reset: list;
}
ol {
margin-bottom: 30px;
counter-reset: list;
}
ul ul { margin-bottom: 0px; }
ul ol { margin-bottom: 0px; }
ol ul { margin-bottom: 0px; }
ol ol { margin-bottom: 0px; }
li {
margin-left: 30px;
margin-bottom: 5px;
line-height: 24px;
text-align: justify;
}
ul > li:before {
content: "•";
color: #F52F8A;
position: relative;
left: -10px;
margin-left: -7px;
font-size: 18px;
}
ol li {
counter-increment: list;
position: relative;
}
ol > li:before {
content: counter(list) ".";
color: #F52F8A;
position: absolute;
left: -2.5em;
width: 2em;
text-align: right;
}
a {
text-decoration: none;
color: darkblue;
}
a:hover {
color: #4C4C80;
}
em {
font-style: italic;
}
strong {
font-weight: bold;
}
.contact {
background-color: #EEEEEE;
padding: 30px;
text-align: center;
color: #555555;
}
.waitCursor * {
cursor: wait !important;
}
|