##// END OF EJS Templates
Merge pull request #7139 from jdfreder/widget-space-fix...
Min RK -
r19397:ec25dd92 merge
parent child Browse files
Show More
@@ -1,1562 +1,1558 b''
1 /*!
1 /*!
2 *
2 *
3 * IPython base
3 * IPython base
4 *
4 *
5 */
5 */
6 .modal.fade .modal-dialog {
6 .modal.fade .modal-dialog {
7 -webkit-transform: translate(0, 0);
7 -webkit-transform: translate(0, 0);
8 -ms-transform: translate(0, 0);
8 -ms-transform: translate(0, 0);
9 transform: translate(0, 0);
9 transform: translate(0, 0);
10 }
10 }
11 code {
11 code {
12 color: #000000;
12 color: #000000;
13 }
13 }
14 pre {
14 pre {
15 font-size: inherit;
15 font-size: inherit;
16 line-height: inherit;
16 line-height: inherit;
17 }
17 }
18 label {
18 label {
19 font-weight: normal;
19 font-weight: normal;
20 }
20 }
21 .border-box-sizing {
21 .border-box-sizing {
22 box-sizing: border-box;
22 box-sizing: border-box;
23 -moz-box-sizing: border-box;
23 -moz-box-sizing: border-box;
24 -webkit-box-sizing: border-box;
24 -webkit-box-sizing: border-box;
25 }
25 }
26 .corner-all {
26 .corner-all {
27 border-radius: 4px;
27 border-radius: 4px;
28 }
28 }
29 .no-padding {
29 .no-padding {
30 padding: 0px;
30 padding: 0px;
31 }
31 }
32 /* Flexible box model classes */
32 /* Flexible box model classes */
33 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
33 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
34 /* This file is a compatability layer. It allows the usage of flexible box
34 /* This file is a compatability layer. It allows the usage of flexible box
35 model layouts accross multiple browsers, including older browsers. The newest,
35 model layouts accross multiple browsers, including older browsers. The newest,
36 universal implementation of the flexible box model is used when available (see
36 universal implementation of the flexible box model is used when available (see
37 `Modern browsers` comments below). Browsers that are known to implement this
37 `Modern browsers` comments below). Browsers that are known to implement this
38 new spec completely include:
38 new spec completely include:
39
39
40 Firefox 28.0+
40 Firefox 28.0+
41 Chrome 29.0+
41 Chrome 29.0+
42 Internet Explorer 11+
42 Internet Explorer 11+
43 Opera 17.0+
43 Opera 17.0+
44
44
45 Browsers not listed, including Safari, are supported via the styling under the
45 Browsers not listed, including Safari, are supported via the styling under the
46 `Old browsers` comments below.
46 `Old browsers` comments below.
47 */
47 */
48 .hbox {
48 .hbox {
49 /* Old browsers */
49 /* Old browsers */
50 display: -webkit-box;
50 display: -webkit-box;
51 -webkit-box-orient: horizontal;
51 -webkit-box-orient: horizontal;
52 -webkit-box-align: stretch;
52 -webkit-box-align: stretch;
53 display: -moz-box;
53 display: -moz-box;
54 -moz-box-orient: horizontal;
54 -moz-box-orient: horizontal;
55 -moz-box-align: stretch;
55 -moz-box-align: stretch;
56 display: box;
56 display: box;
57 box-orient: horizontal;
57 box-orient: horizontal;
58 box-align: stretch;
58 box-align: stretch;
59 /* Modern browsers */
59 /* Modern browsers */
60 display: flex;
60 display: flex;
61 flex-direction: row;
61 flex-direction: row;
62 align-items: stretch;
62 align-items: stretch;
63 }
63 }
64 .hbox > * {
64 .hbox > * {
65 /* Old browsers */
65 /* Old browsers */
66 -webkit-box-flex: 0;
66 -webkit-box-flex: 0;
67 -moz-box-flex: 0;
67 -moz-box-flex: 0;
68 box-flex: 0;
68 box-flex: 0;
69 /* Modern browsers */
69 /* Modern browsers */
70 flex: none;
70 flex: none;
71 }
71 }
72 .vbox {
72 .vbox {
73 /* Old browsers */
73 /* Old browsers */
74 display: -webkit-box;
74 display: -webkit-box;
75 -webkit-box-orient: vertical;
75 -webkit-box-orient: vertical;
76 -webkit-box-align: stretch;
76 -webkit-box-align: stretch;
77 display: -moz-box;
77 display: -moz-box;
78 -moz-box-orient: vertical;
78 -moz-box-orient: vertical;
79 -moz-box-align: stretch;
79 -moz-box-align: stretch;
80 display: box;
80 display: box;
81 box-orient: vertical;
81 box-orient: vertical;
82 box-align: stretch;
82 box-align: stretch;
83 /* Modern browsers */
83 /* Modern browsers */
84 display: flex;
84 display: flex;
85 flex-direction: column;
85 flex-direction: column;
86 align-items: stretch;
86 align-items: stretch;
87 }
87 }
88 .vbox > * {
88 .vbox > * {
89 /* Old browsers */
89 /* Old browsers */
90 -webkit-box-flex: 0;
90 -webkit-box-flex: 0;
91 -moz-box-flex: 0;
91 -moz-box-flex: 0;
92 box-flex: 0;
92 box-flex: 0;
93 /* Modern browsers */
93 /* Modern browsers */
94 flex: none;
94 flex: none;
95 }
95 }
96 .hbox.reverse,
96 .hbox.reverse,
97 .vbox.reverse,
97 .vbox.reverse,
98 .reverse {
98 .reverse {
99 /* Old browsers */
99 /* Old browsers */
100 -webkit-box-direction: reverse;
100 -webkit-box-direction: reverse;
101 -moz-box-direction: reverse;
101 -moz-box-direction: reverse;
102 box-direction: reverse;
102 box-direction: reverse;
103 /* Modern browsers */
103 /* Modern browsers */
104 flex-direction: row-reverse;
104 flex-direction: row-reverse;
105 }
105 }
106 .hbox.box-flex0,
106 .hbox.box-flex0,
107 .vbox.box-flex0,
107 .vbox.box-flex0,
108 .box-flex0 {
108 .box-flex0 {
109 /* Old browsers */
109 /* Old browsers */
110 -webkit-box-flex: 0;
110 -webkit-box-flex: 0;
111 -moz-box-flex: 0;
111 -moz-box-flex: 0;
112 box-flex: 0;
112 box-flex: 0;
113 /* Modern browsers */
113 /* Modern browsers */
114 flex: none;
114 flex: none;
115 width: auto;
115 width: auto;
116 }
116 }
117 .hbox.box-flex1,
117 .hbox.box-flex1,
118 .vbox.box-flex1,
118 .vbox.box-flex1,
119 .box-flex1 {
119 .box-flex1 {
120 /* Old browsers */
120 /* Old browsers */
121 -webkit-box-flex: 1;
121 -webkit-box-flex: 1;
122 -moz-box-flex: 1;
122 -moz-box-flex: 1;
123 box-flex: 1;
123 box-flex: 1;
124 /* Modern browsers */
124 /* Modern browsers */
125 flex: 1;
125 flex: 1;
126 }
126 }
127 .hbox.box-flex,
127 .hbox.box-flex,
128 .vbox.box-flex,
128 .vbox.box-flex,
129 .box-flex {
129 .box-flex {
130 /* Old browsers */
130 /* Old browsers */
131 /* Old browsers */
131 /* Old browsers */
132 -webkit-box-flex: 1;
132 -webkit-box-flex: 1;
133 -moz-box-flex: 1;
133 -moz-box-flex: 1;
134 box-flex: 1;
134 box-flex: 1;
135 /* Modern browsers */
135 /* Modern browsers */
136 flex: 1;
136 flex: 1;
137 }
137 }
138 .hbox.box-flex2,
138 .hbox.box-flex2,
139 .vbox.box-flex2,
139 .vbox.box-flex2,
140 .box-flex2 {
140 .box-flex2 {
141 /* Old browsers */
141 /* Old browsers */
142 -webkit-box-flex: 2;
142 -webkit-box-flex: 2;
143 -moz-box-flex: 2;
143 -moz-box-flex: 2;
144 box-flex: 2;
144 box-flex: 2;
145 /* Modern browsers */
145 /* Modern browsers */
146 flex: 2;
146 flex: 2;
147 }
147 }
148 .box-group1 {
148 .box-group1 {
149 /* Deprecated */
149 /* Deprecated */
150 -webkit-box-flex-group: 1;
150 -webkit-box-flex-group: 1;
151 -moz-box-flex-group: 1;
151 -moz-box-flex-group: 1;
152 box-flex-group: 1;
152 box-flex-group: 1;
153 }
153 }
154 .box-group2 {
154 .box-group2 {
155 /* Deprecated */
155 /* Deprecated */
156 -webkit-box-flex-group: 2;
156 -webkit-box-flex-group: 2;
157 -moz-box-flex-group: 2;
157 -moz-box-flex-group: 2;
158 box-flex-group: 2;
158 box-flex-group: 2;
159 }
159 }
160 .hbox.start,
160 .hbox.start,
161 .vbox.start,
161 .vbox.start,
162 .start {
162 .start {
163 /* Old browsers */
163 /* Old browsers */
164 -webkit-box-pack: start;
164 -webkit-box-pack: start;
165 -moz-box-pack: start;
165 -moz-box-pack: start;
166 box-pack: start;
166 box-pack: start;
167 /* Modern browsers */
167 /* Modern browsers */
168 justify-content: flex-start;
168 justify-content: flex-start;
169 }
169 }
170 .hbox.end,
170 .hbox.end,
171 .vbox.end,
171 .vbox.end,
172 .end {
172 .end {
173 /* Old browsers */
173 /* Old browsers */
174 -webkit-box-pack: end;
174 -webkit-box-pack: end;
175 -moz-box-pack: end;
175 -moz-box-pack: end;
176 box-pack: end;
176 box-pack: end;
177 /* Modern browsers */
177 /* Modern browsers */
178 justify-content: flex-end;
178 justify-content: flex-end;
179 }
179 }
180 .hbox.center,
180 .hbox.center,
181 .vbox.center,
181 .vbox.center,
182 .center {
182 .center {
183 /* Old browsers */
183 /* Old browsers */
184 -webkit-box-pack: center;
184 -webkit-box-pack: center;
185 -moz-box-pack: center;
185 -moz-box-pack: center;
186 box-pack: center;
186 box-pack: center;
187 /* Modern browsers */
187 /* Modern browsers */
188 justify-content: center;
188 justify-content: center;
189 }
189 }
190 .hbox.baseline,
190 .hbox.baseline,
191 .vbox.baseline,
191 .vbox.baseline,
192 .baseline {
192 .baseline {
193 /* Old browsers */
193 /* Old browsers */
194 -webkit-box-pack: baseline;
194 -webkit-box-pack: baseline;
195 -moz-box-pack: baseline;
195 -moz-box-pack: baseline;
196 box-pack: baseline;
196 box-pack: baseline;
197 /* Modern browsers */
197 /* Modern browsers */
198 justify-content: baseline;
198 justify-content: baseline;
199 }
199 }
200 .hbox.stretch,
200 .hbox.stretch,
201 .vbox.stretch,
201 .vbox.stretch,
202 .stretch {
202 .stretch {
203 /* Old browsers */
203 /* Old browsers */
204 -webkit-box-pack: stretch;
204 -webkit-box-pack: stretch;
205 -moz-box-pack: stretch;
205 -moz-box-pack: stretch;
206 box-pack: stretch;
206 box-pack: stretch;
207 /* Modern browsers */
207 /* Modern browsers */
208 justify-content: stretch;
208 justify-content: stretch;
209 }
209 }
210 .hbox.align-start,
210 .hbox.align-start,
211 .vbox.align-start,
211 .vbox.align-start,
212 .align-start {
212 .align-start {
213 /* Old browsers */
213 /* Old browsers */
214 -webkit-box-align: start;
214 -webkit-box-align: start;
215 -moz-box-align: start;
215 -moz-box-align: start;
216 box-align: start;
216 box-align: start;
217 /* Modern browsers */
217 /* Modern browsers */
218 align-items: flex-start;
218 align-items: flex-start;
219 }
219 }
220 .hbox.align-end,
220 .hbox.align-end,
221 .vbox.align-end,
221 .vbox.align-end,
222 .align-end {
222 .align-end {
223 /* Old browsers */
223 /* Old browsers */
224 -webkit-box-align: end;
224 -webkit-box-align: end;
225 -moz-box-align: end;
225 -moz-box-align: end;
226 box-align: end;
226 box-align: end;
227 /* Modern browsers */
227 /* Modern browsers */
228 align-items: flex-end;
228 align-items: flex-end;
229 }
229 }
230 .hbox.align-center,
230 .hbox.align-center,
231 .vbox.align-center,
231 .vbox.align-center,
232 .align-center {
232 .align-center {
233 /* Old browsers */
233 /* Old browsers */
234 -webkit-box-align: center;
234 -webkit-box-align: center;
235 -moz-box-align: center;
235 -moz-box-align: center;
236 box-align: center;
236 box-align: center;
237 /* Modern browsers */
237 /* Modern browsers */
238 align-items: center;
238 align-items: center;
239 }
239 }
240 .hbox.align-baseline,
240 .hbox.align-baseline,
241 .vbox.align-baseline,
241 .vbox.align-baseline,
242 .align-baseline {
242 .align-baseline {
243 /* Old browsers */
243 /* Old browsers */
244 -webkit-box-align: baseline;
244 -webkit-box-align: baseline;
245 -moz-box-align: baseline;
245 -moz-box-align: baseline;
246 box-align: baseline;
246 box-align: baseline;
247 /* Modern browsers */
247 /* Modern browsers */
248 align-items: baseline;
248 align-items: baseline;
249 }
249 }
250 .hbox.align-stretch,
250 .hbox.align-stretch,
251 .vbox.align-stretch,
251 .vbox.align-stretch,
252 .align-stretch {
252 .align-stretch {
253 /* Old browsers */
253 /* Old browsers */
254 -webkit-box-align: stretch;
254 -webkit-box-align: stretch;
255 -moz-box-align: stretch;
255 -moz-box-align: stretch;
256 box-align: stretch;
256 box-align: stretch;
257 /* Modern browsers */
257 /* Modern browsers */
258 align-items: stretch;
258 align-items: stretch;
259 }
259 }
260 div.error {
260 div.error {
261 margin: 2em;
261 margin: 2em;
262 text-align: center;
262 text-align: center;
263 }
263 }
264 div.error > h1 {
264 div.error > h1 {
265 font-size: 500%;
265 font-size: 500%;
266 line-height: normal;
266 line-height: normal;
267 }
267 }
268 div.error > p {
268 div.error > p {
269 font-size: 200%;
269 font-size: 200%;
270 line-height: normal;
270 line-height: normal;
271 }
271 }
272 div.traceback-wrapper {
272 div.traceback-wrapper {
273 text-align: left;
273 text-align: left;
274 max-width: 800px;
274 max-width: 800px;
275 margin: auto;
275 margin: auto;
276 }
276 }
277 /*!
277 /*!
278 *
278 *
279 * IPython notebook
279 * IPython notebook
280 *
280 *
281 */
281 */
282 /* CSS font colors for translated ANSI colors. */
282 /* CSS font colors for translated ANSI colors. */
283 .ansibold {
283 .ansibold {
284 font-weight: bold;
284 font-weight: bold;
285 }
285 }
286 /* use dark versions for foreground, to improve visibility */
286 /* use dark versions for foreground, to improve visibility */
287 .ansiblack {
287 .ansiblack {
288 color: black;
288 color: black;
289 }
289 }
290 .ansired {
290 .ansired {
291 color: darkred;
291 color: darkred;
292 }
292 }
293 .ansigreen {
293 .ansigreen {
294 color: darkgreen;
294 color: darkgreen;
295 }
295 }
296 .ansiyellow {
296 .ansiyellow {
297 color: #c4a000;
297 color: #c4a000;
298 }
298 }
299 .ansiblue {
299 .ansiblue {
300 color: darkblue;
300 color: darkblue;
301 }
301 }
302 .ansipurple {
302 .ansipurple {
303 color: darkviolet;
303 color: darkviolet;
304 }
304 }
305 .ansicyan {
305 .ansicyan {
306 color: steelblue;
306 color: steelblue;
307 }
307 }
308 .ansigray {
308 .ansigray {
309 color: gray;
309 color: gray;
310 }
310 }
311 /* and light for background, for the same reason */
311 /* and light for background, for the same reason */
312 .ansibgblack {
312 .ansibgblack {
313 background-color: black;
313 background-color: black;
314 }
314 }
315 .ansibgred {
315 .ansibgred {
316 background-color: red;
316 background-color: red;
317 }
317 }
318 .ansibggreen {
318 .ansibggreen {
319 background-color: green;
319 background-color: green;
320 }
320 }
321 .ansibgyellow {
321 .ansibgyellow {
322 background-color: yellow;
322 background-color: yellow;
323 }
323 }
324 .ansibgblue {
324 .ansibgblue {
325 background-color: blue;
325 background-color: blue;
326 }
326 }
327 .ansibgpurple {
327 .ansibgpurple {
328 background-color: magenta;
328 background-color: magenta;
329 }
329 }
330 .ansibgcyan {
330 .ansibgcyan {
331 background-color: cyan;
331 background-color: cyan;
332 }
332 }
333 .ansibggray {
333 .ansibggray {
334 background-color: gray;
334 background-color: gray;
335 }
335 }
336 div.cell {
336 div.cell {
337 border: 1px solid transparent;
337 border: 1px solid transparent;
338 /* Old browsers */
338 /* Old browsers */
339 display: -webkit-box;
339 display: -webkit-box;
340 -webkit-box-orient: vertical;
340 -webkit-box-orient: vertical;
341 -webkit-box-align: stretch;
341 -webkit-box-align: stretch;
342 display: -moz-box;
342 display: -moz-box;
343 -moz-box-orient: vertical;
343 -moz-box-orient: vertical;
344 -moz-box-align: stretch;
344 -moz-box-align: stretch;
345 display: box;
345 display: box;
346 box-orient: vertical;
346 box-orient: vertical;
347 box-align: stretch;
347 box-align: stretch;
348 /* Modern browsers */
348 /* Modern browsers */
349 display: flex;
349 display: flex;
350 flex-direction: column;
350 flex-direction: column;
351 align-items: stretch;
351 align-items: stretch;
352 border-radius: 4px;
352 border-radius: 4px;
353 box-sizing: border-box;
353 box-sizing: border-box;
354 -moz-box-sizing: border-box;
354 -moz-box-sizing: border-box;
355 -webkit-box-sizing: border-box;
355 -webkit-box-sizing: border-box;
356 border-width: thin;
356 border-width: thin;
357 border-style: solid;
357 border-style: solid;
358 width: 100%;
358 width: 100%;
359 padding: 5px 5px 5px 0px;
359 padding: 5px 5px 5px 0px;
360 /* This acts as a spacer between cells, that is outside the border */
360 /* This acts as a spacer between cells, that is outside the border */
361 margin: 0px;
361 margin: 0px;
362 outline: none;
362 outline: none;
363 }
363 }
364 div.cell.selected {
364 div.cell.selected {
365 border-color: #ababab;
365 border-color: #ababab;
366 }
366 }
367 div.cell.edit_mode {
367 div.cell.edit_mode {
368 border-color: green;
368 border-color: green;
369 }
369 }
370 div.prompt {
370 div.prompt {
371 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
371 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
372 min-width: 15ex;
372 min-width: 15ex;
373 /* This padding is tuned to match the padding on the CodeMirror editor. */
373 /* This padding is tuned to match the padding on the CodeMirror editor. */
374 padding: 0.4em;
374 padding: 0.4em;
375 margin: 0px;
375 margin: 0px;
376 font-family: monospace;
376 font-family: monospace;
377 text-align: right;
377 text-align: right;
378 /* This has to match that of the the CodeMirror class line-height below */
378 /* This has to match that of the the CodeMirror class line-height below */
379 line-height: 1.21429em;
379 line-height: 1.21429em;
380 }
380 }
381 @media (max-width: 480px) {
381 @media (max-width: 480px) {
382 div.prompt {
382 div.prompt {
383 text-align: left;
383 text-align: left;
384 }
384 }
385 }
385 }
386 div.inner_cell {
386 div.inner_cell {
387 /* Old browsers */
387 /* Old browsers */
388 display: -webkit-box;
388 display: -webkit-box;
389 -webkit-box-orient: vertical;
389 -webkit-box-orient: vertical;
390 -webkit-box-align: stretch;
390 -webkit-box-align: stretch;
391 display: -moz-box;
391 display: -moz-box;
392 -moz-box-orient: vertical;
392 -moz-box-orient: vertical;
393 -moz-box-align: stretch;
393 -moz-box-align: stretch;
394 display: box;
394 display: box;
395 box-orient: vertical;
395 box-orient: vertical;
396 box-align: stretch;
396 box-align: stretch;
397 /* Modern browsers */
397 /* Modern browsers */
398 display: flex;
398 display: flex;
399 flex-direction: column;
399 flex-direction: column;
400 align-items: stretch;
400 align-items: stretch;
401 /* Old browsers */
401 /* Old browsers */
402 -webkit-box-flex: 1;
402 -webkit-box-flex: 1;
403 -moz-box-flex: 1;
403 -moz-box-flex: 1;
404 box-flex: 1;
404 box-flex: 1;
405 /* Modern browsers */
405 /* Modern browsers */
406 flex: 1;
406 flex: 1;
407 }
407 }
408 /* input_area and input_prompt must match in top border and margin for alignment */
408 /* input_area and input_prompt must match in top border and margin for alignment */
409 div.input_area {
409 div.input_area {
410 border: 1px solid #cfcfcf;
410 border: 1px solid #cfcfcf;
411 border-radius: 4px;
411 border-radius: 4px;
412 background: #f7f7f7;
412 background: #f7f7f7;
413 line-height: 1.21429em;
413 line-height: 1.21429em;
414 }
414 }
415 /* This is needed so that empty prompt areas can collapse to zero height when there
415 /* This is needed so that empty prompt areas can collapse to zero height when there
416 is no content in the output_subarea and the prompt. The main purpose of this is
416 is no content in the output_subarea and the prompt. The main purpose of this is
417 to make sure that empty JavaScript output_subareas have no height. */
417 to make sure that empty JavaScript output_subareas have no height. */
418 div.prompt:empty {
418 div.prompt:empty {
419 padding-top: 0;
419 padding-top: 0;
420 padding-bottom: 0;
420 padding-bottom: 0;
421 }
421 }
422 div.unrecognized_cell {
422 div.unrecognized_cell {
423 padding: 5px 5px 5px 0px;
423 padding: 5px 5px 5px 0px;
424 /* Old browsers */
424 /* Old browsers */
425 display: -webkit-box;
425 display: -webkit-box;
426 -webkit-box-orient: horizontal;
426 -webkit-box-orient: horizontal;
427 -webkit-box-align: stretch;
427 -webkit-box-align: stretch;
428 display: -moz-box;
428 display: -moz-box;
429 -moz-box-orient: horizontal;
429 -moz-box-orient: horizontal;
430 -moz-box-align: stretch;
430 -moz-box-align: stretch;
431 display: box;
431 display: box;
432 box-orient: horizontal;
432 box-orient: horizontal;
433 box-align: stretch;
433 box-align: stretch;
434 /* Modern browsers */
434 /* Modern browsers */
435 display: flex;
435 display: flex;
436 flex-direction: row;
436 flex-direction: row;
437 align-items: stretch;
437 align-items: stretch;
438 }
438 }
439 div.unrecognized_cell .inner_cell {
439 div.unrecognized_cell .inner_cell {
440 border-radius: 4px;
440 border-radius: 4px;
441 padding: 5px;
441 padding: 5px;
442 font-weight: bold;
442 font-weight: bold;
443 color: red;
443 color: red;
444 border: 1px solid #cfcfcf;
444 border: 1px solid #cfcfcf;
445 background: #eaeaea;
445 background: #eaeaea;
446 }
446 }
447 div.unrecognized_cell .inner_cell a {
447 div.unrecognized_cell .inner_cell a {
448 color: inherit;
448 color: inherit;
449 text-decoration: none;
449 text-decoration: none;
450 }
450 }
451 div.unrecognized_cell .inner_cell a:hover {
451 div.unrecognized_cell .inner_cell a:hover {
452 color: inherit;
452 color: inherit;
453 text-decoration: none;
453 text-decoration: none;
454 }
454 }
455 @media (max-width: 480px) {
455 @media (max-width: 480px) {
456 div.unrecognized_cell > div.prompt {
456 div.unrecognized_cell > div.prompt {
457 display: none;
457 display: none;
458 }
458 }
459 }
459 }
460 /* any special styling for code cells that are currently running goes here */
460 /* any special styling for code cells that are currently running goes here */
461 div.input {
461 div.input {
462 page-break-inside: avoid;
462 page-break-inside: avoid;
463 /* Old browsers */
463 /* Old browsers */
464 display: -webkit-box;
464 display: -webkit-box;
465 -webkit-box-orient: horizontal;
465 -webkit-box-orient: horizontal;
466 -webkit-box-align: stretch;
466 -webkit-box-align: stretch;
467 display: -moz-box;
467 display: -moz-box;
468 -moz-box-orient: horizontal;
468 -moz-box-orient: horizontal;
469 -moz-box-align: stretch;
469 -moz-box-align: stretch;
470 display: box;
470 display: box;
471 box-orient: horizontal;
471 box-orient: horizontal;
472 box-align: stretch;
472 box-align: stretch;
473 /* Modern browsers */
473 /* Modern browsers */
474 display: flex;
474 display: flex;
475 flex-direction: row;
475 flex-direction: row;
476 align-items: stretch;
476 align-items: stretch;
477 }
477 }
478 @media (max-width: 480px) {
478 @media (max-width: 480px) {
479 div.input {
479 div.input {
480 /* Old browsers */
480 /* Old browsers */
481 display: -webkit-box;
481 display: -webkit-box;
482 -webkit-box-orient: vertical;
482 -webkit-box-orient: vertical;
483 -webkit-box-align: stretch;
483 -webkit-box-align: stretch;
484 display: -moz-box;
484 display: -moz-box;
485 -moz-box-orient: vertical;
485 -moz-box-orient: vertical;
486 -moz-box-align: stretch;
486 -moz-box-align: stretch;
487 display: box;
487 display: box;
488 box-orient: vertical;
488 box-orient: vertical;
489 box-align: stretch;
489 box-align: stretch;
490 /* Modern browsers */
490 /* Modern browsers */
491 display: flex;
491 display: flex;
492 flex-direction: column;
492 flex-direction: column;
493 align-items: stretch;
493 align-items: stretch;
494 }
494 }
495 }
495 }
496 /* input_area and input_prompt must match in top border and margin for alignment */
496 /* input_area and input_prompt must match in top border and margin for alignment */
497 div.input_prompt {
497 div.input_prompt {
498 color: navy;
498 color: navy;
499 border-top: 1px solid transparent;
499 border-top: 1px solid transparent;
500 }
500 }
501 div.input_area > div.highlight {
501 div.input_area > div.highlight {
502 margin: 0.4em;
502 margin: 0.4em;
503 border: none;
503 border: none;
504 padding: 0px;
504 padding: 0px;
505 background-color: transparent;
505 background-color: transparent;
506 }
506 }
507 div.input_area > div.highlight > pre {
507 div.input_area > div.highlight > pre {
508 margin: 0px;
508 margin: 0px;
509 border: none;
509 border: none;
510 padding: 0px;
510 padding: 0px;
511 background-color: transparent;
511 background-color: transparent;
512 }
512 }
513 /* The following gets added to the <head> if it is detected that the user has a
513 /* The following gets added to the <head> if it is detected that the user has a
514 * monospace font with inconsistent normal/bold/italic height. See
514 * monospace font with inconsistent normal/bold/italic height. See
515 * notebookmain.js. Such fonts will have keywords vertically offset with
515 * notebookmain.js. Such fonts will have keywords vertically offset with
516 * respect to the rest of the text. The user should select a better font.
516 * respect to the rest of the text. The user should select a better font.
517 * See: https://github.com/ipython/ipython/issues/1503
517 * See: https://github.com/ipython/ipython/issues/1503
518 *
518 *
519 * .CodeMirror span {
519 * .CodeMirror span {
520 * vertical-align: bottom;
520 * vertical-align: bottom;
521 * }
521 * }
522 */
522 */
523 .CodeMirror {
523 .CodeMirror {
524 line-height: 1.21429em;
524 line-height: 1.21429em;
525 /* Changed from 1em to our global default */
525 /* Changed from 1em to our global default */
526 height: auto;
526 height: auto;
527 /* Changed to auto to autogrow */
527 /* Changed to auto to autogrow */
528 background: none;
528 background: none;
529 /* Changed from white to allow our bg to show through */
529 /* Changed from white to allow our bg to show through */
530 }
530 }
531 .CodeMirror-scroll {
531 .CodeMirror-scroll {
532 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
532 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
533 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
533 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
534 overflow-y: hidden;
534 overflow-y: hidden;
535 overflow-x: auto;
535 overflow-x: auto;
536 }
536 }
537 .CodeMirror-lines {
537 .CodeMirror-lines {
538 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
538 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
539 /* we have set a different line-height and want this to scale with that. */
539 /* we have set a different line-height and want this to scale with that. */
540 padding: 0.4em;
540 padding: 0.4em;
541 }
541 }
542 .CodeMirror-linenumber {
542 .CodeMirror-linenumber {
543 padding: 0 8px 0 4px;
543 padding: 0 8px 0 4px;
544 }
544 }
545 .CodeMirror-gutters {
545 .CodeMirror-gutters {
546 border-bottom-left-radius: 4px;
546 border-bottom-left-radius: 4px;
547 border-top-left-radius: 4px;
547 border-top-left-radius: 4px;
548 }
548 }
549 .CodeMirror pre {
549 .CodeMirror pre {
550 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
550 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
551 /* .CodeMirror-lines */
551 /* .CodeMirror-lines */
552 padding: 0;
552 padding: 0;
553 border: 0;
553 border: 0;
554 border-radius: 0;
554 border-radius: 0;
555 }
555 }
556 .CodeMirror-vscrollbar,
556 .CodeMirror-vscrollbar,
557 .CodeMirror-hscrollbar {
557 .CodeMirror-hscrollbar {
558 display: none !important;
558 display: none !important;
559 }
559 }
560 /*
560 /*
561
561
562 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
562 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
563 Adapted from GitHub theme
563 Adapted from GitHub theme
564
564
565 */
565 */
566 .highlight-base {
566 .highlight-base {
567 color: #000000;
567 color: #000000;
568 }
568 }
569 .highlight-variable {
569 .highlight-variable {
570 color: #000000;
570 color: #000000;
571 }
571 }
572 .highlight-variable-2 {
572 .highlight-variable-2 {
573 color: #1a1a1a;
573 color: #1a1a1a;
574 }
574 }
575 .highlight-variable-3 {
575 .highlight-variable-3 {
576 color: #333333;
576 color: #333333;
577 }
577 }
578 .highlight-string {
578 .highlight-string {
579 color: #BA2121;
579 color: #BA2121;
580 }
580 }
581 .highlight-comment {
581 .highlight-comment {
582 color: #408080;
582 color: #408080;
583 font-style: italic;
583 font-style: italic;
584 }
584 }
585 .highlight-number {
585 .highlight-number {
586 color: #080;
586 color: #080;
587 }
587 }
588 .highlight-atom {
588 .highlight-atom {
589 color: #88F;
589 color: #88F;
590 }
590 }
591 .highlight-keyword {
591 .highlight-keyword {
592 color: #008000;
592 color: #008000;
593 font-weight: bold;
593 font-weight: bold;
594 }
594 }
595 .highlight-builtin {
595 .highlight-builtin {
596 color: #008000;
596 color: #008000;
597 }
597 }
598 .highlight-error {
598 .highlight-error {
599 color: #f00;
599 color: #f00;
600 }
600 }
601 .highlight-operator {
601 .highlight-operator {
602 color: #AA22FF;
602 color: #AA22FF;
603 font-weight: bold;
603 font-weight: bold;
604 }
604 }
605 .highlight-meta {
605 .highlight-meta {
606 color: #AA22FF;
606 color: #AA22FF;
607 }
607 }
608 /* previously not defined, copying from default codemirror */
608 /* previously not defined, copying from default codemirror */
609 .highlight-def {
609 .highlight-def {
610 color: #00f;
610 color: #00f;
611 }
611 }
612 .highlight-string-2 {
612 .highlight-string-2 {
613 color: #f50;
613 color: #f50;
614 }
614 }
615 .highlight-qualifier {
615 .highlight-qualifier {
616 color: #555;
616 color: #555;
617 }
617 }
618 .highlight-bracket {
618 .highlight-bracket {
619 color: #997;
619 color: #997;
620 }
620 }
621 .highlight-tag {
621 .highlight-tag {
622 color: #170;
622 color: #170;
623 }
623 }
624 .highlight-attribute {
624 .highlight-attribute {
625 color: #00c;
625 color: #00c;
626 }
626 }
627 .highlight-header {
627 .highlight-header {
628 color: blue;
628 color: blue;
629 }
629 }
630 .highlight-quote {
630 .highlight-quote {
631 color: #090;
631 color: #090;
632 }
632 }
633 .highlight-link {
633 .highlight-link {
634 color: #00c;
634 color: #00c;
635 }
635 }
636 /* apply the same style to codemirror */
636 /* apply the same style to codemirror */
637 .cm-s-ipython span.cm-keyword {
637 .cm-s-ipython span.cm-keyword {
638 color: #008000;
638 color: #008000;
639 font-weight: bold;
639 font-weight: bold;
640 }
640 }
641 .cm-s-ipython span.cm-atom {
641 .cm-s-ipython span.cm-atom {
642 color: #88F;
642 color: #88F;
643 }
643 }
644 .cm-s-ipython span.cm-number {
644 .cm-s-ipython span.cm-number {
645 color: #080;
645 color: #080;
646 }
646 }
647 .cm-s-ipython span.cm-def {
647 .cm-s-ipython span.cm-def {
648 color: #00f;
648 color: #00f;
649 }
649 }
650 .cm-s-ipython span.cm-variable {
650 .cm-s-ipython span.cm-variable {
651 color: #000000;
651 color: #000000;
652 }
652 }
653 .cm-s-ipython span.cm-operator {
653 .cm-s-ipython span.cm-operator {
654 color: #AA22FF;
654 color: #AA22FF;
655 font-weight: bold;
655 font-weight: bold;
656 }
656 }
657 .cm-s-ipython span.cm-variable-2 {
657 .cm-s-ipython span.cm-variable-2 {
658 color: #1a1a1a;
658 color: #1a1a1a;
659 }
659 }
660 .cm-s-ipython span.cm-variable-3 {
660 .cm-s-ipython span.cm-variable-3 {
661 color: #333333;
661 color: #333333;
662 }
662 }
663 .cm-s-ipython span.cm-comment {
663 .cm-s-ipython span.cm-comment {
664 color: #408080;
664 color: #408080;
665 font-style: italic;
665 font-style: italic;
666 }
666 }
667 .cm-s-ipython span.cm-string {
667 .cm-s-ipython span.cm-string {
668 color: #BA2121;
668 color: #BA2121;
669 }
669 }
670 .cm-s-ipython span.cm-string-2 {
670 .cm-s-ipython span.cm-string-2 {
671 color: #f50;
671 color: #f50;
672 }
672 }
673 .cm-s-ipython span.cm-meta {
673 .cm-s-ipython span.cm-meta {
674 color: #AA22FF;
674 color: #AA22FF;
675 }
675 }
676 .cm-s-ipython span.cm-qualifier {
676 .cm-s-ipython span.cm-qualifier {
677 color: #555;
677 color: #555;
678 }
678 }
679 .cm-s-ipython span.cm-builtin {
679 .cm-s-ipython span.cm-builtin {
680 color: #008000;
680 color: #008000;
681 }
681 }
682 .cm-s-ipython span.cm-bracket {
682 .cm-s-ipython span.cm-bracket {
683 color: #997;
683 color: #997;
684 }
684 }
685 .cm-s-ipython span.cm-tag {
685 .cm-s-ipython span.cm-tag {
686 color: #170;
686 color: #170;
687 }
687 }
688 .cm-s-ipython span.cm-attribute {
688 .cm-s-ipython span.cm-attribute {
689 color: #00c;
689 color: #00c;
690 }
690 }
691 .cm-s-ipython span.cm-header {
691 .cm-s-ipython span.cm-header {
692 color: blue;
692 color: blue;
693 }
693 }
694 .cm-s-ipython span.cm-quote {
694 .cm-s-ipython span.cm-quote {
695 color: #090;
695 color: #090;
696 }
696 }
697 .cm-s-ipython span.cm-link {
697 .cm-s-ipython span.cm-link {
698 color: #00c;
698 color: #00c;
699 }
699 }
700 .cm-s-ipython span.cm-error {
700 .cm-s-ipython span.cm-error {
701 color: #f00;
701 color: #f00;
702 }
702 }
703 .cm-s-ipython span.cm-tab {
703 .cm-s-ipython span.cm-tab {
704 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
704 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
705 background-position: right;
705 background-position: right;
706 background-repeat: no-repeat;
706 background-repeat: no-repeat;
707 }
707 }
708 div.output_wrapper {
708 div.output_wrapper {
709 /* this position must be relative to enable descendents to be absolute within it */
709 /* this position must be relative to enable descendents to be absolute within it */
710 position: relative;
710 position: relative;
711 /* Old browsers */
711 /* Old browsers */
712 display: -webkit-box;
712 display: -webkit-box;
713 -webkit-box-orient: vertical;
713 -webkit-box-orient: vertical;
714 -webkit-box-align: stretch;
714 -webkit-box-align: stretch;
715 display: -moz-box;
715 display: -moz-box;
716 -moz-box-orient: vertical;
716 -moz-box-orient: vertical;
717 -moz-box-align: stretch;
717 -moz-box-align: stretch;
718 display: box;
718 display: box;
719 box-orient: vertical;
719 box-orient: vertical;
720 box-align: stretch;
720 box-align: stretch;
721 /* Modern browsers */
721 /* Modern browsers */
722 display: flex;
722 display: flex;
723 flex-direction: column;
723 flex-direction: column;
724 align-items: stretch;
724 align-items: stretch;
725 }
725 }
726 /* class for the output area when it should be height-limited */
726 /* class for the output area when it should be height-limited */
727 div.output_scroll {
727 div.output_scroll {
728 /* ideally, this would be max-height, but FF barfs all over that */
728 /* ideally, this would be max-height, but FF barfs all over that */
729 height: 24em;
729 height: 24em;
730 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
730 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
731 width: 100%;
731 width: 100%;
732 overflow: auto;
732 overflow: auto;
733 border-radius: 4px;
733 border-radius: 4px;
734 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
734 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
735 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
735 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
736 display: block;
736 display: block;
737 }
737 }
738 /* output div while it is collapsed */
738 /* output div while it is collapsed */
739 div.output_collapsed {
739 div.output_collapsed {
740 margin: 0px;
740 margin: 0px;
741 padding: 0px;
741 padding: 0px;
742 /* Old browsers */
742 /* Old browsers */
743 display: -webkit-box;
743 display: -webkit-box;
744 -webkit-box-orient: vertical;
744 -webkit-box-orient: vertical;
745 -webkit-box-align: stretch;
745 -webkit-box-align: stretch;
746 display: -moz-box;
746 display: -moz-box;
747 -moz-box-orient: vertical;
747 -moz-box-orient: vertical;
748 -moz-box-align: stretch;
748 -moz-box-align: stretch;
749 display: box;
749 display: box;
750 box-orient: vertical;
750 box-orient: vertical;
751 box-align: stretch;
751 box-align: stretch;
752 /* Modern browsers */
752 /* Modern browsers */
753 display: flex;
753 display: flex;
754 flex-direction: column;
754 flex-direction: column;
755 align-items: stretch;
755 align-items: stretch;
756 }
756 }
757 div.out_prompt_overlay {
757 div.out_prompt_overlay {
758 height: 100%;
758 height: 100%;
759 padding: 0px 0.4em;
759 padding: 0px 0.4em;
760 position: absolute;
760 position: absolute;
761 border-radius: 4px;
761 border-radius: 4px;
762 }
762 }
763 div.out_prompt_overlay:hover {
763 div.out_prompt_overlay:hover {
764 /* use inner shadow to get border that is computed the same on WebKit/FF */
764 /* use inner shadow to get border that is computed the same on WebKit/FF */
765 -webkit-box-shadow: inset 0 0 1px #000000;
765 -webkit-box-shadow: inset 0 0 1px #000000;
766 box-shadow: inset 0 0 1px #000000;
766 box-shadow: inset 0 0 1px #000000;
767 background: rgba(240, 240, 240, 0.5);
767 background: rgba(240, 240, 240, 0.5);
768 }
768 }
769 div.output_prompt {
769 div.output_prompt {
770 color: darkred;
770 color: darkred;
771 }
771 }
772 /* This class is the outer container of all output sections. */
772 /* This class is the outer container of all output sections. */
773 div.output_area {
773 div.output_area {
774 padding: 0px;
774 padding: 0px;
775 page-break-inside: avoid;
775 page-break-inside: avoid;
776 /* Old browsers */
776 /* Old browsers */
777 display: -webkit-box;
777 display: -webkit-box;
778 -webkit-box-orient: horizontal;
778 -webkit-box-orient: horizontal;
779 -webkit-box-align: stretch;
779 -webkit-box-align: stretch;
780 display: -moz-box;
780 display: -moz-box;
781 -moz-box-orient: horizontal;
781 -moz-box-orient: horizontal;
782 -moz-box-align: stretch;
782 -moz-box-align: stretch;
783 display: box;
783 display: box;
784 box-orient: horizontal;
784 box-orient: horizontal;
785 box-align: stretch;
785 box-align: stretch;
786 /* Modern browsers */
786 /* Modern browsers */
787 display: flex;
787 display: flex;
788 flex-direction: row;
788 flex-direction: row;
789 align-items: stretch;
789 align-items: stretch;
790 }
790 }
791 div.output_area .MathJax_Display {
791 div.output_area .MathJax_Display {
792 text-align: left !important;
792 text-align: left !important;
793 }
793 }
794 div.output_area .rendered_html table {
794 div.output_area .rendered_html table {
795 margin-left: 0;
795 margin-left: 0;
796 margin-right: 0;
796 margin-right: 0;
797 }
797 }
798 div.output_area .rendered_html img {
798 div.output_area .rendered_html img {
799 margin-left: 0;
799 margin-left: 0;
800 margin-right: 0;
800 margin-right: 0;
801 }
801 }
802 /* This is needed to protect the pre formating from global settings such
802 /* This is needed to protect the pre formating from global settings such
803 as that of bootstrap */
803 as that of bootstrap */
804 .output {
804 .output {
805 /* Old browsers */
805 /* Old browsers */
806 display: -webkit-box;
806 display: -webkit-box;
807 -webkit-box-orient: vertical;
807 -webkit-box-orient: vertical;
808 -webkit-box-align: stretch;
808 -webkit-box-align: stretch;
809 display: -moz-box;
809 display: -moz-box;
810 -moz-box-orient: vertical;
810 -moz-box-orient: vertical;
811 -moz-box-align: stretch;
811 -moz-box-align: stretch;
812 display: box;
812 display: box;
813 box-orient: vertical;
813 box-orient: vertical;
814 box-align: stretch;
814 box-align: stretch;
815 /* Modern browsers */
815 /* Modern browsers */
816 display: flex;
816 display: flex;
817 flex-direction: column;
817 flex-direction: column;
818 align-items: stretch;
818 align-items: stretch;
819 }
819 }
820 @media (max-width: 480px) {
820 @media (max-width: 480px) {
821 div.output_area {
821 div.output_area {
822 /* Old browsers */
822 /* Old browsers */
823 display: -webkit-box;
823 display: -webkit-box;
824 -webkit-box-orient: vertical;
824 -webkit-box-orient: vertical;
825 -webkit-box-align: stretch;
825 -webkit-box-align: stretch;
826 display: -moz-box;
826 display: -moz-box;
827 -moz-box-orient: vertical;
827 -moz-box-orient: vertical;
828 -moz-box-align: stretch;
828 -moz-box-align: stretch;
829 display: box;
829 display: box;
830 box-orient: vertical;
830 box-orient: vertical;
831 box-align: stretch;
831 box-align: stretch;
832 /* Modern browsers */
832 /* Modern browsers */
833 display: flex;
833 display: flex;
834 flex-direction: column;
834 flex-direction: column;
835 align-items: stretch;
835 align-items: stretch;
836 }
836 }
837 }
837 }
838 div.output_area pre {
838 div.output_area pre {
839 margin: 0;
839 margin: 0;
840 padding: 0;
840 padding: 0;
841 border: 0;
841 border: 0;
842 vertical-align: baseline;
842 vertical-align: baseline;
843 color: black;
843 color: black;
844 background-color: transparent;
844 background-color: transparent;
845 border-radius: 0;
845 border-radius: 0;
846 }
846 }
847 /* This class is for the output subarea inside the output_area and after
847 /* This class is for the output subarea inside the output_area and after
848 the prompt div. */
848 the prompt div. */
849 div.output_subarea {
849 div.output_subarea {
850 padding: 0.4em 0.4em 0em 0.4em;
850 padding: 0.4em 0.4em 0em 0.4em;
851 /* Old browsers */
851 /* Old browsers */
852 -webkit-box-flex: 1;
852 -webkit-box-flex: 1;
853 -moz-box-flex: 1;
853 -moz-box-flex: 1;
854 box-flex: 1;
854 box-flex: 1;
855 /* Modern browsers */
855 /* Modern browsers */
856 flex: 1;
856 flex: 1;
857 }
857 }
858 /* The rest of the output_* classes are for special styling of the different
858 /* The rest of the output_* classes are for special styling of the different
859 output types */
859 output types */
860 /* all text output has this class: */
860 /* all text output has this class: */
861 div.output_text {
861 div.output_text {
862 text-align: left;
862 text-align: left;
863 color: #000000;
863 color: #000000;
864 /* This has to match that of the the CodeMirror class line-height below */
864 /* This has to match that of the the CodeMirror class line-height below */
865 line-height: 1.21429em;
865 line-height: 1.21429em;
866 }
866 }
867 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
867 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
868 div.output_stderr {
868 div.output_stderr {
869 background: #fdd;
869 background: #fdd;
870 /* very light red background for stderr */
870 /* very light red background for stderr */
871 }
871 }
872 div.output_latex {
872 div.output_latex {
873 text-align: left;
873 text-align: left;
874 }
874 }
875 /* Empty output_javascript divs should have no height */
875 /* Empty output_javascript divs should have no height */
876 div.output_javascript:empty {
876 div.output_javascript:empty {
877 padding: 0;
877 padding: 0;
878 }
878 }
879 .js-error {
879 .js-error {
880 color: darkred;
880 color: darkred;
881 }
881 }
882 /* raw_input styles */
882 /* raw_input styles */
883 div.raw_input_container {
883 div.raw_input_container {
884 font-family: monospace;
884 font-family: monospace;
885 padding-top: 5px;
885 padding-top: 5px;
886 }
886 }
887 span.raw_input_prompt {
887 span.raw_input_prompt {
888 /* nothing needed here */
888 /* nothing needed here */
889 }
889 }
890 input.raw_input {
890 input.raw_input {
891 font-family: inherit;
891 font-family: inherit;
892 font-size: inherit;
892 font-size: inherit;
893 color: inherit;
893 color: inherit;
894 width: auto;
894 width: auto;
895 /* make sure input baseline aligns with prompt */
895 /* make sure input baseline aligns with prompt */
896 vertical-align: baseline;
896 vertical-align: baseline;
897 /* padding + margin = 0.5em between prompt and cursor */
897 /* padding + margin = 0.5em between prompt and cursor */
898 padding: 0em 0.25em;
898 padding: 0em 0.25em;
899 margin: 0em 0.25em;
899 margin: 0em 0.25em;
900 }
900 }
901 input.raw_input:focus {
901 input.raw_input:focus {
902 box-shadow: none;
902 box-shadow: none;
903 }
903 }
904 p.p-space {
904 p.p-space {
905 margin-bottom: 10px;
905 margin-bottom: 10px;
906 }
906 }
907 div.output_unrecognized {
907 div.output_unrecognized {
908 padding: 5px;
908 padding: 5px;
909 font-weight: bold;
909 font-weight: bold;
910 color: red;
910 color: red;
911 }
911 }
912 div.output_unrecognized a {
912 div.output_unrecognized a {
913 color: inherit;
913 color: inherit;
914 text-decoration: none;
914 text-decoration: none;
915 }
915 }
916 div.output_unrecognized a:hover {
916 div.output_unrecognized a:hover {
917 color: inherit;
917 color: inherit;
918 text-decoration: none;
918 text-decoration: none;
919 }
919 }
920 .rendered_html {
920 .rendered_html {
921 color: #000000;
921 color: #000000;
922 /* any extras will just be numbers: */
922 /* any extras will just be numbers: */
923 }
923 }
924 .rendered_html em {
924 .rendered_html em {
925 font-style: italic;
925 font-style: italic;
926 }
926 }
927 .rendered_html strong {
927 .rendered_html strong {
928 font-weight: bold;
928 font-weight: bold;
929 }
929 }
930 .rendered_html u {
930 .rendered_html u {
931 text-decoration: underline;
931 text-decoration: underline;
932 }
932 }
933 .rendered_html :link {
933 .rendered_html :link {
934 text-decoration: underline;
934 text-decoration: underline;
935 }
935 }
936 .rendered_html :visited {
936 .rendered_html :visited {
937 text-decoration: underline;
937 text-decoration: underline;
938 }
938 }
939 .rendered_html h1 {
939 .rendered_html h1 {
940 font-size: 185.7%;
940 font-size: 185.7%;
941 margin: 1.08em 0 0 0;
941 margin: 1.08em 0 0 0;
942 font-weight: bold;
942 font-weight: bold;
943 line-height: 1.0;
943 line-height: 1.0;
944 }
944 }
945 .rendered_html h2 {
945 .rendered_html h2 {
946 font-size: 157.1%;
946 font-size: 157.1%;
947 margin: 1.27em 0 0 0;
947 margin: 1.27em 0 0 0;
948 font-weight: bold;
948 font-weight: bold;
949 line-height: 1.0;
949 line-height: 1.0;
950 }
950 }
951 .rendered_html h3 {
951 .rendered_html h3 {
952 font-size: 128.6%;
952 font-size: 128.6%;
953 margin: 1.55em 0 0 0;
953 margin: 1.55em 0 0 0;
954 font-weight: bold;
954 font-weight: bold;
955 line-height: 1.0;
955 line-height: 1.0;
956 }
956 }
957 .rendered_html h4 {
957 .rendered_html h4 {
958 font-size: 100%;
958 font-size: 100%;
959 margin: 2em 0 0 0;
959 margin: 2em 0 0 0;
960 font-weight: bold;
960 font-weight: bold;
961 line-height: 1.0;
961 line-height: 1.0;
962 }
962 }
963 .rendered_html h5 {
963 .rendered_html h5 {
964 font-size: 100%;
964 font-size: 100%;
965 margin: 2em 0 0 0;
965 margin: 2em 0 0 0;
966 font-weight: bold;
966 font-weight: bold;
967 line-height: 1.0;
967 line-height: 1.0;
968 font-style: italic;
968 font-style: italic;
969 }
969 }
970 .rendered_html h6 {
970 .rendered_html h6 {
971 font-size: 100%;
971 font-size: 100%;
972 margin: 2em 0 0 0;
972 margin: 2em 0 0 0;
973 font-weight: bold;
973 font-weight: bold;
974 line-height: 1.0;
974 line-height: 1.0;
975 font-style: italic;
975 font-style: italic;
976 }
976 }
977 .rendered_html h1:first-child {
977 .rendered_html h1:first-child {
978 margin-top: 0.538em;
978 margin-top: 0.538em;
979 }
979 }
980 .rendered_html h2:first-child {
980 .rendered_html h2:first-child {
981 margin-top: 0.636em;
981 margin-top: 0.636em;
982 }
982 }
983 .rendered_html h3:first-child {
983 .rendered_html h3:first-child {
984 margin-top: 0.777em;
984 margin-top: 0.777em;
985 }
985 }
986 .rendered_html h4:first-child {
986 .rendered_html h4:first-child {
987 margin-top: 1em;
987 margin-top: 1em;
988 }
988 }
989 .rendered_html h5:first-child {
989 .rendered_html h5:first-child {
990 margin-top: 1em;
990 margin-top: 1em;
991 }
991 }
992 .rendered_html h6:first-child {
992 .rendered_html h6:first-child {
993 margin-top: 1em;
993 margin-top: 1em;
994 }
994 }
995 .rendered_html ul {
995 .rendered_html ul {
996 list-style: disc;
996 list-style: disc;
997 margin: 0em 2em;
997 margin: 0em 2em;
998 padding-left: 0px;
998 padding-left: 0px;
999 }
999 }
1000 .rendered_html ul ul {
1000 .rendered_html ul ul {
1001 list-style: square;
1001 list-style: square;
1002 margin: 0em 2em;
1002 margin: 0em 2em;
1003 }
1003 }
1004 .rendered_html ul ul ul {
1004 .rendered_html ul ul ul {
1005 list-style: circle;
1005 list-style: circle;
1006 margin: 0em 2em;
1006 margin: 0em 2em;
1007 }
1007 }
1008 .rendered_html ol {
1008 .rendered_html ol {
1009 list-style: decimal;
1009 list-style: decimal;
1010 margin: 0em 2em;
1010 margin: 0em 2em;
1011 padding-left: 0px;
1011 padding-left: 0px;
1012 }
1012 }
1013 .rendered_html ol ol {
1013 .rendered_html ol ol {
1014 list-style: upper-alpha;
1014 list-style: upper-alpha;
1015 margin: 0em 2em;
1015 margin: 0em 2em;
1016 }
1016 }
1017 .rendered_html ol ol ol {
1017 .rendered_html ol ol ol {
1018 list-style: lower-alpha;
1018 list-style: lower-alpha;
1019 margin: 0em 2em;
1019 margin: 0em 2em;
1020 }
1020 }
1021 .rendered_html ol ol ol ol {
1021 .rendered_html ol ol ol ol {
1022 list-style: lower-roman;
1022 list-style: lower-roman;
1023 margin: 0em 2em;
1023 margin: 0em 2em;
1024 }
1024 }
1025 .rendered_html ol ol ol ol ol {
1025 .rendered_html ol ol ol ol ol {
1026 list-style: decimal;
1026 list-style: decimal;
1027 margin: 0em 2em;
1027 margin: 0em 2em;
1028 }
1028 }
1029 .rendered_html * + ul {
1029 .rendered_html * + ul {
1030 margin-top: 1em;
1030 margin-top: 1em;
1031 }
1031 }
1032 .rendered_html * + ol {
1032 .rendered_html * + ol {
1033 margin-top: 1em;
1033 margin-top: 1em;
1034 }
1034 }
1035 .rendered_html hr {
1035 .rendered_html hr {
1036 color: black;
1036 color: black;
1037 background-color: black;
1037 background-color: black;
1038 }
1038 }
1039 .rendered_html pre {
1039 .rendered_html pre {
1040 margin: 1em 2em;
1040 margin: 1em 2em;
1041 }
1041 }
1042 .rendered_html pre,
1042 .rendered_html pre,
1043 .rendered_html code {
1043 .rendered_html code {
1044 border: 0;
1044 border: 0;
1045 background-color: #ffffff;
1045 background-color: #ffffff;
1046 color: #000000;
1046 color: #000000;
1047 font-size: 100%;
1047 font-size: 100%;
1048 padding: 0px;
1048 padding: 0px;
1049 }
1049 }
1050 .rendered_html blockquote {
1050 .rendered_html blockquote {
1051 margin: 1em 2em;
1051 margin: 1em 2em;
1052 }
1052 }
1053 .rendered_html table {
1053 .rendered_html table {
1054 margin-left: auto;
1054 margin-left: auto;
1055 margin-right: auto;
1055 margin-right: auto;
1056 border: 1px solid black;
1056 border: 1px solid black;
1057 border-collapse: collapse;
1057 border-collapse: collapse;
1058 }
1058 }
1059 .rendered_html tr,
1059 .rendered_html tr,
1060 .rendered_html th,
1060 .rendered_html th,
1061 .rendered_html td {
1061 .rendered_html td {
1062 border: 1px solid black;
1062 border: 1px solid black;
1063 border-collapse: collapse;
1063 border-collapse: collapse;
1064 margin: 1em 2em;
1064 margin: 1em 2em;
1065 }
1065 }
1066 .rendered_html td,
1066 .rendered_html td,
1067 .rendered_html th {
1067 .rendered_html th {
1068 text-align: left;
1068 text-align: left;
1069 vertical-align: middle;
1069 vertical-align: middle;
1070 padding: 4px;
1070 padding: 4px;
1071 }
1071 }
1072 .rendered_html th {
1072 .rendered_html th {
1073 font-weight: bold;
1073 font-weight: bold;
1074 }
1074 }
1075 .rendered_html * + table {
1075 .rendered_html * + table {
1076 margin-top: 1em;
1076 margin-top: 1em;
1077 }
1077 }
1078 .rendered_html p {
1078 .rendered_html p {
1079 text-align: justify;
1079 text-align: justify;
1080 }
1080 }
1081 .rendered_html * + p {
1081 .rendered_html * + p {
1082 margin-top: 1em;
1082 margin-top: 1em;
1083 }
1083 }
1084 .rendered_html img {
1084 .rendered_html img {
1085 display: block;
1085 display: block;
1086 margin-left: auto;
1086 margin-left: auto;
1087 margin-right: auto;
1087 margin-right: auto;
1088 }
1088 }
1089 .rendered_html * + img {
1089 .rendered_html * + img {
1090 margin-top: 1em;
1090 margin-top: 1em;
1091 }
1091 }
1092 div.text_cell {
1092 div.text_cell {
1093 padding: 5px 5px 5px 0px;
1093 padding: 5px 5px 5px 0px;
1094 /* Old browsers */
1094 /* Old browsers */
1095 display: -webkit-box;
1095 display: -webkit-box;
1096 -webkit-box-orient: horizontal;
1096 -webkit-box-orient: horizontal;
1097 -webkit-box-align: stretch;
1097 -webkit-box-align: stretch;
1098 display: -moz-box;
1098 display: -moz-box;
1099 -moz-box-orient: horizontal;
1099 -moz-box-orient: horizontal;
1100 -moz-box-align: stretch;
1100 -moz-box-align: stretch;
1101 display: box;
1101 display: box;
1102 box-orient: horizontal;
1102 box-orient: horizontal;
1103 box-align: stretch;
1103 box-align: stretch;
1104 /* Modern browsers */
1104 /* Modern browsers */
1105 display: flex;
1105 display: flex;
1106 flex-direction: row;
1106 flex-direction: row;
1107 align-items: stretch;
1107 align-items: stretch;
1108 }
1108 }
1109 @media (max-width: 480px) {
1109 @media (max-width: 480px) {
1110 div.text_cell > div.prompt {
1110 div.text_cell > div.prompt {
1111 display: none;
1111 display: none;
1112 }
1112 }
1113 }
1113 }
1114 div.text_cell_render {
1114 div.text_cell_render {
1115 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
1115 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
1116 outline: none;
1116 outline: none;
1117 resize: none;
1117 resize: none;
1118 width: inherit;
1118 width: inherit;
1119 border-style: none;
1119 border-style: none;
1120 padding: 0.5em 0.5em 0.5em 0.4em;
1120 padding: 0.5em 0.5em 0.5em 0.4em;
1121 color: #000000;
1121 color: #000000;
1122 box-sizing: border-box;
1122 box-sizing: border-box;
1123 -moz-box-sizing: border-box;
1123 -moz-box-sizing: border-box;
1124 -webkit-box-sizing: border-box;
1124 -webkit-box-sizing: border-box;
1125 }
1125 }
1126 a.anchor-link:link {
1126 a.anchor-link:link {
1127 text-decoration: none;
1127 text-decoration: none;
1128 padding: 0px 20px;
1128 padding: 0px 20px;
1129 visibility: hidden;
1129 visibility: hidden;
1130 }
1130 }
1131 h1:hover .anchor-link,
1131 h1:hover .anchor-link,
1132 h2:hover .anchor-link,
1132 h2:hover .anchor-link,
1133 h3:hover .anchor-link,
1133 h3:hover .anchor-link,
1134 h4:hover .anchor-link,
1134 h4:hover .anchor-link,
1135 h5:hover .anchor-link,
1135 h5:hover .anchor-link,
1136 h6:hover .anchor-link {
1136 h6:hover .anchor-link {
1137 visibility: visible;
1137 visibility: visible;
1138 }
1138 }
1139 .text_cell.rendered .input_area {
1139 .text_cell.rendered .input_area {
1140 display: none;
1140 display: none;
1141 }
1141 }
1142 .text_cell.unrendered .text_cell_render {
1142 .text_cell.unrendered .text_cell_render {
1143 display: none;
1143 display: none;
1144 }
1144 }
1145 .cm-header-1,
1145 .cm-header-1,
1146 .cm-header-2,
1146 .cm-header-2,
1147 .cm-header-3,
1147 .cm-header-3,
1148 .cm-header-4,
1148 .cm-header-4,
1149 .cm-header-5,
1149 .cm-header-5,
1150 .cm-header-6 {
1150 .cm-header-6 {
1151 font-weight: bold;
1151 font-weight: bold;
1152 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1152 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1153 }
1153 }
1154 .cm-header-1 {
1154 .cm-header-1 {
1155 font-size: 185.7%;
1155 font-size: 185.7%;
1156 }
1156 }
1157 .cm-header-2 {
1157 .cm-header-2 {
1158 font-size: 157.1%;
1158 font-size: 157.1%;
1159 }
1159 }
1160 .cm-header-3 {
1160 .cm-header-3 {
1161 font-size: 128.6%;
1161 font-size: 128.6%;
1162 }
1162 }
1163 .cm-header-4 {
1163 .cm-header-4 {
1164 font-size: 110%;
1164 font-size: 110%;
1165 }
1165 }
1166 .cm-header-5 {
1166 .cm-header-5 {
1167 font-size: 100%;
1167 font-size: 100%;
1168 font-style: italic;
1168 font-style: italic;
1169 }
1169 }
1170 .cm-header-6 {
1170 .cm-header-6 {
1171 font-size: 100%;
1171 font-size: 100%;
1172 font-style: italic;
1172 font-style: italic;
1173 }
1173 }
1174 .widget-area {
1174 .widget-area {
1175 /*
1175 /*
1176 LESS file that styles IPython notebook widgets and the area they sit in.
1176 LESS file that styles IPython notebook widgets and the area they sit in.
1177
1177
1178 The widget area typically looks something like this:
1178 The widget area typically looks something like this:
1179 +------------------------------------------+
1179 +------------------------------------------+
1180 | widget-area |
1180 | widget-area |
1181 | +--------+---------------------------+ |
1181 | +--------+---------------------------+ |
1182 | | prompt | widget-subarea | |
1182 | | prompt | widget-subarea | |
1183 | | | +--------+ +--------+ | |
1183 | | | +--------+ +--------+ | |
1184 | | | | widget | | widget | | |
1184 | | | | widget | | widget | | |
1185 | | | +--------+ +--------+ | |
1185 | | | +--------+ +--------+ | |
1186 | +--------+---------------------------+ |
1186 | +--------+---------------------------+ |
1187 +------------------------------------------+
1187 +------------------------------------------+
1188 */
1188 */
1189 page-break-inside: avoid;
1189 page-break-inside: avoid;
1190 /* Old browsers */
1190 /* Old browsers */
1191 display: -webkit-box;
1191 display: -webkit-box;
1192 -webkit-box-orient: horizontal;
1192 -webkit-box-orient: horizontal;
1193 -webkit-box-align: stretch;
1193 -webkit-box-align: stretch;
1194 display: -moz-box;
1194 display: -moz-box;
1195 -moz-box-orient: horizontal;
1195 -moz-box-orient: horizontal;
1196 -moz-box-align: stretch;
1196 -moz-box-align: stretch;
1197 display: box;
1197 display: box;
1198 box-orient: horizontal;
1198 box-orient: horizontal;
1199 box-align: stretch;
1199 box-align: stretch;
1200 /* Modern browsers */
1200 /* Modern browsers */
1201 display: flex;
1201 display: flex;
1202 flex-direction: row;
1202 flex-direction: row;
1203 align-items: stretch;
1203 align-items: stretch;
1204 }
1204 }
1205 .widget-area .widget-subarea {
1205 .widget-area .widget-subarea {
1206 padding: 0.44em 0.4em 0.4em 1px;
1206 padding: 0.44em 0.4em 0.4em 1px;
1207 margin-left: 6px;
1207 margin-left: 6px;
1208 box-sizing: border-box;
1208 box-sizing: border-box;
1209 -moz-box-sizing: border-box;
1209 -moz-box-sizing: border-box;
1210 -webkit-box-sizing: border-box;
1210 -webkit-box-sizing: border-box;
1211 /* Old browsers */
1211 /* Old browsers */
1212 display: -webkit-box;
1212 display: -webkit-box;
1213 -webkit-box-orient: vertical;
1213 -webkit-box-orient: vertical;
1214 -webkit-box-align: stretch;
1214 -webkit-box-align: stretch;
1215 display: -moz-box;
1215 display: -moz-box;
1216 -moz-box-orient: vertical;
1216 -moz-box-orient: vertical;
1217 -moz-box-align: stretch;
1217 -moz-box-align: stretch;
1218 display: box;
1218 display: box;
1219 box-orient: vertical;
1219 box-orient: vertical;
1220 box-align: stretch;
1220 box-align: stretch;
1221 /* Modern browsers */
1221 /* Modern browsers */
1222 display: flex;
1222 display: flex;
1223 flex-direction: column;
1223 flex-direction: column;
1224 align-items: stretch;
1224 align-items: stretch;
1225 /* Old browsers */
1225 /* Old browsers */
1226 -webkit-box-flex: 2;
1226 -webkit-box-flex: 2;
1227 -moz-box-flex: 2;
1227 -moz-box-flex: 2;
1228 box-flex: 2;
1228 box-flex: 2;
1229 /* Modern browsers */
1229 /* Modern browsers */
1230 flex: 2;
1230 flex: 2;
1231 /* Old browsers */
1231 /* Old browsers */
1232 -webkit-box-align: start;
1232 -webkit-box-align: start;
1233 -moz-box-align: start;
1233 -moz-box-align: start;
1234 box-align: start;
1234 box-align: start;
1235 /* Modern browsers */
1235 /* Modern browsers */
1236 align-items: flex-start;
1236 align-items: flex-start;
1237 }
1237 }
1238 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
1238 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
1239 THE WIDGET AREA). */
1239 THE WIDGET AREA). */
1240 .slide-track {
1240 .slide-track {
1241 /* Slider Track */
1241 /* Slider Track */
1242 border: 1px solid #CCCCCC;
1242 border: 1px solid #CCCCCC;
1243 background: #FFFFFF;
1243 background: #FFFFFF;
1244 border-radius: 4px;
1244 border-radius: 4px;
1245 /* Round the corners of the slide track */
1245 /* Round the corners of the slide track */
1246 }
1246 }
1247 .widget-hslider {
1247 .widget-hslider {
1248 /* Horizontal jQuery Slider
1248 /* Horizontal jQuery Slider
1249
1249
1250 Both the horizontal and vertical versions of the slider are characterized
1250 Both the horizontal and vertical versions of the slider are characterized
1251 by a styled div that contains an invisible jQuery slide div which
1251 by a styled div that contains an invisible jQuery slide div which
1252 contains a visible slider handle div. This is requred so we can control
1252 contains a visible slider handle div. This is requred so we can control
1253 how the slider is drawn and 'fix' the issue where the slide handle
1253 how the slider is drawn and 'fix' the issue where the slide handle
1254 doesn't stop at the end of the slide.
1254 doesn't stop at the end of the slide.
1255
1255
1256 Both horizontal and vertical sliders have this div nesting:
1256 Both horizontal and vertical sliders have this div nesting:
1257 +------------------------------------------+
1257 +------------------------------------------+
1258 | widget-(h/v)slider |
1258 | widget-(h/v)slider |
1259 | +--------+---------------------------+ |
1259 | +--------+---------------------------+ |
1260 | | ui-slider | |
1260 | | ui-slider | |
1261 | | +------------------+ | |
1261 | | +------------------+ | |
1262 | | | ui-slider-handle | | |
1262 | | | ui-slider-handle | | |
1263 | | +------------------+ | |
1263 | | +------------------+ | |
1264 | +--------+---------------------------+ |
1264 | +--------+---------------------------+ |
1265 +------------------------------------------+
1265 +------------------------------------------+
1266 */
1266 */
1267 /* Fix the padding of the slide track so the ui-slider is sized
1267 /* Fix the padding of the slide track so the ui-slider is sized
1268 correctly. */
1268 correctly. */
1269 padding-left: 8px;
1269 padding-left: 8px;
1270 padding-right: 5px;
1270 padding-right: 5px;
1271 overflow: visible;
1271 overflow: visible;
1272 /* Default size of the slider */
1272 /* Default size of the slider */
1273 width: 350px;
1273 width: 350px;
1274 height: 5px;
1274 height: 5px;
1275 max-height: 5px;
1275 max-height: 5px;
1276 margin-top: 13px;
1276 margin-top: 13px;
1277 margin-bottom: 10px;
1277 margin-bottom: 10px;
1278 /* Style the slider track */
1278 /* Style the slider track */
1279 /* Slider Track */
1279 /* Slider Track */
1280 border: 1px solid #CCCCCC;
1280 border: 1px solid #CCCCCC;
1281 background: #FFFFFF;
1281 background: #FFFFFF;
1282 border-radius: 4px;
1282 border-radius: 4px;
1283 /* Round the corners of the slide track */
1283 /* Round the corners of the slide track */
1284 /* Make the div a flex box (makes FF behave correctly). */
1284 /* Make the div a flex box (makes FF behave correctly). */
1285 /* Old browsers */
1285 /* Old browsers */
1286 display: -webkit-box;
1286 display: -webkit-box;
1287 -webkit-box-orient: horizontal;
1287 -webkit-box-orient: horizontal;
1288 -webkit-box-align: stretch;
1288 -webkit-box-align: stretch;
1289 display: -moz-box;
1289 display: -moz-box;
1290 -moz-box-orient: horizontal;
1290 -moz-box-orient: horizontal;
1291 -moz-box-align: stretch;
1291 -moz-box-align: stretch;
1292 display: box;
1292 display: box;
1293 box-orient: horizontal;
1293 box-orient: horizontal;
1294 box-align: stretch;
1294 box-align: stretch;
1295 /* Modern browsers */
1295 /* Modern browsers */
1296 display: flex;
1296 display: flex;
1297 flex-direction: row;
1297 flex-direction: row;
1298 align-items: stretch;
1298 align-items: stretch;
1299 }
1299 }
1300 .widget-hslider .ui-slider {
1300 .widget-hslider .ui-slider {
1301 /* Inner, invisible slide div */
1301 /* Inner, invisible slide div */
1302 border: 0px !important;
1302 border: 0px !important;
1303 background: none !important;
1303 background: none !important;
1304 /* Old browsers */
1304 /* Old browsers */
1305 display: -webkit-box;
1305 display: -webkit-box;
1306 -webkit-box-orient: horizontal;
1306 -webkit-box-orient: horizontal;
1307 -webkit-box-align: stretch;
1307 -webkit-box-align: stretch;
1308 display: -moz-box;
1308 display: -moz-box;
1309 -moz-box-orient: horizontal;
1309 -moz-box-orient: horizontal;
1310 -moz-box-align: stretch;
1310 -moz-box-align: stretch;
1311 display: box;
1311 display: box;
1312 box-orient: horizontal;
1312 box-orient: horizontal;
1313 box-align: stretch;
1313 box-align: stretch;
1314 /* Modern browsers */
1314 /* Modern browsers */
1315 display: flex;
1315 display: flex;
1316 flex-direction: row;
1316 flex-direction: row;
1317 align-items: stretch;
1317 align-items: stretch;
1318 /* Old browsers */
1318 /* Old browsers */
1319 -webkit-box-flex: 1;
1319 -webkit-box-flex: 1;
1320 -moz-box-flex: 1;
1320 -moz-box-flex: 1;
1321 box-flex: 1;
1321 box-flex: 1;
1322 /* Modern browsers */
1322 /* Modern browsers */
1323 flex: 1;
1323 flex: 1;
1324 }
1324 }
1325 .widget-hslider .ui-slider .ui-slider-handle {
1325 .widget-hslider .ui-slider .ui-slider-handle {
1326 width: 14px !important;
1326 width: 14px !important;
1327 height: 28px !important;
1327 height: 28px !important;
1328 margin-top: -8px !important;
1328 margin-top: -8px !important;
1329 }
1329 }
1330 .widget-hslider .ui-slider .ui-slider-range {
1330 .widget-hslider .ui-slider .ui-slider-range {
1331 height: 12px !important;
1331 height: 12px !important;
1332 margin-top: -4px !important;
1332 margin-top: -4px !important;
1333 }
1333 }
1334 .widget-vslider {
1334 .widget-vslider {
1335 /* Vertical jQuery Slider */
1335 /* Vertical jQuery Slider */
1336 /* Fix the padding of the slide track so the ui-slider is sized
1336 /* Fix the padding of the slide track so the ui-slider is sized
1337 correctly. */
1337 correctly. */
1338 padding-bottom: 8px;
1338 padding-bottom: 8px;
1339 overflow: visible;
1339 overflow: visible;
1340 /* Default size of the slider */
1340 /* Default size of the slider */
1341 width: 5px;
1341 width: 5px;
1342 max-width: 5px;
1342 max-width: 5px;
1343 height: 250px;
1343 height: 250px;
1344 margin-left: 12px;
1344 margin-left: 12px;
1345 /* Style the slider track */
1345 /* Style the slider track */
1346 /* Slider Track */
1346 /* Slider Track */
1347 border: 1px solid #CCCCCC;
1347 border: 1px solid #CCCCCC;
1348 background: #FFFFFF;
1348 background: #FFFFFF;
1349 border-radius: 4px;
1349 border-radius: 4px;
1350 /* Round the corners of the slide track */
1350 /* Round the corners of the slide track */
1351 /* Make the div a flex box (makes FF behave correctly). */
1351 /* Make the div a flex box (makes FF behave correctly). */
1352 /* Old browsers */
1352 /* Old browsers */
1353 display: -webkit-box;
1353 display: -webkit-box;
1354 -webkit-box-orient: vertical;
1354 -webkit-box-orient: vertical;
1355 -webkit-box-align: stretch;
1355 -webkit-box-align: stretch;
1356 display: -moz-box;
1356 display: -moz-box;
1357 -moz-box-orient: vertical;
1357 -moz-box-orient: vertical;
1358 -moz-box-align: stretch;
1358 -moz-box-align: stretch;
1359 display: box;
1359 display: box;
1360 box-orient: vertical;
1360 box-orient: vertical;
1361 box-align: stretch;
1361 box-align: stretch;
1362 /* Modern browsers */
1362 /* Modern browsers */
1363 display: flex;
1363 display: flex;
1364 flex-direction: column;
1364 flex-direction: column;
1365 align-items: stretch;
1365 align-items: stretch;
1366 }
1366 }
1367 .widget-vslider .ui-slider {
1367 .widget-vslider .ui-slider {
1368 /* Inner, invisible slide div */
1368 /* Inner, invisible slide div */
1369 border: 0px !important;
1369 border: 0px !important;
1370 background: none !important;
1370 background: none !important;
1371 margin-left: -4px;
1371 margin-left: -4px;
1372 margin-top: 5px;
1372 margin-top: 5px;
1373 /* Old browsers */
1373 /* Old browsers */
1374 display: -webkit-box;
1374 display: -webkit-box;
1375 -webkit-box-orient: vertical;
1375 -webkit-box-orient: vertical;
1376 -webkit-box-align: stretch;
1376 -webkit-box-align: stretch;
1377 display: -moz-box;
1377 display: -moz-box;
1378 -moz-box-orient: vertical;
1378 -moz-box-orient: vertical;
1379 -moz-box-align: stretch;
1379 -moz-box-align: stretch;
1380 display: box;
1380 display: box;
1381 box-orient: vertical;
1381 box-orient: vertical;
1382 box-align: stretch;
1382 box-align: stretch;
1383 /* Modern browsers */
1383 /* Modern browsers */
1384 display: flex;
1384 display: flex;
1385 flex-direction: column;
1385 flex-direction: column;
1386 align-items: stretch;
1386 align-items: stretch;
1387 /* Old browsers */
1387 /* Old browsers */
1388 -webkit-box-flex: 1;
1388 -webkit-box-flex: 1;
1389 -moz-box-flex: 1;
1389 -moz-box-flex: 1;
1390 box-flex: 1;
1390 box-flex: 1;
1391 /* Modern browsers */
1391 /* Modern browsers */
1392 flex: 1;
1392 flex: 1;
1393 }
1393 }
1394 .widget-vslider .ui-slider .ui-slider-handle {
1394 .widget-vslider .ui-slider .ui-slider-handle {
1395 width: 28px !important;
1395 width: 28px !important;
1396 height: 14px !important;
1396 height: 14px !important;
1397 margin-left: -9px;
1397 margin-left: -9px;
1398 }
1398 }
1399 .widget-vslider .ui-slider .ui-slider-range {
1399 .widget-vslider .ui-slider .ui-slider-range {
1400 width: 12px !important;
1400 width: 12px !important;
1401 margin-left: -1px !important;
1401 margin-left: -1px !important;
1402 }
1402 }
1403 .widget-text {
1403 .widget-text {
1404 /* String Textbox - used for TextBoxView and TextAreaView */
1404 /* String Textbox - used for TextBoxView and TextAreaView */
1405 width: 350px;
1405 width: 350px;
1406 margin: 0px !important;
1406 margin: 0px;
1407 }
1407 }
1408 .widget-listbox {
1408 .widget-listbox {
1409 /* Listbox */
1409 /* Listbox */
1410 width: 350px;
1410 width: 350px;
1411 margin-bottom: 0px;
1411 margin-bottom: 0px;
1412 }
1412 }
1413 .widget-numeric-text {
1413 .widget-numeric-text {
1414 /* Single Line Textbox - used for IntTextView and FloatTextView */
1414 /* Single Line Textbox - used for IntTextView and FloatTextView */
1415 width: 150px;
1415 width: 150px;
1416 margin: 0px !important;
1416 margin: 0px;
1417 }
1417 }
1418 .widget-progress {
1418 .widget-progress {
1419 /* Progress Bar */
1419 /* Progress Bar */
1420 margin-top: 6px;
1420 margin-top: 6px;
1421 width: 350px;
1421 width: 350px;
1422 }
1422 }
1423 .widget-progress .progress-bar {
1423 .widget-progress .progress-bar {
1424 /* Disable progress bar animation */
1424 /* Disable progress bar animation */
1425 -webkit-transition: none;
1425 -webkit-transition: none;
1426 -moz-transition: none;
1426 -moz-transition: none;
1427 -ms-transition: none;
1427 -ms-transition: none;
1428 -o-transition: none;
1428 -o-transition: none;
1429 transition: none;
1429 transition: none;
1430 }
1430 }
1431 .widget-combo-btn {
1431 .widget-combo-btn {
1432 /* ComboBox Main Button */
1432 /* ComboBox Main Button */
1433 min-width: 125px;
1433 min-width: 125px;
1434 }
1434 }
1435 .widget_item .dropdown-menu li a {
1435 .widget_item .dropdown-menu li a {
1436 color: inherit;
1436 color: inherit;
1437 }
1437 }
1438 .widget-hbox {
1438 .widget-hbox {
1439 /* Horizontal widgets */
1439 /* Horizontal widgets */
1440 /* Old browsers */
1440 /* Old browsers */
1441 display: -webkit-box;
1441 display: -webkit-box;
1442 -webkit-box-orient: horizontal;
1442 -webkit-box-orient: horizontal;
1443 -webkit-box-align: stretch;
1443 -webkit-box-align: stretch;
1444 display: -moz-box;
1444 display: -moz-box;
1445 -moz-box-orient: horizontal;
1445 -moz-box-orient: horizontal;
1446 -moz-box-align: stretch;
1446 -moz-box-align: stretch;
1447 display: box;
1447 display: box;
1448 box-orient: horizontal;
1448 box-orient: horizontal;
1449 box-align: stretch;
1449 box-align: stretch;
1450 /* Modern browsers */
1450 /* Modern browsers */
1451 display: flex;
1451 display: flex;
1452 flex-direction: row;
1452 flex-direction: row;
1453 align-items: stretch;
1453 align-items: stretch;
1454 margin-top: 0px !important;
1455 margin-bottom: 0px !important;
1456 margin-right: 5px;
1457 margin-left: 5px;
1458 }
1454 }
1459 .widget-hbox input[type="checkbox"] {
1455 .widget-hbox input[type="checkbox"] {
1460 margin-top: 9px;
1456 margin-top: 9px;
1461 margin-bottom: 10px;
1457 margin-bottom: 10px;
1462 }
1458 }
1463 .widget-hbox .widget-label {
1459 .widget-hbox .widget-label {
1464 /* Horizontal Label */
1460 /* Horizontal Label */
1465 min-width: 10ex;
1461 min-width: 10ex;
1466 padding-right: 8px;
1462 padding-right: 8px;
1467 padding-top: 5px;
1463 padding-top: 5px;
1468 text-align: right;
1464 text-align: right;
1469 vertical-align: text-top;
1465 vertical-align: text-top;
1470 }
1466 }
1471 .widget-hbox .widget-readout {
1467 .widget-hbox .widget-readout {
1472 padding-left: 8px;
1468 padding-left: 8px;
1473 padding-top: 5px;
1469 padding-top: 5px;
1474 text-align: left;
1470 text-align: left;
1475 vertical-align: text-top;
1471 vertical-align: text-top;
1476 }
1472 }
1477 .widget-vbox {
1473 .widget-vbox {
1478 /* Vertical widgets */
1474 /* Vertical widgets */
1479 /* Old browsers */
1475 /* Old browsers */
1480 display: -webkit-box;
1476 display: -webkit-box;
1481 -webkit-box-orient: vertical;
1477 -webkit-box-orient: vertical;
1482 -webkit-box-align: stretch;
1478 -webkit-box-align: stretch;
1483 display: -moz-box;
1479 display: -moz-box;
1484 -moz-box-orient: vertical;
1480 -moz-box-orient: vertical;
1485 -moz-box-align: stretch;
1481 -moz-box-align: stretch;
1486 display: box;
1482 display: box;
1487 box-orient: vertical;
1483 box-orient: vertical;
1488 box-align: stretch;
1484 box-align: stretch;
1489 /* Modern browsers */
1485 /* Modern browsers */
1490 display: flex;
1486 display: flex;
1491 flex-direction: column;
1487 flex-direction: column;
1492 align-items: stretch;
1488 align-items: stretch;
1493 }
1489 }
1494 .widget-vbox .widget-label {
1490 .widget-vbox .widget-label {
1495 /* Vertical Label */
1491 /* Vertical Label */
1496 padding-bottom: 5px;
1492 padding-bottom: 5px;
1497 text-align: center;
1493 text-align: center;
1498 vertical-align: text-bottom;
1494 vertical-align: text-bottom;
1499 }
1495 }
1500 .widget-vbox .widget-readout {
1496 .widget-vbox .widget-readout {
1501 /* Vertical Label */
1497 /* Vertical Label */
1502 padding-top: 5px;
1498 padding-top: 5px;
1503 text-align: center;
1499 text-align: center;
1504 vertical-align: text-top;
1500 vertical-align: text-top;
1505 }
1501 }
1506 .widget-modal {
1502 .widget-modal {
1507 /* Box - ModalView */
1503 /* Box - ModalView */
1508 overflow: hidden;
1504 overflow: hidden;
1509 position: absolute !important;
1505 position: absolute !important;
1510 top: 0px;
1506 top: 0px;
1511 left: 0px;
1507 left: 0px;
1512 margin-left: 0px !important;
1508 margin-left: 0px !important;
1513 }
1509 }
1514 .widget-modal-body {
1510 .widget-modal-body {
1515 /* Box - ModalView Body */
1511 /* Box - ModalView Body */
1516 max-height: none !important;
1512 max-height: none !important;
1517 }
1513 }
1518 .widget-box {
1514 .widget-box {
1519 /* Box */
1515 /* Box */
1520 box-sizing: border-box;
1516 box-sizing: border-box;
1521 -moz-box-sizing: border-box;
1517 -moz-box-sizing: border-box;
1522 -webkit-box-sizing: border-box;
1518 -webkit-box-sizing: border-box;
1523 /* Old browsers */
1519 /* Old browsers */
1524 -webkit-box-align: start;
1520 -webkit-box-align: start;
1525 -moz-box-align: start;
1521 -moz-box-align: start;
1526 box-align: start;
1522 box-align: start;
1527 /* Modern browsers */
1523 /* Modern browsers */
1528 align-items: flex-start;
1524 align-items: flex-start;
1529 }
1525 }
1530 .widget-radio-box {
1526 .widget-radio-box {
1531 /* Contains RadioButtonsWidget */
1527 /* Contains RadioButtonsWidget */
1532 /* Old browsers */
1528 /* Old browsers */
1533 display: -webkit-box;
1529 display: -webkit-box;
1534 -webkit-box-orient: vertical;
1530 -webkit-box-orient: vertical;
1535 -webkit-box-align: stretch;
1531 -webkit-box-align: stretch;
1536 display: -moz-box;
1532 display: -moz-box;
1537 -moz-box-orient: vertical;
1533 -moz-box-orient: vertical;
1538 -moz-box-align: stretch;
1534 -moz-box-align: stretch;
1539 display: box;
1535 display: box;
1540 box-orient: vertical;
1536 box-orient: vertical;
1541 box-align: stretch;
1537 box-align: stretch;
1542 /* Modern browsers */
1538 /* Modern browsers */
1543 display: flex;
1539 display: flex;
1544 flex-direction: column;
1540 flex-direction: column;
1545 align-items: stretch;
1541 align-items: stretch;
1546 box-sizing: border-box;
1542 box-sizing: border-box;
1547 -moz-box-sizing: border-box;
1543 -moz-box-sizing: border-box;
1548 -webkit-box-sizing: border-box;
1544 -webkit-box-sizing: border-box;
1549 padding-top: 4px;
1545 padding-top: 4px;
1550 }
1546 }
1551 .widget-radio-box label {
1547 .widget-radio-box label {
1552 margin-top: 0px;
1548 margin-top: 0px;
1553 }
1549 }
1554 .docked-widget-modal {
1550 .docked-widget-modal {
1555 /* Horizontal Label */
1551 /* Horizontal Label */
1556 overflow: hidden;
1552 overflow: hidden;
1557 position: relative !important;
1553 position: relative !important;
1558 top: 0px !important;
1554 top: 0px !important;
1559 left: 0px !important;
1555 left: 0px !important;
1560 margin-left: 0px !important;
1556 margin-left: 0px !important;
1561 }
1557 }
1562 /*# sourceMappingURL=ipython.min.css.map */ No newline at end of file
1558 /*# sourceMappingURL=ipython.min.css.map */
@@ -1,10407 +1,10403 b''
1 /*!
1 /*!
2 *
2 *
3 * Twitter Bootstrap
3 * Twitter Bootstrap
4 *
4 *
5 */
5 */
6 /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
6 /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
7 html {
7 html {
8 font-family: sans-serif;
8 font-family: sans-serif;
9 -ms-text-size-adjust: 100%;
9 -ms-text-size-adjust: 100%;
10 -webkit-text-size-adjust: 100%;
10 -webkit-text-size-adjust: 100%;
11 }
11 }
12 body {
12 body {
13 margin: 0;
13 margin: 0;
14 }
14 }
15 article,
15 article,
16 aside,
16 aside,
17 details,
17 details,
18 figcaption,
18 figcaption,
19 figure,
19 figure,
20 footer,
20 footer,
21 header,
21 header,
22 hgroup,
22 hgroup,
23 main,
23 main,
24 nav,
24 nav,
25 section,
25 section,
26 summary {
26 summary {
27 display: block;
27 display: block;
28 }
28 }
29 audio,
29 audio,
30 canvas,
30 canvas,
31 progress,
31 progress,
32 video {
32 video {
33 display: inline-block;
33 display: inline-block;
34 vertical-align: baseline;
34 vertical-align: baseline;
35 }
35 }
36 audio:not([controls]) {
36 audio:not([controls]) {
37 display: none;
37 display: none;
38 height: 0;
38 height: 0;
39 }
39 }
40 [hidden],
40 [hidden],
41 template {
41 template {
42 display: none;
42 display: none;
43 }
43 }
44 a {
44 a {
45 background: transparent;
45 background: transparent;
46 }
46 }
47 a:active,
47 a:active,
48 a:hover {
48 a:hover {
49 outline: 0;
49 outline: 0;
50 }
50 }
51 abbr[title] {
51 abbr[title] {
52 border-bottom: 1px dotted;
52 border-bottom: 1px dotted;
53 }
53 }
54 b,
54 b,
55 strong {
55 strong {
56 font-weight: bold;
56 font-weight: bold;
57 }
57 }
58 dfn {
58 dfn {
59 font-style: italic;
59 font-style: italic;
60 }
60 }
61 h1 {
61 h1 {
62 font-size: 2em;
62 font-size: 2em;
63 margin: 0.67em 0;
63 margin: 0.67em 0;
64 }
64 }
65 mark {
65 mark {
66 background: #ff0;
66 background: #ff0;
67 color: #000;
67 color: #000;
68 }
68 }
69 small {
69 small {
70 font-size: 80%;
70 font-size: 80%;
71 }
71 }
72 sub,
72 sub,
73 sup {
73 sup {
74 font-size: 75%;
74 font-size: 75%;
75 line-height: 0;
75 line-height: 0;
76 position: relative;
76 position: relative;
77 vertical-align: baseline;
77 vertical-align: baseline;
78 }
78 }
79 sup {
79 sup {
80 top: -0.5em;
80 top: -0.5em;
81 }
81 }
82 sub {
82 sub {
83 bottom: -0.25em;
83 bottom: -0.25em;
84 }
84 }
85 img {
85 img {
86 border: 0;
86 border: 0;
87 }
87 }
88 svg:not(:root) {
88 svg:not(:root) {
89 overflow: hidden;
89 overflow: hidden;
90 }
90 }
91 figure {
91 figure {
92 margin: 1em 40px;
92 margin: 1em 40px;
93 }
93 }
94 hr {
94 hr {
95 -moz-box-sizing: content-box;
95 -moz-box-sizing: content-box;
96 box-sizing: content-box;
96 box-sizing: content-box;
97 height: 0;
97 height: 0;
98 }
98 }
99 pre {
99 pre {
100 overflow: auto;
100 overflow: auto;
101 }
101 }
102 code,
102 code,
103 kbd,
103 kbd,
104 pre,
104 pre,
105 samp {
105 samp {
106 font-family: monospace, monospace;
106 font-family: monospace, monospace;
107 font-size: 1em;
107 font-size: 1em;
108 }
108 }
109 button,
109 button,
110 input,
110 input,
111 optgroup,
111 optgroup,
112 select,
112 select,
113 textarea {
113 textarea {
114 color: inherit;
114 color: inherit;
115 font: inherit;
115 font: inherit;
116 margin: 0;
116 margin: 0;
117 }
117 }
118 button {
118 button {
119 overflow: visible;
119 overflow: visible;
120 }
120 }
121 button,
121 button,
122 select {
122 select {
123 text-transform: none;
123 text-transform: none;
124 }
124 }
125 button,
125 button,
126 html input[type="button"],
126 html input[type="button"],
127 input[type="reset"],
127 input[type="reset"],
128 input[type="submit"] {
128 input[type="submit"] {
129 -webkit-appearance: button;
129 -webkit-appearance: button;
130 cursor: pointer;
130 cursor: pointer;
131 }
131 }
132 button[disabled],
132 button[disabled],
133 html input[disabled] {
133 html input[disabled] {
134 cursor: default;
134 cursor: default;
135 }
135 }
136 button::-moz-focus-inner,
136 button::-moz-focus-inner,
137 input::-moz-focus-inner {
137 input::-moz-focus-inner {
138 border: 0;
138 border: 0;
139 padding: 0;
139 padding: 0;
140 }
140 }
141 input {
141 input {
142 line-height: normal;
142 line-height: normal;
143 }
143 }
144 input[type="checkbox"],
144 input[type="checkbox"],
145 input[type="radio"] {
145 input[type="radio"] {
146 box-sizing: border-box;
146 box-sizing: border-box;
147 padding: 0;
147 padding: 0;
148 }
148 }
149 input[type="number"]::-webkit-inner-spin-button,
149 input[type="number"]::-webkit-inner-spin-button,
150 input[type="number"]::-webkit-outer-spin-button {
150 input[type="number"]::-webkit-outer-spin-button {
151 height: auto;
151 height: auto;
152 }
152 }
153 input[type="search"] {
153 input[type="search"] {
154 -webkit-appearance: textfield;
154 -webkit-appearance: textfield;
155 -moz-box-sizing: content-box;
155 -moz-box-sizing: content-box;
156 -webkit-box-sizing: content-box;
156 -webkit-box-sizing: content-box;
157 box-sizing: content-box;
157 box-sizing: content-box;
158 }
158 }
159 input[type="search"]::-webkit-search-cancel-button,
159 input[type="search"]::-webkit-search-cancel-button,
160 input[type="search"]::-webkit-search-decoration {
160 input[type="search"]::-webkit-search-decoration {
161 -webkit-appearance: none;
161 -webkit-appearance: none;
162 }
162 }
163 fieldset {
163 fieldset {
164 border: 1px solid #c0c0c0;
164 border: 1px solid #c0c0c0;
165 margin: 0 2px;
165 margin: 0 2px;
166 padding: 0.35em 0.625em 0.75em;
166 padding: 0.35em 0.625em 0.75em;
167 }
167 }
168 legend {
168 legend {
169 border: 0;
169 border: 0;
170 padding: 0;
170 padding: 0;
171 }
171 }
172 textarea {
172 textarea {
173 overflow: auto;
173 overflow: auto;
174 }
174 }
175 optgroup {
175 optgroup {
176 font-weight: bold;
176 font-weight: bold;
177 }
177 }
178 table {
178 table {
179 border-collapse: collapse;
179 border-collapse: collapse;
180 border-spacing: 0;
180 border-spacing: 0;
181 }
181 }
182 td,
182 td,
183 th {
183 th {
184 padding: 0;
184 padding: 0;
185 }
185 }
186 @media print {
186 @media print {
187 * {
187 * {
188 text-shadow: none !important;
188 text-shadow: none !important;
189 color: #000 !important;
189 color: #000 !important;
190 background: transparent !important;
190 background: transparent !important;
191 box-shadow: none !important;
191 box-shadow: none !important;
192 }
192 }
193 a,
193 a,
194 a:visited {
194 a:visited {
195 text-decoration: underline;
195 text-decoration: underline;
196 }
196 }
197 a[href]:after {
197 a[href]:after {
198 content: " (" attr(href) ")";
198 content: " (" attr(href) ")";
199 }
199 }
200 abbr[title]:after {
200 abbr[title]:after {
201 content: " (" attr(title) ")";
201 content: " (" attr(title) ")";
202 }
202 }
203 a[href^="javascript:"]:after,
203 a[href^="javascript:"]:after,
204 a[href^="#"]:after {
204 a[href^="#"]:after {
205 content: "";
205 content: "";
206 }
206 }
207 pre,
207 pre,
208 blockquote {
208 blockquote {
209 border: 1px solid #999;
209 border: 1px solid #999;
210 page-break-inside: avoid;
210 page-break-inside: avoid;
211 }
211 }
212 thead {
212 thead {
213 display: table-header-group;
213 display: table-header-group;
214 }
214 }
215 tr,
215 tr,
216 img {
216 img {
217 page-break-inside: avoid;
217 page-break-inside: avoid;
218 }
218 }
219 img {
219 img {
220 max-width: 100% !important;
220 max-width: 100% !important;
221 }
221 }
222 p,
222 p,
223 h2,
223 h2,
224 h3 {
224 h3 {
225 orphans: 3;
225 orphans: 3;
226 widows: 3;
226 widows: 3;
227 }
227 }
228 h2,
228 h2,
229 h3 {
229 h3 {
230 page-break-after: avoid;
230 page-break-after: avoid;
231 }
231 }
232 select {
232 select {
233 background: #fff !important;
233 background: #fff !important;
234 }
234 }
235 .navbar {
235 .navbar {
236 display: none;
236 display: none;
237 }
237 }
238 .table td,
238 .table td,
239 .table th {
239 .table th {
240 background-color: #fff !important;
240 background-color: #fff !important;
241 }
241 }
242 .btn > .caret,
242 .btn > .caret,
243 .dropup > .btn > .caret {
243 .dropup > .btn > .caret {
244 border-top-color: #000 !important;
244 border-top-color: #000 !important;
245 }
245 }
246 .label {
246 .label {
247 border: 1px solid #000;
247 border: 1px solid #000;
248 }
248 }
249 .table {
249 .table {
250 border-collapse: collapse !important;
250 border-collapse: collapse !important;
251 }
251 }
252 .table-bordered th,
252 .table-bordered th,
253 .table-bordered td {
253 .table-bordered td {
254 border: 1px solid #ddd !important;
254 border: 1px solid #ddd !important;
255 }
255 }
256 }
256 }
257 * {
257 * {
258 -webkit-box-sizing: border-box;
258 -webkit-box-sizing: border-box;
259 -moz-box-sizing: border-box;
259 -moz-box-sizing: border-box;
260 box-sizing: border-box;
260 box-sizing: border-box;
261 }
261 }
262 *:before,
262 *:before,
263 *:after {
263 *:after {
264 -webkit-box-sizing: border-box;
264 -webkit-box-sizing: border-box;
265 -moz-box-sizing: border-box;
265 -moz-box-sizing: border-box;
266 box-sizing: border-box;
266 box-sizing: border-box;
267 }
267 }
268 html {
268 html {
269 font-size: 62.5%;
269 font-size: 62.5%;
270 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
270 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
271 }
271 }
272 body {
272 body {
273 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
273 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
274 font-size: 13px;
274 font-size: 13px;
275 line-height: 1.42857143;
275 line-height: 1.42857143;
276 color: #000000;
276 color: #000000;
277 background-color: #ffffff;
277 background-color: #ffffff;
278 }
278 }
279 input,
279 input,
280 button,
280 button,
281 select,
281 select,
282 textarea {
282 textarea {
283 font-family: inherit;
283 font-family: inherit;
284 font-size: inherit;
284 font-size: inherit;
285 line-height: inherit;
285 line-height: inherit;
286 }
286 }
287 a {
287 a {
288 color: #428bca;
288 color: #428bca;
289 text-decoration: none;
289 text-decoration: none;
290 }
290 }
291 a:hover,
291 a:hover,
292 a:focus {
292 a:focus {
293 color: #2a6496;
293 color: #2a6496;
294 text-decoration: underline;
294 text-decoration: underline;
295 }
295 }
296 a:focus {
296 a:focus {
297 outline: thin dotted;
297 outline: thin dotted;
298 outline: 5px auto -webkit-focus-ring-color;
298 outline: 5px auto -webkit-focus-ring-color;
299 outline-offset: -2px;
299 outline-offset: -2px;
300 }
300 }
301 figure {
301 figure {
302 margin: 0;
302 margin: 0;
303 }
303 }
304 img {
304 img {
305 vertical-align: middle;
305 vertical-align: middle;
306 }
306 }
307 .img-responsive,
307 .img-responsive,
308 .thumbnail > img,
308 .thumbnail > img,
309 .thumbnail a > img,
309 .thumbnail a > img,
310 .carousel-inner > .item > img,
310 .carousel-inner > .item > img,
311 .carousel-inner > .item > a > img {
311 .carousel-inner > .item > a > img {
312 display: block;
312 display: block;
313 max-width: 100%;
313 max-width: 100%;
314 height: auto;
314 height: auto;
315 }
315 }
316 .img-rounded {
316 .img-rounded {
317 border-radius: 6px;
317 border-radius: 6px;
318 }
318 }
319 .img-thumbnail {
319 .img-thumbnail {
320 padding: 4px;
320 padding: 4px;
321 line-height: 1.42857143;
321 line-height: 1.42857143;
322 background-color: #ffffff;
322 background-color: #ffffff;
323 border: 1px solid #dddddd;
323 border: 1px solid #dddddd;
324 border-radius: 4px;
324 border-radius: 4px;
325 -webkit-transition: all 0.2s ease-in-out;
325 -webkit-transition: all 0.2s ease-in-out;
326 transition: all 0.2s ease-in-out;
326 transition: all 0.2s ease-in-out;
327 display: inline-block;
327 display: inline-block;
328 max-width: 100%;
328 max-width: 100%;
329 height: auto;
329 height: auto;
330 }
330 }
331 .img-circle {
331 .img-circle {
332 border-radius: 50%;
332 border-radius: 50%;
333 }
333 }
334 hr {
334 hr {
335 margin-top: 18px;
335 margin-top: 18px;
336 margin-bottom: 18px;
336 margin-bottom: 18px;
337 border: 0;
337 border: 0;
338 border-top: 1px solid #eeeeee;
338 border-top: 1px solid #eeeeee;
339 }
339 }
340 .sr-only {
340 .sr-only {
341 position: absolute;
341 position: absolute;
342 width: 1px;
342 width: 1px;
343 height: 1px;
343 height: 1px;
344 margin: -1px;
344 margin: -1px;
345 padding: 0;
345 padding: 0;
346 overflow: hidden;
346 overflow: hidden;
347 clip: rect(0, 0, 0, 0);
347 clip: rect(0, 0, 0, 0);
348 border: 0;
348 border: 0;
349 }
349 }
350 h1,
350 h1,
351 h2,
351 h2,
352 h3,
352 h3,
353 h4,
353 h4,
354 h5,
354 h5,
355 h6,
355 h6,
356 .h1,
356 .h1,
357 .h2,
357 .h2,
358 .h3,
358 .h3,
359 .h4,
359 .h4,
360 .h5,
360 .h5,
361 .h6 {
361 .h6 {
362 font-family: inherit;
362 font-family: inherit;
363 font-weight: 500;
363 font-weight: 500;
364 line-height: 1.1;
364 line-height: 1.1;
365 color: inherit;
365 color: inherit;
366 }
366 }
367 h1 small,
367 h1 small,
368 h2 small,
368 h2 small,
369 h3 small,
369 h3 small,
370 h4 small,
370 h4 small,
371 h5 small,
371 h5 small,
372 h6 small,
372 h6 small,
373 .h1 small,
373 .h1 small,
374 .h2 small,
374 .h2 small,
375 .h3 small,
375 .h3 small,
376 .h4 small,
376 .h4 small,
377 .h5 small,
377 .h5 small,
378 .h6 small,
378 .h6 small,
379 h1 .small,
379 h1 .small,
380 h2 .small,
380 h2 .small,
381 h3 .small,
381 h3 .small,
382 h4 .small,
382 h4 .small,
383 h5 .small,
383 h5 .small,
384 h6 .small,
384 h6 .small,
385 .h1 .small,
385 .h1 .small,
386 .h2 .small,
386 .h2 .small,
387 .h3 .small,
387 .h3 .small,
388 .h4 .small,
388 .h4 .small,
389 .h5 .small,
389 .h5 .small,
390 .h6 .small {
390 .h6 .small {
391 font-weight: normal;
391 font-weight: normal;
392 line-height: 1;
392 line-height: 1;
393 color: #999999;
393 color: #999999;
394 }
394 }
395 h1,
395 h1,
396 .h1,
396 .h1,
397 h2,
397 h2,
398 .h2,
398 .h2,
399 h3,
399 h3,
400 .h3 {
400 .h3 {
401 margin-top: 18px;
401 margin-top: 18px;
402 margin-bottom: 9px;
402 margin-bottom: 9px;
403 }
403 }
404 h1 small,
404 h1 small,
405 .h1 small,
405 .h1 small,
406 h2 small,
406 h2 small,
407 .h2 small,
407 .h2 small,
408 h3 small,
408 h3 small,
409 .h3 small,
409 .h3 small,
410 h1 .small,
410 h1 .small,
411 .h1 .small,
411 .h1 .small,
412 h2 .small,
412 h2 .small,
413 .h2 .small,
413 .h2 .small,
414 h3 .small,
414 h3 .small,
415 .h3 .small {
415 .h3 .small {
416 font-size: 65%;
416 font-size: 65%;
417 }
417 }
418 h4,
418 h4,
419 .h4,
419 .h4,
420 h5,
420 h5,
421 .h5,
421 .h5,
422 h6,
422 h6,
423 .h6 {
423 .h6 {
424 margin-top: 9px;
424 margin-top: 9px;
425 margin-bottom: 9px;
425 margin-bottom: 9px;
426 }
426 }
427 h4 small,
427 h4 small,
428 .h4 small,
428 .h4 small,
429 h5 small,
429 h5 small,
430 .h5 small,
430 .h5 small,
431 h6 small,
431 h6 small,
432 .h6 small,
432 .h6 small,
433 h4 .small,
433 h4 .small,
434 .h4 .small,
434 .h4 .small,
435 h5 .small,
435 h5 .small,
436 .h5 .small,
436 .h5 .small,
437 h6 .small,
437 h6 .small,
438 .h6 .small {
438 .h6 .small {
439 font-size: 75%;
439 font-size: 75%;
440 }
440 }
441 h1,
441 h1,
442 .h1 {
442 .h1 {
443 font-size: 33px;
443 font-size: 33px;
444 }
444 }
445 h2,
445 h2,
446 .h2 {
446 .h2 {
447 font-size: 27px;
447 font-size: 27px;
448 }
448 }
449 h3,
449 h3,
450 .h3 {
450 .h3 {
451 font-size: 23px;
451 font-size: 23px;
452 }
452 }
453 h4,
453 h4,
454 .h4 {
454 .h4 {
455 font-size: 17px;
455 font-size: 17px;
456 }
456 }
457 h5,
457 h5,
458 .h5 {
458 .h5 {
459 font-size: 13px;
459 font-size: 13px;
460 }
460 }
461 h6,
461 h6,
462 .h6 {
462 .h6 {
463 font-size: 12px;
463 font-size: 12px;
464 }
464 }
465 p {
465 p {
466 margin: 0 0 9px;
466 margin: 0 0 9px;
467 }
467 }
468 .lead {
468 .lead {
469 margin-bottom: 18px;
469 margin-bottom: 18px;
470 font-size: 14px;
470 font-size: 14px;
471 font-weight: 200;
471 font-weight: 200;
472 line-height: 1.4;
472 line-height: 1.4;
473 }
473 }
474 @media (min-width: 768px) {
474 @media (min-width: 768px) {
475 .lead {
475 .lead {
476 font-size: 19.5px;
476 font-size: 19.5px;
477 }
477 }
478 }
478 }
479 small,
479 small,
480 .small {
480 .small {
481 font-size: 85%;
481 font-size: 85%;
482 }
482 }
483 cite {
483 cite {
484 font-style: normal;
484 font-style: normal;
485 }
485 }
486 .text-left {
486 .text-left {
487 text-align: left;
487 text-align: left;
488 }
488 }
489 .text-right {
489 .text-right {
490 text-align: right;
490 text-align: right;
491 }
491 }
492 .text-center {
492 .text-center {
493 text-align: center;
493 text-align: center;
494 }
494 }
495 .text-justify {
495 .text-justify {
496 text-align: justify;
496 text-align: justify;
497 }
497 }
498 .text-muted {
498 .text-muted {
499 color: #999999;
499 color: #999999;
500 }
500 }
501 .text-primary {
501 .text-primary {
502 color: #428bca;
502 color: #428bca;
503 }
503 }
504 a.text-primary:hover {
504 a.text-primary:hover {
505 color: #3071a9;
505 color: #3071a9;
506 }
506 }
507 .text-success {
507 .text-success {
508 color: #3c763d;
508 color: #3c763d;
509 }
509 }
510 a.text-success:hover {
510 a.text-success:hover {
511 color: #2b542c;
511 color: #2b542c;
512 }
512 }
513 .text-info {
513 .text-info {
514 color: #31708f;
514 color: #31708f;
515 }
515 }
516 a.text-info:hover {
516 a.text-info:hover {
517 color: #245269;
517 color: #245269;
518 }
518 }
519 .text-warning {
519 .text-warning {
520 color: #8a6d3b;
520 color: #8a6d3b;
521 }
521 }
522 a.text-warning:hover {
522 a.text-warning:hover {
523 color: #66512c;
523 color: #66512c;
524 }
524 }
525 .text-danger {
525 .text-danger {
526 color: #a94442;
526 color: #a94442;
527 }
527 }
528 a.text-danger:hover {
528 a.text-danger:hover {
529 color: #843534;
529 color: #843534;
530 }
530 }
531 .bg-primary {
531 .bg-primary {
532 color: #fff;
532 color: #fff;
533 background-color: #428bca;
533 background-color: #428bca;
534 }
534 }
535 a.bg-primary:hover {
535 a.bg-primary:hover {
536 background-color: #3071a9;
536 background-color: #3071a9;
537 }
537 }
538 .bg-success {
538 .bg-success {
539 background-color: #dff0d8;
539 background-color: #dff0d8;
540 }
540 }
541 a.bg-success:hover {
541 a.bg-success:hover {
542 background-color: #c1e2b3;
542 background-color: #c1e2b3;
543 }
543 }
544 .bg-info {
544 .bg-info {
545 background-color: #d9edf7;
545 background-color: #d9edf7;
546 }
546 }
547 a.bg-info:hover {
547 a.bg-info:hover {
548 background-color: #afd9ee;
548 background-color: #afd9ee;
549 }
549 }
550 .bg-warning {
550 .bg-warning {
551 background-color: #fcf8e3;
551 background-color: #fcf8e3;
552 }
552 }
553 a.bg-warning:hover {
553 a.bg-warning:hover {
554 background-color: #f7ecb5;
554 background-color: #f7ecb5;
555 }
555 }
556 .bg-danger {
556 .bg-danger {
557 background-color: #f2dede;
557 background-color: #f2dede;
558 }
558 }
559 a.bg-danger:hover {
559 a.bg-danger:hover {
560 background-color: #e4b9b9;
560 background-color: #e4b9b9;
561 }
561 }
562 .page-header {
562 .page-header {
563 padding-bottom: 8px;
563 padding-bottom: 8px;
564 margin: 36px 0 18px;
564 margin: 36px 0 18px;
565 border-bottom: 1px solid #eeeeee;
565 border-bottom: 1px solid #eeeeee;
566 }
566 }
567 ul,
567 ul,
568 ol {
568 ol {
569 margin-top: 0;
569 margin-top: 0;
570 margin-bottom: 9px;
570 margin-bottom: 9px;
571 }
571 }
572 ul ul,
572 ul ul,
573 ol ul,
573 ol ul,
574 ul ol,
574 ul ol,
575 ol ol {
575 ol ol {
576 margin-bottom: 0;
576 margin-bottom: 0;
577 }
577 }
578 .list-unstyled {
578 .list-unstyled {
579 padding-left: 0;
579 padding-left: 0;
580 list-style: none;
580 list-style: none;
581 }
581 }
582 .list-inline {
582 .list-inline {
583 padding-left: 0;
583 padding-left: 0;
584 list-style: none;
584 list-style: none;
585 margin-left: -5px;
585 margin-left: -5px;
586 }
586 }
587 .list-inline > li {
587 .list-inline > li {
588 display: inline-block;
588 display: inline-block;
589 padding-left: 5px;
589 padding-left: 5px;
590 padding-right: 5px;
590 padding-right: 5px;
591 }
591 }
592 dl {
592 dl {
593 margin-top: 0;
593 margin-top: 0;
594 margin-bottom: 18px;
594 margin-bottom: 18px;
595 }
595 }
596 dt,
596 dt,
597 dd {
597 dd {
598 line-height: 1.42857143;
598 line-height: 1.42857143;
599 }
599 }
600 dt {
600 dt {
601 font-weight: bold;
601 font-weight: bold;
602 }
602 }
603 dd {
603 dd {
604 margin-left: 0;
604 margin-left: 0;
605 }
605 }
606 @media (min-width: 540px) {
606 @media (min-width: 540px) {
607 .dl-horizontal dt {
607 .dl-horizontal dt {
608 float: left;
608 float: left;
609 width: 160px;
609 width: 160px;
610 clear: left;
610 clear: left;
611 text-align: right;
611 text-align: right;
612 overflow: hidden;
612 overflow: hidden;
613 text-overflow: ellipsis;
613 text-overflow: ellipsis;
614 white-space: nowrap;
614 white-space: nowrap;
615 }
615 }
616 .dl-horizontal dd {
616 .dl-horizontal dd {
617 margin-left: 180px;
617 margin-left: 180px;
618 }
618 }
619 }
619 }
620 abbr[title],
620 abbr[title],
621 abbr[data-original-title] {
621 abbr[data-original-title] {
622 cursor: help;
622 cursor: help;
623 border-bottom: 1px dotted #999999;
623 border-bottom: 1px dotted #999999;
624 }
624 }
625 .initialism {
625 .initialism {
626 font-size: 90%;
626 font-size: 90%;
627 text-transform: uppercase;
627 text-transform: uppercase;
628 }
628 }
629 blockquote {
629 blockquote {
630 padding: 9px 18px;
630 padding: 9px 18px;
631 margin: 0 0 18px;
631 margin: 0 0 18px;
632 font-size: inherit;
632 font-size: inherit;
633 border-left: 5px solid #eeeeee;
633 border-left: 5px solid #eeeeee;
634 }
634 }
635 blockquote p:last-child,
635 blockquote p:last-child,
636 blockquote ul:last-child,
636 blockquote ul:last-child,
637 blockquote ol:last-child {
637 blockquote ol:last-child {
638 margin-bottom: 0;
638 margin-bottom: 0;
639 }
639 }
640 blockquote footer,
640 blockquote footer,
641 blockquote small,
641 blockquote small,
642 blockquote .small {
642 blockquote .small {
643 display: block;
643 display: block;
644 font-size: 80%;
644 font-size: 80%;
645 line-height: 1.42857143;
645 line-height: 1.42857143;
646 color: #999999;
646 color: #999999;
647 }
647 }
648 blockquote footer:before,
648 blockquote footer:before,
649 blockquote small:before,
649 blockquote small:before,
650 blockquote .small:before {
650 blockquote .small:before {
651 content: '\2014 \00A0';
651 content: '\2014 \00A0';
652 }
652 }
653 .blockquote-reverse,
653 .blockquote-reverse,
654 blockquote.pull-right {
654 blockquote.pull-right {
655 padding-right: 15px;
655 padding-right: 15px;
656 padding-left: 0;
656 padding-left: 0;
657 border-right: 5px solid #eeeeee;
657 border-right: 5px solid #eeeeee;
658 border-left: 0;
658 border-left: 0;
659 text-align: right;
659 text-align: right;
660 }
660 }
661 .blockquote-reverse footer:before,
661 .blockquote-reverse footer:before,
662 blockquote.pull-right footer:before,
662 blockquote.pull-right footer:before,
663 .blockquote-reverse small:before,
663 .blockquote-reverse small:before,
664 blockquote.pull-right small:before,
664 blockquote.pull-right small:before,
665 .blockquote-reverse .small:before,
665 .blockquote-reverse .small:before,
666 blockquote.pull-right .small:before {
666 blockquote.pull-right .small:before {
667 content: '';
667 content: '';
668 }
668 }
669 .blockquote-reverse footer:after,
669 .blockquote-reverse footer:after,
670 blockquote.pull-right footer:after,
670 blockquote.pull-right footer:after,
671 .blockquote-reverse small:after,
671 .blockquote-reverse small:after,
672 blockquote.pull-right small:after,
672 blockquote.pull-right small:after,
673 .blockquote-reverse .small:after,
673 .blockquote-reverse .small:after,
674 blockquote.pull-right .small:after {
674 blockquote.pull-right .small:after {
675 content: '\00A0 \2014';
675 content: '\00A0 \2014';
676 }
676 }
677 blockquote:before,
677 blockquote:before,
678 blockquote:after {
678 blockquote:after {
679 content: "";
679 content: "";
680 }
680 }
681 address {
681 address {
682 margin-bottom: 18px;
682 margin-bottom: 18px;
683 font-style: normal;
683 font-style: normal;
684 line-height: 1.42857143;
684 line-height: 1.42857143;
685 }
685 }
686 code,
686 code,
687 kbd,
687 kbd,
688 pre,
688 pre,
689 samp {
689 samp {
690 font-family: monospace;
690 font-family: monospace;
691 }
691 }
692 code {
692 code {
693 padding: 2px 4px;
693 padding: 2px 4px;
694 font-size: 90%;
694 font-size: 90%;
695 color: #c7254e;
695 color: #c7254e;
696 background-color: #f9f2f4;
696 background-color: #f9f2f4;
697 white-space: nowrap;
697 white-space: nowrap;
698 border-radius: 4px;
698 border-radius: 4px;
699 }
699 }
700 kbd {
700 kbd {
701 padding: 2px 4px;
701 padding: 2px 4px;
702 font-size: 90%;
702 font-size: 90%;
703 color: #ffffff;
703 color: #ffffff;
704 background-color: #333333;
704 background-color: #333333;
705 border-radius: 3px;
705 border-radius: 3px;
706 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
706 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
707 }
707 }
708 pre {
708 pre {
709 display: block;
709 display: block;
710 padding: 8.5px;
710 padding: 8.5px;
711 margin: 0 0 9px;
711 margin: 0 0 9px;
712 font-size: 12px;
712 font-size: 12px;
713 line-height: 1.42857143;
713 line-height: 1.42857143;
714 word-break: break-all;
714 word-break: break-all;
715 word-wrap: break-word;
715 word-wrap: break-word;
716 color: #333333;
716 color: #333333;
717 background-color: #f5f5f5;
717 background-color: #f5f5f5;
718 border: 1px solid #cccccc;
718 border: 1px solid #cccccc;
719 border-radius: 4px;
719 border-radius: 4px;
720 }
720 }
721 pre code {
721 pre code {
722 padding: 0;
722 padding: 0;
723 font-size: inherit;
723 font-size: inherit;
724 color: inherit;
724 color: inherit;
725 white-space: pre-wrap;
725 white-space: pre-wrap;
726 background-color: transparent;
726 background-color: transparent;
727 border-radius: 0;
727 border-radius: 0;
728 }
728 }
729 .pre-scrollable {
729 .pre-scrollable {
730 max-height: 340px;
730 max-height: 340px;
731 overflow-y: scroll;
731 overflow-y: scroll;
732 }
732 }
733 .container {
733 .container {
734 margin-right: auto;
734 margin-right: auto;
735 margin-left: auto;
735 margin-left: auto;
736 padding-left: 15px;
736 padding-left: 15px;
737 padding-right: 15px;
737 padding-right: 15px;
738 }
738 }
739 @media (min-width: 768px) {
739 @media (min-width: 768px) {
740 .container {
740 .container {
741 width: 750px;
741 width: 750px;
742 }
742 }
743 }
743 }
744 @media (min-width: 992px) {
744 @media (min-width: 992px) {
745 .container {
745 .container {
746 width: 970px;
746 width: 970px;
747 }
747 }
748 }
748 }
749 @media (min-width: 1200px) {
749 @media (min-width: 1200px) {
750 .container {
750 .container {
751 width: 1170px;
751 width: 1170px;
752 }
752 }
753 }
753 }
754 .container-fluid {
754 .container-fluid {
755 margin-right: auto;
755 margin-right: auto;
756 margin-left: auto;
756 margin-left: auto;
757 padding-left: 15px;
757 padding-left: 15px;
758 padding-right: 15px;
758 padding-right: 15px;
759 }
759 }
760 .row {
760 .row {
761 margin-left: -15px;
761 margin-left: -15px;
762 margin-right: -15px;
762 margin-right: -15px;
763 }
763 }
764 .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
764 .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
765 position: relative;
765 position: relative;
766 min-height: 1px;
766 min-height: 1px;
767 padding-left: 15px;
767 padding-left: 15px;
768 padding-right: 15px;
768 padding-right: 15px;
769 }
769 }
770 .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
770 .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
771 float: left;
771 float: left;
772 }
772 }
773 .col-xs-12 {
773 .col-xs-12 {
774 width: 100%;
774 width: 100%;
775 }
775 }
776 .col-xs-11 {
776 .col-xs-11 {
777 width: 91.66666667%;
777 width: 91.66666667%;
778 }
778 }
779 .col-xs-10 {
779 .col-xs-10 {
780 width: 83.33333333%;
780 width: 83.33333333%;
781 }
781 }
782 .col-xs-9 {
782 .col-xs-9 {
783 width: 75%;
783 width: 75%;
784 }
784 }
785 .col-xs-8 {
785 .col-xs-8 {
786 width: 66.66666667%;
786 width: 66.66666667%;
787 }
787 }
788 .col-xs-7 {
788 .col-xs-7 {
789 width: 58.33333333%;
789 width: 58.33333333%;
790 }
790 }
791 .col-xs-6 {
791 .col-xs-6 {
792 width: 50%;
792 width: 50%;
793 }
793 }
794 .col-xs-5 {
794 .col-xs-5 {
795 width: 41.66666667%;
795 width: 41.66666667%;
796 }
796 }
797 .col-xs-4 {
797 .col-xs-4 {
798 width: 33.33333333%;
798 width: 33.33333333%;
799 }
799 }
800 .col-xs-3 {
800 .col-xs-3 {
801 width: 25%;
801 width: 25%;
802 }
802 }
803 .col-xs-2 {
803 .col-xs-2 {
804 width: 16.66666667%;
804 width: 16.66666667%;
805 }
805 }
806 .col-xs-1 {
806 .col-xs-1 {
807 width: 8.33333333%;
807 width: 8.33333333%;
808 }
808 }
809 .col-xs-pull-12 {
809 .col-xs-pull-12 {
810 right: 100%;
810 right: 100%;
811 }
811 }
812 .col-xs-pull-11 {
812 .col-xs-pull-11 {
813 right: 91.66666667%;
813 right: 91.66666667%;
814 }
814 }
815 .col-xs-pull-10 {
815 .col-xs-pull-10 {
816 right: 83.33333333%;
816 right: 83.33333333%;
817 }
817 }
818 .col-xs-pull-9 {
818 .col-xs-pull-9 {
819 right: 75%;
819 right: 75%;
820 }
820 }
821 .col-xs-pull-8 {
821 .col-xs-pull-8 {
822 right: 66.66666667%;
822 right: 66.66666667%;
823 }
823 }
824 .col-xs-pull-7 {
824 .col-xs-pull-7 {
825 right: 58.33333333%;
825 right: 58.33333333%;
826 }
826 }
827 .col-xs-pull-6 {
827 .col-xs-pull-6 {
828 right: 50%;
828 right: 50%;
829 }
829 }
830 .col-xs-pull-5 {
830 .col-xs-pull-5 {
831 right: 41.66666667%;
831 right: 41.66666667%;
832 }
832 }
833 .col-xs-pull-4 {
833 .col-xs-pull-4 {
834 right: 33.33333333%;
834 right: 33.33333333%;
835 }
835 }
836 .col-xs-pull-3 {
836 .col-xs-pull-3 {
837 right: 25%;
837 right: 25%;
838 }
838 }
839 .col-xs-pull-2 {
839 .col-xs-pull-2 {
840 right: 16.66666667%;
840 right: 16.66666667%;
841 }
841 }
842 .col-xs-pull-1 {
842 .col-xs-pull-1 {
843 right: 8.33333333%;
843 right: 8.33333333%;
844 }
844 }
845 .col-xs-pull-0 {
845 .col-xs-pull-0 {
846 right: 0%;
846 right: 0%;
847 }
847 }
848 .col-xs-push-12 {
848 .col-xs-push-12 {
849 left: 100%;
849 left: 100%;
850 }
850 }
851 .col-xs-push-11 {
851 .col-xs-push-11 {
852 left: 91.66666667%;
852 left: 91.66666667%;
853 }
853 }
854 .col-xs-push-10 {
854 .col-xs-push-10 {
855 left: 83.33333333%;
855 left: 83.33333333%;
856 }
856 }
857 .col-xs-push-9 {
857 .col-xs-push-9 {
858 left: 75%;
858 left: 75%;
859 }
859 }
860 .col-xs-push-8 {
860 .col-xs-push-8 {
861 left: 66.66666667%;
861 left: 66.66666667%;
862 }
862 }
863 .col-xs-push-7 {
863 .col-xs-push-7 {
864 left: 58.33333333%;
864 left: 58.33333333%;
865 }
865 }
866 .col-xs-push-6 {
866 .col-xs-push-6 {
867 left: 50%;
867 left: 50%;
868 }
868 }
869 .col-xs-push-5 {
869 .col-xs-push-5 {
870 left: 41.66666667%;
870 left: 41.66666667%;
871 }
871 }
872 .col-xs-push-4 {
872 .col-xs-push-4 {
873 left: 33.33333333%;
873 left: 33.33333333%;
874 }
874 }
875 .col-xs-push-3 {
875 .col-xs-push-3 {
876 left: 25%;
876 left: 25%;
877 }
877 }
878 .col-xs-push-2 {
878 .col-xs-push-2 {
879 left: 16.66666667%;
879 left: 16.66666667%;
880 }
880 }
881 .col-xs-push-1 {
881 .col-xs-push-1 {
882 left: 8.33333333%;
882 left: 8.33333333%;
883 }
883 }
884 .col-xs-push-0 {
884 .col-xs-push-0 {
885 left: 0%;
885 left: 0%;
886 }
886 }
887 .col-xs-offset-12 {
887 .col-xs-offset-12 {
888 margin-left: 100%;
888 margin-left: 100%;
889 }
889 }
890 .col-xs-offset-11 {
890 .col-xs-offset-11 {
891 margin-left: 91.66666667%;
891 margin-left: 91.66666667%;
892 }
892 }
893 .col-xs-offset-10 {
893 .col-xs-offset-10 {
894 margin-left: 83.33333333%;
894 margin-left: 83.33333333%;
895 }
895 }
896 .col-xs-offset-9 {
896 .col-xs-offset-9 {
897 margin-left: 75%;
897 margin-left: 75%;
898 }
898 }
899 .col-xs-offset-8 {
899 .col-xs-offset-8 {
900 margin-left: 66.66666667%;
900 margin-left: 66.66666667%;
901 }
901 }
902 .col-xs-offset-7 {
902 .col-xs-offset-7 {
903 margin-left: 58.33333333%;
903 margin-left: 58.33333333%;
904 }
904 }
905 .col-xs-offset-6 {
905 .col-xs-offset-6 {
906 margin-left: 50%;
906 margin-left: 50%;
907 }
907 }
908 .col-xs-offset-5 {
908 .col-xs-offset-5 {
909 margin-left: 41.66666667%;
909 margin-left: 41.66666667%;
910 }
910 }
911 .col-xs-offset-4 {
911 .col-xs-offset-4 {
912 margin-left: 33.33333333%;
912 margin-left: 33.33333333%;
913 }
913 }
914 .col-xs-offset-3 {
914 .col-xs-offset-3 {
915 margin-left: 25%;
915 margin-left: 25%;
916 }
916 }
917 .col-xs-offset-2 {
917 .col-xs-offset-2 {
918 margin-left: 16.66666667%;
918 margin-left: 16.66666667%;
919 }
919 }
920 .col-xs-offset-1 {
920 .col-xs-offset-1 {
921 margin-left: 8.33333333%;
921 margin-left: 8.33333333%;
922 }
922 }
923 .col-xs-offset-0 {
923 .col-xs-offset-0 {
924 margin-left: 0%;
924 margin-left: 0%;
925 }
925 }
926 @media (min-width: 768px) {
926 @media (min-width: 768px) {
927 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
927 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
928 float: left;
928 float: left;
929 }
929 }
930 .col-sm-12 {
930 .col-sm-12 {
931 width: 100%;
931 width: 100%;
932 }
932 }
933 .col-sm-11 {
933 .col-sm-11 {
934 width: 91.66666667%;
934 width: 91.66666667%;
935 }
935 }
936 .col-sm-10 {
936 .col-sm-10 {
937 width: 83.33333333%;
937 width: 83.33333333%;
938 }
938 }
939 .col-sm-9 {
939 .col-sm-9 {
940 width: 75%;
940 width: 75%;
941 }
941 }
942 .col-sm-8 {
942 .col-sm-8 {
943 width: 66.66666667%;
943 width: 66.66666667%;
944 }
944 }
945 .col-sm-7 {
945 .col-sm-7 {
946 width: 58.33333333%;
946 width: 58.33333333%;
947 }
947 }
948 .col-sm-6 {
948 .col-sm-6 {
949 width: 50%;
949 width: 50%;
950 }
950 }
951 .col-sm-5 {
951 .col-sm-5 {
952 width: 41.66666667%;
952 width: 41.66666667%;
953 }
953 }
954 .col-sm-4 {
954 .col-sm-4 {
955 width: 33.33333333%;
955 width: 33.33333333%;
956 }
956 }
957 .col-sm-3 {
957 .col-sm-3 {
958 width: 25%;
958 width: 25%;
959 }
959 }
960 .col-sm-2 {
960 .col-sm-2 {
961 width: 16.66666667%;
961 width: 16.66666667%;
962 }
962 }
963 .col-sm-1 {
963 .col-sm-1 {
964 width: 8.33333333%;
964 width: 8.33333333%;
965 }
965 }
966 .col-sm-pull-12 {
966 .col-sm-pull-12 {
967 right: 100%;
967 right: 100%;
968 }
968 }
969 .col-sm-pull-11 {
969 .col-sm-pull-11 {
970 right: 91.66666667%;
970 right: 91.66666667%;
971 }
971 }
972 .col-sm-pull-10 {
972 .col-sm-pull-10 {
973 right: 83.33333333%;
973 right: 83.33333333%;
974 }
974 }
975 .col-sm-pull-9 {
975 .col-sm-pull-9 {
976 right: 75%;
976 right: 75%;
977 }
977 }
978 .col-sm-pull-8 {
978 .col-sm-pull-8 {
979 right: 66.66666667%;
979 right: 66.66666667%;
980 }
980 }
981 .col-sm-pull-7 {
981 .col-sm-pull-7 {
982 right: 58.33333333%;
982 right: 58.33333333%;
983 }
983 }
984 .col-sm-pull-6 {
984 .col-sm-pull-6 {
985 right: 50%;
985 right: 50%;
986 }
986 }
987 .col-sm-pull-5 {
987 .col-sm-pull-5 {
988 right: 41.66666667%;
988 right: 41.66666667%;
989 }
989 }
990 .col-sm-pull-4 {
990 .col-sm-pull-4 {
991 right: 33.33333333%;
991 right: 33.33333333%;
992 }
992 }
993 .col-sm-pull-3 {
993 .col-sm-pull-3 {
994 right: 25%;
994 right: 25%;
995 }
995 }
996 .col-sm-pull-2 {
996 .col-sm-pull-2 {
997 right: 16.66666667%;
997 right: 16.66666667%;
998 }
998 }
999 .col-sm-pull-1 {
999 .col-sm-pull-1 {
1000 right: 8.33333333%;
1000 right: 8.33333333%;
1001 }
1001 }
1002 .col-sm-pull-0 {
1002 .col-sm-pull-0 {
1003 right: 0%;
1003 right: 0%;
1004 }
1004 }
1005 .col-sm-push-12 {
1005 .col-sm-push-12 {
1006 left: 100%;
1006 left: 100%;
1007 }
1007 }
1008 .col-sm-push-11 {
1008 .col-sm-push-11 {
1009 left: 91.66666667%;
1009 left: 91.66666667%;
1010 }
1010 }
1011 .col-sm-push-10 {
1011 .col-sm-push-10 {
1012 left: 83.33333333%;
1012 left: 83.33333333%;
1013 }
1013 }
1014 .col-sm-push-9 {
1014 .col-sm-push-9 {
1015 left: 75%;
1015 left: 75%;
1016 }
1016 }
1017 .col-sm-push-8 {
1017 .col-sm-push-8 {
1018 left: 66.66666667%;
1018 left: 66.66666667%;
1019 }
1019 }
1020 .col-sm-push-7 {
1020 .col-sm-push-7 {
1021 left: 58.33333333%;
1021 left: 58.33333333%;
1022 }
1022 }
1023 .col-sm-push-6 {
1023 .col-sm-push-6 {
1024 left: 50%;
1024 left: 50%;
1025 }
1025 }
1026 .col-sm-push-5 {
1026 .col-sm-push-5 {
1027 left: 41.66666667%;
1027 left: 41.66666667%;
1028 }
1028 }
1029 .col-sm-push-4 {
1029 .col-sm-push-4 {
1030 left: 33.33333333%;
1030 left: 33.33333333%;
1031 }
1031 }
1032 .col-sm-push-3 {
1032 .col-sm-push-3 {
1033 left: 25%;
1033 left: 25%;
1034 }
1034 }
1035 .col-sm-push-2 {
1035 .col-sm-push-2 {
1036 left: 16.66666667%;
1036 left: 16.66666667%;
1037 }
1037 }
1038 .col-sm-push-1 {
1038 .col-sm-push-1 {
1039 left: 8.33333333%;
1039 left: 8.33333333%;
1040 }
1040 }
1041 .col-sm-push-0 {
1041 .col-sm-push-0 {
1042 left: 0%;
1042 left: 0%;
1043 }
1043 }
1044 .col-sm-offset-12 {
1044 .col-sm-offset-12 {
1045 margin-left: 100%;
1045 margin-left: 100%;
1046 }
1046 }
1047 .col-sm-offset-11 {
1047 .col-sm-offset-11 {
1048 margin-left: 91.66666667%;
1048 margin-left: 91.66666667%;
1049 }
1049 }
1050 .col-sm-offset-10 {
1050 .col-sm-offset-10 {
1051 margin-left: 83.33333333%;
1051 margin-left: 83.33333333%;
1052 }
1052 }
1053 .col-sm-offset-9 {
1053 .col-sm-offset-9 {
1054 margin-left: 75%;
1054 margin-left: 75%;
1055 }
1055 }
1056 .col-sm-offset-8 {
1056 .col-sm-offset-8 {
1057 margin-left: 66.66666667%;
1057 margin-left: 66.66666667%;
1058 }
1058 }
1059 .col-sm-offset-7 {
1059 .col-sm-offset-7 {
1060 margin-left: 58.33333333%;
1060 margin-left: 58.33333333%;
1061 }
1061 }
1062 .col-sm-offset-6 {
1062 .col-sm-offset-6 {
1063 margin-left: 50%;
1063 margin-left: 50%;
1064 }
1064 }
1065 .col-sm-offset-5 {
1065 .col-sm-offset-5 {
1066 margin-left: 41.66666667%;
1066 margin-left: 41.66666667%;
1067 }
1067 }
1068 .col-sm-offset-4 {
1068 .col-sm-offset-4 {
1069 margin-left: 33.33333333%;
1069 margin-left: 33.33333333%;
1070 }
1070 }
1071 .col-sm-offset-3 {
1071 .col-sm-offset-3 {
1072 margin-left: 25%;
1072 margin-left: 25%;
1073 }
1073 }
1074 .col-sm-offset-2 {
1074 .col-sm-offset-2 {
1075 margin-left: 16.66666667%;
1075 margin-left: 16.66666667%;
1076 }
1076 }
1077 .col-sm-offset-1 {
1077 .col-sm-offset-1 {
1078 margin-left: 8.33333333%;
1078 margin-left: 8.33333333%;
1079 }
1079 }
1080 .col-sm-offset-0 {
1080 .col-sm-offset-0 {
1081 margin-left: 0%;
1081 margin-left: 0%;
1082 }
1082 }
1083 }
1083 }
1084 @media (min-width: 992px) {
1084 @media (min-width: 992px) {
1085 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1085 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1086 float: left;
1086 float: left;
1087 }
1087 }
1088 .col-md-12 {
1088 .col-md-12 {
1089 width: 100%;
1089 width: 100%;
1090 }
1090 }
1091 .col-md-11 {
1091 .col-md-11 {
1092 width: 91.66666667%;
1092 width: 91.66666667%;
1093 }
1093 }
1094 .col-md-10 {
1094 .col-md-10 {
1095 width: 83.33333333%;
1095 width: 83.33333333%;
1096 }
1096 }
1097 .col-md-9 {
1097 .col-md-9 {
1098 width: 75%;
1098 width: 75%;
1099 }
1099 }
1100 .col-md-8 {
1100 .col-md-8 {
1101 width: 66.66666667%;
1101 width: 66.66666667%;
1102 }
1102 }
1103 .col-md-7 {
1103 .col-md-7 {
1104 width: 58.33333333%;
1104 width: 58.33333333%;
1105 }
1105 }
1106 .col-md-6 {
1106 .col-md-6 {
1107 width: 50%;
1107 width: 50%;
1108 }
1108 }
1109 .col-md-5 {
1109 .col-md-5 {
1110 width: 41.66666667%;
1110 width: 41.66666667%;
1111 }
1111 }
1112 .col-md-4 {
1112 .col-md-4 {
1113 width: 33.33333333%;
1113 width: 33.33333333%;
1114 }
1114 }
1115 .col-md-3 {
1115 .col-md-3 {
1116 width: 25%;
1116 width: 25%;
1117 }
1117 }
1118 .col-md-2 {
1118 .col-md-2 {
1119 width: 16.66666667%;
1119 width: 16.66666667%;
1120 }
1120 }
1121 .col-md-1 {
1121 .col-md-1 {
1122 width: 8.33333333%;
1122 width: 8.33333333%;
1123 }
1123 }
1124 .col-md-pull-12 {
1124 .col-md-pull-12 {
1125 right: 100%;
1125 right: 100%;
1126 }
1126 }
1127 .col-md-pull-11 {
1127 .col-md-pull-11 {
1128 right: 91.66666667%;
1128 right: 91.66666667%;
1129 }
1129 }
1130 .col-md-pull-10 {
1130 .col-md-pull-10 {
1131 right: 83.33333333%;
1131 right: 83.33333333%;
1132 }
1132 }
1133 .col-md-pull-9 {
1133 .col-md-pull-9 {
1134 right: 75%;
1134 right: 75%;
1135 }
1135 }
1136 .col-md-pull-8 {
1136 .col-md-pull-8 {
1137 right: 66.66666667%;
1137 right: 66.66666667%;
1138 }
1138 }
1139 .col-md-pull-7 {
1139 .col-md-pull-7 {
1140 right: 58.33333333%;
1140 right: 58.33333333%;
1141 }
1141 }
1142 .col-md-pull-6 {
1142 .col-md-pull-6 {
1143 right: 50%;
1143 right: 50%;
1144 }
1144 }
1145 .col-md-pull-5 {
1145 .col-md-pull-5 {
1146 right: 41.66666667%;
1146 right: 41.66666667%;
1147 }
1147 }
1148 .col-md-pull-4 {
1148 .col-md-pull-4 {
1149 right: 33.33333333%;
1149 right: 33.33333333%;
1150 }
1150 }
1151 .col-md-pull-3 {
1151 .col-md-pull-3 {
1152 right: 25%;
1152 right: 25%;
1153 }
1153 }
1154 .col-md-pull-2 {
1154 .col-md-pull-2 {
1155 right: 16.66666667%;
1155 right: 16.66666667%;
1156 }
1156 }
1157 .col-md-pull-1 {
1157 .col-md-pull-1 {
1158 right: 8.33333333%;
1158 right: 8.33333333%;
1159 }
1159 }
1160 .col-md-pull-0 {
1160 .col-md-pull-0 {
1161 right: 0%;
1161 right: 0%;
1162 }
1162 }
1163 .col-md-push-12 {
1163 .col-md-push-12 {
1164 left: 100%;
1164 left: 100%;
1165 }
1165 }
1166 .col-md-push-11 {
1166 .col-md-push-11 {
1167 left: 91.66666667%;
1167 left: 91.66666667%;
1168 }
1168 }
1169 .col-md-push-10 {
1169 .col-md-push-10 {
1170 left: 83.33333333%;
1170 left: 83.33333333%;
1171 }
1171 }
1172 .col-md-push-9 {
1172 .col-md-push-9 {
1173 left: 75%;
1173 left: 75%;
1174 }
1174 }
1175 .col-md-push-8 {
1175 .col-md-push-8 {
1176 left: 66.66666667%;
1176 left: 66.66666667%;
1177 }
1177 }
1178 .col-md-push-7 {
1178 .col-md-push-7 {
1179 left: 58.33333333%;
1179 left: 58.33333333%;
1180 }
1180 }
1181 .col-md-push-6 {
1181 .col-md-push-6 {
1182 left: 50%;
1182 left: 50%;
1183 }
1183 }
1184 .col-md-push-5 {
1184 .col-md-push-5 {
1185 left: 41.66666667%;
1185 left: 41.66666667%;
1186 }
1186 }
1187 .col-md-push-4 {
1187 .col-md-push-4 {
1188 left: 33.33333333%;
1188 left: 33.33333333%;
1189 }
1189 }
1190 .col-md-push-3 {
1190 .col-md-push-3 {
1191 left: 25%;
1191 left: 25%;
1192 }
1192 }
1193 .col-md-push-2 {
1193 .col-md-push-2 {
1194 left: 16.66666667%;
1194 left: 16.66666667%;
1195 }
1195 }
1196 .col-md-push-1 {
1196 .col-md-push-1 {
1197 left: 8.33333333%;
1197 left: 8.33333333%;
1198 }
1198 }
1199 .col-md-push-0 {
1199 .col-md-push-0 {
1200 left: 0%;
1200 left: 0%;
1201 }
1201 }
1202 .col-md-offset-12 {
1202 .col-md-offset-12 {
1203 margin-left: 100%;
1203 margin-left: 100%;
1204 }
1204 }
1205 .col-md-offset-11 {
1205 .col-md-offset-11 {
1206 margin-left: 91.66666667%;
1206 margin-left: 91.66666667%;
1207 }
1207 }
1208 .col-md-offset-10 {
1208 .col-md-offset-10 {
1209 margin-left: 83.33333333%;
1209 margin-left: 83.33333333%;
1210 }
1210 }
1211 .col-md-offset-9 {
1211 .col-md-offset-9 {
1212 margin-left: 75%;
1212 margin-left: 75%;
1213 }
1213 }
1214 .col-md-offset-8 {
1214 .col-md-offset-8 {
1215 margin-left: 66.66666667%;
1215 margin-left: 66.66666667%;
1216 }
1216 }
1217 .col-md-offset-7 {
1217 .col-md-offset-7 {
1218 margin-left: 58.33333333%;
1218 margin-left: 58.33333333%;
1219 }
1219 }
1220 .col-md-offset-6 {
1220 .col-md-offset-6 {
1221 margin-left: 50%;
1221 margin-left: 50%;
1222 }
1222 }
1223 .col-md-offset-5 {
1223 .col-md-offset-5 {
1224 margin-left: 41.66666667%;
1224 margin-left: 41.66666667%;
1225 }
1225 }
1226 .col-md-offset-4 {
1226 .col-md-offset-4 {
1227 margin-left: 33.33333333%;
1227 margin-left: 33.33333333%;
1228 }
1228 }
1229 .col-md-offset-3 {
1229 .col-md-offset-3 {
1230 margin-left: 25%;
1230 margin-left: 25%;
1231 }
1231 }
1232 .col-md-offset-2 {
1232 .col-md-offset-2 {
1233 margin-left: 16.66666667%;
1233 margin-left: 16.66666667%;
1234 }
1234 }
1235 .col-md-offset-1 {
1235 .col-md-offset-1 {
1236 margin-left: 8.33333333%;
1236 margin-left: 8.33333333%;
1237 }
1237 }
1238 .col-md-offset-0 {
1238 .col-md-offset-0 {
1239 margin-left: 0%;
1239 margin-left: 0%;
1240 }
1240 }
1241 }
1241 }
1242 @media (min-width: 1200px) {
1242 @media (min-width: 1200px) {
1243 .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
1243 .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
1244 float: left;
1244 float: left;
1245 }
1245 }
1246 .col-lg-12 {
1246 .col-lg-12 {
1247 width: 100%;
1247 width: 100%;
1248 }
1248 }
1249 .col-lg-11 {
1249 .col-lg-11 {
1250 width: 91.66666667%;
1250 width: 91.66666667%;
1251 }
1251 }
1252 .col-lg-10 {
1252 .col-lg-10 {
1253 width: 83.33333333%;
1253 width: 83.33333333%;
1254 }
1254 }
1255 .col-lg-9 {
1255 .col-lg-9 {
1256 width: 75%;
1256 width: 75%;
1257 }
1257 }
1258 .col-lg-8 {
1258 .col-lg-8 {
1259 width: 66.66666667%;
1259 width: 66.66666667%;
1260 }
1260 }
1261 .col-lg-7 {
1261 .col-lg-7 {
1262 width: 58.33333333%;
1262 width: 58.33333333%;
1263 }
1263 }
1264 .col-lg-6 {
1264 .col-lg-6 {
1265 width: 50%;
1265 width: 50%;
1266 }
1266 }
1267 .col-lg-5 {
1267 .col-lg-5 {
1268 width: 41.66666667%;
1268 width: 41.66666667%;
1269 }
1269 }
1270 .col-lg-4 {
1270 .col-lg-4 {
1271 width: 33.33333333%;
1271 width: 33.33333333%;
1272 }
1272 }
1273 .col-lg-3 {
1273 .col-lg-3 {
1274 width: 25%;
1274 width: 25%;
1275 }
1275 }
1276 .col-lg-2 {
1276 .col-lg-2 {
1277 width: 16.66666667%;
1277 width: 16.66666667%;
1278 }
1278 }
1279 .col-lg-1 {
1279 .col-lg-1 {
1280 width: 8.33333333%;
1280 width: 8.33333333%;
1281 }
1281 }
1282 .col-lg-pull-12 {
1282 .col-lg-pull-12 {
1283 right: 100%;
1283 right: 100%;
1284 }
1284 }
1285 .col-lg-pull-11 {
1285 .col-lg-pull-11 {
1286 right: 91.66666667%;
1286 right: 91.66666667%;
1287 }
1287 }
1288 .col-lg-pull-10 {
1288 .col-lg-pull-10 {
1289 right: 83.33333333%;
1289 right: 83.33333333%;
1290 }
1290 }
1291 .col-lg-pull-9 {
1291 .col-lg-pull-9 {
1292 right: 75%;
1292 right: 75%;
1293 }
1293 }
1294 .col-lg-pull-8 {
1294 .col-lg-pull-8 {
1295 right: 66.66666667%;
1295 right: 66.66666667%;
1296 }
1296 }
1297 .col-lg-pull-7 {
1297 .col-lg-pull-7 {
1298 right: 58.33333333%;
1298 right: 58.33333333%;
1299 }
1299 }
1300 .col-lg-pull-6 {
1300 .col-lg-pull-6 {
1301 right: 50%;
1301 right: 50%;
1302 }
1302 }
1303 .col-lg-pull-5 {
1303 .col-lg-pull-5 {
1304 right: 41.66666667%;
1304 right: 41.66666667%;
1305 }
1305 }
1306 .col-lg-pull-4 {
1306 .col-lg-pull-4 {
1307 right: 33.33333333%;
1307 right: 33.33333333%;
1308 }
1308 }
1309 .col-lg-pull-3 {
1309 .col-lg-pull-3 {
1310 right: 25%;
1310 right: 25%;
1311 }
1311 }
1312 .col-lg-pull-2 {
1312 .col-lg-pull-2 {
1313 right: 16.66666667%;
1313 right: 16.66666667%;
1314 }
1314 }
1315 .col-lg-pull-1 {
1315 .col-lg-pull-1 {
1316 right: 8.33333333%;
1316 right: 8.33333333%;
1317 }
1317 }
1318 .col-lg-pull-0 {
1318 .col-lg-pull-0 {
1319 right: 0%;
1319 right: 0%;
1320 }
1320 }
1321 .col-lg-push-12 {
1321 .col-lg-push-12 {
1322 left: 100%;
1322 left: 100%;
1323 }
1323 }
1324 .col-lg-push-11 {
1324 .col-lg-push-11 {
1325 left: 91.66666667%;
1325 left: 91.66666667%;
1326 }
1326 }
1327 .col-lg-push-10 {
1327 .col-lg-push-10 {
1328 left: 83.33333333%;
1328 left: 83.33333333%;
1329 }
1329 }
1330 .col-lg-push-9 {
1330 .col-lg-push-9 {
1331 left: 75%;
1331 left: 75%;
1332 }
1332 }
1333 .col-lg-push-8 {
1333 .col-lg-push-8 {
1334 left: 66.66666667%;
1334 left: 66.66666667%;
1335 }
1335 }
1336 .col-lg-push-7 {
1336 .col-lg-push-7 {
1337 left: 58.33333333%;
1337 left: 58.33333333%;
1338 }
1338 }
1339 .col-lg-push-6 {
1339 .col-lg-push-6 {
1340 left: 50%;
1340 left: 50%;
1341 }
1341 }
1342 .col-lg-push-5 {
1342 .col-lg-push-5 {
1343 left: 41.66666667%;
1343 left: 41.66666667%;
1344 }
1344 }
1345 .col-lg-push-4 {
1345 .col-lg-push-4 {
1346 left: 33.33333333%;
1346 left: 33.33333333%;
1347 }
1347 }
1348 .col-lg-push-3 {
1348 .col-lg-push-3 {
1349 left: 25%;
1349 left: 25%;
1350 }
1350 }
1351 .col-lg-push-2 {
1351 .col-lg-push-2 {
1352 left: 16.66666667%;
1352 left: 16.66666667%;
1353 }
1353 }
1354 .col-lg-push-1 {
1354 .col-lg-push-1 {
1355 left: 8.33333333%;
1355 left: 8.33333333%;
1356 }
1356 }
1357 .col-lg-push-0 {
1357 .col-lg-push-0 {
1358 left: 0%;
1358 left: 0%;
1359 }
1359 }
1360 .col-lg-offset-12 {
1360 .col-lg-offset-12 {
1361 margin-left: 100%;
1361 margin-left: 100%;
1362 }
1362 }
1363 .col-lg-offset-11 {
1363 .col-lg-offset-11 {
1364 margin-left: 91.66666667%;
1364 margin-left: 91.66666667%;
1365 }
1365 }
1366 .col-lg-offset-10 {
1366 .col-lg-offset-10 {
1367 margin-left: 83.33333333%;
1367 margin-left: 83.33333333%;
1368 }
1368 }
1369 .col-lg-offset-9 {
1369 .col-lg-offset-9 {
1370 margin-left: 75%;
1370 margin-left: 75%;
1371 }
1371 }
1372 .col-lg-offset-8 {
1372 .col-lg-offset-8 {
1373 margin-left: 66.66666667%;
1373 margin-left: 66.66666667%;
1374 }
1374 }
1375 .col-lg-offset-7 {
1375 .col-lg-offset-7 {
1376 margin-left: 58.33333333%;
1376 margin-left: 58.33333333%;
1377 }
1377 }
1378 .col-lg-offset-6 {
1378 .col-lg-offset-6 {
1379 margin-left: 50%;
1379 margin-left: 50%;
1380 }
1380 }
1381 .col-lg-offset-5 {
1381 .col-lg-offset-5 {
1382 margin-left: 41.66666667%;
1382 margin-left: 41.66666667%;
1383 }
1383 }
1384 .col-lg-offset-4 {
1384 .col-lg-offset-4 {
1385 margin-left: 33.33333333%;
1385 margin-left: 33.33333333%;
1386 }
1386 }
1387 .col-lg-offset-3 {
1387 .col-lg-offset-3 {
1388 margin-left: 25%;
1388 margin-left: 25%;
1389 }
1389 }
1390 .col-lg-offset-2 {
1390 .col-lg-offset-2 {
1391 margin-left: 16.66666667%;
1391 margin-left: 16.66666667%;
1392 }
1392 }
1393 .col-lg-offset-1 {
1393 .col-lg-offset-1 {
1394 margin-left: 8.33333333%;
1394 margin-left: 8.33333333%;
1395 }
1395 }
1396 .col-lg-offset-0 {
1396 .col-lg-offset-0 {
1397 margin-left: 0%;
1397 margin-left: 0%;
1398 }
1398 }
1399 }
1399 }
1400 table {
1400 table {
1401 max-width: 100%;
1401 max-width: 100%;
1402 background-color: transparent;
1402 background-color: transparent;
1403 }
1403 }
1404 th {
1404 th {
1405 text-align: left;
1405 text-align: left;
1406 }
1406 }
1407 .table {
1407 .table {
1408 width: 100%;
1408 width: 100%;
1409 margin-bottom: 18px;
1409 margin-bottom: 18px;
1410 }
1410 }
1411 .table > thead > tr > th,
1411 .table > thead > tr > th,
1412 .table > tbody > tr > th,
1412 .table > tbody > tr > th,
1413 .table > tfoot > tr > th,
1413 .table > tfoot > tr > th,
1414 .table > thead > tr > td,
1414 .table > thead > tr > td,
1415 .table > tbody > tr > td,
1415 .table > tbody > tr > td,
1416 .table > tfoot > tr > td {
1416 .table > tfoot > tr > td {
1417 padding: 8px;
1417 padding: 8px;
1418 line-height: 1.42857143;
1418 line-height: 1.42857143;
1419 vertical-align: top;
1419 vertical-align: top;
1420 border-top: 1px solid #dddddd;
1420 border-top: 1px solid #dddddd;
1421 }
1421 }
1422 .table > thead > tr > th {
1422 .table > thead > tr > th {
1423 vertical-align: bottom;
1423 vertical-align: bottom;
1424 border-bottom: 2px solid #dddddd;
1424 border-bottom: 2px solid #dddddd;
1425 }
1425 }
1426 .table > caption + thead > tr:first-child > th,
1426 .table > caption + thead > tr:first-child > th,
1427 .table > colgroup + thead > tr:first-child > th,
1427 .table > colgroup + thead > tr:first-child > th,
1428 .table > thead:first-child > tr:first-child > th,
1428 .table > thead:first-child > tr:first-child > th,
1429 .table > caption + thead > tr:first-child > td,
1429 .table > caption + thead > tr:first-child > td,
1430 .table > colgroup + thead > tr:first-child > td,
1430 .table > colgroup + thead > tr:first-child > td,
1431 .table > thead:first-child > tr:first-child > td {
1431 .table > thead:first-child > tr:first-child > td {
1432 border-top: 0;
1432 border-top: 0;
1433 }
1433 }
1434 .table > tbody + tbody {
1434 .table > tbody + tbody {
1435 border-top: 2px solid #dddddd;
1435 border-top: 2px solid #dddddd;
1436 }
1436 }
1437 .table .table {
1437 .table .table {
1438 background-color: #ffffff;
1438 background-color: #ffffff;
1439 }
1439 }
1440 .table-condensed > thead > tr > th,
1440 .table-condensed > thead > tr > th,
1441 .table-condensed > tbody > tr > th,
1441 .table-condensed > tbody > tr > th,
1442 .table-condensed > tfoot > tr > th,
1442 .table-condensed > tfoot > tr > th,
1443 .table-condensed > thead > tr > td,
1443 .table-condensed > thead > tr > td,
1444 .table-condensed > tbody > tr > td,
1444 .table-condensed > tbody > tr > td,
1445 .table-condensed > tfoot > tr > td {
1445 .table-condensed > tfoot > tr > td {
1446 padding: 5px;
1446 padding: 5px;
1447 }
1447 }
1448 .table-bordered {
1448 .table-bordered {
1449 border: 1px solid #dddddd;
1449 border: 1px solid #dddddd;
1450 }
1450 }
1451 .table-bordered > thead > tr > th,
1451 .table-bordered > thead > tr > th,
1452 .table-bordered > tbody > tr > th,
1452 .table-bordered > tbody > tr > th,
1453 .table-bordered > tfoot > tr > th,
1453 .table-bordered > tfoot > tr > th,
1454 .table-bordered > thead > tr > td,
1454 .table-bordered > thead > tr > td,
1455 .table-bordered > tbody > tr > td,
1455 .table-bordered > tbody > tr > td,
1456 .table-bordered > tfoot > tr > td {
1456 .table-bordered > tfoot > tr > td {
1457 border: 1px solid #dddddd;
1457 border: 1px solid #dddddd;
1458 }
1458 }
1459 .table-bordered > thead > tr > th,
1459 .table-bordered > thead > tr > th,
1460 .table-bordered > thead > tr > td {
1460 .table-bordered > thead > tr > td {
1461 border-bottom-width: 2px;
1461 border-bottom-width: 2px;
1462 }
1462 }
1463 .table-striped > tbody > tr:nth-child(odd) > td,
1463 .table-striped > tbody > tr:nth-child(odd) > td,
1464 .table-striped > tbody > tr:nth-child(odd) > th {
1464 .table-striped > tbody > tr:nth-child(odd) > th {
1465 background-color: #f9f9f9;
1465 background-color: #f9f9f9;
1466 }
1466 }
1467 .table-hover > tbody > tr:hover > td,
1467 .table-hover > tbody > tr:hover > td,
1468 .table-hover > tbody > tr:hover > th {
1468 .table-hover > tbody > tr:hover > th {
1469 background-color: #f5f5f5;
1469 background-color: #f5f5f5;
1470 }
1470 }
1471 table col[class*="col-"] {
1471 table col[class*="col-"] {
1472 position: static;
1472 position: static;
1473 float: none;
1473 float: none;
1474 display: table-column;
1474 display: table-column;
1475 }
1475 }
1476 table td[class*="col-"],
1476 table td[class*="col-"],
1477 table th[class*="col-"] {
1477 table th[class*="col-"] {
1478 position: static;
1478 position: static;
1479 float: none;
1479 float: none;
1480 display: table-cell;
1480 display: table-cell;
1481 }
1481 }
1482 .table > thead > tr > td.active,
1482 .table > thead > tr > td.active,
1483 .table > tbody > tr > td.active,
1483 .table > tbody > tr > td.active,
1484 .table > tfoot > tr > td.active,
1484 .table > tfoot > tr > td.active,
1485 .table > thead > tr > th.active,
1485 .table > thead > tr > th.active,
1486 .table > tbody > tr > th.active,
1486 .table > tbody > tr > th.active,
1487 .table > tfoot > tr > th.active,
1487 .table > tfoot > tr > th.active,
1488 .table > thead > tr.active > td,
1488 .table > thead > tr.active > td,
1489 .table > tbody > tr.active > td,
1489 .table > tbody > tr.active > td,
1490 .table > tfoot > tr.active > td,
1490 .table > tfoot > tr.active > td,
1491 .table > thead > tr.active > th,
1491 .table > thead > tr.active > th,
1492 .table > tbody > tr.active > th,
1492 .table > tbody > tr.active > th,
1493 .table > tfoot > tr.active > th {
1493 .table > tfoot > tr.active > th {
1494 background-color: #f5f5f5;
1494 background-color: #f5f5f5;
1495 }
1495 }
1496 .table-hover > tbody > tr > td.active:hover,
1496 .table-hover > tbody > tr > td.active:hover,
1497 .table-hover > tbody > tr > th.active:hover,
1497 .table-hover > tbody > tr > th.active:hover,
1498 .table-hover > tbody > tr.active:hover > td,
1498 .table-hover > tbody > tr.active:hover > td,
1499 .table-hover > tbody > tr.active:hover > th {
1499 .table-hover > tbody > tr.active:hover > th {
1500 background-color: #e8e8e8;
1500 background-color: #e8e8e8;
1501 }
1501 }
1502 .table > thead > tr > td.success,
1502 .table > thead > tr > td.success,
1503 .table > tbody > tr > td.success,
1503 .table > tbody > tr > td.success,
1504 .table > tfoot > tr > td.success,
1504 .table > tfoot > tr > td.success,
1505 .table > thead > tr > th.success,
1505 .table > thead > tr > th.success,
1506 .table > tbody > tr > th.success,
1506 .table > tbody > tr > th.success,
1507 .table > tfoot > tr > th.success,
1507 .table > tfoot > tr > th.success,
1508 .table > thead > tr.success > td,
1508 .table > thead > tr.success > td,
1509 .table > tbody > tr.success > td,
1509 .table > tbody > tr.success > td,
1510 .table > tfoot > tr.success > td,
1510 .table > tfoot > tr.success > td,
1511 .table > thead > tr.success > th,
1511 .table > thead > tr.success > th,
1512 .table > tbody > tr.success > th,
1512 .table > tbody > tr.success > th,
1513 .table > tfoot > tr.success > th {
1513 .table > tfoot > tr.success > th {
1514 background-color: #dff0d8;
1514 background-color: #dff0d8;
1515 }
1515 }
1516 .table-hover > tbody > tr > td.success:hover,
1516 .table-hover > tbody > tr > td.success:hover,
1517 .table-hover > tbody > tr > th.success:hover,
1517 .table-hover > tbody > tr > th.success:hover,
1518 .table-hover > tbody > tr.success:hover > td,
1518 .table-hover > tbody > tr.success:hover > td,
1519 .table-hover > tbody > tr.success:hover > th {
1519 .table-hover > tbody > tr.success:hover > th {
1520 background-color: #d0e9c6;
1520 background-color: #d0e9c6;
1521 }
1521 }
1522 .table > thead > tr > td.info,
1522 .table > thead > tr > td.info,
1523 .table > tbody > tr > td.info,
1523 .table > tbody > tr > td.info,
1524 .table > tfoot > tr > td.info,
1524 .table > tfoot > tr > td.info,
1525 .table > thead > tr > th.info,
1525 .table > thead > tr > th.info,
1526 .table > tbody > tr > th.info,
1526 .table > tbody > tr > th.info,
1527 .table > tfoot > tr > th.info,
1527 .table > tfoot > tr > th.info,
1528 .table > thead > tr.info > td,
1528 .table > thead > tr.info > td,
1529 .table > tbody > tr.info > td,
1529 .table > tbody > tr.info > td,
1530 .table > tfoot > tr.info > td,
1530 .table > tfoot > tr.info > td,
1531 .table > thead > tr.info > th,
1531 .table > thead > tr.info > th,
1532 .table > tbody > tr.info > th,
1532 .table > tbody > tr.info > th,
1533 .table > tfoot > tr.info > th {
1533 .table > tfoot > tr.info > th {
1534 background-color: #d9edf7;
1534 background-color: #d9edf7;
1535 }
1535 }
1536 .table-hover > tbody > tr > td.info:hover,
1536 .table-hover > tbody > tr > td.info:hover,
1537 .table-hover > tbody > tr > th.info:hover,
1537 .table-hover > tbody > tr > th.info:hover,
1538 .table-hover > tbody > tr.info:hover > td,
1538 .table-hover > tbody > tr.info:hover > td,
1539 .table-hover > tbody > tr.info:hover > th {
1539 .table-hover > tbody > tr.info:hover > th {
1540 background-color: #c4e3f3;
1540 background-color: #c4e3f3;
1541 }
1541 }
1542 .table > thead > tr > td.warning,
1542 .table > thead > tr > td.warning,
1543 .table > tbody > tr > td.warning,
1543 .table > tbody > tr > td.warning,
1544 .table > tfoot > tr > td.warning,
1544 .table > tfoot > tr > td.warning,
1545 .table > thead > tr > th.warning,
1545 .table > thead > tr > th.warning,
1546 .table > tbody > tr > th.warning,
1546 .table > tbody > tr > th.warning,
1547 .table > tfoot > tr > th.warning,
1547 .table > tfoot > tr > th.warning,
1548 .table > thead > tr.warning > td,
1548 .table > thead > tr.warning > td,
1549 .table > tbody > tr.warning > td,
1549 .table > tbody > tr.warning > td,
1550 .table > tfoot > tr.warning > td,
1550 .table > tfoot > tr.warning > td,
1551 .table > thead > tr.warning > th,
1551 .table > thead > tr.warning > th,
1552 .table > tbody > tr.warning > th,
1552 .table > tbody > tr.warning > th,
1553 .table > tfoot > tr.warning > th {
1553 .table > tfoot > tr.warning > th {
1554 background-color: #fcf8e3;
1554 background-color: #fcf8e3;
1555 }
1555 }
1556 .table-hover > tbody > tr > td.warning:hover,
1556 .table-hover > tbody > tr > td.warning:hover,
1557 .table-hover > tbody > tr > th.warning:hover,
1557 .table-hover > tbody > tr > th.warning:hover,
1558 .table-hover > tbody > tr.warning:hover > td,
1558 .table-hover > tbody > tr.warning:hover > td,
1559 .table-hover > tbody > tr.warning:hover > th {
1559 .table-hover > tbody > tr.warning:hover > th {
1560 background-color: #faf2cc;
1560 background-color: #faf2cc;
1561 }
1561 }
1562 .table > thead > tr > td.danger,
1562 .table > thead > tr > td.danger,
1563 .table > tbody > tr > td.danger,
1563 .table > tbody > tr > td.danger,
1564 .table > tfoot > tr > td.danger,
1564 .table > tfoot > tr > td.danger,
1565 .table > thead > tr > th.danger,
1565 .table > thead > tr > th.danger,
1566 .table > tbody > tr > th.danger,
1566 .table > tbody > tr > th.danger,
1567 .table > tfoot > tr > th.danger,
1567 .table > tfoot > tr > th.danger,
1568 .table > thead > tr.danger > td,
1568 .table > thead > tr.danger > td,
1569 .table > tbody > tr.danger > td,
1569 .table > tbody > tr.danger > td,
1570 .table > tfoot > tr.danger > td,
1570 .table > tfoot > tr.danger > td,
1571 .table > thead > tr.danger > th,
1571 .table > thead > tr.danger > th,
1572 .table > tbody > tr.danger > th,
1572 .table > tbody > tr.danger > th,
1573 .table > tfoot > tr.danger > th {
1573 .table > tfoot > tr.danger > th {
1574 background-color: #f2dede;
1574 background-color: #f2dede;
1575 }
1575 }
1576 .table-hover > tbody > tr > td.danger:hover,
1576 .table-hover > tbody > tr > td.danger:hover,
1577 .table-hover > tbody > tr > th.danger:hover,
1577 .table-hover > tbody > tr > th.danger:hover,
1578 .table-hover > tbody > tr.danger:hover > td,
1578 .table-hover > tbody > tr.danger:hover > td,
1579 .table-hover > tbody > tr.danger:hover > th {
1579 .table-hover > tbody > tr.danger:hover > th {
1580 background-color: #ebcccc;
1580 background-color: #ebcccc;
1581 }
1581 }
1582 @media (max-width: 767px) {
1582 @media (max-width: 767px) {
1583 .table-responsive {
1583 .table-responsive {
1584 width: 100%;
1584 width: 100%;
1585 margin-bottom: 13.5px;
1585 margin-bottom: 13.5px;
1586 overflow-y: hidden;
1586 overflow-y: hidden;
1587 overflow-x: scroll;
1587 overflow-x: scroll;
1588 -ms-overflow-style: -ms-autohiding-scrollbar;
1588 -ms-overflow-style: -ms-autohiding-scrollbar;
1589 border: 1px solid #dddddd;
1589 border: 1px solid #dddddd;
1590 -webkit-overflow-scrolling: touch;
1590 -webkit-overflow-scrolling: touch;
1591 }
1591 }
1592 .table-responsive > .table {
1592 .table-responsive > .table {
1593 margin-bottom: 0;
1593 margin-bottom: 0;
1594 }
1594 }
1595 .table-responsive > .table > thead > tr > th,
1595 .table-responsive > .table > thead > tr > th,
1596 .table-responsive > .table > tbody > tr > th,
1596 .table-responsive > .table > tbody > tr > th,
1597 .table-responsive > .table > tfoot > tr > th,
1597 .table-responsive > .table > tfoot > tr > th,
1598 .table-responsive > .table > thead > tr > td,
1598 .table-responsive > .table > thead > tr > td,
1599 .table-responsive > .table > tbody > tr > td,
1599 .table-responsive > .table > tbody > tr > td,
1600 .table-responsive > .table > tfoot > tr > td {
1600 .table-responsive > .table > tfoot > tr > td {
1601 white-space: nowrap;
1601 white-space: nowrap;
1602 }
1602 }
1603 .table-responsive > .table-bordered {
1603 .table-responsive > .table-bordered {
1604 border: 0;
1604 border: 0;
1605 }
1605 }
1606 .table-responsive > .table-bordered > thead > tr > th:first-child,
1606 .table-responsive > .table-bordered > thead > tr > th:first-child,
1607 .table-responsive > .table-bordered > tbody > tr > th:first-child,
1607 .table-responsive > .table-bordered > tbody > tr > th:first-child,
1608 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1608 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1609 .table-responsive > .table-bordered > thead > tr > td:first-child,
1609 .table-responsive > .table-bordered > thead > tr > td:first-child,
1610 .table-responsive > .table-bordered > tbody > tr > td:first-child,
1610 .table-responsive > .table-bordered > tbody > tr > td:first-child,
1611 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1611 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1612 border-left: 0;
1612 border-left: 0;
1613 }
1613 }
1614 .table-responsive > .table-bordered > thead > tr > th:last-child,
1614 .table-responsive > .table-bordered > thead > tr > th:last-child,
1615 .table-responsive > .table-bordered > tbody > tr > th:last-child,
1615 .table-responsive > .table-bordered > tbody > tr > th:last-child,
1616 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1616 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1617 .table-responsive > .table-bordered > thead > tr > td:last-child,
1617 .table-responsive > .table-bordered > thead > tr > td:last-child,
1618 .table-responsive > .table-bordered > tbody > tr > td:last-child,
1618 .table-responsive > .table-bordered > tbody > tr > td:last-child,
1619 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1619 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1620 border-right: 0;
1620 border-right: 0;
1621 }
1621 }
1622 .table-responsive > .table-bordered > tbody > tr:last-child > th,
1622 .table-responsive > .table-bordered > tbody > tr:last-child > th,
1623 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1623 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1624 .table-responsive > .table-bordered > tbody > tr:last-child > td,
1624 .table-responsive > .table-bordered > tbody > tr:last-child > td,
1625 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1625 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1626 border-bottom: 0;
1626 border-bottom: 0;
1627 }
1627 }
1628 }
1628 }
1629 fieldset {
1629 fieldset {
1630 padding: 0;
1630 padding: 0;
1631 margin: 0;
1631 margin: 0;
1632 border: 0;
1632 border: 0;
1633 min-width: 0;
1633 min-width: 0;
1634 }
1634 }
1635 legend {
1635 legend {
1636 display: block;
1636 display: block;
1637 width: 100%;
1637 width: 100%;
1638 padding: 0;
1638 padding: 0;
1639 margin-bottom: 18px;
1639 margin-bottom: 18px;
1640 font-size: 19.5px;
1640 font-size: 19.5px;
1641 line-height: inherit;
1641 line-height: inherit;
1642 color: #333333;
1642 color: #333333;
1643 border: 0;
1643 border: 0;
1644 border-bottom: 1px solid #e5e5e5;
1644 border-bottom: 1px solid #e5e5e5;
1645 }
1645 }
1646 label {
1646 label {
1647 display: inline-block;
1647 display: inline-block;
1648 margin-bottom: 5px;
1648 margin-bottom: 5px;
1649 font-weight: bold;
1649 font-weight: bold;
1650 }
1650 }
1651 input[type="search"] {
1651 input[type="search"] {
1652 -webkit-box-sizing: border-box;
1652 -webkit-box-sizing: border-box;
1653 -moz-box-sizing: border-box;
1653 -moz-box-sizing: border-box;
1654 box-sizing: border-box;
1654 box-sizing: border-box;
1655 }
1655 }
1656 input[type="radio"],
1656 input[type="radio"],
1657 input[type="checkbox"] {
1657 input[type="checkbox"] {
1658 margin: 4px 0 0;
1658 margin: 4px 0 0;
1659 margin-top: 1px \9;
1659 margin-top: 1px \9;
1660 /* IE8-9 */
1660 /* IE8-9 */
1661 line-height: normal;
1661 line-height: normal;
1662 }
1662 }
1663 input[type="file"] {
1663 input[type="file"] {
1664 display: block;
1664 display: block;
1665 }
1665 }
1666 input[type="range"] {
1666 input[type="range"] {
1667 display: block;
1667 display: block;
1668 width: 100%;
1668 width: 100%;
1669 }
1669 }
1670 select[multiple],
1670 select[multiple],
1671 select[size] {
1671 select[size] {
1672 height: auto;
1672 height: auto;
1673 }
1673 }
1674 input[type="file"]:focus,
1674 input[type="file"]:focus,
1675 input[type="radio"]:focus,
1675 input[type="radio"]:focus,
1676 input[type="checkbox"]:focus {
1676 input[type="checkbox"]:focus {
1677 outline: thin dotted;
1677 outline: thin dotted;
1678 outline: 5px auto -webkit-focus-ring-color;
1678 outline: 5px auto -webkit-focus-ring-color;
1679 outline-offset: -2px;
1679 outline-offset: -2px;
1680 }
1680 }
1681 output {
1681 output {
1682 display: block;
1682 display: block;
1683 padding-top: 7px;
1683 padding-top: 7px;
1684 font-size: 13px;
1684 font-size: 13px;
1685 line-height: 1.42857143;
1685 line-height: 1.42857143;
1686 color: #555555;
1686 color: #555555;
1687 }
1687 }
1688 .form-control {
1688 .form-control {
1689 display: block;
1689 display: block;
1690 width: 100%;
1690 width: 100%;
1691 height: 32px;
1691 height: 32px;
1692 padding: 6px 12px;
1692 padding: 6px 12px;
1693 font-size: 13px;
1693 font-size: 13px;
1694 line-height: 1.42857143;
1694 line-height: 1.42857143;
1695 color: #555555;
1695 color: #555555;
1696 background-color: #ffffff;
1696 background-color: #ffffff;
1697 background-image: none;
1697 background-image: none;
1698 border: 1px solid #cccccc;
1698 border: 1px solid #cccccc;
1699 border-radius: 4px;
1699 border-radius: 4px;
1700 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1700 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1701 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1701 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1702 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1702 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1703 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1703 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1704 }
1704 }
1705 .form-control:focus {
1705 .form-control:focus {
1706 border-color: #66afe9;
1706 border-color: #66afe9;
1707 outline: 0;
1707 outline: 0;
1708 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1708 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1709 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1709 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1710 }
1710 }
1711 .form-control::-moz-placeholder {
1711 .form-control::-moz-placeholder {
1712 color: #999999;
1712 color: #999999;
1713 opacity: 1;
1713 opacity: 1;
1714 }
1714 }
1715 .form-control:-ms-input-placeholder {
1715 .form-control:-ms-input-placeholder {
1716 color: #999999;
1716 color: #999999;
1717 }
1717 }
1718 .form-control::-webkit-input-placeholder {
1718 .form-control::-webkit-input-placeholder {
1719 color: #999999;
1719 color: #999999;
1720 }
1720 }
1721 .form-control[disabled],
1721 .form-control[disabled],
1722 .form-control[readonly],
1722 .form-control[readonly],
1723 fieldset[disabled] .form-control {
1723 fieldset[disabled] .form-control {
1724 cursor: not-allowed;
1724 cursor: not-allowed;
1725 background-color: #eeeeee;
1725 background-color: #eeeeee;
1726 opacity: 1;
1726 opacity: 1;
1727 }
1727 }
1728 textarea.form-control {
1728 textarea.form-control {
1729 height: auto;
1729 height: auto;
1730 }
1730 }
1731 input[type="search"] {
1731 input[type="search"] {
1732 -webkit-appearance: none;
1732 -webkit-appearance: none;
1733 }
1733 }
1734 input[type="date"] {
1734 input[type="date"] {
1735 line-height: 32px;
1735 line-height: 32px;
1736 }
1736 }
1737 .form-group {
1737 .form-group {
1738 margin-bottom: 15px;
1738 margin-bottom: 15px;
1739 }
1739 }
1740 .radio,
1740 .radio,
1741 .checkbox {
1741 .checkbox {
1742 display: block;
1742 display: block;
1743 min-height: 18px;
1743 min-height: 18px;
1744 margin-top: 10px;
1744 margin-top: 10px;
1745 margin-bottom: 10px;
1745 margin-bottom: 10px;
1746 padding-left: 20px;
1746 padding-left: 20px;
1747 }
1747 }
1748 .radio label,
1748 .radio label,
1749 .checkbox label {
1749 .checkbox label {
1750 display: inline;
1750 display: inline;
1751 font-weight: normal;
1751 font-weight: normal;
1752 cursor: pointer;
1752 cursor: pointer;
1753 }
1753 }
1754 .radio input[type="radio"],
1754 .radio input[type="radio"],
1755 .radio-inline input[type="radio"],
1755 .radio-inline input[type="radio"],
1756 .checkbox input[type="checkbox"],
1756 .checkbox input[type="checkbox"],
1757 .checkbox-inline input[type="checkbox"] {
1757 .checkbox-inline input[type="checkbox"] {
1758 float: left;
1758 float: left;
1759 margin-left: -20px;
1759 margin-left: -20px;
1760 }
1760 }
1761 .radio + .radio,
1761 .radio + .radio,
1762 .checkbox + .checkbox {
1762 .checkbox + .checkbox {
1763 margin-top: -5px;
1763 margin-top: -5px;
1764 }
1764 }
1765 .radio-inline,
1765 .radio-inline,
1766 .checkbox-inline {
1766 .checkbox-inline {
1767 display: inline-block;
1767 display: inline-block;
1768 padding-left: 20px;
1768 padding-left: 20px;
1769 margin-bottom: 0;
1769 margin-bottom: 0;
1770 vertical-align: middle;
1770 vertical-align: middle;
1771 font-weight: normal;
1771 font-weight: normal;
1772 cursor: pointer;
1772 cursor: pointer;
1773 }
1773 }
1774 .radio-inline + .radio-inline,
1774 .radio-inline + .radio-inline,
1775 .checkbox-inline + .checkbox-inline {
1775 .checkbox-inline + .checkbox-inline {
1776 margin-top: 0;
1776 margin-top: 0;
1777 margin-left: 10px;
1777 margin-left: 10px;
1778 }
1778 }
1779 input[type="radio"][disabled],
1779 input[type="radio"][disabled],
1780 input[type="checkbox"][disabled],
1780 input[type="checkbox"][disabled],
1781 .radio[disabled],
1781 .radio[disabled],
1782 .radio-inline[disabled],
1782 .radio-inline[disabled],
1783 .checkbox[disabled],
1783 .checkbox[disabled],
1784 .checkbox-inline[disabled],
1784 .checkbox-inline[disabled],
1785 fieldset[disabled] input[type="radio"],
1785 fieldset[disabled] input[type="radio"],
1786 fieldset[disabled] input[type="checkbox"],
1786 fieldset[disabled] input[type="checkbox"],
1787 fieldset[disabled] .radio,
1787 fieldset[disabled] .radio,
1788 fieldset[disabled] .radio-inline,
1788 fieldset[disabled] .radio-inline,
1789 fieldset[disabled] .checkbox,
1789 fieldset[disabled] .checkbox,
1790 fieldset[disabled] .checkbox-inline {
1790 fieldset[disabled] .checkbox-inline {
1791 cursor: not-allowed;
1791 cursor: not-allowed;
1792 }
1792 }
1793 .input-sm {
1793 .input-sm {
1794 height: 30px;
1794 height: 30px;
1795 padding: 5px 10px;
1795 padding: 5px 10px;
1796 font-size: 12px;
1796 font-size: 12px;
1797 line-height: 1.5;
1797 line-height: 1.5;
1798 border-radius: 3px;
1798 border-radius: 3px;
1799 }
1799 }
1800 select.input-sm {
1800 select.input-sm {
1801 height: 30px;
1801 height: 30px;
1802 line-height: 30px;
1802 line-height: 30px;
1803 }
1803 }
1804 textarea.input-sm,
1804 textarea.input-sm,
1805 select[multiple].input-sm {
1805 select[multiple].input-sm {
1806 height: auto;
1806 height: auto;
1807 }
1807 }
1808 .input-lg {
1808 .input-lg {
1809 height: 45px;
1809 height: 45px;
1810 padding: 10px 16px;
1810 padding: 10px 16px;
1811 font-size: 17px;
1811 font-size: 17px;
1812 line-height: 1.33;
1812 line-height: 1.33;
1813 border-radius: 6px;
1813 border-radius: 6px;
1814 }
1814 }
1815 select.input-lg {
1815 select.input-lg {
1816 height: 45px;
1816 height: 45px;
1817 line-height: 45px;
1817 line-height: 45px;
1818 }
1818 }
1819 textarea.input-lg,
1819 textarea.input-lg,
1820 select[multiple].input-lg {
1820 select[multiple].input-lg {
1821 height: auto;
1821 height: auto;
1822 }
1822 }
1823 .has-feedback {
1823 .has-feedback {
1824 position: relative;
1824 position: relative;
1825 }
1825 }
1826 .has-feedback .form-control {
1826 .has-feedback .form-control {
1827 padding-right: 40px;
1827 padding-right: 40px;
1828 }
1828 }
1829 .has-feedback .form-control-feedback {
1829 .has-feedback .form-control-feedback {
1830 position: absolute;
1830 position: absolute;
1831 top: 23px;
1831 top: 23px;
1832 right: 0;
1832 right: 0;
1833 display: block;
1833 display: block;
1834 width: 32px;
1834 width: 32px;
1835 height: 32px;
1835 height: 32px;
1836 line-height: 32px;
1836 line-height: 32px;
1837 text-align: center;
1837 text-align: center;
1838 }
1838 }
1839 .has-success .help-block,
1839 .has-success .help-block,
1840 .has-success .control-label,
1840 .has-success .control-label,
1841 .has-success .radio,
1841 .has-success .radio,
1842 .has-success .checkbox,
1842 .has-success .checkbox,
1843 .has-success .radio-inline,
1843 .has-success .radio-inline,
1844 .has-success .checkbox-inline {
1844 .has-success .checkbox-inline {
1845 color: #3c763d;
1845 color: #3c763d;
1846 }
1846 }
1847 .has-success .form-control {
1847 .has-success .form-control {
1848 border-color: #3c763d;
1848 border-color: #3c763d;
1849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1850 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1850 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1851 }
1851 }
1852 .has-success .form-control:focus {
1852 .has-success .form-control:focus {
1853 border-color: #2b542c;
1853 border-color: #2b542c;
1854 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1854 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1855 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1855 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1856 }
1856 }
1857 .has-success .input-group-addon {
1857 .has-success .input-group-addon {
1858 color: #3c763d;
1858 color: #3c763d;
1859 border-color: #3c763d;
1859 border-color: #3c763d;
1860 background-color: #dff0d8;
1860 background-color: #dff0d8;
1861 }
1861 }
1862 .has-success .form-control-feedback {
1862 .has-success .form-control-feedback {
1863 color: #3c763d;
1863 color: #3c763d;
1864 }
1864 }
1865 .has-warning .help-block,
1865 .has-warning .help-block,
1866 .has-warning .control-label,
1866 .has-warning .control-label,
1867 .has-warning .radio,
1867 .has-warning .radio,
1868 .has-warning .checkbox,
1868 .has-warning .checkbox,
1869 .has-warning .radio-inline,
1869 .has-warning .radio-inline,
1870 .has-warning .checkbox-inline {
1870 .has-warning .checkbox-inline {
1871 color: #8a6d3b;
1871 color: #8a6d3b;
1872 }
1872 }
1873 .has-warning .form-control {
1873 .has-warning .form-control {
1874 border-color: #8a6d3b;
1874 border-color: #8a6d3b;
1875 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1875 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1876 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1876 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1877 }
1877 }
1878 .has-warning .form-control:focus {
1878 .has-warning .form-control:focus {
1879 border-color: #66512c;
1879 border-color: #66512c;
1880 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1880 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1881 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1881 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1882 }
1882 }
1883 .has-warning .input-group-addon {
1883 .has-warning .input-group-addon {
1884 color: #8a6d3b;
1884 color: #8a6d3b;
1885 border-color: #8a6d3b;
1885 border-color: #8a6d3b;
1886 background-color: #fcf8e3;
1886 background-color: #fcf8e3;
1887 }
1887 }
1888 .has-warning .form-control-feedback {
1888 .has-warning .form-control-feedback {
1889 color: #8a6d3b;
1889 color: #8a6d3b;
1890 }
1890 }
1891 .has-error .help-block,
1891 .has-error .help-block,
1892 .has-error .control-label,
1892 .has-error .control-label,
1893 .has-error .radio,
1893 .has-error .radio,
1894 .has-error .checkbox,
1894 .has-error .checkbox,
1895 .has-error .radio-inline,
1895 .has-error .radio-inline,
1896 .has-error .checkbox-inline {
1896 .has-error .checkbox-inline {
1897 color: #a94442;
1897 color: #a94442;
1898 }
1898 }
1899 .has-error .form-control {
1899 .has-error .form-control {
1900 border-color: #a94442;
1900 border-color: #a94442;
1901 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1901 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1902 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1902 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1903 }
1903 }
1904 .has-error .form-control:focus {
1904 .has-error .form-control:focus {
1905 border-color: #843534;
1905 border-color: #843534;
1906 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1906 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1907 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1907 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1908 }
1908 }
1909 .has-error .input-group-addon {
1909 .has-error .input-group-addon {
1910 color: #a94442;
1910 color: #a94442;
1911 border-color: #a94442;
1911 border-color: #a94442;
1912 background-color: #f2dede;
1912 background-color: #f2dede;
1913 }
1913 }
1914 .has-error .form-control-feedback {
1914 .has-error .form-control-feedback {
1915 color: #a94442;
1915 color: #a94442;
1916 }
1916 }
1917 .form-control-static {
1917 .form-control-static {
1918 margin-bottom: 0;
1918 margin-bottom: 0;
1919 }
1919 }
1920 .help-block {
1920 .help-block {
1921 display: block;
1921 display: block;
1922 margin-top: 5px;
1922 margin-top: 5px;
1923 margin-bottom: 10px;
1923 margin-bottom: 10px;
1924 color: #404040;
1924 color: #404040;
1925 }
1925 }
1926 @media (min-width: 768px) {
1926 @media (min-width: 768px) {
1927 .form-inline .form-group {
1927 .form-inline .form-group {
1928 display: inline-block;
1928 display: inline-block;
1929 margin-bottom: 0;
1929 margin-bottom: 0;
1930 vertical-align: middle;
1930 vertical-align: middle;
1931 }
1931 }
1932 .form-inline .form-control {
1932 .form-inline .form-control {
1933 display: inline-block;
1933 display: inline-block;
1934 width: auto;
1934 width: auto;
1935 vertical-align: middle;
1935 vertical-align: middle;
1936 }
1936 }
1937 .form-inline .input-group > .form-control {
1937 .form-inline .input-group > .form-control {
1938 width: 100%;
1938 width: 100%;
1939 }
1939 }
1940 .form-inline .control-label {
1940 .form-inline .control-label {
1941 margin-bottom: 0;
1941 margin-bottom: 0;
1942 vertical-align: middle;
1942 vertical-align: middle;
1943 }
1943 }
1944 .form-inline .radio,
1944 .form-inline .radio,
1945 .form-inline .checkbox {
1945 .form-inline .checkbox {
1946 display: inline-block;
1946 display: inline-block;
1947 margin-top: 0;
1947 margin-top: 0;
1948 margin-bottom: 0;
1948 margin-bottom: 0;
1949 padding-left: 0;
1949 padding-left: 0;
1950 vertical-align: middle;
1950 vertical-align: middle;
1951 }
1951 }
1952 .form-inline .radio input[type="radio"],
1952 .form-inline .radio input[type="radio"],
1953 .form-inline .checkbox input[type="checkbox"] {
1953 .form-inline .checkbox input[type="checkbox"] {
1954 float: none;
1954 float: none;
1955 margin-left: 0;
1955 margin-left: 0;
1956 }
1956 }
1957 .form-inline .has-feedback .form-control-feedback {
1957 .form-inline .has-feedback .form-control-feedback {
1958 top: 0;
1958 top: 0;
1959 }
1959 }
1960 }
1960 }
1961 .form-horizontal .control-label,
1961 .form-horizontal .control-label,
1962 .form-horizontal .radio,
1962 .form-horizontal .radio,
1963 .form-horizontal .checkbox,
1963 .form-horizontal .checkbox,
1964 .form-horizontal .radio-inline,
1964 .form-horizontal .radio-inline,
1965 .form-horizontal .checkbox-inline {
1965 .form-horizontal .checkbox-inline {
1966 margin-top: 0;
1966 margin-top: 0;
1967 margin-bottom: 0;
1967 margin-bottom: 0;
1968 padding-top: 7px;
1968 padding-top: 7px;
1969 }
1969 }
1970 .form-horizontal .radio,
1970 .form-horizontal .radio,
1971 .form-horizontal .checkbox {
1971 .form-horizontal .checkbox {
1972 min-height: 25px;
1972 min-height: 25px;
1973 }
1973 }
1974 .form-horizontal .form-group {
1974 .form-horizontal .form-group {
1975 margin-left: -15px;
1975 margin-left: -15px;
1976 margin-right: -15px;
1976 margin-right: -15px;
1977 }
1977 }
1978 .form-horizontal .form-control-static {
1978 .form-horizontal .form-control-static {
1979 padding-top: 7px;
1979 padding-top: 7px;
1980 }
1980 }
1981 @media (min-width: 768px) {
1981 @media (min-width: 768px) {
1982 .form-horizontal .control-label {
1982 .form-horizontal .control-label {
1983 text-align: right;
1983 text-align: right;
1984 }
1984 }
1985 }
1985 }
1986 .form-horizontal .has-feedback .form-control-feedback {
1986 .form-horizontal .has-feedback .form-control-feedback {
1987 top: 0;
1987 top: 0;
1988 right: 15px;
1988 right: 15px;
1989 }
1989 }
1990 .btn {
1990 .btn {
1991 display: inline-block;
1991 display: inline-block;
1992 margin-bottom: 0;
1992 margin-bottom: 0;
1993 font-weight: normal;
1993 font-weight: normal;
1994 text-align: center;
1994 text-align: center;
1995 vertical-align: middle;
1995 vertical-align: middle;
1996 cursor: pointer;
1996 cursor: pointer;
1997 background-image: none;
1997 background-image: none;
1998 border: 1px solid transparent;
1998 border: 1px solid transparent;
1999 white-space: nowrap;
1999 white-space: nowrap;
2000 padding: 6px 12px;
2000 padding: 6px 12px;
2001 font-size: 13px;
2001 font-size: 13px;
2002 line-height: 1.42857143;
2002 line-height: 1.42857143;
2003 border-radius: 4px;
2003 border-radius: 4px;
2004 -webkit-user-select: none;
2004 -webkit-user-select: none;
2005 -moz-user-select: none;
2005 -moz-user-select: none;
2006 -ms-user-select: none;
2006 -ms-user-select: none;
2007 user-select: none;
2007 user-select: none;
2008 }
2008 }
2009 .btn:focus,
2009 .btn:focus,
2010 .btn:active:focus,
2010 .btn:active:focus,
2011 .btn.active:focus {
2011 .btn.active:focus {
2012 outline: thin dotted;
2012 outline: thin dotted;
2013 outline: 5px auto -webkit-focus-ring-color;
2013 outline: 5px auto -webkit-focus-ring-color;
2014 outline-offset: -2px;
2014 outline-offset: -2px;
2015 }
2015 }
2016 .btn:hover,
2016 .btn:hover,
2017 .btn:focus {
2017 .btn:focus {
2018 color: #333333;
2018 color: #333333;
2019 text-decoration: none;
2019 text-decoration: none;
2020 }
2020 }
2021 .btn:active,
2021 .btn:active,
2022 .btn.active {
2022 .btn.active {
2023 outline: 0;
2023 outline: 0;
2024 background-image: none;
2024 background-image: none;
2025 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2025 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2026 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2026 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2027 }
2027 }
2028 .btn.disabled,
2028 .btn.disabled,
2029 .btn[disabled],
2029 .btn[disabled],
2030 fieldset[disabled] .btn {
2030 fieldset[disabled] .btn {
2031 cursor: not-allowed;
2031 cursor: not-allowed;
2032 pointer-events: none;
2032 pointer-events: none;
2033 opacity: 0.65;
2033 opacity: 0.65;
2034 filter: alpha(opacity=65);
2034 filter: alpha(opacity=65);
2035 -webkit-box-shadow: none;
2035 -webkit-box-shadow: none;
2036 box-shadow: none;
2036 box-shadow: none;
2037 }
2037 }
2038 .btn-default {
2038 .btn-default {
2039 color: #333333;
2039 color: #333333;
2040 background-color: #ffffff;
2040 background-color: #ffffff;
2041 border-color: #cccccc;
2041 border-color: #cccccc;
2042 }
2042 }
2043 .btn-default:hover,
2043 .btn-default:hover,
2044 .btn-default:focus,
2044 .btn-default:focus,
2045 .btn-default:active,
2045 .btn-default:active,
2046 .btn-default.active,
2046 .btn-default.active,
2047 .open .dropdown-toggle.btn-default {
2047 .open .dropdown-toggle.btn-default {
2048 color: #333333;
2048 color: #333333;
2049 background-color: #ebebeb;
2049 background-color: #ebebeb;
2050 border-color: #adadad;
2050 border-color: #adadad;
2051 }
2051 }
2052 .btn-default:active,
2052 .btn-default:active,
2053 .btn-default.active,
2053 .btn-default.active,
2054 .open .dropdown-toggle.btn-default {
2054 .open .dropdown-toggle.btn-default {
2055 background-image: none;
2055 background-image: none;
2056 }
2056 }
2057 .btn-default.disabled,
2057 .btn-default.disabled,
2058 .btn-default[disabled],
2058 .btn-default[disabled],
2059 fieldset[disabled] .btn-default,
2059 fieldset[disabled] .btn-default,
2060 .btn-default.disabled:hover,
2060 .btn-default.disabled:hover,
2061 .btn-default[disabled]:hover,
2061 .btn-default[disabled]:hover,
2062 fieldset[disabled] .btn-default:hover,
2062 fieldset[disabled] .btn-default:hover,
2063 .btn-default.disabled:focus,
2063 .btn-default.disabled:focus,
2064 .btn-default[disabled]:focus,
2064 .btn-default[disabled]:focus,
2065 fieldset[disabled] .btn-default:focus,
2065 fieldset[disabled] .btn-default:focus,
2066 .btn-default.disabled:active,
2066 .btn-default.disabled:active,
2067 .btn-default[disabled]:active,
2067 .btn-default[disabled]:active,
2068 fieldset[disabled] .btn-default:active,
2068 fieldset[disabled] .btn-default:active,
2069 .btn-default.disabled.active,
2069 .btn-default.disabled.active,
2070 .btn-default[disabled].active,
2070 .btn-default[disabled].active,
2071 fieldset[disabled] .btn-default.active {
2071 fieldset[disabled] .btn-default.active {
2072 background-color: #ffffff;
2072 background-color: #ffffff;
2073 border-color: #cccccc;
2073 border-color: #cccccc;
2074 }
2074 }
2075 .btn-default .badge {
2075 .btn-default .badge {
2076 color: #ffffff;
2076 color: #ffffff;
2077 background-color: #333333;
2077 background-color: #333333;
2078 }
2078 }
2079 .btn-primary {
2079 .btn-primary {
2080 color: #ffffff;
2080 color: #ffffff;
2081 background-color: #428bca;
2081 background-color: #428bca;
2082 border-color: #357ebd;
2082 border-color: #357ebd;
2083 }
2083 }
2084 .btn-primary:hover,
2084 .btn-primary:hover,
2085 .btn-primary:focus,
2085 .btn-primary:focus,
2086 .btn-primary:active,
2086 .btn-primary:active,
2087 .btn-primary.active,
2087 .btn-primary.active,
2088 .open .dropdown-toggle.btn-primary {
2088 .open .dropdown-toggle.btn-primary {
2089 color: #ffffff;
2089 color: #ffffff;
2090 background-color: #3276b1;
2090 background-color: #3276b1;
2091 border-color: #285e8e;
2091 border-color: #285e8e;
2092 }
2092 }
2093 .btn-primary:active,
2093 .btn-primary:active,
2094 .btn-primary.active,
2094 .btn-primary.active,
2095 .open .dropdown-toggle.btn-primary {
2095 .open .dropdown-toggle.btn-primary {
2096 background-image: none;
2096 background-image: none;
2097 }
2097 }
2098 .btn-primary.disabled,
2098 .btn-primary.disabled,
2099 .btn-primary[disabled],
2099 .btn-primary[disabled],
2100 fieldset[disabled] .btn-primary,
2100 fieldset[disabled] .btn-primary,
2101 .btn-primary.disabled:hover,
2101 .btn-primary.disabled:hover,
2102 .btn-primary[disabled]:hover,
2102 .btn-primary[disabled]:hover,
2103 fieldset[disabled] .btn-primary:hover,
2103 fieldset[disabled] .btn-primary:hover,
2104 .btn-primary.disabled:focus,
2104 .btn-primary.disabled:focus,
2105 .btn-primary[disabled]:focus,
2105 .btn-primary[disabled]:focus,
2106 fieldset[disabled] .btn-primary:focus,
2106 fieldset[disabled] .btn-primary:focus,
2107 .btn-primary.disabled:active,
2107 .btn-primary.disabled:active,
2108 .btn-primary[disabled]:active,
2108 .btn-primary[disabled]:active,
2109 fieldset[disabled] .btn-primary:active,
2109 fieldset[disabled] .btn-primary:active,
2110 .btn-primary.disabled.active,
2110 .btn-primary.disabled.active,
2111 .btn-primary[disabled].active,
2111 .btn-primary[disabled].active,
2112 fieldset[disabled] .btn-primary.active {
2112 fieldset[disabled] .btn-primary.active {
2113 background-color: #428bca;
2113 background-color: #428bca;
2114 border-color: #357ebd;
2114 border-color: #357ebd;
2115 }
2115 }
2116 .btn-primary .badge {
2116 .btn-primary .badge {
2117 color: #428bca;
2117 color: #428bca;
2118 background-color: #ffffff;
2118 background-color: #ffffff;
2119 }
2119 }
2120 .btn-success {
2120 .btn-success {
2121 color: #ffffff;
2121 color: #ffffff;
2122 background-color: #5cb85c;
2122 background-color: #5cb85c;
2123 border-color: #4cae4c;
2123 border-color: #4cae4c;
2124 }
2124 }
2125 .btn-success:hover,
2125 .btn-success:hover,
2126 .btn-success:focus,
2126 .btn-success:focus,
2127 .btn-success:active,
2127 .btn-success:active,
2128 .btn-success.active,
2128 .btn-success.active,
2129 .open .dropdown-toggle.btn-success {
2129 .open .dropdown-toggle.btn-success {
2130 color: #ffffff;
2130 color: #ffffff;
2131 background-color: #47a447;
2131 background-color: #47a447;
2132 border-color: #398439;
2132 border-color: #398439;
2133 }
2133 }
2134 .btn-success:active,
2134 .btn-success:active,
2135 .btn-success.active,
2135 .btn-success.active,
2136 .open .dropdown-toggle.btn-success {
2136 .open .dropdown-toggle.btn-success {
2137 background-image: none;
2137 background-image: none;
2138 }
2138 }
2139 .btn-success.disabled,
2139 .btn-success.disabled,
2140 .btn-success[disabled],
2140 .btn-success[disabled],
2141 fieldset[disabled] .btn-success,
2141 fieldset[disabled] .btn-success,
2142 .btn-success.disabled:hover,
2142 .btn-success.disabled:hover,
2143 .btn-success[disabled]:hover,
2143 .btn-success[disabled]:hover,
2144 fieldset[disabled] .btn-success:hover,
2144 fieldset[disabled] .btn-success:hover,
2145 .btn-success.disabled:focus,
2145 .btn-success.disabled:focus,
2146 .btn-success[disabled]:focus,
2146 .btn-success[disabled]:focus,
2147 fieldset[disabled] .btn-success:focus,
2147 fieldset[disabled] .btn-success:focus,
2148 .btn-success.disabled:active,
2148 .btn-success.disabled:active,
2149 .btn-success[disabled]:active,
2149 .btn-success[disabled]:active,
2150 fieldset[disabled] .btn-success:active,
2150 fieldset[disabled] .btn-success:active,
2151 .btn-success.disabled.active,
2151 .btn-success.disabled.active,
2152 .btn-success[disabled].active,
2152 .btn-success[disabled].active,
2153 fieldset[disabled] .btn-success.active {
2153 fieldset[disabled] .btn-success.active {
2154 background-color: #5cb85c;
2154 background-color: #5cb85c;
2155 border-color: #4cae4c;
2155 border-color: #4cae4c;
2156 }
2156 }
2157 .btn-success .badge {
2157 .btn-success .badge {
2158 color: #5cb85c;
2158 color: #5cb85c;
2159 background-color: #ffffff;
2159 background-color: #ffffff;
2160 }
2160 }
2161 .btn-info {
2161 .btn-info {
2162 color: #ffffff;
2162 color: #ffffff;
2163 background-color: #5bc0de;
2163 background-color: #5bc0de;
2164 border-color: #46b8da;
2164 border-color: #46b8da;
2165 }
2165 }
2166 .btn-info:hover,
2166 .btn-info:hover,
2167 .btn-info:focus,
2167 .btn-info:focus,
2168 .btn-info:active,
2168 .btn-info:active,
2169 .btn-info.active,
2169 .btn-info.active,
2170 .open .dropdown-toggle.btn-info {
2170 .open .dropdown-toggle.btn-info {
2171 color: #ffffff;
2171 color: #ffffff;
2172 background-color: #39b3d7;
2172 background-color: #39b3d7;
2173 border-color: #269abc;
2173 border-color: #269abc;
2174 }
2174 }
2175 .btn-info:active,
2175 .btn-info:active,
2176 .btn-info.active,
2176 .btn-info.active,
2177 .open .dropdown-toggle.btn-info {
2177 .open .dropdown-toggle.btn-info {
2178 background-image: none;
2178 background-image: none;
2179 }
2179 }
2180 .btn-info.disabled,
2180 .btn-info.disabled,
2181 .btn-info[disabled],
2181 .btn-info[disabled],
2182 fieldset[disabled] .btn-info,
2182 fieldset[disabled] .btn-info,
2183 .btn-info.disabled:hover,
2183 .btn-info.disabled:hover,
2184 .btn-info[disabled]:hover,
2184 .btn-info[disabled]:hover,
2185 fieldset[disabled] .btn-info:hover,
2185 fieldset[disabled] .btn-info:hover,
2186 .btn-info.disabled:focus,
2186 .btn-info.disabled:focus,
2187 .btn-info[disabled]:focus,
2187 .btn-info[disabled]:focus,
2188 fieldset[disabled] .btn-info:focus,
2188 fieldset[disabled] .btn-info:focus,
2189 .btn-info.disabled:active,
2189 .btn-info.disabled:active,
2190 .btn-info[disabled]:active,
2190 .btn-info[disabled]:active,
2191 fieldset[disabled] .btn-info:active,
2191 fieldset[disabled] .btn-info:active,
2192 .btn-info.disabled.active,
2192 .btn-info.disabled.active,
2193 .btn-info[disabled].active,
2193 .btn-info[disabled].active,
2194 fieldset[disabled] .btn-info.active {
2194 fieldset[disabled] .btn-info.active {
2195 background-color: #5bc0de;
2195 background-color: #5bc0de;
2196 border-color: #46b8da;
2196 border-color: #46b8da;
2197 }
2197 }
2198 .btn-info .badge {
2198 .btn-info .badge {
2199 color: #5bc0de;
2199 color: #5bc0de;
2200 background-color: #ffffff;
2200 background-color: #ffffff;
2201 }
2201 }
2202 .btn-warning {
2202 .btn-warning {
2203 color: #ffffff;
2203 color: #ffffff;
2204 background-color: #f0ad4e;
2204 background-color: #f0ad4e;
2205 border-color: #eea236;
2205 border-color: #eea236;
2206 }
2206 }
2207 .btn-warning:hover,
2207 .btn-warning:hover,
2208 .btn-warning:focus,
2208 .btn-warning:focus,
2209 .btn-warning:active,
2209 .btn-warning:active,
2210 .btn-warning.active,
2210 .btn-warning.active,
2211 .open .dropdown-toggle.btn-warning {
2211 .open .dropdown-toggle.btn-warning {
2212 color: #ffffff;
2212 color: #ffffff;
2213 background-color: #ed9c28;
2213 background-color: #ed9c28;
2214 border-color: #d58512;
2214 border-color: #d58512;
2215 }
2215 }
2216 .btn-warning:active,
2216 .btn-warning:active,
2217 .btn-warning.active,
2217 .btn-warning.active,
2218 .open .dropdown-toggle.btn-warning {
2218 .open .dropdown-toggle.btn-warning {
2219 background-image: none;
2219 background-image: none;
2220 }
2220 }
2221 .btn-warning.disabled,
2221 .btn-warning.disabled,
2222 .btn-warning[disabled],
2222 .btn-warning[disabled],
2223 fieldset[disabled] .btn-warning,
2223 fieldset[disabled] .btn-warning,
2224 .btn-warning.disabled:hover,
2224 .btn-warning.disabled:hover,
2225 .btn-warning[disabled]:hover,
2225 .btn-warning[disabled]:hover,
2226 fieldset[disabled] .btn-warning:hover,
2226 fieldset[disabled] .btn-warning:hover,
2227 .btn-warning.disabled:focus,
2227 .btn-warning.disabled:focus,
2228 .btn-warning[disabled]:focus,
2228 .btn-warning[disabled]:focus,
2229 fieldset[disabled] .btn-warning:focus,
2229 fieldset[disabled] .btn-warning:focus,
2230 .btn-warning.disabled:active,
2230 .btn-warning.disabled:active,
2231 .btn-warning[disabled]:active,
2231 .btn-warning[disabled]:active,
2232 fieldset[disabled] .btn-warning:active,
2232 fieldset[disabled] .btn-warning:active,
2233 .btn-warning.disabled.active,
2233 .btn-warning.disabled.active,
2234 .btn-warning[disabled].active,
2234 .btn-warning[disabled].active,
2235 fieldset[disabled] .btn-warning.active {
2235 fieldset[disabled] .btn-warning.active {
2236 background-color: #f0ad4e;
2236 background-color: #f0ad4e;
2237 border-color: #eea236;
2237 border-color: #eea236;
2238 }
2238 }
2239 .btn-warning .badge {
2239 .btn-warning .badge {
2240 color: #f0ad4e;
2240 color: #f0ad4e;
2241 background-color: #ffffff;
2241 background-color: #ffffff;
2242 }
2242 }
2243 .btn-danger {
2243 .btn-danger {
2244 color: #ffffff;
2244 color: #ffffff;
2245 background-color: #d9534f;
2245 background-color: #d9534f;
2246 border-color: #d43f3a;
2246 border-color: #d43f3a;
2247 }
2247 }
2248 .btn-danger:hover,
2248 .btn-danger:hover,
2249 .btn-danger:focus,
2249 .btn-danger:focus,
2250 .btn-danger:active,
2250 .btn-danger:active,
2251 .btn-danger.active,
2251 .btn-danger.active,
2252 .open .dropdown-toggle.btn-danger {
2252 .open .dropdown-toggle.btn-danger {
2253 color: #ffffff;
2253 color: #ffffff;
2254 background-color: #d2322d;
2254 background-color: #d2322d;
2255 border-color: #ac2925;
2255 border-color: #ac2925;
2256 }
2256 }
2257 .btn-danger:active,
2257 .btn-danger:active,
2258 .btn-danger.active,
2258 .btn-danger.active,
2259 .open .dropdown-toggle.btn-danger {
2259 .open .dropdown-toggle.btn-danger {
2260 background-image: none;
2260 background-image: none;
2261 }
2261 }
2262 .btn-danger.disabled,
2262 .btn-danger.disabled,
2263 .btn-danger[disabled],
2263 .btn-danger[disabled],
2264 fieldset[disabled] .btn-danger,
2264 fieldset[disabled] .btn-danger,
2265 .btn-danger.disabled:hover,
2265 .btn-danger.disabled:hover,
2266 .btn-danger[disabled]:hover,
2266 .btn-danger[disabled]:hover,
2267 fieldset[disabled] .btn-danger:hover,
2267 fieldset[disabled] .btn-danger:hover,
2268 .btn-danger.disabled:focus,
2268 .btn-danger.disabled:focus,
2269 .btn-danger[disabled]:focus,
2269 .btn-danger[disabled]:focus,
2270 fieldset[disabled] .btn-danger:focus,
2270 fieldset[disabled] .btn-danger:focus,
2271 .btn-danger.disabled:active,
2271 .btn-danger.disabled:active,
2272 .btn-danger[disabled]:active,
2272 .btn-danger[disabled]:active,
2273 fieldset[disabled] .btn-danger:active,
2273 fieldset[disabled] .btn-danger:active,
2274 .btn-danger.disabled.active,
2274 .btn-danger.disabled.active,
2275 .btn-danger[disabled].active,
2275 .btn-danger[disabled].active,
2276 fieldset[disabled] .btn-danger.active {
2276 fieldset[disabled] .btn-danger.active {
2277 background-color: #d9534f;
2277 background-color: #d9534f;
2278 border-color: #d43f3a;
2278 border-color: #d43f3a;
2279 }
2279 }
2280 .btn-danger .badge {
2280 .btn-danger .badge {
2281 color: #d9534f;
2281 color: #d9534f;
2282 background-color: #ffffff;
2282 background-color: #ffffff;
2283 }
2283 }
2284 .btn-link {
2284 .btn-link {
2285 color: #428bca;
2285 color: #428bca;
2286 font-weight: normal;
2286 font-weight: normal;
2287 cursor: pointer;
2287 cursor: pointer;
2288 border-radius: 0;
2288 border-radius: 0;
2289 }
2289 }
2290 .btn-link,
2290 .btn-link,
2291 .btn-link:active,
2291 .btn-link:active,
2292 .btn-link[disabled],
2292 .btn-link[disabled],
2293 fieldset[disabled] .btn-link {
2293 fieldset[disabled] .btn-link {
2294 background-color: transparent;
2294 background-color: transparent;
2295 -webkit-box-shadow: none;
2295 -webkit-box-shadow: none;
2296 box-shadow: none;
2296 box-shadow: none;
2297 }
2297 }
2298 .btn-link,
2298 .btn-link,
2299 .btn-link:hover,
2299 .btn-link:hover,
2300 .btn-link:focus,
2300 .btn-link:focus,
2301 .btn-link:active {
2301 .btn-link:active {
2302 border-color: transparent;
2302 border-color: transparent;
2303 }
2303 }
2304 .btn-link:hover,
2304 .btn-link:hover,
2305 .btn-link:focus {
2305 .btn-link:focus {
2306 color: #2a6496;
2306 color: #2a6496;
2307 text-decoration: underline;
2307 text-decoration: underline;
2308 background-color: transparent;
2308 background-color: transparent;
2309 }
2309 }
2310 .btn-link[disabled]:hover,
2310 .btn-link[disabled]:hover,
2311 fieldset[disabled] .btn-link:hover,
2311 fieldset[disabled] .btn-link:hover,
2312 .btn-link[disabled]:focus,
2312 .btn-link[disabled]:focus,
2313 fieldset[disabled] .btn-link:focus {
2313 fieldset[disabled] .btn-link:focus {
2314 color: #999999;
2314 color: #999999;
2315 text-decoration: none;
2315 text-decoration: none;
2316 }
2316 }
2317 .btn-lg,
2317 .btn-lg,
2318 .btn-group-lg > .btn {
2318 .btn-group-lg > .btn {
2319 padding: 10px 16px;
2319 padding: 10px 16px;
2320 font-size: 17px;
2320 font-size: 17px;
2321 line-height: 1.33;
2321 line-height: 1.33;
2322 border-radius: 6px;
2322 border-radius: 6px;
2323 }
2323 }
2324 .btn-sm,
2324 .btn-sm,
2325 .btn-group-sm > .btn {
2325 .btn-group-sm > .btn {
2326 padding: 5px 10px;
2326 padding: 5px 10px;
2327 font-size: 12px;
2327 font-size: 12px;
2328 line-height: 1.5;
2328 line-height: 1.5;
2329 border-radius: 3px;
2329 border-radius: 3px;
2330 }
2330 }
2331 .btn-xs,
2331 .btn-xs,
2332 .btn-group-xs > .btn {
2332 .btn-group-xs > .btn {
2333 padding: 1px 5px;
2333 padding: 1px 5px;
2334 font-size: 12px;
2334 font-size: 12px;
2335 line-height: 1.5;
2335 line-height: 1.5;
2336 border-radius: 3px;
2336 border-radius: 3px;
2337 }
2337 }
2338 .btn-block {
2338 .btn-block {
2339 display: block;
2339 display: block;
2340 width: 100%;
2340 width: 100%;
2341 padding-left: 0;
2341 padding-left: 0;
2342 padding-right: 0;
2342 padding-right: 0;
2343 }
2343 }
2344 .btn-block + .btn-block {
2344 .btn-block + .btn-block {
2345 margin-top: 5px;
2345 margin-top: 5px;
2346 }
2346 }
2347 input[type="submit"].btn-block,
2347 input[type="submit"].btn-block,
2348 input[type="reset"].btn-block,
2348 input[type="reset"].btn-block,
2349 input[type="button"].btn-block {
2349 input[type="button"].btn-block {
2350 width: 100%;
2350 width: 100%;
2351 }
2351 }
2352 .fade {
2352 .fade {
2353 opacity: 0;
2353 opacity: 0;
2354 -webkit-transition: opacity 0.15s linear;
2354 -webkit-transition: opacity 0.15s linear;
2355 transition: opacity 0.15s linear;
2355 transition: opacity 0.15s linear;
2356 }
2356 }
2357 .fade.in {
2357 .fade.in {
2358 opacity: 1;
2358 opacity: 1;
2359 }
2359 }
2360 .collapse {
2360 .collapse {
2361 display: none;
2361 display: none;
2362 }
2362 }
2363 .collapse.in {
2363 .collapse.in {
2364 display: block;
2364 display: block;
2365 }
2365 }
2366 .collapsing {
2366 .collapsing {
2367 position: relative;
2367 position: relative;
2368 height: 0;
2368 height: 0;
2369 overflow: hidden;
2369 overflow: hidden;
2370 -webkit-transition: height 0.35s ease;
2370 -webkit-transition: height 0.35s ease;
2371 transition: height 0.35s ease;
2371 transition: height 0.35s ease;
2372 }
2372 }
2373 @font-face {
2373 @font-face {
2374 font-family: 'Glyphicons Halflings';
2374 font-family: 'Glyphicons Halflings';
2375 src: url('../fonts/glyphicons-halflings-regular.eot');
2375 src: url('../fonts/glyphicons-halflings-regular.eot');
2376 src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
2376 src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
2377 }
2377 }
2378 .glyphicon {
2378 .glyphicon {
2379 position: relative;
2379 position: relative;
2380 top: 1px;
2380 top: 1px;
2381 display: inline-block;
2381 display: inline-block;
2382 font-family: 'Glyphicons Halflings';
2382 font-family: 'Glyphicons Halflings';
2383 font-style: normal;
2383 font-style: normal;
2384 font-weight: normal;
2384 font-weight: normal;
2385 line-height: 1;
2385 line-height: 1;
2386 -webkit-font-smoothing: antialiased;
2386 -webkit-font-smoothing: antialiased;
2387 -moz-osx-font-smoothing: grayscale;
2387 -moz-osx-font-smoothing: grayscale;
2388 }
2388 }
2389 .glyphicon-asterisk:before {
2389 .glyphicon-asterisk:before {
2390 content: "\2a";
2390 content: "\2a";
2391 }
2391 }
2392 .glyphicon-plus:before {
2392 .glyphicon-plus:before {
2393 content: "\2b";
2393 content: "\2b";
2394 }
2394 }
2395 .glyphicon-euro:before {
2395 .glyphicon-euro:before {
2396 content: "\20ac";
2396 content: "\20ac";
2397 }
2397 }
2398 .glyphicon-minus:before {
2398 .glyphicon-minus:before {
2399 content: "\2212";
2399 content: "\2212";
2400 }
2400 }
2401 .glyphicon-cloud:before {
2401 .glyphicon-cloud:before {
2402 content: "\2601";
2402 content: "\2601";
2403 }
2403 }
2404 .glyphicon-envelope:before {
2404 .glyphicon-envelope:before {
2405 content: "\2709";
2405 content: "\2709";
2406 }
2406 }
2407 .glyphicon-pencil:before {
2407 .glyphicon-pencil:before {
2408 content: "\270f";
2408 content: "\270f";
2409 }
2409 }
2410 .glyphicon-glass:before {
2410 .glyphicon-glass:before {
2411 content: "\e001";
2411 content: "\e001";
2412 }
2412 }
2413 .glyphicon-music:before {
2413 .glyphicon-music:before {
2414 content: "\e002";
2414 content: "\e002";
2415 }
2415 }
2416 .glyphicon-search:before {
2416 .glyphicon-search:before {
2417 content: "\e003";
2417 content: "\e003";
2418 }
2418 }
2419 .glyphicon-heart:before {
2419 .glyphicon-heart:before {
2420 content: "\e005";
2420 content: "\e005";
2421 }
2421 }
2422 .glyphicon-star:before {
2422 .glyphicon-star:before {
2423 content: "\e006";
2423 content: "\e006";
2424 }
2424 }
2425 .glyphicon-star-empty:before {
2425 .glyphicon-star-empty:before {
2426 content: "\e007";
2426 content: "\e007";
2427 }
2427 }
2428 .glyphicon-user:before {
2428 .glyphicon-user:before {
2429 content: "\e008";
2429 content: "\e008";
2430 }
2430 }
2431 .glyphicon-film:before {
2431 .glyphicon-film:before {
2432 content: "\e009";
2432 content: "\e009";
2433 }
2433 }
2434 .glyphicon-th-large:before {
2434 .glyphicon-th-large:before {
2435 content: "\e010";
2435 content: "\e010";
2436 }
2436 }
2437 .glyphicon-th:before {
2437 .glyphicon-th:before {
2438 content: "\e011";
2438 content: "\e011";
2439 }
2439 }
2440 .glyphicon-th-list:before {
2440 .glyphicon-th-list:before {
2441 content: "\e012";
2441 content: "\e012";
2442 }
2442 }
2443 .glyphicon-ok:before {
2443 .glyphicon-ok:before {
2444 content: "\e013";
2444 content: "\e013";
2445 }
2445 }
2446 .glyphicon-remove:before {
2446 .glyphicon-remove:before {
2447 content: "\e014";
2447 content: "\e014";
2448 }
2448 }
2449 .glyphicon-zoom-in:before {
2449 .glyphicon-zoom-in:before {
2450 content: "\e015";
2450 content: "\e015";
2451 }
2451 }
2452 .glyphicon-zoom-out:before {
2452 .glyphicon-zoom-out:before {
2453 content: "\e016";
2453 content: "\e016";
2454 }
2454 }
2455 .glyphicon-off:before {
2455 .glyphicon-off:before {
2456 content: "\e017";
2456 content: "\e017";
2457 }
2457 }
2458 .glyphicon-signal:before {
2458 .glyphicon-signal:before {
2459 content: "\e018";
2459 content: "\e018";
2460 }
2460 }
2461 .glyphicon-cog:before {
2461 .glyphicon-cog:before {
2462 content: "\e019";
2462 content: "\e019";
2463 }
2463 }
2464 .glyphicon-trash:before {
2464 .glyphicon-trash:before {
2465 content: "\e020";
2465 content: "\e020";
2466 }
2466 }
2467 .glyphicon-home:before {
2467 .glyphicon-home:before {
2468 content: "\e021";
2468 content: "\e021";
2469 }
2469 }
2470 .glyphicon-file:before {
2470 .glyphicon-file:before {
2471 content: "\e022";
2471 content: "\e022";
2472 }
2472 }
2473 .glyphicon-time:before {
2473 .glyphicon-time:before {
2474 content: "\e023";
2474 content: "\e023";
2475 }
2475 }
2476 .glyphicon-road:before {
2476 .glyphicon-road:before {
2477 content: "\e024";
2477 content: "\e024";
2478 }
2478 }
2479 .glyphicon-download-alt:before {
2479 .glyphicon-download-alt:before {
2480 content: "\e025";
2480 content: "\e025";
2481 }
2481 }
2482 .glyphicon-download:before {
2482 .glyphicon-download:before {
2483 content: "\e026";
2483 content: "\e026";
2484 }
2484 }
2485 .glyphicon-upload:before {
2485 .glyphicon-upload:before {
2486 content: "\e027";
2486 content: "\e027";
2487 }
2487 }
2488 .glyphicon-inbox:before {
2488 .glyphicon-inbox:before {
2489 content: "\e028";
2489 content: "\e028";
2490 }
2490 }
2491 .glyphicon-play-circle:before {
2491 .glyphicon-play-circle:before {
2492 content: "\e029";
2492 content: "\e029";
2493 }
2493 }
2494 .glyphicon-repeat:before {
2494 .glyphicon-repeat:before {
2495 content: "\e030";
2495 content: "\e030";
2496 }
2496 }
2497 .glyphicon-refresh:before {
2497 .glyphicon-refresh:before {
2498 content: "\e031";
2498 content: "\e031";
2499 }
2499 }
2500 .glyphicon-list-alt:before {
2500 .glyphicon-list-alt:before {
2501 content: "\e032";
2501 content: "\e032";
2502 }
2502 }
2503 .glyphicon-lock:before {
2503 .glyphicon-lock:before {
2504 content: "\e033";
2504 content: "\e033";
2505 }
2505 }
2506 .glyphicon-flag:before {
2506 .glyphicon-flag:before {
2507 content: "\e034";
2507 content: "\e034";
2508 }
2508 }
2509 .glyphicon-headphones:before {
2509 .glyphicon-headphones:before {
2510 content: "\e035";
2510 content: "\e035";
2511 }
2511 }
2512 .glyphicon-volume-off:before {
2512 .glyphicon-volume-off:before {
2513 content: "\e036";
2513 content: "\e036";
2514 }
2514 }
2515 .glyphicon-volume-down:before {
2515 .glyphicon-volume-down:before {
2516 content: "\e037";
2516 content: "\e037";
2517 }
2517 }
2518 .glyphicon-volume-up:before {
2518 .glyphicon-volume-up:before {
2519 content: "\e038";
2519 content: "\e038";
2520 }
2520 }
2521 .glyphicon-qrcode:before {
2521 .glyphicon-qrcode:before {
2522 content: "\e039";
2522 content: "\e039";
2523 }
2523 }
2524 .glyphicon-barcode:before {
2524 .glyphicon-barcode:before {
2525 content: "\e040";
2525 content: "\e040";
2526 }
2526 }
2527 .glyphicon-tag:before {
2527 .glyphicon-tag:before {
2528 content: "\e041";
2528 content: "\e041";
2529 }
2529 }
2530 .glyphicon-tags:before {
2530 .glyphicon-tags:before {
2531 content: "\e042";
2531 content: "\e042";
2532 }
2532 }
2533 .glyphicon-book:before {
2533 .glyphicon-book:before {
2534 content: "\e043";
2534 content: "\e043";
2535 }
2535 }
2536 .glyphicon-bookmark:before {
2536 .glyphicon-bookmark:before {
2537 content: "\e044";
2537 content: "\e044";
2538 }
2538 }
2539 .glyphicon-print:before {
2539 .glyphicon-print:before {
2540 content: "\e045";
2540 content: "\e045";
2541 }
2541 }
2542 .glyphicon-camera:before {
2542 .glyphicon-camera:before {
2543 content: "\e046";
2543 content: "\e046";
2544 }
2544 }
2545 .glyphicon-font:before {
2545 .glyphicon-font:before {
2546 content: "\e047";
2546 content: "\e047";
2547 }
2547 }
2548 .glyphicon-bold:before {
2548 .glyphicon-bold:before {
2549 content: "\e048";
2549 content: "\e048";
2550 }
2550 }
2551 .glyphicon-italic:before {
2551 .glyphicon-italic:before {
2552 content: "\e049";
2552 content: "\e049";
2553 }
2553 }
2554 .glyphicon-text-height:before {
2554 .glyphicon-text-height:before {
2555 content: "\e050";
2555 content: "\e050";
2556 }
2556 }
2557 .glyphicon-text-width:before {
2557 .glyphicon-text-width:before {
2558 content: "\e051";
2558 content: "\e051";
2559 }
2559 }
2560 .glyphicon-align-left:before {
2560 .glyphicon-align-left:before {
2561 content: "\e052";
2561 content: "\e052";
2562 }
2562 }
2563 .glyphicon-align-center:before {
2563 .glyphicon-align-center:before {
2564 content: "\e053";
2564 content: "\e053";
2565 }
2565 }
2566 .glyphicon-align-right:before {
2566 .glyphicon-align-right:before {
2567 content: "\e054";
2567 content: "\e054";
2568 }
2568 }
2569 .glyphicon-align-justify:before {
2569 .glyphicon-align-justify:before {
2570 content: "\e055";
2570 content: "\e055";
2571 }
2571 }
2572 .glyphicon-list:before {
2572 .glyphicon-list:before {
2573 content: "\e056";
2573 content: "\e056";
2574 }
2574 }
2575 .glyphicon-indent-left:before {
2575 .glyphicon-indent-left:before {
2576 content: "\e057";
2576 content: "\e057";
2577 }
2577 }
2578 .glyphicon-indent-right:before {
2578 .glyphicon-indent-right:before {
2579 content: "\e058";
2579 content: "\e058";
2580 }
2580 }
2581 .glyphicon-facetime-video:before {
2581 .glyphicon-facetime-video:before {
2582 content: "\e059";
2582 content: "\e059";
2583 }
2583 }
2584 .glyphicon-picture:before {
2584 .glyphicon-picture:before {
2585 content: "\e060";
2585 content: "\e060";
2586 }
2586 }
2587 .glyphicon-map-marker:before {
2587 .glyphicon-map-marker:before {
2588 content: "\e062";
2588 content: "\e062";
2589 }
2589 }
2590 .glyphicon-adjust:before {
2590 .glyphicon-adjust:before {
2591 content: "\e063";
2591 content: "\e063";
2592 }
2592 }
2593 .glyphicon-tint:before {
2593 .glyphicon-tint:before {
2594 content: "\e064";
2594 content: "\e064";
2595 }
2595 }
2596 .glyphicon-edit:before {
2596 .glyphicon-edit:before {
2597 content: "\e065";
2597 content: "\e065";
2598 }
2598 }
2599 .glyphicon-share:before {
2599 .glyphicon-share:before {
2600 content: "\e066";
2600 content: "\e066";
2601 }
2601 }
2602 .glyphicon-check:before {
2602 .glyphicon-check:before {
2603 content: "\e067";
2603 content: "\e067";
2604 }
2604 }
2605 .glyphicon-move:before {
2605 .glyphicon-move:before {
2606 content: "\e068";
2606 content: "\e068";
2607 }
2607 }
2608 .glyphicon-step-backward:before {
2608 .glyphicon-step-backward:before {
2609 content: "\e069";
2609 content: "\e069";
2610 }
2610 }
2611 .glyphicon-fast-backward:before {
2611 .glyphicon-fast-backward:before {
2612 content: "\e070";
2612 content: "\e070";
2613 }
2613 }
2614 .glyphicon-backward:before {
2614 .glyphicon-backward:before {
2615 content: "\e071";
2615 content: "\e071";
2616 }
2616 }
2617 .glyphicon-play:before {
2617 .glyphicon-play:before {
2618 content: "\e072";
2618 content: "\e072";
2619 }
2619 }
2620 .glyphicon-pause:before {
2620 .glyphicon-pause:before {
2621 content: "\e073";
2621 content: "\e073";
2622 }
2622 }
2623 .glyphicon-stop:before {
2623 .glyphicon-stop:before {
2624 content: "\e074";
2624 content: "\e074";
2625 }
2625 }
2626 .glyphicon-forward:before {
2626 .glyphicon-forward:before {
2627 content: "\e075";
2627 content: "\e075";
2628 }
2628 }
2629 .glyphicon-fast-forward:before {
2629 .glyphicon-fast-forward:before {
2630 content: "\e076";
2630 content: "\e076";
2631 }
2631 }
2632 .glyphicon-step-forward:before {
2632 .glyphicon-step-forward:before {
2633 content: "\e077";
2633 content: "\e077";
2634 }
2634 }
2635 .glyphicon-eject:before {
2635 .glyphicon-eject:before {
2636 content: "\e078";
2636 content: "\e078";
2637 }
2637 }
2638 .glyphicon-chevron-left:before {
2638 .glyphicon-chevron-left:before {
2639 content: "\e079";
2639 content: "\e079";
2640 }
2640 }
2641 .glyphicon-chevron-right:before {
2641 .glyphicon-chevron-right:before {
2642 content: "\e080";
2642 content: "\e080";
2643 }
2643 }
2644 .glyphicon-plus-sign:before {
2644 .glyphicon-plus-sign:before {
2645 content: "\e081";
2645 content: "\e081";
2646 }
2646 }
2647 .glyphicon-minus-sign:before {
2647 .glyphicon-minus-sign:before {
2648 content: "\e082";
2648 content: "\e082";
2649 }
2649 }
2650 .glyphicon-remove-sign:before {
2650 .glyphicon-remove-sign:before {
2651 content: "\e083";
2651 content: "\e083";
2652 }
2652 }
2653 .glyphicon-ok-sign:before {
2653 .glyphicon-ok-sign:before {
2654 content: "\e084";
2654 content: "\e084";
2655 }
2655 }
2656 .glyphicon-question-sign:before {
2656 .glyphicon-question-sign:before {
2657 content: "\e085";
2657 content: "\e085";
2658 }
2658 }
2659 .glyphicon-info-sign:before {
2659 .glyphicon-info-sign:before {
2660 content: "\e086";
2660 content: "\e086";
2661 }
2661 }
2662 .glyphicon-screenshot:before {
2662 .glyphicon-screenshot:before {
2663 content: "\e087";
2663 content: "\e087";
2664 }
2664 }
2665 .glyphicon-remove-circle:before {
2665 .glyphicon-remove-circle:before {
2666 content: "\e088";
2666 content: "\e088";
2667 }
2667 }
2668 .glyphicon-ok-circle:before {
2668 .glyphicon-ok-circle:before {
2669 content: "\e089";
2669 content: "\e089";
2670 }
2670 }
2671 .glyphicon-ban-circle:before {
2671 .glyphicon-ban-circle:before {
2672 content: "\e090";
2672 content: "\e090";
2673 }
2673 }
2674 .glyphicon-arrow-left:before {
2674 .glyphicon-arrow-left:before {
2675 content: "\e091";
2675 content: "\e091";
2676 }
2676 }
2677 .glyphicon-arrow-right:before {
2677 .glyphicon-arrow-right:before {
2678 content: "\e092";
2678 content: "\e092";
2679 }
2679 }
2680 .glyphicon-arrow-up:before {
2680 .glyphicon-arrow-up:before {
2681 content: "\e093";
2681 content: "\e093";
2682 }
2682 }
2683 .glyphicon-arrow-down:before {
2683 .glyphicon-arrow-down:before {
2684 content: "\e094";
2684 content: "\e094";
2685 }
2685 }
2686 .glyphicon-share-alt:before {
2686 .glyphicon-share-alt:before {
2687 content: "\e095";
2687 content: "\e095";
2688 }
2688 }
2689 .glyphicon-resize-full:before {
2689 .glyphicon-resize-full:before {
2690 content: "\e096";
2690 content: "\e096";
2691 }
2691 }
2692 .glyphicon-resize-small:before {
2692 .glyphicon-resize-small:before {
2693 content: "\e097";
2693 content: "\e097";
2694 }
2694 }
2695 .glyphicon-exclamation-sign:before {
2695 .glyphicon-exclamation-sign:before {
2696 content: "\e101";
2696 content: "\e101";
2697 }
2697 }
2698 .glyphicon-gift:before {
2698 .glyphicon-gift:before {
2699 content: "\e102";
2699 content: "\e102";
2700 }
2700 }
2701 .glyphicon-leaf:before {
2701 .glyphicon-leaf:before {
2702 content: "\e103";
2702 content: "\e103";
2703 }
2703 }
2704 .glyphicon-fire:before {
2704 .glyphicon-fire:before {
2705 content: "\e104";
2705 content: "\e104";
2706 }
2706 }
2707 .glyphicon-eye-open:before {
2707 .glyphicon-eye-open:before {
2708 content: "\e105";
2708 content: "\e105";
2709 }
2709 }
2710 .glyphicon-eye-close:before {
2710 .glyphicon-eye-close:before {
2711 content: "\e106";
2711 content: "\e106";
2712 }
2712 }
2713 .glyphicon-warning-sign:before {
2713 .glyphicon-warning-sign:before {
2714 content: "\e107";
2714 content: "\e107";
2715 }
2715 }
2716 .glyphicon-plane:before {
2716 .glyphicon-plane:before {
2717 content: "\e108";
2717 content: "\e108";
2718 }
2718 }
2719 .glyphicon-calendar:before {
2719 .glyphicon-calendar:before {
2720 content: "\e109";
2720 content: "\e109";
2721 }
2721 }
2722 .glyphicon-random:before {
2722 .glyphicon-random:before {
2723 content: "\e110";
2723 content: "\e110";
2724 }
2724 }
2725 .glyphicon-comment:before {
2725 .glyphicon-comment:before {
2726 content: "\e111";
2726 content: "\e111";
2727 }
2727 }
2728 .glyphicon-magnet:before {
2728 .glyphicon-magnet:before {
2729 content: "\e112";
2729 content: "\e112";
2730 }
2730 }
2731 .glyphicon-chevron-up:before {
2731 .glyphicon-chevron-up:before {
2732 content: "\e113";
2732 content: "\e113";
2733 }
2733 }
2734 .glyphicon-chevron-down:before {
2734 .glyphicon-chevron-down:before {
2735 content: "\e114";
2735 content: "\e114";
2736 }
2736 }
2737 .glyphicon-retweet:before {
2737 .glyphicon-retweet:before {
2738 content: "\e115";
2738 content: "\e115";
2739 }
2739 }
2740 .glyphicon-shopping-cart:before {
2740 .glyphicon-shopping-cart:before {
2741 content: "\e116";
2741 content: "\e116";
2742 }
2742 }
2743 .glyphicon-folder-close:before {
2743 .glyphicon-folder-close:before {
2744 content: "\e117";
2744 content: "\e117";
2745 }
2745 }
2746 .glyphicon-folder-open:before {
2746 .glyphicon-folder-open:before {
2747 content: "\e118";
2747 content: "\e118";
2748 }
2748 }
2749 .glyphicon-resize-vertical:before {
2749 .glyphicon-resize-vertical:before {
2750 content: "\e119";
2750 content: "\e119";
2751 }
2751 }
2752 .glyphicon-resize-horizontal:before {
2752 .glyphicon-resize-horizontal:before {
2753 content: "\e120";
2753 content: "\e120";
2754 }
2754 }
2755 .glyphicon-hdd:before {
2755 .glyphicon-hdd:before {
2756 content: "\e121";
2756 content: "\e121";
2757 }
2757 }
2758 .glyphicon-bullhorn:before {
2758 .glyphicon-bullhorn:before {
2759 content: "\e122";
2759 content: "\e122";
2760 }
2760 }
2761 .glyphicon-bell:before {
2761 .glyphicon-bell:before {
2762 content: "\e123";
2762 content: "\e123";
2763 }
2763 }
2764 .glyphicon-certificate:before {
2764 .glyphicon-certificate:before {
2765 content: "\e124";
2765 content: "\e124";
2766 }
2766 }
2767 .glyphicon-thumbs-up:before {
2767 .glyphicon-thumbs-up:before {
2768 content: "\e125";
2768 content: "\e125";
2769 }
2769 }
2770 .glyphicon-thumbs-down:before {
2770 .glyphicon-thumbs-down:before {
2771 content: "\e126";
2771 content: "\e126";
2772 }
2772 }
2773 .glyphicon-hand-right:before {
2773 .glyphicon-hand-right:before {
2774 content: "\e127";
2774 content: "\e127";
2775 }
2775 }
2776 .glyphicon-hand-left:before {
2776 .glyphicon-hand-left:before {
2777 content: "\e128";
2777 content: "\e128";
2778 }
2778 }
2779 .glyphicon-hand-up:before {
2779 .glyphicon-hand-up:before {
2780 content: "\e129";
2780 content: "\e129";
2781 }
2781 }
2782 .glyphicon-hand-down:before {
2782 .glyphicon-hand-down:before {
2783 content: "\e130";
2783 content: "\e130";
2784 }
2784 }
2785 .glyphicon-circle-arrow-right:before {
2785 .glyphicon-circle-arrow-right:before {
2786 content: "\e131";
2786 content: "\e131";
2787 }
2787 }
2788 .glyphicon-circle-arrow-left:before {
2788 .glyphicon-circle-arrow-left:before {
2789 content: "\e132";
2789 content: "\e132";
2790 }
2790 }
2791 .glyphicon-circle-arrow-up:before {
2791 .glyphicon-circle-arrow-up:before {
2792 content: "\e133";
2792 content: "\e133";
2793 }
2793 }
2794 .glyphicon-circle-arrow-down:before {
2794 .glyphicon-circle-arrow-down:before {
2795 content: "\e134";
2795 content: "\e134";
2796 }
2796 }
2797 .glyphicon-globe:before {
2797 .glyphicon-globe:before {
2798 content: "\e135";
2798 content: "\e135";
2799 }
2799 }
2800 .glyphicon-wrench:before {
2800 .glyphicon-wrench:before {
2801 content: "\e136";
2801 content: "\e136";
2802 }
2802 }
2803 .glyphicon-tasks:before {
2803 .glyphicon-tasks:before {
2804 content: "\e137";
2804 content: "\e137";
2805 }
2805 }
2806 .glyphicon-filter:before {
2806 .glyphicon-filter:before {
2807 content: "\e138";
2807 content: "\e138";
2808 }
2808 }
2809 .glyphicon-briefcase:before {
2809 .glyphicon-briefcase:before {
2810 content: "\e139";
2810 content: "\e139";
2811 }
2811 }
2812 .glyphicon-fullscreen:before {
2812 .glyphicon-fullscreen:before {
2813 content: "\e140";
2813 content: "\e140";
2814 }
2814 }
2815 .glyphicon-dashboard:before {
2815 .glyphicon-dashboard:before {
2816 content: "\e141";
2816 content: "\e141";
2817 }
2817 }
2818 .glyphicon-paperclip:before {
2818 .glyphicon-paperclip:before {
2819 content: "\e142";
2819 content: "\e142";
2820 }
2820 }
2821 .glyphicon-heart-empty:before {
2821 .glyphicon-heart-empty:before {
2822 content: "\e143";
2822 content: "\e143";
2823 }
2823 }
2824 .glyphicon-link:before {
2824 .glyphicon-link:before {
2825 content: "\e144";
2825 content: "\e144";
2826 }
2826 }
2827 .glyphicon-phone:before {
2827 .glyphicon-phone:before {
2828 content: "\e145";
2828 content: "\e145";
2829 }
2829 }
2830 .glyphicon-pushpin:before {
2830 .glyphicon-pushpin:before {
2831 content: "\e146";
2831 content: "\e146";
2832 }
2832 }
2833 .glyphicon-usd:before {
2833 .glyphicon-usd:before {
2834 content: "\e148";
2834 content: "\e148";
2835 }
2835 }
2836 .glyphicon-gbp:before {
2836 .glyphicon-gbp:before {
2837 content: "\e149";
2837 content: "\e149";
2838 }
2838 }
2839 .glyphicon-sort:before {
2839 .glyphicon-sort:before {
2840 content: "\e150";
2840 content: "\e150";
2841 }
2841 }
2842 .glyphicon-sort-by-alphabet:before {
2842 .glyphicon-sort-by-alphabet:before {
2843 content: "\e151";
2843 content: "\e151";
2844 }
2844 }
2845 .glyphicon-sort-by-alphabet-alt:before {
2845 .glyphicon-sort-by-alphabet-alt:before {
2846 content: "\e152";
2846 content: "\e152";
2847 }
2847 }
2848 .glyphicon-sort-by-order:before {
2848 .glyphicon-sort-by-order:before {
2849 content: "\e153";
2849 content: "\e153";
2850 }
2850 }
2851 .glyphicon-sort-by-order-alt:before {
2851 .glyphicon-sort-by-order-alt:before {
2852 content: "\e154";
2852 content: "\e154";
2853 }
2853 }
2854 .glyphicon-sort-by-attributes:before {
2854 .glyphicon-sort-by-attributes:before {
2855 content: "\e155";
2855 content: "\e155";
2856 }
2856 }
2857 .glyphicon-sort-by-attributes-alt:before {
2857 .glyphicon-sort-by-attributes-alt:before {
2858 content: "\e156";
2858 content: "\e156";
2859 }
2859 }
2860 .glyphicon-unchecked:before {
2860 .glyphicon-unchecked:before {
2861 content: "\e157";
2861 content: "\e157";
2862 }
2862 }
2863 .glyphicon-expand:before {
2863 .glyphicon-expand:before {
2864 content: "\e158";
2864 content: "\e158";
2865 }
2865 }
2866 .glyphicon-collapse-down:before {
2866 .glyphicon-collapse-down:before {
2867 content: "\e159";
2867 content: "\e159";
2868 }
2868 }
2869 .glyphicon-collapse-up:before {
2869 .glyphicon-collapse-up:before {
2870 content: "\e160";
2870 content: "\e160";
2871 }
2871 }
2872 .glyphicon-log-in:before {
2872 .glyphicon-log-in:before {
2873 content: "\e161";
2873 content: "\e161";
2874 }
2874 }
2875 .glyphicon-flash:before {
2875 .glyphicon-flash:before {
2876 content: "\e162";
2876 content: "\e162";
2877 }
2877 }
2878 .glyphicon-log-out:before {
2878 .glyphicon-log-out:before {
2879 content: "\e163";
2879 content: "\e163";
2880 }
2880 }
2881 .glyphicon-new-window:before {
2881 .glyphicon-new-window:before {
2882 content: "\e164";
2882 content: "\e164";
2883 }
2883 }
2884 .glyphicon-record:before {
2884 .glyphicon-record:before {
2885 content: "\e165";
2885 content: "\e165";
2886 }
2886 }
2887 .glyphicon-save:before {
2887 .glyphicon-save:before {
2888 content: "\e166";
2888 content: "\e166";
2889 }
2889 }
2890 .glyphicon-open:before {
2890 .glyphicon-open:before {
2891 content: "\e167";
2891 content: "\e167";
2892 }
2892 }
2893 .glyphicon-saved:before {
2893 .glyphicon-saved:before {
2894 content: "\e168";
2894 content: "\e168";
2895 }
2895 }
2896 .glyphicon-import:before {
2896 .glyphicon-import:before {
2897 content: "\e169";
2897 content: "\e169";
2898 }
2898 }
2899 .glyphicon-export:before {
2899 .glyphicon-export:before {
2900 content: "\e170";
2900 content: "\e170";
2901 }
2901 }
2902 .glyphicon-send:before {
2902 .glyphicon-send:before {
2903 content: "\e171";
2903 content: "\e171";
2904 }
2904 }
2905 .glyphicon-floppy-disk:before {
2905 .glyphicon-floppy-disk:before {
2906 content: "\e172";
2906 content: "\e172";
2907 }
2907 }
2908 .glyphicon-floppy-saved:before {
2908 .glyphicon-floppy-saved:before {
2909 content: "\e173";
2909 content: "\e173";
2910 }
2910 }
2911 .glyphicon-floppy-remove:before {
2911 .glyphicon-floppy-remove:before {
2912 content: "\e174";
2912 content: "\e174";
2913 }
2913 }
2914 .glyphicon-floppy-save:before {
2914 .glyphicon-floppy-save:before {
2915 content: "\e175";
2915 content: "\e175";
2916 }
2916 }
2917 .glyphicon-floppy-open:before {
2917 .glyphicon-floppy-open:before {
2918 content: "\e176";
2918 content: "\e176";
2919 }
2919 }
2920 .glyphicon-credit-card:before {
2920 .glyphicon-credit-card:before {
2921 content: "\e177";
2921 content: "\e177";
2922 }
2922 }
2923 .glyphicon-transfer:before {
2923 .glyphicon-transfer:before {
2924 content: "\e178";
2924 content: "\e178";
2925 }
2925 }
2926 .glyphicon-cutlery:before {
2926 .glyphicon-cutlery:before {
2927 content: "\e179";
2927 content: "\e179";
2928 }
2928 }
2929 .glyphicon-header:before {
2929 .glyphicon-header:before {
2930 content: "\e180";
2930 content: "\e180";
2931 }
2931 }
2932 .glyphicon-compressed:before {
2932 .glyphicon-compressed:before {
2933 content: "\e181";
2933 content: "\e181";
2934 }
2934 }
2935 .glyphicon-earphone:before {
2935 .glyphicon-earphone:before {
2936 content: "\e182";
2936 content: "\e182";
2937 }
2937 }
2938 .glyphicon-phone-alt:before {
2938 .glyphicon-phone-alt:before {
2939 content: "\e183";
2939 content: "\e183";
2940 }
2940 }
2941 .glyphicon-tower:before {
2941 .glyphicon-tower:before {
2942 content: "\e184";
2942 content: "\e184";
2943 }
2943 }
2944 .glyphicon-stats:before {
2944 .glyphicon-stats:before {
2945 content: "\e185";
2945 content: "\e185";
2946 }
2946 }
2947 .glyphicon-sd-video:before {
2947 .glyphicon-sd-video:before {
2948 content: "\e186";
2948 content: "\e186";
2949 }
2949 }
2950 .glyphicon-hd-video:before {
2950 .glyphicon-hd-video:before {
2951 content: "\e187";
2951 content: "\e187";
2952 }
2952 }
2953 .glyphicon-subtitles:before {
2953 .glyphicon-subtitles:before {
2954 content: "\e188";
2954 content: "\e188";
2955 }
2955 }
2956 .glyphicon-sound-stereo:before {
2956 .glyphicon-sound-stereo:before {
2957 content: "\e189";
2957 content: "\e189";
2958 }
2958 }
2959 .glyphicon-sound-dolby:before {
2959 .glyphicon-sound-dolby:before {
2960 content: "\e190";
2960 content: "\e190";
2961 }
2961 }
2962 .glyphicon-sound-5-1:before {
2962 .glyphicon-sound-5-1:before {
2963 content: "\e191";
2963 content: "\e191";
2964 }
2964 }
2965 .glyphicon-sound-6-1:before {
2965 .glyphicon-sound-6-1:before {
2966 content: "\e192";
2966 content: "\e192";
2967 }
2967 }
2968 .glyphicon-sound-7-1:before {
2968 .glyphicon-sound-7-1:before {
2969 content: "\e193";
2969 content: "\e193";
2970 }
2970 }
2971 .glyphicon-copyright-mark:before {
2971 .glyphicon-copyright-mark:before {
2972 content: "\e194";
2972 content: "\e194";
2973 }
2973 }
2974 .glyphicon-registration-mark:before {
2974 .glyphicon-registration-mark:before {
2975 content: "\e195";
2975 content: "\e195";
2976 }
2976 }
2977 .glyphicon-cloud-download:before {
2977 .glyphicon-cloud-download:before {
2978 content: "\e197";
2978 content: "\e197";
2979 }
2979 }
2980 .glyphicon-cloud-upload:before {
2980 .glyphicon-cloud-upload:before {
2981 content: "\e198";
2981 content: "\e198";
2982 }
2982 }
2983 .glyphicon-tree-conifer:before {
2983 .glyphicon-tree-conifer:before {
2984 content: "\e199";
2984 content: "\e199";
2985 }
2985 }
2986 .glyphicon-tree-deciduous:before {
2986 .glyphicon-tree-deciduous:before {
2987 content: "\e200";
2987 content: "\e200";
2988 }
2988 }
2989 .caret {
2989 .caret {
2990 display: inline-block;
2990 display: inline-block;
2991 width: 0;
2991 width: 0;
2992 height: 0;
2992 height: 0;
2993 margin-left: 2px;
2993 margin-left: 2px;
2994 vertical-align: middle;
2994 vertical-align: middle;
2995 border-top: 4px solid;
2995 border-top: 4px solid;
2996 border-right: 4px solid transparent;
2996 border-right: 4px solid transparent;
2997 border-left: 4px solid transparent;
2997 border-left: 4px solid transparent;
2998 }
2998 }
2999 .dropdown {
2999 .dropdown {
3000 position: relative;
3000 position: relative;
3001 }
3001 }
3002 .dropdown-toggle:focus {
3002 .dropdown-toggle:focus {
3003 outline: 0;
3003 outline: 0;
3004 }
3004 }
3005 .dropdown-menu {
3005 .dropdown-menu {
3006 position: absolute;
3006 position: absolute;
3007 top: 100%;
3007 top: 100%;
3008 left: 0;
3008 left: 0;
3009 z-index: 1000;
3009 z-index: 1000;
3010 display: none;
3010 display: none;
3011 float: left;
3011 float: left;
3012 min-width: 160px;
3012 min-width: 160px;
3013 padding: 5px 0;
3013 padding: 5px 0;
3014 margin: 2px 0 0;
3014 margin: 2px 0 0;
3015 list-style: none;
3015 list-style: none;
3016 font-size: 13px;
3016 font-size: 13px;
3017 background-color: #ffffff;
3017 background-color: #ffffff;
3018 border: 1px solid #cccccc;
3018 border: 1px solid #cccccc;
3019 border: 1px solid rgba(0, 0, 0, 0.15);
3019 border: 1px solid rgba(0, 0, 0, 0.15);
3020 border-radius: 4px;
3020 border-radius: 4px;
3021 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3021 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3022 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3022 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3023 background-clip: padding-box;
3023 background-clip: padding-box;
3024 }
3024 }
3025 .dropdown-menu.pull-right {
3025 .dropdown-menu.pull-right {
3026 right: 0;
3026 right: 0;
3027 left: auto;
3027 left: auto;
3028 }
3028 }
3029 .dropdown-menu .divider {
3029 .dropdown-menu .divider {
3030 height: 1px;
3030 height: 1px;
3031 margin: 8px 0;
3031 margin: 8px 0;
3032 overflow: hidden;
3032 overflow: hidden;
3033 background-color: #e5e5e5;
3033 background-color: #e5e5e5;
3034 }
3034 }
3035 .dropdown-menu > li > a {
3035 .dropdown-menu > li > a {
3036 display: block;
3036 display: block;
3037 padding: 3px 20px;
3037 padding: 3px 20px;
3038 clear: both;
3038 clear: both;
3039 font-weight: normal;
3039 font-weight: normal;
3040 line-height: 1.42857143;
3040 line-height: 1.42857143;
3041 color: #333333;
3041 color: #333333;
3042 white-space: nowrap;
3042 white-space: nowrap;
3043 }
3043 }
3044 .dropdown-menu > li > a:hover,
3044 .dropdown-menu > li > a:hover,
3045 .dropdown-menu > li > a:focus {
3045 .dropdown-menu > li > a:focus {
3046 text-decoration: none;
3046 text-decoration: none;
3047 color: #262626;
3047 color: #262626;
3048 background-color: #f5f5f5;
3048 background-color: #f5f5f5;
3049 }
3049 }
3050 .dropdown-menu > .active > a,
3050 .dropdown-menu > .active > a,
3051 .dropdown-menu > .active > a:hover,
3051 .dropdown-menu > .active > a:hover,
3052 .dropdown-menu > .active > a:focus {
3052 .dropdown-menu > .active > a:focus {
3053 color: #ffffff;
3053 color: #ffffff;
3054 text-decoration: none;
3054 text-decoration: none;
3055 outline: 0;
3055 outline: 0;
3056 background-color: #428bca;
3056 background-color: #428bca;
3057 }
3057 }
3058 .dropdown-menu > .disabled > a,
3058 .dropdown-menu > .disabled > a,
3059 .dropdown-menu > .disabled > a:hover,
3059 .dropdown-menu > .disabled > a:hover,
3060 .dropdown-menu > .disabled > a:focus {
3060 .dropdown-menu > .disabled > a:focus {
3061 color: #999999;
3061 color: #999999;
3062 }
3062 }
3063 .dropdown-menu > .disabled > a:hover,
3063 .dropdown-menu > .disabled > a:hover,
3064 .dropdown-menu > .disabled > a:focus {
3064 .dropdown-menu > .disabled > a:focus {
3065 text-decoration: none;
3065 text-decoration: none;
3066 background-color: transparent;
3066 background-color: transparent;
3067 background-image: none;
3067 background-image: none;
3068 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3068 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3069 cursor: not-allowed;
3069 cursor: not-allowed;
3070 }
3070 }
3071 .open > .dropdown-menu {
3071 .open > .dropdown-menu {
3072 display: block;
3072 display: block;
3073 }
3073 }
3074 .open > a {
3074 .open > a {
3075 outline: 0;
3075 outline: 0;
3076 }
3076 }
3077 .dropdown-menu-right {
3077 .dropdown-menu-right {
3078 left: auto;
3078 left: auto;
3079 right: 0;
3079 right: 0;
3080 }
3080 }
3081 .dropdown-menu-left {
3081 .dropdown-menu-left {
3082 left: 0;
3082 left: 0;
3083 right: auto;
3083 right: auto;
3084 }
3084 }
3085 .dropdown-header {
3085 .dropdown-header {
3086 display: block;
3086 display: block;
3087 padding: 3px 20px;
3087 padding: 3px 20px;
3088 font-size: 12px;
3088 font-size: 12px;
3089 line-height: 1.42857143;
3089 line-height: 1.42857143;
3090 color: #999999;
3090 color: #999999;
3091 }
3091 }
3092 .dropdown-backdrop {
3092 .dropdown-backdrop {
3093 position: fixed;
3093 position: fixed;
3094 left: 0;
3094 left: 0;
3095 right: 0;
3095 right: 0;
3096 bottom: 0;
3096 bottom: 0;
3097 top: 0;
3097 top: 0;
3098 z-index: 990;
3098 z-index: 990;
3099 }
3099 }
3100 .pull-right > .dropdown-menu {
3100 .pull-right > .dropdown-menu {
3101 right: 0;
3101 right: 0;
3102 left: auto;
3102 left: auto;
3103 }
3103 }
3104 .dropup .caret,
3104 .dropup .caret,
3105 .navbar-fixed-bottom .dropdown .caret {
3105 .navbar-fixed-bottom .dropdown .caret {
3106 border-top: 0;
3106 border-top: 0;
3107 border-bottom: 4px solid;
3107 border-bottom: 4px solid;
3108 content: "";
3108 content: "";
3109 }
3109 }
3110 .dropup .dropdown-menu,
3110 .dropup .dropdown-menu,
3111 .navbar-fixed-bottom .dropdown .dropdown-menu {
3111 .navbar-fixed-bottom .dropdown .dropdown-menu {
3112 top: auto;
3112 top: auto;
3113 bottom: 100%;
3113 bottom: 100%;
3114 margin-bottom: 1px;
3114 margin-bottom: 1px;
3115 }
3115 }
3116 @media (min-width: 540px) {
3116 @media (min-width: 540px) {
3117 .navbar-right .dropdown-menu {
3117 .navbar-right .dropdown-menu {
3118 left: auto;
3118 left: auto;
3119 right: 0;
3119 right: 0;
3120 }
3120 }
3121 .navbar-right .dropdown-menu-left {
3121 .navbar-right .dropdown-menu-left {
3122 left: 0;
3122 left: 0;
3123 right: auto;
3123 right: auto;
3124 }
3124 }
3125 }
3125 }
3126 .btn-group,
3126 .btn-group,
3127 .btn-group-vertical {
3127 .btn-group-vertical {
3128 position: relative;
3128 position: relative;
3129 display: inline-block;
3129 display: inline-block;
3130 vertical-align: middle;
3130 vertical-align: middle;
3131 }
3131 }
3132 .btn-group > .btn,
3132 .btn-group > .btn,
3133 .btn-group-vertical > .btn {
3133 .btn-group-vertical > .btn {
3134 position: relative;
3134 position: relative;
3135 float: left;
3135 float: left;
3136 }
3136 }
3137 .btn-group > .btn:hover,
3137 .btn-group > .btn:hover,
3138 .btn-group-vertical > .btn:hover,
3138 .btn-group-vertical > .btn:hover,
3139 .btn-group > .btn:focus,
3139 .btn-group > .btn:focus,
3140 .btn-group-vertical > .btn:focus,
3140 .btn-group-vertical > .btn:focus,
3141 .btn-group > .btn:active,
3141 .btn-group > .btn:active,
3142 .btn-group-vertical > .btn:active,
3142 .btn-group-vertical > .btn:active,
3143 .btn-group > .btn.active,
3143 .btn-group > .btn.active,
3144 .btn-group-vertical > .btn.active {
3144 .btn-group-vertical > .btn.active {
3145 z-index: 2;
3145 z-index: 2;
3146 }
3146 }
3147 .btn-group > .btn:focus,
3147 .btn-group > .btn:focus,
3148 .btn-group-vertical > .btn:focus {
3148 .btn-group-vertical > .btn:focus {
3149 outline: none;
3149 outline: none;
3150 }
3150 }
3151 .btn-group .btn + .btn,
3151 .btn-group .btn + .btn,
3152 .btn-group .btn + .btn-group,
3152 .btn-group .btn + .btn-group,
3153 .btn-group .btn-group + .btn,
3153 .btn-group .btn-group + .btn,
3154 .btn-group .btn-group + .btn-group {
3154 .btn-group .btn-group + .btn-group {
3155 margin-left: -1px;
3155 margin-left: -1px;
3156 }
3156 }
3157 .btn-toolbar {
3157 .btn-toolbar {
3158 margin-left: -5px;
3158 margin-left: -5px;
3159 }
3159 }
3160 .btn-toolbar .btn-group,
3160 .btn-toolbar .btn-group,
3161 .btn-toolbar .input-group {
3161 .btn-toolbar .input-group {
3162 float: left;
3162 float: left;
3163 }
3163 }
3164 .btn-toolbar > .btn,
3164 .btn-toolbar > .btn,
3165 .btn-toolbar > .btn-group,
3165 .btn-toolbar > .btn-group,
3166 .btn-toolbar > .input-group {
3166 .btn-toolbar > .input-group {
3167 margin-left: 5px;
3167 margin-left: 5px;
3168 }
3168 }
3169 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3169 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3170 border-radius: 0;
3170 border-radius: 0;
3171 }
3171 }
3172 .btn-group > .btn:first-child {
3172 .btn-group > .btn:first-child {
3173 margin-left: 0;
3173 margin-left: 0;
3174 }
3174 }
3175 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3175 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3176 border-bottom-right-radius: 0;
3176 border-bottom-right-radius: 0;
3177 border-top-right-radius: 0;
3177 border-top-right-radius: 0;
3178 }
3178 }
3179 .btn-group > .btn:last-child:not(:first-child),
3179 .btn-group > .btn:last-child:not(:first-child),
3180 .btn-group > .dropdown-toggle:not(:first-child) {
3180 .btn-group > .dropdown-toggle:not(:first-child) {
3181 border-bottom-left-radius: 0;
3181 border-bottom-left-radius: 0;
3182 border-top-left-radius: 0;
3182 border-top-left-radius: 0;
3183 }
3183 }
3184 .btn-group > .btn-group {
3184 .btn-group > .btn-group {
3185 float: left;
3185 float: left;
3186 }
3186 }
3187 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3187 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3188 border-radius: 0;
3188 border-radius: 0;
3189 }
3189 }
3190 .btn-group > .btn-group:first-child > .btn:last-child,
3190 .btn-group > .btn-group:first-child > .btn:last-child,
3191 .btn-group > .btn-group:first-child > .dropdown-toggle {
3191 .btn-group > .btn-group:first-child > .dropdown-toggle {
3192 border-bottom-right-radius: 0;
3192 border-bottom-right-radius: 0;
3193 border-top-right-radius: 0;
3193 border-top-right-radius: 0;
3194 }
3194 }
3195 .btn-group > .btn-group:last-child > .btn:first-child {
3195 .btn-group > .btn-group:last-child > .btn:first-child {
3196 border-bottom-left-radius: 0;
3196 border-bottom-left-radius: 0;
3197 border-top-left-radius: 0;
3197 border-top-left-radius: 0;
3198 }
3198 }
3199 .btn-group .dropdown-toggle:active,
3199 .btn-group .dropdown-toggle:active,
3200 .btn-group.open .dropdown-toggle {
3200 .btn-group.open .dropdown-toggle {
3201 outline: 0;
3201 outline: 0;
3202 }
3202 }
3203 .btn-group > .btn + .dropdown-toggle {
3203 .btn-group > .btn + .dropdown-toggle {
3204 padding-left: 8px;
3204 padding-left: 8px;
3205 padding-right: 8px;
3205 padding-right: 8px;
3206 }
3206 }
3207 .btn-group > .btn-lg + .dropdown-toggle {
3207 .btn-group > .btn-lg + .dropdown-toggle {
3208 padding-left: 12px;
3208 padding-left: 12px;
3209 padding-right: 12px;
3209 padding-right: 12px;
3210 }
3210 }
3211 .btn-group.open .dropdown-toggle {
3211 .btn-group.open .dropdown-toggle {
3212 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3212 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3213 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3213 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3214 }
3214 }
3215 .btn-group.open .dropdown-toggle.btn-link {
3215 .btn-group.open .dropdown-toggle.btn-link {
3216 -webkit-box-shadow: none;
3216 -webkit-box-shadow: none;
3217 box-shadow: none;
3217 box-shadow: none;
3218 }
3218 }
3219 .btn .caret {
3219 .btn .caret {
3220 margin-left: 0;
3220 margin-left: 0;
3221 }
3221 }
3222 .btn-lg .caret {
3222 .btn-lg .caret {
3223 border-width: 5px 5px 0;
3223 border-width: 5px 5px 0;
3224 border-bottom-width: 0;
3224 border-bottom-width: 0;
3225 }
3225 }
3226 .dropup .btn-lg .caret {
3226 .dropup .btn-lg .caret {
3227 border-width: 0 5px 5px;
3227 border-width: 0 5px 5px;
3228 }
3228 }
3229 .btn-group-vertical > .btn,
3229 .btn-group-vertical > .btn,
3230 .btn-group-vertical > .btn-group,
3230 .btn-group-vertical > .btn-group,
3231 .btn-group-vertical > .btn-group > .btn {
3231 .btn-group-vertical > .btn-group > .btn {
3232 display: block;
3232 display: block;
3233 float: none;
3233 float: none;
3234 width: 100%;
3234 width: 100%;
3235 max-width: 100%;
3235 max-width: 100%;
3236 }
3236 }
3237 .btn-group-vertical > .btn-group > .btn {
3237 .btn-group-vertical > .btn-group > .btn {
3238 float: none;
3238 float: none;
3239 }
3239 }
3240 .btn-group-vertical > .btn + .btn,
3240 .btn-group-vertical > .btn + .btn,
3241 .btn-group-vertical > .btn + .btn-group,
3241 .btn-group-vertical > .btn + .btn-group,
3242 .btn-group-vertical > .btn-group + .btn,
3242 .btn-group-vertical > .btn-group + .btn,
3243 .btn-group-vertical > .btn-group + .btn-group {
3243 .btn-group-vertical > .btn-group + .btn-group {
3244 margin-top: -1px;
3244 margin-top: -1px;
3245 margin-left: 0;
3245 margin-left: 0;
3246 }
3246 }
3247 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3247 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3248 border-radius: 0;
3248 border-radius: 0;
3249 }
3249 }
3250 .btn-group-vertical > .btn:first-child:not(:last-child) {
3250 .btn-group-vertical > .btn:first-child:not(:last-child) {
3251 border-top-right-radius: 4px;
3251 border-top-right-radius: 4px;
3252 border-bottom-right-radius: 0;
3252 border-bottom-right-radius: 0;
3253 border-bottom-left-radius: 0;
3253 border-bottom-left-radius: 0;
3254 }
3254 }
3255 .btn-group-vertical > .btn:last-child:not(:first-child) {
3255 .btn-group-vertical > .btn:last-child:not(:first-child) {
3256 border-bottom-left-radius: 4px;
3256 border-bottom-left-radius: 4px;
3257 border-top-right-radius: 0;
3257 border-top-right-radius: 0;
3258 border-top-left-radius: 0;
3258 border-top-left-radius: 0;
3259 }
3259 }
3260 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3260 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3261 border-radius: 0;
3261 border-radius: 0;
3262 }
3262 }
3263 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3263 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3264 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3264 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3265 border-bottom-right-radius: 0;
3265 border-bottom-right-radius: 0;
3266 border-bottom-left-radius: 0;
3266 border-bottom-left-radius: 0;
3267 }
3267 }
3268 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3268 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3269 border-top-right-radius: 0;
3269 border-top-right-radius: 0;
3270 border-top-left-radius: 0;
3270 border-top-left-radius: 0;
3271 }
3271 }
3272 .btn-group-justified {
3272 .btn-group-justified {
3273 display: table;
3273 display: table;
3274 width: 100%;
3274 width: 100%;
3275 table-layout: fixed;
3275 table-layout: fixed;
3276 border-collapse: separate;
3276 border-collapse: separate;
3277 }
3277 }
3278 .btn-group-justified > .btn,
3278 .btn-group-justified > .btn,
3279 .btn-group-justified > .btn-group {
3279 .btn-group-justified > .btn-group {
3280 float: none;
3280 float: none;
3281 display: table-cell;
3281 display: table-cell;
3282 width: 1%;
3282 width: 1%;
3283 }
3283 }
3284 .btn-group-justified > .btn-group .btn {
3284 .btn-group-justified > .btn-group .btn {
3285 width: 100%;
3285 width: 100%;
3286 }
3286 }
3287 [data-toggle="buttons"] > .btn > input[type="radio"],
3287 [data-toggle="buttons"] > .btn > input[type="radio"],
3288 [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3288 [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3289 display: none;
3289 display: none;
3290 }
3290 }
3291 .input-group {
3291 .input-group {
3292 position: relative;
3292 position: relative;
3293 display: table;
3293 display: table;
3294 border-collapse: separate;
3294 border-collapse: separate;
3295 }
3295 }
3296 .input-group[class*="col-"] {
3296 .input-group[class*="col-"] {
3297 float: none;
3297 float: none;
3298 padding-left: 0;
3298 padding-left: 0;
3299 padding-right: 0;
3299 padding-right: 0;
3300 }
3300 }
3301 .input-group .form-control {
3301 .input-group .form-control {
3302 position: relative;
3302 position: relative;
3303 z-index: 2;
3303 z-index: 2;
3304 float: left;
3304 float: left;
3305 width: 100%;
3305 width: 100%;
3306 margin-bottom: 0;
3306 margin-bottom: 0;
3307 }
3307 }
3308 .input-group-lg > .form-control,
3308 .input-group-lg > .form-control,
3309 .input-group-lg > .input-group-addon,
3309 .input-group-lg > .input-group-addon,
3310 .input-group-lg > .input-group-btn > .btn {
3310 .input-group-lg > .input-group-btn > .btn {
3311 height: 45px;
3311 height: 45px;
3312 padding: 10px 16px;
3312 padding: 10px 16px;
3313 font-size: 17px;
3313 font-size: 17px;
3314 line-height: 1.33;
3314 line-height: 1.33;
3315 border-radius: 6px;
3315 border-radius: 6px;
3316 }
3316 }
3317 select.input-group-lg > .form-control,
3317 select.input-group-lg > .form-control,
3318 select.input-group-lg > .input-group-addon,
3318 select.input-group-lg > .input-group-addon,
3319 select.input-group-lg > .input-group-btn > .btn {
3319 select.input-group-lg > .input-group-btn > .btn {
3320 height: 45px;
3320 height: 45px;
3321 line-height: 45px;
3321 line-height: 45px;
3322 }
3322 }
3323 textarea.input-group-lg > .form-control,
3323 textarea.input-group-lg > .form-control,
3324 textarea.input-group-lg > .input-group-addon,
3324 textarea.input-group-lg > .input-group-addon,
3325 textarea.input-group-lg > .input-group-btn > .btn,
3325 textarea.input-group-lg > .input-group-btn > .btn,
3326 select[multiple].input-group-lg > .form-control,
3326 select[multiple].input-group-lg > .form-control,
3327 select[multiple].input-group-lg > .input-group-addon,
3327 select[multiple].input-group-lg > .input-group-addon,
3328 select[multiple].input-group-lg > .input-group-btn > .btn {
3328 select[multiple].input-group-lg > .input-group-btn > .btn {
3329 height: auto;
3329 height: auto;
3330 }
3330 }
3331 .input-group-sm > .form-control,
3331 .input-group-sm > .form-control,
3332 .input-group-sm > .input-group-addon,
3332 .input-group-sm > .input-group-addon,
3333 .input-group-sm > .input-group-btn > .btn {
3333 .input-group-sm > .input-group-btn > .btn {
3334 height: 30px;
3334 height: 30px;
3335 padding: 5px 10px;
3335 padding: 5px 10px;
3336 font-size: 12px;
3336 font-size: 12px;
3337 line-height: 1.5;
3337 line-height: 1.5;
3338 border-radius: 3px;
3338 border-radius: 3px;
3339 }
3339 }
3340 select.input-group-sm > .form-control,
3340 select.input-group-sm > .form-control,
3341 select.input-group-sm > .input-group-addon,
3341 select.input-group-sm > .input-group-addon,
3342 select.input-group-sm > .input-group-btn > .btn {
3342 select.input-group-sm > .input-group-btn > .btn {
3343 height: 30px;
3343 height: 30px;
3344 line-height: 30px;
3344 line-height: 30px;
3345 }
3345 }
3346 textarea.input-group-sm > .form-control,
3346 textarea.input-group-sm > .form-control,
3347 textarea.input-group-sm > .input-group-addon,
3347 textarea.input-group-sm > .input-group-addon,
3348 textarea.input-group-sm > .input-group-btn > .btn,
3348 textarea.input-group-sm > .input-group-btn > .btn,
3349 select[multiple].input-group-sm > .form-control,
3349 select[multiple].input-group-sm > .form-control,
3350 select[multiple].input-group-sm > .input-group-addon,
3350 select[multiple].input-group-sm > .input-group-addon,
3351 select[multiple].input-group-sm > .input-group-btn > .btn {
3351 select[multiple].input-group-sm > .input-group-btn > .btn {
3352 height: auto;
3352 height: auto;
3353 }
3353 }
3354 .input-group-addon,
3354 .input-group-addon,
3355 .input-group-btn,
3355 .input-group-btn,
3356 .input-group .form-control {
3356 .input-group .form-control {
3357 display: table-cell;
3357 display: table-cell;
3358 }
3358 }
3359 .input-group-addon:not(:first-child):not(:last-child),
3359 .input-group-addon:not(:first-child):not(:last-child),
3360 .input-group-btn:not(:first-child):not(:last-child),
3360 .input-group-btn:not(:first-child):not(:last-child),
3361 .input-group .form-control:not(:first-child):not(:last-child) {
3361 .input-group .form-control:not(:first-child):not(:last-child) {
3362 border-radius: 0;
3362 border-radius: 0;
3363 }
3363 }
3364 .input-group-addon,
3364 .input-group-addon,
3365 .input-group-btn {
3365 .input-group-btn {
3366 width: 1%;
3366 width: 1%;
3367 white-space: nowrap;
3367 white-space: nowrap;
3368 vertical-align: middle;
3368 vertical-align: middle;
3369 }
3369 }
3370 .input-group-addon {
3370 .input-group-addon {
3371 padding: 6px 12px;
3371 padding: 6px 12px;
3372 font-size: 13px;
3372 font-size: 13px;
3373 font-weight: normal;
3373 font-weight: normal;
3374 line-height: 1;
3374 line-height: 1;
3375 color: #555555;
3375 color: #555555;
3376 text-align: center;
3376 text-align: center;
3377 background-color: #eeeeee;
3377 background-color: #eeeeee;
3378 border: 1px solid #cccccc;
3378 border: 1px solid #cccccc;
3379 border-radius: 4px;
3379 border-radius: 4px;
3380 }
3380 }
3381 .input-group-addon.input-sm {
3381 .input-group-addon.input-sm {
3382 padding: 5px 10px;
3382 padding: 5px 10px;
3383 font-size: 12px;
3383 font-size: 12px;
3384 border-radius: 3px;
3384 border-radius: 3px;
3385 }
3385 }
3386 .input-group-addon.input-lg {
3386 .input-group-addon.input-lg {
3387 padding: 10px 16px;
3387 padding: 10px 16px;
3388 font-size: 17px;
3388 font-size: 17px;
3389 border-radius: 6px;
3389 border-radius: 6px;
3390 }
3390 }
3391 .input-group-addon input[type="radio"],
3391 .input-group-addon input[type="radio"],
3392 .input-group-addon input[type="checkbox"] {
3392 .input-group-addon input[type="checkbox"] {
3393 margin-top: 0;
3393 margin-top: 0;
3394 }
3394 }
3395 .input-group .form-control:first-child,
3395 .input-group .form-control:first-child,
3396 .input-group-addon:first-child,
3396 .input-group-addon:first-child,
3397 .input-group-btn:first-child > .btn,
3397 .input-group-btn:first-child > .btn,
3398 .input-group-btn:first-child > .btn-group > .btn,
3398 .input-group-btn:first-child > .btn-group > .btn,
3399 .input-group-btn:first-child > .dropdown-toggle,
3399 .input-group-btn:first-child > .dropdown-toggle,
3400 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3400 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3401 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3401 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3402 border-bottom-right-radius: 0;
3402 border-bottom-right-radius: 0;
3403 border-top-right-radius: 0;
3403 border-top-right-radius: 0;
3404 }
3404 }
3405 .input-group-addon:first-child {
3405 .input-group-addon:first-child {
3406 border-right: 0;
3406 border-right: 0;
3407 }
3407 }
3408 .input-group .form-control:last-child,
3408 .input-group .form-control:last-child,
3409 .input-group-addon:last-child,
3409 .input-group-addon:last-child,
3410 .input-group-btn:last-child > .btn,
3410 .input-group-btn:last-child > .btn,
3411 .input-group-btn:last-child > .btn-group > .btn,
3411 .input-group-btn:last-child > .btn-group > .btn,
3412 .input-group-btn:last-child > .dropdown-toggle,
3412 .input-group-btn:last-child > .dropdown-toggle,
3413 .input-group-btn:first-child > .btn:not(:first-child),
3413 .input-group-btn:first-child > .btn:not(:first-child),
3414 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3414 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3415 border-bottom-left-radius: 0;
3415 border-bottom-left-radius: 0;
3416 border-top-left-radius: 0;
3416 border-top-left-radius: 0;
3417 }
3417 }
3418 .input-group-addon:last-child {
3418 .input-group-addon:last-child {
3419 border-left: 0;
3419 border-left: 0;
3420 }
3420 }
3421 .input-group-btn {
3421 .input-group-btn {
3422 position: relative;
3422 position: relative;
3423 font-size: 0;
3423 font-size: 0;
3424 white-space: nowrap;
3424 white-space: nowrap;
3425 }
3425 }
3426 .input-group-btn > .btn {
3426 .input-group-btn > .btn {
3427 position: relative;
3427 position: relative;
3428 }
3428 }
3429 .input-group-btn > .btn + .btn {
3429 .input-group-btn > .btn + .btn {
3430 margin-left: -1px;
3430 margin-left: -1px;
3431 }
3431 }
3432 .input-group-btn > .btn:hover,
3432 .input-group-btn > .btn:hover,
3433 .input-group-btn > .btn:focus,
3433 .input-group-btn > .btn:focus,
3434 .input-group-btn > .btn:active {
3434 .input-group-btn > .btn:active {
3435 z-index: 2;
3435 z-index: 2;
3436 }
3436 }
3437 .input-group-btn:first-child > .btn,
3437 .input-group-btn:first-child > .btn,
3438 .input-group-btn:first-child > .btn-group {
3438 .input-group-btn:first-child > .btn-group {
3439 margin-right: -1px;
3439 margin-right: -1px;
3440 }
3440 }
3441 .input-group-btn:last-child > .btn,
3441 .input-group-btn:last-child > .btn,
3442 .input-group-btn:last-child > .btn-group {
3442 .input-group-btn:last-child > .btn-group {
3443 margin-left: -1px;
3443 margin-left: -1px;
3444 }
3444 }
3445 .nav {
3445 .nav {
3446 margin-bottom: 0;
3446 margin-bottom: 0;
3447 padding-left: 0;
3447 padding-left: 0;
3448 list-style: none;
3448 list-style: none;
3449 }
3449 }
3450 .nav > li {
3450 .nav > li {
3451 position: relative;
3451 position: relative;
3452 display: block;
3452 display: block;
3453 }
3453 }
3454 .nav > li > a {
3454 .nav > li > a {
3455 position: relative;
3455 position: relative;
3456 display: block;
3456 display: block;
3457 padding: 10px 15px;
3457 padding: 10px 15px;
3458 }
3458 }
3459 .nav > li > a:hover,
3459 .nav > li > a:hover,
3460 .nav > li > a:focus {
3460 .nav > li > a:focus {
3461 text-decoration: none;
3461 text-decoration: none;
3462 background-color: #eeeeee;
3462 background-color: #eeeeee;
3463 }
3463 }
3464 .nav > li.disabled > a {
3464 .nav > li.disabled > a {
3465 color: #999999;
3465 color: #999999;
3466 }
3466 }
3467 .nav > li.disabled > a:hover,
3467 .nav > li.disabled > a:hover,
3468 .nav > li.disabled > a:focus {
3468 .nav > li.disabled > a:focus {
3469 color: #999999;
3469 color: #999999;
3470 text-decoration: none;
3470 text-decoration: none;
3471 background-color: transparent;
3471 background-color: transparent;
3472 cursor: not-allowed;
3472 cursor: not-allowed;
3473 }
3473 }
3474 .nav .open > a,
3474 .nav .open > a,
3475 .nav .open > a:hover,
3475 .nav .open > a:hover,
3476 .nav .open > a:focus {
3476 .nav .open > a:focus {
3477 background-color: #eeeeee;
3477 background-color: #eeeeee;
3478 border-color: #428bca;
3478 border-color: #428bca;
3479 }
3479 }
3480 .nav .nav-divider {
3480 .nav .nav-divider {
3481 height: 1px;
3481 height: 1px;
3482 margin: 8px 0;
3482 margin: 8px 0;
3483 overflow: hidden;
3483 overflow: hidden;
3484 background-color: #e5e5e5;
3484 background-color: #e5e5e5;
3485 }
3485 }
3486 .nav > li > a > img {
3486 .nav > li > a > img {
3487 max-width: none;
3487 max-width: none;
3488 }
3488 }
3489 .nav-tabs {
3489 .nav-tabs {
3490 border-bottom: 1px solid #dddddd;
3490 border-bottom: 1px solid #dddddd;
3491 }
3491 }
3492 .nav-tabs > li {
3492 .nav-tabs > li {
3493 float: left;
3493 float: left;
3494 margin-bottom: -1px;
3494 margin-bottom: -1px;
3495 }
3495 }
3496 .nav-tabs > li > a {
3496 .nav-tabs > li > a {
3497 margin-right: 2px;
3497 margin-right: 2px;
3498 line-height: 1.42857143;
3498 line-height: 1.42857143;
3499 border: 1px solid transparent;
3499 border: 1px solid transparent;
3500 border-radius: 4px 4px 0 0;
3500 border-radius: 4px 4px 0 0;
3501 }
3501 }
3502 .nav-tabs > li > a:hover {
3502 .nav-tabs > li > a:hover {
3503 border-color: #eeeeee #eeeeee #dddddd;
3503 border-color: #eeeeee #eeeeee #dddddd;
3504 }
3504 }
3505 .nav-tabs > li.active > a,
3505 .nav-tabs > li.active > a,
3506 .nav-tabs > li.active > a:hover,
3506 .nav-tabs > li.active > a:hover,
3507 .nav-tabs > li.active > a:focus {
3507 .nav-tabs > li.active > a:focus {
3508 color: #555555;
3508 color: #555555;
3509 background-color: #ffffff;
3509 background-color: #ffffff;
3510 border: 1px solid #dddddd;
3510 border: 1px solid #dddddd;
3511 border-bottom-color: transparent;
3511 border-bottom-color: transparent;
3512 cursor: default;
3512 cursor: default;
3513 }
3513 }
3514 .nav-tabs.nav-justified {
3514 .nav-tabs.nav-justified {
3515 width: 100%;
3515 width: 100%;
3516 border-bottom: 0;
3516 border-bottom: 0;
3517 }
3517 }
3518 .nav-tabs.nav-justified > li {
3518 .nav-tabs.nav-justified > li {
3519 float: none;
3519 float: none;
3520 }
3520 }
3521 .nav-tabs.nav-justified > li > a {
3521 .nav-tabs.nav-justified > li > a {
3522 text-align: center;
3522 text-align: center;
3523 margin-bottom: 5px;
3523 margin-bottom: 5px;
3524 }
3524 }
3525 .nav-tabs.nav-justified > .dropdown .dropdown-menu {
3525 .nav-tabs.nav-justified > .dropdown .dropdown-menu {
3526 top: auto;
3526 top: auto;
3527 left: auto;
3527 left: auto;
3528 }
3528 }
3529 @media (min-width: 768px) {
3529 @media (min-width: 768px) {
3530 .nav-tabs.nav-justified > li {
3530 .nav-tabs.nav-justified > li {
3531 display: table-cell;
3531 display: table-cell;
3532 width: 1%;
3532 width: 1%;
3533 }
3533 }
3534 .nav-tabs.nav-justified > li > a {
3534 .nav-tabs.nav-justified > li > a {
3535 margin-bottom: 0;
3535 margin-bottom: 0;
3536 }
3536 }
3537 }
3537 }
3538 .nav-tabs.nav-justified > li > a {
3538 .nav-tabs.nav-justified > li > a {
3539 margin-right: 0;
3539 margin-right: 0;
3540 border-radius: 4px;
3540 border-radius: 4px;
3541 }
3541 }
3542 .nav-tabs.nav-justified > .active > a,
3542 .nav-tabs.nav-justified > .active > a,
3543 .nav-tabs.nav-justified > .active > a:hover,
3543 .nav-tabs.nav-justified > .active > a:hover,
3544 .nav-tabs.nav-justified > .active > a:focus {
3544 .nav-tabs.nav-justified > .active > a:focus {
3545 border: 1px solid #dddddd;
3545 border: 1px solid #dddddd;
3546 }
3546 }
3547 @media (min-width: 768px) {
3547 @media (min-width: 768px) {
3548 .nav-tabs.nav-justified > li > a {
3548 .nav-tabs.nav-justified > li > a {
3549 border-bottom: 1px solid #dddddd;
3549 border-bottom: 1px solid #dddddd;
3550 border-radius: 4px 4px 0 0;
3550 border-radius: 4px 4px 0 0;
3551 }
3551 }
3552 .nav-tabs.nav-justified > .active > a,
3552 .nav-tabs.nav-justified > .active > a,
3553 .nav-tabs.nav-justified > .active > a:hover,
3553 .nav-tabs.nav-justified > .active > a:hover,
3554 .nav-tabs.nav-justified > .active > a:focus {
3554 .nav-tabs.nav-justified > .active > a:focus {
3555 border-bottom-color: #ffffff;
3555 border-bottom-color: #ffffff;
3556 }
3556 }
3557 }
3557 }
3558 .nav-pills > li {
3558 .nav-pills > li {
3559 float: left;
3559 float: left;
3560 }
3560 }
3561 .nav-pills > li > a {
3561 .nav-pills > li > a {
3562 border-radius: 4px;
3562 border-radius: 4px;
3563 }
3563 }
3564 .nav-pills > li + li {
3564 .nav-pills > li + li {
3565 margin-left: 2px;
3565 margin-left: 2px;
3566 }
3566 }
3567 .nav-pills > li.active > a,
3567 .nav-pills > li.active > a,
3568 .nav-pills > li.active > a:hover,
3568 .nav-pills > li.active > a:hover,
3569 .nav-pills > li.active > a:focus {
3569 .nav-pills > li.active > a:focus {
3570 color: #ffffff;
3570 color: #ffffff;
3571 background-color: #428bca;
3571 background-color: #428bca;
3572 }
3572 }
3573 .nav-stacked > li {
3573 .nav-stacked > li {
3574 float: none;
3574 float: none;
3575 }
3575 }
3576 .nav-stacked > li + li {
3576 .nav-stacked > li + li {
3577 margin-top: 2px;
3577 margin-top: 2px;
3578 margin-left: 0;
3578 margin-left: 0;
3579 }
3579 }
3580 .nav-justified {
3580 .nav-justified {
3581 width: 100%;
3581 width: 100%;
3582 }
3582 }
3583 .nav-justified > li {
3583 .nav-justified > li {
3584 float: none;
3584 float: none;
3585 }
3585 }
3586 .nav-justified > li > a {
3586 .nav-justified > li > a {
3587 text-align: center;
3587 text-align: center;
3588 margin-bottom: 5px;
3588 margin-bottom: 5px;
3589 }
3589 }
3590 .nav-justified > .dropdown .dropdown-menu {
3590 .nav-justified > .dropdown .dropdown-menu {
3591 top: auto;
3591 top: auto;
3592 left: auto;
3592 left: auto;
3593 }
3593 }
3594 @media (min-width: 768px) {
3594 @media (min-width: 768px) {
3595 .nav-justified > li {
3595 .nav-justified > li {
3596 display: table-cell;
3596 display: table-cell;
3597 width: 1%;
3597 width: 1%;
3598 }
3598 }
3599 .nav-justified > li > a {
3599 .nav-justified > li > a {
3600 margin-bottom: 0;
3600 margin-bottom: 0;
3601 }
3601 }
3602 }
3602 }
3603 .nav-tabs-justified {
3603 .nav-tabs-justified {
3604 border-bottom: 0;
3604 border-bottom: 0;
3605 }
3605 }
3606 .nav-tabs-justified > li > a {
3606 .nav-tabs-justified > li > a {
3607 margin-right: 0;
3607 margin-right: 0;
3608 border-radius: 4px;
3608 border-radius: 4px;
3609 }
3609 }
3610 .nav-tabs-justified > .active > a,
3610 .nav-tabs-justified > .active > a,
3611 .nav-tabs-justified > .active > a:hover,
3611 .nav-tabs-justified > .active > a:hover,
3612 .nav-tabs-justified > .active > a:focus {
3612 .nav-tabs-justified > .active > a:focus {
3613 border: 1px solid #dddddd;
3613 border: 1px solid #dddddd;
3614 }
3614 }
3615 @media (min-width: 768px) {
3615 @media (min-width: 768px) {
3616 .nav-tabs-justified > li > a {
3616 .nav-tabs-justified > li > a {
3617 border-bottom: 1px solid #dddddd;
3617 border-bottom: 1px solid #dddddd;
3618 border-radius: 4px 4px 0 0;
3618 border-radius: 4px 4px 0 0;
3619 }
3619 }
3620 .nav-tabs-justified > .active > a,
3620 .nav-tabs-justified > .active > a,
3621 .nav-tabs-justified > .active > a:hover,
3621 .nav-tabs-justified > .active > a:hover,
3622 .nav-tabs-justified > .active > a:focus {
3622 .nav-tabs-justified > .active > a:focus {
3623 border-bottom-color: #ffffff;
3623 border-bottom-color: #ffffff;
3624 }
3624 }
3625 }
3625 }
3626 .tab-content > .tab-pane {
3626 .tab-content > .tab-pane {
3627 display: none;
3627 display: none;
3628 }
3628 }
3629 .tab-content > .active {
3629 .tab-content > .active {
3630 display: block;
3630 display: block;
3631 }
3631 }
3632 .nav-tabs .dropdown-menu {
3632 .nav-tabs .dropdown-menu {
3633 margin-top: -1px;
3633 margin-top: -1px;
3634 border-top-right-radius: 0;
3634 border-top-right-radius: 0;
3635 border-top-left-radius: 0;
3635 border-top-left-radius: 0;
3636 }
3636 }
3637 .navbar {
3637 .navbar {
3638 position: relative;
3638 position: relative;
3639 min-height: 30px;
3639 min-height: 30px;
3640 margin-bottom: 18px;
3640 margin-bottom: 18px;
3641 border: 1px solid transparent;
3641 border: 1px solid transparent;
3642 }
3642 }
3643 @media (min-width: 540px) {
3643 @media (min-width: 540px) {
3644 .navbar {
3644 .navbar {
3645 border-radius: 4px;
3645 border-radius: 4px;
3646 }
3646 }
3647 }
3647 }
3648 @media (min-width: 540px) {
3648 @media (min-width: 540px) {
3649 .navbar-header {
3649 .navbar-header {
3650 float: left;
3650 float: left;
3651 }
3651 }
3652 }
3652 }
3653 .navbar-collapse {
3653 .navbar-collapse {
3654 max-height: 340px;
3654 max-height: 340px;
3655 overflow-x: visible;
3655 overflow-x: visible;
3656 padding-right: 15px;
3656 padding-right: 15px;
3657 padding-left: 15px;
3657 padding-left: 15px;
3658 border-top: 1px solid transparent;
3658 border-top: 1px solid transparent;
3659 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3659 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3660 -webkit-overflow-scrolling: touch;
3660 -webkit-overflow-scrolling: touch;
3661 }
3661 }
3662 .navbar-collapse.in {
3662 .navbar-collapse.in {
3663 overflow-y: auto;
3663 overflow-y: auto;
3664 }
3664 }
3665 @media (min-width: 540px) {
3665 @media (min-width: 540px) {
3666 .navbar-collapse {
3666 .navbar-collapse {
3667 width: auto;
3667 width: auto;
3668 border-top: 0;
3668 border-top: 0;
3669 box-shadow: none;
3669 box-shadow: none;
3670 }
3670 }
3671 .navbar-collapse.collapse {
3671 .navbar-collapse.collapse {
3672 display: block !important;
3672 display: block !important;
3673 height: auto !important;
3673 height: auto !important;
3674 padding-bottom: 0;
3674 padding-bottom: 0;
3675 overflow: visible !important;
3675 overflow: visible !important;
3676 }
3676 }
3677 .navbar-collapse.in {
3677 .navbar-collapse.in {
3678 overflow-y: visible;
3678 overflow-y: visible;
3679 }
3679 }
3680 .navbar-fixed-top .navbar-collapse,
3680 .navbar-fixed-top .navbar-collapse,
3681 .navbar-static-top .navbar-collapse,
3681 .navbar-static-top .navbar-collapse,
3682 .navbar-fixed-bottom .navbar-collapse {
3682 .navbar-fixed-bottom .navbar-collapse {
3683 padding-left: 0;
3683 padding-left: 0;
3684 padding-right: 0;
3684 padding-right: 0;
3685 }
3685 }
3686 }
3686 }
3687 .container > .navbar-header,
3687 .container > .navbar-header,
3688 .container-fluid > .navbar-header,
3688 .container-fluid > .navbar-header,
3689 .container > .navbar-collapse,
3689 .container > .navbar-collapse,
3690 .container-fluid > .navbar-collapse {
3690 .container-fluid > .navbar-collapse {
3691 margin-right: -15px;
3691 margin-right: -15px;
3692 margin-left: -15px;
3692 margin-left: -15px;
3693 }
3693 }
3694 @media (min-width: 540px) {
3694 @media (min-width: 540px) {
3695 .container > .navbar-header,
3695 .container > .navbar-header,
3696 .container-fluid > .navbar-header,
3696 .container-fluid > .navbar-header,
3697 .container > .navbar-collapse,
3697 .container > .navbar-collapse,
3698 .container-fluid > .navbar-collapse {
3698 .container-fluid > .navbar-collapse {
3699 margin-right: 0;
3699 margin-right: 0;
3700 margin-left: 0;
3700 margin-left: 0;
3701 }
3701 }
3702 }
3702 }
3703 .navbar-static-top {
3703 .navbar-static-top {
3704 z-index: 1000;
3704 z-index: 1000;
3705 border-width: 0 0 1px;
3705 border-width: 0 0 1px;
3706 }
3706 }
3707 @media (min-width: 540px) {
3707 @media (min-width: 540px) {
3708 .navbar-static-top {
3708 .navbar-static-top {
3709 border-radius: 0;
3709 border-radius: 0;
3710 }
3710 }
3711 }
3711 }
3712 .navbar-fixed-top,
3712 .navbar-fixed-top,
3713 .navbar-fixed-bottom {
3713 .navbar-fixed-bottom {
3714 position: fixed;
3714 position: fixed;
3715 right: 0;
3715 right: 0;
3716 left: 0;
3716 left: 0;
3717 z-index: 1030;
3717 z-index: 1030;
3718 }
3718 }
3719 @media (min-width: 540px) {
3719 @media (min-width: 540px) {
3720 .navbar-fixed-top,
3720 .navbar-fixed-top,
3721 .navbar-fixed-bottom {
3721 .navbar-fixed-bottom {
3722 border-radius: 0;
3722 border-radius: 0;
3723 }
3723 }
3724 }
3724 }
3725 .navbar-fixed-top {
3725 .navbar-fixed-top {
3726 top: 0;
3726 top: 0;
3727 border-width: 0 0 1px;
3727 border-width: 0 0 1px;
3728 }
3728 }
3729 .navbar-fixed-bottom {
3729 .navbar-fixed-bottom {
3730 bottom: 0;
3730 bottom: 0;
3731 margin-bottom: 0;
3731 margin-bottom: 0;
3732 border-width: 1px 0 0;
3732 border-width: 1px 0 0;
3733 }
3733 }
3734 .navbar-brand {
3734 .navbar-brand {
3735 float: left;
3735 float: left;
3736 padding: 6px 15px;
3736 padding: 6px 15px;
3737 font-size: 17px;
3737 font-size: 17px;
3738 line-height: 18px;
3738 line-height: 18px;
3739 height: 30px;
3739 height: 30px;
3740 }
3740 }
3741 .navbar-brand:hover,
3741 .navbar-brand:hover,
3742 .navbar-brand:focus {
3742 .navbar-brand:focus {
3743 text-decoration: none;
3743 text-decoration: none;
3744 }
3744 }
3745 @media (min-width: 540px) {
3745 @media (min-width: 540px) {
3746 .navbar > .container .navbar-brand,
3746 .navbar > .container .navbar-brand,
3747 .navbar > .container-fluid .navbar-brand {
3747 .navbar > .container-fluid .navbar-brand {
3748 margin-left: -15px;
3748 margin-left: -15px;
3749 }
3749 }
3750 }
3750 }
3751 .navbar-toggle {
3751 .navbar-toggle {
3752 position: relative;
3752 position: relative;
3753 float: right;
3753 float: right;
3754 margin-right: 15px;
3754 margin-right: 15px;
3755 padding: 9px 10px;
3755 padding: 9px 10px;
3756 margin-top: -2px;
3756 margin-top: -2px;
3757 margin-bottom: -2px;
3757 margin-bottom: -2px;
3758 background-color: transparent;
3758 background-color: transparent;
3759 background-image: none;
3759 background-image: none;
3760 border: 1px solid transparent;
3760 border: 1px solid transparent;
3761 border-radius: 4px;
3761 border-radius: 4px;
3762 }
3762 }
3763 .navbar-toggle:focus {
3763 .navbar-toggle:focus {
3764 outline: none;
3764 outline: none;
3765 }
3765 }
3766 .navbar-toggle .icon-bar {
3766 .navbar-toggle .icon-bar {
3767 display: block;
3767 display: block;
3768 width: 22px;
3768 width: 22px;
3769 height: 2px;
3769 height: 2px;
3770 border-radius: 1px;
3770 border-radius: 1px;
3771 }
3771 }
3772 .navbar-toggle .icon-bar + .icon-bar {
3772 .navbar-toggle .icon-bar + .icon-bar {
3773 margin-top: 4px;
3773 margin-top: 4px;
3774 }
3774 }
3775 @media (min-width: 540px) {
3775 @media (min-width: 540px) {
3776 .navbar-toggle {
3776 .navbar-toggle {
3777 display: none;
3777 display: none;
3778 }
3778 }
3779 }
3779 }
3780 .navbar-nav {
3780 .navbar-nav {
3781 margin: 3px -15px;
3781 margin: 3px -15px;
3782 }
3782 }
3783 .navbar-nav > li > a {
3783 .navbar-nav > li > a {
3784 padding-top: 10px;
3784 padding-top: 10px;
3785 padding-bottom: 10px;
3785 padding-bottom: 10px;
3786 line-height: 18px;
3786 line-height: 18px;
3787 }
3787 }
3788 @media (max-width: 539px) {
3788 @media (max-width: 539px) {
3789 .navbar-nav .open .dropdown-menu {
3789 .navbar-nav .open .dropdown-menu {
3790 position: static;
3790 position: static;
3791 float: none;
3791 float: none;
3792 width: auto;
3792 width: auto;
3793 margin-top: 0;
3793 margin-top: 0;
3794 background-color: transparent;
3794 background-color: transparent;
3795 border: 0;
3795 border: 0;
3796 box-shadow: none;
3796 box-shadow: none;
3797 }
3797 }
3798 .navbar-nav .open .dropdown-menu > li > a,
3798 .navbar-nav .open .dropdown-menu > li > a,
3799 .navbar-nav .open .dropdown-menu .dropdown-header {
3799 .navbar-nav .open .dropdown-menu .dropdown-header {
3800 padding: 5px 15px 5px 25px;
3800 padding: 5px 15px 5px 25px;
3801 }
3801 }
3802 .navbar-nav .open .dropdown-menu > li > a {
3802 .navbar-nav .open .dropdown-menu > li > a {
3803 line-height: 18px;
3803 line-height: 18px;
3804 }
3804 }
3805 .navbar-nav .open .dropdown-menu > li > a:hover,
3805 .navbar-nav .open .dropdown-menu > li > a:hover,
3806 .navbar-nav .open .dropdown-menu > li > a:focus {
3806 .navbar-nav .open .dropdown-menu > li > a:focus {
3807 background-image: none;
3807 background-image: none;
3808 }
3808 }
3809 }
3809 }
3810 @media (min-width: 540px) {
3810 @media (min-width: 540px) {
3811 .navbar-nav {
3811 .navbar-nav {
3812 float: left;
3812 float: left;
3813 margin: 0;
3813 margin: 0;
3814 }
3814 }
3815 .navbar-nav > li {
3815 .navbar-nav > li {
3816 float: left;
3816 float: left;
3817 }
3817 }
3818 .navbar-nav > li > a {
3818 .navbar-nav > li > a {
3819 padding-top: 6px;
3819 padding-top: 6px;
3820 padding-bottom: 6px;
3820 padding-bottom: 6px;
3821 }
3821 }
3822 .navbar-nav.navbar-right:last-child {
3822 .navbar-nav.navbar-right:last-child {
3823 margin-right: -15px;
3823 margin-right: -15px;
3824 }
3824 }
3825 }
3825 }
3826 @media (min-width: 540px) {
3826 @media (min-width: 540px) {
3827 .navbar-left {
3827 .navbar-left {
3828 float: left !important;
3828 float: left !important;
3829 float: left;
3829 float: left;
3830 }
3830 }
3831 .navbar-right {
3831 .navbar-right {
3832 float: right !important;
3832 float: right !important;
3833 float: right;
3833 float: right;
3834 }
3834 }
3835 }
3835 }
3836 .navbar-form {
3836 .navbar-form {
3837 margin-left: -15px;
3837 margin-left: -15px;
3838 margin-right: -15px;
3838 margin-right: -15px;
3839 padding: 10px 15px;
3839 padding: 10px 15px;
3840 border-top: 1px solid transparent;
3840 border-top: 1px solid transparent;
3841 border-bottom: 1px solid transparent;
3841 border-bottom: 1px solid transparent;
3842 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3842 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3843 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3843 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3844 margin-top: -1px;
3844 margin-top: -1px;
3845 margin-bottom: -1px;
3845 margin-bottom: -1px;
3846 }
3846 }
3847 @media (min-width: 768px) {
3847 @media (min-width: 768px) {
3848 .navbar-form .form-group {
3848 .navbar-form .form-group {
3849 display: inline-block;
3849 display: inline-block;
3850 margin-bottom: 0;
3850 margin-bottom: 0;
3851 vertical-align: middle;
3851 vertical-align: middle;
3852 }
3852 }
3853 .navbar-form .form-control {
3853 .navbar-form .form-control {
3854 display: inline-block;
3854 display: inline-block;
3855 width: auto;
3855 width: auto;
3856 vertical-align: middle;
3856 vertical-align: middle;
3857 }
3857 }
3858 .navbar-form .input-group > .form-control {
3858 .navbar-form .input-group > .form-control {
3859 width: 100%;
3859 width: 100%;
3860 }
3860 }
3861 .navbar-form .control-label {
3861 .navbar-form .control-label {
3862 margin-bottom: 0;
3862 margin-bottom: 0;
3863 vertical-align: middle;
3863 vertical-align: middle;
3864 }
3864 }
3865 .navbar-form .radio,
3865 .navbar-form .radio,
3866 .navbar-form .checkbox {
3866 .navbar-form .checkbox {
3867 display: inline-block;
3867 display: inline-block;
3868 margin-top: 0;
3868 margin-top: 0;
3869 margin-bottom: 0;
3869 margin-bottom: 0;
3870 padding-left: 0;
3870 padding-left: 0;
3871 vertical-align: middle;
3871 vertical-align: middle;
3872 }
3872 }
3873 .navbar-form .radio input[type="radio"],
3873 .navbar-form .radio input[type="radio"],
3874 .navbar-form .checkbox input[type="checkbox"] {
3874 .navbar-form .checkbox input[type="checkbox"] {
3875 float: none;
3875 float: none;
3876 margin-left: 0;
3876 margin-left: 0;
3877 }
3877 }
3878 .navbar-form .has-feedback .form-control-feedback {
3878 .navbar-form .has-feedback .form-control-feedback {
3879 top: 0;
3879 top: 0;
3880 }
3880 }
3881 }
3881 }
3882 @media (max-width: 539px) {
3882 @media (max-width: 539px) {
3883 .navbar-form .form-group {
3883 .navbar-form .form-group {
3884 margin-bottom: 5px;
3884 margin-bottom: 5px;
3885 }
3885 }
3886 }
3886 }
3887 @media (min-width: 540px) {
3887 @media (min-width: 540px) {
3888 .navbar-form {
3888 .navbar-form {
3889 width: auto;
3889 width: auto;
3890 border: 0;
3890 border: 0;
3891 margin-left: 0;
3891 margin-left: 0;
3892 margin-right: 0;
3892 margin-right: 0;
3893 padding-top: 0;
3893 padding-top: 0;
3894 padding-bottom: 0;
3894 padding-bottom: 0;
3895 -webkit-box-shadow: none;
3895 -webkit-box-shadow: none;
3896 box-shadow: none;
3896 box-shadow: none;
3897 }
3897 }
3898 .navbar-form.navbar-right:last-child {
3898 .navbar-form.navbar-right:last-child {
3899 margin-right: -15px;
3899 margin-right: -15px;
3900 }
3900 }
3901 }
3901 }
3902 .navbar-nav > li > .dropdown-menu {
3902 .navbar-nav > li > .dropdown-menu {
3903 margin-top: 0;
3903 margin-top: 0;
3904 border-top-right-radius: 0;
3904 border-top-right-radius: 0;
3905 border-top-left-radius: 0;
3905 border-top-left-radius: 0;
3906 }
3906 }
3907 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3907 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3908 border-bottom-right-radius: 0;
3908 border-bottom-right-radius: 0;
3909 border-bottom-left-radius: 0;
3909 border-bottom-left-radius: 0;
3910 }
3910 }
3911 .navbar-btn {
3911 .navbar-btn {
3912 margin-top: -1px;
3912 margin-top: -1px;
3913 margin-bottom: -1px;
3913 margin-bottom: -1px;
3914 }
3914 }
3915 .navbar-btn.btn-sm {
3915 .navbar-btn.btn-sm {
3916 margin-top: 0px;
3916 margin-top: 0px;
3917 margin-bottom: 0px;
3917 margin-bottom: 0px;
3918 }
3918 }
3919 .navbar-btn.btn-xs {
3919 .navbar-btn.btn-xs {
3920 margin-top: 4px;
3920 margin-top: 4px;
3921 margin-bottom: 4px;
3921 margin-bottom: 4px;
3922 }
3922 }
3923 .navbar-text {
3923 .navbar-text {
3924 margin-top: 6px;
3924 margin-top: 6px;
3925 margin-bottom: 6px;
3925 margin-bottom: 6px;
3926 }
3926 }
3927 @media (min-width: 540px) {
3927 @media (min-width: 540px) {
3928 .navbar-text {
3928 .navbar-text {
3929 float: left;
3929 float: left;
3930 margin-left: 15px;
3930 margin-left: 15px;
3931 margin-right: 15px;
3931 margin-right: 15px;
3932 }
3932 }
3933 .navbar-text.navbar-right:last-child {
3933 .navbar-text.navbar-right:last-child {
3934 margin-right: 0;
3934 margin-right: 0;
3935 }
3935 }
3936 }
3936 }
3937 .navbar-default {
3937 .navbar-default {
3938 background-color: #f8f8f8;
3938 background-color: #f8f8f8;
3939 border-color: #e7e7e7;
3939 border-color: #e7e7e7;
3940 }
3940 }
3941 .navbar-default .navbar-brand {
3941 .navbar-default .navbar-brand {
3942 color: #777777;
3942 color: #777777;
3943 }
3943 }
3944 .navbar-default .navbar-brand:hover,
3944 .navbar-default .navbar-brand:hover,
3945 .navbar-default .navbar-brand:focus {
3945 .navbar-default .navbar-brand:focus {
3946 color: #5e5e5e;
3946 color: #5e5e5e;
3947 background-color: transparent;
3947 background-color: transparent;
3948 }
3948 }
3949 .navbar-default .navbar-text {
3949 .navbar-default .navbar-text {
3950 color: #777777;
3950 color: #777777;
3951 }
3951 }
3952 .navbar-default .navbar-nav > li > a {
3952 .navbar-default .navbar-nav > li > a {
3953 color: #777777;
3953 color: #777777;
3954 }
3954 }
3955 .navbar-default .navbar-nav > li > a:hover,
3955 .navbar-default .navbar-nav > li > a:hover,
3956 .navbar-default .navbar-nav > li > a:focus {
3956 .navbar-default .navbar-nav > li > a:focus {
3957 color: #333333;
3957 color: #333333;
3958 background-color: transparent;
3958 background-color: transparent;
3959 }
3959 }
3960 .navbar-default .navbar-nav > .active > a,
3960 .navbar-default .navbar-nav > .active > a,
3961 .navbar-default .navbar-nav > .active > a:hover,
3961 .navbar-default .navbar-nav > .active > a:hover,
3962 .navbar-default .navbar-nav > .active > a:focus {
3962 .navbar-default .navbar-nav > .active > a:focus {
3963 color: #555555;
3963 color: #555555;
3964 background-color: #e7e7e7;
3964 background-color: #e7e7e7;
3965 }
3965 }
3966 .navbar-default .navbar-nav > .disabled > a,
3966 .navbar-default .navbar-nav > .disabled > a,
3967 .navbar-default .navbar-nav > .disabled > a:hover,
3967 .navbar-default .navbar-nav > .disabled > a:hover,
3968 .navbar-default .navbar-nav > .disabled > a:focus {
3968 .navbar-default .navbar-nav > .disabled > a:focus {
3969 color: #cccccc;
3969 color: #cccccc;
3970 background-color: transparent;
3970 background-color: transparent;
3971 }
3971 }
3972 .navbar-default .navbar-toggle {
3972 .navbar-default .navbar-toggle {
3973 border-color: #dddddd;
3973 border-color: #dddddd;
3974 }
3974 }
3975 .navbar-default .navbar-toggle:hover,
3975 .navbar-default .navbar-toggle:hover,
3976 .navbar-default .navbar-toggle:focus {
3976 .navbar-default .navbar-toggle:focus {
3977 background-color: #dddddd;
3977 background-color: #dddddd;
3978 }
3978 }
3979 .navbar-default .navbar-toggle .icon-bar {
3979 .navbar-default .navbar-toggle .icon-bar {
3980 background-color: #888888;
3980 background-color: #888888;
3981 }
3981 }
3982 .navbar-default .navbar-collapse,
3982 .navbar-default .navbar-collapse,
3983 .navbar-default .navbar-form {
3983 .navbar-default .navbar-form {
3984 border-color: #e7e7e7;
3984 border-color: #e7e7e7;
3985 }
3985 }
3986 .navbar-default .navbar-nav > .open > a,
3986 .navbar-default .navbar-nav > .open > a,
3987 .navbar-default .navbar-nav > .open > a:hover,
3987 .navbar-default .navbar-nav > .open > a:hover,
3988 .navbar-default .navbar-nav > .open > a:focus {
3988 .navbar-default .navbar-nav > .open > a:focus {
3989 background-color: #e7e7e7;
3989 background-color: #e7e7e7;
3990 color: #555555;
3990 color: #555555;
3991 }
3991 }
3992 @media (max-width: 539px) {
3992 @media (max-width: 539px) {
3993 .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3993 .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3994 color: #777777;
3994 color: #777777;
3995 }
3995 }
3996 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3996 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3997 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3997 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3998 color: #333333;
3998 color: #333333;
3999 background-color: transparent;
3999 background-color: transparent;
4000 }
4000 }
4001 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4001 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4002 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4002 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4003 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4003 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4004 color: #555555;
4004 color: #555555;
4005 background-color: #e7e7e7;
4005 background-color: #e7e7e7;
4006 }
4006 }
4007 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4007 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4008 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4008 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4009 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4009 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4010 color: #cccccc;
4010 color: #cccccc;
4011 background-color: transparent;
4011 background-color: transparent;
4012 }
4012 }
4013 }
4013 }
4014 .navbar-default .navbar-link {
4014 .navbar-default .navbar-link {
4015 color: #777777;
4015 color: #777777;
4016 }
4016 }
4017 .navbar-default .navbar-link:hover {
4017 .navbar-default .navbar-link:hover {
4018 color: #333333;
4018 color: #333333;
4019 }
4019 }
4020 .navbar-inverse {
4020 .navbar-inverse {
4021 background-color: #222222;
4021 background-color: #222222;
4022 border-color: #080808;
4022 border-color: #080808;
4023 }
4023 }
4024 .navbar-inverse .navbar-brand {
4024 .navbar-inverse .navbar-brand {
4025 color: #999999;
4025 color: #999999;
4026 }
4026 }
4027 .navbar-inverse .navbar-brand:hover,
4027 .navbar-inverse .navbar-brand:hover,
4028 .navbar-inverse .navbar-brand:focus {
4028 .navbar-inverse .navbar-brand:focus {
4029 color: #ffffff;
4029 color: #ffffff;
4030 background-color: transparent;
4030 background-color: transparent;
4031 }
4031 }
4032 .navbar-inverse .navbar-text {
4032 .navbar-inverse .navbar-text {
4033 color: #999999;
4033 color: #999999;
4034 }
4034 }
4035 .navbar-inverse .navbar-nav > li > a {
4035 .navbar-inverse .navbar-nav > li > a {
4036 color: #999999;
4036 color: #999999;
4037 }
4037 }
4038 .navbar-inverse .navbar-nav > li > a:hover,
4038 .navbar-inverse .navbar-nav > li > a:hover,
4039 .navbar-inverse .navbar-nav > li > a:focus {
4039 .navbar-inverse .navbar-nav > li > a:focus {
4040 color: #ffffff;
4040 color: #ffffff;
4041 background-color: transparent;
4041 background-color: transparent;
4042 }
4042 }
4043 .navbar-inverse .navbar-nav > .active > a,
4043 .navbar-inverse .navbar-nav > .active > a,
4044 .navbar-inverse .navbar-nav > .active > a:hover,
4044 .navbar-inverse .navbar-nav > .active > a:hover,
4045 .navbar-inverse .navbar-nav > .active > a:focus {
4045 .navbar-inverse .navbar-nav > .active > a:focus {
4046 color: #ffffff;
4046 color: #ffffff;
4047 background-color: #080808;
4047 background-color: #080808;
4048 }
4048 }
4049 .navbar-inverse .navbar-nav > .disabled > a,
4049 .navbar-inverse .navbar-nav > .disabled > a,
4050 .navbar-inverse .navbar-nav > .disabled > a:hover,
4050 .navbar-inverse .navbar-nav > .disabled > a:hover,
4051 .navbar-inverse .navbar-nav > .disabled > a:focus {
4051 .navbar-inverse .navbar-nav > .disabled > a:focus {
4052 color: #444444;
4052 color: #444444;
4053 background-color: transparent;
4053 background-color: transparent;
4054 }
4054 }
4055 .navbar-inverse .navbar-toggle {
4055 .navbar-inverse .navbar-toggle {
4056 border-color: #333333;
4056 border-color: #333333;
4057 }
4057 }
4058 .navbar-inverse .navbar-toggle:hover,
4058 .navbar-inverse .navbar-toggle:hover,
4059 .navbar-inverse .navbar-toggle:focus {
4059 .navbar-inverse .navbar-toggle:focus {
4060 background-color: #333333;
4060 background-color: #333333;
4061 }
4061 }
4062 .navbar-inverse .navbar-toggle .icon-bar {
4062 .navbar-inverse .navbar-toggle .icon-bar {
4063 background-color: #ffffff;
4063 background-color: #ffffff;
4064 }
4064 }
4065 .navbar-inverse .navbar-collapse,
4065 .navbar-inverse .navbar-collapse,
4066 .navbar-inverse .navbar-form {
4066 .navbar-inverse .navbar-form {
4067 border-color: #101010;
4067 border-color: #101010;
4068 }
4068 }
4069 .navbar-inverse .navbar-nav > .open > a,
4069 .navbar-inverse .navbar-nav > .open > a,
4070 .navbar-inverse .navbar-nav > .open > a:hover,
4070 .navbar-inverse .navbar-nav > .open > a:hover,
4071 .navbar-inverse .navbar-nav > .open > a:focus {
4071 .navbar-inverse .navbar-nav > .open > a:focus {
4072 background-color: #080808;
4072 background-color: #080808;
4073 color: #ffffff;
4073 color: #ffffff;
4074 }
4074 }
4075 @media (max-width: 539px) {
4075 @media (max-width: 539px) {
4076 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4076 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4077 border-color: #080808;
4077 border-color: #080808;
4078 }
4078 }
4079 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4079 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4080 background-color: #080808;
4080 background-color: #080808;
4081 }
4081 }
4082 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4082 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4083 color: #999999;
4083 color: #999999;
4084 }
4084 }
4085 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4085 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4086 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4086 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4087 color: #ffffff;
4087 color: #ffffff;
4088 background-color: transparent;
4088 background-color: transparent;
4089 }
4089 }
4090 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4090 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4091 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4091 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4092 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4092 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4093 color: #ffffff;
4093 color: #ffffff;
4094 background-color: #080808;
4094 background-color: #080808;
4095 }
4095 }
4096 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4096 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4097 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4097 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4098 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4098 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4099 color: #444444;
4099 color: #444444;
4100 background-color: transparent;
4100 background-color: transparent;
4101 }
4101 }
4102 }
4102 }
4103 .navbar-inverse .navbar-link {
4103 .navbar-inverse .navbar-link {
4104 color: #999999;
4104 color: #999999;
4105 }
4105 }
4106 .navbar-inverse .navbar-link:hover {
4106 .navbar-inverse .navbar-link:hover {
4107 color: #ffffff;
4107 color: #ffffff;
4108 }
4108 }
4109 .breadcrumb {
4109 .breadcrumb {
4110 padding: 8px 15px;
4110 padding: 8px 15px;
4111 margin-bottom: 18px;
4111 margin-bottom: 18px;
4112 list-style: none;
4112 list-style: none;
4113 background-color: #f5f5f5;
4113 background-color: #f5f5f5;
4114 border-radius: 4px;
4114 border-radius: 4px;
4115 }
4115 }
4116 .breadcrumb > li {
4116 .breadcrumb > li {
4117 display: inline-block;
4117 display: inline-block;
4118 }
4118 }
4119 .breadcrumb > li + li:before {
4119 .breadcrumb > li + li:before {
4120 content: "/\00a0";
4120 content: "/\00a0";
4121 padding: 0 5px;
4121 padding: 0 5px;
4122 color: #5e5e5e;
4122 color: #5e5e5e;
4123 }
4123 }
4124 .breadcrumb > .active {
4124 .breadcrumb > .active {
4125 color: #999999;
4125 color: #999999;
4126 }
4126 }
4127 .pagination {
4127 .pagination {
4128 display: inline-block;
4128 display: inline-block;
4129 padding-left: 0;
4129 padding-left: 0;
4130 margin: 18px 0;
4130 margin: 18px 0;
4131 border-radius: 4px;
4131 border-radius: 4px;
4132 }
4132 }
4133 .pagination > li {
4133 .pagination > li {
4134 display: inline;
4134 display: inline;
4135 }
4135 }
4136 .pagination > li > a,
4136 .pagination > li > a,
4137 .pagination > li > span {
4137 .pagination > li > span {
4138 position: relative;
4138 position: relative;
4139 float: left;
4139 float: left;
4140 padding: 6px 12px;
4140 padding: 6px 12px;
4141 line-height: 1.42857143;
4141 line-height: 1.42857143;
4142 text-decoration: none;
4142 text-decoration: none;
4143 color: #428bca;
4143 color: #428bca;
4144 background-color: #ffffff;
4144 background-color: #ffffff;
4145 border: 1px solid #dddddd;
4145 border: 1px solid #dddddd;
4146 margin-left: -1px;
4146 margin-left: -1px;
4147 }
4147 }
4148 .pagination > li:first-child > a,
4148 .pagination > li:first-child > a,
4149 .pagination > li:first-child > span {
4149 .pagination > li:first-child > span {
4150 margin-left: 0;
4150 margin-left: 0;
4151 border-bottom-left-radius: 4px;
4151 border-bottom-left-radius: 4px;
4152 border-top-left-radius: 4px;
4152 border-top-left-radius: 4px;
4153 }
4153 }
4154 .pagination > li:last-child > a,
4154 .pagination > li:last-child > a,
4155 .pagination > li:last-child > span {
4155 .pagination > li:last-child > span {
4156 border-bottom-right-radius: 4px;
4156 border-bottom-right-radius: 4px;
4157 border-top-right-radius: 4px;
4157 border-top-right-radius: 4px;
4158 }
4158 }
4159 .pagination > li > a:hover,
4159 .pagination > li > a:hover,
4160 .pagination > li > span:hover,
4160 .pagination > li > span:hover,
4161 .pagination > li > a:focus,
4161 .pagination > li > a:focus,
4162 .pagination > li > span:focus {
4162 .pagination > li > span:focus {
4163 color: #2a6496;
4163 color: #2a6496;
4164 background-color: #eeeeee;
4164 background-color: #eeeeee;
4165 border-color: #dddddd;
4165 border-color: #dddddd;
4166 }
4166 }
4167 .pagination > .active > a,
4167 .pagination > .active > a,
4168 .pagination > .active > span,
4168 .pagination > .active > span,
4169 .pagination > .active > a:hover,
4169 .pagination > .active > a:hover,
4170 .pagination > .active > span:hover,
4170 .pagination > .active > span:hover,
4171 .pagination > .active > a:focus,
4171 .pagination > .active > a:focus,
4172 .pagination > .active > span:focus {
4172 .pagination > .active > span:focus {
4173 z-index: 2;
4173 z-index: 2;
4174 color: #ffffff;
4174 color: #ffffff;
4175 background-color: #428bca;
4175 background-color: #428bca;
4176 border-color: #428bca;
4176 border-color: #428bca;
4177 cursor: default;
4177 cursor: default;
4178 }
4178 }
4179 .pagination > .disabled > span,
4179 .pagination > .disabled > span,
4180 .pagination > .disabled > span:hover,
4180 .pagination > .disabled > span:hover,
4181 .pagination > .disabled > span:focus,
4181 .pagination > .disabled > span:focus,
4182 .pagination > .disabled > a,
4182 .pagination > .disabled > a,
4183 .pagination > .disabled > a:hover,
4183 .pagination > .disabled > a:hover,
4184 .pagination > .disabled > a:focus {
4184 .pagination > .disabled > a:focus {
4185 color: #999999;
4185 color: #999999;
4186 background-color: #ffffff;
4186 background-color: #ffffff;
4187 border-color: #dddddd;
4187 border-color: #dddddd;
4188 cursor: not-allowed;
4188 cursor: not-allowed;
4189 }
4189 }
4190 .pagination-lg > li > a,
4190 .pagination-lg > li > a,
4191 .pagination-lg > li > span {
4191 .pagination-lg > li > span {
4192 padding: 10px 16px;
4192 padding: 10px 16px;
4193 font-size: 17px;
4193 font-size: 17px;
4194 }
4194 }
4195 .pagination-lg > li:first-child > a,
4195 .pagination-lg > li:first-child > a,
4196 .pagination-lg > li:first-child > span {
4196 .pagination-lg > li:first-child > span {
4197 border-bottom-left-radius: 6px;
4197 border-bottom-left-radius: 6px;
4198 border-top-left-radius: 6px;
4198 border-top-left-radius: 6px;
4199 }
4199 }
4200 .pagination-lg > li:last-child > a,
4200 .pagination-lg > li:last-child > a,
4201 .pagination-lg > li:last-child > span {
4201 .pagination-lg > li:last-child > span {
4202 border-bottom-right-radius: 6px;
4202 border-bottom-right-radius: 6px;
4203 border-top-right-radius: 6px;
4203 border-top-right-radius: 6px;
4204 }
4204 }
4205 .pagination-sm > li > a,
4205 .pagination-sm > li > a,
4206 .pagination-sm > li > span {
4206 .pagination-sm > li > span {
4207 padding: 5px 10px;
4207 padding: 5px 10px;
4208 font-size: 12px;
4208 font-size: 12px;
4209 }
4209 }
4210 .pagination-sm > li:first-child > a,
4210 .pagination-sm > li:first-child > a,
4211 .pagination-sm > li:first-child > span {
4211 .pagination-sm > li:first-child > span {
4212 border-bottom-left-radius: 3px;
4212 border-bottom-left-radius: 3px;
4213 border-top-left-radius: 3px;
4213 border-top-left-radius: 3px;
4214 }
4214 }
4215 .pagination-sm > li:last-child > a,
4215 .pagination-sm > li:last-child > a,
4216 .pagination-sm > li:last-child > span {
4216 .pagination-sm > li:last-child > span {
4217 border-bottom-right-radius: 3px;
4217 border-bottom-right-radius: 3px;
4218 border-top-right-radius: 3px;
4218 border-top-right-radius: 3px;
4219 }
4219 }
4220 .pager {
4220 .pager {
4221 padding-left: 0;
4221 padding-left: 0;
4222 margin: 18px 0;
4222 margin: 18px 0;
4223 list-style: none;
4223 list-style: none;
4224 text-align: center;
4224 text-align: center;
4225 }
4225 }
4226 .pager li {
4226 .pager li {
4227 display: inline;
4227 display: inline;
4228 }
4228 }
4229 .pager li > a,
4229 .pager li > a,
4230 .pager li > span {
4230 .pager li > span {
4231 display: inline-block;
4231 display: inline-block;
4232 padding: 5px 14px;
4232 padding: 5px 14px;
4233 background-color: #ffffff;
4233 background-color: #ffffff;
4234 border: 1px solid #dddddd;
4234 border: 1px solid #dddddd;
4235 border-radius: 15px;
4235 border-radius: 15px;
4236 }
4236 }
4237 .pager li > a:hover,
4237 .pager li > a:hover,
4238 .pager li > a:focus {
4238 .pager li > a:focus {
4239 text-decoration: none;
4239 text-decoration: none;
4240 background-color: #eeeeee;
4240 background-color: #eeeeee;
4241 }
4241 }
4242 .pager .next > a,
4242 .pager .next > a,
4243 .pager .next > span {
4243 .pager .next > span {
4244 float: right;
4244 float: right;
4245 }
4245 }
4246 .pager .previous > a,
4246 .pager .previous > a,
4247 .pager .previous > span {
4247 .pager .previous > span {
4248 float: left;
4248 float: left;
4249 }
4249 }
4250 .pager .disabled > a,
4250 .pager .disabled > a,
4251 .pager .disabled > a:hover,
4251 .pager .disabled > a:hover,
4252 .pager .disabled > a:focus,
4252 .pager .disabled > a:focus,
4253 .pager .disabled > span {
4253 .pager .disabled > span {
4254 color: #999999;
4254 color: #999999;
4255 background-color: #ffffff;
4255 background-color: #ffffff;
4256 cursor: not-allowed;
4256 cursor: not-allowed;
4257 }
4257 }
4258 .label {
4258 .label {
4259 display: inline;
4259 display: inline;
4260 padding: .2em .6em .3em;
4260 padding: .2em .6em .3em;
4261 font-size: 75%;
4261 font-size: 75%;
4262 font-weight: bold;
4262 font-weight: bold;
4263 line-height: 1;
4263 line-height: 1;
4264 color: #ffffff;
4264 color: #ffffff;
4265 text-align: center;
4265 text-align: center;
4266 white-space: nowrap;
4266 white-space: nowrap;
4267 vertical-align: baseline;
4267 vertical-align: baseline;
4268 border-radius: .25em;
4268 border-radius: .25em;
4269 }
4269 }
4270 .label[href]:hover,
4270 .label[href]:hover,
4271 .label[href]:focus {
4271 .label[href]:focus {
4272 color: #ffffff;
4272 color: #ffffff;
4273 text-decoration: none;
4273 text-decoration: none;
4274 cursor: pointer;
4274 cursor: pointer;
4275 }
4275 }
4276 .label:empty {
4276 .label:empty {
4277 display: none;
4277 display: none;
4278 }
4278 }
4279 .btn .label {
4279 .btn .label {
4280 position: relative;
4280 position: relative;
4281 top: -1px;
4281 top: -1px;
4282 }
4282 }
4283 .label-default {
4283 .label-default {
4284 background-color: #999999;
4284 background-color: #999999;
4285 }
4285 }
4286 .label-default[href]:hover,
4286 .label-default[href]:hover,
4287 .label-default[href]:focus {
4287 .label-default[href]:focus {
4288 background-color: #808080;
4288 background-color: #808080;
4289 }
4289 }
4290 .label-primary {
4290 .label-primary {
4291 background-color: #428bca;
4291 background-color: #428bca;
4292 }
4292 }
4293 .label-primary[href]:hover,
4293 .label-primary[href]:hover,
4294 .label-primary[href]:focus {
4294 .label-primary[href]:focus {
4295 background-color: #3071a9;
4295 background-color: #3071a9;
4296 }
4296 }
4297 .label-success {
4297 .label-success {
4298 background-color: #5cb85c;
4298 background-color: #5cb85c;
4299 }
4299 }
4300 .label-success[href]:hover,
4300 .label-success[href]:hover,
4301 .label-success[href]:focus {
4301 .label-success[href]:focus {
4302 background-color: #449d44;
4302 background-color: #449d44;
4303 }
4303 }
4304 .label-info {
4304 .label-info {
4305 background-color: #5bc0de;
4305 background-color: #5bc0de;
4306 }
4306 }
4307 .label-info[href]:hover,
4307 .label-info[href]:hover,
4308 .label-info[href]:focus {
4308 .label-info[href]:focus {
4309 background-color: #31b0d5;
4309 background-color: #31b0d5;
4310 }
4310 }
4311 .label-warning {
4311 .label-warning {
4312 background-color: #f0ad4e;
4312 background-color: #f0ad4e;
4313 }
4313 }
4314 .label-warning[href]:hover,
4314 .label-warning[href]:hover,
4315 .label-warning[href]:focus {
4315 .label-warning[href]:focus {
4316 background-color: #ec971f;
4316 background-color: #ec971f;
4317 }
4317 }
4318 .label-danger {
4318 .label-danger {
4319 background-color: #d9534f;
4319 background-color: #d9534f;
4320 }
4320 }
4321 .label-danger[href]:hover,
4321 .label-danger[href]:hover,
4322 .label-danger[href]:focus {
4322 .label-danger[href]:focus {
4323 background-color: #c9302c;
4323 background-color: #c9302c;
4324 }
4324 }
4325 .badge {
4325 .badge {
4326 display: inline-block;
4326 display: inline-block;
4327 min-width: 10px;
4327 min-width: 10px;
4328 padding: 3px 7px;
4328 padding: 3px 7px;
4329 font-size: 12px;
4329 font-size: 12px;
4330 font-weight: bold;
4330 font-weight: bold;
4331 color: #ffffff;
4331 color: #ffffff;
4332 line-height: 1;
4332 line-height: 1;
4333 vertical-align: baseline;
4333 vertical-align: baseline;
4334 white-space: nowrap;
4334 white-space: nowrap;
4335 text-align: center;
4335 text-align: center;
4336 background-color: #999999;
4336 background-color: #999999;
4337 border-radius: 10px;
4337 border-radius: 10px;
4338 }
4338 }
4339 .badge:empty {
4339 .badge:empty {
4340 display: none;
4340 display: none;
4341 }
4341 }
4342 .btn .badge {
4342 .btn .badge {
4343 position: relative;
4343 position: relative;
4344 top: -1px;
4344 top: -1px;
4345 }
4345 }
4346 .btn-xs .badge {
4346 .btn-xs .badge {
4347 top: 0;
4347 top: 0;
4348 padding: 1px 5px;
4348 padding: 1px 5px;
4349 }
4349 }
4350 a.badge:hover,
4350 a.badge:hover,
4351 a.badge:focus {
4351 a.badge:focus {
4352 color: #ffffff;
4352 color: #ffffff;
4353 text-decoration: none;
4353 text-decoration: none;
4354 cursor: pointer;
4354 cursor: pointer;
4355 }
4355 }
4356 a.list-group-item.active > .badge,
4356 a.list-group-item.active > .badge,
4357 .nav-pills > .active > a > .badge {
4357 .nav-pills > .active > a > .badge {
4358 color: #428bca;
4358 color: #428bca;
4359 background-color: #ffffff;
4359 background-color: #ffffff;
4360 }
4360 }
4361 .nav-pills > li > a > .badge {
4361 .nav-pills > li > a > .badge {
4362 margin-left: 3px;
4362 margin-left: 3px;
4363 }
4363 }
4364 .jumbotron {
4364 .jumbotron {
4365 padding: 30px;
4365 padding: 30px;
4366 margin-bottom: 30px;
4366 margin-bottom: 30px;
4367 color: inherit;
4367 color: inherit;
4368 background-color: #eeeeee;
4368 background-color: #eeeeee;
4369 }
4369 }
4370 .jumbotron h1,
4370 .jumbotron h1,
4371 .jumbotron .h1 {
4371 .jumbotron .h1 {
4372 color: inherit;
4372 color: inherit;
4373 }
4373 }
4374 .jumbotron p {
4374 .jumbotron p {
4375 margin-bottom: 15px;
4375 margin-bottom: 15px;
4376 font-size: 20px;
4376 font-size: 20px;
4377 font-weight: 200;
4377 font-weight: 200;
4378 }
4378 }
4379 .container .jumbotron {
4379 .container .jumbotron {
4380 border-radius: 6px;
4380 border-radius: 6px;
4381 }
4381 }
4382 .jumbotron .container {
4382 .jumbotron .container {
4383 max-width: 100%;
4383 max-width: 100%;
4384 }
4384 }
4385 @media screen and (min-width: 768px) {
4385 @media screen and (min-width: 768px) {
4386 .jumbotron {
4386 .jumbotron {
4387 padding-top: 48px;
4387 padding-top: 48px;
4388 padding-bottom: 48px;
4388 padding-bottom: 48px;
4389 }
4389 }
4390 .container .jumbotron {
4390 .container .jumbotron {
4391 padding-left: 60px;
4391 padding-left: 60px;
4392 padding-right: 60px;
4392 padding-right: 60px;
4393 }
4393 }
4394 .jumbotron h1,
4394 .jumbotron h1,
4395 .jumbotron .h1 {
4395 .jumbotron .h1 {
4396 font-size: 58.5px;
4396 font-size: 58.5px;
4397 }
4397 }
4398 }
4398 }
4399 .thumbnail {
4399 .thumbnail {
4400 display: block;
4400 display: block;
4401 padding: 4px;
4401 padding: 4px;
4402 margin-bottom: 18px;
4402 margin-bottom: 18px;
4403 line-height: 1.42857143;
4403 line-height: 1.42857143;
4404 background-color: #ffffff;
4404 background-color: #ffffff;
4405 border: 1px solid #dddddd;
4405 border: 1px solid #dddddd;
4406 border-radius: 4px;
4406 border-radius: 4px;
4407 -webkit-transition: all 0.2s ease-in-out;
4407 -webkit-transition: all 0.2s ease-in-out;
4408 transition: all 0.2s ease-in-out;
4408 transition: all 0.2s ease-in-out;
4409 }
4409 }
4410 .thumbnail > img,
4410 .thumbnail > img,
4411 .thumbnail a > img {
4411 .thumbnail a > img {
4412 margin-left: auto;
4412 margin-left: auto;
4413 margin-right: auto;
4413 margin-right: auto;
4414 }
4414 }
4415 a.thumbnail:hover,
4415 a.thumbnail:hover,
4416 a.thumbnail:focus,
4416 a.thumbnail:focus,
4417 a.thumbnail.active {
4417 a.thumbnail.active {
4418 border-color: #428bca;
4418 border-color: #428bca;
4419 }
4419 }
4420 .thumbnail .caption {
4420 .thumbnail .caption {
4421 padding: 9px;
4421 padding: 9px;
4422 color: #000000;
4422 color: #000000;
4423 }
4423 }
4424 .alert {
4424 .alert {
4425 padding: 15px;
4425 padding: 15px;
4426 margin-bottom: 18px;
4426 margin-bottom: 18px;
4427 border: 1px solid transparent;
4427 border: 1px solid transparent;
4428 border-radius: 4px;
4428 border-radius: 4px;
4429 }
4429 }
4430 .alert h4 {
4430 .alert h4 {
4431 margin-top: 0;
4431 margin-top: 0;
4432 color: inherit;
4432 color: inherit;
4433 }
4433 }
4434 .alert .alert-link {
4434 .alert .alert-link {
4435 font-weight: bold;
4435 font-weight: bold;
4436 }
4436 }
4437 .alert > p,
4437 .alert > p,
4438 .alert > ul {
4438 .alert > ul {
4439 margin-bottom: 0;
4439 margin-bottom: 0;
4440 }
4440 }
4441 .alert > p + p {
4441 .alert > p + p {
4442 margin-top: 5px;
4442 margin-top: 5px;
4443 }
4443 }
4444 .alert-dismissable {
4444 .alert-dismissable {
4445 padding-right: 35px;
4445 padding-right: 35px;
4446 }
4446 }
4447 .alert-dismissable .close {
4447 .alert-dismissable .close {
4448 position: relative;
4448 position: relative;
4449 top: -2px;
4449 top: -2px;
4450 right: -21px;
4450 right: -21px;
4451 color: inherit;
4451 color: inherit;
4452 }
4452 }
4453 .alert-success {
4453 .alert-success {
4454 background-color: #dff0d8;
4454 background-color: #dff0d8;
4455 border-color: #d6e9c6;
4455 border-color: #d6e9c6;
4456 color: #3c763d;
4456 color: #3c763d;
4457 }
4457 }
4458 .alert-success hr {
4458 .alert-success hr {
4459 border-top-color: #c9e2b3;
4459 border-top-color: #c9e2b3;
4460 }
4460 }
4461 .alert-success .alert-link {
4461 .alert-success .alert-link {
4462 color: #2b542c;
4462 color: #2b542c;
4463 }
4463 }
4464 .alert-info {
4464 .alert-info {
4465 background-color: #d9edf7;
4465 background-color: #d9edf7;
4466 border-color: #bce8f1;
4466 border-color: #bce8f1;
4467 color: #31708f;
4467 color: #31708f;
4468 }
4468 }
4469 .alert-info hr {
4469 .alert-info hr {
4470 border-top-color: #a6e1ec;
4470 border-top-color: #a6e1ec;
4471 }
4471 }
4472 .alert-info .alert-link {
4472 .alert-info .alert-link {
4473 color: #245269;
4473 color: #245269;
4474 }
4474 }
4475 .alert-warning {
4475 .alert-warning {
4476 background-color: #fcf8e3;
4476 background-color: #fcf8e3;
4477 border-color: #faebcc;
4477 border-color: #faebcc;
4478 color: #8a6d3b;
4478 color: #8a6d3b;
4479 }
4479 }
4480 .alert-warning hr {
4480 .alert-warning hr {
4481 border-top-color: #f7e1b5;
4481 border-top-color: #f7e1b5;
4482 }
4482 }
4483 .alert-warning .alert-link {
4483 .alert-warning .alert-link {
4484 color: #66512c;
4484 color: #66512c;
4485 }
4485 }
4486 .alert-danger {
4486 .alert-danger {
4487 background-color: #f2dede;
4487 background-color: #f2dede;
4488 border-color: #ebccd1;
4488 border-color: #ebccd1;
4489 color: #a94442;
4489 color: #a94442;
4490 }
4490 }
4491 .alert-danger hr {
4491 .alert-danger hr {
4492 border-top-color: #e4b9c0;
4492 border-top-color: #e4b9c0;
4493 }
4493 }
4494 .alert-danger .alert-link {
4494 .alert-danger .alert-link {
4495 color: #843534;
4495 color: #843534;
4496 }
4496 }
4497 @-webkit-keyframes progress-bar-stripes {
4497 @-webkit-keyframes progress-bar-stripes {
4498 from {
4498 from {
4499 background-position: 40px 0;
4499 background-position: 40px 0;
4500 }
4500 }
4501 to {
4501 to {
4502 background-position: 0 0;
4502 background-position: 0 0;
4503 }
4503 }
4504 }
4504 }
4505 @keyframes progress-bar-stripes {
4505 @keyframes progress-bar-stripes {
4506 from {
4506 from {
4507 background-position: 40px 0;
4507 background-position: 40px 0;
4508 }
4508 }
4509 to {
4509 to {
4510 background-position: 0 0;
4510 background-position: 0 0;
4511 }
4511 }
4512 }
4512 }
4513 .progress {
4513 .progress {
4514 overflow: hidden;
4514 overflow: hidden;
4515 height: 18px;
4515 height: 18px;
4516 margin-bottom: 18px;
4516 margin-bottom: 18px;
4517 background-color: #f5f5f5;
4517 background-color: #f5f5f5;
4518 border-radius: 4px;
4518 border-radius: 4px;
4519 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4519 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4520 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4520 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4521 }
4521 }
4522 .progress-bar {
4522 .progress-bar {
4523 float: left;
4523 float: left;
4524 width: 0%;
4524 width: 0%;
4525 height: 100%;
4525 height: 100%;
4526 font-size: 12px;
4526 font-size: 12px;
4527 line-height: 18px;
4527 line-height: 18px;
4528 color: #ffffff;
4528 color: #ffffff;
4529 text-align: center;
4529 text-align: center;
4530 background-color: #428bca;
4530 background-color: #428bca;
4531 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4531 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4532 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4532 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4533 -webkit-transition: width 0.6s ease;
4533 -webkit-transition: width 0.6s ease;
4534 transition: width 0.6s ease;
4534 transition: width 0.6s ease;
4535 }
4535 }
4536 .progress-striped .progress-bar {
4536 .progress-striped .progress-bar {
4537 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4537 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4538 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4538 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4539 background-size: 40px 40px;
4539 background-size: 40px 40px;
4540 }
4540 }
4541 .progress.active .progress-bar {
4541 .progress.active .progress-bar {
4542 -webkit-animation: progress-bar-stripes 2s linear infinite;
4542 -webkit-animation: progress-bar-stripes 2s linear infinite;
4543 animation: progress-bar-stripes 2s linear infinite;
4543 animation: progress-bar-stripes 2s linear infinite;
4544 }
4544 }
4545 .progress-bar-success {
4545 .progress-bar-success {
4546 background-color: #5cb85c;
4546 background-color: #5cb85c;
4547 }
4547 }
4548 .progress-striped .progress-bar-success {
4548 .progress-striped .progress-bar-success {
4549 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4549 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4550 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4550 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4551 }
4551 }
4552 .progress-bar-info {
4552 .progress-bar-info {
4553 background-color: #5bc0de;
4553 background-color: #5bc0de;
4554 }
4554 }
4555 .progress-striped .progress-bar-info {
4555 .progress-striped .progress-bar-info {
4556 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4556 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4557 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4557 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4558 }
4558 }
4559 .progress-bar-warning {
4559 .progress-bar-warning {
4560 background-color: #f0ad4e;
4560 background-color: #f0ad4e;
4561 }
4561 }
4562 .progress-striped .progress-bar-warning {
4562 .progress-striped .progress-bar-warning {
4563 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4563 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4564 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4564 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4565 }
4565 }
4566 .progress-bar-danger {
4566 .progress-bar-danger {
4567 background-color: #d9534f;
4567 background-color: #d9534f;
4568 }
4568 }
4569 .progress-striped .progress-bar-danger {
4569 .progress-striped .progress-bar-danger {
4570 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4570 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4571 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4571 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4572 }
4572 }
4573 .media,
4573 .media,
4574 .media-body {
4574 .media-body {
4575 overflow: hidden;
4575 overflow: hidden;
4576 zoom: 1;
4576 zoom: 1;
4577 }
4577 }
4578 .media,
4578 .media,
4579 .media .media {
4579 .media .media {
4580 margin-top: 15px;
4580 margin-top: 15px;
4581 }
4581 }
4582 .media:first-child {
4582 .media:first-child {
4583 margin-top: 0;
4583 margin-top: 0;
4584 }
4584 }
4585 .media-object {
4585 .media-object {
4586 display: block;
4586 display: block;
4587 }
4587 }
4588 .media-heading {
4588 .media-heading {
4589 margin: 0 0 5px;
4589 margin: 0 0 5px;
4590 }
4590 }
4591 .media > .pull-left {
4591 .media > .pull-left {
4592 margin-right: 10px;
4592 margin-right: 10px;
4593 }
4593 }
4594 .media > .pull-right {
4594 .media > .pull-right {
4595 margin-left: 10px;
4595 margin-left: 10px;
4596 }
4596 }
4597 .media-list {
4597 .media-list {
4598 padding-left: 0;
4598 padding-left: 0;
4599 list-style: none;
4599 list-style: none;
4600 }
4600 }
4601 .list-group {
4601 .list-group {
4602 margin-bottom: 20px;
4602 margin-bottom: 20px;
4603 padding-left: 0;
4603 padding-left: 0;
4604 }
4604 }
4605 .list-group-item {
4605 .list-group-item {
4606 position: relative;
4606 position: relative;
4607 display: block;
4607 display: block;
4608 padding: 10px 15px;
4608 padding: 10px 15px;
4609 margin-bottom: -1px;
4609 margin-bottom: -1px;
4610 background-color: #ffffff;
4610 background-color: #ffffff;
4611 border: 1px solid #dddddd;
4611 border: 1px solid #dddddd;
4612 }
4612 }
4613 .list-group-item:first-child {
4613 .list-group-item:first-child {
4614 border-top-right-radius: 4px;
4614 border-top-right-radius: 4px;
4615 border-top-left-radius: 4px;
4615 border-top-left-radius: 4px;
4616 }
4616 }
4617 .list-group-item:last-child {
4617 .list-group-item:last-child {
4618 margin-bottom: 0;
4618 margin-bottom: 0;
4619 border-bottom-right-radius: 4px;
4619 border-bottom-right-radius: 4px;
4620 border-bottom-left-radius: 4px;
4620 border-bottom-left-radius: 4px;
4621 }
4621 }
4622 .list-group-item > .badge {
4622 .list-group-item > .badge {
4623 float: right;
4623 float: right;
4624 }
4624 }
4625 .list-group-item > .badge + .badge {
4625 .list-group-item > .badge + .badge {
4626 margin-right: 5px;
4626 margin-right: 5px;
4627 }
4627 }
4628 a.list-group-item {
4628 a.list-group-item {
4629 color: #555555;
4629 color: #555555;
4630 }
4630 }
4631 a.list-group-item .list-group-item-heading {
4631 a.list-group-item .list-group-item-heading {
4632 color: #333333;
4632 color: #333333;
4633 }
4633 }
4634 a.list-group-item:hover,
4634 a.list-group-item:hover,
4635 a.list-group-item:focus {
4635 a.list-group-item:focus {
4636 text-decoration: none;
4636 text-decoration: none;
4637 background-color: #f5f5f5;
4637 background-color: #f5f5f5;
4638 }
4638 }
4639 a.list-group-item.active,
4639 a.list-group-item.active,
4640 a.list-group-item.active:hover,
4640 a.list-group-item.active:hover,
4641 a.list-group-item.active:focus {
4641 a.list-group-item.active:focus {
4642 z-index: 2;
4642 z-index: 2;
4643 color: #ffffff;
4643 color: #ffffff;
4644 background-color: #428bca;
4644 background-color: #428bca;
4645 border-color: #428bca;
4645 border-color: #428bca;
4646 }
4646 }
4647 a.list-group-item.active .list-group-item-heading,
4647 a.list-group-item.active .list-group-item-heading,
4648 a.list-group-item.active:hover .list-group-item-heading,
4648 a.list-group-item.active:hover .list-group-item-heading,
4649 a.list-group-item.active:focus .list-group-item-heading {
4649 a.list-group-item.active:focus .list-group-item-heading {
4650 color: inherit;
4650 color: inherit;
4651 }
4651 }
4652 a.list-group-item.active .list-group-item-text,
4652 a.list-group-item.active .list-group-item-text,
4653 a.list-group-item.active:hover .list-group-item-text,
4653 a.list-group-item.active:hover .list-group-item-text,
4654 a.list-group-item.active:focus .list-group-item-text {
4654 a.list-group-item.active:focus .list-group-item-text {
4655 color: #e1edf7;
4655 color: #e1edf7;
4656 }
4656 }
4657 .list-group-item-success {
4657 .list-group-item-success {
4658 color: #3c763d;
4658 color: #3c763d;
4659 background-color: #dff0d8;
4659 background-color: #dff0d8;
4660 }
4660 }
4661 a.list-group-item-success {
4661 a.list-group-item-success {
4662 color: #3c763d;
4662 color: #3c763d;
4663 }
4663 }
4664 a.list-group-item-success .list-group-item-heading {
4664 a.list-group-item-success .list-group-item-heading {
4665 color: inherit;
4665 color: inherit;
4666 }
4666 }
4667 a.list-group-item-success:hover,
4667 a.list-group-item-success:hover,
4668 a.list-group-item-success:focus {
4668 a.list-group-item-success:focus {
4669 color: #3c763d;
4669 color: #3c763d;
4670 background-color: #d0e9c6;
4670 background-color: #d0e9c6;
4671 }
4671 }
4672 a.list-group-item-success.active,
4672 a.list-group-item-success.active,
4673 a.list-group-item-success.active:hover,
4673 a.list-group-item-success.active:hover,
4674 a.list-group-item-success.active:focus {
4674 a.list-group-item-success.active:focus {
4675 color: #fff;
4675 color: #fff;
4676 background-color: #3c763d;
4676 background-color: #3c763d;
4677 border-color: #3c763d;
4677 border-color: #3c763d;
4678 }
4678 }
4679 .list-group-item-info {
4679 .list-group-item-info {
4680 color: #31708f;
4680 color: #31708f;
4681 background-color: #d9edf7;
4681 background-color: #d9edf7;
4682 }
4682 }
4683 a.list-group-item-info {
4683 a.list-group-item-info {
4684 color: #31708f;
4684 color: #31708f;
4685 }
4685 }
4686 a.list-group-item-info .list-group-item-heading {
4686 a.list-group-item-info .list-group-item-heading {
4687 color: inherit;
4687 color: inherit;
4688 }
4688 }
4689 a.list-group-item-info:hover,
4689 a.list-group-item-info:hover,
4690 a.list-group-item-info:focus {
4690 a.list-group-item-info:focus {
4691 color: #31708f;
4691 color: #31708f;
4692 background-color: #c4e3f3;
4692 background-color: #c4e3f3;
4693 }
4693 }
4694 a.list-group-item-info.active,
4694 a.list-group-item-info.active,
4695 a.list-group-item-info.active:hover,
4695 a.list-group-item-info.active:hover,
4696 a.list-group-item-info.active:focus {
4696 a.list-group-item-info.active:focus {
4697 color: #fff;
4697 color: #fff;
4698 background-color: #31708f;
4698 background-color: #31708f;
4699 border-color: #31708f;
4699 border-color: #31708f;
4700 }
4700 }
4701 .list-group-item-warning {
4701 .list-group-item-warning {
4702 color: #8a6d3b;
4702 color: #8a6d3b;
4703 background-color: #fcf8e3;
4703 background-color: #fcf8e3;
4704 }
4704 }
4705 a.list-group-item-warning {
4705 a.list-group-item-warning {
4706 color: #8a6d3b;
4706 color: #8a6d3b;
4707 }
4707 }
4708 a.list-group-item-warning .list-group-item-heading {
4708 a.list-group-item-warning .list-group-item-heading {
4709 color: inherit;
4709 color: inherit;
4710 }
4710 }
4711 a.list-group-item-warning:hover,
4711 a.list-group-item-warning:hover,
4712 a.list-group-item-warning:focus {
4712 a.list-group-item-warning:focus {
4713 color: #8a6d3b;
4713 color: #8a6d3b;
4714 background-color: #faf2cc;
4714 background-color: #faf2cc;
4715 }
4715 }
4716 a.list-group-item-warning.active,
4716 a.list-group-item-warning.active,
4717 a.list-group-item-warning.active:hover,
4717 a.list-group-item-warning.active:hover,
4718 a.list-group-item-warning.active:focus {
4718 a.list-group-item-warning.active:focus {
4719 color: #fff;
4719 color: #fff;
4720 background-color: #8a6d3b;
4720 background-color: #8a6d3b;
4721 border-color: #8a6d3b;
4721 border-color: #8a6d3b;
4722 }
4722 }
4723 .list-group-item-danger {
4723 .list-group-item-danger {
4724 color: #a94442;
4724 color: #a94442;
4725 background-color: #f2dede;
4725 background-color: #f2dede;
4726 }
4726 }
4727 a.list-group-item-danger {
4727 a.list-group-item-danger {
4728 color: #a94442;
4728 color: #a94442;
4729 }
4729 }
4730 a.list-group-item-danger .list-group-item-heading {
4730 a.list-group-item-danger .list-group-item-heading {
4731 color: inherit;
4731 color: inherit;
4732 }
4732 }
4733 a.list-group-item-danger:hover,
4733 a.list-group-item-danger:hover,
4734 a.list-group-item-danger:focus {
4734 a.list-group-item-danger:focus {
4735 color: #a94442;
4735 color: #a94442;
4736 background-color: #ebcccc;
4736 background-color: #ebcccc;
4737 }
4737 }
4738 a.list-group-item-danger.active,
4738 a.list-group-item-danger.active,
4739 a.list-group-item-danger.active:hover,
4739 a.list-group-item-danger.active:hover,
4740 a.list-group-item-danger.active:focus {
4740 a.list-group-item-danger.active:focus {
4741 color: #fff;
4741 color: #fff;
4742 background-color: #a94442;
4742 background-color: #a94442;
4743 border-color: #a94442;
4743 border-color: #a94442;
4744 }
4744 }
4745 .list-group-item-heading {
4745 .list-group-item-heading {
4746 margin-top: 0;
4746 margin-top: 0;
4747 margin-bottom: 5px;
4747 margin-bottom: 5px;
4748 }
4748 }
4749 .list-group-item-text {
4749 .list-group-item-text {
4750 margin-bottom: 0;
4750 margin-bottom: 0;
4751 line-height: 1.3;
4751 line-height: 1.3;
4752 }
4752 }
4753 .panel {
4753 .panel {
4754 margin-bottom: 18px;
4754 margin-bottom: 18px;
4755 background-color: #ffffff;
4755 background-color: #ffffff;
4756 border: 1px solid transparent;
4756 border: 1px solid transparent;
4757 border-radius: 4px;
4757 border-radius: 4px;
4758 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4758 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4759 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4759 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4760 }
4760 }
4761 .panel-body {
4761 .panel-body {
4762 padding: 15px;
4762 padding: 15px;
4763 }
4763 }
4764 .panel-heading {
4764 .panel-heading {
4765 padding: 10px 15px;
4765 padding: 10px 15px;
4766 border-bottom: 1px solid transparent;
4766 border-bottom: 1px solid transparent;
4767 border-top-right-radius: 3px;
4767 border-top-right-radius: 3px;
4768 border-top-left-radius: 3px;
4768 border-top-left-radius: 3px;
4769 }
4769 }
4770 .panel-heading > .dropdown .dropdown-toggle {
4770 .panel-heading > .dropdown .dropdown-toggle {
4771 color: inherit;
4771 color: inherit;
4772 }
4772 }
4773 .panel-title {
4773 .panel-title {
4774 margin-top: 0;
4774 margin-top: 0;
4775 margin-bottom: 0;
4775 margin-bottom: 0;
4776 font-size: 15px;
4776 font-size: 15px;
4777 color: inherit;
4777 color: inherit;
4778 }
4778 }
4779 .panel-title > a {
4779 .panel-title > a {
4780 color: inherit;
4780 color: inherit;
4781 }
4781 }
4782 .panel-footer {
4782 .panel-footer {
4783 padding: 10px 15px;
4783 padding: 10px 15px;
4784 background-color: #f5f5f5;
4784 background-color: #f5f5f5;
4785 border-top: 1px solid #dddddd;
4785 border-top: 1px solid #dddddd;
4786 border-bottom-right-radius: 3px;
4786 border-bottom-right-radius: 3px;
4787 border-bottom-left-radius: 3px;
4787 border-bottom-left-radius: 3px;
4788 }
4788 }
4789 .panel > .list-group {
4789 .panel > .list-group {
4790 margin-bottom: 0;
4790 margin-bottom: 0;
4791 }
4791 }
4792 .panel > .list-group .list-group-item {
4792 .panel > .list-group .list-group-item {
4793 border-width: 1px 0;
4793 border-width: 1px 0;
4794 border-radius: 0;
4794 border-radius: 0;
4795 }
4795 }
4796 .panel > .list-group:first-child .list-group-item:first-child {
4796 .panel > .list-group:first-child .list-group-item:first-child {
4797 border-top: 0;
4797 border-top: 0;
4798 border-top-right-radius: 3px;
4798 border-top-right-radius: 3px;
4799 border-top-left-radius: 3px;
4799 border-top-left-radius: 3px;
4800 }
4800 }
4801 .panel > .list-group:last-child .list-group-item:last-child {
4801 .panel > .list-group:last-child .list-group-item:last-child {
4802 border-bottom: 0;
4802 border-bottom: 0;
4803 border-bottom-right-radius: 3px;
4803 border-bottom-right-radius: 3px;
4804 border-bottom-left-radius: 3px;
4804 border-bottom-left-radius: 3px;
4805 }
4805 }
4806 .panel-heading + .list-group .list-group-item:first-child {
4806 .panel-heading + .list-group .list-group-item:first-child {
4807 border-top-width: 0;
4807 border-top-width: 0;
4808 }
4808 }
4809 .panel > .table,
4809 .panel > .table,
4810 .panel > .table-responsive > .table {
4810 .panel > .table-responsive > .table {
4811 margin-bottom: 0;
4811 margin-bottom: 0;
4812 }
4812 }
4813 .panel > .table:first-child,
4813 .panel > .table:first-child,
4814 .panel > .table-responsive:first-child > .table:first-child {
4814 .panel > .table-responsive:first-child > .table:first-child {
4815 border-top-right-radius: 3px;
4815 border-top-right-radius: 3px;
4816 border-top-left-radius: 3px;
4816 border-top-left-radius: 3px;
4817 }
4817 }
4818 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4818 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4819 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4819 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4820 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4820 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4821 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4821 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4822 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
4822 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
4823 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4823 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4824 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4824 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4825 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
4825 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
4826 border-top-left-radius: 3px;
4826 border-top-left-radius: 3px;
4827 }
4827 }
4828 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4828 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4829 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4829 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4830 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4830 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4831 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4831 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4832 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
4832 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
4833 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4833 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4834 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4834 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4835 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
4835 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
4836 border-top-right-radius: 3px;
4836 border-top-right-radius: 3px;
4837 }
4837 }
4838 .panel > .table:last-child,
4838 .panel > .table:last-child,
4839 .panel > .table-responsive:last-child > .table:last-child {
4839 .panel > .table-responsive:last-child > .table:last-child {
4840 border-bottom-right-radius: 3px;
4840 border-bottom-right-radius: 3px;
4841 border-bottom-left-radius: 3px;
4841 border-bottom-left-radius: 3px;
4842 }
4842 }
4843 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4843 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4844 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4844 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4845 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4845 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4846 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4846 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4847 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4847 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4848 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4848 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4849 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4849 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4850 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4850 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4851 border-bottom-left-radius: 3px;
4851 border-bottom-left-radius: 3px;
4852 }
4852 }
4853 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4853 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4854 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4854 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4855 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4855 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4856 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4856 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4857 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4857 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4858 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4858 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4859 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4859 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4860 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4860 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4861 border-bottom-right-radius: 3px;
4861 border-bottom-right-radius: 3px;
4862 }
4862 }
4863 .panel > .panel-body + .table,
4863 .panel > .panel-body + .table,
4864 .panel > .panel-body + .table-responsive {
4864 .panel > .panel-body + .table-responsive {
4865 border-top: 1px solid #dddddd;
4865 border-top: 1px solid #dddddd;
4866 }
4866 }
4867 .panel > .table > tbody:first-child > tr:first-child th,
4867 .panel > .table > tbody:first-child > tr:first-child th,
4868 .panel > .table > tbody:first-child > tr:first-child td {
4868 .panel > .table > tbody:first-child > tr:first-child td {
4869 border-top: 0;
4869 border-top: 0;
4870 }
4870 }
4871 .panel > .table-bordered,
4871 .panel > .table-bordered,
4872 .panel > .table-responsive > .table-bordered {
4872 .panel > .table-responsive > .table-bordered {
4873 border: 0;
4873 border: 0;
4874 }
4874 }
4875 .panel > .table-bordered > thead > tr > th:first-child,
4875 .panel > .table-bordered > thead > tr > th:first-child,
4876 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
4876 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
4877 .panel > .table-bordered > tbody > tr > th:first-child,
4877 .panel > .table-bordered > tbody > tr > th:first-child,
4878 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4878 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4879 .panel > .table-bordered > tfoot > tr > th:first-child,
4879 .panel > .table-bordered > tfoot > tr > th:first-child,
4880 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4880 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4881 .panel > .table-bordered > thead > tr > td:first-child,
4881 .panel > .table-bordered > thead > tr > td:first-child,
4882 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4882 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4883 .panel > .table-bordered > tbody > tr > td:first-child,
4883 .panel > .table-bordered > tbody > tr > td:first-child,
4884 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4884 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4885 .panel > .table-bordered > tfoot > tr > td:first-child,
4885 .panel > .table-bordered > tfoot > tr > td:first-child,
4886 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
4886 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
4887 border-left: 0;
4887 border-left: 0;
4888 }
4888 }
4889 .panel > .table-bordered > thead > tr > th:last-child,
4889 .panel > .table-bordered > thead > tr > th:last-child,
4890 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
4890 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
4891 .panel > .table-bordered > tbody > tr > th:last-child,
4891 .panel > .table-bordered > tbody > tr > th:last-child,
4892 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4892 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4893 .panel > .table-bordered > tfoot > tr > th:last-child,
4893 .panel > .table-bordered > tfoot > tr > th:last-child,
4894 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4894 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4895 .panel > .table-bordered > thead > tr > td:last-child,
4895 .panel > .table-bordered > thead > tr > td:last-child,
4896 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4896 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4897 .panel > .table-bordered > tbody > tr > td:last-child,
4897 .panel > .table-bordered > tbody > tr > td:last-child,
4898 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4898 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4899 .panel > .table-bordered > tfoot > tr > td:last-child,
4899 .panel > .table-bordered > tfoot > tr > td:last-child,
4900 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
4900 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
4901 border-right: 0;
4901 border-right: 0;
4902 }
4902 }
4903 .panel > .table-bordered > thead > tr:first-child > td,
4903 .panel > .table-bordered > thead > tr:first-child > td,
4904 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4904 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4905 .panel > .table-bordered > tbody > tr:first-child > td,
4905 .panel > .table-bordered > tbody > tr:first-child > td,
4906 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4906 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4907 .panel > .table-bordered > thead > tr:first-child > th,
4907 .panel > .table-bordered > thead > tr:first-child > th,
4908 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
4908 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
4909 .panel > .table-bordered > tbody > tr:first-child > th,
4909 .panel > .table-bordered > tbody > tr:first-child > th,
4910 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
4910 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
4911 border-bottom: 0;
4911 border-bottom: 0;
4912 }
4912 }
4913 .panel > .table-bordered > tbody > tr:last-child > td,
4913 .panel > .table-bordered > tbody > tr:last-child > td,
4914 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4914 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4915 .panel > .table-bordered > tfoot > tr:last-child > td,
4915 .panel > .table-bordered > tfoot > tr:last-child > td,
4916 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4916 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4917 .panel > .table-bordered > tbody > tr:last-child > th,
4917 .panel > .table-bordered > tbody > tr:last-child > th,
4918 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4918 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4919 .panel > .table-bordered > tfoot > tr:last-child > th,
4919 .panel > .table-bordered > tfoot > tr:last-child > th,
4920 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4920 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4921 border-bottom: 0;
4921 border-bottom: 0;
4922 }
4922 }
4923 .panel > .table-responsive {
4923 .panel > .table-responsive {
4924 border: 0;
4924 border: 0;
4925 margin-bottom: 0;
4925 margin-bottom: 0;
4926 }
4926 }
4927 .panel-group {
4927 .panel-group {
4928 margin-bottom: 18px;
4928 margin-bottom: 18px;
4929 }
4929 }
4930 .panel-group .panel {
4930 .panel-group .panel {
4931 margin-bottom: 0;
4931 margin-bottom: 0;
4932 border-radius: 4px;
4932 border-radius: 4px;
4933 overflow: hidden;
4933 overflow: hidden;
4934 }
4934 }
4935 .panel-group .panel + .panel {
4935 .panel-group .panel + .panel {
4936 margin-top: 5px;
4936 margin-top: 5px;
4937 }
4937 }
4938 .panel-group .panel-heading {
4938 .panel-group .panel-heading {
4939 border-bottom: 0;
4939 border-bottom: 0;
4940 }
4940 }
4941 .panel-group .panel-heading + .panel-collapse .panel-body {
4941 .panel-group .panel-heading + .panel-collapse .panel-body {
4942 border-top: 1px solid #dddddd;
4942 border-top: 1px solid #dddddd;
4943 }
4943 }
4944 .panel-group .panel-footer {
4944 .panel-group .panel-footer {
4945 border-top: 0;
4945 border-top: 0;
4946 }
4946 }
4947 .panel-group .panel-footer + .panel-collapse .panel-body {
4947 .panel-group .panel-footer + .panel-collapse .panel-body {
4948 border-bottom: 1px solid #dddddd;
4948 border-bottom: 1px solid #dddddd;
4949 }
4949 }
4950 .panel-default {
4950 .panel-default {
4951 border-color: #dddddd;
4951 border-color: #dddddd;
4952 }
4952 }
4953 .panel-default > .panel-heading {
4953 .panel-default > .panel-heading {
4954 color: #333333;
4954 color: #333333;
4955 background-color: #f5f5f5;
4955 background-color: #f5f5f5;
4956 border-color: #dddddd;
4956 border-color: #dddddd;
4957 }
4957 }
4958 .panel-default > .panel-heading + .panel-collapse .panel-body {
4958 .panel-default > .panel-heading + .panel-collapse .panel-body {
4959 border-top-color: #dddddd;
4959 border-top-color: #dddddd;
4960 }
4960 }
4961 .panel-default > .panel-footer + .panel-collapse .panel-body {
4961 .panel-default > .panel-footer + .panel-collapse .panel-body {
4962 border-bottom-color: #dddddd;
4962 border-bottom-color: #dddddd;
4963 }
4963 }
4964 .panel-primary {
4964 .panel-primary {
4965 border-color: #428bca;
4965 border-color: #428bca;
4966 }
4966 }
4967 .panel-primary > .panel-heading {
4967 .panel-primary > .panel-heading {
4968 color: #ffffff;
4968 color: #ffffff;
4969 background-color: #428bca;
4969 background-color: #428bca;
4970 border-color: #428bca;
4970 border-color: #428bca;
4971 }
4971 }
4972 .panel-primary > .panel-heading + .panel-collapse .panel-body {
4972 .panel-primary > .panel-heading + .panel-collapse .panel-body {
4973 border-top-color: #428bca;
4973 border-top-color: #428bca;
4974 }
4974 }
4975 .panel-primary > .panel-footer + .panel-collapse .panel-body {
4975 .panel-primary > .panel-footer + .panel-collapse .panel-body {
4976 border-bottom-color: #428bca;
4976 border-bottom-color: #428bca;
4977 }
4977 }
4978 .panel-success {
4978 .panel-success {
4979 border-color: #d6e9c6;
4979 border-color: #d6e9c6;
4980 }
4980 }
4981 .panel-success > .panel-heading {
4981 .panel-success > .panel-heading {
4982 color: #3c763d;
4982 color: #3c763d;
4983 background-color: #dff0d8;
4983 background-color: #dff0d8;
4984 border-color: #d6e9c6;
4984 border-color: #d6e9c6;
4985 }
4985 }
4986 .panel-success > .panel-heading + .panel-collapse .panel-body {
4986 .panel-success > .panel-heading + .panel-collapse .panel-body {
4987 border-top-color: #d6e9c6;
4987 border-top-color: #d6e9c6;
4988 }
4988 }
4989 .panel-success > .panel-footer + .panel-collapse .panel-body {
4989 .panel-success > .panel-footer + .panel-collapse .panel-body {
4990 border-bottom-color: #d6e9c6;
4990 border-bottom-color: #d6e9c6;
4991 }
4991 }
4992 .panel-info {
4992 .panel-info {
4993 border-color: #bce8f1;
4993 border-color: #bce8f1;
4994 }
4994 }
4995 .panel-info > .panel-heading {
4995 .panel-info > .panel-heading {
4996 color: #31708f;
4996 color: #31708f;
4997 background-color: #d9edf7;
4997 background-color: #d9edf7;
4998 border-color: #bce8f1;
4998 border-color: #bce8f1;
4999 }
4999 }
5000 .panel-info > .panel-heading + .panel-collapse .panel-body {
5000 .panel-info > .panel-heading + .panel-collapse .panel-body {
5001 border-top-color: #bce8f1;
5001 border-top-color: #bce8f1;
5002 }
5002 }
5003 .panel-info > .panel-footer + .panel-collapse .panel-body {
5003 .panel-info > .panel-footer + .panel-collapse .panel-body {
5004 border-bottom-color: #bce8f1;
5004 border-bottom-color: #bce8f1;
5005 }
5005 }
5006 .panel-warning {
5006 .panel-warning {
5007 border-color: #faebcc;
5007 border-color: #faebcc;
5008 }
5008 }
5009 .panel-warning > .panel-heading {
5009 .panel-warning > .panel-heading {
5010 color: #8a6d3b;
5010 color: #8a6d3b;
5011 background-color: #fcf8e3;
5011 background-color: #fcf8e3;
5012 border-color: #faebcc;
5012 border-color: #faebcc;
5013 }
5013 }
5014 .panel-warning > .panel-heading + .panel-collapse .panel-body {
5014 .panel-warning > .panel-heading + .panel-collapse .panel-body {
5015 border-top-color: #faebcc;
5015 border-top-color: #faebcc;
5016 }
5016 }
5017 .panel-warning > .panel-footer + .panel-collapse .panel-body {
5017 .panel-warning > .panel-footer + .panel-collapse .panel-body {
5018 border-bottom-color: #faebcc;
5018 border-bottom-color: #faebcc;
5019 }
5019 }
5020 .panel-danger {
5020 .panel-danger {
5021 border-color: #ebccd1;
5021 border-color: #ebccd1;
5022 }
5022 }
5023 .panel-danger > .panel-heading {
5023 .panel-danger > .panel-heading {
5024 color: #a94442;
5024 color: #a94442;
5025 background-color: #f2dede;
5025 background-color: #f2dede;
5026 border-color: #ebccd1;
5026 border-color: #ebccd1;
5027 }
5027 }
5028 .panel-danger > .panel-heading + .panel-collapse .panel-body {
5028 .panel-danger > .panel-heading + .panel-collapse .panel-body {
5029 border-top-color: #ebccd1;
5029 border-top-color: #ebccd1;
5030 }
5030 }
5031 .panel-danger > .panel-footer + .panel-collapse .panel-body {
5031 .panel-danger > .panel-footer + .panel-collapse .panel-body {
5032 border-bottom-color: #ebccd1;
5032 border-bottom-color: #ebccd1;
5033 }
5033 }
5034 .well {
5034 .well {
5035 min-height: 20px;
5035 min-height: 20px;
5036 padding: 19px;
5036 padding: 19px;
5037 margin-bottom: 20px;
5037 margin-bottom: 20px;
5038 background-color: #f5f5f5;
5038 background-color: #f5f5f5;
5039 border: 1px solid #e3e3e3;
5039 border: 1px solid #e3e3e3;
5040 border-radius: 4px;
5040 border-radius: 4px;
5041 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5041 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5042 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5042 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5043 }
5043 }
5044 .well blockquote {
5044 .well blockquote {
5045 border-color: #ddd;
5045 border-color: #ddd;
5046 border-color: rgba(0, 0, 0, 0.15);
5046 border-color: rgba(0, 0, 0, 0.15);
5047 }
5047 }
5048 .well-lg {
5048 .well-lg {
5049 padding: 24px;
5049 padding: 24px;
5050 border-radius: 6px;
5050 border-radius: 6px;
5051 }
5051 }
5052 .well-sm {
5052 .well-sm {
5053 padding: 9px;
5053 padding: 9px;
5054 border-radius: 3px;
5054 border-radius: 3px;
5055 }
5055 }
5056 .close {
5056 .close {
5057 float: right;
5057 float: right;
5058 font-size: 19.5px;
5058 font-size: 19.5px;
5059 font-weight: bold;
5059 font-weight: bold;
5060 line-height: 1;
5060 line-height: 1;
5061 color: #000000;
5061 color: #000000;
5062 text-shadow: 0 1px 0 #ffffff;
5062 text-shadow: 0 1px 0 #ffffff;
5063 opacity: 0.2;
5063 opacity: 0.2;
5064 filter: alpha(opacity=20);
5064 filter: alpha(opacity=20);
5065 }
5065 }
5066 .close:hover,
5066 .close:hover,
5067 .close:focus {
5067 .close:focus {
5068 color: #000000;
5068 color: #000000;
5069 text-decoration: none;
5069 text-decoration: none;
5070 cursor: pointer;
5070 cursor: pointer;
5071 opacity: 0.5;
5071 opacity: 0.5;
5072 filter: alpha(opacity=50);
5072 filter: alpha(opacity=50);
5073 }
5073 }
5074 button.close {
5074 button.close {
5075 padding: 0;
5075 padding: 0;
5076 cursor: pointer;
5076 cursor: pointer;
5077 background: transparent;
5077 background: transparent;
5078 border: 0;
5078 border: 0;
5079 -webkit-appearance: none;
5079 -webkit-appearance: none;
5080 }
5080 }
5081 .modal-open {
5081 .modal-open {
5082 overflow: hidden;
5082 overflow: hidden;
5083 }
5083 }
5084 .modal {
5084 .modal {
5085 display: none;
5085 display: none;
5086 overflow: auto;
5086 overflow: auto;
5087 overflow-y: scroll;
5087 overflow-y: scroll;
5088 position: fixed;
5088 position: fixed;
5089 top: 0;
5089 top: 0;
5090 right: 0;
5090 right: 0;
5091 bottom: 0;
5091 bottom: 0;
5092 left: 0;
5092 left: 0;
5093 z-index: 1050;
5093 z-index: 1050;
5094 -webkit-overflow-scrolling: touch;
5094 -webkit-overflow-scrolling: touch;
5095 outline: 0;
5095 outline: 0;
5096 }
5096 }
5097 .modal.fade .modal-dialog {
5097 .modal.fade .modal-dialog {
5098 -webkit-transform: translate(0, -25%);
5098 -webkit-transform: translate(0, -25%);
5099 -ms-transform: translate(0, -25%);
5099 -ms-transform: translate(0, -25%);
5100 transform: translate(0, -25%);
5100 transform: translate(0, -25%);
5101 -webkit-transition: -webkit-transform 0.3s ease-out;
5101 -webkit-transition: -webkit-transform 0.3s ease-out;
5102 -moz-transition: -moz-transform 0.3s ease-out;
5102 -moz-transition: -moz-transform 0.3s ease-out;
5103 -o-transition: -o-transform 0.3s ease-out;
5103 -o-transition: -o-transform 0.3s ease-out;
5104 transition: transform 0.3s ease-out;
5104 transition: transform 0.3s ease-out;
5105 }
5105 }
5106 .modal.in .modal-dialog {
5106 .modal.in .modal-dialog {
5107 -webkit-transform: translate(0, 0);
5107 -webkit-transform: translate(0, 0);
5108 -ms-transform: translate(0, 0);
5108 -ms-transform: translate(0, 0);
5109 transform: translate(0, 0);
5109 transform: translate(0, 0);
5110 }
5110 }
5111 .modal-dialog {
5111 .modal-dialog {
5112 position: relative;
5112 position: relative;
5113 width: auto;
5113 width: auto;
5114 margin: 10px;
5114 margin: 10px;
5115 }
5115 }
5116 .modal-content {
5116 .modal-content {
5117 position: relative;
5117 position: relative;
5118 background-color: #ffffff;
5118 background-color: #ffffff;
5119 border: 1px solid #999999;
5119 border: 1px solid #999999;
5120 border: 1px solid rgba(0, 0, 0, 0.2);
5120 border: 1px solid rgba(0, 0, 0, 0.2);
5121 border-radius: 6px;
5121 border-radius: 6px;
5122 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5122 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5123 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5123 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5124 background-clip: padding-box;
5124 background-clip: padding-box;
5125 outline: none;
5125 outline: none;
5126 }
5126 }
5127 .modal-backdrop {
5127 .modal-backdrop {
5128 position: fixed;
5128 position: fixed;
5129 top: 0;
5129 top: 0;
5130 right: 0;
5130 right: 0;
5131 bottom: 0;
5131 bottom: 0;
5132 left: 0;
5132 left: 0;
5133 z-index: 1040;
5133 z-index: 1040;
5134 background-color: #000000;
5134 background-color: #000000;
5135 }
5135 }
5136 .modal-backdrop.fade {
5136 .modal-backdrop.fade {
5137 opacity: 0;
5137 opacity: 0;
5138 filter: alpha(opacity=0);
5138 filter: alpha(opacity=0);
5139 }
5139 }
5140 .modal-backdrop.in {
5140 .modal-backdrop.in {
5141 opacity: 0.5;
5141 opacity: 0.5;
5142 filter: alpha(opacity=50);
5142 filter: alpha(opacity=50);
5143 }
5143 }
5144 .modal-header {
5144 .modal-header {
5145 padding: 15px;
5145 padding: 15px;
5146 border-bottom: 1px solid #e5e5e5;
5146 border-bottom: 1px solid #e5e5e5;
5147 min-height: 16.42857143px;
5147 min-height: 16.42857143px;
5148 }
5148 }
5149 .modal-header .close {
5149 .modal-header .close {
5150 margin-top: -2px;
5150 margin-top: -2px;
5151 }
5151 }
5152 .modal-title {
5152 .modal-title {
5153 margin: 0;
5153 margin: 0;
5154 line-height: 1.42857143;
5154 line-height: 1.42857143;
5155 }
5155 }
5156 .modal-body {
5156 .modal-body {
5157 position: relative;
5157 position: relative;
5158 padding: 15px;
5158 padding: 15px;
5159 }
5159 }
5160 .modal-footer {
5160 .modal-footer {
5161 margin-top: 15px;
5161 margin-top: 15px;
5162 padding: 14px 15px 15px;
5162 padding: 14px 15px 15px;
5163 text-align: right;
5163 text-align: right;
5164 border-top: 1px solid #e5e5e5;
5164 border-top: 1px solid #e5e5e5;
5165 }
5165 }
5166 .modal-footer .btn + .btn {
5166 .modal-footer .btn + .btn {
5167 margin-left: 5px;
5167 margin-left: 5px;
5168 margin-bottom: 0;
5168 margin-bottom: 0;
5169 }
5169 }
5170 .modal-footer .btn-group .btn + .btn {
5170 .modal-footer .btn-group .btn + .btn {
5171 margin-left: -1px;
5171 margin-left: -1px;
5172 }
5172 }
5173 .modal-footer .btn-block + .btn-block {
5173 .modal-footer .btn-block + .btn-block {
5174 margin-left: 0;
5174 margin-left: 0;
5175 }
5175 }
5176 @media (min-width: 768px) {
5176 @media (min-width: 768px) {
5177 .modal-dialog {
5177 .modal-dialog {
5178 width: 600px;
5178 width: 600px;
5179 margin: 30px auto;
5179 margin: 30px auto;
5180 }
5180 }
5181 .modal-content {
5181 .modal-content {
5182 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5182 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5183 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5183 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5184 }
5184 }
5185 .modal-sm {
5185 .modal-sm {
5186 width: 300px;
5186 width: 300px;
5187 }
5187 }
5188 }
5188 }
5189 @media (min-width: 992px) {
5189 @media (min-width: 992px) {
5190 .modal-lg {
5190 .modal-lg {
5191 width: 900px;
5191 width: 900px;
5192 }
5192 }
5193 }
5193 }
5194 .tooltip {
5194 .tooltip {
5195 position: absolute;
5195 position: absolute;
5196 z-index: 1030;
5196 z-index: 1030;
5197 display: block;
5197 display: block;
5198 visibility: visible;
5198 visibility: visible;
5199 font-size: 12px;
5199 font-size: 12px;
5200 line-height: 1.4;
5200 line-height: 1.4;
5201 opacity: 0;
5201 opacity: 0;
5202 filter: alpha(opacity=0);
5202 filter: alpha(opacity=0);
5203 }
5203 }
5204 .tooltip.in {
5204 .tooltip.in {
5205 opacity: 0.9;
5205 opacity: 0.9;
5206 filter: alpha(opacity=90);
5206 filter: alpha(opacity=90);
5207 }
5207 }
5208 .tooltip.top {
5208 .tooltip.top {
5209 margin-top: -3px;
5209 margin-top: -3px;
5210 padding: 5px 0;
5210 padding: 5px 0;
5211 }
5211 }
5212 .tooltip.right {
5212 .tooltip.right {
5213 margin-left: 3px;
5213 margin-left: 3px;
5214 padding: 0 5px;
5214 padding: 0 5px;
5215 }
5215 }
5216 .tooltip.bottom {
5216 .tooltip.bottom {
5217 margin-top: 3px;
5217 margin-top: 3px;
5218 padding: 5px 0;
5218 padding: 5px 0;
5219 }
5219 }
5220 .tooltip.left {
5220 .tooltip.left {
5221 margin-left: -3px;
5221 margin-left: -3px;
5222 padding: 0 5px;
5222 padding: 0 5px;
5223 }
5223 }
5224 .tooltip-inner {
5224 .tooltip-inner {
5225 max-width: 200px;
5225 max-width: 200px;
5226 padding: 3px 8px;
5226 padding: 3px 8px;
5227 color: #ffffff;
5227 color: #ffffff;
5228 text-align: center;
5228 text-align: center;
5229 text-decoration: none;
5229 text-decoration: none;
5230 background-color: #000000;
5230 background-color: #000000;
5231 border-radius: 4px;
5231 border-radius: 4px;
5232 }
5232 }
5233 .tooltip-arrow {
5233 .tooltip-arrow {
5234 position: absolute;
5234 position: absolute;
5235 width: 0;
5235 width: 0;
5236 height: 0;
5236 height: 0;
5237 border-color: transparent;
5237 border-color: transparent;
5238 border-style: solid;
5238 border-style: solid;
5239 }
5239 }
5240 .tooltip.top .tooltip-arrow {
5240 .tooltip.top .tooltip-arrow {
5241 bottom: 0;
5241 bottom: 0;
5242 left: 50%;
5242 left: 50%;
5243 margin-left: -5px;
5243 margin-left: -5px;
5244 border-width: 5px 5px 0;
5244 border-width: 5px 5px 0;
5245 border-top-color: #000000;
5245 border-top-color: #000000;
5246 }
5246 }
5247 .tooltip.top-left .tooltip-arrow {
5247 .tooltip.top-left .tooltip-arrow {
5248 bottom: 0;
5248 bottom: 0;
5249 left: 5px;
5249 left: 5px;
5250 border-width: 5px 5px 0;
5250 border-width: 5px 5px 0;
5251 border-top-color: #000000;
5251 border-top-color: #000000;
5252 }
5252 }
5253 .tooltip.top-right .tooltip-arrow {
5253 .tooltip.top-right .tooltip-arrow {
5254 bottom: 0;
5254 bottom: 0;
5255 right: 5px;
5255 right: 5px;
5256 border-width: 5px 5px 0;
5256 border-width: 5px 5px 0;
5257 border-top-color: #000000;
5257 border-top-color: #000000;
5258 }
5258 }
5259 .tooltip.right .tooltip-arrow {
5259 .tooltip.right .tooltip-arrow {
5260 top: 50%;
5260 top: 50%;
5261 left: 0;
5261 left: 0;
5262 margin-top: -5px;
5262 margin-top: -5px;
5263 border-width: 5px 5px 5px 0;
5263 border-width: 5px 5px 5px 0;
5264 border-right-color: #000000;
5264 border-right-color: #000000;
5265 }
5265 }
5266 .tooltip.left .tooltip-arrow {
5266 .tooltip.left .tooltip-arrow {
5267 top: 50%;
5267 top: 50%;
5268 right: 0;
5268 right: 0;
5269 margin-top: -5px;
5269 margin-top: -5px;
5270 border-width: 5px 0 5px 5px;
5270 border-width: 5px 0 5px 5px;
5271 border-left-color: #000000;
5271 border-left-color: #000000;
5272 }
5272 }
5273 .tooltip.bottom .tooltip-arrow {
5273 .tooltip.bottom .tooltip-arrow {
5274 top: 0;
5274 top: 0;
5275 left: 50%;
5275 left: 50%;
5276 margin-left: -5px;
5276 margin-left: -5px;
5277 border-width: 0 5px 5px;
5277 border-width: 0 5px 5px;
5278 border-bottom-color: #000000;
5278 border-bottom-color: #000000;
5279 }
5279 }
5280 .tooltip.bottom-left .tooltip-arrow {
5280 .tooltip.bottom-left .tooltip-arrow {
5281 top: 0;
5281 top: 0;
5282 left: 5px;
5282 left: 5px;
5283 border-width: 0 5px 5px;
5283 border-width: 0 5px 5px;
5284 border-bottom-color: #000000;
5284 border-bottom-color: #000000;
5285 }
5285 }
5286 .tooltip.bottom-right .tooltip-arrow {
5286 .tooltip.bottom-right .tooltip-arrow {
5287 top: 0;
5287 top: 0;
5288 right: 5px;
5288 right: 5px;
5289 border-width: 0 5px 5px;
5289 border-width: 0 5px 5px;
5290 border-bottom-color: #000000;
5290 border-bottom-color: #000000;
5291 }
5291 }
5292 .popover {
5292 .popover {
5293 position: absolute;
5293 position: absolute;
5294 top: 0;
5294 top: 0;
5295 left: 0;
5295 left: 0;
5296 z-index: 1010;
5296 z-index: 1010;
5297 display: none;
5297 display: none;
5298 max-width: 276px;
5298 max-width: 276px;
5299 padding: 1px;
5299 padding: 1px;
5300 text-align: left;
5300 text-align: left;
5301 background-color: #ffffff;
5301 background-color: #ffffff;
5302 background-clip: padding-box;
5302 background-clip: padding-box;
5303 border: 1px solid #cccccc;
5303 border: 1px solid #cccccc;
5304 border: 1px solid rgba(0, 0, 0, 0.2);
5304 border: 1px solid rgba(0, 0, 0, 0.2);
5305 border-radius: 6px;
5305 border-radius: 6px;
5306 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5306 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5307 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5307 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5308 white-space: normal;
5308 white-space: normal;
5309 }
5309 }
5310 .popover.top {
5310 .popover.top {
5311 margin-top: -10px;
5311 margin-top: -10px;
5312 }
5312 }
5313 .popover.right {
5313 .popover.right {
5314 margin-left: 10px;
5314 margin-left: 10px;
5315 }
5315 }
5316 .popover.bottom {
5316 .popover.bottom {
5317 margin-top: 10px;
5317 margin-top: 10px;
5318 }
5318 }
5319 .popover.left {
5319 .popover.left {
5320 margin-left: -10px;
5320 margin-left: -10px;
5321 }
5321 }
5322 .popover-title {
5322 .popover-title {
5323 margin: 0;
5323 margin: 0;
5324 padding: 8px 14px;
5324 padding: 8px 14px;
5325 font-size: 13px;
5325 font-size: 13px;
5326 font-weight: normal;
5326 font-weight: normal;
5327 line-height: 18px;
5327 line-height: 18px;
5328 background-color: #f7f7f7;
5328 background-color: #f7f7f7;
5329 border-bottom: 1px solid #ebebeb;
5329 border-bottom: 1px solid #ebebeb;
5330 border-radius: 5px 5px 0 0;
5330 border-radius: 5px 5px 0 0;
5331 }
5331 }
5332 .popover-content {
5332 .popover-content {
5333 padding: 9px 14px;
5333 padding: 9px 14px;
5334 }
5334 }
5335 .popover > .arrow,
5335 .popover > .arrow,
5336 .popover > .arrow:after {
5336 .popover > .arrow:after {
5337 position: absolute;
5337 position: absolute;
5338 display: block;
5338 display: block;
5339 width: 0;
5339 width: 0;
5340 height: 0;
5340 height: 0;
5341 border-color: transparent;
5341 border-color: transparent;
5342 border-style: solid;
5342 border-style: solid;
5343 }
5343 }
5344 .popover > .arrow {
5344 .popover > .arrow {
5345 border-width: 11px;
5345 border-width: 11px;
5346 }
5346 }
5347 .popover > .arrow:after {
5347 .popover > .arrow:after {
5348 border-width: 10px;
5348 border-width: 10px;
5349 content: "";
5349 content: "";
5350 }
5350 }
5351 .popover.top > .arrow {
5351 .popover.top > .arrow {
5352 left: 50%;
5352 left: 50%;
5353 margin-left: -11px;
5353 margin-left: -11px;
5354 border-bottom-width: 0;
5354 border-bottom-width: 0;
5355 border-top-color: #999999;
5355 border-top-color: #999999;
5356 border-top-color: rgba(0, 0, 0, 0.25);
5356 border-top-color: rgba(0, 0, 0, 0.25);
5357 bottom: -11px;
5357 bottom: -11px;
5358 }
5358 }
5359 .popover.top > .arrow:after {
5359 .popover.top > .arrow:after {
5360 content: " ";
5360 content: " ";
5361 bottom: 1px;
5361 bottom: 1px;
5362 margin-left: -10px;
5362 margin-left: -10px;
5363 border-bottom-width: 0;
5363 border-bottom-width: 0;
5364 border-top-color: #ffffff;
5364 border-top-color: #ffffff;
5365 }
5365 }
5366 .popover.right > .arrow {
5366 .popover.right > .arrow {
5367 top: 50%;
5367 top: 50%;
5368 left: -11px;
5368 left: -11px;
5369 margin-top: -11px;
5369 margin-top: -11px;
5370 border-left-width: 0;
5370 border-left-width: 0;
5371 border-right-color: #999999;
5371 border-right-color: #999999;
5372 border-right-color: rgba(0, 0, 0, 0.25);
5372 border-right-color: rgba(0, 0, 0, 0.25);
5373 }
5373 }
5374 .popover.right > .arrow:after {
5374 .popover.right > .arrow:after {
5375 content: " ";
5375 content: " ";
5376 left: 1px;
5376 left: 1px;
5377 bottom: -10px;
5377 bottom: -10px;
5378 border-left-width: 0;
5378 border-left-width: 0;
5379 border-right-color: #ffffff;
5379 border-right-color: #ffffff;
5380 }
5380 }
5381 .popover.bottom > .arrow {
5381 .popover.bottom > .arrow {
5382 left: 50%;
5382 left: 50%;
5383 margin-left: -11px;
5383 margin-left: -11px;
5384 border-top-width: 0;
5384 border-top-width: 0;
5385 border-bottom-color: #999999;
5385 border-bottom-color: #999999;
5386 border-bottom-color: rgba(0, 0, 0, 0.25);
5386 border-bottom-color: rgba(0, 0, 0, 0.25);
5387 top: -11px;
5387 top: -11px;
5388 }
5388 }
5389 .popover.bottom > .arrow:after {
5389 .popover.bottom > .arrow:after {
5390 content: " ";
5390 content: " ";
5391 top: 1px;
5391 top: 1px;
5392 margin-left: -10px;
5392 margin-left: -10px;
5393 border-top-width: 0;
5393 border-top-width: 0;
5394 border-bottom-color: #ffffff;
5394 border-bottom-color: #ffffff;
5395 }
5395 }
5396 .popover.left > .arrow {
5396 .popover.left > .arrow {
5397 top: 50%;
5397 top: 50%;
5398 right: -11px;
5398 right: -11px;
5399 margin-top: -11px;
5399 margin-top: -11px;
5400 border-right-width: 0;
5400 border-right-width: 0;
5401 border-left-color: #999999;
5401 border-left-color: #999999;
5402 border-left-color: rgba(0, 0, 0, 0.25);
5402 border-left-color: rgba(0, 0, 0, 0.25);
5403 }
5403 }
5404 .popover.left > .arrow:after {
5404 .popover.left > .arrow:after {
5405 content: " ";
5405 content: " ";
5406 right: 1px;
5406 right: 1px;
5407 border-right-width: 0;
5407 border-right-width: 0;
5408 border-left-color: #ffffff;
5408 border-left-color: #ffffff;
5409 bottom: -10px;
5409 bottom: -10px;
5410 }
5410 }
5411 .carousel {
5411 .carousel {
5412 position: relative;
5412 position: relative;
5413 }
5413 }
5414 .carousel-inner {
5414 .carousel-inner {
5415 position: relative;
5415 position: relative;
5416 overflow: hidden;
5416 overflow: hidden;
5417 width: 100%;
5417 width: 100%;
5418 }
5418 }
5419 .carousel-inner > .item {
5419 .carousel-inner > .item {
5420 display: none;
5420 display: none;
5421 position: relative;
5421 position: relative;
5422 -webkit-transition: 0.6s ease-in-out left;
5422 -webkit-transition: 0.6s ease-in-out left;
5423 transition: 0.6s ease-in-out left;
5423 transition: 0.6s ease-in-out left;
5424 }
5424 }
5425 .carousel-inner > .item > img,
5425 .carousel-inner > .item > img,
5426 .carousel-inner > .item > a > img {
5426 .carousel-inner > .item > a > img {
5427 line-height: 1;
5427 line-height: 1;
5428 }
5428 }
5429 .carousel-inner > .active,
5429 .carousel-inner > .active,
5430 .carousel-inner > .next,
5430 .carousel-inner > .next,
5431 .carousel-inner > .prev {
5431 .carousel-inner > .prev {
5432 display: block;
5432 display: block;
5433 }
5433 }
5434 .carousel-inner > .active {
5434 .carousel-inner > .active {
5435 left: 0;
5435 left: 0;
5436 }
5436 }
5437 .carousel-inner > .next,
5437 .carousel-inner > .next,
5438 .carousel-inner > .prev {
5438 .carousel-inner > .prev {
5439 position: absolute;
5439 position: absolute;
5440 top: 0;
5440 top: 0;
5441 width: 100%;
5441 width: 100%;
5442 }
5442 }
5443 .carousel-inner > .next {
5443 .carousel-inner > .next {
5444 left: 100%;
5444 left: 100%;
5445 }
5445 }
5446 .carousel-inner > .prev {
5446 .carousel-inner > .prev {
5447 left: -100%;
5447 left: -100%;
5448 }
5448 }
5449 .carousel-inner > .next.left,
5449 .carousel-inner > .next.left,
5450 .carousel-inner > .prev.right {
5450 .carousel-inner > .prev.right {
5451 left: 0;
5451 left: 0;
5452 }
5452 }
5453 .carousel-inner > .active.left {
5453 .carousel-inner > .active.left {
5454 left: -100%;
5454 left: -100%;
5455 }
5455 }
5456 .carousel-inner > .active.right {
5456 .carousel-inner > .active.right {
5457 left: 100%;
5457 left: 100%;
5458 }
5458 }
5459 .carousel-control {
5459 .carousel-control {
5460 position: absolute;
5460 position: absolute;
5461 top: 0;
5461 top: 0;
5462 left: 0;
5462 left: 0;
5463 bottom: 0;
5463 bottom: 0;
5464 width: 15%;
5464 width: 15%;
5465 opacity: 0.5;
5465 opacity: 0.5;
5466 filter: alpha(opacity=50);
5466 filter: alpha(opacity=50);
5467 font-size: 20px;
5467 font-size: 20px;
5468 color: #ffffff;
5468 color: #ffffff;
5469 text-align: center;
5469 text-align: center;
5470 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5470 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5471 }
5471 }
5472 .carousel-control.left {
5472 .carousel-control.left {
5473 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
5473 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
5474 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5474 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5475 background-repeat: repeat-x;
5475 background-repeat: repeat-x;
5476 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5476 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5477 }
5477 }
5478 .carousel-control.right {
5478 .carousel-control.right {
5479 left: auto;
5479 left: auto;
5480 right: 0;
5480 right: 0;
5481 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
5481 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
5482 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5482 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5483 background-repeat: repeat-x;
5483 background-repeat: repeat-x;
5484 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5484 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5485 }
5485 }
5486 .carousel-control:hover,
5486 .carousel-control:hover,
5487 .carousel-control:focus {
5487 .carousel-control:focus {
5488 outline: none;
5488 outline: none;
5489 color: #ffffff;
5489 color: #ffffff;
5490 text-decoration: none;
5490 text-decoration: none;
5491 opacity: 0.9;
5491 opacity: 0.9;
5492 filter: alpha(opacity=90);
5492 filter: alpha(opacity=90);
5493 }
5493 }
5494 .carousel-control .icon-prev,
5494 .carousel-control .icon-prev,
5495 .carousel-control .icon-next,
5495 .carousel-control .icon-next,
5496 .carousel-control .glyphicon-chevron-left,
5496 .carousel-control .glyphicon-chevron-left,
5497 .carousel-control .glyphicon-chevron-right {
5497 .carousel-control .glyphicon-chevron-right {
5498 position: absolute;
5498 position: absolute;
5499 top: 50%;
5499 top: 50%;
5500 z-index: 5;
5500 z-index: 5;
5501 display: inline-block;
5501 display: inline-block;
5502 }
5502 }
5503 .carousel-control .icon-prev,
5503 .carousel-control .icon-prev,
5504 .carousel-control .glyphicon-chevron-left {
5504 .carousel-control .glyphicon-chevron-left {
5505 left: 50%;
5505 left: 50%;
5506 }
5506 }
5507 .carousel-control .icon-next,
5507 .carousel-control .icon-next,
5508 .carousel-control .glyphicon-chevron-right {
5508 .carousel-control .glyphicon-chevron-right {
5509 right: 50%;
5509 right: 50%;
5510 }
5510 }
5511 .carousel-control .icon-prev,
5511 .carousel-control .icon-prev,
5512 .carousel-control .icon-next {
5512 .carousel-control .icon-next {
5513 width: 20px;
5513 width: 20px;
5514 height: 20px;
5514 height: 20px;
5515 margin-top: -10px;
5515 margin-top: -10px;
5516 margin-left: -10px;
5516 margin-left: -10px;
5517 font-family: serif;
5517 font-family: serif;
5518 }
5518 }
5519 .carousel-control .icon-prev:before {
5519 .carousel-control .icon-prev:before {
5520 content: '\2039';
5520 content: '\2039';
5521 }
5521 }
5522 .carousel-control .icon-next:before {
5522 .carousel-control .icon-next:before {
5523 content: '\203a';
5523 content: '\203a';
5524 }
5524 }
5525 .carousel-indicators {
5525 .carousel-indicators {
5526 position: absolute;
5526 position: absolute;
5527 bottom: 10px;
5527 bottom: 10px;
5528 left: 50%;
5528 left: 50%;
5529 z-index: 15;
5529 z-index: 15;
5530 width: 60%;
5530 width: 60%;
5531 margin-left: -30%;
5531 margin-left: -30%;
5532 padding-left: 0;
5532 padding-left: 0;
5533 list-style: none;
5533 list-style: none;
5534 text-align: center;
5534 text-align: center;
5535 }
5535 }
5536 .carousel-indicators li {
5536 .carousel-indicators li {
5537 display: inline-block;
5537 display: inline-block;
5538 width: 10px;
5538 width: 10px;
5539 height: 10px;
5539 height: 10px;
5540 margin: 1px;
5540 margin: 1px;
5541 text-indent: -999px;
5541 text-indent: -999px;
5542 border: 1px solid #ffffff;
5542 border: 1px solid #ffffff;
5543 border-radius: 10px;
5543 border-radius: 10px;
5544 cursor: pointer;
5544 cursor: pointer;
5545 background-color: #000 \9;
5545 background-color: #000 \9;
5546 background-color: rgba(0, 0, 0, 0);
5546 background-color: rgba(0, 0, 0, 0);
5547 }
5547 }
5548 .carousel-indicators .active {
5548 .carousel-indicators .active {
5549 margin: 0;
5549 margin: 0;
5550 width: 12px;
5550 width: 12px;
5551 height: 12px;
5551 height: 12px;
5552 background-color: #ffffff;
5552 background-color: #ffffff;
5553 }
5553 }
5554 .carousel-caption {
5554 .carousel-caption {
5555 position: absolute;
5555 position: absolute;
5556 left: 15%;
5556 left: 15%;
5557 right: 15%;
5557 right: 15%;
5558 bottom: 20px;
5558 bottom: 20px;
5559 z-index: 10;
5559 z-index: 10;
5560 padding-top: 20px;
5560 padding-top: 20px;
5561 padding-bottom: 20px;
5561 padding-bottom: 20px;
5562 color: #ffffff;
5562 color: #ffffff;
5563 text-align: center;
5563 text-align: center;
5564 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5564 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5565 }
5565 }
5566 .carousel-caption .btn {
5566 .carousel-caption .btn {
5567 text-shadow: none;
5567 text-shadow: none;
5568 }
5568 }
5569 @media screen and (min-width: 768px) {
5569 @media screen and (min-width: 768px) {
5570 .carousel-control .glyphicon-chevron-left,
5570 .carousel-control .glyphicon-chevron-left,
5571 .carousel-control .glyphicon-chevron-right,
5571 .carousel-control .glyphicon-chevron-right,
5572 .carousel-control .icon-prev,
5572 .carousel-control .icon-prev,
5573 .carousel-control .icon-next {
5573 .carousel-control .icon-next {
5574 width: 30px;
5574 width: 30px;
5575 height: 30px;
5575 height: 30px;
5576 margin-top: -15px;
5576 margin-top: -15px;
5577 margin-left: -15px;
5577 margin-left: -15px;
5578 font-size: 30px;
5578 font-size: 30px;
5579 }
5579 }
5580 .carousel-caption {
5580 .carousel-caption {
5581 left: 20%;
5581 left: 20%;
5582 right: 20%;
5582 right: 20%;
5583 padding-bottom: 30px;
5583 padding-bottom: 30px;
5584 }
5584 }
5585 .carousel-indicators {
5585 .carousel-indicators {
5586 bottom: 20px;
5586 bottom: 20px;
5587 }
5587 }
5588 }
5588 }
5589 .clearfix:before,
5589 .clearfix:before,
5590 .clearfix:after,
5590 .clearfix:after,
5591 .container:before,
5591 .container:before,
5592 .container:after,
5592 .container:after,
5593 .container-fluid:before,
5593 .container-fluid:before,
5594 .container-fluid:after,
5594 .container-fluid:after,
5595 .row:before,
5595 .row:before,
5596 .row:after,
5596 .row:after,
5597 .form-horizontal .form-group:before,
5597 .form-horizontal .form-group:before,
5598 .form-horizontal .form-group:after,
5598 .form-horizontal .form-group:after,
5599 .btn-toolbar:before,
5599 .btn-toolbar:before,
5600 .btn-toolbar:after,
5600 .btn-toolbar:after,
5601 .btn-group-vertical > .btn-group:before,
5601 .btn-group-vertical > .btn-group:before,
5602 .btn-group-vertical > .btn-group:after,
5602 .btn-group-vertical > .btn-group:after,
5603 .nav:before,
5603 .nav:before,
5604 .nav:after,
5604 .nav:after,
5605 .navbar:before,
5605 .navbar:before,
5606 .navbar:after,
5606 .navbar:after,
5607 .navbar-header:before,
5607 .navbar-header:before,
5608 .navbar-header:after,
5608 .navbar-header:after,
5609 .navbar-collapse:before,
5609 .navbar-collapse:before,
5610 .navbar-collapse:after,
5610 .navbar-collapse:after,
5611 .pager:before,
5611 .pager:before,
5612 .pager:after,
5612 .pager:after,
5613 .panel-body:before,
5613 .panel-body:before,
5614 .panel-body:after,
5614 .panel-body:after,
5615 .modal-footer:before,
5615 .modal-footer:before,
5616 .modal-footer:after {
5616 .modal-footer:after {
5617 content: " ";
5617 content: " ";
5618 display: table;
5618 display: table;
5619 }
5619 }
5620 .clearfix:after,
5620 .clearfix:after,
5621 .container:after,
5621 .container:after,
5622 .container-fluid:after,
5622 .container-fluid:after,
5623 .row:after,
5623 .row:after,
5624 .form-horizontal .form-group:after,
5624 .form-horizontal .form-group:after,
5625 .btn-toolbar:after,
5625 .btn-toolbar:after,
5626 .btn-group-vertical > .btn-group:after,
5626 .btn-group-vertical > .btn-group:after,
5627 .nav:after,
5627 .nav:after,
5628 .navbar:after,
5628 .navbar:after,
5629 .navbar-header:after,
5629 .navbar-header:after,
5630 .navbar-collapse:after,
5630 .navbar-collapse:after,
5631 .pager:after,
5631 .pager:after,
5632 .panel-body:after,
5632 .panel-body:after,
5633 .modal-footer:after {
5633 .modal-footer:after {
5634 clear: both;
5634 clear: both;
5635 }
5635 }
5636 .center-block {
5636 .center-block {
5637 display: block;
5637 display: block;
5638 margin-left: auto;
5638 margin-left: auto;
5639 margin-right: auto;
5639 margin-right: auto;
5640 }
5640 }
5641 .pull-right {
5641 .pull-right {
5642 float: right !important;
5642 float: right !important;
5643 }
5643 }
5644 .pull-left {
5644 .pull-left {
5645 float: left !important;
5645 float: left !important;
5646 }
5646 }
5647 .hide {
5647 .hide {
5648 display: none !important;
5648 display: none !important;
5649 }
5649 }
5650 .show {
5650 .show {
5651 display: block !important;
5651 display: block !important;
5652 }
5652 }
5653 .invisible {
5653 .invisible {
5654 visibility: hidden;
5654 visibility: hidden;
5655 }
5655 }
5656 .text-hide {
5656 .text-hide {
5657 font: 0/0 a;
5657 font: 0/0 a;
5658 color: transparent;
5658 color: transparent;
5659 text-shadow: none;
5659 text-shadow: none;
5660 background-color: transparent;
5660 background-color: transparent;
5661 border: 0;
5661 border: 0;
5662 }
5662 }
5663 .hidden {
5663 .hidden {
5664 display: none !important;
5664 display: none !important;
5665 visibility: hidden !important;
5665 visibility: hidden !important;
5666 }
5666 }
5667 .affix {
5667 .affix {
5668 position: fixed;
5668 position: fixed;
5669 }
5669 }
5670 @-ms-viewport {
5670 @-ms-viewport {
5671 width: device-width;
5671 width: device-width;
5672 }
5672 }
5673 .visible-xs,
5673 .visible-xs,
5674 .visible-sm,
5674 .visible-sm,
5675 .visible-md,
5675 .visible-md,
5676 .visible-lg {
5676 .visible-lg {
5677 display: none !important;
5677 display: none !important;
5678 }
5678 }
5679 @media (max-width: 767px) {
5679 @media (max-width: 767px) {
5680 .visible-xs {
5680 .visible-xs {
5681 display: block !important;
5681 display: block !important;
5682 }
5682 }
5683 table.visible-xs {
5683 table.visible-xs {
5684 display: table;
5684 display: table;
5685 }
5685 }
5686 tr.visible-xs {
5686 tr.visible-xs {
5687 display: table-row !important;
5687 display: table-row !important;
5688 }
5688 }
5689 th.visible-xs,
5689 th.visible-xs,
5690 td.visible-xs {
5690 td.visible-xs {
5691 display: table-cell !important;
5691 display: table-cell !important;
5692 }
5692 }
5693 }
5693 }
5694 @media (min-width: 768px) and (max-width: 991px) {
5694 @media (min-width: 768px) and (max-width: 991px) {
5695 .visible-sm {
5695 .visible-sm {
5696 display: block !important;
5696 display: block !important;
5697 }
5697 }
5698 table.visible-sm {
5698 table.visible-sm {
5699 display: table;
5699 display: table;
5700 }
5700 }
5701 tr.visible-sm {
5701 tr.visible-sm {
5702 display: table-row !important;
5702 display: table-row !important;
5703 }
5703 }
5704 th.visible-sm,
5704 th.visible-sm,
5705 td.visible-sm {
5705 td.visible-sm {
5706 display: table-cell !important;
5706 display: table-cell !important;
5707 }
5707 }
5708 }
5708 }
5709 @media (min-width: 992px) and (max-width: 1199px) {
5709 @media (min-width: 992px) and (max-width: 1199px) {
5710 .visible-md {
5710 .visible-md {
5711 display: block !important;
5711 display: block !important;
5712 }
5712 }
5713 table.visible-md {
5713 table.visible-md {
5714 display: table;
5714 display: table;
5715 }
5715 }
5716 tr.visible-md {
5716 tr.visible-md {
5717 display: table-row !important;
5717 display: table-row !important;
5718 }
5718 }
5719 th.visible-md,
5719 th.visible-md,
5720 td.visible-md {
5720 td.visible-md {
5721 display: table-cell !important;
5721 display: table-cell !important;
5722 }
5722 }
5723 }
5723 }
5724 @media (min-width: 1200px) {
5724 @media (min-width: 1200px) {
5725 .visible-lg {
5725 .visible-lg {
5726 display: block !important;
5726 display: block !important;
5727 }
5727 }
5728 table.visible-lg {
5728 table.visible-lg {
5729 display: table;
5729 display: table;
5730 }
5730 }
5731 tr.visible-lg {
5731 tr.visible-lg {
5732 display: table-row !important;
5732 display: table-row !important;
5733 }
5733 }
5734 th.visible-lg,
5734 th.visible-lg,
5735 td.visible-lg {
5735 td.visible-lg {
5736 display: table-cell !important;
5736 display: table-cell !important;
5737 }
5737 }
5738 }
5738 }
5739 @media (max-width: 767px) {
5739 @media (max-width: 767px) {
5740 .hidden-xs {
5740 .hidden-xs {
5741 display: none !important;
5741 display: none !important;
5742 }
5742 }
5743 }
5743 }
5744 @media (min-width: 768px) and (max-width: 991px) {
5744 @media (min-width: 768px) and (max-width: 991px) {
5745 .hidden-sm {
5745 .hidden-sm {
5746 display: none !important;
5746 display: none !important;
5747 }
5747 }
5748 }
5748 }
5749 @media (min-width: 992px) and (max-width: 1199px) {
5749 @media (min-width: 992px) and (max-width: 1199px) {
5750 .hidden-md {
5750 .hidden-md {
5751 display: none !important;
5751 display: none !important;
5752 }
5752 }
5753 }
5753 }
5754 @media (min-width: 1200px) {
5754 @media (min-width: 1200px) {
5755 .hidden-lg {
5755 .hidden-lg {
5756 display: none !important;
5756 display: none !important;
5757 }
5757 }
5758 }
5758 }
5759 .visible-print {
5759 .visible-print {
5760 display: none !important;
5760 display: none !important;
5761 }
5761 }
5762 @media print {
5762 @media print {
5763 .visible-print {
5763 .visible-print {
5764 display: block !important;
5764 display: block !important;
5765 }
5765 }
5766 table.visible-print {
5766 table.visible-print {
5767 display: table;
5767 display: table;
5768 }
5768 }
5769 tr.visible-print {
5769 tr.visible-print {
5770 display: table-row !important;
5770 display: table-row !important;
5771 }
5771 }
5772 th.visible-print,
5772 th.visible-print,
5773 td.visible-print {
5773 td.visible-print {
5774 display: table-cell !important;
5774 display: table-cell !important;
5775 }
5775 }
5776 }
5776 }
5777 @media print {
5777 @media print {
5778 .hidden-print {
5778 .hidden-print {
5779 display: none !important;
5779 display: none !important;
5780 }
5780 }
5781 }
5781 }
5782 /*!
5782 /*!
5783 *
5783 *
5784 * Font Awesome
5784 * Font Awesome
5785 *
5785 *
5786 */
5786 */
5787 /*!
5787 /*!
5788 * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
5788 * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
5789 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5789 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5790 */
5790 */
5791 /* FONT PATH
5791 /* FONT PATH
5792 * -------------------------- */
5792 * -------------------------- */
5793 @font-face {
5793 @font-face {
5794 font-family: 'FontAwesome';
5794 font-family: 'FontAwesome';
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
5797 font-weight: normal;
5797 font-weight: normal;
5798 font-style: normal;
5798 font-style: normal;
5799 }
5799 }
5800 .fa {
5800 .fa {
5801 display: inline-block;
5801 display: inline-block;
5802 font: normal normal normal 14px/1 FontAwesome;
5802 font: normal normal normal 14px/1 FontAwesome;
5803 font-size: inherit;
5803 font-size: inherit;
5804 text-rendering: auto;
5804 text-rendering: auto;
5805 -webkit-font-smoothing: antialiased;
5805 -webkit-font-smoothing: antialiased;
5806 -moz-osx-font-smoothing: grayscale;
5806 -moz-osx-font-smoothing: grayscale;
5807 }
5807 }
5808 /* makes the font 33% larger relative to the icon container */
5808 /* makes the font 33% larger relative to the icon container */
5809 .fa-lg {
5809 .fa-lg {
5810 font-size: 1.33333333em;
5810 font-size: 1.33333333em;
5811 line-height: 0.75em;
5811 line-height: 0.75em;
5812 vertical-align: -15%;
5812 vertical-align: -15%;
5813 }
5813 }
5814 .fa-2x {
5814 .fa-2x {
5815 font-size: 2em;
5815 font-size: 2em;
5816 }
5816 }
5817 .fa-3x {
5817 .fa-3x {
5818 font-size: 3em;
5818 font-size: 3em;
5819 }
5819 }
5820 .fa-4x {
5820 .fa-4x {
5821 font-size: 4em;
5821 font-size: 4em;
5822 }
5822 }
5823 .fa-5x {
5823 .fa-5x {
5824 font-size: 5em;
5824 font-size: 5em;
5825 }
5825 }
5826 .fa-fw {
5826 .fa-fw {
5827 width: 1.28571429em;
5827 width: 1.28571429em;
5828 text-align: center;
5828 text-align: center;
5829 }
5829 }
5830 .fa-ul {
5830 .fa-ul {
5831 padding-left: 0;
5831 padding-left: 0;
5832 margin-left: 2.14285714em;
5832 margin-left: 2.14285714em;
5833 list-style-type: none;
5833 list-style-type: none;
5834 }
5834 }
5835 .fa-ul > li {
5835 .fa-ul > li {
5836 position: relative;
5836 position: relative;
5837 }
5837 }
5838 .fa-li {
5838 .fa-li {
5839 position: absolute;
5839 position: absolute;
5840 left: -2.14285714em;
5840 left: -2.14285714em;
5841 width: 2.14285714em;
5841 width: 2.14285714em;
5842 top: 0.14285714em;
5842 top: 0.14285714em;
5843 text-align: center;
5843 text-align: center;
5844 }
5844 }
5845 .fa-li.fa-lg {
5845 .fa-li.fa-lg {
5846 left: -1.85714286em;
5846 left: -1.85714286em;
5847 }
5847 }
5848 .fa-border {
5848 .fa-border {
5849 padding: .2em .25em .15em;
5849 padding: .2em .25em .15em;
5850 border: solid 0.08em #eeeeee;
5850 border: solid 0.08em #eeeeee;
5851 border-radius: .1em;
5851 border-radius: .1em;
5852 }
5852 }
5853 .pull-right {
5853 .pull-right {
5854 float: right;
5854 float: right;
5855 }
5855 }
5856 .pull-left {
5856 .pull-left {
5857 float: left;
5857 float: left;
5858 }
5858 }
5859 .fa.pull-left {
5859 .fa.pull-left {
5860 margin-right: .3em;
5860 margin-right: .3em;
5861 }
5861 }
5862 .fa.pull-right {
5862 .fa.pull-right {
5863 margin-left: .3em;
5863 margin-left: .3em;
5864 }
5864 }
5865 .fa-spin {
5865 .fa-spin {
5866 -webkit-animation: fa-spin 2s infinite linear;
5866 -webkit-animation: fa-spin 2s infinite linear;
5867 animation: fa-spin 2s infinite linear;
5867 animation: fa-spin 2s infinite linear;
5868 }
5868 }
5869 @-webkit-keyframes fa-spin {
5869 @-webkit-keyframes fa-spin {
5870 0% {
5870 0% {
5871 -webkit-transform: rotate(0deg);
5871 -webkit-transform: rotate(0deg);
5872 transform: rotate(0deg);
5872 transform: rotate(0deg);
5873 }
5873 }
5874 100% {
5874 100% {
5875 -webkit-transform: rotate(359deg);
5875 -webkit-transform: rotate(359deg);
5876 transform: rotate(359deg);
5876 transform: rotate(359deg);
5877 }
5877 }
5878 }
5878 }
5879 @keyframes fa-spin {
5879 @keyframes fa-spin {
5880 0% {
5880 0% {
5881 -webkit-transform: rotate(0deg);
5881 -webkit-transform: rotate(0deg);
5882 transform: rotate(0deg);
5882 transform: rotate(0deg);
5883 }
5883 }
5884 100% {
5884 100% {
5885 -webkit-transform: rotate(359deg);
5885 -webkit-transform: rotate(359deg);
5886 transform: rotate(359deg);
5886 transform: rotate(359deg);
5887 }
5887 }
5888 }
5888 }
5889 .fa-rotate-90 {
5889 .fa-rotate-90 {
5890 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5890 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5891 -webkit-transform: rotate(90deg);
5891 -webkit-transform: rotate(90deg);
5892 -ms-transform: rotate(90deg);
5892 -ms-transform: rotate(90deg);
5893 transform: rotate(90deg);
5893 transform: rotate(90deg);
5894 }
5894 }
5895 .fa-rotate-180 {
5895 .fa-rotate-180 {
5896 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5896 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5897 -webkit-transform: rotate(180deg);
5897 -webkit-transform: rotate(180deg);
5898 -ms-transform: rotate(180deg);
5898 -ms-transform: rotate(180deg);
5899 transform: rotate(180deg);
5899 transform: rotate(180deg);
5900 }
5900 }
5901 .fa-rotate-270 {
5901 .fa-rotate-270 {
5902 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5902 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5903 -webkit-transform: rotate(270deg);
5903 -webkit-transform: rotate(270deg);
5904 -ms-transform: rotate(270deg);
5904 -ms-transform: rotate(270deg);
5905 transform: rotate(270deg);
5905 transform: rotate(270deg);
5906 }
5906 }
5907 .fa-flip-horizontal {
5907 .fa-flip-horizontal {
5908 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5908 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5909 -webkit-transform: scale(-1, 1);
5909 -webkit-transform: scale(-1, 1);
5910 -ms-transform: scale(-1, 1);
5910 -ms-transform: scale(-1, 1);
5911 transform: scale(-1, 1);
5911 transform: scale(-1, 1);
5912 }
5912 }
5913 .fa-flip-vertical {
5913 .fa-flip-vertical {
5914 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5914 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5915 -webkit-transform: scale(1, -1);
5915 -webkit-transform: scale(1, -1);
5916 -ms-transform: scale(1, -1);
5916 -ms-transform: scale(1, -1);
5917 transform: scale(1, -1);
5917 transform: scale(1, -1);
5918 }
5918 }
5919 :root .fa-rotate-90,
5919 :root .fa-rotate-90,
5920 :root .fa-rotate-180,
5920 :root .fa-rotate-180,
5921 :root .fa-rotate-270,
5921 :root .fa-rotate-270,
5922 :root .fa-flip-horizontal,
5922 :root .fa-flip-horizontal,
5923 :root .fa-flip-vertical {
5923 :root .fa-flip-vertical {
5924 filter: none;
5924 filter: none;
5925 }
5925 }
5926 .fa-stack {
5926 .fa-stack {
5927 position: relative;
5927 position: relative;
5928 display: inline-block;
5928 display: inline-block;
5929 width: 2em;
5929 width: 2em;
5930 height: 2em;
5930 height: 2em;
5931 line-height: 2em;
5931 line-height: 2em;
5932 vertical-align: middle;
5932 vertical-align: middle;
5933 }
5933 }
5934 .fa-stack-1x,
5934 .fa-stack-1x,
5935 .fa-stack-2x {
5935 .fa-stack-2x {
5936 position: absolute;
5936 position: absolute;
5937 left: 0;
5937 left: 0;
5938 width: 100%;
5938 width: 100%;
5939 text-align: center;
5939 text-align: center;
5940 }
5940 }
5941 .fa-stack-1x {
5941 .fa-stack-1x {
5942 line-height: inherit;
5942 line-height: inherit;
5943 }
5943 }
5944 .fa-stack-2x {
5944 .fa-stack-2x {
5945 font-size: 2em;
5945 font-size: 2em;
5946 }
5946 }
5947 .fa-inverse {
5947 .fa-inverse {
5948 color: #ffffff;
5948 color: #ffffff;
5949 }
5949 }
5950 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5950 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5951 readers do not read off random characters that represent icons */
5951 readers do not read off random characters that represent icons */
5952 .fa-glass:before {
5952 .fa-glass:before {
5953 content: "\f000";
5953 content: "\f000";
5954 }
5954 }
5955 .fa-music:before {
5955 .fa-music:before {
5956 content: "\f001";
5956 content: "\f001";
5957 }
5957 }
5958 .fa-search:before {
5958 .fa-search:before {
5959 content: "\f002";
5959 content: "\f002";
5960 }
5960 }
5961 .fa-envelope-o:before {
5961 .fa-envelope-o:before {
5962 content: "\f003";
5962 content: "\f003";
5963 }
5963 }
5964 .fa-heart:before {
5964 .fa-heart:before {
5965 content: "\f004";
5965 content: "\f004";
5966 }
5966 }
5967 .fa-star:before {
5967 .fa-star:before {
5968 content: "\f005";
5968 content: "\f005";
5969 }
5969 }
5970 .fa-star-o:before {
5970 .fa-star-o:before {
5971 content: "\f006";
5971 content: "\f006";
5972 }
5972 }
5973 .fa-user:before {
5973 .fa-user:before {
5974 content: "\f007";
5974 content: "\f007";
5975 }
5975 }
5976 .fa-film:before {
5976 .fa-film:before {
5977 content: "\f008";
5977 content: "\f008";
5978 }
5978 }
5979 .fa-th-large:before {
5979 .fa-th-large:before {
5980 content: "\f009";
5980 content: "\f009";
5981 }
5981 }
5982 .fa-th:before {
5982 .fa-th:before {
5983 content: "\f00a";
5983 content: "\f00a";
5984 }
5984 }
5985 .fa-th-list:before {
5985 .fa-th-list:before {
5986 content: "\f00b";
5986 content: "\f00b";
5987 }
5987 }
5988 .fa-check:before {
5988 .fa-check:before {
5989 content: "\f00c";
5989 content: "\f00c";
5990 }
5990 }
5991 .fa-remove:before,
5991 .fa-remove:before,
5992 .fa-close:before,
5992 .fa-close:before,
5993 .fa-times:before {
5993 .fa-times:before {
5994 content: "\f00d";
5994 content: "\f00d";
5995 }
5995 }
5996 .fa-search-plus:before {
5996 .fa-search-plus:before {
5997 content: "\f00e";
5997 content: "\f00e";
5998 }
5998 }
5999 .fa-search-minus:before {
5999 .fa-search-minus:before {
6000 content: "\f010";
6000 content: "\f010";
6001 }
6001 }
6002 .fa-power-off:before {
6002 .fa-power-off:before {
6003 content: "\f011";
6003 content: "\f011";
6004 }
6004 }
6005 .fa-signal:before {
6005 .fa-signal:before {
6006 content: "\f012";
6006 content: "\f012";
6007 }
6007 }
6008 .fa-gear:before,
6008 .fa-gear:before,
6009 .fa-cog:before {
6009 .fa-cog:before {
6010 content: "\f013";
6010 content: "\f013";
6011 }
6011 }
6012 .fa-trash-o:before {
6012 .fa-trash-o:before {
6013 content: "\f014";
6013 content: "\f014";
6014 }
6014 }
6015 .fa-home:before {
6015 .fa-home:before {
6016 content: "\f015";
6016 content: "\f015";
6017 }
6017 }
6018 .fa-file-o:before {
6018 .fa-file-o:before {
6019 content: "\f016";
6019 content: "\f016";
6020 }
6020 }
6021 .fa-clock-o:before {
6021 .fa-clock-o:before {
6022 content: "\f017";
6022 content: "\f017";
6023 }
6023 }
6024 .fa-road:before {
6024 .fa-road:before {
6025 content: "\f018";
6025 content: "\f018";
6026 }
6026 }
6027 .fa-download:before {
6027 .fa-download:before {
6028 content: "\f019";
6028 content: "\f019";
6029 }
6029 }
6030 .fa-arrow-circle-o-down:before {
6030 .fa-arrow-circle-o-down:before {
6031 content: "\f01a";
6031 content: "\f01a";
6032 }
6032 }
6033 .fa-arrow-circle-o-up:before {
6033 .fa-arrow-circle-o-up:before {
6034 content: "\f01b";
6034 content: "\f01b";
6035 }
6035 }
6036 .fa-inbox:before {
6036 .fa-inbox:before {
6037 content: "\f01c";
6037 content: "\f01c";
6038 }
6038 }
6039 .fa-play-circle-o:before {
6039 .fa-play-circle-o:before {
6040 content: "\f01d";
6040 content: "\f01d";
6041 }
6041 }
6042 .fa-rotate-right:before,
6042 .fa-rotate-right:before,
6043 .fa-repeat:before {
6043 .fa-repeat:before {
6044 content: "\f01e";
6044 content: "\f01e";
6045 }
6045 }
6046 .fa-refresh:before {
6046 .fa-refresh:before {
6047 content: "\f021";
6047 content: "\f021";
6048 }
6048 }
6049 .fa-list-alt:before {
6049 .fa-list-alt:before {
6050 content: "\f022";
6050 content: "\f022";
6051 }
6051 }
6052 .fa-lock:before {
6052 .fa-lock:before {
6053 content: "\f023";
6053 content: "\f023";
6054 }
6054 }
6055 .fa-flag:before {
6055 .fa-flag:before {
6056 content: "\f024";
6056 content: "\f024";
6057 }
6057 }
6058 .fa-headphones:before {
6058 .fa-headphones:before {
6059 content: "\f025";
6059 content: "\f025";
6060 }
6060 }
6061 .fa-volume-off:before {
6061 .fa-volume-off:before {
6062 content: "\f026";
6062 content: "\f026";
6063 }
6063 }
6064 .fa-volume-down:before {
6064 .fa-volume-down:before {
6065 content: "\f027";
6065 content: "\f027";
6066 }
6066 }
6067 .fa-volume-up:before {
6067 .fa-volume-up:before {
6068 content: "\f028";
6068 content: "\f028";
6069 }
6069 }
6070 .fa-qrcode:before {
6070 .fa-qrcode:before {
6071 content: "\f029";
6071 content: "\f029";
6072 }
6072 }
6073 .fa-barcode:before {
6073 .fa-barcode:before {
6074 content: "\f02a";
6074 content: "\f02a";
6075 }
6075 }
6076 .fa-tag:before {
6076 .fa-tag:before {
6077 content: "\f02b";
6077 content: "\f02b";
6078 }
6078 }
6079 .fa-tags:before {
6079 .fa-tags:before {
6080 content: "\f02c";
6080 content: "\f02c";
6081 }
6081 }
6082 .fa-book:before {
6082 .fa-book:before {
6083 content: "\f02d";
6083 content: "\f02d";
6084 }
6084 }
6085 .fa-bookmark:before {
6085 .fa-bookmark:before {
6086 content: "\f02e";
6086 content: "\f02e";
6087 }
6087 }
6088 .fa-print:before {
6088 .fa-print:before {
6089 content: "\f02f";
6089 content: "\f02f";
6090 }
6090 }
6091 .fa-camera:before {
6091 .fa-camera:before {
6092 content: "\f030";
6092 content: "\f030";
6093 }
6093 }
6094 .fa-font:before {
6094 .fa-font:before {
6095 content: "\f031";
6095 content: "\f031";
6096 }
6096 }
6097 .fa-bold:before {
6097 .fa-bold:before {
6098 content: "\f032";
6098 content: "\f032";
6099 }
6099 }
6100 .fa-italic:before {
6100 .fa-italic:before {
6101 content: "\f033";
6101 content: "\f033";
6102 }
6102 }
6103 .fa-text-height:before {
6103 .fa-text-height:before {
6104 content: "\f034";
6104 content: "\f034";
6105 }
6105 }
6106 .fa-text-width:before {
6106 .fa-text-width:before {
6107 content: "\f035";
6107 content: "\f035";
6108 }
6108 }
6109 .fa-align-left:before {
6109 .fa-align-left:before {
6110 content: "\f036";
6110 content: "\f036";
6111 }
6111 }
6112 .fa-align-center:before {
6112 .fa-align-center:before {
6113 content: "\f037";
6113 content: "\f037";
6114 }
6114 }
6115 .fa-align-right:before {
6115 .fa-align-right:before {
6116 content: "\f038";
6116 content: "\f038";
6117 }
6117 }
6118 .fa-align-justify:before {
6118 .fa-align-justify:before {
6119 content: "\f039";
6119 content: "\f039";
6120 }
6120 }
6121 .fa-list:before {
6121 .fa-list:before {
6122 content: "\f03a";
6122 content: "\f03a";
6123 }
6123 }
6124 .fa-dedent:before,
6124 .fa-dedent:before,
6125 .fa-outdent:before {
6125 .fa-outdent:before {
6126 content: "\f03b";
6126 content: "\f03b";
6127 }
6127 }
6128 .fa-indent:before {
6128 .fa-indent:before {
6129 content: "\f03c";
6129 content: "\f03c";
6130 }
6130 }
6131 .fa-video-camera:before {
6131 .fa-video-camera:before {
6132 content: "\f03d";
6132 content: "\f03d";
6133 }
6133 }
6134 .fa-photo:before,
6134 .fa-photo:before,
6135 .fa-image:before,
6135 .fa-image:before,
6136 .fa-picture-o:before {
6136 .fa-picture-o:before {
6137 content: "\f03e";
6137 content: "\f03e";
6138 }
6138 }
6139 .fa-pencil:before {
6139 .fa-pencil:before {
6140 content: "\f040";
6140 content: "\f040";
6141 }
6141 }
6142 .fa-map-marker:before {
6142 .fa-map-marker:before {
6143 content: "\f041";
6143 content: "\f041";
6144 }
6144 }
6145 .fa-adjust:before {
6145 .fa-adjust:before {
6146 content: "\f042";
6146 content: "\f042";
6147 }
6147 }
6148 .fa-tint:before {
6148 .fa-tint:before {
6149 content: "\f043";
6149 content: "\f043";
6150 }
6150 }
6151 .fa-edit:before,
6151 .fa-edit:before,
6152 .fa-pencil-square-o:before {
6152 .fa-pencil-square-o:before {
6153 content: "\f044";
6153 content: "\f044";
6154 }
6154 }
6155 .fa-share-square-o:before {
6155 .fa-share-square-o:before {
6156 content: "\f045";
6156 content: "\f045";
6157 }
6157 }
6158 .fa-check-square-o:before {
6158 .fa-check-square-o:before {
6159 content: "\f046";
6159 content: "\f046";
6160 }
6160 }
6161 .fa-arrows:before {
6161 .fa-arrows:before {
6162 content: "\f047";
6162 content: "\f047";
6163 }
6163 }
6164 .fa-step-backward:before {
6164 .fa-step-backward:before {
6165 content: "\f048";
6165 content: "\f048";
6166 }
6166 }
6167 .fa-fast-backward:before {
6167 .fa-fast-backward:before {
6168 content: "\f049";
6168 content: "\f049";
6169 }
6169 }
6170 .fa-backward:before {
6170 .fa-backward:before {
6171 content: "\f04a";
6171 content: "\f04a";
6172 }
6172 }
6173 .fa-play:before {
6173 .fa-play:before {
6174 content: "\f04b";
6174 content: "\f04b";
6175 }
6175 }
6176 .fa-pause:before {
6176 .fa-pause:before {
6177 content: "\f04c";
6177 content: "\f04c";
6178 }
6178 }
6179 .fa-stop:before {
6179 .fa-stop:before {
6180 content: "\f04d";
6180 content: "\f04d";
6181 }
6181 }
6182 .fa-forward:before {
6182 .fa-forward:before {
6183 content: "\f04e";
6183 content: "\f04e";
6184 }
6184 }
6185 .fa-fast-forward:before {
6185 .fa-fast-forward:before {
6186 content: "\f050";
6186 content: "\f050";
6187 }
6187 }
6188 .fa-step-forward:before {
6188 .fa-step-forward:before {
6189 content: "\f051";
6189 content: "\f051";
6190 }
6190 }
6191 .fa-eject:before {
6191 .fa-eject:before {
6192 content: "\f052";
6192 content: "\f052";
6193 }
6193 }
6194 .fa-chevron-left:before {
6194 .fa-chevron-left:before {
6195 content: "\f053";
6195 content: "\f053";
6196 }
6196 }
6197 .fa-chevron-right:before {
6197 .fa-chevron-right:before {
6198 content: "\f054";
6198 content: "\f054";
6199 }
6199 }
6200 .fa-plus-circle:before {
6200 .fa-plus-circle:before {
6201 content: "\f055";
6201 content: "\f055";
6202 }
6202 }
6203 .fa-minus-circle:before {
6203 .fa-minus-circle:before {
6204 content: "\f056";
6204 content: "\f056";
6205 }
6205 }
6206 .fa-times-circle:before {
6206 .fa-times-circle:before {
6207 content: "\f057";
6207 content: "\f057";
6208 }
6208 }
6209 .fa-check-circle:before {
6209 .fa-check-circle:before {
6210 content: "\f058";
6210 content: "\f058";
6211 }
6211 }
6212 .fa-question-circle:before {
6212 .fa-question-circle:before {
6213 content: "\f059";
6213 content: "\f059";
6214 }
6214 }
6215 .fa-info-circle:before {
6215 .fa-info-circle:before {
6216 content: "\f05a";
6216 content: "\f05a";
6217 }
6217 }
6218 .fa-crosshairs:before {
6218 .fa-crosshairs:before {
6219 content: "\f05b";
6219 content: "\f05b";
6220 }
6220 }
6221 .fa-times-circle-o:before {
6221 .fa-times-circle-o:before {
6222 content: "\f05c";
6222 content: "\f05c";
6223 }
6223 }
6224 .fa-check-circle-o:before {
6224 .fa-check-circle-o:before {
6225 content: "\f05d";
6225 content: "\f05d";
6226 }
6226 }
6227 .fa-ban:before {
6227 .fa-ban:before {
6228 content: "\f05e";
6228 content: "\f05e";
6229 }
6229 }
6230 .fa-arrow-left:before {
6230 .fa-arrow-left:before {
6231 content: "\f060";
6231 content: "\f060";
6232 }
6232 }
6233 .fa-arrow-right:before {
6233 .fa-arrow-right:before {
6234 content: "\f061";
6234 content: "\f061";
6235 }
6235 }
6236 .fa-arrow-up:before {
6236 .fa-arrow-up:before {
6237 content: "\f062";
6237 content: "\f062";
6238 }
6238 }
6239 .fa-arrow-down:before {
6239 .fa-arrow-down:before {
6240 content: "\f063";
6240 content: "\f063";
6241 }
6241 }
6242 .fa-mail-forward:before,
6242 .fa-mail-forward:before,
6243 .fa-share:before {
6243 .fa-share:before {
6244 content: "\f064";
6244 content: "\f064";
6245 }
6245 }
6246 .fa-expand:before {
6246 .fa-expand:before {
6247 content: "\f065";
6247 content: "\f065";
6248 }
6248 }
6249 .fa-compress:before {
6249 .fa-compress:before {
6250 content: "\f066";
6250 content: "\f066";
6251 }
6251 }
6252 .fa-plus:before {
6252 .fa-plus:before {
6253 content: "\f067";
6253 content: "\f067";
6254 }
6254 }
6255 .fa-minus:before {
6255 .fa-minus:before {
6256 content: "\f068";
6256 content: "\f068";
6257 }
6257 }
6258 .fa-asterisk:before {
6258 .fa-asterisk:before {
6259 content: "\f069";
6259 content: "\f069";
6260 }
6260 }
6261 .fa-exclamation-circle:before {
6261 .fa-exclamation-circle:before {
6262 content: "\f06a";
6262 content: "\f06a";
6263 }
6263 }
6264 .fa-gift:before {
6264 .fa-gift:before {
6265 content: "\f06b";
6265 content: "\f06b";
6266 }
6266 }
6267 .fa-leaf:before {
6267 .fa-leaf:before {
6268 content: "\f06c";
6268 content: "\f06c";
6269 }
6269 }
6270 .fa-fire:before {
6270 .fa-fire:before {
6271 content: "\f06d";
6271 content: "\f06d";
6272 }
6272 }
6273 .fa-eye:before {
6273 .fa-eye:before {
6274 content: "\f06e";
6274 content: "\f06e";
6275 }
6275 }
6276 .fa-eye-slash:before {
6276 .fa-eye-slash:before {
6277 content: "\f070";
6277 content: "\f070";
6278 }
6278 }
6279 .fa-warning:before,
6279 .fa-warning:before,
6280 .fa-exclamation-triangle:before {
6280 .fa-exclamation-triangle:before {
6281 content: "\f071";
6281 content: "\f071";
6282 }
6282 }
6283 .fa-plane:before {
6283 .fa-plane:before {
6284 content: "\f072";
6284 content: "\f072";
6285 }
6285 }
6286 .fa-calendar:before {
6286 .fa-calendar:before {
6287 content: "\f073";
6287 content: "\f073";
6288 }
6288 }
6289 .fa-random:before {
6289 .fa-random:before {
6290 content: "\f074";
6290 content: "\f074";
6291 }
6291 }
6292 .fa-comment:before {
6292 .fa-comment:before {
6293 content: "\f075";
6293 content: "\f075";
6294 }
6294 }
6295 .fa-magnet:before {
6295 .fa-magnet:before {
6296 content: "\f076";
6296 content: "\f076";
6297 }
6297 }
6298 .fa-chevron-up:before {
6298 .fa-chevron-up:before {
6299 content: "\f077";
6299 content: "\f077";
6300 }
6300 }
6301 .fa-chevron-down:before {
6301 .fa-chevron-down:before {
6302 content: "\f078";
6302 content: "\f078";
6303 }
6303 }
6304 .fa-retweet:before {
6304 .fa-retweet:before {
6305 content: "\f079";
6305 content: "\f079";
6306 }
6306 }
6307 .fa-shopping-cart:before {
6307 .fa-shopping-cart:before {
6308 content: "\f07a";
6308 content: "\f07a";
6309 }
6309 }
6310 .fa-folder:before {
6310 .fa-folder:before {
6311 content: "\f07b";
6311 content: "\f07b";
6312 }
6312 }
6313 .fa-folder-open:before {
6313 .fa-folder-open:before {
6314 content: "\f07c";
6314 content: "\f07c";
6315 }
6315 }
6316 .fa-arrows-v:before {
6316 .fa-arrows-v:before {
6317 content: "\f07d";
6317 content: "\f07d";
6318 }
6318 }
6319 .fa-arrows-h:before {
6319 .fa-arrows-h:before {
6320 content: "\f07e";
6320 content: "\f07e";
6321 }
6321 }
6322 .fa-bar-chart-o:before,
6322 .fa-bar-chart-o:before,
6323 .fa-bar-chart:before {
6323 .fa-bar-chart:before {
6324 content: "\f080";
6324 content: "\f080";
6325 }
6325 }
6326 .fa-twitter-square:before {
6326 .fa-twitter-square:before {
6327 content: "\f081";
6327 content: "\f081";
6328 }
6328 }
6329 .fa-facebook-square:before {
6329 .fa-facebook-square:before {
6330 content: "\f082";
6330 content: "\f082";
6331 }
6331 }
6332 .fa-camera-retro:before {
6332 .fa-camera-retro:before {
6333 content: "\f083";
6333 content: "\f083";
6334 }
6334 }
6335 .fa-key:before {
6335 .fa-key:before {
6336 content: "\f084";
6336 content: "\f084";
6337 }
6337 }
6338 .fa-gears:before,
6338 .fa-gears:before,
6339 .fa-cogs:before {
6339 .fa-cogs:before {
6340 content: "\f085";
6340 content: "\f085";
6341 }
6341 }
6342 .fa-comments:before {
6342 .fa-comments:before {
6343 content: "\f086";
6343 content: "\f086";
6344 }
6344 }
6345 .fa-thumbs-o-up:before {
6345 .fa-thumbs-o-up:before {
6346 content: "\f087";
6346 content: "\f087";
6347 }
6347 }
6348 .fa-thumbs-o-down:before {
6348 .fa-thumbs-o-down:before {
6349 content: "\f088";
6349 content: "\f088";
6350 }
6350 }
6351 .fa-star-half:before {
6351 .fa-star-half:before {
6352 content: "\f089";
6352 content: "\f089";
6353 }
6353 }
6354 .fa-heart-o:before {
6354 .fa-heart-o:before {
6355 content: "\f08a";
6355 content: "\f08a";
6356 }
6356 }
6357 .fa-sign-out:before {
6357 .fa-sign-out:before {
6358 content: "\f08b";
6358 content: "\f08b";
6359 }
6359 }
6360 .fa-linkedin-square:before {
6360 .fa-linkedin-square:before {
6361 content: "\f08c";
6361 content: "\f08c";
6362 }
6362 }
6363 .fa-thumb-tack:before {
6363 .fa-thumb-tack:before {
6364 content: "\f08d";
6364 content: "\f08d";
6365 }
6365 }
6366 .fa-external-link:before {
6366 .fa-external-link:before {
6367 content: "\f08e";
6367 content: "\f08e";
6368 }
6368 }
6369 .fa-sign-in:before {
6369 .fa-sign-in:before {
6370 content: "\f090";
6370 content: "\f090";
6371 }
6371 }
6372 .fa-trophy:before {
6372 .fa-trophy:before {
6373 content: "\f091";
6373 content: "\f091";
6374 }
6374 }
6375 .fa-github-square:before {
6375 .fa-github-square:before {
6376 content: "\f092";
6376 content: "\f092";
6377 }
6377 }
6378 .fa-upload:before {
6378 .fa-upload:before {
6379 content: "\f093";
6379 content: "\f093";
6380 }
6380 }
6381 .fa-lemon-o:before {
6381 .fa-lemon-o:before {
6382 content: "\f094";
6382 content: "\f094";
6383 }
6383 }
6384 .fa-phone:before {
6384 .fa-phone:before {
6385 content: "\f095";
6385 content: "\f095";
6386 }
6386 }
6387 .fa-square-o:before {
6387 .fa-square-o:before {
6388 content: "\f096";
6388 content: "\f096";
6389 }
6389 }
6390 .fa-bookmark-o:before {
6390 .fa-bookmark-o:before {
6391 content: "\f097";
6391 content: "\f097";
6392 }
6392 }
6393 .fa-phone-square:before {
6393 .fa-phone-square:before {
6394 content: "\f098";
6394 content: "\f098";
6395 }
6395 }
6396 .fa-twitter:before {
6396 .fa-twitter:before {
6397 content: "\f099";
6397 content: "\f099";
6398 }
6398 }
6399 .fa-facebook:before {
6399 .fa-facebook:before {
6400 content: "\f09a";
6400 content: "\f09a";
6401 }
6401 }
6402 .fa-github:before {
6402 .fa-github:before {
6403 content: "\f09b";
6403 content: "\f09b";
6404 }
6404 }
6405 .fa-unlock:before {
6405 .fa-unlock:before {
6406 content: "\f09c";
6406 content: "\f09c";
6407 }
6407 }
6408 .fa-credit-card:before {
6408 .fa-credit-card:before {
6409 content: "\f09d";
6409 content: "\f09d";
6410 }
6410 }
6411 .fa-rss:before {
6411 .fa-rss:before {
6412 content: "\f09e";
6412 content: "\f09e";
6413 }
6413 }
6414 .fa-hdd-o:before {
6414 .fa-hdd-o:before {
6415 content: "\f0a0";
6415 content: "\f0a0";
6416 }
6416 }
6417 .fa-bullhorn:before {
6417 .fa-bullhorn:before {
6418 content: "\f0a1";
6418 content: "\f0a1";
6419 }
6419 }
6420 .fa-bell:before {
6420 .fa-bell:before {
6421 content: "\f0f3";
6421 content: "\f0f3";
6422 }
6422 }
6423 .fa-certificate:before {
6423 .fa-certificate:before {
6424 content: "\f0a3";
6424 content: "\f0a3";
6425 }
6425 }
6426 .fa-hand-o-right:before {
6426 .fa-hand-o-right:before {
6427 content: "\f0a4";
6427 content: "\f0a4";
6428 }
6428 }
6429 .fa-hand-o-left:before {
6429 .fa-hand-o-left:before {
6430 content: "\f0a5";
6430 content: "\f0a5";
6431 }
6431 }
6432 .fa-hand-o-up:before {
6432 .fa-hand-o-up:before {
6433 content: "\f0a6";
6433 content: "\f0a6";
6434 }
6434 }
6435 .fa-hand-o-down:before {
6435 .fa-hand-o-down:before {
6436 content: "\f0a7";
6436 content: "\f0a7";
6437 }
6437 }
6438 .fa-arrow-circle-left:before {
6438 .fa-arrow-circle-left:before {
6439 content: "\f0a8";
6439 content: "\f0a8";
6440 }
6440 }
6441 .fa-arrow-circle-right:before {
6441 .fa-arrow-circle-right:before {
6442 content: "\f0a9";
6442 content: "\f0a9";
6443 }
6443 }
6444 .fa-arrow-circle-up:before {
6444 .fa-arrow-circle-up:before {
6445 content: "\f0aa";
6445 content: "\f0aa";
6446 }
6446 }
6447 .fa-arrow-circle-down:before {
6447 .fa-arrow-circle-down:before {
6448 content: "\f0ab";
6448 content: "\f0ab";
6449 }
6449 }
6450 .fa-globe:before {
6450 .fa-globe:before {
6451 content: "\f0ac";
6451 content: "\f0ac";
6452 }
6452 }
6453 .fa-wrench:before {
6453 .fa-wrench:before {
6454 content: "\f0ad";
6454 content: "\f0ad";
6455 }
6455 }
6456 .fa-tasks:before {
6456 .fa-tasks:before {
6457 content: "\f0ae";
6457 content: "\f0ae";
6458 }
6458 }
6459 .fa-filter:before {
6459 .fa-filter:before {
6460 content: "\f0b0";
6460 content: "\f0b0";
6461 }
6461 }
6462 .fa-briefcase:before {
6462 .fa-briefcase:before {
6463 content: "\f0b1";
6463 content: "\f0b1";
6464 }
6464 }
6465 .fa-arrows-alt:before {
6465 .fa-arrows-alt:before {
6466 content: "\f0b2";
6466 content: "\f0b2";
6467 }
6467 }
6468 .fa-group:before,
6468 .fa-group:before,
6469 .fa-users:before {
6469 .fa-users:before {
6470 content: "\f0c0";
6470 content: "\f0c0";
6471 }
6471 }
6472 .fa-chain:before,
6472 .fa-chain:before,
6473 .fa-link:before {
6473 .fa-link:before {
6474 content: "\f0c1";
6474 content: "\f0c1";
6475 }
6475 }
6476 .fa-cloud:before {
6476 .fa-cloud:before {
6477 content: "\f0c2";
6477 content: "\f0c2";
6478 }
6478 }
6479 .fa-flask:before {
6479 .fa-flask:before {
6480 content: "\f0c3";
6480 content: "\f0c3";
6481 }
6481 }
6482 .fa-cut:before,
6482 .fa-cut:before,
6483 .fa-scissors:before {
6483 .fa-scissors:before {
6484 content: "\f0c4";
6484 content: "\f0c4";
6485 }
6485 }
6486 .fa-copy:before,
6486 .fa-copy:before,
6487 .fa-files-o:before {
6487 .fa-files-o:before {
6488 content: "\f0c5";
6488 content: "\f0c5";
6489 }
6489 }
6490 .fa-paperclip:before {
6490 .fa-paperclip:before {
6491 content: "\f0c6";
6491 content: "\f0c6";
6492 }
6492 }
6493 .fa-save:before,
6493 .fa-save:before,
6494 .fa-floppy-o:before {
6494 .fa-floppy-o:before {
6495 content: "\f0c7";
6495 content: "\f0c7";
6496 }
6496 }
6497 .fa-square:before {
6497 .fa-square:before {
6498 content: "\f0c8";
6498 content: "\f0c8";
6499 }
6499 }
6500 .fa-navicon:before,
6500 .fa-navicon:before,
6501 .fa-reorder:before,
6501 .fa-reorder:before,
6502 .fa-bars:before {
6502 .fa-bars:before {
6503 content: "\f0c9";
6503 content: "\f0c9";
6504 }
6504 }
6505 .fa-list-ul:before {
6505 .fa-list-ul:before {
6506 content: "\f0ca";
6506 content: "\f0ca";
6507 }
6507 }
6508 .fa-list-ol:before {
6508 .fa-list-ol:before {
6509 content: "\f0cb";
6509 content: "\f0cb";
6510 }
6510 }
6511 .fa-strikethrough:before {
6511 .fa-strikethrough:before {
6512 content: "\f0cc";
6512 content: "\f0cc";
6513 }
6513 }
6514 .fa-underline:before {
6514 .fa-underline:before {
6515 content: "\f0cd";
6515 content: "\f0cd";
6516 }
6516 }
6517 .fa-table:before {
6517 .fa-table:before {
6518 content: "\f0ce";
6518 content: "\f0ce";
6519 }
6519 }
6520 .fa-magic:before {
6520 .fa-magic:before {
6521 content: "\f0d0";
6521 content: "\f0d0";
6522 }
6522 }
6523 .fa-truck:before {
6523 .fa-truck:before {
6524 content: "\f0d1";
6524 content: "\f0d1";
6525 }
6525 }
6526 .fa-pinterest:before {
6526 .fa-pinterest:before {
6527 content: "\f0d2";
6527 content: "\f0d2";
6528 }
6528 }
6529 .fa-pinterest-square:before {
6529 .fa-pinterest-square:before {
6530 content: "\f0d3";
6530 content: "\f0d3";
6531 }
6531 }
6532 .fa-google-plus-square:before {
6532 .fa-google-plus-square:before {
6533 content: "\f0d4";
6533 content: "\f0d4";
6534 }
6534 }
6535 .fa-google-plus:before {
6535 .fa-google-plus:before {
6536 content: "\f0d5";
6536 content: "\f0d5";
6537 }
6537 }
6538 .fa-money:before {
6538 .fa-money:before {
6539 content: "\f0d6";
6539 content: "\f0d6";
6540 }
6540 }
6541 .fa-caret-down:before {
6541 .fa-caret-down:before {
6542 content: "\f0d7";
6542 content: "\f0d7";
6543 }
6543 }
6544 .fa-caret-up:before {
6544 .fa-caret-up:before {
6545 content: "\f0d8";
6545 content: "\f0d8";
6546 }
6546 }
6547 .fa-caret-left:before {
6547 .fa-caret-left:before {
6548 content: "\f0d9";
6548 content: "\f0d9";
6549 }
6549 }
6550 .fa-caret-right:before {
6550 .fa-caret-right:before {
6551 content: "\f0da";
6551 content: "\f0da";
6552 }
6552 }
6553 .fa-columns:before {
6553 .fa-columns:before {
6554 content: "\f0db";
6554 content: "\f0db";
6555 }
6555 }
6556 .fa-unsorted:before,
6556 .fa-unsorted:before,
6557 .fa-sort:before {
6557 .fa-sort:before {
6558 content: "\f0dc";
6558 content: "\f0dc";
6559 }
6559 }
6560 .fa-sort-down:before,
6560 .fa-sort-down:before,
6561 .fa-sort-desc:before {
6561 .fa-sort-desc:before {
6562 content: "\f0dd";
6562 content: "\f0dd";
6563 }
6563 }
6564 .fa-sort-up:before,
6564 .fa-sort-up:before,
6565 .fa-sort-asc:before {
6565 .fa-sort-asc:before {
6566 content: "\f0de";
6566 content: "\f0de";
6567 }
6567 }
6568 .fa-envelope:before {
6568 .fa-envelope:before {
6569 content: "\f0e0";
6569 content: "\f0e0";
6570 }
6570 }
6571 .fa-linkedin:before {
6571 .fa-linkedin:before {
6572 content: "\f0e1";
6572 content: "\f0e1";
6573 }
6573 }
6574 .fa-rotate-left:before,
6574 .fa-rotate-left:before,
6575 .fa-undo:before {
6575 .fa-undo:before {
6576 content: "\f0e2";
6576 content: "\f0e2";
6577 }
6577 }
6578 .fa-legal:before,
6578 .fa-legal:before,
6579 .fa-gavel:before {
6579 .fa-gavel:before {
6580 content: "\f0e3";
6580 content: "\f0e3";
6581 }
6581 }
6582 .fa-dashboard:before,
6582 .fa-dashboard:before,
6583 .fa-tachometer:before {
6583 .fa-tachometer:before {
6584 content: "\f0e4";
6584 content: "\f0e4";
6585 }
6585 }
6586 .fa-comment-o:before {
6586 .fa-comment-o:before {
6587 content: "\f0e5";
6587 content: "\f0e5";
6588 }
6588 }
6589 .fa-comments-o:before {
6589 .fa-comments-o:before {
6590 content: "\f0e6";
6590 content: "\f0e6";
6591 }
6591 }
6592 .fa-flash:before,
6592 .fa-flash:before,
6593 .fa-bolt:before {
6593 .fa-bolt:before {
6594 content: "\f0e7";
6594 content: "\f0e7";
6595 }
6595 }
6596 .fa-sitemap:before {
6596 .fa-sitemap:before {
6597 content: "\f0e8";
6597 content: "\f0e8";
6598 }
6598 }
6599 .fa-umbrella:before {
6599 .fa-umbrella:before {
6600 content: "\f0e9";
6600 content: "\f0e9";
6601 }
6601 }
6602 .fa-paste:before,
6602 .fa-paste:before,
6603 .fa-clipboard:before {
6603 .fa-clipboard:before {
6604 content: "\f0ea";
6604 content: "\f0ea";
6605 }
6605 }
6606 .fa-lightbulb-o:before {
6606 .fa-lightbulb-o:before {
6607 content: "\f0eb";
6607 content: "\f0eb";
6608 }
6608 }
6609 .fa-exchange:before {
6609 .fa-exchange:before {
6610 content: "\f0ec";
6610 content: "\f0ec";
6611 }
6611 }
6612 .fa-cloud-download:before {
6612 .fa-cloud-download:before {
6613 content: "\f0ed";
6613 content: "\f0ed";
6614 }
6614 }
6615 .fa-cloud-upload:before {
6615 .fa-cloud-upload:before {
6616 content: "\f0ee";
6616 content: "\f0ee";
6617 }
6617 }
6618 .fa-user-md:before {
6618 .fa-user-md:before {
6619 content: "\f0f0";
6619 content: "\f0f0";
6620 }
6620 }
6621 .fa-stethoscope:before {
6621 .fa-stethoscope:before {
6622 content: "\f0f1";
6622 content: "\f0f1";
6623 }
6623 }
6624 .fa-suitcase:before {
6624 .fa-suitcase:before {
6625 content: "\f0f2";
6625 content: "\f0f2";
6626 }
6626 }
6627 .fa-bell-o:before {
6627 .fa-bell-o:before {
6628 content: "\f0a2";
6628 content: "\f0a2";
6629 }
6629 }
6630 .fa-coffee:before {
6630 .fa-coffee:before {
6631 content: "\f0f4";
6631 content: "\f0f4";
6632 }
6632 }
6633 .fa-cutlery:before {
6633 .fa-cutlery:before {
6634 content: "\f0f5";
6634 content: "\f0f5";
6635 }
6635 }
6636 .fa-file-text-o:before {
6636 .fa-file-text-o:before {
6637 content: "\f0f6";
6637 content: "\f0f6";
6638 }
6638 }
6639 .fa-building-o:before {
6639 .fa-building-o:before {
6640 content: "\f0f7";
6640 content: "\f0f7";
6641 }
6641 }
6642 .fa-hospital-o:before {
6642 .fa-hospital-o:before {
6643 content: "\f0f8";
6643 content: "\f0f8";
6644 }
6644 }
6645 .fa-ambulance:before {
6645 .fa-ambulance:before {
6646 content: "\f0f9";
6646 content: "\f0f9";
6647 }
6647 }
6648 .fa-medkit:before {
6648 .fa-medkit:before {
6649 content: "\f0fa";
6649 content: "\f0fa";
6650 }
6650 }
6651 .fa-fighter-jet:before {
6651 .fa-fighter-jet:before {
6652 content: "\f0fb";
6652 content: "\f0fb";
6653 }
6653 }
6654 .fa-beer:before {
6654 .fa-beer:before {
6655 content: "\f0fc";
6655 content: "\f0fc";
6656 }
6656 }
6657 .fa-h-square:before {
6657 .fa-h-square:before {
6658 content: "\f0fd";
6658 content: "\f0fd";
6659 }
6659 }
6660 .fa-plus-square:before {
6660 .fa-plus-square:before {
6661 content: "\f0fe";
6661 content: "\f0fe";
6662 }
6662 }
6663 .fa-angle-double-left:before {
6663 .fa-angle-double-left:before {
6664 content: "\f100";
6664 content: "\f100";
6665 }
6665 }
6666 .fa-angle-double-right:before {
6666 .fa-angle-double-right:before {
6667 content: "\f101";
6667 content: "\f101";
6668 }
6668 }
6669 .fa-angle-double-up:before {
6669 .fa-angle-double-up:before {
6670 content: "\f102";
6670 content: "\f102";
6671 }
6671 }
6672 .fa-angle-double-down:before {
6672 .fa-angle-double-down:before {
6673 content: "\f103";
6673 content: "\f103";
6674 }
6674 }
6675 .fa-angle-left:before {
6675 .fa-angle-left:before {
6676 content: "\f104";
6676 content: "\f104";
6677 }
6677 }
6678 .fa-angle-right:before {
6678 .fa-angle-right:before {
6679 content: "\f105";
6679 content: "\f105";
6680 }
6680 }
6681 .fa-angle-up:before {
6681 .fa-angle-up:before {
6682 content: "\f106";
6682 content: "\f106";
6683 }
6683 }
6684 .fa-angle-down:before {
6684 .fa-angle-down:before {
6685 content: "\f107";
6685 content: "\f107";
6686 }
6686 }
6687 .fa-desktop:before {
6687 .fa-desktop:before {
6688 content: "\f108";
6688 content: "\f108";
6689 }
6689 }
6690 .fa-laptop:before {
6690 .fa-laptop:before {
6691 content: "\f109";
6691 content: "\f109";
6692 }
6692 }
6693 .fa-tablet:before {
6693 .fa-tablet:before {
6694 content: "\f10a";
6694 content: "\f10a";
6695 }
6695 }
6696 .fa-mobile-phone:before,
6696 .fa-mobile-phone:before,
6697 .fa-mobile:before {
6697 .fa-mobile:before {
6698 content: "\f10b";
6698 content: "\f10b";
6699 }
6699 }
6700 .fa-circle-o:before {
6700 .fa-circle-o:before {
6701 content: "\f10c";
6701 content: "\f10c";
6702 }
6702 }
6703 .fa-quote-left:before {
6703 .fa-quote-left:before {
6704 content: "\f10d";
6704 content: "\f10d";
6705 }
6705 }
6706 .fa-quote-right:before {
6706 .fa-quote-right:before {
6707 content: "\f10e";
6707 content: "\f10e";
6708 }
6708 }
6709 .fa-spinner:before {
6709 .fa-spinner:before {
6710 content: "\f110";
6710 content: "\f110";
6711 }
6711 }
6712 .fa-circle:before {
6712 .fa-circle:before {
6713 content: "\f111";
6713 content: "\f111";
6714 }
6714 }
6715 .fa-mail-reply:before,
6715 .fa-mail-reply:before,
6716 .fa-reply:before {
6716 .fa-reply:before {
6717 content: "\f112";
6717 content: "\f112";
6718 }
6718 }
6719 .fa-github-alt:before {
6719 .fa-github-alt:before {
6720 content: "\f113";
6720 content: "\f113";
6721 }
6721 }
6722 .fa-folder-o:before {
6722 .fa-folder-o:before {
6723 content: "\f114";
6723 content: "\f114";
6724 }
6724 }
6725 .fa-folder-open-o:before {
6725 .fa-folder-open-o:before {
6726 content: "\f115";
6726 content: "\f115";
6727 }
6727 }
6728 .fa-smile-o:before {
6728 .fa-smile-o:before {
6729 content: "\f118";
6729 content: "\f118";
6730 }
6730 }
6731 .fa-frown-o:before {
6731 .fa-frown-o:before {
6732 content: "\f119";
6732 content: "\f119";
6733 }
6733 }
6734 .fa-meh-o:before {
6734 .fa-meh-o:before {
6735 content: "\f11a";
6735 content: "\f11a";
6736 }
6736 }
6737 .fa-gamepad:before {
6737 .fa-gamepad:before {
6738 content: "\f11b";
6738 content: "\f11b";
6739 }
6739 }
6740 .fa-keyboard-o:before {
6740 .fa-keyboard-o:before {
6741 content: "\f11c";
6741 content: "\f11c";
6742 }
6742 }
6743 .fa-flag-o:before {
6743 .fa-flag-o:before {
6744 content: "\f11d";
6744 content: "\f11d";
6745 }
6745 }
6746 .fa-flag-checkered:before {
6746 .fa-flag-checkered:before {
6747 content: "\f11e";
6747 content: "\f11e";
6748 }
6748 }
6749 .fa-terminal:before {
6749 .fa-terminal:before {
6750 content: "\f120";
6750 content: "\f120";
6751 }
6751 }
6752 .fa-code:before {
6752 .fa-code:before {
6753 content: "\f121";
6753 content: "\f121";
6754 }
6754 }
6755 .fa-mail-reply-all:before,
6755 .fa-mail-reply-all:before,
6756 .fa-reply-all:before {
6756 .fa-reply-all:before {
6757 content: "\f122";
6757 content: "\f122";
6758 }
6758 }
6759 .fa-star-half-empty:before,
6759 .fa-star-half-empty:before,
6760 .fa-star-half-full:before,
6760 .fa-star-half-full:before,
6761 .fa-star-half-o:before {
6761 .fa-star-half-o:before {
6762 content: "\f123";
6762 content: "\f123";
6763 }
6763 }
6764 .fa-location-arrow:before {
6764 .fa-location-arrow:before {
6765 content: "\f124";
6765 content: "\f124";
6766 }
6766 }
6767 .fa-crop:before {
6767 .fa-crop:before {
6768 content: "\f125";
6768 content: "\f125";
6769 }
6769 }
6770 .fa-code-fork:before {
6770 .fa-code-fork:before {
6771 content: "\f126";
6771 content: "\f126";
6772 }
6772 }
6773 .fa-unlink:before,
6773 .fa-unlink:before,
6774 .fa-chain-broken:before {
6774 .fa-chain-broken:before {
6775 content: "\f127";
6775 content: "\f127";
6776 }
6776 }
6777 .fa-question:before {
6777 .fa-question:before {
6778 content: "\f128";
6778 content: "\f128";
6779 }
6779 }
6780 .fa-info:before {
6780 .fa-info:before {
6781 content: "\f129";
6781 content: "\f129";
6782 }
6782 }
6783 .fa-exclamation:before {
6783 .fa-exclamation:before {
6784 content: "\f12a";
6784 content: "\f12a";
6785 }
6785 }
6786 .fa-superscript:before {
6786 .fa-superscript:before {
6787 content: "\f12b";
6787 content: "\f12b";
6788 }
6788 }
6789 .fa-subscript:before {
6789 .fa-subscript:before {
6790 content: "\f12c";
6790 content: "\f12c";
6791 }
6791 }
6792 .fa-eraser:before {
6792 .fa-eraser:before {
6793 content: "\f12d";
6793 content: "\f12d";
6794 }
6794 }
6795 .fa-puzzle-piece:before {
6795 .fa-puzzle-piece:before {
6796 content: "\f12e";
6796 content: "\f12e";
6797 }
6797 }
6798 .fa-microphone:before {
6798 .fa-microphone:before {
6799 content: "\f130";
6799 content: "\f130";
6800 }
6800 }
6801 .fa-microphone-slash:before {
6801 .fa-microphone-slash:before {
6802 content: "\f131";
6802 content: "\f131";
6803 }
6803 }
6804 .fa-shield:before {
6804 .fa-shield:before {
6805 content: "\f132";
6805 content: "\f132";
6806 }
6806 }
6807 .fa-calendar-o:before {
6807 .fa-calendar-o:before {
6808 content: "\f133";
6808 content: "\f133";
6809 }
6809 }
6810 .fa-fire-extinguisher:before {
6810 .fa-fire-extinguisher:before {
6811 content: "\f134";
6811 content: "\f134";
6812 }
6812 }
6813 .fa-rocket:before {
6813 .fa-rocket:before {
6814 content: "\f135";
6814 content: "\f135";
6815 }
6815 }
6816 .fa-maxcdn:before {
6816 .fa-maxcdn:before {
6817 content: "\f136";
6817 content: "\f136";
6818 }
6818 }
6819 .fa-chevron-circle-left:before {
6819 .fa-chevron-circle-left:before {
6820 content: "\f137";
6820 content: "\f137";
6821 }
6821 }
6822 .fa-chevron-circle-right:before {
6822 .fa-chevron-circle-right:before {
6823 content: "\f138";
6823 content: "\f138";
6824 }
6824 }
6825 .fa-chevron-circle-up:before {
6825 .fa-chevron-circle-up:before {
6826 content: "\f139";
6826 content: "\f139";
6827 }
6827 }
6828 .fa-chevron-circle-down:before {
6828 .fa-chevron-circle-down:before {
6829 content: "\f13a";
6829 content: "\f13a";
6830 }
6830 }
6831 .fa-html5:before {
6831 .fa-html5:before {
6832 content: "\f13b";
6832 content: "\f13b";
6833 }
6833 }
6834 .fa-css3:before {
6834 .fa-css3:before {
6835 content: "\f13c";
6835 content: "\f13c";
6836 }
6836 }
6837 .fa-anchor:before {
6837 .fa-anchor:before {
6838 content: "\f13d";
6838 content: "\f13d";
6839 }
6839 }
6840 .fa-unlock-alt:before {
6840 .fa-unlock-alt:before {
6841 content: "\f13e";
6841 content: "\f13e";
6842 }
6842 }
6843 .fa-bullseye:before {
6843 .fa-bullseye:before {
6844 content: "\f140";
6844 content: "\f140";
6845 }
6845 }
6846 .fa-ellipsis-h:before {
6846 .fa-ellipsis-h:before {
6847 content: "\f141";
6847 content: "\f141";
6848 }
6848 }
6849 .fa-ellipsis-v:before {
6849 .fa-ellipsis-v:before {
6850 content: "\f142";
6850 content: "\f142";
6851 }
6851 }
6852 .fa-rss-square:before {
6852 .fa-rss-square:before {
6853 content: "\f143";
6853 content: "\f143";
6854 }
6854 }
6855 .fa-play-circle:before {
6855 .fa-play-circle:before {
6856 content: "\f144";
6856 content: "\f144";
6857 }
6857 }
6858 .fa-ticket:before {
6858 .fa-ticket:before {
6859 content: "\f145";
6859 content: "\f145";
6860 }
6860 }
6861 .fa-minus-square:before {
6861 .fa-minus-square:before {
6862 content: "\f146";
6862 content: "\f146";
6863 }
6863 }
6864 .fa-minus-square-o:before {
6864 .fa-minus-square-o:before {
6865 content: "\f147";
6865 content: "\f147";
6866 }
6866 }
6867 .fa-level-up:before {
6867 .fa-level-up:before {
6868 content: "\f148";
6868 content: "\f148";
6869 }
6869 }
6870 .fa-level-down:before {
6870 .fa-level-down:before {
6871 content: "\f149";
6871 content: "\f149";
6872 }
6872 }
6873 .fa-check-square:before {
6873 .fa-check-square:before {
6874 content: "\f14a";
6874 content: "\f14a";
6875 }
6875 }
6876 .fa-pencil-square:before {
6876 .fa-pencil-square:before {
6877 content: "\f14b";
6877 content: "\f14b";
6878 }
6878 }
6879 .fa-external-link-square:before {
6879 .fa-external-link-square:before {
6880 content: "\f14c";
6880 content: "\f14c";
6881 }
6881 }
6882 .fa-share-square:before {
6882 .fa-share-square:before {
6883 content: "\f14d";
6883 content: "\f14d";
6884 }
6884 }
6885 .fa-compass:before {
6885 .fa-compass:before {
6886 content: "\f14e";
6886 content: "\f14e";
6887 }
6887 }
6888 .fa-toggle-down:before,
6888 .fa-toggle-down:before,
6889 .fa-caret-square-o-down:before {
6889 .fa-caret-square-o-down:before {
6890 content: "\f150";
6890 content: "\f150";
6891 }
6891 }
6892 .fa-toggle-up:before,
6892 .fa-toggle-up:before,
6893 .fa-caret-square-o-up:before {
6893 .fa-caret-square-o-up:before {
6894 content: "\f151";
6894 content: "\f151";
6895 }
6895 }
6896 .fa-toggle-right:before,
6896 .fa-toggle-right:before,
6897 .fa-caret-square-o-right:before {
6897 .fa-caret-square-o-right:before {
6898 content: "\f152";
6898 content: "\f152";
6899 }
6899 }
6900 .fa-euro:before,
6900 .fa-euro:before,
6901 .fa-eur:before {
6901 .fa-eur:before {
6902 content: "\f153";
6902 content: "\f153";
6903 }
6903 }
6904 .fa-gbp:before {
6904 .fa-gbp:before {
6905 content: "\f154";
6905 content: "\f154";
6906 }
6906 }
6907 .fa-dollar:before,
6907 .fa-dollar:before,
6908 .fa-usd:before {
6908 .fa-usd:before {
6909 content: "\f155";
6909 content: "\f155";
6910 }
6910 }
6911 .fa-rupee:before,
6911 .fa-rupee:before,
6912 .fa-inr:before {
6912 .fa-inr:before {
6913 content: "\f156";
6913 content: "\f156";
6914 }
6914 }
6915 .fa-cny:before,
6915 .fa-cny:before,
6916 .fa-rmb:before,
6916 .fa-rmb:before,
6917 .fa-yen:before,
6917 .fa-yen:before,
6918 .fa-jpy:before {
6918 .fa-jpy:before {
6919 content: "\f157";
6919 content: "\f157";
6920 }
6920 }
6921 .fa-ruble:before,
6921 .fa-ruble:before,
6922 .fa-rouble:before,
6922 .fa-rouble:before,
6923 .fa-rub:before {
6923 .fa-rub:before {
6924 content: "\f158";
6924 content: "\f158";
6925 }
6925 }
6926 .fa-won:before,
6926 .fa-won:before,
6927 .fa-krw:before {
6927 .fa-krw:before {
6928 content: "\f159";
6928 content: "\f159";
6929 }
6929 }
6930 .fa-bitcoin:before,
6930 .fa-bitcoin:before,
6931 .fa-btc:before {
6931 .fa-btc:before {
6932 content: "\f15a";
6932 content: "\f15a";
6933 }
6933 }
6934 .fa-file:before {
6934 .fa-file:before {
6935 content: "\f15b";
6935 content: "\f15b";
6936 }
6936 }
6937 .fa-file-text:before {
6937 .fa-file-text:before {
6938 content: "\f15c";
6938 content: "\f15c";
6939 }
6939 }
6940 .fa-sort-alpha-asc:before {
6940 .fa-sort-alpha-asc:before {
6941 content: "\f15d";
6941 content: "\f15d";
6942 }
6942 }
6943 .fa-sort-alpha-desc:before {
6943 .fa-sort-alpha-desc:before {
6944 content: "\f15e";
6944 content: "\f15e";
6945 }
6945 }
6946 .fa-sort-amount-asc:before {
6946 .fa-sort-amount-asc:before {
6947 content: "\f160";
6947 content: "\f160";
6948 }
6948 }
6949 .fa-sort-amount-desc:before {
6949 .fa-sort-amount-desc:before {
6950 content: "\f161";
6950 content: "\f161";
6951 }
6951 }
6952 .fa-sort-numeric-asc:before {
6952 .fa-sort-numeric-asc:before {
6953 content: "\f162";
6953 content: "\f162";
6954 }
6954 }
6955 .fa-sort-numeric-desc:before {
6955 .fa-sort-numeric-desc:before {
6956 content: "\f163";
6956 content: "\f163";
6957 }
6957 }
6958 .fa-thumbs-up:before {
6958 .fa-thumbs-up:before {
6959 content: "\f164";
6959 content: "\f164";
6960 }
6960 }
6961 .fa-thumbs-down:before {
6961 .fa-thumbs-down:before {
6962 content: "\f165";
6962 content: "\f165";
6963 }
6963 }
6964 .fa-youtube-square:before {
6964 .fa-youtube-square:before {
6965 content: "\f166";
6965 content: "\f166";
6966 }
6966 }
6967 .fa-youtube:before {
6967 .fa-youtube:before {
6968 content: "\f167";
6968 content: "\f167";
6969 }
6969 }
6970 .fa-xing:before {
6970 .fa-xing:before {
6971 content: "\f168";
6971 content: "\f168";
6972 }
6972 }
6973 .fa-xing-square:before {
6973 .fa-xing-square:before {
6974 content: "\f169";
6974 content: "\f169";
6975 }
6975 }
6976 .fa-youtube-play:before {
6976 .fa-youtube-play:before {
6977 content: "\f16a";
6977 content: "\f16a";
6978 }
6978 }
6979 .fa-dropbox:before {
6979 .fa-dropbox:before {
6980 content: "\f16b";
6980 content: "\f16b";
6981 }
6981 }
6982 .fa-stack-overflow:before {
6982 .fa-stack-overflow:before {
6983 content: "\f16c";
6983 content: "\f16c";
6984 }
6984 }
6985 .fa-instagram:before {
6985 .fa-instagram:before {
6986 content: "\f16d";
6986 content: "\f16d";
6987 }
6987 }
6988 .fa-flickr:before {
6988 .fa-flickr:before {
6989 content: "\f16e";
6989 content: "\f16e";
6990 }
6990 }
6991 .fa-adn:before {
6991 .fa-adn:before {
6992 content: "\f170";
6992 content: "\f170";
6993 }
6993 }
6994 .fa-bitbucket:before {
6994 .fa-bitbucket:before {
6995 content: "\f171";
6995 content: "\f171";
6996 }
6996 }
6997 .fa-bitbucket-square:before {
6997 .fa-bitbucket-square:before {
6998 content: "\f172";
6998 content: "\f172";
6999 }
6999 }
7000 .fa-tumblr:before {
7000 .fa-tumblr:before {
7001 content: "\f173";
7001 content: "\f173";
7002 }
7002 }
7003 .fa-tumblr-square:before {
7003 .fa-tumblr-square:before {
7004 content: "\f174";
7004 content: "\f174";
7005 }
7005 }
7006 .fa-long-arrow-down:before {
7006 .fa-long-arrow-down:before {
7007 content: "\f175";
7007 content: "\f175";
7008 }
7008 }
7009 .fa-long-arrow-up:before {
7009 .fa-long-arrow-up:before {
7010 content: "\f176";
7010 content: "\f176";
7011 }
7011 }
7012 .fa-long-arrow-left:before {
7012 .fa-long-arrow-left:before {
7013 content: "\f177";
7013 content: "\f177";
7014 }
7014 }
7015 .fa-long-arrow-right:before {
7015 .fa-long-arrow-right:before {
7016 content: "\f178";
7016 content: "\f178";
7017 }
7017 }
7018 .fa-apple:before {
7018 .fa-apple:before {
7019 content: "\f179";
7019 content: "\f179";
7020 }
7020 }
7021 .fa-windows:before {
7021 .fa-windows:before {
7022 content: "\f17a";
7022 content: "\f17a";
7023 }
7023 }
7024 .fa-android:before {
7024 .fa-android:before {
7025 content: "\f17b";
7025 content: "\f17b";
7026 }
7026 }
7027 .fa-linux:before {
7027 .fa-linux:before {
7028 content: "\f17c";
7028 content: "\f17c";
7029 }
7029 }
7030 .fa-dribbble:before {
7030 .fa-dribbble:before {
7031 content: "\f17d";
7031 content: "\f17d";
7032 }
7032 }
7033 .fa-skype:before {
7033 .fa-skype:before {
7034 content: "\f17e";
7034 content: "\f17e";
7035 }
7035 }
7036 .fa-foursquare:before {
7036 .fa-foursquare:before {
7037 content: "\f180";
7037 content: "\f180";
7038 }
7038 }
7039 .fa-trello:before {
7039 .fa-trello:before {
7040 content: "\f181";
7040 content: "\f181";
7041 }
7041 }
7042 .fa-female:before {
7042 .fa-female:before {
7043 content: "\f182";
7043 content: "\f182";
7044 }
7044 }
7045 .fa-male:before {
7045 .fa-male:before {
7046 content: "\f183";
7046 content: "\f183";
7047 }
7047 }
7048 .fa-gittip:before {
7048 .fa-gittip:before {
7049 content: "\f184";
7049 content: "\f184";
7050 }
7050 }
7051 .fa-sun-o:before {
7051 .fa-sun-o:before {
7052 content: "\f185";
7052 content: "\f185";
7053 }
7053 }
7054 .fa-moon-o:before {
7054 .fa-moon-o:before {
7055 content: "\f186";
7055 content: "\f186";
7056 }
7056 }
7057 .fa-archive:before {
7057 .fa-archive:before {
7058 content: "\f187";
7058 content: "\f187";
7059 }
7059 }
7060 .fa-bug:before {
7060 .fa-bug:before {
7061 content: "\f188";
7061 content: "\f188";
7062 }
7062 }
7063 .fa-vk:before {
7063 .fa-vk:before {
7064 content: "\f189";
7064 content: "\f189";
7065 }
7065 }
7066 .fa-weibo:before {
7066 .fa-weibo:before {
7067 content: "\f18a";
7067 content: "\f18a";
7068 }
7068 }
7069 .fa-renren:before {
7069 .fa-renren:before {
7070 content: "\f18b";
7070 content: "\f18b";
7071 }
7071 }
7072 .fa-pagelines:before {
7072 .fa-pagelines:before {
7073 content: "\f18c";
7073 content: "\f18c";
7074 }
7074 }
7075 .fa-stack-exchange:before {
7075 .fa-stack-exchange:before {
7076 content: "\f18d";
7076 content: "\f18d";
7077 }
7077 }
7078 .fa-arrow-circle-o-right:before {
7078 .fa-arrow-circle-o-right:before {
7079 content: "\f18e";
7079 content: "\f18e";
7080 }
7080 }
7081 .fa-arrow-circle-o-left:before {
7081 .fa-arrow-circle-o-left:before {
7082 content: "\f190";
7082 content: "\f190";
7083 }
7083 }
7084 .fa-toggle-left:before,
7084 .fa-toggle-left:before,
7085 .fa-caret-square-o-left:before {
7085 .fa-caret-square-o-left:before {
7086 content: "\f191";
7086 content: "\f191";
7087 }
7087 }
7088 .fa-dot-circle-o:before {
7088 .fa-dot-circle-o:before {
7089 content: "\f192";
7089 content: "\f192";
7090 }
7090 }
7091 .fa-wheelchair:before {
7091 .fa-wheelchair:before {
7092 content: "\f193";
7092 content: "\f193";
7093 }
7093 }
7094 .fa-vimeo-square:before {
7094 .fa-vimeo-square:before {
7095 content: "\f194";
7095 content: "\f194";
7096 }
7096 }
7097 .fa-turkish-lira:before,
7097 .fa-turkish-lira:before,
7098 .fa-try:before {
7098 .fa-try:before {
7099 content: "\f195";
7099 content: "\f195";
7100 }
7100 }
7101 .fa-plus-square-o:before {
7101 .fa-plus-square-o:before {
7102 content: "\f196";
7102 content: "\f196";
7103 }
7103 }
7104 .fa-space-shuttle:before {
7104 .fa-space-shuttle:before {
7105 content: "\f197";
7105 content: "\f197";
7106 }
7106 }
7107 .fa-slack:before {
7107 .fa-slack:before {
7108 content: "\f198";
7108 content: "\f198";
7109 }
7109 }
7110 .fa-envelope-square:before {
7110 .fa-envelope-square:before {
7111 content: "\f199";
7111 content: "\f199";
7112 }
7112 }
7113 .fa-wordpress:before {
7113 .fa-wordpress:before {
7114 content: "\f19a";
7114 content: "\f19a";
7115 }
7115 }
7116 .fa-openid:before {
7116 .fa-openid:before {
7117 content: "\f19b";
7117 content: "\f19b";
7118 }
7118 }
7119 .fa-institution:before,
7119 .fa-institution:before,
7120 .fa-bank:before,
7120 .fa-bank:before,
7121 .fa-university:before {
7121 .fa-university:before {
7122 content: "\f19c";
7122 content: "\f19c";
7123 }
7123 }
7124 .fa-mortar-board:before,
7124 .fa-mortar-board:before,
7125 .fa-graduation-cap:before {
7125 .fa-graduation-cap:before {
7126 content: "\f19d";
7126 content: "\f19d";
7127 }
7127 }
7128 .fa-yahoo:before {
7128 .fa-yahoo:before {
7129 content: "\f19e";
7129 content: "\f19e";
7130 }
7130 }
7131 .fa-google:before {
7131 .fa-google:before {
7132 content: "\f1a0";
7132 content: "\f1a0";
7133 }
7133 }
7134 .fa-reddit:before {
7134 .fa-reddit:before {
7135 content: "\f1a1";
7135 content: "\f1a1";
7136 }
7136 }
7137 .fa-reddit-square:before {
7137 .fa-reddit-square:before {
7138 content: "\f1a2";
7138 content: "\f1a2";
7139 }
7139 }
7140 .fa-stumbleupon-circle:before {
7140 .fa-stumbleupon-circle:before {
7141 content: "\f1a3";
7141 content: "\f1a3";
7142 }
7142 }
7143 .fa-stumbleupon:before {
7143 .fa-stumbleupon:before {
7144 content: "\f1a4";
7144 content: "\f1a4";
7145 }
7145 }
7146 .fa-delicious:before {
7146 .fa-delicious:before {
7147 content: "\f1a5";
7147 content: "\f1a5";
7148 }
7148 }
7149 .fa-digg:before {
7149 .fa-digg:before {
7150 content: "\f1a6";
7150 content: "\f1a6";
7151 }
7151 }
7152 .fa-pied-piper:before {
7152 .fa-pied-piper:before {
7153 content: "\f1a7";
7153 content: "\f1a7";
7154 }
7154 }
7155 .fa-pied-piper-alt:before {
7155 .fa-pied-piper-alt:before {
7156 content: "\f1a8";
7156 content: "\f1a8";
7157 }
7157 }
7158 .fa-drupal:before {
7158 .fa-drupal:before {
7159 content: "\f1a9";
7159 content: "\f1a9";
7160 }
7160 }
7161 .fa-joomla:before {
7161 .fa-joomla:before {
7162 content: "\f1aa";
7162 content: "\f1aa";
7163 }
7163 }
7164 .fa-language:before {
7164 .fa-language:before {
7165 content: "\f1ab";
7165 content: "\f1ab";
7166 }
7166 }
7167 .fa-fax:before {
7167 .fa-fax:before {
7168 content: "\f1ac";
7168 content: "\f1ac";
7169 }
7169 }
7170 .fa-building:before {
7170 .fa-building:before {
7171 content: "\f1ad";
7171 content: "\f1ad";
7172 }
7172 }
7173 .fa-child:before {
7173 .fa-child:before {
7174 content: "\f1ae";
7174 content: "\f1ae";
7175 }
7175 }
7176 .fa-paw:before {
7176 .fa-paw:before {
7177 content: "\f1b0";
7177 content: "\f1b0";
7178 }
7178 }
7179 .fa-spoon:before {
7179 .fa-spoon:before {
7180 content: "\f1b1";
7180 content: "\f1b1";
7181 }
7181 }
7182 .fa-cube:before {
7182 .fa-cube:before {
7183 content: "\f1b2";
7183 content: "\f1b2";
7184 }
7184 }
7185 .fa-cubes:before {
7185 .fa-cubes:before {
7186 content: "\f1b3";
7186 content: "\f1b3";
7187 }
7187 }
7188 .fa-behance:before {
7188 .fa-behance:before {
7189 content: "\f1b4";
7189 content: "\f1b4";
7190 }
7190 }
7191 .fa-behance-square:before {
7191 .fa-behance-square:before {
7192 content: "\f1b5";
7192 content: "\f1b5";
7193 }
7193 }
7194 .fa-steam:before {
7194 .fa-steam:before {
7195 content: "\f1b6";
7195 content: "\f1b6";
7196 }
7196 }
7197 .fa-steam-square:before {
7197 .fa-steam-square:before {
7198 content: "\f1b7";
7198 content: "\f1b7";
7199 }
7199 }
7200 .fa-recycle:before {
7200 .fa-recycle:before {
7201 content: "\f1b8";
7201 content: "\f1b8";
7202 }
7202 }
7203 .fa-automobile:before,
7203 .fa-automobile:before,
7204 .fa-car:before {
7204 .fa-car:before {
7205 content: "\f1b9";
7205 content: "\f1b9";
7206 }
7206 }
7207 .fa-cab:before,
7207 .fa-cab:before,
7208 .fa-taxi:before {
7208 .fa-taxi:before {
7209 content: "\f1ba";
7209 content: "\f1ba";
7210 }
7210 }
7211 .fa-tree:before {
7211 .fa-tree:before {
7212 content: "\f1bb";
7212 content: "\f1bb";
7213 }
7213 }
7214 .fa-spotify:before {
7214 .fa-spotify:before {
7215 content: "\f1bc";
7215 content: "\f1bc";
7216 }
7216 }
7217 .fa-deviantart:before {
7217 .fa-deviantart:before {
7218 content: "\f1bd";
7218 content: "\f1bd";
7219 }
7219 }
7220 .fa-soundcloud:before {
7220 .fa-soundcloud:before {
7221 content: "\f1be";
7221 content: "\f1be";
7222 }
7222 }
7223 .fa-database:before {
7223 .fa-database:before {
7224 content: "\f1c0";
7224 content: "\f1c0";
7225 }
7225 }
7226 .fa-file-pdf-o:before {
7226 .fa-file-pdf-o:before {
7227 content: "\f1c1";
7227 content: "\f1c1";
7228 }
7228 }
7229 .fa-file-word-o:before {
7229 .fa-file-word-o:before {
7230 content: "\f1c2";
7230 content: "\f1c2";
7231 }
7231 }
7232 .fa-file-excel-o:before {
7232 .fa-file-excel-o:before {
7233 content: "\f1c3";
7233 content: "\f1c3";
7234 }
7234 }
7235 .fa-file-powerpoint-o:before {
7235 .fa-file-powerpoint-o:before {
7236 content: "\f1c4";
7236 content: "\f1c4";
7237 }
7237 }
7238 .fa-file-photo-o:before,
7238 .fa-file-photo-o:before,
7239 .fa-file-picture-o:before,
7239 .fa-file-picture-o:before,
7240 .fa-file-image-o:before {
7240 .fa-file-image-o:before {
7241 content: "\f1c5";
7241 content: "\f1c5";
7242 }
7242 }
7243 .fa-file-zip-o:before,
7243 .fa-file-zip-o:before,
7244 .fa-file-archive-o:before {
7244 .fa-file-archive-o:before {
7245 content: "\f1c6";
7245 content: "\f1c6";
7246 }
7246 }
7247 .fa-file-sound-o:before,
7247 .fa-file-sound-o:before,
7248 .fa-file-audio-o:before {
7248 .fa-file-audio-o:before {
7249 content: "\f1c7";
7249 content: "\f1c7";
7250 }
7250 }
7251 .fa-file-movie-o:before,
7251 .fa-file-movie-o:before,
7252 .fa-file-video-o:before {
7252 .fa-file-video-o:before {
7253 content: "\f1c8";
7253 content: "\f1c8";
7254 }
7254 }
7255 .fa-file-code-o:before {
7255 .fa-file-code-o:before {
7256 content: "\f1c9";
7256 content: "\f1c9";
7257 }
7257 }
7258 .fa-vine:before {
7258 .fa-vine:before {
7259 content: "\f1ca";
7259 content: "\f1ca";
7260 }
7260 }
7261 .fa-codepen:before {
7261 .fa-codepen:before {
7262 content: "\f1cb";
7262 content: "\f1cb";
7263 }
7263 }
7264 .fa-jsfiddle:before {
7264 .fa-jsfiddle:before {
7265 content: "\f1cc";
7265 content: "\f1cc";
7266 }
7266 }
7267 .fa-life-bouy:before,
7267 .fa-life-bouy:before,
7268 .fa-life-buoy:before,
7268 .fa-life-buoy:before,
7269 .fa-life-saver:before,
7269 .fa-life-saver:before,
7270 .fa-support:before,
7270 .fa-support:before,
7271 .fa-life-ring:before {
7271 .fa-life-ring:before {
7272 content: "\f1cd";
7272 content: "\f1cd";
7273 }
7273 }
7274 .fa-circle-o-notch:before {
7274 .fa-circle-o-notch:before {
7275 content: "\f1ce";
7275 content: "\f1ce";
7276 }
7276 }
7277 .fa-ra:before,
7277 .fa-ra:before,
7278 .fa-rebel:before {
7278 .fa-rebel:before {
7279 content: "\f1d0";
7279 content: "\f1d0";
7280 }
7280 }
7281 .fa-ge:before,
7281 .fa-ge:before,
7282 .fa-empire:before {
7282 .fa-empire:before {
7283 content: "\f1d1";
7283 content: "\f1d1";
7284 }
7284 }
7285 .fa-git-square:before {
7285 .fa-git-square:before {
7286 content: "\f1d2";
7286 content: "\f1d2";
7287 }
7287 }
7288 .fa-git:before {
7288 .fa-git:before {
7289 content: "\f1d3";
7289 content: "\f1d3";
7290 }
7290 }
7291 .fa-hacker-news:before {
7291 .fa-hacker-news:before {
7292 content: "\f1d4";
7292 content: "\f1d4";
7293 }
7293 }
7294 .fa-tencent-weibo:before {
7294 .fa-tencent-weibo:before {
7295 content: "\f1d5";
7295 content: "\f1d5";
7296 }
7296 }
7297 .fa-qq:before {
7297 .fa-qq:before {
7298 content: "\f1d6";
7298 content: "\f1d6";
7299 }
7299 }
7300 .fa-wechat:before,
7300 .fa-wechat:before,
7301 .fa-weixin:before {
7301 .fa-weixin:before {
7302 content: "\f1d7";
7302 content: "\f1d7";
7303 }
7303 }
7304 .fa-send:before,
7304 .fa-send:before,
7305 .fa-paper-plane:before {
7305 .fa-paper-plane:before {
7306 content: "\f1d8";
7306 content: "\f1d8";
7307 }
7307 }
7308 .fa-send-o:before,
7308 .fa-send-o:before,
7309 .fa-paper-plane-o:before {
7309 .fa-paper-plane-o:before {
7310 content: "\f1d9";
7310 content: "\f1d9";
7311 }
7311 }
7312 .fa-history:before {
7312 .fa-history:before {
7313 content: "\f1da";
7313 content: "\f1da";
7314 }
7314 }
7315 .fa-circle-thin:before {
7315 .fa-circle-thin:before {
7316 content: "\f1db";
7316 content: "\f1db";
7317 }
7317 }
7318 .fa-header:before {
7318 .fa-header:before {
7319 content: "\f1dc";
7319 content: "\f1dc";
7320 }
7320 }
7321 .fa-paragraph:before {
7321 .fa-paragraph:before {
7322 content: "\f1dd";
7322 content: "\f1dd";
7323 }
7323 }
7324 .fa-sliders:before {
7324 .fa-sliders:before {
7325 content: "\f1de";
7325 content: "\f1de";
7326 }
7326 }
7327 .fa-share-alt:before {
7327 .fa-share-alt:before {
7328 content: "\f1e0";
7328 content: "\f1e0";
7329 }
7329 }
7330 .fa-share-alt-square:before {
7330 .fa-share-alt-square:before {
7331 content: "\f1e1";
7331 content: "\f1e1";
7332 }
7332 }
7333 .fa-bomb:before {
7333 .fa-bomb:before {
7334 content: "\f1e2";
7334 content: "\f1e2";
7335 }
7335 }
7336 .fa-soccer-ball-o:before,
7336 .fa-soccer-ball-o:before,
7337 .fa-futbol-o:before {
7337 .fa-futbol-o:before {
7338 content: "\f1e3";
7338 content: "\f1e3";
7339 }
7339 }
7340 .fa-tty:before {
7340 .fa-tty:before {
7341 content: "\f1e4";
7341 content: "\f1e4";
7342 }
7342 }
7343 .fa-binoculars:before {
7343 .fa-binoculars:before {
7344 content: "\f1e5";
7344 content: "\f1e5";
7345 }
7345 }
7346 .fa-plug:before {
7346 .fa-plug:before {
7347 content: "\f1e6";
7347 content: "\f1e6";
7348 }
7348 }
7349 .fa-slideshare:before {
7349 .fa-slideshare:before {
7350 content: "\f1e7";
7350 content: "\f1e7";
7351 }
7351 }
7352 .fa-twitch:before {
7352 .fa-twitch:before {
7353 content: "\f1e8";
7353 content: "\f1e8";
7354 }
7354 }
7355 .fa-yelp:before {
7355 .fa-yelp:before {
7356 content: "\f1e9";
7356 content: "\f1e9";
7357 }
7357 }
7358 .fa-newspaper-o:before {
7358 .fa-newspaper-o:before {
7359 content: "\f1ea";
7359 content: "\f1ea";
7360 }
7360 }
7361 .fa-wifi:before {
7361 .fa-wifi:before {
7362 content: "\f1eb";
7362 content: "\f1eb";
7363 }
7363 }
7364 .fa-calculator:before {
7364 .fa-calculator:before {
7365 content: "\f1ec";
7365 content: "\f1ec";
7366 }
7366 }
7367 .fa-paypal:before {
7367 .fa-paypal:before {
7368 content: "\f1ed";
7368 content: "\f1ed";
7369 }
7369 }
7370 .fa-google-wallet:before {
7370 .fa-google-wallet:before {
7371 content: "\f1ee";
7371 content: "\f1ee";
7372 }
7372 }
7373 .fa-cc-visa:before {
7373 .fa-cc-visa:before {
7374 content: "\f1f0";
7374 content: "\f1f0";
7375 }
7375 }
7376 .fa-cc-mastercard:before {
7376 .fa-cc-mastercard:before {
7377 content: "\f1f1";
7377 content: "\f1f1";
7378 }
7378 }
7379 .fa-cc-discover:before {
7379 .fa-cc-discover:before {
7380 content: "\f1f2";
7380 content: "\f1f2";
7381 }
7381 }
7382 .fa-cc-amex:before {
7382 .fa-cc-amex:before {
7383 content: "\f1f3";
7383 content: "\f1f3";
7384 }
7384 }
7385 .fa-cc-paypal:before {
7385 .fa-cc-paypal:before {
7386 content: "\f1f4";
7386 content: "\f1f4";
7387 }
7387 }
7388 .fa-cc-stripe:before {
7388 .fa-cc-stripe:before {
7389 content: "\f1f5";
7389 content: "\f1f5";
7390 }
7390 }
7391 .fa-bell-slash:before {
7391 .fa-bell-slash:before {
7392 content: "\f1f6";
7392 content: "\f1f6";
7393 }
7393 }
7394 .fa-bell-slash-o:before {
7394 .fa-bell-slash-o:before {
7395 content: "\f1f7";
7395 content: "\f1f7";
7396 }
7396 }
7397 .fa-trash:before {
7397 .fa-trash:before {
7398 content: "\f1f8";
7398 content: "\f1f8";
7399 }
7399 }
7400 .fa-copyright:before {
7400 .fa-copyright:before {
7401 content: "\f1f9";
7401 content: "\f1f9";
7402 }
7402 }
7403 .fa-at:before {
7403 .fa-at:before {
7404 content: "\f1fa";
7404 content: "\f1fa";
7405 }
7405 }
7406 .fa-eyedropper:before {
7406 .fa-eyedropper:before {
7407 content: "\f1fb";
7407 content: "\f1fb";
7408 }
7408 }
7409 .fa-paint-brush:before {
7409 .fa-paint-brush:before {
7410 content: "\f1fc";
7410 content: "\f1fc";
7411 }
7411 }
7412 .fa-birthday-cake:before {
7412 .fa-birthday-cake:before {
7413 content: "\f1fd";
7413 content: "\f1fd";
7414 }
7414 }
7415 .fa-area-chart:before {
7415 .fa-area-chart:before {
7416 content: "\f1fe";
7416 content: "\f1fe";
7417 }
7417 }
7418 .fa-pie-chart:before {
7418 .fa-pie-chart:before {
7419 content: "\f200";
7419 content: "\f200";
7420 }
7420 }
7421 .fa-line-chart:before {
7421 .fa-line-chart:before {
7422 content: "\f201";
7422 content: "\f201";
7423 }
7423 }
7424 .fa-lastfm:before {
7424 .fa-lastfm:before {
7425 content: "\f202";
7425 content: "\f202";
7426 }
7426 }
7427 .fa-lastfm-square:before {
7427 .fa-lastfm-square:before {
7428 content: "\f203";
7428 content: "\f203";
7429 }
7429 }
7430 .fa-toggle-off:before {
7430 .fa-toggle-off:before {
7431 content: "\f204";
7431 content: "\f204";
7432 }
7432 }
7433 .fa-toggle-on:before {
7433 .fa-toggle-on:before {
7434 content: "\f205";
7434 content: "\f205";
7435 }
7435 }
7436 .fa-bicycle:before {
7436 .fa-bicycle:before {
7437 content: "\f206";
7437 content: "\f206";
7438 }
7438 }
7439 .fa-bus:before {
7439 .fa-bus:before {
7440 content: "\f207";
7440 content: "\f207";
7441 }
7441 }
7442 .fa-ioxhost:before {
7442 .fa-ioxhost:before {
7443 content: "\f208";
7443 content: "\f208";
7444 }
7444 }
7445 .fa-angellist:before {
7445 .fa-angellist:before {
7446 content: "\f209";
7446 content: "\f209";
7447 }
7447 }
7448 .fa-cc:before {
7448 .fa-cc:before {
7449 content: "\f20a";
7449 content: "\f20a";
7450 }
7450 }
7451 .fa-shekel:before,
7451 .fa-shekel:before,
7452 .fa-sheqel:before,
7452 .fa-sheqel:before,
7453 .fa-ils:before {
7453 .fa-ils:before {
7454 content: "\f20b";
7454 content: "\f20b";
7455 }
7455 }
7456 .fa-meanpath:before {
7456 .fa-meanpath:before {
7457 content: "\f20c";
7457 content: "\f20c";
7458 }
7458 }
7459 /*!
7459 /*!
7460 *
7460 *
7461 * IPython base
7461 * IPython base
7462 *
7462 *
7463 */
7463 */
7464 .modal.fade .modal-dialog {
7464 .modal.fade .modal-dialog {
7465 -webkit-transform: translate(0, 0);
7465 -webkit-transform: translate(0, 0);
7466 -ms-transform: translate(0, 0);
7466 -ms-transform: translate(0, 0);
7467 transform: translate(0, 0);
7467 transform: translate(0, 0);
7468 }
7468 }
7469 code {
7469 code {
7470 color: #000000;
7470 color: #000000;
7471 }
7471 }
7472 pre {
7472 pre {
7473 font-size: inherit;
7473 font-size: inherit;
7474 line-height: inherit;
7474 line-height: inherit;
7475 }
7475 }
7476 label {
7476 label {
7477 font-weight: normal;
7477 font-weight: normal;
7478 }
7478 }
7479 .border-box-sizing {
7479 .border-box-sizing {
7480 box-sizing: border-box;
7480 box-sizing: border-box;
7481 -moz-box-sizing: border-box;
7481 -moz-box-sizing: border-box;
7482 -webkit-box-sizing: border-box;
7482 -webkit-box-sizing: border-box;
7483 }
7483 }
7484 .corner-all {
7484 .corner-all {
7485 border-radius: 4px;
7485 border-radius: 4px;
7486 }
7486 }
7487 .no-padding {
7487 .no-padding {
7488 padding: 0px;
7488 padding: 0px;
7489 }
7489 }
7490 /* Flexible box model classes */
7490 /* Flexible box model classes */
7491 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7491 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7492 /* This file is a compatability layer. It allows the usage of flexible box
7492 /* This file is a compatability layer. It allows the usage of flexible box
7493 model layouts accross multiple browsers, including older browsers. The newest,
7493 model layouts accross multiple browsers, including older browsers. The newest,
7494 universal implementation of the flexible box model is used when available (see
7494 universal implementation of the flexible box model is used when available (see
7495 `Modern browsers` comments below). Browsers that are known to implement this
7495 `Modern browsers` comments below). Browsers that are known to implement this
7496 new spec completely include:
7496 new spec completely include:
7497
7497
7498 Firefox 28.0+
7498 Firefox 28.0+
7499 Chrome 29.0+
7499 Chrome 29.0+
7500 Internet Explorer 11+
7500 Internet Explorer 11+
7501 Opera 17.0+
7501 Opera 17.0+
7502
7502
7503 Browsers not listed, including Safari, are supported via the styling under the
7503 Browsers not listed, including Safari, are supported via the styling under the
7504 `Old browsers` comments below.
7504 `Old browsers` comments below.
7505 */
7505 */
7506 .hbox {
7506 .hbox {
7507 /* Old browsers */
7507 /* Old browsers */
7508 display: -webkit-box;
7508 display: -webkit-box;
7509 -webkit-box-orient: horizontal;
7509 -webkit-box-orient: horizontal;
7510 -webkit-box-align: stretch;
7510 -webkit-box-align: stretch;
7511 display: -moz-box;
7511 display: -moz-box;
7512 -moz-box-orient: horizontal;
7512 -moz-box-orient: horizontal;
7513 -moz-box-align: stretch;
7513 -moz-box-align: stretch;
7514 display: box;
7514 display: box;
7515 box-orient: horizontal;
7515 box-orient: horizontal;
7516 box-align: stretch;
7516 box-align: stretch;
7517 /* Modern browsers */
7517 /* Modern browsers */
7518 display: flex;
7518 display: flex;
7519 flex-direction: row;
7519 flex-direction: row;
7520 align-items: stretch;
7520 align-items: stretch;
7521 }
7521 }
7522 .hbox > * {
7522 .hbox > * {
7523 /* Old browsers */
7523 /* Old browsers */
7524 -webkit-box-flex: 0;
7524 -webkit-box-flex: 0;
7525 -moz-box-flex: 0;
7525 -moz-box-flex: 0;
7526 box-flex: 0;
7526 box-flex: 0;
7527 /* Modern browsers */
7527 /* Modern browsers */
7528 flex: none;
7528 flex: none;
7529 }
7529 }
7530 .vbox {
7530 .vbox {
7531 /* Old browsers */
7531 /* Old browsers */
7532 display: -webkit-box;
7532 display: -webkit-box;
7533 -webkit-box-orient: vertical;
7533 -webkit-box-orient: vertical;
7534 -webkit-box-align: stretch;
7534 -webkit-box-align: stretch;
7535 display: -moz-box;
7535 display: -moz-box;
7536 -moz-box-orient: vertical;
7536 -moz-box-orient: vertical;
7537 -moz-box-align: stretch;
7537 -moz-box-align: stretch;
7538 display: box;
7538 display: box;
7539 box-orient: vertical;
7539 box-orient: vertical;
7540 box-align: stretch;
7540 box-align: stretch;
7541 /* Modern browsers */
7541 /* Modern browsers */
7542 display: flex;
7542 display: flex;
7543 flex-direction: column;
7543 flex-direction: column;
7544 align-items: stretch;
7544 align-items: stretch;
7545 }
7545 }
7546 .vbox > * {
7546 .vbox > * {
7547 /* Old browsers */
7547 /* Old browsers */
7548 -webkit-box-flex: 0;
7548 -webkit-box-flex: 0;
7549 -moz-box-flex: 0;
7549 -moz-box-flex: 0;
7550 box-flex: 0;
7550 box-flex: 0;
7551 /* Modern browsers */
7551 /* Modern browsers */
7552 flex: none;
7552 flex: none;
7553 }
7553 }
7554 .hbox.reverse,
7554 .hbox.reverse,
7555 .vbox.reverse,
7555 .vbox.reverse,
7556 .reverse {
7556 .reverse {
7557 /* Old browsers */
7557 /* Old browsers */
7558 -webkit-box-direction: reverse;
7558 -webkit-box-direction: reverse;
7559 -moz-box-direction: reverse;
7559 -moz-box-direction: reverse;
7560 box-direction: reverse;
7560 box-direction: reverse;
7561 /* Modern browsers */
7561 /* Modern browsers */
7562 flex-direction: row-reverse;
7562 flex-direction: row-reverse;
7563 }
7563 }
7564 .hbox.box-flex0,
7564 .hbox.box-flex0,
7565 .vbox.box-flex0,
7565 .vbox.box-flex0,
7566 .box-flex0 {
7566 .box-flex0 {
7567 /* Old browsers */
7567 /* Old browsers */
7568 -webkit-box-flex: 0;
7568 -webkit-box-flex: 0;
7569 -moz-box-flex: 0;
7569 -moz-box-flex: 0;
7570 box-flex: 0;
7570 box-flex: 0;
7571 /* Modern browsers */
7571 /* Modern browsers */
7572 flex: none;
7572 flex: none;
7573 width: auto;
7573 width: auto;
7574 }
7574 }
7575 .hbox.box-flex1,
7575 .hbox.box-flex1,
7576 .vbox.box-flex1,
7576 .vbox.box-flex1,
7577 .box-flex1 {
7577 .box-flex1 {
7578 /* Old browsers */
7578 /* Old browsers */
7579 -webkit-box-flex: 1;
7579 -webkit-box-flex: 1;
7580 -moz-box-flex: 1;
7580 -moz-box-flex: 1;
7581 box-flex: 1;
7581 box-flex: 1;
7582 /* Modern browsers */
7582 /* Modern browsers */
7583 flex: 1;
7583 flex: 1;
7584 }
7584 }
7585 .hbox.box-flex,
7585 .hbox.box-flex,
7586 .vbox.box-flex,
7586 .vbox.box-flex,
7587 .box-flex {
7587 .box-flex {
7588 /* Old browsers */
7588 /* Old browsers */
7589 /* Old browsers */
7589 /* Old browsers */
7590 -webkit-box-flex: 1;
7590 -webkit-box-flex: 1;
7591 -moz-box-flex: 1;
7591 -moz-box-flex: 1;
7592 box-flex: 1;
7592 box-flex: 1;
7593 /* Modern browsers */
7593 /* Modern browsers */
7594 flex: 1;
7594 flex: 1;
7595 }
7595 }
7596 .hbox.box-flex2,
7596 .hbox.box-flex2,
7597 .vbox.box-flex2,
7597 .vbox.box-flex2,
7598 .box-flex2 {
7598 .box-flex2 {
7599 /* Old browsers */
7599 /* Old browsers */
7600 -webkit-box-flex: 2;
7600 -webkit-box-flex: 2;
7601 -moz-box-flex: 2;
7601 -moz-box-flex: 2;
7602 box-flex: 2;
7602 box-flex: 2;
7603 /* Modern browsers */
7603 /* Modern browsers */
7604 flex: 2;
7604 flex: 2;
7605 }
7605 }
7606 .box-group1 {
7606 .box-group1 {
7607 /* Deprecated */
7607 /* Deprecated */
7608 -webkit-box-flex-group: 1;
7608 -webkit-box-flex-group: 1;
7609 -moz-box-flex-group: 1;
7609 -moz-box-flex-group: 1;
7610 box-flex-group: 1;
7610 box-flex-group: 1;
7611 }
7611 }
7612 .box-group2 {
7612 .box-group2 {
7613 /* Deprecated */
7613 /* Deprecated */
7614 -webkit-box-flex-group: 2;
7614 -webkit-box-flex-group: 2;
7615 -moz-box-flex-group: 2;
7615 -moz-box-flex-group: 2;
7616 box-flex-group: 2;
7616 box-flex-group: 2;
7617 }
7617 }
7618 .hbox.start,
7618 .hbox.start,
7619 .vbox.start,
7619 .vbox.start,
7620 .start {
7620 .start {
7621 /* Old browsers */
7621 /* Old browsers */
7622 -webkit-box-pack: start;
7622 -webkit-box-pack: start;
7623 -moz-box-pack: start;
7623 -moz-box-pack: start;
7624 box-pack: start;
7624 box-pack: start;
7625 /* Modern browsers */
7625 /* Modern browsers */
7626 justify-content: flex-start;
7626 justify-content: flex-start;
7627 }
7627 }
7628 .hbox.end,
7628 .hbox.end,
7629 .vbox.end,
7629 .vbox.end,
7630 .end {
7630 .end {
7631 /* Old browsers */
7631 /* Old browsers */
7632 -webkit-box-pack: end;
7632 -webkit-box-pack: end;
7633 -moz-box-pack: end;
7633 -moz-box-pack: end;
7634 box-pack: end;
7634 box-pack: end;
7635 /* Modern browsers */
7635 /* Modern browsers */
7636 justify-content: flex-end;
7636 justify-content: flex-end;
7637 }
7637 }
7638 .hbox.center,
7638 .hbox.center,
7639 .vbox.center,
7639 .vbox.center,
7640 .center {
7640 .center {
7641 /* Old browsers */
7641 /* Old browsers */
7642 -webkit-box-pack: center;
7642 -webkit-box-pack: center;
7643 -moz-box-pack: center;
7643 -moz-box-pack: center;
7644 box-pack: center;
7644 box-pack: center;
7645 /* Modern browsers */
7645 /* Modern browsers */
7646 justify-content: center;
7646 justify-content: center;
7647 }
7647 }
7648 .hbox.baseline,
7648 .hbox.baseline,
7649 .vbox.baseline,
7649 .vbox.baseline,
7650 .baseline {
7650 .baseline {
7651 /* Old browsers */
7651 /* Old browsers */
7652 -webkit-box-pack: baseline;
7652 -webkit-box-pack: baseline;
7653 -moz-box-pack: baseline;
7653 -moz-box-pack: baseline;
7654 box-pack: baseline;
7654 box-pack: baseline;
7655 /* Modern browsers */
7655 /* Modern browsers */
7656 justify-content: baseline;
7656 justify-content: baseline;
7657 }
7657 }
7658 .hbox.stretch,
7658 .hbox.stretch,
7659 .vbox.stretch,
7659 .vbox.stretch,
7660 .stretch {
7660 .stretch {
7661 /* Old browsers */
7661 /* Old browsers */
7662 -webkit-box-pack: stretch;
7662 -webkit-box-pack: stretch;
7663 -moz-box-pack: stretch;
7663 -moz-box-pack: stretch;
7664 box-pack: stretch;
7664 box-pack: stretch;
7665 /* Modern browsers */
7665 /* Modern browsers */
7666 justify-content: stretch;
7666 justify-content: stretch;
7667 }
7667 }
7668 .hbox.align-start,
7668 .hbox.align-start,
7669 .vbox.align-start,
7669 .vbox.align-start,
7670 .align-start {
7670 .align-start {
7671 /* Old browsers */
7671 /* Old browsers */
7672 -webkit-box-align: start;
7672 -webkit-box-align: start;
7673 -moz-box-align: start;
7673 -moz-box-align: start;
7674 box-align: start;
7674 box-align: start;
7675 /* Modern browsers */
7675 /* Modern browsers */
7676 align-items: flex-start;
7676 align-items: flex-start;
7677 }
7677 }
7678 .hbox.align-end,
7678 .hbox.align-end,
7679 .vbox.align-end,
7679 .vbox.align-end,
7680 .align-end {
7680 .align-end {
7681 /* Old browsers */
7681 /* Old browsers */
7682 -webkit-box-align: end;
7682 -webkit-box-align: end;
7683 -moz-box-align: end;
7683 -moz-box-align: end;
7684 box-align: end;
7684 box-align: end;
7685 /* Modern browsers */
7685 /* Modern browsers */
7686 align-items: flex-end;
7686 align-items: flex-end;
7687 }
7687 }
7688 .hbox.align-center,
7688 .hbox.align-center,
7689 .vbox.align-center,
7689 .vbox.align-center,
7690 .align-center {
7690 .align-center {
7691 /* Old browsers */
7691 /* Old browsers */
7692 -webkit-box-align: center;
7692 -webkit-box-align: center;
7693 -moz-box-align: center;
7693 -moz-box-align: center;
7694 box-align: center;
7694 box-align: center;
7695 /* Modern browsers */
7695 /* Modern browsers */
7696 align-items: center;
7696 align-items: center;
7697 }
7697 }
7698 .hbox.align-baseline,
7698 .hbox.align-baseline,
7699 .vbox.align-baseline,
7699 .vbox.align-baseline,
7700 .align-baseline {
7700 .align-baseline {
7701 /* Old browsers */
7701 /* Old browsers */
7702 -webkit-box-align: baseline;
7702 -webkit-box-align: baseline;
7703 -moz-box-align: baseline;
7703 -moz-box-align: baseline;
7704 box-align: baseline;
7704 box-align: baseline;
7705 /* Modern browsers */
7705 /* Modern browsers */
7706 align-items: baseline;
7706 align-items: baseline;
7707 }
7707 }
7708 .hbox.align-stretch,
7708 .hbox.align-stretch,
7709 .vbox.align-stretch,
7709 .vbox.align-stretch,
7710 .align-stretch {
7710 .align-stretch {
7711 /* Old browsers */
7711 /* Old browsers */
7712 -webkit-box-align: stretch;
7712 -webkit-box-align: stretch;
7713 -moz-box-align: stretch;
7713 -moz-box-align: stretch;
7714 box-align: stretch;
7714 box-align: stretch;
7715 /* Modern browsers */
7715 /* Modern browsers */
7716 align-items: stretch;
7716 align-items: stretch;
7717 }
7717 }
7718 div.error {
7718 div.error {
7719 margin: 2em;
7719 margin: 2em;
7720 text-align: center;
7720 text-align: center;
7721 }
7721 }
7722 div.error > h1 {
7722 div.error > h1 {
7723 font-size: 500%;
7723 font-size: 500%;
7724 line-height: normal;
7724 line-height: normal;
7725 }
7725 }
7726 div.error > p {
7726 div.error > p {
7727 font-size: 200%;
7727 font-size: 200%;
7728 line-height: normal;
7728 line-height: normal;
7729 }
7729 }
7730 div.traceback-wrapper {
7730 div.traceback-wrapper {
7731 text-align: left;
7731 text-align: left;
7732 max-width: 800px;
7732 max-width: 800px;
7733 margin: auto;
7733 margin: auto;
7734 }
7734 }
7735 /**
7735 /**
7736 * Primary styles
7736 * Primary styles
7737 *
7737 *
7738 * Author: IPython Development Team
7738 * Author: IPython Development Team
7739 */
7739 */
7740 body {
7740 body {
7741 background-color: white;
7741 background-color: white;
7742 /* This makes sure that the body covers the entire window and needs to
7742 /* This makes sure that the body covers the entire window and needs to
7743 be in a different element than the display: box in wrapper below */
7743 be in a different element than the display: box in wrapper below */
7744 position: absolute;
7744 position: absolute;
7745 left: 0px;
7745 left: 0px;
7746 right: 0px;
7746 right: 0px;
7747 top: 0px;
7747 top: 0px;
7748 bottom: 0px;
7748 bottom: 0px;
7749 overflow: visible;
7749 overflow: visible;
7750 }
7750 }
7751 div#header {
7751 div#header {
7752 /* Initially hidden to prevent FLOUC */
7752 /* Initially hidden to prevent FLOUC */
7753 display: none;
7753 display: none;
7754 background-color: #ffffff;
7754 background-color: #ffffff;
7755 /* Display over codemirror */
7755 /* Display over codemirror */
7756 z-index: 100;
7756 z-index: 100;
7757 }
7757 }
7758 div#header #header-container {
7758 div#header #header-container {
7759 padding-left: 30px;
7759 padding-left: 30px;
7760 padding-bottom: 5px;
7760 padding-bottom: 5px;
7761 padding-top: 5px;
7761 padding-top: 5px;
7762 box-sizing: border-box;
7762 box-sizing: border-box;
7763 -moz-box-sizing: border-box;
7763 -moz-box-sizing: border-box;
7764 -webkit-box-sizing: border-box;
7764 -webkit-box-sizing: border-box;
7765 }
7765 }
7766 div#header .header-bar {
7766 div#header .header-bar {
7767 width: 100%;
7767 width: 100%;
7768 height: 0px;
7768 height: 0px;
7769 border-bottom: 1px solid #e7e7e7;
7769 border-bottom: 1px solid #e7e7e7;
7770 }
7770 }
7771 #header-spacer {
7771 #header-spacer {
7772 width: 100%;
7772 width: 100%;
7773 visibility: hidden;
7773 visibility: hidden;
7774 }
7774 }
7775 #ipython_notebook {
7775 #ipython_notebook {
7776 padding-left: 0px;
7776 padding-left: 0px;
7777 padding-top: 3px;
7777 padding-top: 3px;
7778 padding-bottom: 3px;
7778 padding-bottom: 3px;
7779 }
7779 }
7780 #noscript {
7780 #noscript {
7781 width: auto;
7781 width: auto;
7782 padding-top: 16px;
7782 padding-top: 16px;
7783 padding-bottom: 16px;
7783 padding-bottom: 16px;
7784 text-align: center;
7784 text-align: center;
7785 font-size: 22px;
7785 font-size: 22px;
7786 color: red;
7786 color: red;
7787 font-weight: bold;
7787 font-weight: bold;
7788 }
7788 }
7789 #ipython_notebook img {
7789 #ipython_notebook img {
7790 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
7790 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
7791 height: 24px;
7791 height: 24px;
7792 text-decoration: none;
7792 text-decoration: none;
7793 color: black;
7793 color: black;
7794 }
7794 }
7795 #site {
7795 #site {
7796 width: 100%;
7796 width: 100%;
7797 display: none;
7797 display: none;
7798 box-sizing: border-box;
7798 box-sizing: border-box;
7799 -moz-box-sizing: border-box;
7799 -moz-box-sizing: border-box;
7800 -webkit-box-sizing: border-box;
7800 -webkit-box-sizing: border-box;
7801 }
7801 }
7802 /* Smaller buttons */
7802 /* Smaller buttons */
7803 .ui-button .ui-button-text {
7803 .ui-button .ui-button-text {
7804 padding: 0.2em 0.8em;
7804 padding: 0.2em 0.8em;
7805 font-size: 77%;
7805 font-size: 77%;
7806 }
7806 }
7807 input.ui-button {
7807 input.ui-button {
7808 padding: 0.3em 0.9em;
7808 padding: 0.3em 0.9em;
7809 }
7809 }
7810 span#login_widget {
7810 span#login_widget {
7811 float: right;
7811 float: right;
7812 }
7812 }
7813 span#login_widget > .button,
7813 span#login_widget > .button,
7814 #logout {
7814 #logout {
7815 color: #333333;
7815 color: #333333;
7816 background-color: #ffffff;
7816 background-color: #ffffff;
7817 border-color: #cccccc;
7817 border-color: #cccccc;
7818 }
7818 }
7819 span#login_widget > .button:hover,
7819 span#login_widget > .button:hover,
7820 #logout:hover,
7820 #logout:hover,
7821 span#login_widget > .button:focus,
7821 span#login_widget > .button:focus,
7822 #logout:focus,
7822 #logout:focus,
7823 span#login_widget > .button:active,
7823 span#login_widget > .button:active,
7824 #logout:active,
7824 #logout:active,
7825 span#login_widget > .button.active,
7825 span#login_widget > .button.active,
7826 #logout.active,
7826 #logout.active,
7827 .open .dropdown-togglespan#login_widget > .button,
7827 .open .dropdown-togglespan#login_widget > .button,
7828 .open .dropdown-toggle#logout {
7828 .open .dropdown-toggle#logout {
7829 color: #333333;
7829 color: #333333;
7830 background-color: #ebebeb;
7830 background-color: #ebebeb;
7831 border-color: #adadad;
7831 border-color: #adadad;
7832 }
7832 }
7833 span#login_widget > .button:active,
7833 span#login_widget > .button:active,
7834 #logout:active,
7834 #logout:active,
7835 span#login_widget > .button.active,
7835 span#login_widget > .button.active,
7836 #logout.active,
7836 #logout.active,
7837 .open .dropdown-togglespan#login_widget > .button,
7837 .open .dropdown-togglespan#login_widget > .button,
7838 .open .dropdown-toggle#logout {
7838 .open .dropdown-toggle#logout {
7839 background-image: none;
7839 background-image: none;
7840 }
7840 }
7841 span#login_widget > .button.disabled,
7841 span#login_widget > .button.disabled,
7842 #logout.disabled,
7842 #logout.disabled,
7843 span#login_widget > .button[disabled],
7843 span#login_widget > .button[disabled],
7844 #logout[disabled],
7844 #logout[disabled],
7845 fieldset[disabled] span#login_widget > .button,
7845 fieldset[disabled] span#login_widget > .button,
7846 fieldset[disabled] #logout,
7846 fieldset[disabled] #logout,
7847 span#login_widget > .button.disabled:hover,
7847 span#login_widget > .button.disabled:hover,
7848 #logout.disabled:hover,
7848 #logout.disabled:hover,
7849 span#login_widget > .button[disabled]:hover,
7849 span#login_widget > .button[disabled]:hover,
7850 #logout[disabled]:hover,
7850 #logout[disabled]:hover,
7851 fieldset[disabled] span#login_widget > .button:hover,
7851 fieldset[disabled] span#login_widget > .button:hover,
7852 fieldset[disabled] #logout:hover,
7852 fieldset[disabled] #logout:hover,
7853 span#login_widget > .button.disabled:focus,
7853 span#login_widget > .button.disabled:focus,
7854 #logout.disabled:focus,
7854 #logout.disabled:focus,
7855 span#login_widget > .button[disabled]:focus,
7855 span#login_widget > .button[disabled]:focus,
7856 #logout[disabled]:focus,
7856 #logout[disabled]:focus,
7857 fieldset[disabled] span#login_widget > .button:focus,
7857 fieldset[disabled] span#login_widget > .button:focus,
7858 fieldset[disabled] #logout:focus,
7858 fieldset[disabled] #logout:focus,
7859 span#login_widget > .button.disabled:active,
7859 span#login_widget > .button.disabled:active,
7860 #logout.disabled:active,
7860 #logout.disabled:active,
7861 span#login_widget > .button[disabled]:active,
7861 span#login_widget > .button[disabled]:active,
7862 #logout[disabled]:active,
7862 #logout[disabled]:active,
7863 fieldset[disabled] span#login_widget > .button:active,
7863 fieldset[disabled] span#login_widget > .button:active,
7864 fieldset[disabled] #logout:active,
7864 fieldset[disabled] #logout:active,
7865 span#login_widget > .button.disabled.active,
7865 span#login_widget > .button.disabled.active,
7866 #logout.disabled.active,
7866 #logout.disabled.active,
7867 span#login_widget > .button[disabled].active,
7867 span#login_widget > .button[disabled].active,
7868 #logout[disabled].active,
7868 #logout[disabled].active,
7869 fieldset[disabled] span#login_widget > .button.active,
7869 fieldset[disabled] span#login_widget > .button.active,
7870 fieldset[disabled] #logout.active {
7870 fieldset[disabled] #logout.active {
7871 background-color: #ffffff;
7871 background-color: #ffffff;
7872 border-color: #cccccc;
7872 border-color: #cccccc;
7873 }
7873 }
7874 span#login_widget > .button .badge,
7874 span#login_widget > .button .badge,
7875 #logout .badge {
7875 #logout .badge {
7876 color: #ffffff;
7876 color: #ffffff;
7877 background-color: #333333;
7877 background-color: #333333;
7878 }
7878 }
7879 .nav-header {
7879 .nav-header {
7880 text-transform: none;
7880 text-transform: none;
7881 }
7881 }
7882 #header > span {
7882 #header > span {
7883 margin-top: 10px;
7883 margin-top: 10px;
7884 }
7884 }
7885 .modal_stretch .modal-dialog {
7885 .modal_stretch .modal-dialog {
7886 /* Old browsers */
7886 /* Old browsers */
7887 display: -webkit-box;
7887 display: -webkit-box;
7888 -webkit-box-orient: vertical;
7888 -webkit-box-orient: vertical;
7889 -webkit-box-align: stretch;
7889 -webkit-box-align: stretch;
7890 display: -moz-box;
7890 display: -moz-box;
7891 -moz-box-orient: vertical;
7891 -moz-box-orient: vertical;
7892 -moz-box-align: stretch;
7892 -moz-box-align: stretch;
7893 display: box;
7893 display: box;
7894 box-orient: vertical;
7894 box-orient: vertical;
7895 box-align: stretch;
7895 box-align: stretch;
7896 /* Modern browsers */
7896 /* Modern browsers */
7897 display: flex;
7897 display: flex;
7898 flex-direction: column;
7898 flex-direction: column;
7899 align-items: stretch;
7899 align-items: stretch;
7900 min-height: 80%;
7900 min-height: 80%;
7901 }
7901 }
7902 .modal_stretch .modal-dialog .modal-body {
7902 .modal_stretch .modal-dialog .modal-body {
7903 max-height: none;
7903 max-height: none;
7904 flex: 1;
7904 flex: 1;
7905 }
7905 }
7906 @media (min-width: 768px) {
7906 @media (min-width: 768px) {
7907 .modal .modal-dialog {
7907 .modal .modal-dialog {
7908 width: 700px;
7908 width: 700px;
7909 }
7909 }
7910 }
7910 }
7911 /*!
7911 /*!
7912 *
7912 *
7913 * IPython auth
7913 * IPython auth
7914 *
7914 *
7915 */
7915 */
7916 .center-nav {
7916 .center-nav {
7917 display: inline-block;
7917 display: inline-block;
7918 margin-bottom: -4px;
7918 margin-bottom: -4px;
7919 }
7919 }
7920 /*!
7920 /*!
7921 *
7921 *
7922 * IPython tree view
7922 * IPython tree view
7923 *
7923 *
7924 */
7924 */
7925 /* We need an invisible input field on top of the sentense*/
7925 /* We need an invisible input field on top of the sentense*/
7926 /* "Drag file onto the list ..." */
7926 /* "Drag file onto the list ..." */
7927 .alternate_upload {
7927 .alternate_upload {
7928 background-color: none;
7928 background-color: none;
7929 display: inline;
7929 display: inline;
7930 }
7930 }
7931 .alternate_upload.form {
7931 .alternate_upload.form {
7932 padding: 0;
7932 padding: 0;
7933 margin: 0;
7933 margin: 0;
7934 }
7934 }
7935 .alternate_upload input.fileinput {
7935 .alternate_upload input.fileinput {
7936 display: inline;
7936 display: inline;
7937 opacity: 0;
7937 opacity: 0;
7938 z-index: 2;
7938 z-index: 2;
7939 width: 12ex;
7939 width: 12ex;
7940 margin-right: -12ex;
7940 margin-right: -12ex;
7941 }
7941 }
7942 .alternate_upload .input-overlay {
7942 .alternate_upload .input-overlay {
7943 display: inline-block;
7943 display: inline-block;
7944 font-weight: bold;
7944 font-weight: bold;
7945 }
7945 }
7946 /**
7946 /**
7947 * Primary styles
7947 * Primary styles
7948 *
7948 *
7949 * Author: IPython Development Team
7949 * Author: IPython Development Team
7950 */
7950 */
7951 ul#tabs {
7951 ul#tabs {
7952 margin-bottom: 4px;
7952 margin-bottom: 4px;
7953 }
7953 }
7954 ul#tabs a {
7954 ul#tabs a {
7955 padding-top: 6px;
7955 padding-top: 6px;
7956 padding-bottom: 4px;
7956 padding-bottom: 4px;
7957 }
7957 }
7958 ul.breadcrumb a:focus,
7958 ul.breadcrumb a:focus,
7959 ul.breadcrumb a:hover {
7959 ul.breadcrumb a:hover {
7960 text-decoration: none;
7960 text-decoration: none;
7961 }
7961 }
7962 ul.breadcrumb i.icon-home {
7962 ul.breadcrumb i.icon-home {
7963 font-size: 16px;
7963 font-size: 16px;
7964 margin-right: 4px;
7964 margin-right: 4px;
7965 }
7965 }
7966 ul.breadcrumb span {
7966 ul.breadcrumb span {
7967 color: #5e5e5e;
7967 color: #5e5e5e;
7968 }
7968 }
7969 .list_toolbar {
7969 .list_toolbar {
7970 padding: 4px 0 4px 0;
7970 padding: 4px 0 4px 0;
7971 vertical-align: middle;
7971 vertical-align: middle;
7972 }
7972 }
7973 .list_toolbar .tree-buttons {
7973 .list_toolbar .tree-buttons {
7974 padding-top: 2px;
7974 padding-top: 2px;
7975 }
7975 }
7976 .list_toolbar [class*="span"] {
7976 .list_toolbar [class*="span"] {
7977 min-height: 24px;
7977 min-height: 24px;
7978 }
7978 }
7979 .list_header {
7979 .list_header {
7980 font-weight: bold;
7980 font-weight: bold;
7981 }
7981 }
7982 .list_container {
7982 .list_container {
7983 margin-top: 4px;
7983 margin-top: 4px;
7984 margin-bottom: 20px;
7984 margin-bottom: 20px;
7985 border: 1px solid #ababab;
7985 border: 1px solid #ababab;
7986 border-radius: 4px;
7986 border-radius: 4px;
7987 }
7987 }
7988 .list_container > div {
7988 .list_container > div {
7989 border-bottom: 1px solid #ababab;
7989 border-bottom: 1px solid #ababab;
7990 }
7990 }
7991 .list_container > div:hover .list-item {
7991 .list_container > div:hover .list-item {
7992 background-color: red;
7992 background-color: red;
7993 }
7993 }
7994 .list_container > div:last-child {
7994 .list_container > div:last-child {
7995 border: none;
7995 border: none;
7996 }
7996 }
7997 .list_item:hover .list_item {
7997 .list_item:hover .list_item {
7998 background-color: #ddd;
7998 background-color: #ddd;
7999 }
7999 }
8000 .list_item a {
8000 .list_item a {
8001 text-decoration: none;
8001 text-decoration: none;
8002 }
8002 }
8003 .action_col {
8003 .action_col {
8004 text-align: right;
8004 text-align: right;
8005 }
8005 }
8006 .list_header > div,
8006 .list_header > div,
8007 .list_item > div {
8007 .list_item > div {
8008 padding-top: 4px;
8008 padding-top: 4px;
8009 padding-bottom: 4px;
8009 padding-bottom: 4px;
8010 padding-left: 7px;
8010 padding-left: 7px;
8011 padding-right: 7px;
8011 padding-right: 7px;
8012 line-height: 22px;
8012 line-height: 22px;
8013 }
8013 }
8014 .item_name {
8014 .item_name {
8015 line-height: 22px;
8015 line-height: 22px;
8016 height: 24px;
8016 height: 24px;
8017 }
8017 }
8018 .item_icon {
8018 .item_icon {
8019 font-size: 14px;
8019 font-size: 14px;
8020 color: #5e5e5e;
8020 color: #5e5e5e;
8021 margin-right: 7px;
8021 margin-right: 7px;
8022 }
8022 }
8023 .item_buttons {
8023 .item_buttons {
8024 line-height: 1em;
8024 line-height: 1em;
8025 }
8025 }
8026 .item_buttons .btn {
8026 .item_buttons .btn {
8027 min-width: 13ex;
8027 min-width: 13ex;
8028 }
8028 }
8029 .toolbar_info {
8029 .toolbar_info {
8030 height: 24px;
8030 height: 24px;
8031 line-height: 24px;
8031 line-height: 24px;
8032 }
8032 }
8033 input.nbname_input,
8033 input.nbname_input,
8034 input.engine_num_input {
8034 input.engine_num_input {
8035 padding-top: 3px;
8035 padding-top: 3px;
8036 padding-bottom: 3px;
8036 padding-bottom: 3px;
8037 height: 22px;
8037 height: 22px;
8038 line-height: 14px;
8038 line-height: 14px;
8039 margin: 0px;
8039 margin: 0px;
8040 }
8040 }
8041 input.engine_num_input {
8041 input.engine_num_input {
8042 width: 60px;
8042 width: 60px;
8043 }
8043 }
8044 .highlight_text {
8044 .highlight_text {
8045 color: blue;
8045 color: blue;
8046 }
8046 }
8047 #project_name > .breadcrumb {
8047 #project_name > .breadcrumb {
8048 padding: 0px;
8048 padding: 0px;
8049 margin-bottom: 0px;
8049 margin-bottom: 0px;
8050 background-color: transparent;
8050 background-color: transparent;
8051 font-weight: bold;
8051 font-weight: bold;
8052 }
8052 }
8053 .tab-content .row {
8053 .tab-content .row {
8054 margin-left: 0px;
8054 margin-left: 0px;
8055 margin-right: 0px;
8055 margin-right: 0px;
8056 }
8056 }
8057 .folder_icon:before {
8057 .folder_icon:before {
8058 display: inline-block;
8058 display: inline-block;
8059 font: normal normal normal 14px/1 FontAwesome;
8059 font: normal normal normal 14px/1 FontAwesome;
8060 font-size: inherit;
8060 font-size: inherit;
8061 text-rendering: auto;
8061 text-rendering: auto;
8062 -webkit-font-smoothing: antialiased;
8062 -webkit-font-smoothing: antialiased;
8063 -moz-osx-font-smoothing: grayscale;
8063 -moz-osx-font-smoothing: grayscale;
8064 content: "\f114";
8064 content: "\f114";
8065 }
8065 }
8066 .folder_icon:before.pull-left {
8066 .folder_icon:before.pull-left {
8067 margin-right: .3em;
8067 margin-right: .3em;
8068 }
8068 }
8069 .folder_icon:before.pull-right {
8069 .folder_icon:before.pull-right {
8070 margin-left: .3em;
8070 margin-left: .3em;
8071 }
8071 }
8072 .notebook_icon:before {
8072 .notebook_icon:before {
8073 display: inline-block;
8073 display: inline-block;
8074 font: normal normal normal 14px/1 FontAwesome;
8074 font: normal normal normal 14px/1 FontAwesome;
8075 font-size: inherit;
8075 font-size: inherit;
8076 text-rendering: auto;
8076 text-rendering: auto;
8077 -webkit-font-smoothing: antialiased;
8077 -webkit-font-smoothing: antialiased;
8078 -moz-osx-font-smoothing: grayscale;
8078 -moz-osx-font-smoothing: grayscale;
8079 content: "\f02d";
8079 content: "\f02d";
8080 }
8080 }
8081 .notebook_icon:before.pull-left {
8081 .notebook_icon:before.pull-left {
8082 margin-right: .3em;
8082 margin-right: .3em;
8083 }
8083 }
8084 .notebook_icon:before.pull-right {
8084 .notebook_icon:before.pull-right {
8085 margin-left: .3em;
8085 margin-left: .3em;
8086 }
8086 }
8087 .file_icon:before {
8087 .file_icon:before {
8088 display: inline-block;
8088 display: inline-block;
8089 font: normal normal normal 14px/1 FontAwesome;
8089 font: normal normal normal 14px/1 FontAwesome;
8090 font-size: inherit;
8090 font-size: inherit;
8091 text-rendering: auto;
8091 text-rendering: auto;
8092 -webkit-font-smoothing: antialiased;
8092 -webkit-font-smoothing: antialiased;
8093 -moz-osx-font-smoothing: grayscale;
8093 -moz-osx-font-smoothing: grayscale;
8094 content: "\f016";
8094 content: "\f016";
8095 }
8095 }
8096 .file_icon:before.pull-left {
8096 .file_icon:before.pull-left {
8097 margin-right: .3em;
8097 margin-right: .3em;
8098 }
8098 }
8099 .file_icon:before.pull-right {
8099 .file_icon:before.pull-right {
8100 margin-left: .3em;
8100 margin-left: .3em;
8101 }
8101 }
8102 ul#new-notebook-menu {
8102 ul#new-notebook-menu {
8103 left: auto;
8103 left: auto;
8104 right: 0;
8104 right: 0;
8105 }
8105 }
8106 .kernel-menu-icon {
8106 .kernel-menu-icon {
8107 padding-right: 12px;
8107 padding-right: 12px;
8108 width: 24px;
8108 width: 24px;
8109 content: "\f096";
8109 content: "\f096";
8110 }
8110 }
8111 .kernel-menu-icon:before {
8111 .kernel-menu-icon:before {
8112 content: "\f096";
8112 content: "\f096";
8113 }
8113 }
8114 .kernel-menu-icon-current:before {
8114 .kernel-menu-icon-current:before {
8115 content: "\f00c";
8115 content: "\f00c";
8116 }
8116 }
8117 /*!
8117 /*!
8118 *
8118 *
8119 * IPython text editor webapp
8119 * IPython text editor webapp
8120 *
8120 *
8121 */
8121 */
8122 .selected-keymap i.fa {
8122 .selected-keymap i.fa {
8123 padding: 0px 5px;
8123 padding: 0px 5px;
8124 }
8124 }
8125 .selected-keymap i.fa:before {
8125 .selected-keymap i.fa:before {
8126 content: "\f00c";
8126 content: "\f00c";
8127 }
8127 }
8128 #mode-menu {
8128 #mode-menu {
8129 overflow: auto;
8129 overflow: auto;
8130 max-height: 20em;
8130 max-height: 20em;
8131 }
8131 }
8132 #texteditor-container {
8132 #texteditor-container {
8133 border-bottom: 1px solid #ccc;
8133 border-bottom: 1px solid #ccc;
8134 }
8134 }
8135 #filename {
8135 #filename {
8136 font-size: 16pt;
8136 font-size: 16pt;
8137 display: table;
8137 display: table;
8138 padding: 0px 5px;
8138 padding: 0px 5px;
8139 }
8139 }
8140 /*!
8140 /*!
8141 *
8141 *
8142 * IPython notebook
8142 * IPython notebook
8143 *
8143 *
8144 */
8144 */
8145 /* CSS font colors for translated ANSI colors. */
8145 /* CSS font colors for translated ANSI colors. */
8146 .ansibold {
8146 .ansibold {
8147 font-weight: bold;
8147 font-weight: bold;
8148 }
8148 }
8149 /* use dark versions for foreground, to improve visibility */
8149 /* use dark versions for foreground, to improve visibility */
8150 .ansiblack {
8150 .ansiblack {
8151 color: black;
8151 color: black;
8152 }
8152 }
8153 .ansired {
8153 .ansired {
8154 color: darkred;
8154 color: darkred;
8155 }
8155 }
8156 .ansigreen {
8156 .ansigreen {
8157 color: darkgreen;
8157 color: darkgreen;
8158 }
8158 }
8159 .ansiyellow {
8159 .ansiyellow {
8160 color: #c4a000;
8160 color: #c4a000;
8161 }
8161 }
8162 .ansiblue {
8162 .ansiblue {
8163 color: darkblue;
8163 color: darkblue;
8164 }
8164 }
8165 .ansipurple {
8165 .ansipurple {
8166 color: darkviolet;
8166 color: darkviolet;
8167 }
8167 }
8168 .ansicyan {
8168 .ansicyan {
8169 color: steelblue;
8169 color: steelblue;
8170 }
8170 }
8171 .ansigray {
8171 .ansigray {
8172 color: gray;
8172 color: gray;
8173 }
8173 }
8174 /* and light for background, for the same reason */
8174 /* and light for background, for the same reason */
8175 .ansibgblack {
8175 .ansibgblack {
8176 background-color: black;
8176 background-color: black;
8177 }
8177 }
8178 .ansibgred {
8178 .ansibgred {
8179 background-color: red;
8179 background-color: red;
8180 }
8180 }
8181 .ansibggreen {
8181 .ansibggreen {
8182 background-color: green;
8182 background-color: green;
8183 }
8183 }
8184 .ansibgyellow {
8184 .ansibgyellow {
8185 background-color: yellow;
8185 background-color: yellow;
8186 }
8186 }
8187 .ansibgblue {
8187 .ansibgblue {
8188 background-color: blue;
8188 background-color: blue;
8189 }
8189 }
8190 .ansibgpurple {
8190 .ansibgpurple {
8191 background-color: magenta;
8191 background-color: magenta;
8192 }
8192 }
8193 .ansibgcyan {
8193 .ansibgcyan {
8194 background-color: cyan;
8194 background-color: cyan;
8195 }
8195 }
8196 .ansibggray {
8196 .ansibggray {
8197 background-color: gray;
8197 background-color: gray;
8198 }
8198 }
8199 div.cell {
8199 div.cell {
8200 border: 1px solid transparent;
8200 border: 1px solid transparent;
8201 /* Old browsers */
8201 /* Old browsers */
8202 display: -webkit-box;
8202 display: -webkit-box;
8203 -webkit-box-orient: vertical;
8203 -webkit-box-orient: vertical;
8204 -webkit-box-align: stretch;
8204 -webkit-box-align: stretch;
8205 display: -moz-box;
8205 display: -moz-box;
8206 -moz-box-orient: vertical;
8206 -moz-box-orient: vertical;
8207 -moz-box-align: stretch;
8207 -moz-box-align: stretch;
8208 display: box;
8208 display: box;
8209 box-orient: vertical;
8209 box-orient: vertical;
8210 box-align: stretch;
8210 box-align: stretch;
8211 /* Modern browsers */
8211 /* Modern browsers */
8212 display: flex;
8212 display: flex;
8213 flex-direction: column;
8213 flex-direction: column;
8214 align-items: stretch;
8214 align-items: stretch;
8215 border-radius: 4px;
8215 border-radius: 4px;
8216 box-sizing: border-box;
8216 box-sizing: border-box;
8217 -moz-box-sizing: border-box;
8217 -moz-box-sizing: border-box;
8218 -webkit-box-sizing: border-box;
8218 -webkit-box-sizing: border-box;
8219 border-width: thin;
8219 border-width: thin;
8220 border-style: solid;
8220 border-style: solid;
8221 width: 100%;
8221 width: 100%;
8222 padding: 5px 5px 5px 0px;
8222 padding: 5px 5px 5px 0px;
8223 /* This acts as a spacer between cells, that is outside the border */
8223 /* This acts as a spacer between cells, that is outside the border */
8224 margin: 0px;
8224 margin: 0px;
8225 outline: none;
8225 outline: none;
8226 }
8226 }
8227 div.cell.selected {
8227 div.cell.selected {
8228 border-color: #ababab;
8228 border-color: #ababab;
8229 }
8229 }
8230 div.cell.edit_mode {
8230 div.cell.edit_mode {
8231 border-color: green;
8231 border-color: green;
8232 }
8232 }
8233 div.prompt {
8233 div.prompt {
8234 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
8234 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
8235 min-width: 15ex;
8235 min-width: 15ex;
8236 /* This padding is tuned to match the padding on the CodeMirror editor. */
8236 /* This padding is tuned to match the padding on the CodeMirror editor. */
8237 padding: 0.4em;
8237 padding: 0.4em;
8238 margin: 0px;
8238 margin: 0px;
8239 font-family: monospace;
8239 font-family: monospace;
8240 text-align: right;
8240 text-align: right;
8241 /* This has to match that of the the CodeMirror class line-height below */
8241 /* This has to match that of the the CodeMirror class line-height below */
8242 line-height: 1.21429em;
8242 line-height: 1.21429em;
8243 }
8243 }
8244 @media (max-width: 480px) {
8244 @media (max-width: 480px) {
8245 div.prompt {
8245 div.prompt {
8246 text-align: left;
8246 text-align: left;
8247 }
8247 }
8248 }
8248 }
8249 div.inner_cell {
8249 div.inner_cell {
8250 /* Old browsers */
8250 /* Old browsers */
8251 display: -webkit-box;
8251 display: -webkit-box;
8252 -webkit-box-orient: vertical;
8252 -webkit-box-orient: vertical;
8253 -webkit-box-align: stretch;
8253 -webkit-box-align: stretch;
8254 display: -moz-box;
8254 display: -moz-box;
8255 -moz-box-orient: vertical;
8255 -moz-box-orient: vertical;
8256 -moz-box-align: stretch;
8256 -moz-box-align: stretch;
8257 display: box;
8257 display: box;
8258 box-orient: vertical;
8258 box-orient: vertical;
8259 box-align: stretch;
8259 box-align: stretch;
8260 /* Modern browsers */
8260 /* Modern browsers */
8261 display: flex;
8261 display: flex;
8262 flex-direction: column;
8262 flex-direction: column;
8263 align-items: stretch;
8263 align-items: stretch;
8264 /* Old browsers */
8264 /* Old browsers */
8265 -webkit-box-flex: 1;
8265 -webkit-box-flex: 1;
8266 -moz-box-flex: 1;
8266 -moz-box-flex: 1;
8267 box-flex: 1;
8267 box-flex: 1;
8268 /* Modern browsers */
8268 /* Modern browsers */
8269 flex: 1;
8269 flex: 1;
8270 }
8270 }
8271 /* input_area and input_prompt must match in top border and margin for alignment */
8271 /* input_area and input_prompt must match in top border and margin for alignment */
8272 div.input_area {
8272 div.input_area {
8273 border: 1px solid #cfcfcf;
8273 border: 1px solid #cfcfcf;
8274 border-radius: 4px;
8274 border-radius: 4px;
8275 background: #f7f7f7;
8275 background: #f7f7f7;
8276 line-height: 1.21429em;
8276 line-height: 1.21429em;
8277 }
8277 }
8278 /* This is needed so that empty prompt areas can collapse to zero height when there
8278 /* This is needed so that empty prompt areas can collapse to zero height when there
8279 is no content in the output_subarea and the prompt. The main purpose of this is
8279 is no content in the output_subarea and the prompt. The main purpose of this is
8280 to make sure that empty JavaScript output_subareas have no height. */
8280 to make sure that empty JavaScript output_subareas have no height. */
8281 div.prompt:empty {
8281 div.prompt:empty {
8282 padding-top: 0;
8282 padding-top: 0;
8283 padding-bottom: 0;
8283 padding-bottom: 0;
8284 }
8284 }
8285 div.unrecognized_cell {
8285 div.unrecognized_cell {
8286 padding: 5px 5px 5px 0px;
8286 padding: 5px 5px 5px 0px;
8287 /* Old browsers */
8287 /* Old browsers */
8288 display: -webkit-box;
8288 display: -webkit-box;
8289 -webkit-box-orient: horizontal;
8289 -webkit-box-orient: horizontal;
8290 -webkit-box-align: stretch;
8290 -webkit-box-align: stretch;
8291 display: -moz-box;
8291 display: -moz-box;
8292 -moz-box-orient: horizontal;
8292 -moz-box-orient: horizontal;
8293 -moz-box-align: stretch;
8293 -moz-box-align: stretch;
8294 display: box;
8294 display: box;
8295 box-orient: horizontal;
8295 box-orient: horizontal;
8296 box-align: stretch;
8296 box-align: stretch;
8297 /* Modern browsers */
8297 /* Modern browsers */
8298 display: flex;
8298 display: flex;
8299 flex-direction: row;
8299 flex-direction: row;
8300 align-items: stretch;
8300 align-items: stretch;
8301 }
8301 }
8302 div.unrecognized_cell .inner_cell {
8302 div.unrecognized_cell .inner_cell {
8303 border-radius: 4px;
8303 border-radius: 4px;
8304 padding: 5px;
8304 padding: 5px;
8305 font-weight: bold;
8305 font-weight: bold;
8306 color: red;
8306 color: red;
8307 border: 1px solid #cfcfcf;
8307 border: 1px solid #cfcfcf;
8308 background: #eaeaea;
8308 background: #eaeaea;
8309 }
8309 }
8310 div.unrecognized_cell .inner_cell a {
8310 div.unrecognized_cell .inner_cell a {
8311 color: inherit;
8311 color: inherit;
8312 text-decoration: none;
8312 text-decoration: none;
8313 }
8313 }
8314 div.unrecognized_cell .inner_cell a:hover {
8314 div.unrecognized_cell .inner_cell a:hover {
8315 color: inherit;
8315 color: inherit;
8316 text-decoration: none;
8316 text-decoration: none;
8317 }
8317 }
8318 @media (max-width: 480px) {
8318 @media (max-width: 480px) {
8319 div.unrecognized_cell > div.prompt {
8319 div.unrecognized_cell > div.prompt {
8320 display: none;
8320 display: none;
8321 }
8321 }
8322 }
8322 }
8323 /* any special styling for code cells that are currently running goes here */
8323 /* any special styling for code cells that are currently running goes here */
8324 div.input {
8324 div.input {
8325 page-break-inside: avoid;
8325 page-break-inside: avoid;
8326 /* Old browsers */
8326 /* Old browsers */
8327 display: -webkit-box;
8327 display: -webkit-box;
8328 -webkit-box-orient: horizontal;
8328 -webkit-box-orient: horizontal;
8329 -webkit-box-align: stretch;
8329 -webkit-box-align: stretch;
8330 display: -moz-box;
8330 display: -moz-box;
8331 -moz-box-orient: horizontal;
8331 -moz-box-orient: horizontal;
8332 -moz-box-align: stretch;
8332 -moz-box-align: stretch;
8333 display: box;
8333 display: box;
8334 box-orient: horizontal;
8334 box-orient: horizontal;
8335 box-align: stretch;
8335 box-align: stretch;
8336 /* Modern browsers */
8336 /* Modern browsers */
8337 display: flex;
8337 display: flex;
8338 flex-direction: row;
8338 flex-direction: row;
8339 align-items: stretch;
8339 align-items: stretch;
8340 }
8340 }
8341 @media (max-width: 480px) {
8341 @media (max-width: 480px) {
8342 div.input {
8342 div.input {
8343 /* Old browsers */
8343 /* Old browsers */
8344 display: -webkit-box;
8344 display: -webkit-box;
8345 -webkit-box-orient: vertical;
8345 -webkit-box-orient: vertical;
8346 -webkit-box-align: stretch;
8346 -webkit-box-align: stretch;
8347 display: -moz-box;
8347 display: -moz-box;
8348 -moz-box-orient: vertical;
8348 -moz-box-orient: vertical;
8349 -moz-box-align: stretch;
8349 -moz-box-align: stretch;
8350 display: box;
8350 display: box;
8351 box-orient: vertical;
8351 box-orient: vertical;
8352 box-align: stretch;
8352 box-align: stretch;
8353 /* Modern browsers */
8353 /* Modern browsers */
8354 display: flex;
8354 display: flex;
8355 flex-direction: column;
8355 flex-direction: column;
8356 align-items: stretch;
8356 align-items: stretch;
8357 }
8357 }
8358 }
8358 }
8359 /* input_area and input_prompt must match in top border and margin for alignment */
8359 /* input_area and input_prompt must match in top border and margin for alignment */
8360 div.input_prompt {
8360 div.input_prompt {
8361 color: navy;
8361 color: navy;
8362 border-top: 1px solid transparent;
8362 border-top: 1px solid transparent;
8363 }
8363 }
8364 div.input_area > div.highlight {
8364 div.input_area > div.highlight {
8365 margin: 0.4em;
8365 margin: 0.4em;
8366 border: none;
8366 border: none;
8367 padding: 0px;
8367 padding: 0px;
8368 background-color: transparent;
8368 background-color: transparent;
8369 }
8369 }
8370 div.input_area > div.highlight > pre {
8370 div.input_area > div.highlight > pre {
8371 margin: 0px;
8371 margin: 0px;
8372 border: none;
8372 border: none;
8373 padding: 0px;
8373 padding: 0px;
8374 background-color: transparent;
8374 background-color: transparent;
8375 }
8375 }
8376 /* The following gets added to the <head> if it is detected that the user has a
8376 /* The following gets added to the <head> if it is detected that the user has a
8377 * monospace font with inconsistent normal/bold/italic height. See
8377 * monospace font with inconsistent normal/bold/italic height. See
8378 * notebookmain.js. Such fonts will have keywords vertically offset with
8378 * notebookmain.js. Such fonts will have keywords vertically offset with
8379 * respect to the rest of the text. The user should select a better font.
8379 * respect to the rest of the text. The user should select a better font.
8380 * See: https://github.com/ipython/ipython/issues/1503
8380 * See: https://github.com/ipython/ipython/issues/1503
8381 *
8381 *
8382 * .CodeMirror span {
8382 * .CodeMirror span {
8383 * vertical-align: bottom;
8383 * vertical-align: bottom;
8384 * }
8384 * }
8385 */
8385 */
8386 .CodeMirror {
8386 .CodeMirror {
8387 line-height: 1.21429em;
8387 line-height: 1.21429em;
8388 /* Changed from 1em to our global default */
8388 /* Changed from 1em to our global default */
8389 height: auto;
8389 height: auto;
8390 /* Changed to auto to autogrow */
8390 /* Changed to auto to autogrow */
8391 background: none;
8391 background: none;
8392 /* Changed from white to allow our bg to show through */
8392 /* Changed from white to allow our bg to show through */
8393 }
8393 }
8394 .CodeMirror-scroll {
8394 .CodeMirror-scroll {
8395 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8395 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8396 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8396 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8397 overflow-y: hidden;
8397 overflow-y: hidden;
8398 overflow-x: auto;
8398 overflow-x: auto;
8399 }
8399 }
8400 .CodeMirror-lines {
8400 .CodeMirror-lines {
8401 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8401 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8402 /* we have set a different line-height and want this to scale with that. */
8402 /* we have set a different line-height and want this to scale with that. */
8403 padding: 0.4em;
8403 padding: 0.4em;
8404 }
8404 }
8405 .CodeMirror-linenumber {
8405 .CodeMirror-linenumber {
8406 padding: 0 8px 0 4px;
8406 padding: 0 8px 0 4px;
8407 }
8407 }
8408 .CodeMirror-gutters {
8408 .CodeMirror-gutters {
8409 border-bottom-left-radius: 4px;
8409 border-bottom-left-radius: 4px;
8410 border-top-left-radius: 4px;
8410 border-top-left-radius: 4px;
8411 }
8411 }
8412 .CodeMirror pre {
8412 .CodeMirror pre {
8413 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8413 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8414 /* .CodeMirror-lines */
8414 /* .CodeMirror-lines */
8415 padding: 0;
8415 padding: 0;
8416 border: 0;
8416 border: 0;
8417 border-radius: 0;
8417 border-radius: 0;
8418 }
8418 }
8419 .CodeMirror-vscrollbar,
8419 .CodeMirror-vscrollbar,
8420 .CodeMirror-hscrollbar {
8420 .CodeMirror-hscrollbar {
8421 display: none !important;
8421 display: none !important;
8422 }
8422 }
8423 /*
8423 /*
8424
8424
8425 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8425 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8426 Adapted from GitHub theme
8426 Adapted from GitHub theme
8427
8427
8428 */
8428 */
8429 .highlight-base {
8429 .highlight-base {
8430 color: #000000;
8430 color: #000000;
8431 }
8431 }
8432 .highlight-variable {
8432 .highlight-variable {
8433 color: #000000;
8433 color: #000000;
8434 }
8434 }
8435 .highlight-variable-2 {
8435 .highlight-variable-2 {
8436 color: #1a1a1a;
8436 color: #1a1a1a;
8437 }
8437 }
8438 .highlight-variable-3 {
8438 .highlight-variable-3 {
8439 color: #333333;
8439 color: #333333;
8440 }
8440 }
8441 .highlight-string {
8441 .highlight-string {
8442 color: #BA2121;
8442 color: #BA2121;
8443 }
8443 }
8444 .highlight-comment {
8444 .highlight-comment {
8445 color: #408080;
8445 color: #408080;
8446 font-style: italic;
8446 font-style: italic;
8447 }
8447 }
8448 .highlight-number {
8448 .highlight-number {
8449 color: #080;
8449 color: #080;
8450 }
8450 }
8451 .highlight-atom {
8451 .highlight-atom {
8452 color: #88F;
8452 color: #88F;
8453 }
8453 }
8454 .highlight-keyword {
8454 .highlight-keyword {
8455 color: #008000;
8455 color: #008000;
8456 font-weight: bold;
8456 font-weight: bold;
8457 }
8457 }
8458 .highlight-builtin {
8458 .highlight-builtin {
8459 color: #008000;
8459 color: #008000;
8460 }
8460 }
8461 .highlight-error {
8461 .highlight-error {
8462 color: #f00;
8462 color: #f00;
8463 }
8463 }
8464 .highlight-operator {
8464 .highlight-operator {
8465 color: #AA22FF;
8465 color: #AA22FF;
8466 font-weight: bold;
8466 font-weight: bold;
8467 }
8467 }
8468 .highlight-meta {
8468 .highlight-meta {
8469 color: #AA22FF;
8469 color: #AA22FF;
8470 }
8470 }
8471 /* previously not defined, copying from default codemirror */
8471 /* previously not defined, copying from default codemirror */
8472 .highlight-def {
8472 .highlight-def {
8473 color: #00f;
8473 color: #00f;
8474 }
8474 }
8475 .highlight-string-2 {
8475 .highlight-string-2 {
8476 color: #f50;
8476 color: #f50;
8477 }
8477 }
8478 .highlight-qualifier {
8478 .highlight-qualifier {
8479 color: #555;
8479 color: #555;
8480 }
8480 }
8481 .highlight-bracket {
8481 .highlight-bracket {
8482 color: #997;
8482 color: #997;
8483 }
8483 }
8484 .highlight-tag {
8484 .highlight-tag {
8485 color: #170;
8485 color: #170;
8486 }
8486 }
8487 .highlight-attribute {
8487 .highlight-attribute {
8488 color: #00c;
8488 color: #00c;
8489 }
8489 }
8490 .highlight-header {
8490 .highlight-header {
8491 color: blue;
8491 color: blue;
8492 }
8492 }
8493 .highlight-quote {
8493 .highlight-quote {
8494 color: #090;
8494 color: #090;
8495 }
8495 }
8496 .highlight-link {
8496 .highlight-link {
8497 color: #00c;
8497 color: #00c;
8498 }
8498 }
8499 /* apply the same style to codemirror */
8499 /* apply the same style to codemirror */
8500 .cm-s-ipython span.cm-keyword {
8500 .cm-s-ipython span.cm-keyword {
8501 color: #008000;
8501 color: #008000;
8502 font-weight: bold;
8502 font-weight: bold;
8503 }
8503 }
8504 .cm-s-ipython span.cm-atom {
8504 .cm-s-ipython span.cm-atom {
8505 color: #88F;
8505 color: #88F;
8506 }
8506 }
8507 .cm-s-ipython span.cm-number {
8507 .cm-s-ipython span.cm-number {
8508 color: #080;
8508 color: #080;
8509 }
8509 }
8510 .cm-s-ipython span.cm-def {
8510 .cm-s-ipython span.cm-def {
8511 color: #00f;
8511 color: #00f;
8512 }
8512 }
8513 .cm-s-ipython span.cm-variable {
8513 .cm-s-ipython span.cm-variable {
8514 color: #000000;
8514 color: #000000;
8515 }
8515 }
8516 .cm-s-ipython span.cm-operator {
8516 .cm-s-ipython span.cm-operator {
8517 color: #AA22FF;
8517 color: #AA22FF;
8518 font-weight: bold;
8518 font-weight: bold;
8519 }
8519 }
8520 .cm-s-ipython span.cm-variable-2 {
8520 .cm-s-ipython span.cm-variable-2 {
8521 color: #1a1a1a;
8521 color: #1a1a1a;
8522 }
8522 }
8523 .cm-s-ipython span.cm-variable-3 {
8523 .cm-s-ipython span.cm-variable-3 {
8524 color: #333333;
8524 color: #333333;
8525 }
8525 }
8526 .cm-s-ipython span.cm-comment {
8526 .cm-s-ipython span.cm-comment {
8527 color: #408080;
8527 color: #408080;
8528 font-style: italic;
8528 font-style: italic;
8529 }
8529 }
8530 .cm-s-ipython span.cm-string {
8530 .cm-s-ipython span.cm-string {
8531 color: #BA2121;
8531 color: #BA2121;
8532 }
8532 }
8533 .cm-s-ipython span.cm-string-2 {
8533 .cm-s-ipython span.cm-string-2 {
8534 color: #f50;
8534 color: #f50;
8535 }
8535 }
8536 .cm-s-ipython span.cm-meta {
8536 .cm-s-ipython span.cm-meta {
8537 color: #AA22FF;
8537 color: #AA22FF;
8538 }
8538 }
8539 .cm-s-ipython span.cm-qualifier {
8539 .cm-s-ipython span.cm-qualifier {
8540 color: #555;
8540 color: #555;
8541 }
8541 }
8542 .cm-s-ipython span.cm-builtin {
8542 .cm-s-ipython span.cm-builtin {
8543 color: #008000;
8543 color: #008000;
8544 }
8544 }
8545 .cm-s-ipython span.cm-bracket {
8545 .cm-s-ipython span.cm-bracket {
8546 color: #997;
8546 color: #997;
8547 }
8547 }
8548 .cm-s-ipython span.cm-tag {
8548 .cm-s-ipython span.cm-tag {
8549 color: #170;
8549 color: #170;
8550 }
8550 }
8551 .cm-s-ipython span.cm-attribute {
8551 .cm-s-ipython span.cm-attribute {
8552 color: #00c;
8552 color: #00c;
8553 }
8553 }
8554 .cm-s-ipython span.cm-header {
8554 .cm-s-ipython span.cm-header {
8555 color: blue;
8555 color: blue;
8556 }
8556 }
8557 .cm-s-ipython span.cm-quote {
8557 .cm-s-ipython span.cm-quote {
8558 color: #090;
8558 color: #090;
8559 }
8559 }
8560 .cm-s-ipython span.cm-link {
8560 .cm-s-ipython span.cm-link {
8561 color: #00c;
8561 color: #00c;
8562 }
8562 }
8563 .cm-s-ipython span.cm-error {
8563 .cm-s-ipython span.cm-error {
8564 color: #f00;
8564 color: #f00;
8565 }
8565 }
8566 .cm-s-ipython span.cm-tab {
8566 .cm-s-ipython span.cm-tab {
8567 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8567 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8568 background-position: right;
8568 background-position: right;
8569 background-repeat: no-repeat;
8569 background-repeat: no-repeat;
8570 }
8570 }
8571 div.output_wrapper {
8571 div.output_wrapper {
8572 /* this position must be relative to enable descendents to be absolute within it */
8572 /* this position must be relative to enable descendents to be absolute within it */
8573 position: relative;
8573 position: relative;
8574 /* Old browsers */
8574 /* Old browsers */
8575 display: -webkit-box;
8575 display: -webkit-box;
8576 -webkit-box-orient: vertical;
8576 -webkit-box-orient: vertical;
8577 -webkit-box-align: stretch;
8577 -webkit-box-align: stretch;
8578 display: -moz-box;
8578 display: -moz-box;
8579 -moz-box-orient: vertical;
8579 -moz-box-orient: vertical;
8580 -moz-box-align: stretch;
8580 -moz-box-align: stretch;
8581 display: box;
8581 display: box;
8582 box-orient: vertical;
8582 box-orient: vertical;
8583 box-align: stretch;
8583 box-align: stretch;
8584 /* Modern browsers */
8584 /* Modern browsers */
8585 display: flex;
8585 display: flex;
8586 flex-direction: column;
8586 flex-direction: column;
8587 align-items: stretch;
8587 align-items: stretch;
8588 }
8588 }
8589 /* class for the output area when it should be height-limited */
8589 /* class for the output area when it should be height-limited */
8590 div.output_scroll {
8590 div.output_scroll {
8591 /* ideally, this would be max-height, but FF barfs all over that */
8591 /* ideally, this would be max-height, but FF barfs all over that */
8592 height: 24em;
8592 height: 24em;
8593 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8593 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8594 width: 100%;
8594 width: 100%;
8595 overflow: auto;
8595 overflow: auto;
8596 border-radius: 4px;
8596 border-radius: 4px;
8597 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8597 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8598 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8598 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8599 display: block;
8599 display: block;
8600 }
8600 }
8601 /* output div while it is collapsed */
8601 /* output div while it is collapsed */
8602 div.output_collapsed {
8602 div.output_collapsed {
8603 margin: 0px;
8603 margin: 0px;
8604 padding: 0px;
8604 padding: 0px;
8605 /* Old browsers */
8605 /* Old browsers */
8606 display: -webkit-box;
8606 display: -webkit-box;
8607 -webkit-box-orient: vertical;
8607 -webkit-box-orient: vertical;
8608 -webkit-box-align: stretch;
8608 -webkit-box-align: stretch;
8609 display: -moz-box;
8609 display: -moz-box;
8610 -moz-box-orient: vertical;
8610 -moz-box-orient: vertical;
8611 -moz-box-align: stretch;
8611 -moz-box-align: stretch;
8612 display: box;
8612 display: box;
8613 box-orient: vertical;
8613 box-orient: vertical;
8614 box-align: stretch;
8614 box-align: stretch;
8615 /* Modern browsers */
8615 /* Modern browsers */
8616 display: flex;
8616 display: flex;
8617 flex-direction: column;
8617 flex-direction: column;
8618 align-items: stretch;
8618 align-items: stretch;
8619 }
8619 }
8620 div.out_prompt_overlay {
8620 div.out_prompt_overlay {
8621 height: 100%;
8621 height: 100%;
8622 padding: 0px 0.4em;
8622 padding: 0px 0.4em;
8623 position: absolute;
8623 position: absolute;
8624 border-radius: 4px;
8624 border-radius: 4px;
8625 }
8625 }
8626 div.out_prompt_overlay:hover {
8626 div.out_prompt_overlay:hover {
8627 /* use inner shadow to get border that is computed the same on WebKit/FF */
8627 /* use inner shadow to get border that is computed the same on WebKit/FF */
8628 -webkit-box-shadow: inset 0 0 1px #000000;
8628 -webkit-box-shadow: inset 0 0 1px #000000;
8629 box-shadow: inset 0 0 1px #000000;
8629 box-shadow: inset 0 0 1px #000000;
8630 background: rgba(240, 240, 240, 0.5);
8630 background: rgba(240, 240, 240, 0.5);
8631 }
8631 }
8632 div.output_prompt {
8632 div.output_prompt {
8633 color: darkred;
8633 color: darkred;
8634 }
8634 }
8635 /* This class is the outer container of all output sections. */
8635 /* This class is the outer container of all output sections. */
8636 div.output_area {
8636 div.output_area {
8637 padding: 0px;
8637 padding: 0px;
8638 page-break-inside: avoid;
8638 page-break-inside: avoid;
8639 /* Old browsers */
8639 /* Old browsers */
8640 display: -webkit-box;
8640 display: -webkit-box;
8641 -webkit-box-orient: horizontal;
8641 -webkit-box-orient: horizontal;
8642 -webkit-box-align: stretch;
8642 -webkit-box-align: stretch;
8643 display: -moz-box;
8643 display: -moz-box;
8644 -moz-box-orient: horizontal;
8644 -moz-box-orient: horizontal;
8645 -moz-box-align: stretch;
8645 -moz-box-align: stretch;
8646 display: box;
8646 display: box;
8647 box-orient: horizontal;
8647 box-orient: horizontal;
8648 box-align: stretch;
8648 box-align: stretch;
8649 /* Modern browsers */
8649 /* Modern browsers */
8650 display: flex;
8650 display: flex;
8651 flex-direction: row;
8651 flex-direction: row;
8652 align-items: stretch;
8652 align-items: stretch;
8653 }
8653 }
8654 div.output_area .MathJax_Display {
8654 div.output_area .MathJax_Display {
8655 text-align: left !important;
8655 text-align: left !important;
8656 }
8656 }
8657 div.output_area .rendered_html table {
8657 div.output_area .rendered_html table {
8658 margin-left: 0;
8658 margin-left: 0;
8659 margin-right: 0;
8659 margin-right: 0;
8660 }
8660 }
8661 div.output_area .rendered_html img {
8661 div.output_area .rendered_html img {
8662 margin-left: 0;
8662 margin-left: 0;
8663 margin-right: 0;
8663 margin-right: 0;
8664 }
8664 }
8665 /* This is needed to protect the pre formating from global settings such
8665 /* This is needed to protect the pre formating from global settings such
8666 as that of bootstrap */
8666 as that of bootstrap */
8667 .output {
8667 .output {
8668 /* Old browsers */
8668 /* Old browsers */
8669 display: -webkit-box;
8669 display: -webkit-box;
8670 -webkit-box-orient: vertical;
8670 -webkit-box-orient: vertical;
8671 -webkit-box-align: stretch;
8671 -webkit-box-align: stretch;
8672 display: -moz-box;
8672 display: -moz-box;
8673 -moz-box-orient: vertical;
8673 -moz-box-orient: vertical;
8674 -moz-box-align: stretch;
8674 -moz-box-align: stretch;
8675 display: box;
8675 display: box;
8676 box-orient: vertical;
8676 box-orient: vertical;
8677 box-align: stretch;
8677 box-align: stretch;
8678 /* Modern browsers */
8678 /* Modern browsers */
8679 display: flex;
8679 display: flex;
8680 flex-direction: column;
8680 flex-direction: column;
8681 align-items: stretch;
8681 align-items: stretch;
8682 }
8682 }
8683 @media (max-width: 480px) {
8683 @media (max-width: 480px) {
8684 div.output_area {
8684 div.output_area {
8685 /* Old browsers */
8685 /* Old browsers */
8686 display: -webkit-box;
8686 display: -webkit-box;
8687 -webkit-box-orient: vertical;
8687 -webkit-box-orient: vertical;
8688 -webkit-box-align: stretch;
8688 -webkit-box-align: stretch;
8689 display: -moz-box;
8689 display: -moz-box;
8690 -moz-box-orient: vertical;
8690 -moz-box-orient: vertical;
8691 -moz-box-align: stretch;
8691 -moz-box-align: stretch;
8692 display: box;
8692 display: box;
8693 box-orient: vertical;
8693 box-orient: vertical;
8694 box-align: stretch;
8694 box-align: stretch;
8695 /* Modern browsers */
8695 /* Modern browsers */
8696 display: flex;
8696 display: flex;
8697 flex-direction: column;
8697 flex-direction: column;
8698 align-items: stretch;
8698 align-items: stretch;
8699 }
8699 }
8700 }
8700 }
8701 div.output_area pre {
8701 div.output_area pre {
8702 margin: 0;
8702 margin: 0;
8703 padding: 0;
8703 padding: 0;
8704 border: 0;
8704 border: 0;
8705 vertical-align: baseline;
8705 vertical-align: baseline;
8706 color: black;
8706 color: black;
8707 background-color: transparent;
8707 background-color: transparent;
8708 border-radius: 0;
8708 border-radius: 0;
8709 }
8709 }
8710 /* This class is for the output subarea inside the output_area and after
8710 /* This class is for the output subarea inside the output_area and after
8711 the prompt div. */
8711 the prompt div. */
8712 div.output_subarea {
8712 div.output_subarea {
8713 padding: 0.4em 0.4em 0em 0.4em;
8713 padding: 0.4em 0.4em 0em 0.4em;
8714 /* Old browsers */
8714 /* Old browsers */
8715 -webkit-box-flex: 1;
8715 -webkit-box-flex: 1;
8716 -moz-box-flex: 1;
8716 -moz-box-flex: 1;
8717 box-flex: 1;
8717 box-flex: 1;
8718 /* Modern browsers */
8718 /* Modern browsers */
8719 flex: 1;
8719 flex: 1;
8720 }
8720 }
8721 /* The rest of the output_* classes are for special styling of the different
8721 /* The rest of the output_* classes are for special styling of the different
8722 output types */
8722 output types */
8723 /* all text output has this class: */
8723 /* all text output has this class: */
8724 div.output_text {
8724 div.output_text {
8725 text-align: left;
8725 text-align: left;
8726 color: #000000;
8726 color: #000000;
8727 /* This has to match that of the the CodeMirror class line-height below */
8727 /* This has to match that of the the CodeMirror class line-height below */
8728 line-height: 1.21429em;
8728 line-height: 1.21429em;
8729 }
8729 }
8730 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8730 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8731 div.output_stderr {
8731 div.output_stderr {
8732 background: #fdd;
8732 background: #fdd;
8733 /* very light red background for stderr */
8733 /* very light red background for stderr */
8734 }
8734 }
8735 div.output_latex {
8735 div.output_latex {
8736 text-align: left;
8736 text-align: left;
8737 }
8737 }
8738 /* Empty output_javascript divs should have no height */
8738 /* Empty output_javascript divs should have no height */
8739 div.output_javascript:empty {
8739 div.output_javascript:empty {
8740 padding: 0;
8740 padding: 0;
8741 }
8741 }
8742 .js-error {
8742 .js-error {
8743 color: darkred;
8743 color: darkred;
8744 }
8744 }
8745 /* raw_input styles */
8745 /* raw_input styles */
8746 div.raw_input_container {
8746 div.raw_input_container {
8747 font-family: monospace;
8747 font-family: monospace;
8748 padding-top: 5px;
8748 padding-top: 5px;
8749 }
8749 }
8750 span.raw_input_prompt {
8750 span.raw_input_prompt {
8751 /* nothing needed here */
8751 /* nothing needed here */
8752 }
8752 }
8753 input.raw_input {
8753 input.raw_input {
8754 font-family: inherit;
8754 font-family: inherit;
8755 font-size: inherit;
8755 font-size: inherit;
8756 color: inherit;
8756 color: inherit;
8757 width: auto;
8757 width: auto;
8758 /* make sure input baseline aligns with prompt */
8758 /* make sure input baseline aligns with prompt */
8759 vertical-align: baseline;
8759 vertical-align: baseline;
8760 /* padding + margin = 0.5em between prompt and cursor */
8760 /* padding + margin = 0.5em between prompt and cursor */
8761 padding: 0em 0.25em;
8761 padding: 0em 0.25em;
8762 margin: 0em 0.25em;
8762 margin: 0em 0.25em;
8763 }
8763 }
8764 input.raw_input:focus {
8764 input.raw_input:focus {
8765 box-shadow: none;
8765 box-shadow: none;
8766 }
8766 }
8767 p.p-space {
8767 p.p-space {
8768 margin-bottom: 10px;
8768 margin-bottom: 10px;
8769 }
8769 }
8770 div.output_unrecognized {
8770 div.output_unrecognized {
8771 padding: 5px;
8771 padding: 5px;
8772 font-weight: bold;
8772 font-weight: bold;
8773 color: red;
8773 color: red;
8774 }
8774 }
8775 div.output_unrecognized a {
8775 div.output_unrecognized a {
8776 color: inherit;
8776 color: inherit;
8777 text-decoration: none;
8777 text-decoration: none;
8778 }
8778 }
8779 div.output_unrecognized a:hover {
8779 div.output_unrecognized a:hover {
8780 color: inherit;
8780 color: inherit;
8781 text-decoration: none;
8781 text-decoration: none;
8782 }
8782 }
8783 .rendered_html {
8783 .rendered_html {
8784 color: #000000;
8784 color: #000000;
8785 /* any extras will just be numbers: */
8785 /* any extras will just be numbers: */
8786 }
8786 }
8787 .rendered_html em {
8787 .rendered_html em {
8788 font-style: italic;
8788 font-style: italic;
8789 }
8789 }
8790 .rendered_html strong {
8790 .rendered_html strong {
8791 font-weight: bold;
8791 font-weight: bold;
8792 }
8792 }
8793 .rendered_html u {
8793 .rendered_html u {
8794 text-decoration: underline;
8794 text-decoration: underline;
8795 }
8795 }
8796 .rendered_html :link {
8796 .rendered_html :link {
8797 text-decoration: underline;
8797 text-decoration: underline;
8798 }
8798 }
8799 .rendered_html :visited {
8799 .rendered_html :visited {
8800 text-decoration: underline;
8800 text-decoration: underline;
8801 }
8801 }
8802 .rendered_html h1 {
8802 .rendered_html h1 {
8803 font-size: 185.7%;
8803 font-size: 185.7%;
8804 margin: 1.08em 0 0 0;
8804 margin: 1.08em 0 0 0;
8805 font-weight: bold;
8805 font-weight: bold;
8806 line-height: 1.0;
8806 line-height: 1.0;
8807 }
8807 }
8808 .rendered_html h2 {
8808 .rendered_html h2 {
8809 font-size: 157.1%;
8809 font-size: 157.1%;
8810 margin: 1.27em 0 0 0;
8810 margin: 1.27em 0 0 0;
8811 font-weight: bold;
8811 font-weight: bold;
8812 line-height: 1.0;
8812 line-height: 1.0;
8813 }
8813 }
8814 .rendered_html h3 {
8814 .rendered_html h3 {
8815 font-size: 128.6%;
8815 font-size: 128.6%;
8816 margin: 1.55em 0 0 0;
8816 margin: 1.55em 0 0 0;
8817 font-weight: bold;
8817 font-weight: bold;
8818 line-height: 1.0;
8818 line-height: 1.0;
8819 }
8819 }
8820 .rendered_html h4 {
8820 .rendered_html h4 {
8821 font-size: 100%;
8821 font-size: 100%;
8822 margin: 2em 0 0 0;
8822 margin: 2em 0 0 0;
8823 font-weight: bold;
8823 font-weight: bold;
8824 line-height: 1.0;
8824 line-height: 1.0;
8825 }
8825 }
8826 .rendered_html h5 {
8826 .rendered_html h5 {
8827 font-size: 100%;
8827 font-size: 100%;
8828 margin: 2em 0 0 0;
8828 margin: 2em 0 0 0;
8829 font-weight: bold;
8829 font-weight: bold;
8830 line-height: 1.0;
8830 line-height: 1.0;
8831 font-style: italic;
8831 font-style: italic;
8832 }
8832 }
8833 .rendered_html h6 {
8833 .rendered_html h6 {
8834 font-size: 100%;
8834 font-size: 100%;
8835 margin: 2em 0 0 0;
8835 margin: 2em 0 0 0;
8836 font-weight: bold;
8836 font-weight: bold;
8837 line-height: 1.0;
8837 line-height: 1.0;
8838 font-style: italic;
8838 font-style: italic;
8839 }
8839 }
8840 .rendered_html h1:first-child {
8840 .rendered_html h1:first-child {
8841 margin-top: 0.538em;
8841 margin-top: 0.538em;
8842 }
8842 }
8843 .rendered_html h2:first-child {
8843 .rendered_html h2:first-child {
8844 margin-top: 0.636em;
8844 margin-top: 0.636em;
8845 }
8845 }
8846 .rendered_html h3:first-child {
8846 .rendered_html h3:first-child {
8847 margin-top: 0.777em;
8847 margin-top: 0.777em;
8848 }
8848 }
8849 .rendered_html h4:first-child {
8849 .rendered_html h4:first-child {
8850 margin-top: 1em;
8850 margin-top: 1em;
8851 }
8851 }
8852 .rendered_html h5:first-child {
8852 .rendered_html h5:first-child {
8853 margin-top: 1em;
8853 margin-top: 1em;
8854 }
8854 }
8855 .rendered_html h6:first-child {
8855 .rendered_html h6:first-child {
8856 margin-top: 1em;
8856 margin-top: 1em;
8857 }
8857 }
8858 .rendered_html ul {
8858 .rendered_html ul {
8859 list-style: disc;
8859 list-style: disc;
8860 margin: 0em 2em;
8860 margin: 0em 2em;
8861 padding-left: 0px;
8861 padding-left: 0px;
8862 }
8862 }
8863 .rendered_html ul ul {
8863 .rendered_html ul ul {
8864 list-style: square;
8864 list-style: square;
8865 margin: 0em 2em;
8865 margin: 0em 2em;
8866 }
8866 }
8867 .rendered_html ul ul ul {
8867 .rendered_html ul ul ul {
8868 list-style: circle;
8868 list-style: circle;
8869 margin: 0em 2em;
8869 margin: 0em 2em;
8870 }
8870 }
8871 .rendered_html ol {
8871 .rendered_html ol {
8872 list-style: decimal;
8872 list-style: decimal;
8873 margin: 0em 2em;
8873 margin: 0em 2em;
8874 padding-left: 0px;
8874 padding-left: 0px;
8875 }
8875 }
8876 .rendered_html ol ol {
8876 .rendered_html ol ol {
8877 list-style: upper-alpha;
8877 list-style: upper-alpha;
8878 margin: 0em 2em;
8878 margin: 0em 2em;
8879 }
8879 }
8880 .rendered_html ol ol ol {
8880 .rendered_html ol ol ol {
8881 list-style: lower-alpha;
8881 list-style: lower-alpha;
8882 margin: 0em 2em;
8882 margin: 0em 2em;
8883 }
8883 }
8884 .rendered_html ol ol ol ol {
8884 .rendered_html ol ol ol ol {
8885 list-style: lower-roman;
8885 list-style: lower-roman;
8886 margin: 0em 2em;
8886 margin: 0em 2em;
8887 }
8887 }
8888 .rendered_html ol ol ol ol ol {
8888 .rendered_html ol ol ol ol ol {
8889 list-style: decimal;
8889 list-style: decimal;
8890 margin: 0em 2em;
8890 margin: 0em 2em;
8891 }
8891 }
8892 .rendered_html * + ul {
8892 .rendered_html * + ul {
8893 margin-top: 1em;
8893 margin-top: 1em;
8894 }
8894 }
8895 .rendered_html * + ol {
8895 .rendered_html * + ol {
8896 margin-top: 1em;
8896 margin-top: 1em;
8897 }
8897 }
8898 .rendered_html hr {
8898 .rendered_html hr {
8899 color: black;
8899 color: black;
8900 background-color: black;
8900 background-color: black;
8901 }
8901 }
8902 .rendered_html pre {
8902 .rendered_html pre {
8903 margin: 1em 2em;
8903 margin: 1em 2em;
8904 }
8904 }
8905 .rendered_html pre,
8905 .rendered_html pre,
8906 .rendered_html code {
8906 .rendered_html code {
8907 border: 0;
8907 border: 0;
8908 background-color: #ffffff;
8908 background-color: #ffffff;
8909 color: #000000;
8909 color: #000000;
8910 font-size: 100%;
8910 font-size: 100%;
8911 padding: 0px;
8911 padding: 0px;
8912 }
8912 }
8913 .rendered_html blockquote {
8913 .rendered_html blockquote {
8914 margin: 1em 2em;
8914 margin: 1em 2em;
8915 }
8915 }
8916 .rendered_html table {
8916 .rendered_html table {
8917 margin-left: auto;
8917 margin-left: auto;
8918 margin-right: auto;
8918 margin-right: auto;
8919 border: 1px solid black;
8919 border: 1px solid black;
8920 border-collapse: collapse;
8920 border-collapse: collapse;
8921 }
8921 }
8922 .rendered_html tr,
8922 .rendered_html tr,
8923 .rendered_html th,
8923 .rendered_html th,
8924 .rendered_html td {
8924 .rendered_html td {
8925 border: 1px solid black;
8925 border: 1px solid black;
8926 border-collapse: collapse;
8926 border-collapse: collapse;
8927 margin: 1em 2em;
8927 margin: 1em 2em;
8928 }
8928 }
8929 .rendered_html td,
8929 .rendered_html td,
8930 .rendered_html th {
8930 .rendered_html th {
8931 text-align: left;
8931 text-align: left;
8932 vertical-align: middle;
8932 vertical-align: middle;
8933 padding: 4px;
8933 padding: 4px;
8934 }
8934 }
8935 .rendered_html th {
8935 .rendered_html th {
8936 font-weight: bold;
8936 font-weight: bold;
8937 }
8937 }
8938 .rendered_html * + table {
8938 .rendered_html * + table {
8939 margin-top: 1em;
8939 margin-top: 1em;
8940 }
8940 }
8941 .rendered_html p {
8941 .rendered_html p {
8942 text-align: justify;
8942 text-align: justify;
8943 }
8943 }
8944 .rendered_html * + p {
8944 .rendered_html * + p {
8945 margin-top: 1em;
8945 margin-top: 1em;
8946 }
8946 }
8947 .rendered_html img {
8947 .rendered_html img {
8948 display: block;
8948 display: block;
8949 margin-left: auto;
8949 margin-left: auto;
8950 margin-right: auto;
8950 margin-right: auto;
8951 }
8951 }
8952 .rendered_html * + img {
8952 .rendered_html * + img {
8953 margin-top: 1em;
8953 margin-top: 1em;
8954 }
8954 }
8955 div.text_cell {
8955 div.text_cell {
8956 padding: 5px 5px 5px 0px;
8956 padding: 5px 5px 5px 0px;
8957 /* Old browsers */
8957 /* Old browsers */
8958 display: -webkit-box;
8958 display: -webkit-box;
8959 -webkit-box-orient: horizontal;
8959 -webkit-box-orient: horizontal;
8960 -webkit-box-align: stretch;
8960 -webkit-box-align: stretch;
8961 display: -moz-box;
8961 display: -moz-box;
8962 -moz-box-orient: horizontal;
8962 -moz-box-orient: horizontal;
8963 -moz-box-align: stretch;
8963 -moz-box-align: stretch;
8964 display: box;
8964 display: box;
8965 box-orient: horizontal;
8965 box-orient: horizontal;
8966 box-align: stretch;
8966 box-align: stretch;
8967 /* Modern browsers */
8967 /* Modern browsers */
8968 display: flex;
8968 display: flex;
8969 flex-direction: row;
8969 flex-direction: row;
8970 align-items: stretch;
8970 align-items: stretch;
8971 }
8971 }
8972 @media (max-width: 480px) {
8972 @media (max-width: 480px) {
8973 div.text_cell > div.prompt {
8973 div.text_cell > div.prompt {
8974 display: none;
8974 display: none;
8975 }
8975 }
8976 }
8976 }
8977 div.text_cell_render {
8977 div.text_cell_render {
8978 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
8978 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
8979 outline: none;
8979 outline: none;
8980 resize: none;
8980 resize: none;
8981 width: inherit;
8981 width: inherit;
8982 border-style: none;
8982 border-style: none;
8983 padding: 0.5em 0.5em 0.5em 0.4em;
8983 padding: 0.5em 0.5em 0.5em 0.4em;
8984 color: #000000;
8984 color: #000000;
8985 box-sizing: border-box;
8985 box-sizing: border-box;
8986 -moz-box-sizing: border-box;
8986 -moz-box-sizing: border-box;
8987 -webkit-box-sizing: border-box;
8987 -webkit-box-sizing: border-box;
8988 }
8988 }
8989 a.anchor-link:link {
8989 a.anchor-link:link {
8990 text-decoration: none;
8990 text-decoration: none;
8991 padding: 0px 20px;
8991 padding: 0px 20px;
8992 visibility: hidden;
8992 visibility: hidden;
8993 }
8993 }
8994 h1:hover .anchor-link,
8994 h1:hover .anchor-link,
8995 h2:hover .anchor-link,
8995 h2:hover .anchor-link,
8996 h3:hover .anchor-link,
8996 h3:hover .anchor-link,
8997 h4:hover .anchor-link,
8997 h4:hover .anchor-link,
8998 h5:hover .anchor-link,
8998 h5:hover .anchor-link,
8999 h6:hover .anchor-link {
8999 h6:hover .anchor-link {
9000 visibility: visible;
9000 visibility: visible;
9001 }
9001 }
9002 .text_cell.rendered .input_area {
9002 .text_cell.rendered .input_area {
9003 display: none;
9003 display: none;
9004 }
9004 }
9005 .text_cell.unrendered .text_cell_render {
9005 .text_cell.unrendered .text_cell_render {
9006 display: none;
9006 display: none;
9007 }
9007 }
9008 .cm-header-1,
9008 .cm-header-1,
9009 .cm-header-2,
9009 .cm-header-2,
9010 .cm-header-3,
9010 .cm-header-3,
9011 .cm-header-4,
9011 .cm-header-4,
9012 .cm-header-5,
9012 .cm-header-5,
9013 .cm-header-6 {
9013 .cm-header-6 {
9014 font-weight: bold;
9014 font-weight: bold;
9015 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
9015 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
9016 }
9016 }
9017 .cm-header-1 {
9017 .cm-header-1 {
9018 font-size: 185.7%;
9018 font-size: 185.7%;
9019 }
9019 }
9020 .cm-header-2 {
9020 .cm-header-2 {
9021 font-size: 157.1%;
9021 font-size: 157.1%;
9022 }
9022 }
9023 .cm-header-3 {
9023 .cm-header-3 {
9024 font-size: 128.6%;
9024 font-size: 128.6%;
9025 }
9025 }
9026 .cm-header-4 {
9026 .cm-header-4 {
9027 font-size: 110%;
9027 font-size: 110%;
9028 }
9028 }
9029 .cm-header-5 {
9029 .cm-header-5 {
9030 font-size: 100%;
9030 font-size: 100%;
9031 font-style: italic;
9031 font-style: italic;
9032 }
9032 }
9033 .cm-header-6 {
9033 .cm-header-6 {
9034 font-size: 100%;
9034 font-size: 100%;
9035 font-style: italic;
9035 font-style: italic;
9036 }
9036 }
9037 .widget-area {
9037 .widget-area {
9038 /*
9038 /*
9039 LESS file that styles IPython notebook widgets and the area they sit in.
9039 LESS file that styles IPython notebook widgets and the area they sit in.
9040
9040
9041 The widget area typically looks something like this:
9041 The widget area typically looks something like this:
9042 +------------------------------------------+
9042 +------------------------------------------+
9043 | widget-area |
9043 | widget-area |
9044 | +--------+---------------------------+ |
9044 | +--------+---------------------------+ |
9045 | | prompt | widget-subarea | |
9045 | | prompt | widget-subarea | |
9046 | | | +--------+ +--------+ | |
9046 | | | +--------+ +--------+ | |
9047 | | | | widget | | widget | | |
9047 | | | | widget | | widget | | |
9048 | | | +--------+ +--------+ | |
9048 | | | +--------+ +--------+ | |
9049 | +--------+---------------------------+ |
9049 | +--------+---------------------------+ |
9050 +------------------------------------------+
9050 +------------------------------------------+
9051 */
9051 */
9052 page-break-inside: avoid;
9052 page-break-inside: avoid;
9053 /* Old browsers */
9053 /* Old browsers */
9054 display: -webkit-box;
9054 display: -webkit-box;
9055 -webkit-box-orient: horizontal;
9055 -webkit-box-orient: horizontal;
9056 -webkit-box-align: stretch;
9056 -webkit-box-align: stretch;
9057 display: -moz-box;
9057 display: -moz-box;
9058 -moz-box-orient: horizontal;
9058 -moz-box-orient: horizontal;
9059 -moz-box-align: stretch;
9059 -moz-box-align: stretch;
9060 display: box;
9060 display: box;
9061 box-orient: horizontal;
9061 box-orient: horizontal;
9062 box-align: stretch;
9062 box-align: stretch;
9063 /* Modern browsers */
9063 /* Modern browsers */
9064 display: flex;
9064 display: flex;
9065 flex-direction: row;
9065 flex-direction: row;
9066 align-items: stretch;
9066 align-items: stretch;
9067 }
9067 }
9068 .widget-area .widget-subarea {
9068 .widget-area .widget-subarea {
9069 padding: 0.44em 0.4em 0.4em 1px;
9069 padding: 0.44em 0.4em 0.4em 1px;
9070 margin-left: 6px;
9070 margin-left: 6px;
9071 box-sizing: border-box;
9071 box-sizing: border-box;
9072 -moz-box-sizing: border-box;
9072 -moz-box-sizing: border-box;
9073 -webkit-box-sizing: border-box;
9073 -webkit-box-sizing: border-box;
9074 /* Old browsers */
9074 /* Old browsers */
9075 display: -webkit-box;
9075 display: -webkit-box;
9076 -webkit-box-orient: vertical;
9076 -webkit-box-orient: vertical;
9077 -webkit-box-align: stretch;
9077 -webkit-box-align: stretch;
9078 display: -moz-box;
9078 display: -moz-box;
9079 -moz-box-orient: vertical;
9079 -moz-box-orient: vertical;
9080 -moz-box-align: stretch;
9080 -moz-box-align: stretch;
9081 display: box;
9081 display: box;
9082 box-orient: vertical;
9082 box-orient: vertical;
9083 box-align: stretch;
9083 box-align: stretch;
9084 /* Modern browsers */
9084 /* Modern browsers */
9085 display: flex;
9085 display: flex;
9086 flex-direction: column;
9086 flex-direction: column;
9087 align-items: stretch;
9087 align-items: stretch;
9088 /* Old browsers */
9088 /* Old browsers */
9089 -webkit-box-flex: 2;
9089 -webkit-box-flex: 2;
9090 -moz-box-flex: 2;
9090 -moz-box-flex: 2;
9091 box-flex: 2;
9091 box-flex: 2;
9092 /* Modern browsers */
9092 /* Modern browsers */
9093 flex: 2;
9093 flex: 2;
9094 /* Old browsers */
9094 /* Old browsers */
9095 -webkit-box-align: start;
9095 -webkit-box-align: start;
9096 -moz-box-align: start;
9096 -moz-box-align: start;
9097 box-align: start;
9097 box-align: start;
9098 /* Modern browsers */
9098 /* Modern browsers */
9099 align-items: flex-start;
9099 align-items: flex-start;
9100 }
9100 }
9101 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
9101 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
9102 THE WIDGET AREA). */
9102 THE WIDGET AREA). */
9103 .slide-track {
9103 .slide-track {
9104 /* Slider Track */
9104 /* Slider Track */
9105 border: 1px solid #CCCCCC;
9105 border: 1px solid #CCCCCC;
9106 background: #FFFFFF;
9106 background: #FFFFFF;
9107 border-radius: 4px;
9107 border-radius: 4px;
9108 /* Round the corners of the slide track */
9108 /* Round the corners of the slide track */
9109 }
9109 }
9110 .widget-hslider {
9110 .widget-hslider {
9111 /* Horizontal jQuery Slider
9111 /* Horizontal jQuery Slider
9112
9112
9113 Both the horizontal and vertical versions of the slider are characterized
9113 Both the horizontal and vertical versions of the slider are characterized
9114 by a styled div that contains an invisible jQuery slide div which
9114 by a styled div that contains an invisible jQuery slide div which
9115 contains a visible slider handle div. This is requred so we can control
9115 contains a visible slider handle div. This is requred so we can control
9116 how the slider is drawn and 'fix' the issue where the slide handle
9116 how the slider is drawn and 'fix' the issue where the slide handle
9117 doesn't stop at the end of the slide.
9117 doesn't stop at the end of the slide.
9118
9118
9119 Both horizontal and vertical sliders have this div nesting:
9119 Both horizontal and vertical sliders have this div nesting:
9120 +------------------------------------------+
9120 +------------------------------------------+
9121 | widget-(h/v)slider |
9121 | widget-(h/v)slider |
9122 | +--------+---------------------------+ |
9122 | +--------+---------------------------+ |
9123 | | ui-slider | |
9123 | | ui-slider | |
9124 | | +------------------+ | |
9124 | | +------------------+ | |
9125 | | | ui-slider-handle | | |
9125 | | | ui-slider-handle | | |
9126 | | +------------------+ | |
9126 | | +------------------+ | |
9127 | +--------+---------------------------+ |
9127 | +--------+---------------------------+ |
9128 +------------------------------------------+
9128 +------------------------------------------+
9129 */
9129 */
9130 /* Fix the padding of the slide track so the ui-slider is sized
9130 /* Fix the padding of the slide track so the ui-slider is sized
9131 correctly. */
9131 correctly. */
9132 padding-left: 8px;
9132 padding-left: 8px;
9133 padding-right: 5px;
9133 padding-right: 5px;
9134 overflow: visible;
9134 overflow: visible;
9135 /* Default size of the slider */
9135 /* Default size of the slider */
9136 width: 350px;
9136 width: 350px;
9137 height: 5px;
9137 height: 5px;
9138 max-height: 5px;
9138 max-height: 5px;
9139 margin-top: 13px;
9139 margin-top: 13px;
9140 margin-bottom: 10px;
9140 margin-bottom: 10px;
9141 /* Style the slider track */
9141 /* Style the slider track */
9142 /* Slider Track */
9142 /* Slider Track */
9143 border: 1px solid #CCCCCC;
9143 border: 1px solid #CCCCCC;
9144 background: #FFFFFF;
9144 background: #FFFFFF;
9145 border-radius: 4px;
9145 border-radius: 4px;
9146 /* Round the corners of the slide track */
9146 /* Round the corners of the slide track */
9147 /* Make the div a flex box (makes FF behave correctly). */
9147 /* Make the div a flex box (makes FF behave correctly). */
9148 /* Old browsers */
9148 /* Old browsers */
9149 display: -webkit-box;
9149 display: -webkit-box;
9150 -webkit-box-orient: horizontal;
9150 -webkit-box-orient: horizontal;
9151 -webkit-box-align: stretch;
9151 -webkit-box-align: stretch;
9152 display: -moz-box;
9152 display: -moz-box;
9153 -moz-box-orient: horizontal;
9153 -moz-box-orient: horizontal;
9154 -moz-box-align: stretch;
9154 -moz-box-align: stretch;
9155 display: box;
9155 display: box;
9156 box-orient: horizontal;
9156 box-orient: horizontal;
9157 box-align: stretch;
9157 box-align: stretch;
9158 /* Modern browsers */
9158 /* Modern browsers */
9159 display: flex;
9159 display: flex;
9160 flex-direction: row;
9160 flex-direction: row;
9161 align-items: stretch;
9161 align-items: stretch;
9162 }
9162 }
9163 .widget-hslider .ui-slider {
9163 .widget-hslider .ui-slider {
9164 /* Inner, invisible slide div */
9164 /* Inner, invisible slide div */
9165 border: 0px !important;
9165 border: 0px !important;
9166 background: none !important;
9166 background: none !important;
9167 /* Old browsers */
9167 /* Old browsers */
9168 display: -webkit-box;
9168 display: -webkit-box;
9169 -webkit-box-orient: horizontal;
9169 -webkit-box-orient: horizontal;
9170 -webkit-box-align: stretch;
9170 -webkit-box-align: stretch;
9171 display: -moz-box;
9171 display: -moz-box;
9172 -moz-box-orient: horizontal;
9172 -moz-box-orient: horizontal;
9173 -moz-box-align: stretch;
9173 -moz-box-align: stretch;
9174 display: box;
9174 display: box;
9175 box-orient: horizontal;
9175 box-orient: horizontal;
9176 box-align: stretch;
9176 box-align: stretch;
9177 /* Modern browsers */
9177 /* Modern browsers */
9178 display: flex;
9178 display: flex;
9179 flex-direction: row;
9179 flex-direction: row;
9180 align-items: stretch;
9180 align-items: stretch;
9181 /* Old browsers */
9181 /* Old browsers */
9182 -webkit-box-flex: 1;
9182 -webkit-box-flex: 1;
9183 -moz-box-flex: 1;
9183 -moz-box-flex: 1;
9184 box-flex: 1;
9184 box-flex: 1;
9185 /* Modern browsers */
9185 /* Modern browsers */
9186 flex: 1;
9186 flex: 1;
9187 }
9187 }
9188 .widget-hslider .ui-slider .ui-slider-handle {
9188 .widget-hslider .ui-slider .ui-slider-handle {
9189 width: 14px !important;
9189 width: 14px !important;
9190 height: 28px !important;
9190 height: 28px !important;
9191 margin-top: -8px !important;
9191 margin-top: -8px !important;
9192 }
9192 }
9193 .widget-hslider .ui-slider .ui-slider-range {
9193 .widget-hslider .ui-slider .ui-slider-range {
9194 height: 12px !important;
9194 height: 12px !important;
9195 margin-top: -4px !important;
9195 margin-top: -4px !important;
9196 }
9196 }
9197 .widget-vslider {
9197 .widget-vslider {
9198 /* Vertical jQuery Slider */
9198 /* Vertical jQuery Slider */
9199 /* Fix the padding of the slide track so the ui-slider is sized
9199 /* Fix the padding of the slide track so the ui-slider is sized
9200 correctly. */
9200 correctly. */
9201 padding-bottom: 8px;
9201 padding-bottom: 8px;
9202 overflow: visible;
9202 overflow: visible;
9203 /* Default size of the slider */
9203 /* Default size of the slider */
9204 width: 5px;
9204 width: 5px;
9205 max-width: 5px;
9205 max-width: 5px;
9206 height: 250px;
9206 height: 250px;
9207 margin-left: 12px;
9207 margin-left: 12px;
9208 /* Style the slider track */
9208 /* Style the slider track */
9209 /* Slider Track */
9209 /* Slider Track */
9210 border: 1px solid #CCCCCC;
9210 border: 1px solid #CCCCCC;
9211 background: #FFFFFF;
9211 background: #FFFFFF;
9212 border-radius: 4px;
9212 border-radius: 4px;
9213 /* Round the corners of the slide track */
9213 /* Round the corners of the slide track */
9214 /* Make the div a flex box (makes FF behave correctly). */
9214 /* Make the div a flex box (makes FF behave correctly). */
9215 /* Old browsers */
9215 /* Old browsers */
9216 display: -webkit-box;
9216 display: -webkit-box;
9217 -webkit-box-orient: vertical;
9217 -webkit-box-orient: vertical;
9218 -webkit-box-align: stretch;
9218 -webkit-box-align: stretch;
9219 display: -moz-box;
9219 display: -moz-box;
9220 -moz-box-orient: vertical;
9220 -moz-box-orient: vertical;
9221 -moz-box-align: stretch;
9221 -moz-box-align: stretch;
9222 display: box;
9222 display: box;
9223 box-orient: vertical;
9223 box-orient: vertical;
9224 box-align: stretch;
9224 box-align: stretch;
9225 /* Modern browsers */
9225 /* Modern browsers */
9226 display: flex;
9226 display: flex;
9227 flex-direction: column;
9227 flex-direction: column;
9228 align-items: stretch;
9228 align-items: stretch;
9229 }
9229 }
9230 .widget-vslider .ui-slider {
9230 .widget-vslider .ui-slider {
9231 /* Inner, invisible slide div */
9231 /* Inner, invisible slide div */
9232 border: 0px !important;
9232 border: 0px !important;
9233 background: none !important;
9233 background: none !important;
9234 margin-left: -4px;
9234 margin-left: -4px;
9235 margin-top: 5px;
9235 margin-top: 5px;
9236 /* Old browsers */
9236 /* Old browsers */
9237 display: -webkit-box;
9237 display: -webkit-box;
9238 -webkit-box-orient: vertical;
9238 -webkit-box-orient: vertical;
9239 -webkit-box-align: stretch;
9239 -webkit-box-align: stretch;
9240 display: -moz-box;
9240 display: -moz-box;
9241 -moz-box-orient: vertical;
9241 -moz-box-orient: vertical;
9242 -moz-box-align: stretch;
9242 -moz-box-align: stretch;
9243 display: box;
9243 display: box;
9244 box-orient: vertical;
9244 box-orient: vertical;
9245 box-align: stretch;
9245 box-align: stretch;
9246 /* Modern browsers */
9246 /* Modern browsers */
9247 display: flex;
9247 display: flex;
9248 flex-direction: column;
9248 flex-direction: column;
9249 align-items: stretch;
9249 align-items: stretch;
9250 /* Old browsers */
9250 /* Old browsers */
9251 -webkit-box-flex: 1;
9251 -webkit-box-flex: 1;
9252 -moz-box-flex: 1;
9252 -moz-box-flex: 1;
9253 box-flex: 1;
9253 box-flex: 1;
9254 /* Modern browsers */
9254 /* Modern browsers */
9255 flex: 1;
9255 flex: 1;
9256 }
9256 }
9257 .widget-vslider .ui-slider .ui-slider-handle {
9257 .widget-vslider .ui-slider .ui-slider-handle {
9258 width: 28px !important;
9258 width: 28px !important;
9259 height: 14px !important;
9259 height: 14px !important;
9260 margin-left: -9px;
9260 margin-left: -9px;
9261 }
9261 }
9262 .widget-vslider .ui-slider .ui-slider-range {
9262 .widget-vslider .ui-slider .ui-slider-range {
9263 width: 12px !important;
9263 width: 12px !important;
9264 margin-left: -1px !important;
9264 margin-left: -1px !important;
9265 }
9265 }
9266 .widget-text {
9266 .widget-text {
9267 /* String Textbox - used for TextBoxView and TextAreaView */
9267 /* String Textbox - used for TextBoxView and TextAreaView */
9268 width: 350px;
9268 width: 350px;
9269 margin: 0px !important;
9269 margin: 0px;
9270 }
9270 }
9271 .widget-listbox {
9271 .widget-listbox {
9272 /* Listbox */
9272 /* Listbox */
9273 width: 350px;
9273 width: 350px;
9274 margin-bottom: 0px;
9274 margin-bottom: 0px;
9275 }
9275 }
9276 .widget-numeric-text {
9276 .widget-numeric-text {
9277 /* Single Line Textbox - used for IntTextView and FloatTextView */
9277 /* Single Line Textbox - used for IntTextView and FloatTextView */
9278 width: 150px;
9278 width: 150px;
9279 margin: 0px !important;
9279 margin: 0px;
9280 }
9280 }
9281 .widget-progress {
9281 .widget-progress {
9282 /* Progress Bar */
9282 /* Progress Bar */
9283 margin-top: 6px;
9283 margin-top: 6px;
9284 width: 350px;
9284 width: 350px;
9285 }
9285 }
9286 .widget-progress .progress-bar {
9286 .widget-progress .progress-bar {
9287 /* Disable progress bar animation */
9287 /* Disable progress bar animation */
9288 -webkit-transition: none;
9288 -webkit-transition: none;
9289 -moz-transition: none;
9289 -moz-transition: none;
9290 -ms-transition: none;
9290 -ms-transition: none;
9291 -o-transition: none;
9291 -o-transition: none;
9292 transition: none;
9292 transition: none;
9293 }
9293 }
9294 .widget-combo-btn {
9294 .widget-combo-btn {
9295 /* ComboBox Main Button */
9295 /* ComboBox Main Button */
9296 min-width: 125px;
9296 min-width: 125px;
9297 }
9297 }
9298 .widget_item .dropdown-menu li a {
9298 .widget_item .dropdown-menu li a {
9299 color: inherit;
9299 color: inherit;
9300 }
9300 }
9301 .widget-hbox {
9301 .widget-hbox {
9302 /* Horizontal widgets */
9302 /* Horizontal widgets */
9303 /* Old browsers */
9303 /* Old browsers */
9304 display: -webkit-box;
9304 display: -webkit-box;
9305 -webkit-box-orient: horizontal;
9305 -webkit-box-orient: horizontal;
9306 -webkit-box-align: stretch;
9306 -webkit-box-align: stretch;
9307 display: -moz-box;
9307 display: -moz-box;
9308 -moz-box-orient: horizontal;
9308 -moz-box-orient: horizontal;
9309 -moz-box-align: stretch;
9309 -moz-box-align: stretch;
9310 display: box;
9310 display: box;
9311 box-orient: horizontal;
9311 box-orient: horizontal;
9312 box-align: stretch;
9312 box-align: stretch;
9313 /* Modern browsers */
9313 /* Modern browsers */
9314 display: flex;
9314 display: flex;
9315 flex-direction: row;
9315 flex-direction: row;
9316 align-items: stretch;
9316 align-items: stretch;
9317 margin-top: 0px !important;
9318 margin-bottom: 0px !important;
9319 margin-right: 5px;
9320 margin-left: 5px;
9321 }
9317 }
9322 .widget-hbox input[type="checkbox"] {
9318 .widget-hbox input[type="checkbox"] {
9323 margin-top: 9px;
9319 margin-top: 9px;
9324 margin-bottom: 10px;
9320 margin-bottom: 10px;
9325 }
9321 }
9326 .widget-hbox .widget-label {
9322 .widget-hbox .widget-label {
9327 /* Horizontal Label */
9323 /* Horizontal Label */
9328 min-width: 10ex;
9324 min-width: 10ex;
9329 padding-right: 8px;
9325 padding-right: 8px;
9330 padding-top: 5px;
9326 padding-top: 5px;
9331 text-align: right;
9327 text-align: right;
9332 vertical-align: text-top;
9328 vertical-align: text-top;
9333 }
9329 }
9334 .widget-hbox .widget-readout {
9330 .widget-hbox .widget-readout {
9335 padding-left: 8px;
9331 padding-left: 8px;
9336 padding-top: 5px;
9332 padding-top: 5px;
9337 text-align: left;
9333 text-align: left;
9338 vertical-align: text-top;
9334 vertical-align: text-top;
9339 }
9335 }
9340 .widget-vbox {
9336 .widget-vbox {
9341 /* Vertical widgets */
9337 /* Vertical widgets */
9342 /* Old browsers */
9338 /* Old browsers */
9343 display: -webkit-box;
9339 display: -webkit-box;
9344 -webkit-box-orient: vertical;
9340 -webkit-box-orient: vertical;
9345 -webkit-box-align: stretch;
9341 -webkit-box-align: stretch;
9346 display: -moz-box;
9342 display: -moz-box;
9347 -moz-box-orient: vertical;
9343 -moz-box-orient: vertical;
9348 -moz-box-align: stretch;
9344 -moz-box-align: stretch;
9349 display: box;
9345 display: box;
9350 box-orient: vertical;
9346 box-orient: vertical;
9351 box-align: stretch;
9347 box-align: stretch;
9352 /* Modern browsers */
9348 /* Modern browsers */
9353 display: flex;
9349 display: flex;
9354 flex-direction: column;
9350 flex-direction: column;
9355 align-items: stretch;
9351 align-items: stretch;
9356 }
9352 }
9357 .widget-vbox .widget-label {
9353 .widget-vbox .widget-label {
9358 /* Vertical Label */
9354 /* Vertical Label */
9359 padding-bottom: 5px;
9355 padding-bottom: 5px;
9360 text-align: center;
9356 text-align: center;
9361 vertical-align: text-bottom;
9357 vertical-align: text-bottom;
9362 }
9358 }
9363 .widget-vbox .widget-readout {
9359 .widget-vbox .widget-readout {
9364 /* Vertical Label */
9360 /* Vertical Label */
9365 padding-top: 5px;
9361 padding-top: 5px;
9366 text-align: center;
9362 text-align: center;
9367 vertical-align: text-top;
9363 vertical-align: text-top;
9368 }
9364 }
9369 .widget-modal {
9365 .widget-modal {
9370 /* Box - ModalView */
9366 /* Box - ModalView */
9371 overflow: hidden;
9367 overflow: hidden;
9372 position: absolute !important;
9368 position: absolute !important;
9373 top: 0px;
9369 top: 0px;
9374 left: 0px;
9370 left: 0px;
9375 margin-left: 0px !important;
9371 margin-left: 0px !important;
9376 }
9372 }
9377 .widget-modal-body {
9373 .widget-modal-body {
9378 /* Box - ModalView Body */
9374 /* Box - ModalView Body */
9379 max-height: none !important;
9375 max-height: none !important;
9380 }
9376 }
9381 .widget-box {
9377 .widget-box {
9382 /* Box */
9378 /* Box */
9383 box-sizing: border-box;
9379 box-sizing: border-box;
9384 -moz-box-sizing: border-box;
9380 -moz-box-sizing: border-box;
9385 -webkit-box-sizing: border-box;
9381 -webkit-box-sizing: border-box;
9386 /* Old browsers */
9382 /* Old browsers */
9387 -webkit-box-align: start;
9383 -webkit-box-align: start;
9388 -moz-box-align: start;
9384 -moz-box-align: start;
9389 box-align: start;
9385 box-align: start;
9390 /* Modern browsers */
9386 /* Modern browsers */
9391 align-items: flex-start;
9387 align-items: flex-start;
9392 }
9388 }
9393 .widget-radio-box {
9389 .widget-radio-box {
9394 /* Contains RadioButtonsWidget */
9390 /* Contains RadioButtonsWidget */
9395 /* Old browsers */
9391 /* Old browsers */
9396 display: -webkit-box;
9392 display: -webkit-box;
9397 -webkit-box-orient: vertical;
9393 -webkit-box-orient: vertical;
9398 -webkit-box-align: stretch;
9394 -webkit-box-align: stretch;
9399 display: -moz-box;
9395 display: -moz-box;
9400 -moz-box-orient: vertical;
9396 -moz-box-orient: vertical;
9401 -moz-box-align: stretch;
9397 -moz-box-align: stretch;
9402 display: box;
9398 display: box;
9403 box-orient: vertical;
9399 box-orient: vertical;
9404 box-align: stretch;
9400 box-align: stretch;
9405 /* Modern browsers */
9401 /* Modern browsers */
9406 display: flex;
9402 display: flex;
9407 flex-direction: column;
9403 flex-direction: column;
9408 align-items: stretch;
9404 align-items: stretch;
9409 box-sizing: border-box;
9405 box-sizing: border-box;
9410 -moz-box-sizing: border-box;
9406 -moz-box-sizing: border-box;
9411 -webkit-box-sizing: border-box;
9407 -webkit-box-sizing: border-box;
9412 padding-top: 4px;
9408 padding-top: 4px;
9413 }
9409 }
9414 .widget-radio-box label {
9410 .widget-radio-box label {
9415 margin-top: 0px;
9411 margin-top: 0px;
9416 }
9412 }
9417 .docked-widget-modal {
9413 .docked-widget-modal {
9418 /* Horizontal Label */
9414 /* Horizontal Label */
9419 overflow: hidden;
9415 overflow: hidden;
9420 position: relative !important;
9416 position: relative !important;
9421 top: 0px !important;
9417 top: 0px !important;
9422 left: 0px !important;
9418 left: 0px !important;
9423 margin-left: 0px !important;
9419 margin-left: 0px !important;
9424 }
9420 }
9425 /*!
9421 /*!
9426 *
9422 *
9427 * IPython notebook webapp
9423 * IPython notebook webapp
9428 *
9424 *
9429 */
9425 */
9430 body {
9426 body {
9431 background-color: #ffffff;
9427 background-color: #ffffff;
9432 }
9428 }
9433 @media (max-width: 767px) {
9429 @media (max-width: 767px) {
9434 body.notebook_app {
9430 body.notebook_app {
9435 padding-left: 0px;
9431 padding-left: 0px;
9436 padding-right: 0px;
9432 padding-right: 0px;
9437 }
9433 }
9438 }
9434 }
9439 #ipython-main-app {
9435 #ipython-main-app {
9440 box-sizing: border-box;
9436 box-sizing: border-box;
9441 -moz-box-sizing: border-box;
9437 -moz-box-sizing: border-box;
9442 -webkit-box-sizing: border-box;
9438 -webkit-box-sizing: border-box;
9443 }
9439 }
9444 div#notebook_panel {
9440 div#notebook_panel {
9445 margin: 0px 0px 0px 0px;
9441 margin: 0px 0px 0px 0px;
9446 padding: 0px;
9442 padding: 0px;
9447 box-sizing: border-box;
9443 box-sizing: border-box;
9448 -moz-box-sizing: border-box;
9444 -moz-box-sizing: border-box;
9449 -webkit-box-sizing: border-box;
9445 -webkit-box-sizing: border-box;
9450 }
9446 }
9451 div#notebook {
9447 div#notebook {
9452 font-size: 14px;
9448 font-size: 14px;
9453 line-height: 20px;
9449 line-height: 20px;
9454 overflow-y: hidden;
9450 overflow-y: hidden;
9455 overflow-x: auto;
9451 overflow-x: auto;
9456 width: 100%;
9452 width: 100%;
9457 /* This spaces the cell away from the edge of the notebook area */
9453 /* This spaces the cell away from the edge of the notebook area */
9458 padding: 2em 0 2em 0;
9454 padding: 2em 0 2em 0;
9459 margin: 0px;
9455 margin: 0px;
9460 outline: none;
9456 outline: none;
9461 box-sizing: border-box;
9457 box-sizing: border-box;
9462 -moz-box-sizing: border-box;
9458 -moz-box-sizing: border-box;
9463 -webkit-box-sizing: border-box;
9459 -webkit-box-sizing: border-box;
9464 }
9460 }
9465 div.ui-widget-content {
9461 div.ui-widget-content {
9466 border: 1px solid #ababab;
9462 border: 1px solid #ababab;
9467 outline: none;
9463 outline: none;
9468 }
9464 }
9469 pre.dialog {
9465 pre.dialog {
9470 background-color: #f7f7f7;
9466 background-color: #f7f7f7;
9471 border: 1px solid #ddd;
9467 border: 1px solid #ddd;
9472 border-radius: 4px;
9468 border-radius: 4px;
9473 padding: 0.4em;
9469 padding: 0.4em;
9474 padding-left: 2em;
9470 padding-left: 2em;
9475 }
9471 }
9476 p.dialog {
9472 p.dialog {
9477 padding: 0.2em;
9473 padding: 0.2em;
9478 }
9474 }
9479 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9475 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9480 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9476 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9481 */
9477 */
9482 pre,
9478 pre,
9483 code,
9479 code,
9484 kbd,
9480 kbd,
9485 samp {
9481 samp {
9486 white-space: pre-wrap;
9482 white-space: pre-wrap;
9487 }
9483 }
9488 #fonttest {
9484 #fonttest {
9489 font-family: monospace;
9485 font-family: monospace;
9490 }
9486 }
9491 p {
9487 p {
9492 margin-bottom: 0;
9488 margin-bottom: 0;
9493 }
9489 }
9494 .end_space {
9490 .end_space {
9495 height: 200px;
9491 height: 200px;
9496 }
9492 }
9497 .lower-header-bar {
9493 .lower-header-bar {
9498 width: 100%;
9494 width: 100%;
9499 height: 0px;
9495 height: 0px;
9500 border-bottom: 1px solid #e7e7e7;
9496 border-bottom: 1px solid #e7e7e7;
9501 margin-bottom: -1px;
9497 margin-bottom: -1px;
9502 }
9498 }
9503 .notebook_app #header {
9499 .notebook_app #header {
9504 -webkit-box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9500 -webkit-box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9505 box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9501 box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9506 }
9502 }
9507 /* CSS for the cell toolbar */
9503 /* CSS for the cell toolbar */
9508 .celltoolbar {
9504 .celltoolbar {
9509 border: thin solid #CFCFCF;
9505 border: thin solid #CFCFCF;
9510 border-bottom: none;
9506 border-bottom: none;
9511 background: #EEE;
9507 background: #EEE;
9512 border-radius: 4px 4px 0px 0px;
9508 border-radius: 4px 4px 0px 0px;
9513 width: 100%;
9509 width: 100%;
9514 height: 29px;
9510 height: 29px;
9515 padding-right: 4px;
9511 padding-right: 4px;
9516 /* Old browsers */
9512 /* Old browsers */
9517 display: -webkit-box;
9513 display: -webkit-box;
9518 -webkit-box-orient: horizontal;
9514 -webkit-box-orient: horizontal;
9519 -webkit-box-align: stretch;
9515 -webkit-box-align: stretch;
9520 display: -moz-box;
9516 display: -moz-box;
9521 -moz-box-orient: horizontal;
9517 -moz-box-orient: horizontal;
9522 -moz-box-align: stretch;
9518 -moz-box-align: stretch;
9523 display: box;
9519 display: box;
9524 box-orient: horizontal;
9520 box-orient: horizontal;
9525 box-align: stretch;
9521 box-align: stretch;
9526 /* Modern browsers */
9522 /* Modern browsers */
9527 display: flex;
9523 display: flex;
9528 flex-direction: row;
9524 flex-direction: row;
9529 align-items: stretch;
9525 align-items: stretch;
9530 /* Old browsers */
9526 /* Old browsers */
9531 -webkit-box-pack: end;
9527 -webkit-box-pack: end;
9532 -moz-box-pack: end;
9528 -moz-box-pack: end;
9533 box-pack: end;
9529 box-pack: end;
9534 /* Modern browsers */
9530 /* Modern browsers */
9535 justify-content: flex-end;
9531 justify-content: flex-end;
9536 }
9532 }
9537 .ctb_hideshow {
9533 .ctb_hideshow {
9538 display: none;
9534 display: none;
9539 vertical-align: bottom;
9535 vertical-align: bottom;
9540 }
9536 }
9541 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9537 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9542 Cell toolbars are only shown when the ctb_global_show class is also set.
9538 Cell toolbars are only shown when the ctb_global_show class is also set.
9543 */
9539 */
9544 .ctb_global_show .ctb_show.ctb_hideshow {
9540 .ctb_global_show .ctb_show.ctb_hideshow {
9545 display: block;
9541 display: block;
9546 }
9542 }
9547 .ctb_global_show .ctb_show + .input_area,
9543 .ctb_global_show .ctb_show + .input_area,
9548 .ctb_global_show .ctb_show + div.text_cell_input {
9544 .ctb_global_show .ctb_show + div.text_cell_input {
9549 border-top-right-radius: 0px;
9545 border-top-right-radius: 0px;
9550 border-top-left-radius: 0px;
9546 border-top-left-radius: 0px;
9551 }
9547 }
9552 .celltoolbar {
9548 .celltoolbar {
9553 font-size: 87%;
9549 font-size: 87%;
9554 padding-top: 3px;
9550 padding-top: 3px;
9555 }
9551 }
9556 .celltoolbar select {
9552 .celltoolbar select {
9557 display: block;
9553 display: block;
9558 width: 100%;
9554 width: 100%;
9559 height: 32px;
9555 height: 32px;
9560 padding: 6px 12px;
9556 padding: 6px 12px;
9561 font-size: 13px;
9557 font-size: 13px;
9562 line-height: 1.42857143;
9558 line-height: 1.42857143;
9563 color: #555555;
9559 color: #555555;
9564 background-color: #ffffff;
9560 background-color: #ffffff;
9565 background-image: none;
9561 background-image: none;
9566 border: 1px solid #cccccc;
9562 border: 1px solid #cccccc;
9567 border-radius: 4px;
9563 border-radius: 4px;
9568 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9564 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9569 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9565 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9570 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9566 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9571 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9567 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9572 height: 30px;
9568 height: 30px;
9573 padding: 5px 10px;
9569 padding: 5px 10px;
9574 font-size: 12px;
9570 font-size: 12px;
9575 line-height: 1.5;
9571 line-height: 1.5;
9576 border-radius: 3px;
9572 border-radius: 3px;
9577 width: inherit;
9573 width: inherit;
9578 font-size: 87%;
9574 font-size: 87%;
9579 height: 22px;
9575 height: 22px;
9580 display: inline-block;
9576 display: inline-block;
9581 }
9577 }
9582 .celltoolbar select:focus {
9578 .celltoolbar select:focus {
9583 border-color: #66afe9;
9579 border-color: #66afe9;
9584 outline: 0;
9580 outline: 0;
9585 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9581 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9586 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9582 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9587 }
9583 }
9588 .celltoolbar select::-moz-placeholder {
9584 .celltoolbar select::-moz-placeholder {
9589 color: #999999;
9585 color: #999999;
9590 opacity: 1;
9586 opacity: 1;
9591 }
9587 }
9592 .celltoolbar select:-ms-input-placeholder {
9588 .celltoolbar select:-ms-input-placeholder {
9593 color: #999999;
9589 color: #999999;
9594 }
9590 }
9595 .celltoolbar select::-webkit-input-placeholder {
9591 .celltoolbar select::-webkit-input-placeholder {
9596 color: #999999;
9592 color: #999999;
9597 }
9593 }
9598 .celltoolbar select[disabled],
9594 .celltoolbar select[disabled],
9599 .celltoolbar select[readonly],
9595 .celltoolbar select[readonly],
9600 fieldset[disabled] .celltoolbar select {
9596 fieldset[disabled] .celltoolbar select {
9601 cursor: not-allowed;
9597 cursor: not-allowed;
9602 background-color: #eeeeee;
9598 background-color: #eeeeee;
9603 opacity: 1;
9599 opacity: 1;
9604 }
9600 }
9605 textarea.celltoolbar select {
9601 textarea.celltoolbar select {
9606 height: auto;
9602 height: auto;
9607 }
9603 }
9608 select.celltoolbar select {
9604 select.celltoolbar select {
9609 height: 30px;
9605 height: 30px;
9610 line-height: 30px;
9606 line-height: 30px;
9611 }
9607 }
9612 textarea.celltoolbar select,
9608 textarea.celltoolbar select,
9613 select[multiple].celltoolbar select {
9609 select[multiple].celltoolbar select {
9614 height: auto;
9610 height: auto;
9615 }
9611 }
9616 .celltoolbar label {
9612 .celltoolbar label {
9617 margin-left: 5px;
9613 margin-left: 5px;
9618 margin-right: 5px;
9614 margin-right: 5px;
9619 }
9615 }
9620 .completions {
9616 .completions {
9621 position: absolute;
9617 position: absolute;
9622 z-index: 10;
9618 z-index: 10;
9623 overflow: hidden;
9619 overflow: hidden;
9624 border: 1px solid #ababab;
9620 border: 1px solid #ababab;
9625 border-radius: 4px;
9621 border-radius: 4px;
9626 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9622 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9627 box-shadow: 0px 6px 10px -1px #adadad;
9623 box-shadow: 0px 6px 10px -1px #adadad;
9628 }
9624 }
9629 .completions select {
9625 .completions select {
9630 background: white;
9626 background: white;
9631 outline: none;
9627 outline: none;
9632 border: none;
9628 border: none;
9633 padding: 0px;
9629 padding: 0px;
9634 margin: 0px;
9630 margin: 0px;
9635 overflow: auto;
9631 overflow: auto;
9636 font-family: monospace;
9632 font-family: monospace;
9637 font-size: 110%;
9633 font-size: 110%;
9638 color: #000000;
9634 color: #000000;
9639 width: auto;
9635 width: auto;
9640 }
9636 }
9641 .completions select option.context {
9637 .completions select option.context {
9642 color: #3071a9;
9638 color: #3071a9;
9643 }
9639 }
9644 #kernel_selector_widget {
9640 #kernel_selector_widget {
9645 margin-right: 1em;
9641 margin-right: 1em;
9646 float: right;
9642 float: right;
9647 }
9643 }
9648 #kernel_selector_widget > button {
9644 #kernel_selector_widget > button {
9649 color: #333333;
9645 color: #333333;
9650 background-color: #ffffff;
9646 background-color: #ffffff;
9651 border-color: #cccccc;
9647 border-color: #cccccc;
9652 }
9648 }
9653 #kernel_selector_widget > button:hover,
9649 #kernel_selector_widget > button:hover,
9654 #kernel_selector_widget > button:focus,
9650 #kernel_selector_widget > button:focus,
9655 #kernel_selector_widget > button:active,
9651 #kernel_selector_widget > button:active,
9656 #kernel_selector_widget > button.active,
9652 #kernel_selector_widget > button.active,
9657 .open .dropdown-toggle#kernel_selector_widget > button {
9653 .open .dropdown-toggle#kernel_selector_widget > button {
9658 color: #333333;
9654 color: #333333;
9659 background-color: #ebebeb;
9655 background-color: #ebebeb;
9660 border-color: #adadad;
9656 border-color: #adadad;
9661 }
9657 }
9662 #kernel_selector_widget > button:active,
9658 #kernel_selector_widget > button:active,
9663 #kernel_selector_widget > button.active,
9659 #kernel_selector_widget > button.active,
9664 .open .dropdown-toggle#kernel_selector_widget > button {
9660 .open .dropdown-toggle#kernel_selector_widget > button {
9665 background-image: none;
9661 background-image: none;
9666 }
9662 }
9667 #kernel_selector_widget > button.disabled,
9663 #kernel_selector_widget > button.disabled,
9668 #kernel_selector_widget > button[disabled],
9664 #kernel_selector_widget > button[disabled],
9669 fieldset[disabled] #kernel_selector_widget > button,
9665 fieldset[disabled] #kernel_selector_widget > button,
9670 #kernel_selector_widget > button.disabled:hover,
9666 #kernel_selector_widget > button.disabled:hover,
9671 #kernel_selector_widget > button[disabled]:hover,
9667 #kernel_selector_widget > button[disabled]:hover,
9672 fieldset[disabled] #kernel_selector_widget > button:hover,
9668 fieldset[disabled] #kernel_selector_widget > button:hover,
9673 #kernel_selector_widget > button.disabled:focus,
9669 #kernel_selector_widget > button.disabled:focus,
9674 #kernel_selector_widget > button[disabled]:focus,
9670 #kernel_selector_widget > button[disabled]:focus,
9675 fieldset[disabled] #kernel_selector_widget > button:focus,
9671 fieldset[disabled] #kernel_selector_widget > button:focus,
9676 #kernel_selector_widget > button.disabled:active,
9672 #kernel_selector_widget > button.disabled:active,
9677 #kernel_selector_widget > button[disabled]:active,
9673 #kernel_selector_widget > button[disabled]:active,
9678 fieldset[disabled] #kernel_selector_widget > button:active,
9674 fieldset[disabled] #kernel_selector_widget > button:active,
9679 #kernel_selector_widget > button.disabled.active,
9675 #kernel_selector_widget > button.disabled.active,
9680 #kernel_selector_widget > button[disabled].active,
9676 #kernel_selector_widget > button[disabled].active,
9681 fieldset[disabled] #kernel_selector_widget > button.active {
9677 fieldset[disabled] #kernel_selector_widget > button.active {
9682 background-color: #ffffff;
9678 background-color: #ffffff;
9683 border-color: #cccccc;
9679 border-color: #cccccc;
9684 }
9680 }
9685 #kernel_selector_widget > button .badge {
9681 #kernel_selector_widget > button .badge {
9686 color: #ffffff;
9682 color: #ffffff;
9687 background-color: #333333;
9683 background-color: #333333;
9688 }
9684 }
9689 #kernel_selector_widget > button > span.caret {
9685 #kernel_selector_widget > button > span.caret {
9690 margin-top: 0px;
9686 margin-top: 0px;
9691 }
9687 }
9692 #menubar {
9688 #menubar {
9693 box-sizing: border-box;
9689 box-sizing: border-box;
9694 -moz-box-sizing: border-box;
9690 -moz-box-sizing: border-box;
9695 -webkit-box-sizing: border-box;
9691 -webkit-box-sizing: border-box;
9696 }
9692 }
9697 #menubar .navbar {
9693 #menubar .navbar {
9698 border-top: 1px;
9694 border-top: 1px;
9699 border-radius: 0px 0px 4px 4px;
9695 border-radius: 0px 0px 4px 4px;
9700 margin-bottom: 6px;
9696 margin-bottom: 6px;
9701 }
9697 }
9702 #menubar .navbar-toggle {
9698 #menubar .navbar-toggle {
9703 float: left;
9699 float: left;
9704 }
9700 }
9705 #menubar .navbar-collapse {
9701 #menubar .navbar-collapse {
9706 clear: left;
9702 clear: left;
9707 }
9703 }
9708 .nav-wrapper {
9704 .nav-wrapper {
9709 border-bottom: 1px solid #e7e7e7;
9705 border-bottom: 1px solid #e7e7e7;
9710 }
9706 }
9711 i.menu-icon {
9707 i.menu-icon {
9712 padding-top: 4px;
9708 padding-top: 4px;
9713 }
9709 }
9714 ul#help_menu li a {
9710 ul#help_menu li a {
9715 overflow: hidden;
9711 overflow: hidden;
9716 padding-right: 2.2em;
9712 padding-right: 2.2em;
9717 }
9713 }
9718 ul#help_menu li a i {
9714 ul#help_menu li a i {
9719 margin-right: -1.2em;
9715 margin-right: -1.2em;
9720 }
9716 }
9721 .dropdown-submenu {
9717 .dropdown-submenu {
9722 position: relative;
9718 position: relative;
9723 }
9719 }
9724 .dropdown-submenu > .dropdown-menu {
9720 .dropdown-submenu > .dropdown-menu {
9725 top: 0;
9721 top: 0;
9726 left: 100%;
9722 left: 100%;
9727 margin-top: -6px;
9723 margin-top: -6px;
9728 margin-left: -1px;
9724 margin-left: -1px;
9729 -webkit-border-radius: 0 6px 6px 6px;
9725 -webkit-border-radius: 0 6px 6px 6px;
9730 -moz-border-radius: 0 6px 6px 6px;
9726 -moz-border-radius: 0 6px 6px 6px;
9731 border-radius: 0 6px 6px 6px;
9727 border-radius: 0 6px 6px 6px;
9732 }
9728 }
9733 .dropdown-submenu:hover > .dropdown-menu {
9729 .dropdown-submenu:hover > .dropdown-menu {
9734 display: block;
9730 display: block;
9735 }
9731 }
9736 .dropdown-submenu > a:after {
9732 .dropdown-submenu > a:after {
9737 display: block;
9733 display: block;
9738 content: " ";
9734 content: " ";
9739 float: right;
9735 float: right;
9740 width: 0;
9736 width: 0;
9741 height: 0;
9737 height: 0;
9742 border-color: transparent;
9738 border-color: transparent;
9743 border-style: solid;
9739 border-style: solid;
9744 border-width: 5px 0 5px 5px;
9740 border-width: 5px 0 5px 5px;
9745 border-left-color: #cccccc;
9741 border-left-color: #cccccc;
9746 margin-top: 5px;
9742 margin-top: 5px;
9747 margin-right: -10px;
9743 margin-right: -10px;
9748 }
9744 }
9749 .dropdown-submenu:hover > a:after {
9745 .dropdown-submenu:hover > a:after {
9750 border-left-color: #ffffff;
9746 border-left-color: #ffffff;
9751 }
9747 }
9752 .dropdown-submenu.pull-left {
9748 .dropdown-submenu.pull-left {
9753 float: none;
9749 float: none;
9754 }
9750 }
9755 .dropdown-submenu.pull-left > .dropdown-menu {
9751 .dropdown-submenu.pull-left > .dropdown-menu {
9756 left: -100%;
9752 left: -100%;
9757 margin-left: 10px;
9753 margin-left: 10px;
9758 -webkit-border-radius: 6px 0 6px 6px;
9754 -webkit-border-radius: 6px 0 6px 6px;
9759 -moz-border-radius: 6px 0 6px 6px;
9755 -moz-border-radius: 6px 0 6px 6px;
9760 border-radius: 6px 0 6px 6px;
9756 border-radius: 6px 0 6px 6px;
9761 }
9757 }
9762 #notification_area {
9758 #notification_area {
9763 float: right !important;
9759 float: right !important;
9764 float: right;
9760 float: right;
9765 z-index: 10;
9761 z-index: 10;
9766 }
9762 }
9767 .indicator_area {
9763 .indicator_area {
9768 color: #777777;
9764 color: #777777;
9769 margin-left: 5px;
9765 margin-left: 5px;
9770 margin-right: 5px;
9766 margin-right: 5px;
9771 width: 11px;
9767 width: 11px;
9772 z-index: 10;
9768 z-index: 10;
9773 text-align: center;
9769 text-align: center;
9774 }
9770 }
9775 #kernel_indicator {
9771 #kernel_indicator {
9776 float: right !important;
9772 float: right !important;
9777 float: right;
9773 float: right;
9778 color: #777777;
9774 color: #777777;
9779 margin-left: 5px;
9775 margin-left: 5px;
9780 margin-right: 5px;
9776 margin-right: 5px;
9781 width: 11px;
9777 width: 11px;
9782 z-index: 10;
9778 z-index: 10;
9783 text-align: center;
9779 text-align: center;
9784 }
9780 }
9785 #modal_indicator {
9781 #modal_indicator {
9786 float: right !important;
9782 float: right !important;
9787 float: right;
9783 float: right;
9788 color: #777777;
9784 color: #777777;
9789 margin-left: 5px;
9785 margin-left: 5px;
9790 margin-right: 5px;
9786 margin-right: 5px;
9791 width: 11px;
9787 width: 11px;
9792 z-index: 10;
9788 z-index: 10;
9793 text-align: center;
9789 text-align: center;
9794 }
9790 }
9795 .edit_mode_icon:before {
9791 .edit_mode_icon:before {
9796 display: inline-block;
9792 display: inline-block;
9797 font: normal normal normal 14px/1 FontAwesome;
9793 font: normal normal normal 14px/1 FontAwesome;
9798 font-size: inherit;
9794 font-size: inherit;
9799 text-rendering: auto;
9795 text-rendering: auto;
9800 -webkit-font-smoothing: antialiased;
9796 -webkit-font-smoothing: antialiased;
9801 -moz-osx-font-smoothing: grayscale;
9797 -moz-osx-font-smoothing: grayscale;
9802 content: "\f040";
9798 content: "\f040";
9803 }
9799 }
9804 .edit_mode_icon:before.pull-left {
9800 .edit_mode_icon:before.pull-left {
9805 margin-right: .3em;
9801 margin-right: .3em;
9806 }
9802 }
9807 .edit_mode_icon:before.pull-right {
9803 .edit_mode_icon:before.pull-right {
9808 margin-left: .3em;
9804 margin-left: .3em;
9809 }
9805 }
9810 .command_mode_icon:before {
9806 .command_mode_icon:before {
9811 display: inline-block;
9807 display: inline-block;
9812 font: normal normal normal 14px/1 FontAwesome;
9808 font: normal normal normal 14px/1 FontAwesome;
9813 font-size: inherit;
9809 font-size: inherit;
9814 text-rendering: auto;
9810 text-rendering: auto;
9815 -webkit-font-smoothing: antialiased;
9811 -webkit-font-smoothing: antialiased;
9816 -moz-osx-font-smoothing: grayscale;
9812 -moz-osx-font-smoothing: grayscale;
9817 content: ' ';
9813 content: ' ';
9818 }
9814 }
9819 .command_mode_icon:before.pull-left {
9815 .command_mode_icon:before.pull-left {
9820 margin-right: .3em;
9816 margin-right: .3em;
9821 }
9817 }
9822 .command_mode_icon:before.pull-right {
9818 .command_mode_icon:before.pull-right {
9823 margin-left: .3em;
9819 margin-left: .3em;
9824 }
9820 }
9825 .kernel_idle_icon:before {
9821 .kernel_idle_icon:before {
9826 display: inline-block;
9822 display: inline-block;
9827 font: normal normal normal 14px/1 FontAwesome;
9823 font: normal normal normal 14px/1 FontAwesome;
9828 font-size: inherit;
9824 font-size: inherit;
9829 text-rendering: auto;
9825 text-rendering: auto;
9830 -webkit-font-smoothing: antialiased;
9826 -webkit-font-smoothing: antialiased;
9831 -moz-osx-font-smoothing: grayscale;
9827 -moz-osx-font-smoothing: grayscale;
9832 content: "\f10c";
9828 content: "\f10c";
9833 }
9829 }
9834 .kernel_idle_icon:before.pull-left {
9830 .kernel_idle_icon:before.pull-left {
9835 margin-right: .3em;
9831 margin-right: .3em;
9836 }
9832 }
9837 .kernel_idle_icon:before.pull-right {
9833 .kernel_idle_icon:before.pull-right {
9838 margin-left: .3em;
9834 margin-left: .3em;
9839 }
9835 }
9840 .kernel_busy_icon:before {
9836 .kernel_busy_icon:before {
9841 display: inline-block;
9837 display: inline-block;
9842 font: normal normal normal 14px/1 FontAwesome;
9838 font: normal normal normal 14px/1 FontAwesome;
9843 font-size: inherit;
9839 font-size: inherit;
9844 text-rendering: auto;
9840 text-rendering: auto;
9845 -webkit-font-smoothing: antialiased;
9841 -webkit-font-smoothing: antialiased;
9846 -moz-osx-font-smoothing: grayscale;
9842 -moz-osx-font-smoothing: grayscale;
9847 content: "\f111";
9843 content: "\f111";
9848 }
9844 }
9849 .kernel_busy_icon:before.pull-left {
9845 .kernel_busy_icon:before.pull-left {
9850 margin-right: .3em;
9846 margin-right: .3em;
9851 }
9847 }
9852 .kernel_busy_icon:before.pull-right {
9848 .kernel_busy_icon:before.pull-right {
9853 margin-left: .3em;
9849 margin-left: .3em;
9854 }
9850 }
9855 .kernel_dead_icon:before {
9851 .kernel_dead_icon:before {
9856 display: inline-block;
9852 display: inline-block;
9857 font: normal normal normal 14px/1 FontAwesome;
9853 font: normal normal normal 14px/1 FontAwesome;
9858 font-size: inherit;
9854 font-size: inherit;
9859 text-rendering: auto;
9855 text-rendering: auto;
9860 -webkit-font-smoothing: antialiased;
9856 -webkit-font-smoothing: antialiased;
9861 -moz-osx-font-smoothing: grayscale;
9857 -moz-osx-font-smoothing: grayscale;
9862 content: "\f1e2";
9858 content: "\f1e2";
9863 }
9859 }
9864 .kernel_dead_icon:before.pull-left {
9860 .kernel_dead_icon:before.pull-left {
9865 margin-right: .3em;
9861 margin-right: .3em;
9866 }
9862 }
9867 .kernel_dead_icon:before.pull-right {
9863 .kernel_dead_icon:before.pull-right {
9868 margin-left: .3em;
9864 margin-left: .3em;
9869 }
9865 }
9870 .kernel_disconnected_icon:before {
9866 .kernel_disconnected_icon:before {
9871 display: inline-block;
9867 display: inline-block;
9872 font: normal normal normal 14px/1 FontAwesome;
9868 font: normal normal normal 14px/1 FontAwesome;
9873 font-size: inherit;
9869 font-size: inherit;
9874 text-rendering: auto;
9870 text-rendering: auto;
9875 -webkit-font-smoothing: antialiased;
9871 -webkit-font-smoothing: antialiased;
9876 -moz-osx-font-smoothing: grayscale;
9872 -moz-osx-font-smoothing: grayscale;
9877 content: "\f127";
9873 content: "\f127";
9878 }
9874 }
9879 .kernel_disconnected_icon:before.pull-left {
9875 .kernel_disconnected_icon:before.pull-left {
9880 margin-right: .3em;
9876 margin-right: .3em;
9881 }
9877 }
9882 .kernel_disconnected_icon:before.pull-right {
9878 .kernel_disconnected_icon:before.pull-right {
9883 margin-left: .3em;
9879 margin-left: .3em;
9884 }
9880 }
9885 .notification_widget {
9881 .notification_widget {
9886 color: #777777;
9882 color: #777777;
9887 z-index: 10;
9883 z-index: 10;
9888 background: rgba(240, 240, 240, 0.5);
9884 background: rgba(240, 240, 240, 0.5);
9889 color: #333333;
9885 color: #333333;
9890 background-color: #ffffff;
9886 background-color: #ffffff;
9891 border-color: #cccccc;
9887 border-color: #cccccc;
9892 }
9888 }
9893 .notification_widget:hover,
9889 .notification_widget:hover,
9894 .notification_widget:focus,
9890 .notification_widget:focus,
9895 .notification_widget:active,
9891 .notification_widget:active,
9896 .notification_widget.active,
9892 .notification_widget.active,
9897 .open .dropdown-toggle.notification_widget {
9893 .open .dropdown-toggle.notification_widget {
9898 color: #333333;
9894 color: #333333;
9899 background-color: #ebebeb;
9895 background-color: #ebebeb;
9900 border-color: #adadad;
9896 border-color: #adadad;
9901 }
9897 }
9902 .notification_widget:active,
9898 .notification_widget:active,
9903 .notification_widget.active,
9899 .notification_widget.active,
9904 .open .dropdown-toggle.notification_widget {
9900 .open .dropdown-toggle.notification_widget {
9905 background-image: none;
9901 background-image: none;
9906 }
9902 }
9907 .notification_widget.disabled,
9903 .notification_widget.disabled,
9908 .notification_widget[disabled],
9904 .notification_widget[disabled],
9909 fieldset[disabled] .notification_widget,
9905 fieldset[disabled] .notification_widget,
9910 .notification_widget.disabled:hover,
9906 .notification_widget.disabled:hover,
9911 .notification_widget[disabled]:hover,
9907 .notification_widget[disabled]:hover,
9912 fieldset[disabled] .notification_widget:hover,
9908 fieldset[disabled] .notification_widget:hover,
9913 .notification_widget.disabled:focus,
9909 .notification_widget.disabled:focus,
9914 .notification_widget[disabled]:focus,
9910 .notification_widget[disabled]:focus,
9915 fieldset[disabled] .notification_widget:focus,
9911 fieldset[disabled] .notification_widget:focus,
9916 .notification_widget.disabled:active,
9912 .notification_widget.disabled:active,
9917 .notification_widget[disabled]:active,
9913 .notification_widget[disabled]:active,
9918 fieldset[disabled] .notification_widget:active,
9914 fieldset[disabled] .notification_widget:active,
9919 .notification_widget.disabled.active,
9915 .notification_widget.disabled.active,
9920 .notification_widget[disabled].active,
9916 .notification_widget[disabled].active,
9921 fieldset[disabled] .notification_widget.active {
9917 fieldset[disabled] .notification_widget.active {
9922 background-color: #ffffff;
9918 background-color: #ffffff;
9923 border-color: #cccccc;
9919 border-color: #cccccc;
9924 }
9920 }
9925 .notification_widget .badge {
9921 .notification_widget .badge {
9926 color: #ffffff;
9922 color: #ffffff;
9927 background-color: #333333;
9923 background-color: #333333;
9928 }
9924 }
9929 .notification_widget.warning {
9925 .notification_widget.warning {
9930 color: #ffffff;
9926 color: #ffffff;
9931 background-color: #f0ad4e;
9927 background-color: #f0ad4e;
9932 border-color: #eea236;
9928 border-color: #eea236;
9933 }
9929 }
9934 .notification_widget.warning:hover,
9930 .notification_widget.warning:hover,
9935 .notification_widget.warning:focus,
9931 .notification_widget.warning:focus,
9936 .notification_widget.warning:active,
9932 .notification_widget.warning:active,
9937 .notification_widget.warning.active,
9933 .notification_widget.warning.active,
9938 .open .dropdown-toggle.notification_widget.warning {
9934 .open .dropdown-toggle.notification_widget.warning {
9939 color: #ffffff;
9935 color: #ffffff;
9940 background-color: #ed9c28;
9936 background-color: #ed9c28;
9941 border-color: #d58512;
9937 border-color: #d58512;
9942 }
9938 }
9943 .notification_widget.warning:active,
9939 .notification_widget.warning:active,
9944 .notification_widget.warning.active,
9940 .notification_widget.warning.active,
9945 .open .dropdown-toggle.notification_widget.warning {
9941 .open .dropdown-toggle.notification_widget.warning {
9946 background-image: none;
9942 background-image: none;
9947 }
9943 }
9948 .notification_widget.warning.disabled,
9944 .notification_widget.warning.disabled,
9949 .notification_widget.warning[disabled],
9945 .notification_widget.warning[disabled],
9950 fieldset[disabled] .notification_widget.warning,
9946 fieldset[disabled] .notification_widget.warning,
9951 .notification_widget.warning.disabled:hover,
9947 .notification_widget.warning.disabled:hover,
9952 .notification_widget.warning[disabled]:hover,
9948 .notification_widget.warning[disabled]:hover,
9953 fieldset[disabled] .notification_widget.warning:hover,
9949 fieldset[disabled] .notification_widget.warning:hover,
9954 .notification_widget.warning.disabled:focus,
9950 .notification_widget.warning.disabled:focus,
9955 .notification_widget.warning[disabled]:focus,
9951 .notification_widget.warning[disabled]:focus,
9956 fieldset[disabled] .notification_widget.warning:focus,
9952 fieldset[disabled] .notification_widget.warning:focus,
9957 .notification_widget.warning.disabled:active,
9953 .notification_widget.warning.disabled:active,
9958 .notification_widget.warning[disabled]:active,
9954 .notification_widget.warning[disabled]:active,
9959 fieldset[disabled] .notification_widget.warning:active,
9955 fieldset[disabled] .notification_widget.warning:active,
9960 .notification_widget.warning.disabled.active,
9956 .notification_widget.warning.disabled.active,
9961 .notification_widget.warning[disabled].active,
9957 .notification_widget.warning[disabled].active,
9962 fieldset[disabled] .notification_widget.warning.active {
9958 fieldset[disabled] .notification_widget.warning.active {
9963 background-color: #f0ad4e;
9959 background-color: #f0ad4e;
9964 border-color: #eea236;
9960 border-color: #eea236;
9965 }
9961 }
9966 .notification_widget.warning .badge {
9962 .notification_widget.warning .badge {
9967 color: #f0ad4e;
9963 color: #f0ad4e;
9968 background-color: #ffffff;
9964 background-color: #ffffff;
9969 }
9965 }
9970 .notification_widget.success {
9966 .notification_widget.success {
9971 color: #ffffff;
9967 color: #ffffff;
9972 background-color: #5cb85c;
9968 background-color: #5cb85c;
9973 border-color: #4cae4c;
9969 border-color: #4cae4c;
9974 }
9970 }
9975 .notification_widget.success:hover,
9971 .notification_widget.success:hover,
9976 .notification_widget.success:focus,
9972 .notification_widget.success:focus,
9977 .notification_widget.success:active,
9973 .notification_widget.success:active,
9978 .notification_widget.success.active,
9974 .notification_widget.success.active,
9979 .open .dropdown-toggle.notification_widget.success {
9975 .open .dropdown-toggle.notification_widget.success {
9980 color: #ffffff;
9976 color: #ffffff;
9981 background-color: #47a447;
9977 background-color: #47a447;
9982 border-color: #398439;
9978 border-color: #398439;
9983 }
9979 }
9984 .notification_widget.success:active,
9980 .notification_widget.success:active,
9985 .notification_widget.success.active,
9981 .notification_widget.success.active,
9986 .open .dropdown-toggle.notification_widget.success {
9982 .open .dropdown-toggle.notification_widget.success {
9987 background-image: none;
9983 background-image: none;
9988 }
9984 }
9989 .notification_widget.success.disabled,
9985 .notification_widget.success.disabled,
9990 .notification_widget.success[disabled],
9986 .notification_widget.success[disabled],
9991 fieldset[disabled] .notification_widget.success,
9987 fieldset[disabled] .notification_widget.success,
9992 .notification_widget.success.disabled:hover,
9988 .notification_widget.success.disabled:hover,
9993 .notification_widget.success[disabled]:hover,
9989 .notification_widget.success[disabled]:hover,
9994 fieldset[disabled] .notification_widget.success:hover,
9990 fieldset[disabled] .notification_widget.success:hover,
9995 .notification_widget.success.disabled:focus,
9991 .notification_widget.success.disabled:focus,
9996 .notification_widget.success[disabled]:focus,
9992 .notification_widget.success[disabled]:focus,
9997 fieldset[disabled] .notification_widget.success:focus,
9993 fieldset[disabled] .notification_widget.success:focus,
9998 .notification_widget.success.disabled:active,
9994 .notification_widget.success.disabled:active,
9999 .notification_widget.success[disabled]:active,
9995 .notification_widget.success[disabled]:active,
10000 fieldset[disabled] .notification_widget.success:active,
9996 fieldset[disabled] .notification_widget.success:active,
10001 .notification_widget.success.disabled.active,
9997 .notification_widget.success.disabled.active,
10002 .notification_widget.success[disabled].active,
9998 .notification_widget.success[disabled].active,
10003 fieldset[disabled] .notification_widget.success.active {
9999 fieldset[disabled] .notification_widget.success.active {
10004 background-color: #5cb85c;
10000 background-color: #5cb85c;
10005 border-color: #4cae4c;
10001 border-color: #4cae4c;
10006 }
10002 }
10007 .notification_widget.success .badge {
10003 .notification_widget.success .badge {
10008 color: #5cb85c;
10004 color: #5cb85c;
10009 background-color: #ffffff;
10005 background-color: #ffffff;
10010 }
10006 }
10011 .notification_widget.info {
10007 .notification_widget.info {
10012 color: #ffffff;
10008 color: #ffffff;
10013 background-color: #5bc0de;
10009 background-color: #5bc0de;
10014 border-color: #46b8da;
10010 border-color: #46b8da;
10015 }
10011 }
10016 .notification_widget.info:hover,
10012 .notification_widget.info:hover,
10017 .notification_widget.info:focus,
10013 .notification_widget.info:focus,
10018 .notification_widget.info:active,
10014 .notification_widget.info:active,
10019 .notification_widget.info.active,
10015 .notification_widget.info.active,
10020 .open .dropdown-toggle.notification_widget.info {
10016 .open .dropdown-toggle.notification_widget.info {
10021 color: #ffffff;
10017 color: #ffffff;
10022 background-color: #39b3d7;
10018 background-color: #39b3d7;
10023 border-color: #269abc;
10019 border-color: #269abc;
10024 }
10020 }
10025 .notification_widget.info:active,
10021 .notification_widget.info:active,
10026 .notification_widget.info.active,
10022 .notification_widget.info.active,
10027 .open .dropdown-toggle.notification_widget.info {
10023 .open .dropdown-toggle.notification_widget.info {
10028 background-image: none;
10024 background-image: none;
10029 }
10025 }
10030 .notification_widget.info.disabled,
10026 .notification_widget.info.disabled,
10031 .notification_widget.info[disabled],
10027 .notification_widget.info[disabled],
10032 fieldset[disabled] .notification_widget.info,
10028 fieldset[disabled] .notification_widget.info,
10033 .notification_widget.info.disabled:hover,
10029 .notification_widget.info.disabled:hover,
10034 .notification_widget.info[disabled]:hover,
10030 .notification_widget.info[disabled]:hover,
10035 fieldset[disabled] .notification_widget.info:hover,
10031 fieldset[disabled] .notification_widget.info:hover,
10036 .notification_widget.info.disabled:focus,
10032 .notification_widget.info.disabled:focus,
10037 .notification_widget.info[disabled]:focus,
10033 .notification_widget.info[disabled]:focus,
10038 fieldset[disabled] .notification_widget.info:focus,
10034 fieldset[disabled] .notification_widget.info:focus,
10039 .notification_widget.info.disabled:active,
10035 .notification_widget.info.disabled:active,
10040 .notification_widget.info[disabled]:active,
10036 .notification_widget.info[disabled]:active,
10041 fieldset[disabled] .notification_widget.info:active,
10037 fieldset[disabled] .notification_widget.info:active,
10042 .notification_widget.info.disabled.active,
10038 .notification_widget.info.disabled.active,
10043 .notification_widget.info[disabled].active,
10039 .notification_widget.info[disabled].active,
10044 fieldset[disabled] .notification_widget.info.active {
10040 fieldset[disabled] .notification_widget.info.active {
10045 background-color: #5bc0de;
10041 background-color: #5bc0de;
10046 border-color: #46b8da;
10042 border-color: #46b8da;
10047 }
10043 }
10048 .notification_widget.info .badge {
10044 .notification_widget.info .badge {
10049 color: #5bc0de;
10045 color: #5bc0de;
10050 background-color: #ffffff;
10046 background-color: #ffffff;
10051 }
10047 }
10052 .notification_widget.danger {
10048 .notification_widget.danger {
10053 color: #ffffff;
10049 color: #ffffff;
10054 background-color: #d9534f;
10050 background-color: #d9534f;
10055 border-color: #d43f3a;
10051 border-color: #d43f3a;
10056 }
10052 }
10057 .notification_widget.danger:hover,
10053 .notification_widget.danger:hover,
10058 .notification_widget.danger:focus,
10054 .notification_widget.danger:focus,
10059 .notification_widget.danger:active,
10055 .notification_widget.danger:active,
10060 .notification_widget.danger.active,
10056 .notification_widget.danger.active,
10061 .open .dropdown-toggle.notification_widget.danger {
10057 .open .dropdown-toggle.notification_widget.danger {
10062 color: #ffffff;
10058 color: #ffffff;
10063 background-color: #d2322d;
10059 background-color: #d2322d;
10064 border-color: #ac2925;
10060 border-color: #ac2925;
10065 }
10061 }
10066 .notification_widget.danger:active,
10062 .notification_widget.danger:active,
10067 .notification_widget.danger.active,
10063 .notification_widget.danger.active,
10068 .open .dropdown-toggle.notification_widget.danger {
10064 .open .dropdown-toggle.notification_widget.danger {
10069 background-image: none;
10065 background-image: none;
10070 }
10066 }
10071 .notification_widget.danger.disabled,
10067 .notification_widget.danger.disabled,
10072 .notification_widget.danger[disabled],
10068 .notification_widget.danger[disabled],
10073 fieldset[disabled] .notification_widget.danger,
10069 fieldset[disabled] .notification_widget.danger,
10074 .notification_widget.danger.disabled:hover,
10070 .notification_widget.danger.disabled:hover,
10075 .notification_widget.danger[disabled]:hover,
10071 .notification_widget.danger[disabled]:hover,
10076 fieldset[disabled] .notification_widget.danger:hover,
10072 fieldset[disabled] .notification_widget.danger:hover,
10077 .notification_widget.danger.disabled:focus,
10073 .notification_widget.danger.disabled:focus,
10078 .notification_widget.danger[disabled]:focus,
10074 .notification_widget.danger[disabled]:focus,
10079 fieldset[disabled] .notification_widget.danger:focus,
10075 fieldset[disabled] .notification_widget.danger:focus,
10080 .notification_widget.danger.disabled:active,
10076 .notification_widget.danger.disabled:active,
10081 .notification_widget.danger[disabled]:active,
10077 .notification_widget.danger[disabled]:active,
10082 fieldset[disabled] .notification_widget.danger:active,
10078 fieldset[disabled] .notification_widget.danger:active,
10083 .notification_widget.danger.disabled.active,
10079 .notification_widget.danger.disabled.active,
10084 .notification_widget.danger[disabled].active,
10080 .notification_widget.danger[disabled].active,
10085 fieldset[disabled] .notification_widget.danger.active {
10081 fieldset[disabled] .notification_widget.danger.active {
10086 background-color: #d9534f;
10082 background-color: #d9534f;
10087 border-color: #d43f3a;
10083 border-color: #d43f3a;
10088 }
10084 }
10089 .notification_widget.danger .badge {
10085 .notification_widget.danger .badge {
10090 color: #d9534f;
10086 color: #d9534f;
10091 background-color: #ffffff;
10087 background-color: #ffffff;
10092 }
10088 }
10093 div#pager {
10089 div#pager {
10094 background-color: #ffffff;
10090 background-color: #ffffff;
10095 font-size: 14px;
10091 font-size: 14px;
10096 line-height: 20px;
10092 line-height: 20px;
10097 overflow: hidden;
10093 overflow: hidden;
10098 display: none;
10094 display: none;
10099 position: fixed;
10095 position: fixed;
10100 bottom: 0px;
10096 bottom: 0px;
10101 width: 100%;
10097 width: 100%;
10102 max-height: 50%;
10098 max-height: 50%;
10103 padding-top: 7px;
10099 padding-top: 7px;
10104 /* Display over codemirror */
10100 /* Display over codemirror */
10105 z-index: 100;
10101 z-index: 100;
10106 /* Hack which prevents jquery ui resizable from changing top. */
10102 /* Hack which prevents jquery ui resizable from changing top. */
10107 top: inherit !important;
10103 top: inherit !important;
10108 }
10104 }
10109 div#pager pre {
10105 div#pager pre {
10110 line-height: 1.21429em;
10106 line-height: 1.21429em;
10111 color: #000000;
10107 color: #000000;
10112 background-color: #f7f7f7;
10108 background-color: #f7f7f7;
10113 padding: 0.4em;
10109 padding: 0.4em;
10114 }
10110 }
10115 div#pager #pager-button-area {
10111 div#pager #pager-button-area {
10116 position: absolute;
10112 position: absolute;
10117 top: 7px;
10113 top: 7px;
10118 right: 20px;
10114 right: 20px;
10119 }
10115 }
10120 div#pager #pager-contents {
10116 div#pager #pager-contents {
10121 position: relative;
10117 position: relative;
10122 overflow: auto;
10118 overflow: auto;
10123 width: 100%;
10119 width: 100%;
10124 height: 100%;
10120 height: 100%;
10125 }
10121 }
10126 div#pager #pager-contents #pager-container {
10122 div#pager #pager-contents #pager-container {
10127 position: relative;
10123 position: relative;
10128 padding: 15px 0px;
10124 padding: 15px 0px;
10129 box-sizing: border-box;
10125 box-sizing: border-box;
10130 -moz-box-sizing: border-box;
10126 -moz-box-sizing: border-box;
10131 -webkit-box-sizing: border-box;
10127 -webkit-box-sizing: border-box;
10132 }
10128 }
10133 div#pager .ui-resizable-handle {
10129 div#pager .ui-resizable-handle {
10134 top: 0px;
10130 top: 0px;
10135 height: 7px;
10131 height: 7px;
10136 background: #cfcfcf;
10132 background: #cfcfcf;
10137 border-bottom: 1px solid #ababab;
10133 border-bottom: 1px solid #ababab;
10138 }
10134 }
10139 .quickhelp {
10135 .quickhelp {
10140 /* Old browsers */
10136 /* Old browsers */
10141 display: -webkit-box;
10137 display: -webkit-box;
10142 -webkit-box-orient: horizontal;
10138 -webkit-box-orient: horizontal;
10143 -webkit-box-align: stretch;
10139 -webkit-box-align: stretch;
10144 display: -moz-box;
10140 display: -moz-box;
10145 -moz-box-orient: horizontal;
10141 -moz-box-orient: horizontal;
10146 -moz-box-align: stretch;
10142 -moz-box-align: stretch;
10147 display: box;
10143 display: box;
10148 box-orient: horizontal;
10144 box-orient: horizontal;
10149 box-align: stretch;
10145 box-align: stretch;
10150 /* Modern browsers */
10146 /* Modern browsers */
10151 display: flex;
10147 display: flex;
10152 flex-direction: row;
10148 flex-direction: row;
10153 align-items: stretch;
10149 align-items: stretch;
10154 }
10150 }
10155 .shortcut_key {
10151 .shortcut_key {
10156 display: inline-block;
10152 display: inline-block;
10157 width: 20ex;
10153 width: 20ex;
10158 text-align: right;
10154 text-align: right;
10159 font-family: monospace;
10155 font-family: monospace;
10160 }
10156 }
10161 .shortcut_descr {
10157 .shortcut_descr {
10162 display: inline-block;
10158 display: inline-block;
10163 /* Old browsers */
10159 /* Old browsers */
10164 -webkit-box-flex: 1;
10160 -webkit-box-flex: 1;
10165 -moz-box-flex: 1;
10161 -moz-box-flex: 1;
10166 box-flex: 1;
10162 box-flex: 1;
10167 /* Modern browsers */
10163 /* Modern browsers */
10168 flex: 1;
10164 flex: 1;
10169 }
10165 }
10170 span.save_widget {
10166 span.save_widget {
10171 margin-top: 6px;
10167 margin-top: 6px;
10172 }
10168 }
10173 span.save_widget span.filename {
10169 span.save_widget span.filename {
10174 height: 1em;
10170 height: 1em;
10175 line-height: 1em;
10171 line-height: 1em;
10176 padding: 3px;
10172 padding: 3px;
10177 border: none;
10173 border: none;
10178 font-size: 146.5%;
10174 font-size: 146.5%;
10179 border-radius: 4px;
10175 border-radius: 4px;
10180 }
10176 }
10181 span.save_widget span.filename:hover {
10177 span.save_widget span.filename:hover {
10182 background-color: #e6e6e6;
10178 background-color: #e6e6e6;
10183 }
10179 }
10184 span.checkpoint_status,
10180 span.checkpoint_status,
10185 span.autosave_status {
10181 span.autosave_status {
10186 font-size: small;
10182 font-size: small;
10187 }
10183 }
10188 @media (max-width: 767px) {
10184 @media (max-width: 767px) {
10189 span.save_widget {
10185 span.save_widget {
10190 font-size: small;
10186 font-size: small;
10191 }
10187 }
10192 span.checkpoint_status,
10188 span.checkpoint_status,
10193 span.autosave_status {
10189 span.autosave_status {
10194 display: none;
10190 display: none;
10195 }
10191 }
10196 }
10192 }
10197 @media (min-width: 768px) and (max-width: 979px) {
10193 @media (min-width: 768px) and (max-width: 979px) {
10198 span.checkpoint_status {
10194 span.checkpoint_status {
10199 display: none;
10195 display: none;
10200 }
10196 }
10201 span.autosave_status {
10197 span.autosave_status {
10202 font-size: x-small;
10198 font-size: x-small;
10203 }
10199 }
10204 }
10200 }
10205 .toolbar {
10201 .toolbar {
10206 padding: 0px;
10202 padding: 0px;
10207 margin-left: -5px;
10203 margin-left: -5px;
10208 margin-top: -5px;
10204 margin-top: -5px;
10209 margin-bottom: 5px;
10205 margin-bottom: 5px;
10210 box-sizing: border-box;
10206 box-sizing: border-box;
10211 -moz-box-sizing: border-box;
10207 -moz-box-sizing: border-box;
10212 -webkit-box-sizing: border-box;
10208 -webkit-box-sizing: border-box;
10213 }
10209 }
10214 .toolbar select,
10210 .toolbar select,
10215 .toolbar label {
10211 .toolbar label {
10216 width: auto;
10212 width: auto;
10217 vertical-align: middle;
10213 vertical-align: middle;
10218 margin-right: 2px;
10214 margin-right: 2px;
10219 margin-bottom: 0px;
10215 margin-bottom: 0px;
10220 display: inline;
10216 display: inline;
10221 font-size: 92%;
10217 font-size: 92%;
10222 margin-left: 0.3em;
10218 margin-left: 0.3em;
10223 margin-right: 0.3em;
10219 margin-right: 0.3em;
10224 padding: 0px;
10220 padding: 0px;
10225 padding-top: 3px;
10221 padding-top: 3px;
10226 }
10222 }
10227 .toolbar .btn {
10223 .toolbar .btn {
10228 padding: 2px 8px;
10224 padding: 2px 8px;
10229 }
10225 }
10230 .toolbar .btn-group {
10226 .toolbar .btn-group {
10231 margin-top: 0px;
10227 margin-top: 0px;
10232 margin-left: 5px;
10228 margin-left: 5px;
10233 }
10229 }
10234 #maintoolbar {
10230 #maintoolbar {
10235 margin-bottom: -3px;
10231 margin-bottom: -3px;
10236 margin-top: -8px;
10232 margin-top: -8px;
10237 border: 0px;
10233 border: 0px;
10238 min-height: 27px;
10234 min-height: 27px;
10239 margin-left: 32px;
10235 margin-left: 32px;
10240 padding-top: 11px;
10236 padding-top: 11px;
10241 padding-bottom: 3px;
10237 padding-bottom: 3px;
10242 }
10238 }
10243 #maintoolbar .navbar-text {
10239 #maintoolbar .navbar-text {
10244 float: none;
10240 float: none;
10245 vertical-align: middle;
10241 vertical-align: middle;
10246 text-align: right;
10242 text-align: right;
10247 margin-left: 5px;
10243 margin-left: 5px;
10248 margin-right: 0px;
10244 margin-right: 0px;
10249 margin-top: 0px;
10245 margin-top: 0px;
10250 }
10246 }
10251 .select-xs {
10247 .select-xs {
10252 height: 24px;
10248 height: 24px;
10253 }
10249 }
10254 /**
10250 /**
10255 * Primary styles
10251 * Primary styles
10256 *
10252 *
10257 * Author: IPython Development Team
10253 * Author: IPython Development Team
10258 */
10254 */
10259 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10255 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10260 * of chance of beeing generated from the ../less/[samename].less file, you can
10256 * of chance of beeing generated from the ../less/[samename].less file, you can
10261 * try to get back the less file by reverting somme commit in history
10257 * try to get back the less file by reverting somme commit in history
10262 **/
10258 **/
10263 /*
10259 /*
10264 * We'll try to get something pretty, so we
10260 * We'll try to get something pretty, so we
10265 * have some strange css to have the scroll bar on
10261 * have some strange css to have the scroll bar on
10266 * the left with fix button on the top right of the tooltip
10262 * the left with fix button on the top right of the tooltip
10267 */
10263 */
10268 @-moz-keyframes fadeOut {
10264 @-moz-keyframes fadeOut {
10269 from {
10265 from {
10270 opacity: 1;
10266 opacity: 1;
10271 }
10267 }
10272 to {
10268 to {
10273 opacity: 0;
10269 opacity: 0;
10274 }
10270 }
10275 }
10271 }
10276 @-webkit-keyframes fadeOut {
10272 @-webkit-keyframes fadeOut {
10277 from {
10273 from {
10278 opacity: 1;
10274 opacity: 1;
10279 }
10275 }
10280 to {
10276 to {
10281 opacity: 0;
10277 opacity: 0;
10282 }
10278 }
10283 }
10279 }
10284 @-moz-keyframes fadeIn {
10280 @-moz-keyframes fadeIn {
10285 from {
10281 from {
10286 opacity: 0;
10282 opacity: 0;
10287 }
10283 }
10288 to {
10284 to {
10289 opacity: 1;
10285 opacity: 1;
10290 }
10286 }
10291 }
10287 }
10292 @-webkit-keyframes fadeIn {
10288 @-webkit-keyframes fadeIn {
10293 from {
10289 from {
10294 opacity: 0;
10290 opacity: 0;
10295 }
10291 }
10296 to {
10292 to {
10297 opacity: 1;
10293 opacity: 1;
10298 }
10294 }
10299 }
10295 }
10300 /*properties of tooltip after "expand"*/
10296 /*properties of tooltip after "expand"*/
10301 .bigtooltip {
10297 .bigtooltip {
10302 overflow: auto;
10298 overflow: auto;
10303 height: 200px;
10299 height: 200px;
10304 -webkit-transition-property: height;
10300 -webkit-transition-property: height;
10305 -webkit-transition-duration: 500ms;
10301 -webkit-transition-duration: 500ms;
10306 -moz-transition-property: height;
10302 -moz-transition-property: height;
10307 -moz-transition-duration: 500ms;
10303 -moz-transition-duration: 500ms;
10308 transition-property: height;
10304 transition-property: height;
10309 transition-duration: 500ms;
10305 transition-duration: 500ms;
10310 }
10306 }
10311 /*properties of tooltip before "expand"*/
10307 /*properties of tooltip before "expand"*/
10312 .smalltooltip {
10308 .smalltooltip {
10313 -webkit-transition-property: height;
10309 -webkit-transition-property: height;
10314 -webkit-transition-duration: 500ms;
10310 -webkit-transition-duration: 500ms;
10315 -moz-transition-property: height;
10311 -moz-transition-property: height;
10316 -moz-transition-duration: 500ms;
10312 -moz-transition-duration: 500ms;
10317 transition-property: height;
10313 transition-property: height;
10318 transition-duration: 500ms;
10314 transition-duration: 500ms;
10319 text-overflow: ellipsis;
10315 text-overflow: ellipsis;
10320 overflow: hidden;
10316 overflow: hidden;
10321 height: 80px;
10317 height: 80px;
10322 }
10318 }
10323 .tooltipbuttons {
10319 .tooltipbuttons {
10324 position: absolute;
10320 position: absolute;
10325 padding-right: 15px;
10321 padding-right: 15px;
10326 top: 0px;
10322 top: 0px;
10327 right: 0px;
10323 right: 0px;
10328 }
10324 }
10329 .tooltiptext {
10325 .tooltiptext {
10330 /*avoid the button to overlap on some docstring*/
10326 /*avoid the button to overlap on some docstring*/
10331 padding-right: 30px;
10327 padding-right: 30px;
10332 }
10328 }
10333 .ipython_tooltip {
10329 .ipython_tooltip {
10334 max-width: 700px;
10330 max-width: 700px;
10335 /*fade-in animation when inserted*/
10331 /*fade-in animation when inserted*/
10336 -webkit-animation: fadeOut 400ms;
10332 -webkit-animation: fadeOut 400ms;
10337 -moz-animation: fadeOut 400ms;
10333 -moz-animation: fadeOut 400ms;
10338 animation: fadeOut 400ms;
10334 animation: fadeOut 400ms;
10339 -webkit-animation: fadeIn 400ms;
10335 -webkit-animation: fadeIn 400ms;
10340 -moz-animation: fadeIn 400ms;
10336 -moz-animation: fadeIn 400ms;
10341 animation: fadeIn 400ms;
10337 animation: fadeIn 400ms;
10342 vertical-align: middle;
10338 vertical-align: middle;
10343 background-color: #f7f7f7;
10339 background-color: #f7f7f7;
10344 overflow: visible;
10340 overflow: visible;
10345 border: #ababab 1px solid;
10341 border: #ababab 1px solid;
10346 outline: none;
10342 outline: none;
10347 padding: 3px;
10343 padding: 3px;
10348 margin: 0px;
10344 margin: 0px;
10349 padding-left: 7px;
10345 padding-left: 7px;
10350 font-family: monospace;
10346 font-family: monospace;
10351 min-height: 50px;
10347 min-height: 50px;
10352 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10348 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10353 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10349 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10354 box-shadow: 0px 6px 10px -1px #adadad;
10350 box-shadow: 0px 6px 10px -1px #adadad;
10355 border-radius: 4px;
10351 border-radius: 4px;
10356 position: absolute;
10352 position: absolute;
10357 z-index: 1000;
10353 z-index: 1000;
10358 }
10354 }
10359 .ipython_tooltip a {
10355 .ipython_tooltip a {
10360 float: right;
10356 float: right;
10361 }
10357 }
10362 .ipython_tooltip .tooltiptext pre {
10358 .ipython_tooltip .tooltiptext pre {
10363 border: 0;
10359 border: 0;
10364 border-radius: 0;
10360 border-radius: 0;
10365 font-size: 100%;
10361 font-size: 100%;
10366 background-color: #f7f7f7;
10362 background-color: #f7f7f7;
10367 }
10363 }
10368 .pretooltiparrow {
10364 .pretooltiparrow {
10369 left: 0px;
10365 left: 0px;
10370 margin: 0px;
10366 margin: 0px;
10371 top: -16px;
10367 top: -16px;
10372 width: 40px;
10368 width: 40px;
10373 height: 16px;
10369 height: 16px;
10374 overflow: hidden;
10370 overflow: hidden;
10375 position: absolute;
10371 position: absolute;
10376 }
10372 }
10377 .pretooltiparrow:before {
10373 .pretooltiparrow:before {
10378 background-color: #f7f7f7;
10374 background-color: #f7f7f7;
10379 border: 1px #ababab solid;
10375 border: 1px #ababab solid;
10380 z-index: 11;
10376 z-index: 11;
10381 content: "";
10377 content: "";
10382 position: absolute;
10378 position: absolute;
10383 left: 15px;
10379 left: 15px;
10384 top: 10px;
10380 top: 10px;
10385 width: 25px;
10381 width: 25px;
10386 height: 25px;
10382 height: 25px;
10387 -webkit-transform: rotate(45deg);
10383 -webkit-transform: rotate(45deg);
10388 -moz-transform: rotate(45deg);
10384 -moz-transform: rotate(45deg);
10389 -ms-transform: rotate(45deg);
10385 -ms-transform: rotate(45deg);
10390 -o-transform: rotate(45deg);
10386 -o-transform: rotate(45deg);
10391 }
10387 }
10392 .terminal {
10388 .terminal {
10393 float: left;
10389 float: left;
10394 border: black solid 5px;
10390 border: black solid 5px;
10395 font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
10391 font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
10396 font-size: 11px;
10392 font-size: 11px;
10397 color: white;
10393 color: white;
10398 background: black;
10394 background: black;
10399 }
10395 }
10400 .terminal-cursor {
10396 .terminal-cursor {
10401 color: black;
10397 color: black;
10402 background: white;
10398 background: white;
10403 }
10399 }
10404 #terminado-container {
10400 #terminado-container {
10405 margin: 8px;
10401 margin: 8px;
10406 }
10402 }
10407 /*# sourceMappingURL=style.min.css.map */ No newline at end of file
10403 /*# sourceMappingURL=style.min.css.map */
@@ -1,154 +1,158 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define([
5 "widgets/js/widget",
5 "widgets/js/widget",
6 "jquery",
6 "jquery",
7 "bootstrap",
7 "bootstrap",
8 ], function(widget, $){
8 ], function(widget, $){
9
9
10 var CheckboxView = widget.DOMWidgetView.extend({
10 var CheckboxView = widget.DOMWidgetView.extend({
11 render : function(){
11 render : function(){
12 /**
12 /**
13 * Called when view is rendered.
13 * Called when view is rendered.
14 */
14 */
15 this.$el
15 this.$el
16 .addClass('widget-hbox widget-checkbox');
16 .addClass('widget-hbox widget-checkbox');
17 this.$label = $('<div />')
17 this.$label = $('<div />')
18 .addClass('widget-label')
18 .addClass('widget-label')
19 .appendTo(this.$el)
19 .appendTo(this.$el)
20 .hide();
20 .hide();
21 this.$checkbox = $('<input />')
21 this.$checkbox = $('<input />')
22 .attr('type', 'checkbox')
22 .attr('type', 'checkbox')
23 .appendTo(this.$el)
23 .appendTo(this.$el)
24 .click($.proxy(this.handle_click, this));
24 .click($.proxy(this.handle_click, this));
25
25
26 this.update(); // Set defaults.
26 this.update(); // Set defaults.
27 },
27 },
28
28
29 update_attr: function(name, value) {
29 update_attr: function(name, value) {
30 /**
30 /**
31 * Set a css attr of the widget view.
31 * Set a css attr of the widget view.
32 */
32 */
33 this.$checkbox.css(name, value);
33 if (name == 'padding' || name == 'margin') {
34 this.$el.css(name, value);
35 } else {
36 this.$checkbox.css(name, value);
37 }
34 },
38 },
35
39
36 handle_click: function() {
40 handle_click: function() {
37 /**
41 /**
38 * Handles when the checkbox is clicked.
42 * Handles when the checkbox is clicked.
39 *
43 *
40 * Calling model.set will trigger all of the other views of the
44 * Calling model.set will trigger all of the other views of the
41 * model to update.
45 * model to update.
42 */
46 */
43 var value = this.model.get('value');
47 var value = this.model.get('value');
44 this.model.set('value', ! value, {updated_view: this});
48 this.model.set('value', ! value, {updated_view: this});
45 this.touch();
49 this.touch();
46 },
50 },
47
51
48 update : function(options){
52 update : function(options){
49 /**
53 /**
50 * Update the contents of this view
54 * Update the contents of this view
51 *
55 *
52 * Called when the model is changed. The model may have been
56 * Called when the model is changed. The model may have been
53 * changed by another view or by a state update from the back-end.
57 * changed by another view or by a state update from the back-end.
54 */
58 */
55 this.$checkbox.prop('checked', this.model.get('value'));
59 this.$checkbox.prop('checked', this.model.get('value'));
56
60
57 if (options === undefined || options.updated_view != this) {
61 if (options === undefined || options.updated_view != this) {
58 var disabled = this.model.get('disabled');
62 var disabled = this.model.get('disabled');
59 this.$checkbox.prop('disabled', disabled);
63 this.$checkbox.prop('disabled', disabled);
60
64
61 var description = this.model.get('description');
65 var description = this.model.get('description');
62 if (description.trim().length === 0) {
66 if (description.trim().length === 0) {
63 this.$label.hide();
67 this.$label.hide();
64 } else {
68 } else {
65 this.typeset(this.$label, description);
69 this.typeset(this.$label, description);
66 this.$label.show();
70 this.$label.show();
67 }
71 }
68 }
72 }
69 return CheckboxView.__super__.update.apply(this);
73 return CheckboxView.__super__.update.apply(this);
70 },
74 },
71
75
72 });
76 });
73
77
74
78
75 var ToggleButtonView = widget.DOMWidgetView.extend({
79 var ToggleButtonView = widget.DOMWidgetView.extend({
76 render : function() {
80 render : function() {
77 /**
81 /**
78 * Called when view is rendered.
82 * Called when view is rendered.
79 */
83 */
80 var that = this;
84 var that = this;
81 this.setElement($('<button />')
85 this.setElement($('<button />')
82 .addClass('btn btn-default')
86 .addClass('btn btn-default')
83 .attr('type', 'button')
87 .attr('type', 'button')
84 .on('click', function (e) {
88 .on('click', function (e) {
85 e.preventDefault();
89 e.preventDefault();
86 that.handle_click();
90 that.handle_click();
87 }));
91 }));
88 this.$el.attr("data-toggle", "tooltip");
92 this.$el.attr("data-toggle", "tooltip");
89 this.model.on('change:button_style', function(model, value) {
93 this.model.on('change:button_style', function(model, value) {
90 this.update_button_style();
94 this.update_button_style();
91 }, this);
95 }, this);
92 this.update_button_style('');
96 this.update_button_style('');
93
97
94 this.update(); // Set defaults.
98 this.update(); // Set defaults.
95 },
99 },
96
100
97 update_button_style: function(previous_trait_value) {
101 update_button_style: function(previous_trait_value) {
98 var class_map = {
102 var class_map = {
99 primary: ['btn-primary'],
103 primary: ['btn-primary'],
100 success: ['btn-success'],
104 success: ['btn-success'],
101 info: ['btn-info'],
105 info: ['btn-info'],
102 warning: ['btn-warning'],
106 warning: ['btn-warning'],
103 danger: ['btn-danger']
107 danger: ['btn-danger']
104 };
108 };
105 this.update_mapped_classes(class_map, 'button_style', previous_trait_value);
109 this.update_mapped_classes(class_map, 'button_style', previous_trait_value);
106 },
110 },
107
111
108 update : function(options){
112 update : function(options){
109 /**
113 /**
110 * Update the contents of this view
114 * Update the contents of this view
111 *
115 *
112 * Called when the model is changed. The model may have been
116 * Called when the model is changed. The model may have been
113 * changed by another view or by a state update from the back-end.
117 * changed by another view or by a state update from the back-end.
114 */
118 */
115 if (this.model.get('value')) {
119 if (this.model.get('value')) {
116 this.$el.addClass('active');
120 this.$el.addClass('active');
117 } else {
121 } else {
118 this.$el.removeClass('active');
122 this.$el.removeClass('active');
119 }
123 }
120
124
121 if (options === undefined || options.updated_view != this) {
125 if (options === undefined || options.updated_view != this) {
122
126
123 var disabled = this.model.get('disabled');
127 var disabled = this.model.get('disabled');
124 this.$el.prop('disabled', disabled);
128 this.$el.prop('disabled', disabled);
125
129
126 var description = this.model.get('description');
130 var description = this.model.get('description');
127 this.$el.attr("title", this.model.get("tooltip"));
131 this.$el.attr("title", this.model.get("tooltip"));
128 if (description.trim().length === 0) {
132 if (description.trim().length === 0) {
129 this.$el.html("&nbsp;"); // Preserve button height
133 this.$el.html("&nbsp;"); // Preserve button height
130 } else {
134 } else {
131 this.$el.text(description);
135 this.$el.text(description);
132 }
136 }
133 }
137 }
134 return ToggleButtonView.__super__.update.apply(this);
138 return ToggleButtonView.__super__.update.apply(this);
135 },
139 },
136
140
137 handle_click: function(e) {
141 handle_click: function(e) {
138 /**
142 /**
139 * Handles and validates user input.
143 * Handles and validates user input.
140 *
144 *
141 * Calling model.set will trigger all of the other views of the
145 * Calling model.set will trigger all of the other views of the
142 * model to update.
146 * model to update.
143 */
147 */
144 var value = this.model.get('value');
148 var value = this.model.get('value');
145 this.model.set('value', ! value, {updated_view: this});
149 this.model.set('value', ! value, {updated_view: this});
146 this.touch();
150 this.touch();
147 },
151 },
148 });
152 });
149
153
150 return {
154 return {
151 'CheckboxView': CheckboxView,
155 'CheckboxView': CheckboxView,
152 'ToggleButtonView': ToggleButtonView,
156 'ToggleButtonView': ToggleButtonView,
153 };
157 };
154 });
158 });
@@ -1,482 +1,490 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define([
5 "widgets/js/widget",
5 "widgets/js/widget",
6 "jqueryui",
6 "jqueryui",
7 "base/js/keyboard",
7 "base/js/keyboard",
8 "bootstrap"
8 "bootstrap"
9 ], function(widget, $, keyboard){
9 ], function(widget, $, keyboard){
10
10
11 var IntSliderView = widget.DOMWidgetView.extend({
11 var IntSliderView = widget.DOMWidgetView.extend({
12 render : function(){
12 render : function(){
13 /**
13 /**
14 * Called when view is rendered.
14 * Called when view is rendered.
15 */
15 */
16 this.$el
16 this.$el
17 .addClass('widget-hbox widget-slider');
17 .addClass('widget-hbox widget-slider');
18 this.$label = $('<div />')
18 this.$label = $('<div />')
19 .appendTo(this.$el)
19 .appendTo(this.$el)
20 .addClass('widget-label')
20 .addClass('widget-label')
21 .hide();
21 .hide();
22
22
23 this.$slider = $('<div />')
23 this.$slider = $('<div />')
24 .slider({})
24 .slider({})
25 .addClass('slider');
25 .addClass('slider');
26 // Put the slider in a container
26 // Put the slider in a container
27 this.$slider_container = $('<div />')
27 this.$slider_container = $('<div />')
28 .addClass('widget-hslider')
28 .addClass('widget-hslider')
29 .append(this.$slider);
29 .append(this.$slider);
30 this.$el.append(this.$slider_container);
30 this.$el.append(this.$slider_container);
31
31
32 this.$readout = $('<div/>')
32 this.$readout = $('<div/>')
33 .appendTo(this.$el)
33 .appendTo(this.$el)
34 .addClass('widget-readout')
34 .addClass('widget-readout')
35 .attr('contentEditable', true)
35 .attr('contentEditable', true)
36 .hide();
36 .hide();
37
37
38 this.model.on('change:slider_color', function(sender, value) {
38 this.model.on('change:slider_color', function(sender, value) {
39 this.$slider.find('a').css('background', value);
39 this.$slider.find('a').css('background', value);
40 }, this);
40 }, this);
41 this.$slider.find('a').css('background', this.model.get('slider_color'));
41 this.$slider.find('a').css('background', this.model.get('slider_color'));
42
42
43 // Set defaults.
43 // Set defaults.
44 this.update();
44 this.update();
45 },
45 },
46
46
47 update_attr: function(name, value) {
47 update_attr: function(name, value) {
48 /**
48 /**
49 * Set a css attr of the widget view.
49 * Set a css attr of the widget view.
50 */
50 */
51 if (name == 'color') {
51 if (name == 'color') {
52 this.$readout.css(name, value);
52 this.$readout.css(name, value);
53 } else if (name.substring(0, 4) == 'font') {
53 } else if (name.substring(0, 4) == 'font') {
54 this.$readout.css(name, value);
54 this.$readout.css(name, value);
55 } else if (name.substring(0, 6) == 'border') {
55 } else if (name.substring(0, 6) == 'border') {
56 this.$slider.find('a').css(name, value);
56 this.$slider.find('a').css(name, value);
57 this.$slider_container.css(name, value);
57 this.$slider_container.css(name, value);
58 } else if (name == 'width' || name == 'height' || name == 'background') {
58 } else if (name == 'width' || name == 'height' || name == 'background') {
59 this.$slider_container.css(name, value);
59 this.$slider_container.css(name, value);
60 } else if (name == 'padding' || name == 'margin') {
61 this.$el.css(name, value);
60 } else {
62 } else {
61 this.$slider.css(name, value);
63 this.$slider.css(name, value);
62 }
64 }
63 },
65 },
64
66
65 update : function(options){
67 update : function(options){
66 /**
68 /**
67 * Update the contents of this view
69 * Update the contents of this view
68 *
70 *
69 * Called when the model is changed. The model may have been
71 * Called when the model is changed. The model may have been
70 * changed by another view or by a state update from the back-end.
72 * changed by another view or by a state update from the back-end.
71 */
73 */
72 if (options === undefined || options.updated_view != this) {
74 if (options === undefined || options.updated_view != this) {
73 // JQuery slider option keys. These keys happen to have a
75 // JQuery slider option keys. These keys happen to have a
74 // one-to-one mapping with the corrosponding keys of the model.
76 // one-to-one mapping with the corrosponding keys of the model.
75 var jquery_slider_keys = ['step', 'disabled'];
77 var jquery_slider_keys = ['step', 'disabled'];
76 var that = this;
78 var that = this;
77 that.$slider.slider({});
79 that.$slider.slider({});
78 _.each(jquery_slider_keys, function(key, i) {
80 _.each(jquery_slider_keys, function(key, i) {
79 var model_value = that.model.get(key);
81 var model_value = that.model.get(key);
80 if (model_value !== undefined) {
82 if (model_value !== undefined) {
81 that.$slider.slider("option", key, model_value);
83 that.$slider.slider("option", key, model_value);
82 }
84 }
83 });
85 });
84
86
85 var max = this.model.get('max');
87 var max = this.model.get('max');
86 var min = this.model.get('min');
88 var min = this.model.get('min');
87 if (min <= max) {
89 if (min <= max) {
88 if (max !== undefined) this.$slider.slider('option', 'max', max);
90 if (max !== undefined) this.$slider.slider('option', 'max', max);
89 if (min !== undefined) this.$slider.slider('option', 'min', min);
91 if (min !== undefined) this.$slider.slider('option', 'min', min);
90 }
92 }
91
93
92 var range_value = this.model.get("_range");
94 var range_value = this.model.get("_range");
93 if (range_value !== undefined) {
95 if (range_value !== undefined) {
94 this.$slider.slider("option", "range", range_value);
96 this.$slider.slider("option", "range", range_value);
95 }
97 }
96
98
97 // WORKAROUND FOR JQUERY SLIDER BUG.
99 // WORKAROUND FOR JQUERY SLIDER BUG.
98 // The horizontal position of the slider handle
100 // The horizontal position of the slider handle
99 // depends on the value of the slider at the time
101 // depends on the value of the slider at the time
100 // of orientation change. Before applying the new
102 // of orientation change. Before applying the new
101 // workaround, we set the value to the minimum to
103 // workaround, we set the value to the minimum to
102 // make sure that the horizontal placement of the
104 // make sure that the horizontal placement of the
103 // handle in the vertical slider is always
105 // handle in the vertical slider is always
104 // consistent.
106 // consistent.
105 var orientation = this.model.get('orientation');
107 var orientation = this.model.get('orientation');
106 var min = this.model.get('min');
108 var min = this.model.get('min');
107 var max = this.model.get('max');
109 var max = this.model.get('max');
108 if (this.model.get('_range')) {
110 if (this.model.get('_range')) {
109 this.$slider.slider('option', 'values', [min, min]);
111 this.$slider.slider('option', 'values', [min, min]);
110 } else {
112 } else {
111 this.$slider.slider('option', 'value', min);
113 this.$slider.slider('option', 'value', min);
112 }
114 }
113 this.$slider.slider('option', 'orientation', orientation);
115 this.$slider.slider('option', 'orientation', orientation);
114 var value = this.model.get('value');
116 var value = this.model.get('value');
115 if (this.model.get('_range')) {
117 if (this.model.get('_range')) {
116 // values for the range case are validated python-side in
118 // values for the range case are validated python-side in
117 // _Bounded{Int,Float}RangeWidget._validate
119 // _Bounded{Int,Float}RangeWidget._validate
118 this.$slider.slider('option', 'values', value);
120 this.$slider.slider('option', 'values', value);
119 this.$readout.text(value.join("-"));
121 this.$readout.text(value.join("-"));
120 } else {
122 } else {
121 if(value > max) {
123 if(value > max) {
122 value = max;
124 value = max;
123 }
125 }
124 else if(value < min){
126 else if(value < min){
125 value = min;
127 value = min;
126 }
128 }
127 this.$slider.slider('option', 'value', value);
129 this.$slider.slider('option', 'value', value);
128 this.$readout.text(value);
130 this.$readout.text(value);
129 }
131 }
130
132
131 if(this.model.get('value')!=value) {
133 if(this.model.get('value')!=value) {
132 this.model.set('value', value, {updated_view: this});
134 this.model.set('value', value, {updated_view: this});
133 this.touch();
135 this.touch();
134 }
136 }
135
137
136 // Use the right CSS classes for vertical & horizontal sliders
138 // Use the right CSS classes for vertical & horizontal sliders
137 if (orientation=='vertical') {
139 if (orientation=='vertical') {
138 this.$slider_container
140 this.$slider_container
139 .removeClass('widget-hslider')
141 .removeClass('widget-hslider')
140 .addClass('widget-vslider');
142 .addClass('widget-vslider');
141 this.$el
143 this.$el
142 .removeClass('widget-hbox')
144 .removeClass('widget-hbox')
143 .addClass('widget-vbox');
145 .addClass('widget-vbox');
144
146
145 } else {
147 } else {
146 this.$slider_container
148 this.$slider_container
147 .removeClass('widget-vslider')
149 .removeClass('widget-vslider')
148 .addClass('widget-hslider');
150 .addClass('widget-hslider');
149 this.$el
151 this.$el
150 .removeClass('widget-vbox')
152 .removeClass('widget-vbox')
151 .addClass('widget-hbox');
153 .addClass('widget-hbox');
152 }
154 }
153
155
154 var description = this.model.get('description');
156 var description = this.model.get('description');
155 if (description.length === 0) {
157 if (description.length === 0) {
156 this.$label.hide();
158 this.$label.hide();
157 } else {
159 } else {
158 this.typeset(this.$label, description);
160 this.typeset(this.$label, description);
159 this.$label.show();
161 this.$label.show();
160 }
162 }
161
163
162 var readout = this.model.get('readout');
164 var readout = this.model.get('readout');
163 if (readout) {
165 if (readout) {
164 this.$readout.show();
166 this.$readout.show();
165 } else {
167 } else {
166 this.$readout.hide();
168 this.$readout.hide();
167 }
169 }
168 }
170 }
169 return IntSliderView.__super__.update.apply(this);
171 return IntSliderView.__super__.update.apply(this);
170 },
172 },
171
173
172 events: {
174 events: {
173 // Dictionary of events and their handlers.
175 // Dictionary of events and their handlers.
174 "slide" : "handleSliderChange",
176 "slide" : "handleSliderChange",
175 "blur [contentEditable=true]": "handleTextChange",
177 "blur [contentEditable=true]": "handleTextChange",
176 "keydown [contentEditable=true]": "handleKeyDown"
178 "keydown [contentEditable=true]": "handleKeyDown"
177 },
179 },
178
180
179 handleKeyDown: function(e) {
181 handleKeyDown: function(e) {
180 if (e.keyCode == keyboard.keycodes.enter) {
182 if (e.keyCode == keyboard.keycodes.enter) {
181 e.preventDefault();
183 e.preventDefault();
182 this.handleTextChange();
184 this.handleTextChange();
183 }
185 }
184 },
186 },
185
187
186 handleTextChange: function() {
188 handleTextChange: function() {
187 /**
189 /**
188 * this handles the entry of text into the contentEditable label
190 * this handles the entry of text into the contentEditable label
189 * first, the value is checked if it contains a parseable number
191 * first, the value is checked if it contains a parseable number
190 * (or pair of numbers, for the _range case)
192 * (or pair of numbers, for the _range case)
191 * then it is clamped within the min-max range of the slider
193 * then it is clamped within the min-max range of the slider
192 * finally, the model is updated if the value is to be changed
194 * finally, the model is updated if the value is to be changed
193 *
195 *
194 * if any of these conditions are not met, the text is reset
196 * if any of these conditions are not met, the text is reset
195 *
197 *
196 * the step size is not enforced
198 * the step size is not enforced
197 */
199 */
198
200
199 var text = this.$readout.text();
201 var text = this.$readout.text();
200 var vmin = this.model.get('min');
202 var vmin = this.model.get('min');
201 var vmax = this.model.get('max');
203 var vmax = this.model.get('max');
202 if (this.model.get("_range")) {
204 if (this.model.get("_range")) {
203 // range case
205 // range case
204 // ranges can be expressed either "val-val" or "val:val" (+spaces)
206 // ranges can be expressed either "val-val" or "val:val" (+spaces)
205 var match = this._range_regex.exec(text);
207 var match = this._range_regex.exec(text);
206 if (match) {
208 if (match) {
207 var values = [this._parse_value(match[1]),
209 var values = [this._parse_value(match[1]),
208 this._parse_value(match[2])];
210 this._parse_value(match[2])];
209 // reject input where NaN or lower > upper
211 // reject input where NaN or lower > upper
210 if (isNaN(values[0]) ||
212 if (isNaN(values[0]) ||
211 isNaN(values[1]) ||
213 isNaN(values[1]) ||
212 (values[0] > values[1])) {
214 (values[0] > values[1])) {
213 this.$readout.text(this.model.get('value').join('-'));
215 this.$readout.text(this.model.get('value').join('-'));
214 } else {
216 } else {
215 // clamp to range
217 // clamp to range
216 values = [Math.max(Math.min(values[0], vmax), vmin),
218 values = [Math.max(Math.min(values[0], vmax), vmin),
217 Math.max(Math.min(values[1], vmax), vmin)];
219 Math.max(Math.min(values[1], vmax), vmin)];
218
220
219 if ((values[0] != this.model.get('value')[0]) ||
221 if ((values[0] != this.model.get('value')[0]) ||
220 (values[1] != this.model.get('value')[1])) {
222 (values[1] != this.model.get('value')[1])) {
221 this.$readout.text(values.join('-'));
223 this.$readout.text(values.join('-'));
222 this.model.set('value', values, {updated_view: this});
224 this.model.set('value', values, {updated_view: this});
223 this.touch();
225 this.touch();
224 } else {
226 } else {
225 this.$readout.text(this.model.get('value').join('-'));
227 this.$readout.text(this.model.get('value').join('-'));
226 }
228 }
227 }
229 }
228 } else {
230 } else {
229 this.$readout.text(this.model.get('value').join('-'));
231 this.$readout.text(this.model.get('value').join('-'));
230 }
232 }
231 } else {
233 } else {
232 // single value case
234 // single value case
233 var value = this._parse_value(text);
235 var value = this._parse_value(text);
234 if (isNaN(value)) {
236 if (isNaN(value)) {
235 this.$readout.text(this.model.get('value'));
237 this.$readout.text(this.model.get('value'));
236 } else {
238 } else {
237 value = Math.max(Math.min(value, vmax), vmin);
239 value = Math.max(Math.min(value, vmax), vmin);
238
240
239 if (value != this.model.get('value')) {
241 if (value != this.model.get('value')) {
240 this.$readout.text(value);
242 this.$readout.text(value);
241 this.model.set('value', value, {updated_view: this});
243 this.model.set('value', value, {updated_view: this});
242 this.touch();
244 this.touch();
243 } else {
245 } else {
244 this.$readout.text(this.model.get('value'));
246 this.$readout.text(this.model.get('value'));
245 }
247 }
246 }
248 }
247 }
249 }
248 },
250 },
249
251
250 _parse_value: parseInt,
252 _parse_value: parseInt,
251
253
252 _range_regex: /^\s*([+-]?\d+)\s*[-:]\s*([+-]?\d+)/,
254 _range_regex: /^\s*([+-]?\d+)\s*[-:]\s*([+-]?\d+)/,
253
255
254 handleSliderChange: function(e, ui) {
256 handleSliderChange: function(e, ui) {
255 /**
257 /**
256 * Called when the slider value is changed.
258 * Called when the slider value is changed.
257 *
259 *
258 * Calling model.set will trigger all of the other views of the
260 * Calling model.set will trigger all of the other views of the
259 * model to update.
261 * model to update.
260 */
262 */
261 if (this.model.get("_range")) {
263 if (this.model.get("_range")) {
262 var actual_value = ui.values.map(this._validate_slide_value);
264 var actual_value = ui.values.map(this._validate_slide_value);
263 this.$readout.text(actual_value.join("-"));
265 this.$readout.text(actual_value.join("-"));
264 } else {
266 } else {
265 var actual_value = this._validate_slide_value(ui.value);
267 var actual_value = this._validate_slide_value(ui.value);
266 this.$readout.text(actual_value);
268 this.$readout.text(actual_value);
267 }
269 }
268 this.model.set('value', actual_value, {updated_view: this});
270 this.model.set('value', actual_value, {updated_view: this});
269 this.touch();
271 this.touch();
270 },
272 },
271
273
272 _validate_slide_value: function(x) {
274 _validate_slide_value: function(x) {
273 /**
275 /**
274 * Validate the value of the slider before sending it to the back-end
276 * Validate the value of the slider before sending it to the back-end
275 * and applying it to the other views on the page.
277 * and applying it to the other views on the page.
276 *
278 *
277 * Double bit-wise not truncates the decimel (int cast).
279 * Double bit-wise not truncates the decimel (int cast).
278 */
280 */
279 return ~~x;
281 return ~~x;
280 },
282 },
281 });
283 });
282
284
283
285
284 var IntTextView = widget.DOMWidgetView.extend({
286 var IntTextView = widget.DOMWidgetView.extend({
285 render : function(){
287 render : function(){
286 /**
288 /**
287 * Called when view is rendered.
289 * Called when view is rendered.
288 */
290 */
289 this.$el
291 this.$el
290 .addClass('widget-hbox widget-text');
292 .addClass('widget-hbox widget-text');
291 this.$label = $('<div />')
293 this.$label = $('<div />')
292 .appendTo(this.$el)
294 .appendTo(this.$el)
293 .addClass('widget-label')
295 .addClass('widget-label')
294 .hide();
296 .hide();
295 this.$textbox = $('<input type="text" />')
297 this.$textbox = $('<input type="text" />')
296 .addClass('form-control')
298 .addClass('form-control')
297 .addClass('widget-numeric-text')
299 .addClass('widget-numeric-text')
298 .appendTo(this.$el);
300 .appendTo(this.$el);
299 this.update(); // Set defaults.
301 this.update(); // Set defaults.
300 },
302 },
301
303
302 update : function(options){
304 update : function(options){
303 /**
305 /**
304 * Update the contents of this view
306 * Update the contents of this view
305 *
307 *
306 * Called when the model is changed. The model may have been
308 * Called when the model is changed. The model may have been
307 * changed by another view or by a state update from the back-end.
309 * changed by another view or by a state update from the back-end.
308 */
310 */
309 if (options === undefined || options.updated_view != this) {
311 if (options === undefined || options.updated_view != this) {
310 var value = this.model.get('value');
312 var value = this.model.get('value');
311 if (this._parse_value(this.$textbox.val()) != value) {
313 if (this._parse_value(this.$textbox.val()) != value) {
312 this.$textbox.val(value);
314 this.$textbox.val(value);
313 }
315 }
314
316
315 if (this.model.get('disabled')) {
317 if (this.model.get('disabled')) {
316 this.$textbox.attr('disabled','disabled');
318 this.$textbox.attr('disabled','disabled');
317 } else {
319 } else {
318 this.$textbox.removeAttr('disabled');
320 this.$textbox.removeAttr('disabled');
319 }
321 }
320
322
321 var description = this.model.get('description');
323 var description = this.model.get('description');
322 if (description.length === 0) {
324 if (description.length === 0) {
323 this.$label.hide();
325 this.$label.hide();
324 } else {
326 } else {
325 this.typeset(this.$label, description);
327 this.typeset(this.$label, description);
326 this.$label.show();
328 this.$label.show();
327 }
329 }
328 }
330 }
329 return IntTextView.__super__.update.apply(this);
331 return IntTextView.__super__.update.apply(this);
330 },
332 },
331
333
332 update_attr: function(name, value) {
334 update_attr: function(name, value) {
333 /**
335 /**
334 * Set a css attr of the widget view.
336 * Set a css attr of the widget view.
335 */
337 */
336 this.$textbox.css(name, value);
338 if (name == 'padding' || name == 'margin') {
339 this.$el.css(name, value);
340 } else {
341 this.$textbox.css(name, value);
342 }
337 },
343 },
338
344
339 events: {
345 events: {
340 // Dictionary of events and their handlers.
346 // Dictionary of events and their handlers.
341 "keyup input" : "handleChanging",
347 "keyup input" : "handleChanging",
342 "paste input" : "handleChanging",
348 "paste input" : "handleChanging",
343 "cut input" : "handleChanging",
349 "cut input" : "handleChanging",
344
350
345 // Fires only when control is validated or looses focus.
351 // Fires only when control is validated or looses focus.
346 "change input" : "handleChanged"
352 "change input" : "handleChanged"
347 },
353 },
348
354
349 handleChanging: function(e) {
355 handleChanging: function(e) {
350 /**
356 /**
351 * Handles and validates user input.
357 * Handles and validates user input.
352 *
358 *
353 * Try to parse value as a int.
359 * Try to parse value as a int.
354 */
360 */
355 var numericalValue = 0;
361 var numericalValue = 0;
356 var trimmed = e.target.value.trim();
362 var trimmed = e.target.value.trim();
357 if (trimmed === '') {
363 if (trimmed === '') {
358 return;
364 return;
359 } else {
365 } else {
360 if (!(['-', '-.', '.', '+.', '+'].indexOf(trimmed) >= 0)) {
366 if (!(['-', '-.', '.', '+.', '+'].indexOf(trimmed) >= 0)) {
361 numericalValue = this._parse_value(e.target.value);
367 numericalValue = this._parse_value(e.target.value);
362 }
368 }
363 }
369 }
364
370
365 // If parse failed, reset value to value stored in model.
371 // If parse failed, reset value to value stored in model.
366 if (isNaN(numericalValue)) {
372 if (isNaN(numericalValue)) {
367 e.target.value = this.model.get('value');
373 e.target.value = this.model.get('value');
368 } else if (!isNaN(numericalValue)) {
374 } else if (!isNaN(numericalValue)) {
369 if (this.model.get('max') !== undefined) {
375 if (this.model.get('max') !== undefined) {
370 numericalValue = Math.min(this.model.get('max'), numericalValue);
376 numericalValue = Math.min(this.model.get('max'), numericalValue);
371 }
377 }
372 if (this.model.get('min') !== undefined) {
378 if (this.model.get('min') !== undefined) {
373 numericalValue = Math.max(this.model.get('min'), numericalValue);
379 numericalValue = Math.max(this.model.get('min'), numericalValue);
374 }
380 }
375
381
376 // Apply the value if it has changed.
382 // Apply the value if it has changed.
377 if (numericalValue != this.model.get('value')) {
383 if (numericalValue != this.model.get('value')) {
378
384
379 // Calling model.set will trigger all of the other views of the
385 // Calling model.set will trigger all of the other views of the
380 // model to update.
386 // model to update.
381 this.model.set('value', numericalValue, {updated_view: this});
387 this.model.set('value', numericalValue, {updated_view: this});
382 this.touch();
388 this.touch();
383 }
389 }
384 }
390 }
385 },
391 },
386
392
387 handleChanged: function(e) {
393 handleChanged: function(e) {
388 /**
394 /**
389 * Applies validated input.
395 * Applies validated input.
390 */
396 */
391 if (e.target.value.trim() === '' || e.target.value !== this.model.get('value')) {
397 if (e.target.value.trim() === '' || e.target.value !== this.model.get('value')) {
392 e.target.value = this.model.get('value');
398 e.target.value = this.model.get('value');
393 }
399 }
394 },
400 },
395
401
396 _parse_value: parseInt
402 _parse_value: parseInt
397 });
403 });
398
404
399
405
400 var ProgressView = widget.DOMWidgetView.extend({
406 var ProgressView = widget.DOMWidgetView.extend({
401 render : function(){
407 render : function(){
402 /**
408 /**
403 * Called when view is rendered.
409 * Called when view is rendered.
404 */
410 */
405 this.$el
411 this.$el
406 .addClass('widget-hbox widget-progress');
412 .addClass('widget-hbox widget-progress');
407 this.$label = $('<div />')
413 this.$label = $('<div />')
408 .appendTo(this.$el)
414 .appendTo(this.$el)
409 .addClass('widget-label')
415 .addClass('widget-label')
410 .hide();
416 .hide();
411 this.$progress = $('<div />')
417 this.$progress = $('<div />')
412 .addClass('progress')
418 .addClass('progress')
413 .addClass('widget-progress')
419 .addClass('widget-progress')
414 .appendTo(this.$el);
420 .appendTo(this.$el);
415 this.$bar = $('<div />')
421 this.$bar = $('<div />')
416 .addClass('progress-bar')
422 .addClass('progress-bar')
417 .css('width', '50%')
423 .css('width', '50%')
418 .appendTo(this.$progress);
424 .appendTo(this.$progress);
419 this.update(); // Set defaults.
425 this.update(); // Set defaults.
420
426
421 this.model.on('change:bar_style', function(model, value) {
427 this.model.on('change:bar_style', function(model, value) {
422 this.update_bar_style();
428 this.update_bar_style();
423 }, this);
429 }, this);
424 this.update_bar_style('');
430 this.update_bar_style('');
425 },
431 },
426
432
427 update : function(){
433 update : function(){
428 /**
434 /**
429 * Update the contents of this view
435 * Update the contents of this view
430 *
436 *
431 * Called when the model is changed. The model may have been
437 * Called when the model is changed. The model may have been
432 * changed by another view or by a state update from the back-end.
438 * changed by another view or by a state update from the back-end.
433 */
439 */
434 var value = this.model.get('value');
440 var value = this.model.get('value');
435 var max = this.model.get('max');
441 var max = this.model.get('max');
436 var min = this.model.get('min');
442 var min = this.model.get('min');
437 var percent = 100.0 * (value - min) / (max - min);
443 var percent = 100.0 * (value - min) / (max - min);
438 this.$bar.css('width', percent + '%');
444 this.$bar.css('width', percent + '%');
439
445
440 var description = this.model.get('description');
446 var description = this.model.get('description');
441 if (description.length === 0) {
447 if (description.length === 0) {
442 this.$label.hide();
448 this.$label.hide();
443 } else {
449 } else {
444 this.typeset(this.$label, description);
450 this.typeset(this.$label, description);
445 this.$label.show();
451 this.$label.show();
446 }
452 }
447 return ProgressView.__super__.update.apply(this);
453 return ProgressView.__super__.update.apply(this);
448 },
454 },
449
455
450 update_bar_style: function(previous_trait_value) {
456 update_bar_style: function(previous_trait_value) {
451 var class_map = {
457 var class_map = {
452 success: ['progress-bar-success'],
458 success: ['progress-bar-success'],
453 info: ['progress-bar-info'],
459 info: ['progress-bar-info'],
454 warning: ['progress-bar-warning'],
460 warning: ['progress-bar-warning'],
455 danger: ['progress-bar-danger']
461 danger: ['progress-bar-danger']
456 };
462 };
457 this.update_mapped_classes(class_map, 'bar_style', previous_trait_value, this.$bar);
463 this.update_mapped_classes(class_map, 'bar_style', previous_trait_value, this.$bar);
458 },
464 },
459
465
460 update_attr: function(name, value) {
466 update_attr: function(name, value) {
461 /**
467 /**
462 * Set a css attr of the widget view.
468 * Set a css attr of the widget view.
463 */
469 */
464 if (name.substring(0, 6) == 'border' || name == 'width' ||
470 if (name.substring(0, 6) == 'border' || name == 'width' ||
465 name == 'height' || name == 'background' || name == 'margin' ||
471 name == 'height' || name == 'background' || name == 'margin' ||
466 name == 'padding') {
472 name == 'padding') {
467
473
468 this.$progress.css(name, value);
474 this.$progress.css(name, value);
469 } else if (name == 'color') {
475 } else if (name == 'color') {
470 this.$bar.css('background', value);
476 this.$bar.css('background', value);
477 } else if (name == 'padding' || name == 'margin') {
478 this.$el.css(name, value);
471 } else {
479 } else {
472 this.$bar.css(name, value);
480 this.$bar.css(name, value);
473 }
481 }
474 },
482 },
475 });
483 });
476
484
477 return {
485 return {
478 'IntSliderView': IntSliderView,
486 'IntSliderView': IntSliderView,
479 'IntTextView': IntTextView,
487 'IntTextView': IntTextView,
480 'ProgressView': ProgressView,
488 'ProgressView': ProgressView,
481 };
489 };
482 });
490 });
@@ -1,502 +1,516 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define([
5 "widgets/js/widget",
5 "widgets/js/widget",
6 "base/js/utils",
6 "base/js/utils",
7 "jquery",
7 "jquery",
8 "bootstrap",
8 "bootstrap",
9 ], function(widget, utils, $){
9 ], function(widget, utils, $){
10
10
11 var DropdownView = widget.DOMWidgetView.extend({
11 var DropdownView = widget.DOMWidgetView.extend({
12 render : function(){
12 render : function(){
13 /**
13 /**
14 * Called when view is rendered.
14 * Called when view is rendered.
15 */
15 */
16 this.$el
16 this.$el
17 .addClass('widget-hbox widget-dropdown');
17 .addClass('widget-hbox widget-dropdown');
18 this.$label = $('<div />')
18 this.$label = $('<div />')
19 .appendTo(this.$el)
19 .appendTo(this.$el)
20 .addClass('widget-label')
20 .addClass('widget-label')
21 .hide();
21 .hide();
22 this.$buttongroup = $('<div />')
22 this.$buttongroup = $('<div />')
23 .addClass('widget_item')
23 .addClass('widget_item')
24 .addClass('btn-group')
24 .addClass('btn-group')
25 .appendTo(this.$el);
25 .appendTo(this.$el);
26 this.$droplabel = $('<button />')
26 this.$droplabel = $('<button />')
27 .addClass('btn btn-default')
27 .addClass('btn btn-default')
28 .addClass('widget-combo-btn')
28 .addClass('widget-combo-btn')
29 .html("&nbsp;")
29 .html("&nbsp;")
30 .appendTo(this.$buttongroup);
30 .appendTo(this.$buttongroup);
31 this.$dropbutton = $('<button />')
31 this.$dropbutton = $('<button />')
32 .addClass('btn btn-default')
32 .addClass('btn btn-default')
33 .addClass('dropdown-toggle')
33 .addClass('dropdown-toggle')
34 .addClass('widget-combo-carrot-btn')
34 .addClass('widget-combo-carrot-btn')
35 .attr('data-toggle', 'dropdown')
35 .attr('data-toggle', 'dropdown')
36 .append($('<span />').addClass("caret"))
36 .append($('<span />').addClass("caret"))
37 .appendTo(this.$buttongroup);
37 .appendTo(this.$buttongroup);
38 this.$droplist = $('<ul />')
38 this.$droplist = $('<ul />')
39 .addClass('dropdown-menu')
39 .addClass('dropdown-menu')
40 .appendTo(this.$buttongroup);
40 .appendTo(this.$buttongroup);
41
41
42 this.model.on('change:button_style', function(model, value) {
42 this.model.on('change:button_style', function(model, value) {
43 this.update_button_style();
43 this.update_button_style();
44 }, this);
44 }, this);
45 this.update_button_style('');
45 this.update_button_style('');
46
46
47 // Set defaults.
47 // Set defaults.
48 this.update();
48 this.update();
49 },
49 },
50
50
51 update : function(options){
51 update : function(options){
52 /**
52 /**
53 * Update the contents of this view
53 * Update the contents of this view
54 *
54 *
55 * Called when the model is changed. The model may have been
55 * Called when the model is changed. The model may have been
56 * changed by another view or by a state update from the back-end.
56 * changed by another view or by a state update from the back-end.
57 */
57 */
58
58
59 if (options === undefined || options.updated_view != this) {
59 if (options === undefined || options.updated_view != this) {
60 var selected_item_text = this.model.get('value_name');
60 var selected_item_text = this.model.get('value_name');
61 if (selected_item_text.trim().length === 0) {
61 if (selected_item_text.trim().length === 0) {
62 this.$droplabel.html("&nbsp;");
62 this.$droplabel.html("&nbsp;");
63 } else {
63 } else {
64 this.$droplabel.text(selected_item_text);
64 this.$droplabel.text(selected_item_text);
65 }
65 }
66
66
67 var items = this.model.get('value_names');
67 var items = this.model.get('value_names');
68 var $replace_droplist = $('<ul />')
68 var $replace_droplist = $('<ul />')
69 .addClass('dropdown-menu');
69 .addClass('dropdown-menu');
70 // Copy the style
70 // Copy the style
71 $replace_droplist.attr('style', this.$droplist.attr('style'));
71 $replace_droplist.attr('style', this.$droplist.attr('style'));
72 var that = this;
72 var that = this;
73 _.each(items, function(item, i) {
73 _.each(items, function(item, i) {
74 var item_button = $('<a href="#"/>')
74 var item_button = $('<a href="#"/>')
75 .text(item)
75 .text(item)
76 .on('click', $.proxy(that.handle_click, that));
76 .on('click', $.proxy(that.handle_click, that));
77 $replace_droplist.append($('<li />').append(item_button));
77 $replace_droplist.append($('<li />').append(item_button));
78 });
78 });
79
79
80 this.$droplist.replaceWith($replace_droplist);
80 this.$droplist.replaceWith($replace_droplist);
81 this.$droplist.remove();
81 this.$droplist.remove();
82 this.$droplist = $replace_droplist;
82 this.$droplist = $replace_droplist;
83
83
84 if (this.model.get('disabled')) {
84 if (this.model.get('disabled')) {
85 this.$buttongroup.attr('disabled','disabled');
85 this.$buttongroup.attr('disabled','disabled');
86 this.$droplabel.attr('disabled','disabled');
86 this.$droplabel.attr('disabled','disabled');
87 this.$dropbutton.attr('disabled','disabled');
87 this.$dropbutton.attr('disabled','disabled');
88 this.$droplist.attr('disabled','disabled');
88 this.$droplist.attr('disabled','disabled');
89 } else {
89 } else {
90 this.$buttongroup.removeAttr('disabled');
90 this.$buttongroup.removeAttr('disabled');
91 this.$droplabel.removeAttr('disabled');
91 this.$droplabel.removeAttr('disabled');
92 this.$dropbutton.removeAttr('disabled');
92 this.$dropbutton.removeAttr('disabled');
93 this.$droplist.removeAttr('disabled');
93 this.$droplist.removeAttr('disabled');
94 }
94 }
95
95
96 var description = this.model.get('description');
96 var description = this.model.get('description');
97 if (description.length === 0) {
97 if (description.length === 0) {
98 this.$label.hide();
98 this.$label.hide();
99 } else {
99 } else {
100 this.typeset(this.$label, description);
100 this.typeset(this.$label, description);
101 this.$label.show();
101 this.$label.show();
102 }
102 }
103 }
103 }
104 return DropdownView.__super__.update.apply(this);
104 return DropdownView.__super__.update.apply(this);
105 },
105 },
106
106
107 update_button_style: function(previous_trait_value) {
107 update_button_style: function(previous_trait_value) {
108 var class_map = {
108 var class_map = {
109 primary: ['btn-primary'],
109 primary: ['btn-primary'],
110 success: ['btn-success'],
110 success: ['btn-success'],
111 info: ['btn-info'],
111 info: ['btn-info'],
112 warning: ['btn-warning'],
112 warning: ['btn-warning'],
113 danger: ['btn-danger']
113 danger: ['btn-danger']
114 };
114 };
115 this.update_mapped_classes(class_map, 'button_style', previous_trait_value, this.$droplabel);
115 this.update_mapped_classes(class_map, 'button_style', previous_trait_value, this.$droplabel);
116 this.update_mapped_classes(class_map, 'button_style', previous_trait_value, this.$dropbutton);
116 this.update_mapped_classes(class_map, 'button_style', previous_trait_value, this.$dropbutton);
117 },
117 },
118
118
119 update_attr: function(name, value) {
119 update_attr: function(name, value) {
120 /**
120 /**
121 * Set a css attr of the widget view.
121 * Set a css attr of the widget view.
122 */
122 */
123 if (name.substring(0, 6) == 'border' || name == 'background' || name == 'color') {
123 if (name.substring(0, 6) == 'border' || name == 'background' || name == 'color') {
124 this.$droplabel.css(name, value);
124 this.$droplabel.css(name, value);
125 this.$dropbutton.css(name, value);
125 this.$dropbutton.css(name, value);
126 this.$droplist.css(name, value);
126 this.$droplist.css(name, value);
127 } else if (name == 'width') {
127 } else if (name == 'width') {
128 this.$droplist.css(name, value);
128 this.$droplist.css(name, value);
129 this.$droplabel.css(name, value);
129 this.$droplabel.css(name, value);
130 } else if (name == 'padding') {
130 } else if (name == 'padding') {
131 this.$droplist.css(name, value);
131 this.$droplist.css(name, value);
132 this.$buttongroup.css(name, value);
132 this.$buttongroup.css(name, value);
133 } else if (name == 'margin') {
133 } else if (name == 'margin') {
134 this.$buttongroup.css(name, value);
134 this.$buttongroup.css(name, value);
135 } else if (name == 'height') {
135 } else if (name == 'height') {
136 this.$droplabel.css(name, value);
136 this.$droplabel.css(name, value);
137 this.$dropbutton.css(name, value);
137 this.$dropbutton.css(name, value);
138 } else if (name == 'padding' || name == 'margin') {
139 this.$el.css(name, value);
138 } else {
140 } else {
139 this.$droplist.css(name, value);
141 this.$droplist.css(name, value);
140 this.$droplabel.css(name, value);
142 this.$droplabel.css(name, value);
141 }
143 }
142 },
144 },
143
145
144 handle_click: function (e) {
146 handle_click: function (e) {
145 /**
147 /**
146 * Handle when a value is clicked.
148 * Handle when a value is clicked.
147 *
149 *
148 * Calling model.set will trigger all of the other views of the
150 * Calling model.set will trigger all of the other views of the
149 * model to update.
151 * model to update.
150 */
152 */
151 this.model.set('value_name', $(e.target).text(), {updated_view: this});
153 this.model.set('value_name', $(e.target).text(), {updated_view: this});
152 this.touch();
154 this.touch();
153 },
155 },
154
156
155 });
157 });
156
158
157
159
158 var RadioButtonsView = widget.DOMWidgetView.extend({
160 var RadioButtonsView = widget.DOMWidgetView.extend({
159 render : function(){
161 render : function(){
160 /**
162 /**
161 * Called when view is rendered.
163 * Called when view is rendered.
162 */
164 */
163 this.$el
165 this.$el
164 .addClass('widget-hbox widget-radio');
166 .addClass('widget-hbox widget-radio');
165 this.$label = $('<div />')
167 this.$label = $('<div />')
166 .appendTo(this.$el)
168 .appendTo(this.$el)
167 .addClass('widget-label')
169 .addClass('widget-label')
168 .hide();
170 .hide();
169 this.$container = $('<div />')
171 this.$container = $('<div />')
170 .appendTo(this.$el)
172 .appendTo(this.$el)
171 .addClass('widget-radio-box');
173 .addClass('widget-radio-box');
172 this.update();
174 this.update();
173 },
175 },
174
176
175 update : function(options){
177 update : function(options){
176 /**
178 /**
177 * Update the contents of this view
179 * Update the contents of this view
178 *
180 *
179 * Called when the model is changed. The model may have been
181 * Called when the model is changed. The model may have been
180 * changed by another view or by a state update from the back-end.
182 * changed by another view or by a state update from the back-end.
181 */
183 */
182 if (options === undefined || options.updated_view != this) {
184 if (options === undefined || options.updated_view != this) {
183 // Add missing items to the DOM.
185 // Add missing items to the DOM.
184 var items = this.model.get('value_names');
186 var items = this.model.get('value_names');
185 var disabled = this.model.get('disabled');
187 var disabled = this.model.get('disabled');
186 var that = this;
188 var that = this;
187 _.each(items, function(item, index) {
189 _.each(items, function(item, index) {
188 var item_query = ' :input[value="' + item + '"]';
190 var item_query = ' :input[value="' + item + '"]';
189 if (that.$el.find(item_query).length === 0) {
191 if (that.$el.find(item_query).length === 0) {
190 var $label = $('<label />')
192 var $label = $('<label />')
191 .addClass('radio')
193 .addClass('radio')
192 .text(item)
194 .text(item)
193 .appendTo(that.$container);
195 .appendTo(that.$container);
194
196
195 $('<input />')
197 $('<input />')
196 .attr('type', 'radio')
198 .attr('type', 'radio')
197 .addClass(that.model)
199 .addClass(that.model)
198 .val(item)
200 .val(item)
199 .prependTo($label)
201 .prependTo($label)
200 .on('click', $.proxy(that.handle_click, that));
202 .on('click', $.proxy(that.handle_click, that));
201 }
203 }
202
204
203 var $item_element = that.$container.find(item_query);
205 var $item_element = that.$container.find(item_query);
204 if (that.model.get('value_name') == item) {
206 if (that.model.get('value_name') == item) {
205 $item_element.prop('checked', true);
207 $item_element.prop('checked', true);
206 } else {
208 } else {
207 $item_element.prop('checked', false);
209 $item_element.prop('checked', false);
208 }
210 }
209 $item_element.prop('disabled', disabled);
211 $item_element.prop('disabled', disabled);
210 });
212 });
211
213
212 // Remove items that no longer exist.
214 // Remove items that no longer exist.
213 this.$container.find('input').each(function(i, obj) {
215 this.$container.find('input').each(function(i, obj) {
214 var value = $(obj).val();
216 var value = $(obj).val();
215 var found = false;
217 var found = false;
216 _.each(items, function(item, index) {
218 _.each(items, function(item, index) {
217 if (item == value) {
219 if (item == value) {
218 found = true;
220 found = true;
219 return false;
221 return false;
220 }
222 }
221 });
223 });
222
224
223 if (!found) {
225 if (!found) {
224 $(obj).parent().remove();
226 $(obj).parent().remove();
225 }
227 }
226 });
228 });
227
229
228 var description = this.model.get('description');
230 var description = this.model.get('description');
229 if (description.length === 0) {
231 if (description.length === 0) {
230 this.$label.hide();
232 this.$label.hide();
231 } else {
233 } else {
232 this.$label.text(description);
234 this.$label.text(description);
233 this.typeset(this.$label, description);
235 this.typeset(this.$label, description);
234 this.$label.show();
236 this.$label.show();
235 }
237 }
236 }
238 }
237 return RadioButtonsView.__super__.update.apply(this);
239 return RadioButtonsView.__super__.update.apply(this);
238 },
240 },
239
241
240 update_attr: function(name, value) {
242 update_attr: function(name, value) {
241 /**
243 /**
242 * Set a css attr of the widget view.
244 * Set a css attr of the widget view.
243 */
245 */
244 this.$container.css(name, value);
246 if (name == 'padding' || name == 'margin') {
247 this.$el.css(name, value);
248 } else {
249 this.$container.css(name, value);
250 }
245 },
251 },
246
252
247 handle_click: function (e) {
253 handle_click: function (e) {
248 /**
254 /**
249 * Handle when a value is clicked.
255 * Handle when a value is clicked.
250 *
256 *
251 * Calling model.set will trigger all of the other views of the
257 * Calling model.set will trigger all of the other views of the
252 * model to update.
258 * model to update.
253 */
259 */
254 this.model.set('value_name', $(e.target).val(), {updated_view: this});
260 this.model.set('value_name', $(e.target).val(), {updated_view: this});
255 this.touch();
261 this.touch();
256 },
262 },
257 });
263 });
258
264
259
265
260 var ToggleButtonsView = widget.DOMWidgetView.extend({
266 var ToggleButtonsView = widget.DOMWidgetView.extend({
261 initialize: function() {
267 initialize: function() {
262 this._css_state = {};
268 this._css_state = {};
263 ToggleButtonsView.__super__.initialize.apply(this, arguments);
269 ToggleButtonsView.__super__.initialize.apply(this, arguments);
264 },
270 },
265
271
266 render: function() {
272 render: function() {
267 /**
273 /**
268 * Called when view is rendered.
274 * Called when view is rendered.
269 */
275 */
270 this.$el
276 this.$el
271 .addClass('widget-hbox widget-toggle-buttons');
277 .addClass('widget-hbox widget-toggle-buttons');
272 this.$label = $('<div />')
278 this.$label = $('<div />')
273 .appendTo(this.$el)
279 .appendTo(this.$el)
274 .addClass('widget-label')
280 .addClass('widget-label')
275 .hide();
281 .hide();
276 this.$buttongroup = $('<div />')
282 this.$buttongroup = $('<div />')
277 .addClass('btn-group')
283 .addClass('btn-group')
278 .attr('data-toggle', 'buttons-radio')
284 .attr('data-toggle', 'buttons-radio')
279 .appendTo(this.$el);
285 .appendTo(this.$el);
280
286
281 this.model.on('change:button_style', function(model, value) {
287 this.model.on('change:button_style', function(model, value) {
282 this.update_button_style();
288 this.update_button_style();
283 }, this);
289 }, this);
284 this.update_button_style('');
290 this.update_button_style('');
285 this.update();
291 this.update();
286 },
292 },
287
293
288 update : function(options){
294 update : function(options){
289 /**
295 /**
290 * Update the contents of this view
296 * Update the contents of this view
291 *
297 *
292 * Called when the model is changed. The model may have been
298 * Called when the model is changed. The model may have been
293 * changed by another view or by a state update from the back-end.
299 * changed by another view or by a state update from the back-end.
294 */
300 */
295 if (options === undefined || options.updated_view != this) {
301 if (options === undefined || options.updated_view != this) {
296 // Add missing items to the DOM.
302 // Add missing items to the DOM.
297 var items = this.model.get('value_names');
303 var items = this.model.get('value_names');
298 var disabled = this.model.get('disabled');
304 var disabled = this.model.get('disabled');
299 var that = this;
305 var that = this;
300 var item_html;
306 var item_html;
301 _.each(items, function(item, index) {
307 _.each(items, function(item, index) {
302 if (item.trim().length == 0) {
308 if (item.trim().length == 0) {
303 item_html = "&nbsp;";
309 item_html = "&nbsp;";
304 } else {
310 } else {
305 item_html = utils.escape_html(item);
311 item_html = utils.escape_html(item);
306 }
312 }
307 var item_query = '[data-value="' + item + '"]';
313 var item_query = '[data-value="' + item + '"]';
308 var $item_element = that.$buttongroup.find(item_query);
314 var $item_element = that.$buttongroup.find(item_query);
309 if (!$item_element.length) {
315 if (!$item_element.length) {
310 $item_element = $('<button/>')
316 $item_element = $('<button/>')
311 .attr('type', 'button')
317 .attr('type', 'button')
312 .addClass('btn btn-default')
318 .addClass('btn btn-default')
313 .html(item_html)
319 .html(item_html)
314 .appendTo(that.$buttongroup)
320 .appendTo(that.$buttongroup)
315 .attr('data-value', item)
321 .attr('data-value', item)
316 .on('click', $.proxy(that.handle_click, that));
322 .on('click', $.proxy(that.handle_click, that));
317 that.update_style_traits($item_element);
323 that.update_style_traits($item_element);
318 }
324 }
319 if (that.model.get('value_name') == item) {
325 if (that.model.get('value_name') == item) {
320 $item_element.addClass('active');
326 $item_element.addClass('active');
321 } else {
327 } else {
322 $item_element.removeClass('active');
328 $item_element.removeClass('active');
323 }
329 }
324 $item_element.prop('disabled', disabled);
330 $item_element.prop('disabled', disabled);
325 });
331 });
326
332
327 // Remove items that no longer exist.
333 // Remove items that no longer exist.
328 this.$buttongroup.find('button').each(function(i, obj) {
334 this.$buttongroup.find('button').each(function(i, obj) {
329 var value = $(obj).data('value');
335 var value = $(obj).data('value');
330 var found = false;
336 var found = false;
331 _.each(items, function(item, index) {
337 _.each(items, function(item, index) {
332 if (item == value) {
338 if (item == value) {
333 found = true;
339 found = true;
334 return false;
340 return false;
335 }
341 }
336 });
342 });
337
343
338 if (!found) {
344 if (!found) {
339 $(obj).remove();
345 $(obj).remove();
340 }
346 }
341 });
347 });
342
348
343 var description = this.model.get('description');
349 var description = this.model.get('description');
344 if (description.length === 0) {
350 if (description.length === 0) {
345 this.$label.hide();
351 this.$label.hide();
346 } else {
352 } else {
347 this.$label.text();
353 this.$label.text();
348 this.typeset(this.$label, description);
354 this.typeset(this.$label, description);
349 this.$label.show();
355 this.$label.show();
350 }
356 }
351 }
357 }
352 return ToggleButtonsView.__super__.update.apply(this);
358 return ToggleButtonsView.__super__.update.apply(this);
353 },
359 },
354
360
355 update_attr: function(name, value) {
361 update_attr: function(name, value) {
356 /**
362 /**
357 * Set a css attr of the widget view.
363 * Set a css attr of the widget view.
358 */
364 */
359 this._css_state[name] = value;
365 if (name == 'padding' || name == 'margin') {
360 this.update_style_traits();
366 this.$el.css(name, value);
367 } else {
368 this._css_state[name] = value;
369 this.update_style_traits();
370 }
361 },
371 },
362
372
363 update_style_traits: function(button) {
373 update_style_traits: function(button) {
364 for (var name in this._css_state) {
374 for (var name in this._css_state) {
365 if (this._css_state.hasOwnProperty(name)) {
375 if (this._css_state.hasOwnProperty(name)) {
366 if (name == 'margin') {
376 if (name == 'margin') {
367 this.$buttongroup.css(name, this._css_state[name]);
377 this.$buttongroup.css(name, this._css_state[name]);
368 } else if (name != 'width') {
378 } else if (name != 'width') {
369 if (button) {
379 if (button) {
370 button.css(name, this._css_state[name]);
380 button.css(name, this._css_state[name]);
371 } else {
381 } else {
372 this.$buttongroup.find('button').css(name, this._css_state[name]);
382 this.$buttongroup.find('button').css(name, this._css_state[name]);
373 }
383 }
374 }
384 }
375 }
385 }
376 }
386 }
377 },
387 },
378
388
379 update_button_style: function(previous_trait_value) {
389 update_button_style: function(previous_trait_value) {
380 var class_map = {
390 var class_map = {
381 primary: ['btn-primary'],
391 primary: ['btn-primary'],
382 success: ['btn-success'],
392 success: ['btn-success'],
383 info: ['btn-info'],
393 info: ['btn-info'],
384 warning: ['btn-warning'],
394 warning: ['btn-warning'],
385 danger: ['btn-danger']
395 danger: ['btn-danger']
386 };
396 };
387 this.update_mapped_classes(class_map, 'button_style', previous_trait_value, this.$buttongroup.find('button'));
397 this.update_mapped_classes(class_map, 'button_style', previous_trait_value, this.$buttongroup.find('button'));
388 },
398 },
389
399
390 handle_click: function (e) {
400 handle_click: function (e) {
391 /**
401 /**
392 * Handle when a value is clicked.
402 * Handle when a value is clicked.
393 *
403 *
394 * Calling model.set will trigger all of the other views of the
404 * Calling model.set will trigger all of the other views of the
395 * model to update.
405 * model to update.
396 */
406 */
397 this.model.set('value_name', $(e.target).data('value'), {updated_view: this});
407 this.model.set('value_name', $(e.target).data('value'), {updated_view: this});
398 this.touch();
408 this.touch();
399 },
409 },
400 });
410 });
401
411
402
412
403 var SelectView = widget.DOMWidgetView.extend({
413 var SelectView = widget.DOMWidgetView.extend({
404 render : function(){
414 render : function(){
405 /**
415 /**
406 * Called when view is rendered.
416 * Called when view is rendered.
407 */
417 */
408 this.$el
418 this.$el
409 .addClass('widget-hbox widget-select');
419 .addClass('widget-hbox widget-select');
410 this.$label = $('<div />')
420 this.$label = $('<div />')
411 .appendTo(this.$el)
421 .appendTo(this.$el)
412 .addClass('widget-label')
422 .addClass('widget-label')
413 .hide();
423 .hide();
414 this.$listbox = $('<select />')
424 this.$listbox = $('<select />')
415 .addClass('widget-listbox form-control')
425 .addClass('widget-listbox form-control')
416 .attr('size', 6)
426 .attr('size', 6)
417 .appendTo(this.$el);
427 .appendTo(this.$el);
418 this.update();
428 this.update();
419 },
429 },
420
430
421 update : function(options){
431 update : function(options){
422 /**
432 /**
423 * Update the contents of this view
433 * Update the contents of this view
424 *
434 *
425 * Called when the model is changed. The model may have been
435 * Called when the model is changed. The model may have been
426 * changed by another view or by a state update from the back-end.
436 * changed by another view or by a state update from the back-end.
427 */
437 */
428 if (options === undefined || options.updated_view != this) {
438 if (options === undefined || options.updated_view != this) {
429 // Add missing items to the DOM.
439 // Add missing items to the DOM.
430 var items = this.model.get('value_names');
440 var items = this.model.get('value_names');
431 var that = this;
441 var that = this;
432 _.each(items, function(item, index) {
442 _.each(items, function(item, index) {
433 var item_query = 'option[value_name="' + item + '"]';
443 var item_query = 'option[value_name="' + item + '"]';
434 if (that.$listbox.find(item_query).length === 0) {
444 if (that.$listbox.find(item_query).length === 0) {
435 $('<option />')
445 $('<option />')
436 .text(item)
446 .text(item)
437 .attr('value_name', item)
447 .attr('value_name', item)
438 .appendTo(that.$listbox)
448 .appendTo(that.$listbox)
439 .on('click', $.proxy(that.handle_click, that));
449 .on('click', $.proxy(that.handle_click, that));
440 }
450 }
441 });
451 });
442
452
443 // Select the correct element
453 // Select the correct element
444 this.$listbox.val(this.model.get('value_name'));
454 this.$listbox.val(this.model.get('value_name'));
445
455
446 // Disable listbox if needed
456 // Disable listbox if needed
447 var disabled = this.model.get('disabled');
457 var disabled = this.model.get('disabled');
448 this.$listbox.prop('disabled', disabled);
458 this.$listbox.prop('disabled', disabled);
449
459
450 // Remove items that no longer exist.
460 // Remove items that no longer exist.
451 this.$listbox.find('option').each(function(i, obj) {
461 this.$listbox.find('option').each(function(i, obj) {
452 var value = $(obj).text();
462 var value = $(obj).text();
453 var found = false;
463 var found = false;
454 _.each(items, function(item, index) {
464 _.each(items, function(item, index) {
455 if (item == value) {
465 if (item == value) {
456 found = true;
466 found = true;
457 return false;
467 return false;
458 }
468 }
459 });
469 });
460
470
461 if (!found) {
471 if (!found) {
462 $(obj).remove();
472 $(obj).remove();
463 }
473 }
464 });
474 });
465
475
466 var description = this.model.get('description');
476 var description = this.model.get('description');
467 if (description.length === 0) {
477 if (description.length === 0) {
468 this.$label.hide();
478 this.$label.hide();
469 } else {
479 } else {
470 this.typeset(this.$label, description);
480 this.typeset(this.$label, description);
471 this.$label.show();
481 this.$label.show();
472 }
482 }
473 }
483 }
474 return SelectView.__super__.update.apply(this);
484 return SelectView.__super__.update.apply(this);
475 },
485 },
476
486
477 update_attr: function(name, value) {
487 update_attr: function(name, value) {
478 /**
488 /**
479 * Set a css attr of the widget view.
489 * Set a css attr of the widget view.
480 */
490 */
481 this.$listbox.css(name, value);
491 if (name == 'padding' || name == 'margin') {
492 this.$el.css(name, value);
493 } else {
494 this.$listbox.css(name, value);
495 }
482 },
496 },
483
497
484 handle_click: function (e) {
498 handle_click: function (e) {
485 /**
499 /**
486 * Handle when a value is clicked.
500 * Handle when a value is clicked.
487 *
501 *
488 * Calling model.set will trigger all of the other views of the
502 * Calling model.set will trigger all of the other views of the
489 * model to update.
503 * model to update.
490 */
504 */
491 this.model.set('value_name', $(e.target).text(), {updated_view: this});
505 this.model.set('value_name', $(e.target).text(), {updated_view: this});
492 this.touch();
506 this.touch();
493 },
507 },
494 });
508 });
495
509
496 return {
510 return {
497 'DropdownView': DropdownView,
511 'DropdownView': DropdownView,
498 'RadioButtonsView': RadioButtonsView,
512 'RadioButtonsView': RadioButtonsView,
499 'ToggleButtonsView': ToggleButtonsView,
513 'ToggleButtonsView': ToggleButtonsView,
500 'SelectView': SelectView,
514 'SelectView': SelectView,
501 };
515 };
502 });
516 });
@@ -1,298 +1,302 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define([
5 "widgets/js/widget",
5 "widgets/js/widget",
6 "base/js/utils",
6 "base/js/utils",
7 "jquery",
7 "jquery",
8 "bootstrap",
8 "bootstrap",
9 ], function(widget, utils, $){
9 ], function(widget, utils, $){
10
10
11 var AccordionView = widget.DOMWidgetView.extend({
11 var AccordionView = widget.DOMWidgetView.extend({
12 initialize: function(){
12 initialize: function(){
13 AccordionView.__super__.initialize.apply(this, arguments);
13 AccordionView.__super__.initialize.apply(this, arguments);
14
14
15 this.containers = [];
15 this.containers = [];
16 this.model_containers = {};
16 this.model_containers = {};
17 this.children_views = new widget.ViewList(this.add_child_view, this.remove_child_view, this);
17 this.children_views = new widget.ViewList(this.add_child_view, this.remove_child_view, this);
18 this.listenTo(this.model, 'change:children', function(model, value) {
18 this.listenTo(this.model, 'change:children', function(model, value) {
19 this.children_views.update(value);
19 this.children_views.update(value);
20 }, this);
20 }, this);
21 },
21 },
22
22
23 render: function(){
23 render: function(){
24 /**
24 /**
25 * Called when view is rendered.
25 * Called when view is rendered.
26 */
26 */
27 var guid = 'panel-group' + utils.uuid();
27 var guid = 'panel-group' + utils.uuid();
28 this.$el
28 this.$el
29 .attr('id', guid)
29 .attr('id', guid)
30 .addClass('panel-group');
30 .addClass('panel-group');
31 this.model.on('change:selected_index', function(model, value, options) {
31 this.model.on('change:selected_index', function(model, value, options) {
32 this.update_selected_index(model.previous('selected_index'), value, options);
32 this.update_selected_index(model.previous('selected_index'), value, options);
33 }, this);
33 }, this);
34 this.model.on('change:_titles', function(model, value, options) {
34 this.model.on('change:_titles', function(model, value, options) {
35 this.update_titles(value);
35 this.update_titles(value);
36 }, this);
36 }, this);
37 var that = this;
37 var that = this;
38 this.on('displayed', function() {
38 this.on('displayed', function() {
39 this.update_titles();
39 this.update_titles();
40 }, this);
40 }, this);
41 this.children_views.update(this.model.get('children'));
41 this.children_views.update(this.model.get('children'));
42 },
42 },
43
43
44 update_titles: function(titles) {
44 update_titles: function(titles) {
45 /**
45 /**
46 * Set tab titles
46 * Set tab titles
47 */
47 */
48 if (!titles) {
48 if (!titles) {
49 titles = this.model.get('_titles');
49 titles = this.model.get('_titles');
50 }
50 }
51
51
52 var that = this;
52 var that = this;
53 _.each(titles, function(title, page_index) {
53 _.each(titles, function(title, page_index) {
54 var accordian = that.containers[page_index];
54 var accordian = that.containers[page_index];
55 if (accordian !== undefined) {
55 if (accordian !== undefined) {
56 accordian
56 accordian
57 .find('.panel-heading')
57 .find('.panel-heading')
58 .find('.accordion-toggle')
58 .find('.accordion-toggle')
59 .text(title);
59 .text(title);
60 }
60 }
61 });
61 });
62 },
62 },
63
63
64 update_selected_index: function(old_index, new_index, options) {
64 update_selected_index: function(old_index, new_index, options) {
65 /**
65 /**
66 * Only update the selection if the selection wasn't triggered
66 * Only update the selection if the selection wasn't triggered
67 * by the front-end. It must be triggered by the back-end.
67 * by the front-end. It must be triggered by the back-end.
68 */
68 */
69 if (options === undefined || options.updated_view != this) {
69 if (options === undefined || options.updated_view != this) {
70 this.containers[old_index].find('.panel-collapse').collapse('hide');
70 this.containers[old_index].find('.panel-collapse').collapse('hide');
71 if (0 <= new_index && new_index < this.containers.length) {
71 if (0 <= new_index && new_index < this.containers.length) {
72 this.containers[new_index].find('.panel-collapse').collapse('show');
72 this.containers[new_index].find('.panel-collapse').collapse('show');
73 }
73 }
74 }
74 }
75 },
75 },
76
76
77 remove_child_view: function(view) {
77 remove_child_view: function(view) {
78 /**
78 /**
79 * Called when a child is removed from children list.
79 * Called when a child is removed from children list.
80 * TODO: does this handle two different views of the same model as children?
80 * TODO: does this handle two different views of the same model as children?
81 */
81 */
82 var model = view.model;
82 var model = view.model;
83 var accordion_group = this.model_containers[model.id];
83 var accordion_group = this.model_containers[model.id];
84 this.containers.splice(accordion_group.container_index, 1);
84 this.containers.splice(accordion_group.container_index, 1);
85 delete this.model_containers[model.id];
85 delete this.model_containers[model.id];
86 accordion_group.remove();
86 accordion_group.remove();
87 },
87 },
88
88
89 add_child_view: function(model) {
89 add_child_view: function(model) {
90 /**
90 /**
91 * Called when a child is added to children list.
91 * Called when a child is added to children list.
92 */
92 */
93 var index = this.containers.length;
93 var index = this.containers.length;
94 var uuid = utils.uuid();
94 var uuid = utils.uuid();
95 var accordion_group = $('<div />')
95 var accordion_group = $('<div />')
96 .addClass('panel panel-default')
96 .addClass('panel panel-default')
97 .appendTo(this.$el);
97 .appendTo(this.$el);
98 var accordion_heading = $('<div />')
98 var accordion_heading = $('<div />')
99 .addClass('panel-heading')
99 .addClass('panel-heading')
100 .appendTo(accordion_group);
100 .appendTo(accordion_group);
101 var that = this;
101 var that = this;
102 var accordion_toggle = $('<a />')
102 var accordion_toggle = $('<a />')
103 .addClass('accordion-toggle')
103 .addClass('accordion-toggle')
104 .attr('data-toggle', 'collapse')
104 .attr('data-toggle', 'collapse')
105 .attr('data-parent', '#' + this.$el.attr('id'))
105 .attr('data-parent', '#' + this.$el.attr('id'))
106 .attr('href', '#' + uuid)
106 .attr('href', '#' + uuid)
107 .click(function(evt){
107 .click(function(evt){
108
108
109 // Calling model.set will trigger all of the other views of the
109 // Calling model.set will trigger all of the other views of the
110 // model to update.
110 // model to update.
111 that.model.set("selected_index", index, {updated_view: that});
111 that.model.set("selected_index", index, {updated_view: that});
112 that.touch();
112 that.touch();
113 })
113 })
114 .text('Page ' + index)
114 .text('Page ' + index)
115 .appendTo(accordion_heading);
115 .appendTo(accordion_heading);
116 var accordion_body = $('<div />', {id: uuid})
116 var accordion_body = $('<div />', {id: uuid})
117 .addClass('panel-collapse collapse')
117 .addClass('panel-collapse collapse')
118 .appendTo(accordion_group);
118 .appendTo(accordion_group);
119 var accordion_inner = $('<div />')
119 var accordion_inner = $('<div />')
120 .addClass('panel-body')
120 .addClass('panel-body')
121 .appendTo(accordion_body);
121 .appendTo(accordion_body);
122 var container_index = this.containers.push(accordion_group) - 1;
122 var container_index = this.containers.push(accordion_group) - 1;
123 accordion_group.container_index = container_index;
123 accordion_group.container_index = container_index;
124 this.model_containers[model.id] = accordion_group;
124 this.model_containers[model.id] = accordion_group;
125
125
126 var dummy = $('<div/>');
126 var dummy = $('<div/>');
127 accordion_inner.append(dummy);
127 accordion_inner.append(dummy);
128 return this.create_child_view(model).then(function(view) {
128 return this.create_child_view(model).then(function(view) {
129 dummy.replaceWith(view.$el);
129 dummy.replaceWith(view.$el);
130 that.update();
130 that.update();
131 that.update_titles();
131 that.update_titles();
132
132
133 // Trigger the displayed event of the child view.
133 // Trigger the displayed event of the child view.
134 that.after_displayed(function() {
134 that.after_displayed(function() {
135 view.trigger('displayed');
135 view.trigger('displayed');
136 });
136 });
137 return view;
137 return view;
138 }).catch(utils.reject("Couldn't add child view to box", true));
138 }).catch(utils.reject("Couldn't add child view to box", true));
139 },
139 },
140
140
141 remove: function() {
141 remove: function() {
142 /**
142 /**
143 * We remove this widget before removing the children as an optimization
143 * We remove this widget before removing the children as an optimization
144 * we want to remove the entire container from the DOM first before
144 * we want to remove the entire container from the DOM first before
145 * removing each individual child separately.
145 * removing each individual child separately.
146 */
146 */
147 AccordionView.__super__.remove.apply(this, arguments);
147 AccordionView.__super__.remove.apply(this, arguments);
148 this.children_views.remove();
148 this.children_views.remove();
149 },
149 },
150 });
150 });
151
151
152
152
153 var TabView = widget.DOMWidgetView.extend({
153 var TabView = widget.DOMWidgetView.extend({
154 initialize: function() {
154 initialize: function() {
155 /**
155 /**
156 * Public constructor.
156 * Public constructor.
157 */
157 */
158 TabView.__super__.initialize.apply(this, arguments);
158 TabView.__super__.initialize.apply(this, arguments);
159
159
160 this.containers = [];
160 this.containers = [];
161 this.children_views = new widget.ViewList(this.add_child_view, this.remove_child_view, this);
161 this.children_views = new widget.ViewList(this.add_child_view, this.remove_child_view, this);
162 this.listenTo(this.model, 'change:children', function(model, value) {
162 this.listenTo(this.model, 'change:children', function(model, value) {
163 this.children_views.update(value);
163 this.children_views.update(value);
164 }, this);
164 }, this);
165 },
165 },
166
166
167 render: function(){
167 render: function(){
168 /**
168 /**
169 * Called when view is rendered.
169 * Called when view is rendered.
170 */
170 */
171 var uuid = 'tabs'+utils.uuid();
171 var uuid = 'tabs'+utils.uuid();
172 var that = this;
172 var that = this;
173 this.$tabs = $('<div />', {id: uuid})
173 this.$tabs = $('<div />', {id: uuid})
174 .addClass('nav')
174 .addClass('nav')
175 .addClass('nav-tabs')
175 .addClass('nav-tabs')
176 .appendTo(this.$el);
176 .appendTo(this.$el);
177 this.$tab_contents = $('<div />', {id: uuid + 'Content'})
177 this.$tab_contents = $('<div />', {id: uuid + 'Content'})
178 .addClass('tab-content')
178 .addClass('tab-content')
179 .appendTo(this.$el);
179 .appendTo(this.$el);
180 this.children_views.update(this.model.get('children'));
180 this.children_views.update(this.model.get('children'));
181 },
181 },
182
182
183 update_attr: function(name, value) {
183 update_attr: function(name, value) {
184 /**
184 /**
185 * Set a css attr of the widget view.
185 * Set a css attr of the widget view.
186 */
186 */
187 this.$tabs.css(name, value);
187 if (name == 'padding' || name == 'margin') {
188 this.$el.css(name, value);
189 } else {
190 this.$tabs.css(name, value);
191 }
188 },
192 },
189
193
190 remove_child_view: function(view) {
194 remove_child_view: function(view) {
191 /**
195 /**
192 * Called when a child is removed from children list.
196 * Called when a child is removed from children list.
193 */
197 */
194 this.containers.splice(view.parent_tab.tab_text_index, 1);
198 this.containers.splice(view.parent_tab.tab_text_index, 1);
195 view.parent_tab.remove();
199 view.parent_tab.remove();
196 view.parent_container.remove();
200 view.parent_container.remove();
197 view.remove();
201 view.remove();
198 },
202 },
199
203
200 add_child_view: function(model) {
204 add_child_view: function(model) {
201 /**
205 /**
202 * Called when a child is added to children list.
206 * Called when a child is added to children list.
203 */
207 */
204 var index = this.containers.length;
208 var index = this.containers.length;
205 var uuid = utils.uuid();
209 var uuid = utils.uuid();
206
210
207 var that = this;
211 var that = this;
208 var tab = $('<li />')
212 var tab = $('<li />')
209 .css('list-style-type', 'none')
213 .css('list-style-type', 'none')
210 .appendTo(this.$tabs);
214 .appendTo(this.$tabs);
211
215
212
216
213 var tab_text = $('<a />')
217 var tab_text = $('<a />')
214 .attr('href', '#' + uuid)
218 .attr('href', '#' + uuid)
215 .attr('data-toggle', 'tab')
219 .attr('data-toggle', 'tab')
216 .text('Page ' + index)
220 .text('Page ' + index)
217 .appendTo(tab)
221 .appendTo(tab)
218 .click(function (e) {
222 .click(function (e) {
219
223
220 // Calling model.set will trigger all of the other views of the
224 // Calling model.set will trigger all of the other views of the
221 // model to update.
225 // model to update.
222 that.model.set("selected_index", index, {updated_view: that});
226 that.model.set("selected_index", index, {updated_view: that});
223 that.touch();
227 that.touch();
224 that.select_page(index);
228 that.select_page(index);
225 });
229 });
226 tab.tab_text_index = that.containers.push(tab_text) - 1;
230 tab.tab_text_index = that.containers.push(tab_text) - 1;
227
231
228 var dummy = $('<div />');
232 var dummy = $('<div />');
229 var contents_div = $('<div />', {id: uuid})
233 var contents_div = $('<div />', {id: uuid})
230 .addClass('tab-pane')
234 .addClass('tab-pane')
231 .addClass('fade')
235 .addClass('fade')
232 .append(dummy)
236 .append(dummy)
233 .appendTo(that.$tab_contents);
237 .appendTo(that.$tab_contents);
234
238
235 return this.create_child_view(model).then(function(view) {
239 return this.create_child_view(model).then(function(view) {
236 dummy.replaceWith(view.$el);
240 dummy.replaceWith(view.$el);
237 view.parent_tab = tab;
241 view.parent_tab = tab;
238 view.parent_container = contents_div;
242 view.parent_container = contents_div;
239
243
240 // Trigger the displayed event of the child view.
244 // Trigger the displayed event of the child view.
241 that.after_displayed(function() {
245 that.after_displayed(function() {
242 view.trigger('displayed');
246 view.trigger('displayed');
243 });
247 });
244 return view;
248 return view;
245 }).catch(utils.reject("Couldn't add child view to box", true));
249 }).catch(utils.reject("Couldn't add child view to box", true));
246 },
250 },
247
251
248 update: function(options) {
252 update: function(options) {
249 /**
253 /**
250 * Update the contents of this view
254 * Update the contents of this view
251 *
255 *
252 * Called when the model is changed. The model may have been
256 * Called when the model is changed. The model may have been
253 * changed by another view or by a state update from the back-end.
257 * changed by another view or by a state update from the back-end.
254 */
258 */
255 if (options === undefined || options.updated_view != this) {
259 if (options === undefined || options.updated_view != this) {
256 // Set tab titles
260 // Set tab titles
257 var titles = this.model.get('_titles');
261 var titles = this.model.get('_titles');
258 var that = this;
262 var that = this;
259 _.each(titles, function(title, page_index) {
263 _.each(titles, function(title, page_index) {
260 var tab_text = that.containers[page_index];
264 var tab_text = that.containers[page_index];
261 if (tab_text !== undefined) {
265 if (tab_text !== undefined) {
262 tab_text.text(title);
266 tab_text.text(title);
263 }
267 }
264 });
268 });
265
269
266 var selected_index = this.model.get('selected_index');
270 var selected_index = this.model.get('selected_index');
267 if (0 <= selected_index && selected_index < this.containers.length) {
271 if (0 <= selected_index && selected_index < this.containers.length) {
268 this.select_page(selected_index);
272 this.select_page(selected_index);
269 }
273 }
270 }
274 }
271 return TabView.__super__.update.apply(this);
275 return TabView.__super__.update.apply(this);
272 },
276 },
273
277
274 select_page: function(index) {
278 select_page: function(index) {
275 /**
279 /**
276 * Select a page.
280 * Select a page.
277 */
281 */
278 this.$tabs.find('li')
282 this.$tabs.find('li')
279 .removeClass('active');
283 .removeClass('active');
280 this.containers[index].tab('show');
284 this.containers[index].tab('show');
281 },
285 },
282
286
283 remove: function() {
287 remove: function() {
284 /**
288 /**
285 * We remove this widget before removing the children as an optimization
289 * We remove this widget before removing the children as an optimization
286 * we want to remove the entire container from the DOM first before
290 * we want to remove the entire container from the DOM first before
287 * removing each individual child separately.
291 * removing each individual child separately.
288 */
292 */
289 TabView.__super__.remove.apply(this, arguments);
293 TabView.__super__.remove.apply(this, arguments);
290 this.children_views.remove();
294 this.children_views.remove();
291 },
295 },
292 });
296 });
293
297
294 return {
298 return {
295 'AccordionView': AccordionView,
299 'AccordionView': AccordionView,
296 'TabView': TabView,
300 'TabView': TabView,
297 };
301 };
298 });
302 });
@@ -1,280 +1,288 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define([
5 "widgets/js/widget",
5 "widgets/js/widget",
6 "jquery",
6 "jquery",
7 "bootstrap",
7 "bootstrap",
8 ], function(widget, $){
8 ], function(widget, $){
9
9
10 var HTMLView = widget.DOMWidgetView.extend({
10 var HTMLView = widget.DOMWidgetView.extend({
11 render : function(){
11 render : function(){
12 /**
12 /**
13 * Called when view is rendered.
13 * Called when view is rendered.
14 */
14 */
15 this.update(); // Set defaults.
15 this.update(); // Set defaults.
16 },
16 },
17
17
18 update : function(){
18 update : function(){
19 /**
19 /**
20 * Update the contents of this view
20 * Update the contents of this view
21 *
21 *
22 * Called when the model is changed. The model may have been
22 * Called when the model is changed. The model may have been
23 * changed by another view or by a state update from the back-end.
23 * changed by another view or by a state update from the back-end.
24 */
24 */
25 this.$el.html(this.model.get('value')); // CAUTION! .html(...) CALL MANDITORY!!!
25 this.$el.html(this.model.get('value')); // CAUTION! .html(...) CALL MANDITORY!!!
26 return HTMLView.__super__.update.apply(this);
26 return HTMLView.__super__.update.apply(this);
27 },
27 },
28 });
28 });
29
29
30
30
31 var LatexView = widget.DOMWidgetView.extend({
31 var LatexView = widget.DOMWidgetView.extend({
32 render : function(){
32 render : function(){
33 /**
33 /**
34 * Called when view is rendered.
34 * Called when view is rendered.
35 */
35 */
36 this.update(); // Set defaults.
36 this.update(); // Set defaults.
37 },
37 },
38
38
39 update : function(){
39 update : function(){
40 /**
40 /**
41 * Update the contents of this view
41 * Update the contents of this view
42 *
42 *
43 * Called when the model is changed. The model may have been
43 * Called when the model is changed. The model may have been
44 * changed by another view or by a state update from the back-end.
44 * changed by another view or by a state update from the back-end.
45 */
45 */
46 this.typeset(this.$el, this.model.get('value'));
46 this.typeset(this.$el, this.model.get('value'));
47 return LatexView.__super__.update.apply(this);
47 return LatexView.__super__.update.apply(this);
48 },
48 },
49 });
49 });
50
50
51
51
52 var TextareaView = widget.DOMWidgetView.extend({
52 var TextareaView = widget.DOMWidgetView.extend({
53 render: function(){
53 render: function(){
54 /**
54 /**
55 * Called when view is rendered.
55 * Called when view is rendered.
56 */
56 */
57 this.$el
57 this.$el
58 .addClass('widget-hbox widget-textarea');
58 .addClass('widget-hbox widget-textarea');
59 this.$label = $('<div />')
59 this.$label = $('<div />')
60 .appendTo(this.$el)
60 .appendTo(this.$el)
61 .addClass('widget-label')
61 .addClass('widget-label')
62 .hide();
62 .hide();
63 this.$textbox = $('<textarea />')
63 this.$textbox = $('<textarea />')
64 .attr('rows', 5)
64 .attr('rows', 5)
65 .addClass('widget-text form-control')
65 .addClass('widget-text form-control')
66 .appendTo(this.$el);
66 .appendTo(this.$el);
67 this.update(); // Set defaults.
67 this.update(); // Set defaults.
68
68
69 this.model.on('msg:custom', $.proxy(this._handle_textarea_msg, this));
69 this.model.on('msg:custom', $.proxy(this._handle_textarea_msg, this));
70 this.model.on('change:placeholder', function(model, value, options) {
70 this.model.on('change:placeholder', function(model, value, options) {
71 this.update_placeholder(value);
71 this.update_placeholder(value);
72 }, this);
72 }, this);
73
73
74 this.update_placeholder();
74 this.update_placeholder();
75 },
75 },
76
76
77 _handle_textarea_msg: function (content){
77 _handle_textarea_msg: function (content){
78 /**
78 /**
79 * Handle when a custom msg is recieved from the back-end.
79 * Handle when a custom msg is recieved from the back-end.
80 */
80 */
81 if (content.method == "scroll_to_bottom") {
81 if (content.method == "scroll_to_bottom") {
82 this.scroll_to_bottom();
82 this.scroll_to_bottom();
83 }
83 }
84 },
84 },
85
85
86 update_placeholder: function(value) {
86 update_placeholder: function(value) {
87 if (!value) {
87 if (!value) {
88 value = this.model.get('placeholder');
88 value = this.model.get('placeholder');
89 }
89 }
90 this.$textbox.attr('placeholder', value);
90 this.$textbox.attr('placeholder', value);
91 },
91 },
92
92
93 scroll_to_bottom: function (){
93 scroll_to_bottom: function (){
94 /**
94 /**
95 * Scroll the text-area view to the bottom.
95 * Scroll the text-area view to the bottom.
96 */
96 */
97 this.$textbox.scrollTop(this.$textbox[0].scrollHeight);
97 this.$textbox.scrollTop(this.$textbox[0].scrollHeight);
98 },
98 },
99
99
100 update: function(options){
100 update: function(options){
101 /**
101 /**
102 * Update the contents of this view
102 * Update the contents of this view
103 *
103 *
104 * Called when the model is changed. The model may have been
104 * Called when the model is changed. The model may have been
105 * changed by another view or by a state update from the back-end.
105 * changed by another view or by a state update from the back-end.
106 */
106 */
107 if (options === undefined || options.updated_view != this) {
107 if (options === undefined || options.updated_view != this) {
108 this.$textbox.val(this.model.get('value'));
108 this.$textbox.val(this.model.get('value'));
109
109
110 var disabled = this.model.get('disabled');
110 var disabled = this.model.get('disabled');
111 this.$textbox.prop('disabled', disabled);
111 this.$textbox.prop('disabled', disabled);
112
112
113 var description = this.model.get('description');
113 var description = this.model.get('description');
114 if (description.length === 0) {
114 if (description.length === 0) {
115 this.$label.hide();
115 this.$label.hide();
116 } else {
116 } else {
117 this.typeset(this.$label, description);
117 this.typeset(this.$label, description);
118 this.$label.show();
118 this.$label.show();
119 }
119 }
120 }
120 }
121 return TextareaView.__super__.update.apply(this);
121 return TextareaView.__super__.update.apply(this);
122 },
122 },
123
123
124 update_attr: function(name, value) {
124 update_attr: function(name, value) {
125 /**
125 /**
126 * Set a css attr of the widget view.
126 * Set a css attr of the widget view.
127 */
127 */
128 this.$textbox.css(name, value);
128 if (name == 'padding' || name == 'margin') {
129 this.$el.css(name, value);
130 } else {
131 this.$textbox.css(name, value);
132 }
129 },
133 },
130
134
131 events: {
135 events: {
132 // Dictionary of events and their handlers.
136 // Dictionary of events and their handlers.
133 "keyup textarea" : "handleChanging",
137 "keyup textarea" : "handleChanging",
134 "paste textarea" : "handleChanging",
138 "paste textarea" : "handleChanging",
135 "cut textarea" : "handleChanging"
139 "cut textarea" : "handleChanging"
136 },
140 },
137
141
138 handleChanging: function(e) {
142 handleChanging: function(e) {
139 /**
143 /**
140 * Handles and validates user input.
144 * Handles and validates user input.
141 *
145 *
142 * Calling model.set will trigger all of the other views of the
146 * Calling model.set will trigger all of the other views of the
143 * model to update.
147 * model to update.
144 */
148 */
145 this.model.set('value', e.target.value, {updated_view: this});
149 this.model.set('value', e.target.value, {updated_view: this});
146 this.touch();
150 this.touch();
147 },
151 },
148 });
152 });
149
153
150
154
151 var TextView = widget.DOMWidgetView.extend({
155 var TextView = widget.DOMWidgetView.extend({
152 render: function(){
156 render: function(){
153 /**
157 /**
154 * Called when view is rendered.
158 * Called when view is rendered.
155 */
159 */
156 this.$el
160 this.$el
157 .addClass('widget-hbox widget-text');
161 .addClass('widget-hbox widget-text');
158 this.$label = $('<div />')
162 this.$label = $('<div />')
159 .addClass('widget-label')
163 .addClass('widget-label')
160 .appendTo(this.$el)
164 .appendTo(this.$el)
161 .hide();
165 .hide();
162 this.$textbox = $('<input type="text" />')
166 this.$textbox = $('<input type="text" />')
163 .addClass('input')
167 .addClass('input')
164 .addClass('widget-text form-control')
168 .addClass('widget-text form-control')
165 .appendTo(this.$el);
169 .appendTo(this.$el);
166 this.update(); // Set defaults.
170 this.update(); // Set defaults.
167 this.model.on('change:placeholder', function(model, value, options) {
171 this.model.on('change:placeholder', function(model, value, options) {
168 this.update_placeholder(value);
172 this.update_placeholder(value);
169 }, this);
173 }, this);
170
174
171 this.update_placeholder();
175 this.update_placeholder();
172 },
176 },
173
177
174 update_placeholder: function(value) {
178 update_placeholder: function(value) {
175 if (!value) {
179 if (!value) {
176 value = this.model.get('placeholder');
180 value = this.model.get('placeholder');
177 }
181 }
178 this.$textbox.attr('placeholder', value);
182 this.$textbox.attr('placeholder', value);
179 },
183 },
180
184
181 update: function(options){
185 update: function(options){
182 /**
186 /**
183 * Update the contents of this view
187 * Update the contents of this view
184 *
188 *
185 * Called when the model is changed. The model may have been
189 * Called when the model is changed. The model may have been
186 * changed by another view or by a state update from the back-end.
190 * changed by another view or by a state update from the back-end.
187 */
191 */
188 if (options === undefined || options.updated_view != this) {
192 if (options === undefined || options.updated_view != this) {
189 if (this.$textbox.val() != this.model.get('value')) {
193 if (this.$textbox.val() != this.model.get('value')) {
190 this.$textbox.val(this.model.get('value'));
194 this.$textbox.val(this.model.get('value'));
191 }
195 }
192
196
193 var disabled = this.model.get('disabled');
197 var disabled = this.model.get('disabled');
194 this.$textbox.prop('disabled', disabled);
198 this.$textbox.prop('disabled', disabled);
195
199
196 var description = this.model.get('description');
200 var description = this.model.get('description');
197 if (description.length === 0) {
201 if (description.length === 0) {
198 this.$label.hide();
202 this.$label.hide();
199 } else {
203 } else {
200 this.typeset(this.$label, description);
204 this.typeset(this.$label, description);
201 this.$label.show();
205 this.$label.show();
202 }
206 }
203 }
207 }
204 return TextView.__super__.update.apply(this);
208 return TextView.__super__.update.apply(this);
205 },
209 },
206
210
207 update_attr: function(name, value) {
211 update_attr: function(name, value) {
208 /**
212 /**
209 * Set a css attr of the widget view.
213 * Set a css attr of the widget view.
210 */
214 */
211 this.$textbox.css(name, value);
215 if (name == 'padding' || name == 'margin') {
216 this.$el.css(name, value);
217 } else {
218 this.$textbox.css(name, value);
219 }
212 },
220 },
213
221
214 events: {
222 events: {
215 // Dictionary of events and their handlers.
223 // Dictionary of events and their handlers.
216 "keyup input" : "handleChanging",
224 "keyup input" : "handleChanging",
217 "paste input" : "handleChanging",
225 "paste input" : "handleChanging",
218 "cut input" : "handleChanging",
226 "cut input" : "handleChanging",
219 "keypress input" : "handleKeypress",
227 "keypress input" : "handleKeypress",
220 "blur input" : "handleBlur",
228 "blur input" : "handleBlur",
221 "focusout input" : "handleFocusOut"
229 "focusout input" : "handleFocusOut"
222 },
230 },
223
231
224 handleChanging: function(e) {
232 handleChanging: function(e) {
225 /**
233 /**
226 * Handles user input.
234 * Handles user input.
227 *
235 *
228 * Calling model.set will trigger all of the other views of the
236 * Calling model.set will trigger all of the other views of the
229 * model to update.
237 * model to update.
230 */
238 */
231 this.model.set('value', e.target.value, {updated_view: this});
239 this.model.set('value', e.target.value, {updated_view: this});
232 this.touch();
240 this.touch();
233 },
241 },
234
242
235 handleKeypress: function(e) {
243 handleKeypress: function(e) {
236 /**
244 /**
237 * Handles text submition
245 * Handles text submition
238 */
246 */
239 if (e.keyCode == 13) { // Return key
247 if (e.keyCode == 13) { // Return key
240 this.send({event: 'submit'});
248 this.send({event: 'submit'});
241 e.stopPropagation();
249 e.stopPropagation();
242 e.preventDefault();
250 e.preventDefault();
243 return false;
251 return false;
244 }
252 }
245 },
253 },
246
254
247 handleBlur: function(e) {
255 handleBlur: function(e) {
248 /**
256 /**
249 * Prevent a blur from firing if the blur was not user intended.
257 * Prevent a blur from firing if the blur was not user intended.
250 * This is a workaround for the return-key focus loss bug.
258 * This is a workaround for the return-key focus loss bug.
251 * TODO: Is the original bug actually a fault of the keyboard
259 * TODO: Is the original bug actually a fault of the keyboard
252 * manager?
260 * manager?
253 */
261 */
254 if (e.relatedTarget === null) {
262 if (e.relatedTarget === null) {
255 e.stopPropagation();
263 e.stopPropagation();
256 e.preventDefault();
264 e.preventDefault();
257 return false;
265 return false;
258 }
266 }
259 },
267 },
260
268
261 handleFocusOut: function(e) {
269 handleFocusOut: function(e) {
262 /**
270 /**
263 * Prevent a blur from firing if the blur was not user intended.
271 * Prevent a blur from firing if the blur was not user intended.
264 * This is a workaround for the return-key focus loss bug.
272 * This is a workaround for the return-key focus loss bug.
265 */
273 */
266 if (e.relatedTarget === null) {
274 if (e.relatedTarget === null) {
267 e.stopPropagation();
275 e.stopPropagation();
268 e.preventDefault();
276 e.preventDefault();
269 return false;
277 return false;
270 }
278 }
271 },
279 },
272 });
280 });
273
281
274 return {
282 return {
275 'HTMLView': HTMLView,
283 'HTMLView': HTMLView,
276 'LatexView': LatexView,
284 'LatexView': LatexView,
277 'TextareaView': TextareaView,
285 'TextareaView': TextareaView,
278 'TextView': TextView,
286 'TextView': TextView,
279 };
287 };
280 });
288 });
@@ -1,278 +1,274 b''
1 .widget-area {
1 .widget-area {
2 /*
2 /*
3 LESS file that styles IPython notebook widgets and the area they sit in.
3 LESS file that styles IPython notebook widgets and the area they sit in.
4
4
5 The widget area typically looks something like this:
5 The widget area typically looks something like this:
6 +------------------------------------------+
6 +------------------------------------------+
7 | widget-area |
7 | widget-area |
8 | +--------+---------------------------+ |
8 | +--------+---------------------------+ |
9 | | prompt | widget-subarea | |
9 | | prompt | widget-subarea | |
10 | | | +--------+ +--------+ | |
10 | | | +--------+ +--------+ | |
11 | | | | widget | | widget | | |
11 | | | | widget | | widget | | |
12 | | | +--------+ +--------+ | |
12 | | | +--------+ +--------+ | |
13 | +--------+---------------------------+ |
13 | +--------+---------------------------+ |
14 +------------------------------------------+
14 +------------------------------------------+
15 */
15 */
16
16
17 page-break-inside : avoid;
17 page-break-inside : avoid;
18 .hbox();
18 .hbox();
19
19
20 .widget-subarea {
20 .widget-subarea {
21 padding : 0.44em 0.4em 0.4em 1px;
21 padding : 0.44em 0.4em 0.4em 1px;
22 margin-left : 6px;
22 margin-left : 6px;
23
23
24 .border-box-sizing();
24 .border-box-sizing();
25 .vbox();
25 .vbox();
26 .box-flex2();
26 .box-flex2();
27 .align-start();
27 .align-start();
28 }
28 }
29 }
29 }
30
30
31 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
31 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
32 THE WIDGET AREA). */
32 THE WIDGET AREA). */
33
33
34 .slide-track {
34 .slide-track {
35 /* Slider Track */
35 /* Slider Track */
36 border : 1px solid #CCCCCC;
36 border : 1px solid #CCCCCC;
37 background : #FFFFFF;
37 background : #FFFFFF;
38
38
39 .corner-all(); /* Round the corners of the slide track */
39 .corner-all(); /* Round the corners of the slide track */
40 }
40 }
41
41
42 .widget-hslider {
42 .widget-hslider {
43 /* Horizontal jQuery Slider
43 /* Horizontal jQuery Slider
44
44
45 Both the horizontal and vertical versions of the slider are characterized
45 Both the horizontal and vertical versions of the slider are characterized
46 by a styled div that contains an invisible jQuery slide div which
46 by a styled div that contains an invisible jQuery slide div which
47 contains a visible slider handle div. This is requred so we can control
47 contains a visible slider handle div. This is requred so we can control
48 how the slider is drawn and 'fix' the issue where the slide handle
48 how the slider is drawn and 'fix' the issue where the slide handle
49 doesn't stop at the end of the slide.
49 doesn't stop at the end of the slide.
50
50
51 Both horizontal and vertical sliders have this div nesting:
51 Both horizontal and vertical sliders have this div nesting:
52 +------------------------------------------+
52 +------------------------------------------+
53 | widget-(h/v)slider |
53 | widget-(h/v)slider |
54 | +--------+---------------------------+ |
54 | +--------+---------------------------+ |
55 | | ui-slider | |
55 | | ui-slider | |
56 | | +------------------+ | |
56 | | +------------------+ | |
57 | | | ui-slider-handle | | |
57 | | | ui-slider-handle | | |
58 | | +------------------+ | |
58 | | +------------------+ | |
59 | +--------+---------------------------+ |
59 | +--------+---------------------------+ |
60 +------------------------------------------+
60 +------------------------------------------+
61 */
61 */
62
62
63 /* Fix the padding of the slide track so the ui-slider is sized
63 /* Fix the padding of the slide track so the ui-slider is sized
64 correctly. */
64 correctly. */
65 padding-left : 8px;
65 padding-left : 8px;
66 padding-right : 5px;
66 padding-right : 5px;
67 overflow : visible;
67 overflow : visible;
68
68
69 /* Default size of the slider */
69 /* Default size of the slider */
70 width : 350px;
70 width : 350px;
71 height : 5px;
71 height : 5px;
72 max-height : 5px;
72 max-height : 5px;
73 margin-top : 13px;
73 margin-top : 13px;
74 margin-bottom: 10px;
74 margin-bottom: 10px;
75
75
76 /* Style the slider track */
76 /* Style the slider track */
77 .slide-track();
77 .slide-track();
78
78
79 /* Make the div a flex box (makes FF behave correctly). */
79 /* Make the div a flex box (makes FF behave correctly). */
80 .hbox();
80 .hbox();
81
81
82 .ui-slider {
82 .ui-slider {
83 /* Inner, invisible slide div */
83 /* Inner, invisible slide div */
84 border : 0px !important;
84 border : 0px !important;
85 background : none !important;
85 background : none !important;
86
86
87 .hbox();
87 .hbox();
88 .box-flex1();
88 .box-flex1();
89
89
90 .ui-slider-handle {
90 .ui-slider-handle {
91 width : 14px !important;
91 width : 14px !important;
92 height : 28px !important;
92 height : 28px !important;
93 margin-top : -8px !important;
93 margin-top : -8px !important;
94 }
94 }
95
95
96 .ui-slider-range {
96 .ui-slider-range {
97 height : 12px !important;
97 height : 12px !important;
98 margin-top : -4px !important;
98 margin-top : -4px !important;
99 }
99 }
100 }
100 }
101 }
101 }
102
102
103 .widget-vslider {
103 .widget-vslider {
104 /* Vertical jQuery Slider */
104 /* Vertical jQuery Slider */
105
105
106 /* Fix the padding of the slide track so the ui-slider is sized
106 /* Fix the padding of the slide track so the ui-slider is sized
107 correctly. */
107 correctly. */
108 padding-bottom : 8px;
108 padding-bottom : 8px;
109 overflow : visible;
109 overflow : visible;
110
110
111 /* Default size of the slider */
111 /* Default size of the slider */
112 width : 5px;
112 width : 5px;
113 max-width : 5px;
113 max-width : 5px;
114 height : 250px;
114 height : 250px;
115 margin-left : 12px;
115 margin-left : 12px;
116
116
117 /* Style the slider track */
117 /* Style the slider track */
118 .slide-track();
118 .slide-track();
119
119
120 /* Make the div a flex box (makes FF behave correctly). */
120 /* Make the div a flex box (makes FF behave correctly). */
121 .vbox();
121 .vbox();
122
122
123 .ui-slider {
123 .ui-slider {
124 /* Inner, invisible slide div */
124 /* Inner, invisible slide div */
125 border : 0px !important;
125 border : 0px !important;
126 background : none !important;
126 background : none !important;
127 margin-left : -4px;
127 margin-left : -4px;
128 margin-top : 5px;
128 margin-top : 5px;
129
129
130 .vbox();
130 .vbox();
131 .box-flex1();
131 .box-flex1();
132
132
133 .ui-slider-handle {
133 .ui-slider-handle {
134 width : 28px !important;
134 width : 28px !important;
135 height : 14px !important;
135 height : 14px !important;
136 margin-left : -9px;
136 margin-left : -9px;
137 }
137 }
138
138
139 .ui-slider-range {
139 .ui-slider-range {
140 width : 12px !important;
140 width : 12px !important;
141 margin-left : -1px !important;
141 margin-left : -1px !important;
142 }
142 }
143 }
143 }
144 }
144 }
145
145
146 .widget-text {
146 .widget-text {
147 /* String Textbox - used for TextBoxView and TextAreaView */
147 /* String Textbox - used for TextBoxView and TextAreaView */
148 width : 350px;
148 width : 350px;
149 margin : 0px !important;
149 margin : 0px;
150 }
150 }
151
151
152 .widget-listbox {
152 .widget-listbox {
153 /* Listbox */
153 /* Listbox */
154 width : 350px;
154 width : 350px;
155 margin-bottom : 0px;
155 margin-bottom : 0px;
156 }
156 }
157
157
158 .widget-numeric-text {
158 .widget-numeric-text {
159 /* Single Line Textbox - used for IntTextView and FloatTextView */
159 /* Single Line Textbox - used for IntTextView and FloatTextView */
160 width : 150px;
160 width : 150px;
161 margin : 0px !important;
161 margin : 0px;
162 }
162 }
163
163
164 .widget-progress {
164 .widget-progress {
165 /* Progress Bar */
165 /* Progress Bar */
166 margin-top: 6px;
166 margin-top: 6px;
167 width : 350px;
167 width : 350px;
168
168
169 .progress-bar {
169 .progress-bar {
170 /* Disable progress bar animation */
170 /* Disable progress bar animation */
171 -webkit-transition : none;
171 -webkit-transition : none;
172 -moz-transition : none;
172 -moz-transition : none;
173 -ms-transition : none;
173 -ms-transition : none;
174 -o-transition : none;
174 -o-transition : none;
175 transition : none;
175 transition : none;
176 }
176 }
177 }
177 }
178
178
179 .widget-combo-btn {
179 .widget-combo-btn {
180 /* ComboBox Main Button */
180 /* ComboBox Main Button */
181 min-width : 125px;
181 min-width : 125px;
182 }
182 }
183
183
184 .widget_item .dropdown-menu li a {
184 .widget_item .dropdown-menu li a {
185 color: inherit;
185 color: inherit;
186 }
186 }
187
187
188 .widget-hbox {
188 .widget-hbox {
189 /* Horizontal widgets */
189 /* Horizontal widgets */
190 .hbox();
190 .hbox();
191 margin-top: 0px !important;
192 margin-bottom: 0px !important;
193 margin-right: 5px;
194 margin-left: 5px;
195
191
196 input[type="checkbox"] {
192 input[type="checkbox"] {
197 margin-top: 9px;
193 margin-top: 9px;
198 margin-bottom: 10px;
194 margin-bottom: 10px;
199 }
195 }
200
196
201 .widget-label {
197 .widget-label {
202 /* Horizontal Label */
198 /* Horizontal Label */
203 min-width : 10ex;
199 min-width : 10ex;
204 padding-right : 8px;
200 padding-right : 8px;
205 padding-top : 5px;
201 padding-top : 5px;
206 text-align : right;
202 text-align : right;
207 vertical-align : text-top;
203 vertical-align : text-top;
208 }
204 }
209
205
210 .widget-readout {
206 .widget-readout {
211 padding-left : 8px;
207 padding-left : 8px;
212 padding-top : 5px;
208 padding-top : 5px;
213 text-align : left;
209 text-align : left;
214 vertical-align : text-top;
210 vertical-align : text-top;
215 }
211 }
216 }
212 }
217
213
218 .widget-vbox {
214 .widget-vbox {
219 /* Vertical widgets */
215 /* Vertical widgets */
220 .vbox();
216 .vbox();
221
217
222
218
223 .widget-label {
219 .widget-label {
224 /* Vertical Label */
220 /* Vertical Label */
225 padding-bottom : 5px;
221 padding-bottom : 5px;
226 text-align : center;
222 text-align : center;
227 vertical-align : text-bottom;
223 vertical-align : text-bottom;
228 }
224 }
229
225
230 .widget-readout {
226 .widget-readout {
231 /* Vertical Label */
227 /* Vertical Label */
232 padding-top : 5px;
228 padding-top : 5px;
233 text-align : center;
229 text-align : center;
234 vertical-align : text-top;
230 vertical-align : text-top;
235 }
231 }
236
232
237 }
233 }
238
234
239 .widget-modal {
235 .widget-modal {
240 /* Box - ModalView */
236 /* Box - ModalView */
241 overflow : hidden;
237 overflow : hidden;
242 position : absolute !important;
238 position : absolute !important;
243 top : 0px;
239 top : 0px;
244 left : 0px;
240 left : 0px;
245 margin-left : 0px !important;
241 margin-left : 0px !important;
246 }
242 }
247
243
248 .widget-modal-body {
244 .widget-modal-body {
249 /* Box - ModalView Body */
245 /* Box - ModalView Body */
250 max-height: none !important;
246 max-height: none !important;
251 }
247 }
252
248
253 .widget-box {
249 .widget-box {
254 /* Box */
250 /* Box */
255 .border-box-sizing();
251 .border-box-sizing();
256 .align-start();
252 .align-start();
257 }
253 }
258
254
259 .widget-radio-box {
255 .widget-radio-box {
260 /* Contains RadioButtonsWidget */
256 /* Contains RadioButtonsWidget */
261 .vbox();
257 .vbox();
262 .border-box-sizing();
258 .border-box-sizing();
263
259
264 padding-top: 4px;
260 padding-top: 4px;
265
261
266 label {
262 label {
267 margin-top: 0px;
263 margin-top: 0px;
268 }
264 }
269 }
265 }
270
266
271 .docked-widget-modal {
267 .docked-widget-modal {
272 /* Horizontal Label */
268 /* Horizontal Label */
273 overflow: hidden;
269 overflow: hidden;
274 position: relative !important;
270 position: relative !important;
275 top: 0px !important;
271 top: 0px !important;
276 left: 0px !important;
272 left: 0px !important;
277 margin-left: 0px !important;
273 margin-left: 0px !important;
278 }
274 }
@@ -1,488 +1,489 b''
1 """Base Widget class. Allows user to create widgets in the back-end that render
1 """Base Widget class. Allows user to create widgets in the back-end that render
2 in the IPython notebook front-end.
2 in the IPython notebook front-end.
3 """
3 """
4 #-----------------------------------------------------------------------------
4 #-----------------------------------------------------------------------------
5 # Copyright (c) 2013, the IPython Development Team.
5 # Copyright (c) 2013, the IPython Development Team.
6 #
6 #
7 # Distributed under the terms of the Modified BSD License.
7 # Distributed under the terms of the Modified BSD License.
8 #
8 #
9 # The full license is in the file COPYING.txt, distributed with this software.
9 # The full license is in the file COPYING.txt, distributed with this software.
10 #-----------------------------------------------------------------------------
10 #-----------------------------------------------------------------------------
11
11
12 #-----------------------------------------------------------------------------
12 #-----------------------------------------------------------------------------
13 # Imports
13 # Imports
14 #-----------------------------------------------------------------------------
14 #-----------------------------------------------------------------------------
15 from contextlib import contextmanager
15 from contextlib import contextmanager
16 import collections
16 import collections
17
17
18 from IPython.core.getipython import get_ipython
18 from IPython.core.getipython import get_ipython
19 from IPython.kernel.comm import Comm
19 from IPython.kernel.comm import Comm
20 from IPython.config import LoggingConfigurable
20 from IPython.config import LoggingConfigurable
21 from IPython.utils.importstring import import_item
21 from IPython.utils.importstring import import_item
22 from IPython.utils.traitlets import Unicode, Dict, Instance, Bool, List, \
22 from IPython.utils.traitlets import Unicode, Dict, Instance, Bool, List, \
23 CaselessStrEnum, Tuple, CUnicode, Int, Set
23 CaselessStrEnum, Tuple, CUnicode, Int, Set
24 from IPython.utils.py3compat import string_types
24 from IPython.utils.py3compat import string_types
25
25
26 #-----------------------------------------------------------------------------
26 #-----------------------------------------------------------------------------
27 # Classes
27 # Classes
28 #-----------------------------------------------------------------------------
28 #-----------------------------------------------------------------------------
29 class CallbackDispatcher(LoggingConfigurable):
29 class CallbackDispatcher(LoggingConfigurable):
30 """A structure for registering and running callbacks"""
30 """A structure for registering and running callbacks"""
31 callbacks = List()
31 callbacks = List()
32
32
33 def __call__(self, *args, **kwargs):
33 def __call__(self, *args, **kwargs):
34 """Call all of the registered callbacks."""
34 """Call all of the registered callbacks."""
35 value = None
35 value = None
36 for callback in self.callbacks:
36 for callback in self.callbacks:
37 try:
37 try:
38 local_value = callback(*args, **kwargs)
38 local_value = callback(*args, **kwargs)
39 except Exception as e:
39 except Exception as e:
40 ip = get_ipython()
40 ip = get_ipython()
41 if ip is None:
41 if ip is None:
42 self.log.warn("Exception in callback %s: %s", callback, e, exc_info=True)
42 self.log.warn("Exception in callback %s: %s", callback, e, exc_info=True)
43 else:
43 else:
44 ip.showtraceback()
44 ip.showtraceback()
45 else:
45 else:
46 value = local_value if local_value is not None else value
46 value = local_value if local_value is not None else value
47 return value
47 return value
48
48
49 def register_callback(self, callback, remove=False):
49 def register_callback(self, callback, remove=False):
50 """(Un)Register a callback
50 """(Un)Register a callback
51
51
52 Parameters
52 Parameters
53 ----------
53 ----------
54 callback: method handle
54 callback: method handle
55 Method to be registered or unregistered.
55 Method to be registered or unregistered.
56 remove=False: bool
56 remove=False: bool
57 Whether to unregister the callback."""
57 Whether to unregister the callback."""
58
58
59 # (Un)Register the callback.
59 # (Un)Register the callback.
60 if remove and callback in self.callbacks:
60 if remove and callback in self.callbacks:
61 self.callbacks.remove(callback)
61 self.callbacks.remove(callback)
62 elif not remove and callback not in self.callbacks:
62 elif not remove and callback not in self.callbacks:
63 self.callbacks.append(callback)
63 self.callbacks.append(callback)
64
64
65 def _show_traceback(method):
65 def _show_traceback(method):
66 """decorator for showing tracebacks in IPython"""
66 """decorator for showing tracebacks in IPython"""
67 def m(self, *args, **kwargs):
67 def m(self, *args, **kwargs):
68 try:
68 try:
69 return(method(self, *args, **kwargs))
69 return(method(self, *args, **kwargs))
70 except Exception as e:
70 except Exception as e:
71 ip = get_ipython()
71 ip = get_ipython()
72 if ip is None:
72 if ip is None:
73 self.log.warn("Exception in widget method %s: %s", method, e, exc_info=True)
73 self.log.warn("Exception in widget method %s: %s", method, e, exc_info=True)
74 else:
74 else:
75 ip.showtraceback()
75 ip.showtraceback()
76 return m
76 return m
77
77
78
78
79 def register(key=None):
79 def register(key=None):
80 """Returns a decorator registering a widget class in the widget registry.
80 """Returns a decorator registering a widget class in the widget registry.
81 If no key is provided, the class name is used as a key. A key is
81 If no key is provided, the class name is used as a key. A key is
82 provided for each core IPython widget so that the frontend can use
82 provided for each core IPython widget so that the frontend can use
83 this key regardless of the language of the kernel"""
83 this key regardless of the language of the kernel"""
84 def wrap(widget):
84 def wrap(widget):
85 l = key if key is not None else widget.__module__ + widget.__name__
85 l = key if key is not None else widget.__module__ + widget.__name__
86 Widget.widget_types[l] = widget
86 Widget.widget_types[l] = widget
87 return widget
87 return widget
88 return wrap
88 return wrap
89
89
90
90
91 class Widget(LoggingConfigurable):
91 class Widget(LoggingConfigurable):
92 #-------------------------------------------------------------------------
92 #-------------------------------------------------------------------------
93 # Class attributes
93 # Class attributes
94 #-------------------------------------------------------------------------
94 #-------------------------------------------------------------------------
95 _widget_construction_callback = None
95 _widget_construction_callback = None
96 widgets = {}
96 widgets = {}
97 widget_types = {}
97 widget_types = {}
98
98
99 @staticmethod
99 @staticmethod
100 def on_widget_constructed(callback):
100 def on_widget_constructed(callback):
101 """Registers a callback to be called when a widget is constructed.
101 """Registers a callback to be called when a widget is constructed.
102
102
103 The callback must have the following signature:
103 The callback must have the following signature:
104 callback(widget)"""
104 callback(widget)"""
105 Widget._widget_construction_callback = callback
105 Widget._widget_construction_callback = callback
106
106
107 @staticmethod
107 @staticmethod
108 def _call_widget_constructed(widget):
108 def _call_widget_constructed(widget):
109 """Static method, called when a widget is constructed."""
109 """Static method, called when a widget is constructed."""
110 if Widget._widget_construction_callback is not None and callable(Widget._widget_construction_callback):
110 if Widget._widget_construction_callback is not None and callable(Widget._widget_construction_callback):
111 Widget._widget_construction_callback(widget)
111 Widget._widget_construction_callback(widget)
112
112
113 @staticmethod
113 @staticmethod
114 def handle_comm_opened(comm, msg):
114 def handle_comm_opened(comm, msg):
115 """Static method, called when a widget is constructed."""
115 """Static method, called when a widget is constructed."""
116 widget_class = import_item(msg['content']['data']['widget_class'])
116 widget_class = import_item(msg['content']['data']['widget_class'])
117 widget = widget_class(comm=comm)
117 widget = widget_class(comm=comm)
118
118
119
119
120 #-------------------------------------------------------------------------
120 #-------------------------------------------------------------------------
121 # Traits
121 # Traits
122 #-------------------------------------------------------------------------
122 #-------------------------------------------------------------------------
123 _model_module = Unicode(None, allow_none=True, help="""A requirejs module name
123 _model_module = Unicode(None, allow_none=True, help="""A requirejs module name
124 in which to find _model_name. If empty, look in the global registry.""")
124 in which to find _model_name. If empty, look in the global registry.""")
125 _model_name = Unicode('WidgetModel', help="""Name of the backbone model
125 _model_name = Unicode('WidgetModel', help="""Name of the backbone model
126 registered in the front-end to create and sync this widget with.""")
126 registered in the front-end to create and sync this widget with.""")
127 _view_module = Unicode(help="""A requirejs module in which to find _view_name.
127 _view_module = Unicode(help="""A requirejs module in which to find _view_name.
128 If empty, look in the global registry.""", sync=True)
128 If empty, look in the global registry.""", sync=True)
129 _view_name = Unicode(None, allow_none=True, help="""Default view registered in the front-end
129 _view_name = Unicode(None, allow_none=True, help="""Default view registered in the front-end
130 to use to represent the widget.""", sync=True)
130 to use to represent the widget.""", sync=True)
131 comm = Instance('IPython.kernel.comm.Comm')
131 comm = Instance('IPython.kernel.comm.Comm')
132
132
133 msg_throttle = Int(3, sync=True, help="""Maximum number of msgs the
133 msg_throttle = Int(3, sync=True, help="""Maximum number of msgs the
134 front-end can send before receiving an idle msg from the back-end.""")
134 front-end can send before receiving an idle msg from the back-end.""")
135
135
136 version = Int(0, sync=True, help="""Widget's version""")
136 version = Int(0, sync=True, help="""Widget's version""")
137 keys = List()
137 keys = List()
138 def _keys_default(self):
138 def _keys_default(self):
139 return [name for name in self.traits(sync=True)]
139 return [name for name in self.traits(sync=True)]
140
140
141 _property_lock = Tuple((None, None))
141 _property_lock = Tuple((None, None))
142 _send_state_lock = Int(0)
142 _send_state_lock = Int(0)
143 _states_to_send = Set(allow_none=False)
143 _states_to_send = Set(allow_none=False)
144 _display_callbacks = Instance(CallbackDispatcher, ())
144 _display_callbacks = Instance(CallbackDispatcher, ())
145 _msg_callbacks = Instance(CallbackDispatcher, ())
145 _msg_callbacks = Instance(CallbackDispatcher, ())
146
146
147 #-------------------------------------------------------------------------
147 #-------------------------------------------------------------------------
148 # (Con/de)structor
148 # (Con/de)structor
149 #-------------------------------------------------------------------------
149 #-------------------------------------------------------------------------
150 def __init__(self, **kwargs):
150 def __init__(self, **kwargs):
151 """Public constructor"""
151 """Public constructor"""
152 self._model_id = kwargs.pop('model_id', None)
152 self._model_id = kwargs.pop('model_id', None)
153 super(Widget, self).__init__(**kwargs)
153 super(Widget, self).__init__(**kwargs)
154
154
155 Widget._call_widget_constructed(self)
155 Widget._call_widget_constructed(self)
156 self.open()
156 self.open()
157
157
158 def __del__(self):
158 def __del__(self):
159 """Object disposal"""
159 """Object disposal"""
160 self.close()
160 self.close()
161
161
162 #-------------------------------------------------------------------------
162 #-------------------------------------------------------------------------
163 # Properties
163 # Properties
164 #-------------------------------------------------------------------------
164 #-------------------------------------------------------------------------
165
165
166 def open(self):
166 def open(self):
167 """Open a comm to the frontend if one isn't already open."""
167 """Open a comm to the frontend if one isn't already open."""
168 if self.comm is None:
168 if self.comm is None:
169 args = dict(target_name='ipython.widget',
169 args = dict(target_name='ipython.widget',
170 data={'model_name': self._model_name,
170 data={'model_name': self._model_name,
171 'model_module': self._model_module})
171 'model_module': self._model_module})
172 if self._model_id is not None:
172 if self._model_id is not None:
173 args['comm_id'] = self._model_id
173 args['comm_id'] = self._model_id
174 self.comm = Comm(**args)
174 self.comm = Comm(**args)
175
175
176 def _comm_changed(self, name, new):
176 def _comm_changed(self, name, new):
177 """Called when the comm is changed."""
177 """Called when the comm is changed."""
178 if new is None:
178 if new is None:
179 return
179 return
180 self._model_id = self.model_id
180 self._model_id = self.model_id
181
181
182 self.comm.on_msg(self._handle_msg)
182 self.comm.on_msg(self._handle_msg)
183 Widget.widgets[self.model_id] = self
183 Widget.widgets[self.model_id] = self
184
184
185 # first update
185 # first update
186 self.send_state()
186 self.send_state()
187
187
188 @property
188 @property
189 def model_id(self):
189 def model_id(self):
190 """Gets the model id of this widget.
190 """Gets the model id of this widget.
191
191
192 If a Comm doesn't exist yet, a Comm will be created automagically."""
192 If a Comm doesn't exist yet, a Comm will be created automagically."""
193 return self.comm.comm_id
193 return self.comm.comm_id
194
194
195 #-------------------------------------------------------------------------
195 #-------------------------------------------------------------------------
196 # Methods
196 # Methods
197 #-------------------------------------------------------------------------
197 #-------------------------------------------------------------------------
198
198
199 def close(self):
199 def close(self):
200 """Close method.
200 """Close method.
201
201
202 Closes the underlying comm.
202 Closes the underlying comm.
203 When the comm is closed, all of the widget views are automatically
203 When the comm is closed, all of the widget views are automatically
204 removed from the front-end."""
204 removed from the front-end."""
205 if self.comm is not None:
205 if self.comm is not None:
206 Widget.widgets.pop(self.model_id, None)
206 Widget.widgets.pop(self.model_id, None)
207 self.comm.close()
207 self.comm.close()
208 self.comm = None
208 self.comm = None
209
209
210 def send_state(self, key=None):
210 def send_state(self, key=None):
211 """Sends the widget state, or a piece of it, to the front-end.
211 """Sends the widget state, or a piece of it, to the front-end.
212
212
213 Parameters
213 Parameters
214 ----------
214 ----------
215 key : unicode, or iterable (optional)
215 key : unicode, or iterable (optional)
216 A single property's name or iterable of property names to sync with the front-end.
216 A single property's name or iterable of property names to sync with the front-end.
217 """
217 """
218 self._send({
218 self._send({
219 "method" : "update",
219 "method" : "update",
220 "state" : self.get_state(key=key)
220 "state" : self.get_state(key=key)
221 })
221 })
222
222
223 def get_state(self, key=None):
223 def get_state(self, key=None):
224 """Gets the widget state, or a piece of it.
224 """Gets the widget state, or a piece of it.
225
225
226 Parameters
226 Parameters
227 ----------
227 ----------
228 key : unicode or iterable (optional)
228 key : unicode or iterable (optional)
229 A single property's name or iterable of property names to get.
229 A single property's name or iterable of property names to get.
230 """
230 """
231 if key is None:
231 if key is None:
232 keys = self.keys
232 keys = self.keys
233 elif isinstance(key, string_types):
233 elif isinstance(key, string_types):
234 keys = [key]
234 keys = [key]
235 elif isinstance(key, collections.Iterable):
235 elif isinstance(key, collections.Iterable):
236 keys = key
236 keys = key
237 else:
237 else:
238 raise ValueError("key must be a string, an iterable of keys, or None")
238 raise ValueError("key must be a string, an iterable of keys, or None")
239 state = {}
239 state = {}
240 for k in keys:
240 for k in keys:
241 f = self.trait_metadata(k, 'to_json', self._trait_to_json)
241 f = self.trait_metadata(k, 'to_json', self._trait_to_json)
242 value = getattr(self, k)
242 value = getattr(self, k)
243 state[k] = f(value)
243 state[k] = f(value)
244 return state
244 return state
245
245
246 def set_state(self, sync_data):
246 def set_state(self, sync_data):
247 """Called when a state is received from the front-end."""
247 """Called when a state is received from the front-end."""
248 for name in self.keys:
248 for name in self.keys:
249 if name in sync_data:
249 if name in sync_data:
250 json_value = sync_data[name]
250 json_value = sync_data[name]
251 from_json = self.trait_metadata(name, 'from_json', self._trait_from_json)
251 from_json = self.trait_metadata(name, 'from_json', self._trait_from_json)
252 with self._lock_property(name, json_value):
252 with self._lock_property(name, json_value):
253 setattr(self, name, from_json(json_value))
253 setattr(self, name, from_json(json_value))
254
254
255 def send(self, content):
255 def send(self, content):
256 """Sends a custom msg to the widget model in the front-end.
256 """Sends a custom msg to the widget model in the front-end.
257
257
258 Parameters
258 Parameters
259 ----------
259 ----------
260 content : dict
260 content : dict
261 Content of the message to send.
261 Content of the message to send.
262 """
262 """
263 self._send({"method": "custom", "content": content})
263 self._send({"method": "custom", "content": content})
264
264
265 def on_msg(self, callback, remove=False):
265 def on_msg(self, callback, remove=False):
266 """(Un)Register a custom msg receive callback.
266 """(Un)Register a custom msg receive callback.
267
267
268 Parameters
268 Parameters
269 ----------
269 ----------
270 callback: callable
270 callback: callable
271 callback will be passed two arguments when a message arrives::
271 callback will be passed two arguments when a message arrives::
272
272
273 callback(widget, content)
273 callback(widget, content)
274
274
275 remove: bool
275 remove: bool
276 True if the callback should be unregistered."""
276 True if the callback should be unregistered."""
277 self._msg_callbacks.register_callback(callback, remove=remove)
277 self._msg_callbacks.register_callback(callback, remove=remove)
278
278
279 def on_displayed(self, callback, remove=False):
279 def on_displayed(self, callback, remove=False):
280 """(Un)Register a widget displayed callback.
280 """(Un)Register a widget displayed callback.
281
281
282 Parameters
282 Parameters
283 ----------
283 ----------
284 callback: method handler
284 callback: method handler
285 Must have a signature of::
285 Must have a signature of::
286
286
287 callback(widget, **kwargs)
287 callback(widget, **kwargs)
288
288
289 kwargs from display are passed through without modification.
289 kwargs from display are passed through without modification.
290 remove: bool
290 remove: bool
291 True if the callback should be unregistered."""
291 True if the callback should be unregistered."""
292 self._display_callbacks.register_callback(callback, remove=remove)
292 self._display_callbacks.register_callback(callback, remove=remove)
293
293
294 #-------------------------------------------------------------------------
294 #-------------------------------------------------------------------------
295 # Support methods
295 # Support methods
296 #-------------------------------------------------------------------------
296 #-------------------------------------------------------------------------
297 @contextmanager
297 @contextmanager
298 def _lock_property(self, key, value):
298 def _lock_property(self, key, value):
299 """Lock a property-value pair.
299 """Lock a property-value pair.
300
300
301 The value should be the JSON state of the property.
301 The value should be the JSON state of the property.
302
302
303 NOTE: This, in addition to the single lock for all state changes, is
303 NOTE: This, in addition to the single lock for all state changes, is
304 flawed. In the future we may want to look into buffering state changes
304 flawed. In the future we may want to look into buffering state changes
305 back to the front-end."""
305 back to the front-end."""
306 self._property_lock = (key, value)
306 self._property_lock = (key, value)
307 try:
307 try:
308 yield
308 yield
309 finally:
309 finally:
310 self._property_lock = (None, None)
310 self._property_lock = (None, None)
311
311
312 @contextmanager
312 @contextmanager
313 def hold_sync(self):
313 def hold_sync(self):
314 """Hold syncing any state until the context manager is released"""
314 """Hold syncing any state until the context manager is released"""
315 # We increment a value so that this can be nested. Syncing will happen when
315 # We increment a value so that this can be nested. Syncing will happen when
316 # all levels have been released.
316 # all levels have been released.
317 self._send_state_lock += 1
317 self._send_state_lock += 1
318 try:
318 try:
319 yield
319 yield
320 finally:
320 finally:
321 self._send_state_lock -=1
321 self._send_state_lock -=1
322 if self._send_state_lock == 0:
322 if self._send_state_lock == 0:
323 self.send_state(self._states_to_send)
323 self.send_state(self._states_to_send)
324 self._states_to_send.clear()
324 self._states_to_send.clear()
325
325
326 def _should_send_property(self, key, value):
326 def _should_send_property(self, key, value):
327 """Check the property lock (property_lock)"""
327 """Check the property lock (property_lock)"""
328 to_json = self.trait_metadata(key, 'to_json', self._trait_to_json)
328 to_json = self.trait_metadata(key, 'to_json', self._trait_to_json)
329 if (key == self._property_lock[0]
329 if (key == self._property_lock[0]
330 and to_json(value) == self._property_lock[1]):
330 and to_json(value) == self._property_lock[1]):
331 return False
331 return False
332 elif self._send_state_lock > 0:
332 elif self._send_state_lock > 0:
333 self._states_to_send.add(key)
333 self._states_to_send.add(key)
334 return False
334 return False
335 else:
335 else:
336 return True
336 return True
337
337
338 # Event handlers
338 # Event handlers
339 @_show_traceback
339 @_show_traceback
340 def _handle_msg(self, msg):
340 def _handle_msg(self, msg):
341 """Called when a msg is received from the front-end"""
341 """Called when a msg is received from the front-end"""
342 data = msg['content']['data']
342 data = msg['content']['data']
343 method = data['method']
343 method = data['method']
344
344
345 # Handle backbone sync methods CREATE, PATCH, and UPDATE all in one.
345 # Handle backbone sync methods CREATE, PATCH, and UPDATE all in one.
346 if method == 'backbone':
346 if method == 'backbone':
347 if 'sync_data' in data:
347 if 'sync_data' in data:
348 sync_data = data['sync_data']
348 sync_data = data['sync_data']
349 self.set_state(sync_data) # handles all methods
349 self.set_state(sync_data) # handles all methods
350
350
351 # Handle a state request.
351 # Handle a state request.
352 elif method == 'request_state':
352 elif method == 'request_state':
353 self.send_state()
353 self.send_state()
354
354
355 # Handle a custom msg from the front-end.
355 # Handle a custom msg from the front-end.
356 elif method == 'custom':
356 elif method == 'custom':
357 if 'content' in data:
357 if 'content' in data:
358 self._handle_custom_msg(data['content'])
358 self._handle_custom_msg(data['content'])
359
359
360 # Catch remainder.
360 # Catch remainder.
361 else:
361 else:
362 self.log.error('Unknown front-end to back-end widget msg with method "%s"' % method)
362 self.log.error('Unknown front-end to back-end widget msg with method "%s"' % method)
363
363
364 def _handle_custom_msg(self, content):
364 def _handle_custom_msg(self, content):
365 """Called when a custom msg is received."""
365 """Called when a custom msg is received."""
366 self._msg_callbacks(self, content)
366 self._msg_callbacks(self, content)
367
367
368 def _notify_trait(self, name, old_value, new_value):
368 def _notify_trait(self, name, old_value, new_value):
369 """Called when a property has been changed."""
369 """Called when a property has been changed."""
370 # Trigger default traitlet callback machinery. This allows any user
370 # Trigger default traitlet callback machinery. This allows any user
371 # registered validation to be processed prior to allowing the widget
371 # registered validation to be processed prior to allowing the widget
372 # machinery to handle the state.
372 # machinery to handle the state.
373 LoggingConfigurable._notify_trait(self, name, old_value, new_value)
373 LoggingConfigurable._notify_trait(self, name, old_value, new_value)
374
374
375 # Send the state after the user registered callbacks for trait changes
375 # Send the state after the user registered callbacks for trait changes
376 # have all fired (allows for user to validate values).
376 # have all fired (allows for user to validate values).
377 if self.comm is not None and name in self.keys:
377 if self.comm is not None and name in self.keys:
378 # Make sure this isn't information that the front-end just sent us.
378 # Make sure this isn't information that the front-end just sent us.
379 if self._should_send_property(name, new_value):
379 if self._should_send_property(name, new_value):
380 # Send new state to front-end
380 # Send new state to front-end
381 self.send_state(key=name)
381 self.send_state(key=name)
382
382
383 def _handle_displayed(self, **kwargs):
383 def _handle_displayed(self, **kwargs):
384 """Called when a view has been displayed for this widget instance"""
384 """Called when a view has been displayed for this widget instance"""
385 self._display_callbacks(self, **kwargs)
385 self._display_callbacks(self, **kwargs)
386
386
387 def _trait_to_json(self, x):
387 def _trait_to_json(self, x):
388 """Convert a trait value to json
388 """Convert a trait value to json
389
389
390 Traverse lists/tuples and dicts and serialize their values as well.
390 Traverse lists/tuples and dicts and serialize their values as well.
391 Replace any widgets with their model_id
391 Replace any widgets with their model_id
392 """
392 """
393 if isinstance(x, dict):
393 if isinstance(x, dict):
394 return {k: self._trait_to_json(v) for k, v in x.items()}
394 return {k: self._trait_to_json(v) for k, v in x.items()}
395 elif isinstance(x, (list, tuple)):
395 elif isinstance(x, (list, tuple)):
396 return [self._trait_to_json(v) for v in x]
396 return [self._trait_to_json(v) for v in x]
397 elif isinstance(x, Widget):
397 elif isinstance(x, Widget):
398 return "IPY_MODEL_" + x.model_id
398 return "IPY_MODEL_" + x.model_id
399 else:
399 else:
400 return x # Value must be JSON-able
400 return x # Value must be JSON-able
401
401
402 def _trait_from_json(self, x):
402 def _trait_from_json(self, x):
403 """Convert json values to objects
403 """Convert json values to objects
404
404
405 Replace any strings representing valid model id values to Widget references.
405 Replace any strings representing valid model id values to Widget references.
406 """
406 """
407 if isinstance(x, dict):
407 if isinstance(x, dict):
408 return {k: self._trait_from_json(v) for k, v in x.items()}
408 return {k: self._trait_from_json(v) for k, v in x.items()}
409 elif isinstance(x, (list, tuple)):
409 elif isinstance(x, (list, tuple)):
410 return [self._trait_from_json(v) for v in x]
410 return [self._trait_from_json(v) for v in x]
411 elif isinstance(x, string_types) and x.startswith('IPY_MODEL_') and x[10:] in Widget.widgets:
411 elif isinstance(x, string_types) and x.startswith('IPY_MODEL_') and x[10:] in Widget.widgets:
412 # we want to support having child widgets at any level in a hierarchy
412 # we want to support having child widgets at any level in a hierarchy
413 # trusting that a widget UUID will not appear out in the wild
413 # trusting that a widget UUID will not appear out in the wild
414 return Widget.widgets[x[10:]]
414 return Widget.widgets[x[10:]]
415 else:
415 else:
416 return x
416 return x
417
417
418 def _ipython_display_(self, **kwargs):
418 def _ipython_display_(self, **kwargs):
419 """Called when `IPython.display.display` is called on the widget."""
419 """Called when `IPython.display.display` is called on the widget."""
420 # Show view.
420 # Show view.
421 if self._view_name is not None:
421 if self._view_name is not None:
422 self._send({"method": "display"})
422 self._send({"method": "display"})
423 self._handle_displayed(**kwargs)
423 self._handle_displayed(**kwargs)
424
424
425 def _send(self, msg):
425 def _send(self, msg):
426 """Sends a message to the model in the front-end."""
426 """Sends a message to the model in the front-end."""
427 self.comm.send(msg)
427 self.comm.send(msg)
428
428
429
429
430 class DOMWidget(Widget):
430 class DOMWidget(Widget):
431 visible = Bool(True, help="Whether the widget is visible.", sync=True)
431 visible = Bool(True, help="Whether the widget is visible.", sync=True)
432 _css = Tuple(sync=True, help="CSS property list: (selector, key, value)")
432 _css = Tuple(sync=True, help="CSS property list: (selector, key, value)")
433 _dom_classes = Tuple(sync=True, help="DOM classes applied to widget.$el.")
433 _dom_classes = Tuple(sync=True, help="DOM classes applied to widget.$el.")
434
434
435 width = CUnicode(sync=True)
435 width = CUnicode(sync=True)
436 height = CUnicode(sync=True)
436 height = CUnicode(sync=True)
437 padding = CUnicode(sync=True)
437 # A default padding of 2.5 px makes the widgets look nice when displayed inline.
438 padding = CUnicode("2.5px", sync=True)
438 margin = CUnicode(sync=True)
439 margin = CUnicode(sync=True)
439
440
440 color = Unicode(sync=True)
441 color = Unicode(sync=True)
441 background_color = Unicode(sync=True)
442 background_color = Unicode(sync=True)
442 border_color = Unicode(sync=True)
443 border_color = Unicode(sync=True)
443
444
444 border_width = CUnicode(sync=True)
445 border_width = CUnicode(sync=True)
445 border_radius = CUnicode(sync=True)
446 border_radius = CUnicode(sync=True)
446 border_style = CaselessStrEnum(values=[ # http://www.w3schools.com/cssref/pr_border-style.asp
447 border_style = CaselessStrEnum(values=[ # http://www.w3schools.com/cssref/pr_border-style.asp
447 'none',
448 'none',
448 'hidden',
449 'hidden',
449 'dotted',
450 'dotted',
450 'dashed',
451 'dashed',
451 'solid',
452 'solid',
452 'double',
453 'double',
453 'groove',
454 'groove',
454 'ridge',
455 'ridge',
455 'inset',
456 'inset',
456 'outset',
457 'outset',
457 'initial',
458 'initial',
458 'inherit', ''],
459 'inherit', ''],
459 default_value='', sync=True)
460 default_value='', sync=True)
460
461
461 font_style = CaselessStrEnum(values=[ # http://www.w3schools.com/cssref/pr_font_font-style.asp
462 font_style = CaselessStrEnum(values=[ # http://www.w3schools.com/cssref/pr_font_font-style.asp
462 'normal',
463 'normal',
463 'italic',
464 'italic',
464 'oblique',
465 'oblique',
465 'initial',
466 'initial',
466 'inherit', ''],
467 'inherit', ''],
467 default_value='', sync=True)
468 default_value='', sync=True)
468 font_weight = CaselessStrEnum(values=[ # http://www.w3schools.com/cssref/pr_font_weight.asp
469 font_weight = CaselessStrEnum(values=[ # http://www.w3schools.com/cssref/pr_font_weight.asp
469 'normal',
470 'normal',
470 'bold',
471 'bold',
471 'bolder',
472 'bolder',
472 'lighter',
473 'lighter',
473 'initial',
474 'initial',
474 'inherit', ''] + [str(100 * (i+1)) for i in range(9)],
475 'inherit', ''] + [str(100 * (i+1)) for i in range(9)],
475 default_value='', sync=True)
476 default_value='', sync=True)
476 font_size = CUnicode(sync=True)
477 font_size = CUnicode(sync=True)
477 font_family = Unicode(sync=True)
478 font_family = Unicode(sync=True)
478
479
479 def __init__(self, *pargs, **kwargs):
480 def __init__(self, *pargs, **kwargs):
480 super(DOMWidget, self).__init__(*pargs, **kwargs)
481 super(DOMWidget, self).__init__(*pargs, **kwargs)
481
482
482 def _validate_border(name, old, new):
483 def _validate_border(name, old, new):
483 if new is not None and new != '':
484 if new is not None and new != '':
484 if name != 'border_width' and not self.border_width:
485 if name != 'border_width' and not self.border_width:
485 self.border_width = 1
486 self.border_width = 1
486 if name != 'border_style' and self.border_style == '':
487 if name != 'border_style' and self.border_style == '':
487 self.border_style = 'solid'
488 self.border_style = 'solid'
488 self.on_trait_change(_validate_border, ['border_width', 'border_style', 'border_color'])
489 self.on_trait_change(_validate_border, ['border_width', 'border_style', 'border_color'])
General Comments 0
You need to be logged in to leave comments. Login now