FUYU
2023-12-13 4488f711dbc01a8db6753907cae2ef4021dede68
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
body {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    background: #fff;
    min-width: 600px;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}
 
/* Header styles */
#header {
    clear: both;
    float: left;
    width: 100%;
    position: relative;
    height: 94px;
    top: 0px;
    padding: 0px;
    background-image: url('./images/logo.jpg');
    background-repeat: no-repeat;
    background-color: #292929;
}
 
/* 'widths' sub menu */
#layoutdims {
  clear: both;
  background: #eee;
  border-top: 4px solid #000;
  margin: 0;
  padding: 6px 15px !important;
  text-align: right;
}
 
/* column container */
.colmask {
    position: relative;  /* This fixes the IE7 overflow hidden bug */
    clear: both;
    float: left;
    width: 100%;     /* width of whole page */
    overflow: hidden;    /* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
    float: left;
    width: 100%;
    position: relative;
}
.col1,
.col2,
.col3 {
    float: left;
    position: relative;
    padding: 0 0 1em 0;
    overflow: hidden;
}
/* 2 Column (left menu) settings */
.leftmenu {
    background: #ffffff;    /* right column background colour */
}
.leftmenu .colleft {
    right: 75%;      /* right column width */
    background: #717171; /* left column background colour */
}
.leftmenu .col1 {
    width: 71%;      /* right column content width */
    left: 102%;      /* 100% plus left column left padding */
    margin-top: 20px;
}
.leftmenu .col2 {
    width: 21%;      /* left column content width (column width minus left and right padding) */
    left: 6%;      /* (right column left and right padding) plus (left column left padding) */
    margin-top: 20px;
}
 
/* Footer styles */
#footer {
    clear: both;
    float: left;
    width: 100%;
    border-top: 1px solid #000;
}
#footer p {
    padding: 10px;
    margin: 0;
}
 
 
div.nav {
    position:relative;
    top: 70px;
    text-align: right;
}
 
a.nav span {
    font-size: 11px;
    position: relative;
    bottom: 2px;
}
 
a.nav:visited {
    text-decoration: none;
    border: 0px;
    color: #aaaaaa;
}
 
a.nav, a.nav:link {
    border: 0px;
    text-decoration: none;
    font-family: Tahoma, "Helvetica Neue", "Trebuchet MS", Verdana, Arial, sans-serif;
    font-size: 16px;
    color: #aaaaaa; 
    margin-right: 11px;
}
 
a.nav:hover {
    text-decoration: none;
    border: 0px;
    color: #E0771C;
}
 
a.nav:active {
    text-decoration: none;
    border: 0px;
    color: #E0771C;
}
 
pre.code-block{
    background: #D8F4DC;
    border: 1px solid rgb(200, 200, 200);
    padding-top: 1em;
    padding-left: 3em;
    padding-bottom: 1em;
    margin-top: 1em;
    margin-bottom: 3em;
    
}
    
pre.code {
    border: 1px solid rgb(200, 200, 200);
    padding-top: 1em;
    padding-left: 3em;
    padding-bottom: 1em;
    margin-top: 1em;
    margin-bottom: 4em;
    
}
 
div.include {
    margin-bottom: 2em;
}
    
p {
    margin: 2em 0;
}
 
.jqplot-image-button {
    margin-bottom: 15px;
    margin-top: 15px;
}
 
div.jqplot-image-container {
    position: relative;
    z-index: 11;
    margin: auto;
    display: none;
    background-color: #ffffff;
    border: 1px solid #999;
    display: inline-block;
    margin-top: 25px;
}
 
div.jqplot-image-container-header {
    font-size: 1.0em;
    font-weight: bold;
    padding: 5px 15px;
    background-color: #eee;
}
 
div.jqplot-image-container-content {
    padding: 15px;
    background-color: #ffffff;
}
 
a.jqplot-image-container-close {
    float: right;
}
 
div.example-link {
    margin-bottom: 8px;
}
 
a.example-link {
    color: #ffffff;
}
 
div.example-plot {
    width: 500px;
    height: 300px;
}
 
.jqplot-table-legend-label {
    white-space: nowrap;
}
 
div.syntaxhighlighter {
    margin-top: 4em !important;
    margin-bottom: 3em !important;
}