##// END OF EJS Templates
bootstrap button output area
MinRK -
Show More
@@ -1,691 +1,685
1 1 //----------------------------------------------------------------------------
2 2 // Copyright (C) 2008 The IPython Development Team
3 3 //
4 4 // Distributed under the terms of the BSD License. The full license is in
5 5 // the file COPYING, distributed as part of this software.
6 6 //----------------------------------------------------------------------------
7 7
8 8 //============================================================================
9 9 // OutputArea
10 10 //============================================================================
11 11
12 12 /**
13 13 * @module IPython
14 14 * @namespace IPython
15 15 * @submodule OutputArea
16 16 */
17 17 var IPython = (function (IPython) {
18 18 "use strict";
19 19
20 20 var utils = IPython.utils;
21 21
22 22 /**
23 23 * @class OutputArea
24 24 *
25 25 * @constructor
26 26 */
27 27
28 28 var OutputArea = function (selector, prompt_area) {
29 29 this.selector = selector;
30 30 this.wrapper = $(selector);
31 31 this.outputs = [];
32 32 this.collapsed = false;
33 33 this.scrolled = false;
34 34 this.clear_out_timeout = null;
35 35 if (prompt_area === undefined) {
36 36 this.prompt_area = true;
37 37 } else {
38 38 this.prompt_area = prompt_area;
39 39 }
40 40 this.create_elements();
41 41 this.style();
42 42 this.bind_events();
43 43 };
44 44
45 45 OutputArea.prototype.create_elements = function () {
46 46 this.element = $("<div/>");
47 47 this.collapse_button = $("<div/>");
48 48 this.prompt_overlay = $("<div/>");
49 49 this.wrapper.append(this.prompt_overlay);
50 50 this.wrapper.append(this.element);
51 51 this.wrapper.append(this.collapse_button);
52 52 };
53 53
54 54
55 55 OutputArea.prototype.style = function () {
56 56 this.collapse_button.hide();
57 57 this.prompt_overlay.hide();
58 58
59 59 this.wrapper.addClass('output_wrapper');
60 60 this.element.addClass('output vbox');
61 61
62 this.collapse_button.button();
63 this.collapse_button.addClass('output_collapsed vbox');
62 this.collapse_button.addClass("btn output_collapsed");
64 63 this.collapse_button.attr('title', 'click to expand output');
65 64 this.collapse_button.html('. . .');
66 65
67 66 this.prompt_overlay.addClass('out_prompt_overlay prompt');
68 67 this.prompt_overlay.attr('title', 'click to expand output; double click to hide output');
69 68
70 69 this.collapse();
71 70 };
72 71
73 72 /**
74 73 * Should the OutputArea scroll?
75 74 * Returns whether the height (in lines) exceeds a threshold.
76 75 *
77 76 * @private
78 77 * @method _should_scroll
79 78 * @param [lines=100]{Integer}
80 79 * @return {Bool}
81 80 *
82 81 */
83 82 OutputArea.prototype._should_scroll = function (lines) {
84 83 if (lines <=0 ){ return }
85 84 if (!lines) {
86 85 lines = 100;
87 86 }
88 87 // line-height from http://stackoverflow.com/questions/1185151
89 88 var fontSize = this.element.css('font-size');
90 89 var lineHeight = Math.floor(parseInt(fontSize.replace('px','')) * 1.5);
91 90
92 91 return (this.element.height() > lines * lineHeight);
93 92 };
94 93
95 94
96 95 OutputArea.prototype.bind_events = function () {
97 96 var that = this;
98 97 this.prompt_overlay.dblclick(function () { that.toggle_output(); });
99 98 this.prompt_overlay.click(function () { that.toggle_scroll(); });
100 99
101 100 this.element.resize(function () {
102 101 // FIXME: Firefox on Linux misbehaves, so automatic scrolling is disabled
103 102 if ( IPython.utils.browser[0] === "Firefox" ) {
104 103 return;
105 104 }
106 105 // maybe scroll output,
107 106 // if it's grown large enough and hasn't already been scrolled.
108 107 if ( !that.scrolled && that._should_scroll(OutputArea.auto_scroll_threshold)) {
109 108 that.scroll_area();
110 109 }
111 110 });
112 111 this.collapse_button.click(function () {
113 112 that.expand();
114 113 });
115 this.collapse_button.hover(function () {
116 $(this).addClass("ui-state-hover");
117 }, function () {
118 $(this).removeClass("ui-state-hover");
119 });
120 114 };
121 115
122 116
123 117 OutputArea.prototype.collapse = function () {
124 118 if (!this.collapsed) {
125 119 this.element.hide();
126 120 this.prompt_overlay.hide();
127 121 if (this.element.html()){
128 122 this.collapse_button.show();
129 123 }
130 124 this.collapsed = true;
131 125 }
132 126 };
133 127
134 128
135 129 OutputArea.prototype.expand = function () {
136 130 if (this.collapsed) {
137 131 this.collapse_button.hide();
138 132 this.element.show();
139 133 this.prompt_overlay.show();
140 134 this.collapsed = false;
141 135 }
142 136 };
143 137
144 138
145 139 OutputArea.prototype.toggle_output = function () {
146 140 if (this.collapsed) {
147 141 this.expand();
148 142 } else {
149 143 this.collapse();
150 144 }
151 145 };
152 146
153 147
154 148 OutputArea.prototype.scroll_area = function () {
155 149 this.element.addClass('output_scroll');
156 150 this.prompt_overlay.attr('title', 'click to unscroll output; double click to hide');
157 151 this.scrolled = true;
158 152 };
159 153
160 154
161 155 OutputArea.prototype.unscroll_area = function () {
162 156 this.element.removeClass('output_scroll');
163 157 this.prompt_overlay.attr('title', 'click to scroll output; double click to hide');
164 158 this.scrolled = false;
165 159 };
166 160
167 161 /**
168 162 * Threshold to trigger autoscroll when the OutputArea is resized,
169 163 * typically when new outputs are added.
170 164 *
171 165 * Behavior is undefined if autoscroll is lower than minimum_scroll_threshold,
172 166 * unless it is < 0, in which case autoscroll will never be triggered
173 167 *
174 168 * @property auto_scroll_threshold
175 169 * @type Number
176 170 * @default 100
177 171 *
178 172 **/
179 173 OutputArea.auto_scroll_threshold = 100;
180 174
181 175
182 176 /**
183 177 * Lower limit (in lines) for OutputArea to be made scrollable. OutputAreas
184 178 * shorter than this are never scrolled.
185 179 *
186 180 * @property minimum_scroll_threshold
187 181 * @type Number
188 182 * @default 20
189 183 *
190 184 **/
191 185 OutputArea.minimum_scroll_threshold = 20;
192 186
193 187
194 188 /**
195 189 *
196 190 * Scroll OutputArea if height supperior than a threshold (in lines).
197 191 *
198 192 * Threshold is a maximum number of lines. If unspecified, defaults to
199 193 * OutputArea.minimum_scroll_threshold.
200 194 *
201 195 * Negative threshold will prevent the OutputArea from ever scrolling.
202 196 *
203 197 * @method scroll_if_long
204 198 *
205 199 * @param [lines=20]{Number} Default to 20 if not set,
206 200 * behavior undefined for value of `0`.
207 201 *
208 202 **/
209 203 OutputArea.prototype.scroll_if_long = function (lines) {
210 204 var n = lines | OutputArea.minimum_scroll_threshold;
211 205 if(n <= 0){
212 206 return
213 207 }
214 208
215 209 if (this._should_scroll(n)) {
216 210 // only allow scrolling long-enough output
217 211 this.scroll_area();
218 212 }
219 213 };
220 214
221 215
222 216 OutputArea.prototype.toggle_scroll = function () {
223 217 if (this.scrolled) {
224 218 this.unscroll_area();
225 219 } else {
226 220 // only allow scrolling long-enough output
227 221 this.scroll_if_long();
228 222 }
229 223 };
230 224
231 225
232 226 // typeset with MathJax if MathJax is available
233 227 OutputArea.prototype.typeset = function () {
234 228 if (window.MathJax){
235 229 MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
236 230 }
237 231 };
238 232
239 233
240 234 OutputArea.prototype.handle_output = function (msg_type, content) {
241 235 var json = {};
242 236 json.output_type = msg_type;
243 237 if (msg_type === "stream") {
244 238 json.text = content.data;
245 239 json.stream = content.name;
246 240 } else if (msg_type === "display_data") {
247 241 json = this.convert_mime_types(json, content.data);
248 242 json.metadata = this.convert_mime_types({}, content.metadata);
249 243 } else if (msg_type === "pyout") {
250 244 json.prompt_number = content.execution_count;
251 245 json = this.convert_mime_types(json, content.data);
252 246 json.metadata = this.convert_mime_types({}, content.metadata);
253 247 } else if (msg_type === "pyerr") {
254 248 json.ename = content.ename;
255 249 json.evalue = content.evalue;
256 250 json.traceback = content.traceback;
257 251 }
258 252 // append with dynamic=true
259 253 this.append_output(json, true);
260 254 };
261 255
262 256
263 257 OutputArea.prototype.convert_mime_types = function (json, data) {
264 258 if (data['text/plain'] !== undefined) {
265 259 json.text = data['text/plain'];
266 260 }
267 261 if (data['text/html'] !== undefined) {
268 262 json.html = data['text/html'];
269 263 }
270 264 if (data['image/svg+xml'] !== undefined) {
271 265 json.svg = data['image/svg+xml'];
272 266 }
273 267 if (data['image/png'] !== undefined) {
274 268 json.png = data['image/png'];
275 269 }
276 270 if (data['image/jpeg'] !== undefined) {
277 271 json.jpeg = data['image/jpeg'];
278 272 }
279 273 if (data['text/latex'] !== undefined) {
280 274 json.latex = data['text/latex'];
281 275 }
282 276 if (data['application/json'] !== undefined) {
283 277 json.json = data['application/json'];
284 278 }
285 279 if (data['application/javascript'] !== undefined) {
286 280 json.javascript = data['application/javascript'];
287 281 }
288 282 return json;
289 283 };
290 284
291 285
292 286 OutputArea.prototype.append_output = function (json, dynamic) {
293 287 // If dynamic is true, javascript output will be eval'd.
294 288 this.expand();
295 289 this.flush_clear_timeout();
296 290 if (json.output_type === 'pyout') {
297 291 this.append_pyout(json, dynamic);
298 292 } else if (json.output_type === 'pyerr') {
299 293 this.append_pyerr(json);
300 294 } else if (json.output_type === 'display_data') {
301 295 this.append_display_data(json, dynamic);
302 296 } else if (json.output_type === 'stream') {
303 297 this.append_stream(json);
304 298 }
305 299 this.outputs.push(json);
306 300 var that = this;
307 301 setTimeout(function(){that.element.trigger('resize');}, 100);
308 302 };
309 303
310 304
311 305 OutputArea.prototype.create_output_area = function () {
312 306 var oa = $("<div/>").addClass("output_area");
313 307 if (this.prompt_area) {
314 308 oa.append($('<div/>').addClass('prompt'));
315 309 }
316 310 return oa;
317 311 };
318 312
319 313
320 314 OutputArea.prototype.append_pyout = function (json, dynamic) {
321 315 var n = json.prompt_number || ' ';
322 316 var toinsert = this.create_output_area();
323 317 if (this.prompt_area) {
324 318 toinsert.find('div.prompt').addClass('output_prompt').html('Out[' + n + ']:');
325 319 }
326 320 this.append_mime_type(json, toinsert, dynamic);
327 321 this.element.append(toinsert);
328 322 // If we just output latex, typeset it.
329 323 if ((json.latex !== undefined) || (json.html !== undefined)) {
330 324 this.typeset();
331 325 }
332 326 };
333 327
334 328
335 329 OutputArea.prototype.append_pyerr = function (json) {
336 330 var tb = json.traceback;
337 331 if (tb !== undefined && tb.length > 0) {
338 332 var s = '';
339 333 var len = tb.length;
340 334 for (var i=0; i<len; i++) {
341 335 s = s + tb[i] + '\n';
342 336 }
343 337 s = s + '\n';
344 338 var toinsert = this.create_output_area();
345 339 this.append_text(s, {}, toinsert);
346 340 this.element.append(toinsert);
347 341 }
348 342 };
349 343
350 344
351 345 OutputArea.prototype.append_stream = function (json) {
352 346 // temporary fix: if stream undefined (json file written prior to this patch),
353 347 // default to most likely stdout:
354 348 if (json.stream == undefined){
355 349 json.stream = 'stdout';
356 350 }
357 351 var text = json.text;
358 352 var subclass = "output_"+json.stream;
359 353 if (this.outputs.length > 0){
360 354 // have at least one output to consider
361 355 var last = this.outputs[this.outputs.length-1];
362 356 if (last.output_type == 'stream' && json.stream == last.stream){
363 357 // latest output was in the same stream,
364 358 // so append directly into its pre tag
365 359 // escape ANSI & HTML specials:
366 360 var pre = this.element.find('div.'+subclass).last().find('pre');
367 361 var html = utils.fixCarriageReturn(
368 362 pre.html() + utils.fixConsole(text));
369 363 pre.html(html);
370 364 return;
371 365 }
372 366 }
373 367
374 368 if (!text.replace("\r", "")) {
375 369 // text is nothing (empty string, \r, etc.)
376 370 // so don't append any elements, which might add undesirable space
377 371 return;
378 372 }
379 373
380 374 // If we got here, attach a new div
381 375 var toinsert = this.create_output_area();
382 376 this.append_text(text, {}, toinsert, "output_stream "+subclass);
383 377 this.element.append(toinsert);
384 378 };
385 379
386 380
387 381 OutputArea.prototype.append_display_data = function (json, dynamic) {
388 382 var toinsert = this.create_output_area();
389 383 this.append_mime_type(json, toinsert, dynamic);
390 384 this.element.append(toinsert);
391 385 // If we just output latex, typeset it.
392 386 if ( (json.latex !== undefined) || (json.html !== undefined) ) {
393 387 this.typeset();
394 388 }
395 389 };
396 390
397 391 OutputArea.display_order = ['javascript','html','latex','svg','png','jpeg','text'];
398 392
399 393 OutputArea.prototype.append_mime_type = function (json, element, dynamic) {
400 394 for(var type_i in OutputArea.display_order){
401 395 var type = OutputArea.display_order[type_i];
402 396 if(json[type] != undefined ){
403 397 var md = {};
404 398 if (json.metadata && json.metadata[type]) {
405 399 md = json.metadata[type];
406 400 };
407 401 if(type == 'javascript'){
408 402 if (dynamic) {
409 403 this.append_javascript(json.javascript, md, element, dynamic);
410 404 }
411 405 } else {
412 406 this['append_'+type](json[type], md, element);
413 407 }
414 408 return;
415 409 }
416 410 }
417 411 };
418 412
419 413
420 414 OutputArea.prototype.append_html = function (html, md, element) {
421 415 var toinsert = $("<div/>").addClass("output_subarea output_html rendered_html");
422 416 toinsert.append(html);
423 417 element.append(toinsert);
424 418 };
425 419
426 420
427 421 OutputArea.prototype.append_javascript = function (js, md, container) {
428 422 // We just eval the JS code, element appears in the local scope.
429 423 var element = $("<div/>").addClass("output_subarea");
430 424 container.append(element);
431 425 // Div for js shouldn't be drawn, as it will add empty height to the area.
432 426 container.hide();
433 427 // If the Javascript appends content to `element` that should be drawn, then
434 428 // it must also call `container.show()`.
435 429 try {
436 430 eval(js);
437 431 } catch(err) {
438 432 console.log('Error in Javascript!');
439 433 console.log(err);
440 434 container.show();
441 435 element.append($('<div/>')
442 436 .html("Error in Javascript !<br/>"+
443 437 err.toString()+
444 438 '<br/>See your browser Javascript console for more details.')
445 439 .addClass('js-error')
446 440 );
447 441 }
448 442 };
449 443
450 444
451 445 OutputArea.prototype.append_text = function (data, md, element, extra_class) {
452 446 var toinsert = $("<div/>").addClass("output_subarea output_text");
453 447 // escape ANSI & HTML specials in plaintext:
454 448 data = utils.fixConsole(data);
455 449 data = utils.fixCarriageReturn(data);
456 450 data = utils.autoLinkUrls(data);
457 451 if (extra_class){
458 452 toinsert.addClass(extra_class);
459 453 }
460 454 toinsert.append($("<pre/>").html(data));
461 455 element.append(toinsert);
462 456 };
463 457
464 458
465 459 OutputArea.prototype.append_svg = function (svg, md, element) {
466 460 var toinsert = $("<div/>").addClass("output_subarea output_svg");
467 461 toinsert.append(svg);
468 462 element.append(toinsert);
469 463 };
470 464
471 465
472 466 OutputArea.prototype._dblclick_to_reset_size = function (img) {
473 467 // schedule wrapping image in resizable after a delay,
474 468 // so we don't end up calling resize on a zero-size object
475 469 var that = this;
476 470 setTimeout(function () {
477 471 var h0 = img.height();
478 472 var w0 = img.width();
479 473 if (!(h0 && w0)) {
480 474 // zero size, schedule another timeout
481 475 that._dblclick_to_reset_size(img);
482 476 return;
483 477 }
484 478 img.resizable({
485 479 aspectRatio: true,
486 480 autoHide: true
487 481 });
488 482 img.dblclick(function () {
489 483 // resize wrapper & image together for some reason:
490 484 img.parent().height(h0);
491 485 img.height(h0);
492 486 img.parent().width(w0);
493 487 img.width(w0);
494 488 });
495 489 }, 250);
496 490 };
497 491
498 492
499 493 OutputArea.prototype.append_png = function (png, md, element) {
500 494 var toinsert = $("<div/>").addClass("output_subarea output_png");
501 495 var img = $("<img/>").attr('src','data:image/png;base64,'+png);
502 496 if (md['height']) {
503 497 img.attr('height', md['height']);
504 498 }
505 499 if (md['width']) {
506 500 img.attr('width', md['width']);
507 501 }
508 502 this._dblclick_to_reset_size(img);
509 503 toinsert.append(img);
510 504 element.append(toinsert);
511 505 };
512 506
513 507
514 508 OutputArea.prototype.append_jpeg = function (jpeg, md, element) {
515 509 var toinsert = $("<div/>").addClass("output_subarea output_jpeg");
516 510 var img = $("<img/>").attr('src','data:image/jpeg;base64,'+jpeg);
517 511 if (md['height']) {
518 512 img.attr('height', md['height']);
519 513 }
520 514 if (md['width']) {
521 515 img.attr('width', md['width']);
522 516 }
523 517 this._dblclick_to_reset_size(img);
524 518 toinsert.append(img);
525 519 element.append(toinsert);
526 520 };
527 521
528 522
529 523 OutputArea.prototype.append_latex = function (latex, md, element) {
530 524 // This method cannot do the typesetting because the latex first has to
531 525 // be on the page.
532 526 var toinsert = $("<div/>").addClass("output_subarea output_latex");
533 527 toinsert.append(latex);
534 528 element.append(toinsert);
535 529 };
536 530
537 531 OutputArea.prototype.append_raw_input = function (content) {
538 532 var that = this;
539 533 this.expand();
540 534 this.flush_clear_timeout();
541 535 var area = this.create_output_area();
542 536
543 537 area.append(
544 538 $("<div/>")
545 539 .addClass("box-flex1 output_subarea raw_input")
546 540 .append(
547 541 $("<span/>")
548 542 .addClass("input_prompt")
549 543 .text(content.prompt)
550 544 )
551 545 .append(
552 546 $("<input/>")
553 547 .addClass("raw_input")
554 548 .attr('type', 'text')
555 549 .attr("size", 80)
556 550 .keydown(function (event, ui) {
557 551 // make sure we submit on enter,
558 552 // and don't re-execute the *cell* on shift-enter
559 553 if (event.which === utils.keycodes.ENTER) {
560 554 that._submit_raw_input();
561 555 return false;
562 556 }
563 557 })
564 558 )
565 559 );
566 560 this.element.append(area);
567 561 area.find("input.raw_input").focus();
568 562 }
569 563 OutputArea.prototype._submit_raw_input = function (evt) {
570 564 var container = this.element.find("div.raw_input");
571 565 var theprompt = container.find("span.input_prompt");
572 566 var theinput = container.find("input.raw_input");
573 567 var value = theinput.attr("value");
574 568 var content = {
575 569 output_type : 'stream',
576 570 name : 'stdout',
577 571 text : theprompt.text() + value + '\n'
578 572 }
579 573 // remove form container
580 574 container.parent().remove();
581 575 // replace with plaintext version in stdout
582 576 this.append_output(content, false);
583 577 $([IPython.events]).trigger('send_input_reply.Kernel', value);
584 578 }
585 579
586 580
587 581 OutputArea.prototype.handle_clear_output = function (content) {
588 582 this.clear_output(content.stdout, content.stderr, content.other);
589 583 };
590 584
591 585
592 586 OutputArea.prototype.clear_output = function (stdout, stderr, other) {
593 587 var that = this;
594 588 if (this.clear_out_timeout != null){
595 589 // fire previous pending clear *immediately*
596 590 clearTimeout(this.clear_out_timeout);
597 591 this.clear_out_timeout = null;
598 592 this.clear_output_callback(this._clear_stdout, this._clear_stderr, this._clear_other);
599 593 }
600 594 // store flags for flushing the timeout
601 595 this._clear_stdout = stdout;
602 596 this._clear_stderr = stderr;
603 597 this._clear_other = other;
604 598 this.clear_out_timeout = setTimeout(function() {
605 599 // really clear timeout only after a short delay
606 600 // this reduces flicker in 'clear_output; print' cases
607 601 that.clear_out_timeout = null;
608 602 that._clear_stdout = that._clear_stderr = that._clear_other = null;
609 603 that.clear_output_callback(stdout, stderr, other);
610 604 }, 500
611 605 );
612 606 };
613 607
614 608
615 609 OutputArea.prototype.clear_output_callback = function (stdout, stderr, other) {
616 610 var output_div = this.element;
617 611
618 612 if (stdout && stderr && other){
619 613 // clear all, no need for logic
620 614 output_div.html("");
621 615 this.outputs = [];
622 616 this.unscroll_area();
623 617 return;
624 618 }
625 619 // remove html output
626 620 // each output_subarea that has an identifying class is in an output_area
627 621 // which is the element to be removed.
628 622 if (stdout) {
629 623 output_div.find("div.output_stdout").parent().remove();
630 624 }
631 625 if (stderr) {
632 626 output_div.find("div.output_stderr").parent().remove();
633 627 }
634 628 if (other) {
635 629 output_div.find("div.output_subarea").not("div.output_stderr").not("div.output_stdout").parent().remove();
636 630 }
637 631 this.unscroll_area();
638 632
639 633 // remove cleared outputs from JSON list:
640 634 for (var i = this.outputs.length - 1; i >= 0; i--) {
641 635 var out = this.outputs[i];
642 636 var output_type = out.output_type;
643 637 if (output_type == "display_data" && other) {
644 638 this.outputs.splice(i,1);
645 639 } else if (output_type == "stream") {
646 640 if (stdout && out.stream == "stdout") {
647 641 this.outputs.splice(i,1);
648 642 } else if (stderr && out.stream == "stderr") {
649 643 this.outputs.splice(i,1);
650 644 }
651 645 }
652 646 }
653 647 };
654 648
655 649
656 650 OutputArea.prototype.flush_clear_timeout = function() {
657 651 var output_div = this.element;
658 652 if (this.clear_out_timeout){
659 653 clearTimeout(this.clear_out_timeout);
660 654 this.clear_out_timeout = null;
661 655 this.clear_output_callback(this._clear_stdout, this._clear_stderr, this._clear_other);
662 656 }
663 657 };
664 658
665 659
666 660 // JSON serialization
667 661
668 662 OutputArea.prototype.fromJSON = function (outputs) {
669 663 var len = outputs.length;
670 664 for (var i=0; i<len; i++) {
671 665 // append with dynamic=false.
672 666 this.append_output(outputs[i], false);
673 667 }
674 668 };
675 669
676 670
677 671 OutputArea.prototype.toJSON = function () {
678 672 var outputs = [];
679 673 var len = this.outputs.length;
680 674 for (var i=0; i<len; i++) {
681 675 outputs[i] = this.outputs[i];
682 676 }
683 677 return outputs;
684 678 };
685 679
686 680
687 681 IPython.OutputArea = OutputArea;
688 682
689 683 return IPython;
690 684
691 685 }(IPython));
@@ -1,69 +1,67
1 1 div.code_cell {
2 2 }
3 3
4 4 /* any special styling for code cells that are currently running goes here */
5 5 div.code_cell.running {
6 6 }
7 7
8 8 div.input {
9 9 page-break-inside: avoid;
10 10 .hbox();
11 11 }
12 12
13 13 /* input_area and input_prompt must match in top border and margin for alignment */
14 14 div.input_area {
15 15 border: 1px solid @light_border_color;
16 16 .corner-all;
17 17 background: @cell_background;
18 18 }
19 19
20 20 div.input_prompt {
21 21 color: navy;
22 22 border-top: 1px solid transparent;
23 23 }
24 24
25 25 div.output_wrapper {
26 26 /* This is a spacer between the input and output of each cell */
27 27 margin-top: 5px;
28 margin-left: 5px;
29 /* FF needs explicit width to stretch */
30 width: 100%;
31 28 /* this position must be relative to enable descendents to be absolute within it */
32 29 position: relative;
30 .vbox()
33 31 }
34 32
35 33 /* class for the output area when it should be height-limited */
36 34 div.output_scroll {
37 35 /* ideally, this would be max-height, but FF barfs all over that */
38 36 height: 24em;
39 37 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
40 38 width: 100%;
41 39
42 40 overflow: auto;
43 41 .corner-all;
44 42 .box-shadow(inset 0 2px 8px rgba(0, 0, 0, .8));
45 43 }
46 44
47 45 /* output div while it is collapsed */
48 46 div.output_collapsed {
49 margin-right: 5px;
47 margin: 0px;
48 padding: 0px;
49 .vbox();
50 50 }
51 51
52 52 div.out_prompt_overlay {
53 53 height: 100%;
54 padding: 0px;
54 padding: 0px 0.4em;
55 55 position: absolute;
56 56 .corner-all;
57 57 }
58 58
59 59 div.out_prompt_overlay:hover {
60 60 /* use inner shadow to get border that is computed the same on WebKit/FF */
61 61 .box-shadow(inset 0 0 1px #000);
62 62 background: rgba(240, 240, 240, 0.5);
63 63 }
64 64
65 65 div.output_prompt {
66 66 color: darkred;
67 /* 5px right shift to account for margin in parent container */
68 margin: 0 5px 0 -5px;
69 67 }
@@ -1,96 +1,97
1 1 /* This class is the outer container of all output sections. */
2 2 div.output_area {
3 3 padding: 0px;
4 4 page-break-inside: avoid;
5 5 .hbox();
6 6 }
7 7
8 8
9 9 /* This is needed to protect the pre formating from global settings such
10 10 as that of bootstrap */
11 11 div.output_area pre {
12 12 font-family: @monoFontFamily;
13 13 margin: 0;
14 14 padding: 0;
15 15 border: 0;
16 16 font-size: 100%;
17 17 vertical-align: baseline;
18 18 color: black;
19 19 background-color: transparent;
20 20 .border-radius(0);
21 21 line-height: inherit;
22 22 }
23 23
24 24 /* This class is for the output subarea inside the output_area and after
25 25 the prompt div. */
26 26 div.output_subarea {
27 27 padding: 0.44em 0.4em 0.4em 1px;
28 margin-left: 6px;
28 29 .box-flex1();
29 30 }
30 31
31 32 /* The rest of the output_* classes are for special styling of the different
32 33 output types */
33 34
34 35 /* all text output has this class: */
35 36 div.output_text {
36 37 text-align: left;
37 38 color: @textColor;
38 39 font-family: @monoFontFamily;
39 40 /* This has to match that of the the CodeMirror class line-height below */
40 41 line-height: @code_line_height;
41 42 }
42 43
43 44 /* stdout/stderr are 'text' as well as 'stream', but pyout/pyerr are *not* streams */
44 45 div.output_stream {
45 46 padding-top: 0.0em;
46 47 padding-bottom: 0.0em;
47 48 }
48 49 div.output_stdout {
49 50 }
50 51 div.output_stderr {
51 52 background: #fdd; /* very light red background for stderr */
52 53 }
53 54
54 55 div.output_latex {
55 56 text-align: left;
56 57 }
57 58
58 59 div.output_html {
59 60 }
60 61
61 62 div.output_png {
62 63 }
63 64
64 65 div.output_jpeg {
65 66 }
66 67
67 68 .js-error {
68 69 color: darkred;
69 70 }
70 71
71 72 /* raw_input styles */
72 73
73 74 div.raw_input {
74 75 padding-top: 0px;
75 76 padding-bottom: 0px;
76 77 height: 1em;
77 78 line-height: 1em;
78 79 font-family: @monoFontFamily;
79 80 }
80 81 span.input_prompt {
81 82 font-family: inherit;
82 83 }
83 84 input.raw_input {
84 85 font-family: inherit;
85 86 font-size: inherit;
86 87 color: inherit;
87 88 width: auto;
88 89 margin: -2px 0px 0px 1px;
89 90 padding-left: 1px;
90 91 padding-top: 2px;
91 92 height: 1em;
92 93 }
93 94
94 95 p.p-space {
95 96 margin-bottom: 10px;
96 97 } No newline at end of file
@@ -1,1393 +1,1393
1 1 .clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0;}
2 2 .clearfix:after{clear:both;}
3 3 .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
4 4 .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
5 5 article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
6 6 audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
7 7 audio:not([controls]){display:none;}
8 8 html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
9 9 a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
10 10 a:hover,a:active{outline:0;}
11 11 sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
12 12 sup{top:-0.5em;}
13 13 sub{bottom:-0.25em;}
14 14 img{max-width:100%;width:auto\9;height:auto;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;}
15 15 #map_canvas img,.google-maps img{max-width:none;}
16 16 button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;}
17 17 button,input{*overflow:visible;line-height:normal;}
18 18 button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;}
19 19 button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}
20 20 label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;}
21 21 input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;}
22 22 input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
23 23 textarea{overflow:auto;vertical-align:top;}
24 24 @media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;} a,a:visited{text-decoration:underline;} a[href]:after{content:" (" attr(href) ")";} abbr[title]:after{content:" (" attr(title) ")";} .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} pre,blockquote{border:1px solid #999;page-break-inside:avoid;} thead{display:table-header-group;} tr,img{page-break-inside:avoid;} img{max-width:100% !important;} @page {margin:0.5cm;}p,h2,h3{orphans:3;widows:3;} h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:20px;color:#000000;background-color:#ffffff;}
25 25 a{color:#0088cc;text-decoration:none;}
26 26 a:hover,a:focus{color:#005580;text-decoration:underline;}
27 27 .img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
28 28 .img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);}
29 29 .img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;}
30 30 .row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";line-height:0;}
31 31 .row:after{clear:both;}
32 32 [class*="span"]{float:left;min-height:1px;margin-left:20px;}
33 33 .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
34 34 .span12{width:940px;}
35 35 .span11{width:860px;}
36 36 .span10{width:780px;}
37 37 .span9{width:700px;}
38 38 .span8{width:620px;}
39 39 .span7{width:540px;}
40 40 .span6{width:460px;}
41 41 .span5{width:380px;}
42 42 .span4{width:300px;}
43 43 .span3{width:220px;}
44 44 .span2{width:140px;}
45 45 .span1{width:60px;}
46 46 .offset12{margin-left:980px;}
47 47 .offset11{margin-left:900px;}
48 48 .offset10{margin-left:820px;}
49 49 .offset9{margin-left:740px;}
50 50 .offset8{margin-left:660px;}
51 51 .offset7{margin-left:580px;}
52 52 .offset6{margin-left:500px;}
53 53 .offset5{margin-left:420px;}
54 54 .offset4{margin-left:340px;}
55 55 .offset3{margin-left:260px;}
56 56 .offset2{margin-left:180px;}
57 57 .offset1{margin-left:100px;}
58 58 .row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";line-height:0;}
59 59 .row-fluid:after{clear:both;}
60 60 .row-fluid [class*="span"]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;}
61 61 .row-fluid [class*="span"]:first-child{margin-left:0;}
62 62 .row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;}
63 63 .row-fluid .span12{width:100%;*width:99.94680851063829%;}
64 64 .row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;}
65 65 .row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;}
66 66 .row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;}
67 67 .row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;}
68 68 .row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;}
69 69 .row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;}
70 70 .row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;}
71 71 .row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;}
72 72 .row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;}
73 73 .row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;}
74 74 .row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;}
75 75 .row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;}
76 76 .row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;}
77 77 .row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;}
78 78 .row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;}
79 79 .row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;}
80 80 .row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;}
81 81 .row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;}
82 82 .row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;}
83 83 .row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;}
84 84 .row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;}
85 85 .row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;}
86 86 .row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;}
87 87 .row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;}
88 88 .row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;}
89 89 .row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;}
90 90 .row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;}
91 91 .row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;}
92 92 .row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;}
93 93 .row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;}
94 94 .row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;}
95 95 .row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;}
96 96 .row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;}
97 97 .row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;}
98 98 .row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;}
99 99 [class*="span"].hide,.row-fluid [class*="span"].hide{display:none;}
100 100 [class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;}
101 101 .container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";line-height:0;}
102 102 .container:after{clear:both;}
103 103 .container-fluid{padding-right:20px;padding-left:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0;}
104 104 .container-fluid:after{clear:both;}
105 105 p{margin:0 0 10px;}
106 106 .lead{margin-bottom:20px;font-size:19.5px;font-weight:200;line-height:30px;}
107 107 small{font-size:85%;}
108 108 strong{font-weight:bold;}
109 109 em{font-style:italic;}
110 110 cite{font-style:normal;}
111 111 .muted{color:#999999;}
112 112 a.muted:hover,a.muted:focus{color:#808080;}
113 113 .text-warning{color:#c09853;}
114 114 a.text-warning:hover,a.text-warning:focus{color:#a47e3c;}
115 115 .text-error{color:#b94a48;}
116 116 a.text-error:hover,a.text-error:focus{color:#953b39;}
117 117 .text-info{color:#3a87ad;}
118 118 a.text-info:hover,a.text-info:focus{color:#2d6987;}
119 119 .text-success{color:#468847;}
120 120 a.text-success:hover,a.text-success:focus{color:#356635;}
121 121 .text-left{text-align:left;}
122 122 .text-right{text-align:right;}
123 123 .text-center{text-align:center;}
124 124 h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999999;}
125 125 h1,h2,h3{line-height:40px;}
126 126 h1{font-size:35.75px;}
127 127 h2{font-size:29.25px;}
128 128 h3{font-size:22.75px;}
129 129 h4{font-size:16.25px;}
130 130 h5{font-size:13px;}
131 131 h6{font-size:11.049999999999999px;}
132 132 h1 small{font-size:22.75px;}
133 133 h2 small{font-size:16.25px;}
134 134 h3 small{font-size:13px;}
135 135 h4 small{font-size:13px;}
136 136 .page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eeeeee;}
137 137 ul,ol{padding:0;margin:0 0 10px 25px;}
138 138 ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
139 139 li{line-height:20px;}
140 140 ul.unstyled,ol.unstyled{margin-left:0;list-style:none;}
141 141 ul.inline,ol.inline{margin-left:0;list-style:none;}ul.inline>li,ol.inline>li{display:inline-block;*display:inline;*zoom:1;padding-left:5px;padding-right:5px;}
142 142 dl{margin-bottom:20px;}
143 143 dt,dd{line-height:20px;}
144 144 dt{font-weight:bold;}
145 145 dd{margin-left:10px;}
146 146 .dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;content:"";line-height:0;}
147 147 .dl-horizontal:after{clear:both;}
148 148 .dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
149 149 .dl-horizontal dd{margin-left:180px;}
150 150 hr{margin:20px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;}
151 151 abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999;}
152 152 abbr.initialism{font-size:90%;text-transform:uppercase;}
153 153 blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16.25px;font-weight:300;line-height:1.25;}
154 154 blockquote small{display:block;line-height:20px;color:#999999;}blockquote small:before{content:'\2014 \00A0';}
155 155 blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eeeeee;border-left:0;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;}
156 156 blockquote.pull-right small:before{content:'';}
157 157 blockquote.pull-right small:after{content:'\00A0 \2014';}
158 158 q:before,q:after,blockquote:before,blockquote:after{content:"";}
159 159 address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;}
160 160 code,pre{padding:0 3px 2px;font-family:monospace;font-size:11px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
161 161 code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;white-space:nowrap;}
162 162 pre{display:block;padding:9.5px;margin:0 0 10px;font-size:12px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}pre.prettyprint{margin-bottom:20px;}
163 163 pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;}
164 164 .pre-scrollable{max-height:340px;overflow-y:scroll;}
165 165 form{margin:0 0 20px;}
166 166 fieldset{padding:0;margin:0;border:0;}
167 167 legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:19.5px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #e5e5e5;}legend small{font-size:15px;color:#999999;}
168 168 label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:20px;}
169 169 input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
170 170 label{display:block;margin-bottom:5px;}
171 171 select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:13px;line-height:20px;color:#555555;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;vertical-align:middle;}
172 172 input,textarea,.uneditable-input{width:206px;}
173 173 textarea{height:auto;}
174 174 textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);}
175 175 input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;}
176 176 input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;}
177 177 select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;}
178 178 select{width:220px;border:1px solid #cccccc;background-color:#ffffff;}
179 179 select[multiple],select[size]{height:auto;}
180 180 select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
181 181 .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;}
182 182 .uneditable-input{overflow:hidden;white-space:nowrap;}
183 183 .uneditable-textarea{width:auto;height:auto;}
184 184 input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;}
185 185 input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;}
186 186 input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;}
187 187 .radio,.checkbox{min-height:20px;padding-left:20px;}
188 188 .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;}
189 189 .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}
190 190 .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;}
191 191 .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;}
192 192 .input-mini{width:60px;}
193 193 .input-small{width:90px;}
194 194 .input-medium{width:150px;}
195 195 .input-large{width:210px;}
196 196 .input-xlarge{width:270px;}
197 197 .input-xxlarge{width:530px;}
198 198 input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;}
199 199 .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;}
200 200 input,textarea,.uneditable-input{margin-left:0;}
201 201 .controls-row [class*="span"]+[class*="span"]{margin-left:20px;}
202 202 input.span12,textarea.span12,.uneditable-input.span12{width:926px;}
203 203 input.span11,textarea.span11,.uneditable-input.span11{width:846px;}
204 204 input.span10,textarea.span10,.uneditable-input.span10{width:766px;}
205 205 input.span9,textarea.span9,.uneditable-input.span9{width:686px;}
206 206 input.span8,textarea.span8,.uneditable-input.span8{width:606px;}
207 207 input.span7,textarea.span7,.uneditable-input.span7{width:526px;}
208 208 input.span6,textarea.span6,.uneditable-input.span6{width:446px;}
209 209 input.span5,textarea.span5,.uneditable-input.span5{width:366px;}
210 210 input.span4,textarea.span4,.uneditable-input.span4{width:286px;}
211 211 input.span3,textarea.span3,.uneditable-input.span3{width:206px;}
212 212 input.span2,textarea.span2,.uneditable-input.span2{width:126px;}
213 213 input.span1,textarea.span1,.uneditable-input.span1{width:46px;}
214 214 .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;}
215 215 .controls-row:after{clear:both;}
216 216 .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;}
217 217 .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;}
218 218 input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;}
219 219 input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;}
220 220 .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;}
221 221 .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;}
222 222 .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;}
223 223 .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;}
224 224 .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;}
225 225 .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;}
226 226 .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;}
227 227 .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;}
228 228 .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;}
229 229 .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;}
230 230 .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;}
231 231 .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;}
232 232 .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;}
233 233 .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;}
234 234 .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;}
235 235 .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;}
236 236 input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
237 237 .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;}
238 238 .form-actions:after{clear:both;}
239 239 .help-block,.help-inline{color:#262626;}
240 240 .help-block{display:block;margin-bottom:10px;}
241 241 .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
242 242 .input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:13px;}
243 243 .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;}
244 244 .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:13px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;}
245 245 .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
246 246 .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;}
247 247 .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
248 248 .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
249 249 .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
250 250 .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;}
251 251 .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
252 252 .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
253 253 .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
254 254 .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
255 255 .input-prepend.input-append .btn-group:first-child{margin-left:0;}
256 256 input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
257 257 .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
258 258 .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;}
259 259 .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;}
260 260 .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;}
261 261 .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;}
262 262 .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;}
263 263 .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;}
264 264 .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;}
265 265 .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;}
266 266 .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;}
267 267 .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;}
268 268 .control-group{margin-bottom:10px;}
269 269 legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;}
270 270 .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;}
271 271 .form-horizontal .control-group:after{clear:both;}
272 272 .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;}
273 273 .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;}
274 274 .form-horizontal .help-block{margin-bottom:0;}
275 275 .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;}
276 276 .form-horizontal .form-actions{padding-left:180px;}
277 277 table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;}
278 278 .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;}
279 279 .table th{font-weight:bold;}
280 280 .table thead th{vertical-align:bottom;}
281 281 .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;}
282 282 .table tbody+tbody{border-top:2px solid #dddddd;}
283 283 .table .table{background-color:#ffffff;}
284 284 .table-condensed th,.table-condensed td{padding:4px 5px;}
285 285 .table-bordered{border:1px solid #dddddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;}
286 286 .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;}
287 287 .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;}
288 288 .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;}
289 289 .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
290 290 .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
291 291 .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;}
292 292 .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;}
293 293 .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;}
294 294 .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;}
295 295 .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;}
296 296 .table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5;}
297 297 table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;}
298 298 .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;}
299 299 .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;}
300 300 .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;}
301 301 .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;}
302 302 .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;}
303 303 .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;}
304 304 .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;}
305 305 .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;}
306 306 .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;}
307 307 .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;}
308 308 .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;}
309 309 .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;}
310 310 .table tbody tr.success>td{background-color:#dff0d8;}
311 311 .table tbody tr.error>td{background-color:#f2dede;}
312 312 .table tbody tr.warning>td{background-color:#fcf8e3;}
313 313 .table tbody tr.info>td{background-color:#d9edf7;}
314 314 .table-hover tbody tr.success:hover>td{background-color:#d0e9c6;}
315 315 .table-hover tbody tr.error:hover>td{background-color:#ebcccc;}
316 316 .table-hover tbody tr.warning:hover>td{background-color:#faf2cc;}
317 317 .table-hover tbody tr.info:hover>td{background-color:#c4e3f3;}
318 318 [class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;margin-top:1px;}
319 319 .icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../img/glyphicons-halflings-white.png");}
320 320 .icon-glass{background-position:0 0;}
321 321 .icon-music{background-position:-24px 0;}
322 322 .icon-search{background-position:-48px 0;}
323 323 .icon-envelope{background-position:-72px 0;}
324 324 .icon-heart{background-position:-96px 0;}
325 325 .icon-star{background-position:-120px 0;}
326 326 .icon-star-empty{background-position:-144px 0;}
327 327 .icon-user{background-position:-168px 0;}
328 328 .icon-film{background-position:-192px 0;}
329 329 .icon-th-large{background-position:-216px 0;}
330 330 .icon-th{background-position:-240px 0;}
331 331 .icon-th-list{background-position:-264px 0;}
332 332 .icon-ok{background-position:-288px 0;}
333 333 .icon-remove{background-position:-312px 0;}
334 334 .icon-zoom-in{background-position:-336px 0;}
335 335 .icon-zoom-out{background-position:-360px 0;}
336 336 .icon-off{background-position:-384px 0;}
337 337 .icon-signal{background-position:-408px 0;}
338 338 .icon-cog{background-position:-432px 0;}
339 339 .icon-trash{background-position:-456px 0;}
340 340 .icon-home{background-position:0 -24px;}
341 341 .icon-file{background-position:-24px -24px;}
342 342 .icon-time{background-position:-48px -24px;}
343 343 .icon-road{background-position:-72px -24px;}
344 344 .icon-download-alt{background-position:-96px -24px;}
345 345 .icon-download{background-position:-120px -24px;}
346 346 .icon-upload{background-position:-144px -24px;}
347 347 .icon-inbox{background-position:-168px -24px;}
348 348 .icon-play-circle{background-position:-192px -24px;}
349 349 .icon-repeat{background-position:-216px -24px;}
350 350 .icon-refresh{background-position:-240px -24px;}
351 351 .icon-list-alt{background-position:-264px -24px;}
352 352 .icon-lock{background-position:-287px -24px;}
353 353 .icon-flag{background-position:-312px -24px;}
354 354 .icon-headphones{background-position:-336px -24px;}
355 355 .icon-volume-off{background-position:-360px -24px;}
356 356 .icon-volume-down{background-position:-384px -24px;}
357 357 .icon-volume-up{background-position:-408px -24px;}
358 358 .icon-qrcode{background-position:-432px -24px;}
359 359 .icon-barcode{background-position:-456px -24px;}
360 360 .icon-tag{background-position:0 -48px;}
361 361 .icon-tags{background-position:-25px -48px;}
362 362 .icon-book{background-position:-48px -48px;}
363 363 .icon-bookmark{background-position:-72px -48px;}
364 364 .icon-print{background-position:-96px -48px;}
365 365 .icon-camera{background-position:-120px -48px;}
366 366 .icon-font{background-position:-144px -48px;}
367 367 .icon-bold{background-position:-167px -48px;}
368 368 .icon-italic{background-position:-192px -48px;}
369 369 .icon-text-height{background-position:-216px -48px;}
370 370 .icon-text-width{background-position:-240px -48px;}
371 371 .icon-align-left{background-position:-264px -48px;}
372 372 .icon-align-center{background-position:-288px -48px;}
373 373 .icon-align-right{background-position:-312px -48px;}
374 374 .icon-align-justify{background-position:-336px -48px;}
375 375 .icon-list{background-position:-360px -48px;}
376 376 .icon-indent-left{background-position:-384px -48px;}
377 377 .icon-indent-right{background-position:-408px -48px;}
378 378 .icon-facetime-video{background-position:-432px -48px;}
379 379 .icon-picture{background-position:-456px -48px;}
380 380 .icon-pencil{background-position:0 -72px;}
381 381 .icon-map-marker{background-position:-24px -72px;}
382 382 .icon-adjust{background-position:-48px -72px;}
383 383 .icon-tint{background-position:-72px -72px;}
384 384 .icon-edit{background-position:-96px -72px;}
385 385 .icon-share{background-position:-120px -72px;}
386 386 .icon-check{background-position:-144px -72px;}
387 387 .icon-move{background-position:-168px -72px;}
388 388 .icon-step-backward{background-position:-192px -72px;}
389 389 .icon-fast-backward{background-position:-216px -72px;}
390 390 .icon-backward{background-position:-240px -72px;}
391 391 .icon-play{background-position:-264px -72px;}
392 392 .icon-pause{background-position:-288px -72px;}
393 393 .icon-stop{background-position:-312px -72px;}
394 394 .icon-forward{background-position:-336px -72px;}
395 395 .icon-fast-forward{background-position:-360px -72px;}
396 396 .icon-step-forward{background-position:-384px -72px;}
397 397 .icon-eject{background-position:-408px -72px;}
398 398 .icon-chevron-left{background-position:-432px -72px;}
399 399 .icon-chevron-right{background-position:-456px -72px;}
400 400 .icon-plus-sign{background-position:0 -96px;}
401 401 .icon-minus-sign{background-position:-24px -96px;}
402 402 .icon-remove-sign{background-position:-48px -96px;}
403 403 .icon-ok-sign{background-position:-72px -96px;}
404 404 .icon-question-sign{background-position:-96px -96px;}
405 405 .icon-info-sign{background-position:-120px -96px;}
406 406 .icon-screenshot{background-position:-144px -96px;}
407 407 .icon-remove-circle{background-position:-168px -96px;}
408 408 .icon-ok-circle{background-position:-192px -96px;}
409 409 .icon-ban-circle{background-position:-216px -96px;}
410 410 .icon-arrow-left{background-position:-240px -96px;}
411 411 .icon-arrow-right{background-position:-264px -96px;}
412 412 .icon-arrow-up{background-position:-289px -96px;}
413 413 .icon-arrow-down{background-position:-312px -96px;}
414 414 .icon-share-alt{background-position:-336px -96px;}
415 415 .icon-resize-full{background-position:-360px -96px;}
416 416 .icon-resize-small{background-position:-384px -96px;}
417 417 .icon-plus{background-position:-408px -96px;}
418 418 .icon-minus{background-position:-433px -96px;}
419 419 .icon-asterisk{background-position:-456px -96px;}
420 420 .icon-exclamation-sign{background-position:0 -120px;}
421 421 .icon-gift{background-position:-24px -120px;}
422 422 .icon-leaf{background-position:-48px -120px;}
423 423 .icon-fire{background-position:-72px -120px;}
424 424 .icon-eye-open{background-position:-96px -120px;}
425 425 .icon-eye-close{background-position:-120px -120px;}
426 426 .icon-warning-sign{background-position:-144px -120px;}
427 427 .icon-plane{background-position:-168px -120px;}
428 428 .icon-calendar{background-position:-192px -120px;}
429 429 .icon-random{background-position:-216px -120px;width:16px;}
430 430 .icon-comment{background-position:-240px -120px;}
431 431 .icon-magnet{background-position:-264px -120px;}
432 432 .icon-chevron-up{background-position:-288px -120px;}
433 433 .icon-chevron-down{background-position:-313px -119px;}
434 434 .icon-retweet{background-position:-336px -120px;}
435 435 .icon-shopping-cart{background-position:-360px -120px;}
436 436 .icon-folder-close{background-position:-384px -120px;width:16px;}
437 437 .icon-folder-open{background-position:-408px -120px;width:16px;}
438 438 .icon-resize-vertical{background-position:-432px -119px;}
439 439 .icon-resize-horizontal{background-position:-456px -118px;}
440 440 .icon-hdd{background-position:0 -144px;}
441 441 .icon-bullhorn{background-position:-24px -144px;}
442 442 .icon-bell{background-position:-48px -144px;}
443 443 .icon-certificate{background-position:-72px -144px;}
444 444 .icon-thumbs-up{background-position:-96px -144px;}
445 445 .icon-thumbs-down{background-position:-120px -144px;}
446 446 .icon-hand-right{background-position:-144px -144px;}
447 447 .icon-hand-left{background-position:-168px -144px;}
448 448 .icon-hand-up{background-position:-192px -144px;}
449 449 .icon-hand-down{background-position:-216px -144px;}
450 450 .icon-circle-arrow-right{background-position:-240px -144px;}
451 451 .icon-circle-arrow-left{background-position:-264px -144px;}
452 452 .icon-circle-arrow-up{background-position:-288px -144px;}
453 453 .icon-circle-arrow-down{background-position:-312px -144px;}
454 454 .icon-globe{background-position:-336px -144px;}
455 455 .icon-wrench{background-position:-360px -144px;}
456 456 .icon-tasks{background-position:-384px -144px;}
457 457 .icon-filter{background-position:-408px -144px;}
458 458 .icon-briefcase{background-position:-432px -144px;}
459 459 .icon-fullscreen{background-position:-456px -144px;}
460 460 .dropup,.dropdown{position:relative;}
461 461 .dropdown-toggle{*margin-bottom:-3px;}
462 462 .dropdown-toggle:active,.open .dropdown-toggle{outline:0;}
463 463 .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";}
464 464 .dropdown .caret{margin-top:8px;margin-left:2px;}
465 465 .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;}
466 466 .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
467 467 .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;}
468 468 .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
469 469 .dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
470 470 .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;}
471 471 .dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;}
472 472 .open{*z-index:1000;}.open>.dropdown-menu{display:block;}
473 473 .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990;}
474 474 .pull-right>.dropdown-menu{right:0;left:auto;}
475 475 .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";}
476 476 .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}
477 477 .dropdown-submenu{position:relative;}
478 478 .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
479 479 .dropdown-submenu:hover>.dropdown-menu{display:block;}
480 480 .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;}
481 481 .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
482 482 .dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
483 483 .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
484 484 .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;}
485 485 .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
486 486 .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);}
487 487 .well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
488 488 .well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
489 489 .fade{opacity:0;-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;}.fade.in{opacity:1;}
490 490 .collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;}.collapse.in{height:auto;}
491 491 .close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover,.close:focus{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
492 492 button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
493 493 .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:13px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #cccccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;}
494 494 .btn:active,.btn.active{background-color:#cccccc \9;}
495 495 .btn:first-child{*margin-left:0;}
496 496 .btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
497 497 .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
498 498 .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
499 499 .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
500 500 .btn-large{padding:11px 19px;font-size:16.25px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
501 501 .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;}
502 502 .btn-small{padding:2px 10px;font-size:11.049999999999999px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
503 503 .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;}
504 504 .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;}
505 505 .btn-mini{padding:0 6px;font-size:9.75px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
506 506 .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
507 507 .btn-block+.btn-block{margin-top:5px;}
508 508 input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;}
509 509 .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);}
510 510 .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;}
511 511 .btn-primary:active,.btn-primary.active{background-color:#003399 \9;}
512 512 .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;}
513 513 .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;}
514 514 .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;}
515 515 .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;}
516 516 .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;}
517 517 .btn-success:active,.btn-success.active{background-color:#408140 \9;}
518 518 .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;}
519 519 .btn-info:active,.btn-info.active{background-color:#24748c \9;}
520 520 .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;}
521 521 .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;}
522 522 button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;}
523 523 button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;}
524 524 button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;}
525 525 button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;}
526 526 .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
527 527 .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
528 528 .btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent;}
529 529 .btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333333;text-decoration:none;}
530 530 .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;}
531 531 .btn-group+.btn-group{margin-left:5px;}
532 532 .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;}
533 533 .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
534 534 .btn-group>.btn+.btn{margin-left:-1px;}
535 535 .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:13px;}
536 536 .btn-group>.btn-mini{font-size:9.75px;}
537 537 .btn-group>.btn-small{font-size:11.049999999999999px;}
538 538 .btn-group>.btn-large{font-size:16.25px;}
539 539 .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
540 540 .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
541 541 .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
542 542 .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
543 543 .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;}
544 544 .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}
545 545 .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;}
546 546 .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;}
547 547 .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;}
548 548 .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;}
549 549 .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
550 550 .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;}
551 551 .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;}
552 552 .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;}
553 553 .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;}
554 554 .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;}
555 555 .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;}
556 556 .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;}
557 557 .btn .caret{margin-top:8px;margin-left:0;}
558 558 .btn-large .caret{margin-top:6px;}
559 559 .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;}
560 560 .btn-mini .caret,.btn-small .caret{margin-top:8px;}
561 561 .dropup .btn-large .caret{border-bottom-width:5px;}
562 562 .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
563 563 .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;}
564 564 .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
565 565 .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;}
566 566 .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}
567 567 .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}
568 568 .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;}
569 569 .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;}
570 570 .alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
571 571 .alert,.alert h4{color:#c09853;}
572 572 .alert h4{margin:0;}
573 573 .alert .close{position:relative;top:-2px;right:-21px;line-height:20px;}
574 574 .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;}
575 575 .alert-success h4{color:#468847;}
576 576 .alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;}
577 577 .alert-danger h4,.alert-error h4{color:#b94a48;}
578 578 .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;}
579 579 .alert-info h4{color:#3a87ad;}
580 580 .alert-block{padding-top:14px;padding-bottom:14px;}
581 581 .alert-block>p,.alert-block>ul{margin-bottom:0;}
582 582 .alert-block p+p{margin-top:5px;}
583 583 .nav{margin-left:0;margin-bottom:20px;list-style:none;}
584 584 .nav>li>a{display:block;}
585 585 .nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eeeeee;}
586 586 .nav>li>a>img{max-width:none;}
587 587 .nav>.pull-right{float:right;}
588 588 .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;}
589 589 .nav li+.nav-header{margin-top:9px;}
590 590 .nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;}
591 591 .nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);}
592 592 .nav-list>li>a{padding:3px 15px;}
593 593 .nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;}
594 594 .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;}
595 595 .nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
596 596 .nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";line-height:0;}
597 597 .nav-tabs:after,.nav-pills:after{clear:both;}
598 598 .nav-tabs>li,.nav-pills>li{float:left;}
599 599 .nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;}
600 600 .nav-tabs{border-bottom:1px solid #ddd;}
601 601 .nav-tabs>li{margin-bottom:-1px;}
602 602 .nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #dddddd;}
603 603 .nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}
604 604 .nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
605 605 .nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#ffffff;background-color:#0088cc;}
606 606 .nav-stacked>li{float:none;}
607 607 .nav-stacked>li>a{margin-right:0;}
608 608 .nav-tabs.nav-stacked{border-bottom:0;}
609 609 .nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
610 610 .nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;}
611 611 .nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
612 612 .nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{border-color:#ddd;z-index:2;}
613 613 .nav-pills.nav-stacked>li>a{margin-bottom:3px;}
614 614 .nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;}
615 615 .nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;}
616 616 .nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
617 617 .nav .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;}
618 618 .nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580;}
619 619 .nav-tabs .dropdown-toggle .caret{margin-top:8px;}
620 620 .nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;}
621 621 .nav-tabs .active .dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;}
622 622 .nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer;}
623 623 .nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#ffffff;background-color:#999999;border-color:#999999;}
624 624 .nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);}
625 625 .tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999999;}
626 626 .tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";line-height:0;}
627 627 .tabbable:after{clear:both;}
628 628 .tab-content{overflow:auto;}
629 629 .tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;}
630 630 .tab-content>.tab-pane,.pill-content>.pill-pane{display:none;}
631 631 .tab-content>.active,.pill-content>.active{display:block;}
632 632 .tabs-below>.nav-tabs{border-top:1px solid #ddd;}
633 633 .tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;}
634 634 .tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-bottom-color:transparent;border-top-color:#ddd;}
635 635 .tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd;}
636 636 .tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;}
637 637 .tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;}
638 638 .tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;}
639 639 .tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
640 640 .tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eeeeee #dddddd #eeeeee #eeeeee;}
641 641 .tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;}
642 642 .tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;}
643 643 .tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
644 644 .tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eeeeee #eeeeee #eeeeee #dddddd;}
645 645 .tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;}
646 646 .nav>.disabled>a{color:#999999;}
647 647 .nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;background-color:transparent;cursor:default;}
648 648 .navbar{overflow:visible;margin-bottom:20px;*position:relative;*z-index:2;}
649 649 .navbar-inner{min-height:40px;padding-left:20px;padding-right:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top, #ffffff, #f2f2f2);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));background-image:-webkit-linear-gradient(top, #ffffff, #f2f2f2);background-image:-o-linear-gradient(top, #ffffff, #f2f2f2);background-image:linear-gradient(to bottom, #ffffff, #f2f2f2);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);box-shadow:0 1px 4px rgba(0, 0, 0, 0.065);*zoom:1;}.navbar-inner:before,.navbar-inner:after{display:table;content:"";line-height:0;}
650 650 .navbar-inner:after{clear:both;}
651 651 .navbar .container{width:auto;}
652 652 .nav-collapse.collapse{height:auto;overflow:visible;}
653 653 .navbar .brand{float:left;display:block;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777777;text-shadow:0 1px 0 #ffffff;}.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;}
654 654 .navbar-text{margin-bottom:0;line-height:40px;color:#777777;}
655 655 .navbar-link{color:#777777;}.navbar-link:hover,.navbar-link:focus{color:#333333;}
656 656 .navbar .divider-vertical{height:40px;margin:0 9px;border-left:1px solid #f2f2f2;border-right:1px solid #ffffff;}
657 657 .navbar .btn,.navbar .btn-group{margin-top:5px;}
658 658 .navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0;}
659 659 .navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";line-height:0;}
660 660 .navbar-form:after{clear:both;}
661 661 .navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;}
662 662 .navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;}
663 663 .navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;}
664 664 .navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;}
665 665 .navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0;}.navbar-search .search-query{margin-bottom:0;padding:4px 14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
666 666 .navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
667 667 .navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;}
668 668 .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;}
669 669 .navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;}
670 670 .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
671 671 .navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
672 672 .navbar-fixed-top{top:0;}
673 673 .navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);box-shadow:0 1px 10px rgba(0,0,0,.1);}
674 674 .navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,.1);box-shadow:0 -1px 10px rgba(0,0,0,.1);}
675 675 .navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;}
676 676 .navbar .nav.pull-right{float:right;margin-right:0;}
677 677 .navbar .nav>li{float:left;}
678 678 .navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777777;text-decoration:none;text-shadow:0 1px 0 #ffffff;}
679 679 .navbar .nav .dropdown-toggle .caret{margin-top:8px;}
680 680 .navbar .nav>li>a:focus,.navbar .nav>li>a:hover{background-color:transparent;color:#333333;text-decoration:none;}
681 681 .navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);-moz-box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 8px rgba(0, 0, 0, 0.125);}
682 682 .navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#ededed;background-image:-moz-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));background-image:-webkit-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:-o-linear-gradient(top, #f2f2f2, #e5e5e5);background-image:linear-gradient(to bottom, #f2f2f2, #e5e5e5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e5e5e5;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);}.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#ffffff;background-color:#e5e5e5;*background-color:#d9d9d9;}
683 683 .navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#cccccc \9;}
684 684 .navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);}
685 685 .btn-navbar .icon-bar+.icon-bar{margin-top:3px;}
686 686 .navbar .nav>li>.dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;}
687 687 .navbar .nav>li>.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;}
688 688 .navbar-fixed-bottom .nav>li>.dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;}
689 689 .navbar-fixed-bottom .nav>li>.dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;}
690 690 .navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333333;border-bottom-color:#333333;}
691 691 .navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{background-color:#e5e5e5;color:#555555;}
692 692 .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777777;border-bottom-color:#777777;}
693 693 .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555555;border-bottom-color:#555555;}
694 694 .navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{left:auto;right:0;}.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{left:auto;right:12px;}
695 695 .navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{left:auto;right:13px;}
696 696 .navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{left:auto;right:100%;margin-left:0;margin-right:-1px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
697 697 .navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top, #222222, #111111);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));background-image:-webkit-linear-gradient(top, #222222, #111111);background-image:-o-linear-gradient(top, #222222, #111111);background-image:linear-gradient(to bottom, #222222, #111111);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);border-color:#252525;}
698 698 .navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999999;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#ffffff;}
699 699 .navbar-inverse .brand{color:#999999;}
700 700 .navbar-inverse .navbar-text{color:#999999;}
701 701 .navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{background-color:transparent;color:#ffffff;}
702 702 .navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#ffffff;background-color:#111111;}
703 703 .navbar-inverse .navbar-link{color:#999999;}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#ffffff;}
704 704 .navbar-inverse .divider-vertical{border-left-color:#111111;border-right-color:#222222;}
705 705 .navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{background-color:#111111;color:#ffffff;}
706 706 .navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
707 707 .navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999999;border-bottom-color:#999999;}
708 708 .navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
709 709 .navbar-inverse .navbar-search .search-query{color:#ffffff;background-color:#515151;border-color:#111111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;}.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#cccccc;}
710 710 .navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#cccccc;}
711 711 .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;}
712 712 .navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
713 713 .navbar-inverse .btn-navbar{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e0e0e;background-image:-moz-linear-gradient(top, #151515, #040404);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));background-image:-webkit-linear-gradient(top, #151515, #040404);background-image:-o-linear-gradient(top, #151515, #040404);background-image:linear-gradient(to bottom, #151515, #040404);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);border-color:#040404 #040404 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#040404;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#ffffff;background-color:#040404;*background-color:#000000;}
714 714 .navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000000 \9;}
715 715 .breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.breadcrumb>li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;}.breadcrumb>li>.divider{padding:0 5px;color:#ccc;}
716 716 .breadcrumb>.active{color:#999999;}
717 717 .pagination{margin:20px 0;}
718 718 .pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);}
719 719 .pagination ul>li{display:inline;}
720 720 .pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#ffffff;border:1px solid #dddddd;border-left-width:0;}
721 721 .pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;}
722 722 .pagination ul>.active>a,.pagination ul>.active>span{color:#999999;cursor:default;}
723 723 .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999999;background-color:transparent;cursor:default;}
724 724 .pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
725 725 .pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
726 726 .pagination-centered{text-align:center;}
727 727 .pagination-right{text-align:right;}
728 728 .pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:16.25px;}
729 729 .pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
730 730 .pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
731 731 .pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-top-left-radius:3px;-moz-border-radius-topleft:3px;border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;-moz-border-radius-bottomleft:3px;border-bottom-left-radius:3px;}
732 732 .pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;}
733 733 .pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.049999999999999px;}
734 734 .pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:9.75px;}
735 735 .pager{margin:20px 0;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";line-height:0;}
736 736 .pager:after{clear:both;}
737 737 .pager li{display:inline;}
738 738 .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
739 739 .pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5;}
740 740 .pager .next>a,.pager .next>span{float:right;}
741 741 .pager .previous>a,.pager .previous>span{float:left;}
742 742 .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999999;background-color:#fff;cursor:default;}
743 743 .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;}
744 744 .modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);}
745 745 .modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:none;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;}
746 746 .modal.fade.in{top:10%;}
747 747 .modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;}
748 748 .modal-header h3{margin:0;line-height:30px;}
749 749 .modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px;}
750 750 .modal-form{margin-bottom:0;}
751 751 .modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0;}
752 752 .modal-footer:after{clear:both;}
753 753 .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;}
754 754 .modal-footer .btn-group .btn+.btn{margin-left:-1px;}
755 755 .modal-footer .btn-block+.btn-block{margin-left:0;}
756 756 .tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);}
757 757 .tooltip.top{margin-top:-3px;padding:5px 0;}
758 758 .tooltip.right{margin-left:3px;padding:0 5px;}
759 759 .tooltip.bottom{margin-top:3px;padding:5px 0;}
760 760 .tooltip.left{margin-left:-3px;padding:0 5px;}
761 761 .tooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
762 762 .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}
763 763 .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;}
764 764 .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;}
765 765 .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;}
766 766 .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;}
767 767 .popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#ffffff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);white-space:normal;}.popover.top{margin-top:-10px;}
768 768 .popover.right{margin-left:10px;}
769 769 .popover.bottom{margin-top:10px;}
770 770 .popover.left{margin-left:-10px;}
771 771 .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;}.popover-title:empty{display:none;}
772 772 .popover-content{padding:9px 14px;}
773 773 .popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;}
774 774 .popover .arrow{border-width:11px;}
775 775 .popover .arrow:after{border-width:10px;content:"";}
776 776 .popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);bottom:-11px;}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#ffffff;}
777 777 .popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);}.popover.right .arrow:after{left:1px;bottom:-10px;border-left-width:0;border-right-color:#ffffff;}
778 778 .popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25);top:-11px;}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#ffffff;}
779 779 .popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25);}.popover.left .arrow:after{right:1px;border-right-width:0;border-left-color:#ffffff;bottom:-10px;}
780 780 .thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";line-height:0;}
781 781 .thumbnails:after{clear:both;}
782 782 .row-fluid .thumbnails{margin-left:0;}
783 783 .thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;}
784 784 .thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);box-shadow:0 1px 3px rgba(0, 0, 0, 0.055);-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}
785 785 a.thumbnail:hover,a.thumbnail:focus{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);}
786 786 .thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;}
787 787 .thumbnail .caption{padding:9px;color:#555555;}
788 788 .media,.media-body{overflow:hidden;*overflow:visible;zoom:1;}
789 789 .media,.media .media{margin-top:15px;}
790 790 .media:first-child{margin-top:0;}
791 791 .media-object{display:block;}
792 792 .media-heading{margin:0 0 5px;}
793 793 .media>.pull-left{margin-right:10px;}
794 794 .media>.pull-right{margin-left:10px;}
795 795 .media-list{margin-left:0;list-style:none;}
796 796 .label,.badge{display:inline-block;padding:2px 4px;font-size:10.998px;font-weight:bold;line-height:14px;color:#ffffff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;}
797 797 .label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
798 798 .badge{padding-left:9px;padding-right:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}
799 799 .label:empty,.badge:empty{display:none;}
800 800 a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#ffffff;text-decoration:none;cursor:pointer;}
801 801 .label-important,.badge-important{background-color:#b94a48;}
802 802 .label-important[href],.badge-important[href]{background-color:#953b39;}
803 803 .label-warning,.badge-warning{background-color:#f89406;}
804 804 .label-warning[href],.badge-warning[href]{background-color:#c67605;}
805 805 .label-success,.badge-success{background-color:#468847;}
806 806 .label-success[href],.badge-success[href]{background-color:#356635;}
807 807 .label-info,.badge-info{background-color:#3a87ad;}
808 808 .label-info[href],.badge-info[href]{background-color:#2d6987;}
809 809 .label-inverse,.badge-inverse{background-color:#333333;}
810 810 .label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;}
811 811 .btn .label,.btn .badge{position:relative;top:-1px;}
812 812 .btn-mini .label,.btn-mini .badge{top:0;}
813 813 @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}@-o-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:40px 0;} to{background-position:0 0;}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(to bottom, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
814 814 .progress .bar{width:0%;height:100%;color:#ffffff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(to bottom, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;}
815 815 .progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);}
816 816 .progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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);background-image:-moz-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);background-image:-o-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);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);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;}
817 817 .progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;}
818 818 .progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(to bottom, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);}
819 819 .progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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);background-image:-moz-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);background-image:-o-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);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);}
820 820 .progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(to bottom, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);}
821 821 .progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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);background-image:-moz-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);background-image:-o-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);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);}
822 822 .progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(to bottom, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);}
823 823 .progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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);background-image:-moz-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);background-image:-o-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);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);}
824 824 .progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);}
825 825 .progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));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);background-image:-moz-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);background-image:-o-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);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);}
826 826 .accordion{margin-bottom:20px;}
827 827 .accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
828 828 .accordion-heading{border-bottom:0;}
829 829 .accordion-heading .accordion-toggle{display:block;padding:8px 15px;}
830 830 .accordion-toggle{cursor:pointer;}
831 831 .accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;}
832 832 .carousel{position:relative;margin-bottom:20px;line-height:1;}
833 833 .carousel-inner{overflow:hidden;width:100%;position:relative;}
834 834 .carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;}
835 835 .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;}
836 836 .carousel-inner>.active{left:0;}
837 837 .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;}
838 838 .carousel-inner>.next{left:100%;}
839 839 .carousel-inner>.prev{left:-100%;}
840 840 .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;}
841 841 .carousel-inner>.active.left{left:-100%;}
842 842 .carousel-inner>.active.right{left:100%;}
843 843 .carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;}
844 844 .carousel-control:hover,.carousel-control:focus{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);}
845 845 .carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;}.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255, 255, 255, 0.25);border-radius:5px;}
846 846 .carousel-indicators .active{background-color:#fff;}
847 847 .carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:15px;background:#333333;background:rgba(0, 0, 0, 0.75);}
848 848 .carousel-caption h4,.carousel-caption p{color:#ffffff;line-height:20px;}
849 849 .carousel-caption h4{margin:0 0 5px;}
850 850 .carousel-caption p{margin-bottom:0;}
851 851 .hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;}
852 852 .hero-unit li{line-height:30px;}
853 853 .pull-right{float:right;}
854 854 .pull-left{float:left;}
855 855 .hide{display:none;}
856 856 .show{display:block;}
857 857 .invisible{visibility:hidden;}
858 858 .affix{position:fixed;}
859 859 .border-box-sizing{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}
860 860 .corner-all{border-radius:4px;}
861 861 .hbox{display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
862 862 .hbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
863 863 .vbox{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;}
864 864 .vbox>*{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
865 865 .reverse{-webkit-box-direction:reverse;-moz-box-direction:reverse;box-direction:reverse;}
866 866 .box-flex0{-webkit-box-flex:0;-moz-box-flex:0;box-flex:0;}
867 867 .box-flex1{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;}
868 868 .box-flex{-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;}
869 869 .box-flex2{-webkit-box-flex:2;-moz-box-flex:2;box-flex:2;}
870 870 .box-group1{-webkit-box-flex-group:1;-moz-box-flex-group:1;box-flex-group:1;}
871 871 .box-group2{-webkit-box-flex-group:2;-moz-box-flex-group:2;box-flex-group:2;}
872 872 .start{-webkit-box-pack:start;-moz-box-pack:start;box-pack:start;}
873 873 .end{-webkit-box-pack:end;-moz-box-pack:end;box-pack:end;}
874 874 .center{-webkit-box-pack:center;-moz-box-pack:center;box-pack:center;}
875 875 body{background-color:white;position:absolute;left:0px;right:0px;top:0px;bottom:0px;overflow:visible;}
876 876 div#header{display:none;position:relative;height:40px;padding:5px;margin:0px;width:100%;}
877 877 span#ipython_notebook{position:absolute;padding:2px 2px 2px 5px;}
878 878 span#ipython_notebook img{font-family:Verdana,"Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;height:24px;text-decoration:none;display:inline;color:black;}
879 879 #site{width:100%;display:none;}
880 880 .ui-widget{font-family:"Lucinda Grande","Lucinda Sans Unicode",Helvetica,Arial,Verdana,sans-serif;}
881 881 .ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:"Lucinda Grande","Lucinda Sans Unicode",Helvetica,Arial,Verdana,sans-serif;}
882 882 .ui-button .ui-button-text{padding:0.2em 0.8em;font-size:77%;}
883 883 input.ui-button{padding:0.3em 0.9em;}
884 884 span#login_widget{float:right;}
885 885 @font-face{font-family:'FontAwesome';src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?v=3.1.0');src:url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../components/font-awesome/build/assets/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;}
886 886 [class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;}
887 887 .icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;}
888 888 a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline;}
889 889 [class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em;}
890 890 ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em;}ul.icons-ul>li .icon-li{width:0.7142857142857143em;display:inline-block;text-align:center;}
891 891 [class^="icon-"].hide,[class*=" icon-"].hide{display:none;}
892 892 .icon-muted{color:#eeeeee;}
893 893 .icon-light{color:#ffffff;}
894 894 .icon-dark{color:#333333;}
895 895 .icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
896 896 .icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
897 897 .icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
898 898 .icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
899 899 .icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;}
900 900 .pull-right{float:right;}
901 901 .pull-left{float:left;}
902 902 [class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;}
903 903 [class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;}
904 904 [class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;}
905 905 .icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;}
906 906 .btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;}
907 907 .btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;}
908 908 .nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;}
909 909 .btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;}
910 910 .btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;}
911 911 .btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;}
912 912 .btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;}
913 913 .btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;}
914 914 .btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;}
915 915 .icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;}
916 916 .icon-stack .icon-stack-base{font-size:2em;*line-height:1em;}
917 917 .icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}
918 918 @-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}
919 919 .icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);}
920 920 .icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
921 921 .icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);}
922 922 .icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);}
923 923 .icon-glass:before{content:"\f000";}
924 924 .icon-music:before{content:"\f001";}
925 925 .icon-search:before{content:"\f002";}
926 926 .icon-envelope:before{content:"\f003";}
927 927 .icon-heart:before{content:"\f004";}
928 928 .icon-star:before{content:"\f005";}
929 929 .icon-star-empty:before{content:"\f006";}
930 930 .icon-user:before{content:"\f007";}
931 931 .icon-film:before{content:"\f008";}
932 932 .icon-th-large:before{content:"\f009";}
933 933 .icon-th:before{content:"\f00a";}
934 934 .icon-th-list:before{content:"\f00b";}
935 935 .icon-ok:before{content:"\f00c";}
936 936 .icon-remove:before{content:"\f00d";}
937 937 .icon-zoom-in:before{content:"\f00e";}
938 938 .icon-zoom-out:before{content:"\f010";}
939 939 .icon-off:before{content:"\f011";}
940 940 .icon-signal:before{content:"\f012";}
941 941 .icon-cog:before{content:"\f013";}
942 942 .icon-trash:before{content:"\f014";}
943 943 .icon-home:before{content:"\f015";}
944 944 .icon-file:before{content:"\f016";}
945 945 .icon-time:before{content:"\f017";}
946 946 .icon-road:before{content:"\f018";}
947 947 .icon-download-alt:before{content:"\f019";}
948 948 .icon-download:before{content:"\f01a";}
949 949 .icon-upload:before{content:"\f01b";}
950 950 .icon-inbox:before{content:"\f01c";}
951 951 .icon-play-circle:before{content:"\f01d";}
952 952 .icon-repeat:before,.icon-rotate-right:before{content:"\f01e";}
953 953 .icon-refresh:before{content:"\f021";}
954 954 .icon-list-alt:before{content:"\f022";}
955 955 .icon-lock:before{content:"\f023";}
956 956 .icon-flag:before{content:"\f024";}
957 957 .icon-headphones:before{content:"\f025";}
958 958 .icon-volume-off:before{content:"\f026";}
959 959 .icon-volume-down:before{content:"\f027";}
960 960 .icon-volume-up:before{content:"\f028";}
961 961 .icon-qrcode:before{content:"\f029";}
962 962 .icon-barcode:before{content:"\f02a";}
963 963 .icon-tag:before{content:"\f02b";}
964 964 .icon-tags:before{content:"\f02c";}
965 965 .icon-book:before{content:"\f02d";}
966 966 .icon-bookmark:before{content:"\f02e";}
967 967 .icon-print:before{content:"\f02f";}
968 968 .icon-camera:before{content:"\f030";}
969 969 .icon-font:before{content:"\f031";}
970 970 .icon-bold:before{content:"\f032";}
971 971 .icon-italic:before{content:"\f033";}
972 972 .icon-text-height:before{content:"\f034";}
973 973 .icon-text-width:before{content:"\f035";}
974 974 .icon-align-left:before{content:"\f036";}
975 975 .icon-align-center:before{content:"\f037";}
976 976 .icon-align-right:before{content:"\f038";}
977 977 .icon-align-justify:before{content:"\f039";}
978 978 .icon-list:before{content:"\f03a";}
979 979 .icon-indent-left:before{content:"\f03b";}
980 980 .icon-indent-right:before{content:"\f03c";}
981 981 .icon-facetime-video:before{content:"\f03d";}
982 982 .icon-picture:before{content:"\f03e";}
983 983 .icon-pencil:before{content:"\f040";}
984 984 .icon-map-marker:before{content:"\f041";}
985 985 .icon-adjust:before{content:"\f042";}
986 986 .icon-tint:before{content:"\f043";}
987 987 .icon-edit:before{content:"\f044";}
988 988 .icon-share:before{content:"\f045";}
989 989 .icon-check:before{content:"\f046";}
990 990 .icon-move:before{content:"\f047";}
991 991 .icon-step-backward:before{content:"\f048";}
992 992 .icon-fast-backward:before{content:"\f049";}
993 993 .icon-backward:before{content:"\f04a";}
994 994 .icon-play:before{content:"\f04b";}
995 995 .icon-pause:before{content:"\f04c";}
996 996 .icon-stop:before{content:"\f04d";}
997 997 .icon-forward:before{content:"\f04e";}
998 998 .icon-fast-forward:before{content:"\f050";}
999 999 .icon-step-forward:before{content:"\f051";}
1000 1000 .icon-eject:before{content:"\f052";}
1001 1001 .icon-chevron-left:before{content:"\f053";}
1002 1002 .icon-chevron-right:before{content:"\f054";}
1003 1003 .icon-plus-sign:before{content:"\f055";}
1004 1004 .icon-minus-sign:before{content:"\f056";}
1005 1005 .icon-remove-sign:before{content:"\f057";}
1006 1006 .icon-ok-sign:before{content:"\f058";}
1007 1007 .icon-question-sign:before{content:"\f059";}
1008 1008 .icon-info-sign:before{content:"\f05a";}
1009 1009 .icon-screenshot:before{content:"\f05b";}
1010 1010 .icon-remove-circle:before{content:"\f05c";}
1011 1011 .icon-ok-circle:before{content:"\f05d";}
1012 1012 .icon-ban-circle:before{content:"\f05e";}
1013 1013 .icon-arrow-left:before{content:"\f060";}
1014 1014 .icon-arrow-right:before{content:"\f061";}
1015 1015 .icon-arrow-up:before{content:"\f062";}
1016 1016 .icon-arrow-down:before{content:"\f063";}
1017 1017 .icon-share-alt:before,.icon-mail-forward:before{content:"\f064";}
1018 1018 .icon-resize-full:before{content:"\f065";}
1019 1019 .icon-resize-small:before{content:"\f066";}
1020 1020 .icon-plus:before{content:"\f067";}
1021 1021 .icon-minus:before{content:"\f068";}
1022 1022 .icon-asterisk:before{content:"\f069";}
1023 1023 .icon-exclamation-sign:before{content:"\f06a";}
1024 1024 .icon-gift:before{content:"\f06b";}
1025 1025 .icon-leaf:before{content:"\f06c";}
1026 1026 .icon-fire:before{content:"\f06d";}
1027 1027 .icon-eye-open:before{content:"\f06e";}
1028 1028 .icon-eye-close:before{content:"\f070";}
1029 1029 .icon-warning-sign:before{content:"\f071";}
1030 1030 .icon-plane:before{content:"\f072";}
1031 1031 .icon-calendar:before{content:"\f073";}
1032 1032 .icon-random:before{content:"\f074";}
1033 1033 .icon-comment:before{content:"\f075";}
1034 1034 .icon-magnet:before{content:"\f076";}
1035 1035 .icon-chevron-up:before{content:"\f077";}
1036 1036 .icon-chevron-down:before{content:"\f078";}
1037 1037 .icon-retweet:before{content:"\f079";}
1038 1038 .icon-shopping-cart:before{content:"\f07a";}
1039 1039 .icon-folder-close:before{content:"\f07b";}
1040 1040 .icon-folder-open:before{content:"\f07c";}
1041 1041 .icon-resize-vertical:before{content:"\f07d";}
1042 1042 .icon-resize-horizontal:before{content:"\f07e";}
1043 1043 .icon-bar-chart:before{content:"\f080";}
1044 1044 .icon-twitter-sign:before{content:"\f081";}
1045 1045 .icon-facebook-sign:before{content:"\f082";}
1046 1046 .icon-camera-retro:before{content:"\f083";}
1047 1047 .icon-key:before{content:"\f084";}
1048 1048 .icon-cogs:before{content:"\f085";}
1049 1049 .icon-comments:before{content:"\f086";}
1050 1050 .icon-thumbs-up:before{content:"\f087";}
1051 1051 .icon-thumbs-down:before{content:"\f088";}
1052 1052 .icon-star-half:before{content:"\f089";}
1053 1053 .icon-heart-empty:before{content:"\f08a";}
1054 1054 .icon-signout:before{content:"\f08b";}
1055 1055 .icon-linkedin-sign:before{content:"\f08c";}
1056 1056 .icon-pushpin:before{content:"\f08d";}
1057 1057 .icon-external-link:before{content:"\f08e";}
1058 1058 .icon-signin:before{content:"\f090";}
1059 1059 .icon-trophy:before{content:"\f091";}
1060 1060 .icon-github-sign:before{content:"\f092";}
1061 1061 .icon-upload-alt:before{content:"\f093";}
1062 1062 .icon-lemon:before{content:"\f094";}
1063 1063 .icon-phone:before{content:"\f095";}
1064 1064 .icon-check-empty:before{content:"\f096";}
1065 1065 .icon-bookmark-empty:before{content:"\f097";}
1066 1066 .icon-phone-sign:before{content:"\f098";}
1067 1067 .icon-twitter:before{content:"\f099";}
1068 1068 .icon-facebook:before{content:"\f09a";}
1069 1069 .icon-github:before{content:"\f09b";}
1070 1070 .icon-unlock:before{content:"\f09c";}
1071 1071 .icon-credit-card:before{content:"\f09d";}
1072 1072 .icon-rss:before{content:"\f09e";}
1073 1073 .icon-hdd:before{content:"\f0a0";}
1074 1074 .icon-bullhorn:before{content:"\f0a1";}
1075 1075 .icon-bell:before{content:"\f0a2";}
1076 1076 .icon-certificate:before{content:"\f0a3";}
1077 1077 .icon-hand-right:before{content:"\f0a4";}
1078 1078 .icon-hand-left:before{content:"\f0a5";}
1079 1079 .icon-hand-up:before{content:"\f0a6";}
1080 1080 .icon-hand-down:before{content:"\f0a7";}
1081 1081 .icon-circle-arrow-left:before{content:"\f0a8";}
1082 1082 .icon-circle-arrow-right:before{content:"\f0a9";}
1083 1083 .icon-circle-arrow-up:before{content:"\f0aa";}
1084 1084 .icon-circle-arrow-down:before{content:"\f0ab";}
1085 1085 .icon-globe:before{content:"\f0ac";}
1086 1086 .icon-wrench:before{content:"\f0ad";}
1087 1087 .icon-tasks:before{content:"\f0ae";}
1088 1088 .icon-filter:before{content:"\f0b0";}
1089 1089 .icon-briefcase:before{content:"\f0b1";}
1090 1090 .icon-fullscreen:before{content:"\f0b2";}
1091 1091 .icon-group:before{content:"\f0c0";}
1092 1092 .icon-link:before{content:"\f0c1";}
1093 1093 .icon-cloud:before{content:"\f0c2";}
1094 1094 .icon-beaker:before{content:"\f0c3";}
1095 1095 .icon-cut:before{content:"\f0c4";}
1096 1096 .icon-copy:before{content:"\f0c5";}
1097 1097 .icon-paper-clip:before{content:"\f0c6";}
1098 1098 .icon-save:before{content:"\f0c7";}
1099 1099 .icon-sign-blank:before{content:"\f0c8";}
1100 1100 .icon-reorder:before{content:"\f0c9";}
1101 1101 .icon-list-ul:before{content:"\f0ca";}
1102 1102 .icon-list-ol:before{content:"\f0cb";}
1103 1103 .icon-strikethrough:before{content:"\f0cc";}
1104 1104 .icon-underline:before{content:"\f0cd";}
1105 1105 .icon-table:before{content:"\f0ce";}
1106 1106 .icon-magic:before{content:"\f0d0";}
1107 1107 .icon-truck:before{content:"\f0d1";}
1108 1108 .icon-pinterest:before{content:"\f0d2";}
1109 1109 .icon-pinterest-sign:before{content:"\f0d3";}
1110 1110 .icon-google-plus-sign:before{content:"\f0d4";}
1111 1111 .icon-google-plus:before{content:"\f0d5";}
1112 1112 .icon-money:before{content:"\f0d6";}
1113 1113 .icon-caret-down:before{content:"\f0d7";}
1114 1114 .icon-caret-up:before{content:"\f0d8";}
1115 1115 .icon-caret-left:before{content:"\f0d9";}
1116 1116 .icon-caret-right:before{content:"\f0da";}
1117 1117 .icon-columns:before{content:"\f0db";}
1118 1118 .icon-sort:before{content:"\f0dc";}
1119 1119 .icon-sort-down:before{content:"\f0dd";}
1120 1120 .icon-sort-up:before{content:"\f0de";}
1121 1121 .icon-envelope-alt:before{content:"\f0e0";}
1122 1122 .icon-linkedin:before{content:"\f0e1";}
1123 1123 .icon-undo:before,.icon-rotate-left:before{content:"\f0e2";}
1124 1124 .icon-legal:before{content:"\f0e3";}
1125 1125 .icon-dashboard:before{content:"\f0e4";}
1126 1126 .icon-comment-alt:before{content:"\f0e5";}
1127 1127 .icon-comments-alt:before{content:"\f0e6";}
1128 1128 .icon-bolt:before{content:"\f0e7";}
1129 1129 .icon-sitemap:before{content:"\f0e8";}
1130 1130 .icon-umbrella:before{content:"\f0e9";}
1131 1131 .icon-paste:before{content:"\f0ea";}
1132 1132 .icon-lightbulb:before{content:"\f0eb";}
1133 1133 .icon-exchange:before{content:"\f0ec";}
1134 1134 .icon-cloud-download:before{content:"\f0ed";}
1135 1135 .icon-cloud-upload:before{content:"\f0ee";}
1136 1136 .icon-user-md:before{content:"\f0f0";}
1137 1137 .icon-stethoscope:before{content:"\f0f1";}
1138 1138 .icon-suitcase:before{content:"\f0f2";}
1139 1139 .icon-bell-alt:before{content:"\f0f3";}
1140 1140 .icon-coffee:before{content:"\f0f4";}
1141 1141 .icon-food:before{content:"\f0f5";}
1142 1142 .icon-file-alt:before{content:"\f0f6";}
1143 1143 .icon-building:before{content:"\f0f7";}
1144 1144 .icon-hospital:before{content:"\f0f8";}
1145 1145 .icon-ambulance:before{content:"\f0f9";}
1146 1146 .icon-medkit:before{content:"\f0fa";}
1147 1147 .icon-fighter-jet:before{content:"\f0fb";}
1148 1148 .icon-beer:before{content:"\f0fc";}
1149 1149 .icon-h-sign:before{content:"\f0fd";}
1150 1150 .icon-plus-sign-alt:before{content:"\f0fe";}
1151 1151 .icon-double-angle-left:before{content:"\f100";}
1152 1152 .icon-double-angle-right:before{content:"\f101";}
1153 1153 .icon-double-angle-up:before{content:"\f102";}
1154 1154 .icon-double-angle-down:before{content:"\f103";}
1155 1155 .icon-angle-left:before{content:"\f104";}
1156 1156 .icon-angle-right:before{content:"\f105";}
1157 1157 .icon-angle-up:before{content:"\f106";}
1158 1158 .icon-angle-down:before{content:"\f107";}
1159 1159 .icon-desktop:before{content:"\f108";}
1160 1160 .icon-laptop:before{content:"\f109";}
1161 1161 .icon-tablet:before{content:"\f10a";}
1162 1162 .icon-mobile-phone:before{content:"\f10b";}
1163 1163 .icon-circle-blank:before{content:"\f10c";}
1164 1164 .icon-quote-left:before{content:"\f10d";}
1165 1165 .icon-quote-right:before{content:"\f10e";}
1166 1166 .icon-spinner:before{content:"\f110";}
1167 1167 .icon-circle:before{content:"\f111";}
1168 1168 .icon-reply:before,.icon-mail-reply:before{content:"\f112";}
1169 1169 .icon-folder-close-alt:before{content:"\f114";}
1170 1170 .icon-folder-open-alt:before{content:"\f115";}
1171 1171 .icon-expand-alt:before{content:"\f116";}
1172 1172 .icon-collapse-alt:before{content:"\f117";}
1173 1173 .icon-smile:before{content:"\f118";}
1174 1174 .icon-frown:before{content:"\f119";}
1175 1175 .icon-meh:before{content:"\f11a";}
1176 1176 .icon-gamepad:before{content:"\f11b";}
1177 1177 .icon-keyboard:before{content:"\f11c";}
1178 1178 .icon-flag-alt:before{content:"\f11d";}
1179 1179 .icon-flag-checkered:before{content:"\f11e";}
1180 1180 .icon-terminal:before{content:"\f120";}
1181 1181 .icon-code:before{content:"\f121";}
1182 1182 .icon-reply-all:before{content:"\f122";}
1183 1183 .icon-mail-reply-all:before{content:"\f122";}
1184 1184 .icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";}
1185 1185 .icon-location-arrow:before{content:"\f124";}
1186 1186 .icon-crop:before{content:"\f125";}
1187 1187 .icon-code-fork:before{content:"\f126";}
1188 1188 .icon-unlink:before{content:"\f127";}
1189 1189 .icon-question:before{content:"\f128";}
1190 1190 .icon-info:before{content:"\f129";}
1191 1191 .icon-exclamation:before{content:"\f12a";}
1192 1192 .icon-superscript:before{content:"\f12b";}
1193 1193 .icon-subscript:before{content:"\f12c";}
1194 1194 .icon-eraser:before{content:"\f12d";}
1195 1195 .icon-puzzle-piece:before{content:"\f12e";}
1196 1196 .icon-microphone:before{content:"\f130";}
1197 1197 .icon-microphone-off:before{content:"\f131";}
1198 1198 .icon-shield:before{content:"\f132";}
1199 1199 .icon-calendar-empty:before{content:"\f133";}
1200 1200 .icon-fire-extinguisher:before{content:"\f134";}
1201 1201 .icon-rocket:before{content:"\f135";}
1202 1202 .icon-maxcdn:before{content:"\f136";}
1203 1203 .icon-chevron-sign-left:before{content:"\f137";}
1204 1204 .icon-chevron-sign-right:before{content:"\f138";}
1205 1205 .icon-chevron-sign-up:before{content:"\f139";}
1206 1206 .icon-chevron-sign-down:before{content:"\f13a";}
1207 1207 .icon-html5:before{content:"\f13b";}
1208 1208 .icon-css3:before{content:"\f13c";}
1209 1209 .icon-anchor:before{content:"\f13d";}
1210 1210 .icon-unlock-alt:before{content:"\f13e";}
1211 1211 .icon-bullseye:before{content:"\f140";}
1212 1212 .icon-ellipsis-horizontal:before{content:"\f141";}
1213 1213 .icon-ellipsis-vertical:before{content:"\f142";}
1214 1214 .icon-rss-sign:before{content:"\f143";}
1215 1215 .icon-play-sign:before{content:"\f144";}
1216 1216 .icon-ticket:before{content:"\f145";}
1217 1217 .icon-minus-sign-alt:before{content:"\f146";}
1218 1218 .icon-check-minus:before{content:"\f147";}
1219 1219 .icon-level-up:before{content:"\f148";}
1220 1220 .icon-level-down:before{content:"\f149";}
1221 1221 .icon-check-sign:before{content:"\f14a";}
1222 1222 .icon-edit-sign:before{content:"\f14b";}
1223 1223 .icon-external-link-sign:before{content:"\f14c";}
1224 1224 .icon-share-sign:before{content:"\f14d";}
1225 1225 .alternate_upload{background-color:none;display:inline;}
1226 1226 .alternate_upload.form{padding:0;margin:0;}
1227 1227 .alternate_upload input.fileinput{background-color:red;position:relative;opacity:0;z-index:2;width:295px;margin-left:163px;cursor:pointer;}
1228 1228 #tabs{border-style:none;}
1229 1229 .list_toolbar{padding:5px;height:25px;line-height:25px;}
1230 1230 .toolbar_info{float:left;}
1231 1231 .toolbar_buttons{float:right;}
1232 1232 .list_header{height:25px;line-height:25px;padding:3px 5px;border:1px solid #ccc;border-radius:4px 4px 0px 0px;}
1233 1233 .list_item{height:25px;line-height:25px;padding:3px 5px;border:1px solid #ccc;border-top:0px;}
1234 1234 .notebook_item a{text-decoration:none;}
1235 1235 .status_col{float:right;width:325px;}
1236 1236 .engines_col{float:right;width:325px;}
1237 1237 .action_col{float:right;width:64px;text-align:right;}
1238 1238 .item_buttons{float:right;margin-top:1px;}
1239 1239 input.nbname_input{height:15px;}
1240 1240 .highlight_text{color:blue;}
1241 1241 #project_name>.breadcrumb{padding:0;background-color:transparent;}
1242 1242 input.engine_num_input{height:20px;margin-bottom:2px;padding-top:0;padding-bottom:0;width:90px;}
1243 1243 .ansiblack{color:black;}
1244 1244 .ansired{color:darkred;}
1245 1245 .ansigreen{color:darkgreen;}
1246 1246 .ansiyellow{color:brown;}
1247 1247 .ansiblue{color:darkblue;}
1248 1248 .ansipurple{color:darkviolet;}
1249 1249 .ansicyan{color:steelblue;}
1250 1250 .ansigrey{color:grey;}
1251 1251 .ansibold{font-weight:bold;}
1252 1252 .cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;}.cell.selected{border-radius:4px;border:thin #ababab solid;}
1253 1253 div.cell{width:100%;padding:5px 5px 5px 0px;margin:2px 0px 2px 0px;outline:none;}
1254 1254 div.prompt{width:11ex;padding:0.4em;margin:0px;font-family:monospace;text-align:right;line-height:1.231em;}
1255 1255 .celltoolbar{border:thin solid #CFCFCF;border-bottom:none;background:#EEE;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;-webkit-box-pack:end;height:20px;}
1256 1256 .no_input_radius{border-top-right-radius:0px;border-top-left-radius:0px;}
1257 1257 .text_cell .ctb_prompt{display:none;}
1258 1258 .code_cell .ctb_prompt{display:block;}
1259 1259 .ctb_hideshow{display:none;vertical-align:bottom;padding-right:2px;}
1260 1260 .celltoolbar>div{padding-top:0px;}
1261 1261 .ctb_area{margin:0;padding:0;width:100%;}
1262 1262 .ctb_show.ctb_hideshow,.ctb_show .ctb_hideshow{display:block;}
1263 1263 .ctb_show .input_area,.ctb_show .ctb_hideshow+div.text_cell_input{border-top-right-radius:0px;border-top-left-radius:0px;}
1264 1264 .ctb_show>.celltoolbar{border-bottom-right-radius:0px;border-bottom-left-radius:0px;}
1265 1265 .button_container{margin-top:0;margin-bottom:0;}
1266 1266 .ui-button{min-width:30px;}
1267 1267 .celltoolbar .button_container select{margin:10px;margin-top:1px;margin-bottom:0px;padding:0;font-size:87%;width:auto;display:inline-block;height:18px;line-height:18px;vertical-align:top;}
1268 1268 .celltoolbar label{display:inline-block;height:15px;line-height:15px;vertical-align:top;}
1269 1269 .celltoolbar label span{font-size:85%;}
1270 1270 .celltoolbar input[type=checkbox]{margin:0px;margin-left:4px;margin-right:4px;}
1271 1271 .celltoolbar .ui-button{border:none;vertical-align:top;height:20px;}
1272 1272 div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
1273 1273 div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;}
1274 1274 div.input_prompt{color:navy;border-top:1px solid transparent;}
1275 div.output_wrapper{margin-top:5px;margin-left:5px;width:100%;position:relative;}
1275 div.output_wrapper{margin-top:5px;position:relative;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;}
1276 1276 div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);-moz-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);}
1277 div.output_collapsed{margin-right:5px;}
1278 div.out_prompt_overlay{height:100%;padding:0px;position:absolute;border-radius:4px;}
1277 div.output_collapsed{margin:0px;padding:0px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;}
1278 div.out_prompt_overlay{height:100%;padding:0px 0.4em;position:absolute;border-radius:4px;}
1279 1279 div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000000;-moz-box-shadow:inset 0 0 1px #000000;box-shadow:inset 0 0 1px #000000;background:rgba(240, 240, 240, 0.5);}
1280 div.output_prompt{color:darkred;margin:0 5px 0 -5px;}
1280 div.output_prompt{color:darkred;}
1281 1281 .CodeMirror{line-height:1.231em;height:auto;background:none;}
1282 1282 .CodeMirror-scroll{overflow-y:hidden;overflow-x:auto;}
1283 1283 .CodeMirror-lines{padding:0.4em;}
1284 1284 .CodeMirror-linenumber{padding:0 8px 0 4px;}
1285 1285 .CodeMirror-gutters{border-bottom-left-radius:4px;border-top-left-radius:4px;}
1286 1286 .CodeMirror pre{padding:0;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
1287 1287 .completions{position:absolute;z-index:10;overflow:hidden;border:1px solid #ababab;border-radius:4px;-webkit-box-shadow:0px 6px 10px -1px #adadad;-moz-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;}
1288 1288 .completions select{background:white;outline:none;border:none;padding:0px;margin:0px;overflow:auto;font-family:monospace;font-size:110%;color:#000000;}
1289 1289 .completions select option.context{color:#0064cd;}
1290 1290 pre code{display:block;padding:0.5em;}
1291 1291 .highlight-base,pre code,pre .subst,pre .tag .title,pre .lisp .title,pre .clojure .built_in,pre .nginx .title{color:black;}
1292 1292 .highlight-string,pre .string,pre .constant,pre .parent,pre .tag .value,pre .rules .value,pre .rules .value .number,pre .preprocessor,pre .ruby .symbol,pre .ruby .symbol .string,pre .aggregate,pre .template_tag,pre .django .variable,pre .smalltalk .class,pre .addition,pre .flow,pre .stream,pre .bash .variable,pre .apache .tag,pre .apache .cbracket,pre .tex .command,pre .tex .special,pre .erlang_repl .function_or_atom,pre .markdown .header{color:#BA2121;}
1293 1293 .highlight-comment,pre .comment,pre .annotation,pre .template_comment,pre .diff .header,pre .chunk,pre .markdown .blockquote{color:#408080;font-style:italic;}
1294 1294 .highlight-number,pre .number,pre .date,pre .regexp,pre .literal,pre .smalltalk .symbol,pre .smalltalk .char,pre .go .constant,pre .change,pre .markdown .bullet,pre .markdown .link_url{color:#080;}
1295 1295 pre .label,pre .javadoc,pre .ruby .string,pre .decorator,pre .filter .argument,pre .localvars,pre .array,pre .attr_selector,pre .important,pre .pseudo,pre .pi,pre .doctype,pre .deletion,pre .envvar,pre .shebang,pre .apache .sqbracket,pre .nginx .built_in,pre .tex .formula,pre .erlang_repl .reserved,pre .prompt,pre .markdown .link_label,pre .vhdl .attribute,pre .clojure .attribute,pre .coffeescript .property{color:#8888ff;}
1296 1296 .highlight-keyword,pre .keyword,pre .id,pre .phpdoc,pre .aggregate,pre .css .tag,pre .javadoctag,pre .phpdoc,pre .yardoctag,pre .smalltalk .class,pre .winutils,pre .bash .variable,pre .apache .tag,pre .go .typename,pre .tex .command,pre .markdown .strong,pre .request,pre .status{color:#008000;font-weight:bold;}
1297 1297 .highlight-builtin,pre .built_in{color:#008000;}
1298 1298 pre .markdown .emphasis{font-style:italic;}
1299 1299 pre .nginx .built_in{font-weight:normal;}
1300 1300 pre .coffeescript .javascript,pre .javascript .xml,pre .tex .formula,pre .xml .javascript,pre .xml .vbscript,pre .xml .css,pre .xml .cdata{opacity:0.5;}
1301 1301 .cm-s-ipython span.cm-variable{color:black;}
1302 1302 .cm-s-ipython span.cm-keyword{color:#008000;font-weight:bold;}
1303 1303 .cm-s-ipython span.cm-number{color:#080;}
1304 1304 .cm-s-ipython span.cm-comment{color:#408080;font-style:italic;}
1305 1305 .cm-s-ipython span.cm-string{color:#BA2121;}
1306 1306 .cm-s-ipython span.cm-builtin{color:#008000;}
1307 1307 .cm-s-ipython span.cm-error{color:#f00;}
1308 1308 .cm-s-ipython span.cm-operator{color:#AA22FF;font-weight:bold;}
1309 1309 .cm-s-ipython span.cm-meta{color:#AA22FF;}
1310 1310 .ui-menubar-item .ui-button .ui-button-text{padding:0.4em 1.0em;font-size:100%;}
1311 1311 .ui-menu{-webkit-box-shadow:0px 6px 10px -1px #adadad;-moz-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;}
1312 1312 .ui-menu .ui-menu-item a{border:1px solid transparent;padding:2px 1.6em;}
1313 1313 .ui-menu .ui-menu-item a.ui-state-focus{margin:0;}
1314 1314 .ui-menu hr{margin:0.3em 0;}
1315 1315 #menubar_container{position:relative;}
1316 1316 #menubar{margin-bottom:0px;}
1317 1317 #menubar .nav>li>a{padding:4px 15px 4px;}
1318 1318 #menubar .navbar-inner{min-height:28px;}
1319 1319 body{background-color:#ffffff;}
1320 1320 body.notebook_app{overflow:hidden;}
1321 1321 span#notebook_name{height:1em;line-height:1em;padding:3px;border:none;font-size:146.5%;}
1322 1322 div#notebook_panel{margin:0px 0px 0px 0px;padding:0px;}
1323 1323 div#notebook{overflow-y:scroll;overflow-x:auto;width:100%;padding:5px 5px 15px 5px;margin:0px;}
1324 1324 div.ui-widget-content{border:1px solid #ababab;outline:none;}
1325 1325 pre.dialog{background-color:#f7f7f7;border:1px solid #ddd;border-radius:4px;padding:0.4em;padding-left:2em;}
1326 1326 p.dialog{padding:0.2em;}
1327 1327 pre,code,kbd,samp{white-space:pre-wrap;}
1328 1328 #fonttest{font-family:monospace;}
1329 1329 p{margin-bottom:0;}
1330 1330 #notification_area{position:absolute;right:0px;top:0px;height:25px;padding:3px 0px;padding-right:3px;z-index:10;}
1331 1331 .notification_widget{float:right;right:0px;top:1px;height:25px;padding:3px 6px;z-index:10;}
1332 1332 div.output_area{padding:0px;page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;}
1333 1333 div.output_area pre{font-family:monospace;margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;color:black;background-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;line-height:inherit;}
1334 div.output_subarea{padding:0.44em 0.4em 0.4em 1px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;}
1334 div.output_subarea{padding:0.44em 0.4em 0.4em 1px;margin-left:6px;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;}
1335 1335 div.output_text{text-align:left;color:#000000;font-family:monospace;line-height:1.231em;}
1336 1336 div.output_stream{padding-top:0.0em;padding-bottom:0.0em;}
1337 1337 div.output_stderr{background:#fdd;}
1338 1338 div.output_latex{text-align:left;}
1339 1339 .js-error{color:darkred;}
1340 1340 div.raw_input{padding-top:0px;padding-bottom:0px;height:1em;line-height:1em;font-family:monospace;}
1341 1341 span.input_prompt{font-family:inherit;}
1342 1342 input.raw_input{font-family:inherit;font-size:inherit;color:inherit;width:auto;margin:-2px 0px 0px 1px;padding-left:1px;padding-top:2px;height:1em;}
1343 1343 p.p-space{margin-bottom:10px;}
1344 1344 div#pager_splitter{height:8px;}
1345 1345 #pager_container{position:relative;}
1346 1346 div#pager{padding:15px;overflow:auto;display:none;}div#pager pre{font-size:13px;line-height:1.231em;color:#000000;background-color:#f7f7f7;padding:0.4em;}
1347 1347 .shortcut_key{display:inline-block;width:15ex;text-align:right;font-family:monospace;}
1348 1348 .rendered_html{color:black;}.rendered_html em{font-style:italic;}
1349 1349 .rendered_html strong{font-weight:bold;}
1350 1350 .rendered_html u{text-decoration:underline;}
1351 1351 .rendered_html :link{text-decoration:underline;}
1352 1352 .rendered_html :visited{text-decoration:underline;}
1353 1353 .rendered_html h1{font-size:197%;margin:.65em 0;font-weight:bold;}
1354 1354 .rendered_html h2{font-size:153.9%;margin:.75em 0;font-weight:bold;}
1355 1355 .rendered_html h3{font-size:123.1%;margin:.85em 0;font-weight:bold;}
1356 1356 .rendered_html h4{font-size:100%;margin:0.95em 0;font-weight:bold;}
1357 1357 .rendered_html h5{font-size:85%;margin:1.5em 0;font-weight:bold;}
1358 1358 .rendered_html h6{font-size:77%;margin:1.65em 0;font-weight:bold;}
1359 1359 .rendered_html ul{list-style:disc;margin:1em 2em;}
1360 1360 .rendered_html ul ul{list-style:square;margin:0em 2em;}
1361 1361 .rendered_html ul ul ul{list-style:circle;margin:0em 2em;}
1362 1362 .rendered_html ol{list-style:decimal;margin:1em 2em;}
1363 1363 .rendered_html ol ol{list-style:upper-alpha;margin:0em 2em;}
1364 1364 .rendered_html ol ol ol{list-style:lower-alpha;margin:0em 2em;}
1365 1365 .rendered_html ol ol ol ol{list-style:lower-roman;margin:0em 2em;}
1366 1366 .rendered_html ol ol ol ol ol{list-style:decimal;margin:0em 2em;}
1367 1367 .rendered_html hr{color:black;background-color:black;}
1368 1368 .rendered_html pre{margin:1em 2em;}
1369 1369 .rendered_html pre,.rendered_html code{border:0;background-color:#ffffff;color:#000000;font-size:100%;padding:0px;}
1370 1370 .rendered_html blockquote{margin:1em 2em;}
1371 1371 .rendered_html table,.rendered_html tr,.rendered_html th,.rendered_html td{border:1px solid black;border-collapse:collapse;margin:1em 2em;}
1372 1372 .rendered_html td,.rendered_html th{text-align:left;vertical-align:middle;padding:4px;}
1373 1373 .rendered_html th{font-weight:bold;}
1374 1374 .rendered_html p{text-align:justify;}
1375 1375 .rendered_html p+p{margin-top:1em;}
1376 1376 span#save_widget{padding:5px;margin:0px 0px 0px 300px;display:inline-block;}
1377 1377 span#checkpoint_status span#autosave_status{font-size:small;}
1378 1378 div.text_cell{padding:5px 5px 5px 5px;}
1379 1379 div.text_cell_input{color:#000000;border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;}
1380 1380 div.text_cell_render{outline:none;resize:none;width:inherit;border-style:none;padding:5px;color:#000000;}
1381 1381 a.heading-anchor{text-decoration:none;color:inherit;}
1382 1382 a.anchor-link:link{text-decoration:none;padding:0px 20px;visibility:hidden;}
1383 1383 h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible;}
1384 1384 .toolbar{padding:0px 15px;border-bottom:1px #ababab solid;}.toolbar select,.toolbar label{width:auto;height:26px;vertical-align:middle;margin-right:2px;margin-bottom:0;display:inline;font-size:92%;margin-left:0.3em;margin-right:0.3em;padding:0px;}
1385 1385 .toolbar .btn{padding:2px 8px;}
1386 1386 @-moz-keyframes fadeOut{from{opacity:1;} to{opacity:0;}}@-webkit-keyframes fadeOut{from{opacity:1;} to{opacity:0;}}@-moz-keyframes fadeIn{from{opacity:0;} to{opacity:1;}}@-webkit-keyframes fadeIn{from{opacity:0;} to{opacity:1;}}.bigtooltip{overflow:auto;height:200px;-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;}
1387 1387 .smalltooltip{-webkit-transition-property:height;-webkit-transition-duration:500ms;-moz-transition-property:height;-moz-transition-duration:500ms;transition-property:height;transition-duration:500ms;text-overflow:ellipsis;overflow:hidden;height:80px;}
1388 1388 .tooltipbuttons{position:absolute;padding-right:15px;top:0px;right:0px;}
1389 1389 .tooltiptext{padding-right:30px;}
1390 1390 .ipython_tooltip{max-width:700px;-webkit-animation:fadeOut 400ms;-moz-animation:fadeOut 400ms;animation:fadeOut 400ms;-webkit-animation:fadeIn 400ms;-moz-animation:fadeIn 400ms;animation:fadeIn 400ms;vertical-align:middle;background-color:#f7f7f7;overflow:visible;border:#ababab 1px solid;outline:none;padding:3px;margin:0px;padding-left:7px;font-family:monospace;min-height:50px;-moz-box-shadow:0px 6px 10px -1px #adadad;-webkit-box-shadow:0px 6px 10px -1px #adadad;box-shadow:0px 6px 10px -1px #adadad;border-radius:4px;position:absolute;z-index:2;}.ipython_tooltip a{float:right;}
1391 1391 .ipython_tooltip .tooltiptext pre{border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-size:100%;background-color:#f7f7f7;}
1392 1392 .pretooltiparrow{left:0px;margin:0px;top:-16px;width:40px;height:16px;overflow:hidden;position:absolute;}
1393 1393 .pretooltiparrow:before{background-color:#f7f7f7;border:1px #ababab solid;z-index:11;content:"";position:absolute;left:15px;top:10px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);}
General Comments 0
You need to be logged in to leave comments. Login now