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
|
.panel {
overflow: hidden;
display: inline-block;
width: 95%;
transition: max-height 0.2s ease-out;
}
section#content {
padding: 1%;
width: 70%;
display: table-cell;
opacity: 1;
}
aside#left, aside#right {
width: 15%;
padding: 0 calc(0.1 * 15%) 0 calc(0.1 * 15%);
display: table-cell;
min-width: 15%;
}
div.section h1:after {
content: '\2014';
color: #496c94;
float: right;
margin-right: 1%;
}
div.section h1.active:after {
content: "+";
}
div.section h1 {
cursor: pointer;
background-color: #cde2e5;
display: table;
text-align: left;
width: 100%;
font-size: 1.17em;
padding: 5px 0 5px 10px;
box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2),
0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
div.section {
text-align: center;
margin: 0 2% 20px 2%;
width: 95%;
display: inline-block;
}
.panel {
padding: 15px 0 0 0;
}
div.boxright, div.boxleft {
margin: 0 0 20px 0;
background-color: white;
box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
padding: 30px;
text-align: center;
opacity: 1;
}
table {
text-align: left;
border: transparent;
width: 100%
}
tr, td {
border: transparent;
}
table.footnote {
table-layout: fixed;
padding: 15px 0 0 0;
text-align: left;
}
table.footnote :nth-child(1) {
width: 2em;
}
|