##// END OF EJS Templates
fix more style consistencies
Paul Ivanov -
Show More
@@ -1,53 +1,59
1 div.text_cell {
1 div.text_cell {
2 padding: 5px 5px 5px 0px;
2 padding: 5px 5px 5px 0px;
3 .hbox();
3 .hbox();
4 }
4 }
5 @media (max-width: 480px) {
5 @media (max-width: 480px) {
6 // remove prompt indentation on small screens
6 // remove prompt indentation on small screens
7 div.text_cell > div.prompt {
7 div.text_cell > div.prompt {
8 display: none;
8 display: none;
9 }
9 }
10 }
10 }
11
11
12 div.text_cell_render {
12 div.text_cell_render {
13 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
13 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
14 outline: none;
14 outline: none;
15 resize: none;
15 resize: none;
16 width: inherit;
16 width: inherit;
17 border-style: none;
17 border-style: none;
18 padding: 0.5em 0.5em 0.5em @code_padding;
18 padding: 0.5em 0.5em 0.5em @code_padding;
19 color: @text-color;
19 color: @text-color;
20 }
20 }
21
21
22 a.anchor-link:link {
22 a.anchor-link:link {
23 text-decoration: none;
23 text-decoration: none;
24 padding: 0px 20px;
24 padding: 0px 20px;
25 visibility: hidden;
25 visibility: hidden;
26 }
26 }
27
27
28 h1,h2,h3,h4,h5,h6 {
28 h1,h2,h3,h4,h5,h6 {
29 &:hover .anchor-link {
29 &:hover .anchor-link {
30 visibility: visible;
30 visibility: visible;
31 }
31 }
32 }
32 }
33
33
34 div.cell.text_cell.rendered {
34 div.cell.text_cell.rendered {
35 padding: 0px;
35 padding: 0px;
36 }
36 }
37
37
38 .cm-s-heading-1,
38 .cm-s-heading-1,
39 .cm-s-heading-2,
39 .cm-s-heading-2,
40 .cm-s-heading-3,
40 .cm-s-heading-3,
41 .cm-s-heading-4,
41 .cm-s-heading-4,
42 .cm-s-heading-5,
42 .cm-s-heading-5,
43 .cm-s-heading-6 {
43 .cm-s-heading-6 {
44 font-weight: bold;
44 font-weight: bold;
45 font-family: @font-family-sans-serif;
45 font-family: @font-family-sans-serif;
46 }
46 }
47
47
48 .cm-s-heading-1 { font-size:150%; }
48 .cm-s-heading-1 { font-size:150%; }
49 .cm-s-heading-2 { font-size: 130%; }
49 .cm-s-heading-2 { font-size: 130%; }
50 .cm-s-heading-3 { font-size: 120%; }
50 .cm-s-heading-3 { font-size: 120%; }
51 .cm-s-heading-4 { font-size: 110%; }
51 .cm-s-heading-4 { font-size: 110%; }
52 .cm-s-heading-5 { font-size: 100%; }
52 .cm-s-heading-5 {
53 .cm-s-heading-6 { font-size: 90%; }
53 font-size: 100%;
54 font-style: italic;
55 }
56 .cm-s-heading-6 {
57 font-size: 90%;
58 font-style: italic;
59 }
@@ -1,1774 +1,1776
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.align-start,
190 .hbox.align-start,
191 .vbox.align-start,
191 .vbox.align-start,
192 .align-start {
192 .align-start {
193 /* Old browsers */
193 /* Old browsers */
194 -webkit-box-align: start;
194 -webkit-box-align: start;
195 -moz-box-align: start;
195 -moz-box-align: start;
196 box-align: start;
196 box-align: start;
197 /* Modern browsers */
197 /* Modern browsers */
198 align-items: flex-start;
198 align-items: flex-start;
199 }
199 }
200 .hbox.align-end,
200 .hbox.align-end,
201 .vbox.align-end,
201 .vbox.align-end,
202 .align-end {
202 .align-end {
203 /* Old browsers */
203 /* Old browsers */
204 -webkit-box-align: end;
204 -webkit-box-align: end;
205 -moz-box-align: end;
205 -moz-box-align: end;
206 box-align: end;
206 box-align: end;
207 /* Modern browsers */
207 /* Modern browsers */
208 align-items: flex-end;
208 align-items: flex-end;
209 }
209 }
210 .hbox.align-center,
210 .hbox.align-center,
211 .vbox.align-center,
211 .vbox.align-center,
212 .align-center {
212 .align-center {
213 /* Old browsers */
213 /* Old browsers */
214 -webkit-box-align: center;
214 -webkit-box-align: center;
215 -moz-box-align: center;
215 -moz-box-align: center;
216 box-align: center;
216 box-align: center;
217 /* Modern browsers */
217 /* Modern browsers */
218 align-items: center;
218 align-items: center;
219 }
219 }
220 div.error {
220 div.error {
221 margin: 2em;
221 margin: 2em;
222 text-align: center;
222 text-align: center;
223 }
223 }
224 div.error > h1 {
224 div.error > h1 {
225 font-size: 500%;
225 font-size: 500%;
226 line-height: normal;
226 line-height: normal;
227 }
227 }
228 div.error > p {
228 div.error > p {
229 font-size: 200%;
229 font-size: 200%;
230 line-height: normal;
230 line-height: normal;
231 }
231 }
232 div.traceback-wrapper {
232 div.traceback-wrapper {
233 text-align: left;
233 text-align: left;
234 max-width: 800px;
234 max-width: 800px;
235 margin: auto;
235 margin: auto;
236 }
236 }
237 /*!
237 /*!
238 *
238 *
239 * IPython notebook
239 * IPython notebook
240 *
240 *
241 */
241 */
242 /* CSS font colors for translated ANSI colors. */
242 /* CSS font colors for translated ANSI colors. */
243 .ansibold {
243 .ansibold {
244 font-weight: bold;
244 font-weight: bold;
245 }
245 }
246 /* use dark versions for foreground, to improve visibility */
246 /* use dark versions for foreground, to improve visibility */
247 .ansiblack {
247 .ansiblack {
248 color: black;
248 color: black;
249 }
249 }
250 .ansired {
250 .ansired {
251 color: darkred;
251 color: darkred;
252 }
252 }
253 .ansigreen {
253 .ansigreen {
254 color: darkgreen;
254 color: darkgreen;
255 }
255 }
256 .ansiyellow {
256 .ansiyellow {
257 color: brown;
257 color: brown;
258 }
258 }
259 .ansiblue {
259 .ansiblue {
260 color: darkblue;
260 color: darkblue;
261 }
261 }
262 .ansipurple {
262 .ansipurple {
263 color: darkviolet;
263 color: darkviolet;
264 }
264 }
265 .ansicyan {
265 .ansicyan {
266 color: steelblue;
266 color: steelblue;
267 }
267 }
268 .ansigray {
268 .ansigray {
269 color: gray;
269 color: gray;
270 }
270 }
271 /* and light for background, for the same reason */
271 /* and light for background, for the same reason */
272 .ansibgblack {
272 .ansibgblack {
273 background-color: black;
273 background-color: black;
274 }
274 }
275 .ansibgred {
275 .ansibgred {
276 background-color: red;
276 background-color: red;
277 }
277 }
278 .ansibggreen {
278 .ansibggreen {
279 background-color: green;
279 background-color: green;
280 }
280 }
281 .ansibgyellow {
281 .ansibgyellow {
282 background-color: yellow;
282 background-color: yellow;
283 }
283 }
284 .ansibgblue {
284 .ansibgblue {
285 background-color: blue;
285 background-color: blue;
286 }
286 }
287 .ansibgpurple {
287 .ansibgpurple {
288 background-color: magenta;
288 background-color: magenta;
289 }
289 }
290 .ansibgcyan {
290 .ansibgcyan {
291 background-color: cyan;
291 background-color: cyan;
292 }
292 }
293 .ansibggray {
293 .ansibggray {
294 background-color: gray;
294 background-color: gray;
295 }
295 }
296 div.cell {
296 div.cell {
297 border: 1px solid transparent;
297 border: 1px solid transparent;
298 /* Old browsers */
298 /* Old browsers */
299 display: -webkit-box;
299 display: -webkit-box;
300 -webkit-box-orient: vertical;
300 -webkit-box-orient: vertical;
301 -webkit-box-align: stretch;
301 -webkit-box-align: stretch;
302 display: -moz-box;
302 display: -moz-box;
303 -moz-box-orient: vertical;
303 -moz-box-orient: vertical;
304 -moz-box-align: stretch;
304 -moz-box-align: stretch;
305 display: box;
305 display: box;
306 box-orient: vertical;
306 box-orient: vertical;
307 box-align: stretch;
307 box-align: stretch;
308 /* Modern browsers */
308 /* Modern browsers */
309 display: flex;
309 display: flex;
310 flex-direction: column;
310 flex-direction: column;
311 align-items: stretch;
311 align-items: stretch;
312 /* Old browsers */
312 /* Old browsers */
313 -webkit-box-flex: 0;
313 -webkit-box-flex: 0;
314 -moz-box-flex: 0;
314 -moz-box-flex: 0;
315 box-flex: 0;
315 box-flex: 0;
316 /* Modern browsers */
316 /* Modern browsers */
317 flex: none;
317 flex: none;
318 border-radius: 4px;
318 border-radius: 4px;
319 border-width: thin;
319 border-width: thin;
320 border-style: solid;
320 border-style: solid;
321 }
321 }
322 div.cell.selected {
322 div.cell.selected {
323 border-color: #ababab;
323 border-color: #ababab;
324 }
324 }
325 div.cell.edit_mode {
325 div.cell.edit_mode {
326 border-color: green;
326 border-color: green;
327 }
327 }
328 div.cell {
328 div.cell {
329 width: 100%;
329 width: 100%;
330 padding: 5px 5px 5px 0px;
330 padding: 5px 5px 5px 0px;
331 /* This acts as a spacer between cells, that is outside the border */
331 /* This acts as a spacer between cells, that is outside the border */
332 margin: 0px;
332 margin: 0px;
333 outline: none;
333 outline: none;
334 }
334 }
335 div.prompt {
335 div.prompt {
336 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
336 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
337 min-width: 15ex;
337 min-width: 15ex;
338 /* This padding is tuned to match the padding on the CodeMirror editor. */
338 /* This padding is tuned to match the padding on the CodeMirror editor. */
339 padding: 0.4em;
339 padding: 0.4em;
340 margin: 0px;
340 margin: 0px;
341 font-family: monospace;
341 font-family: monospace;
342 text-align: right;
342 text-align: right;
343 /* This has to match that of the the CodeMirror class line-height below */
343 /* This has to match that of the the CodeMirror class line-height below */
344 line-height: 1.21429em;
344 line-height: 1.21429em;
345 }
345 }
346 @media (max-width: 480px) {
346 @media (max-width: 480px) {
347 div.prompt {
347 div.prompt {
348 text-align: left;
348 text-align: left;
349 }
349 }
350 }
350 }
351 div.inner_cell {
351 div.inner_cell {
352 /* Old browsers */
352 /* Old browsers */
353 display: -webkit-box;
353 display: -webkit-box;
354 -webkit-box-orient: vertical;
354 -webkit-box-orient: vertical;
355 -webkit-box-align: stretch;
355 -webkit-box-align: stretch;
356 display: -moz-box;
356 display: -moz-box;
357 -moz-box-orient: vertical;
357 -moz-box-orient: vertical;
358 -moz-box-align: stretch;
358 -moz-box-align: stretch;
359 display: box;
359 display: box;
360 box-orient: vertical;
360 box-orient: vertical;
361 box-align: stretch;
361 box-align: stretch;
362 /* Modern browsers */
362 /* Modern browsers */
363 display: flex;
363 display: flex;
364 flex-direction: column;
364 flex-direction: column;
365 align-items: stretch;
365 align-items: stretch;
366 /* Old browsers */
366 /* Old browsers */
367 -webkit-box-flex: 0;
367 -webkit-box-flex: 0;
368 -moz-box-flex: 0;
368 -moz-box-flex: 0;
369 box-flex: 0;
369 box-flex: 0;
370 /* Modern browsers */
370 /* Modern browsers */
371 flex: none;
371 flex: none;
372 /* Old browsers */
372 /* Old browsers */
373 -webkit-box-flex: 1;
373 -webkit-box-flex: 1;
374 -moz-box-flex: 1;
374 -moz-box-flex: 1;
375 box-flex: 1;
375 box-flex: 1;
376 /* Modern browsers */
376 /* Modern browsers */
377 flex: 1;
377 flex: 1;
378 }
378 }
379 /* input_area and input_prompt must match in top border and margin for alignment */
379 /* input_area and input_prompt must match in top border and margin for alignment */
380 div.input_area {
380 div.input_area {
381 border: 1px solid #cfcfcf;
381 border: 1px solid #cfcfcf;
382 border-radius: 4px;
382 border-radius: 4px;
383 background: #f7f7f7;
383 background: #f7f7f7;
384 line-height: 1.21429em;
384 line-height: 1.21429em;
385 }
385 }
386 /* This is needed so that empty prompt areas can collapse to zero height when there
386 /* This is needed so that empty prompt areas can collapse to zero height when there
387 is no content in the output_subarea and the prompt. The main purpose of this is
387 is no content in the output_subarea and the prompt. The main purpose of this is
388 to make sure that empty JavaScript output_subareas have no height. */
388 to make sure that empty JavaScript output_subareas have no height. */
389 div.prompt:empty {
389 div.prompt:empty {
390 padding-top: 0;
390 padding-top: 0;
391 padding-bottom: 0;
391 padding-bottom: 0;
392 }
392 }
393 /* any special styling for code cells that are currently running goes here */
393 /* any special styling for code cells that are currently running goes here */
394 div.input {
394 div.input {
395 page-break-inside: avoid;
395 page-break-inside: avoid;
396 /* Old browsers */
396 /* Old browsers */
397 display: -webkit-box;
397 display: -webkit-box;
398 -webkit-box-orient: horizontal;
398 -webkit-box-orient: horizontal;
399 -webkit-box-align: stretch;
399 -webkit-box-align: stretch;
400 display: -moz-box;
400 display: -moz-box;
401 -moz-box-orient: horizontal;
401 -moz-box-orient: horizontal;
402 -moz-box-align: stretch;
402 -moz-box-align: stretch;
403 display: box;
403 display: box;
404 box-orient: horizontal;
404 box-orient: horizontal;
405 box-align: stretch;
405 box-align: stretch;
406 /* Modern browsers */
406 /* Modern browsers */
407 display: flex;
407 display: flex;
408 flex-direction: row;
408 flex-direction: row;
409 align-items: stretch;
409 align-items: stretch;
410 /* Old browsers */
410 /* Old browsers */
411 -webkit-box-flex: 0;
411 -webkit-box-flex: 0;
412 -moz-box-flex: 0;
412 -moz-box-flex: 0;
413 box-flex: 0;
413 box-flex: 0;
414 /* Modern browsers */
414 /* Modern browsers */
415 flex: none;
415 flex: none;
416 }
416 }
417 @media (max-width: 480px) {
417 @media (max-width: 480px) {
418 div.input {
418 div.input {
419 /* Old browsers */
419 /* Old browsers */
420 display: -webkit-box;
420 display: -webkit-box;
421 -webkit-box-orient: vertical;
421 -webkit-box-orient: vertical;
422 -webkit-box-align: stretch;
422 -webkit-box-align: stretch;
423 display: -moz-box;
423 display: -moz-box;
424 -moz-box-orient: vertical;
424 -moz-box-orient: vertical;
425 -moz-box-align: stretch;
425 -moz-box-align: stretch;
426 display: box;
426 display: box;
427 box-orient: vertical;
427 box-orient: vertical;
428 box-align: stretch;
428 box-align: stretch;
429 /* Modern browsers */
429 /* Modern browsers */
430 display: flex;
430 display: flex;
431 flex-direction: column;
431 flex-direction: column;
432 align-items: stretch;
432 align-items: stretch;
433 /* Old browsers */
433 /* Old browsers */
434 -webkit-box-flex: 0;
434 -webkit-box-flex: 0;
435 -moz-box-flex: 0;
435 -moz-box-flex: 0;
436 box-flex: 0;
436 box-flex: 0;
437 /* Modern browsers */
437 /* Modern browsers */
438 flex: none;
438 flex: none;
439 }
439 }
440 }
440 }
441 /* input_area and input_prompt must match in top border and margin for alignment */
441 /* input_area and input_prompt must match in top border and margin for alignment */
442 div.input_prompt {
442 div.input_prompt {
443 color: #000080;
443 color: #000080;
444 border-top: 1px solid transparent;
444 border-top: 1px solid transparent;
445 }
445 }
446 div.input_area > div.highlight {
446 div.input_area > div.highlight {
447 margin: 0.4em;
447 margin: 0.4em;
448 border: none;
448 border: none;
449 padding: 0px;
449 padding: 0px;
450 background-color: transparent;
450 background-color: transparent;
451 }
451 }
452 div.input_area > div.highlight > pre {
452 div.input_area > div.highlight > pre {
453 margin: 0px;
453 margin: 0px;
454 border: none;
454 border: none;
455 padding: 0px;
455 padding: 0px;
456 background-color: transparent;
456 background-color: transparent;
457 }
457 }
458 /* The following gets added to the <head> if it is detected that the user has a
458 /* The following gets added to the <head> if it is detected that the user has a
459 * monospace font with inconsistent normal/bold/italic height. See
459 * monospace font with inconsistent normal/bold/italic height. See
460 * notebookmain.js. Such fonts will have keywords vertically offset with
460 * notebookmain.js. Such fonts will have keywords vertically offset with
461 * respect to the rest of the text. The user should select a better font.
461 * respect to the rest of the text. The user should select a better font.
462 * See: https://github.com/ipython/ipython/issues/1503
462 * See: https://github.com/ipython/ipython/issues/1503
463 *
463 *
464 * .CodeMirror span {
464 * .CodeMirror span {
465 * vertical-align: bottom;
465 * vertical-align: bottom;
466 * }
466 * }
467 */
467 */
468 .CodeMirror {
468 .CodeMirror {
469 line-height: 1.21429em;
469 line-height: 1.21429em;
470 /* Changed from 1em to our global default */
470 /* Changed from 1em to our global default */
471 height: auto;
471 height: auto;
472 /* Changed to auto to autogrow */
472 /* Changed to auto to autogrow */
473 background: none;
473 background: none;
474 /* Changed from white to allow our bg to show through */
474 /* Changed from white to allow our bg to show through */
475 }
475 }
476 .CodeMirror-scroll {
476 .CodeMirror-scroll {
477 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
477 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
478 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
478 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
479 overflow-y: hidden;
479 overflow-y: hidden;
480 overflow-x: auto;
480 overflow-x: auto;
481 }
481 }
482 .CodeMirror-lines {
482 .CodeMirror-lines {
483 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
483 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
484 /* we have set a different line-height and want this to scale with that. */
484 /* we have set a different line-height and want this to scale with that. */
485 padding: 0.4em;
485 padding: 0.4em;
486 }
486 }
487 .CodeMirror-linenumber {
487 .CodeMirror-linenumber {
488 padding: 0 8px 0 4px;
488 padding: 0 8px 0 4px;
489 }
489 }
490 .CodeMirror-gutters {
490 .CodeMirror-gutters {
491 border-bottom-left-radius: 4px;
491 border-bottom-left-radius: 4px;
492 border-top-left-radius: 4px;
492 border-top-left-radius: 4px;
493 }
493 }
494 .CodeMirror pre {
494 .CodeMirror pre {
495 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
495 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
496 /* .CodeMirror-lines */
496 /* .CodeMirror-lines */
497 padding: 0;
497 padding: 0;
498 border: 0;
498 border: 0;
499 border-radius: 0;
499 border-radius: 0;
500 }
500 }
501 .CodeMirror-vscrollbar,
501 .CodeMirror-vscrollbar,
502 .CodeMirror-hscrollbar {
502 .CodeMirror-hscrollbar {
503 display: none !important;
503 display: none !important;
504 }
504 }
505 /*
505 /*
506
506
507 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
507 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
508 Adapted from GitHub theme
508 Adapted from GitHub theme
509
509
510 */
510 */
511 pre code {
511 pre code {
512 display: block;
512 display: block;
513 padding: 0.5em;
513 padding: 0.5em;
514 }
514 }
515 .highlight-base,
515 .highlight-base,
516 pre code,
516 pre code,
517 pre .subst,
517 pre .subst,
518 pre .tag .title,
518 pre .tag .title,
519 pre .lisp .title,
519 pre .lisp .title,
520 pre .clojure .built_in,
520 pre .clojure .built_in,
521 pre .nginx .title {
521 pre .nginx .title {
522 color: black;
522 color: black;
523 }
523 }
524 .highlight-string,
524 .highlight-string,
525 pre .string,
525 pre .string,
526 pre .constant,
526 pre .constant,
527 pre .parent,
527 pre .parent,
528 pre .tag .value,
528 pre .tag .value,
529 pre .rules .value,
529 pre .rules .value,
530 pre .rules .value .number,
530 pre .rules .value .number,
531 pre .preprocessor,
531 pre .preprocessor,
532 pre .ruby .symbol,
532 pre .ruby .symbol,
533 pre .ruby .symbol .string,
533 pre .ruby .symbol .string,
534 pre .aggregate,
534 pre .aggregate,
535 pre .template_tag,
535 pre .template_tag,
536 pre .django .variable,
536 pre .django .variable,
537 pre .smalltalk .class,
537 pre .smalltalk .class,
538 pre .addition,
538 pre .addition,
539 pre .flow,
539 pre .flow,
540 pre .stream,
540 pre .stream,
541 pre .bash .variable,
541 pre .bash .variable,
542 pre .apache .tag,
542 pre .apache .tag,
543 pre .apache .cbracket,
543 pre .apache .cbracket,
544 pre .tex .command,
544 pre .tex .command,
545 pre .tex .special,
545 pre .tex .special,
546 pre .erlang_repl .function_or_atom,
546 pre .erlang_repl .function_or_atom,
547 pre .markdown .header {
547 pre .markdown .header {
548 color: #BA2121;
548 color: #BA2121;
549 }
549 }
550 .highlight-comment,
550 .highlight-comment,
551 pre .comment,
551 pre .comment,
552 pre .annotation,
552 pre .annotation,
553 pre .template_comment,
553 pre .template_comment,
554 pre .diff .header,
554 pre .diff .header,
555 pre .chunk,
555 pre .chunk,
556 pre .markdown .blockquote {
556 pre .markdown .blockquote {
557 color: #408080;
557 color: #408080;
558 font-style: italic;
558 font-style: italic;
559 }
559 }
560 .highlight-number,
560 .highlight-number,
561 pre .number,
561 pre .number,
562 pre .date,
562 pre .date,
563 pre .regexp,
563 pre .regexp,
564 pre .literal,
564 pre .literal,
565 pre .smalltalk .symbol,
565 pre .smalltalk .symbol,
566 pre .smalltalk .char,
566 pre .smalltalk .char,
567 pre .go .constant,
567 pre .go .constant,
568 pre .change,
568 pre .change,
569 pre .markdown .bullet,
569 pre .markdown .bullet,
570 pre .markdown .link_url {
570 pre .markdown .link_url {
571 color: #080;
571 color: #080;
572 }
572 }
573 pre .label,
573 pre .label,
574 pre .javadoc,
574 pre .javadoc,
575 pre .ruby .string,
575 pre .ruby .string,
576 pre .decorator,
576 pre .decorator,
577 pre .filter .argument,
577 pre .filter .argument,
578 pre .localvars,
578 pre .localvars,
579 pre .array,
579 pre .array,
580 pre .attr_selector,
580 pre .attr_selector,
581 pre .important,
581 pre .important,
582 pre .pseudo,
582 pre .pseudo,
583 pre .pi,
583 pre .pi,
584 pre .doctype,
584 pre .doctype,
585 pre .deletion,
585 pre .deletion,
586 pre .envvar,
586 pre .envvar,
587 pre .shebang,
587 pre .shebang,
588 pre .apache .sqbracket,
588 pre .apache .sqbracket,
589 pre .nginx .built_in,
589 pre .nginx .built_in,
590 pre .tex .formula,
590 pre .tex .formula,
591 pre .erlang_repl .reserved,
591 pre .erlang_repl .reserved,
592 pre .prompt,
592 pre .prompt,
593 pre .markdown .link_label,
593 pre .markdown .link_label,
594 pre .vhdl .attribute,
594 pre .vhdl .attribute,
595 pre .clojure .attribute,
595 pre .clojure .attribute,
596 pre .coffeescript .property {
596 pre .coffeescript .property {
597 color: #8888ff;
597 color: #8888ff;
598 }
598 }
599 .highlight-keyword,
599 .highlight-keyword,
600 pre .keyword,
600 pre .keyword,
601 pre .id,
601 pre .id,
602 pre .phpdoc,
602 pre .phpdoc,
603 pre .aggregate,
603 pre .aggregate,
604 pre .css .tag,
604 pre .css .tag,
605 pre .javadoctag,
605 pre .javadoctag,
606 pre .phpdoc,
606 pre .phpdoc,
607 pre .yardoctag,
607 pre .yardoctag,
608 pre .smalltalk .class,
608 pre .smalltalk .class,
609 pre .winutils,
609 pre .winutils,
610 pre .bash .variable,
610 pre .bash .variable,
611 pre .apache .tag,
611 pre .apache .tag,
612 pre .go .typename,
612 pre .go .typename,
613 pre .tex .command,
613 pre .tex .command,
614 pre .markdown .strong,
614 pre .markdown .strong,
615 pre .request,
615 pre .request,
616 pre .status {
616 pre .status {
617 color: #008000;
617 color: #008000;
618 font-weight: bold;
618 font-weight: bold;
619 }
619 }
620 .highlight-builtin,
620 .highlight-builtin,
621 pre .built_in {
621 pre .built_in {
622 color: #008000;
622 color: #008000;
623 }
623 }
624 pre .markdown .emphasis {
624 pre .markdown .emphasis {
625 font-style: italic;
625 font-style: italic;
626 }
626 }
627 pre .nginx .built_in {
627 pre .nginx .built_in {
628 font-weight: normal;
628 font-weight: normal;
629 }
629 }
630 pre .coffeescript .javascript,
630 pre .coffeescript .javascript,
631 pre .javascript .xml,
631 pre .javascript .xml,
632 pre .tex .formula,
632 pre .tex .formula,
633 pre .xml .javascript,
633 pre .xml .javascript,
634 pre .xml .vbscript,
634 pre .xml .vbscript,
635 pre .xml .css,
635 pre .xml .css,
636 pre .xml .cdata {
636 pre .xml .cdata {
637 opacity: 0.5;
637 opacity: 0.5;
638 }
638 }
639 /* apply the same style to codemirror */
639 /* apply the same style to codemirror */
640 .cm-s-ipython span.cm-variable {
640 .cm-s-ipython span.cm-variable {
641 color: black;
641 color: black;
642 }
642 }
643 .cm-s-ipython span.cm-keyword {
643 .cm-s-ipython span.cm-keyword {
644 color: #008000;
644 color: #008000;
645 font-weight: bold;
645 font-weight: bold;
646 }
646 }
647 .cm-s-ipython span.cm-number {
647 .cm-s-ipython span.cm-number {
648 color: #080;
648 color: #080;
649 }
649 }
650 .cm-s-ipython span.cm-comment {
650 .cm-s-ipython span.cm-comment {
651 color: #408080;
651 color: #408080;
652 font-style: italic;
652 font-style: italic;
653 }
653 }
654 .cm-s-ipython span.cm-string {
654 .cm-s-ipython span.cm-string {
655 color: #BA2121;
655 color: #BA2121;
656 }
656 }
657 .cm-s-ipython span.cm-builtin {
657 .cm-s-ipython span.cm-builtin {
658 color: #008000;
658 color: #008000;
659 }
659 }
660 .cm-s-ipython span.cm-error {
660 .cm-s-ipython span.cm-error {
661 color: #f00;
661 color: #f00;
662 }
662 }
663 .cm-s-ipython span.cm-operator {
663 .cm-s-ipython span.cm-operator {
664 color: #AA22FF;
664 color: #AA22FF;
665 font-weight: bold;
665 font-weight: bold;
666 }
666 }
667 .cm-s-ipython span.cm-meta {
667 .cm-s-ipython span.cm-meta {
668 color: #AA22FF;
668 color: #AA22FF;
669 }
669 }
670 .cm-s-ipython span.cm-tab {
670 .cm-s-ipython span.cm-tab {
671 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
671 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
672 background-position: right;
672 background-position: right;
673 background-repeat: no-repeat;
673 background-repeat: no-repeat;
674 }
674 }
675 div.output_wrapper {
675 div.output_wrapper {
676 /* this position must be relative to enable descendents to be absolute within it */
676 /* this position must be relative to enable descendents to be absolute within it */
677 position: relative;
677 position: relative;
678 /* Old browsers */
678 /* Old browsers */
679 display: -webkit-box;
679 display: -webkit-box;
680 -webkit-box-orient: vertical;
680 -webkit-box-orient: vertical;
681 -webkit-box-align: stretch;
681 -webkit-box-align: stretch;
682 display: -moz-box;
682 display: -moz-box;
683 -moz-box-orient: vertical;
683 -moz-box-orient: vertical;
684 -moz-box-align: stretch;
684 -moz-box-align: stretch;
685 display: box;
685 display: box;
686 box-orient: vertical;
686 box-orient: vertical;
687 box-align: stretch;
687 box-align: stretch;
688 /* Modern browsers */
688 /* Modern browsers */
689 display: flex;
689 display: flex;
690 flex-direction: column;
690 flex-direction: column;
691 align-items: stretch;
691 align-items: stretch;
692 /* Old browsers */
692 /* Old browsers */
693 -webkit-box-flex: 0;
693 -webkit-box-flex: 0;
694 -moz-box-flex: 0;
694 -moz-box-flex: 0;
695 box-flex: 0;
695 box-flex: 0;
696 /* Modern browsers */
696 /* Modern browsers */
697 flex: none;
697 flex: none;
698 }
698 }
699 /* class for the output area when it should be height-limited */
699 /* class for the output area when it should be height-limited */
700 div.output_scroll {
700 div.output_scroll {
701 /* ideally, this would be max-height, but FF barfs all over that */
701 /* ideally, this would be max-height, but FF barfs all over that */
702 height: 24em;
702 height: 24em;
703 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
703 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
704 width: 100%;
704 width: 100%;
705 overflow: auto;
705 overflow: auto;
706 border-radius: 4px;
706 border-radius: 4px;
707 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
707 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
708 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
708 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
709 display: block;
709 display: block;
710 }
710 }
711 /* output div while it is collapsed */
711 /* output div while it is collapsed */
712 div.output_collapsed {
712 div.output_collapsed {
713 margin: 0px;
713 margin: 0px;
714 padding: 0px;
714 padding: 0px;
715 /* Old browsers */
715 /* Old browsers */
716 display: -webkit-box;
716 display: -webkit-box;
717 -webkit-box-orient: vertical;
717 -webkit-box-orient: vertical;
718 -webkit-box-align: stretch;
718 -webkit-box-align: stretch;
719 display: -moz-box;
719 display: -moz-box;
720 -moz-box-orient: vertical;
720 -moz-box-orient: vertical;
721 -moz-box-align: stretch;
721 -moz-box-align: stretch;
722 display: box;
722 display: box;
723 box-orient: vertical;
723 box-orient: vertical;
724 box-align: stretch;
724 box-align: stretch;
725 /* Modern browsers */
725 /* Modern browsers */
726 display: flex;
726 display: flex;
727 flex-direction: column;
727 flex-direction: column;
728 align-items: stretch;
728 align-items: stretch;
729 /* Old browsers */
729 /* Old browsers */
730 -webkit-box-flex: 0;
730 -webkit-box-flex: 0;
731 -moz-box-flex: 0;
731 -moz-box-flex: 0;
732 box-flex: 0;
732 box-flex: 0;
733 /* Modern browsers */
733 /* Modern browsers */
734 flex: none;
734 flex: none;
735 }
735 }
736 div.out_prompt_overlay {
736 div.out_prompt_overlay {
737 height: 100%;
737 height: 100%;
738 padding: 0px 0.4em;
738 padding: 0px 0.4em;
739 position: absolute;
739 position: absolute;
740 border-radius: 4px;
740 border-radius: 4px;
741 }
741 }
742 div.out_prompt_overlay:hover {
742 div.out_prompt_overlay:hover {
743 /* use inner shadow to get border that is computed the same on WebKit/FF */
743 /* use inner shadow to get border that is computed the same on WebKit/FF */
744 -webkit-box-shadow: inset 0 0 1px #000000;
744 -webkit-box-shadow: inset 0 0 1px #000000;
745 box-shadow: inset 0 0 1px #000000;
745 box-shadow: inset 0 0 1px #000000;
746 background: rgba(240, 240, 240, 0.5);
746 background: rgba(240, 240, 240, 0.5);
747 }
747 }
748 div.output_prompt {
748 div.output_prompt {
749 color: #8b0000;
749 color: #8b0000;
750 }
750 }
751 /* This class is the outer container of all output sections. */
751 /* This class is the outer container of all output sections. */
752 div.output_area {
752 div.output_area {
753 padding: 0px;
753 padding: 0px;
754 page-break-inside: avoid;
754 page-break-inside: avoid;
755 /* Old browsers */
755 /* Old browsers */
756 display: -webkit-box;
756 display: -webkit-box;
757 -webkit-box-orient: horizontal;
757 -webkit-box-orient: horizontal;
758 -webkit-box-align: stretch;
758 -webkit-box-align: stretch;
759 display: -moz-box;
759 display: -moz-box;
760 -moz-box-orient: horizontal;
760 -moz-box-orient: horizontal;
761 -moz-box-align: stretch;
761 -moz-box-align: stretch;
762 display: box;
762 display: box;
763 box-orient: horizontal;
763 box-orient: horizontal;
764 box-align: stretch;
764 box-align: stretch;
765 /* Modern browsers */
765 /* Modern browsers */
766 display: flex;
766 display: flex;
767 flex-direction: row;
767 flex-direction: row;
768 align-items: stretch;
768 align-items: stretch;
769 /* Old browsers */
769 /* Old browsers */
770 -webkit-box-flex: 0;
770 -webkit-box-flex: 0;
771 -moz-box-flex: 0;
771 -moz-box-flex: 0;
772 box-flex: 0;
772 box-flex: 0;
773 /* Modern browsers */
773 /* Modern browsers */
774 flex: none;
774 flex: none;
775 }
775 }
776 div.output_area .MathJax_Display {
776 div.output_area .MathJax_Display {
777 text-align: left !important;
777 text-align: left !important;
778 }
778 }
779 div.output_area .rendered_html table {
779 div.output_area .rendered_html table {
780 margin-left: 0;
780 margin-left: 0;
781 margin-right: 0;
781 margin-right: 0;
782 }
782 }
783 div.output_area .rendered_html img {
783 div.output_area .rendered_html img {
784 margin-left: 0;
784 margin-left: 0;
785 margin-right: 0;
785 margin-right: 0;
786 }
786 }
787 /* This is needed to protect the pre formating from global settings such
787 /* This is needed to protect the pre formating from global settings such
788 as that of bootstrap */
788 as that of bootstrap */
789 .output {
789 .output {
790 /* Old browsers */
790 /* Old browsers */
791 display: -webkit-box;
791 display: -webkit-box;
792 -webkit-box-orient: vertical;
792 -webkit-box-orient: vertical;
793 -webkit-box-align: stretch;
793 -webkit-box-align: stretch;
794 display: -moz-box;
794 display: -moz-box;
795 -moz-box-orient: vertical;
795 -moz-box-orient: vertical;
796 -moz-box-align: stretch;
796 -moz-box-align: stretch;
797 display: box;
797 display: box;
798 box-orient: vertical;
798 box-orient: vertical;
799 box-align: stretch;
799 box-align: stretch;
800 /* Modern browsers */
800 /* Modern browsers */
801 display: flex;
801 display: flex;
802 flex-direction: column;
802 flex-direction: column;
803 align-items: stretch;
803 align-items: stretch;
804 /* Old browsers */
804 /* Old browsers */
805 -webkit-box-flex: 0;
805 -webkit-box-flex: 0;
806 -moz-box-flex: 0;
806 -moz-box-flex: 0;
807 box-flex: 0;
807 box-flex: 0;
808 /* Modern browsers */
808 /* Modern browsers */
809 flex: none;
809 flex: none;
810 }
810 }
811 @media (max-width: 480px) {
811 @media (max-width: 480px) {
812 div.output_area {
812 div.output_area {
813 /* Old browsers */
813 /* Old browsers */
814 display: -webkit-box;
814 display: -webkit-box;
815 -webkit-box-orient: vertical;
815 -webkit-box-orient: vertical;
816 -webkit-box-align: stretch;
816 -webkit-box-align: stretch;
817 display: -moz-box;
817 display: -moz-box;
818 -moz-box-orient: vertical;
818 -moz-box-orient: vertical;
819 -moz-box-align: stretch;
819 -moz-box-align: stretch;
820 display: box;
820 display: box;
821 box-orient: vertical;
821 box-orient: vertical;
822 box-align: stretch;
822 box-align: stretch;
823 /* Modern browsers */
823 /* Modern browsers */
824 display: flex;
824 display: flex;
825 flex-direction: column;
825 flex-direction: column;
826 align-items: stretch;
826 align-items: stretch;
827 /* Old browsers */
827 /* Old browsers */
828 -webkit-box-flex: 0;
828 -webkit-box-flex: 0;
829 -moz-box-flex: 0;
829 -moz-box-flex: 0;
830 box-flex: 0;
830 box-flex: 0;
831 /* Modern browsers */
831 /* Modern browsers */
832 flex: none;
832 flex: none;
833 }
833 }
834 }
834 }
835 div.output_area pre {
835 div.output_area pre {
836 margin: 0;
836 margin: 0;
837 padding: 0;
837 padding: 0;
838 border: 0;
838 border: 0;
839 vertical-align: baseline;
839 vertical-align: baseline;
840 color: #000000;
840 color: #000000;
841 background-color: transparent;
841 background-color: transparent;
842 border-radius: 0;
842 border-radius: 0;
843 }
843 }
844 /* This class is for the output subarea inside the output_area and after
844 /* This class is for the output subarea inside the output_area and after
845 the prompt div. */
845 the prompt div. */
846 div.output_subarea {
846 div.output_subarea {
847 padding: 0.4em 0.4em 0em 0.4em;
847 padding: 0.4em 0.4em 0em 0.4em;
848 /* Old browsers */
848 /* Old browsers */
849 -webkit-box-flex: 1;
849 -webkit-box-flex: 1;
850 -moz-box-flex: 1;
850 -moz-box-flex: 1;
851 box-flex: 1;
851 box-flex: 1;
852 /* Modern browsers */
852 /* Modern browsers */
853 flex: 1;
853 flex: 1;
854 }
854 }
855 /* The rest of the output_* classes are for special styling of the different
855 /* The rest of the output_* classes are for special styling of the different
856 output types */
856 output types */
857 /* all text output has this class: */
857 /* all text output has this class: */
858 div.output_text {
858 div.output_text {
859 text-align: left;
859 text-align: left;
860 color: #000000;
860 color: #000000;
861 /* This has to match that of the the CodeMirror class line-height below */
861 /* This has to match that of the the CodeMirror class line-height below */
862 line-height: 1.21429em;
862 line-height: 1.21429em;
863 }
863 }
864 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
864 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
865 div.output_stderr {
865 div.output_stderr {
866 background: #fdd;
866 background: #fdd;
867 /* very light red background for stderr */
867 /* very light red background for stderr */
868 }
868 }
869 div.output_latex {
869 div.output_latex {
870 text-align: left;
870 text-align: left;
871 }
871 }
872 /* Empty output_javascript divs should have no height */
872 /* Empty output_javascript divs should have no height */
873 div.output_javascript:empty {
873 div.output_javascript:empty {
874 padding: 0;
874 padding: 0;
875 }
875 }
876 .js-error {
876 .js-error {
877 color: darkred;
877 color: darkred;
878 }
878 }
879 /* raw_input styles */
879 /* raw_input styles */
880 div.raw_input_container {
880 div.raw_input_container {
881 font-family: monospace;
881 font-family: monospace;
882 padding-top: 5px;
882 padding-top: 5px;
883 }
883 }
884 span.raw_input_prompt {
884 span.raw_input_prompt {
885 /* nothing needed here */
885 /* nothing needed here */
886 }
886 }
887 input.raw_input {
887 input.raw_input {
888 font-family: inherit;
888 font-family: inherit;
889 font-size: inherit;
889 font-size: inherit;
890 color: inherit;
890 color: inherit;
891 width: auto;
891 width: auto;
892 /* make sure input baseline aligns with prompt */
892 /* make sure input baseline aligns with prompt */
893 vertical-align: baseline;
893 vertical-align: baseline;
894 /* padding + margin = 0.5em between prompt and cursor */
894 /* padding + margin = 0.5em between prompt and cursor */
895 padding: 0em 0.25em;
895 padding: 0em 0.25em;
896 margin: 0em 0.25em;
896 margin: 0em 0.25em;
897 }
897 }
898 input.raw_input:focus {
898 input.raw_input:focus {
899 box-shadow: none;
899 box-shadow: none;
900 }
900 }
901 p.p-space {
901 p.p-space {
902 margin-bottom: 10px;
902 margin-bottom: 10px;
903 }
903 }
904 .rendered_html {
904 .rendered_html {
905 color: #000000;
905 color: #000000;
906 /* any extras will just be numbers: */
906 /* any extras will just be numbers: */
907 }
907 }
908 .rendered_html em {
908 .rendered_html em {
909 font-style: italic;
909 font-style: italic;
910 }
910 }
911 .rendered_html strong {
911 .rendered_html strong {
912 font-weight: bold;
912 font-weight: bold;
913 }
913 }
914 .rendered_html u {
914 .rendered_html u {
915 text-decoration: underline;
915 text-decoration: underline;
916 }
916 }
917 .rendered_html :link {
917 .rendered_html :link {
918 text-decoration: underline;
918 text-decoration: underline;
919 }
919 }
920 .rendered_html :visited {
920 .rendered_html :visited {
921 text-decoration: underline;
921 text-decoration: underline;
922 }
922 }
923 .rendered_html h1 {
923 .rendered_html h1 {
924 font-size: 185.7%;
924 font-size: 185.7%;
925 margin: 1.08em 0 0 0;
925 margin: 1.08em 0 0 0;
926 font-weight: bold;
926 font-weight: bold;
927 line-height: 1.0;
927 line-height: 1.0;
928 }
928 }
929 .rendered_html h2 {
929 .rendered_html h2 {
930 font-size: 157.1%;
930 font-size: 157.1%;
931 margin: 1.27em 0 0 0;
931 margin: 1.27em 0 0 0;
932 font-weight: bold;
932 font-weight: bold;
933 line-height: 1.0;
933 line-height: 1.0;
934 }
934 }
935 .rendered_html h3 {
935 .rendered_html h3 {
936 font-size: 128.6%;
936 font-size: 128.6%;
937 margin: 1.55em 0 0 0;
937 margin: 1.55em 0 0 0;
938 font-weight: bold;
938 font-weight: bold;
939 line-height: 1.0;
939 line-height: 1.0;
940 }
940 }
941 .rendered_html h4 {
941 .rendered_html h4 {
942 font-size: 100%;
942 font-size: 100%;
943 margin: 2em 0 0 0;
943 margin: 2em 0 0 0;
944 font-weight: bold;
944 font-weight: bold;
945 line-height: 1.0;
945 line-height: 1.0;
946 }
946 }
947 .rendered_html h5 {
947 .rendered_html h5 {
948 font-size: 100%;
948 font-size: 100%;
949 margin: 2em 0 0 0;
949 margin: 2em 0 0 0;
950 font-weight: bold;
950 font-weight: bold;
951 line-height: 1.0;
951 line-height: 1.0;
952 font-style: italic;
952 font-style: italic;
953 }
953 }
954 .rendered_html h6 {
954 .rendered_html h6 {
955 font-size: 100%;
955 font-size: 100%;
956 margin: 2em 0 0 0;
956 margin: 2em 0 0 0;
957 font-weight: bold;
957 font-weight: bold;
958 line-height: 1.0;
958 line-height: 1.0;
959 font-style: italic;
959 font-style: italic;
960 }
960 }
961 .rendered_html h1:first-child {
961 .rendered_html h1:first-child {
962 margin-top: 0.538em;
962 margin-top: 0.538em;
963 }
963 }
964 .rendered_html h2:first-child {
964 .rendered_html h2:first-child {
965 margin-top: 0.636em;
965 margin-top: 0.636em;
966 }
966 }
967 .rendered_html h3:first-child {
967 .rendered_html h3:first-child {
968 margin-top: 0.777em;
968 margin-top: 0.777em;
969 }
969 }
970 .rendered_html h4:first-child {
970 .rendered_html h4:first-child {
971 margin-top: 1em;
971 margin-top: 1em;
972 }
972 }
973 .rendered_html h5:first-child {
973 .rendered_html h5:first-child {
974 margin-top: 1em;
974 margin-top: 1em;
975 }
975 }
976 .rendered_html h6:first-child {
976 .rendered_html h6:first-child {
977 margin-top: 1em;
977 margin-top: 1em;
978 }
978 }
979 .rendered_html ul {
979 .rendered_html ul {
980 list-style: disc;
980 list-style: disc;
981 margin: 0em 2em;
981 margin: 0em 2em;
982 padding-left: 0px;
982 padding-left: 0px;
983 }
983 }
984 .rendered_html ul ul {
984 .rendered_html ul ul {
985 list-style: square;
985 list-style: square;
986 margin: 0em 2em;
986 margin: 0em 2em;
987 }
987 }
988 .rendered_html ul ul ul {
988 .rendered_html ul ul ul {
989 list-style: circle;
989 list-style: circle;
990 margin: 0em 2em;
990 margin: 0em 2em;
991 }
991 }
992 .rendered_html ol {
992 .rendered_html ol {
993 list-style: decimal;
993 list-style: decimal;
994 margin: 0em 2em;
994 margin: 0em 2em;
995 padding-left: 0px;
995 padding-left: 0px;
996 }
996 }
997 .rendered_html ol ol {
997 .rendered_html ol ol {
998 list-style: upper-alpha;
998 list-style: upper-alpha;
999 margin: 0em 2em;
999 margin: 0em 2em;
1000 }
1000 }
1001 .rendered_html ol ol ol {
1001 .rendered_html ol ol ol {
1002 list-style: lower-alpha;
1002 list-style: lower-alpha;
1003 margin: 0em 2em;
1003 margin: 0em 2em;
1004 }
1004 }
1005 .rendered_html ol ol ol ol {
1005 .rendered_html ol ol ol ol {
1006 list-style: lower-roman;
1006 list-style: lower-roman;
1007 margin: 0em 2em;
1007 margin: 0em 2em;
1008 }
1008 }
1009 .rendered_html ol ol ol ol ol {
1009 .rendered_html ol ol ol ol ol {
1010 list-style: decimal;
1010 list-style: decimal;
1011 margin: 0em 2em;
1011 margin: 0em 2em;
1012 }
1012 }
1013 .rendered_html * + ul {
1013 .rendered_html * + ul {
1014 margin-top: 1em;
1014 margin-top: 1em;
1015 }
1015 }
1016 .rendered_html * + ol {
1016 .rendered_html * + ol {
1017 margin-top: 1em;
1017 margin-top: 1em;
1018 }
1018 }
1019 .rendered_html hr {
1019 .rendered_html hr {
1020 color: #000000;
1020 color: #000000;
1021 background-color: #000000;
1021 background-color: #000000;
1022 }
1022 }
1023 .rendered_html pre {
1023 .rendered_html pre {
1024 margin: 1em 2em;
1024 margin: 1em 2em;
1025 }
1025 }
1026 .rendered_html pre,
1026 .rendered_html pre,
1027 .rendered_html code {
1027 .rendered_html code {
1028 border: 0;
1028 border: 0;
1029 background-color: #ffffff;
1029 background-color: #ffffff;
1030 color: #000000;
1030 color: #000000;
1031 font-size: 100%;
1031 font-size: 100%;
1032 padding: 0px;
1032 padding: 0px;
1033 }
1033 }
1034 .rendered_html blockquote {
1034 .rendered_html blockquote {
1035 margin: 1em 2em;
1035 margin: 1em 2em;
1036 }
1036 }
1037 .rendered_html table {
1037 .rendered_html table {
1038 margin-left: auto;
1038 margin-left: auto;
1039 margin-right: auto;
1039 margin-right: auto;
1040 border: 1px solid #000000;
1040 border: 1px solid #000000;
1041 border-collapse: collapse;
1041 border-collapse: collapse;
1042 }
1042 }
1043 .rendered_html tr,
1043 .rendered_html tr,
1044 .rendered_html th,
1044 .rendered_html th,
1045 .rendered_html td {
1045 .rendered_html td {
1046 border: 1px solid #000000;
1046 border: 1px solid #000000;
1047 border-collapse: collapse;
1047 border-collapse: collapse;
1048 margin: 1em 2em;
1048 margin: 1em 2em;
1049 }
1049 }
1050 .rendered_html td,
1050 .rendered_html td,
1051 .rendered_html th {
1051 .rendered_html th {
1052 text-align: left;
1052 text-align: left;
1053 vertical-align: middle;
1053 vertical-align: middle;
1054 padding: 4px;
1054 padding: 4px;
1055 }
1055 }
1056 .rendered_html th {
1056 .rendered_html th {
1057 font-weight: bold;
1057 font-weight: bold;
1058 }
1058 }
1059 .rendered_html * + table {
1059 .rendered_html * + table {
1060 margin-top: 1em;
1060 margin-top: 1em;
1061 }
1061 }
1062 .rendered_html p {
1062 .rendered_html p {
1063 text-align: justify;
1063 text-align: justify;
1064 }
1064 }
1065 .rendered_html * + p {
1065 .rendered_html * + p {
1066 margin-top: 1em;
1066 margin-top: 1em;
1067 }
1067 }
1068 .rendered_html img {
1068 .rendered_html img {
1069 display: block;
1069 display: block;
1070 margin-left: auto;
1070 margin-left: auto;
1071 margin-right: auto;
1071 margin-right: auto;
1072 }
1072 }
1073 .rendered_html * + img {
1073 .rendered_html * + img {
1074 margin-top: 1em;
1074 margin-top: 1em;
1075 }
1075 }
1076 div.text_cell {
1076 div.text_cell {
1077 padding: 5px 5px 5px 0px;
1077 padding: 5px 5px 5px 0px;
1078 /* Old browsers */
1078 /* Old browsers */
1079 display: -webkit-box;
1079 display: -webkit-box;
1080 -webkit-box-orient: horizontal;
1080 -webkit-box-orient: horizontal;
1081 -webkit-box-align: stretch;
1081 -webkit-box-align: stretch;
1082 display: -moz-box;
1082 display: -moz-box;
1083 -moz-box-orient: horizontal;
1083 -moz-box-orient: horizontal;
1084 -moz-box-align: stretch;
1084 -moz-box-align: stretch;
1085 display: box;
1085 display: box;
1086 box-orient: horizontal;
1086 box-orient: horizontal;
1087 box-align: stretch;
1087 box-align: stretch;
1088 /* Modern browsers */
1088 /* Modern browsers */
1089 display: flex;
1089 display: flex;
1090 flex-direction: row;
1090 flex-direction: row;
1091 align-items: stretch;
1091 align-items: stretch;
1092 /* Old browsers */
1092 /* Old browsers */
1093 -webkit-box-flex: 0;
1093 -webkit-box-flex: 0;
1094 -moz-box-flex: 0;
1094 -moz-box-flex: 0;
1095 box-flex: 0;
1095 box-flex: 0;
1096 /* Modern browsers */
1096 /* Modern browsers */
1097 flex: none;
1097 flex: none;
1098 }
1098 }
1099 @media (max-width: 480px) {
1099 @media (max-width: 480px) {
1100 div.text_cell > div.prompt {
1100 div.text_cell > div.prompt {
1101 display: none;
1101 display: none;
1102 }
1102 }
1103 }
1103 }
1104 div.text_cell_render {
1104 div.text_cell_render {
1105 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
1105 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
1106 outline: none;
1106 outline: none;
1107 resize: none;
1107 resize: none;
1108 width: inherit;
1108 width: inherit;
1109 border-style: none;
1109 border-style: none;
1110 padding: 0.5em 0.5em 0.5em 0.4em;
1110 padding: 0.5em 0.5em 0.5em 0.4em;
1111 color: #000000;
1111 color: #000000;
1112 }
1112 }
1113 a.anchor-link:link {
1113 a.anchor-link:link {
1114 text-decoration: none;
1114 text-decoration: none;
1115 padding: 0px 20px;
1115 padding: 0px 20px;
1116 visibility: hidden;
1116 visibility: hidden;
1117 }
1117 }
1118 h1:hover .anchor-link,
1118 h1:hover .anchor-link,
1119 h2:hover .anchor-link,
1119 h2:hover .anchor-link,
1120 h3:hover .anchor-link,
1120 h3:hover .anchor-link,
1121 h4:hover .anchor-link,
1121 h4:hover .anchor-link,
1122 h5:hover .anchor-link,
1122 h5:hover .anchor-link,
1123 h6:hover .anchor-link {
1123 h6:hover .anchor-link {
1124 visibility: visible;
1124 visibility: visible;
1125 }
1125 }
1126 div.cell.text_cell.rendered {
1126 div.cell.text_cell.rendered {
1127 padding: 0px;
1127 padding: 0px;
1128 }
1128 }
1129 .cm-s-heading-1,
1129 .cm-s-heading-1,
1130 .cm-s-heading-2,
1130 .cm-s-heading-2,
1131 .cm-s-heading-3,
1131 .cm-s-heading-3,
1132 .cm-s-heading-4,
1132 .cm-s-heading-4,
1133 .cm-s-heading-5,
1133 .cm-s-heading-5,
1134 .cm-s-heading-6 {
1134 .cm-s-heading-6 {
1135 font-weight: bold;
1135 font-weight: bold;
1136 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1136 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1137 }
1137 }
1138 .cm-s-heading-1 {
1138 .cm-s-heading-1 {
1139 font-size: 150%;
1139 font-size: 150%;
1140 }
1140 }
1141 .cm-s-heading-2 {
1141 .cm-s-heading-2 {
1142 font-size: 130%;
1142 font-size: 130%;
1143 }
1143 }
1144 .cm-s-heading-3 {
1144 .cm-s-heading-3 {
1145 font-size: 120%;
1145 font-size: 120%;
1146 }
1146 }
1147 .cm-s-heading-4 {
1147 .cm-s-heading-4 {
1148 font-size: 110%;
1148 font-size: 110%;
1149 }
1149 }
1150 .cm-s-heading-5 {
1150 .cm-s-heading-5 {
1151 font-size: 100%;
1151 font-size: 100%;
1152 font-style: italic;
1152 }
1153 }
1153 .cm-s-heading-6 {
1154 .cm-s-heading-6 {
1154 font-size: 90%;
1155 font-size: 90%;
1156 font-style: italic;
1155 }
1157 }
1156 .widget-area {
1158 .widget-area {
1157 /*
1159 /*
1158 LESS file that styles IPython notebook widgets and the area they sit in.
1160 LESS file that styles IPython notebook widgets and the area they sit in.
1159
1161
1160 The widget area typically looks something like this:
1162 The widget area typically looks something like this:
1161 +------------------------------------------+
1163 +------------------------------------------+
1162 | widget-area |
1164 | widget-area |
1163 | +--------+---------------------------+ |
1165 | +--------+---------------------------+ |
1164 | | prompt | widget-subarea | |
1166 | | prompt | widget-subarea | |
1165 | | | +--------+ +--------+ | |
1167 | | | +--------+ +--------+ | |
1166 | | | | widget | | widget | | |
1168 | | | | widget | | widget | | |
1167 | | | +--------+ +--------+ | |
1169 | | | +--------+ +--------+ | |
1168 | +--------+---------------------------+ |
1170 | +--------+---------------------------+ |
1169 +------------------------------------------+
1171 +------------------------------------------+
1170 */
1172 */
1171 page-break-inside: avoid;
1173 page-break-inside: avoid;
1172 /* Old browsers */
1174 /* Old browsers */
1173 display: -webkit-box;
1175 display: -webkit-box;
1174 -webkit-box-orient: horizontal;
1176 -webkit-box-orient: horizontal;
1175 -webkit-box-align: stretch;
1177 -webkit-box-align: stretch;
1176 display: -moz-box;
1178 display: -moz-box;
1177 -moz-box-orient: horizontal;
1179 -moz-box-orient: horizontal;
1178 -moz-box-align: stretch;
1180 -moz-box-align: stretch;
1179 display: box;
1181 display: box;
1180 box-orient: horizontal;
1182 box-orient: horizontal;
1181 box-align: stretch;
1183 box-align: stretch;
1182 /* Modern browsers */
1184 /* Modern browsers */
1183 display: flex;
1185 display: flex;
1184 flex-direction: row;
1186 flex-direction: row;
1185 align-items: stretch;
1187 align-items: stretch;
1186 /* Old browsers */
1188 /* Old browsers */
1187 -webkit-box-flex: 0;
1189 -webkit-box-flex: 0;
1188 -moz-box-flex: 0;
1190 -moz-box-flex: 0;
1189 box-flex: 0;
1191 box-flex: 0;
1190 /* Modern browsers */
1192 /* Modern browsers */
1191 flex: none;
1193 flex: none;
1192 }
1194 }
1193 .widget-area .widget-subarea {
1195 .widget-area .widget-subarea {
1194 padding: 0.44em 0.4em 0.4em 1px;
1196 padding: 0.44em 0.4em 0.4em 1px;
1195 margin-left: 6px;
1197 margin-left: 6px;
1196 box-sizing: border-box;
1198 box-sizing: border-box;
1197 -moz-box-sizing: border-box;
1199 -moz-box-sizing: border-box;
1198 -webkit-box-sizing: border-box;
1200 -webkit-box-sizing: border-box;
1199 /* Old browsers */
1201 /* Old browsers */
1200 display: -webkit-box;
1202 display: -webkit-box;
1201 -webkit-box-orient: vertical;
1203 -webkit-box-orient: vertical;
1202 -webkit-box-align: stretch;
1204 -webkit-box-align: stretch;
1203 display: -moz-box;
1205 display: -moz-box;
1204 -moz-box-orient: vertical;
1206 -moz-box-orient: vertical;
1205 -moz-box-align: stretch;
1207 -moz-box-align: stretch;
1206 display: box;
1208 display: box;
1207 box-orient: vertical;
1209 box-orient: vertical;
1208 box-align: stretch;
1210 box-align: stretch;
1209 /* Modern browsers */
1211 /* Modern browsers */
1210 display: flex;
1212 display: flex;
1211 flex-direction: column;
1213 flex-direction: column;
1212 align-items: stretch;
1214 align-items: stretch;
1213 /* Old browsers */
1215 /* Old browsers */
1214 -webkit-box-flex: 0;
1216 -webkit-box-flex: 0;
1215 -moz-box-flex: 0;
1217 -moz-box-flex: 0;
1216 box-flex: 0;
1218 box-flex: 0;
1217 /* Modern browsers */
1219 /* Modern browsers */
1218 flex: none;
1220 flex: none;
1219 /* Old browsers */
1221 /* Old browsers */
1220 -webkit-box-flex: 2;
1222 -webkit-box-flex: 2;
1221 -moz-box-flex: 2;
1223 -moz-box-flex: 2;
1222 box-flex: 2;
1224 box-flex: 2;
1223 /* Modern browsers */
1225 /* Modern browsers */
1224 flex: 2;
1226 flex: 2;
1225 /* Old browsers */
1227 /* Old browsers */
1226 -webkit-box-align: start;
1228 -webkit-box-align: start;
1227 -moz-box-align: start;
1229 -moz-box-align: start;
1228 box-align: start;
1230 box-align: start;
1229 /* Modern browsers */
1231 /* Modern browsers */
1230 align-items: flex-start;
1232 align-items: flex-start;
1231 }
1233 }
1232 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
1234 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
1233 THE WIDGET AREA). */
1235 THE WIDGET AREA). */
1234 .widget-hlabel {
1236 .widget-hlabel {
1235 /* Horizontal Label */
1237 /* Horizontal Label */
1236 min-width: 10ex;
1238 min-width: 10ex;
1237 padding-right: 8px;
1239 padding-right: 8px;
1238 padding-top: 5px;
1240 padding-top: 5px;
1239 text-align: right;
1241 text-align: right;
1240 vertical-align: text-top;
1242 vertical-align: text-top;
1241 }
1243 }
1242 .widget-vlabel {
1244 .widget-vlabel {
1243 /* Vertical Label */
1245 /* Vertical Label */
1244 padding-bottom: 5px;
1246 padding-bottom: 5px;
1245 text-align: center;
1247 text-align: center;
1246 vertical-align: text-bottom;
1248 vertical-align: text-bottom;
1247 }
1249 }
1248 .widget-hreadout {
1250 .widget-hreadout {
1249 padding-left: 8px;
1251 padding-left: 8px;
1250 padding-top: 5px;
1252 padding-top: 5px;
1251 text-align: left;
1253 text-align: left;
1252 vertical-align: text-top;
1254 vertical-align: text-top;
1253 }
1255 }
1254 .widget-vreadout {
1256 .widget-vreadout {
1255 /* Vertical Label */
1257 /* Vertical Label */
1256 padding-top: 5px;
1258 padding-top: 5px;
1257 text-align: center;
1259 text-align: center;
1258 vertical-align: text-top;
1260 vertical-align: text-top;
1259 }
1261 }
1260 .slide-track {
1262 .slide-track {
1261 /* Slider Track */
1263 /* Slider Track */
1262 border: 1px solid #CCCCCC;
1264 border: 1px solid #CCCCCC;
1263 background: #FFFFFF;
1265 background: #FFFFFF;
1264 border-radius: 4px;
1266 border-radius: 4px;
1265 /* Round the corners of the slide track */
1267 /* Round the corners of the slide track */
1266 }
1268 }
1267 .widget-hslider {
1269 .widget-hslider {
1268 /* Horizontal jQuery Slider
1270 /* Horizontal jQuery Slider
1269
1271
1270 Both the horizontal and vertical versions of the slider are characterized
1272 Both the horizontal and vertical versions of the slider are characterized
1271 by a styled div that contains an invisible jQuery slide div which
1273 by a styled div that contains an invisible jQuery slide div which
1272 contains a visible slider handle div. This is requred so we can control
1274 contains a visible slider handle div. This is requred so we can control
1273 how the slider is drawn and 'fix' the issue where the slide handle
1275 how the slider is drawn and 'fix' the issue where the slide handle
1274 doesn't stop at the end of the slide.
1276 doesn't stop at the end of the slide.
1275
1277
1276 Both horizontal and vertical sliders have this div nesting:
1278 Both horizontal and vertical sliders have this div nesting:
1277 +------------------------------------------+
1279 +------------------------------------------+
1278 | widget-(h/v)slider |
1280 | widget-(h/v)slider |
1279 | +--------+---------------------------+ |
1281 | +--------+---------------------------+ |
1280 | | ui-slider | |
1282 | | ui-slider | |
1281 | | +------------------+ | |
1283 | | +------------------+ | |
1282 | | | ui-slider-handle | | |
1284 | | | ui-slider-handle | | |
1283 | | +------------------+ | |
1285 | | +------------------+ | |
1284 | +--------+---------------------------+ |
1286 | +--------+---------------------------+ |
1285 +------------------------------------------+
1287 +------------------------------------------+
1286 */
1288 */
1287 /* Fix the padding of the slide track so the ui-slider is sized
1289 /* Fix the padding of the slide track so the ui-slider is sized
1288 correctly. */
1290 correctly. */
1289 padding-left: 8px;
1291 padding-left: 8px;
1290 padding-right: 5px;
1292 padding-right: 5px;
1291 overflow: visible;
1293 overflow: visible;
1292 /* Default size of the slider */
1294 /* Default size of the slider */
1293 width: 350px;
1295 width: 350px;
1294 height: 5px;
1296 height: 5px;
1295 max-height: 5px;
1297 max-height: 5px;
1296 margin-top: 13px;
1298 margin-top: 13px;
1297 margin-bottom: 10px;
1299 margin-bottom: 10px;
1298 /* Style the slider track */
1300 /* Style the slider track */
1299 /* Slider Track */
1301 /* Slider Track */
1300 border: 1px solid #CCCCCC;
1302 border: 1px solid #CCCCCC;
1301 background: #FFFFFF;
1303 background: #FFFFFF;
1302 border-radius: 4px;
1304 border-radius: 4px;
1303 /* Round the corners of the slide track */
1305 /* Round the corners of the slide track */
1304 /* Make the div a flex box (makes FF behave correctly). */
1306 /* Make the div a flex box (makes FF behave correctly). */
1305 /* Old browsers */
1307 /* Old browsers */
1306 display: -webkit-box;
1308 display: -webkit-box;
1307 -webkit-box-orient: horizontal;
1309 -webkit-box-orient: horizontal;
1308 -webkit-box-align: stretch;
1310 -webkit-box-align: stretch;
1309 display: -moz-box;
1311 display: -moz-box;
1310 -moz-box-orient: horizontal;
1312 -moz-box-orient: horizontal;
1311 -moz-box-align: stretch;
1313 -moz-box-align: stretch;
1312 display: box;
1314 display: box;
1313 box-orient: horizontal;
1315 box-orient: horizontal;
1314 box-align: stretch;
1316 box-align: stretch;
1315 /* Modern browsers */
1317 /* Modern browsers */
1316 display: flex;
1318 display: flex;
1317 flex-direction: row;
1319 flex-direction: row;
1318 align-items: stretch;
1320 align-items: stretch;
1319 /* Old browsers */
1321 /* Old browsers */
1320 -webkit-box-flex: 0;
1322 -webkit-box-flex: 0;
1321 -moz-box-flex: 0;
1323 -moz-box-flex: 0;
1322 box-flex: 0;
1324 box-flex: 0;
1323 /* Modern browsers */
1325 /* Modern browsers */
1324 flex: none;
1326 flex: none;
1325 }
1327 }
1326 .widget-hslider .ui-slider {
1328 .widget-hslider .ui-slider {
1327 /* Inner, invisible slide div */
1329 /* Inner, invisible slide div */
1328 border: 0px !important;
1330 border: 0px !important;
1329 background: none !important;
1331 background: none !important;
1330 /* Old browsers */
1332 /* Old browsers */
1331 display: -webkit-box;
1333 display: -webkit-box;
1332 -webkit-box-orient: horizontal;
1334 -webkit-box-orient: horizontal;
1333 -webkit-box-align: stretch;
1335 -webkit-box-align: stretch;
1334 display: -moz-box;
1336 display: -moz-box;
1335 -moz-box-orient: horizontal;
1337 -moz-box-orient: horizontal;
1336 -moz-box-align: stretch;
1338 -moz-box-align: stretch;
1337 display: box;
1339 display: box;
1338 box-orient: horizontal;
1340 box-orient: horizontal;
1339 box-align: stretch;
1341 box-align: stretch;
1340 /* Modern browsers */
1342 /* Modern browsers */
1341 display: flex;
1343 display: flex;
1342 flex-direction: row;
1344 flex-direction: row;
1343 align-items: stretch;
1345 align-items: stretch;
1344 /* Old browsers */
1346 /* Old browsers */
1345 -webkit-box-flex: 0;
1347 -webkit-box-flex: 0;
1346 -moz-box-flex: 0;
1348 -moz-box-flex: 0;
1347 box-flex: 0;
1349 box-flex: 0;
1348 /* Modern browsers */
1350 /* Modern browsers */
1349 flex: none;
1351 flex: none;
1350 /* Old browsers */
1352 /* Old browsers */
1351 -webkit-box-flex: 1;
1353 -webkit-box-flex: 1;
1352 -moz-box-flex: 1;
1354 -moz-box-flex: 1;
1353 box-flex: 1;
1355 box-flex: 1;
1354 /* Modern browsers */
1356 /* Modern browsers */
1355 flex: 1;
1357 flex: 1;
1356 }
1358 }
1357 .widget-hslider .ui-slider .ui-slider-handle {
1359 .widget-hslider .ui-slider .ui-slider-handle {
1358 width: 14px !important;
1360 width: 14px !important;
1359 height: 28px !important;
1361 height: 28px !important;
1360 margin-top: -8px !important;
1362 margin-top: -8px !important;
1361 }
1363 }
1362 .widget-vslider {
1364 .widget-vslider {
1363 /* Vertical jQuery Slider */
1365 /* Vertical jQuery Slider */
1364 /* Fix the padding of the slide track so the ui-slider is sized
1366 /* Fix the padding of the slide track so the ui-slider is sized
1365 correctly. */
1367 correctly. */
1366 padding-bottom: 8px;
1368 padding-bottom: 8px;
1367 overflow: visible;
1369 overflow: visible;
1368 /* Default size of the slider */
1370 /* Default size of the slider */
1369 width: 5px;
1371 width: 5px;
1370 max-width: 5px;
1372 max-width: 5px;
1371 height: 250px;
1373 height: 250px;
1372 margin-left: 12px;
1374 margin-left: 12px;
1373 /* Style the slider track */
1375 /* Style the slider track */
1374 /* Slider Track */
1376 /* Slider Track */
1375 border: 1px solid #CCCCCC;
1377 border: 1px solid #CCCCCC;
1376 background: #FFFFFF;
1378 background: #FFFFFF;
1377 border-radius: 4px;
1379 border-radius: 4px;
1378 /* Round the corners of the slide track */
1380 /* Round the corners of the slide track */
1379 /* Make the div a flex box (makes FF behave correctly). */
1381 /* Make the div a flex box (makes FF behave correctly). */
1380 /* Old browsers */
1382 /* Old browsers */
1381 display: -webkit-box;
1383 display: -webkit-box;
1382 -webkit-box-orient: vertical;
1384 -webkit-box-orient: vertical;
1383 -webkit-box-align: stretch;
1385 -webkit-box-align: stretch;
1384 display: -moz-box;
1386 display: -moz-box;
1385 -moz-box-orient: vertical;
1387 -moz-box-orient: vertical;
1386 -moz-box-align: stretch;
1388 -moz-box-align: stretch;
1387 display: box;
1389 display: box;
1388 box-orient: vertical;
1390 box-orient: vertical;
1389 box-align: stretch;
1391 box-align: stretch;
1390 /* Modern browsers */
1392 /* Modern browsers */
1391 display: flex;
1393 display: flex;
1392 flex-direction: column;
1394 flex-direction: column;
1393 align-items: stretch;
1395 align-items: stretch;
1394 /* Old browsers */
1396 /* Old browsers */
1395 -webkit-box-flex: 0;
1397 -webkit-box-flex: 0;
1396 -moz-box-flex: 0;
1398 -moz-box-flex: 0;
1397 box-flex: 0;
1399 box-flex: 0;
1398 /* Modern browsers */
1400 /* Modern browsers */
1399 flex: none;
1401 flex: none;
1400 }
1402 }
1401 .widget-vslider .ui-slider {
1403 .widget-vslider .ui-slider {
1402 /* Inner, invisible slide div */
1404 /* Inner, invisible slide div */
1403 border: 0px !important;
1405 border: 0px !important;
1404 background: none !important;
1406 background: none !important;
1405 margin-left: -4px;
1407 margin-left: -4px;
1406 margin-top: 5px;
1408 margin-top: 5px;
1407 /* Old browsers */
1409 /* Old browsers */
1408 display: -webkit-box;
1410 display: -webkit-box;
1409 -webkit-box-orient: vertical;
1411 -webkit-box-orient: vertical;
1410 -webkit-box-align: stretch;
1412 -webkit-box-align: stretch;
1411 display: -moz-box;
1413 display: -moz-box;
1412 -moz-box-orient: vertical;
1414 -moz-box-orient: vertical;
1413 -moz-box-align: stretch;
1415 -moz-box-align: stretch;
1414 display: box;
1416 display: box;
1415 box-orient: vertical;
1417 box-orient: vertical;
1416 box-align: stretch;
1418 box-align: stretch;
1417 /* Modern browsers */
1419 /* Modern browsers */
1418 display: flex;
1420 display: flex;
1419 flex-direction: column;
1421 flex-direction: column;
1420 align-items: stretch;
1422 align-items: stretch;
1421 /* Old browsers */
1423 /* Old browsers */
1422 -webkit-box-flex: 0;
1424 -webkit-box-flex: 0;
1423 -moz-box-flex: 0;
1425 -moz-box-flex: 0;
1424 box-flex: 0;
1426 box-flex: 0;
1425 /* Modern browsers */
1427 /* Modern browsers */
1426 flex: none;
1428 flex: none;
1427 /* Old browsers */
1429 /* Old browsers */
1428 -webkit-box-flex: 1;
1430 -webkit-box-flex: 1;
1429 -moz-box-flex: 1;
1431 -moz-box-flex: 1;
1430 box-flex: 1;
1432 box-flex: 1;
1431 /* Modern browsers */
1433 /* Modern browsers */
1432 flex: 1;
1434 flex: 1;
1433 }
1435 }
1434 .widget-vslider .ui-slider .ui-slider-handle {
1436 .widget-vslider .ui-slider .ui-slider-handle {
1435 width: 28px !important;
1437 width: 28px !important;
1436 height: 14px !important;
1438 height: 14px !important;
1437 margin-left: -9px;
1439 margin-left: -9px;
1438 }
1440 }
1439 .widget-text {
1441 .widget-text {
1440 /* String Textbox - used for TextBoxView and TextAreaView */
1442 /* String Textbox - used for TextBoxView and TextAreaView */
1441 width: 350px;
1443 width: 350px;
1442 margin: 0px !important;
1444 margin: 0px !important;
1443 }
1445 }
1444 .widget-listbox {
1446 .widget-listbox {
1445 /* Listbox */
1447 /* Listbox */
1446 width: 350px;
1448 width: 350px;
1447 margin-bottom: 0px;
1449 margin-bottom: 0px;
1448 }
1450 }
1449 .widget-numeric-text {
1451 .widget-numeric-text {
1450 /* Single Line Textbox - used for IntTextView and FloatTextView */
1452 /* Single Line Textbox - used for IntTextView and FloatTextView */
1451 width: 150px;
1453 width: 150px;
1452 margin: 0px !important;
1454 margin: 0px !important;
1453 }
1455 }
1454 .widget-progress {
1456 .widget-progress {
1455 /* Progress Bar */
1457 /* Progress Bar */
1456 margin-top: 6px;
1458 margin-top: 6px;
1457 width: 350px;
1459 width: 350px;
1458 }
1460 }
1459 .widget-progress .progress-bar {
1461 .widget-progress .progress-bar {
1460 /* Disable progress bar animation */
1462 /* Disable progress bar animation */
1461 -webkit-transition: none;
1463 -webkit-transition: none;
1462 -moz-transition: none;
1464 -moz-transition: none;
1463 -ms-transition: none;
1465 -ms-transition: none;
1464 -o-transition: none;
1466 -o-transition: none;
1465 transition: none;
1467 transition: none;
1466 }
1468 }
1467 .widget-combo-btn {
1469 .widget-combo-btn {
1468 /* ComboBox Main Button */
1470 /* ComboBox Main Button */
1469 min-width: 125px;
1471 min-width: 125px;
1470 }
1472 }
1471 .widget-box {
1473 .widget-box {
1472 /* The following section sets the style for the invisible div that
1474 /* The following section sets the style for the invisible div that
1473 hold widgets and their accompanying labels.
1475 hold widgets and their accompanying labels.
1474
1476
1475 Looks like this:
1477 Looks like this:
1476 +-----------------------------+
1478 +-----------------------------+
1477 | widget-box (or similar) |
1479 | widget-box (or similar) |
1478 | +-------+---------------+ |
1480 | +-------+---------------+ |
1479 | | Label | Actual Widget | |
1481 | | Label | Actual Widget | |
1480 | +-------+---------------+ |
1482 | +-------+---------------+ |
1481 +-----------------------------+
1483 +-----------------------------+
1482 */
1484 */
1483 margin: 5px;
1485 margin: 5px;
1484 /* Old browsers */
1486 /* Old browsers */
1485 -webkit-box-pack: start;
1487 -webkit-box-pack: start;
1486 -moz-box-pack: start;
1488 -moz-box-pack: start;
1487 box-pack: start;
1489 box-pack: start;
1488 /* Modern browsers */
1490 /* Modern browsers */
1489 justify-content: flex-start;
1491 justify-content: flex-start;
1490 /* ContainerWidget */
1492 /* ContainerWidget */
1491 box-sizing: border-box;
1493 box-sizing: border-box;
1492 -moz-box-sizing: border-box;
1494 -moz-box-sizing: border-box;
1493 -webkit-box-sizing: border-box;
1495 -webkit-box-sizing: border-box;
1494 /* Old browsers */
1496 /* Old browsers */
1495 -webkit-box-align: start;
1497 -webkit-box-align: start;
1496 -moz-box-align: start;
1498 -moz-box-align: start;
1497 box-align: start;
1499 box-align: start;
1498 /* Modern browsers */
1500 /* Modern browsers */
1499 align-items: flex-start;
1501 align-items: flex-start;
1500 }
1502 }
1501 .widget-hbox {
1503 .widget-hbox {
1502 /* Horizontal widgets */
1504 /* Horizontal widgets */
1503 /* The following section sets the style for the invisible div that
1505 /* The following section sets the style for the invisible div that
1504 hold widgets and their accompanying labels.
1506 hold widgets and their accompanying labels.
1505
1507
1506 Looks like this:
1508 Looks like this:
1507 +-----------------------------+
1509 +-----------------------------+
1508 | widget-box (or similar) |
1510 | widget-box (or similar) |
1509 | +-------+---------------+ |
1511 | +-------+---------------+ |
1510 | | Label | Actual Widget | |
1512 | | Label | Actual Widget | |
1511 | +-------+---------------+ |
1513 | +-------+---------------+ |
1512 +-----------------------------+
1514 +-----------------------------+
1513 */
1515 */
1514 margin: 5px;
1516 margin: 5px;
1515 /* Old browsers */
1517 /* Old browsers */
1516 -webkit-box-pack: start;
1518 -webkit-box-pack: start;
1517 -moz-box-pack: start;
1519 -moz-box-pack: start;
1518 box-pack: start;
1520 box-pack: start;
1519 /* Modern browsers */
1521 /* Modern browsers */
1520 justify-content: flex-start;
1522 justify-content: flex-start;
1521 /* ContainerWidget */
1523 /* ContainerWidget */
1522 box-sizing: border-box;
1524 box-sizing: border-box;
1523 -moz-box-sizing: border-box;
1525 -moz-box-sizing: border-box;
1524 -webkit-box-sizing: border-box;
1526 -webkit-box-sizing: border-box;
1525 /* Old browsers */
1527 /* Old browsers */
1526 -webkit-box-align: start;
1528 -webkit-box-align: start;
1527 -moz-box-align: start;
1529 -moz-box-align: start;
1528 box-align: start;
1530 box-align: start;
1529 /* Modern browsers */
1531 /* Modern browsers */
1530 align-items: flex-start;
1532 align-items: flex-start;
1531 /* Old browsers */
1533 /* Old browsers */
1532 display: -webkit-box;
1534 display: -webkit-box;
1533 -webkit-box-orient: horizontal;
1535 -webkit-box-orient: horizontal;
1534 -webkit-box-align: stretch;
1536 -webkit-box-align: stretch;
1535 display: -moz-box;
1537 display: -moz-box;
1536 -moz-box-orient: horizontal;
1538 -moz-box-orient: horizontal;
1537 -moz-box-align: stretch;
1539 -moz-box-align: stretch;
1538 display: box;
1540 display: box;
1539 box-orient: horizontal;
1541 box-orient: horizontal;
1540 box-align: stretch;
1542 box-align: stretch;
1541 /* Modern browsers */
1543 /* Modern browsers */
1542 display: flex;
1544 display: flex;
1543 flex-direction: row;
1545 flex-direction: row;
1544 align-items: stretch;
1546 align-items: stretch;
1545 /* Old browsers */
1547 /* Old browsers */
1546 -webkit-box-flex: 0;
1548 -webkit-box-flex: 0;
1547 -moz-box-flex: 0;
1549 -moz-box-flex: 0;
1548 box-flex: 0;
1550 box-flex: 0;
1549 /* Modern browsers */
1551 /* Modern browsers */
1550 flex: none;
1552 flex: none;
1551 }
1553 }
1552 .widget-hbox-single {
1554 .widget-hbox-single {
1553 /* Single line horizontal widgets */
1555 /* Single line horizontal widgets */
1554 /* Horizontal widgets */
1556 /* Horizontal widgets */
1555 /* The following section sets the style for the invisible div that
1557 /* The following section sets the style for the invisible div that
1556 hold widgets and their accompanying labels.
1558 hold widgets and their accompanying labels.
1557
1559
1558 Looks like this:
1560 Looks like this:
1559 +-----------------------------+
1561 +-----------------------------+
1560 | widget-box (or similar) |
1562 | widget-box (or similar) |
1561 | +-------+---------------+ |
1563 | +-------+---------------+ |
1562 | | Label | Actual Widget | |
1564 | | Label | Actual Widget | |
1563 | +-------+---------------+ |
1565 | +-------+---------------+ |
1564 +-----------------------------+
1566 +-----------------------------+
1565 */
1567 */
1566 margin: 5px;
1568 margin: 5px;
1567 /* Old browsers */
1569 /* Old browsers */
1568 -webkit-box-pack: start;
1570 -webkit-box-pack: start;
1569 -moz-box-pack: start;
1571 -moz-box-pack: start;
1570 box-pack: start;
1572 box-pack: start;
1571 /* Modern browsers */
1573 /* Modern browsers */
1572 justify-content: flex-start;
1574 justify-content: flex-start;
1573 /* ContainerWidget */
1575 /* ContainerWidget */
1574 box-sizing: border-box;
1576 box-sizing: border-box;
1575 -moz-box-sizing: border-box;
1577 -moz-box-sizing: border-box;
1576 -webkit-box-sizing: border-box;
1578 -webkit-box-sizing: border-box;
1577 /* Old browsers */
1579 /* Old browsers */
1578 -webkit-box-align: start;
1580 -webkit-box-align: start;
1579 -moz-box-align: start;
1581 -moz-box-align: start;
1580 box-align: start;
1582 box-align: start;
1581 /* Modern browsers */
1583 /* Modern browsers */
1582 align-items: flex-start;
1584 align-items: flex-start;
1583 /* Old browsers */
1585 /* Old browsers */
1584 display: -webkit-box;
1586 display: -webkit-box;
1585 -webkit-box-orient: horizontal;
1587 -webkit-box-orient: horizontal;
1586 -webkit-box-align: stretch;
1588 -webkit-box-align: stretch;
1587 display: -moz-box;
1589 display: -moz-box;
1588 -moz-box-orient: horizontal;
1590 -moz-box-orient: horizontal;
1589 -moz-box-align: stretch;
1591 -moz-box-align: stretch;
1590 display: box;
1592 display: box;
1591 box-orient: horizontal;
1593 box-orient: horizontal;
1592 box-align: stretch;
1594 box-align: stretch;
1593 /* Modern browsers */
1595 /* Modern browsers */
1594 display: flex;
1596 display: flex;
1595 flex-direction: row;
1597 flex-direction: row;
1596 align-items: stretch;
1598 align-items: stretch;
1597 /* Old browsers */
1599 /* Old browsers */
1598 -webkit-box-flex: 0;
1600 -webkit-box-flex: 0;
1599 -moz-box-flex: 0;
1601 -moz-box-flex: 0;
1600 box-flex: 0;
1602 box-flex: 0;
1601 /* Modern browsers */
1603 /* Modern browsers */
1602 flex: none;
1604 flex: none;
1603 height: 30px;
1605 height: 30px;
1604 }
1606 }
1605 .widget-hbox-single input[type="checkbox"] {
1607 .widget-hbox-single input[type="checkbox"] {
1606 margin-top: 9px;
1608 margin-top: 9px;
1607 }
1609 }
1608 .widget-vbox {
1610 .widget-vbox {
1609 /* Vertical widgets */
1611 /* Vertical widgets */
1610 /* The following section sets the style for the invisible div that
1612 /* The following section sets the style for the invisible div that
1611 hold widgets and their accompanying labels.
1613 hold widgets and their accompanying labels.
1612
1614
1613 Looks like this:
1615 Looks like this:
1614 +-----------------------------+
1616 +-----------------------------+
1615 | widget-box (or similar) |
1617 | widget-box (or similar) |
1616 | +-------+---------------+ |
1618 | +-------+---------------+ |
1617 | | Label | Actual Widget | |
1619 | | Label | Actual Widget | |
1618 | +-------+---------------+ |
1620 | +-------+---------------+ |
1619 +-----------------------------+
1621 +-----------------------------+
1620 */
1622 */
1621 margin: 5px;
1623 margin: 5px;
1622 /* Old browsers */
1624 /* Old browsers */
1623 -webkit-box-pack: start;
1625 -webkit-box-pack: start;
1624 -moz-box-pack: start;
1626 -moz-box-pack: start;
1625 box-pack: start;
1627 box-pack: start;
1626 /* Modern browsers */
1628 /* Modern browsers */
1627 justify-content: flex-start;
1629 justify-content: flex-start;
1628 /* ContainerWidget */
1630 /* ContainerWidget */
1629 box-sizing: border-box;
1631 box-sizing: border-box;
1630 -moz-box-sizing: border-box;
1632 -moz-box-sizing: border-box;
1631 -webkit-box-sizing: border-box;
1633 -webkit-box-sizing: border-box;
1632 /* Old browsers */
1634 /* Old browsers */
1633 -webkit-box-align: start;
1635 -webkit-box-align: start;
1634 -moz-box-align: start;
1636 -moz-box-align: start;
1635 box-align: start;
1637 box-align: start;
1636 /* Modern browsers */
1638 /* Modern browsers */
1637 align-items: flex-start;
1639 align-items: flex-start;
1638 /* Old browsers */
1640 /* Old browsers */
1639 display: -webkit-box;
1641 display: -webkit-box;
1640 -webkit-box-orient: vertical;
1642 -webkit-box-orient: vertical;
1641 -webkit-box-align: stretch;
1643 -webkit-box-align: stretch;
1642 display: -moz-box;
1644 display: -moz-box;
1643 -moz-box-orient: vertical;
1645 -moz-box-orient: vertical;
1644 -moz-box-align: stretch;
1646 -moz-box-align: stretch;
1645 display: box;
1647 display: box;
1646 box-orient: vertical;
1648 box-orient: vertical;
1647 box-align: stretch;
1649 box-align: stretch;
1648 /* Modern browsers */
1650 /* Modern browsers */
1649 display: flex;
1651 display: flex;
1650 flex-direction: column;
1652 flex-direction: column;
1651 align-items: stretch;
1653 align-items: stretch;
1652 /* Old browsers */
1654 /* Old browsers */
1653 -webkit-box-flex: 0;
1655 -webkit-box-flex: 0;
1654 -moz-box-flex: 0;
1656 -moz-box-flex: 0;
1655 box-flex: 0;
1657 box-flex: 0;
1656 /* Modern browsers */
1658 /* Modern browsers */
1657 flex: none;
1659 flex: none;
1658 }
1660 }
1659 .widget-vbox-single {
1661 .widget-vbox-single {
1660 /* For vertical slides */
1662 /* For vertical slides */
1661 /* Vertical widgets */
1663 /* Vertical widgets */
1662 /* The following section sets the style for the invisible div that
1664 /* The following section sets the style for the invisible div that
1663 hold widgets and their accompanying labels.
1665 hold widgets and their accompanying labels.
1664
1666
1665 Looks like this:
1667 Looks like this:
1666 +-----------------------------+
1668 +-----------------------------+
1667 | widget-box (or similar) |
1669 | widget-box (or similar) |
1668 | +-------+---------------+ |
1670 | +-------+---------------+ |
1669 | | Label | Actual Widget | |
1671 | | Label | Actual Widget | |
1670 | +-------+---------------+ |
1672 | +-------+---------------+ |
1671 +-----------------------------+
1673 +-----------------------------+
1672 */
1674 */
1673 margin: 5px;
1675 margin: 5px;
1674 /* Old browsers */
1676 /* Old browsers */
1675 -webkit-box-pack: start;
1677 -webkit-box-pack: start;
1676 -moz-box-pack: start;
1678 -moz-box-pack: start;
1677 box-pack: start;
1679 box-pack: start;
1678 /* Modern browsers */
1680 /* Modern browsers */
1679 justify-content: flex-start;
1681 justify-content: flex-start;
1680 /* ContainerWidget */
1682 /* ContainerWidget */
1681 box-sizing: border-box;
1683 box-sizing: border-box;
1682 -moz-box-sizing: border-box;
1684 -moz-box-sizing: border-box;
1683 -webkit-box-sizing: border-box;
1685 -webkit-box-sizing: border-box;
1684 /* Old browsers */
1686 /* Old browsers */
1685 -webkit-box-align: start;
1687 -webkit-box-align: start;
1686 -moz-box-align: start;
1688 -moz-box-align: start;
1687 box-align: start;
1689 box-align: start;
1688 /* Modern browsers */
1690 /* Modern browsers */
1689 align-items: flex-start;
1691 align-items: flex-start;
1690 /* Old browsers */
1692 /* Old browsers */
1691 display: -webkit-box;
1693 display: -webkit-box;
1692 -webkit-box-orient: vertical;
1694 -webkit-box-orient: vertical;
1693 -webkit-box-align: stretch;
1695 -webkit-box-align: stretch;
1694 display: -moz-box;
1696 display: -moz-box;
1695 -moz-box-orient: vertical;
1697 -moz-box-orient: vertical;
1696 -moz-box-align: stretch;
1698 -moz-box-align: stretch;
1697 display: box;
1699 display: box;
1698 box-orient: vertical;
1700 box-orient: vertical;
1699 box-align: stretch;
1701 box-align: stretch;
1700 /* Modern browsers */
1702 /* Modern browsers */
1701 display: flex;
1703 display: flex;
1702 flex-direction: column;
1704 flex-direction: column;
1703 align-items: stretch;
1705 align-items: stretch;
1704 /* Old browsers */
1706 /* Old browsers */
1705 -webkit-box-flex: 0;
1707 -webkit-box-flex: 0;
1706 -moz-box-flex: 0;
1708 -moz-box-flex: 0;
1707 box-flex: 0;
1709 box-flex: 0;
1708 /* Modern browsers */
1710 /* Modern browsers */
1709 flex: none;
1711 flex: none;
1710 width: 30px;
1712 width: 30px;
1711 }
1713 }
1712 .widget-modal {
1714 .widget-modal {
1713 /* ContainerWidget - ModalView */
1715 /* ContainerWidget - ModalView */
1714 overflow: hidden;
1716 overflow: hidden;
1715 position: absolute !important;
1717 position: absolute !important;
1716 top: 0px;
1718 top: 0px;
1717 left: 0px;
1719 left: 0px;
1718 margin-left: 0px !important;
1720 margin-left: 0px !important;
1719 }
1721 }
1720 .widget-modal-body {
1722 .widget-modal-body {
1721 /* ContainerWidget - ModalView Body */
1723 /* ContainerWidget - ModalView Body */
1722 max-height: none !important;
1724 max-height: none !important;
1723 }
1725 }
1724 .widget-container {
1726 .widget-container {
1725 /* ContainerWidget */
1727 /* ContainerWidget */
1726 box-sizing: border-box;
1728 box-sizing: border-box;
1727 -moz-box-sizing: border-box;
1729 -moz-box-sizing: border-box;
1728 -webkit-box-sizing: border-box;
1730 -webkit-box-sizing: border-box;
1729 /* Old browsers */
1731 /* Old browsers */
1730 -webkit-box-align: start;
1732 -webkit-box-align: start;
1731 -moz-box-align: start;
1733 -moz-box-align: start;
1732 box-align: start;
1734 box-align: start;
1733 /* Modern browsers */
1735 /* Modern browsers */
1734 align-items: flex-start;
1736 align-items: flex-start;
1735 }
1737 }
1736 .widget-radio-box {
1738 .widget-radio-box {
1737 /* Contains RadioButtonsWidget */
1739 /* Contains RadioButtonsWidget */
1738 /* Old browsers */
1740 /* Old browsers */
1739 display: -webkit-box;
1741 display: -webkit-box;
1740 -webkit-box-orient: vertical;
1742 -webkit-box-orient: vertical;
1741 -webkit-box-align: stretch;
1743 -webkit-box-align: stretch;
1742 display: -moz-box;
1744 display: -moz-box;
1743 -moz-box-orient: vertical;
1745 -moz-box-orient: vertical;
1744 -moz-box-align: stretch;
1746 -moz-box-align: stretch;
1745 display: box;
1747 display: box;
1746 box-orient: vertical;
1748 box-orient: vertical;
1747 box-align: stretch;
1749 box-align: stretch;
1748 /* Modern browsers */
1750 /* Modern browsers */
1749 display: flex;
1751 display: flex;
1750 flex-direction: column;
1752 flex-direction: column;
1751 align-items: stretch;
1753 align-items: stretch;
1752 /* Old browsers */
1754 /* Old browsers */
1753 -webkit-box-flex: 0;
1755 -webkit-box-flex: 0;
1754 -moz-box-flex: 0;
1756 -moz-box-flex: 0;
1755 box-flex: 0;
1757 box-flex: 0;
1756 /* Modern browsers */
1758 /* Modern browsers */
1757 flex: none;
1759 flex: none;
1758 box-sizing: border-box;
1760 box-sizing: border-box;
1759 -moz-box-sizing: border-box;
1761 -moz-box-sizing: border-box;
1760 -webkit-box-sizing: border-box;
1762 -webkit-box-sizing: border-box;
1761 padding-top: 4px;
1763 padding-top: 4px;
1762 }
1764 }
1763 .widget-radio-box label {
1765 .widget-radio-box label {
1764 margin-top: 0px;
1766 margin-top: 0px;
1765 }
1767 }
1766 .docked-widget-modal {
1768 .docked-widget-modal {
1767 /* Horizontal Label */
1769 /* Horizontal Label */
1768 overflow: hidden;
1770 overflow: hidden;
1769 position: relative !important;
1771 position: relative !important;
1770 top: 0px !important;
1772 top: 0px !important;
1771 left: 0px !important;
1773 left: 0px !important;
1772 margin-left: 0px !important;
1774 margin-left: 0px !important;
1773 }
1775 }
1774 /*# sourceMappingURL=../style/ipython.min.css.map */ No newline at end of file
1776 /*# sourceMappingURL=../style/ipython.min.css.map */
@@ -1,10395 +1,10397
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: 768px) {
606 @media (min-width: 768px) {
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: 768px) {
3116 @media (min-width: 768px) {
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: 36px;
3639 min-height: 36px;
3640 margin-bottom: 18px;
3640 margin-bottom: 18px;
3641 border: 1px solid transparent;
3641 border: 1px solid transparent;
3642 }
3642 }
3643 @media (min-width: 768px) {
3643 @media (min-width: 768px) {
3644 .navbar {
3644 .navbar {
3645 border-radius: 4px;
3645 border-radius: 4px;
3646 }
3646 }
3647 }
3647 }
3648 @media (min-width: 768px) {
3648 @media (min-width: 768px) {
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: 768px) {
3665 @media (min-width: 768px) {
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: 768px) {
3694 @media (min-width: 768px) {
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: 768px) {
3707 @media (min-width: 768px) {
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: 768px) {
3719 @media (min-width: 768px) {
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: 9px 15px;
3736 padding: 9px 15px;
3737 font-size: 17px;
3737 font-size: 17px;
3738 line-height: 18px;
3738 line-height: 18px;
3739 height: 36px;
3739 height: 36px;
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: 768px) {
3745 @media (min-width: 768px) {
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: 1px;
3756 margin-top: 1px;
3757 margin-bottom: 1px;
3757 margin-bottom: 1px;
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: 768px) {
3775 @media (min-width: 768px) {
3776 .navbar-toggle {
3776 .navbar-toggle {
3777 display: none;
3777 display: none;
3778 }
3778 }
3779 }
3779 }
3780 .navbar-nav {
3780 .navbar-nav {
3781 margin: 4.5px -15px;
3781 margin: 4.5px -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: 767px) {
3788 @media (max-width: 767px) {
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: 768px) {
3810 @media (min-width: 768px) {
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: 9px;
3819 padding-top: 9px;
3820 padding-bottom: 9px;
3820 padding-bottom: 9px;
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: 768px) {
3826 @media (min-width: 768px) {
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: 2px;
3844 margin-top: 2px;
3845 margin-bottom: 2px;
3845 margin-bottom: 2px;
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: 767px) {
3882 @media (max-width: 767px) {
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: 768px) {
3887 @media (min-width: 768px) {
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: 2px;
3912 margin-top: 2px;
3913 margin-bottom: 2px;
3913 margin-bottom: 2px;
3914 }
3914 }
3915 .navbar-btn.btn-sm {
3915 .navbar-btn.btn-sm {
3916 margin-top: 3px;
3916 margin-top: 3px;
3917 margin-bottom: 3px;
3917 margin-bottom: 3px;
3918 }
3918 }
3919 .navbar-btn.btn-xs {
3919 .navbar-btn.btn-xs {
3920 margin-top: 7px;
3920 margin-top: 7px;
3921 margin-bottom: 7px;
3921 margin-bottom: 7px;
3922 }
3922 }
3923 .navbar-text {
3923 .navbar-text {
3924 margin-top: 9px;
3924 margin-top: 9px;
3925 margin-bottom: 9px;
3925 margin-bottom: 9px;
3926 }
3926 }
3927 @media (min-width: 768px) {
3927 @media (min-width: 768px) {
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: 767px) {
3992 @media (max-width: 767px) {
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: 767px) {
4075 @media (max-width: 767px) {
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.1.0 by @davegandy - http://fontawesome.io - @fontawesome
5788 * Font Awesome 4.1.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.1.0');
5795 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
5796 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.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-family: FontAwesome;
5802 font-family: FontAwesome;
5803 font-style: normal;
5803 font-style: normal;
5804 font-weight: normal;
5804 font-weight: normal;
5805 line-height: 1;
5805 line-height: 1;
5806 -webkit-font-smoothing: antialiased;
5806 -webkit-font-smoothing: antialiased;
5807 -moz-osx-font-smoothing: grayscale;
5807 -moz-osx-font-smoothing: grayscale;
5808 }
5808 }
5809 /* makes the font 33% larger relative to the icon container */
5809 /* makes the font 33% larger relative to the icon container */
5810 .fa-lg {
5810 .fa-lg {
5811 font-size: 1.33333333em;
5811 font-size: 1.33333333em;
5812 line-height: 0.75em;
5812 line-height: 0.75em;
5813 vertical-align: -15%;
5813 vertical-align: -15%;
5814 }
5814 }
5815 .fa-2x {
5815 .fa-2x {
5816 font-size: 2em;
5816 font-size: 2em;
5817 }
5817 }
5818 .fa-3x {
5818 .fa-3x {
5819 font-size: 3em;
5819 font-size: 3em;
5820 }
5820 }
5821 .fa-4x {
5821 .fa-4x {
5822 font-size: 4em;
5822 font-size: 4em;
5823 }
5823 }
5824 .fa-5x {
5824 .fa-5x {
5825 font-size: 5em;
5825 font-size: 5em;
5826 }
5826 }
5827 .fa-fw {
5827 .fa-fw {
5828 width: 1.28571429em;
5828 width: 1.28571429em;
5829 text-align: center;
5829 text-align: center;
5830 }
5830 }
5831 .fa-ul {
5831 .fa-ul {
5832 padding-left: 0;
5832 padding-left: 0;
5833 margin-left: 2.14285714em;
5833 margin-left: 2.14285714em;
5834 list-style-type: none;
5834 list-style-type: none;
5835 }
5835 }
5836 .fa-ul > li {
5836 .fa-ul > li {
5837 position: relative;
5837 position: relative;
5838 }
5838 }
5839 .fa-li {
5839 .fa-li {
5840 position: absolute;
5840 position: absolute;
5841 left: -2.14285714em;
5841 left: -2.14285714em;
5842 width: 2.14285714em;
5842 width: 2.14285714em;
5843 top: 0.14285714em;
5843 top: 0.14285714em;
5844 text-align: center;
5844 text-align: center;
5845 }
5845 }
5846 .fa-li.fa-lg {
5846 .fa-li.fa-lg {
5847 left: -1.85714286em;
5847 left: -1.85714286em;
5848 }
5848 }
5849 .fa-border {
5849 .fa-border {
5850 padding: .2em .25em .15em;
5850 padding: .2em .25em .15em;
5851 border: solid 0.08em #eeeeee;
5851 border: solid 0.08em #eeeeee;
5852 border-radius: .1em;
5852 border-radius: .1em;
5853 }
5853 }
5854 .pull-right {
5854 .pull-right {
5855 float: right;
5855 float: right;
5856 }
5856 }
5857 .pull-left {
5857 .pull-left {
5858 float: left;
5858 float: left;
5859 }
5859 }
5860 .fa.pull-left {
5860 .fa.pull-left {
5861 margin-right: .3em;
5861 margin-right: .3em;
5862 }
5862 }
5863 .fa.pull-right {
5863 .fa.pull-right {
5864 margin-left: .3em;
5864 margin-left: .3em;
5865 }
5865 }
5866 .fa-spin {
5866 .fa-spin {
5867 -webkit-animation: spin 2s infinite linear;
5867 -webkit-animation: spin 2s infinite linear;
5868 -moz-animation: spin 2s infinite linear;
5868 -moz-animation: spin 2s infinite linear;
5869 -o-animation: spin 2s infinite linear;
5869 -o-animation: spin 2s infinite linear;
5870 animation: spin 2s infinite linear;
5870 animation: spin 2s infinite linear;
5871 }
5871 }
5872 @-moz-keyframes spin {
5872 @-moz-keyframes spin {
5873 0% {
5873 0% {
5874 -moz-transform: rotate(0deg);
5874 -moz-transform: rotate(0deg);
5875 }
5875 }
5876 100% {
5876 100% {
5877 -moz-transform: rotate(359deg);
5877 -moz-transform: rotate(359deg);
5878 }
5878 }
5879 }
5879 }
5880 @-webkit-keyframes spin {
5880 @-webkit-keyframes spin {
5881 0% {
5881 0% {
5882 -webkit-transform: rotate(0deg);
5882 -webkit-transform: rotate(0deg);
5883 }
5883 }
5884 100% {
5884 100% {
5885 -webkit-transform: rotate(359deg);
5885 -webkit-transform: rotate(359deg);
5886 }
5886 }
5887 }
5887 }
5888 @-o-keyframes spin {
5888 @-o-keyframes spin {
5889 0% {
5889 0% {
5890 -o-transform: rotate(0deg);
5890 -o-transform: rotate(0deg);
5891 }
5891 }
5892 100% {
5892 100% {
5893 -o-transform: rotate(359deg);
5893 -o-transform: rotate(359deg);
5894 }
5894 }
5895 }
5895 }
5896 @keyframes spin {
5896 @keyframes spin {
5897 0% {
5897 0% {
5898 -webkit-transform: rotate(0deg);
5898 -webkit-transform: rotate(0deg);
5899 transform: rotate(0deg);
5899 transform: rotate(0deg);
5900 }
5900 }
5901 100% {
5901 100% {
5902 -webkit-transform: rotate(359deg);
5902 -webkit-transform: rotate(359deg);
5903 transform: rotate(359deg);
5903 transform: rotate(359deg);
5904 }
5904 }
5905 }
5905 }
5906 .fa-rotate-90 {
5906 .fa-rotate-90 {
5907 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5907 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5908 -webkit-transform: rotate(90deg);
5908 -webkit-transform: rotate(90deg);
5909 -moz-transform: rotate(90deg);
5909 -moz-transform: rotate(90deg);
5910 -ms-transform: rotate(90deg);
5910 -ms-transform: rotate(90deg);
5911 -o-transform: rotate(90deg);
5911 -o-transform: rotate(90deg);
5912 transform: rotate(90deg);
5912 transform: rotate(90deg);
5913 }
5913 }
5914 .fa-rotate-180 {
5914 .fa-rotate-180 {
5915 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5915 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5916 -webkit-transform: rotate(180deg);
5916 -webkit-transform: rotate(180deg);
5917 -moz-transform: rotate(180deg);
5917 -moz-transform: rotate(180deg);
5918 -ms-transform: rotate(180deg);
5918 -ms-transform: rotate(180deg);
5919 -o-transform: rotate(180deg);
5919 -o-transform: rotate(180deg);
5920 transform: rotate(180deg);
5920 transform: rotate(180deg);
5921 }
5921 }
5922 .fa-rotate-270 {
5922 .fa-rotate-270 {
5923 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5923 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5924 -webkit-transform: rotate(270deg);
5924 -webkit-transform: rotate(270deg);
5925 -moz-transform: rotate(270deg);
5925 -moz-transform: rotate(270deg);
5926 -ms-transform: rotate(270deg);
5926 -ms-transform: rotate(270deg);
5927 -o-transform: rotate(270deg);
5927 -o-transform: rotate(270deg);
5928 transform: rotate(270deg);
5928 transform: rotate(270deg);
5929 }
5929 }
5930 .fa-flip-horizontal {
5930 .fa-flip-horizontal {
5931 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5931 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5932 -webkit-transform: scale(-1, 1);
5932 -webkit-transform: scale(-1, 1);
5933 -moz-transform: scale(-1, 1);
5933 -moz-transform: scale(-1, 1);
5934 -ms-transform: scale(-1, 1);
5934 -ms-transform: scale(-1, 1);
5935 -o-transform: scale(-1, 1);
5935 -o-transform: scale(-1, 1);
5936 transform: scale(-1, 1);
5936 transform: scale(-1, 1);
5937 }
5937 }
5938 .fa-flip-vertical {
5938 .fa-flip-vertical {
5939 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5939 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5940 -webkit-transform: scale(1, -1);
5940 -webkit-transform: scale(1, -1);
5941 -moz-transform: scale(1, -1);
5941 -moz-transform: scale(1, -1);
5942 -ms-transform: scale(1, -1);
5942 -ms-transform: scale(1, -1);
5943 -o-transform: scale(1, -1);
5943 -o-transform: scale(1, -1);
5944 transform: scale(1, -1);
5944 transform: scale(1, -1);
5945 }
5945 }
5946 .fa-stack {
5946 .fa-stack {
5947 position: relative;
5947 position: relative;
5948 display: inline-block;
5948 display: inline-block;
5949 width: 2em;
5949 width: 2em;
5950 height: 2em;
5950 height: 2em;
5951 line-height: 2em;
5951 line-height: 2em;
5952 vertical-align: middle;
5952 vertical-align: middle;
5953 }
5953 }
5954 .fa-stack-1x,
5954 .fa-stack-1x,
5955 .fa-stack-2x {
5955 .fa-stack-2x {
5956 position: absolute;
5956 position: absolute;
5957 left: 0;
5957 left: 0;
5958 width: 100%;
5958 width: 100%;
5959 text-align: center;
5959 text-align: center;
5960 }
5960 }
5961 .fa-stack-1x {
5961 .fa-stack-1x {
5962 line-height: inherit;
5962 line-height: inherit;
5963 }
5963 }
5964 .fa-stack-2x {
5964 .fa-stack-2x {
5965 font-size: 2em;
5965 font-size: 2em;
5966 }
5966 }
5967 .fa-inverse {
5967 .fa-inverse {
5968 color: #ffffff;
5968 color: #ffffff;
5969 }
5969 }
5970 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5970 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5971 readers do not read off random characters that represent icons */
5971 readers do not read off random characters that represent icons */
5972 .fa-glass:before {
5972 .fa-glass:before {
5973 content: "\f000";
5973 content: "\f000";
5974 }
5974 }
5975 .fa-music:before {
5975 .fa-music:before {
5976 content: "\f001";
5976 content: "\f001";
5977 }
5977 }
5978 .fa-search:before {
5978 .fa-search:before {
5979 content: "\f002";
5979 content: "\f002";
5980 }
5980 }
5981 .fa-envelope-o:before {
5981 .fa-envelope-o:before {
5982 content: "\f003";
5982 content: "\f003";
5983 }
5983 }
5984 .fa-heart:before {
5984 .fa-heart:before {
5985 content: "\f004";
5985 content: "\f004";
5986 }
5986 }
5987 .fa-star:before {
5987 .fa-star:before {
5988 content: "\f005";
5988 content: "\f005";
5989 }
5989 }
5990 .fa-star-o:before {
5990 .fa-star-o:before {
5991 content: "\f006";
5991 content: "\f006";
5992 }
5992 }
5993 .fa-user:before {
5993 .fa-user:before {
5994 content: "\f007";
5994 content: "\f007";
5995 }
5995 }
5996 .fa-film:before {
5996 .fa-film:before {
5997 content: "\f008";
5997 content: "\f008";
5998 }
5998 }
5999 .fa-th-large:before {
5999 .fa-th-large:before {
6000 content: "\f009";
6000 content: "\f009";
6001 }
6001 }
6002 .fa-th:before {
6002 .fa-th:before {
6003 content: "\f00a";
6003 content: "\f00a";
6004 }
6004 }
6005 .fa-th-list:before {
6005 .fa-th-list:before {
6006 content: "\f00b";
6006 content: "\f00b";
6007 }
6007 }
6008 .fa-check:before {
6008 .fa-check:before {
6009 content: "\f00c";
6009 content: "\f00c";
6010 }
6010 }
6011 .fa-times:before {
6011 .fa-times:before {
6012 content: "\f00d";
6012 content: "\f00d";
6013 }
6013 }
6014 .fa-search-plus:before {
6014 .fa-search-plus:before {
6015 content: "\f00e";
6015 content: "\f00e";
6016 }
6016 }
6017 .fa-search-minus:before {
6017 .fa-search-minus:before {
6018 content: "\f010";
6018 content: "\f010";
6019 }
6019 }
6020 .fa-power-off:before {
6020 .fa-power-off:before {
6021 content: "\f011";
6021 content: "\f011";
6022 }
6022 }
6023 .fa-signal:before {
6023 .fa-signal:before {
6024 content: "\f012";
6024 content: "\f012";
6025 }
6025 }
6026 .fa-gear:before,
6026 .fa-gear:before,
6027 .fa-cog:before {
6027 .fa-cog:before {
6028 content: "\f013";
6028 content: "\f013";
6029 }
6029 }
6030 .fa-trash-o:before {
6030 .fa-trash-o:before {
6031 content: "\f014";
6031 content: "\f014";
6032 }
6032 }
6033 .fa-home:before {
6033 .fa-home:before {
6034 content: "\f015";
6034 content: "\f015";
6035 }
6035 }
6036 .fa-file-o:before {
6036 .fa-file-o:before {
6037 content: "\f016";
6037 content: "\f016";
6038 }
6038 }
6039 .fa-clock-o:before {
6039 .fa-clock-o:before {
6040 content: "\f017";
6040 content: "\f017";
6041 }
6041 }
6042 .fa-road:before {
6042 .fa-road:before {
6043 content: "\f018";
6043 content: "\f018";
6044 }
6044 }
6045 .fa-download:before {
6045 .fa-download:before {
6046 content: "\f019";
6046 content: "\f019";
6047 }
6047 }
6048 .fa-arrow-circle-o-down:before {
6048 .fa-arrow-circle-o-down:before {
6049 content: "\f01a";
6049 content: "\f01a";
6050 }
6050 }
6051 .fa-arrow-circle-o-up:before {
6051 .fa-arrow-circle-o-up:before {
6052 content: "\f01b";
6052 content: "\f01b";
6053 }
6053 }
6054 .fa-inbox:before {
6054 .fa-inbox:before {
6055 content: "\f01c";
6055 content: "\f01c";
6056 }
6056 }
6057 .fa-play-circle-o:before {
6057 .fa-play-circle-o:before {
6058 content: "\f01d";
6058 content: "\f01d";
6059 }
6059 }
6060 .fa-rotate-right:before,
6060 .fa-rotate-right:before,
6061 .fa-repeat:before {
6061 .fa-repeat:before {
6062 content: "\f01e";
6062 content: "\f01e";
6063 }
6063 }
6064 .fa-refresh:before {
6064 .fa-refresh:before {
6065 content: "\f021";
6065 content: "\f021";
6066 }
6066 }
6067 .fa-list-alt:before {
6067 .fa-list-alt:before {
6068 content: "\f022";
6068 content: "\f022";
6069 }
6069 }
6070 .fa-lock:before {
6070 .fa-lock:before {
6071 content: "\f023";
6071 content: "\f023";
6072 }
6072 }
6073 .fa-flag:before {
6073 .fa-flag:before {
6074 content: "\f024";
6074 content: "\f024";
6075 }
6075 }
6076 .fa-headphones:before {
6076 .fa-headphones:before {
6077 content: "\f025";
6077 content: "\f025";
6078 }
6078 }
6079 .fa-volume-off:before {
6079 .fa-volume-off:before {
6080 content: "\f026";
6080 content: "\f026";
6081 }
6081 }
6082 .fa-volume-down:before {
6082 .fa-volume-down:before {
6083 content: "\f027";
6083 content: "\f027";
6084 }
6084 }
6085 .fa-volume-up:before {
6085 .fa-volume-up:before {
6086 content: "\f028";
6086 content: "\f028";
6087 }
6087 }
6088 .fa-qrcode:before {
6088 .fa-qrcode:before {
6089 content: "\f029";
6089 content: "\f029";
6090 }
6090 }
6091 .fa-barcode:before {
6091 .fa-barcode:before {
6092 content: "\f02a";
6092 content: "\f02a";
6093 }
6093 }
6094 .fa-tag:before {
6094 .fa-tag:before {
6095 content: "\f02b";
6095 content: "\f02b";
6096 }
6096 }
6097 .fa-tags:before {
6097 .fa-tags:before {
6098 content: "\f02c";
6098 content: "\f02c";
6099 }
6099 }
6100 .fa-book:before {
6100 .fa-book:before {
6101 content: "\f02d";
6101 content: "\f02d";
6102 }
6102 }
6103 .fa-bookmark:before {
6103 .fa-bookmark:before {
6104 content: "\f02e";
6104 content: "\f02e";
6105 }
6105 }
6106 .fa-print:before {
6106 .fa-print:before {
6107 content: "\f02f";
6107 content: "\f02f";
6108 }
6108 }
6109 .fa-camera:before {
6109 .fa-camera:before {
6110 content: "\f030";
6110 content: "\f030";
6111 }
6111 }
6112 .fa-font:before {
6112 .fa-font:before {
6113 content: "\f031";
6113 content: "\f031";
6114 }
6114 }
6115 .fa-bold:before {
6115 .fa-bold:before {
6116 content: "\f032";
6116 content: "\f032";
6117 }
6117 }
6118 .fa-italic:before {
6118 .fa-italic:before {
6119 content: "\f033";
6119 content: "\f033";
6120 }
6120 }
6121 .fa-text-height:before {
6121 .fa-text-height:before {
6122 content: "\f034";
6122 content: "\f034";
6123 }
6123 }
6124 .fa-text-width:before {
6124 .fa-text-width:before {
6125 content: "\f035";
6125 content: "\f035";
6126 }
6126 }
6127 .fa-align-left:before {
6127 .fa-align-left:before {
6128 content: "\f036";
6128 content: "\f036";
6129 }
6129 }
6130 .fa-align-center:before {
6130 .fa-align-center:before {
6131 content: "\f037";
6131 content: "\f037";
6132 }
6132 }
6133 .fa-align-right:before {
6133 .fa-align-right:before {
6134 content: "\f038";
6134 content: "\f038";
6135 }
6135 }
6136 .fa-align-justify:before {
6136 .fa-align-justify:before {
6137 content: "\f039";
6137 content: "\f039";
6138 }
6138 }
6139 .fa-list:before {
6139 .fa-list:before {
6140 content: "\f03a";
6140 content: "\f03a";
6141 }
6141 }
6142 .fa-dedent:before,
6142 .fa-dedent:before,
6143 .fa-outdent:before {
6143 .fa-outdent:before {
6144 content: "\f03b";
6144 content: "\f03b";
6145 }
6145 }
6146 .fa-indent:before {
6146 .fa-indent:before {
6147 content: "\f03c";
6147 content: "\f03c";
6148 }
6148 }
6149 .fa-video-camera:before {
6149 .fa-video-camera:before {
6150 content: "\f03d";
6150 content: "\f03d";
6151 }
6151 }
6152 .fa-photo:before,
6152 .fa-photo:before,
6153 .fa-image:before,
6153 .fa-image:before,
6154 .fa-picture-o:before {
6154 .fa-picture-o:before {
6155 content: "\f03e";
6155 content: "\f03e";
6156 }
6156 }
6157 .fa-pencil:before {
6157 .fa-pencil:before {
6158 content: "\f040";
6158 content: "\f040";
6159 }
6159 }
6160 .fa-map-marker:before {
6160 .fa-map-marker:before {
6161 content: "\f041";
6161 content: "\f041";
6162 }
6162 }
6163 .fa-adjust:before {
6163 .fa-adjust:before {
6164 content: "\f042";
6164 content: "\f042";
6165 }
6165 }
6166 .fa-tint:before {
6166 .fa-tint:before {
6167 content: "\f043";
6167 content: "\f043";
6168 }
6168 }
6169 .fa-edit:before,
6169 .fa-edit:before,
6170 .fa-pencil-square-o:before {
6170 .fa-pencil-square-o:before {
6171 content: "\f044";
6171 content: "\f044";
6172 }
6172 }
6173 .fa-share-square-o:before {
6173 .fa-share-square-o:before {
6174 content: "\f045";
6174 content: "\f045";
6175 }
6175 }
6176 .fa-check-square-o:before {
6176 .fa-check-square-o:before {
6177 content: "\f046";
6177 content: "\f046";
6178 }
6178 }
6179 .fa-arrows:before {
6179 .fa-arrows:before {
6180 content: "\f047";
6180 content: "\f047";
6181 }
6181 }
6182 .fa-step-backward:before {
6182 .fa-step-backward:before {
6183 content: "\f048";
6183 content: "\f048";
6184 }
6184 }
6185 .fa-fast-backward:before {
6185 .fa-fast-backward:before {
6186 content: "\f049";
6186 content: "\f049";
6187 }
6187 }
6188 .fa-backward:before {
6188 .fa-backward:before {
6189 content: "\f04a";
6189 content: "\f04a";
6190 }
6190 }
6191 .fa-play:before {
6191 .fa-play:before {
6192 content: "\f04b";
6192 content: "\f04b";
6193 }
6193 }
6194 .fa-pause:before {
6194 .fa-pause:before {
6195 content: "\f04c";
6195 content: "\f04c";
6196 }
6196 }
6197 .fa-stop:before {
6197 .fa-stop:before {
6198 content: "\f04d";
6198 content: "\f04d";
6199 }
6199 }
6200 .fa-forward:before {
6200 .fa-forward:before {
6201 content: "\f04e";
6201 content: "\f04e";
6202 }
6202 }
6203 .fa-fast-forward:before {
6203 .fa-fast-forward:before {
6204 content: "\f050";
6204 content: "\f050";
6205 }
6205 }
6206 .fa-step-forward:before {
6206 .fa-step-forward:before {
6207 content: "\f051";
6207 content: "\f051";
6208 }
6208 }
6209 .fa-eject:before {
6209 .fa-eject:before {
6210 content: "\f052";
6210 content: "\f052";
6211 }
6211 }
6212 .fa-chevron-left:before {
6212 .fa-chevron-left:before {
6213 content: "\f053";
6213 content: "\f053";
6214 }
6214 }
6215 .fa-chevron-right:before {
6215 .fa-chevron-right:before {
6216 content: "\f054";
6216 content: "\f054";
6217 }
6217 }
6218 .fa-plus-circle:before {
6218 .fa-plus-circle:before {
6219 content: "\f055";
6219 content: "\f055";
6220 }
6220 }
6221 .fa-minus-circle:before {
6221 .fa-minus-circle:before {
6222 content: "\f056";
6222 content: "\f056";
6223 }
6223 }
6224 .fa-times-circle:before {
6224 .fa-times-circle:before {
6225 content: "\f057";
6225 content: "\f057";
6226 }
6226 }
6227 .fa-check-circle:before {
6227 .fa-check-circle:before {
6228 content: "\f058";
6228 content: "\f058";
6229 }
6229 }
6230 .fa-question-circle:before {
6230 .fa-question-circle:before {
6231 content: "\f059";
6231 content: "\f059";
6232 }
6232 }
6233 .fa-info-circle:before {
6233 .fa-info-circle:before {
6234 content: "\f05a";
6234 content: "\f05a";
6235 }
6235 }
6236 .fa-crosshairs:before {
6236 .fa-crosshairs:before {
6237 content: "\f05b";
6237 content: "\f05b";
6238 }
6238 }
6239 .fa-times-circle-o:before {
6239 .fa-times-circle-o:before {
6240 content: "\f05c";
6240 content: "\f05c";
6241 }
6241 }
6242 .fa-check-circle-o:before {
6242 .fa-check-circle-o:before {
6243 content: "\f05d";
6243 content: "\f05d";
6244 }
6244 }
6245 .fa-ban:before {
6245 .fa-ban:before {
6246 content: "\f05e";
6246 content: "\f05e";
6247 }
6247 }
6248 .fa-arrow-left:before {
6248 .fa-arrow-left:before {
6249 content: "\f060";
6249 content: "\f060";
6250 }
6250 }
6251 .fa-arrow-right:before {
6251 .fa-arrow-right:before {
6252 content: "\f061";
6252 content: "\f061";
6253 }
6253 }
6254 .fa-arrow-up:before {
6254 .fa-arrow-up:before {
6255 content: "\f062";
6255 content: "\f062";
6256 }
6256 }
6257 .fa-arrow-down:before {
6257 .fa-arrow-down:before {
6258 content: "\f063";
6258 content: "\f063";
6259 }
6259 }
6260 .fa-mail-forward:before,
6260 .fa-mail-forward:before,
6261 .fa-share:before {
6261 .fa-share:before {
6262 content: "\f064";
6262 content: "\f064";
6263 }
6263 }
6264 .fa-expand:before {
6264 .fa-expand:before {
6265 content: "\f065";
6265 content: "\f065";
6266 }
6266 }
6267 .fa-compress:before {
6267 .fa-compress:before {
6268 content: "\f066";
6268 content: "\f066";
6269 }
6269 }
6270 .fa-plus:before {
6270 .fa-plus:before {
6271 content: "\f067";
6271 content: "\f067";
6272 }
6272 }
6273 .fa-minus:before {
6273 .fa-minus:before {
6274 content: "\f068";
6274 content: "\f068";
6275 }
6275 }
6276 .fa-asterisk:before {
6276 .fa-asterisk:before {
6277 content: "\f069";
6277 content: "\f069";
6278 }
6278 }
6279 .fa-exclamation-circle:before {
6279 .fa-exclamation-circle:before {
6280 content: "\f06a";
6280 content: "\f06a";
6281 }
6281 }
6282 .fa-gift:before {
6282 .fa-gift:before {
6283 content: "\f06b";
6283 content: "\f06b";
6284 }
6284 }
6285 .fa-leaf:before {
6285 .fa-leaf:before {
6286 content: "\f06c";
6286 content: "\f06c";
6287 }
6287 }
6288 .fa-fire:before {
6288 .fa-fire:before {
6289 content: "\f06d";
6289 content: "\f06d";
6290 }
6290 }
6291 .fa-eye:before {
6291 .fa-eye:before {
6292 content: "\f06e";
6292 content: "\f06e";
6293 }
6293 }
6294 .fa-eye-slash:before {
6294 .fa-eye-slash:before {
6295 content: "\f070";
6295 content: "\f070";
6296 }
6296 }
6297 .fa-warning:before,
6297 .fa-warning:before,
6298 .fa-exclamation-triangle:before {
6298 .fa-exclamation-triangle:before {
6299 content: "\f071";
6299 content: "\f071";
6300 }
6300 }
6301 .fa-plane:before {
6301 .fa-plane:before {
6302 content: "\f072";
6302 content: "\f072";
6303 }
6303 }
6304 .fa-calendar:before {
6304 .fa-calendar:before {
6305 content: "\f073";
6305 content: "\f073";
6306 }
6306 }
6307 .fa-random:before {
6307 .fa-random:before {
6308 content: "\f074";
6308 content: "\f074";
6309 }
6309 }
6310 .fa-comment:before {
6310 .fa-comment:before {
6311 content: "\f075";
6311 content: "\f075";
6312 }
6312 }
6313 .fa-magnet:before {
6313 .fa-magnet:before {
6314 content: "\f076";
6314 content: "\f076";
6315 }
6315 }
6316 .fa-chevron-up:before {
6316 .fa-chevron-up:before {
6317 content: "\f077";
6317 content: "\f077";
6318 }
6318 }
6319 .fa-chevron-down:before {
6319 .fa-chevron-down:before {
6320 content: "\f078";
6320 content: "\f078";
6321 }
6321 }
6322 .fa-retweet:before {
6322 .fa-retweet:before {
6323 content: "\f079";
6323 content: "\f079";
6324 }
6324 }
6325 .fa-shopping-cart:before {
6325 .fa-shopping-cart:before {
6326 content: "\f07a";
6326 content: "\f07a";
6327 }
6327 }
6328 .fa-folder:before {
6328 .fa-folder:before {
6329 content: "\f07b";
6329 content: "\f07b";
6330 }
6330 }
6331 .fa-folder-open:before {
6331 .fa-folder-open:before {
6332 content: "\f07c";
6332 content: "\f07c";
6333 }
6333 }
6334 .fa-arrows-v:before {
6334 .fa-arrows-v:before {
6335 content: "\f07d";
6335 content: "\f07d";
6336 }
6336 }
6337 .fa-arrows-h:before {
6337 .fa-arrows-h:before {
6338 content: "\f07e";
6338 content: "\f07e";
6339 }
6339 }
6340 .fa-bar-chart-o:before {
6340 .fa-bar-chart-o:before {
6341 content: "\f080";
6341 content: "\f080";
6342 }
6342 }
6343 .fa-twitter-square:before {
6343 .fa-twitter-square:before {
6344 content: "\f081";
6344 content: "\f081";
6345 }
6345 }
6346 .fa-facebook-square:before {
6346 .fa-facebook-square:before {
6347 content: "\f082";
6347 content: "\f082";
6348 }
6348 }
6349 .fa-camera-retro:before {
6349 .fa-camera-retro:before {
6350 content: "\f083";
6350 content: "\f083";
6351 }
6351 }
6352 .fa-key:before {
6352 .fa-key:before {
6353 content: "\f084";
6353 content: "\f084";
6354 }
6354 }
6355 .fa-gears:before,
6355 .fa-gears:before,
6356 .fa-cogs:before {
6356 .fa-cogs:before {
6357 content: "\f085";
6357 content: "\f085";
6358 }
6358 }
6359 .fa-comments:before {
6359 .fa-comments:before {
6360 content: "\f086";
6360 content: "\f086";
6361 }
6361 }
6362 .fa-thumbs-o-up:before {
6362 .fa-thumbs-o-up:before {
6363 content: "\f087";
6363 content: "\f087";
6364 }
6364 }
6365 .fa-thumbs-o-down:before {
6365 .fa-thumbs-o-down:before {
6366 content: "\f088";
6366 content: "\f088";
6367 }
6367 }
6368 .fa-star-half:before {
6368 .fa-star-half:before {
6369 content: "\f089";
6369 content: "\f089";
6370 }
6370 }
6371 .fa-heart-o:before {
6371 .fa-heart-o:before {
6372 content: "\f08a";
6372 content: "\f08a";
6373 }
6373 }
6374 .fa-sign-out:before {
6374 .fa-sign-out:before {
6375 content: "\f08b";
6375 content: "\f08b";
6376 }
6376 }
6377 .fa-linkedin-square:before {
6377 .fa-linkedin-square:before {
6378 content: "\f08c";
6378 content: "\f08c";
6379 }
6379 }
6380 .fa-thumb-tack:before {
6380 .fa-thumb-tack:before {
6381 content: "\f08d";
6381 content: "\f08d";
6382 }
6382 }
6383 .fa-external-link:before {
6383 .fa-external-link:before {
6384 content: "\f08e";
6384 content: "\f08e";
6385 }
6385 }
6386 .fa-sign-in:before {
6386 .fa-sign-in:before {
6387 content: "\f090";
6387 content: "\f090";
6388 }
6388 }
6389 .fa-trophy:before {
6389 .fa-trophy:before {
6390 content: "\f091";
6390 content: "\f091";
6391 }
6391 }
6392 .fa-github-square:before {
6392 .fa-github-square:before {
6393 content: "\f092";
6393 content: "\f092";
6394 }
6394 }
6395 .fa-upload:before {
6395 .fa-upload:before {
6396 content: "\f093";
6396 content: "\f093";
6397 }
6397 }
6398 .fa-lemon-o:before {
6398 .fa-lemon-o:before {
6399 content: "\f094";
6399 content: "\f094";
6400 }
6400 }
6401 .fa-phone:before {
6401 .fa-phone:before {
6402 content: "\f095";
6402 content: "\f095";
6403 }
6403 }
6404 .fa-square-o:before {
6404 .fa-square-o:before {
6405 content: "\f096";
6405 content: "\f096";
6406 }
6406 }
6407 .fa-bookmark-o:before {
6407 .fa-bookmark-o:before {
6408 content: "\f097";
6408 content: "\f097";
6409 }
6409 }
6410 .fa-phone-square:before {
6410 .fa-phone-square:before {
6411 content: "\f098";
6411 content: "\f098";
6412 }
6412 }
6413 .fa-twitter:before {
6413 .fa-twitter:before {
6414 content: "\f099";
6414 content: "\f099";
6415 }
6415 }
6416 .fa-facebook:before {
6416 .fa-facebook:before {
6417 content: "\f09a";
6417 content: "\f09a";
6418 }
6418 }
6419 .fa-github:before {
6419 .fa-github:before {
6420 content: "\f09b";
6420 content: "\f09b";
6421 }
6421 }
6422 .fa-unlock:before {
6422 .fa-unlock:before {
6423 content: "\f09c";
6423 content: "\f09c";
6424 }
6424 }
6425 .fa-credit-card:before {
6425 .fa-credit-card:before {
6426 content: "\f09d";
6426 content: "\f09d";
6427 }
6427 }
6428 .fa-rss:before {
6428 .fa-rss:before {
6429 content: "\f09e";
6429 content: "\f09e";
6430 }
6430 }
6431 .fa-hdd-o:before {
6431 .fa-hdd-o:before {
6432 content: "\f0a0";
6432 content: "\f0a0";
6433 }
6433 }
6434 .fa-bullhorn:before {
6434 .fa-bullhorn:before {
6435 content: "\f0a1";
6435 content: "\f0a1";
6436 }
6436 }
6437 .fa-bell:before {
6437 .fa-bell:before {
6438 content: "\f0f3";
6438 content: "\f0f3";
6439 }
6439 }
6440 .fa-certificate:before {
6440 .fa-certificate:before {
6441 content: "\f0a3";
6441 content: "\f0a3";
6442 }
6442 }
6443 .fa-hand-o-right:before {
6443 .fa-hand-o-right:before {
6444 content: "\f0a4";
6444 content: "\f0a4";
6445 }
6445 }
6446 .fa-hand-o-left:before {
6446 .fa-hand-o-left:before {
6447 content: "\f0a5";
6447 content: "\f0a5";
6448 }
6448 }
6449 .fa-hand-o-up:before {
6449 .fa-hand-o-up:before {
6450 content: "\f0a6";
6450 content: "\f0a6";
6451 }
6451 }
6452 .fa-hand-o-down:before {
6452 .fa-hand-o-down:before {
6453 content: "\f0a7";
6453 content: "\f0a7";
6454 }
6454 }
6455 .fa-arrow-circle-left:before {
6455 .fa-arrow-circle-left:before {
6456 content: "\f0a8";
6456 content: "\f0a8";
6457 }
6457 }
6458 .fa-arrow-circle-right:before {
6458 .fa-arrow-circle-right:before {
6459 content: "\f0a9";
6459 content: "\f0a9";
6460 }
6460 }
6461 .fa-arrow-circle-up:before {
6461 .fa-arrow-circle-up:before {
6462 content: "\f0aa";
6462 content: "\f0aa";
6463 }
6463 }
6464 .fa-arrow-circle-down:before {
6464 .fa-arrow-circle-down:before {
6465 content: "\f0ab";
6465 content: "\f0ab";
6466 }
6466 }
6467 .fa-globe:before {
6467 .fa-globe:before {
6468 content: "\f0ac";
6468 content: "\f0ac";
6469 }
6469 }
6470 .fa-wrench:before {
6470 .fa-wrench:before {
6471 content: "\f0ad";
6471 content: "\f0ad";
6472 }
6472 }
6473 .fa-tasks:before {
6473 .fa-tasks:before {
6474 content: "\f0ae";
6474 content: "\f0ae";
6475 }
6475 }
6476 .fa-filter:before {
6476 .fa-filter:before {
6477 content: "\f0b0";
6477 content: "\f0b0";
6478 }
6478 }
6479 .fa-briefcase:before {
6479 .fa-briefcase:before {
6480 content: "\f0b1";
6480 content: "\f0b1";
6481 }
6481 }
6482 .fa-arrows-alt:before {
6482 .fa-arrows-alt:before {
6483 content: "\f0b2";
6483 content: "\f0b2";
6484 }
6484 }
6485 .fa-group:before,
6485 .fa-group:before,
6486 .fa-users:before {
6486 .fa-users:before {
6487 content: "\f0c0";
6487 content: "\f0c0";
6488 }
6488 }
6489 .fa-chain:before,
6489 .fa-chain:before,
6490 .fa-link:before {
6490 .fa-link:before {
6491 content: "\f0c1";
6491 content: "\f0c1";
6492 }
6492 }
6493 .fa-cloud:before {
6493 .fa-cloud:before {
6494 content: "\f0c2";
6494 content: "\f0c2";
6495 }
6495 }
6496 .fa-flask:before {
6496 .fa-flask:before {
6497 content: "\f0c3";
6497 content: "\f0c3";
6498 }
6498 }
6499 .fa-cut:before,
6499 .fa-cut:before,
6500 .fa-scissors:before {
6500 .fa-scissors:before {
6501 content: "\f0c4";
6501 content: "\f0c4";
6502 }
6502 }
6503 .fa-copy:before,
6503 .fa-copy:before,
6504 .fa-files-o:before {
6504 .fa-files-o:before {
6505 content: "\f0c5";
6505 content: "\f0c5";
6506 }
6506 }
6507 .fa-paperclip:before {
6507 .fa-paperclip:before {
6508 content: "\f0c6";
6508 content: "\f0c6";
6509 }
6509 }
6510 .fa-save:before,
6510 .fa-save:before,
6511 .fa-floppy-o:before {
6511 .fa-floppy-o:before {
6512 content: "\f0c7";
6512 content: "\f0c7";
6513 }
6513 }
6514 .fa-square:before {
6514 .fa-square:before {
6515 content: "\f0c8";
6515 content: "\f0c8";
6516 }
6516 }
6517 .fa-navicon:before,
6517 .fa-navicon:before,
6518 .fa-reorder:before,
6518 .fa-reorder:before,
6519 .fa-bars:before {
6519 .fa-bars:before {
6520 content: "\f0c9";
6520 content: "\f0c9";
6521 }
6521 }
6522 .fa-list-ul:before {
6522 .fa-list-ul:before {
6523 content: "\f0ca";
6523 content: "\f0ca";
6524 }
6524 }
6525 .fa-list-ol:before {
6525 .fa-list-ol:before {
6526 content: "\f0cb";
6526 content: "\f0cb";
6527 }
6527 }
6528 .fa-strikethrough:before {
6528 .fa-strikethrough:before {
6529 content: "\f0cc";
6529 content: "\f0cc";
6530 }
6530 }
6531 .fa-underline:before {
6531 .fa-underline:before {
6532 content: "\f0cd";
6532 content: "\f0cd";
6533 }
6533 }
6534 .fa-table:before {
6534 .fa-table:before {
6535 content: "\f0ce";
6535 content: "\f0ce";
6536 }
6536 }
6537 .fa-magic:before {
6537 .fa-magic:before {
6538 content: "\f0d0";
6538 content: "\f0d0";
6539 }
6539 }
6540 .fa-truck:before {
6540 .fa-truck:before {
6541 content: "\f0d1";
6541 content: "\f0d1";
6542 }
6542 }
6543 .fa-pinterest:before {
6543 .fa-pinterest:before {
6544 content: "\f0d2";
6544 content: "\f0d2";
6545 }
6545 }
6546 .fa-pinterest-square:before {
6546 .fa-pinterest-square:before {
6547 content: "\f0d3";
6547 content: "\f0d3";
6548 }
6548 }
6549 .fa-google-plus-square:before {
6549 .fa-google-plus-square:before {
6550 content: "\f0d4";
6550 content: "\f0d4";
6551 }
6551 }
6552 .fa-google-plus:before {
6552 .fa-google-plus:before {
6553 content: "\f0d5";
6553 content: "\f0d5";
6554 }
6554 }
6555 .fa-money:before {
6555 .fa-money:before {
6556 content: "\f0d6";
6556 content: "\f0d6";
6557 }
6557 }
6558 .fa-caret-down:before {
6558 .fa-caret-down:before {
6559 content: "\f0d7";
6559 content: "\f0d7";
6560 }
6560 }
6561 .fa-caret-up:before {
6561 .fa-caret-up:before {
6562 content: "\f0d8";
6562 content: "\f0d8";
6563 }
6563 }
6564 .fa-caret-left:before {
6564 .fa-caret-left:before {
6565 content: "\f0d9";
6565 content: "\f0d9";
6566 }
6566 }
6567 .fa-caret-right:before {
6567 .fa-caret-right:before {
6568 content: "\f0da";
6568 content: "\f0da";
6569 }
6569 }
6570 .fa-columns:before {
6570 .fa-columns:before {
6571 content: "\f0db";
6571 content: "\f0db";
6572 }
6572 }
6573 .fa-unsorted:before,
6573 .fa-unsorted:before,
6574 .fa-sort:before {
6574 .fa-sort:before {
6575 content: "\f0dc";
6575 content: "\f0dc";
6576 }
6576 }
6577 .fa-sort-down:before,
6577 .fa-sort-down:before,
6578 .fa-sort-desc:before {
6578 .fa-sort-desc:before {
6579 content: "\f0dd";
6579 content: "\f0dd";
6580 }
6580 }
6581 .fa-sort-up:before,
6581 .fa-sort-up:before,
6582 .fa-sort-asc:before {
6582 .fa-sort-asc:before {
6583 content: "\f0de";
6583 content: "\f0de";
6584 }
6584 }
6585 .fa-envelope:before {
6585 .fa-envelope:before {
6586 content: "\f0e0";
6586 content: "\f0e0";
6587 }
6587 }
6588 .fa-linkedin:before {
6588 .fa-linkedin:before {
6589 content: "\f0e1";
6589 content: "\f0e1";
6590 }
6590 }
6591 .fa-rotate-left:before,
6591 .fa-rotate-left:before,
6592 .fa-undo:before {
6592 .fa-undo:before {
6593 content: "\f0e2";
6593 content: "\f0e2";
6594 }
6594 }
6595 .fa-legal:before,
6595 .fa-legal:before,
6596 .fa-gavel:before {
6596 .fa-gavel:before {
6597 content: "\f0e3";
6597 content: "\f0e3";
6598 }
6598 }
6599 .fa-dashboard:before,
6599 .fa-dashboard:before,
6600 .fa-tachometer:before {
6600 .fa-tachometer:before {
6601 content: "\f0e4";
6601 content: "\f0e4";
6602 }
6602 }
6603 .fa-comment-o:before {
6603 .fa-comment-o:before {
6604 content: "\f0e5";
6604 content: "\f0e5";
6605 }
6605 }
6606 .fa-comments-o:before {
6606 .fa-comments-o:before {
6607 content: "\f0e6";
6607 content: "\f0e6";
6608 }
6608 }
6609 .fa-flash:before,
6609 .fa-flash:before,
6610 .fa-bolt:before {
6610 .fa-bolt:before {
6611 content: "\f0e7";
6611 content: "\f0e7";
6612 }
6612 }
6613 .fa-sitemap:before {
6613 .fa-sitemap:before {
6614 content: "\f0e8";
6614 content: "\f0e8";
6615 }
6615 }
6616 .fa-umbrella:before {
6616 .fa-umbrella:before {
6617 content: "\f0e9";
6617 content: "\f0e9";
6618 }
6618 }
6619 .fa-paste:before,
6619 .fa-paste:before,
6620 .fa-clipboard:before {
6620 .fa-clipboard:before {
6621 content: "\f0ea";
6621 content: "\f0ea";
6622 }
6622 }
6623 .fa-lightbulb-o:before {
6623 .fa-lightbulb-o:before {
6624 content: "\f0eb";
6624 content: "\f0eb";
6625 }
6625 }
6626 .fa-exchange:before {
6626 .fa-exchange:before {
6627 content: "\f0ec";
6627 content: "\f0ec";
6628 }
6628 }
6629 .fa-cloud-download:before {
6629 .fa-cloud-download:before {
6630 content: "\f0ed";
6630 content: "\f0ed";
6631 }
6631 }
6632 .fa-cloud-upload:before {
6632 .fa-cloud-upload:before {
6633 content: "\f0ee";
6633 content: "\f0ee";
6634 }
6634 }
6635 .fa-user-md:before {
6635 .fa-user-md:before {
6636 content: "\f0f0";
6636 content: "\f0f0";
6637 }
6637 }
6638 .fa-stethoscope:before {
6638 .fa-stethoscope:before {
6639 content: "\f0f1";
6639 content: "\f0f1";
6640 }
6640 }
6641 .fa-suitcase:before {
6641 .fa-suitcase:before {
6642 content: "\f0f2";
6642 content: "\f0f2";
6643 }
6643 }
6644 .fa-bell-o:before {
6644 .fa-bell-o:before {
6645 content: "\f0a2";
6645 content: "\f0a2";
6646 }
6646 }
6647 .fa-coffee:before {
6647 .fa-coffee:before {
6648 content: "\f0f4";
6648 content: "\f0f4";
6649 }
6649 }
6650 .fa-cutlery:before {
6650 .fa-cutlery:before {
6651 content: "\f0f5";
6651 content: "\f0f5";
6652 }
6652 }
6653 .fa-file-text-o:before {
6653 .fa-file-text-o:before {
6654 content: "\f0f6";
6654 content: "\f0f6";
6655 }
6655 }
6656 .fa-building-o:before {
6656 .fa-building-o:before {
6657 content: "\f0f7";
6657 content: "\f0f7";
6658 }
6658 }
6659 .fa-hospital-o:before {
6659 .fa-hospital-o:before {
6660 content: "\f0f8";
6660 content: "\f0f8";
6661 }
6661 }
6662 .fa-ambulance:before {
6662 .fa-ambulance:before {
6663 content: "\f0f9";
6663 content: "\f0f9";
6664 }
6664 }
6665 .fa-medkit:before {
6665 .fa-medkit:before {
6666 content: "\f0fa";
6666 content: "\f0fa";
6667 }
6667 }
6668 .fa-fighter-jet:before {
6668 .fa-fighter-jet:before {
6669 content: "\f0fb";
6669 content: "\f0fb";
6670 }
6670 }
6671 .fa-beer:before {
6671 .fa-beer:before {
6672 content: "\f0fc";
6672 content: "\f0fc";
6673 }
6673 }
6674 .fa-h-square:before {
6674 .fa-h-square:before {
6675 content: "\f0fd";
6675 content: "\f0fd";
6676 }
6676 }
6677 .fa-plus-square:before {
6677 .fa-plus-square:before {
6678 content: "\f0fe";
6678 content: "\f0fe";
6679 }
6679 }
6680 .fa-angle-double-left:before {
6680 .fa-angle-double-left:before {
6681 content: "\f100";
6681 content: "\f100";
6682 }
6682 }
6683 .fa-angle-double-right:before {
6683 .fa-angle-double-right:before {
6684 content: "\f101";
6684 content: "\f101";
6685 }
6685 }
6686 .fa-angle-double-up:before {
6686 .fa-angle-double-up:before {
6687 content: "\f102";
6687 content: "\f102";
6688 }
6688 }
6689 .fa-angle-double-down:before {
6689 .fa-angle-double-down:before {
6690 content: "\f103";
6690 content: "\f103";
6691 }
6691 }
6692 .fa-angle-left:before {
6692 .fa-angle-left:before {
6693 content: "\f104";
6693 content: "\f104";
6694 }
6694 }
6695 .fa-angle-right:before {
6695 .fa-angle-right:before {
6696 content: "\f105";
6696 content: "\f105";
6697 }
6697 }
6698 .fa-angle-up:before {
6698 .fa-angle-up:before {
6699 content: "\f106";
6699 content: "\f106";
6700 }
6700 }
6701 .fa-angle-down:before {
6701 .fa-angle-down:before {
6702 content: "\f107";
6702 content: "\f107";
6703 }
6703 }
6704 .fa-desktop:before {
6704 .fa-desktop:before {
6705 content: "\f108";
6705 content: "\f108";
6706 }
6706 }
6707 .fa-laptop:before {
6707 .fa-laptop:before {
6708 content: "\f109";
6708 content: "\f109";
6709 }
6709 }
6710 .fa-tablet:before {
6710 .fa-tablet:before {
6711 content: "\f10a";
6711 content: "\f10a";
6712 }
6712 }
6713 .fa-mobile-phone:before,
6713 .fa-mobile-phone:before,
6714 .fa-mobile:before {
6714 .fa-mobile:before {
6715 content: "\f10b";
6715 content: "\f10b";
6716 }
6716 }
6717 .fa-circle-o:before {
6717 .fa-circle-o:before {
6718 content: "\f10c";
6718 content: "\f10c";
6719 }
6719 }
6720 .fa-quote-left:before {
6720 .fa-quote-left:before {
6721 content: "\f10d";
6721 content: "\f10d";
6722 }
6722 }
6723 .fa-quote-right:before {
6723 .fa-quote-right:before {
6724 content: "\f10e";
6724 content: "\f10e";
6725 }
6725 }
6726 .fa-spinner:before {
6726 .fa-spinner:before {
6727 content: "\f110";
6727 content: "\f110";
6728 }
6728 }
6729 .fa-circle:before {
6729 .fa-circle:before {
6730 content: "\f111";
6730 content: "\f111";
6731 }
6731 }
6732 .fa-mail-reply:before,
6732 .fa-mail-reply:before,
6733 .fa-reply:before {
6733 .fa-reply:before {
6734 content: "\f112";
6734 content: "\f112";
6735 }
6735 }
6736 .fa-github-alt:before {
6736 .fa-github-alt:before {
6737 content: "\f113";
6737 content: "\f113";
6738 }
6738 }
6739 .fa-folder-o:before {
6739 .fa-folder-o:before {
6740 content: "\f114";
6740 content: "\f114";
6741 }
6741 }
6742 .fa-folder-open-o:before {
6742 .fa-folder-open-o:before {
6743 content: "\f115";
6743 content: "\f115";
6744 }
6744 }
6745 .fa-smile-o:before {
6745 .fa-smile-o:before {
6746 content: "\f118";
6746 content: "\f118";
6747 }
6747 }
6748 .fa-frown-o:before {
6748 .fa-frown-o:before {
6749 content: "\f119";
6749 content: "\f119";
6750 }
6750 }
6751 .fa-meh-o:before {
6751 .fa-meh-o:before {
6752 content: "\f11a";
6752 content: "\f11a";
6753 }
6753 }
6754 .fa-gamepad:before {
6754 .fa-gamepad:before {
6755 content: "\f11b";
6755 content: "\f11b";
6756 }
6756 }
6757 .fa-keyboard-o:before {
6757 .fa-keyboard-o:before {
6758 content: "\f11c";
6758 content: "\f11c";
6759 }
6759 }
6760 .fa-flag-o:before {
6760 .fa-flag-o:before {
6761 content: "\f11d";
6761 content: "\f11d";
6762 }
6762 }
6763 .fa-flag-checkered:before {
6763 .fa-flag-checkered:before {
6764 content: "\f11e";
6764 content: "\f11e";
6765 }
6765 }
6766 .fa-terminal:before {
6766 .fa-terminal:before {
6767 content: "\f120";
6767 content: "\f120";
6768 }
6768 }
6769 .fa-code:before {
6769 .fa-code:before {
6770 content: "\f121";
6770 content: "\f121";
6771 }
6771 }
6772 .fa-mail-reply-all:before,
6772 .fa-mail-reply-all:before,
6773 .fa-reply-all:before {
6773 .fa-reply-all:before {
6774 content: "\f122";
6774 content: "\f122";
6775 }
6775 }
6776 .fa-star-half-empty:before,
6776 .fa-star-half-empty:before,
6777 .fa-star-half-full:before,
6777 .fa-star-half-full:before,
6778 .fa-star-half-o:before {
6778 .fa-star-half-o:before {
6779 content: "\f123";
6779 content: "\f123";
6780 }
6780 }
6781 .fa-location-arrow:before {
6781 .fa-location-arrow:before {
6782 content: "\f124";
6782 content: "\f124";
6783 }
6783 }
6784 .fa-crop:before {
6784 .fa-crop:before {
6785 content: "\f125";
6785 content: "\f125";
6786 }
6786 }
6787 .fa-code-fork:before {
6787 .fa-code-fork:before {
6788 content: "\f126";
6788 content: "\f126";
6789 }
6789 }
6790 .fa-unlink:before,
6790 .fa-unlink:before,
6791 .fa-chain-broken:before {
6791 .fa-chain-broken:before {
6792 content: "\f127";
6792 content: "\f127";
6793 }
6793 }
6794 .fa-question:before {
6794 .fa-question:before {
6795 content: "\f128";
6795 content: "\f128";
6796 }
6796 }
6797 .fa-info:before {
6797 .fa-info:before {
6798 content: "\f129";
6798 content: "\f129";
6799 }
6799 }
6800 .fa-exclamation:before {
6800 .fa-exclamation:before {
6801 content: "\f12a";
6801 content: "\f12a";
6802 }
6802 }
6803 .fa-superscript:before {
6803 .fa-superscript:before {
6804 content: "\f12b";
6804 content: "\f12b";
6805 }
6805 }
6806 .fa-subscript:before {
6806 .fa-subscript:before {
6807 content: "\f12c";
6807 content: "\f12c";
6808 }
6808 }
6809 .fa-eraser:before {
6809 .fa-eraser:before {
6810 content: "\f12d";
6810 content: "\f12d";
6811 }
6811 }
6812 .fa-puzzle-piece:before {
6812 .fa-puzzle-piece:before {
6813 content: "\f12e";
6813 content: "\f12e";
6814 }
6814 }
6815 .fa-microphone:before {
6815 .fa-microphone:before {
6816 content: "\f130";
6816 content: "\f130";
6817 }
6817 }
6818 .fa-microphone-slash:before {
6818 .fa-microphone-slash:before {
6819 content: "\f131";
6819 content: "\f131";
6820 }
6820 }
6821 .fa-shield:before {
6821 .fa-shield:before {
6822 content: "\f132";
6822 content: "\f132";
6823 }
6823 }
6824 .fa-calendar-o:before {
6824 .fa-calendar-o:before {
6825 content: "\f133";
6825 content: "\f133";
6826 }
6826 }
6827 .fa-fire-extinguisher:before {
6827 .fa-fire-extinguisher:before {
6828 content: "\f134";
6828 content: "\f134";
6829 }
6829 }
6830 .fa-rocket:before {
6830 .fa-rocket:before {
6831 content: "\f135";
6831 content: "\f135";
6832 }
6832 }
6833 .fa-maxcdn:before {
6833 .fa-maxcdn:before {
6834 content: "\f136";
6834 content: "\f136";
6835 }
6835 }
6836 .fa-chevron-circle-left:before {
6836 .fa-chevron-circle-left:before {
6837 content: "\f137";
6837 content: "\f137";
6838 }
6838 }
6839 .fa-chevron-circle-right:before {
6839 .fa-chevron-circle-right:before {
6840 content: "\f138";
6840 content: "\f138";
6841 }
6841 }
6842 .fa-chevron-circle-up:before {
6842 .fa-chevron-circle-up:before {
6843 content: "\f139";
6843 content: "\f139";
6844 }
6844 }
6845 .fa-chevron-circle-down:before {
6845 .fa-chevron-circle-down:before {
6846 content: "\f13a";
6846 content: "\f13a";
6847 }
6847 }
6848 .fa-html5:before {
6848 .fa-html5:before {
6849 content: "\f13b";
6849 content: "\f13b";
6850 }
6850 }
6851 .fa-css3:before {
6851 .fa-css3:before {
6852 content: "\f13c";
6852 content: "\f13c";
6853 }
6853 }
6854 .fa-anchor:before {
6854 .fa-anchor:before {
6855 content: "\f13d";
6855 content: "\f13d";
6856 }
6856 }
6857 .fa-unlock-alt:before {
6857 .fa-unlock-alt:before {
6858 content: "\f13e";
6858 content: "\f13e";
6859 }
6859 }
6860 .fa-bullseye:before {
6860 .fa-bullseye:before {
6861 content: "\f140";
6861 content: "\f140";
6862 }
6862 }
6863 .fa-ellipsis-h:before {
6863 .fa-ellipsis-h:before {
6864 content: "\f141";
6864 content: "\f141";
6865 }
6865 }
6866 .fa-ellipsis-v:before {
6866 .fa-ellipsis-v:before {
6867 content: "\f142";
6867 content: "\f142";
6868 }
6868 }
6869 .fa-rss-square:before {
6869 .fa-rss-square:before {
6870 content: "\f143";
6870 content: "\f143";
6871 }
6871 }
6872 .fa-play-circle:before {
6872 .fa-play-circle:before {
6873 content: "\f144";
6873 content: "\f144";
6874 }
6874 }
6875 .fa-ticket:before {
6875 .fa-ticket:before {
6876 content: "\f145";
6876 content: "\f145";
6877 }
6877 }
6878 .fa-minus-square:before {
6878 .fa-minus-square:before {
6879 content: "\f146";
6879 content: "\f146";
6880 }
6880 }
6881 .fa-minus-square-o:before {
6881 .fa-minus-square-o:before {
6882 content: "\f147";
6882 content: "\f147";
6883 }
6883 }
6884 .fa-level-up:before {
6884 .fa-level-up:before {
6885 content: "\f148";
6885 content: "\f148";
6886 }
6886 }
6887 .fa-level-down:before {
6887 .fa-level-down:before {
6888 content: "\f149";
6888 content: "\f149";
6889 }
6889 }
6890 .fa-check-square:before {
6890 .fa-check-square:before {
6891 content: "\f14a";
6891 content: "\f14a";
6892 }
6892 }
6893 .fa-pencil-square:before {
6893 .fa-pencil-square:before {
6894 content: "\f14b";
6894 content: "\f14b";
6895 }
6895 }
6896 .fa-external-link-square:before {
6896 .fa-external-link-square:before {
6897 content: "\f14c";
6897 content: "\f14c";
6898 }
6898 }
6899 .fa-share-square:before {
6899 .fa-share-square:before {
6900 content: "\f14d";
6900 content: "\f14d";
6901 }
6901 }
6902 .fa-compass:before {
6902 .fa-compass:before {
6903 content: "\f14e";
6903 content: "\f14e";
6904 }
6904 }
6905 .fa-toggle-down:before,
6905 .fa-toggle-down:before,
6906 .fa-caret-square-o-down:before {
6906 .fa-caret-square-o-down:before {
6907 content: "\f150";
6907 content: "\f150";
6908 }
6908 }
6909 .fa-toggle-up:before,
6909 .fa-toggle-up:before,
6910 .fa-caret-square-o-up:before {
6910 .fa-caret-square-o-up:before {
6911 content: "\f151";
6911 content: "\f151";
6912 }
6912 }
6913 .fa-toggle-right:before,
6913 .fa-toggle-right:before,
6914 .fa-caret-square-o-right:before {
6914 .fa-caret-square-o-right:before {
6915 content: "\f152";
6915 content: "\f152";
6916 }
6916 }
6917 .fa-euro:before,
6917 .fa-euro:before,
6918 .fa-eur:before {
6918 .fa-eur:before {
6919 content: "\f153";
6919 content: "\f153";
6920 }
6920 }
6921 .fa-gbp:before {
6921 .fa-gbp:before {
6922 content: "\f154";
6922 content: "\f154";
6923 }
6923 }
6924 .fa-dollar:before,
6924 .fa-dollar:before,
6925 .fa-usd:before {
6925 .fa-usd:before {
6926 content: "\f155";
6926 content: "\f155";
6927 }
6927 }
6928 .fa-rupee:before,
6928 .fa-rupee:before,
6929 .fa-inr:before {
6929 .fa-inr:before {
6930 content: "\f156";
6930 content: "\f156";
6931 }
6931 }
6932 .fa-cny:before,
6932 .fa-cny:before,
6933 .fa-rmb:before,
6933 .fa-rmb:before,
6934 .fa-yen:before,
6934 .fa-yen:before,
6935 .fa-jpy:before {
6935 .fa-jpy:before {
6936 content: "\f157";
6936 content: "\f157";
6937 }
6937 }
6938 .fa-ruble:before,
6938 .fa-ruble:before,
6939 .fa-rouble:before,
6939 .fa-rouble:before,
6940 .fa-rub:before {
6940 .fa-rub:before {
6941 content: "\f158";
6941 content: "\f158";
6942 }
6942 }
6943 .fa-won:before,
6943 .fa-won:before,
6944 .fa-krw:before {
6944 .fa-krw:before {
6945 content: "\f159";
6945 content: "\f159";
6946 }
6946 }
6947 .fa-bitcoin:before,
6947 .fa-bitcoin:before,
6948 .fa-btc:before {
6948 .fa-btc:before {
6949 content: "\f15a";
6949 content: "\f15a";
6950 }
6950 }
6951 .fa-file:before {
6951 .fa-file:before {
6952 content: "\f15b";
6952 content: "\f15b";
6953 }
6953 }
6954 .fa-file-text:before {
6954 .fa-file-text:before {
6955 content: "\f15c";
6955 content: "\f15c";
6956 }
6956 }
6957 .fa-sort-alpha-asc:before {
6957 .fa-sort-alpha-asc:before {
6958 content: "\f15d";
6958 content: "\f15d";
6959 }
6959 }
6960 .fa-sort-alpha-desc:before {
6960 .fa-sort-alpha-desc:before {
6961 content: "\f15e";
6961 content: "\f15e";
6962 }
6962 }
6963 .fa-sort-amount-asc:before {
6963 .fa-sort-amount-asc:before {
6964 content: "\f160";
6964 content: "\f160";
6965 }
6965 }
6966 .fa-sort-amount-desc:before {
6966 .fa-sort-amount-desc:before {
6967 content: "\f161";
6967 content: "\f161";
6968 }
6968 }
6969 .fa-sort-numeric-asc:before {
6969 .fa-sort-numeric-asc:before {
6970 content: "\f162";
6970 content: "\f162";
6971 }
6971 }
6972 .fa-sort-numeric-desc:before {
6972 .fa-sort-numeric-desc:before {
6973 content: "\f163";
6973 content: "\f163";
6974 }
6974 }
6975 .fa-thumbs-up:before {
6975 .fa-thumbs-up:before {
6976 content: "\f164";
6976 content: "\f164";
6977 }
6977 }
6978 .fa-thumbs-down:before {
6978 .fa-thumbs-down:before {
6979 content: "\f165";
6979 content: "\f165";
6980 }
6980 }
6981 .fa-youtube-square:before {
6981 .fa-youtube-square:before {
6982 content: "\f166";
6982 content: "\f166";
6983 }
6983 }
6984 .fa-youtube:before {
6984 .fa-youtube:before {
6985 content: "\f167";
6985 content: "\f167";
6986 }
6986 }
6987 .fa-xing:before {
6987 .fa-xing:before {
6988 content: "\f168";
6988 content: "\f168";
6989 }
6989 }
6990 .fa-xing-square:before {
6990 .fa-xing-square:before {
6991 content: "\f169";
6991 content: "\f169";
6992 }
6992 }
6993 .fa-youtube-play:before {
6993 .fa-youtube-play:before {
6994 content: "\f16a";
6994 content: "\f16a";
6995 }
6995 }
6996 .fa-dropbox:before {
6996 .fa-dropbox:before {
6997 content: "\f16b";
6997 content: "\f16b";
6998 }
6998 }
6999 .fa-stack-overflow:before {
6999 .fa-stack-overflow:before {
7000 content: "\f16c";
7000 content: "\f16c";
7001 }
7001 }
7002 .fa-instagram:before {
7002 .fa-instagram:before {
7003 content: "\f16d";
7003 content: "\f16d";
7004 }
7004 }
7005 .fa-flickr:before {
7005 .fa-flickr:before {
7006 content: "\f16e";
7006 content: "\f16e";
7007 }
7007 }
7008 .fa-adn:before {
7008 .fa-adn:before {
7009 content: "\f170";
7009 content: "\f170";
7010 }
7010 }
7011 .fa-bitbucket:before {
7011 .fa-bitbucket:before {
7012 content: "\f171";
7012 content: "\f171";
7013 }
7013 }
7014 .fa-bitbucket-square:before {
7014 .fa-bitbucket-square:before {
7015 content: "\f172";
7015 content: "\f172";
7016 }
7016 }
7017 .fa-tumblr:before {
7017 .fa-tumblr:before {
7018 content: "\f173";
7018 content: "\f173";
7019 }
7019 }
7020 .fa-tumblr-square:before {
7020 .fa-tumblr-square:before {
7021 content: "\f174";
7021 content: "\f174";
7022 }
7022 }
7023 .fa-long-arrow-down:before {
7023 .fa-long-arrow-down:before {
7024 content: "\f175";
7024 content: "\f175";
7025 }
7025 }
7026 .fa-long-arrow-up:before {
7026 .fa-long-arrow-up:before {
7027 content: "\f176";
7027 content: "\f176";
7028 }
7028 }
7029 .fa-long-arrow-left:before {
7029 .fa-long-arrow-left:before {
7030 content: "\f177";
7030 content: "\f177";
7031 }
7031 }
7032 .fa-long-arrow-right:before {
7032 .fa-long-arrow-right:before {
7033 content: "\f178";
7033 content: "\f178";
7034 }
7034 }
7035 .fa-apple:before {
7035 .fa-apple:before {
7036 content: "\f179";
7036 content: "\f179";
7037 }
7037 }
7038 .fa-windows:before {
7038 .fa-windows:before {
7039 content: "\f17a";
7039 content: "\f17a";
7040 }
7040 }
7041 .fa-android:before {
7041 .fa-android:before {
7042 content: "\f17b";
7042 content: "\f17b";
7043 }
7043 }
7044 .fa-linux:before {
7044 .fa-linux:before {
7045 content: "\f17c";
7045 content: "\f17c";
7046 }
7046 }
7047 .fa-dribbble:before {
7047 .fa-dribbble:before {
7048 content: "\f17d";
7048 content: "\f17d";
7049 }
7049 }
7050 .fa-skype:before {
7050 .fa-skype:before {
7051 content: "\f17e";
7051 content: "\f17e";
7052 }
7052 }
7053 .fa-foursquare:before {
7053 .fa-foursquare:before {
7054 content: "\f180";
7054 content: "\f180";
7055 }
7055 }
7056 .fa-trello:before {
7056 .fa-trello:before {
7057 content: "\f181";
7057 content: "\f181";
7058 }
7058 }
7059 .fa-female:before {
7059 .fa-female:before {
7060 content: "\f182";
7060 content: "\f182";
7061 }
7061 }
7062 .fa-male:before {
7062 .fa-male:before {
7063 content: "\f183";
7063 content: "\f183";
7064 }
7064 }
7065 .fa-gittip:before {
7065 .fa-gittip:before {
7066 content: "\f184";
7066 content: "\f184";
7067 }
7067 }
7068 .fa-sun-o:before {
7068 .fa-sun-o:before {
7069 content: "\f185";
7069 content: "\f185";
7070 }
7070 }
7071 .fa-moon-o:before {
7071 .fa-moon-o:before {
7072 content: "\f186";
7072 content: "\f186";
7073 }
7073 }
7074 .fa-archive:before {
7074 .fa-archive:before {
7075 content: "\f187";
7075 content: "\f187";
7076 }
7076 }
7077 .fa-bug:before {
7077 .fa-bug:before {
7078 content: "\f188";
7078 content: "\f188";
7079 }
7079 }
7080 .fa-vk:before {
7080 .fa-vk:before {
7081 content: "\f189";
7081 content: "\f189";
7082 }
7082 }
7083 .fa-weibo:before {
7083 .fa-weibo:before {
7084 content: "\f18a";
7084 content: "\f18a";
7085 }
7085 }
7086 .fa-renren:before {
7086 .fa-renren:before {
7087 content: "\f18b";
7087 content: "\f18b";
7088 }
7088 }
7089 .fa-pagelines:before {
7089 .fa-pagelines:before {
7090 content: "\f18c";
7090 content: "\f18c";
7091 }
7091 }
7092 .fa-stack-exchange:before {
7092 .fa-stack-exchange:before {
7093 content: "\f18d";
7093 content: "\f18d";
7094 }
7094 }
7095 .fa-arrow-circle-o-right:before {
7095 .fa-arrow-circle-o-right:before {
7096 content: "\f18e";
7096 content: "\f18e";
7097 }
7097 }
7098 .fa-arrow-circle-o-left:before {
7098 .fa-arrow-circle-o-left:before {
7099 content: "\f190";
7099 content: "\f190";
7100 }
7100 }
7101 .fa-toggle-left:before,
7101 .fa-toggle-left:before,
7102 .fa-caret-square-o-left:before {
7102 .fa-caret-square-o-left:before {
7103 content: "\f191";
7103 content: "\f191";
7104 }
7104 }
7105 .fa-dot-circle-o:before {
7105 .fa-dot-circle-o:before {
7106 content: "\f192";
7106 content: "\f192";
7107 }
7107 }
7108 .fa-wheelchair:before {
7108 .fa-wheelchair:before {
7109 content: "\f193";
7109 content: "\f193";
7110 }
7110 }
7111 .fa-vimeo-square:before {
7111 .fa-vimeo-square:before {
7112 content: "\f194";
7112 content: "\f194";
7113 }
7113 }
7114 .fa-turkish-lira:before,
7114 .fa-turkish-lira:before,
7115 .fa-try:before {
7115 .fa-try:before {
7116 content: "\f195";
7116 content: "\f195";
7117 }
7117 }
7118 .fa-plus-square-o:before {
7118 .fa-plus-square-o:before {
7119 content: "\f196";
7119 content: "\f196";
7120 }
7120 }
7121 .fa-space-shuttle:before {
7121 .fa-space-shuttle:before {
7122 content: "\f197";
7122 content: "\f197";
7123 }
7123 }
7124 .fa-slack:before {
7124 .fa-slack:before {
7125 content: "\f198";
7125 content: "\f198";
7126 }
7126 }
7127 .fa-envelope-square:before {
7127 .fa-envelope-square:before {
7128 content: "\f199";
7128 content: "\f199";
7129 }
7129 }
7130 .fa-wordpress:before {
7130 .fa-wordpress:before {
7131 content: "\f19a";
7131 content: "\f19a";
7132 }
7132 }
7133 .fa-openid:before {
7133 .fa-openid:before {
7134 content: "\f19b";
7134 content: "\f19b";
7135 }
7135 }
7136 .fa-institution:before,
7136 .fa-institution:before,
7137 .fa-bank:before,
7137 .fa-bank:before,
7138 .fa-university:before {
7138 .fa-university:before {
7139 content: "\f19c";
7139 content: "\f19c";
7140 }
7140 }
7141 .fa-mortar-board:before,
7141 .fa-mortar-board:before,
7142 .fa-graduation-cap:before {
7142 .fa-graduation-cap:before {
7143 content: "\f19d";
7143 content: "\f19d";
7144 }
7144 }
7145 .fa-yahoo:before {
7145 .fa-yahoo:before {
7146 content: "\f19e";
7146 content: "\f19e";
7147 }
7147 }
7148 .fa-google:before {
7148 .fa-google:before {
7149 content: "\f1a0";
7149 content: "\f1a0";
7150 }
7150 }
7151 .fa-reddit:before {
7151 .fa-reddit:before {
7152 content: "\f1a1";
7152 content: "\f1a1";
7153 }
7153 }
7154 .fa-reddit-square:before {
7154 .fa-reddit-square:before {
7155 content: "\f1a2";
7155 content: "\f1a2";
7156 }
7156 }
7157 .fa-stumbleupon-circle:before {
7157 .fa-stumbleupon-circle:before {
7158 content: "\f1a3";
7158 content: "\f1a3";
7159 }
7159 }
7160 .fa-stumbleupon:before {
7160 .fa-stumbleupon:before {
7161 content: "\f1a4";
7161 content: "\f1a4";
7162 }
7162 }
7163 .fa-delicious:before {
7163 .fa-delicious:before {
7164 content: "\f1a5";
7164 content: "\f1a5";
7165 }
7165 }
7166 .fa-digg:before {
7166 .fa-digg:before {
7167 content: "\f1a6";
7167 content: "\f1a6";
7168 }
7168 }
7169 .fa-pied-piper-square:before,
7169 .fa-pied-piper-square:before,
7170 .fa-pied-piper:before {
7170 .fa-pied-piper:before {
7171 content: "\f1a7";
7171 content: "\f1a7";
7172 }
7172 }
7173 .fa-pied-piper-alt:before {
7173 .fa-pied-piper-alt:before {
7174 content: "\f1a8";
7174 content: "\f1a8";
7175 }
7175 }
7176 .fa-drupal:before {
7176 .fa-drupal:before {
7177 content: "\f1a9";
7177 content: "\f1a9";
7178 }
7178 }
7179 .fa-joomla:before {
7179 .fa-joomla:before {
7180 content: "\f1aa";
7180 content: "\f1aa";
7181 }
7181 }
7182 .fa-language:before {
7182 .fa-language:before {
7183 content: "\f1ab";
7183 content: "\f1ab";
7184 }
7184 }
7185 .fa-fax:before {
7185 .fa-fax:before {
7186 content: "\f1ac";
7186 content: "\f1ac";
7187 }
7187 }
7188 .fa-building:before {
7188 .fa-building:before {
7189 content: "\f1ad";
7189 content: "\f1ad";
7190 }
7190 }
7191 .fa-child:before {
7191 .fa-child:before {
7192 content: "\f1ae";
7192 content: "\f1ae";
7193 }
7193 }
7194 .fa-paw:before {
7194 .fa-paw:before {
7195 content: "\f1b0";
7195 content: "\f1b0";
7196 }
7196 }
7197 .fa-spoon:before {
7197 .fa-spoon:before {
7198 content: "\f1b1";
7198 content: "\f1b1";
7199 }
7199 }
7200 .fa-cube:before {
7200 .fa-cube:before {
7201 content: "\f1b2";
7201 content: "\f1b2";
7202 }
7202 }
7203 .fa-cubes:before {
7203 .fa-cubes:before {
7204 content: "\f1b3";
7204 content: "\f1b3";
7205 }
7205 }
7206 .fa-behance:before {
7206 .fa-behance:before {
7207 content: "\f1b4";
7207 content: "\f1b4";
7208 }
7208 }
7209 .fa-behance-square:before {
7209 .fa-behance-square:before {
7210 content: "\f1b5";
7210 content: "\f1b5";
7211 }
7211 }
7212 .fa-steam:before {
7212 .fa-steam:before {
7213 content: "\f1b6";
7213 content: "\f1b6";
7214 }
7214 }
7215 .fa-steam-square:before {
7215 .fa-steam-square:before {
7216 content: "\f1b7";
7216 content: "\f1b7";
7217 }
7217 }
7218 .fa-recycle:before {
7218 .fa-recycle:before {
7219 content: "\f1b8";
7219 content: "\f1b8";
7220 }
7220 }
7221 .fa-automobile:before,
7221 .fa-automobile:before,
7222 .fa-car:before {
7222 .fa-car:before {
7223 content: "\f1b9";
7223 content: "\f1b9";
7224 }
7224 }
7225 .fa-cab:before,
7225 .fa-cab:before,
7226 .fa-taxi:before {
7226 .fa-taxi:before {
7227 content: "\f1ba";
7227 content: "\f1ba";
7228 }
7228 }
7229 .fa-tree:before {
7229 .fa-tree:before {
7230 content: "\f1bb";
7230 content: "\f1bb";
7231 }
7231 }
7232 .fa-spotify:before {
7232 .fa-spotify:before {
7233 content: "\f1bc";
7233 content: "\f1bc";
7234 }
7234 }
7235 .fa-deviantart:before {
7235 .fa-deviantart:before {
7236 content: "\f1bd";
7236 content: "\f1bd";
7237 }
7237 }
7238 .fa-soundcloud:before {
7238 .fa-soundcloud:before {
7239 content: "\f1be";
7239 content: "\f1be";
7240 }
7240 }
7241 .fa-database:before {
7241 .fa-database:before {
7242 content: "\f1c0";
7242 content: "\f1c0";
7243 }
7243 }
7244 .fa-file-pdf-o:before {
7244 .fa-file-pdf-o:before {
7245 content: "\f1c1";
7245 content: "\f1c1";
7246 }
7246 }
7247 .fa-file-word-o:before {
7247 .fa-file-word-o:before {
7248 content: "\f1c2";
7248 content: "\f1c2";
7249 }
7249 }
7250 .fa-file-excel-o:before {
7250 .fa-file-excel-o:before {
7251 content: "\f1c3";
7251 content: "\f1c3";
7252 }
7252 }
7253 .fa-file-powerpoint-o:before {
7253 .fa-file-powerpoint-o:before {
7254 content: "\f1c4";
7254 content: "\f1c4";
7255 }
7255 }
7256 .fa-file-photo-o:before,
7256 .fa-file-photo-o:before,
7257 .fa-file-picture-o:before,
7257 .fa-file-picture-o:before,
7258 .fa-file-image-o:before {
7258 .fa-file-image-o:before {
7259 content: "\f1c5";
7259 content: "\f1c5";
7260 }
7260 }
7261 .fa-file-zip-o:before,
7261 .fa-file-zip-o:before,
7262 .fa-file-archive-o:before {
7262 .fa-file-archive-o:before {
7263 content: "\f1c6";
7263 content: "\f1c6";
7264 }
7264 }
7265 .fa-file-sound-o:before,
7265 .fa-file-sound-o:before,
7266 .fa-file-audio-o:before {
7266 .fa-file-audio-o:before {
7267 content: "\f1c7";
7267 content: "\f1c7";
7268 }
7268 }
7269 .fa-file-movie-o:before,
7269 .fa-file-movie-o:before,
7270 .fa-file-video-o:before {
7270 .fa-file-video-o:before {
7271 content: "\f1c8";
7271 content: "\f1c8";
7272 }
7272 }
7273 .fa-file-code-o:before {
7273 .fa-file-code-o:before {
7274 content: "\f1c9";
7274 content: "\f1c9";
7275 }
7275 }
7276 .fa-vine:before {
7276 .fa-vine:before {
7277 content: "\f1ca";
7277 content: "\f1ca";
7278 }
7278 }
7279 .fa-codepen:before {
7279 .fa-codepen:before {
7280 content: "\f1cb";
7280 content: "\f1cb";
7281 }
7281 }
7282 .fa-jsfiddle:before {
7282 .fa-jsfiddle:before {
7283 content: "\f1cc";
7283 content: "\f1cc";
7284 }
7284 }
7285 .fa-life-bouy:before,
7285 .fa-life-bouy:before,
7286 .fa-life-saver:before,
7286 .fa-life-saver:before,
7287 .fa-support:before,
7287 .fa-support:before,
7288 .fa-life-ring:before {
7288 .fa-life-ring:before {
7289 content: "\f1cd";
7289 content: "\f1cd";
7290 }
7290 }
7291 .fa-circle-o-notch:before {
7291 .fa-circle-o-notch:before {
7292 content: "\f1ce";
7292 content: "\f1ce";
7293 }
7293 }
7294 .fa-ra:before,
7294 .fa-ra:before,
7295 .fa-rebel:before {
7295 .fa-rebel:before {
7296 content: "\f1d0";
7296 content: "\f1d0";
7297 }
7297 }
7298 .fa-ge:before,
7298 .fa-ge:before,
7299 .fa-empire:before {
7299 .fa-empire:before {
7300 content: "\f1d1";
7300 content: "\f1d1";
7301 }
7301 }
7302 .fa-git-square:before {
7302 .fa-git-square:before {
7303 content: "\f1d2";
7303 content: "\f1d2";
7304 }
7304 }
7305 .fa-git:before {
7305 .fa-git:before {
7306 content: "\f1d3";
7306 content: "\f1d3";
7307 }
7307 }
7308 .fa-hacker-news:before {
7308 .fa-hacker-news:before {
7309 content: "\f1d4";
7309 content: "\f1d4";
7310 }
7310 }
7311 .fa-tencent-weibo:before {
7311 .fa-tencent-weibo:before {
7312 content: "\f1d5";
7312 content: "\f1d5";
7313 }
7313 }
7314 .fa-qq:before {
7314 .fa-qq:before {
7315 content: "\f1d6";
7315 content: "\f1d6";
7316 }
7316 }
7317 .fa-wechat:before,
7317 .fa-wechat:before,
7318 .fa-weixin:before {
7318 .fa-weixin:before {
7319 content: "\f1d7";
7319 content: "\f1d7";
7320 }
7320 }
7321 .fa-send:before,
7321 .fa-send:before,
7322 .fa-paper-plane:before {
7322 .fa-paper-plane:before {
7323 content: "\f1d8";
7323 content: "\f1d8";
7324 }
7324 }
7325 .fa-send-o:before,
7325 .fa-send-o:before,
7326 .fa-paper-plane-o:before {
7326 .fa-paper-plane-o:before {
7327 content: "\f1d9";
7327 content: "\f1d9";
7328 }
7328 }
7329 .fa-history:before {
7329 .fa-history:before {
7330 content: "\f1da";
7330 content: "\f1da";
7331 }
7331 }
7332 .fa-circle-thin:before {
7332 .fa-circle-thin:before {
7333 content: "\f1db";
7333 content: "\f1db";
7334 }
7334 }
7335 .fa-header:before {
7335 .fa-header:before {
7336 content: "\f1dc";
7336 content: "\f1dc";
7337 }
7337 }
7338 .fa-paragraph:before {
7338 .fa-paragraph:before {
7339 content: "\f1dd";
7339 content: "\f1dd";
7340 }
7340 }
7341 .fa-sliders:before {
7341 .fa-sliders:before {
7342 content: "\f1de";
7342 content: "\f1de";
7343 }
7343 }
7344 .fa-share-alt:before {
7344 .fa-share-alt:before {
7345 content: "\f1e0";
7345 content: "\f1e0";
7346 }
7346 }
7347 .fa-share-alt-square:before {
7347 .fa-share-alt-square:before {
7348 content: "\f1e1";
7348 content: "\f1e1";
7349 }
7349 }
7350 .fa-bomb:before {
7350 .fa-bomb:before {
7351 content: "\f1e2";
7351 content: "\f1e2";
7352 }
7352 }
7353 /*!
7353 /*!
7354 *
7354 *
7355 * IPython base
7355 * IPython base
7356 *
7356 *
7357 */
7357 */
7358 .modal.fade .modal-dialog {
7358 .modal.fade .modal-dialog {
7359 -webkit-transform: translate(0, 0);
7359 -webkit-transform: translate(0, 0);
7360 -ms-transform: translate(0, 0);
7360 -ms-transform: translate(0, 0);
7361 transform: translate(0, 0);
7361 transform: translate(0, 0);
7362 }
7362 }
7363 code {
7363 code {
7364 color: #000000;
7364 color: #000000;
7365 }
7365 }
7366 pre {
7366 pre {
7367 font-size: inherit;
7367 font-size: inherit;
7368 line-height: inherit;
7368 line-height: inherit;
7369 }
7369 }
7370 label {
7370 label {
7371 font-weight: normal;
7371 font-weight: normal;
7372 }
7372 }
7373 .border-box-sizing {
7373 .border-box-sizing {
7374 box-sizing: border-box;
7374 box-sizing: border-box;
7375 -moz-box-sizing: border-box;
7375 -moz-box-sizing: border-box;
7376 -webkit-box-sizing: border-box;
7376 -webkit-box-sizing: border-box;
7377 }
7377 }
7378 .corner-all {
7378 .corner-all {
7379 border-radius: 4px;
7379 border-radius: 4px;
7380 }
7380 }
7381 .no-padding {
7381 .no-padding {
7382 padding: 0px;
7382 padding: 0px;
7383 }
7383 }
7384 /* Flexible box model classes */
7384 /* Flexible box model classes */
7385 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7385 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7386 /* This file is a compatability layer. It allows the usage of flexible box
7386 /* This file is a compatability layer. It allows the usage of flexible box
7387 model layouts accross multiple browsers, including older browsers. The newest,
7387 model layouts accross multiple browsers, including older browsers. The newest,
7388 universal implementation of the flexible box model is used when available (see
7388 universal implementation of the flexible box model is used when available (see
7389 `Modern browsers` comments below). Browsers that are known to implement this
7389 `Modern browsers` comments below). Browsers that are known to implement this
7390 new spec completely include:
7390 new spec completely include:
7391
7391
7392 Firefox 28.0+
7392 Firefox 28.0+
7393 Chrome 29.0+
7393 Chrome 29.0+
7394 Internet Explorer 11+
7394 Internet Explorer 11+
7395 Opera 17.0+
7395 Opera 17.0+
7396
7396
7397 Browsers not listed, including Safari, are supported via the styling under the
7397 Browsers not listed, including Safari, are supported via the styling under the
7398 `Old browsers` comments below.
7398 `Old browsers` comments below.
7399 */
7399 */
7400 .hbox {
7400 .hbox {
7401 /* Old browsers */
7401 /* Old browsers */
7402 display: -webkit-box;
7402 display: -webkit-box;
7403 -webkit-box-orient: horizontal;
7403 -webkit-box-orient: horizontal;
7404 -webkit-box-align: stretch;
7404 -webkit-box-align: stretch;
7405 display: -moz-box;
7405 display: -moz-box;
7406 -moz-box-orient: horizontal;
7406 -moz-box-orient: horizontal;
7407 -moz-box-align: stretch;
7407 -moz-box-align: stretch;
7408 display: box;
7408 display: box;
7409 box-orient: horizontal;
7409 box-orient: horizontal;
7410 box-align: stretch;
7410 box-align: stretch;
7411 /* Modern browsers */
7411 /* Modern browsers */
7412 display: flex;
7412 display: flex;
7413 flex-direction: row;
7413 flex-direction: row;
7414 align-items: stretch;
7414 align-items: stretch;
7415 }
7415 }
7416 .hbox > * {
7416 .hbox > * {
7417 /* Old browsers */
7417 /* Old browsers */
7418 -webkit-box-flex: 0;
7418 -webkit-box-flex: 0;
7419 -moz-box-flex: 0;
7419 -moz-box-flex: 0;
7420 box-flex: 0;
7420 box-flex: 0;
7421 /* Modern browsers */
7421 /* Modern browsers */
7422 flex: none;
7422 flex: none;
7423 }
7423 }
7424 .vbox {
7424 .vbox {
7425 /* Old browsers */
7425 /* Old browsers */
7426 display: -webkit-box;
7426 display: -webkit-box;
7427 -webkit-box-orient: vertical;
7427 -webkit-box-orient: vertical;
7428 -webkit-box-align: stretch;
7428 -webkit-box-align: stretch;
7429 display: -moz-box;
7429 display: -moz-box;
7430 -moz-box-orient: vertical;
7430 -moz-box-orient: vertical;
7431 -moz-box-align: stretch;
7431 -moz-box-align: stretch;
7432 display: box;
7432 display: box;
7433 box-orient: vertical;
7433 box-orient: vertical;
7434 box-align: stretch;
7434 box-align: stretch;
7435 /* Modern browsers */
7435 /* Modern browsers */
7436 display: flex;
7436 display: flex;
7437 flex-direction: column;
7437 flex-direction: column;
7438 align-items: stretch;
7438 align-items: stretch;
7439 }
7439 }
7440 .vbox > * {
7440 .vbox > * {
7441 /* Old browsers */
7441 /* Old browsers */
7442 -webkit-box-flex: 0;
7442 -webkit-box-flex: 0;
7443 -moz-box-flex: 0;
7443 -moz-box-flex: 0;
7444 box-flex: 0;
7444 box-flex: 0;
7445 /* Modern browsers */
7445 /* Modern browsers */
7446 flex: none;
7446 flex: none;
7447 }
7447 }
7448 .hbox.reverse,
7448 .hbox.reverse,
7449 .vbox.reverse,
7449 .vbox.reverse,
7450 .reverse {
7450 .reverse {
7451 /* Old browsers */
7451 /* Old browsers */
7452 -webkit-box-direction: reverse;
7452 -webkit-box-direction: reverse;
7453 -moz-box-direction: reverse;
7453 -moz-box-direction: reverse;
7454 box-direction: reverse;
7454 box-direction: reverse;
7455 /* Modern browsers */
7455 /* Modern browsers */
7456 flex-direction: row-reverse;
7456 flex-direction: row-reverse;
7457 }
7457 }
7458 .hbox.box-flex0,
7458 .hbox.box-flex0,
7459 .vbox.box-flex0,
7459 .vbox.box-flex0,
7460 .box-flex0 {
7460 .box-flex0 {
7461 /* Old browsers */
7461 /* Old browsers */
7462 -webkit-box-flex: 0;
7462 -webkit-box-flex: 0;
7463 -moz-box-flex: 0;
7463 -moz-box-flex: 0;
7464 box-flex: 0;
7464 box-flex: 0;
7465 /* Modern browsers */
7465 /* Modern browsers */
7466 flex: none;
7466 flex: none;
7467 width: auto;
7467 width: auto;
7468 }
7468 }
7469 .hbox.box-flex1,
7469 .hbox.box-flex1,
7470 .vbox.box-flex1,
7470 .vbox.box-flex1,
7471 .box-flex1 {
7471 .box-flex1 {
7472 /* Old browsers */
7472 /* Old browsers */
7473 -webkit-box-flex: 1;
7473 -webkit-box-flex: 1;
7474 -moz-box-flex: 1;
7474 -moz-box-flex: 1;
7475 box-flex: 1;
7475 box-flex: 1;
7476 /* Modern browsers */
7476 /* Modern browsers */
7477 flex: 1;
7477 flex: 1;
7478 }
7478 }
7479 .hbox.box-flex,
7479 .hbox.box-flex,
7480 .vbox.box-flex,
7480 .vbox.box-flex,
7481 .box-flex {
7481 .box-flex {
7482 /* Old browsers */
7482 /* Old browsers */
7483 /* Old browsers */
7483 /* Old browsers */
7484 -webkit-box-flex: 1;
7484 -webkit-box-flex: 1;
7485 -moz-box-flex: 1;
7485 -moz-box-flex: 1;
7486 box-flex: 1;
7486 box-flex: 1;
7487 /* Modern browsers */
7487 /* Modern browsers */
7488 flex: 1;
7488 flex: 1;
7489 }
7489 }
7490 .hbox.box-flex2,
7490 .hbox.box-flex2,
7491 .vbox.box-flex2,
7491 .vbox.box-flex2,
7492 .box-flex2 {
7492 .box-flex2 {
7493 /* Old browsers */
7493 /* Old browsers */
7494 -webkit-box-flex: 2;
7494 -webkit-box-flex: 2;
7495 -moz-box-flex: 2;
7495 -moz-box-flex: 2;
7496 box-flex: 2;
7496 box-flex: 2;
7497 /* Modern browsers */
7497 /* Modern browsers */
7498 flex: 2;
7498 flex: 2;
7499 }
7499 }
7500 .box-group1 {
7500 .box-group1 {
7501 /* Deprecated */
7501 /* Deprecated */
7502 -webkit-box-flex-group: 1;
7502 -webkit-box-flex-group: 1;
7503 -moz-box-flex-group: 1;
7503 -moz-box-flex-group: 1;
7504 box-flex-group: 1;
7504 box-flex-group: 1;
7505 }
7505 }
7506 .box-group2 {
7506 .box-group2 {
7507 /* Deprecated */
7507 /* Deprecated */
7508 -webkit-box-flex-group: 2;
7508 -webkit-box-flex-group: 2;
7509 -moz-box-flex-group: 2;
7509 -moz-box-flex-group: 2;
7510 box-flex-group: 2;
7510 box-flex-group: 2;
7511 }
7511 }
7512 .hbox.start,
7512 .hbox.start,
7513 .vbox.start,
7513 .vbox.start,
7514 .start {
7514 .start {
7515 /* Old browsers */
7515 /* Old browsers */
7516 -webkit-box-pack: start;
7516 -webkit-box-pack: start;
7517 -moz-box-pack: start;
7517 -moz-box-pack: start;
7518 box-pack: start;
7518 box-pack: start;
7519 /* Modern browsers */
7519 /* Modern browsers */
7520 justify-content: flex-start;
7520 justify-content: flex-start;
7521 }
7521 }
7522 .hbox.end,
7522 .hbox.end,
7523 .vbox.end,
7523 .vbox.end,
7524 .end {
7524 .end {
7525 /* Old browsers */
7525 /* Old browsers */
7526 -webkit-box-pack: end;
7526 -webkit-box-pack: end;
7527 -moz-box-pack: end;
7527 -moz-box-pack: end;
7528 box-pack: end;
7528 box-pack: end;
7529 /* Modern browsers */
7529 /* Modern browsers */
7530 justify-content: flex-end;
7530 justify-content: flex-end;
7531 }
7531 }
7532 .hbox.center,
7532 .hbox.center,
7533 .vbox.center,
7533 .vbox.center,
7534 .center {
7534 .center {
7535 /* Old browsers */
7535 /* Old browsers */
7536 -webkit-box-pack: center;
7536 -webkit-box-pack: center;
7537 -moz-box-pack: center;
7537 -moz-box-pack: center;
7538 box-pack: center;
7538 box-pack: center;
7539 /* Modern browsers */
7539 /* Modern browsers */
7540 justify-content: center;
7540 justify-content: center;
7541 }
7541 }
7542 .hbox.align-start,
7542 .hbox.align-start,
7543 .vbox.align-start,
7543 .vbox.align-start,
7544 .align-start {
7544 .align-start {
7545 /* Old browsers */
7545 /* Old browsers */
7546 -webkit-box-align: start;
7546 -webkit-box-align: start;
7547 -moz-box-align: start;
7547 -moz-box-align: start;
7548 box-align: start;
7548 box-align: start;
7549 /* Modern browsers */
7549 /* Modern browsers */
7550 align-items: flex-start;
7550 align-items: flex-start;
7551 }
7551 }
7552 .hbox.align-end,
7552 .hbox.align-end,
7553 .vbox.align-end,
7553 .vbox.align-end,
7554 .align-end {
7554 .align-end {
7555 /* Old browsers */
7555 /* Old browsers */
7556 -webkit-box-align: end;
7556 -webkit-box-align: end;
7557 -moz-box-align: end;
7557 -moz-box-align: end;
7558 box-align: end;
7558 box-align: end;
7559 /* Modern browsers */
7559 /* Modern browsers */
7560 align-items: flex-end;
7560 align-items: flex-end;
7561 }
7561 }
7562 .hbox.align-center,
7562 .hbox.align-center,
7563 .vbox.align-center,
7563 .vbox.align-center,
7564 .align-center {
7564 .align-center {
7565 /* Old browsers */
7565 /* Old browsers */
7566 -webkit-box-align: center;
7566 -webkit-box-align: center;
7567 -moz-box-align: center;
7567 -moz-box-align: center;
7568 box-align: center;
7568 box-align: center;
7569 /* Modern browsers */
7569 /* Modern browsers */
7570 align-items: center;
7570 align-items: center;
7571 }
7571 }
7572 div.error {
7572 div.error {
7573 margin: 2em;
7573 margin: 2em;
7574 text-align: center;
7574 text-align: center;
7575 }
7575 }
7576 div.error > h1 {
7576 div.error > h1 {
7577 font-size: 500%;
7577 font-size: 500%;
7578 line-height: normal;
7578 line-height: normal;
7579 }
7579 }
7580 div.error > p {
7580 div.error > p {
7581 font-size: 200%;
7581 font-size: 200%;
7582 line-height: normal;
7582 line-height: normal;
7583 }
7583 }
7584 div.traceback-wrapper {
7584 div.traceback-wrapper {
7585 text-align: left;
7585 text-align: left;
7586 max-width: 800px;
7586 max-width: 800px;
7587 margin: auto;
7587 margin: auto;
7588 }
7588 }
7589 /**
7589 /**
7590 * Primary styles
7590 * Primary styles
7591 *
7591 *
7592 * Author: IPython Development Team
7592 * Author: IPython Development Team
7593 */
7593 */
7594 body {
7594 body {
7595 background-color: white;
7595 background-color: white;
7596 /* This makes sure that the body covers the entire window and needs to
7596 /* This makes sure that the body covers the entire window and needs to
7597 be in a different element than the display: box in wrapper below */
7597 be in a different element than the display: box in wrapper below */
7598 position: absolute;
7598 position: absolute;
7599 left: 0px;
7599 left: 0px;
7600 right: 0px;
7600 right: 0px;
7601 top: 0px;
7601 top: 0px;
7602 bottom: 0px;
7602 bottom: 0px;
7603 overflow: visible;
7603 overflow: visible;
7604 }
7604 }
7605 div#header {
7605 div#header {
7606 /* Initially hidden to prevent FLOUC */
7606 /* Initially hidden to prevent FLOUC */
7607 display: none;
7607 display: none;
7608 margin-bottom: 0px;
7608 margin-bottom: 0px;
7609 padding-left: 30px;
7609 padding-left: 30px;
7610 padding-bottom: 5px;
7610 padding-bottom: 5px;
7611 border-bottom: 1px solid #e7e7e7;
7611 border-bottom: 1px solid #e7e7e7;
7612 }
7612 }
7613 #ipython_notebook {
7613 #ipython_notebook {
7614 padding-left: 0px;
7614 padding-left: 0px;
7615 }
7615 }
7616 #noscript {
7616 #noscript {
7617 width: auto;
7617 width: auto;
7618 padding-top: 16px;
7618 padding-top: 16px;
7619 padding-bottom: 16px;
7619 padding-bottom: 16px;
7620 text-align: center;
7620 text-align: center;
7621 font-size: 22px;
7621 font-size: 22px;
7622 color: red;
7622 color: red;
7623 font-weight: bold;
7623 font-weight: bold;
7624 }
7624 }
7625 #ipython_notebook img {
7625 #ipython_notebook img {
7626 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
7626 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
7627 height: 24px;
7627 height: 24px;
7628 text-decoration: none;
7628 text-decoration: none;
7629 color: black;
7629 color: black;
7630 }
7630 }
7631 #site {
7631 #site {
7632 width: 100%;
7632 width: 100%;
7633 display: none;
7633 display: none;
7634 }
7634 }
7635 /* Smaller buttons */
7635 /* Smaller buttons */
7636 .ui-button .ui-button-text {
7636 .ui-button .ui-button-text {
7637 padding: 0.2em 0.8em;
7637 padding: 0.2em 0.8em;
7638 font-size: 77%;
7638 font-size: 77%;
7639 }
7639 }
7640 input.ui-button {
7640 input.ui-button {
7641 padding: 0.3em 0.9em;
7641 padding: 0.3em 0.9em;
7642 }
7642 }
7643 .navbar span {
7643 .navbar span {
7644 margin-top: 3px;
7644 margin-top: 3px;
7645 }
7645 }
7646 span#login_widget {
7646 span#login_widget {
7647 float: right;
7647 float: right;
7648 }
7648 }
7649 .nav-header {
7649 .nav-header {
7650 text-transform: none;
7650 text-transform: none;
7651 }
7651 }
7652 #header > span {
7652 #header > span {
7653 margin-top: 10px;
7653 margin-top: 10px;
7654 }
7654 }
7655 .modal_stretch .modal-dialog {
7655 .modal_stretch .modal-dialog {
7656 /* Old browsers */
7656 /* Old browsers */
7657 display: -webkit-box;
7657 display: -webkit-box;
7658 -webkit-box-orient: vertical;
7658 -webkit-box-orient: vertical;
7659 -webkit-box-align: stretch;
7659 -webkit-box-align: stretch;
7660 display: -moz-box;
7660 display: -moz-box;
7661 -moz-box-orient: vertical;
7661 -moz-box-orient: vertical;
7662 -moz-box-align: stretch;
7662 -moz-box-align: stretch;
7663 display: box;
7663 display: box;
7664 box-orient: vertical;
7664 box-orient: vertical;
7665 box-align: stretch;
7665 box-align: stretch;
7666 /* Modern browsers */
7666 /* Modern browsers */
7667 display: flex;
7667 display: flex;
7668 flex-direction: column;
7668 flex-direction: column;
7669 align-items: stretch;
7669 align-items: stretch;
7670 /* Old browsers */
7670 /* Old browsers */
7671 -webkit-box-flex: 0;
7671 -webkit-box-flex: 0;
7672 -moz-box-flex: 0;
7672 -moz-box-flex: 0;
7673 box-flex: 0;
7673 box-flex: 0;
7674 /* Modern browsers */
7674 /* Modern browsers */
7675 flex: none;
7675 flex: none;
7676 min-height: 80%;
7676 min-height: 80%;
7677 }
7677 }
7678 .modal_stretch .modal-dialog .modal-body {
7678 .modal_stretch .modal-dialog .modal-body {
7679 max-height: none;
7679 max-height: none;
7680 flex: 1;
7680 flex: 1;
7681 }
7681 }
7682 @media (min-width: 768px) {
7682 @media (min-width: 768px) {
7683 .modal .modal-dialog {
7683 .modal .modal-dialog {
7684 width: 700px;
7684 width: 700px;
7685 }
7685 }
7686 }
7686 }
7687 /*!
7687 /*!
7688 *
7688 *
7689 * IPython auth
7689 * IPython auth
7690 *
7690 *
7691 */
7691 */
7692 .center-nav {
7692 .center-nav {
7693 display: inline-block;
7693 display: inline-block;
7694 margin-bottom: -4px;
7694 margin-bottom: -4px;
7695 }
7695 }
7696 /*!
7696 /*!
7697 *
7697 *
7698 * IPython tree view
7698 * IPython tree view
7699 *
7699 *
7700 */
7700 */
7701 /* We need an invisible input field on top of the sentense*/
7701 /* We need an invisible input field on top of the sentense*/
7702 /* "Drag file onto the list ..." */
7702 /* "Drag file onto the list ..." */
7703 .alternate_upload {
7703 .alternate_upload {
7704 background-color: none;
7704 background-color: none;
7705 display: inline;
7705 display: inline;
7706 }
7706 }
7707 .alternate_upload.form {
7707 .alternate_upload.form {
7708 padding: 0;
7708 padding: 0;
7709 margin: 0;
7709 margin: 0;
7710 }
7710 }
7711 .alternate_upload input.fileinput {
7711 .alternate_upload input.fileinput {
7712 background-color: red;
7712 background-color: red;
7713 position: relative;
7713 position: relative;
7714 opacity: 0;
7714 opacity: 0;
7715 z-index: 2;
7715 z-index: 2;
7716 width: 295px;
7716 width: 295px;
7717 margin-left: 163px;
7717 margin-left: 163px;
7718 cursor: pointer;
7718 cursor: pointer;
7719 height: 26px;
7719 height: 26px;
7720 }
7720 }
7721 /**
7721 /**
7722 * Primary styles
7722 * Primary styles
7723 *
7723 *
7724 * Author: IPython Development Team
7724 * Author: IPython Development Team
7725 */
7725 */
7726 ul#tabs {
7726 ul#tabs {
7727 margin-bottom: 4px;
7727 margin-bottom: 4px;
7728 }
7728 }
7729 ul#tabs a {
7729 ul#tabs a {
7730 padding-top: 6px;
7730 padding-top: 6px;
7731 padding-bottom: 4px;
7731 padding-bottom: 4px;
7732 }
7732 }
7733 ul.breadcrumb a:focus,
7733 ul.breadcrumb a:focus,
7734 ul.breadcrumb a:hover {
7734 ul.breadcrumb a:hover {
7735 text-decoration: none;
7735 text-decoration: none;
7736 }
7736 }
7737 ul.breadcrumb i.icon-home {
7737 ul.breadcrumb i.icon-home {
7738 font-size: 16px;
7738 font-size: 16px;
7739 margin-right: 4px;
7739 margin-right: 4px;
7740 }
7740 }
7741 ul.breadcrumb span {
7741 ul.breadcrumb span {
7742 color: #5e5e5e;
7742 color: #5e5e5e;
7743 }
7743 }
7744 .list_toolbar {
7744 .list_toolbar {
7745 padding: 4px 0 4px 0;
7745 padding: 4px 0 4px 0;
7746 vertical-align: middle;
7746 vertical-align: middle;
7747 }
7747 }
7748 .list_toolbar .tree-buttons {
7748 .list_toolbar .tree-buttons {
7749 padding-top: 2px;
7749 padding-top: 2px;
7750 }
7750 }
7751 .list_toolbar [class*="span"] {
7751 .list_toolbar [class*="span"] {
7752 min-height: 24px;
7752 min-height: 24px;
7753 }
7753 }
7754 .list_header {
7754 .list_header {
7755 font-weight: bold;
7755 font-weight: bold;
7756 }
7756 }
7757 .list_container {
7757 .list_container {
7758 margin-top: 4px;
7758 margin-top: 4px;
7759 margin-bottom: 20px;
7759 margin-bottom: 20px;
7760 border: 1px solid #ababab;
7760 border: 1px solid #ababab;
7761 border-radius: 4px;
7761 border-radius: 4px;
7762 }
7762 }
7763 .list_container > div {
7763 .list_container > div {
7764 border-bottom: 1px solid #ababab;
7764 border-bottom: 1px solid #ababab;
7765 }
7765 }
7766 .list_container > div:hover .list-item {
7766 .list_container > div:hover .list-item {
7767 background-color: red;
7767 background-color: red;
7768 }
7768 }
7769 .list_container > div:last-child {
7769 .list_container > div:last-child {
7770 border: none;
7770 border: none;
7771 }
7771 }
7772 .list_item:hover .list_item {
7772 .list_item:hover .list_item {
7773 background-color: #ddd;
7773 background-color: #ddd;
7774 }
7774 }
7775 .list_item a {
7775 .list_item a {
7776 text-decoration: none;
7776 text-decoration: none;
7777 }
7777 }
7778 .action_col {
7778 .action_col {
7779 text-align: right;
7779 text-align: right;
7780 }
7780 }
7781 .list_header > div,
7781 .list_header > div,
7782 .list_item > div {
7782 .list_item > div {
7783 padding-top: 4px;
7783 padding-top: 4px;
7784 padding-bottom: 4px;
7784 padding-bottom: 4px;
7785 padding-left: 7px;
7785 padding-left: 7px;
7786 padding-right: 7px;
7786 padding-right: 7px;
7787 line-height: 22px;
7787 line-height: 22px;
7788 }
7788 }
7789 .item_name {
7789 .item_name {
7790 line-height: 22px;
7790 line-height: 22px;
7791 height: 24px;
7791 height: 24px;
7792 }
7792 }
7793 .item_icon {
7793 .item_icon {
7794 font-size: 14px;
7794 font-size: 14px;
7795 color: #5e5e5e;
7795 color: #5e5e5e;
7796 margin-right: 7px;
7796 margin-right: 7px;
7797 }
7797 }
7798 .item_buttons {
7798 .item_buttons {
7799 line-height: 1em;
7799 line-height: 1em;
7800 }
7800 }
7801 .toolbar_info {
7801 .toolbar_info {
7802 height: 24px;
7802 height: 24px;
7803 line-height: 24px;
7803 line-height: 24px;
7804 }
7804 }
7805 input.nbname_input,
7805 input.nbname_input,
7806 input.engine_num_input {
7806 input.engine_num_input {
7807 padding-top: 3px;
7807 padding-top: 3px;
7808 padding-bottom: 3px;
7808 padding-bottom: 3px;
7809 height: 22px;
7809 height: 22px;
7810 line-height: 14px;
7810 line-height: 14px;
7811 margin: 0px;
7811 margin: 0px;
7812 }
7812 }
7813 input.engine_num_input {
7813 input.engine_num_input {
7814 width: 60px;
7814 width: 60px;
7815 }
7815 }
7816 .highlight_text {
7816 .highlight_text {
7817 color: blue;
7817 color: blue;
7818 }
7818 }
7819 #project_name > .breadcrumb {
7819 #project_name > .breadcrumb {
7820 padding: 0px;
7820 padding: 0px;
7821 margin-bottom: 0px;
7821 margin-bottom: 0px;
7822 background-color: transparent;
7822 background-color: transparent;
7823 font-weight: bold;
7823 font-weight: bold;
7824 }
7824 }
7825 .tab-content .row {
7825 .tab-content .row {
7826 margin-left: 0px;
7826 margin-left: 0px;
7827 margin-right: 0px;
7827 margin-right: 0px;
7828 }
7828 }
7829 .folder_icon:before {
7829 .folder_icon:before {
7830 display: inline-block;
7830 display: inline-block;
7831 font-family: FontAwesome;
7831 font-family: FontAwesome;
7832 font-style: normal;
7832 font-style: normal;
7833 font-weight: normal;
7833 font-weight: normal;
7834 line-height: 1;
7834 line-height: 1;
7835 -webkit-font-smoothing: antialiased;
7835 -webkit-font-smoothing: antialiased;
7836 -moz-osx-font-smoothing: grayscale;
7836 -moz-osx-font-smoothing: grayscale;
7837 content: "\f114";
7837 content: "\f114";
7838 }
7838 }
7839 .folder_icon:before.pull-left {
7839 .folder_icon:before.pull-left {
7840 margin-right: .3em;
7840 margin-right: .3em;
7841 }
7841 }
7842 .folder_icon:before.pull-right {
7842 .folder_icon:before.pull-right {
7843 margin-left: .3em;
7843 margin-left: .3em;
7844 }
7844 }
7845 .notebook_icon:before {
7845 .notebook_icon:before {
7846 display: inline-block;
7846 display: inline-block;
7847 font-family: FontAwesome;
7847 font-family: FontAwesome;
7848 font-style: normal;
7848 font-style: normal;
7849 font-weight: normal;
7849 font-weight: normal;
7850 line-height: 1;
7850 line-height: 1;
7851 -webkit-font-smoothing: antialiased;
7851 -webkit-font-smoothing: antialiased;
7852 -moz-osx-font-smoothing: grayscale;
7852 -moz-osx-font-smoothing: grayscale;
7853 content: "\f02d";
7853 content: "\f02d";
7854 }
7854 }
7855 .notebook_icon:before.pull-left {
7855 .notebook_icon:before.pull-left {
7856 margin-right: .3em;
7856 margin-right: .3em;
7857 }
7857 }
7858 .notebook_icon:before.pull-right {
7858 .notebook_icon:before.pull-right {
7859 margin-left: .3em;
7859 margin-left: .3em;
7860 }
7860 }
7861 /*!
7861 /*!
7862 *
7862 *
7863 * IPython notebook
7863 * IPython notebook
7864 *
7864 *
7865 */
7865 */
7866 /* CSS font colors for translated ANSI colors. */
7866 /* CSS font colors for translated ANSI colors. */
7867 .ansibold {
7867 .ansibold {
7868 font-weight: bold;
7868 font-weight: bold;
7869 }
7869 }
7870 /* use dark versions for foreground, to improve visibility */
7870 /* use dark versions for foreground, to improve visibility */
7871 .ansiblack {
7871 .ansiblack {
7872 color: black;
7872 color: black;
7873 }
7873 }
7874 .ansired {
7874 .ansired {
7875 color: darkred;
7875 color: darkred;
7876 }
7876 }
7877 .ansigreen {
7877 .ansigreen {
7878 color: darkgreen;
7878 color: darkgreen;
7879 }
7879 }
7880 .ansiyellow {
7880 .ansiyellow {
7881 color: brown;
7881 color: brown;
7882 }
7882 }
7883 .ansiblue {
7883 .ansiblue {
7884 color: darkblue;
7884 color: darkblue;
7885 }
7885 }
7886 .ansipurple {
7886 .ansipurple {
7887 color: darkviolet;
7887 color: darkviolet;
7888 }
7888 }
7889 .ansicyan {
7889 .ansicyan {
7890 color: steelblue;
7890 color: steelblue;
7891 }
7891 }
7892 .ansigray {
7892 .ansigray {
7893 color: gray;
7893 color: gray;
7894 }
7894 }
7895 /* and light for background, for the same reason */
7895 /* and light for background, for the same reason */
7896 .ansibgblack {
7896 .ansibgblack {
7897 background-color: black;
7897 background-color: black;
7898 }
7898 }
7899 .ansibgred {
7899 .ansibgred {
7900 background-color: red;
7900 background-color: red;
7901 }
7901 }
7902 .ansibggreen {
7902 .ansibggreen {
7903 background-color: green;
7903 background-color: green;
7904 }
7904 }
7905 .ansibgyellow {
7905 .ansibgyellow {
7906 background-color: yellow;
7906 background-color: yellow;
7907 }
7907 }
7908 .ansibgblue {
7908 .ansibgblue {
7909 background-color: blue;
7909 background-color: blue;
7910 }
7910 }
7911 .ansibgpurple {
7911 .ansibgpurple {
7912 background-color: magenta;
7912 background-color: magenta;
7913 }
7913 }
7914 .ansibgcyan {
7914 .ansibgcyan {
7915 background-color: cyan;
7915 background-color: cyan;
7916 }
7916 }
7917 .ansibggray {
7917 .ansibggray {
7918 background-color: gray;
7918 background-color: gray;
7919 }
7919 }
7920 div.cell {
7920 div.cell {
7921 border: 1px solid transparent;
7921 border: 1px solid transparent;
7922 /* Old browsers */
7922 /* Old browsers */
7923 display: -webkit-box;
7923 display: -webkit-box;
7924 -webkit-box-orient: vertical;
7924 -webkit-box-orient: vertical;
7925 -webkit-box-align: stretch;
7925 -webkit-box-align: stretch;
7926 display: -moz-box;
7926 display: -moz-box;
7927 -moz-box-orient: vertical;
7927 -moz-box-orient: vertical;
7928 -moz-box-align: stretch;
7928 -moz-box-align: stretch;
7929 display: box;
7929 display: box;
7930 box-orient: vertical;
7930 box-orient: vertical;
7931 box-align: stretch;
7931 box-align: stretch;
7932 /* Modern browsers */
7932 /* Modern browsers */
7933 display: flex;
7933 display: flex;
7934 flex-direction: column;
7934 flex-direction: column;
7935 align-items: stretch;
7935 align-items: stretch;
7936 /* Old browsers */
7936 /* Old browsers */
7937 -webkit-box-flex: 0;
7937 -webkit-box-flex: 0;
7938 -moz-box-flex: 0;
7938 -moz-box-flex: 0;
7939 box-flex: 0;
7939 box-flex: 0;
7940 /* Modern browsers */
7940 /* Modern browsers */
7941 flex: none;
7941 flex: none;
7942 border-radius: 4px;
7942 border-radius: 4px;
7943 border-width: thin;
7943 border-width: thin;
7944 border-style: solid;
7944 border-style: solid;
7945 }
7945 }
7946 div.cell.selected {
7946 div.cell.selected {
7947 border-color: #ababab;
7947 border-color: #ababab;
7948 }
7948 }
7949 div.cell.edit_mode {
7949 div.cell.edit_mode {
7950 border-color: green;
7950 border-color: green;
7951 }
7951 }
7952 div.cell {
7952 div.cell {
7953 width: 100%;
7953 width: 100%;
7954 padding: 5px 5px 5px 0px;
7954 padding: 5px 5px 5px 0px;
7955 /* This acts as a spacer between cells, that is outside the border */
7955 /* This acts as a spacer between cells, that is outside the border */
7956 margin: 0px;
7956 margin: 0px;
7957 outline: none;
7957 outline: none;
7958 }
7958 }
7959 div.prompt {
7959 div.prompt {
7960 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
7960 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
7961 min-width: 15ex;
7961 min-width: 15ex;
7962 /* This padding is tuned to match the padding on the CodeMirror editor. */
7962 /* This padding is tuned to match the padding on the CodeMirror editor. */
7963 padding: 0.4em;
7963 padding: 0.4em;
7964 margin: 0px;
7964 margin: 0px;
7965 font-family: monospace;
7965 font-family: monospace;
7966 text-align: right;
7966 text-align: right;
7967 /* This has to match that of the the CodeMirror class line-height below */
7967 /* This has to match that of the the CodeMirror class line-height below */
7968 line-height: 1.21429em;
7968 line-height: 1.21429em;
7969 }
7969 }
7970 @media (max-width: 480px) {
7970 @media (max-width: 480px) {
7971 div.prompt {
7971 div.prompt {
7972 text-align: left;
7972 text-align: left;
7973 }
7973 }
7974 }
7974 }
7975 div.inner_cell {
7975 div.inner_cell {
7976 /* Old browsers */
7976 /* Old browsers */
7977 display: -webkit-box;
7977 display: -webkit-box;
7978 -webkit-box-orient: vertical;
7978 -webkit-box-orient: vertical;
7979 -webkit-box-align: stretch;
7979 -webkit-box-align: stretch;
7980 display: -moz-box;
7980 display: -moz-box;
7981 -moz-box-orient: vertical;
7981 -moz-box-orient: vertical;
7982 -moz-box-align: stretch;
7982 -moz-box-align: stretch;
7983 display: box;
7983 display: box;
7984 box-orient: vertical;
7984 box-orient: vertical;
7985 box-align: stretch;
7985 box-align: stretch;
7986 /* Modern browsers */
7986 /* Modern browsers */
7987 display: flex;
7987 display: flex;
7988 flex-direction: column;
7988 flex-direction: column;
7989 align-items: stretch;
7989 align-items: stretch;
7990 /* Old browsers */
7990 /* Old browsers */
7991 -webkit-box-flex: 0;
7991 -webkit-box-flex: 0;
7992 -moz-box-flex: 0;
7992 -moz-box-flex: 0;
7993 box-flex: 0;
7993 box-flex: 0;
7994 /* Modern browsers */
7994 /* Modern browsers */
7995 flex: none;
7995 flex: none;
7996 /* Old browsers */
7996 /* Old browsers */
7997 -webkit-box-flex: 1;
7997 -webkit-box-flex: 1;
7998 -moz-box-flex: 1;
7998 -moz-box-flex: 1;
7999 box-flex: 1;
7999 box-flex: 1;
8000 /* Modern browsers */
8000 /* Modern browsers */
8001 flex: 1;
8001 flex: 1;
8002 }
8002 }
8003 /* input_area and input_prompt must match in top border and margin for alignment */
8003 /* input_area and input_prompt must match in top border and margin for alignment */
8004 div.input_area {
8004 div.input_area {
8005 border: 1px solid #cfcfcf;
8005 border: 1px solid #cfcfcf;
8006 border-radius: 4px;
8006 border-radius: 4px;
8007 background: #f7f7f7;
8007 background: #f7f7f7;
8008 line-height: 1.21429em;
8008 line-height: 1.21429em;
8009 }
8009 }
8010 /* This is needed so that empty prompt areas can collapse to zero height when there
8010 /* This is needed so that empty prompt areas can collapse to zero height when there
8011 is no content in the output_subarea and the prompt. The main purpose of this is
8011 is no content in the output_subarea and the prompt. The main purpose of this is
8012 to make sure that empty JavaScript output_subareas have no height. */
8012 to make sure that empty JavaScript output_subareas have no height. */
8013 div.prompt:empty {
8013 div.prompt:empty {
8014 padding-top: 0;
8014 padding-top: 0;
8015 padding-bottom: 0;
8015 padding-bottom: 0;
8016 }
8016 }
8017 /* any special styling for code cells that are currently running goes here */
8017 /* any special styling for code cells that are currently running goes here */
8018 div.input {
8018 div.input {
8019 page-break-inside: avoid;
8019 page-break-inside: avoid;
8020 /* Old browsers */
8020 /* Old browsers */
8021 display: -webkit-box;
8021 display: -webkit-box;
8022 -webkit-box-orient: horizontal;
8022 -webkit-box-orient: horizontal;
8023 -webkit-box-align: stretch;
8023 -webkit-box-align: stretch;
8024 display: -moz-box;
8024 display: -moz-box;
8025 -moz-box-orient: horizontal;
8025 -moz-box-orient: horizontal;
8026 -moz-box-align: stretch;
8026 -moz-box-align: stretch;
8027 display: box;
8027 display: box;
8028 box-orient: horizontal;
8028 box-orient: horizontal;
8029 box-align: stretch;
8029 box-align: stretch;
8030 /* Modern browsers */
8030 /* Modern browsers */
8031 display: flex;
8031 display: flex;
8032 flex-direction: row;
8032 flex-direction: row;
8033 align-items: stretch;
8033 align-items: stretch;
8034 /* Old browsers */
8034 /* Old browsers */
8035 -webkit-box-flex: 0;
8035 -webkit-box-flex: 0;
8036 -moz-box-flex: 0;
8036 -moz-box-flex: 0;
8037 box-flex: 0;
8037 box-flex: 0;
8038 /* Modern browsers */
8038 /* Modern browsers */
8039 flex: none;
8039 flex: none;
8040 }
8040 }
8041 @media (max-width: 480px) {
8041 @media (max-width: 480px) {
8042 div.input {
8042 div.input {
8043 /* Old browsers */
8043 /* Old browsers */
8044 display: -webkit-box;
8044 display: -webkit-box;
8045 -webkit-box-orient: vertical;
8045 -webkit-box-orient: vertical;
8046 -webkit-box-align: stretch;
8046 -webkit-box-align: stretch;
8047 display: -moz-box;
8047 display: -moz-box;
8048 -moz-box-orient: vertical;
8048 -moz-box-orient: vertical;
8049 -moz-box-align: stretch;
8049 -moz-box-align: stretch;
8050 display: box;
8050 display: box;
8051 box-orient: vertical;
8051 box-orient: vertical;
8052 box-align: stretch;
8052 box-align: stretch;
8053 /* Modern browsers */
8053 /* Modern browsers */
8054 display: flex;
8054 display: flex;
8055 flex-direction: column;
8055 flex-direction: column;
8056 align-items: stretch;
8056 align-items: stretch;
8057 /* Old browsers */
8057 /* Old browsers */
8058 -webkit-box-flex: 0;
8058 -webkit-box-flex: 0;
8059 -moz-box-flex: 0;
8059 -moz-box-flex: 0;
8060 box-flex: 0;
8060 box-flex: 0;
8061 /* Modern browsers */
8061 /* Modern browsers */
8062 flex: none;
8062 flex: none;
8063 }
8063 }
8064 }
8064 }
8065 /* input_area and input_prompt must match in top border and margin for alignment */
8065 /* input_area and input_prompt must match in top border and margin for alignment */
8066 div.input_prompt {
8066 div.input_prompt {
8067 color: #000080;
8067 color: #000080;
8068 border-top: 1px solid transparent;
8068 border-top: 1px solid transparent;
8069 }
8069 }
8070 div.input_area > div.highlight {
8070 div.input_area > div.highlight {
8071 margin: 0.4em;
8071 margin: 0.4em;
8072 border: none;
8072 border: none;
8073 padding: 0px;
8073 padding: 0px;
8074 background-color: transparent;
8074 background-color: transparent;
8075 }
8075 }
8076 div.input_area > div.highlight > pre {
8076 div.input_area > div.highlight > pre {
8077 margin: 0px;
8077 margin: 0px;
8078 border: none;
8078 border: none;
8079 padding: 0px;
8079 padding: 0px;
8080 background-color: transparent;
8080 background-color: transparent;
8081 }
8081 }
8082 /* The following gets added to the <head> if it is detected that the user has a
8082 /* The following gets added to the <head> if it is detected that the user has a
8083 * monospace font with inconsistent normal/bold/italic height. See
8083 * monospace font with inconsistent normal/bold/italic height. See
8084 * notebookmain.js. Such fonts will have keywords vertically offset with
8084 * notebookmain.js. Such fonts will have keywords vertically offset with
8085 * respect to the rest of the text. The user should select a better font.
8085 * respect to the rest of the text. The user should select a better font.
8086 * See: https://github.com/ipython/ipython/issues/1503
8086 * See: https://github.com/ipython/ipython/issues/1503
8087 *
8087 *
8088 * .CodeMirror span {
8088 * .CodeMirror span {
8089 * vertical-align: bottom;
8089 * vertical-align: bottom;
8090 * }
8090 * }
8091 */
8091 */
8092 .CodeMirror {
8092 .CodeMirror {
8093 line-height: 1.21429em;
8093 line-height: 1.21429em;
8094 /* Changed from 1em to our global default */
8094 /* Changed from 1em to our global default */
8095 height: auto;
8095 height: auto;
8096 /* Changed to auto to autogrow */
8096 /* Changed to auto to autogrow */
8097 background: none;
8097 background: none;
8098 /* Changed from white to allow our bg to show through */
8098 /* Changed from white to allow our bg to show through */
8099 }
8099 }
8100 .CodeMirror-scroll {
8100 .CodeMirror-scroll {
8101 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8101 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8102 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8102 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8103 overflow-y: hidden;
8103 overflow-y: hidden;
8104 overflow-x: auto;
8104 overflow-x: auto;
8105 }
8105 }
8106 .CodeMirror-lines {
8106 .CodeMirror-lines {
8107 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8107 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8108 /* we have set a different line-height and want this to scale with that. */
8108 /* we have set a different line-height and want this to scale with that. */
8109 padding: 0.4em;
8109 padding: 0.4em;
8110 }
8110 }
8111 .CodeMirror-linenumber {
8111 .CodeMirror-linenumber {
8112 padding: 0 8px 0 4px;
8112 padding: 0 8px 0 4px;
8113 }
8113 }
8114 .CodeMirror-gutters {
8114 .CodeMirror-gutters {
8115 border-bottom-left-radius: 4px;
8115 border-bottom-left-radius: 4px;
8116 border-top-left-radius: 4px;
8116 border-top-left-radius: 4px;
8117 }
8117 }
8118 .CodeMirror pre {
8118 .CodeMirror pre {
8119 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8119 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8120 /* .CodeMirror-lines */
8120 /* .CodeMirror-lines */
8121 padding: 0;
8121 padding: 0;
8122 border: 0;
8122 border: 0;
8123 border-radius: 0;
8123 border-radius: 0;
8124 }
8124 }
8125 .CodeMirror-vscrollbar,
8125 .CodeMirror-vscrollbar,
8126 .CodeMirror-hscrollbar {
8126 .CodeMirror-hscrollbar {
8127 display: none !important;
8127 display: none !important;
8128 }
8128 }
8129 /*
8129 /*
8130
8130
8131 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8131 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8132 Adapted from GitHub theme
8132 Adapted from GitHub theme
8133
8133
8134 */
8134 */
8135 pre code {
8135 pre code {
8136 display: block;
8136 display: block;
8137 padding: 0.5em;
8137 padding: 0.5em;
8138 }
8138 }
8139 .highlight-base,
8139 .highlight-base,
8140 pre code,
8140 pre code,
8141 pre .subst,
8141 pre .subst,
8142 pre .tag .title,
8142 pre .tag .title,
8143 pre .lisp .title,
8143 pre .lisp .title,
8144 pre .clojure .built_in,
8144 pre .clojure .built_in,
8145 pre .nginx .title {
8145 pre .nginx .title {
8146 color: black;
8146 color: black;
8147 }
8147 }
8148 .highlight-string,
8148 .highlight-string,
8149 pre .string,
8149 pre .string,
8150 pre .constant,
8150 pre .constant,
8151 pre .parent,
8151 pre .parent,
8152 pre .tag .value,
8152 pre .tag .value,
8153 pre .rules .value,
8153 pre .rules .value,
8154 pre .rules .value .number,
8154 pre .rules .value .number,
8155 pre .preprocessor,
8155 pre .preprocessor,
8156 pre .ruby .symbol,
8156 pre .ruby .symbol,
8157 pre .ruby .symbol .string,
8157 pre .ruby .symbol .string,
8158 pre .aggregate,
8158 pre .aggregate,
8159 pre .template_tag,
8159 pre .template_tag,
8160 pre .django .variable,
8160 pre .django .variable,
8161 pre .smalltalk .class,
8161 pre .smalltalk .class,
8162 pre .addition,
8162 pre .addition,
8163 pre .flow,
8163 pre .flow,
8164 pre .stream,
8164 pre .stream,
8165 pre .bash .variable,
8165 pre .bash .variable,
8166 pre .apache .tag,
8166 pre .apache .tag,
8167 pre .apache .cbracket,
8167 pre .apache .cbracket,
8168 pre .tex .command,
8168 pre .tex .command,
8169 pre .tex .special,
8169 pre .tex .special,
8170 pre .erlang_repl .function_or_atom,
8170 pre .erlang_repl .function_or_atom,
8171 pre .markdown .header {
8171 pre .markdown .header {
8172 color: #BA2121;
8172 color: #BA2121;
8173 }
8173 }
8174 .highlight-comment,
8174 .highlight-comment,
8175 pre .comment,
8175 pre .comment,
8176 pre .annotation,
8176 pre .annotation,
8177 pre .template_comment,
8177 pre .template_comment,
8178 pre .diff .header,
8178 pre .diff .header,
8179 pre .chunk,
8179 pre .chunk,
8180 pre .markdown .blockquote {
8180 pre .markdown .blockquote {
8181 color: #408080;
8181 color: #408080;
8182 font-style: italic;
8182 font-style: italic;
8183 }
8183 }
8184 .highlight-number,
8184 .highlight-number,
8185 pre .number,
8185 pre .number,
8186 pre .date,
8186 pre .date,
8187 pre .regexp,
8187 pre .regexp,
8188 pre .literal,
8188 pre .literal,
8189 pre .smalltalk .symbol,
8189 pre .smalltalk .symbol,
8190 pre .smalltalk .char,
8190 pre .smalltalk .char,
8191 pre .go .constant,
8191 pre .go .constant,
8192 pre .change,
8192 pre .change,
8193 pre .markdown .bullet,
8193 pre .markdown .bullet,
8194 pre .markdown .link_url {
8194 pre .markdown .link_url {
8195 color: #080;
8195 color: #080;
8196 }
8196 }
8197 pre .label,
8197 pre .label,
8198 pre .javadoc,
8198 pre .javadoc,
8199 pre .ruby .string,
8199 pre .ruby .string,
8200 pre .decorator,
8200 pre .decorator,
8201 pre .filter .argument,
8201 pre .filter .argument,
8202 pre .localvars,
8202 pre .localvars,
8203 pre .array,
8203 pre .array,
8204 pre .attr_selector,
8204 pre .attr_selector,
8205 pre .important,
8205 pre .important,
8206 pre .pseudo,
8206 pre .pseudo,
8207 pre .pi,
8207 pre .pi,
8208 pre .doctype,
8208 pre .doctype,
8209 pre .deletion,
8209 pre .deletion,
8210 pre .envvar,
8210 pre .envvar,
8211 pre .shebang,
8211 pre .shebang,
8212 pre .apache .sqbracket,
8212 pre .apache .sqbracket,
8213 pre .nginx .built_in,
8213 pre .nginx .built_in,
8214 pre .tex .formula,
8214 pre .tex .formula,
8215 pre .erlang_repl .reserved,
8215 pre .erlang_repl .reserved,
8216 pre .prompt,
8216 pre .prompt,
8217 pre .markdown .link_label,
8217 pre .markdown .link_label,
8218 pre .vhdl .attribute,
8218 pre .vhdl .attribute,
8219 pre .clojure .attribute,
8219 pre .clojure .attribute,
8220 pre .coffeescript .property {
8220 pre .coffeescript .property {
8221 color: #8888ff;
8221 color: #8888ff;
8222 }
8222 }
8223 .highlight-keyword,
8223 .highlight-keyword,
8224 pre .keyword,
8224 pre .keyword,
8225 pre .id,
8225 pre .id,
8226 pre .phpdoc,
8226 pre .phpdoc,
8227 pre .aggregate,
8227 pre .aggregate,
8228 pre .css .tag,
8228 pre .css .tag,
8229 pre .javadoctag,
8229 pre .javadoctag,
8230 pre .phpdoc,
8230 pre .phpdoc,
8231 pre .yardoctag,
8231 pre .yardoctag,
8232 pre .smalltalk .class,
8232 pre .smalltalk .class,
8233 pre .winutils,
8233 pre .winutils,
8234 pre .bash .variable,
8234 pre .bash .variable,
8235 pre .apache .tag,
8235 pre .apache .tag,
8236 pre .go .typename,
8236 pre .go .typename,
8237 pre .tex .command,
8237 pre .tex .command,
8238 pre .markdown .strong,
8238 pre .markdown .strong,
8239 pre .request,
8239 pre .request,
8240 pre .status {
8240 pre .status {
8241 color: #008000;
8241 color: #008000;
8242 font-weight: bold;
8242 font-weight: bold;
8243 }
8243 }
8244 .highlight-builtin,
8244 .highlight-builtin,
8245 pre .built_in {
8245 pre .built_in {
8246 color: #008000;
8246 color: #008000;
8247 }
8247 }
8248 pre .markdown .emphasis {
8248 pre .markdown .emphasis {
8249 font-style: italic;
8249 font-style: italic;
8250 }
8250 }
8251 pre .nginx .built_in {
8251 pre .nginx .built_in {
8252 font-weight: normal;
8252 font-weight: normal;
8253 }
8253 }
8254 pre .coffeescript .javascript,
8254 pre .coffeescript .javascript,
8255 pre .javascript .xml,
8255 pre .javascript .xml,
8256 pre .tex .formula,
8256 pre .tex .formula,
8257 pre .xml .javascript,
8257 pre .xml .javascript,
8258 pre .xml .vbscript,
8258 pre .xml .vbscript,
8259 pre .xml .css,
8259 pre .xml .css,
8260 pre .xml .cdata {
8260 pre .xml .cdata {
8261 opacity: 0.5;
8261 opacity: 0.5;
8262 }
8262 }
8263 /* apply the same style to codemirror */
8263 /* apply the same style to codemirror */
8264 .cm-s-ipython span.cm-variable {
8264 .cm-s-ipython span.cm-variable {
8265 color: black;
8265 color: black;
8266 }
8266 }
8267 .cm-s-ipython span.cm-keyword {
8267 .cm-s-ipython span.cm-keyword {
8268 color: #008000;
8268 color: #008000;
8269 font-weight: bold;
8269 font-weight: bold;
8270 }
8270 }
8271 .cm-s-ipython span.cm-number {
8271 .cm-s-ipython span.cm-number {
8272 color: #080;
8272 color: #080;
8273 }
8273 }
8274 .cm-s-ipython span.cm-comment {
8274 .cm-s-ipython span.cm-comment {
8275 color: #408080;
8275 color: #408080;
8276 font-style: italic;
8276 font-style: italic;
8277 }
8277 }
8278 .cm-s-ipython span.cm-string {
8278 .cm-s-ipython span.cm-string {
8279 color: #BA2121;
8279 color: #BA2121;
8280 }
8280 }
8281 .cm-s-ipython span.cm-builtin {
8281 .cm-s-ipython span.cm-builtin {
8282 color: #008000;
8282 color: #008000;
8283 }
8283 }
8284 .cm-s-ipython span.cm-error {
8284 .cm-s-ipython span.cm-error {
8285 color: #f00;
8285 color: #f00;
8286 }
8286 }
8287 .cm-s-ipython span.cm-operator {
8287 .cm-s-ipython span.cm-operator {
8288 color: #AA22FF;
8288 color: #AA22FF;
8289 font-weight: bold;
8289 font-weight: bold;
8290 }
8290 }
8291 .cm-s-ipython span.cm-meta {
8291 .cm-s-ipython span.cm-meta {
8292 color: #AA22FF;
8292 color: #AA22FF;
8293 }
8293 }
8294 .cm-s-ipython span.cm-tab {
8294 .cm-s-ipython span.cm-tab {
8295 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8295 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8296 background-position: right;
8296 background-position: right;
8297 background-repeat: no-repeat;
8297 background-repeat: no-repeat;
8298 }
8298 }
8299 div.output_wrapper {
8299 div.output_wrapper {
8300 /* this position must be relative to enable descendents to be absolute within it */
8300 /* this position must be relative to enable descendents to be absolute within it */
8301 position: relative;
8301 position: relative;
8302 /* Old browsers */
8302 /* Old browsers */
8303 display: -webkit-box;
8303 display: -webkit-box;
8304 -webkit-box-orient: vertical;
8304 -webkit-box-orient: vertical;
8305 -webkit-box-align: stretch;
8305 -webkit-box-align: stretch;
8306 display: -moz-box;
8306 display: -moz-box;
8307 -moz-box-orient: vertical;
8307 -moz-box-orient: vertical;
8308 -moz-box-align: stretch;
8308 -moz-box-align: stretch;
8309 display: box;
8309 display: box;
8310 box-orient: vertical;
8310 box-orient: vertical;
8311 box-align: stretch;
8311 box-align: stretch;
8312 /* Modern browsers */
8312 /* Modern browsers */
8313 display: flex;
8313 display: flex;
8314 flex-direction: column;
8314 flex-direction: column;
8315 align-items: stretch;
8315 align-items: stretch;
8316 /* Old browsers */
8316 /* Old browsers */
8317 -webkit-box-flex: 0;
8317 -webkit-box-flex: 0;
8318 -moz-box-flex: 0;
8318 -moz-box-flex: 0;
8319 box-flex: 0;
8319 box-flex: 0;
8320 /* Modern browsers */
8320 /* Modern browsers */
8321 flex: none;
8321 flex: none;
8322 }
8322 }
8323 /* class for the output area when it should be height-limited */
8323 /* class for the output area when it should be height-limited */
8324 div.output_scroll {
8324 div.output_scroll {
8325 /* ideally, this would be max-height, but FF barfs all over that */
8325 /* ideally, this would be max-height, but FF barfs all over that */
8326 height: 24em;
8326 height: 24em;
8327 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8327 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8328 width: 100%;
8328 width: 100%;
8329 overflow: auto;
8329 overflow: auto;
8330 border-radius: 4px;
8330 border-radius: 4px;
8331 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8331 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8332 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8332 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8333 display: block;
8333 display: block;
8334 }
8334 }
8335 /* output div while it is collapsed */
8335 /* output div while it is collapsed */
8336 div.output_collapsed {
8336 div.output_collapsed {
8337 margin: 0px;
8337 margin: 0px;
8338 padding: 0px;
8338 padding: 0px;
8339 /* Old browsers */
8339 /* Old browsers */
8340 display: -webkit-box;
8340 display: -webkit-box;
8341 -webkit-box-orient: vertical;
8341 -webkit-box-orient: vertical;
8342 -webkit-box-align: stretch;
8342 -webkit-box-align: stretch;
8343 display: -moz-box;
8343 display: -moz-box;
8344 -moz-box-orient: vertical;
8344 -moz-box-orient: vertical;
8345 -moz-box-align: stretch;
8345 -moz-box-align: stretch;
8346 display: box;
8346 display: box;
8347 box-orient: vertical;
8347 box-orient: vertical;
8348 box-align: stretch;
8348 box-align: stretch;
8349 /* Modern browsers */
8349 /* Modern browsers */
8350 display: flex;
8350 display: flex;
8351 flex-direction: column;
8351 flex-direction: column;
8352 align-items: stretch;
8352 align-items: stretch;
8353 /* Old browsers */
8353 /* Old browsers */
8354 -webkit-box-flex: 0;
8354 -webkit-box-flex: 0;
8355 -moz-box-flex: 0;
8355 -moz-box-flex: 0;
8356 box-flex: 0;
8356 box-flex: 0;
8357 /* Modern browsers */
8357 /* Modern browsers */
8358 flex: none;
8358 flex: none;
8359 }
8359 }
8360 div.out_prompt_overlay {
8360 div.out_prompt_overlay {
8361 height: 100%;
8361 height: 100%;
8362 padding: 0px 0.4em;
8362 padding: 0px 0.4em;
8363 position: absolute;
8363 position: absolute;
8364 border-radius: 4px;
8364 border-radius: 4px;
8365 }
8365 }
8366 div.out_prompt_overlay:hover {
8366 div.out_prompt_overlay:hover {
8367 /* use inner shadow to get border that is computed the same on WebKit/FF */
8367 /* use inner shadow to get border that is computed the same on WebKit/FF */
8368 -webkit-box-shadow: inset 0 0 1px #000000;
8368 -webkit-box-shadow: inset 0 0 1px #000000;
8369 box-shadow: inset 0 0 1px #000000;
8369 box-shadow: inset 0 0 1px #000000;
8370 background: rgba(240, 240, 240, 0.5);
8370 background: rgba(240, 240, 240, 0.5);
8371 }
8371 }
8372 div.output_prompt {
8372 div.output_prompt {
8373 color: #8b0000;
8373 color: #8b0000;
8374 }
8374 }
8375 /* This class is the outer container of all output sections. */
8375 /* This class is the outer container of all output sections. */
8376 div.output_area {
8376 div.output_area {
8377 padding: 0px;
8377 padding: 0px;
8378 page-break-inside: avoid;
8378 page-break-inside: avoid;
8379 /* Old browsers */
8379 /* Old browsers */
8380 display: -webkit-box;
8380 display: -webkit-box;
8381 -webkit-box-orient: horizontal;
8381 -webkit-box-orient: horizontal;
8382 -webkit-box-align: stretch;
8382 -webkit-box-align: stretch;
8383 display: -moz-box;
8383 display: -moz-box;
8384 -moz-box-orient: horizontal;
8384 -moz-box-orient: horizontal;
8385 -moz-box-align: stretch;
8385 -moz-box-align: stretch;
8386 display: box;
8386 display: box;
8387 box-orient: horizontal;
8387 box-orient: horizontal;
8388 box-align: stretch;
8388 box-align: stretch;
8389 /* Modern browsers */
8389 /* Modern browsers */
8390 display: flex;
8390 display: flex;
8391 flex-direction: row;
8391 flex-direction: row;
8392 align-items: stretch;
8392 align-items: stretch;
8393 /* Old browsers */
8393 /* Old browsers */
8394 -webkit-box-flex: 0;
8394 -webkit-box-flex: 0;
8395 -moz-box-flex: 0;
8395 -moz-box-flex: 0;
8396 box-flex: 0;
8396 box-flex: 0;
8397 /* Modern browsers */
8397 /* Modern browsers */
8398 flex: none;
8398 flex: none;
8399 }
8399 }
8400 div.output_area .MathJax_Display {
8400 div.output_area .MathJax_Display {
8401 text-align: left !important;
8401 text-align: left !important;
8402 }
8402 }
8403 div.output_area .rendered_html table {
8403 div.output_area .rendered_html table {
8404 margin-left: 0;
8404 margin-left: 0;
8405 margin-right: 0;
8405 margin-right: 0;
8406 }
8406 }
8407 div.output_area .rendered_html img {
8407 div.output_area .rendered_html img {
8408 margin-left: 0;
8408 margin-left: 0;
8409 margin-right: 0;
8409 margin-right: 0;
8410 }
8410 }
8411 /* This is needed to protect the pre formating from global settings such
8411 /* This is needed to protect the pre formating from global settings such
8412 as that of bootstrap */
8412 as that of bootstrap */
8413 .output {
8413 .output {
8414 /* Old browsers */
8414 /* Old browsers */
8415 display: -webkit-box;
8415 display: -webkit-box;
8416 -webkit-box-orient: vertical;
8416 -webkit-box-orient: vertical;
8417 -webkit-box-align: stretch;
8417 -webkit-box-align: stretch;
8418 display: -moz-box;
8418 display: -moz-box;
8419 -moz-box-orient: vertical;
8419 -moz-box-orient: vertical;
8420 -moz-box-align: stretch;
8420 -moz-box-align: stretch;
8421 display: box;
8421 display: box;
8422 box-orient: vertical;
8422 box-orient: vertical;
8423 box-align: stretch;
8423 box-align: stretch;
8424 /* Modern browsers */
8424 /* Modern browsers */
8425 display: flex;
8425 display: flex;
8426 flex-direction: column;
8426 flex-direction: column;
8427 align-items: stretch;
8427 align-items: stretch;
8428 /* Old browsers */
8428 /* Old browsers */
8429 -webkit-box-flex: 0;
8429 -webkit-box-flex: 0;
8430 -moz-box-flex: 0;
8430 -moz-box-flex: 0;
8431 box-flex: 0;
8431 box-flex: 0;
8432 /* Modern browsers */
8432 /* Modern browsers */
8433 flex: none;
8433 flex: none;
8434 }
8434 }
8435 @media (max-width: 480px) {
8435 @media (max-width: 480px) {
8436 div.output_area {
8436 div.output_area {
8437 /* Old browsers */
8437 /* Old browsers */
8438 display: -webkit-box;
8438 display: -webkit-box;
8439 -webkit-box-orient: vertical;
8439 -webkit-box-orient: vertical;
8440 -webkit-box-align: stretch;
8440 -webkit-box-align: stretch;
8441 display: -moz-box;
8441 display: -moz-box;
8442 -moz-box-orient: vertical;
8442 -moz-box-orient: vertical;
8443 -moz-box-align: stretch;
8443 -moz-box-align: stretch;
8444 display: box;
8444 display: box;
8445 box-orient: vertical;
8445 box-orient: vertical;
8446 box-align: stretch;
8446 box-align: stretch;
8447 /* Modern browsers */
8447 /* Modern browsers */
8448 display: flex;
8448 display: flex;
8449 flex-direction: column;
8449 flex-direction: column;
8450 align-items: stretch;
8450 align-items: stretch;
8451 /* Old browsers */
8451 /* Old browsers */
8452 -webkit-box-flex: 0;
8452 -webkit-box-flex: 0;
8453 -moz-box-flex: 0;
8453 -moz-box-flex: 0;
8454 box-flex: 0;
8454 box-flex: 0;
8455 /* Modern browsers */
8455 /* Modern browsers */
8456 flex: none;
8456 flex: none;
8457 }
8457 }
8458 }
8458 }
8459 div.output_area pre {
8459 div.output_area pre {
8460 margin: 0;
8460 margin: 0;
8461 padding: 0;
8461 padding: 0;
8462 border: 0;
8462 border: 0;
8463 vertical-align: baseline;
8463 vertical-align: baseline;
8464 color: #000000;
8464 color: #000000;
8465 background-color: transparent;
8465 background-color: transparent;
8466 border-radius: 0;
8466 border-radius: 0;
8467 }
8467 }
8468 /* This class is for the output subarea inside the output_area and after
8468 /* This class is for the output subarea inside the output_area and after
8469 the prompt div. */
8469 the prompt div. */
8470 div.output_subarea {
8470 div.output_subarea {
8471 padding: 0.4em 0.4em 0em 0.4em;
8471 padding: 0.4em 0.4em 0em 0.4em;
8472 /* Old browsers */
8472 /* Old browsers */
8473 -webkit-box-flex: 1;
8473 -webkit-box-flex: 1;
8474 -moz-box-flex: 1;
8474 -moz-box-flex: 1;
8475 box-flex: 1;
8475 box-flex: 1;
8476 /* Modern browsers */
8476 /* Modern browsers */
8477 flex: 1;
8477 flex: 1;
8478 }
8478 }
8479 /* The rest of the output_* classes are for special styling of the different
8479 /* The rest of the output_* classes are for special styling of the different
8480 output types */
8480 output types */
8481 /* all text output has this class: */
8481 /* all text output has this class: */
8482 div.output_text {
8482 div.output_text {
8483 text-align: left;
8483 text-align: left;
8484 color: #000000;
8484 color: #000000;
8485 /* This has to match that of the the CodeMirror class line-height below */
8485 /* This has to match that of the the CodeMirror class line-height below */
8486 line-height: 1.21429em;
8486 line-height: 1.21429em;
8487 }
8487 }
8488 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8488 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8489 div.output_stderr {
8489 div.output_stderr {
8490 background: #fdd;
8490 background: #fdd;
8491 /* very light red background for stderr */
8491 /* very light red background for stderr */
8492 }
8492 }
8493 div.output_latex {
8493 div.output_latex {
8494 text-align: left;
8494 text-align: left;
8495 }
8495 }
8496 /* Empty output_javascript divs should have no height */
8496 /* Empty output_javascript divs should have no height */
8497 div.output_javascript:empty {
8497 div.output_javascript:empty {
8498 padding: 0;
8498 padding: 0;
8499 }
8499 }
8500 .js-error {
8500 .js-error {
8501 color: darkred;
8501 color: darkred;
8502 }
8502 }
8503 /* raw_input styles */
8503 /* raw_input styles */
8504 div.raw_input_container {
8504 div.raw_input_container {
8505 font-family: monospace;
8505 font-family: monospace;
8506 padding-top: 5px;
8506 padding-top: 5px;
8507 }
8507 }
8508 span.raw_input_prompt {
8508 span.raw_input_prompt {
8509 /* nothing needed here */
8509 /* nothing needed here */
8510 }
8510 }
8511 input.raw_input {
8511 input.raw_input {
8512 font-family: inherit;
8512 font-family: inherit;
8513 font-size: inherit;
8513 font-size: inherit;
8514 color: inherit;
8514 color: inherit;
8515 width: auto;
8515 width: auto;
8516 /* make sure input baseline aligns with prompt */
8516 /* make sure input baseline aligns with prompt */
8517 vertical-align: baseline;
8517 vertical-align: baseline;
8518 /* padding + margin = 0.5em between prompt and cursor */
8518 /* padding + margin = 0.5em between prompt and cursor */
8519 padding: 0em 0.25em;
8519 padding: 0em 0.25em;
8520 margin: 0em 0.25em;
8520 margin: 0em 0.25em;
8521 }
8521 }
8522 input.raw_input:focus {
8522 input.raw_input:focus {
8523 box-shadow: none;
8523 box-shadow: none;
8524 }
8524 }
8525 p.p-space {
8525 p.p-space {
8526 margin-bottom: 10px;
8526 margin-bottom: 10px;
8527 }
8527 }
8528 .rendered_html {
8528 .rendered_html {
8529 color: #000000;
8529 color: #000000;
8530 /* any extras will just be numbers: */
8530 /* any extras will just be numbers: */
8531 }
8531 }
8532 .rendered_html em {
8532 .rendered_html em {
8533 font-style: italic;
8533 font-style: italic;
8534 }
8534 }
8535 .rendered_html strong {
8535 .rendered_html strong {
8536 font-weight: bold;
8536 font-weight: bold;
8537 }
8537 }
8538 .rendered_html u {
8538 .rendered_html u {
8539 text-decoration: underline;
8539 text-decoration: underline;
8540 }
8540 }
8541 .rendered_html :link {
8541 .rendered_html :link {
8542 text-decoration: underline;
8542 text-decoration: underline;
8543 }
8543 }
8544 .rendered_html :visited {
8544 .rendered_html :visited {
8545 text-decoration: underline;
8545 text-decoration: underline;
8546 }
8546 }
8547 .rendered_html h1 {
8547 .rendered_html h1 {
8548 font-size: 185.7%;
8548 font-size: 185.7%;
8549 margin: 1.08em 0 0 0;
8549 margin: 1.08em 0 0 0;
8550 font-weight: bold;
8550 font-weight: bold;
8551 line-height: 1.0;
8551 line-height: 1.0;
8552 }
8552 }
8553 .rendered_html h2 {
8553 .rendered_html h2 {
8554 font-size: 157.1%;
8554 font-size: 157.1%;
8555 margin: 1.27em 0 0 0;
8555 margin: 1.27em 0 0 0;
8556 font-weight: bold;
8556 font-weight: bold;
8557 line-height: 1.0;
8557 line-height: 1.0;
8558 }
8558 }
8559 .rendered_html h3 {
8559 .rendered_html h3 {
8560 font-size: 128.6%;
8560 font-size: 128.6%;
8561 margin: 1.55em 0 0 0;
8561 margin: 1.55em 0 0 0;
8562 font-weight: bold;
8562 font-weight: bold;
8563 line-height: 1.0;
8563 line-height: 1.0;
8564 }
8564 }
8565 .rendered_html h4 {
8565 .rendered_html h4 {
8566 font-size: 100%;
8566 font-size: 100%;
8567 margin: 2em 0 0 0;
8567 margin: 2em 0 0 0;
8568 font-weight: bold;
8568 font-weight: bold;
8569 line-height: 1.0;
8569 line-height: 1.0;
8570 }
8570 }
8571 .rendered_html h5 {
8571 .rendered_html h5 {
8572 font-size: 100%;
8572 font-size: 100%;
8573 margin: 2em 0 0 0;
8573 margin: 2em 0 0 0;
8574 font-weight: bold;
8574 font-weight: bold;
8575 line-height: 1.0;
8575 line-height: 1.0;
8576 font-style: italic;
8576 font-style: italic;
8577 }
8577 }
8578 .rendered_html h6 {
8578 .rendered_html h6 {
8579 font-size: 100%;
8579 font-size: 100%;
8580 margin: 2em 0 0 0;
8580 margin: 2em 0 0 0;
8581 font-weight: bold;
8581 font-weight: bold;
8582 line-height: 1.0;
8582 line-height: 1.0;
8583 font-style: italic;
8583 font-style: italic;
8584 }
8584 }
8585 .rendered_html h1:first-child {
8585 .rendered_html h1:first-child {
8586 margin-top: 0.538em;
8586 margin-top: 0.538em;
8587 }
8587 }
8588 .rendered_html h2:first-child {
8588 .rendered_html h2:first-child {
8589 margin-top: 0.636em;
8589 margin-top: 0.636em;
8590 }
8590 }
8591 .rendered_html h3:first-child {
8591 .rendered_html h3:first-child {
8592 margin-top: 0.777em;
8592 margin-top: 0.777em;
8593 }
8593 }
8594 .rendered_html h4:first-child {
8594 .rendered_html h4:first-child {
8595 margin-top: 1em;
8595 margin-top: 1em;
8596 }
8596 }
8597 .rendered_html h5:first-child {
8597 .rendered_html h5:first-child {
8598 margin-top: 1em;
8598 margin-top: 1em;
8599 }
8599 }
8600 .rendered_html h6:first-child {
8600 .rendered_html h6:first-child {
8601 margin-top: 1em;
8601 margin-top: 1em;
8602 }
8602 }
8603 .rendered_html ul {
8603 .rendered_html ul {
8604 list-style: disc;
8604 list-style: disc;
8605 margin: 0em 2em;
8605 margin: 0em 2em;
8606 padding-left: 0px;
8606 padding-left: 0px;
8607 }
8607 }
8608 .rendered_html ul ul {
8608 .rendered_html ul ul {
8609 list-style: square;
8609 list-style: square;
8610 margin: 0em 2em;
8610 margin: 0em 2em;
8611 }
8611 }
8612 .rendered_html ul ul ul {
8612 .rendered_html ul ul ul {
8613 list-style: circle;
8613 list-style: circle;
8614 margin: 0em 2em;
8614 margin: 0em 2em;
8615 }
8615 }
8616 .rendered_html ol {
8616 .rendered_html ol {
8617 list-style: decimal;
8617 list-style: decimal;
8618 margin: 0em 2em;
8618 margin: 0em 2em;
8619 padding-left: 0px;
8619 padding-left: 0px;
8620 }
8620 }
8621 .rendered_html ol ol {
8621 .rendered_html ol ol {
8622 list-style: upper-alpha;
8622 list-style: upper-alpha;
8623 margin: 0em 2em;
8623 margin: 0em 2em;
8624 }
8624 }
8625 .rendered_html ol ol ol {
8625 .rendered_html ol ol ol {
8626 list-style: lower-alpha;
8626 list-style: lower-alpha;
8627 margin: 0em 2em;
8627 margin: 0em 2em;
8628 }
8628 }
8629 .rendered_html ol ol ol ol {
8629 .rendered_html ol ol ol ol {
8630 list-style: lower-roman;
8630 list-style: lower-roman;
8631 margin: 0em 2em;
8631 margin: 0em 2em;
8632 }
8632 }
8633 .rendered_html ol ol ol ol ol {
8633 .rendered_html ol ol ol ol ol {
8634 list-style: decimal;
8634 list-style: decimal;
8635 margin: 0em 2em;
8635 margin: 0em 2em;
8636 }
8636 }
8637 .rendered_html * + ul {
8637 .rendered_html * + ul {
8638 margin-top: 1em;
8638 margin-top: 1em;
8639 }
8639 }
8640 .rendered_html * + ol {
8640 .rendered_html * + ol {
8641 margin-top: 1em;
8641 margin-top: 1em;
8642 }
8642 }
8643 .rendered_html hr {
8643 .rendered_html hr {
8644 color: #000000;
8644 color: #000000;
8645 background-color: #000000;
8645 background-color: #000000;
8646 }
8646 }
8647 .rendered_html pre {
8647 .rendered_html pre {
8648 margin: 1em 2em;
8648 margin: 1em 2em;
8649 }
8649 }
8650 .rendered_html pre,
8650 .rendered_html pre,
8651 .rendered_html code {
8651 .rendered_html code {
8652 border: 0;
8652 border: 0;
8653 background-color: #ffffff;
8653 background-color: #ffffff;
8654 color: #000000;
8654 color: #000000;
8655 font-size: 100%;
8655 font-size: 100%;
8656 padding: 0px;
8656 padding: 0px;
8657 }
8657 }
8658 .rendered_html blockquote {
8658 .rendered_html blockquote {
8659 margin: 1em 2em;
8659 margin: 1em 2em;
8660 }
8660 }
8661 .rendered_html table {
8661 .rendered_html table {
8662 margin-left: auto;
8662 margin-left: auto;
8663 margin-right: auto;
8663 margin-right: auto;
8664 border: 1px solid #000000;
8664 border: 1px solid #000000;
8665 border-collapse: collapse;
8665 border-collapse: collapse;
8666 }
8666 }
8667 .rendered_html tr,
8667 .rendered_html tr,
8668 .rendered_html th,
8668 .rendered_html th,
8669 .rendered_html td {
8669 .rendered_html td {
8670 border: 1px solid #000000;
8670 border: 1px solid #000000;
8671 border-collapse: collapse;
8671 border-collapse: collapse;
8672 margin: 1em 2em;
8672 margin: 1em 2em;
8673 }
8673 }
8674 .rendered_html td,
8674 .rendered_html td,
8675 .rendered_html th {
8675 .rendered_html th {
8676 text-align: left;
8676 text-align: left;
8677 vertical-align: middle;
8677 vertical-align: middle;
8678 padding: 4px;
8678 padding: 4px;
8679 }
8679 }
8680 .rendered_html th {
8680 .rendered_html th {
8681 font-weight: bold;
8681 font-weight: bold;
8682 }
8682 }
8683 .rendered_html * + table {
8683 .rendered_html * + table {
8684 margin-top: 1em;
8684 margin-top: 1em;
8685 }
8685 }
8686 .rendered_html p {
8686 .rendered_html p {
8687 text-align: justify;
8687 text-align: justify;
8688 }
8688 }
8689 .rendered_html * + p {
8689 .rendered_html * + p {
8690 margin-top: 1em;
8690 margin-top: 1em;
8691 }
8691 }
8692 .rendered_html img {
8692 .rendered_html img {
8693 display: block;
8693 display: block;
8694 margin-left: auto;
8694 margin-left: auto;
8695 margin-right: auto;
8695 margin-right: auto;
8696 }
8696 }
8697 .rendered_html * + img {
8697 .rendered_html * + img {
8698 margin-top: 1em;
8698 margin-top: 1em;
8699 }
8699 }
8700 div.text_cell {
8700 div.text_cell {
8701 padding: 5px 5px 5px 0px;
8701 padding: 5px 5px 5px 0px;
8702 /* Old browsers */
8702 /* Old browsers */
8703 display: -webkit-box;
8703 display: -webkit-box;
8704 -webkit-box-orient: horizontal;
8704 -webkit-box-orient: horizontal;
8705 -webkit-box-align: stretch;
8705 -webkit-box-align: stretch;
8706 display: -moz-box;
8706 display: -moz-box;
8707 -moz-box-orient: horizontal;
8707 -moz-box-orient: horizontal;
8708 -moz-box-align: stretch;
8708 -moz-box-align: stretch;
8709 display: box;
8709 display: box;
8710 box-orient: horizontal;
8710 box-orient: horizontal;
8711 box-align: stretch;
8711 box-align: stretch;
8712 /* Modern browsers */
8712 /* Modern browsers */
8713 display: flex;
8713 display: flex;
8714 flex-direction: row;
8714 flex-direction: row;
8715 align-items: stretch;
8715 align-items: stretch;
8716 /* Old browsers */
8716 /* Old browsers */
8717 -webkit-box-flex: 0;
8717 -webkit-box-flex: 0;
8718 -moz-box-flex: 0;
8718 -moz-box-flex: 0;
8719 box-flex: 0;
8719 box-flex: 0;
8720 /* Modern browsers */
8720 /* Modern browsers */
8721 flex: none;
8721 flex: none;
8722 }
8722 }
8723 @media (max-width: 480px) {
8723 @media (max-width: 480px) {
8724 div.text_cell > div.prompt {
8724 div.text_cell > div.prompt {
8725 display: none;
8725 display: none;
8726 }
8726 }
8727 }
8727 }
8728 div.text_cell_render {
8728 div.text_cell_render {
8729 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
8729 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
8730 outline: none;
8730 outline: none;
8731 resize: none;
8731 resize: none;
8732 width: inherit;
8732 width: inherit;
8733 border-style: none;
8733 border-style: none;
8734 padding: 0.5em 0.5em 0.5em 0.4em;
8734 padding: 0.5em 0.5em 0.5em 0.4em;
8735 color: #000000;
8735 color: #000000;
8736 }
8736 }
8737 a.anchor-link:link {
8737 a.anchor-link:link {
8738 text-decoration: none;
8738 text-decoration: none;
8739 padding: 0px 20px;
8739 padding: 0px 20px;
8740 visibility: hidden;
8740 visibility: hidden;
8741 }
8741 }
8742 h1:hover .anchor-link,
8742 h1:hover .anchor-link,
8743 h2:hover .anchor-link,
8743 h2:hover .anchor-link,
8744 h3:hover .anchor-link,
8744 h3:hover .anchor-link,
8745 h4:hover .anchor-link,
8745 h4:hover .anchor-link,
8746 h5:hover .anchor-link,
8746 h5:hover .anchor-link,
8747 h6:hover .anchor-link {
8747 h6:hover .anchor-link {
8748 visibility: visible;
8748 visibility: visible;
8749 }
8749 }
8750 div.cell.text_cell.rendered {
8750 div.cell.text_cell.rendered {
8751 padding: 0px;
8751 padding: 0px;
8752 }
8752 }
8753 .cm-s-heading-1,
8753 .cm-s-heading-1,
8754 .cm-s-heading-2,
8754 .cm-s-heading-2,
8755 .cm-s-heading-3,
8755 .cm-s-heading-3,
8756 .cm-s-heading-4,
8756 .cm-s-heading-4,
8757 .cm-s-heading-5,
8757 .cm-s-heading-5,
8758 .cm-s-heading-6 {
8758 .cm-s-heading-6 {
8759 font-weight: bold;
8759 font-weight: bold;
8760 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
8760 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
8761 }
8761 }
8762 .cm-s-heading-1 {
8762 .cm-s-heading-1 {
8763 font-size: 150%;
8763 font-size: 150%;
8764 }
8764 }
8765 .cm-s-heading-2 {
8765 .cm-s-heading-2 {
8766 font-size: 130%;
8766 font-size: 130%;
8767 }
8767 }
8768 .cm-s-heading-3 {
8768 .cm-s-heading-3 {
8769 font-size: 120%;
8769 font-size: 120%;
8770 }
8770 }
8771 .cm-s-heading-4 {
8771 .cm-s-heading-4 {
8772 font-size: 110%;
8772 font-size: 110%;
8773 }
8773 }
8774 .cm-s-heading-5 {
8774 .cm-s-heading-5 {
8775 font-size: 100%;
8775 font-size: 100%;
8776 font-style: italic;
8776 }
8777 }
8777 .cm-s-heading-6 {
8778 .cm-s-heading-6 {
8778 font-size: 90%;
8779 font-size: 90%;
8780 font-style: italic;
8779 }
8781 }
8780 .widget-area {
8782 .widget-area {
8781 /*
8783 /*
8782 LESS file that styles IPython notebook widgets and the area they sit in.
8784 LESS file that styles IPython notebook widgets and the area they sit in.
8783
8785
8784 The widget area typically looks something like this:
8786 The widget area typically looks something like this:
8785 +------------------------------------------+
8787 +------------------------------------------+
8786 | widget-area |
8788 | widget-area |
8787 | +--------+---------------------------+ |
8789 | +--------+---------------------------+ |
8788 | | prompt | widget-subarea | |
8790 | | prompt | widget-subarea | |
8789 | | | +--------+ +--------+ | |
8791 | | | +--------+ +--------+ | |
8790 | | | | widget | | widget | | |
8792 | | | | widget | | widget | | |
8791 | | | +--------+ +--------+ | |
8793 | | | +--------+ +--------+ | |
8792 | +--------+---------------------------+ |
8794 | +--------+---------------------------+ |
8793 +------------------------------------------+
8795 +------------------------------------------+
8794 */
8796 */
8795 page-break-inside: avoid;
8797 page-break-inside: avoid;
8796 /* Old browsers */
8798 /* Old browsers */
8797 display: -webkit-box;
8799 display: -webkit-box;
8798 -webkit-box-orient: horizontal;
8800 -webkit-box-orient: horizontal;
8799 -webkit-box-align: stretch;
8801 -webkit-box-align: stretch;
8800 display: -moz-box;
8802 display: -moz-box;
8801 -moz-box-orient: horizontal;
8803 -moz-box-orient: horizontal;
8802 -moz-box-align: stretch;
8804 -moz-box-align: stretch;
8803 display: box;
8805 display: box;
8804 box-orient: horizontal;
8806 box-orient: horizontal;
8805 box-align: stretch;
8807 box-align: stretch;
8806 /* Modern browsers */
8808 /* Modern browsers */
8807 display: flex;
8809 display: flex;
8808 flex-direction: row;
8810 flex-direction: row;
8809 align-items: stretch;
8811 align-items: stretch;
8810 /* Old browsers */
8812 /* Old browsers */
8811 -webkit-box-flex: 0;
8813 -webkit-box-flex: 0;
8812 -moz-box-flex: 0;
8814 -moz-box-flex: 0;
8813 box-flex: 0;
8815 box-flex: 0;
8814 /* Modern browsers */
8816 /* Modern browsers */
8815 flex: none;
8817 flex: none;
8816 }
8818 }
8817 .widget-area .widget-subarea {
8819 .widget-area .widget-subarea {
8818 padding: 0.44em 0.4em 0.4em 1px;
8820 padding: 0.44em 0.4em 0.4em 1px;
8819 margin-left: 6px;
8821 margin-left: 6px;
8820 box-sizing: border-box;
8822 box-sizing: border-box;
8821 -moz-box-sizing: border-box;
8823 -moz-box-sizing: border-box;
8822 -webkit-box-sizing: border-box;
8824 -webkit-box-sizing: border-box;
8823 /* Old browsers */
8825 /* Old browsers */
8824 display: -webkit-box;
8826 display: -webkit-box;
8825 -webkit-box-orient: vertical;
8827 -webkit-box-orient: vertical;
8826 -webkit-box-align: stretch;
8828 -webkit-box-align: stretch;
8827 display: -moz-box;
8829 display: -moz-box;
8828 -moz-box-orient: vertical;
8830 -moz-box-orient: vertical;
8829 -moz-box-align: stretch;
8831 -moz-box-align: stretch;
8830 display: box;
8832 display: box;
8831 box-orient: vertical;
8833 box-orient: vertical;
8832 box-align: stretch;
8834 box-align: stretch;
8833 /* Modern browsers */
8835 /* Modern browsers */
8834 display: flex;
8836 display: flex;
8835 flex-direction: column;
8837 flex-direction: column;
8836 align-items: stretch;
8838 align-items: stretch;
8837 /* Old browsers */
8839 /* Old browsers */
8838 -webkit-box-flex: 0;
8840 -webkit-box-flex: 0;
8839 -moz-box-flex: 0;
8841 -moz-box-flex: 0;
8840 box-flex: 0;
8842 box-flex: 0;
8841 /* Modern browsers */
8843 /* Modern browsers */
8842 flex: none;
8844 flex: none;
8843 /* Old browsers */
8845 /* Old browsers */
8844 -webkit-box-flex: 2;
8846 -webkit-box-flex: 2;
8845 -moz-box-flex: 2;
8847 -moz-box-flex: 2;
8846 box-flex: 2;
8848 box-flex: 2;
8847 /* Modern browsers */
8849 /* Modern browsers */
8848 flex: 2;
8850 flex: 2;
8849 /* Old browsers */
8851 /* Old browsers */
8850 -webkit-box-align: start;
8852 -webkit-box-align: start;
8851 -moz-box-align: start;
8853 -moz-box-align: start;
8852 box-align: start;
8854 box-align: start;
8853 /* Modern browsers */
8855 /* Modern browsers */
8854 align-items: flex-start;
8856 align-items: flex-start;
8855 }
8857 }
8856 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
8858 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
8857 THE WIDGET AREA). */
8859 THE WIDGET AREA). */
8858 .widget-hlabel {
8860 .widget-hlabel {
8859 /* Horizontal Label */
8861 /* Horizontal Label */
8860 min-width: 10ex;
8862 min-width: 10ex;
8861 padding-right: 8px;
8863 padding-right: 8px;
8862 padding-top: 5px;
8864 padding-top: 5px;
8863 text-align: right;
8865 text-align: right;
8864 vertical-align: text-top;
8866 vertical-align: text-top;
8865 }
8867 }
8866 .widget-vlabel {
8868 .widget-vlabel {
8867 /* Vertical Label */
8869 /* Vertical Label */
8868 padding-bottom: 5px;
8870 padding-bottom: 5px;
8869 text-align: center;
8871 text-align: center;
8870 vertical-align: text-bottom;
8872 vertical-align: text-bottom;
8871 }
8873 }
8872 .widget-hreadout {
8874 .widget-hreadout {
8873 padding-left: 8px;
8875 padding-left: 8px;
8874 padding-top: 5px;
8876 padding-top: 5px;
8875 text-align: left;
8877 text-align: left;
8876 vertical-align: text-top;
8878 vertical-align: text-top;
8877 }
8879 }
8878 .widget-vreadout {
8880 .widget-vreadout {
8879 /* Vertical Label */
8881 /* Vertical Label */
8880 padding-top: 5px;
8882 padding-top: 5px;
8881 text-align: center;
8883 text-align: center;
8882 vertical-align: text-top;
8884 vertical-align: text-top;
8883 }
8885 }
8884 .slide-track {
8886 .slide-track {
8885 /* Slider Track */
8887 /* Slider Track */
8886 border: 1px solid #CCCCCC;
8888 border: 1px solid #CCCCCC;
8887 background: #FFFFFF;
8889 background: #FFFFFF;
8888 border-radius: 4px;
8890 border-radius: 4px;
8889 /* Round the corners of the slide track */
8891 /* Round the corners of the slide track */
8890 }
8892 }
8891 .widget-hslider {
8893 .widget-hslider {
8892 /* Horizontal jQuery Slider
8894 /* Horizontal jQuery Slider
8893
8895
8894 Both the horizontal and vertical versions of the slider are characterized
8896 Both the horizontal and vertical versions of the slider are characterized
8895 by a styled div that contains an invisible jQuery slide div which
8897 by a styled div that contains an invisible jQuery slide div which
8896 contains a visible slider handle div. This is requred so we can control
8898 contains a visible slider handle div. This is requred so we can control
8897 how the slider is drawn and 'fix' the issue where the slide handle
8899 how the slider is drawn and 'fix' the issue where the slide handle
8898 doesn't stop at the end of the slide.
8900 doesn't stop at the end of the slide.
8899
8901
8900 Both horizontal and vertical sliders have this div nesting:
8902 Both horizontal and vertical sliders have this div nesting:
8901 +------------------------------------------+
8903 +------------------------------------------+
8902 | widget-(h/v)slider |
8904 | widget-(h/v)slider |
8903 | +--------+---------------------------+ |
8905 | +--------+---------------------------+ |
8904 | | ui-slider | |
8906 | | ui-slider | |
8905 | | +------------------+ | |
8907 | | +------------------+ | |
8906 | | | ui-slider-handle | | |
8908 | | | ui-slider-handle | | |
8907 | | +------------------+ | |
8909 | | +------------------+ | |
8908 | +--------+---------------------------+ |
8910 | +--------+---------------------------+ |
8909 +------------------------------------------+
8911 +------------------------------------------+
8910 */
8912 */
8911 /* Fix the padding of the slide track so the ui-slider is sized
8913 /* Fix the padding of the slide track so the ui-slider is sized
8912 correctly. */
8914 correctly. */
8913 padding-left: 8px;
8915 padding-left: 8px;
8914 padding-right: 5px;
8916 padding-right: 5px;
8915 overflow: visible;
8917 overflow: visible;
8916 /* Default size of the slider */
8918 /* Default size of the slider */
8917 width: 350px;
8919 width: 350px;
8918 height: 5px;
8920 height: 5px;
8919 max-height: 5px;
8921 max-height: 5px;
8920 margin-top: 13px;
8922 margin-top: 13px;
8921 margin-bottom: 10px;
8923 margin-bottom: 10px;
8922 /* Style the slider track */
8924 /* Style the slider track */
8923 /* Slider Track */
8925 /* Slider Track */
8924 border: 1px solid #CCCCCC;
8926 border: 1px solid #CCCCCC;
8925 background: #FFFFFF;
8927 background: #FFFFFF;
8926 border-radius: 4px;
8928 border-radius: 4px;
8927 /* Round the corners of the slide track */
8929 /* Round the corners of the slide track */
8928 /* Make the div a flex box (makes FF behave correctly). */
8930 /* Make the div a flex box (makes FF behave correctly). */
8929 /* Old browsers */
8931 /* Old browsers */
8930 display: -webkit-box;
8932 display: -webkit-box;
8931 -webkit-box-orient: horizontal;
8933 -webkit-box-orient: horizontal;
8932 -webkit-box-align: stretch;
8934 -webkit-box-align: stretch;
8933 display: -moz-box;
8935 display: -moz-box;
8934 -moz-box-orient: horizontal;
8936 -moz-box-orient: horizontal;
8935 -moz-box-align: stretch;
8937 -moz-box-align: stretch;
8936 display: box;
8938 display: box;
8937 box-orient: horizontal;
8939 box-orient: horizontal;
8938 box-align: stretch;
8940 box-align: stretch;
8939 /* Modern browsers */
8941 /* Modern browsers */
8940 display: flex;
8942 display: flex;
8941 flex-direction: row;
8943 flex-direction: row;
8942 align-items: stretch;
8944 align-items: stretch;
8943 /* Old browsers */
8945 /* Old browsers */
8944 -webkit-box-flex: 0;
8946 -webkit-box-flex: 0;
8945 -moz-box-flex: 0;
8947 -moz-box-flex: 0;
8946 box-flex: 0;
8948 box-flex: 0;
8947 /* Modern browsers */
8949 /* Modern browsers */
8948 flex: none;
8950 flex: none;
8949 }
8951 }
8950 .widget-hslider .ui-slider {
8952 .widget-hslider .ui-slider {
8951 /* Inner, invisible slide div */
8953 /* Inner, invisible slide div */
8952 border: 0px !important;
8954 border: 0px !important;
8953 background: none !important;
8955 background: none !important;
8954 /* Old browsers */
8956 /* Old browsers */
8955 display: -webkit-box;
8957 display: -webkit-box;
8956 -webkit-box-orient: horizontal;
8958 -webkit-box-orient: horizontal;
8957 -webkit-box-align: stretch;
8959 -webkit-box-align: stretch;
8958 display: -moz-box;
8960 display: -moz-box;
8959 -moz-box-orient: horizontal;
8961 -moz-box-orient: horizontal;
8960 -moz-box-align: stretch;
8962 -moz-box-align: stretch;
8961 display: box;
8963 display: box;
8962 box-orient: horizontal;
8964 box-orient: horizontal;
8963 box-align: stretch;
8965 box-align: stretch;
8964 /* Modern browsers */
8966 /* Modern browsers */
8965 display: flex;
8967 display: flex;
8966 flex-direction: row;
8968 flex-direction: row;
8967 align-items: stretch;
8969 align-items: stretch;
8968 /* Old browsers */
8970 /* Old browsers */
8969 -webkit-box-flex: 0;
8971 -webkit-box-flex: 0;
8970 -moz-box-flex: 0;
8972 -moz-box-flex: 0;
8971 box-flex: 0;
8973 box-flex: 0;
8972 /* Modern browsers */
8974 /* Modern browsers */
8973 flex: none;
8975 flex: none;
8974 /* Old browsers */
8976 /* Old browsers */
8975 -webkit-box-flex: 1;
8977 -webkit-box-flex: 1;
8976 -moz-box-flex: 1;
8978 -moz-box-flex: 1;
8977 box-flex: 1;
8979 box-flex: 1;
8978 /* Modern browsers */
8980 /* Modern browsers */
8979 flex: 1;
8981 flex: 1;
8980 }
8982 }
8981 .widget-hslider .ui-slider .ui-slider-handle {
8983 .widget-hslider .ui-slider .ui-slider-handle {
8982 width: 14px !important;
8984 width: 14px !important;
8983 height: 28px !important;
8985 height: 28px !important;
8984 margin-top: -8px !important;
8986 margin-top: -8px !important;
8985 }
8987 }
8986 .widget-vslider {
8988 .widget-vslider {
8987 /* Vertical jQuery Slider */
8989 /* Vertical jQuery Slider */
8988 /* Fix the padding of the slide track so the ui-slider is sized
8990 /* Fix the padding of the slide track so the ui-slider is sized
8989 correctly. */
8991 correctly. */
8990 padding-bottom: 8px;
8992 padding-bottom: 8px;
8991 overflow: visible;
8993 overflow: visible;
8992 /* Default size of the slider */
8994 /* Default size of the slider */
8993 width: 5px;
8995 width: 5px;
8994 max-width: 5px;
8996 max-width: 5px;
8995 height: 250px;
8997 height: 250px;
8996 margin-left: 12px;
8998 margin-left: 12px;
8997 /* Style the slider track */
8999 /* Style the slider track */
8998 /* Slider Track */
9000 /* Slider Track */
8999 border: 1px solid #CCCCCC;
9001 border: 1px solid #CCCCCC;
9000 background: #FFFFFF;
9002 background: #FFFFFF;
9001 border-radius: 4px;
9003 border-radius: 4px;
9002 /* Round the corners of the slide track */
9004 /* Round the corners of the slide track */
9003 /* Make the div a flex box (makes FF behave correctly). */
9005 /* Make the div a flex box (makes FF behave correctly). */
9004 /* Old browsers */
9006 /* Old browsers */
9005 display: -webkit-box;
9007 display: -webkit-box;
9006 -webkit-box-orient: vertical;
9008 -webkit-box-orient: vertical;
9007 -webkit-box-align: stretch;
9009 -webkit-box-align: stretch;
9008 display: -moz-box;
9010 display: -moz-box;
9009 -moz-box-orient: vertical;
9011 -moz-box-orient: vertical;
9010 -moz-box-align: stretch;
9012 -moz-box-align: stretch;
9011 display: box;
9013 display: box;
9012 box-orient: vertical;
9014 box-orient: vertical;
9013 box-align: stretch;
9015 box-align: stretch;
9014 /* Modern browsers */
9016 /* Modern browsers */
9015 display: flex;
9017 display: flex;
9016 flex-direction: column;
9018 flex-direction: column;
9017 align-items: stretch;
9019 align-items: stretch;
9018 /* Old browsers */
9020 /* Old browsers */
9019 -webkit-box-flex: 0;
9021 -webkit-box-flex: 0;
9020 -moz-box-flex: 0;
9022 -moz-box-flex: 0;
9021 box-flex: 0;
9023 box-flex: 0;
9022 /* Modern browsers */
9024 /* Modern browsers */
9023 flex: none;
9025 flex: none;
9024 }
9026 }
9025 .widget-vslider .ui-slider {
9027 .widget-vslider .ui-slider {
9026 /* Inner, invisible slide div */
9028 /* Inner, invisible slide div */
9027 border: 0px !important;
9029 border: 0px !important;
9028 background: none !important;
9030 background: none !important;
9029 margin-left: -4px;
9031 margin-left: -4px;
9030 margin-top: 5px;
9032 margin-top: 5px;
9031 /* Old browsers */
9033 /* Old browsers */
9032 display: -webkit-box;
9034 display: -webkit-box;
9033 -webkit-box-orient: vertical;
9035 -webkit-box-orient: vertical;
9034 -webkit-box-align: stretch;
9036 -webkit-box-align: stretch;
9035 display: -moz-box;
9037 display: -moz-box;
9036 -moz-box-orient: vertical;
9038 -moz-box-orient: vertical;
9037 -moz-box-align: stretch;
9039 -moz-box-align: stretch;
9038 display: box;
9040 display: box;
9039 box-orient: vertical;
9041 box-orient: vertical;
9040 box-align: stretch;
9042 box-align: stretch;
9041 /* Modern browsers */
9043 /* Modern browsers */
9042 display: flex;
9044 display: flex;
9043 flex-direction: column;
9045 flex-direction: column;
9044 align-items: stretch;
9046 align-items: stretch;
9045 /* Old browsers */
9047 /* Old browsers */
9046 -webkit-box-flex: 0;
9048 -webkit-box-flex: 0;
9047 -moz-box-flex: 0;
9049 -moz-box-flex: 0;
9048 box-flex: 0;
9050 box-flex: 0;
9049 /* Modern browsers */
9051 /* Modern browsers */
9050 flex: none;
9052 flex: none;
9051 /* Old browsers */
9053 /* Old browsers */
9052 -webkit-box-flex: 1;
9054 -webkit-box-flex: 1;
9053 -moz-box-flex: 1;
9055 -moz-box-flex: 1;
9054 box-flex: 1;
9056 box-flex: 1;
9055 /* Modern browsers */
9057 /* Modern browsers */
9056 flex: 1;
9058 flex: 1;
9057 }
9059 }
9058 .widget-vslider .ui-slider .ui-slider-handle {
9060 .widget-vslider .ui-slider .ui-slider-handle {
9059 width: 28px !important;
9061 width: 28px !important;
9060 height: 14px !important;
9062 height: 14px !important;
9061 margin-left: -9px;
9063 margin-left: -9px;
9062 }
9064 }
9063 .widget-text {
9065 .widget-text {
9064 /* String Textbox - used for TextBoxView and TextAreaView */
9066 /* String Textbox - used for TextBoxView and TextAreaView */
9065 width: 350px;
9067 width: 350px;
9066 margin: 0px !important;
9068 margin: 0px !important;
9067 }
9069 }
9068 .widget-listbox {
9070 .widget-listbox {
9069 /* Listbox */
9071 /* Listbox */
9070 width: 350px;
9072 width: 350px;
9071 margin-bottom: 0px;
9073 margin-bottom: 0px;
9072 }
9074 }
9073 .widget-numeric-text {
9075 .widget-numeric-text {
9074 /* Single Line Textbox - used for IntTextView and FloatTextView */
9076 /* Single Line Textbox - used for IntTextView and FloatTextView */
9075 width: 150px;
9077 width: 150px;
9076 margin: 0px !important;
9078 margin: 0px !important;
9077 }
9079 }
9078 .widget-progress {
9080 .widget-progress {
9079 /* Progress Bar */
9081 /* Progress Bar */
9080 margin-top: 6px;
9082 margin-top: 6px;
9081 width: 350px;
9083 width: 350px;
9082 }
9084 }
9083 .widget-progress .progress-bar {
9085 .widget-progress .progress-bar {
9084 /* Disable progress bar animation */
9086 /* Disable progress bar animation */
9085 -webkit-transition: none;
9087 -webkit-transition: none;
9086 -moz-transition: none;
9088 -moz-transition: none;
9087 -ms-transition: none;
9089 -ms-transition: none;
9088 -o-transition: none;
9090 -o-transition: none;
9089 transition: none;
9091 transition: none;
9090 }
9092 }
9091 .widget-combo-btn {
9093 .widget-combo-btn {
9092 /* ComboBox Main Button */
9094 /* ComboBox Main Button */
9093 min-width: 125px;
9095 min-width: 125px;
9094 }
9096 }
9095 .widget-box {
9097 .widget-box {
9096 /* The following section sets the style for the invisible div that
9098 /* The following section sets the style for the invisible div that
9097 hold widgets and their accompanying labels.
9099 hold widgets and their accompanying labels.
9098
9100
9099 Looks like this:
9101 Looks like this:
9100 +-----------------------------+
9102 +-----------------------------+
9101 | widget-box (or similar) |
9103 | widget-box (or similar) |
9102 | +-------+---------------+ |
9104 | +-------+---------------+ |
9103 | | Label | Actual Widget | |
9105 | | Label | Actual Widget | |
9104 | +-------+---------------+ |
9106 | +-------+---------------+ |
9105 +-----------------------------+
9107 +-----------------------------+
9106 */
9108 */
9107 margin: 5px;
9109 margin: 5px;
9108 /* Old browsers */
9110 /* Old browsers */
9109 -webkit-box-pack: start;
9111 -webkit-box-pack: start;
9110 -moz-box-pack: start;
9112 -moz-box-pack: start;
9111 box-pack: start;
9113 box-pack: start;
9112 /* Modern browsers */
9114 /* Modern browsers */
9113 justify-content: flex-start;
9115 justify-content: flex-start;
9114 /* ContainerWidget */
9116 /* ContainerWidget */
9115 box-sizing: border-box;
9117 box-sizing: border-box;
9116 -moz-box-sizing: border-box;
9118 -moz-box-sizing: border-box;
9117 -webkit-box-sizing: border-box;
9119 -webkit-box-sizing: border-box;
9118 /* Old browsers */
9120 /* Old browsers */
9119 -webkit-box-align: start;
9121 -webkit-box-align: start;
9120 -moz-box-align: start;
9122 -moz-box-align: start;
9121 box-align: start;
9123 box-align: start;
9122 /* Modern browsers */
9124 /* Modern browsers */
9123 align-items: flex-start;
9125 align-items: flex-start;
9124 }
9126 }
9125 .widget-hbox {
9127 .widget-hbox {
9126 /* Horizontal widgets */
9128 /* Horizontal widgets */
9127 /* The following section sets the style for the invisible div that
9129 /* The following section sets the style for the invisible div that
9128 hold widgets and their accompanying labels.
9130 hold widgets and their accompanying labels.
9129
9131
9130 Looks like this:
9132 Looks like this:
9131 +-----------------------------+
9133 +-----------------------------+
9132 | widget-box (or similar) |
9134 | widget-box (or similar) |
9133 | +-------+---------------+ |
9135 | +-------+---------------+ |
9134 | | Label | Actual Widget | |
9136 | | Label | Actual Widget | |
9135 | +-------+---------------+ |
9137 | +-------+---------------+ |
9136 +-----------------------------+
9138 +-----------------------------+
9137 */
9139 */
9138 margin: 5px;
9140 margin: 5px;
9139 /* Old browsers */
9141 /* Old browsers */
9140 -webkit-box-pack: start;
9142 -webkit-box-pack: start;
9141 -moz-box-pack: start;
9143 -moz-box-pack: start;
9142 box-pack: start;
9144 box-pack: start;
9143 /* Modern browsers */
9145 /* Modern browsers */
9144 justify-content: flex-start;
9146 justify-content: flex-start;
9145 /* ContainerWidget */
9147 /* ContainerWidget */
9146 box-sizing: border-box;
9148 box-sizing: border-box;
9147 -moz-box-sizing: border-box;
9149 -moz-box-sizing: border-box;
9148 -webkit-box-sizing: border-box;
9150 -webkit-box-sizing: border-box;
9149 /* Old browsers */
9151 /* Old browsers */
9150 -webkit-box-align: start;
9152 -webkit-box-align: start;
9151 -moz-box-align: start;
9153 -moz-box-align: start;
9152 box-align: start;
9154 box-align: start;
9153 /* Modern browsers */
9155 /* Modern browsers */
9154 align-items: flex-start;
9156 align-items: flex-start;
9155 /* Old browsers */
9157 /* Old browsers */
9156 display: -webkit-box;
9158 display: -webkit-box;
9157 -webkit-box-orient: horizontal;
9159 -webkit-box-orient: horizontal;
9158 -webkit-box-align: stretch;
9160 -webkit-box-align: stretch;
9159 display: -moz-box;
9161 display: -moz-box;
9160 -moz-box-orient: horizontal;
9162 -moz-box-orient: horizontal;
9161 -moz-box-align: stretch;
9163 -moz-box-align: stretch;
9162 display: box;
9164 display: box;
9163 box-orient: horizontal;
9165 box-orient: horizontal;
9164 box-align: stretch;
9166 box-align: stretch;
9165 /* Modern browsers */
9167 /* Modern browsers */
9166 display: flex;
9168 display: flex;
9167 flex-direction: row;
9169 flex-direction: row;
9168 align-items: stretch;
9170 align-items: stretch;
9169 /* Old browsers */
9171 /* Old browsers */
9170 -webkit-box-flex: 0;
9172 -webkit-box-flex: 0;
9171 -moz-box-flex: 0;
9173 -moz-box-flex: 0;
9172 box-flex: 0;
9174 box-flex: 0;
9173 /* Modern browsers */
9175 /* Modern browsers */
9174 flex: none;
9176 flex: none;
9175 }
9177 }
9176 .widget-hbox-single {
9178 .widget-hbox-single {
9177 /* Single line horizontal widgets */
9179 /* Single line horizontal widgets */
9178 /* Horizontal widgets */
9180 /* Horizontal widgets */
9179 /* The following section sets the style for the invisible div that
9181 /* The following section sets the style for the invisible div that
9180 hold widgets and their accompanying labels.
9182 hold widgets and their accompanying labels.
9181
9183
9182 Looks like this:
9184 Looks like this:
9183 +-----------------------------+
9185 +-----------------------------+
9184 | widget-box (or similar) |
9186 | widget-box (or similar) |
9185 | +-------+---------------+ |
9187 | +-------+---------------+ |
9186 | | Label | Actual Widget | |
9188 | | Label | Actual Widget | |
9187 | +-------+---------------+ |
9189 | +-------+---------------+ |
9188 +-----------------------------+
9190 +-----------------------------+
9189 */
9191 */
9190 margin: 5px;
9192 margin: 5px;
9191 /* Old browsers */
9193 /* Old browsers */
9192 -webkit-box-pack: start;
9194 -webkit-box-pack: start;
9193 -moz-box-pack: start;
9195 -moz-box-pack: start;
9194 box-pack: start;
9196 box-pack: start;
9195 /* Modern browsers */
9197 /* Modern browsers */
9196 justify-content: flex-start;
9198 justify-content: flex-start;
9197 /* ContainerWidget */
9199 /* ContainerWidget */
9198 box-sizing: border-box;
9200 box-sizing: border-box;
9199 -moz-box-sizing: border-box;
9201 -moz-box-sizing: border-box;
9200 -webkit-box-sizing: border-box;
9202 -webkit-box-sizing: border-box;
9201 /* Old browsers */
9203 /* Old browsers */
9202 -webkit-box-align: start;
9204 -webkit-box-align: start;
9203 -moz-box-align: start;
9205 -moz-box-align: start;
9204 box-align: start;
9206 box-align: start;
9205 /* Modern browsers */
9207 /* Modern browsers */
9206 align-items: flex-start;
9208 align-items: flex-start;
9207 /* Old browsers */
9209 /* Old browsers */
9208 display: -webkit-box;
9210 display: -webkit-box;
9209 -webkit-box-orient: horizontal;
9211 -webkit-box-orient: horizontal;
9210 -webkit-box-align: stretch;
9212 -webkit-box-align: stretch;
9211 display: -moz-box;
9213 display: -moz-box;
9212 -moz-box-orient: horizontal;
9214 -moz-box-orient: horizontal;
9213 -moz-box-align: stretch;
9215 -moz-box-align: stretch;
9214 display: box;
9216 display: box;
9215 box-orient: horizontal;
9217 box-orient: horizontal;
9216 box-align: stretch;
9218 box-align: stretch;
9217 /* Modern browsers */
9219 /* Modern browsers */
9218 display: flex;
9220 display: flex;
9219 flex-direction: row;
9221 flex-direction: row;
9220 align-items: stretch;
9222 align-items: stretch;
9221 /* Old browsers */
9223 /* Old browsers */
9222 -webkit-box-flex: 0;
9224 -webkit-box-flex: 0;
9223 -moz-box-flex: 0;
9225 -moz-box-flex: 0;
9224 box-flex: 0;
9226 box-flex: 0;
9225 /* Modern browsers */
9227 /* Modern browsers */
9226 flex: none;
9228 flex: none;
9227 height: 30px;
9229 height: 30px;
9228 }
9230 }
9229 .widget-hbox-single input[type="checkbox"] {
9231 .widget-hbox-single input[type="checkbox"] {
9230 margin-top: 9px;
9232 margin-top: 9px;
9231 }
9233 }
9232 .widget-vbox {
9234 .widget-vbox {
9233 /* Vertical widgets */
9235 /* Vertical widgets */
9234 /* The following section sets the style for the invisible div that
9236 /* The following section sets the style for the invisible div that
9235 hold widgets and their accompanying labels.
9237 hold widgets and their accompanying labels.
9236
9238
9237 Looks like this:
9239 Looks like this:
9238 +-----------------------------+
9240 +-----------------------------+
9239 | widget-box (or similar) |
9241 | widget-box (or similar) |
9240 | +-------+---------------+ |
9242 | +-------+---------------+ |
9241 | | Label | Actual Widget | |
9243 | | Label | Actual Widget | |
9242 | +-------+---------------+ |
9244 | +-------+---------------+ |
9243 +-----------------------------+
9245 +-----------------------------+
9244 */
9246 */
9245 margin: 5px;
9247 margin: 5px;
9246 /* Old browsers */
9248 /* Old browsers */
9247 -webkit-box-pack: start;
9249 -webkit-box-pack: start;
9248 -moz-box-pack: start;
9250 -moz-box-pack: start;
9249 box-pack: start;
9251 box-pack: start;
9250 /* Modern browsers */
9252 /* Modern browsers */
9251 justify-content: flex-start;
9253 justify-content: flex-start;
9252 /* ContainerWidget */
9254 /* ContainerWidget */
9253 box-sizing: border-box;
9255 box-sizing: border-box;
9254 -moz-box-sizing: border-box;
9256 -moz-box-sizing: border-box;
9255 -webkit-box-sizing: border-box;
9257 -webkit-box-sizing: border-box;
9256 /* Old browsers */
9258 /* Old browsers */
9257 -webkit-box-align: start;
9259 -webkit-box-align: start;
9258 -moz-box-align: start;
9260 -moz-box-align: start;
9259 box-align: start;
9261 box-align: start;
9260 /* Modern browsers */
9262 /* Modern browsers */
9261 align-items: flex-start;
9263 align-items: flex-start;
9262 /* Old browsers */
9264 /* Old browsers */
9263 display: -webkit-box;
9265 display: -webkit-box;
9264 -webkit-box-orient: vertical;
9266 -webkit-box-orient: vertical;
9265 -webkit-box-align: stretch;
9267 -webkit-box-align: stretch;
9266 display: -moz-box;
9268 display: -moz-box;
9267 -moz-box-orient: vertical;
9269 -moz-box-orient: vertical;
9268 -moz-box-align: stretch;
9270 -moz-box-align: stretch;
9269 display: box;
9271 display: box;
9270 box-orient: vertical;
9272 box-orient: vertical;
9271 box-align: stretch;
9273 box-align: stretch;
9272 /* Modern browsers */
9274 /* Modern browsers */
9273 display: flex;
9275 display: flex;
9274 flex-direction: column;
9276 flex-direction: column;
9275 align-items: stretch;
9277 align-items: stretch;
9276 /* Old browsers */
9278 /* Old browsers */
9277 -webkit-box-flex: 0;
9279 -webkit-box-flex: 0;
9278 -moz-box-flex: 0;
9280 -moz-box-flex: 0;
9279 box-flex: 0;
9281 box-flex: 0;
9280 /* Modern browsers */
9282 /* Modern browsers */
9281 flex: none;
9283 flex: none;
9282 }
9284 }
9283 .widget-vbox-single {
9285 .widget-vbox-single {
9284 /* For vertical slides */
9286 /* For vertical slides */
9285 /* Vertical widgets */
9287 /* Vertical widgets */
9286 /* The following section sets the style for the invisible div that
9288 /* The following section sets the style for the invisible div that
9287 hold widgets and their accompanying labels.
9289 hold widgets and their accompanying labels.
9288
9290
9289 Looks like this:
9291 Looks like this:
9290 +-----------------------------+
9292 +-----------------------------+
9291 | widget-box (or similar) |
9293 | widget-box (or similar) |
9292 | +-------+---------------+ |
9294 | +-------+---------------+ |
9293 | | Label | Actual Widget | |
9295 | | Label | Actual Widget | |
9294 | +-------+---------------+ |
9296 | +-------+---------------+ |
9295 +-----------------------------+
9297 +-----------------------------+
9296 */
9298 */
9297 margin: 5px;
9299 margin: 5px;
9298 /* Old browsers */
9300 /* Old browsers */
9299 -webkit-box-pack: start;
9301 -webkit-box-pack: start;
9300 -moz-box-pack: start;
9302 -moz-box-pack: start;
9301 box-pack: start;
9303 box-pack: start;
9302 /* Modern browsers */
9304 /* Modern browsers */
9303 justify-content: flex-start;
9305 justify-content: flex-start;
9304 /* ContainerWidget */
9306 /* ContainerWidget */
9305 box-sizing: border-box;
9307 box-sizing: border-box;
9306 -moz-box-sizing: border-box;
9308 -moz-box-sizing: border-box;
9307 -webkit-box-sizing: border-box;
9309 -webkit-box-sizing: border-box;
9308 /* Old browsers */
9310 /* Old browsers */
9309 -webkit-box-align: start;
9311 -webkit-box-align: start;
9310 -moz-box-align: start;
9312 -moz-box-align: start;
9311 box-align: start;
9313 box-align: start;
9312 /* Modern browsers */
9314 /* Modern browsers */
9313 align-items: flex-start;
9315 align-items: flex-start;
9314 /* Old browsers */
9316 /* Old browsers */
9315 display: -webkit-box;
9317 display: -webkit-box;
9316 -webkit-box-orient: vertical;
9318 -webkit-box-orient: vertical;
9317 -webkit-box-align: stretch;
9319 -webkit-box-align: stretch;
9318 display: -moz-box;
9320 display: -moz-box;
9319 -moz-box-orient: vertical;
9321 -moz-box-orient: vertical;
9320 -moz-box-align: stretch;
9322 -moz-box-align: stretch;
9321 display: box;
9323 display: box;
9322 box-orient: vertical;
9324 box-orient: vertical;
9323 box-align: stretch;
9325 box-align: stretch;
9324 /* Modern browsers */
9326 /* Modern browsers */
9325 display: flex;
9327 display: flex;
9326 flex-direction: column;
9328 flex-direction: column;
9327 align-items: stretch;
9329 align-items: stretch;
9328 /* Old browsers */
9330 /* Old browsers */
9329 -webkit-box-flex: 0;
9331 -webkit-box-flex: 0;
9330 -moz-box-flex: 0;
9332 -moz-box-flex: 0;
9331 box-flex: 0;
9333 box-flex: 0;
9332 /* Modern browsers */
9334 /* Modern browsers */
9333 flex: none;
9335 flex: none;
9334 width: 30px;
9336 width: 30px;
9335 }
9337 }
9336 .widget-modal {
9338 .widget-modal {
9337 /* ContainerWidget - ModalView */
9339 /* ContainerWidget - ModalView */
9338 overflow: hidden;
9340 overflow: hidden;
9339 position: absolute !important;
9341 position: absolute !important;
9340 top: 0px;
9342 top: 0px;
9341 left: 0px;
9343 left: 0px;
9342 margin-left: 0px !important;
9344 margin-left: 0px !important;
9343 }
9345 }
9344 .widget-modal-body {
9346 .widget-modal-body {
9345 /* ContainerWidget - ModalView Body */
9347 /* ContainerWidget - ModalView Body */
9346 max-height: none !important;
9348 max-height: none !important;
9347 }
9349 }
9348 .widget-container {
9350 .widget-container {
9349 /* ContainerWidget */
9351 /* ContainerWidget */
9350 box-sizing: border-box;
9352 box-sizing: border-box;
9351 -moz-box-sizing: border-box;
9353 -moz-box-sizing: border-box;
9352 -webkit-box-sizing: border-box;
9354 -webkit-box-sizing: border-box;
9353 /* Old browsers */
9355 /* Old browsers */
9354 -webkit-box-align: start;
9356 -webkit-box-align: start;
9355 -moz-box-align: start;
9357 -moz-box-align: start;
9356 box-align: start;
9358 box-align: start;
9357 /* Modern browsers */
9359 /* Modern browsers */
9358 align-items: flex-start;
9360 align-items: flex-start;
9359 }
9361 }
9360 .widget-radio-box {
9362 .widget-radio-box {
9361 /* Contains RadioButtonsWidget */
9363 /* Contains RadioButtonsWidget */
9362 /* Old browsers */
9364 /* Old browsers */
9363 display: -webkit-box;
9365 display: -webkit-box;
9364 -webkit-box-orient: vertical;
9366 -webkit-box-orient: vertical;
9365 -webkit-box-align: stretch;
9367 -webkit-box-align: stretch;
9366 display: -moz-box;
9368 display: -moz-box;
9367 -moz-box-orient: vertical;
9369 -moz-box-orient: vertical;
9368 -moz-box-align: stretch;
9370 -moz-box-align: stretch;
9369 display: box;
9371 display: box;
9370 box-orient: vertical;
9372 box-orient: vertical;
9371 box-align: stretch;
9373 box-align: stretch;
9372 /* Modern browsers */
9374 /* Modern browsers */
9373 display: flex;
9375 display: flex;
9374 flex-direction: column;
9376 flex-direction: column;
9375 align-items: stretch;
9377 align-items: stretch;
9376 /* Old browsers */
9378 /* Old browsers */
9377 -webkit-box-flex: 0;
9379 -webkit-box-flex: 0;
9378 -moz-box-flex: 0;
9380 -moz-box-flex: 0;
9379 box-flex: 0;
9381 box-flex: 0;
9380 /* Modern browsers */
9382 /* Modern browsers */
9381 flex: none;
9383 flex: none;
9382 box-sizing: border-box;
9384 box-sizing: border-box;
9383 -moz-box-sizing: border-box;
9385 -moz-box-sizing: border-box;
9384 -webkit-box-sizing: border-box;
9386 -webkit-box-sizing: border-box;
9385 padding-top: 4px;
9387 padding-top: 4px;
9386 }
9388 }
9387 .widget-radio-box label {
9389 .widget-radio-box label {
9388 margin-top: 0px;
9390 margin-top: 0px;
9389 }
9391 }
9390 .docked-widget-modal {
9392 .docked-widget-modal {
9391 /* Horizontal Label */
9393 /* Horizontal Label */
9392 overflow: hidden;
9394 overflow: hidden;
9393 position: relative !important;
9395 position: relative !important;
9394 top: 0px !important;
9396 top: 0px !important;
9395 left: 0px !important;
9397 left: 0px !important;
9396 margin-left: 0px !important;
9398 margin-left: 0px !important;
9397 }
9399 }
9398 /*!
9400 /*!
9399 *
9401 *
9400 * IPython notebook webapp
9402 * IPython notebook webapp
9401 *
9403 *
9402 */
9404 */
9403 body {
9405 body {
9404 background-color: #ffffff;
9406 background-color: #ffffff;
9405 }
9407 }
9406 body.notebook_app {
9408 body.notebook_app {
9407 overflow: hidden;
9409 overflow: hidden;
9408 }
9410 }
9409 @media (max-width: 767px) {
9411 @media (max-width: 767px) {
9410 body.notebook_app {
9412 body.notebook_app {
9411 padding-left: 0px;
9413 padding-left: 0px;
9412 padding-right: 0px;
9414 padding-right: 0px;
9413 }
9415 }
9414 }
9416 }
9415 span#notebook_name {
9417 span#notebook_name {
9416 height: 1em;
9418 height: 1em;
9417 line-height: 1em;
9419 line-height: 1em;
9418 padding: 3px;
9420 padding: 3px;
9419 border: none;
9421 border: none;
9420 font-size: 146.5%;
9422 font-size: 146.5%;
9421 }
9423 }
9422 div#notebook_panel {
9424 div#notebook_panel {
9423 margin: 0px 0px 0px 0px;
9425 margin: 0px 0px 0px 0px;
9424 padding: 0px;
9426 padding: 0px;
9425 -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9427 -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9426 box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9428 box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9427 }
9429 }
9428 div#notebook {
9430 div#notebook {
9429 font-size: 14px;
9431 font-size: 14px;
9430 line-height: 20px;
9432 line-height: 20px;
9431 overflow-y: scroll;
9433 overflow-y: scroll;
9432 overflow-x: auto;
9434 overflow-x: auto;
9433 width: 100%;
9435 width: 100%;
9434 /* This spaces the cell away from the edge of the notebook area */
9436 /* This spaces the cell away from the edge of the notebook area */
9435 padding: 1em 0 1em 0;
9437 padding: 1em 0 1em 0;
9436 margin: 0px;
9438 margin: 0px;
9437 border-top: 1px solid #e7e7e7;
9439 border-top: 1px solid #e7e7e7;
9438 outline: none;
9440 outline: none;
9439 box-sizing: border-box;
9441 box-sizing: border-box;
9440 -moz-box-sizing: border-box;
9442 -moz-box-sizing: border-box;
9441 -webkit-box-sizing: border-box;
9443 -webkit-box-sizing: border-box;
9442 }
9444 }
9443 div.ui-widget-content {
9445 div.ui-widget-content {
9444 border: 1px solid #ababab;
9446 border: 1px solid #ababab;
9445 outline: none;
9447 outline: none;
9446 }
9448 }
9447 pre.dialog {
9449 pre.dialog {
9448 background-color: #f7f7f7;
9450 background-color: #f7f7f7;
9449 border: 1px solid #ddd;
9451 border: 1px solid #ddd;
9450 border-radius: 4px;
9452 border-radius: 4px;
9451 padding: 0.4em;
9453 padding: 0.4em;
9452 padding-left: 2em;
9454 padding-left: 2em;
9453 }
9455 }
9454 p.dialog {
9456 p.dialog {
9455 padding: 0.2em;
9457 padding: 0.2em;
9456 }
9458 }
9457 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9459 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9458 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9460 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9459 */
9461 */
9460 pre,
9462 pre,
9461 code,
9463 code,
9462 kbd,
9464 kbd,
9463 samp {
9465 samp {
9464 white-space: pre-wrap;
9466 white-space: pre-wrap;
9465 }
9467 }
9466 #fonttest {
9468 #fonttest {
9467 font-family: monospace;
9469 font-family: monospace;
9468 }
9470 }
9469 p {
9471 p {
9470 margin-bottom: 0;
9472 margin-bottom: 0;
9471 }
9473 }
9472 .end_space {
9474 .end_space {
9473 height: 200px;
9475 height: 200px;
9474 }
9476 }
9475 /* CSS for the cell toolbar */
9477 /* CSS for the cell toolbar */
9476 .celltoolbar {
9478 .celltoolbar {
9477 border: thin solid #CFCFCF;
9479 border: thin solid #CFCFCF;
9478 border-bottom: none;
9480 border-bottom: none;
9479 background: #EEE;
9481 background: #EEE;
9480 border-radius: 3px 3px 0px 0px;
9482 border-radius: 3px 3px 0px 0px;
9481 width: 100%;
9483 width: 100%;
9482 -webkit-box-pack: end;
9484 -webkit-box-pack: end;
9483 height: 29px;
9485 height: 29px;
9484 padding-right: 4px;
9486 padding-right: 4px;
9485 /* Old browsers */
9487 /* Old browsers */
9486 display: -webkit-box;
9488 display: -webkit-box;
9487 -webkit-box-orient: horizontal;
9489 -webkit-box-orient: horizontal;
9488 -webkit-box-align: stretch;
9490 -webkit-box-align: stretch;
9489 display: -moz-box;
9491 display: -moz-box;
9490 -moz-box-orient: horizontal;
9492 -moz-box-orient: horizontal;
9491 -moz-box-align: stretch;
9493 -moz-box-align: stretch;
9492 display: box;
9494 display: box;
9493 box-orient: horizontal;
9495 box-orient: horizontal;
9494 box-align: stretch;
9496 box-align: stretch;
9495 /* Modern browsers */
9497 /* Modern browsers */
9496 display: flex;
9498 display: flex;
9497 flex-direction: row;
9499 flex-direction: row;
9498 align-items: stretch;
9500 align-items: stretch;
9499 /* Old browsers */
9501 /* Old browsers */
9500 -webkit-box-flex: 0;
9502 -webkit-box-flex: 0;
9501 -moz-box-flex: 0;
9503 -moz-box-flex: 0;
9502 box-flex: 0;
9504 box-flex: 0;
9503 /* Modern browsers */
9505 /* Modern browsers */
9504 flex: none;
9506 flex: none;
9505 /* Old browsers */
9507 /* Old browsers */
9506 -webkit-box-direction: reverse;
9508 -webkit-box-direction: reverse;
9507 -moz-box-direction: reverse;
9509 -moz-box-direction: reverse;
9508 box-direction: reverse;
9510 box-direction: reverse;
9509 /* Modern browsers */
9511 /* Modern browsers */
9510 flex-direction: row-reverse;
9512 flex-direction: row-reverse;
9511 }
9513 }
9512 .ctb_hideshow {
9514 .ctb_hideshow {
9513 display: none;
9515 display: none;
9514 vertical-align: bottom;
9516 vertical-align: bottom;
9515 }
9517 }
9516 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9518 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9517 Cell toolbars are only shown when the ctb_global_show class is also set.
9519 Cell toolbars are only shown when the ctb_global_show class is also set.
9518 */
9520 */
9519 .ctb_global_show .ctb_show.ctb_hideshow {
9521 .ctb_global_show .ctb_show.ctb_hideshow {
9520 display: block;
9522 display: block;
9521 }
9523 }
9522 .ctb_global_show .ctb_show + .input_area,
9524 .ctb_global_show .ctb_show + .input_area,
9523 .ctb_global_show .ctb_show + div.text_cell_input {
9525 .ctb_global_show .ctb_show + div.text_cell_input {
9524 border-top-right-radius: 0px;
9526 border-top-right-radius: 0px;
9525 border-top-left-radius: 0px;
9527 border-top-left-radius: 0px;
9526 }
9528 }
9527 .celltoolbar {
9529 .celltoolbar {
9528 font-size: 87%;
9530 font-size: 87%;
9529 padding-top: 3px;
9531 padding-top: 3px;
9530 }
9532 }
9531 .celltoolbar select {
9533 .celltoolbar select {
9532 font-size: 87%;
9534 font-size: 87%;
9533 height: 22px;
9535 height: 22px;
9534 }
9536 }
9535 .celltoolbar label {
9537 .celltoolbar label {
9536 margin-left: 5px;
9538 margin-left: 5px;
9537 margin-right: 5px;
9539 margin-right: 5px;
9538 }
9540 }
9539 .completions {
9541 .completions {
9540 position: absolute;
9542 position: absolute;
9541 z-index: 10;
9543 z-index: 10;
9542 overflow: hidden;
9544 overflow: hidden;
9543 border: 1px solid #ababab;
9545 border: 1px solid #ababab;
9544 border-radius: 4px;
9546 border-radius: 4px;
9545 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9547 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9546 box-shadow: 0px 6px 10px -1px #adadad;
9548 box-shadow: 0px 6px 10px -1px #adadad;
9547 }
9549 }
9548 .completions select {
9550 .completions select {
9549 background: white;
9551 background: white;
9550 outline: none;
9552 outline: none;
9551 border: none;
9553 border: none;
9552 padding: 0px;
9554 padding: 0px;
9553 margin: 0px;
9555 margin: 0px;
9554 overflow: auto;
9556 overflow: auto;
9555 font-family: monospace;
9557 font-family: monospace;
9556 font-size: 110%;
9558 font-size: 110%;
9557 color: #000000;
9559 color: #000000;
9558 width: auto;
9560 width: auto;
9559 }
9561 }
9560 .completions select option.context {
9562 .completions select option.context {
9561 color: #3071a9;
9563 color: #3071a9;
9562 }
9564 }
9563 #kernel_selector_widget {
9565 #kernel_selector_widget {
9564 margin-right: 1em;
9566 margin-right: 1em;
9565 float: right;
9567 float: right;
9566 }
9568 }
9567 #kernel_selector_widget > button {
9569 #kernel_selector_widget > button {
9568 display: inline-block;
9570 display: inline-block;
9569 margin-bottom: 0;
9571 margin-bottom: 0;
9570 font-weight: normal;
9572 font-weight: normal;
9571 text-align: center;
9573 text-align: center;
9572 vertical-align: middle;
9574 vertical-align: middle;
9573 cursor: pointer;
9575 cursor: pointer;
9574 background-image: none;
9576 background-image: none;
9575 border: 1px solid transparent;
9577 border: 1px solid transparent;
9576 white-space: nowrap;
9578 white-space: nowrap;
9577 padding: 6px 12px;
9579 padding: 6px 12px;
9578 font-size: 13px;
9580 font-size: 13px;
9579 line-height: 1.42857143;
9581 line-height: 1.42857143;
9580 border-radius: 4px;
9582 border-radius: 4px;
9581 -webkit-user-select: none;
9583 -webkit-user-select: none;
9582 -moz-user-select: none;
9584 -moz-user-select: none;
9583 -ms-user-select: none;
9585 -ms-user-select: none;
9584 user-select: none;
9586 user-select: none;
9585 color: #333333;
9587 color: #333333;
9586 background-color: #ffffff;
9588 background-color: #ffffff;
9587 border-color: #cccccc;
9589 border-color: #cccccc;
9588 padding: 5px 10px;
9590 padding: 5px 10px;
9589 font-size: 12px;
9591 font-size: 12px;
9590 line-height: 1.5;
9592 line-height: 1.5;
9591 border-radius: 3px;
9593 border-radius: 3px;
9592 }
9594 }
9593 #kernel_selector_widget > button:focus,
9595 #kernel_selector_widget > button:focus,
9594 #kernel_selector_widget > button:active:focus,
9596 #kernel_selector_widget > button:active:focus,
9595 #kernel_selector_widget > button.active:focus {
9597 #kernel_selector_widget > button.active:focus {
9596 outline: thin dotted;
9598 outline: thin dotted;
9597 outline: 5px auto -webkit-focus-ring-color;
9599 outline: 5px auto -webkit-focus-ring-color;
9598 outline-offset: -2px;
9600 outline-offset: -2px;
9599 }
9601 }
9600 #kernel_selector_widget > button:hover,
9602 #kernel_selector_widget > button:hover,
9601 #kernel_selector_widget > button:focus {
9603 #kernel_selector_widget > button:focus {
9602 color: #333333;
9604 color: #333333;
9603 text-decoration: none;
9605 text-decoration: none;
9604 }
9606 }
9605 #kernel_selector_widget > button:active,
9607 #kernel_selector_widget > button:active,
9606 #kernel_selector_widget > button.active {
9608 #kernel_selector_widget > button.active {
9607 outline: 0;
9609 outline: 0;
9608 background-image: none;
9610 background-image: none;
9609 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9611 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9610 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9612 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9611 }
9613 }
9612 #kernel_selector_widget > button.disabled,
9614 #kernel_selector_widget > button.disabled,
9613 #kernel_selector_widget > button[disabled],
9615 #kernel_selector_widget > button[disabled],
9614 fieldset[disabled] #kernel_selector_widget > button {
9616 fieldset[disabled] #kernel_selector_widget > button {
9615 cursor: not-allowed;
9617 cursor: not-allowed;
9616 pointer-events: none;
9618 pointer-events: none;
9617 opacity: 0.65;
9619 opacity: 0.65;
9618 filter: alpha(opacity=65);
9620 filter: alpha(opacity=65);
9619 -webkit-box-shadow: none;
9621 -webkit-box-shadow: none;
9620 box-shadow: none;
9622 box-shadow: none;
9621 }
9623 }
9622 #kernel_selector_widget > button [class^="icon-"].icon-large,
9624 #kernel_selector_widget > button [class^="icon-"].icon-large,
9623 #kernel_selector_widget > button [class*=" icon-"].icon-large {
9625 #kernel_selector_widget > button [class*=" icon-"].icon-large {
9624 line-height: .9em;
9626 line-height: .9em;
9625 }
9627 }
9626 #kernel_selector_widget > button [class^="icon-"].icon-spin,
9628 #kernel_selector_widget > button [class^="icon-"].icon-spin,
9627 #kernel_selector_widget > button [class*=" icon-"].icon-spin {
9629 #kernel_selector_widget > button [class*=" icon-"].icon-spin {
9628 display: inline-block;
9630 display: inline-block;
9629 }
9631 }
9630 #kernel_selector_widget > button [class^="icon-"].pull-left.icon-2x,
9632 #kernel_selector_widget > button [class^="icon-"].pull-left.icon-2x,
9631 #kernel_selector_widget > button [class*=" icon-"].pull-left.icon-2x,
9633 #kernel_selector_widget > button [class*=" icon-"].pull-left.icon-2x,
9632 #kernel_selector_widget > button [class^="icon-"].pull-right.icon-2x,
9634 #kernel_selector_widget > button [class^="icon-"].pull-right.icon-2x,
9633 #kernel_selector_widget > button [class*=" icon-"].pull-right.icon-2x {
9635 #kernel_selector_widget > button [class*=" icon-"].pull-right.icon-2x {
9634 margin-top: .18em;
9636 margin-top: .18em;
9635 }
9637 }
9636 #kernel_selector_widget > button [class^="icon-"].icon-spin.icon-large,
9638 #kernel_selector_widget > button [class^="icon-"].icon-spin.icon-large,
9637 #kernel_selector_widget > button [class*=" icon-"].icon-spin.icon-large {
9639 #kernel_selector_widget > button [class*=" icon-"].icon-spin.icon-large {
9638 line-height: .8em;
9640 line-height: .8em;
9639 }
9641 }
9640 #kernel_selector_widget > button:hover,
9642 #kernel_selector_widget > button:hover,
9641 #kernel_selector_widget > button:focus,
9643 #kernel_selector_widget > button:focus,
9642 #kernel_selector_widget > button:active,
9644 #kernel_selector_widget > button:active,
9643 #kernel_selector_widget > button.active,
9645 #kernel_selector_widget > button.active,
9644 .open .dropdown-toggle#kernel_selector_widget > button {
9646 .open .dropdown-toggle#kernel_selector_widget > button {
9645 color: #333333;
9647 color: #333333;
9646 background-color: #ebebeb;
9648 background-color: #ebebeb;
9647 border-color: #adadad;
9649 border-color: #adadad;
9648 }
9650 }
9649 #kernel_selector_widget > button:active,
9651 #kernel_selector_widget > button:active,
9650 #kernel_selector_widget > button.active,
9652 #kernel_selector_widget > button.active,
9651 .open .dropdown-toggle#kernel_selector_widget > button {
9653 .open .dropdown-toggle#kernel_selector_widget > button {
9652 background-image: none;
9654 background-image: none;
9653 }
9655 }
9654 #kernel_selector_widget > button.disabled,
9656 #kernel_selector_widget > button.disabled,
9655 #kernel_selector_widget > button[disabled],
9657 #kernel_selector_widget > button[disabled],
9656 fieldset[disabled] #kernel_selector_widget > button,
9658 fieldset[disabled] #kernel_selector_widget > button,
9657 #kernel_selector_widget > button.disabled:hover,
9659 #kernel_selector_widget > button.disabled:hover,
9658 #kernel_selector_widget > button[disabled]:hover,
9660 #kernel_selector_widget > button[disabled]:hover,
9659 fieldset[disabled] #kernel_selector_widget > button:hover,
9661 fieldset[disabled] #kernel_selector_widget > button:hover,
9660 #kernel_selector_widget > button.disabled:focus,
9662 #kernel_selector_widget > button.disabled:focus,
9661 #kernel_selector_widget > button[disabled]:focus,
9663 #kernel_selector_widget > button[disabled]:focus,
9662 fieldset[disabled] #kernel_selector_widget > button:focus,
9664 fieldset[disabled] #kernel_selector_widget > button:focus,
9663 #kernel_selector_widget > button.disabled:active,
9665 #kernel_selector_widget > button.disabled:active,
9664 #kernel_selector_widget > button[disabled]:active,
9666 #kernel_selector_widget > button[disabled]:active,
9665 fieldset[disabled] #kernel_selector_widget > button:active,
9667 fieldset[disabled] #kernel_selector_widget > button:active,
9666 #kernel_selector_widget > button.disabled.active,
9668 #kernel_selector_widget > button.disabled.active,
9667 #kernel_selector_widget > button[disabled].active,
9669 #kernel_selector_widget > button[disabled].active,
9668 fieldset[disabled] #kernel_selector_widget > button.active {
9670 fieldset[disabled] #kernel_selector_widget > button.active {
9669 background-color: #ffffff;
9671 background-color: #ffffff;
9670 border-color: #cccccc;
9672 border-color: #cccccc;
9671 }
9673 }
9672 #kernel_selector_widget > button .badge {
9674 #kernel_selector_widget > button .badge {
9673 color: #ffffff;
9675 color: #ffffff;
9674 background-color: #333333;
9676 background-color: #333333;
9675 }
9677 }
9676 #kernel_selector_widget > button > span.caret {
9678 #kernel_selector_widget > button > span.caret {
9677 margin-top: 0px;
9679 margin-top: 0px;
9678 }
9680 }
9679 #menubar {
9681 #menubar {
9680 margin-top: 0px;
9682 margin-top: 0px;
9681 margin-bottom: -19px;
9683 margin-bottom: -19px;
9682 position: relative;
9684 position: relative;
9683 }
9685 }
9684 #menubar .navbar {
9686 #menubar .navbar {
9685 border-top: 1px;
9687 border-top: 1px;
9686 border-radius: 0px 0px 4px 4px;
9688 border-radius: 0px 0px 4px 4px;
9687 }
9689 }
9688 #menubar li.dropdown {
9690 #menubar li.dropdown {
9689 line-height: 12px;
9691 line-height: 12px;
9690 }
9692 }
9691 #menubar li.dropdown a {
9693 #menubar li.dropdown a {
9692 padding-top: 6px;
9694 padding-top: 6px;
9693 padding-bottom: 5px;
9695 padding-bottom: 5px;
9694 }
9696 }
9695 #menubar ul.navbar-right {
9697 #menubar ul.navbar-right {
9696 padding-top: 2px;
9698 padding-top: 2px;
9697 }
9699 }
9698 .nav-wrapper {
9700 .nav-wrapper {
9699 border-bottom: 1px solid #e7e7e7;
9701 border-bottom: 1px solid #e7e7e7;
9700 }
9702 }
9701 i.menu-icon {
9703 i.menu-icon {
9702 padding-top: 4px;
9704 padding-top: 4px;
9703 }
9705 }
9704 ul#help_menu li a {
9706 ul#help_menu li a {
9705 overflow: hidden;
9707 overflow: hidden;
9706 padding-right: 2.2em;
9708 padding-right: 2.2em;
9707 }
9709 }
9708 ul#help_menu li a i {
9710 ul#help_menu li a i {
9709 margin-right: -1.2em;
9711 margin-right: -1.2em;
9710 }
9712 }
9711 #menus {
9713 #menus {
9712 min-height: 30px;
9714 min-height: 30px;
9713 }
9715 }
9714 .dropdown-submenu {
9716 .dropdown-submenu {
9715 position: relative;
9717 position: relative;
9716 }
9718 }
9717 .dropdown-submenu > .dropdown-menu {
9719 .dropdown-submenu > .dropdown-menu {
9718 top: 0;
9720 top: 0;
9719 left: 100%;
9721 left: 100%;
9720 margin-top: -6px;
9722 margin-top: -6px;
9721 margin-left: -1px;
9723 margin-left: -1px;
9722 -webkit-border-radius: 0 6px 6px 6px;
9724 -webkit-border-radius: 0 6px 6px 6px;
9723 -moz-border-radius: 0 6px 6px 6px;
9725 -moz-border-radius: 0 6px 6px 6px;
9724 border-radius: 0 6px 6px 6px;
9726 border-radius: 0 6px 6px 6px;
9725 }
9727 }
9726 .dropdown-submenu:hover > .dropdown-menu {
9728 .dropdown-submenu:hover > .dropdown-menu {
9727 display: block;
9729 display: block;
9728 }
9730 }
9729 .dropdown-submenu > a:after {
9731 .dropdown-submenu > a:after {
9730 display: block;
9732 display: block;
9731 content: " ";
9733 content: " ";
9732 float: right;
9734 float: right;
9733 width: 0;
9735 width: 0;
9734 height: 0;
9736 height: 0;
9735 border-color: transparent;
9737 border-color: transparent;
9736 border-style: solid;
9738 border-style: solid;
9737 border-width: 5px 0 5px 5px;
9739 border-width: 5px 0 5px 5px;
9738 border-left-color: #cccccc;
9740 border-left-color: #cccccc;
9739 margin-top: 5px;
9741 margin-top: 5px;
9740 margin-right: -10px;
9742 margin-right: -10px;
9741 }
9743 }
9742 .dropdown-submenu:hover > a:after {
9744 .dropdown-submenu:hover > a:after {
9743 border-left-color: #ffffff;
9745 border-left-color: #ffffff;
9744 }
9746 }
9745 .dropdown-submenu.pull-left {
9747 .dropdown-submenu.pull-left {
9746 float: none;
9748 float: none;
9747 }
9749 }
9748 .dropdown-submenu.pull-left > .dropdown-menu {
9750 .dropdown-submenu.pull-left > .dropdown-menu {
9749 left: -100%;
9751 left: -100%;
9750 margin-left: 10px;
9752 margin-left: 10px;
9751 -webkit-border-radius: 6px 0 6px 6px;
9753 -webkit-border-radius: 6px 0 6px 6px;
9752 -moz-border-radius: 6px 0 6px 6px;
9754 -moz-border-radius: 6px 0 6px 6px;
9753 border-radius: 6px 0 6px 6px;
9755 border-radius: 6px 0 6px 6px;
9754 }
9756 }
9755 #notification_area {
9757 #notification_area {
9756 float: right !important;
9758 float: right !important;
9757 float: right;
9759 float: right;
9758 z-index: 10;
9760 z-index: 10;
9759 }
9761 }
9760 .indicator_area {
9762 .indicator_area {
9761 color: #777777;
9763 color: #777777;
9762 padding: 4px 3px;
9764 padding: 4px 3px;
9763 margin: 0px;
9765 margin: 0px;
9764 width: 11px;
9766 width: 11px;
9765 z-index: 10;
9767 z-index: 10;
9766 text-align: center;
9768 text-align: center;
9767 }
9769 }
9768 #kernel_indicator {
9770 #kernel_indicator {
9769 float: right !important;
9771 float: right !important;
9770 float: right;
9772 float: right;
9771 color: #777777;
9773 color: #777777;
9772 padding: 4px 3px;
9774 padding: 4px 3px;
9773 margin: 0px;
9775 margin: 0px;
9774 width: 11px;
9776 width: 11px;
9775 z-index: 10;
9777 z-index: 10;
9776 text-align: center;
9778 text-align: center;
9777 margin-right: 12px;
9779 margin-right: 12px;
9778 }
9780 }
9779 #modal_indicator {
9781 #modal_indicator {
9780 float: right !important;
9782 float: right !important;
9781 float: right;
9783 float: right;
9782 color: #777777;
9784 color: #777777;
9783 padding: 4px 3px;
9785 padding: 4px 3px;
9784 margin: 0px;
9786 margin: 0px;
9785 width: 11px;
9787 width: 11px;
9786 z-index: 10;
9788 z-index: 10;
9787 text-align: center;
9789 text-align: center;
9788 margin-right: 5px;
9790 margin-right: 5px;
9789 }
9791 }
9790 .edit_mode_icon:before {
9792 .edit_mode_icon:before {
9791 display: inline-block;
9793 display: inline-block;
9792 font-family: FontAwesome;
9794 font-family: FontAwesome;
9793 font-style: normal;
9795 font-style: normal;
9794 font-weight: normal;
9796 font-weight: normal;
9795 line-height: 1;
9797 line-height: 1;
9796 -webkit-font-smoothing: antialiased;
9798 -webkit-font-smoothing: antialiased;
9797 -moz-osx-font-smoothing: grayscale;
9799 -moz-osx-font-smoothing: grayscale;
9798 content: "\f040";
9800 content: "\f040";
9799 }
9801 }
9800 .edit_mode_icon:before.pull-left {
9802 .edit_mode_icon:before.pull-left {
9801 margin-right: .3em;
9803 margin-right: .3em;
9802 }
9804 }
9803 .edit_mode_icon:before.pull-right {
9805 .edit_mode_icon:before.pull-right {
9804 margin-left: .3em;
9806 margin-left: .3em;
9805 }
9807 }
9806 .command_mode_icon:before {
9808 .command_mode_icon:before {
9807 display: inline-block;
9809 display: inline-block;
9808 font-family: FontAwesome;
9810 font-family: FontAwesome;
9809 font-style: normal;
9811 font-style: normal;
9810 font-weight: normal;
9812 font-weight: normal;
9811 line-height: 1;
9813 line-height: 1;
9812 -webkit-font-smoothing: antialiased;
9814 -webkit-font-smoothing: antialiased;
9813 -moz-osx-font-smoothing: grayscale;
9815 -moz-osx-font-smoothing: grayscale;
9814 content: ' ';
9816 content: ' ';
9815 }
9817 }
9816 .command_mode_icon:before.pull-left {
9818 .command_mode_icon:before.pull-left {
9817 margin-right: .3em;
9819 margin-right: .3em;
9818 }
9820 }
9819 .command_mode_icon:before.pull-right {
9821 .command_mode_icon:before.pull-right {
9820 margin-left: .3em;
9822 margin-left: .3em;
9821 }
9823 }
9822 .kernel_idle_icon:before {
9824 .kernel_idle_icon:before {
9823 display: inline-block;
9825 display: inline-block;
9824 font-family: FontAwesome;
9826 font-family: FontAwesome;
9825 font-style: normal;
9827 font-style: normal;
9826 font-weight: normal;
9828 font-weight: normal;
9827 line-height: 1;
9829 line-height: 1;
9828 -webkit-font-smoothing: antialiased;
9830 -webkit-font-smoothing: antialiased;
9829 -moz-osx-font-smoothing: grayscale;
9831 -moz-osx-font-smoothing: grayscale;
9830 content: "\f10c";
9832 content: "\f10c";
9831 }
9833 }
9832 .kernel_idle_icon:before.pull-left {
9834 .kernel_idle_icon:before.pull-left {
9833 margin-right: .3em;
9835 margin-right: .3em;
9834 }
9836 }
9835 .kernel_idle_icon:before.pull-right {
9837 .kernel_idle_icon:before.pull-right {
9836 margin-left: .3em;
9838 margin-left: .3em;
9837 }
9839 }
9838 .kernel_busy_icon:before {
9840 .kernel_busy_icon:before {
9839 display: inline-block;
9841 display: inline-block;
9840 font-family: FontAwesome;
9842 font-family: FontAwesome;
9841 font-style: normal;
9843 font-style: normal;
9842 font-weight: normal;
9844 font-weight: normal;
9843 line-height: 1;
9845 line-height: 1;
9844 -webkit-font-smoothing: antialiased;
9846 -webkit-font-smoothing: antialiased;
9845 -moz-osx-font-smoothing: grayscale;
9847 -moz-osx-font-smoothing: grayscale;
9846 content: "\f111";
9848 content: "\f111";
9847 }
9849 }
9848 .kernel_busy_icon:before.pull-left {
9850 .kernel_busy_icon:before.pull-left {
9849 margin-right: .3em;
9851 margin-right: .3em;
9850 }
9852 }
9851 .kernel_busy_icon:before.pull-right {
9853 .kernel_busy_icon:before.pull-right {
9852 margin-left: .3em;
9854 margin-left: .3em;
9853 }
9855 }
9854 .notification_widget {
9856 .notification_widget {
9855 color: #777777;
9857 color: #777777;
9856 padding: 1px 12px;
9858 padding: 1px 12px;
9857 margin: 2px 4px;
9859 margin: 2px 4px;
9858 z-index: 10;
9860 z-index: 10;
9859 background: rgba(240, 240, 240, 0.5);
9861 background: rgba(240, 240, 240, 0.5);
9860 float: right !important;
9862 float: right !important;
9861 float: right;
9863 float: right;
9862 box-sizing: border-box;
9864 box-sizing: border-box;
9863 -moz-box-sizing: border-box;
9865 -moz-box-sizing: border-box;
9864 -webkit-box-sizing: border-box;
9866 -webkit-box-sizing: border-box;
9865 display: inline-block;
9867 display: inline-block;
9866 margin-bottom: 0;
9868 margin-bottom: 0;
9867 font-weight: normal;
9869 font-weight: normal;
9868 text-align: center;
9870 text-align: center;
9869 vertical-align: middle;
9871 vertical-align: middle;
9870 cursor: pointer;
9872 cursor: pointer;
9871 background-image: none;
9873 background-image: none;
9872 border: 1px solid transparent;
9874 border: 1px solid transparent;
9873 white-space: nowrap;
9875 white-space: nowrap;
9874 padding: 6px 12px;
9876 padding: 6px 12px;
9875 font-size: 13px;
9877 font-size: 13px;
9876 line-height: 1.42857143;
9878 line-height: 1.42857143;
9877 border-radius: 4px;
9879 border-radius: 4px;
9878 -webkit-user-select: none;
9880 -webkit-user-select: none;
9879 -moz-user-select: none;
9881 -moz-user-select: none;
9880 -ms-user-select: none;
9882 -ms-user-select: none;
9881 user-select: none;
9883 user-select: none;
9882 color: #333333;
9884 color: #333333;
9883 background-color: #ffffff;
9885 background-color: #ffffff;
9884 border-color: #cccccc;
9886 border-color: #cccccc;
9885 padding: 1px 5px;
9887 padding: 1px 5px;
9886 font-size: 12px;
9888 font-size: 12px;
9887 line-height: 1.5;
9889 line-height: 1.5;
9888 border-radius: 3px;
9890 border-radius: 3px;
9889 }
9891 }
9890 .notification_widget:focus,
9892 .notification_widget:focus,
9891 .notification_widget:active:focus,
9893 .notification_widget:active:focus,
9892 .notification_widget.active:focus {
9894 .notification_widget.active:focus {
9893 outline: thin dotted;
9895 outline: thin dotted;
9894 outline: 5px auto -webkit-focus-ring-color;
9896 outline: 5px auto -webkit-focus-ring-color;
9895 outline-offset: -2px;
9897 outline-offset: -2px;
9896 }
9898 }
9897 .notification_widget:hover,
9899 .notification_widget:hover,
9898 .notification_widget:focus {
9900 .notification_widget:focus {
9899 color: #333333;
9901 color: #333333;
9900 text-decoration: none;
9902 text-decoration: none;
9901 }
9903 }
9902 .notification_widget:active,
9904 .notification_widget:active,
9903 .notification_widget.active {
9905 .notification_widget.active {
9904 outline: 0;
9906 outline: 0;
9905 background-image: none;
9907 background-image: none;
9906 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9908 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9907 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9909 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
9908 }
9910 }
9909 .notification_widget.disabled,
9911 .notification_widget.disabled,
9910 .notification_widget[disabled],
9912 .notification_widget[disabled],
9911 fieldset[disabled] .notification_widget {
9913 fieldset[disabled] .notification_widget {
9912 cursor: not-allowed;
9914 cursor: not-allowed;
9913 pointer-events: none;
9915 pointer-events: none;
9914 opacity: 0.65;
9916 opacity: 0.65;
9915 filter: alpha(opacity=65);
9917 filter: alpha(opacity=65);
9916 -webkit-box-shadow: none;
9918 -webkit-box-shadow: none;
9917 box-shadow: none;
9919 box-shadow: none;
9918 }
9920 }
9919 .notification_widget:hover,
9921 .notification_widget:hover,
9920 .notification_widget:focus,
9922 .notification_widget:focus,
9921 .notification_widget:active,
9923 .notification_widget:active,
9922 .notification_widget.active,
9924 .notification_widget.active,
9923 .open .dropdown-toggle.notification_widget {
9925 .open .dropdown-toggle.notification_widget {
9924 color: #333333;
9926 color: #333333;
9925 background-color: #ebebeb;
9927 background-color: #ebebeb;
9926 border-color: #adadad;
9928 border-color: #adadad;
9927 }
9929 }
9928 .notification_widget:active,
9930 .notification_widget:active,
9929 .notification_widget.active,
9931 .notification_widget.active,
9930 .open .dropdown-toggle.notification_widget {
9932 .open .dropdown-toggle.notification_widget {
9931 background-image: none;
9933 background-image: none;
9932 }
9934 }
9933 .notification_widget.disabled,
9935 .notification_widget.disabled,
9934 .notification_widget[disabled],
9936 .notification_widget[disabled],
9935 fieldset[disabled] .notification_widget,
9937 fieldset[disabled] .notification_widget,
9936 .notification_widget.disabled:hover,
9938 .notification_widget.disabled:hover,
9937 .notification_widget[disabled]:hover,
9939 .notification_widget[disabled]:hover,
9938 fieldset[disabled] .notification_widget:hover,
9940 fieldset[disabled] .notification_widget:hover,
9939 .notification_widget.disabled:focus,
9941 .notification_widget.disabled:focus,
9940 .notification_widget[disabled]:focus,
9942 .notification_widget[disabled]:focus,
9941 fieldset[disabled] .notification_widget:focus,
9943 fieldset[disabled] .notification_widget:focus,
9942 .notification_widget.disabled:active,
9944 .notification_widget.disabled:active,
9943 .notification_widget[disabled]:active,
9945 .notification_widget[disabled]:active,
9944 fieldset[disabled] .notification_widget:active,
9946 fieldset[disabled] .notification_widget:active,
9945 .notification_widget.disabled.active,
9947 .notification_widget.disabled.active,
9946 .notification_widget[disabled].active,
9948 .notification_widget[disabled].active,
9947 fieldset[disabled] .notification_widget.active {
9949 fieldset[disabled] .notification_widget.active {
9948 background-color: #ffffff;
9950 background-color: #ffffff;
9949 border-color: #cccccc;
9951 border-color: #cccccc;
9950 }
9952 }
9951 .notification_widget .badge {
9953 .notification_widget .badge {
9952 color: #ffffff;
9954 color: #ffffff;
9953 background-color: #333333;
9955 background-color: #333333;
9954 }
9956 }
9955 .notification_widget.span {
9957 .notification_widget.span {
9956 padding-right: 2px;
9958 padding-right: 2px;
9957 }
9959 }
9958 .notification_widget.warning {
9960 .notification_widget.warning {
9959 color: #ffffff;
9961 color: #ffffff;
9960 background-color: #f0ad4e;
9962 background-color: #f0ad4e;
9961 border-color: #eea236;
9963 border-color: #eea236;
9962 }
9964 }
9963 .notification_widget.warning:hover,
9965 .notification_widget.warning:hover,
9964 .notification_widget.warning:focus,
9966 .notification_widget.warning:focus,
9965 .notification_widget.warning:active,
9967 .notification_widget.warning:active,
9966 .notification_widget.warning.active,
9968 .notification_widget.warning.active,
9967 .open .dropdown-toggle.notification_widget.warning {
9969 .open .dropdown-toggle.notification_widget.warning {
9968 color: #ffffff;
9970 color: #ffffff;
9969 background-color: #ed9c28;
9971 background-color: #ed9c28;
9970 border-color: #d58512;
9972 border-color: #d58512;
9971 }
9973 }
9972 .notification_widget.warning:active,
9974 .notification_widget.warning:active,
9973 .notification_widget.warning.active,
9975 .notification_widget.warning.active,
9974 .open .dropdown-toggle.notification_widget.warning {
9976 .open .dropdown-toggle.notification_widget.warning {
9975 background-image: none;
9977 background-image: none;
9976 }
9978 }
9977 .notification_widget.warning.disabled,
9979 .notification_widget.warning.disabled,
9978 .notification_widget.warning[disabled],
9980 .notification_widget.warning[disabled],
9979 fieldset[disabled] .notification_widget.warning,
9981 fieldset[disabled] .notification_widget.warning,
9980 .notification_widget.warning.disabled:hover,
9982 .notification_widget.warning.disabled:hover,
9981 .notification_widget.warning[disabled]:hover,
9983 .notification_widget.warning[disabled]:hover,
9982 fieldset[disabled] .notification_widget.warning:hover,
9984 fieldset[disabled] .notification_widget.warning:hover,
9983 .notification_widget.warning.disabled:focus,
9985 .notification_widget.warning.disabled:focus,
9984 .notification_widget.warning[disabled]:focus,
9986 .notification_widget.warning[disabled]:focus,
9985 fieldset[disabled] .notification_widget.warning:focus,
9987 fieldset[disabled] .notification_widget.warning:focus,
9986 .notification_widget.warning.disabled:active,
9988 .notification_widget.warning.disabled:active,
9987 .notification_widget.warning[disabled]:active,
9989 .notification_widget.warning[disabled]:active,
9988 fieldset[disabled] .notification_widget.warning:active,
9990 fieldset[disabled] .notification_widget.warning:active,
9989 .notification_widget.warning.disabled.active,
9991 .notification_widget.warning.disabled.active,
9990 .notification_widget.warning[disabled].active,
9992 .notification_widget.warning[disabled].active,
9991 fieldset[disabled] .notification_widget.warning.active {
9993 fieldset[disabled] .notification_widget.warning.active {
9992 background-color: #f0ad4e;
9994 background-color: #f0ad4e;
9993 border-color: #eea236;
9995 border-color: #eea236;
9994 }
9996 }
9995 .notification_widget.warning .badge {
9997 .notification_widget.warning .badge {
9996 color: #f0ad4e;
9998 color: #f0ad4e;
9997 background-color: #ffffff;
9999 background-color: #ffffff;
9998 }
10000 }
9999 .notification_widget.success {
10001 .notification_widget.success {
10000 color: #ffffff;
10002 color: #ffffff;
10001 background-color: #5cb85c;
10003 background-color: #5cb85c;
10002 border-color: #4cae4c;
10004 border-color: #4cae4c;
10003 }
10005 }
10004 .notification_widget.success:hover,
10006 .notification_widget.success:hover,
10005 .notification_widget.success:focus,
10007 .notification_widget.success:focus,
10006 .notification_widget.success:active,
10008 .notification_widget.success:active,
10007 .notification_widget.success.active,
10009 .notification_widget.success.active,
10008 .open .dropdown-toggle.notification_widget.success {
10010 .open .dropdown-toggle.notification_widget.success {
10009 color: #ffffff;
10011 color: #ffffff;
10010 background-color: #47a447;
10012 background-color: #47a447;
10011 border-color: #398439;
10013 border-color: #398439;
10012 }
10014 }
10013 .notification_widget.success:active,
10015 .notification_widget.success:active,
10014 .notification_widget.success.active,
10016 .notification_widget.success.active,
10015 .open .dropdown-toggle.notification_widget.success {
10017 .open .dropdown-toggle.notification_widget.success {
10016 background-image: none;
10018 background-image: none;
10017 }
10019 }
10018 .notification_widget.success.disabled,
10020 .notification_widget.success.disabled,
10019 .notification_widget.success[disabled],
10021 .notification_widget.success[disabled],
10020 fieldset[disabled] .notification_widget.success,
10022 fieldset[disabled] .notification_widget.success,
10021 .notification_widget.success.disabled:hover,
10023 .notification_widget.success.disabled:hover,
10022 .notification_widget.success[disabled]:hover,
10024 .notification_widget.success[disabled]:hover,
10023 fieldset[disabled] .notification_widget.success:hover,
10025 fieldset[disabled] .notification_widget.success:hover,
10024 .notification_widget.success.disabled:focus,
10026 .notification_widget.success.disabled:focus,
10025 .notification_widget.success[disabled]:focus,
10027 .notification_widget.success[disabled]:focus,
10026 fieldset[disabled] .notification_widget.success:focus,
10028 fieldset[disabled] .notification_widget.success:focus,
10027 .notification_widget.success.disabled:active,
10029 .notification_widget.success.disabled:active,
10028 .notification_widget.success[disabled]:active,
10030 .notification_widget.success[disabled]:active,
10029 fieldset[disabled] .notification_widget.success:active,
10031 fieldset[disabled] .notification_widget.success:active,
10030 .notification_widget.success.disabled.active,
10032 .notification_widget.success.disabled.active,
10031 .notification_widget.success[disabled].active,
10033 .notification_widget.success[disabled].active,
10032 fieldset[disabled] .notification_widget.success.active {
10034 fieldset[disabled] .notification_widget.success.active {
10033 background-color: #5cb85c;
10035 background-color: #5cb85c;
10034 border-color: #4cae4c;
10036 border-color: #4cae4c;
10035 }
10037 }
10036 .notification_widget.success .badge {
10038 .notification_widget.success .badge {
10037 color: #5cb85c;
10039 color: #5cb85c;
10038 background-color: #ffffff;
10040 background-color: #ffffff;
10039 }
10041 }
10040 .notification_widget.info {
10042 .notification_widget.info {
10041 color: #ffffff;
10043 color: #ffffff;
10042 background-color: #5bc0de;
10044 background-color: #5bc0de;
10043 border-color: #46b8da;
10045 border-color: #46b8da;
10044 }
10046 }
10045 .notification_widget.info:hover,
10047 .notification_widget.info:hover,
10046 .notification_widget.info:focus,
10048 .notification_widget.info:focus,
10047 .notification_widget.info:active,
10049 .notification_widget.info:active,
10048 .notification_widget.info.active,
10050 .notification_widget.info.active,
10049 .open .dropdown-toggle.notification_widget.info {
10051 .open .dropdown-toggle.notification_widget.info {
10050 color: #ffffff;
10052 color: #ffffff;
10051 background-color: #39b3d7;
10053 background-color: #39b3d7;
10052 border-color: #269abc;
10054 border-color: #269abc;
10053 }
10055 }
10054 .notification_widget.info:active,
10056 .notification_widget.info:active,
10055 .notification_widget.info.active,
10057 .notification_widget.info.active,
10056 .open .dropdown-toggle.notification_widget.info {
10058 .open .dropdown-toggle.notification_widget.info {
10057 background-image: none;
10059 background-image: none;
10058 }
10060 }
10059 .notification_widget.info.disabled,
10061 .notification_widget.info.disabled,
10060 .notification_widget.info[disabled],
10062 .notification_widget.info[disabled],
10061 fieldset[disabled] .notification_widget.info,
10063 fieldset[disabled] .notification_widget.info,
10062 .notification_widget.info.disabled:hover,
10064 .notification_widget.info.disabled:hover,
10063 .notification_widget.info[disabled]:hover,
10065 .notification_widget.info[disabled]:hover,
10064 fieldset[disabled] .notification_widget.info:hover,
10066 fieldset[disabled] .notification_widget.info:hover,
10065 .notification_widget.info.disabled:focus,
10067 .notification_widget.info.disabled:focus,
10066 .notification_widget.info[disabled]:focus,
10068 .notification_widget.info[disabled]:focus,
10067 fieldset[disabled] .notification_widget.info:focus,
10069 fieldset[disabled] .notification_widget.info:focus,
10068 .notification_widget.info.disabled:active,
10070 .notification_widget.info.disabled:active,
10069 .notification_widget.info[disabled]:active,
10071 .notification_widget.info[disabled]:active,
10070 fieldset[disabled] .notification_widget.info:active,
10072 fieldset[disabled] .notification_widget.info:active,
10071 .notification_widget.info.disabled.active,
10073 .notification_widget.info.disabled.active,
10072 .notification_widget.info[disabled].active,
10074 .notification_widget.info[disabled].active,
10073 fieldset[disabled] .notification_widget.info.active {
10075 fieldset[disabled] .notification_widget.info.active {
10074 background-color: #5bc0de;
10076 background-color: #5bc0de;
10075 border-color: #46b8da;
10077 border-color: #46b8da;
10076 }
10078 }
10077 .notification_widget.info .badge {
10079 .notification_widget.info .badge {
10078 color: #5bc0de;
10080 color: #5bc0de;
10079 background-color: #ffffff;
10081 background-color: #ffffff;
10080 }
10082 }
10081 .notification_widget.danger {
10083 .notification_widget.danger {
10082 color: #ffffff;
10084 color: #ffffff;
10083 background-color: #d9534f;
10085 background-color: #d9534f;
10084 border-color: #d43f3a;
10086 border-color: #d43f3a;
10085 }
10087 }
10086 .notification_widget.danger:hover,
10088 .notification_widget.danger:hover,
10087 .notification_widget.danger:focus,
10089 .notification_widget.danger:focus,
10088 .notification_widget.danger:active,
10090 .notification_widget.danger:active,
10089 .notification_widget.danger.active,
10091 .notification_widget.danger.active,
10090 .open .dropdown-toggle.notification_widget.danger {
10092 .open .dropdown-toggle.notification_widget.danger {
10091 color: #ffffff;
10093 color: #ffffff;
10092 background-color: #d2322d;
10094 background-color: #d2322d;
10093 border-color: #ac2925;
10095 border-color: #ac2925;
10094 }
10096 }
10095 .notification_widget.danger:active,
10097 .notification_widget.danger:active,
10096 .notification_widget.danger.active,
10098 .notification_widget.danger.active,
10097 .open .dropdown-toggle.notification_widget.danger {
10099 .open .dropdown-toggle.notification_widget.danger {
10098 background-image: none;
10100 background-image: none;
10099 }
10101 }
10100 .notification_widget.danger.disabled,
10102 .notification_widget.danger.disabled,
10101 .notification_widget.danger[disabled],
10103 .notification_widget.danger[disabled],
10102 fieldset[disabled] .notification_widget.danger,
10104 fieldset[disabled] .notification_widget.danger,
10103 .notification_widget.danger.disabled:hover,
10105 .notification_widget.danger.disabled:hover,
10104 .notification_widget.danger[disabled]:hover,
10106 .notification_widget.danger[disabled]:hover,
10105 fieldset[disabled] .notification_widget.danger:hover,
10107 fieldset[disabled] .notification_widget.danger:hover,
10106 .notification_widget.danger.disabled:focus,
10108 .notification_widget.danger.disabled:focus,
10107 .notification_widget.danger[disabled]:focus,
10109 .notification_widget.danger[disabled]:focus,
10108 fieldset[disabled] .notification_widget.danger:focus,
10110 fieldset[disabled] .notification_widget.danger:focus,
10109 .notification_widget.danger.disabled:active,
10111 .notification_widget.danger.disabled:active,
10110 .notification_widget.danger[disabled]:active,
10112 .notification_widget.danger[disabled]:active,
10111 fieldset[disabled] .notification_widget.danger:active,
10113 fieldset[disabled] .notification_widget.danger:active,
10112 .notification_widget.danger.disabled.active,
10114 .notification_widget.danger.disabled.active,
10113 .notification_widget.danger[disabled].active,
10115 .notification_widget.danger[disabled].active,
10114 fieldset[disabled] .notification_widget.danger.active {
10116 fieldset[disabled] .notification_widget.danger.active {
10115 background-color: #d9534f;
10117 background-color: #d9534f;
10116 border-color: #d43f3a;
10118 border-color: #d43f3a;
10117 }
10119 }
10118 .notification_widget.danger .badge {
10120 .notification_widget.danger .badge {
10119 color: #d9534f;
10121 color: #d9534f;
10120 background-color: #ffffff;
10122 background-color: #ffffff;
10121 }
10123 }
10122 div#pager_splitter {
10124 div#pager_splitter {
10123 height: 8px;
10125 height: 8px;
10124 }
10126 }
10125 #pager-container {
10127 #pager-container {
10126 position: relative;
10128 position: relative;
10127 padding: 15px 0px;
10129 padding: 15px 0px;
10128 }
10130 }
10129 div#pager {
10131 div#pager {
10130 font-size: 14px;
10132 font-size: 14px;
10131 line-height: 20px;
10133 line-height: 20px;
10132 overflow: auto;
10134 overflow: auto;
10133 display: none;
10135 display: none;
10134 }
10136 }
10135 div#pager pre {
10137 div#pager pre {
10136 line-height: 1.21429em;
10138 line-height: 1.21429em;
10137 color: #000000;
10139 color: #000000;
10138 background-color: #f7f7f7;
10140 background-color: #f7f7f7;
10139 padding: 0.4em;
10141 padding: 0.4em;
10140 }
10142 }
10141 .quickhelp {
10143 .quickhelp {
10142 /* Old browsers */
10144 /* Old browsers */
10143 display: -webkit-box;
10145 display: -webkit-box;
10144 -webkit-box-orient: horizontal;
10146 -webkit-box-orient: horizontal;
10145 -webkit-box-align: stretch;
10147 -webkit-box-align: stretch;
10146 display: -moz-box;
10148 display: -moz-box;
10147 -moz-box-orient: horizontal;
10149 -moz-box-orient: horizontal;
10148 -moz-box-align: stretch;
10150 -moz-box-align: stretch;
10149 display: box;
10151 display: box;
10150 box-orient: horizontal;
10152 box-orient: horizontal;
10151 box-align: stretch;
10153 box-align: stretch;
10152 /* Modern browsers */
10154 /* Modern browsers */
10153 display: flex;
10155 display: flex;
10154 flex-direction: row;
10156 flex-direction: row;
10155 align-items: stretch;
10157 align-items: stretch;
10156 /* Old browsers */
10158 /* Old browsers */
10157 -webkit-box-flex: 0;
10159 -webkit-box-flex: 0;
10158 -moz-box-flex: 0;
10160 -moz-box-flex: 0;
10159 box-flex: 0;
10161 box-flex: 0;
10160 /* Modern browsers */
10162 /* Modern browsers */
10161 flex: none;
10163 flex: none;
10162 }
10164 }
10163 .shortcut_key {
10165 .shortcut_key {
10164 display: inline-block;
10166 display: inline-block;
10165 width: 20ex;
10167 width: 20ex;
10166 text-align: right;
10168 text-align: right;
10167 font-family: monospace;
10169 font-family: monospace;
10168 }
10170 }
10169 .shortcut_descr {
10171 .shortcut_descr {
10170 display: inline-block;
10172 display: inline-block;
10171 /* Old browsers */
10173 /* Old browsers */
10172 -webkit-box-flex: 1;
10174 -webkit-box-flex: 1;
10173 -moz-box-flex: 1;
10175 -moz-box-flex: 1;
10174 box-flex: 1;
10176 box-flex: 1;
10175 /* Modern browsers */
10177 /* Modern browsers */
10176 flex: 1;
10178 flex: 1;
10177 }
10179 }
10178 span#save_widget {
10180 span#save_widget {
10179 padding: 0px 5px;
10181 padding: 0px 5px;
10180 margin-top: 12px;
10182 margin-top: 12px;
10181 }
10183 }
10182 span#checkpoint_status,
10184 span#checkpoint_status,
10183 span#autosave_status {
10185 span#autosave_status {
10184 font-size: small;
10186 font-size: small;
10185 }
10187 }
10186 @media (max-width: 767px) {
10188 @media (max-width: 767px) {
10187 span#save_widget {
10189 span#save_widget {
10188 font-size: small;
10190 font-size: small;
10189 }
10191 }
10190 span#checkpoint_status,
10192 span#checkpoint_status,
10191 span#autosave_status {
10193 span#autosave_status {
10192 font-size: x-small;
10194 font-size: x-small;
10193 }
10195 }
10194 }
10196 }
10195 @media (max-width: 767px) {
10197 @media (max-width: 767px) {
10196 span#checkpoint_status,
10198 span#checkpoint_status,
10197 span#autosave_status {
10199 span#autosave_status {
10198 display: none;
10200 display: none;
10199 }
10201 }
10200 }
10202 }
10201 @media (min-width: 768px) and (max-width: 979px) {
10203 @media (min-width: 768px) and (max-width: 979px) {
10202 span#checkpoint_status {
10204 span#checkpoint_status {
10203 display: none;
10205 display: none;
10204 }
10206 }
10205 span#autosave_status {
10207 span#autosave_status {
10206 font-size: x-small;
10208 font-size: x-small;
10207 }
10209 }
10208 }
10210 }
10209 .toolbar {
10211 .toolbar {
10210 padding: 0px;
10212 padding: 0px;
10211 margin-left: -5px;
10213 margin-left: -5px;
10212 margin-top: -5px;
10214 margin-top: -5px;
10213 }
10215 }
10214 .toolbar select,
10216 .toolbar select,
10215 .toolbar label {
10217 .toolbar label {
10216 width: auto;
10218 width: auto;
10217 vertical-align: middle;
10219 vertical-align: middle;
10218 margin-right: 2px;
10220 margin-right: 2px;
10219 margin-bottom: 0px;
10221 margin-bottom: 0px;
10220 display: inline;
10222 display: inline;
10221 font-size: 92%;
10223 font-size: 92%;
10222 margin-left: 0.3em;
10224 margin-left: 0.3em;
10223 margin-right: 0.3em;
10225 margin-right: 0.3em;
10224 padding: 0px;
10226 padding: 0px;
10225 padding-top: 3px;
10227 padding-top: 3px;
10226 }
10228 }
10227 .toolbar .btn {
10229 .toolbar .btn {
10228 padding: 2px 8px;
10230 padding: 2px 8px;
10229 }
10231 }
10230 .toolbar .btn-group {
10232 .toolbar .btn-group {
10231 margin-top: 0px;
10233 margin-top: 0px;
10232 margin-left: 5px;
10234 margin-left: 5px;
10233 }
10235 }
10234 #maintoolbar {
10236 #maintoolbar {
10235 margin-bottom: -3px;
10237 margin-bottom: -3px;
10236 margin-top: -8px;
10238 margin-top: -8px;
10237 border: 0px;
10239 border: 0px;
10238 min-height: 27px;
10240 min-height: 27px;
10239 margin-left: 32px;
10241 margin-left: 32px;
10240 padding-top: 6px;
10242 padding-top: 6px;
10241 padding-bottom: 8px;
10243 padding-bottom: 8px;
10242 }
10244 }
10243 #maintoolbar .navbar-text {
10245 #maintoolbar .navbar-text {
10244 float: none;
10246 float: none;
10245 vertical-align: middle;
10247 vertical-align: middle;
10246 text-align: right;
10248 text-align: right;
10247 margin-left: 5px;
10249 margin-left: 5px;
10248 margin-right: 0px;
10250 margin-right: 0px;
10249 margin-top: 0px;
10251 margin-top: 0px;
10250 }
10252 }
10251 #maintoolbar .toolbar {
10253 #maintoolbar .toolbar {
10252 margin-top: 0px;
10254 margin-top: 0px;
10253 }
10255 }
10254 .select-xs {
10256 .select-xs {
10255 height: 24px;
10257 height: 24px;
10256 }
10258 }
10257 /**
10259 /**
10258 * Primary styles
10260 * Primary styles
10259 *
10261 *
10260 * Author: IPython Development Team
10262 * Author: IPython Development Team
10261 */
10263 */
10262 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10264 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10263 * of chance of beeing generated from the ../less/[samename].less file, you can
10265 * of chance of beeing generated from the ../less/[samename].less file, you can
10264 * try to get back the less file by reverting somme commit in history
10266 * try to get back the less file by reverting somme commit in history
10265 **/
10267 **/
10266 /*
10268 /*
10267 * We'll try to get something pretty, so we
10269 * We'll try to get something pretty, so we
10268 * have some strange css to have the scroll bar on
10270 * have some strange css to have the scroll bar on
10269 * the left with fix button on the top right of the tooltip
10271 * the left with fix button on the top right of the tooltip
10270 */
10272 */
10271 @-moz-keyframes fadeOut {
10273 @-moz-keyframes fadeOut {
10272 from {
10274 from {
10273 opacity: 1;
10275 opacity: 1;
10274 }
10276 }
10275 to {
10277 to {
10276 opacity: 0;
10278 opacity: 0;
10277 }
10279 }
10278 }
10280 }
10279 @-webkit-keyframes fadeOut {
10281 @-webkit-keyframes fadeOut {
10280 from {
10282 from {
10281 opacity: 1;
10283 opacity: 1;
10282 }
10284 }
10283 to {
10285 to {
10284 opacity: 0;
10286 opacity: 0;
10285 }
10287 }
10286 }
10288 }
10287 @-moz-keyframes fadeIn {
10289 @-moz-keyframes fadeIn {
10288 from {
10290 from {
10289 opacity: 0;
10291 opacity: 0;
10290 }
10292 }
10291 to {
10293 to {
10292 opacity: 1;
10294 opacity: 1;
10293 }
10295 }
10294 }
10296 }
10295 @-webkit-keyframes fadeIn {
10297 @-webkit-keyframes fadeIn {
10296 from {
10298 from {
10297 opacity: 0;
10299 opacity: 0;
10298 }
10300 }
10299 to {
10301 to {
10300 opacity: 1;
10302 opacity: 1;
10301 }
10303 }
10302 }
10304 }
10303 /*properties of tooltip after "expand"*/
10305 /*properties of tooltip after "expand"*/
10304 .bigtooltip {
10306 .bigtooltip {
10305 overflow: auto;
10307 overflow: auto;
10306 height: 200px;
10308 height: 200px;
10307 -webkit-transition-property: height;
10309 -webkit-transition-property: height;
10308 -webkit-transition-duration: 500ms;
10310 -webkit-transition-duration: 500ms;
10309 -moz-transition-property: height;
10311 -moz-transition-property: height;
10310 -moz-transition-duration: 500ms;
10312 -moz-transition-duration: 500ms;
10311 transition-property: height;
10313 transition-property: height;
10312 transition-duration: 500ms;
10314 transition-duration: 500ms;
10313 }
10315 }
10314 /*properties of tooltip before "expand"*/
10316 /*properties of tooltip before "expand"*/
10315 .smalltooltip {
10317 .smalltooltip {
10316 -webkit-transition-property: height;
10318 -webkit-transition-property: height;
10317 -webkit-transition-duration: 500ms;
10319 -webkit-transition-duration: 500ms;
10318 -moz-transition-property: height;
10320 -moz-transition-property: height;
10319 -moz-transition-duration: 500ms;
10321 -moz-transition-duration: 500ms;
10320 transition-property: height;
10322 transition-property: height;
10321 transition-duration: 500ms;
10323 transition-duration: 500ms;
10322 text-overflow: ellipsis;
10324 text-overflow: ellipsis;
10323 overflow: hidden;
10325 overflow: hidden;
10324 height: 80px;
10326 height: 80px;
10325 }
10327 }
10326 .tooltipbuttons {
10328 .tooltipbuttons {
10327 position: absolute;
10329 position: absolute;
10328 padding-right: 15px;
10330 padding-right: 15px;
10329 top: 0px;
10331 top: 0px;
10330 right: 0px;
10332 right: 0px;
10331 }
10333 }
10332 .tooltiptext {
10334 .tooltiptext {
10333 /*avoid the button to overlap on some docstring*/
10335 /*avoid the button to overlap on some docstring*/
10334 padding-right: 30px;
10336 padding-right: 30px;
10335 }
10337 }
10336 .ipython_tooltip {
10338 .ipython_tooltip {
10337 max-width: 700px;
10339 max-width: 700px;
10338 /*fade-in animation when inserted*/
10340 /*fade-in animation when inserted*/
10339 -webkit-animation: fadeOut 400ms;
10341 -webkit-animation: fadeOut 400ms;
10340 -moz-animation: fadeOut 400ms;
10342 -moz-animation: fadeOut 400ms;
10341 animation: fadeOut 400ms;
10343 animation: fadeOut 400ms;
10342 -webkit-animation: fadeIn 400ms;
10344 -webkit-animation: fadeIn 400ms;
10343 -moz-animation: fadeIn 400ms;
10345 -moz-animation: fadeIn 400ms;
10344 animation: fadeIn 400ms;
10346 animation: fadeIn 400ms;
10345 vertical-align: middle;
10347 vertical-align: middle;
10346 background-color: #f7f7f7;
10348 background-color: #f7f7f7;
10347 overflow: visible;
10349 overflow: visible;
10348 border: #ababab 1px solid;
10350 border: #ababab 1px solid;
10349 outline: none;
10351 outline: none;
10350 padding: 3px;
10352 padding: 3px;
10351 margin: 0px;
10353 margin: 0px;
10352 padding-left: 7px;
10354 padding-left: 7px;
10353 font-family: monospace;
10355 font-family: monospace;
10354 min-height: 50px;
10356 min-height: 50px;
10355 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10357 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10356 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10358 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10357 box-shadow: 0px 6px 10px -1px #adadad;
10359 box-shadow: 0px 6px 10px -1px #adadad;
10358 border-radius: 4px;
10360 border-radius: 4px;
10359 position: absolute;
10361 position: absolute;
10360 z-index: 1000;
10362 z-index: 1000;
10361 }
10363 }
10362 .ipython_tooltip a {
10364 .ipython_tooltip a {
10363 float: right;
10365 float: right;
10364 }
10366 }
10365 .ipython_tooltip .tooltiptext pre {
10367 .ipython_tooltip .tooltiptext pre {
10366 border: 0;
10368 border: 0;
10367 border-radius: 0;
10369 border-radius: 0;
10368 font-size: 100%;
10370 font-size: 100%;
10369 background-color: #f7f7f7;
10371 background-color: #f7f7f7;
10370 }
10372 }
10371 .pretooltiparrow {
10373 .pretooltiparrow {
10372 left: 0px;
10374 left: 0px;
10373 margin: 0px;
10375 margin: 0px;
10374 top: -16px;
10376 top: -16px;
10375 width: 40px;
10377 width: 40px;
10376 height: 16px;
10378 height: 16px;
10377 overflow: hidden;
10379 overflow: hidden;
10378 position: absolute;
10380 position: absolute;
10379 }
10381 }
10380 .pretooltiparrow:before {
10382 .pretooltiparrow:before {
10381 background-color: #f7f7f7;
10383 background-color: #f7f7f7;
10382 border: 1px #ababab solid;
10384 border: 1px #ababab solid;
10383 z-index: 11;
10385 z-index: 11;
10384 content: "";
10386 content: "";
10385 position: absolute;
10387 position: absolute;
10386 left: 15px;
10388 left: 15px;
10387 top: 10px;
10389 top: 10px;
10388 width: 25px;
10390 width: 25px;
10389 height: 25px;
10391 height: 25px;
10390 -webkit-transform: rotate(45deg);
10392 -webkit-transform: rotate(45deg);
10391 -moz-transform: rotate(45deg);
10393 -moz-transform: rotate(45deg);
10392 -ms-transform: rotate(45deg);
10394 -ms-transform: rotate(45deg);
10393 -o-transform: rotate(45deg);
10395 -o-transform: rotate(45deg);
10394 }
10396 }
10395 /*# sourceMappingURL=../style/style.min.css.map */ No newline at end of file
10397 /*# sourceMappingURL=../style/style.min.css.map */
General Comments 0
You need to be logged in to leave comments. Login now