Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Side by Side Diff: app/static/style.css

Issue 85333007: Begin the redesign process, starting with the navbar. (Closed) Base URL: git@github.com:dart-lang/pub-dartlang.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700|Montserrat :400,700); 1 @import url(https://fonts.googleapis.com/css?family=Roboto:300,400|Montserrat:40 0,700);
2 html, body, div, span, applet, object, iframe, 2 html, body, div, span, applet, object, iframe,
3 h1, h2, h3, .toc:before, h4, h5, h6, p, blockquote, pre, 3 h1, h2, h3, .toc:before, h4, h5, h6, p, blockquote, pre,
4 a, abbr, acronym, address, big, cite, code, 4 a, abbr, acronym, address, big, cite, code,
5 del, dfn, em, img, ins, kbd, q, s, samp, 5 del, dfn, em, img, ins, kbd, q, s, samp,
6 small, 6 small,
7 h1 .version, strike, strong, sub, sup, tt, var, 7 h1 .version, strike, strong, sub, sup, tt, var,
8 b, u, i, center, 8 b, u, i, center,
9 dl, dt, dd, ol, ul, li, 9 dl, dt, dd, ol, ul, li,
10 fieldset, form, label, legend, 10 fieldset, form, label, legend,
11 table, caption, tbody, tfoot, thead, tr, th, td, 11 table, caption, tbody, tfoot, thead, tr, th, td,
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 .highlight .vg { 242 .highlight .vg {
243 color: teal; 243 color: teal;
244 } 244 }
245 .highlight .vi { 245 .highlight .vi {
246 color: teal; 246 color: teal;
247 } 247 }
248 .highlight .il { 248 .highlight .il {
249 color: #009999; 249 color: #009999;
250 } 250 }
251 251
252 /*! 252 .btn-default,
Bob Nystrom 2013/11/26 19:00:11 Is all of this dropped from bootstrap? Dartlang.or
Andrei Mouravski 2013/11/29 21:21:21 We basically take nothing from dartlang.org. The o
Bob Nystrom 2013/12/02 22:46:55 Oh, now I see my confusion here. Didn't realize I
253 * Bootstrap v2.0.3 253 .btn-primary,
254 * 254 .get-started,
255 * Copyright 2012 Twitter, Inc 255 .btn-success,
256 * Licensed under the Apache License v2.0 256 .btn-info,
257 * http://www.apache.org/licenses/LICENSE-2.0 257 .btn-warning,
258 * 258 .btn-danger {
259 * Designed and built with all the love in the world @twitter by @mdo and @fat. 259 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
260 */ 260 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
261 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0 .075);
262 }
263 .btn-default:active, .btn-default.active,
264 .btn-primary:active,
265 .get-started:active,
266 .btn-primary.active,
267 .active.get-started,
268 .btn-success:active,
269 .btn-success.active,
270 .btn-info:active,
271 .btn-info.active,
272 .btn-warning:active,
273 .btn-warning.active,
274 .btn-danger:active,
275 .btn-danger.active {
276 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
277 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
278 }
279
280 .btn:active, .get-started:active, .learn-more a:active, .btn.active, .active.get -started, .learn-more a.active {
281 background-image: none;
282 }
283
284 .btn-default {
285 background-image: -webkit-gradient(linear, left 0%, left 100%, from(white), to (#e0e0e0));
286 background-image: -webkit-linear-gradient(top, white 0%, #e0e0e0 100%);
287 background-image: -moz-linear-gradient(top, white 0%, #e0e0e0 100%);
288 background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
289 background-repeat: repeat-x;
290 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE0E0E0', GradientType=0);
291 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
292 background-repeat: repeat-x;
293 border-color: #dbdbdb;
294 text-shadow: 0 1px 0 #fff;
295 border-color: #ccc;
296 }
297 .btn-default:hover, .btn-default:focus {
298 background-color: #e0e0e0;
299 background-position: 0 -15px;
300 }
301 .btn-default:active, .btn-default.active {
302 background-color: #e0e0e0;
303 border-color: #dbdbdb;
304 }
305
306 .btn-primary, .get-started {
307 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#2d6ca2));
308 background-image: -webkit-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
309 background-image: -moz-linear-gradient(top, #428bca 0%, #2d6ca2 100%);
310 background-image: linear-gradient(to bottom, #428bca 0%, #2d6ca2 100%);
311 background-repeat: repeat-x;
312 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF428BCA', endColorstr='#FF2D6CA2', GradientType=0);
313 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
314 background-repeat: repeat-x;
315 border-color: #2b669a;
316 }
317 .btn-primary:hover, .get-started:hover, .btn-primary:focus, .get-started:focus {
318 background-color: #2d6ca2;
319 background-position: 0 -15px;
320 }
321 .btn-primary:active, .get-started:active, .btn-primary.active, .active.get-start ed {
322 background-color: #2d6ca2;
323 border-color: #2b669a;
324 }
325
326 .btn-success {
327 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#419641));
328 background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
329 background-image: -moz-linear-gradient(top, #5cb85c 0%, #419641 100%);
330 background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
331 background-repeat: repeat-x;
332 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5CB85C', endColorstr='#FF419641', GradientType=0);
333 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
334 background-repeat: repeat-x;
335 border-color: #3e8f3e;
336 }
337 .btn-success:hover, .btn-success:focus {
338 background-color: #419641;
339 background-position: 0 -15px;
340 }
341 .btn-success:active, .btn-success.active {
342 background-color: #419641;
343 border-color: #3e8f3e;
344 }
345
346 .btn-warning {
347 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#eb9316));
348 background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
349 background-image: -moz-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
350 background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
351 background-repeat: repeat-x;
352 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0AD4E', endColorstr='#FFEB9316', GradientType=0);
353 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
354 background-repeat: repeat-x;
355 border-color: #e38d13;
356 }
357 .btn-warning:hover, .btn-warning:focus {
358 background-color: #eb9316;
359 background-position: 0 -15px;
360 }
361 .btn-warning:active, .btn-warning.active {
362 background-color: #eb9316;
363 border-color: #e38d13;
364 }
365
366 .btn-danger {
367 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c12e2a));
368 background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
369 background-image: -moz-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
370 background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
371 background-repeat: repeat-x;
372 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9534F', endColorstr='#FFC12E2A', GradientType=0);
373 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
374 background-repeat: repeat-x;
375 border-color: #b92c28;
376 }
377 .btn-danger:hover, .btn-danger:focus {
378 background-color: #c12e2a;
379 background-position: 0 -15px;
380 }
381 .btn-danger:active, .btn-danger.active {
382 background-color: #c12e2a;
383 border-color: #b92c28;
384 }
385
386 .btn-info {
387 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#2aabd2));
388 background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
389 background-image: -moz-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
390 background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
391 background-repeat: repeat-x;
392 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF2AABD2', GradientType=0);
393 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
394 background-repeat: repeat-x;
395 border-color: #28a4c9;
396 }
397 .btn-info:hover, .btn-info:focus {
398 background-color: #2aabd2;
399 background-position: 0 -15px;
400 }
401 .btn-info:active, .btn-info.active {
402 background-color: #2aabd2;
403 border-color: #28a4c9;
404 }
405
406 .thumbnail,
407 .img-thumbnail,
408 .thumbnail {
409 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
410 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
411 }
412
413 .dropdown-menu > li > a:hover,
414 .dropdown-menu > li > a:focus {
415 background-image: -webkit-gradient(linear, left 0%, left 100%, from(whitesmoke ), to(#e8e8e8));
416 background-image: -webkit-linear-gradient(top, whitesmoke 0%, #e8e8e8 100%);
417 background-image: -moz-linear-gradient(top, whitesmoke 0%, #e8e8e8 100%);
418 background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
419 background-repeat: repeat-x;
420 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5F5F5', endColorstr='#FFE8E8E8', GradientType=0);
421 background-color: #e8e8e8;
422 }
423
424 .dropdown-menu > .active > a,
425 .dropdown-menu > .active > a:hover,
426 .dropdown-menu > .active > a:focus {
427 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
428 background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
429 background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
430 background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
431 background-repeat: repeat-x;
432 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF428BCA', endColorstr='#FF357EBD', GradientType=0);
433 background-color: #357ebd;
434 }
435
436 .navbar-default {
437 background-image: -webkit-gradient(linear, left 0%, left 100%, from(white), to (white));
438 background-image: -webkit-linear-gradient(top, white 0%, white 100%);
439 background-image: -moz-linear-gradient(top, white 0%, white 100%);
440 background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
441 background-repeat: repeat-x;
442 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFFFFFFF', GradientType=0);
443 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
444 border-radius: 4px;
445 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
446 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0 .075);
447 }
448 .navbar-default .navbar-nav > .active > a {
449 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2f2f2), to(#fafafa));
450 background-image: -webkit-linear-gradient(top, #f2f2f2 0%, #fafafa 100%);
451 background-image: -moz-linear-gradient(top, #f2f2f2 0%, #fafafa 100%);
452 background-image: linear-gradient(to bottom, #f2f2f2 0%, #fafafa 100%);
453 background-repeat: repeat-x;
454 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2F2F2', endColorstr='#FFFAFAFA', GradientType=0);
455 -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
456 box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
457 }
458
459 .navbar-brand,
460 .navbar-nav > li > a {
461 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
462 }
463
464 .navbar-inverse {
465 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#3c3c3c), to(#222222));
466 background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
467 background-image: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
468 background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
469 background-repeat: repeat-x;
470 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF3C3C3C', endColorstr='#FF222222', GradientType=0);
471 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
472 }
473 .navbar-inverse .navbar-nav > .active > a {
474 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#222222), to(#282828));
475 background-image: -webkit-linear-gradient(top, #222222 0%, #282828 100%);
476 background-image: -moz-linear-gradient(top, #222222 0%, #282828 100%);
477 background-image: linear-gradient(to bottom, #222222 0%, #282828 100%);
478 background-repeat: repeat-x;
479 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF222222', endColorstr='#FF282828', GradientType=0);
480 -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
481 box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
482 }
483 .navbar-inverse .navbar-brand,
484 .navbar-inverse .navbar-nav > li > a {
485 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
486 }
487
488 .navbar-static-top,
489 .navbar-fixed-top,
490 .navbar-fixed-bottom {
491 border-radius: 0;
492 }
493
494 .alert {
495 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
496 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
497 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0 .05);
498 }
499
500 .alert-success {
501 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#c8e5bc));
502 background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
503 background-image: -moz-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
504 background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
505 background-repeat: repeat-x;
506 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDFF0D8', endColorstr='#FFC8E5BC', GradientType=0);
507 border-color: #b2dba1;
508 }
509
510 .alert-info {
511 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#b9def0));
512 background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
513 background-image: -moz-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
514 background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
515 background-repeat: repeat-x;
516 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9EDF7', endColorstr='#FFB9DEF0', GradientType=0);
517 border-color: #9acfea;
518 }
519
520 .alert-warning {
521 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#f8efc0));
522 background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
523 background-image: -moz-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
524 background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
525 background-repeat: repeat-x;
526 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFCF8E3', endColorstr='#FFF8EFC0', GradientType=0);
527 border-color: #f5e79e;
528 }
529
530 .alert-danger {
531 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#e7c3c3));
532 background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
533 background-image: -moz-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
534 background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
535 background-repeat: repeat-x;
536 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2DEDE', endColorstr='#FFE7C3C3', GradientType=0);
537 border-color: #dca7a7;
538 }
539
540 .progress {
541 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#ebebeb), to(whitesmoke));
542 background-image: -webkit-linear-gradient(top, #ebebeb 0%, whitesmoke 100%);
543 background-image: -moz-linear-gradient(top, #ebebeb 0%, whitesmoke 100%);
544 background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
545 background-repeat: repeat-x;
546 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEBEBEB', endColorstr='#FFF5F5F5', GradientType=0);
547 }
548
549 .progress-bar {
550 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3071a9));
551 background-image: -webkit-linear-gradient(top, #428bca 0%, #3071a9 100%);
552 background-image: -moz-linear-gradient(top, #428bca 0%, #3071a9 100%);
553 background-image: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
554 background-repeat: repeat-x;
555 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF428BCA', endColorstr='#FF3071A9', GradientType=0);
556 }
557
558 .progress-bar-success {
559 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5cb85c), to(#449d44));
560 background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
561 background-image: -moz-linear-gradient(top, #5cb85c 0%, #449d44 100%);
562 background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
563 background-repeat: repeat-x;
564 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5CB85C', endColorstr='#FF449D44', GradientType=0);
565 }
566
567 .progress-bar-info {
568 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#5bc0de), to(#31b0d5));
569 background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
570 background-image: -moz-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
571 background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
572 background-repeat: repeat-x;
573 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF31B0D5', GradientType=0);
574 }
575
576 .progress-bar-warning {
577 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0ad4e), to(#ec971f));
578 background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
579 background-image: -moz-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
580 background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
581 background-repeat: repeat-x;
582 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0AD4E', endColorstr='#FFEC971F', GradientType=0);
583 }
584
585 .progress-bar-danger {
586 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9534f), to(#c9302c));
587 background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
588 background-image: -moz-linear-gradient(top, #d9534f 0%, #c9302c 100%);
589 background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
590 background-repeat: repeat-x;
591 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9534F', endColorstr='#FFC9302C', GradientType=0);
592 }
593
594 .list-group {
595 border-radius: 4px;
596 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
597 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
598 }
599
600 .list-group-item.active,
601 .list-group-item.active:hover,
602 .list-group-item.active:focus {
603 text-shadow: 0 -1px 0 #3071a9;
604 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#3278b3));
605 background-image: -webkit-linear-gradient(top, #428bca 0%, #3278b3 100%);
606 background-image: -moz-linear-gradient(top, #428bca 0%, #3278b3 100%);
607 background-image: linear-gradient(to bottom, #428bca 0%, #3278b3 100%);
608 background-repeat: repeat-x;
609 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF428BCA', endColorstr='#FF3278B3', GradientType=0);
610 border-color: #3278b3;
611 }
612
613 .panel {
614 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
615 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
616 }
617
618 .panel-default > .panel-heading {
619 background-image: -webkit-gradient(linear, left 0%, left 100%, from(whitesmoke ), to(#e8e8e8));
620 background-image: -webkit-linear-gradient(top, whitesmoke 0%, #e8e8e8 100%);
621 background-image: -moz-linear-gradient(top, whitesmoke 0%, #e8e8e8 100%);
622 background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
623 background-repeat: repeat-x;
624 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5F5F5', endColorstr='#FFE8E8E8', GradientType=0);
625 }
626
627 .panel-primary > .panel-heading {
628 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
629 background-image: -webkit-linear-gradient(top, #428bca 0%, #357ebd 100%);
630 background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
631 background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
632 background-repeat: repeat-x;
633 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF428BCA', endColorstr='#FF357EBD', GradientType=0);
634 }
635
636 .panel-success > .panel-heading {
637 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#dff0d8), to(#d0e9c6));
638 background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
639 background-image: -moz-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
640 background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
641 background-repeat: repeat-x;
642 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDFF0D8', endColorstr='#FFD0E9C6', GradientType=0);
643 }
644
645 .panel-info > .panel-heading {
646 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#d9edf7), to(#c4e3f3));
647 background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
648 background-image: -moz-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
649 background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
650 background-repeat: repeat-x;
651 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9EDF7', endColorstr='#FFC4E3F3', GradientType=0);
652 }
653
654 .panel-warning > .panel-heading {
655 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#fcf8e3), to(#faf2cc));
656 background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
657 background-image: -moz-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
658 background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
659 background-repeat: repeat-x;
660 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFCF8E3', endColorstr='#FFFAF2CC', GradientType=0);
661 }
662
663 .panel-danger > .panel-heading {
664 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f2dede), to(#ebcccc));
665 background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
666 background-image: -moz-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
667 background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
668 background-repeat: repeat-x;
669 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2DEDE', endColorstr='#FFEBCCCC', GradientType=0);
670 }
671
672 .well, footer, .intro, ol.toc {
673 background-image: -webkit-gradient(linear, left 0%, left 100%, from(#e8e8e8), to(whitesmoke));
674 background-image: -webkit-linear-gradient(top, #e8e8e8 0%, whitesmoke 100%);
675 background-image: -moz-linear-gradient(top, #e8e8e8 0%, whitesmoke 100%);
676 background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
677 background-repeat: repeat-x;
678 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE8E8E8', endColorstr='#FFF5F5F5', GradientType=0);
679 border-color: gainsboro;
680 -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255 , 255, 0.1);
681 box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0 .1);
682 }
683
684 /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
261 article, 685 article,
262 aside, 686 aside,
263 details, 687 details,
264 figcaption, 688 figcaption,
265 figure, 689 figure,
266 footer, 690 footer,
267 header, 691 header,
268 hgroup, 692 hgroup,
693 main,
269 nav, 694 nav,
270 section { 695 section,
696 summary {
271 display: block; 697 display: block;
272 } 698 }
273 699
274 audio, 700 audio,
275 canvas, 701 canvas,
276 video { 702 video {
277 display: inline-block; 703 display: inline-block;
278 *display: inline;
279 *zoom: 1;
280 } 704 }
281 705
282 audio:not([controls]) { 706 audio:not([controls]) {
283 display: none; 707 display: none;
708 height: 0;
709 }
710
711 [hidden],
712 template {
713 display: none;
284 } 714 }
285 715
286 html { 716 html {
717 font-family: sans-serif;
718 -ms-text-size-adjust: 100%;
719 -webkit-text-size-adjust: 100%;
720 }
721
722 body {
723 margin: 0;
724 }
725
726 a {
727 background: transparent;
728 }
729
730 a:focus {
731 outline: thin dotted;
732 }
733
734 a:active,
735 a:hover {
736 outline: 0;
737 }
738
739 h1 {
740 font-size: 2em;
741 margin: 0.67em 0;
742 }
743
744 abbr[title] {
745 border-bottom: 1px dotted;
746 }
747
748 b,
749 strong {
750 font-weight: bold;
751 }
752
753 dfn {
754 font-style: italic;
755 }
756
757 hr {
758 -moz-box-sizing: content-box;
759 box-sizing: content-box;
760 height: 0;
761 }
762
763 mark {
764 background: #ff0;
765 color: #000;
766 }
767
768 code,
769 kbd,
770 pre,
771 samp {
772 font-family: monospace, serif;
773 font-size: 1em;
774 }
775
776 pre {
777 white-space: pre-wrap;
778 }
779
780 q {
781 quotes: "\201C" "\201D" "\2018" "\2019";
782 }
783
784 small, h1 .version {
785 font-size: 80%;
786 }
787
788 sub,
789 sup {
790 font-size: 75%;
791 line-height: 0;
792 position: relative;
793 vertical-align: baseline;
794 }
795
796 sup {
797 top: -0.5em;
798 }
799
800 sub {
801 bottom: -0.25em;
802 }
803
804 img {
805 border: 0;
806 }
807
808 svg:not(:root) {
809 overflow: hidden;
810 }
811
812 figure {
813 margin: 0;
814 }
815
816 fieldset {
817 border: 1px solid #c0c0c0;
818 margin: 0 2px;
819 padding: 0.35em 0.625em 0.75em;
820 }
821
822 legend {
823 border: 0;
824 padding: 0;
825 }
826
827 button,
828 input,
829 select,
830 textarea {
831 font-family: inherit;
287 font-size: 100%; 832 font-size: 100%;
288 -webkit-text-size-adjust: 100%; 833 margin: 0;
289 -ms-text-size-adjust: 100%; 834 }
290 } 835
291 836 button,
837 input {
838 line-height: normal;
839 }
840
841 button,
842 select {
843 text-transform: none;
844 }
845
846 button,
847 html input[type="button"],
848 input[type="reset"],
849 input[type="submit"] {
850 -webkit-appearance: button;
851 cursor: pointer;
852 }
853
854 button[disabled],
855 html input[disabled] {
856 cursor: default;
857 }
858
859 input[type="checkbox"],
860 input[type="radio"] {
861 box-sizing: border-box;
862 padding: 0;
863 }
864
865 input[type="search"] {
866 -webkit-appearance: textfield;
867 -moz-box-sizing: content-box;
868 -webkit-box-sizing: content-box;
869 box-sizing: content-box;
870 }
871
872 input[type="search"]::-webkit-search-cancel-button,
873 input[type="search"]::-webkit-search-decoration {
874 -webkit-appearance: none;
875 }
876
877 button::-moz-focus-inner,
878 input::-moz-focus-inner {
879 border: 0;
880 padding: 0;
881 }
882
883 textarea {
884 overflow: auto;
885 vertical-align: top;
886 }
887
888 table {
889 border-collapse: collapse;
890 border-spacing: 0;
891 }
892
893 @media print {
894 * {
895 text-shadow: none !important;
896 color: #000 !important;
897 background: transparent !important;
898 box-shadow: none !important;
899 }
900
901 a,
902 a:visited {
903 text-decoration: underline;
904 }
905
906 a[href]:after {
907 content: " (" attr(href) ")";
908 }
909
910 abbr[title]:after {
911 content: " (" attr(title) ")";
912 }
913
914 a[href^="javascript:"]:after,
915 a[href^="#"]:after {
916 content: "";
917 }
918
919 pre,
920 blockquote {
921 border: 1px solid #999;
922 page-break-inside: avoid;
923 }
924
925 thead {
926 display: table-header-group;
927 }
928
929 tr,
930 img {
931 page-break-inside: avoid;
932 }
933
934 img {
935 max-width: 100% !important;
936 }
937
938 @page {
939 margin: 2cm .5cm;
940 }
941
942 p,
943 h2,
944 h3,
945 .toc:before {
946 orphans: 3;
947 widows: 3;
948 }
949
950 h2,
951 h3,
952 .toc:before {
953 page-break-after: avoid;
954 }
955
956 select {
957 background: #fff !important;
958 }
959
960 .navbar {
961 display: none;
962 }
963
964 .table td, table td,
965 .table th,
966 table th {
967 background-color: #fff !important;
968 }
969
970 .btn > .caret, .get-started > .caret, .learn-more a > .caret,
971 .dropup > .btn > .caret,
972 .dropup > .get-started > .caret,
973 .learn-more .dropup > a > .caret {
974 border-top-color: #000 !important;
975 }
976
977 .label {
978 border: 1px solid #000;
979 }
980
981 .table, table {
982 border-collapse: collapse !important;
983 }
984
985 .table-bordered th,
986 .table-bordered td {
987 border: 1px solid #ddd !important;
988 }
989 }
990 *,
991 *:before,
992 *:after {
993 -webkit-box-sizing: border-box;
994 -moz-box-sizing: border-box;
995 box-sizing: border-box;
996 }
997
998 html {
999 font-size: 62.5%;
1000 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1001 }
1002
1003 body {
1004 font-family: "Roboto", sans-serif;
1005 font-size: 15px;
1006 line-height: 1.2;
1007 color: #484848;
1008 background-color: white;
1009 }
1010
1011 input,
1012 button,
1013 select,
1014 textarea {
1015 font-family: inherit;
1016 font-size: inherit;
1017 line-height: inherit;
1018 }
1019
1020 a {
1021 color: #428bca;
1022 text-decoration: none;
1023 }
1024 a:hover, a:focus {
1025 color: #2a6496;
1026 text-decoration: underline;
1027 }
292 a:focus { 1028 a:focus {
293 outline: thin dotted #333; 1029 outline: thin dotted #333;
294 outline: 5px auto -webkit-focus-ring-color; 1030 outline: 5px auto -webkit-focus-ring-color;
295 outline-offset: -2px; 1031 outline-offset: -2px;
296 } 1032 }
297 1033
298 a:hover, 1034 img {
299 a:active { 1035 vertical-align: middle;
300 outline: 0; 1036 }
301 } 1037
302 1038 .img-responsive {
303 sub, 1039 display: block;
304 sup { 1040 max-width: 100%;
305 position: relative; 1041 height: auto;
1042 }
1043
1044 .img-rounded {
1045 border-radius: 6px;
1046 }
1047
1048 .img-thumbnail, .thumbnail {
1049 padding: 4px;
1050 line-height: 1.2;
1051 background-color: white;
1052 border: 1px solid #dddddd;
1053 border-radius: 4px;
1054 -webkit-transition: all 0.2s ease-in-out;
1055 transition: all 0.2s ease-in-out;
1056 display: inline-block;
1057 max-width: 100%;
1058 height: auto;
1059 }
1060
1061 .img-circle {
1062 border-radius: 50%;
1063 }
1064
1065 hr {
1066 margin-top: 18px;
1067 margin-bottom: 18px;
1068 border: 0;
1069 border-top: 1px solid #eeeeee;
1070 }
1071
1072 .sr-only {
1073 position: absolute;
1074 width: 1px;
1075 height: 1px;
1076 margin: -1px;
1077 padding: 0;
1078 overflow: hidden;
1079 clip: rect(0, 0, 0, 0);
1080 border: 0;
1081 }
1082
1083 p {
1084 margin: 0 0 9px;
1085 }
1086
1087 .lead {
1088 margin-bottom: 18px;
1089 font-size: 17px;
1090 font-weight: 200;
1091 line-height: 1.4;
1092 }
1093 @media (min-width: 768px) {
1094 .lead {
1095 font-size: 22.5px;
1096 }
1097 }
1098
1099 small, h1 .version,
1100 .small {
1101 font-size: 85%;
1102 }
1103
1104 cite {
1105 font-style: normal;
1106 }
1107
1108 .text-muted {
1109 color: #999999;
1110 }
1111
1112 .text-primary {
1113 color: #428bca;
1114 }
1115 .text-primary:hover {
1116 color: #3071a9;
1117 }
1118
1119 .text-warning {
1120 color: #c09853;
1121 }
1122 .text-warning:hover {
1123 color: #a47e3c;
1124 }
1125
1126 .text-danger {
1127 color: #b94a48;
1128 }
1129 .text-danger:hover {
1130 color: #953b39;
1131 }
1132
1133 .text-success {
1134 color: #468847;
1135 }
1136 .text-success:hover {
1137 color: #356635;
1138 }
1139
1140 .text-info {
1141 color: #3a87ad;
1142 }
1143 .text-info:hover {
1144 color: #2d6987;
1145 }
1146
1147 .text-left {
1148 text-align: left;
1149 }
1150
1151 .text-right {
1152 text-align: right;
1153 }
1154
1155 .text-center {
1156 text-align: center;
1157 }
1158
1159 h1, h2, h3, .toc:before, h4, h5, h6,
1160 .h1, .h2, .h3, .h4, .h5, .h6 {
1161 font-family: "Montserrat", sans-serif;
1162 font-weight: 500;
1163 line-height: 1.1;
1164 color: inherit;
1165 }
1166 h1 small, h1 .version,
1167 h1 .small, h2 small, h2 h1 .version, h1 h2 .version,
1168 h2 .small, h3 small, .toc:before small, h3 h1 .version, h1 h3 .version, .toc:bef ore h1 .version, h1 .toc:before .version,
1169 h3 .small,
1170 .toc:before .small, h4 small, h4 h1 .version, h1 h4 .version,
1171 h4 .small, h5 small, h5 h1 .version, h1 h5 .version,
1172 h5 .small, h6 small, h6 h1 .version, h1 h6 .version,
1173 h6 .small,
1174 .h1 small,
1175 .h1 h1 .version,
1176 h1 .h1 .version,
1177 .h1 .small, .h2 small, .h2 h1 .version, h1 .h2 .version,
1178 .h2 .small, .h3 small, .h3 h1 .version, h1 .h3 .version,
1179 .h3 .small, .h4 small, .h4 h1 .version, h1 .h4 .version,
1180 .h4 .small, .h5 small, .h5 h1 .version, h1 .h5 .version,
1181 .h5 .small, .h6 small, .h6 h1 .version, h1 .h6 .version,
1182 .h6 .small {
1183 font-weight: normal;
1184 line-height: 1;
1185 color: #999999;
1186 }
1187
1188 h1,
1189 h2,
1190 h3,
1191 .toc:before {
1192 margin-top: 18px;
1193 margin-bottom: 9px;
1194 }
1195 h1 small, h1 .version,
1196 h1 .small,
1197 h2 small,
1198 h2 h1 .version,
1199 h1 h2 .version,
1200 h2 .small,
1201 h3 small,
1202 .toc:before small,
1203 h3 h1 .version,
1204 h1 h3 .version,
1205 .toc:before h1 .version,
1206 h1 .toc:before .version,
1207 h3 .small,
1208 .toc:before .small {
1209 font-size: 65%;
1210 }
1211
1212 h4,
1213 h5,
1214 h6 {
1215 margin-top: 9px;
1216 margin-bottom: 9px;
1217 }
1218 h4 small, h4 h1 .version, h1 h4 .version,
1219 h4 .small,
1220 h5 small,
1221 h5 h1 .version,
1222 h1 h5 .version,
1223 h5 .small,
1224 h6 small,
1225 h6 h1 .version,
1226 h1 h6 .version,
1227 h6 .small {
306 font-size: 75%; 1228 font-size: 75%;
307 line-height: 0; 1229 }
308 vertical-align: baseline; 1230
309 } 1231 h1, .h1 {
310 1232 font-size: 39px;
311 sup { 1233 }
312 top: -0.5em; 1234
313 } 1235 h2, .h2 {
314 1236 font-size: 32px;
315 sub { 1237 }
316 bottom: -0.25em; 1238
317 } 1239 h3, .toc:before, .h3 {
318 1240 font-size: 26px;
319 img { 1241 }
320 max-width: 100%; 1242
321 vertical-align: middle; 1243 h4, .h4 {
322 border: 0; 1244 font-size: 19px;
323 -ms-interpolation-mode: bicubic; 1245 }
324 } 1246
325 1247 h5, .h5 {
326 button, 1248 font-size: 15px;
327 input, 1249 }
328 select, 1250
329 textarea { 1251 h6, .h6 {
330 margin: 0; 1252 font-size: 13px;
331 font-size: 100%;
332 vertical-align: middle;
333 }
334
335 button,
336 input {
337 *overflow: visible;
338 line-height: normal;
339 }
340
341 button::-moz-focus-inner,
342 input::-moz-focus-inner {
343 padding: 0;
344 border: 0;
345 }
346
347 button,
348 input[type="button"],
349 input[type="reset"],
350 input[type="submit"] {
351 cursor: pointer;
352 -webkit-appearance: button;
353 }
354
355 input[type="search"] {
356 -webkit-box-sizing: content-box;
357 -moz-box-sizing: content-box;
358 box-sizing: content-box;
359 -webkit-appearance: textfield;
360 }
361
362 input[type="search"]::-webkit-search-decoration,
363 input[type="search"]::-webkit-search-cancel-button {
364 -webkit-appearance: none;
365 }
366
367 textarea {
368 overflow: auto;
369 vertical-align: top;
370 }
371
372 body {
373 margin: 0;
374 font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
375 font-size: 14px;
376 line-height: 24px;
377 color: #333333;
378 background-color: white;
379 }
380
381 a {
382 color: #0088cc;
383 text-decoration: none;
384 }
385
386 a:hover {
387 color: #005580;
388 text-decoration: underline;
389 }
390
391 .row {
392 margin-left: -20px;
393 *zoom: 1;
394 }
395 .row:before, .row:after {
396 display: table;
397 content: "";
398 }
399 .row:after {
400 clear: both;
401 }
402
403 [class*="span"] {
404 float: left;
405 margin-left: 20px;
406 }
407
408 .container,
409 .navbar-fixed-top .container,
410 .navbar-fixed-bottom .container {
411 width: 940px;
412 }
413
414 .span1 {
415 width: 60px;
416 }
417
418 .offset1 {
419 margin-left: 100px;
420 }
421
422 .span2 {
423 width: 140px;
424 }
425
426 .offset2 {
427 margin-left: 180px;
428 }
429
430 .span3 {
431 width: 220px;
432 }
433
434 .offset3 {
435 margin-left: 260px;
436 }
437
438 .span4 {
439 width: 300px;
440 }
441
442 .offset4 {
443 margin-left: 340px;
444 }
445
446 .span5 {
447 width: 380px;
448 }
449
450 .offset5 {
451 margin-left: 420px;
452 }
453
454 .span6 {
455 width: 460px;
456 }
457
458 .offset6 {
459 margin-left: 500px;
460 }
461
462 .span7 {
463 width: 540px;
464 }
465
466 .offset7 {
467 margin-left: 580px;
468 }
469
470 .span8, article {
471 width: 620px;
472 }
473
474 .offset8 {
475 margin-left: 660px;
476 }
477
478 .span9 {
479 width: 700px;
480 }
481
482 .offset9 {
483 margin-left: 740px;
484 }
485
486 .span10 {
487 width: 780px;
488 }
489
490 .offset10 {
491 margin-left: 820px;
492 }
493
494 .span11 {
495 width: 860px;
496 }
497
498 .offset11 {
499 margin-left: 900px;
500 }
501
502 .span12 {
503 width: 940px;
504 }
505
506 .offset12 {
507 margin-left: 980px;
508 }
509
510 .row-fluid {
511 width: 100%;
512 *zoom: 1;
513 }
514 .row-fluid:before, .row-fluid:after {
515 display: table;
516 content: "";
517 }
518 .row-fluid:after {
519 clear: both;
520 }
521 .row-fluid [class*="span"] {
522 display: block;
523 width: 100%;
524 min-height: 28px;
525 -webkit-box-sizing: border-box;
526 -moz-box-sizing: border-box;
527 -ms-box-sizing: border-box;
528 box-sizing: border-box;
529 float: left;
530 margin-left: 2.12766%;
531 *margin-left: 2.07447%;
532 }
533 .row-fluid [class*="span"]:first-child {
534 margin-left: 0;
535 }
536 .row-fluid .span1 {
537 width: 6.38298%;
538 *width: 6.32979%;
539 }
540 .row-fluid .span2 {
541 width: 14.89362%;
542 *width: 14.84043%;
543 }
544 .row-fluid .span3 {
545 width: 23.40426%;
546 *width: 23.35106%;
547 }
548 .row-fluid .span4 {
549 width: 31.91489%;
550 *width: 31.8617%;
551 }
552 .row-fluid .span5 {
553 width: 40.42553%;
554 *width: 40.37234%;
555 }
556 .row-fluid .span6 {
557 width: 48.93617%;
558 *width: 48.88298%;
559 }
560 .row-fluid .span7 {
561 width: 57.44681%;
562 *width: 57.39362%;
563 }
564 .row-fluid .span8, .row-fluid article {
565 width: 65.95745%;
566 *width: 65.90426%;
567 }
568 .row-fluid .span9 {
569 width: 74.46809%;
570 *width: 74.41489%;
571 }
572 .row-fluid .span10 {
573 width: 82.97872%;
574 *width: 82.92553%;
575 }
576 .row-fluid .span11 {
577 width: 91.48936%;
578 *width: 91.43617%;
579 }
580 .row-fluid .span12 {
581 width: 100.0%;
582 *width: 99.94681%;
583 }
584
585 .container {
586 margin-right: auto;
587 margin-left: auto;
588 *zoom: 1;
589 }
590 .container:before, .container:after {
591 display: table;
592 content: "";
593 }
594 .container:after {
595 clear: both;
596 }
597
598 .container-fluid, .admin > div > div {
599 padding-right: 20px;
600 padding-left: 20px;
601 *zoom: 1;
602 }
603 .container-fluid:before, .admin > div > div:before, .container-fluid:after, .adm in > div > div:after {
604 display: table;
605 content: "";
606 }
607 .container-fluid:after, .admin > div > div:after {
608 clear: both;
609 }
610
611 p {
612 margin: 0 0 12px;
613 font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
614 font-size: 14px;
615 line-height: 24px;
616 }
617 p small, p h1 .version, h1 p .version {
618 font-size: 12px;
619 color: #999999;
620 }
621
622 .lead {
623 margin-bottom: 24px;
624 font-size: 20px;
625 font-weight: 200;
626 line-height: 36px;
627 }
628
629 h1, h2, h3, .toc:before, h4, h5, h6 {
630 margin: 0;
631 font-family: inherit;
632 font-weight: bold;
633 color: inherit;
634 text-rendering: optimizelegibility;
635 }
636 h1 small, h1 .version, h2 small, h2 h1 .version, h1 h2 .version, h3 small, .toc: before small, h3 h1 .version, h1 h3 .version, .toc:before h1 .version, h1 .toc:b efore .version, h4 small, h4 h1 .version, h1 h4 .version, h5 small, h5 h1 .versi on, h1 h5 .version, h6 small, h6 h1 .version, h1 h6 .version {
637 font-weight: normal;
638 color: #999999;
639 }
640
641 h1 {
642 font-size: 30px;
643 line-height: 48px;
644 }
645 h1 small, h1 .version {
646 font-size: 18px;
647 }
648
649 h2 {
650 font-size: 24px;
651 line-height: 48px;
652 }
653 h2 small, h2 h1 .version, h1 h2 .version {
654 font-size: 18px;
655 }
656
657 h3, .toc:before {
658 font-size: 18px;
659 line-height: 36px;
660 }
661 h3 small, .toc:before small, h3 h1 .version, h1 h3 .version, .toc:before h1 .ver sion, h1 .toc:before .version {
662 font-size: 14px;
663 }
664
665 h4, h5, h6 {
666 line-height: 24px;
667 }
668
669 h4 {
670 font-size: 14px;
671 }
672 h4 small, h4 h1 .version, h1 h4 .version {
673 font-size: 12px;
674 }
675
676 h5 {
677 font-size: 12px;
678 }
679
680 h6 {
681 font-size: 11px;
682 color: #999999;
683 text-transform: uppercase;
684 } 1253 }
685 1254
686 .page-header { 1255 .page-header {
687 padding-bottom: 23px; 1256 padding-bottom: 8px;
688 margin: 24px 0; 1257 margin: 36px 0 18px;
689 border-bottom: 1px solid #eeeeee; 1258 border-bottom: 1px solid #eeeeee;
690 } 1259 }
691 1260
692 .page-header h1 { 1261 ul,
693 line-height: 1; 1262 ol {
694 } 1263 margin-top: 0;
695 1264 margin-bottom: 9px;
696 ul, ol { 1265 }
697 padding: 0;
698 margin: 0 0 12px 25px;
699 }
700
701 ul ul, 1266 ul ul,
702 ul ol, 1267 ul ol,
703 ol ol, 1268 ol ul,
704 ol ul { 1269 ol ol {
705 margin-bottom: 0; 1270 margin-bottom: 0;
706 } 1271 }
707 1272
708 ul { 1273 .list-unstyled, .list-inline {
709 list-style: disc; 1274 padding-left: 0;
710 }
711
712 ol {
713 list-style: decimal;
714 }
715
716 li {
717 line-height: 24px;
718 }
719
720 ul.unstyled,
721 ol.unstyled {
722 margin-left: 0;
723 list-style: none; 1275 list-style: none;
724 } 1276 }
725 1277
1278 .list-inline > li {
1279 display: inline-block;
1280 padding-left: 5px;
1281 padding-right: 5px;
1282 }
1283 .list-inline > li:first-child {
1284 padding-left: 0;
1285 }
1286
726 dl { 1287 dl {
727 margin-bottom: 24px; 1288 margin-bottom: 18px;
728 } 1289 }
729 1290
730 dt, 1291 dt,
731 dd { 1292 dd {
732 line-height: 24px; 1293 line-height: 1.2;
733 } 1294 }
734 1295
735 dt { 1296 dt {
736 font-weight: bold; 1297 font-weight: bold;
737 line-height: 23px;
738 } 1298 }
739 1299
740 dd { 1300 dd {
741 margin-left: 12px; 1301 margin-left: 0;
742 } 1302 }
743 1303
744 .dl-horizontal dt { 1304 @media (min-width: 768px) {
745 float: left; 1305 .dl-horizontal dt {
746 width: 120px; 1306 float: left;
747 clear: left; 1307 width: 160px;
748 text-align: right; 1308 clear: left;
749 overflow: hidden; 1309 text-align: right;
750 text-overflow: ellipsis; 1310 overflow: hidden;
751 white-space: nowrap; 1311 text-overflow: ellipsis;
752 } 1312 white-space: nowrap;
753 .dl-horizontal dd { 1313 }
754 margin-left: 130px; 1314 .dl-horizontal dd {
755 } 1315 margin-left: 180px;
756 1316 }
757 hr { 1317 .dl-horizontal dd:before, .dl-horizontal dd:after {
758 margin: 24px 0; 1318 content: " ";
759 border: 0; 1319 /* 1 */
760 border-top: 1px solid #eeeeee; 1320 display: table;
761 border-bottom: 1px solid white; 1321 /* 2 */
762 } 1322 }
763 1323 .dl-horizontal dd:after {
764 strong { 1324 clear: both;
765 font-weight: bold; 1325 }
766 } 1326 }
767 1327 abbr[title],
768 em { 1328 abbr[data-original-title] {
769 font-style: italic;
770 }
771
772 .muted {
773 color: #999999;
774 }
775
776 abbr[title] {
777 cursor: help; 1329 cursor: help;
778 border-bottom: 1px dotted #ddd; 1330 border-bottom: 1px dotted #999999;
779 } 1331 }
780 1332
781 abbr.initialism { 1333 abbr.initialism {
782 font-size: 90%; 1334 font-size: 90%;
783 text-transform: uppercase; 1335 text-transform: uppercase;
784 } 1336 }
785 1337
786 blockquote { 1338 blockquote {
787 padding: 0 0 0 15px; 1339 padding: 9px 18px;
788 margin: 0 0 24px; 1340 margin: 0 0 18px;
789 border-left: 5px solid #eeeeee; 1341 border-left: 5px solid #eeeeee;
790 } 1342 }
791 blockquote p { 1343 blockquote p {
1344 font-size: 18.75px;
1345 font-weight: 300;
1346 line-height: 1.25;
1347 }
1348 blockquote p:last-child {
792 margin-bottom: 0; 1349 margin-bottom: 0;
793 font-size: 16px;
794 font-weight: 300;
795 line-height: 30px;
796 } 1350 }
797 blockquote small, blockquote h1 .version, h1 blockquote .version { 1351 blockquote small, blockquote h1 .version, h1 blockquote .version {
798 display: block; 1352 display: block;
799 line-height: 24px; 1353 line-height: 1.2;
800 color: #999999; 1354 color: #999999;
801 } 1355 }
802 blockquote small:before, blockquote h1 .version:before, h1 blockquote .version:b efore { 1356 blockquote small:before, blockquote h1 .version:before, h1 blockquote .version:b efore {
803 content: '\2014 \00A0'; 1357 content: '\2014 \00A0';
804 } 1358 }
805 blockquote.pull-right { 1359 blockquote.pull-right {
806 float: right;
807 padding-right: 15px; 1360 padding-right: 15px;
808 padding-left: 0; 1361 padding-left: 0;
809 border-right: 5px solid #eeeeee; 1362 border-right: 5px solid #eeeeee;
810 border-left: 0; 1363 border-left: 0;
811 } 1364 }
812 blockquote.pull-right p, 1365 blockquote.pull-right p,
813 blockquote.pull-right small, 1366 blockquote.pull-right small,
814 blockquote.pull-right h1 .version, 1367 blockquote.pull-right h1 .version,
815 h1 blockquote.pull-right .version { 1368 h1 blockquote.pull-right .version,
1369 blockquote.pull-right .small {
816 text-align: right; 1370 text-align: right;
817 } 1371 }
818 1372 blockquote.pull-right small:before, blockquote.pull-right h1 .version:before, h1 blockquote.pull-right .version:before,
819 q:before, 1373 blockquote.pull-right .small:before {
820 q:after, 1374 content: '';
1375 }
1376 blockquote.pull-right small:after, blockquote.pull-right h1 .version:after, h1 b lockquote.pull-right .version:after,
1377 blockquote.pull-right .small:after {
1378 content: '\00A0 \2014';
1379 }
1380
821 blockquote:before, 1381 blockquote:before,
822 blockquote:after { 1382 blockquote:after {
823 content: ""; 1383 content: "";
824 } 1384 }
825 1385
826 address { 1386 address {
827 display: block; 1387 margin-bottom: 18px;
828 margin-bottom: 24px;
829 font-style: normal; 1388 font-style: normal;
830 line-height: 24px; 1389 line-height: 1.2;
831 }
832
833 small, h1 .version {
834 font-size: 100%;
835 }
836
837 cite {
838 font-style: normal;
839 } 1390 }
840 1391
841 code, 1392 code,
842 pre { 1393 kbd,
843 padding: 0 3px 2px; 1394 pre,
844 font-family: Menlo, Monaco, Consolas, "Courier New", monospace; 1395 samp {
845 font-size: 13px; 1396 font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
846 color: #333333;
847 -webkit-border-radius: 3px;
848 -moz-border-radius: 3px;
849 border-radius: 3px;
850 } 1397 }
851 1398
852 code { 1399 code {
853 padding: 2px 4px; 1400 padding: 2px 4px;
854 color: #d14; 1401 font-size: 90%;
855 background-color: #f7f7f9; 1402 color: #c7254e;
856 border: 1px solid #e1e1e8; 1403 background-color: #f9f2f4;
1404 white-space: nowrap;
1405 border-radius: 4px;
857 } 1406 }
858 1407
859 pre { 1408 pre {
860 display: block; 1409 display: block;
861 padding: 11.5px; 1410 padding: 8.5px;
862 margin: 0 0 12px; 1411 margin: 0 0 9px;
863 font-size: 12.95px; 1412 font-size: 14px;
864 line-height: 24px; 1413 line-height: 1.2;
865 word-break: break-all; 1414 word-break: break-all;
866 word-wrap: break-word; 1415 word-wrap: break-word;
867 white-space: pre; 1416 color: #484848;
868 white-space: pre-wrap; 1417 background-color: whitesmoke;
869 background-color: #f5f5f5; 1418 border: 1px solid #cccccc;
870 border: 1px solid #ccc;
871 border: 1px solid rgba(0, 0, 0, 0.15);
872 -webkit-border-radius: 4px;
873 -moz-border-radius: 4px;
874 border-radius: 4px; 1419 border-radius: 4px;
875 } 1420 }
876 pre.prettyprint {
877 margin-bottom: 24px;
878 }
879 pre code { 1421 pre code {
880 padding: 0; 1422 padding: 0;
1423 font-size: inherit;
881 color: inherit; 1424 color: inherit;
1425 white-space: pre-wrap;
882 background-color: transparent; 1426 background-color: transparent;
883 border: 0; 1427 border-radius: 0;
884 } 1428 }
885 1429
886 .pre-scrollable { 1430 .pre-scrollable {
887 max-height: 340px; 1431 max-height: 340px;
888 overflow-y: scroll; 1432 overflow-y: scroll;
889 } 1433 }
890 1434
891 form { 1435 .container {
892 margin: 0 0 24px; 1436 margin-right: auto;
893 } 1437 margin-left: auto;
894 1438 padding-left: 15px;
1439 padding-right: 15px;
1440 }
1441 .container:before, .container:after {
1442 content: " ";
1443 /* 1 */
1444 display: table;
1445 /* 2 */
1446 }
1447 .container:after {
1448 clear: both;
1449 }
1450
1451 .row {
1452 margin-left: -15px;
1453 margin-right: -15px;
1454 }
1455 .row:before, .row:after {
1456 content: " ";
1457 /* 1 */
1458 display: table;
1459 /* 2 */
1460 }
1461 .row:after {
1462 clear: both;
1463 }
1464
1465 .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-11, .col-sm-11, .col-md- 11, .col-lg-11, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-9, .col- sm-9, .col-md-9, .col-lg-9, .col-xs-8, .col-sm-8, .col-md-8, article, .col-lg-8, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-6, .col-sm-6, .col-md-6, .c ol-lg-6, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-4, .col-sm-4, .col- md-4, .col-lg-4, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-2, .col-sm- 2, .col-md-2, .col-lg-2, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 {
1466 position: relative;
1467 min-height: 1px;
1468 padding-left: 15px;
1469 padding-right: 15px;
1470 }
1471
1472 .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
1473 float: left;
1474 }
1475
1476 .col-xs-1 {
1477 width: 8.3333333333%;
1478 }
1479
1480 .col-xs-2 {
1481 width: 16.6666666667%;
1482 }
1483
1484 .col-xs-3 {
1485 width: 25%;
1486 }
1487
1488 .col-xs-4 {
1489 width: 33.3333333333%;
1490 }
1491
1492 .col-xs-5 {
1493 width: 41.6666666667%;
1494 }
1495
1496 .col-xs-6 {
1497 width: 50%;
1498 }
1499
1500 .col-xs-7 {
1501 width: 58.3333333333%;
1502 }
1503
1504 .col-xs-8 {
1505 width: 66.6666666667%;
1506 }
1507
1508 .col-xs-9 {
1509 width: 75%;
1510 }
1511
1512 .col-xs-10 {
1513 width: 83.3333333333%;
1514 }
1515
1516 .col-xs-11 {
1517 width: 91.6666666667%;
1518 }
1519
1520 .col-xs-12 {
1521 width: 100%;
1522 }
1523
1524 .col-xs-pull-0 {
1525 right: 0%;
1526 }
1527
1528 .col-xs-pull-1 {
1529 right: 8.3333333333%;
1530 }
1531
1532 .col-xs-pull-2 {
1533 right: 16.6666666667%;
1534 }
1535
1536 .col-xs-pull-3 {
1537 right: 25%;
1538 }
1539
1540 .col-xs-pull-4 {
1541 right: 33.3333333333%;
1542 }
1543
1544 .col-xs-pull-5 {
1545 right: 41.6666666667%;
1546 }
1547
1548 .col-xs-pull-6 {
1549 right: 50%;
1550 }
1551
1552 .col-xs-pull-7 {
1553 right: 58.3333333333%;
1554 }
1555
1556 .col-xs-pull-8 {
1557 right: 66.6666666667%;
1558 }
1559
1560 .col-xs-pull-9 {
1561 right: 75%;
1562 }
1563
1564 .col-xs-pull-10 {
1565 right: 83.3333333333%;
1566 }
1567
1568 .col-xs-pull-11 {
1569 right: 91.6666666667%;
1570 }
1571
1572 .col-xs-pull-12 {
1573 right: 100%;
1574 }
1575
1576 .col-xs-push-0 {
1577 left: 0%;
1578 }
1579
1580 .col-xs-push-1 {
1581 left: 8.3333333333%;
1582 }
1583
1584 .col-xs-push-2 {
1585 left: 16.6666666667%;
1586 }
1587
1588 .col-xs-push-3 {
1589 left: 25%;
1590 }
1591
1592 .col-xs-push-4 {
1593 left: 33.3333333333%;
1594 }
1595
1596 .col-xs-push-5 {
1597 left: 41.6666666667%;
1598 }
1599
1600 .col-xs-push-6 {
1601 left: 50%;
1602 }
1603
1604 .col-xs-push-7 {
1605 left: 58.3333333333%;
1606 }
1607
1608 .col-xs-push-8 {
1609 left: 66.6666666667%;
1610 }
1611
1612 .col-xs-push-9 {
1613 left: 75%;
1614 }
1615
1616 .col-xs-push-10 {
1617 left: 83.3333333333%;
1618 }
1619
1620 .col-xs-push-11 {
1621 left: 91.6666666667%;
1622 }
1623
1624 .col-xs-push-12 {
1625 left: 100%;
1626 }
1627
1628 .col-xs-offset-0 {
1629 margin-left: 0%;
1630 }
1631
1632 .col-xs-offset-1 {
1633 margin-left: 8.3333333333%;
1634 }
1635
1636 .col-xs-offset-2 {
1637 margin-left: 16.6666666667%;
1638 }
1639
1640 .col-xs-offset-3 {
1641 margin-left: 25%;
1642 }
1643
1644 .col-xs-offset-4 {
1645 margin-left: 33.3333333333%;
1646 }
1647
1648 .col-xs-offset-5 {
1649 margin-left: 41.6666666667%;
1650 }
1651
1652 .col-xs-offset-6 {
1653 margin-left: 50%;
1654 }
1655
1656 .col-xs-offset-7 {
1657 margin-left: 58.3333333333%;
1658 }
1659
1660 .col-xs-offset-8 {
1661 margin-left: 66.6666666667%;
1662 }
1663
1664 .col-xs-offset-9 {
1665 margin-left: 75%;
1666 }
1667
1668 .col-xs-offset-10 {
1669 margin-left: 83.3333333333%;
1670 }
1671
1672 .col-xs-offset-11 {
1673 margin-left: 91.6666666667%;
1674 }
1675
1676 .col-xs-offset-12 {
1677 margin-left: 100%;
1678 }
1679
1680 @media (min-width: 768px) {
1681 .container {
1682 width: 750px;
1683 }
1684
1685 .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6 , .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
1686 float: left;
1687 }
1688
1689 .col-sm-1 {
1690 width: 8.3333333333%;
1691 }
1692
1693 .col-sm-2 {
1694 width: 16.6666666667%;
1695 }
1696
1697 .col-sm-3 {
1698 width: 25%;
1699 }
1700
1701 .col-sm-4 {
1702 width: 33.3333333333%;
1703 }
1704
1705 .col-sm-5 {
1706 width: 41.6666666667%;
1707 }
1708
1709 .col-sm-6 {
1710 width: 50%;
1711 }
1712
1713 .col-sm-7 {
1714 width: 58.3333333333%;
1715 }
1716
1717 .col-sm-8 {
1718 width: 66.6666666667%;
1719 }
1720
1721 .col-sm-9 {
1722 width: 75%;
1723 }
1724
1725 .col-sm-10 {
1726 width: 83.3333333333%;
1727 }
1728
1729 .col-sm-11 {
1730 width: 91.6666666667%;
1731 }
1732
1733 .col-sm-12 {
1734 width: 100%;
1735 }
1736
1737 .col-sm-pull-0 {
1738 right: 0%;
1739 }
1740
1741 .col-sm-pull-1 {
1742 right: 8.3333333333%;
1743 }
1744
1745 .col-sm-pull-2 {
1746 right: 16.6666666667%;
1747 }
1748
1749 .col-sm-pull-3 {
1750 right: 25%;
1751 }
1752
1753 .col-sm-pull-4 {
1754 right: 33.3333333333%;
1755 }
1756
1757 .col-sm-pull-5 {
1758 right: 41.6666666667%;
1759 }
1760
1761 .col-sm-pull-6 {
1762 right: 50%;
1763 }
1764
1765 .col-sm-pull-7 {
1766 right: 58.3333333333%;
1767 }
1768
1769 .col-sm-pull-8 {
1770 right: 66.6666666667%;
1771 }
1772
1773 .col-sm-pull-9 {
1774 right: 75%;
1775 }
1776
1777 .col-sm-pull-10 {
1778 right: 83.3333333333%;
1779 }
1780
1781 .col-sm-pull-11 {
1782 right: 91.6666666667%;
1783 }
1784
1785 .col-sm-pull-12 {
1786 right: 100%;
1787 }
1788
1789 .col-sm-push-0 {
1790 left: 0%;
1791 }
1792
1793 .col-sm-push-1 {
1794 left: 8.3333333333%;
1795 }
1796
1797 .col-sm-push-2 {
1798 left: 16.6666666667%;
1799 }
1800
1801 .col-sm-push-3 {
1802 left: 25%;
1803 }
1804
1805 .col-sm-push-4 {
1806 left: 33.3333333333%;
1807 }
1808
1809 .col-sm-push-5 {
1810 left: 41.6666666667%;
1811 }
1812
1813 .col-sm-push-6 {
1814 left: 50%;
1815 }
1816
1817 .col-sm-push-7 {
1818 left: 58.3333333333%;
1819 }
1820
1821 .col-sm-push-8 {
1822 left: 66.6666666667%;
1823 }
1824
1825 .col-sm-push-9 {
1826 left: 75%;
1827 }
1828
1829 .col-sm-push-10 {
1830 left: 83.3333333333%;
1831 }
1832
1833 .col-sm-push-11 {
1834 left: 91.6666666667%;
1835 }
1836
1837 .col-sm-push-12 {
1838 left: 100%;
1839 }
1840
1841 .col-sm-offset-0 {
1842 margin-left: 0%;
1843 }
1844
1845 .col-sm-offset-1 {
1846 margin-left: 8.3333333333%;
1847 }
1848
1849 .col-sm-offset-2 {
1850 margin-left: 16.6666666667%;
1851 }
1852
1853 .col-sm-offset-3 {
1854 margin-left: 25%;
1855 }
1856
1857 .col-sm-offset-4 {
1858 margin-left: 33.3333333333%;
1859 }
1860
1861 .col-sm-offset-5 {
1862 margin-left: 41.6666666667%;
1863 }
1864
1865 .col-sm-offset-6 {
1866 margin-left: 50%;
1867 }
1868
1869 .col-sm-offset-7 {
1870 margin-left: 58.3333333333%;
1871 }
1872
1873 .col-sm-offset-8 {
1874 margin-left: 66.6666666667%;
1875 }
1876
1877 .col-sm-offset-9 {
1878 margin-left: 75%;
1879 }
1880
1881 .col-sm-offset-10 {
1882 margin-left: 83.3333333333%;
1883 }
1884
1885 .col-sm-offset-11 {
1886 margin-left: 91.6666666667%;
1887 }
1888
1889 .col-sm-offset-12 {
1890 margin-left: 100%;
1891 }
1892 }
1893 @media (min-width: 992px) {
1894 .container {
1895 width: 970px;
1896 }
1897
1898 .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, article, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
1899 float: left;
1900 }
1901
1902 .col-md-1 {
1903 width: 8.3333333333%;
1904 }
1905
1906 .col-md-2 {
1907 width: 16.6666666667%;
1908 }
1909
1910 .col-md-3 {
1911 width: 25%;
1912 }
1913
1914 .col-md-4 {
1915 width: 33.3333333333%;
1916 }
1917
1918 .col-md-5 {
1919 width: 41.6666666667%;
1920 }
1921
1922 .col-md-6 {
1923 width: 50%;
1924 }
1925
1926 .col-md-7 {
1927 width: 58.3333333333%;
1928 }
1929
1930 .col-md-8, article {
1931 width: 66.6666666667%;
1932 }
1933
1934 .col-md-9 {
1935 width: 75%;
1936 }
1937
1938 .col-md-10 {
1939 width: 83.3333333333%;
1940 }
1941
1942 .col-md-11 {
1943 width: 91.6666666667%;
1944 }
1945
1946 .col-md-12 {
1947 width: 100%;
1948 }
1949
1950 .col-md-pull-0 {
1951 right: 0%;
1952 }
1953
1954 .col-md-pull-1 {
1955 right: 8.3333333333%;
1956 }
1957
1958 .col-md-pull-2 {
1959 right: 16.6666666667%;
1960 }
1961
1962 .col-md-pull-3 {
1963 right: 25%;
1964 }
1965
1966 .col-md-pull-4 {
1967 right: 33.3333333333%;
1968 }
1969
1970 .col-md-pull-5 {
1971 right: 41.6666666667%;
1972 }
1973
1974 .col-md-pull-6 {
1975 right: 50%;
1976 }
1977
1978 .col-md-pull-7 {
1979 right: 58.3333333333%;
1980 }
1981
1982 .col-md-pull-8 {
1983 right: 66.6666666667%;
1984 }
1985
1986 .col-md-pull-9 {
1987 right: 75%;
1988 }
1989
1990 .col-md-pull-10 {
1991 right: 83.3333333333%;
1992 }
1993
1994 .col-md-pull-11 {
1995 right: 91.6666666667%;
1996 }
1997
1998 .col-md-pull-12 {
1999 right: 100%;
2000 }
2001
2002 .col-md-push-0 {
2003 left: 0%;
2004 }
2005
2006 .col-md-push-1 {
2007 left: 8.3333333333%;
2008 }
2009
2010 .col-md-push-2 {
2011 left: 16.6666666667%;
2012 }
2013
2014 .col-md-push-3 {
2015 left: 25%;
2016 }
2017
2018 .col-md-push-4 {
2019 left: 33.3333333333%;
2020 }
2021
2022 .col-md-push-5 {
2023 left: 41.6666666667%;
2024 }
2025
2026 .col-md-push-6 {
2027 left: 50%;
2028 }
2029
2030 .col-md-push-7 {
2031 left: 58.3333333333%;
2032 }
2033
2034 .col-md-push-8 {
2035 left: 66.6666666667%;
2036 }
2037
2038 .col-md-push-9 {
2039 left: 75%;
2040 }
2041
2042 .col-md-push-10 {
2043 left: 83.3333333333%;
2044 }
2045
2046 .col-md-push-11 {
2047 left: 91.6666666667%;
2048 }
2049
2050 .col-md-push-12 {
2051 left: 100%;
2052 }
2053
2054 .col-md-offset-0 {
2055 margin-left: 0%;
2056 }
2057
2058 .col-md-offset-1 {
2059 margin-left: 8.3333333333%;
2060 }
2061
2062 .col-md-offset-2 {
2063 margin-left: 16.6666666667%;
2064 }
2065
2066 .col-md-offset-3 {
2067 margin-left: 25%;
2068 }
2069
2070 .col-md-offset-4 {
2071 margin-left: 33.3333333333%;
2072 }
2073
2074 .col-md-offset-5 {
2075 margin-left: 41.6666666667%;
2076 }
2077
2078 .col-md-offset-6 {
2079 margin-left: 50%;
2080 }
2081
2082 .col-md-offset-7 {
2083 margin-left: 58.3333333333%;
2084 }
2085
2086 .col-md-offset-8 {
2087 margin-left: 66.6666666667%;
2088 }
2089
2090 .col-md-offset-9 {
2091 margin-left: 75%;
2092 }
2093
2094 .col-md-offset-10 {
2095 margin-left: 83.3333333333%;
2096 }
2097
2098 .col-md-offset-11 {
2099 margin-left: 91.6666666667%;
2100 }
2101
2102 .col-md-offset-12 {
2103 margin-left: 100%;
2104 }
2105 }
2106 @media (min-width: 1200px) {
2107 .container {
2108 width: 1170px;
2109 }
2110
2111 .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6 , .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
2112 float: left;
2113 }
2114
2115 .col-lg-1 {
2116 width: 8.3333333333%;
2117 }
2118
2119 .col-lg-2 {
2120 width: 16.6666666667%;
2121 }
2122
2123 .col-lg-3 {
2124 width: 25%;
2125 }
2126
2127 .col-lg-4 {
2128 width: 33.3333333333%;
2129 }
2130
2131 .col-lg-5 {
2132 width: 41.6666666667%;
2133 }
2134
2135 .col-lg-6 {
2136 width: 50%;
2137 }
2138
2139 .col-lg-7 {
2140 width: 58.3333333333%;
2141 }
2142
2143 .col-lg-8 {
2144 width: 66.6666666667%;
2145 }
2146
2147 .col-lg-9 {
2148 width: 75%;
2149 }
2150
2151 .col-lg-10 {
2152 width: 83.3333333333%;
2153 }
2154
2155 .col-lg-11 {
2156 width: 91.6666666667%;
2157 }
2158
2159 .col-lg-12 {
2160 width: 100%;
2161 }
2162
2163 .col-lg-pull-0 {
2164 right: 0%;
2165 }
2166
2167 .col-lg-pull-1 {
2168 right: 8.3333333333%;
2169 }
2170
2171 .col-lg-pull-2 {
2172 right: 16.6666666667%;
2173 }
2174
2175 .col-lg-pull-3 {
2176 right: 25%;
2177 }
2178
2179 .col-lg-pull-4 {
2180 right: 33.3333333333%;
2181 }
2182
2183 .col-lg-pull-5 {
2184 right: 41.6666666667%;
2185 }
2186
2187 .col-lg-pull-6 {
2188 right: 50%;
2189 }
2190
2191 .col-lg-pull-7 {
2192 right: 58.3333333333%;
2193 }
2194
2195 .col-lg-pull-8 {
2196 right: 66.6666666667%;
2197 }
2198
2199 .col-lg-pull-9 {
2200 right: 75%;
2201 }
2202
2203 .col-lg-pull-10 {
2204 right: 83.3333333333%;
2205 }
2206
2207 .col-lg-pull-11 {
2208 right: 91.6666666667%;
2209 }
2210
2211 .col-lg-pull-12 {
2212 right: 100%;
2213 }
2214
2215 .col-lg-push-0 {
2216 left: 0%;
2217 }
2218
2219 .col-lg-push-1 {
2220 left: 8.3333333333%;
2221 }
2222
2223 .col-lg-push-2 {
2224 left: 16.6666666667%;
2225 }
2226
2227 .col-lg-push-3 {
2228 left: 25%;
2229 }
2230
2231 .col-lg-push-4 {
2232 left: 33.3333333333%;
2233 }
2234
2235 .col-lg-push-5 {
2236 left: 41.6666666667%;
2237 }
2238
2239 .col-lg-push-6 {
2240 left: 50%;
2241 }
2242
2243 .col-lg-push-7 {
2244 left: 58.3333333333%;
2245 }
2246
2247 .col-lg-push-8 {
2248 left: 66.6666666667%;
2249 }
2250
2251 .col-lg-push-9 {
2252 left: 75%;
2253 }
2254
2255 .col-lg-push-10 {
2256 left: 83.3333333333%;
2257 }
2258
2259 .col-lg-push-11 {
2260 left: 91.6666666667%;
2261 }
2262
2263 .col-lg-push-12 {
2264 left: 100%;
2265 }
2266
2267 .col-lg-offset-0 {
2268 margin-left: 0%;
2269 }
2270
2271 .col-lg-offset-1 {
2272 margin-left: 8.3333333333%;
2273 }
2274
2275 .col-lg-offset-2 {
2276 margin-left: 16.6666666667%;
2277 }
2278
2279 .col-lg-offset-3 {
2280 margin-left: 25%;
2281 }
2282
2283 .col-lg-offset-4 {
2284 margin-left: 33.3333333333%;
2285 }
2286
2287 .col-lg-offset-5 {
2288 margin-left: 41.6666666667%;
2289 }
2290
2291 .col-lg-offset-6 {
2292 margin-left: 50%;
2293 }
2294
2295 .col-lg-offset-7 {
2296 margin-left: 58.3333333333%;
2297 }
2298
2299 .col-lg-offset-8 {
2300 margin-left: 66.6666666667%;
2301 }
2302
2303 .col-lg-offset-9 {
2304 margin-left: 75%;
2305 }
2306
2307 .col-lg-offset-10 {
2308 margin-left: 83.3333333333%;
2309 }
2310
2311 .col-lg-offset-11 {
2312 margin-left: 91.6666666667%;
2313 }
2314
2315 .col-lg-offset-12 {
2316 margin-left: 100%;
2317 }
2318 }
2319 table {
2320 max-width: 100%;
2321 background-color: transparent;
2322 }
2323
2324 th {
2325 text-align: left;
2326 }
2327
2328 .table, table {
2329 width: 100%;
2330 margin-bottom: 18px;
2331 }
2332 .table > thead > tr > th, table > thead > tr > th,
2333 .table > thead > tr > td,
2334 table > thead > tr > td,
2335 .table > tbody > tr > th,
2336 table > tbody > tr > th,
2337 .table > tbody > tr > td,
2338 table > tbody > tr > td,
2339 .table > tfoot > tr > th,
2340 table > tfoot > tr > th,
2341 .table > tfoot > tr > td,
2342 table > tfoot > tr > td {
2343 padding: 8px;
2344 line-height: 1.2;
2345 vertical-align: top;
2346 border-top: 1px solid #dddddd;
2347 }
2348 .table > thead > tr > th, table > thead > tr > th {
2349 vertical-align: bottom;
2350 border-bottom: 2px solid #dddddd;
2351 }
2352 .table > caption + thead > tr:first-child > th, table > caption + thead > tr:fir st-child > th,
2353 .table > caption + thead > tr:first-child > td,
2354 table > caption + thead > tr:first-child > td,
2355 .table > colgroup + thead > tr:first-child > th,
2356 table > colgroup + thead > tr:first-child > th,
2357 .table > colgroup + thead > tr:first-child > td,
2358 table > colgroup + thead > tr:first-child > td,
2359 .table > thead:first-child > tr:first-child > th,
2360 table > thead:first-child > tr:first-child > th,
2361 .table > thead:first-child > tr:first-child > td,
2362 table > thead:first-child > tr:first-child > td {
2363 border-top: 0;
2364 }
2365 .table > tbody + tbody, table > tbody + tbody {
2366 border-top: 2px solid #dddddd;
2367 }
2368 .table .table, table .table, .table table, table table {
2369 background-color: white;
2370 }
2371
2372 .table-condensed > thead > tr > th,
2373 .table-condensed > thead > tr > td,
2374 .table-condensed > tbody > tr > th,
2375 .table-condensed > tbody > tr > td,
2376 .table-condensed > tfoot > tr > th,
2377 .table-condensed > tfoot > tr > td {
2378 padding: 5px;
2379 }
2380
2381 .table-bordered {
2382 border: 1px solid #dddddd;
2383 }
2384 .table-bordered > thead > tr > th,
2385 .table-bordered > thead > tr > td,
2386 .table-bordered > tbody > tr > th,
2387 .table-bordered > tbody > tr > td,
2388 .table-bordered > tfoot > tr > th,
2389 .table-bordered > tfoot > tr > td {
2390 border: 1px solid #dddddd;
2391 }
2392 .table-bordered > thead > tr > th,
2393 .table-bordered > thead > tr > td {
2394 border-bottom-width: 2px;
2395 }
2396
2397 .table-striped > tbody > tr:nth-child(odd) > td,
2398 .table-striped > tbody > tr:nth-child(odd) > th {
2399 background-color: #f9f9f9;
2400 }
2401
2402 .table-hover > tbody > tr:hover > td,
2403 .table-hover > tbody > tr:hover > th {
2404 background-color: whitesmoke;
2405 }
2406
2407 table col[class*="col-"] {
2408 float: none;
2409 display: table-column;
2410 }
2411
2412 table td[class*="col-"],
2413 table th[class*="col-"] {
2414 float: none;
2415 display: table-cell;
2416 }
2417
2418 .table > thead > tr > td.active, table > thead > tr > td.active,
2419 .table > thead > tr > th.active,
2420 table > thead > tr > th.active, .table > thead > tr.active > td, table > thead > tr.active > td, .table > thead > tr.active > th, table > thead > tr.active > th ,
2421 .table > tbody > tr > td.active,
2422 table > tbody > tr > td.active,
2423 .table > tbody > tr > th.active,
2424 table > tbody > tr > th.active,
2425 .table > tbody > tr.active > td,
2426 table > tbody > tr.active > td,
2427 .table > tbody > tr.active > th,
2428 table > tbody > tr.active > th,
2429 .table > tfoot > tr > td.active,
2430 table > tfoot > tr > td.active,
2431 .table > tfoot > tr > th.active,
2432 table > tfoot > tr > th.active,
2433 .table > tfoot > tr.active > td,
2434 table > tfoot > tr.active > td,
2435 .table > tfoot > tr.active > th,
2436 table > tfoot > tr.active > th {
2437 background-color: whitesmoke;
2438 }
2439
2440 .table > thead > tr > td.success, table > thead > tr > td.success,
2441 .table > thead > tr > th.success,
2442 table > thead > tr > th.success, .table > thead > tr.success > td, table > thead > tr.success > td, .table > thead > tr.success > th, table > thead > tr.success > th,
2443 .table > tbody > tr > td.success,
2444 table > tbody > tr > td.success,
2445 .table > tbody > tr > th.success,
2446 table > tbody > tr > th.success,
2447 .table > tbody > tr.success > td,
2448 table > tbody > tr.success > td,
2449 .table > tbody > tr.success > th,
2450 table > tbody > tr.success > th,
2451 .table > tfoot > tr > td.success,
2452 table > tfoot > tr > td.success,
2453 .table > tfoot > tr > th.success,
2454 table > tfoot > tr > th.success,
2455 .table > tfoot > tr.success > td,
2456 table > tfoot > tr.success > td,
2457 .table > tfoot > tr.success > th,
2458 table > tfoot > tr.success > th {
2459 background-color: #dff0d8;
2460 }
2461
2462 .table-hover > tbody > tr > td.success:hover,
2463 .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success: hover > td, .table-hover > tbody > tr.success:hover > th {
2464 background-color: #d0e9c6;
2465 }
2466
2467 .table > thead > tr > td.danger, table > thead > tr > td.danger,
2468 .table > thead > tr > th.danger,
2469 table > thead > tr > th.danger, .table > thead > tr.danger > td, table > thead > tr.danger > td, .table > thead > tr.danger > th, table > thead > tr.danger > th ,
2470 .table > tbody > tr > td.danger,
2471 table > tbody > tr > td.danger,
2472 .table > tbody > tr > th.danger,
2473 table > tbody > tr > th.danger,
2474 .table > tbody > tr.danger > td,
2475 table > tbody > tr.danger > td,
2476 .table > tbody > tr.danger > th,
2477 table > tbody > tr.danger > th,
2478 .table > tfoot > tr > td.danger,
2479 table > tfoot > tr > td.danger,
2480 .table > tfoot > tr > th.danger,
2481 table > tfoot > tr > th.danger,
2482 .table > tfoot > tr.danger > td,
2483 table > tfoot > tr.danger > td,
2484 .table > tfoot > tr.danger > th,
2485 table > tfoot > tr.danger > th {
2486 background-color: #f2dede;
2487 }
2488
2489 .table-hover > tbody > tr > td.danger:hover,
2490 .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:ho ver > td, .table-hover > tbody > tr.danger:hover > th {
2491 background-color: #ebcccc;
2492 }
2493
2494 .table > thead > tr > td.warning, table > thead > tr > td.warning,
2495 .table > thead > tr > th.warning,
2496 table > thead > tr > th.warning, .table > thead > tr.warning > td, table > thead > tr.warning > td, .table > thead > tr.warning > th, table > thead > tr.warning > th,
2497 .table > tbody > tr > td.warning,
2498 table > tbody > tr > td.warning,
2499 .table > tbody > tr > th.warning,
2500 table > tbody > tr > th.warning,
2501 .table > tbody > tr.warning > td,
2502 table > tbody > tr.warning > td,
2503 .table > tbody > tr.warning > th,
2504 table > tbody > tr.warning > th,
2505 .table > tfoot > tr > td.warning,
2506 table > tfoot > tr > td.warning,
2507 .table > tfoot > tr > th.warning,
2508 table > tfoot > tr > th.warning,
2509 .table > tfoot > tr.warning > td,
2510 table > tfoot > tr.warning > td,
2511 .table > tfoot > tr.warning > th,
2512 table > tfoot > tr.warning > th {
2513 background-color: #fcf8e3;
2514 }
2515
2516 .table-hover > tbody > tr > td.warning:hover,
2517 .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning: hover > td, .table-hover > tbody > tr.warning:hover > th {
2518 background-color: #faf2cc;
2519 }
2520
2521 @media (max-width: 767px) {
2522 .table-responsive {
2523 width: 100%;
2524 margin-bottom: 13.5px;
2525 overflow-y: hidden;
2526 overflow-x: scroll;
2527 -ms-overflow-style: -ms-autohiding-scrollbar;
2528 border: 1px solid #dddddd;
2529 -webkit-overflow-scrolling: touch;
2530 }
2531 .table-responsive > .table, .table-responsive > table {
2532 margin-bottom: 0;
2533 }
2534 .table-responsive > .table > thead > tr > th, .table-responsive > table > thea d > tr > th,
2535 .table-responsive > .table > thead > tr > td,
2536 .table-responsive > table > thead > tr > td,
2537 .table-responsive > .table > tbody > tr > th,
2538 .table-responsive > table > tbody > tr > th,
2539 .table-responsive > .table > tbody > tr > td,
2540 .table-responsive > table > tbody > tr > td,
2541 .table-responsive > .table > tfoot > tr > th,
2542 .table-responsive > table > tfoot > tr > th,
2543 .table-responsive > .table > tfoot > tr > td,
2544 .table-responsive > table > tfoot > tr > td {
2545 white-space: nowrap;
2546 }
2547 .table-responsive > .table-bordered {
2548 border: 0;
2549 }
2550 .table-responsive > .table-bordered > thead > tr > th:first-child,
2551 .table-responsive > .table-bordered > thead > tr > td:first-child,
2552 .table-responsive > .table-bordered > tbody > tr > th:first-child,
2553 .table-responsive > .table-bordered > tbody > tr > td:first-child,
2554 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
2555 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
2556 border-left: 0;
2557 }
2558 .table-responsive > .table-bordered > thead > tr > th:last-child,
2559 .table-responsive > .table-bordered > thead > tr > td:last-child,
2560 .table-responsive > .table-bordered > tbody > tr > th:last-child,
2561 .table-responsive > .table-bordered > tbody > tr > td:last-child,
2562 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
2563 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
2564 border-right: 0;
2565 }
2566 .table-responsive > .table-bordered > tbody > tr:last-child > th,
2567 .table-responsive > .table-bordered > tbody > tr:last-child > td,
2568 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
2569 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
2570 border-bottom: 0;
2571 }
2572 }
895 fieldset { 2573 fieldset {
896 padding: 0; 2574 padding: 0;
897 margin: 0; 2575 margin: 0;
898 border: 0; 2576 border: 0;
899 } 2577 }
900 2578
901 legend { 2579 legend {
902 display: block; 2580 display: block;
903 width: 100%; 2581 width: 100%;
904 padding: 0; 2582 padding: 0;
905 margin-bottom: 36px; 2583 margin-bottom: 18px;
906 font-size: 21px; 2584 font-size: 22.5px;
907 line-height: 48px; 2585 line-height: inherit;
908 color: #333333; 2586 color: #484848;
909 border: 0; 2587 border: 0;
910 border-bottom: 1px solid #eee; 2588 border-bottom: 1px solid #e5e5e5;
911 }
912 legend small, legend h1 .version, h1 legend .version {
913 font-size: 18px;
914 color: #999999;
915 }
916
917 label,
918 input,
919 button,
920 select,
921 textarea {
922 font-size: 14px;
923 font-weight: normal;
924 line-height: 24px;
925 }
926
927 input,
928 button,
929 select,
930 textarea {
931 font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
932 } 2589 }
933 2590
934 label { 2591 label {
2592 display: inline-block;
2593 margin-bottom: 5px;
2594 font-weight: bold;
2595 }
2596
2597 input[type="search"] {
2598 -webkit-box-sizing: border-box;
2599 -moz-box-sizing: border-box;
2600 box-sizing: border-box;
2601 }
2602
2603 input[type="radio"],
2604 input[type="checkbox"] {
2605 margin: 4px 0 0;
2606 margin-top: 1px \9;
2607 /* IE8-9 */
2608 line-height: normal;
2609 }
2610
2611 input[type="file"] {
935 display: block; 2612 display: block;
936 margin-bottom: 5px;
937 color: #333333;
938 }
939
940 input,
941 textarea,
942 select,
943 .uneditable-input {
944 display: inline-block;
945 width: 210px;
946 height: 24px;
947 padding: 4px;
948 margin-bottom: 9px;
949 font-size: 14px;
950 line-height: 24px;
951 color: #555555;
952 background-color: white;
953 border: 1px solid #cccccc;
954 -webkit-border-radius: 3px;
955 -moz-border-radius: 3px;
956 border-radius: 3px;
957 }
958
959 .uneditable-textarea {
960 width: auto;
961 height: auto;
962 }
963
964 label input,
965 label textarea,
966 label select {
967 display: block;
968 }
969
970 input[type="image"],
971 input[type="checkbox"],
972 input[type="radio"] {
973 width: auto;
974 height: auto;
975 padding: 0;
976 margin: 3px 0;
977 *margin-top: 0;
978 /* IE7 */
979 line-height: normal;
980 cursor: pointer;
981 background-color: transparent;
982 border: 0 \9;
983 /* IE9 and down */
984 -webkit-border-radius: 0;
985 -moz-border-radius: 0;
986 border-radius: 0;
987 }
988
989 input[type="image"] {
990 border: 0;
991 }
992
993 input[type="file"] {
994 width: auto;
995 padding: initial;
996 line-height: initial;
997 background-color: white;
998 background-color: initial;
999 border: initial;
1000 -webkit-box-shadow: none;
1001 -moz-box-shadow: none;
1002 box-shadow: none;
1003 }
1004
1005 input[type="button"],
1006 input[type="reset"],
1007 input[type="submit"] {
1008 width: auto;
1009 height: auto;
1010 }
1011
1012 select,
1013 input[type="file"] {
1014 height: 28px;
1015 /* In IE7, the height of the select element cannot be changed by height, only font-size */
1016 *margin-top: 4px;
1017 /* For IE7, add top margin to align select with labels */
1018 line-height: 28px;
1019 }
1020
1021 input[type="file"] {
1022 line-height: 18px \9;
1023 }
1024
1025 select {
1026 width: 220px;
1027 background-color: white;
1028 } 2613 }
1029 2614
1030 select[multiple], 2615 select[multiple],
1031 select[size] { 2616 select[size] {
1032 height: auto; 2617 height: auto;
1033 } 2618 }
1034 2619
1035 input[type="image"] { 2620 select optgroup {
1036 -webkit-box-shadow: none; 2621 font-size: inherit;
1037 -moz-box-shadow: none; 2622 font-style: inherit;
1038 box-shadow: none; 2623 font-family: inherit;
1039 }
1040
1041 textarea {
1042 height: auto;
1043 }
1044
1045 input[type="hidden"] {
1046 display: none;
1047 }
1048
1049 .radio,
1050 .checkbox {
1051 min-height: 18px;
1052 padding-left: 18px;
1053 }
1054
1055 .radio input[type="radio"],
1056 .checkbox input[type="checkbox"] {
1057 float: left;
1058 margin-left: -18px;
1059 }
1060
1061 .controls > .radio:first-child,
1062 .controls > .checkbox:first-child {
1063 padding-top: 5px;
1064 }
1065
1066 .radio.inline,
1067 .checkbox.inline {
1068 display: inline-block;
1069 padding-top: 5px;
1070 margin-bottom: 0;
1071 vertical-align: middle;
1072 }
1073
1074 .radio.inline + .radio.inline,
1075 .checkbox.inline + .checkbox.inline {
1076 margin-left: 10px;
1077 }
1078
1079 input,
1080 textarea {
1081 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1082 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1083 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1084 -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
1085 -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
1086 -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
1087 -o-transition: border linear 0.2s, box-shadow linear 0.2s;
1088 transition: border linear 0.2s, box-shadow linear 0.2s;
1089 }
1090
1091 input:focus,
1092 textarea:focus {
1093 border-color: rgba(82, 168, 236, 0.8);
1094 outline: 0;
1095 outline: thin dotted \9;
1096 /* IE6-9 */
1097 -webkit-box-shadow: "inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236 ,.6)";
1098 -moz-box-shadow: "inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6 )";
1099 box-shadow: "inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)";
1100 } 2624 }
1101 2625
1102 input[type="file"]:focus, 2626 input[type="file"]:focus,
1103 input[type="radio"]:focus, 2627 input[type="radio"]:focus,
1104 input[type="checkbox"]:focus, 2628 input[type="checkbox"]:focus {
1105 select:focus {
1106 outline: thin dotted #333; 2629 outline: thin dotted #333;
1107 outline: 5px auto -webkit-focus-ring-color; 2630 outline: 5px auto -webkit-focus-ring-color;
1108 outline-offset: -2px; 2631 outline-offset: -2px;
1109 -webkit-box-shadow: none; 2632 }
1110 -moz-box-shadow: none; 2633
1111 box-shadow: none; 2634 input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-i nner-spin-button {
1112 } 2635 height: auto;
1113 2636 }
1114 .input-mini { 2637
1115 width: 60px; 2638 output {
1116 } 2639 display: block;
1117 2640 padding-top: 7px;
1118 .input-small { 2641 font-size: 15px;
1119 width: 90px; 2642 line-height: 1.2;
1120 } 2643 color: #555555;
1121 2644 vertical-align: middle;
1122 .input-medium { 2645 }
1123 width: 150px; 2646
1124 } 2647 .form-control {
1125 2648 display: block;
1126 .input-large { 2649 width: 100%;
1127 width: 210px; 2650 height: 32px;
1128 } 2651 padding: 6px 12px;
1129 2652 font-size: 15px;
1130 .input-xlarge { 2653 line-height: 1.2;
1131 width: 270px; 2654 color: #555555;
1132 } 2655 vertical-align: middle;
1133 2656 background-color: white;
1134 .input-xxlarge { 2657 background-image: none;
1135 width: 530px; 2658 border: 1px solid #cccccc;
1136 } 2659 border-radius: 4px;
1137 2660 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1138 input[class*="span"], 2661 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1139 select[class*="span"], 2662 -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.1 5s;
1140 textarea[class*="span"], 2663 transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1141 .uneditable-input[class*="span"], 2664 }
1142 .row-fluid input[class*="span"], 2665 .form-control:focus {
1143 .row-fluid select[class*="span"], 2666 border-color: #66afe9;
1144 .row-fluid textarea[class*="span"], 2667 outline: 0;
1145 .row-fluid .uneditable-input[class*="span"] { 2668 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 17 5, 233, 0.6);
1146 float: none; 2669 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
1147 margin-left: 0; 2670 }
1148 } 2671 .form-control:-moz-placeholder {
1149 2672 color: #999999;
1150 input, 2673 }
1151 textarea, 2674 .form-control::-moz-placeholder {
1152 .uneditable-input { 2675 color: #999999;
1153 margin-left: 0; 2676 }
1154 } 2677 .form-control:-ms-input-placeholder {
1155 2678 color: #999999;
1156 input.span1, textarea.span1, .uneditable-input.span1 { 2679 }
1157 width: 50px; 2680 .form-control::-webkit-input-placeholder {
1158 } 2681 color: #999999;
1159 2682 }
1160 input.span2, textarea.span2, .uneditable-input.span2 { 2683 .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-contr ol {
1161 width: 130px;
1162 }
1163
1164 input.span3, textarea.span3, .uneditable-input.span3 {
1165 width: 210px;
1166 }
1167
1168 input.span4, textarea.span4, .uneditable-input.span4 {
1169 width: 290px;
1170 }
1171
1172 input.span5, textarea.span5, .uneditable-input.span5 {
1173 width: 370px;
1174 }
1175
1176 input.span6, textarea.span6, .uneditable-input.span6 {
1177 width: 450px;
1178 }
1179
1180 input.span7, textarea.span7, .uneditable-input.span7 {
1181 width: 530px;
1182 }
1183
1184 input.span8, textarea.span8, .uneditable-input.span8, article.uneditable-input {
1185 width: 610px;
1186 }
1187
1188 input.span9, textarea.span9, .uneditable-input.span9 {
1189 width: 690px;
1190 }
1191
1192 input.span10, textarea.span10, .uneditable-input.span10 {
1193 width: 770px;
1194 }
1195
1196 input.span11, textarea.span11, .uneditable-input.span11 {
1197 width: 850px;
1198 }
1199
1200 input.span12, textarea.span12, .uneditable-input.span12 {
1201 width: 930px;
1202 }
1203
1204 input[disabled],
1205 select[disabled],
1206 textarea[disabled],
1207 input[readonly],
1208 select[readonly],
1209 textarea[readonly] {
1210 cursor: not-allowed; 2684 cursor: not-allowed;
1211 background-color: #eeeeee; 2685 background-color: #eeeeee;
1212 border-color: #ddd; 2686 }
1213 } 2687
1214 2688 textarea.form-control {
1215 input[type="radio"][disabled], 2689 height: auto;
1216 input[type="checkbox"][disabled], 2690 }
1217 input[type="radio"][readonly], 2691
1218 input[type="checkbox"][readonly] { 2692 .form-group {
1219 background-color: transparent; 2693 margin-bottom: 15px;
1220 } 2694 }
1221 2695
1222 .control-group.warning > label, 2696 .radio,
1223 .control-group.warning .help-block, 2697 .checkbox {
1224 .control-group.warning .help-inline { 2698 display: block;
2699 min-height: 18px;
2700 margin-top: 10px;
2701 margin-bottom: 10px;
2702 padding-left: 20px;
2703 vertical-align: middle;
2704 }
2705 .radio label,
2706 .checkbox label {
2707 display: inline;
2708 margin-bottom: 0;
2709 font-weight: normal;
2710 cursor: pointer;
2711 }
2712
2713 .radio input[type="radio"],
2714 .radio-inline input[type="radio"],
2715 .checkbox input[type="checkbox"],
2716 .checkbox-inline input[type="checkbox"] {
2717 float: left;
2718 margin-left: -20px;
2719 }
2720
2721 .radio + .radio,
2722 .checkbox + .checkbox {
2723 margin-top: -5px;
2724 }
2725
2726 .radio-inline,
2727 .checkbox-inline {
2728 display: inline-block;
2729 padding-left: 20px;
2730 margin-bottom: 0;
2731 vertical-align: middle;
2732 font-weight: normal;
2733 cursor: pointer;
2734 }
2735
2736 .radio-inline + .radio-inline,
2737 .checkbox-inline + .checkbox-inline {
2738 margin-top: 0;
2739 margin-left: 10px;
2740 }
2741
2742 input[type="radio"][disabled], fieldset[disabled] input[type="radio"],
2743 input[type="checkbox"][disabled], fieldset[disabled]
2744 input[type="checkbox"],
2745 .radio[disabled], fieldset[disabled]
2746 .radio,
2747 .radio-inline[disabled], fieldset[disabled]
2748 .radio-inline,
2749 .checkbox[disabled], fieldset[disabled]
2750 .checkbox,
2751 .checkbox-inline[disabled], fieldset[disabled]
2752 .checkbox-inline {
2753 cursor: not-allowed;
2754 }
2755
2756 .input-sm, .input-group-sm > .form-control,
2757 .input-group-sm > .input-group-addon,
2758 .input-group-sm > .input-group-btn > .btn,
2759 .input-group-sm > .input-group-btn > .get-started,
2760 .learn-more .input-group-sm > .input-group-btn > a {
2761 height: 30px;
2762 padding: 5px 10px;
2763 font-size: 12px;
2764 line-height: 1.5;
2765 border-radius: 3px;
2766 }
2767
2768 select.input-sm, .input-group-sm > select.form-control,
2769 .input-group-sm > select.input-group-addon,
2770 .input-group-sm > .input-group-btn > select.btn,
2771 .input-group-sm > .input-group-btn > select.get-started {
2772 height: 30px;
2773 line-height: 30px;
2774 }
2775
2776 textarea.input-sm, .input-group-sm > textarea.form-control,
2777 .input-group-sm > textarea.input-group-addon,
2778 .input-group-sm > .input-group-btn > textarea.btn,
2779 .input-group-sm > .input-group-btn > textarea.get-started {
2780 height: auto;
2781 }
2782
2783 .input-lg, .input-group-lg > .form-control,
2784 .input-group-lg > .input-group-addon,
2785 .input-group-lg > .input-group-btn > .btn,
2786 .input-group-lg > .input-group-btn > .get-started,
2787 .learn-more .input-group-lg > .input-group-btn > a {
2788 height: 45px;
2789 padding: 10px 16px;
2790 font-size: 18px;
2791 line-height: 1.33;
2792 border-radius: 6px;
2793 }
2794
2795 select.input-lg, .input-group-lg > select.form-control,
2796 .input-group-lg > select.input-group-addon,
2797 .input-group-lg > .input-group-btn > select.btn,
2798 .input-group-lg > .input-group-btn > select.get-started {
2799 height: 45px;
2800 line-height: 45px;
2801 }
2802
2803 textarea.input-lg, .input-group-lg > textarea.form-control,
2804 .input-group-lg > textarea.input-group-addon,
2805 .input-group-lg > .input-group-btn > textarea.btn,
2806 .input-group-lg > .input-group-btn > textarea.get-started {
2807 height: auto;
2808 }
2809
2810 .has-warning .help-block,
2811 .has-warning .control-label,
2812 .has-warning .radio,
2813 .has-warning .checkbox,
2814 .has-warning .radio-inline,
2815 .has-warning .checkbox-inline {
1225 color: #c09853; 2816 color: #c09853;
1226 } 2817 }
1227 .control-group.warning input, 2818 .has-warning .form-control {
1228 .control-group.warning select, 2819 border-color: #c09853;
1229 .control-group.warning textarea { 2820 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2821 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2822 }
2823 .has-warning .form-control:focus {
2824 border-color: #a47e3c;
2825 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
2826 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
2827 }
2828 .has-warning .input-group-addon {
1230 color: #c09853; 2829 color: #c09853;
1231 border-color: #c09853; 2830 border-color: #c09853;
1232 }
1233 .control-group.warning input:focus,
1234 .control-group.warning select:focus,
1235 .control-group.warning textarea:focus {
1236 border-color: #a47e3c;
1237 -webkit-box-shadow: 0 0 6px #dbc59e;
1238 -moz-box-shadow: 0 0 6px #dbc59e;
1239 box-shadow: 0 0 6px #dbc59e;
1240 }
1241 .control-group.warning .input-prepend .add-on,
1242 .control-group.warning .input-append .add-on {
1243 color: #c09853;
1244 background-color: #fcf8e3; 2831 background-color: #fcf8e3;
1245 border-color: #c09853; 2832 }
1246 } 2833
1247 2834 .has-error .help-block,
1248 .control-group.error > label, 2835 .has-error .control-label,
1249 .control-group.error .help-block, 2836 .has-error .radio,
1250 .control-group.error .help-inline { 2837 .has-error .checkbox,
2838 .has-error .radio-inline,
2839 .has-error .checkbox-inline {
1251 color: #b94a48; 2840 color: #b94a48;
1252 } 2841 }
1253 .control-group.error input, 2842 .has-error .form-control {
1254 .control-group.error select, 2843 border-color: #b94a48;
1255 .control-group.error textarea { 2844 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2845 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2846 }
2847 .has-error .form-control:focus {
2848 border-color: #953b39;
2849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
2850 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
2851 }
2852 .has-error .input-group-addon {
1256 color: #b94a48; 2853 color: #b94a48;
1257 border-color: #b94a48; 2854 border-color: #b94a48;
1258 }
1259 .control-group.error input:focus,
1260 .control-group.error select:focus,
1261 .control-group.error textarea:focus {
1262 border-color: #953b39;
1263 -webkit-box-shadow: 0 0 6px #d59392;
1264 -moz-box-shadow: 0 0 6px #d59392;
1265 box-shadow: 0 0 6px #d59392;
1266 }
1267 .control-group.error .input-prepend .add-on,
1268 .control-group.error .input-append .add-on {
1269 color: #b94a48;
1270 background-color: #f2dede; 2855 background-color: #f2dede;
1271 border-color: #b94a48; 2856 }
1272 } 2857
1273 2858 .has-success .help-block,
1274 .control-group.success > label, 2859 .has-success .control-label,
1275 .control-group.success .help-block, 2860 .has-success .radio,
1276 .control-group.success .help-inline { 2861 .has-success .checkbox,
2862 .has-success .radio-inline,
2863 .has-success .checkbox-inline {
1277 color: #468847; 2864 color: #468847;
1278 } 2865 }
1279 .control-group.success input, 2866 .has-success .form-control {
1280 .control-group.success select, 2867 border-color: #468847;
1281 .control-group.success textarea { 2868 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2869 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2870 }
2871 .has-success .form-control:focus {
2872 border-color: #356635;
2873 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
2874 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
2875 }
2876 .has-success .input-group-addon {
1282 color: #468847; 2877 color: #468847;
1283 border-color: #468847; 2878 border-color: #468847;
1284 }
1285 .control-group.success input:focus,
1286 .control-group.success select:focus,
1287 .control-group.success textarea:focus {
1288 border-color: #356635;
1289 -webkit-box-shadow: 0 0 6px #7aba7b;
1290 -moz-box-shadow: 0 0 6px #7aba7b;
1291 box-shadow: 0 0 6px #7aba7b;
1292 }
1293 .control-group.success .input-prepend .add-on,
1294 .control-group.success .input-append .add-on {
1295 color: #468847;
1296 background-color: #dff0d8; 2879 background-color: #dff0d8;
1297 border-color: #468847; 2880 }
1298 } 2881
1299 2882 .form-control-static {
1300 input:focus:required:invalid, 2883 margin-bottom: 0;
1301 textarea:focus:required:invalid,
1302 select:focus:required:invalid {
1303 color: #b94a48;
1304 border-color: #ee5f5b;
1305 }
1306 input:focus:required:invalid:focus,
1307 textarea:focus:required:invalid:focus,
1308 select:focus:required:invalid:focus {
1309 border-color: #e9322d;
1310 -webkit-box-shadow: 0 0 6px #f8b9b7;
1311 -moz-box-shadow: 0 0 6px #f8b9b7;
1312 box-shadow: 0 0 6px #f8b9b7;
1313 }
1314
1315 .form-actions {
1316 padding: 23px 20px 24px;
1317 margin-top: 24px;
1318 margin-bottom: 24px;
1319 background-color: whitesmoke;
1320 border-top: 1px solid #ddd;
1321 *zoom: 1;
1322 }
1323 .form-actions:before, .form-actions:after {
1324 display: table;
1325 content: "";
1326 }
1327 .form-actions:after {
1328 clear: both;
1329 }
1330
1331 .uneditable-input {
1332 overflow: hidden;
1333 white-space: nowrap;
1334 cursor: not-allowed;
1335 background-color: white;
1336 border-color: #eee;
1337 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1338 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1339 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1340 }
1341
1342 :-moz-placeholder {
1343 color: #999999;
1344 }
1345
1346 ::-webkit-input-placeholder {
1347 color: #999999;
1348 }
1349
1350 .help-block,
1351 .help-inline {
1352 color: #555555;
1353 } 2884 }
1354 2885
1355 .help-block { 2886 .help-block {
1356 display: block; 2887 display: block;
1357 margin-bottom: 12px; 2888 margin-top: 5px;
1358 } 2889 margin-bottom: 10px;
1359 2890 color: #888888;
1360 .help-inline { 2891 }
2892
2893 @media (min-width: 768px) {
2894 .form-inline .form-group, .navbar-form .form-group {
2895 display: inline-block;
2896 margin-bottom: 0;
2897 vertical-align: middle;
2898 }
2899 .form-inline .form-control, .navbar-form .form-control {
2900 display: inline-block;
2901 }
2902 .form-inline .radio, .navbar-form .radio,
2903 .form-inline .checkbox,
2904 .navbar-form .checkbox {
2905 display: inline-block;
2906 margin-top: 0;
2907 margin-bottom: 0;
2908 padding-left: 0;
2909 }
2910 .form-inline .radio input[type="radio"], .navbar-form .radio input[type="radio "],
2911 .form-inline .checkbox input[type="checkbox"],
2912 .navbar-form .checkbox input[type="checkbox"] {
2913 float: none;
2914 margin-left: 0;
2915 }
2916 }
2917
2918 .form-horizontal .control-label,
2919 .form-horizontal .radio,
2920 .form-horizontal .checkbox,
2921 .form-horizontal .radio-inline,
2922 .form-horizontal .checkbox-inline {
2923 margin-top: 0;
2924 margin-bottom: 0;
2925 padding-top: 7px;
2926 }
2927 .form-horizontal .form-group {
2928 margin-left: -15px;
2929 margin-right: -15px;
2930 }
2931 .form-horizontal .form-group:before, .form-horizontal .form-group:after {
2932 content: " ";
2933 /* 1 */
2934 display: table;
2935 /* 2 */
2936 }
2937 .form-horizontal .form-group:after {
2938 clear: both;
2939 }
2940 .form-horizontal .form-control-static {
2941 padding-top: 7px;
2942 }
2943 @media (min-width: 768px) {
2944 .form-horizontal .control-label {
2945 text-align: right;
2946 }
2947 }
2948
2949 .btn, .get-started, .learn-more a {
1361 display: inline-block; 2950 display: inline-block;
1362 *display: inline; 2951 margin-bottom: 0;
1363 /* IE7 inline-block hack */ 2952 font-weight: normal;
1364 *zoom: 1; 2953 text-align: center;
1365 vertical-align: middle; 2954 vertical-align: middle;
1366 padding-left: 5px; 2955 cursor: pointer;
1367 } 2956 background-image: none;
1368 2957 border: 1px solid transparent;
1369 .input-prepend, 2958 white-space: nowrap;
1370 .input-append { 2959 padding: 6px 12px;
1371 margin-bottom: 5px; 2960 font-size: 15px;
1372 *zoom: 1; 2961 line-height: 1.2;
1373 } 2962 border-radius: 4px;
1374 .input-prepend:before, .input-prepend:after, 2963 -webkit-user-select: none;
1375 .input-append:before, 2964 -moz-user-select: none;
1376 .input-append:after { 2965 -ms-user-select: none;
1377 display: table; 2966 -o-user-select: none;
1378 content: ""; 2967 user-select: none;
1379 } 2968 }
1380 .input-prepend:after, 2969 .btn:focus, .get-started:focus, .learn-more a:focus {
1381 .input-append:after { 2970 outline: thin dotted #333;
1382 clear: both; 2971 outline: 5px auto -webkit-focus-ring-color;
1383 } 2972 outline-offset: -2px;
1384 .input-prepend input, 2973 }
1385 .input-prepend select, 2974 .btn:hover, .get-started:hover, .learn-more a:hover, .btn:focus, .get-started:fo cus, .learn-more a:focus {
1386 .input-prepend .uneditable-input, 2975 color: #333333;
1387 .input-append input, 2976 text-decoration: none;
1388 .input-append select, 2977 }
1389 .input-append .uneditable-input { 2978 .btn:active, .get-started:active, .learn-more a:active, .btn.active, .active.get -started, .learn-more a.active {
2979 outline: 0;
2980 background-image: none;
2981 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2982 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2983 }
2984 .btn.disabled, .disabled.get-started, .learn-more a.disabled, .btn[disabled], [d isabled].get-started, .learn-more a[disabled], fieldset[disabled] .btn, fieldset [disabled] .get-started, fieldset[disabled] .learn-more a, .learn-more fieldset[ disabled] a {
2985 cursor: not-allowed;
2986 pointer-events: none;
2987 opacity: 0.65;
2988 filter: alpha(opacity=65);
2989 -webkit-box-shadow: none;
2990 box-shadow: none;
2991 }
2992
2993 .btn-default {
2994 color: #333333;
2995 background-color: white;
2996 border-color: #cccccc;
2997 }
2998 .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
2999 color: #333333;
3000 background-color: #ebebeb;
3001 border-color: #adadad;
3002 }
3003 .open .btn-default.dropdown-toggle {
3004 color: #333333;
3005 background-color: #ebebeb;
3006 border-color: #adadad;
3007 }
3008 .btn-default:active, .btn-default.active {
3009 background-image: none;
3010 }
3011 .open .btn-default.dropdown-toggle {
3012 background-image: none;
3013 }
3014 .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabl ed], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[di sabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fi eldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
3015 background-color: white;
3016 border-color: #cccccc;
3017 }
3018
3019 .btn-primary, .get-started {
3020 color: white;
3021 background-color: #428bca;
3022 border-color: #357ebd;
3023 }
3024 .btn-primary:hover, .get-started:hover, .btn-primary:focus, .get-started:focus, .btn-primary:active, .get-started:active, .btn-primary.active, .active.get-start ed {
3025 color: white;
3026 background-color: #3276b1;
3027 border-color: #285e8e;
3028 }
3029 .open .btn-primary.dropdown-toggle, .open .dropdown-toggle.get-started {
3030 color: white;
3031 background-color: #3276b1;
3032 border-color: #285e8e;
3033 }
3034 .btn-primary:active, .get-started:active, .btn-primary.active, .active.get-start ed {
3035 background-image: none;
3036 }
3037 .open .btn-primary.dropdown-toggle, .open .dropdown-toggle.get-started {
3038 background-image: none;
3039 }
3040 .btn-primary.disabled, .disabled.get-started, .btn-primary.disabled:hover, .disa bled.get-started:hover, .btn-primary.disabled:focus, .disabled.get-started:focus , .btn-primary.disabled:active, .disabled.get-started:active, .btn-primary.disab led.active, .disabled.active.get-started, .btn-primary[disabled], [disabled].get -started, .btn-primary[disabled]:hover, [disabled].get-started:hover, .btn-prima ry[disabled]:focus, [disabled].get-started:focus, .btn-primary[disabled]:active, [disabled].get-started:active, .btn-primary[disabled].active, [disabled].active .get-started, fieldset[disabled] .btn-primary, fieldset[disabled] .get-started, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .get-started:hover, fi eldset[disabled] .btn-primary:focus, fieldset[disabled] .get-started:focus, fiel dset[disabled] .btn-primary:active, fieldset[disabled] .get-started:active, fiel dset[disabled] .btn-primary.active, fieldset[disabled] .active.get-started {
3041 background-color: #428bca;
3042 border-color: #357ebd;
3043 }
3044
3045 .btn-warning {
3046 color: white;
3047 background-color: #f0ad4e;
3048 border-color: #eea236;
3049 }
3050 .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
3051 color: white;
3052 background-color: #ed9c28;
3053 border-color: #d58512;
3054 }
3055 .open .btn-warning.dropdown-toggle {
3056 color: white;
3057 background-color: #ed9c28;
3058 border-color: #d58512;
3059 }
3060 .btn-warning:active, .btn-warning.active {
3061 background-image: none;
3062 }
3063 .open .btn-warning.dropdown-toggle {
3064 background-image: none;
3065 }
3066 .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabl ed], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[di sabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fi eldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
3067 background-color: #f0ad4e;
3068 border-color: #eea236;
3069 }
3070
3071 .btn-danger {
3072 color: white;
3073 background-color: #d9534f;
3074 border-color: #d43f3a;
3075 }
3076 .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
3077 color: white;
3078 background-color: #d2322d;
3079 border-color: #ac2925;
3080 }
3081 .open .btn-danger.dropdown-toggle {
3082 color: white;
3083 background-color: #d2322d;
3084 border-color: #ac2925;
3085 }
3086 .btn-danger:active, .btn-danger.active {
3087 background-image: none;
3088 }
3089 .open .btn-danger.dropdown-toggle {
3090 background-image: none;
3091 }
3092 .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .b tn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], . btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:a ctive, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[di sabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabl ed] .btn-danger:active, fieldset[disabled] .btn-danger.active {
3093 background-color: #d9534f;
3094 border-color: #d43f3a;
3095 }
3096
3097 .btn-success {
3098 color: white;
3099 background-color: #5cb85c;
3100 border-color: #4cae4c;
3101 }
3102 .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
3103 color: white;
3104 background-color: #47a447;
3105 border-color: #398439;
3106 }
3107 .open .btn-success.dropdown-toggle {
3108 color: white;
3109 background-color: #47a447;
3110 border-color: #398439;
3111 }
3112 .btn-success:active, .btn-success.active {
3113 background-image: none;
3114 }
3115 .open .btn-success.dropdown-toggle {
3116 background-image: none;
3117 }
3118 .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabl ed], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[di sabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fi eldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
3119 background-color: #5cb85c;
3120 border-color: #4cae4c;
3121 }
3122
3123 .btn-info {
3124 color: white;
3125 background-color: #5bc0de;
3126 border-color: #46b8da;
3127 }
3128 .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
3129 color: white;
3130 background-color: #39b3d7;
3131 border-color: #269abc;
3132 }
3133 .open .btn-info.dropdown-toggle {
3134 color: white;
3135 background-color: #39b3d7;
3136 border-color: #269abc;
3137 }
3138 .btn-info:active, .btn-info.active {
3139 background-image: none;
3140 }
3141 .open .btn-info.dropdown-toggle {
3142 background-image: none;
3143 }
3144 .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-inf o.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[dis abled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[d isabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hove r, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fiel dset[disabled] .btn-info.active {
3145 background-color: #5bc0de;
3146 border-color: #46b8da;
3147 }
3148
3149 .btn-link {
3150 color: #428bca;
3151 font-weight: normal;
3152 cursor: pointer;
3153 border-radius: 0;
3154 }
3155 .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
3156 background-color: transparent;
3157 -webkit-box-shadow: none;
3158 box-shadow: none;
3159 }
3160 .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
3161 border-color: transparent;
3162 }
3163 .btn-link:hover, .btn-link:focus {
3164 color: #2a6496;
3165 text-decoration: underline;
3166 background-color: transparent;
3167 }
3168 .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-li nk:hover, fieldset[disabled] .btn-link:focus {
3169 color: #999999;
3170 text-decoration: none;
3171 }
3172
3173 .btn-lg, .btn-group-lg > .btn, .btn-group-lg > .get-started, .learn-more .btn-gr oup-lg > a {
3174 padding: 10px 16px;
3175 font-size: 18px;
3176 line-height: 1.33;
3177 border-radius: 6px;
3178 }
3179
3180 .btn-sm, .btn-group-sm > .btn, .btn-group-sm > .get-started, .learn-more .btn-gr oup-sm > a, .learn-more a,
3181 .btn-xs,
3182 .btn-group-xs > .btn,
3183 .btn-group-xs > .get-started,
3184 .learn-more .btn-group-xs > a {
3185 padding: 5px 10px;
3186 font-size: 12px;
3187 line-height: 1.5;
3188 border-radius: 3px;
3189 }
3190
3191 .btn-xs, .btn-group-xs > .btn, .btn-group-xs > .get-started, .learn-more .btn-gr oup-xs > a {
3192 padding: 1px 5px;
3193 }
3194
3195 .btn-block {
3196 display: block;
3197 width: 100%;
3198 padding-left: 0;
3199 padding-right: 0;
3200 }
3201
3202 .btn-block + .btn-block {
3203 margin-top: 5px;
3204 }
3205
3206 input[type="submit"].btn-block,
3207 input[type="reset"].btn-block,
3208 input[type="button"].btn-block {
3209 width: 100%;
3210 }
3211
3212 .fade {
3213 opacity: 0;
3214 -webkit-transition: opacity 0.15s linear;
3215 transition: opacity 0.15s linear;
3216 }
3217 .fade.in {
3218 opacity: 1;
3219 }
3220
3221 .collapse {
3222 display: none;
3223 }
3224 .collapse.in {
3225 display: block;
3226 }
3227
3228 .collapsing {
1390 position: relative; 3229 position: relative;
1391 margin-bottom: 0; 3230 height: 0;
1392 *margin-left: 0; 3231 overflow: hidden;
1393 vertical-align: middle; 3232 -webkit-transition: height 0.35s ease;
1394 -webkit-border-radius: 0 3px 3px 0; 3233 transition: height 0.35s ease;
1395 -moz-border-radius: 0 3px 3px 0; 3234 }
1396 border-radius: 0 3px 3px 0; 3235
1397 } 3236 @font-face {
1398 .input-prepend input:focus, 3237 font-family: 'Glyphicons Halflings';
1399 .input-prepend select:focus, 3238 src: url('/app/static/fonts/bootstrap/glyphicons-halflings-regular.eot');
1400 .input-prepend .uneditable-input:focus, 3239 src: url('/app/static/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix' ) format("embedded-opentype"), url('/app/static/fonts/bootstrap/glyphicons-halfl ings-regular.woff') format("woff"), url('/app/static/fonts/bootstrap/glyphicons- halflings-regular.ttf') format("truetype"), url('/app/static/fonts/bootstrap/gly phicons-halflings-regular.svg#glyphicons_halflingsregular') format("svg");
1401 .input-append input:focus, 3240 }
1402 .input-append select:focus, 3241
1403 .input-append .uneditable-input:focus { 3242 .glyphicon {
1404 z-index: 2; 3243 position: relative;
1405 } 3244 top: 1px;
1406 .input-prepend .uneditable-input,
1407 .input-append .uneditable-input {
1408 border-left-color: #ccc;
1409 }
1410 .input-prepend .add-on,
1411 .input-append .add-on {
1412 display: inline-block; 3245 display: inline-block;
1413 width: auto; 3246 font-family: 'Glyphicons Halflings';
1414 height: 24px; 3247 font-style: normal;
1415 min-width: 16px;
1416 padding: 4px 5px;
1417 font-weight: normal; 3248 font-weight: normal;
1418 line-height: 24px; 3249 line-height: 1;
1419 text-align: center; 3250 -webkit-font-smoothing: antialiased;
1420 text-shadow: 0 1px 0 white; 3251 -moz-osx-font-smoothing: grayscale;
1421 vertical-align: middle; 3252 }
1422 background-color: #eeeeee; 3253 .glyphicon:empty {
1423 border: 1px solid #ccc; 3254 width: 1em;
1424 } 3255 }
1425 .input-prepend .add-on, 3256
1426 .input-prepend .btn, 3257 .glyphicon-asterisk:before {
1427 .input-prepend .get-started, 3258 content: "\2a";
1428 .input-prepend .learn-more a, 3259 }
1429 .learn-more .input-prepend a, 3260
1430 .input-prepend .admin form button, 3261 .glyphicon-plus:before {
1431 .admin form .input-prepend button, 3262 content: "\2b";
1432 .input-append .add-on, 3263 }
1433 .input-append .btn, 3264
1434 .input-append .get-started, 3265 .glyphicon-euro:before {
1435 .input-append .learn-more a, 3266 content: "\20ac";
1436 .learn-more .input-append a, 3267 }
1437 .input-append .admin form button, 3268
1438 .admin form .input-append button { 3269 .glyphicon-minus:before {
1439 margin-left: -1px; 3270 content: "\2212";
1440 -webkit-border-radius: 0; 3271 }
1441 -moz-border-radius: 0; 3272
1442 border-radius: 0; 3273 .glyphicon-cloud:before {
1443 } 3274 content: "\2601";
1444 .input-prepend .active, 3275 }
1445 .input-append .active { 3276
1446 background-color: #a9dba9; 3277 .glyphicon-envelope:before {
1447 border-color: #46a546; 3278 content: "\2709";
1448 } 3279 }
1449 3280
1450 .input-prepend .add-on, 3281 .glyphicon-pencil:before {
1451 .input-prepend .btn, 3282 content: "\270f";
1452 .input-prepend .get-started, 3283 }
1453 .input-prepend .learn-more a, 3284
1454 .learn-more .input-prepend a, 3285 .glyphicon-glass:before {
1455 .input-prepend .admin form button, 3286 content: "\e001";
1456 .admin form .input-prepend button { 3287 }
1457 margin-right: -1px; 3288
1458 } 3289 .glyphicon-music:before {
1459 .input-prepend .add-on:first-child, 3290 content: "\e002";
1460 .input-prepend .btn:first-child, 3291 }
1461 .input-prepend .get-started:first-child, 3292
1462 .input-prepend .learn-more a:first-child, 3293 .glyphicon-search:before {
1463 .learn-more .input-prepend a:first-child, 3294 content: "\e003";
1464 .input-prepend .admin form button:first-child, 3295 }
1465 .admin form .input-prepend button:first-child { 3296
1466 -webkit-border-radius: 3px 0 0 3px; 3297 .glyphicon-heart:before {
1467 -moz-border-radius: 3px 0 0 3px; 3298 content: "\e005";
1468 border-radius: 3px 0 0 3px; 3299 }
1469 } 3300
1470 3301 .glyphicon-star:before {
1471 .input-append input, 3302 content: "\e006";
1472 .input-append select, 3303 }
1473 .input-append .uneditable-input { 3304
1474 -webkit-border-radius: 3px 0 0 3px; 3305 .glyphicon-star-empty:before {
1475 -moz-border-radius: 3px 0 0 3px; 3306 content: "\e007";
1476 border-radius: 3px 0 0 3px; 3307 }
1477 } 3308
1478 .input-append .uneditable-input { 3309 .glyphicon-user:before {
1479 border-right-color: #ccc; 3310 content: "\e008";
1480 border-left-color: #eee; 3311 }
1481 } 3312
1482 .input-append .add-on:last-child, 3313 .glyphicon-film:before {
1483 .input-append .btn:last-child, 3314 content: "\e009";
1484 .input-append .get-started:last-child, 3315 }
1485 .input-append .learn-more a:last-child, 3316
1486 .learn-more .input-append a:last-child, 3317 .glyphicon-th-large:before {
1487 .input-append .admin form button:last-child, 3318 content: "\e010";
1488 .admin form .input-append button:last-child { 3319 }
1489 -webkit-border-radius: 0 3px 3px 0; 3320
1490 -moz-border-radius: 0 3px 3px 0; 3321 .glyphicon-th:before {
1491 border-radius: 0 3px 3px 0; 3322 content: "\e011";
1492 } 3323 }
1493 3324
1494 .input-prepend.input-append input, 3325 .glyphicon-th-list:before {
1495 .input-prepend.input-append select, 3326 content: "\e012";
1496 .input-prepend.input-append .uneditable-input { 3327 }
1497 -webkit-border-radius: 0; 3328
1498 -moz-border-radius: 0; 3329 .glyphicon-ok:before {
1499 border-radius: 0; 3330 content: "\e013";
1500 } 3331 }
1501 .input-prepend.input-append .add-on:first-child, 3332
1502 .input-prepend.input-append .btn:first-child, 3333 .glyphicon-remove:before {
1503 .input-prepend.input-append .get-started:first-child, 3334 content: "\e014";
1504 .input-prepend.input-append .learn-more a:first-child, 3335 }
1505 .learn-more .input-prepend.input-append a:first-child, 3336
1506 .input-prepend.input-append .admin form button:first-child, 3337 .glyphicon-zoom-in:before {
1507 .admin form .input-prepend.input-append button:first-child { 3338 content: "\e015";
1508 margin-right: -1px; 3339 }
1509 -webkit-border-radius: 3px 0 0 3px; 3340
1510 -moz-border-radius: 3px 0 0 3px; 3341 .glyphicon-zoom-out:before {
1511 border-radius: 3px 0 0 3px; 3342 content: "\e016";
1512 } 3343 }
1513 .input-prepend.input-append .add-on:last-child, 3344
1514 .input-prepend.input-append .btn:last-child, 3345 .glyphicon-off:before {
1515 .input-prepend.input-append .get-started:last-child, 3346 content: "\e017";
1516 .input-prepend.input-append .learn-more a:last-child, 3347 }
1517 .learn-more .input-prepend.input-append a:last-child, 3348
1518 .input-prepend.input-append .admin form button:last-child, 3349 .glyphicon-signal:before {
1519 .admin form .input-prepend.input-append button:last-child { 3350 content: "\e018";
1520 margin-left: -1px; 3351 }
1521 -webkit-border-radius: 0 3px 3px 0; 3352
1522 -moz-border-radius: 0 3px 3px 0; 3353 .glyphicon-cog:before {
1523 border-radius: 0 3px 3px 0; 3354 content: "\e019";
1524 } 3355 }
1525 3356
1526 .search-query { 3357 .glyphicon-trash:before {
1527 padding-right: 14px; 3358 content: "\e020";
1528 padding-right: 4px \9; 3359 }
1529 padding-left: 14px; 3360
1530 padding-left: 4px \9; 3361 .glyphicon-home:before {
1531 /* IE7-8 doesn't have border-radius, so don't indent the padding */ 3362 content: "\e021";
1532 margin-bottom: 0; 3363 }
1533 -webkit-border-radius: 14px; 3364
1534 -moz-border-radius: 14px; 3365 .glyphicon-file:before {
1535 border-radius: 14px; 3366 content: "\e022";
1536 } 3367 }
1537 3368
1538 .form-search input, 3369 .glyphicon-time:before {
1539 .form-search textarea, 3370 content: "\e023";
1540 .form-search select, 3371 }
1541 .form-search .help-inline, 3372
1542 .form-search .uneditable-input, 3373 .glyphicon-road:before {
1543 .form-search .input-prepend, 3374 content: "\e024";
1544 .form-search .input-append, 3375 }
1545 .form-inline input, 3376
1546 .form-inline textarea, 3377 .glyphicon-download-alt:before {
1547 .form-inline select, 3378 content: "\e025";
1548 .form-inline .help-inline, 3379 }
1549 .form-inline .uneditable-input, 3380
1550 .form-inline .input-prepend, 3381 .glyphicon-download:before {
1551 .form-inline .input-append, 3382 content: "\e026";
1552 .form-horizontal input, 3383 }
1553 .form-horizontal textarea, 3384
1554 .form-horizontal select, 3385 .glyphicon-upload:before {
1555 .form-horizontal .help-inline, 3386 content: "\e027";
1556 .form-horizontal .uneditable-input, 3387 }
1557 .form-horizontal .input-prepend, 3388
1558 .form-horizontal .input-append { 3389 .glyphicon-inbox:before {
1559 display: inline-block; 3390 content: "\e028";
1560 *display: inline; 3391 }
1561 /* IE7 inline-block hack */ 3392
1562 *zoom: 1; 3393 .glyphicon-play-circle:before {
1563 margin-bottom: 0; 3394 content: "\e029";
1564 } 3395 }
1565 .form-search .hide, 3396
1566 .form-inline .hide, 3397 .glyphicon-repeat:before {
1567 .form-horizontal .hide { 3398 content: "\e030";
1568 display: none; 3399 }
1569 } 3400
1570 3401 .glyphicon-refresh:before {
1571 .form-search label, 3402 content: "\e031";
1572 .form-inline label { 3403 }
1573 display: inline-block; 3404
1574 } 3405 .glyphicon-list-alt:before {
1575 3406 content: "\e032";
1576 .form-search .input-append, 3407 }
1577 .form-inline .input-append, 3408
1578 .form-search .input-prepend, 3409 .glyphicon-lock:before {
1579 .form-inline .input-prepend { 3410 content: "\e033";
1580 margin-bottom: 0; 3411 }
1581 } 3412
1582 3413 .glyphicon-flag:before {
1583 .form-search .radio, 3414 content: "\e034";
1584 .form-search .checkbox, 3415 }
1585 .form-inline .radio, 3416
1586 .form-inline .checkbox { 3417 .glyphicon-headphones:before {
1587 padding-left: 0; 3418 content: "\e035";
1588 margin-bottom: 0; 3419 }
1589 vertical-align: middle; 3420
1590 } 3421 .glyphicon-volume-off:before {
1591 3422 content: "\e036";
1592 .form-search .radio input[type="radio"], 3423 }
1593 .form-search .checkbox input[type="checkbox"], 3424
1594 .form-inline .radio input[type="radio"], 3425 .glyphicon-volume-down:before {
1595 .form-inline .checkbox input[type="checkbox"] { 3426 content: "\e037";
1596 float: left; 3427 }
1597 margin-right: 3px; 3428
1598 margin-left: 0; 3429 .glyphicon-volume-up:before {
1599 } 3430 content: "\e038";
1600 3431 }
1601 .control-group { 3432
1602 margin-bottom: 12px; 3433 .glyphicon-qrcode:before {
1603 } 3434 content: "\e039";
1604 3435 }
1605 legend + .control-group { 3436
1606 margin-top: 24px; 3437 .glyphicon-barcode:before {
1607 -webkit-margin-top-collapse: separate; 3438 content: "\e040";
1608 } 3439 }
1609 3440
1610 .form-horizontal .control-group { 3441 .glyphicon-tag:before {
1611 margin-bottom: 24px; 3442 content: "\e041";
1612 *zoom: 1; 3443 }
1613 } 3444
1614 .form-horizontal .control-group:before, .form-horizontal .control-group:after { 3445 .glyphicon-tags:before {
1615 display: table; 3446 content: "\e042";
1616 content: ""; 3447 }
1617 } 3448
1618 .form-horizontal .control-group:after { 3449 .glyphicon-book:before {
1619 clear: both; 3450 content: "\e043";
1620 } 3451 }
1621 .form-horizontal .control-label { 3452
1622 float: left; 3453 .glyphicon-bookmark:before {
1623 width: 140px; 3454 content: "\e044";
1624 padding-top: 5px; 3455 }
1625 text-align: right; 3456
1626 } 3457 .glyphicon-print:before {
1627 .form-horizontal .controls { 3458 content: "\e045";
1628 *display: inline-block; 3459 }
1629 *padding-left: 20px; 3460
1630 margin-left: 160px; 3461 .glyphicon-camera:before {
1631 *margin-left: 0; 3462 content: "\e046";
1632 } 3463 }
1633 .form-horizontal .controls:first-child { 3464
1634 *padding-left: 160px; 3465 .glyphicon-font:before {
1635 } 3466 content: "\e047";
1636 .form-horizontal .help-block { 3467 }
1637 margin-top: 12px; 3468
1638 margin-bottom: 0; 3469 .glyphicon-bold:before {
1639 } 3470 content: "\e048";
1640 .form-horizontal .form-actions { 3471 }
1641 padding-left: 160px; 3472
1642 } 3473 .glyphicon-italic:before {
1643 3474 content: "\e049";
1644 table { 3475 }
1645 max-width: 100%; 3476
1646 background-color: transparent; 3477 .glyphicon-text-height:before {
1647 border-collapse: collapse; 3478 content: "\e050";
1648 border-spacing: 0; 3479 }
1649 } 3480
1650 3481 .glyphicon-text-width:before {
1651 .table, table { 3482 content: "\e051";
1652 width: 100%; 3483 }
1653 margin-bottom: 24px; 3484
1654 } 3485 .glyphicon-align-left:before {
1655 .table th, table th, 3486 content: "\e052";
1656 .table td, 3487 }
1657 table td { 3488
1658 padding: 8px; 3489 .glyphicon-align-center:before {
1659 line-height: 24px; 3490 content: "\e053";
1660 text-align: left; 3491 }
1661 vertical-align: top; 3492
1662 border-top: 1px solid #dddddd; 3493 .glyphicon-align-right:before {
1663 } 3494 content: "\e054";
1664 .table th, table th { 3495 }
1665 font-weight: bold; 3496
1666 } 3497 .glyphicon-align-justify:before {
1667 .table thead th, table thead th { 3498 content: "\e055";
1668 vertical-align: bottom; 3499 }
1669 } 3500
1670 .table caption + thead tr:first-child th, table caption + thead tr:first-child t h, 3501 .glyphicon-list:before {
1671 .table caption + thead tr:first-child td, 3502 content: "\e056";
1672 table caption + thead tr:first-child td, 3503 }
1673 .table colgroup + thead tr:first-child th, 3504
1674 table colgroup + thead tr:first-child th, 3505 .glyphicon-indent-left:before {
1675 .table colgroup + thead tr:first-child td, 3506 content: "\e057";
1676 table colgroup + thead tr:first-child td, 3507 }
1677 .table thead:first-child tr:first-child th, 3508
1678 table thead:first-child tr:first-child th, 3509 .glyphicon-indent-right:before {
1679 .table thead:first-child tr:first-child td, 3510 content: "\e058";
1680 table thead:first-child tr:first-child td { 3511 }
1681 border-top: 0; 3512
1682 } 3513 .glyphicon-facetime-video:before {
1683 .table tbody + tbody, table tbody + tbody { 3514 content: "\e059";
1684 border-top: 2px solid #dddddd; 3515 }
1685 } 3516
1686 3517 .glyphicon-picture:before {
1687 .table-condensed th, 3518 content: "\e060";
1688 .table-condensed td { 3519 }
1689 padding: 4px 5px; 3520
1690 } 3521 .glyphicon-map-marker:before {
1691 3522 content: "\e062";
1692 .table-bordered { 3523 }
1693 border: 1px solid #dddddd; 3524
1694 border-collapse: separate; 3525 .glyphicon-adjust:before {
1695 *border-collapse: collapsed; 3526 content: "\e063";
1696 border-left: 0; 3527 }
1697 -webkit-border-radius: 4px; 3528
1698 -moz-border-radius: 4px; 3529 .glyphicon-tint:before {
1699 border-radius: 4px; 3530 content: "\e064";
1700 } 3531 }
1701 .table-bordered th, 3532
1702 .table-bordered td { 3533 .glyphicon-edit:before {
1703 border-left: 1px solid #dddddd; 3534 content: "\e065";
1704 } 3535 }
1705 .table-bordered caption + thead tr:first-child th, 3536
1706 .table-bordered caption + tbody tr:first-child th, 3537 .glyphicon-share:before {
1707 .table-bordered caption + tbody tr:first-child td, 3538 content: "\e066";
1708 .table-bordered colgroup + thead tr:first-child th, 3539 }
1709 .table-bordered colgroup + tbody tr:first-child th, 3540
1710 .table-bordered colgroup + tbody tr:first-child td, 3541 .glyphicon-check:before {
1711 .table-bordered thead:first-child tr:first-child th, 3542 content: "\e067";
1712 .table-bordered tbody:first-child tr:first-child th, 3543 }
1713 .table-bordered tbody:first-child tr:first-child td { 3544
1714 border-top: 0; 3545 .glyphicon-move:before {
1715 } 3546 content: "\e068";
1716 .table-bordered thead:first-child tr:first-child th:first-child, 3547 }
1717 .table-bordered tbody:first-child tr:first-child td:first-child { 3548
1718 -webkit-border-top-left-radius: 4px; 3549 .glyphicon-step-backward:before {
1719 border-top-left-radius: 4px; 3550 content: "\e069";
1720 -moz-border-radius-topleft: 4px; 3551 }
1721 } 3552
1722 .table-bordered thead:first-child tr:first-child th:last-child, 3553 .glyphicon-fast-backward:before {
1723 .table-bordered tbody:first-child tr:first-child td:last-child { 3554 content: "\e070";
1724 -webkit-border-top-right-radius: 4px; 3555 }
1725 border-top-right-radius: 4px; 3556
1726 -moz-border-radius-topright: 4px; 3557 .glyphicon-backward:before {
1727 } 3558 content: "\e071";
1728 .table-bordered thead:last-child tr:last-child th:first-child, 3559 }
1729 .table-bordered tbody:last-child tr:last-child td:first-child { 3560
1730 -webkit-border-radius: 0 0 0 4px; 3561 .glyphicon-play:before {
1731 -moz-border-radius: 0 0 0 4px; 3562 content: "\e072";
1732 border-radius: 0 0 0 4px; 3563 }
1733 -webkit-border-bottom-left-radius: 4px; 3564
1734 border-bottom-left-radius: 4px; 3565 .glyphicon-pause:before {
1735 -moz-border-radius-bottomleft: 4px; 3566 content: "\e073";
1736 } 3567 }
1737 .table-bordered thead:last-child tr:last-child th:last-child, 3568
1738 .table-bordered tbody:last-child tr:last-child td:last-child { 3569 .glyphicon-stop:before {
1739 -webkit-border-bottom-right-radius: 4px; 3570 content: "\e074";
1740 border-bottom-right-radius: 4px; 3571 }
1741 -moz-border-radius-bottomright: 4px; 3572
1742 } 3573 .glyphicon-forward:before {
1743 3574 content: "\e075";
1744 .table-striped tbody tr:nth-child(odd) td, 3575 }
1745 .table-striped tbody tr:nth-child(odd) th { 3576
1746 background-color: #f9f9f9; 3577 .glyphicon-fast-forward:before {
1747 } 3578 content: "\e076";
1748 3579 }
1749 .table tbody tr:hover td, table tbody tr:hover td, 3580
1750 .table tbody tr:hover th, 3581 .glyphicon-step-forward:before {
1751 table tbody tr:hover th { 3582 content: "\e077";
1752 background-color: whitesmoke; 3583 }
1753 } 3584
1754 3585 .glyphicon-eject:before {
1755 table .span1 { 3586 content: "\e078";
1756 float: none; 3587 }
1757 width: 44px; 3588
1758 margin-left: 0; 3589 .glyphicon-chevron-left:before {
1759 } 3590 content: "\e079";
1760 table .span2 { 3591 }
1761 float: none; 3592
1762 width: 124px; 3593 .glyphicon-chevron-right:before {
1763 margin-left: 0; 3594 content: "\e080";
1764 } 3595 }
1765 table .span3 { 3596
1766 float: none; 3597 .glyphicon-plus-sign:before {
1767 width: 204px; 3598 content: "\e081";
1768 margin-left: 0; 3599 }
1769 } 3600
1770 table .span4 { 3601 .glyphicon-minus-sign:before {
1771 float: none; 3602 content: "\e082";
1772 width: 284px; 3603 }
1773 margin-left: 0; 3604
1774 } 3605 .glyphicon-remove-sign:before {
1775 table .span5 { 3606 content: "\e083";
1776 float: none; 3607 }
1777 width: 364px; 3608
1778 margin-left: 0; 3609 .glyphicon-ok-sign:before {
1779 } 3610 content: "\e084";
1780 table .span6 { 3611 }
1781 float: none; 3612
1782 width: 444px; 3613 .glyphicon-question-sign:before {
1783 margin-left: 0; 3614 content: "\e085";
1784 } 3615 }
1785 table .span7 { 3616
1786 float: none; 3617 .glyphicon-info-sign:before {
1787 width: 524px; 3618 content: "\e086";
1788 margin-left: 0; 3619 }
1789 } 3620
1790 table .span8, table article { 3621 .glyphicon-screenshot:before {
1791 float: none; 3622 content: "\e087";
1792 width: 604px; 3623 }
1793 margin-left: 0; 3624
1794 } 3625 .glyphicon-remove-circle:before {
1795 table .span9 { 3626 content: "\e088";
1796 float: none; 3627 }
1797 width: 684px; 3628
1798 margin-left: 0; 3629 .glyphicon-ok-circle:before {
1799 } 3630 content: "\e089";
1800 table .span10 { 3631 }
1801 float: none; 3632
1802 width: 764px; 3633 .glyphicon-ban-circle:before {
1803 margin-left: 0; 3634 content: "\e090";
1804 } 3635 }
1805 table .span11 { 3636
1806 float: none; 3637 .glyphicon-arrow-left:before {
1807 width: 844px; 3638 content: "\e091";
1808 margin-left: 0; 3639 }
1809 } 3640
1810 table .span12 { 3641 .glyphicon-arrow-right:before {
1811 float: none; 3642 content: "\e092";
1812 width: 924px; 3643 }
1813 margin-left: 0; 3644
1814 } 3645 .glyphicon-arrow-up:before {
1815 table .span13 { 3646 content: "\e093";
1816 float: none; 3647 }
1817 width: 1004px; 3648
1818 margin-left: 0; 3649 .glyphicon-arrow-down:before {
1819 } 3650 content: "\e094";
1820 table .span14 { 3651 }
1821 float: none; 3652
1822 width: 1084px; 3653 .glyphicon-share-alt:before {
1823 margin-left: 0; 3654 content: "\e095";
1824 } 3655 }
1825 table .span15 { 3656
1826 float: none; 3657 .glyphicon-resize-full:before {
1827 width: 1164px; 3658 content: "\e096";
1828 margin-left: 0; 3659 }
1829 } 3660
1830 table .span16 { 3661 .glyphicon-resize-small:before {
1831 float: none; 3662 content: "\e097";
1832 width: 1244px; 3663 }
1833 margin-left: 0; 3664
1834 } 3665 .glyphicon-exclamation-sign:before {
1835 table .span17 { 3666 content: "\e101";
1836 float: none; 3667 }
1837 width: 1324px; 3668
1838 margin-left: 0; 3669 .glyphicon-gift:before {
1839 } 3670 content: "\e102";
1840 table .span18 { 3671 }
1841 float: none; 3672
1842 width: 1404px; 3673 .glyphicon-leaf:before {
1843 margin-left: 0; 3674 content: "\e103";
1844 } 3675 }
1845 table .span19 { 3676
1846 float: none; 3677 .glyphicon-fire:before {
1847 width: 1484px; 3678 content: "\e104";
1848 margin-left: 0; 3679 }
1849 } 3680
1850 table .span20 { 3681 .glyphicon-eye-open:before {
1851 float: none; 3682 content: "\e105";
1852 width: 1564px; 3683 }
1853 margin-left: 0; 3684
1854 } 3685 .glyphicon-eye-close:before {
1855 table .span21 { 3686 content: "\e106";
1856 float: none; 3687 }
1857 width: 1644px; 3688
1858 margin-left: 0; 3689 .glyphicon-warning-sign:before {
1859 } 3690 content: "\e107";
1860 table .span22 { 3691 }
1861 float: none; 3692
1862 width: 1724px; 3693 .glyphicon-plane:before {
1863 margin-left: 0; 3694 content: "\e108";
1864 } 3695 }
1865 table .span23 { 3696
1866 float: none; 3697 .glyphicon-calendar:before {
1867 width: 1804px; 3698 content: "\e109";
1868 margin-left: 0; 3699 }
1869 } 3700
1870 table .span24 { 3701 .glyphicon-random:before {
1871 float: none; 3702 content: "\e110";
1872 width: 1884px; 3703 }
1873 margin-left: 0; 3704
1874 } 3705 .glyphicon-comment:before {
1875 3706 content: "\e111";
1876 [class^="icon-"], 3707 }
1877 [class*=" icon-"] { 3708
1878 display: inline-block; 3709 .glyphicon-magnet:before {
1879 width: 14px; 3710 content: "\e112";
1880 height: 14px; 3711 }
1881 *margin-right: .3em; 3712
1882 line-height: 14px; 3713 .glyphicon-chevron-up:before {
1883 vertical-align: text-top; 3714 content: "\e113";
1884 background-image: url("img/glyphicons-halflings.png"); 3715 }
1885 background-position: 14px 14px; 3716
1886 background-repeat: no-repeat; 3717 .glyphicon-chevron-down:before {
1887 } 3718 content: "\e114";
1888 [class^="icon-"]:last-child, 3719 }
1889 [class*=" icon-"]:last-child { 3720
1890 *margin-left: 0; 3721 .glyphicon-retweet:before {
1891 } 3722 content: "\e115";
1892 3723 }
1893 .icon-white { 3724
1894 background-image: url("img/glyphicons-halflings-white.png"); 3725 .glyphicon-shopping-cart:before {
1895 } 3726 content: "\e116";
1896 3727 }
1897 .icon-glass { 3728
1898 background-position: 0 0; 3729 .glyphicon-folder-close:before {
1899 } 3730 content: "\e117";
1900 3731 }
1901 .icon-music { 3732
1902 background-position: -24px 0; 3733 .glyphicon-folder-open:before {
1903 } 3734 content: "\e118";
1904 3735 }
1905 .icon-search { 3736
1906 background-position: -48px 0; 3737 .glyphicon-resize-vertical:before {
1907 } 3738 content: "\e119";
1908 3739 }
1909 .icon-envelope { 3740
1910 background-position: -72px 0; 3741 .glyphicon-resize-horizontal:before {
1911 } 3742 content: "\e120";
1912 3743 }
1913 .icon-heart { 3744
1914 background-position: -96px 0; 3745 .glyphicon-hdd:before {
1915 } 3746 content: "\e121";
1916 3747 }
1917 .icon-star { 3748
1918 background-position: -120px 0; 3749 .glyphicon-bullhorn:before {
1919 } 3750 content: "\e122";
1920 3751 }
1921 .icon-star-empty { 3752
1922 background-position: -144px 0; 3753 .glyphicon-bell:before {
1923 } 3754 content: "\e123";
1924 3755 }
1925 .icon-user { 3756
1926 background-position: -168px 0; 3757 .glyphicon-certificate:before {
1927 } 3758 content: "\e124";
1928 3759 }
1929 .icon-film { 3760
1930 background-position: -192px 0; 3761 .glyphicon-thumbs-up:before {
1931 } 3762 content: "\e125";
1932 3763 }
1933 .icon-th-large { 3764
1934 background-position: -216px 0; 3765 .glyphicon-thumbs-down:before {
1935 } 3766 content: "\e126";
1936 3767 }
1937 .icon-th { 3768
1938 background-position: -240px 0; 3769 .glyphicon-hand-right:before {
1939 } 3770 content: "\e127";
1940 3771 }
1941 .icon-th-list { 3772
1942 background-position: -264px 0; 3773 .glyphicon-hand-left:before {
1943 } 3774 content: "\e128";
1944 3775 }
1945 .icon-ok { 3776
1946 background-position: -288px 0; 3777 .glyphicon-hand-up:before {
1947 } 3778 content: "\e129";
1948 3779 }
1949 .icon-remove { 3780
1950 background-position: -312px 0; 3781 .glyphicon-hand-down:before {
1951 } 3782 content: "\e130";
1952 3783 }
1953 .icon-zoom-in { 3784
1954 background-position: -336px 0; 3785 .glyphicon-circle-arrow-right:before {
1955 } 3786 content: "\e131";
1956 3787 }
1957 .icon-zoom-out { 3788
1958 background-position: -360px 0; 3789 .glyphicon-circle-arrow-left:before {
1959 } 3790 content: "\e132";
1960 3791 }
1961 .icon-off { 3792
1962 background-position: -384px 0; 3793 .glyphicon-circle-arrow-up:before {
1963 } 3794 content: "\e133";
1964 3795 }
1965 .icon-signal { 3796
1966 background-position: -408px 0; 3797 .glyphicon-circle-arrow-down:before {
1967 } 3798 content: "\e134";
1968 3799 }
1969 .icon-cog { 3800
1970 background-position: -432px 0; 3801 .glyphicon-globe:before {
1971 } 3802 content: "\e135";
1972 3803 }
1973 .icon-trash { 3804
1974 background-position: -456px 0; 3805 .glyphicon-wrench:before {
1975 } 3806 content: "\e136";
1976 3807 }
1977 .icon-home { 3808
1978 background-position: 0 -24px; 3809 .glyphicon-tasks:before {
1979 } 3810 content: "\e137";
1980 3811 }
1981 .icon-file { 3812
1982 background-position: -24px -24px; 3813 .glyphicon-filter:before {
1983 } 3814 content: "\e138";
1984 3815 }
1985 .icon-time { 3816
1986 background-position: -48px -24px; 3817 .glyphicon-briefcase:before {
1987 } 3818 content: "\e139";
1988 3819 }
1989 .icon-road { 3820
1990 background-position: -72px -24px; 3821 .glyphicon-fullscreen:before {
1991 } 3822 content: "\e140";
1992 3823 }
1993 .icon-download-alt { 3824
1994 background-position: -96px -24px; 3825 .glyphicon-dashboard:before {
1995 } 3826 content: "\e141";
1996 3827 }
1997 .icon-download { 3828
1998 background-position: -120px -24px; 3829 .glyphicon-paperclip:before {
1999 } 3830 content: "\e142";
2000 3831 }
2001 .icon-upload { 3832
2002 background-position: -144px -24px; 3833 .glyphicon-heart-empty:before {
2003 } 3834 content: "\e143";
2004 3835 }
2005 .icon-inbox { 3836
2006 background-position: -168px -24px; 3837 .glyphicon-link:before {
2007 } 3838 content: "\e144";
2008 3839 }
2009 .icon-play-circle { 3840
2010 background-position: -192px -24px; 3841 .glyphicon-phone:before {
2011 } 3842 content: "\e145";
2012 3843 }
2013 .icon-repeat { 3844
2014 background-position: -216px -24px; 3845 .glyphicon-pushpin:before {
2015 } 3846 content: "\e146";
2016 3847 }
2017 .icon-refresh { 3848
2018 background-position: -240px -24px; 3849 .glyphicon-usd:before {
2019 } 3850 content: "\e148";
2020 3851 }
2021 .icon-list-alt { 3852
2022 background-position: -264px -24px; 3853 .glyphicon-gbp:before {
2023 } 3854 content: "\e149";
2024 3855 }
2025 .icon-lock { 3856
2026 background-position: -287px -24px; 3857 .glyphicon-sort:before {
2027 } 3858 content: "\e150";
2028 3859 }
2029 .icon-flag { 3860
2030 background-position: -312px -24px; 3861 .glyphicon-sort-by-alphabet:before {
2031 } 3862 content: "\e151";
2032 3863 }
2033 .icon-headphones { 3864
2034 background-position: -336px -24px; 3865 .glyphicon-sort-by-alphabet-alt:before {
2035 } 3866 content: "\e152";
2036 3867 }
2037 .icon-volume-off { 3868
2038 background-position: -360px -24px; 3869 .glyphicon-sort-by-order:before {
2039 } 3870 content: "\e153";
2040 3871 }
2041 .icon-volume-down { 3872
2042 background-position: -384px -24px; 3873 .glyphicon-sort-by-order-alt:before {
2043 } 3874 content: "\e154";
2044 3875 }
2045 .icon-volume-up { 3876
2046 background-position: -408px -24px; 3877 .glyphicon-sort-by-attributes:before {
2047 } 3878 content: "\e155";
2048 3879 }
2049 .icon-qrcode { 3880
2050 background-position: -432px -24px; 3881 .glyphicon-sort-by-attributes-alt:before {
2051 } 3882 content: "\e156";
2052 3883 }
2053 .icon-barcode { 3884
2054 background-position: -456px -24px; 3885 .glyphicon-unchecked:before {
2055 } 3886 content: "\e157";
2056 3887 }
2057 .icon-tag { 3888
2058 background-position: 0 -48px; 3889 .glyphicon-expand:before {
2059 } 3890 content: "\e158";
2060 3891 }
2061 .icon-tags { 3892
2062 background-position: -25px -48px; 3893 .glyphicon-collapse-down:before {
2063 } 3894 content: "\e159";
2064 3895 }
2065 .icon-book { 3896
2066 background-position: -48px -48px; 3897 .glyphicon-collapse-up:before {
2067 } 3898 content: "\e160";
2068 3899 }
2069 .icon-bookmark { 3900
2070 background-position: -72px -48px; 3901 .glyphicon-log-in:before {
2071 } 3902 content: "\e161";
2072 3903 }
2073 .icon-print { 3904
2074 background-position: -96px -48px; 3905 .glyphicon-flash:before {
2075 } 3906 content: "\e162";
2076 3907 }
2077 .icon-camera { 3908
2078 background-position: -120px -48px; 3909 .glyphicon-log-out:before {
2079 } 3910 content: "\e163";
2080 3911 }
2081 .icon-font { 3912
2082 background-position: -144px -48px; 3913 .glyphicon-new-window:before {
2083 } 3914 content: "\e164";
2084 3915 }
2085 .icon-bold { 3916
2086 background-position: -167px -48px; 3917 .glyphicon-record:before {
2087 } 3918 content: "\e165";
2088 3919 }
2089 .icon-italic { 3920
2090 background-position: -192px -48px; 3921 .glyphicon-save:before {
2091 } 3922 content: "\e166";
2092 3923 }
2093 .icon-text-height { 3924
2094 background-position: -216px -48px; 3925 .glyphicon-open:before {
2095 } 3926 content: "\e167";
2096 3927 }
2097 .icon-text-width { 3928
2098 background-position: -240px -48px; 3929 .glyphicon-saved:before {
2099 } 3930 content: "\e168";
2100 3931 }
2101 .icon-align-left { 3932
2102 background-position: -264px -48px; 3933 .glyphicon-import:before {
2103 } 3934 content: "\e169";
2104 3935 }
2105 .icon-align-center { 3936
2106 background-position: -288px -48px; 3937 .glyphicon-export:before {
2107 } 3938 content: "\e170";
2108 3939 }
2109 .icon-align-right { 3940
2110 background-position: -312px -48px; 3941 .glyphicon-send:before {
2111 } 3942 content: "\e171";
2112 3943 }
2113 .icon-align-justify { 3944
2114 background-position: -336px -48px; 3945 .glyphicon-floppy-disk:before {
2115 } 3946 content: "\e172";
2116 3947 }
2117 .icon-list { 3948
2118 background-position: -360px -48px; 3949 .glyphicon-floppy-saved:before {
2119 } 3950 content: "\e173";
2120 3951 }
2121 .icon-indent-left { 3952
2122 background-position: -384px -48px; 3953 .glyphicon-floppy-remove:before {
2123 } 3954 content: "\e174";
2124 3955 }
2125 .icon-indent-right { 3956
2126 background-position: -408px -48px; 3957 .glyphicon-floppy-save:before {
2127 } 3958 content: "\e175";
2128 3959 }
2129 .icon-facetime-video { 3960
2130 background-position: -432px -48px; 3961 .glyphicon-floppy-open:before {
2131 } 3962 content: "\e176";
2132 3963 }
2133 .icon-picture { 3964
2134 background-position: -456px -48px; 3965 .glyphicon-credit-card:before {
2135 } 3966 content: "\e177";
2136 3967 }
2137 .icon-pencil { 3968
2138 background-position: 0 -72px; 3969 .glyphicon-transfer:before {
2139 } 3970 content: "\e178";
2140 3971 }
2141 .icon-map-marker { 3972
2142 background-position: -24px -72px; 3973 .glyphicon-cutlery:before {
2143 } 3974 content: "\e179";
2144 3975 }
2145 .icon-adjust { 3976
2146 background-position: -48px -72px; 3977 .glyphicon-header:before {
2147 } 3978 content: "\e180";
2148 3979 }
2149 .icon-tint { 3980
2150 background-position: -72px -72px; 3981 .glyphicon-compressed:before {
2151 } 3982 content: "\e181";
2152 3983 }
2153 .icon-edit { 3984
2154 background-position: -96px -72px; 3985 .glyphicon-earphone:before {
2155 } 3986 content: "\e182";
2156 3987 }
2157 .icon-share { 3988
2158 background-position: -120px -72px; 3989 .glyphicon-phone-alt:before {
2159 } 3990 content: "\e183";
2160 3991 }
2161 .icon-check { 3992
2162 background-position: -144px -72px; 3993 .glyphicon-tower:before {
2163 } 3994 content: "\e184";
2164 3995 }
2165 .icon-move { 3996
2166 background-position: -168px -72px; 3997 .glyphicon-stats:before {
2167 } 3998 content: "\e185";
2168 3999 }
2169 .icon-step-backward { 4000
2170 background-position: -192px -72px; 4001 .glyphicon-sd-video:before {
2171 } 4002 content: "\e186";
2172 4003 }
2173 .icon-fast-backward { 4004
2174 background-position: -216px -72px; 4005 .glyphicon-hd-video:before {
2175 } 4006 content: "\e187";
2176 4007 }
2177 .icon-backward { 4008
2178 background-position: -240px -72px; 4009 .glyphicon-subtitles:before {
2179 } 4010 content: "\e188";
2180 4011 }
2181 .icon-play { 4012
2182 background-position: -264px -72px; 4013 .glyphicon-sound-stereo:before {
2183 } 4014 content: "\e189";
2184 4015 }
2185 .icon-pause { 4016
2186 background-position: -288px -72px; 4017 .glyphicon-sound-dolby:before {
2187 } 4018 content: "\e190";
2188 4019 }
2189 .icon-stop { 4020
2190 background-position: -312px -72px; 4021 .glyphicon-sound-5-1:before {
2191 } 4022 content: "\e191";
2192 4023 }
2193 .icon-forward { 4024
2194 background-position: -336px -72px; 4025 .glyphicon-sound-6-1:before {
2195 } 4026 content: "\e192";
2196 4027 }
2197 .icon-fast-forward { 4028
2198 background-position: -360px -72px; 4029 .glyphicon-sound-7-1:before {
2199 } 4030 content: "\e193";
2200 4031 }
2201 .icon-step-forward { 4032
2202 background-position: -384px -72px; 4033 .glyphicon-copyright-mark:before {
2203 } 4034 content: "\e194";
2204 4035 }
2205 .icon-eject { 4036
2206 background-position: -408px -72px; 4037 .glyphicon-registration-mark:before {
2207 } 4038 content: "\e195";
2208 4039 }
2209 .icon-chevron-left { 4040
2210 background-position: -432px -72px; 4041 .glyphicon-cloud-download:before {
2211 } 4042 content: "\e197";
2212 4043 }
2213 .icon-chevron-right { 4044
2214 background-position: -456px -72px; 4045 .glyphicon-cloud-upload:before {
2215 } 4046 content: "\e198";
2216 4047 }
2217 .icon-plus-sign { 4048
2218 background-position: 0 -96px; 4049 .glyphicon-tree-conifer:before {
2219 } 4050 content: "\e199";
2220 4051 }
2221 .icon-minus-sign { 4052
2222 background-position: -24px -96px; 4053 .glyphicon-tree-deciduous:before {
2223 } 4054 content: "\e200";
2224
2225 .icon-remove-sign {
2226 background-position: -48px -96px;
2227 }
2228
2229 .icon-ok-sign {
2230 background-position: -72px -96px;
2231 }
2232
2233 .icon-question-sign {
2234 background-position: -96px -96px;
2235 }
2236
2237 .icon-info-sign {
2238 background-position: -120px -96px;
2239 }
2240
2241 .icon-screenshot {
2242 background-position: -144px -96px;
2243 }
2244
2245 .icon-remove-circle {
2246 background-position: -168px -96px;
2247 }
2248
2249 .icon-ok-circle {
2250 background-position: -192px -96px;
2251 }
2252
2253 .icon-ban-circle {
2254 background-position: -216px -96px;
2255 }
2256
2257 .icon-arrow-left {
2258 background-position: -240px -96px;
2259 }
2260
2261 .icon-arrow-right {
2262 background-position: -264px -96px;
2263 }
2264
2265 .icon-arrow-up {
2266 background-position: -289px -96px;
2267 }
2268
2269 .icon-arrow-down {
2270 background-position: -312px -96px;
2271 }
2272
2273 .icon-share-alt {
2274 background-position: -336px -96px;
2275 }
2276
2277 .icon-resize-full {
2278 background-position: -360px -96px;
2279 }
2280
2281 .icon-resize-small {
2282 background-position: -384px -96px;
2283 }
2284
2285 .icon-plus {
2286 background-position: -408px -96px;
2287 }
2288
2289 .icon-minus {
2290 background-position: -433px -96px;
2291 }
2292
2293 .icon-asterisk {
2294 background-position: -456px -96px;
2295 }
2296
2297 .icon-exclamation-sign {
2298 background-position: 0 -120px;
2299 }
2300
2301 .icon-gift {
2302 background-position: -24px -120px;
2303 }
2304
2305 .icon-leaf {
2306 background-position: -48px -120px;
2307 }
2308
2309 .icon-fire {
2310 background-position: -72px -120px;
2311 }
2312
2313 .icon-eye-open {
2314 background-position: -96px -120px;
2315 }
2316
2317 .icon-eye-close {
2318 background-position: -120px -120px;
2319 }
2320
2321 .icon-warning-sign {
2322 background-position: -144px -120px;
2323 }
2324
2325 .icon-plane {
2326 background-position: -168px -120px;
2327 }
2328
2329 .icon-calendar {
2330 background-position: -192px -120px;
2331 }
2332
2333 .icon-random {
2334 background-position: -216px -120px;
2335 }
2336
2337 .icon-comment {
2338 background-position: -240px -120px;
2339 }
2340
2341 .icon-magnet {
2342 background-position: -264px -120px;
2343 }
2344
2345 .icon-chevron-up {
2346 background-position: -288px -120px;
2347 }
2348
2349 .icon-chevron-down {
2350 background-position: -313px -119px;
2351 }
2352
2353 .icon-retweet {
2354 background-position: -336px -120px;
2355 }
2356
2357 .icon-shopping-cart {
2358 background-position: -360px -120px;
2359 }
2360
2361 .icon-folder-close {
2362 background-position: -384px -120px;
2363 }
2364
2365 .icon-folder-open {
2366 background-position: -408px -120px;
2367 }
2368
2369 .icon-resize-vertical {
2370 background-position: -432px -119px;
2371 }
2372
2373 .icon-resize-horizontal {
2374 background-position: -456px -118px;
2375 }
2376
2377 .icon-hdd {
2378 background-position: 0 -144px;
2379 }
2380
2381 .icon-bullhorn {
2382 background-position: -24px -144px;
2383 }
2384
2385 .icon-bell {
2386 background-position: -48px -144px;
2387 }
2388
2389 .icon-certificate {
2390 background-position: -72px -144px;
2391 }
2392
2393 .icon-thumbs-up {
2394 background-position: -96px -144px;
2395 }
2396
2397 .icon-thumbs-down {
2398 background-position: -120px -144px;
2399 }
2400
2401 .icon-hand-right {
2402 background-position: -144px -144px;
2403 }
2404
2405 .icon-hand-left {
2406 background-position: -168px -144px;
2407 }
2408
2409 .icon-hand-up {
2410 background-position: -192px -144px;
2411 }
2412
2413 .icon-hand-down {
2414 background-position: -216px -144px;
2415 }
2416
2417 .icon-circle-arrow-right {
2418 background-position: -240px -144px;
2419 }
2420
2421 .icon-circle-arrow-left {
2422 background-position: -264px -144px;
2423 }
2424
2425 .icon-circle-arrow-up {
2426 background-position: -288px -144px;
2427 }
2428
2429 .icon-circle-arrow-down {
2430 background-position: -312px -144px;
2431 }
2432
2433 .icon-globe {
2434 background-position: -336px -144px;
2435 }
2436
2437 .icon-wrench {
2438 background-position: -360px -144px;
2439 }
2440
2441 .icon-tasks {
2442 background-position: -384px -144px;
2443 }
2444
2445 .icon-filter {
2446 background-position: -408px -144px;
2447 }
2448
2449 .icon-briefcase {
2450 background-position: -432px -144px;
2451 }
2452
2453 .icon-fullscreen {
2454 background-position: -456px -144px;
2455 }
2456
2457 .dropup,
2458 .dropdown {
2459 position: relative;
2460 }
2461
2462 .dropdown-toggle {
2463 *margin-bottom: -3px;
2464 }
2465
2466 .dropdown-toggle:active,
2467 .open .dropdown-toggle {
2468 outline: 0;
2469 } 4055 }
2470 4056
2471 .caret { 4057 .caret {
2472 display: inline-block; 4058 display: inline-block;
2473 width: 0; 4059 width: 0;
2474 height: 0; 4060 height: 0;
2475 vertical-align: top; 4061 margin-left: 2px;
4062 vertical-align: middle;
2476 border-top: 4px solid black; 4063 border-top: 4px solid black;
2477 border-right: 4px solid transparent; 4064 border-right: 4px solid transparent;
2478 border-left: 4px solid transparent; 4065 border-left: 4px solid transparent;
2479 content: ""; 4066 border-bottom: 0 dotted;
2480 opacity: 0.3; 4067 }
2481 filter: alpha(opacity=30); 4068
2482 } 4069 .dropdown {
2483 4070 position: relative;
2484 .dropdown .caret { 4071 }
2485 margin-top: 8px; 4072
2486 margin-left: 2px; 4073 .dropdown-toggle:focus {
2487 } 4074 outline: 0;
2488
2489 .dropdown:hover .caret,
2490 .open .caret {
2491 opacity: 1;
2492 filter: alpha(opacity=100);
2493 } 4075 }
2494 4076
2495 .dropdown-menu { 4077 .dropdown-menu {
2496 position: absolute; 4078 position: absolute;
2497 top: 100%; 4079 top: 100%;
2498 left: 0; 4080 left: 0;
2499 z-index: 1000; 4081 z-index: 1000;
2500 display: none; 4082 display: none;
2501 float: left; 4083 float: left;
2502 min-width: 160px; 4084 min-width: 160px;
2503 padding: 4px 0; 4085 padding: 5px 0;
2504 margin: 1px 0 0; 4086 margin: 2px 0 0;
2505 list-style: none; 4087 list-style: none;
4088 font-size: 15px;
2506 background-color: white; 4089 background-color: white;
2507 border: 1px solid #ccc; 4090 border: 1px solid #cccccc;
2508 border: 1px solid rgba(0, 0, 0, 0.2); 4091 border: 1px solid rgba(0, 0, 0, 0.15);
2509 *border-right-width: 2px; 4092 border-radius: 4px;
2510 *border-bottom-width: 2px; 4093 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2511 -webkit-border-radius: 5px; 4094 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2512 -moz-border-radius: 5px;
2513 border-radius: 5px;
2514 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2515 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2516 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2517 -webkit-background-clip: padding-box;
2518 -moz-background-clip: padding;
2519 background-clip: padding-box; 4095 background-clip: padding-box;
2520 } 4096 }
2521 .dropdown-menu.pull-right { 4097 .dropdown-menu.pull-right {
2522 right: 0; 4098 right: 0;
2523 left: auto; 4099 left: auto;
2524 } 4100 }
2525 .dropdown-menu .divider { 4101 .dropdown-menu .divider {
2526 *width: 100%;
2527 height: 1px; 4102 height: 1px;
2528 margin: 11px 1px; 4103 margin: 8px 0;
2529 *margin: -5px 0 5px;
2530 overflow: hidden; 4104 overflow: hidden;
2531 background-color: #e5e5e5; 4105 background-color: #e5e5e5;
2532 border-bottom: 1px solid white; 4106 }
2533 } 4107 .dropdown-menu > li > a {
2534 .dropdown-menu a {
2535 display: block; 4108 display: block;
2536 padding: 3px 15px; 4109 padding: 3px 20px;
2537 clear: both; 4110 clear: both;
2538 font-weight: normal; 4111 font-weight: normal;
2539 line-height: 24px; 4112 line-height: 1.2;
2540 color: #333333; 4113 color: #484848;
2541 white-space: nowrap; 4114 white-space: nowrap;
2542 } 4115 }
2543 4116
2544 .dropdown-menu li > a:hover, 4117 .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
2545 .dropdown-menu .active > a, 4118 text-decoration: none;
2546 .dropdown-menu .active > a:hover { 4119 color: #3b3b3b;
4120 background-color: whitesmoke;
4121 }
4122
4123 .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
2547 color: white; 4124 color: white;
2548 text-decoration: none; 4125 text-decoration: none;
2549 background-color: #0088cc; 4126 outline: 0;
2550 } 4127 background-color: #428bca;
2551 4128 }
2552 .open { 4129
2553 *z-index: 1000; 4130 .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown- menu > .disabled > a:focus {
2554 } 4131 color: #999999;
2555 .open .dropdown-menu { 4132 }
4133
4134 .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
4135 text-decoration: none;
4136 background-color: transparent;
4137 background-image: none;
4138 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
4139 cursor: not-allowed;
4140 }
4141
4142 .open > .dropdown-menu {
2556 display: block; 4143 display: block;
2557 } 4144 }
2558 4145 .open > a {
2559 .pull-right .dropdown-menu { 4146 outline: 0;
4147 }
4148
4149 .dropdown-header {
4150 display: block;
4151 padding: 3px 20px;
4152 font-size: 12px;
4153 line-height: 1.2;
4154 color: #999999;
4155 }
4156
4157 .dropdown-backdrop {
4158 position: fixed;
4159 left: 0;
4160 right: 0;
4161 bottom: 0;
4162 top: 0;
4163 z-index: 990;
4164 }
4165
4166 .pull-right > .dropdown-menu {
2560 right: 0; 4167 right: 0;
2561 left: auto; 4168 left: auto;
2562 } 4169 }
2563 4170
2564 .dropup .caret, 4171 .dropup .caret,
2565 .navbar-fixed-bottom .dropdown .caret { 4172 .navbar-fixed-bottom .dropdown .caret {
2566 border-top: 0; 4173 border-top: 0 dotted;
2567 border-bottom: 4px solid black; 4174 border-bottom: 4px solid black;
2568 content: "\2191"; 4175 content: "";
2569 } 4176 }
2570 .dropup .dropdown-menu, 4177 .dropup .dropdown-menu,
2571 .navbar-fixed-bottom .dropdown .dropdown-menu { 4178 .navbar-fixed-bottom .dropdown .dropdown-menu {
2572 top: auto; 4179 top: auto;
2573 bottom: 100%; 4180 bottom: 100%;
2574 margin-bottom: 1px; 4181 margin-bottom: 1px;
2575 } 4182 }
2576 4183
2577 .typeahead { 4184 @media (min-width: 768px) {
4185 .navbar-right .dropdown-menu {
4186 right: 0;
4187 left: auto;
4188 }
4189 }
4190 .btn-default .caret {
4191 border-top-color: #333333;
4192 }
4193 .btn-primary .caret, .get-started .caret, .btn-success .caret, .btn-warning .car et, .btn-danger .caret, .btn-info .caret {
4194 border-top-color: #fff;
4195 }
4196
4197 .dropup .btn-default .caret {
4198 border-bottom-color: #333333;
4199 }
4200 .dropup .btn-primary .caret, .dropup .get-started .caret,
4201 .dropup .btn-success .caret,
4202 .dropup .btn-warning .caret,
4203 .dropup .btn-danger .caret,
4204 .dropup .btn-info .caret {
4205 border-bottom-color: #fff;
4206 }
4207
4208 .btn-group,
4209 .btn-group-vertical {
4210 position: relative;
4211 display: inline-block;
4212 vertical-align: middle;
4213 }
4214 .btn-group > .btn, .btn-group > .get-started, .learn-more .btn-group > a,
4215 .btn-group-vertical > .btn,
4216 .btn-group-vertical > .get-started,
4217 .learn-more .btn-group-vertical > a {
4218 position: relative;
4219 float: left;
4220 }
4221 .btn-group > .btn:hover, .btn-group > .get-started:hover, .learn-more .btn-group > a:hover, .btn-group > .btn:focus, .btn-group > .get-started:focus, .learn-mor e .btn-group > a:focus, .btn-group > .btn:active, .btn-group > .get-started:acti ve, .learn-more .btn-group > a:active, .btn-group > .btn.active, .btn-group > .a ctive.get-started, .learn-more .btn-group > a.active,
4222 .btn-group-vertical > .btn:hover,
4223 .btn-group-vertical > .get-started:hover,
4224 .learn-more .btn-group-vertical > a:hover,
4225 .btn-group-vertical > .btn:focus,
4226 .btn-group-vertical > .get-started:focus,
4227 .learn-more .btn-group-vertical > a:focus,
4228 .btn-group-vertical > .btn:active,
4229 .btn-group-vertical > .get-started:active,
4230 .learn-more .btn-group-vertical > a:active,
4231 .btn-group-vertical > .btn.active,
4232 .btn-group-vertical > .active.get-started,
4233 .learn-more .btn-group-vertical > a.active {
4234 z-index: 2;
4235 }
4236 .btn-group > .btn:focus, .btn-group > .get-started:focus, .learn-more .btn-group > a:focus,
4237 .btn-group-vertical > .btn:focus,
4238 .btn-group-vertical > .get-started:focus,
4239 .learn-more .btn-group-vertical > a:focus {
4240 outline: none;
4241 }
4242
4243 .btn-group .btn + .btn, .btn-group .get-started + .btn, .btn-group .learn-more a + .btn, .learn-more .btn-group a + .btn, .btn-group .btn + .get-started, .btn-g roup .get-started + .get-started, .btn-group .learn-more a + .get-started, .lear n-more .btn-group a + .get-started, .btn-group .learn-more .btn + a, .learn-more .btn-group .btn + a, .btn-group .learn-more .get-started + a, .learn-more .btn- group .get-started + a, .btn-group .learn-more a + a, .learn-more .btn-group a + a,
4244 .btn-group .btn + .btn-group,
4245 .btn-group .get-started + .btn-group,
4246 .btn-group .learn-more a + .btn-group,
4247 .learn-more .btn-group a + .btn-group,
4248 .btn-group .btn-group + .btn,
4249 .btn-group .btn-group + .get-started,
4250 .btn-group .learn-more .btn-group + a,
4251 .learn-more .btn-group .btn-group + a,
4252 .btn-group .btn-group + .btn-group {
4253 margin-left: -1px;
4254 }
4255
4256 .btn-toolbar:before, .btn-toolbar:after {
4257 content: " ";
4258 /* 1 */
4259 display: table;
4260 /* 2 */
4261 }
4262 .btn-toolbar:after {
4263 clear: both;
4264 }
4265 .btn-toolbar .btn-group {
4266 float: left;
4267 }
4268 .btn-toolbar > .btn + .btn, .btn-toolbar > .get-started + .btn, .learn-more .btn -toolbar > a + .btn, .btn-toolbar > .btn + .get-started, .btn-toolbar > .get-sta rted + .get-started, .learn-more .btn-toolbar > a + .get-started, .learn-more .b tn-toolbar > .btn + a, .learn-more .btn-toolbar > .get-started + a, .learn-more .btn-toolbar > a + a,
4269 .btn-toolbar > .btn + .btn-group,
4270 .btn-toolbar > .get-started + .btn-group,
4271 .learn-more .btn-toolbar > a + .btn-group,
4272 .btn-toolbar > .btn-group + .btn,
4273 .btn-toolbar > .btn-group + .get-started,
4274 .learn-more .btn-toolbar > .btn-group + a,
4275 .btn-toolbar > .btn-group + .btn-group {
4276 margin-left: 5px;
4277 }
4278
4279 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle), .btn -group > .get-started:not(:first-child):not(:last-child):not(.dropdown-toggle), .learn-more .btn-group > a:not(:first-child):not(:last-child):not(.dropdown-togg le) {
4280 border-radius: 0;
4281 }
4282
4283 .btn-group > .btn:first-child, .btn-group > .get-started:first-child, .learn-mor e .btn-group > a:first-child {
4284 margin-left: 0;
4285 }
4286 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle), .btn-group > .get-started:first-child:not(:last-child):not(.dropdown-toggle), .learn-more .btn-group > a:first-child:not(:last-child):not(.dropdown-toggle) {
4287 border-bottom-right-radius: 0;
4288 border-top-right-radius: 0;
4289 }
4290
4291 .btn-group > .btn:last-child:not(:first-child), .btn-group > .get-started:last-c hild:not(:first-child), .learn-more .btn-group > a:last-child:not(:first-child),
4292 .btn-group > .dropdown-toggle:not(:first-child) {
4293 border-bottom-left-radius: 0;
4294 border-top-left-radius: 0;
4295 }
4296
4297 .btn-group > .btn-group {
4298 float: left;
4299 }
4300
4301 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, .btn-group > .btn-group:not(:first-child):not(:last-child) > .get-started, .learn-more .btn-g roup > .btn-group:not(:first-child):not(:last-child) > a {
4302 border-radius: 0;
4303 }
4304
4305 .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:f irst-child > .get-started:last-child, .learn-more .btn-group > .btn-group:first- child > a:last-child,
4306 .btn-group > .btn-group:first-child > .dropdown-toggle {
4307 border-bottom-right-radius: 0;
4308 border-top-right-radius: 0;
4309 }
4310
4311 .btn-group > .btn-group:last-child > .btn:first-child, .btn-group > .btn-group:l ast-child > .get-started:first-child, .learn-more .btn-group > .btn-group:last-c hild > a:first-child {
4312 border-bottom-left-radius: 0;
4313 border-top-left-radius: 0;
4314 }
4315
4316 .btn-group .dropdown-toggle:active,
4317 .btn-group.open .dropdown-toggle {
4318 outline: 0;
4319 }
4320
4321 .btn-group > .btn + .dropdown-toggle, .btn-group > .get-started + .dropdown-togg le, .learn-more .btn-group > a + .dropdown-toggle {
4322 padding-left: 8px;
4323 padding-right: 8px;
4324 }
4325
4326 .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropd own-toggle, .btn-group-lg.btn-group > .get-started + .dropdown-toggle, .learn-mo re .btn-group-lg.btn-group > a + .dropdown-toggle {
4327 padding-left: 12px;
4328 padding-right: 12px;
4329 }
4330
4331 .btn-group.open .dropdown-toggle {
4332 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
4333 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
4334 }
4335 .btn-group.open .dropdown-toggle.btn-link {
4336 -webkit-box-shadow: none;
4337 box-shadow: none;
4338 }
4339
4340 .btn .caret, .get-started .caret, .learn-more a .caret {
4341 margin-left: 0;
4342 }
4343
4344 .btn-lg .caret, .btn-group-lg > .btn .caret, .btn-group-lg > .get-started .caret , .learn-more .btn-group-lg > a .caret {
4345 border-width: 5px 5px 0;
4346 border-bottom-width: 0;
4347 }
4348
4349 .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret, .dropup .btn-group- lg > .get-started .caret, .dropup .learn-more .btn-group-lg > a .caret, .learn-m ore .dropup .btn-group-lg > a .caret {
4350 border-width: 0 5px 5px;
4351 }
4352
4353 .btn-group-vertical > .btn, .btn-group-vertical > .get-started, .learn-more .btn -group-vertical > a,
4354 .btn-group-vertical > .btn-group {
4355 display: block;
4356 float: none;
4357 width: 100%;
4358 max-width: 100%;
4359 }
4360 .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
4361 content: " ";
4362 /* 1 */
4363 display: table;
4364 /* 2 */
4365 }
4366 .btn-group-vertical > .btn-group:after {
4367 clear: both;
4368 }
4369 .btn-group-vertical > .btn-group > .btn, .btn-group-vertical > .btn-group > .get -started, .learn-more .btn-group-vertical > .btn-group > a {
4370 float: none;
4371 }
4372 .btn-group-vertical > .btn + .btn, .btn-group-vertical > .get-started + .btn, .l earn-more .btn-group-vertical > a + .btn, .btn-group-vertical > .btn + .get-star ted, .btn-group-vertical > .get-started + .get-started, .learn-more .btn-group-v ertical > a + .get-started, .learn-more .btn-group-vertical > .btn + a, .learn-m ore .btn-group-vertical > .get-started + a, .learn-more .btn-group-vertical > a + a,
4373 .btn-group-vertical > .btn + .btn-group,
4374 .btn-group-vertical > .get-started + .btn-group,
4375 .learn-more .btn-group-vertical > a + .btn-group,
4376 .btn-group-vertical > .btn-group + .btn,
4377 .btn-group-vertical > .btn-group + .get-started,
4378 .learn-more .btn-group-vertical > .btn-group + a,
4379 .btn-group-vertical > .btn-group + .btn-group {
4380 margin-top: -1px;
4381 margin-left: 0;
4382 }
4383
4384 .btn-group-vertical > .btn:not(:first-child):not(:last-child), .btn-group-vertic al > .get-started:not(:first-child):not(:last-child), .learn-more .btn-group-ver tical > a:not(:first-child):not(:last-child) {
4385 border-radius: 0;
4386 }
4387 .btn-group-vertical > .btn:first-child:not(:last-child), .btn-group-vertical > . get-started:first-child:not(:last-child), .learn-more .btn-group-vertical > a:fi rst-child:not(:last-child) {
4388 border-top-right-radius: 4px;
4389 border-bottom-right-radius: 0;
4390 border-bottom-left-radius: 0;
4391 }
4392 .btn-group-vertical > .btn:last-child:not(:first-child), .btn-group-vertical > . get-started:last-child:not(:first-child), .learn-more .btn-group-vertical > a:la st-child:not(:first-child) {
4393 border-bottom-left-radius: 4px;
4394 border-top-right-radius: 0;
4395 border-top-left-radius: 0;
4396 }
4397
4398 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, .btn -group-vertical > .btn-group:not(:first-child):not(:last-child) > .get-started, .learn-more .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > a {
4399 border-radius: 0;
4400 }
4401
4402 .btn-group-vertical > .btn-group:first-child > .btn:last-child, .btn-group-verti cal > .btn-group:first-child > .get-started:last-child, .learn-more .btn-group-v ertical > .btn-group:first-child > a:last-child,
4403 .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
4404 border-bottom-right-radius: 0;
4405 border-bottom-left-radius: 0;
4406 }
4407
4408 .btn-group-vertical > .btn-group:last-child > .btn:first-child, .btn-group-verti cal > .btn-group:last-child > .get-started:first-child, .learn-more .btn-group-v ertical > .btn-group:last-child > a:first-child {
4409 border-top-right-radius: 0;
4410 border-top-left-radius: 0;
4411 }
4412
4413 .btn-group-justified {
4414 display: table;
4415 width: 100%;
4416 table-layout: fixed;
4417 border-collapse: separate;
4418 }
4419 .btn-group-justified .btn, .btn-group-justified .get-started, .btn-group-justifi ed .learn-more a, .learn-more .btn-group-justified a {
4420 float: none;
4421 display: table-cell;
4422 width: 1%;
4423 }
4424
4425 [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .get-started > input[type="radio"], .learn-more [data-toggle="buttons"] > a > in put[type="radio"],
4426 [data-toggle="buttons"] > .btn > input[type="checkbox"],
4427 [data-toggle="buttons"] > .get-started > input[type="checkbox"],
4428 .learn-more [data-toggle="buttons"] > a > input[type="checkbox"] {
4429 display: none;
4430 }
4431
4432 .input-group {
4433 position: relative;
4434 display: table;
4435 border-collapse: separate;
4436 }
4437 .input-group.col {
4438 float: none;
4439 padding-left: 0;
4440 padding-right: 0;
4441 }
4442 .input-group .form-control {
4443 width: 100%;
4444 margin-bottom: 0;
4445 }
4446
4447 .input-group-addon,
4448 .input-group-btn,
4449 .input-group .form-control {
4450 display: table-cell;
4451 }
4452 .input-group-addon:not(:first-child):not(:last-child),
4453 .input-group-btn:not(:first-child):not(:last-child),
4454 .input-group .form-control:not(:first-child):not(:last-child) {
4455 border-radius: 0;
4456 }
4457
4458 .input-group-addon,
4459 .input-group-btn {
4460 width: 1%;
4461 white-space: nowrap;
4462 vertical-align: middle;
4463 }
4464
4465 .input-group-addon {
4466 padding: 6px 12px;
4467 font-size: 15px;
4468 font-weight: normal;
4469 line-height: 1;
4470 color: #555555;
4471 text-align: center;
4472 background-color: #eeeeee;
4473 border: 1px solid #cccccc;
4474 border-radius: 4px;
4475 }
4476 .input-group-addon.input-sm,
4477 .input-group-sm > .input-group-addon,
4478 .input-group-sm > .input-group-btn > .input-group-addon.btn,
4479 .input-group-sm > .input-group-btn > .input-group-addon.get-started,
4480 .learn-more .input-group-sm > .input-group-btn > a.input-group-addon {
4481 padding: 5px 10px;
4482 font-size: 12px;
4483 border-radius: 3px;
4484 }
4485 .input-group-addon.input-lg,
4486 .input-group-lg > .input-group-addon,
4487 .input-group-lg > .input-group-btn > .input-group-addon.btn,
4488 .input-group-lg > .input-group-btn > .input-group-addon.get-started,
4489 .learn-more .input-group-lg > .input-group-btn > a.input-group-addon {
4490 padding: 10px 16px;
4491 font-size: 18px;
4492 border-radius: 6px;
4493 }
4494 .input-group-addon input[type="radio"],
4495 .input-group-addon input[type="checkbox"] {
4496 margin-top: 0;
4497 }
4498
4499 .input-group .form-control:first-child,
4500 .input-group-addon:first-child,
4501 .input-group-btn:first-child > .btn,
4502 .input-group-btn:first-child > .get-started,
4503 .learn-more .input-group-btn:first-child > a,
4504 .input-group-btn:first-child > .dropdown-toggle,
4505 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
4506 .input-group-btn:last-child > .get-started:not(:last-child):not(.dropdown-toggle ),
4507 .learn-more .input-group-btn:last-child > a:not(:last-child):not(.dropdown-toggl e) {
4508 border-bottom-right-radius: 0;
4509 border-top-right-radius: 0;
4510 }
4511
4512 .input-group-addon:first-child {
4513 border-right: 0;
4514 }
4515
4516 .input-group .form-control:last-child,
4517 .input-group-addon:last-child,
4518 .input-group-btn:last-child > .btn,
4519 .input-group-btn:last-child > .get-started,
4520 .learn-more .input-group-btn:last-child > a,
4521 .input-group-btn:last-child > .dropdown-toggle,
4522 .input-group-btn:first-child > .btn:not(:first-child),
4523 .input-group-btn:first-child > .get-started:not(:first-child),
4524 .learn-more .input-group-btn:first-child > a:not(:first-child) {
4525 border-bottom-left-radius: 0;
4526 border-top-left-radius: 0;
4527 }
4528
4529 .input-group-addon:last-child {
4530 border-left: 0;
4531 }
4532
4533 .input-group-btn {
4534 position: relative;
4535 white-space: nowrap;
4536 }
4537 .input-group-btn:first-child > .btn, .input-group-btn:first-child > .get-started , .learn-more .input-group-btn:first-child > a {
4538 margin-right: -1px;
4539 }
4540 .input-group-btn:last-child > .btn, .input-group-btn:last-child > .get-started, .learn-more .input-group-btn:last-child > a {
4541 margin-left: -1px;
4542 }
4543
4544 .input-group-btn > .btn, .input-group-btn > .get-started, .learn-more .input-gro up-btn > a {
4545 position: relative;
4546 }
4547 .input-group-btn > .btn + .btn, .input-group-btn > .get-started + .btn, .learn-m ore .input-group-btn > a + .btn, .input-group-btn > .btn + .get-started, .input- group-btn > .get-started + .get-started, .learn-more .input-group-btn > a + .get -started, .learn-more .input-group-btn > .btn + a, .learn-more .input-group-btn > .get-started + a, .learn-more .input-group-btn > a + a {
4548 margin-left: -4px;
4549 }
4550 .input-group-btn > .btn:hover, .input-group-btn > .get-started:hover, .learn-mor e .input-group-btn > a:hover, .input-group-btn > .btn:active, .input-group-btn > .get-started:active, .learn-more .input-group-btn > a:active {
4551 z-index: 2;
4552 }
4553
4554 .nav {
4555 margin-bottom: 0;
4556 padding-left: 0;
4557 list-style: none;
4558 }
4559 .nav:before, .nav:after {
4560 content: " ";
4561 /* 1 */
4562 display: table;
4563 /* 2 */
4564 }
4565 .nav:after {
4566 clear: both;
4567 }
4568 .nav > li {
4569 position: relative;
4570 display: block;
4571 }
4572 .nav > li > a {
4573 position: relative;
4574 display: block;
4575 padding: 200px 15px;
4576 }
4577 .nav > li > a:hover, .nav > li > a:focus {
4578 text-decoration: none;
4579 background-color: #eeeeee;
4580 }
4581 .nav > li.disabled > a {
4582 color: #999999;
4583 }
4584 .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
4585 color: #999999;
4586 text-decoration: none;
4587 background-color: transparent;
4588 cursor: not-allowed;
4589 }
4590 .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
4591 background-color: #eeeeee;
4592 border-color: #428bca;
4593 }
4594 .nav .open > a .caret, .nav .open > a:hover .caret, .nav .open > a:focus .caret {
4595 border-top-color: #2a6496;
4596 border-bottom-color: #2a6496;
4597 }
4598 .nav .nav-divider {
4599 height: 1px;
4600 margin: 8px 0;
4601 overflow: hidden;
4602 background-color: #e5e5e5;
4603 }
4604 .nav > li > a > img {
4605 max-width: none;
4606 }
4607
4608 .nav-tabs {
4609 border-bottom: 1px solid #dddddd;
4610 }
4611 .nav-tabs > li {
4612 float: left;
4613 margin-bottom: -1px;
4614 }
4615 .nav-tabs > li > a {
4616 margin-right: 2px;
4617 line-height: 1.2;
4618 border: 1px solid transparent;
4619 border-radius: 4px 4px 0 0;
4620 }
4621 .nav-tabs > li > a:hover {
4622 border-color: #eeeeee #eeeeee #dddddd;
4623 }
4624 .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.activ e > a:focus {
4625 color: #555555;
4626 background-color: white;
4627 border: 1px solid #dddddd;
4628 border-bottom-color: transparent;
4629 cursor: default;
4630 }
4631
4632 .nav-pills > li {
4633 float: left;
4634 }
4635 .nav-pills > li > a {
4636 border-radius: 4px;
4637 }
4638 .nav-pills > li + li {
4639 margin-left: 2px;
4640 }
4641 .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.ac tive > a:focus {
4642 color: white;
4643 background-color: #428bca;
4644 }
4645 .nav-pills > li.active > a .caret, .nav-pills > li.active > a:hover .caret, .nav -pills > li.active > a:focus .caret {
4646 border-top-color: white;
4647 border-bottom-color: white;
4648 }
4649
4650 .nav-stacked > li {
4651 float: none;
4652 }
4653 .nav-stacked > li + li {
2578 margin-top: 2px; 4654 margin-top: 2px;
2579 -webkit-border-radius: 4px; 4655 margin-left: 0;
2580 -moz-border-radius: 4px; 4656 }
4657
4658 .nav-justified, .nav-tabs.nav-justified {
4659 width: 100%;
4660 }
4661 .nav-justified > li, .nav-tabs.nav-justified > li {
4662 float: none;
4663 }
4664 .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
4665 text-align: center;
4666 margin-bottom: 5px;
4667 }
4668 .nav-justified > .dropdown .dropdown-menu {
4669 top: auto;
4670 left: auto;
4671 }
4672 @media (min-width: 768px) {
4673 .nav-justified > li, .nav-tabs.nav-justified > li {
4674 display: table-cell;
4675 width: 1%;
4676 }
4677 .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
4678 margin-bottom: 0;
4679 }
4680 }
4681
4682 .nav-tabs-justified, .nav-tabs.nav-justified {
4683 border-bottom: 0;
4684 }
4685 .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
4686 margin-right: 0;
2581 border-radius: 4px; 4687 border-radius: 4px;
2582 } 4688 }
4689 .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
4690 .nav-tabs-justified > .active > a:hover,
4691 .nav-tabs.nav-justified > .active > a:hover,
4692 .nav-tabs-justified > .active > a:focus,
4693 .nav-tabs.nav-justified > .active > a:focus {
4694 border: 1px solid #dddddd;
4695 }
4696 @media (min-width: 768px) {
4697 .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
4698 border-bottom: 1px solid #dddddd;
4699 border-radius: 4px 4px 0 0;
4700 }
4701 .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
4702 .nav-tabs-justified > .active > a:hover,
4703 .nav-tabs.nav-justified > .active > a:hover,
4704 .nav-tabs-justified > .active > a:focus,
4705 .nav-tabs.nav-justified > .active > a:focus {
4706 border-bottom-color: white;
4707 }
4708 }
4709
4710 .tab-content > .tab-pane {
4711 display: none;
4712 }
4713 .tab-content > .active {
4714 display: block;
4715 }
4716
4717 .nav .caret {
4718 border-top-color: #428bca;
4719 border-bottom-color: #428bca;
4720 }
4721
4722 .nav a:hover .caret {
4723 border-top-color: #2a6496;
4724 border-bottom-color: #2a6496;
4725 }
4726
4727 .nav-tabs .dropdown-menu {
4728 margin-top: -1px;
4729 border-top-right-radius: 0;
4730 border-top-left-radius: 0;
4731 }
4732
4733 .navbar {
4734 position: relative;
4735 min-height: 62px;
4736 margin-bottom: 20px;
4737 border: 1px solid transparent;
4738 }
4739 .navbar:before, .navbar:after {
4740 content: " ";
4741 /* 1 */
4742 display: table;
4743 /* 2 */
4744 }
4745 .navbar:after {
4746 clear: both;
4747 }
4748 @media (min-width: 768px) {
4749 .navbar {
4750 border-radius: 4px;
4751 }
4752 }
4753
4754 .navbar-header:before, .navbar-header:after {
4755 content: " ";
4756 /* 1 */
4757 display: table;
4758 /* 2 */
4759 }
4760 .navbar-header:after {
4761 clear: both;
4762 }
4763 @media (min-width: 768px) {
4764 .navbar-header {
4765 float: left;
4766 }
4767 }
4768
4769 .navbar-collapse {
4770 max-height: 340px;
4771 overflow-x: visible;
4772 padding-right: 10px;
4773 padding-left: 10px;
4774 border-top: 1px solid transparent;
4775 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
4776 -webkit-overflow-scrolling: touch;
4777 }
4778 .navbar-collapse:before, .navbar-collapse:after {
4779 content: " ";
4780 /* 1 */
4781 display: table;
4782 /* 2 */
4783 }
4784 .navbar-collapse:after {
4785 clear: both;
4786 }
4787 .navbar-collapse.in {
4788 overflow-y: auto;
4789 }
4790 @media (min-width: 768px) {
4791 .navbar-collapse {
4792 width: auto;
4793 border-top: 0;
4794 box-shadow: none;
4795 }
4796 .navbar-collapse.collapse {
4797 display: block !important;
4798 height: auto !important;
4799 padding-bottom: 0;
4800 overflow: visible !important;
4801 }
4802 .navbar-collapse.in {
4803 overflow-y: auto;
4804 }
4805 .navbar-collapse .navbar-nav.navbar-left:first-child {
4806 margin-left: -10px;
4807 }
4808 .navbar-collapse .navbar-nav.navbar-right:last-child {
4809 margin-right: -10px;
4810 }
4811 .navbar-collapse .navbar-text:last-child {
4812 margin-right: 0;
4813 }
4814 }
4815
4816 .container > .navbar-header,
4817 .container > .navbar-collapse {
4818 margin-right: -10px;
4819 margin-left: -10px;
4820 }
4821 @media (min-width: 768px) {
4822 .container > .navbar-header,
4823 .container > .navbar-collapse {
4824 margin-right: 0;
4825 margin-left: 0;
4826 }
4827 }
4828
4829 .navbar-static-top {
4830 z-index: 1000;
4831 border-width: 0 0 1px;
4832 }
4833 @media (min-width: 768px) {
4834 .navbar-static-top {
4835 border-radius: 0;
4836 }
4837 }
4838
4839 .navbar-fixed-top,
4840 .navbar-fixed-bottom {
4841 position: fixed;
4842 right: 0;
4843 left: 0;
4844 z-index: 1030;
4845 }
4846 @media (min-width: 768px) {
4847 .navbar-fixed-top,
4848 .navbar-fixed-bottom {
4849 border-radius: 0;
4850 }
4851 }
4852
4853 .navbar-fixed-top {
4854 top: 0;
4855 border-width: 0 0 1px;
4856 }
4857
4858 .navbar-fixed-bottom {
4859 bottom: 0;
4860 margin-bottom: 0;
4861 border-width: 1px 0 0;
4862 }
4863
4864 .navbar-brand {
4865 float: left;
4866 padding: 22px 10px;
4867 font-size: 18px;
4868 line-height: 18px;
4869 }
4870 .navbar-brand:hover, .navbar-brand:focus {
4871 text-decoration: none;
4872 }
4873 @media (min-width: 768px) {
4874 .navbar > .container .navbar-brand {
4875 margin-left: -10px;
4876 }
4877 }
4878
4879 .navbar-toggle {
4880 position: relative;
4881 float: right;
4882 margin-right: 10px;
4883 padding: 9px 10px;
4884 margin-top: 14px;
4885 margin-bottom: 14px;
4886 background-color: transparent;
4887 border: 1px solid transparent;
4888 border-radius: 4px;
4889 }
4890 .navbar-toggle .icon-bar {
4891 display: block;
4892 width: 22px;
4893 height: 2px;
4894 border-radius: 1px;
4895 }
4896 .navbar-toggle .icon-bar + .icon-bar {
4897 margin-top: 4px;
4898 }
4899 @media (min-width: 768px) {
4900 .navbar-toggle {
4901 display: none;
4902 }
4903 }
4904
4905 .navbar-nav {
4906 margin: 11px -10px;
4907 }
4908 .navbar-nav > li > a {
4909 padding-top: 10px;
4910 padding-bottom: 10px;
4911 line-height: 18px;
4912 }
4913 @media (max-width: 767px) {
4914 .navbar-nav .open .dropdown-menu {
4915 position: static;
4916 float: none;
4917 width: auto;
4918 margin-top: 0;
4919 background-color: transparent;
4920 border: 0;
4921 box-shadow: none;
4922 }
4923 .navbar-nav .open .dropdown-menu > li > a,
4924 .navbar-nav .open .dropdown-menu .dropdown-header {
4925 padding: 5px 15px 5px 25px;
4926 }
4927 .navbar-nav .open .dropdown-menu > li > a {
4928 line-height: 18px;
4929 }
4930 .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-m enu > li > a:focus {
4931 background-image: none;
4932 }
4933 }
4934 @media (min-width: 768px) {
4935 .navbar-nav {
4936 float: left;
4937 margin: 0;
4938 }
4939 .navbar-nav > li {
4940 float: left;
4941 }
4942 .navbar-nav > li > a {
4943 padding-top: 22px;
4944 padding-bottom: 22px;
4945 }
4946 }
4947
4948 @media (min-width: 768px) {
4949 .navbar-left {
4950 float: left !important;
4951 }
4952
4953 .navbar-right {
4954 float: right !important;
4955 }
4956 }
4957 .navbar-form {
4958 margin-left: -10px;
4959 margin-right: -10px;
4960 padding: 10px 10px;
4961 border-top: 1px solid transparent;
4962 border-bottom: 1px solid transparent;
4963 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
4964 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255 , 0.1);
4965 margin-top: 15px;
4966 margin-bottom: 15px;
4967 }
4968 @media (max-width: 767px) {
4969 .navbar-form .form-group {
4970 margin-bottom: 5px;
4971 }
4972 }
4973 @media (min-width: 768px) {
4974 .navbar-form {
4975 width: auto;
4976 border: 0;
4977 margin-left: 0;
4978 margin-right: 0;
4979 padding-top: 0;
4980 padding-bottom: 0;
4981 -webkit-box-shadow: none;
4982 box-shadow: none;
4983 }
4984 }
4985
4986 .navbar-nav > li > .dropdown-menu {
4987 margin-top: 0;
4988 border-top-right-radius: 0;
4989 border-top-left-radius: 0;
4990 }
4991
4992 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4993 border-bottom-right-radius: 0;
4994 border-bottom-left-radius: 0;
4995 }
4996
4997 .navbar-nav.pull-right > li > .dropdown-menu,
4998 .navbar-nav > li > .dropdown-menu.pull-right {
4999 left: auto;
5000 right: 0;
5001 }
5002
5003 .navbar-btn {
5004 margin-top: 15px;
5005 margin-bottom: 15px;
5006 }
5007
5008 .navbar-text {
5009 float: left;
5010 margin-top: 22px;
5011 margin-bottom: 22px;
5012 }
5013 @media (min-width: 768px) {
5014 .navbar-text {
5015 margin-left: 10px;
5016 margin-right: 10px;
5017 }
5018 }
5019
5020 .navbar-default {
5021 background-color: white;
5022 border-color: #eeeeee;
5023 }
5024 .navbar-default .navbar-brand {
5025 color: #464646;
5026 }
5027 .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
5028 color: #2d2d2d;
5029 background-color: transparent;
5030 }
5031 .navbar-default .navbar-text {
5032 color: #777777;
5033 }
5034 .navbar-default .navbar-nav > li > a {
5035 color: #464646;
5036 }
5037 .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a :focus {
5038 color: black;
5039 background-color: transparent;
5040 }
5041 .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
5042 color: #555555;
5043 background-color: #eeeeee;
5044 }
5045 .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disa bled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
5046 color: #cccccc;
5047 background-color: transparent;
5048 }
5049 .navbar-default .navbar-toggle {
5050 border-color: #dddddd;
5051 }
5052 .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
5053 background-color: #dddddd;
5054 }
5055 .navbar-default .navbar-toggle .icon-bar {
5056 background-color: #cccccc;
5057 }
5058 .navbar-default .navbar-collapse,
5059 .navbar-default .navbar-form {
5060 border-color: #eeeeee;
5061 }
5062 .navbar-default .navbar-nav > .dropdown > a:hover .caret,
5063 .navbar-default .navbar-nav > .dropdown > a:focus .caret {
5064 border-top-color: black;
5065 border-bottom-color: black;
5066 }
5067 .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a :hover, .navbar-default .navbar-nav > .open > a:focus {
5068 background-color: #eeeeee;
5069 color: #555555;
5070 }
5071 .navbar-default .navbar-nav > .open > a .caret, .navbar-default .navbar-nav > .o pen > a:hover .caret, .navbar-default .navbar-nav > .open > a:focus .caret {
5072 border-top-color: #555555;
5073 border-bottom-color: #555555;
5074 }
5075 .navbar-default .navbar-nav > .dropdown > a .caret {
5076 border-top-color: #464646;
5077 border-bottom-color: #464646;
5078 }
5079 @media (max-width: 767px) {
5080 .navbar-default .navbar-nav .open .dropdown-menu > li > a {
5081 color: #464646;
5082 }
5083 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-defau lt .navbar-nav .open .dropdown-menu > li > a:focus {
5084 color: black;
5085 background-color: transparent;
5086 }
5087 .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-defaul t .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar- nav .open .dropdown-menu > .active > a:focus {
5088 color: #555555;
5089 background-color: #eeeeee;
5090 }
5091 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-defa ult .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .nav bar-nav .open .dropdown-menu > .disabled > a:focus {
5092 color: #cccccc;
5093 background-color: transparent;
5094 }
5095 }
5096 .navbar-default .navbar-link {
5097 color: #464646;
5098 }
5099 .navbar-default .navbar-link:hover {
5100 color: black;
5101 }
5102
5103 .navbar-inverse {
5104 background-color: #222222;
5105 border-color: #090909;
5106 }
5107 .navbar-inverse .navbar-brand {
5108 color: #999999;
5109 }
5110 .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
5111 color: white;
5112 background-color: transparent;
5113 }
5114 .navbar-inverse .navbar-text {
5115 color: #999999;
5116 }
5117 .navbar-inverse .navbar-nav > li > a {
5118 color: #999999;
5119 }
5120 .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a :focus {
5121 color: white;
5122 background-color: transparent;
5123 }
5124 .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
5125 color: white;
5126 background-color: #090909;
5127 }
5128 .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disa bled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
5129 color: #444444;
5130 background-color: transparent;
5131 }
5132 .navbar-inverse .navbar-toggle {
5133 border-color: #333333;
5134 }
5135 .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
5136 background-color: #333333;
5137 }
5138 .navbar-inverse .navbar-toggle .icon-bar {
5139 background-color: white;
5140 }
5141 .navbar-inverse .navbar-collapse,
5142 .navbar-inverse .navbar-form {
5143 border-color: #101010;
5144 }
5145 .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a :hover, .navbar-inverse .navbar-nav > .open > a:focus {
5146 background-color: #090909;
5147 color: white;
5148 }
5149 .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
5150 border-top-color: white;
5151 border-bottom-color: white;
5152 }
5153 .navbar-inverse .navbar-nav > .dropdown > a .caret {
5154 border-top-color: #999999;
5155 border-bottom-color: #999999;
5156 }
5157 .navbar-inverse .navbar-nav > .open > a .caret, .navbar-inverse .navbar-nav > .o pen > a:hover .caret, .navbar-inverse .navbar-nav > .open > a:focus .caret {
5158 border-top-color: white;
5159 border-bottom-color: white;
5160 }
5161 @media (max-width: 767px) {
5162 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
5163 border-color: #090909;
5164 }
5165 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
5166 color: #999999;
5167 }
5168 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inver se .navbar-nav .open .dropdown-menu > li > a:focus {
5169 color: white;
5170 background-color: transparent;
5171 }
5172 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-invers e .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar- nav .open .dropdown-menu > .active > a:focus {
5173 color: white;
5174 background-color: #090909;
5175 }
5176 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inve rse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .nav bar-nav .open .dropdown-menu > .disabled > a:focus {
5177 color: #444444;
5178 background-color: transparent;
5179 }
5180 }
5181 .navbar-inverse .navbar-link {
5182 color: #999999;
5183 }
5184 .navbar-inverse .navbar-link:hover {
5185 color: white;
5186 }
5187
5188 .breadcrumb {
5189 padding: 8px 15px;
5190 margin-bottom: 18px;
5191 list-style: none;
5192 background-color: whitesmoke;
5193 border-radius: 4px;
5194 }
5195 .breadcrumb > li {
5196 display: inline-block;
5197 }
5198 .breadcrumb > li + li:before {
5199 content: "/\00a0";
5200 padding: 0 5px;
5201 color: #cccccc;
5202 }
5203 .breadcrumb > .active {
5204 color: #999999;
5205 }
5206
5207 .pagination {
5208 display: inline-block;
5209 padding-left: 0;
5210 margin: 18px 0;
5211 border-radius: 4px;
5212 }
5213 .pagination > li {
5214 display: inline;
5215 }
5216 .pagination > li > a,
5217 .pagination > li > span {
5218 position: relative;
5219 float: left;
5220 padding: 6px 12px;
5221 line-height: 1.2;
5222 text-decoration: none;
5223 background-color: white;
5224 border: 1px solid #dddddd;
5225 margin-left: -1px;
5226 }
5227 .pagination > li:first-child > a,
5228 .pagination > li:first-child > span {
5229 margin-left: 0;
5230 border-bottom-left-radius: 4px;
5231 border-top-left-radius: 4px;
5232 }
5233 .pagination > li:last-child > a,
5234 .pagination > li:last-child > span {
5235 border-bottom-right-radius: 4px;
5236 border-top-right-radius: 4px;
5237 }
5238 .pagination > li > a:hover, .pagination > li > a:focus,
5239 .pagination > li > span:hover,
5240 .pagination > li > span:focus {
5241 background-color: #eeeeee;
5242 }
5243 .pagination > .active > a, .pagination > .active > a:hover, .pagination > .activ e > a:focus,
5244 .pagination > .active > span,
5245 .pagination > .active > span:hover,
5246 .pagination > .active > span:focus {
5247 z-index: 2;
5248 color: white;
5249 background-color: #428bca;
5250 border-color: #428bca;
5251 cursor: default;
5252 }
5253 .pagination > .disabled > span,
5254 .pagination > .disabled > span:hover,
5255 .pagination > .disabled > span:focus,
5256 .pagination > .disabled > a,
5257 .pagination > .disabled > a:hover,
5258 .pagination > .disabled > a:focus {
5259 color: #999999;
5260 background-color: white;
5261 border-color: #dddddd;
5262 cursor: not-allowed;
5263 }
5264
5265 .pagination-lg > li > a,
5266 .pagination-lg > li > span {
5267 padding: 10px 16px;
5268 font-size: 18px;
5269 }
5270 .pagination-lg > li:first-child > a,
5271 .pagination-lg > li:first-child > span {
5272 border-bottom-left-radius: 6px;
5273 border-top-left-radius: 6px;
5274 }
5275 .pagination-lg > li:last-child > a,
5276 .pagination-lg > li:last-child > span {
5277 border-bottom-right-radius: 6px;
5278 border-top-right-radius: 6px;
5279 }
5280
5281 .pagination-sm > li > a,
5282 .pagination-sm > li > span {
5283 padding: 5px 10px;
5284 font-size: 12px;
5285 }
5286 .pagination-sm > li:first-child > a,
5287 .pagination-sm > li:first-child > span {
5288 border-bottom-left-radius: 3px;
5289 border-top-left-radius: 3px;
5290 }
5291 .pagination-sm > li:last-child > a,
5292 .pagination-sm > li:last-child > span {
5293 border-bottom-right-radius: 3px;
5294 border-top-right-radius: 3px;
5295 }
5296
5297 .pager {
5298 padding-left: 0;
5299 margin: 18px 0;
5300 list-style: none;
5301 text-align: center;
5302 }
5303 .pager:before, .pager:after {
5304 content: " ";
5305 /* 1 */
5306 display: table;
5307 /* 2 */
5308 }
5309 .pager:after {
5310 clear: both;
5311 }
5312 .pager li {
5313 display: inline;
5314 }
5315 .pager li > a,
5316 .pager li > span {
5317 display: inline-block;
5318 padding: 5px 14px;
5319 background-color: white;
5320 border: 1px solid #dddddd;
5321 border-radius: 15px;
5322 }
5323 .pager li > a:hover,
5324 .pager li > a:focus {
5325 text-decoration: none;
5326 background-color: #eeeeee;
5327 }
5328 .pager .next > a,
5329 .pager .next > span {
5330 float: right;
5331 }
5332 .pager .previous > a,
5333 .pager .previous > span {
5334 float: left;
5335 }
5336 .pager .disabled > a,
5337 .pager .disabled > a:hover,
5338 .pager .disabled > a:focus,
5339 .pager .disabled > span {
5340 color: #999999;
5341 background-color: white;
5342 cursor: not-allowed;
5343 }
5344
5345 .label {
5346 display: inline;
5347 padding: .2em .6em .3em;
5348 font-size: 75%;
5349 font-weight: bold;
5350 line-height: 1;
5351 color: white;
5352 text-align: center;
5353 white-space: nowrap;
5354 vertical-align: baseline;
5355 border-radius: .25em;
5356 }
5357 .label[href]:hover, .label[href]:focus {
5358 color: white;
5359 text-decoration: none;
5360 cursor: pointer;
5361 }
5362 .label:empty {
5363 display: none;
5364 }
5365
5366 .label-default {
5367 background-color: #999999;
5368 }
5369 .label-default[href]:hover, .label-default[href]:focus {
5370 background-color: gray;
5371 }
5372
5373 .label-primary {
5374 background-color: #428bca;
5375 }
5376 .label-primary[href]:hover, .label-primary[href]:focus {
5377 background-color: #3071a9;
5378 }
5379
5380 .label-success {
5381 background-color: #5cb85c;
5382 }
5383 .label-success[href]:hover, .label-success[href]:focus {
5384 background-color: #449d44;
5385 }
5386
5387 .label-info {
5388 background-color: #5bc0de;
5389 }
5390 .label-info[href]:hover, .label-info[href]:focus {
5391 background-color: #31b0d5;
5392 }
5393
5394 .label-warning {
5395 background-color: #f0ad4e;
5396 }
5397 .label-warning[href]:hover, .label-warning[href]:focus {
5398 background-color: #ec971f;
5399 }
5400
5401 .label-danger {
5402 background-color: #d9534f;
5403 }
5404 .label-danger[href]:hover, .label-danger[href]:focus {
5405 background-color: #c9302c;
5406 }
5407
5408 .badge {
5409 display: inline-block;
5410 min-width: 10px;
5411 padding: 3px 7px;
5412 font-size: 12px;
5413 font-weight: bold;
5414 color: white;
5415 line-height: 1;
5416 vertical-align: baseline;
5417 white-space: nowrap;
5418 text-align: center;
5419 background-color: #999999;
5420 border-radius: 10px;
5421 }
5422 .badge:empty {
5423 display: none;
5424 }
5425
5426 a.badge:hover, a.badge:focus {
5427 color: white;
5428 text-decoration: none;
5429 cursor: pointer;
5430 }
5431
5432 .btn .badge, .get-started .badge, .learn-more a .badge {
5433 position: relative;
5434 top: -1px;
5435 }
5436
5437 a.list-group-item.active > .badge,
5438 .nav-pills > .active > a > .badge {
5439 color: #428bca;
5440 background-color: white;
5441 }
5442
5443 .nav-pills > li > a > .badge {
5444 margin-left: 3px;
5445 }
5446
5447 .jumbotron {
5448 padding: 30px;
5449 margin-bottom: 30px;
5450 font-size: 23px;
5451 font-weight: 200;
5452 line-height: 1.8;
5453 color: inherit;
5454 background-color: #eeeeee;
5455 }
5456 .jumbotron h1 {
5457 line-height: 1;
5458 color: inherit;
5459 }
5460 .jumbotron p {
5461 line-height: 1.4;
5462 }
5463 .container .jumbotron {
5464 border-radius: 6px;
5465 }
5466 @media screen and (min-width: 768px) {
5467 .jumbotron {
5468 padding-top: 48px;
5469 padding-bottom: 48px;
5470 }
5471 .container .jumbotron {
5472 padding-left: 60px;
5473 padding-right: 60px;
5474 }
5475 .jumbotron h1 {
5476 font-size: 67.5px;
5477 }
5478 }
5479
5480 .thumbnail {
5481 display: block;
5482 margin-bottom: 18px;
5483 }
5484 .thumbnail > img {
5485 display: block;
5486 max-width: 100%;
5487 height: auto;
5488 margin-left: auto;
5489 margin-right: auto;
5490 }
5491 .thumbnail .caption {
5492 padding: 9px;
5493 color: #484848;
5494 }
5495
5496 a.thumbnail:hover,
5497 a.thumbnail:focus,
5498 a.thumbnail.active {
5499 border-color: #428bca;
5500 }
5501
5502 .alert {
5503 padding: 15px;
5504 margin-bottom: 18px;
5505 border: 1px solid transparent;
5506 border-radius: 4px;
5507 }
5508 .alert h4 {
5509 margin-top: 0;
5510 color: inherit;
5511 }
5512 .alert .alert-link {
5513 font-weight: bold;
5514 }
5515 .alert > p,
5516 .alert > ul {
5517 margin-bottom: 0;
5518 }
5519 .alert > p + p {
5520 margin-top: 5px;
5521 }
5522
5523 .alert-dismissable {
5524 padding-right: 35px;
5525 }
5526 .alert-dismissable .close {
5527 position: relative;
5528 top: -2px;
5529 right: -21px;
5530 color: inherit;
5531 }
5532
5533 .alert-success {
5534 background-color: #dff0d8;
5535 border-color: #d6e9c6;
5536 color: #468847;
5537 }
5538 .alert-success hr {
5539 border-top-color: #c9e2b3;
5540 }
5541 .alert-success .alert-link {
5542 color: #356635;
5543 }
5544
5545 .alert-info {
5546 background-color: #d9edf7;
5547 border-color: #bce8f1;
5548 color: #3a87ad;
5549 }
5550 .alert-info hr {
5551 border-top-color: #a6e1ec;
5552 }
5553 .alert-info .alert-link {
5554 color: #2d6987;
5555 }
5556
5557 .alert-warning {
5558 background-color: #fcf8e3;
5559 border-color: #faebcc;
5560 color: #c09853;
5561 }
5562 .alert-warning hr {
5563 border-top-color: #f7e1b5;
5564 }
5565 .alert-warning .alert-link {
5566 color: #a47e3c;
5567 }
5568
5569 .alert-danger {
5570 background-color: #f2dede;
5571 border-color: #ebccd1;
5572 color: #b94a48;
5573 }
5574 .alert-danger hr {
5575 border-top-color: #e4b9c0;
5576 }
5577 .alert-danger .alert-link {
5578 color: #953b39;
5579 }
5580
5581 @-webkit-keyframes progress-bar-stripes {
5582 from {
5583 background-position: 40px 0;
5584 }
5585
5586 to {
5587 background-position: 0 0;
5588 }
5589 }
5590
5591 @-moz-keyframes progress-bar-stripes {
5592 from {
5593 background-position: 40px 0;
5594 }
5595
5596 to {
5597 background-position: 0 0;
5598 }
5599 }
5600
5601 @-o-keyframes progress-bar-stripes {
5602 from {
5603 background-position: 0 0;
5604 }
5605
5606 to {
5607 background-position: 40px 0;
5608 }
5609 }
5610
5611 @keyframes progress-bar-stripes {
5612 from {
5613 background-position: 40px 0;
5614 }
5615
5616 to {
5617 background-position: 0 0;
5618 }
5619 }
5620
5621 .progress {
5622 overflow: hidden;
5623 height: 18px;
5624 margin-bottom: 18px;
5625 background-color: whitesmoke;
5626 border-radius: 4px;
5627 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5628 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5629 }
5630
5631 .progress-bar {
5632 float: left;
5633 width: 0%;
5634 height: 100%;
5635 font-size: 12px;
5636 line-height: 18px;
5637 color: white;
5638 text-align: center;
5639 background-color: #428bca;
5640 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5641 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5642 -webkit-transition: width 0.6s ease;
5643 transition: width 0.6s ease;
5644 }
5645
5646 .progress-striped .progress-bar, .progress .progress-bar {
5647 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
5648 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);
5649 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
5650 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transp arent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0 .15) 75%, transparent 75%, transparent);
5651 background-size: 40px 40px;
5652 }
5653
5654 .progress.active .progress-bar {
5655 -webkit-animation: progress-bar-stripes 2s linear infinite;
5656 animation: progress-bar-stripes 2s linear infinite;
5657 }
5658
5659 .progress-bar-success {
5660 background-color: #5cb85c;
5661 }
5662 .progress-striped .progress-bar-success, .progress .progress-bar-success {
5663 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
5664 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);
5665 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
5666 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transp arent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0 .15) 75%, transparent 75%, transparent);
5667 }
5668
5669 .progress-bar-info {
5670 background-color: #5bc0de;
5671 }
5672 .progress-striped .progress-bar-info, .progress .progress-bar-info {
5673 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
5674 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);
5675 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
5676 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transp arent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0 .15) 75%, transparent 75%, transparent);
5677 }
5678
5679 .progress-bar-warning {
5680 background-color: #f0ad4e;
5681 }
5682 .progress-striped .progress-bar-warning, .progress .progress-bar-warning {
5683 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
5684 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);
5685 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
5686 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transp arent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0 .15) 75%, transparent 75%, transparent);
5687 }
5688
5689 .progress-bar-danger {
5690 background-color: #d9534f;
5691 }
5692 .progress-striped .progress-bar-danger, .progress .progress-bar-danger {
5693 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
5694 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);
5695 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
5696 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transp arent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0 .15) 75%, transparent 75%, transparent);
5697 }
5698
5699 .media,
5700 .media-body {
5701 overflow: hidden;
5702 zoom: 1;
5703 }
5704
5705 .media,
5706 .media .media {
5707 margin-top: 15px;
5708 }
5709
5710 .media:first-child {
5711 margin-top: 0;
5712 }
5713
5714 .media-object {
5715 display: block;
5716 }
5717
5718 .media-heading {
5719 margin: 0 0 5px;
5720 }
5721
5722 .media > .pull-left {
5723 margin-right: 10px;
5724 }
5725 .media > .pull-right {
5726 margin-left: 10px;
5727 }
5728
5729 .media-list {
5730 padding-left: 0;
5731 list-style: none;
5732 }
5733
5734 .list-group {
5735 margin-bottom: 20px;
5736 padding-left: 0;
5737 }
5738
5739 .list-group-item {
5740 position: relative;
5741 display: block;
5742 padding: 10px 15px;
5743 margin-bottom: -1px;
5744 background-color: white;
5745 border: 1px solid #dddddd;
5746 }
5747 .list-group-item:first-child {
5748 border-top-right-radius: 4px;
5749 border-top-left-radius: 4px;
5750 }
5751 .list-group-item:last-child {
5752 margin-bottom: 0;
5753 border-bottom-right-radius: 4px;
5754 border-bottom-left-radius: 4px;
5755 }
5756 .list-group-item > .badge {
5757 float: right;
5758 }
5759 .list-group-item > .badge + .badge {
5760 margin-right: 5px;
5761 }
5762
5763 a.list-group-item {
5764 color: #555555;
5765 }
5766 a.list-group-item .list-group-item-heading {
5767 color: #333333;
5768 }
5769 a.list-group-item:hover, a.list-group-item:focus {
5770 text-decoration: none;
5771 background-color: whitesmoke;
5772 }
5773 a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.acti ve:focus {
5774 z-index: 2;
5775 color: white;
5776 background-color: #428bca;
5777 border-color: #428bca;
5778 }
5779 a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hove r .list-group-item-heading, a.list-group-item.active:focus .list-group-item-head ing {
5780 color: inherit;
5781 }
5782 a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover . list-group-item-text, a.list-group-item.active:focus .list-group-item-text {
5783 color: #e1edf7;
5784 }
5785
5786 .list-group-item-heading {
5787 margin-top: 0;
5788 margin-bottom: 5px;
5789 }
5790
5791 .list-group-item-text {
5792 margin-bottom: 0;
5793 line-height: 1.3;
5794 }
5795
5796 .panel {
5797 margin-bottom: 18px;
5798 background-color: white;
5799 border: 1px solid transparent;
5800 border-radius: 4px;
5801 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
5802 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
5803 }
5804
5805 .panel-body {
5806 padding: 15px;
5807 }
5808 .panel-body:before, .panel-body:after {
5809 content: " ";
5810 /* 1 */
5811 display: table;
5812 /* 2 */
5813 }
5814 .panel-body:after {
5815 clear: both;
5816 }
5817
5818 .panel > .list-group {
5819 margin-bottom: 0;
5820 }
5821 .panel > .list-group .list-group-item {
5822 border-width: 1px 0;
5823 }
5824 .panel > .list-group .list-group-item:first-child {
5825 border-top-right-radius: 0;
5826 border-top-left-radius: 0;
5827 }
5828 .panel > .list-group .list-group-item:last-child {
5829 border-bottom: 0;
5830 }
5831
5832 .panel-heading + .list-group .list-group-item:first-child {
5833 border-top-width: 0;
5834 }
5835
5836 .panel > .table, .panel > table,
5837 .panel > .table-responsive {
5838 margin-bottom: 0;
5839 }
5840 .panel > .panel-body + .table, .panel > .panel-body + table,
5841 .panel > .panel-body + .table-responsive {
5842 border-top: 1px solid #dddddd;
5843 }
5844 .panel > .table-bordered,
5845 .panel > .table-responsive > .table-bordered {
5846 border: 0;
5847 }
5848 .panel > .table-bordered > thead > tr > th:first-child,
5849 .panel > .table-bordered > thead > tr > td:first-child,
5850 .panel > .table-bordered > tbody > tr > th:first-child,
5851 .panel > .table-bordered > tbody > tr > td:first-child,
5852 .panel > .table-bordered > tfoot > tr > th:first-child,
5853 .panel > .table-bordered > tfoot > tr > td:first-child,
5854 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
5855 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
5856 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
5857 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
5858 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
5859 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
5860 border-left: 0;
5861 }
5862 .panel > .table-bordered > thead > tr > th:last-child,
5863 .panel > .table-bordered > thead > tr > td:last-child,
5864 .panel > .table-bordered > tbody > tr > th:last-child,
5865 .panel > .table-bordered > tbody > tr > td:last-child,
5866 .panel > .table-bordered > tfoot > tr > th:last-child,
5867 .panel > .table-bordered > tfoot > tr > td:last-child,
5868 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
5869 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
5870 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
5871 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
5872 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
5873 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
5874 border-right: 0;
5875 }
5876 .panel > .table-bordered > thead > tr:last-child > th, .panel > .table-bordered > thead > tr:last-child > td,
5877 .panel > .table-bordered > tbody > tr:last-child > th,
5878 .panel > .table-bordered > tbody > tr:last-child > td,
5879 .panel > .table-bordered > tfoot > tr:last-child > th,
5880 .panel > .table-bordered > tfoot > tr:last-child > td,
5881 .panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
5882 .panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
5883 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
5884 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
5885 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
5886 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
5887 border-bottom: 0;
5888 }
5889
5890 .panel-heading {
5891 padding: 10px 15px;
5892 border-bottom: 1px solid transparent;
5893 border-top-right-radius: 3px;
5894 border-top-left-radius: 3px;
5895 }
5896 .panel-heading > .dropdown .dropdown-toggle {
5897 color: inherit;
5898 }
5899
5900 .panel-title {
5901 margin-top: 0;
5902 margin-bottom: 0;
5903 font-size: 17px;
5904 }
5905 .panel-title > a {
5906 color: inherit;
5907 }
5908
5909 .panel-footer {
5910 padding: 10px 15px;
5911 background-color: whitesmoke;
5912 border-top: 1px solid #dddddd;
5913 border-bottom-right-radius: 3px;
5914 border-bottom-left-radius: 3px;
5915 }
5916
5917 .panel-group .panel {
5918 margin-bottom: 0;
5919 border-radius: 4px;
5920 overflow: hidden;
5921 }
5922 .panel-group .panel + .panel {
5923 margin-top: 5px;
5924 }
5925 .panel-group .panel-heading {
5926 border-bottom: 0;
5927 }
5928 .panel-group .panel-heading + .panel-collapse .panel-body {
5929 border-top: 1px solid #dddddd;
5930 }
5931 .panel-group .panel-footer {
5932 border-top: 0;
5933 }
5934 .panel-group .panel-footer + .panel-collapse .panel-body {
5935 border-bottom: 1px solid #dddddd;
5936 }
5937
5938 .panel-default {
5939 border-color: #dddddd;
5940 }
5941 .panel-default > .panel-heading {
5942 color: #484848;
5943 background-color: whitesmoke;
5944 border-color: #dddddd;
5945 }
5946 .panel-default > .panel-heading + .panel-collapse .panel-body {
5947 border-top-color: #dddddd;
5948 }
5949 .panel-default > .panel-heading > .dropdown .caret {
5950 border-color: #484848 transparent;
5951 }
5952 .panel-default > .panel-footer + .panel-collapse .panel-body {
5953 border-bottom-color: #dddddd;
5954 }
5955
5956 .panel-primary {
5957 border-color: #428bca;
5958 }
5959 .panel-primary > .panel-heading {
5960 color: white;
5961 background-color: #428bca;
5962 border-color: #428bca;
5963 }
5964 .panel-primary > .panel-heading + .panel-collapse .panel-body {
5965 border-top-color: #428bca;
5966 }
5967 .panel-primary > .panel-heading > .dropdown .caret {
5968 border-color: white transparent;
5969 }
5970 .panel-primary > .panel-footer + .panel-collapse .panel-body {
5971 border-bottom-color: #428bca;
5972 }
5973
5974 .panel-success {
5975 border-color: #d6e9c6;
5976 }
5977 .panel-success > .panel-heading {
5978 color: #468847;
5979 background-color: #dff0d8;
5980 border-color: #d6e9c6;
5981 }
5982 .panel-success > .panel-heading + .panel-collapse .panel-body {
5983 border-top-color: #d6e9c6;
5984 }
5985 .panel-success > .panel-heading > .dropdown .caret {
5986 border-color: #468847 transparent;
5987 }
5988 .panel-success > .panel-footer + .panel-collapse .panel-body {
5989 border-bottom-color: #d6e9c6;
5990 }
5991
5992 .panel-warning {
5993 border-color: #faebcc;
5994 }
5995 .panel-warning > .panel-heading {
5996 color: #c09853;
5997 background-color: #fcf8e3;
5998 border-color: #faebcc;
5999 }
6000 .panel-warning > .panel-heading + .panel-collapse .panel-body {
6001 border-top-color: #faebcc;
6002 }
6003 .panel-warning > .panel-heading > .dropdown .caret {
6004 border-color: #c09853 transparent;
6005 }
6006 .panel-warning > .panel-footer + .panel-collapse .panel-body {
6007 border-bottom-color: #faebcc;
6008 }
6009
6010 .panel-danger {
6011 border-color: #ebccd1;
6012 }
6013 .panel-danger > .panel-heading {
6014 color: #b94a48;
6015 background-color: #f2dede;
6016 border-color: #ebccd1;
6017 }
6018 .panel-danger > .panel-heading + .panel-collapse .panel-body {
6019 border-top-color: #ebccd1;
6020 }
6021 .panel-danger > .panel-heading > .dropdown .caret {
6022 border-color: #b94a48 transparent;
6023 }
6024 .panel-danger > .panel-footer + .panel-collapse .panel-body {
6025 border-bottom-color: #ebccd1;
6026 }
6027
6028 .panel-info {
6029 border-color: #bce8f1;
6030 }
6031 .panel-info > .panel-heading {
6032 color: #3a87ad;
6033 background-color: #d9edf7;
6034 border-color: #bce8f1;
6035 }
6036 .panel-info > .panel-heading + .panel-collapse .panel-body {
6037 border-top-color: #bce8f1;
6038 }
6039 .panel-info > .panel-heading > .dropdown .caret {
6040 border-color: #3a87ad transparent;
6041 }
6042 .panel-info > .panel-footer + .panel-collapse .panel-body {
6043 border-bottom-color: #bce8f1;
6044 }
2583 6045
2584 .well, footer, .intro, ol.toc { 6046 .well, footer, .intro, ol.toc {
2585 min-height: 20px; 6047 min-height: 20px;
2586 padding: 19px; 6048 padding: 19px;
2587 margin-bottom: 20px; 6049 margin-bottom: 20px;
2588 background-color: #f5f5f5; 6050 background-color: whitesmoke;
2589 border: 1px solid #eee; 6051 border: 1px solid #e3e3e3;
2590 border: 1px solid rgba(0, 0, 0, 0.05);
2591 -webkit-border-radius: 4px;
2592 -moz-border-radius: 4px;
2593 border-radius: 4px; 6052 border-radius: 4px;
2594 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 6053 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2595 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2596 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 6054 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2597 } 6055 }
2598 .well blockquote, footer blockquote, .intro blockquote, ol.toc blockquote { 6056 .well blockquote, footer blockquote, .intro blockquote, ol.toc blockquote {
2599 border-color: #ddd; 6057 border-color: #ddd;
2600 border-color: rgba(0, 0, 0, 0.15); 6058 border-color: rgba(0, 0, 0, 0.15);
2601 } 6059 }
2602 6060
2603 .well-large { 6061 .well-lg {
2604 padding: 24px; 6062 padding: 24px;
2605 -webkit-border-radius: 6px;
2606 -moz-border-radius: 6px;
2607 border-radius: 6px; 6063 border-radius: 6px;
2608 } 6064 }
2609 6065
2610 .well-small, footer { 6066 .well-sm, footer {
2611 padding: 9px; 6067 padding: 9px;
2612 -webkit-border-radius: 3px;
2613 -moz-border-radius: 3px;
2614 border-radius: 3px; 6068 border-radius: 3px;
2615 } 6069 }
2616 6070
2617 .fade {
2618 opacity: 0;
2619 filter: alpha(opacity=0);
2620 -webkit-transition: opacity 0.15s linear;
2621 -moz-transition: opacity 0.15s linear;
2622 -ms-transition: opacity 0.15s linear;
2623 -o-transition: opacity 0.15s linear;
2624 transition: opacity 0.15s linear;
2625 }
2626 .fade.in {
2627 opacity: 1;
2628 filter: alpha(opacity=100);
2629 }
2630
2631 .collapse {
2632 position: relative;
2633 height: 0;
2634 overflow: hidden;
2635 -webkit-transition: height 0.35s ease;
2636 -moz-transition: height 0.35s ease;
2637 -ms-transition: height 0.35s ease;
2638 -o-transition: height 0.35s ease;
2639 transition: height 0.35s ease;
2640 }
2641 .collapse.in {
2642 height: auto;
2643 }
2644
2645 .close { 6071 .close {
2646 float: right; 6072 float: right;
2647 font-size: 20px; 6073 font-size: 22.5px;
2648 font-weight: bold; 6074 font-weight: bold;
2649 line-height: 24px; 6075 line-height: 1;
2650 color: black; 6076 color: black;
2651 text-shadow: 0 1px 0 white; 6077 text-shadow: 0 1px 0 white;
2652 opacity: 0.2; 6078 opacity: 0.2;
2653 filter: alpha(opacity=20); 6079 filter: alpha(opacity=20);
2654 } 6080 }
2655 .close:hover { 6081 .close:hover, .close:focus {
2656 color: black; 6082 color: black;
2657 text-decoration: none; 6083 text-decoration: none;
2658 cursor: pointer; 6084 cursor: pointer;
2659 opacity: 0.4; 6085 opacity: 0.5;
2660 filter: alpha(opacity=40); 6086 filter: alpha(opacity=50);
2661 } 6087 }
2662 6088
2663 button.close { 6089 button.close {
2664 padding: 0; 6090 padding: 0;
2665 cursor: pointer; 6091 cursor: pointer;
2666 background: transparent; 6092 background: transparent;
2667 border: 0; 6093 border: 0;
2668 -webkit-appearance: none; 6094 -webkit-appearance: none;
2669 } 6095 }
2670 6096
2671 .btn, .get-started, .learn-more a, .admin form button { 6097 .modal-open {
2672 display: inline-block; 6098 overflow: hidden;
2673 *display: inline; 6099 }
2674 /* IE7 inline-block hack */ 6100
2675 *zoom: 1; 6101 .modal {
2676 padding: 4px 10px 4px; 6102 display: none;
2677 margin-bottom: 0; 6103 overflow: auto;
2678 font-size: 14px; 6104 overflow-y: scroll;
2679 line-height: 24px; 6105 position: fixed;
2680 *line-height: 20px; 6106 top: 0;
2681 color: #333333; 6107 right: 0;
2682 text-align: center; 6108 bottom: 0;
2683 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); 6109 left: 0;
2684 vertical-align: middle; 6110 z-index: 1040;
2685 cursor: pointer; 6111 }
2686 background-color: whitesmoke; 6112 .modal.fade .modal-dialog {
2687 background-image: -moz-linear-gradient(top, white, #e6e6e6); 6113 -webkit-transform: translate(0, -25%);
2688 background-image: -ms-linear-gradient(top, white, #e6e6e6); 6114 -ms-transform: translate(0, -25%);
2689 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e 6)); 6115 transform: translate(0, -25%);
2690 background-image: -webkit-linear-gradient(top, white, #e6e6e6); 6116 -webkit-transition: -webkit-transform 0.3s ease-out;
2691 background-image: -o-linear-gradient(top, white, #e6e6e6); 6117 -moz-transition: -moz-transform 0.3s ease-out;
2692 background-image: linear-gradient(top, #ffffff, #e6e6e6); 6118 -o-transition: -o-transform 0.3s ease-out;
2693 background-repeat: repeat-x; 6119 transition: transform 0.3s ease-out;
2694 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endC olorstr='#e6e6e6', GradientType=0); 6120 }
2695 border-color: #e6e6e6 #e6e6e6 #bfbfbf; 6121 .modal.in .modal-dialog {
2696 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%); 6122 -webkit-transform: translate(0, 0);
2697 *background-color: #e6e6e6; 6123 -ms-transform: translate(0, 0);
2698 /* Darken IE7 buttons by default so they stand out more given they won't have borders */ 6124 transform: translate(0, 0);
2699 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 6125 }
2700 border: 1px solid #cccccc; 6126
2701 *border: 0; 6127 .modal-dialog {
2702 border-bottom-color: #b3b3b3;
2703 -webkit-border-radius: 4px;
2704 -moz-border-radius: 4px;
2705 border-radius: 4px;
2706 *margin-left: .3em;
2707 -webkit-box-shadow: "inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0, .05)";
2708 -moz-box-shadow: "inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05 )";
2709 box-shadow: "inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)";
2710 }
2711 .btn:hover, .get-started:hover, .learn-more a:hover, .admin form button:hover, . btn:active, .get-started:active, .learn-more a:active, .admin form button:active , .btn.active, .active.get-started, .learn-more a.active, .admin form button.act ive, .btn.disabled, .disabled.get-started, .learn-more a.disabled, .admin form b utton.disabled, .btn[disabled], [disabled].get-started, .learn-more a[disabled], .admin form button[disabled] {
2712 background-color: #e6e6e6;
2713 *background-color: #d9d9d9;
2714 }
2715 .btn:active, .get-started:active, .learn-more a:active, .admin form button:activ e, .btn.active, .active.get-started, .learn-more a.active, .admin form button.ac tive {
2716 background-color: #cccccc \9;
2717 }
2718 .btn:first-child, .get-started:first-child, .learn-more a:first-child, .admin fo rm button:first-child {
2719 *margin-left: 0;
2720 }
2721
2722 .btn:hover, .get-started:hover, .learn-more a:hover, .admin form button:hover {
2723 color: #333333;
2724 text-decoration: none;
2725 background-color: #e6e6e6;
2726 *background-color: #d9d9d9;
2727 /* Buttons in IE7 don't get borders, so darken on hover */
2728 background-position: 0 -15px;
2729 -webkit-transition: background-position 0.1s linear;
2730 -moz-transition: background-position 0.1s linear;
2731 -ms-transition: background-position 0.1s linear;
2732 -o-transition: background-position 0.1s linear;
2733 transition: background-position 0.1s linear;
2734 }
2735
2736 .btn:focus, .get-started:focus, .learn-more a:focus, .admin form button:focus {
2737 outline: thin dotted #333;
2738 outline: 5px auto -webkit-focus-ring-color;
2739 outline-offset: -2px;
2740 }
2741
2742 .btn.active, .active.get-started, .learn-more a.active, .admin form button.activ e,
2743 .btn:active,
2744 .get-started:active,
2745 .learn-more a:active,
2746 .admin form button:active {
2747 background-color: #e6e6e6;
2748 background-color: #d9d9d9 \9;
2749 background-image: none;
2750 outline: 0;
2751 -webkit-box-shadow: "inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05 )";
2752 -moz-box-shadow: "inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)";
2753 box-shadow: "inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)";
2754 }
2755
2756 .btn.disabled, .disabled.get-started, .learn-more a.disabled, .admin form button .disabled,
2757 .btn[disabled],
2758 [disabled].get-started,
2759 .learn-more a[disabled],
2760 .admin form button[disabled] {
2761 cursor: default;
2762 background-color: #e6e6e6;
2763 background-image: none;
2764 opacity: 0.65;
2765 filter: alpha(opacity=65);
2766 -webkit-box-shadow: none;
2767 -moz-box-shadow: none;
2768 box-shadow: none;
2769 }
2770
2771 .btn-large {
2772 padding: 9px 14px;
2773 font-size: 16px;
2774 line-height: normal;
2775 -webkit-border-radius: 5px;
2776 -moz-border-radius: 5px;
2777 border-radius: 5px;
2778 }
2779
2780 .btn-large [class^="icon-"] {
2781 margin-top: 1px;
2782 }
2783
2784 .btn-small, .learn-more a {
2785 padding: 5px 9px;
2786 font-size: 12px;
2787 line-height: 22px;
2788 }
2789
2790 .btn-small [class^="icon-"], .learn-more a [class^="icon-"] {
2791 margin-top: -1px;
2792 }
2793
2794 .btn-mini {
2795 padding: 2px 6px;
2796 font-size: 12px;
2797 line-height: 20px;
2798 }
2799
2800 .btn-primary, .get-started,
2801 .btn-primary:hover,
2802 .get-started:hover,
2803 .btn-warning,
2804 .btn-warning:hover,
2805 .btn-danger,
2806 .btn-danger:hover,
2807 .btn-success,
2808 .btn-success:hover,
2809 .btn-info,
2810 .btn-info:hover,
2811 .btn-inverse,
2812 .btn-inverse:hover {
2813 color: white;
2814 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2815 }
2816
2817 .btn-primary.active, .active.get-started,
2818 .btn-warning.active,
2819 .btn-danger.active,
2820 .btn-success.active,
2821 .btn-info.active,
2822 .btn-inverse.active {
2823 color: rgba(255, 255, 255, 0.75);
2824 }
2825
2826 .btn, .get-started, .learn-more a, .admin form button {
2827 border-color: #ccc;
2828 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2829 }
2830
2831 .btn-primary, .get-started {
2832 background-color: #0073cc;
2833 background-image: -moz-linear-gradient(top, #0088cc, #0055cc);
2834 background-image: -ms-linear-gradient(top, #0088cc, #0055cc);
2835 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#005 5cc));
2836 background-image: -webkit-linear-gradient(top, #0088cc, #0055cc);
2837 background-image: -o-linear-gradient(top, #0088cc, #0055cc);
2838 background-image: linear-gradient(top, #0088cc, #0055cc);
2839 background-repeat: repeat-x;
2840 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', en dColorstr='#0055cc', GradientType=0);
2841 border-color: #0055cc #0055cc #003580;
2842 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
2843 *background-color: #0055cc;
2844 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2845 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2846 }
2847 .btn-primary:hover, .get-started:hover, .btn-primary:active, .get-started:active , .btn-primary.active, .active.get-started, .btn-primary.disabled, .disabled.get -started, .btn-primary[disabled], [disabled].get-started {
2848 background-color: #0055cc;
2849 *background-color: #004ab3;
2850 }
2851 .btn-primary:active, .get-started:active, .btn-primary.active, .active.get-start ed {
2852 background-color: #004099 \9;
2853 }
2854
2855 .btn-warning {
2856 background-color: #f9a732;
2857 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
2858 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
2859 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89 406));
2860 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
2861 background-image: -o-linear-gradient(top, #fbb450, #f89406);
2862 background-image: linear-gradient(top, #fbb450, #f89406);
2863 background-repeat: repeat-x;
2864 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', en dColorstr='#f89406', GradientType=0);
2865 border-color: #f89406 #f89406 #ad6704;
2866 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
2867 *background-color: #f89406;
2868 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2869 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2870 }
2871 .btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disab led, .btn-warning[disabled] {
2872 background-color: #f89406;
2873 *background-color: #df8505;
2874 }
2875 .btn-warning:active, .btn-warning.active {
2876 background-color: #c67605 \9;
2877 }
2878
2879 .btn-danger {
2880 background-color: #da4e49;
2881 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
2882 background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
2883 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd3 62f));
2884 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
2885 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
2886 background-image: linear-gradient(top, #ee5f5b, #bd362f);
2887 background-repeat: repeat-x;
2888 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', en dColorstr='#bd362f', GradientType=0);
2889 border-color: #bd362f #bd362f #802420;
2890 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
2891 *background-color: #bd362f;
2892 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2893 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2894 }
2895 .btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
2896 background-color: #bd362f;
2897 *background-color: #a9302a;
2898 }
2899 .btn-danger:active, .btn-danger.active {
2900 background-color: #942a25 \9;
2901 }
2902
2903 .btn-success {
2904 background-color: #5bb65b;
2905 background-image: -moz-linear-gradient(top, #62c462, #51a351);
2906 background-image: -ms-linear-gradient(top, #62c462, #51a351);
2907 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a 351));
2908 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2909 background-image: -o-linear-gradient(top, #62c462, #51a351);
2910 background-image: linear-gradient(top, #62c462, #51a351);
2911 background-repeat: repeat-x;
2912 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', en dColorstr='#51a351', GradientType=0);
2913 border-color: #51a351 #51a351 #387038;
2914 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
2915 *background-color: #51a351;
2916 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2917 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2918 }
2919 .btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disab led, .btn-success[disabled] {
2920 background-color: #51a351;
2921 *background-color: #499249;
2922 }
2923 .btn-success:active, .btn-success.active {
2924 background-color: #408140 \9;
2925 }
2926
2927 .btn-info {
2928 background-color: #49afcd;
2929 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2930 background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
2931 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f9 6b4));
2932 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2933 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2934 background-image: linear-gradient(top, #5bc0de, #2f96b4);
2935 background-repeat: repeat-x;
2936 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', en dColorstr='#2f96b4', GradientType=0);
2937 border-color: #2f96b4 #2f96b4 #1f6377;
2938 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
2939 *background-color: #2f96b4;
2940 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2941 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2942 }
2943 .btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-in fo[disabled] {
2944 background-color: #2f96b4;
2945 *background-color: #2a85a0;
2946 }
2947 .btn-info:active, .btn-info.active {
2948 background-color: #24748c \9;
2949 }
2950
2951 .btn-inverse {
2952 background-color: #404040;
2953 background-image: -moz-linear-gradient(top, #555555, #222222);
2954 background-image: -ms-linear-gradient(top, #555555, #222222);
2955 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222 222));
2956 background-image: -webkit-linear-gradient(top, #555555, #222222);
2957 background-image: -o-linear-gradient(top, #555555, #222222);
2958 background-image: linear-gradient(top, #555555, #222222);
2959 background-repeat: repeat-x;
2960 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', en dColorstr='#222222', GradientType=0);
2961 border-color: #222222 #222222 black;
2962 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
2963 *background-color: #222222;
2964 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2965 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2966 }
2967 .btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disab led, .btn-inverse[disabled] {
2968 background-color: #222222;
2969 *background-color: #151515;
2970 }
2971 .btn-inverse:active, .btn-inverse.active {
2972 background-color: #090909 \9;
2973 }
2974
2975 button.btn, button.get-started, .admin form button,
2976 input[type="submit"].btn,
2977 input[type="submit"].get-started {
2978 *padding-top: 2px;
2979 *padding-bottom: 2px;
2980 }
2981 button.btn::-moz-focus-inner, button.get-started::-moz-focus-inner, .admin form button::-moz-focus-inner,
2982 input[type="submit"].btn::-moz-focus-inner,
2983 input[type="submit"].get-started::-moz-focus-inner {
2984 padding: 0;
2985 border: 0;
2986 }
2987 button.btn.btn-large, button.btn-large.get-started, .admin form button.btn-large ,
2988 input[type="submit"].btn.btn-large,
2989 input[type="submit"].btn-large.get-started {
2990 *padding-top: 7px;
2991 *padding-bottom: 7px;
2992 }
2993 button.btn.btn-small, button.btn-small.get-started, .admin form button.btn-small ,
2994 input[type="submit"].btn.btn-small,
2995 input[type="submit"].btn-small.get-started {
2996 *padding-top: 3px;
2997 *padding-bottom: 3px;
2998 }
2999 button.btn.btn-mini, button.btn-mini.get-started, .admin form button.btn-mini,
3000 input[type="submit"].btn.btn-mini,
3001 input[type="submit"].btn-mini.get-started {
3002 *padding-top: 1px;
3003 *padding-bottom: 1px;
3004 }
3005
3006 .btn-group {
3007 position: relative; 6128 position: relative;
3008 *zoom: 1; 6129 margin-left: auto;
3009 *margin-left: .3em; 6130 margin-right: auto;
3010 } 6131 width: auto;
3011 .btn-group:before, .btn-group:after { 6132 padding: 10px;
3012 display: table; 6133 z-index: 1050;
3013 content: ""; 6134 }
3014 } 6135
3015 .btn-group:after { 6136 .modal-content {
3016 clear: both;
3017 }
3018 .btn-group:first-child {
3019 *margin-left: 0;
3020 }
3021
3022 .btn-group + .btn-group {
3023 margin-left: 5px;
3024 }
3025
3026 .btn-toolbar {
3027 margin-top: 12px;
3028 margin-bottom: 12px;
3029 }
3030 .btn-toolbar .btn-group {
3031 display: inline-block;
3032 *display: inline;
3033 /* IE7 inline-block hack */
3034 *zoom: 1;
3035 }
3036
3037 .btn-group > .btn, .btn-group > .get-started, .learn-more .btn-group > a, .admin form .btn-group > button {
3038 position: relative; 6137 position: relative;
3039 float: left;
3040 margin-left: -1px;
3041 -webkit-border-radius: 0;
3042 -moz-border-radius: 0;
3043 border-radius: 0;
3044 }
3045
3046 .btn-group > .btn:first-child, .btn-group > .get-started:first-child, .learn-mor e .btn-group > a:first-child, .admin form .btn-group > button:first-child {
3047 margin-left: 0;
3048 -webkit-border-top-left-radius: 4px;
3049 -moz-border-radius-topleft: 4px;
3050 border-top-left-radius: 4px;
3051 -webkit-border-bottom-left-radius: 4px;
3052 -moz-border-radius-bottomleft: 4px;
3053 border-bottom-left-radius: 4px;
3054 }
3055
3056 .btn-group > .btn:last-child, .btn-group > .get-started:last-child, .learn-more .btn-group > a:last-child, .admin form .btn-group > button:last-child,
3057 .btn-group > .dropdown-toggle {
3058 -webkit-border-top-right-radius: 4px;
3059 -moz-border-radius-topright: 4px;
3060 border-top-right-radius: 4px;
3061 -webkit-border-bottom-right-radius: 4px;
3062 -moz-border-radius-bottomright: 4px;
3063 border-bottom-right-radius: 4px;
3064 }
3065
3066 .btn-group > .btn.large:first-child, .btn-group > .large.get-started:first-child , .learn-more .btn-group > a.large:first-child, .admin form .btn-group > button. large:first-child {
3067 margin-left: 0;
3068 -webkit-border-top-left-radius: 6px;
3069 -moz-border-radius-topleft: 6px;
3070 border-top-left-radius: 6px;
3071 -webkit-border-bottom-left-radius: 6px;
3072 -moz-border-radius-bottomleft: 6px;
3073 border-bottom-left-radius: 6px;
3074 }
3075
3076 .btn-group > .btn.large:last-child, .btn-group > .large.get-started:last-child, .learn-more .btn-group > a.large:last-child, .admin form .btn-group > button.lar ge:last-child,
3077 .btn-group > .large.dropdown-toggle {
3078 -webkit-border-top-right-radius: 6px;
3079 -moz-border-radius-topright: 6px;
3080 border-top-right-radius: 6px;
3081 -webkit-border-bottom-right-radius: 6px;
3082 -moz-border-radius-bottomright: 6px;
3083 border-bottom-right-radius: 6px;
3084 }
3085
3086 .btn-group > .btn:hover, .btn-group > .get-started:hover, .learn-more .btn-group > a:hover, .admin form .btn-group > button:hover,
3087 .btn-group > .btn:focus,
3088 .btn-group > .get-started:focus,
3089 .learn-more .btn-group > a:focus,
3090 .admin form .btn-group > button:focus,
3091 .btn-group > .btn:active,
3092 .btn-group > .get-started:active,
3093 .learn-more .btn-group > a:active,
3094 .admin form .btn-group > button:active,
3095 .btn-group > .btn.active,
3096 .btn-group > .active.get-started,
3097 .learn-more .btn-group > a.active,
3098 .admin form .btn-group > button.active {
3099 z-index: 2;
3100 }
3101
3102 .btn-group .dropdown-toggle:active,
3103 .btn-group.open .dropdown-toggle {
3104 outline: 0;
3105 }
3106
3107 .btn-group > .dropdown-toggle {
3108 padding-left: 8px;
3109 padding-right: 8px;
3110 -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)";
3111 -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)";
3112 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)";
3113 *padding-top: 4px;
3114 *padding-bottom: 4px;
3115 }
3116
3117 .btn-group > .btn-mini.dropdown-toggle {
3118 padding-left: 5px;
3119 padding-right: 5px;
3120 }
3121
3122 .btn-group > .btn-small.dropdown-toggle, .learn-more .btn-group > a.dropdown-tog gle {
3123 *padding-top: 4px;
3124 *padding-bottom: 4px;
3125 }
3126
3127 .btn-group > .btn-large.dropdown-toggle {
3128 padding-left: 12px;
3129 padding-right: 12px;
3130 }
3131
3132 .btn-group.open .dropdown-toggle {
3133 background-image: none;
3134 -webkit-box-shadow: "inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05 )";
3135 -moz-box-shadow: "inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)";
3136 box-shadow: "inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)";
3137 }
3138 .btn-group.open .btn.dropdown-toggle, .btn-group.open .dropdown-toggle.get-start ed, .btn-group.open .learn-more a.dropdown-toggle, .learn-more .btn-group.open a .dropdown-toggle, .btn-group.open .admin form button.dropdown-toggle, .admin for m .btn-group.open button.dropdown-toggle {
3139 background-color: #e6e6e6;
3140 }
3141 .btn-group.open .btn-primary.dropdown-toggle, .btn-group.open .dropdown-toggle.g et-started {
3142 background-color: #0055cc;
3143 }
3144 .btn-group.open .btn-warning.dropdown-toggle {
3145 background-color: #f89406;
3146 }
3147 .btn-group.open .btn-danger.dropdown-toggle {
3148 background-color: #bd362f;
3149 }
3150 .btn-group.open .btn-success.dropdown-toggle {
3151 background-color: #51a351;
3152 }
3153 .btn-group.open .btn-info.dropdown-toggle {
3154 background-color: #2f96b4;
3155 }
3156 .btn-group.open .btn-inverse.dropdown-toggle {
3157 background-color: #222222;
3158 }
3159
3160 .btn .caret, .get-started .caret, .learn-more a .caret, .admin form button .care t {
3161 margin-top: 7px;
3162 margin-left: 0;
3163 }
3164
3165 .btn:hover .caret, .get-started:hover .caret, .learn-more a:hover .caret, .admin form button:hover .caret,
3166 .open.btn-group .caret {
3167 opacity: 1;
3168 filter: alpha(opacity=100);
3169 }
3170
3171 .btn-mini .caret {
3172 margin-top: 5px;
3173 }
3174
3175 .btn-small .caret, .learn-more a .caret {
3176 margin-top: 6px;
3177 }
3178
3179 .btn-large .caret {
3180 margin-top: 6px;
3181 border-left-width: 5px;
3182 border-right-width: 5px;
3183 border-top-width: 5px;
3184 }
3185
3186 .dropup .btn-large .caret {
3187 border-bottom: 5px solid black;
3188 border-top: 0;
3189 }
3190
3191 .btn-primary .caret, .get-started .caret,
3192 .btn-warning .caret,
3193 .btn-danger .caret,
3194 .btn-info .caret,
3195 .btn-success .caret,
3196 .btn-inverse .caret {
3197 border-top-color: white;
3198 border-bottom-color: white;
3199 opacity: 0.75;
3200 filter: alpha(opacity=75);
3201 }
3202
3203 .alert {
3204 padding: 8px 35px 8px 14px;
3205 margin-bottom: 24px;
3206 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3207 background-color: #fcf8e3;
3208 border: 1px solid #fbeed5;
3209 -webkit-border-radius: 4px;
3210 -moz-border-radius: 4px;
3211 border-radius: 4px;
3212 color: #c09853;
3213 }
3214
3215 .alert-heading {
3216 color: inherit;
3217 }
3218
3219 .alert .close {
3220 position: relative;
3221 top: -2px;
3222 right: -21px;
3223 line-height: 18px;
3224 }
3225
3226 .alert-success {
3227 background-color: #dff0d8;
3228 border-color: #d6e9c6;
3229 color: #468847;
3230 }
3231
3232 .alert-danger,
3233 .alert-error {
3234 background-color: #f2dede;
3235 border-color: #eed3d7;
3236 color: #b94a48;
3237 }
3238
3239 .alert-info {
3240 background-color: #d9edf7;
3241 border-color: #bce8f1;
3242 color: #3a87ad;
3243 }
3244
3245 .alert-block {
3246 padding-top: 14px;
3247 padding-bottom: 14px;
3248 }
3249
3250 .alert-block > p,
3251 .alert-block > ul {
3252 margin-bottom: 0;
3253 }
3254
3255 .alert-block p + p {
3256 margin-top: 5px;
3257 }
3258
3259 .nav, .admin > ul {
3260 margin-left: 0;
3261 margin-bottom: 24px;
3262 list-style: none;
3263 }
3264
3265 .nav > li > a, .admin > ul > li > a {
3266 display: block;
3267 }
3268
3269 .nav > li > a:hover, .admin > ul > li > a:hover {
3270 text-decoration: none;
3271 background-color: #eeeeee;
3272 }
3273
3274 .nav > .pull-right, .admin > ul > .pull-right {
3275 float: right;
3276 }
3277
3278 .nav .nav-header, .admin > ul .nav-header {
3279 display: block;
3280 padding: 3px 15px;
3281 font-size: 11px;
3282 font-weight: bold;
3283 line-height: 24px;
3284 color: #999999;
3285 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3286 text-transform: uppercase;
3287 }
3288
3289 .nav li + .nav-header, .admin > ul li + .nav-header {
3290 margin-top: 9px;
3291 }
3292
3293 .nav .nav-header, .admin > ul .nav-header {
3294 display: block;
3295 padding: 3px 15px;
3296 font-size: 11px;
3297 font-weight: bold;
3298 line-height: 24px;
3299 color: #999999;
3300 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3301 text-transform: uppercase;
3302 }
3303
3304 .nav li + .nav-header, .admin > ul li + .nav-header {
3305 margin-top: 9px;
3306 }
3307
3308 .nav-list {
3309 padding-left: 15px;
3310 padding-right: 15px;
3311 margin-bottom: 0;
3312 }
3313
3314 .nav-list > li > a,
3315 .nav-list .nav-header {
3316 margin-left: -15px;
3317 margin-right: -15px;
3318 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3319 }
3320
3321 .nav-list > li > a {
3322 padding: 3px 15px;
3323 }
3324
3325 .nav-list > .active > a,
3326 .nav-list > .active > a:hover {
3327 color: white;
3328 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
3329 background-color: #0088cc;
3330 }
3331
3332 .nav-list [class^="icon-"] {
3333 margin-right: 2px;
3334 }
3335
3336 .nav-list .divider {
3337 *width: 100%;
3338 height: 1px;
3339 margin: 11px 1px;
3340 *margin: -5px 0 5px;
3341 overflow: hidden;
3342 background-color: #e5e5e5;
3343 border-bottom: 1px solid white;
3344 }
3345
3346 .nav-tabs, .admin > ul,
3347 .nav-pills {
3348 *zoom: 1;
3349 }
3350 .nav-tabs:before, .admin > ul:before, .nav-tabs:after, .admin > ul:after,
3351 .nav-pills:before,
3352 .nav-pills:after {
3353 display: table;
3354 content: "";
3355 }
3356 .nav-tabs:after, .admin > ul:after,
3357 .nav-pills:after {
3358 clear: both;
3359 }
3360
3361 .nav-tabs > li, .admin > ul > li,
3362 .nav-pills > li {
3363 float: left;
3364 }
3365
3366 .nav-tabs > li > a, .admin > ul > li > a,
3367 .nav-pills > li > a {
3368 padding-right: 12px;
3369 padding-left: 12px;
3370 margin-right: 2px;
3371 line-height: 14px;
3372 }
3373
3374 .nav-tabs, .admin > ul {
3375 border-bottom: 1px solid #ddd;
3376 }
3377
3378 .nav-tabs > li, .admin > ul > li {
3379 margin-bottom: -1px;
3380 }
3381
3382 .nav-tabs > li > a, .admin > ul > li > a {
3383 padding-top: 9px;
3384 padding-bottom: 9px;
3385 line-height: 24px;
3386 border: 1px solid transparent;
3387 -webkit-border-radius: 4px 4px 0 0;
3388 -moz-border-radius: 4px 4px 0 0;
3389 border-radius: 4px 4px 0 0;
3390 }
3391 .nav-tabs > li > a:hover, .admin > ul > li > a:hover {
3392 border-color: #eeeeee #eeeeee #dddddd;
3393 }
3394
3395 .nav-tabs > .active > a, .admin > ul > .active > a,
3396 .nav-tabs > .active > a:hover,
3397 .admin > ul > .active > a:hover {
3398 color: #555555;
3399 background-color: white; 6138 background-color: white;
3400 border: 1px solid #ddd; 6139 border: 1px solid #999999;
3401 border-bottom-color: transparent; 6140 border: 1px solid rgba(0, 0, 0, 0.2);
3402 cursor: default; 6141 border-radius: 6px;
3403 } 6142 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3404 6143 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3405 .nav-pills > li > a { 6144 background-clip: padding-box;
3406 padding-top: 8px; 6145 outline: none;
3407 padding-bottom: 8px;
3408 margin-top: 2px;
3409 margin-bottom: 2px;
3410 -webkit-border-radius: 5px;
3411 -moz-border-radius: 5px;
3412 border-radius: 5px;
3413 }
3414
3415 .nav-pills > .active > a,
3416 .nav-pills > .active > a:hover {
3417 color: white;
3418 background-color: #0088cc;
3419 }
3420
3421 .nav-stacked > li {
3422 float: none;
3423 }
3424
3425 .nav-stacked > li > a {
3426 margin-right: 0;
3427 }
3428
3429 .nav-tabs.nav-stacked, .admin > ul.nav-stacked {
3430 border-bottom: 0;
3431 }
3432
3433 .nav-tabs.nav-stacked > li > a, .admin > ul.nav-stacked > li > a {
3434 border: 1px solid #ddd;
3435 -webkit-border-radius: 0;
3436 -moz-border-radius: 0;
3437 border-radius: 0;
3438 }
3439
3440 .nav-tabs.nav-stacked > li:first-child > a, .admin > ul.nav-stacked > li:first-c hild > a {
3441 -webkit-border-radius: 4px 4px 0 0;
3442 -moz-border-radius: 4px 4px 0 0;
3443 border-radius: 4px 4px 0 0;
3444 }
3445
3446 .nav-tabs.nav-stacked > li:last-child > a, .admin > ul.nav-stacked > li:last-chi ld > a {
3447 -webkit-border-radius: 0 0 4px 4px;
3448 -moz-border-radius: 0 0 4px 4px;
3449 border-radius: 0 0 4px 4px;
3450 }
3451
3452 .nav-tabs.nav-stacked > li > a:hover, .admin > ul.nav-stacked > li > a:hover {
3453 border-color: #ddd;
3454 z-index: 2;
3455 }
3456
3457 .nav-pills.nav-stacked > li > a {
3458 margin-bottom: 3px;
3459 }
3460
3461 .nav-pills.nav-stacked > li:last-child > a {
3462 margin-bottom: 1px;
3463 }
3464
3465 .nav-tabs .dropdown-menu, .admin > ul .dropdown-menu {
3466 -webkit-border-radius: 0 0 5px 5px;
3467 -moz-border-radius: 0 0 5px 5px;
3468 border-radius: 0 0 5px 5px;
3469 }
3470
3471 .nav-pills .dropdown-menu {
3472 -webkit-border-radius: 4px;
3473 -moz-border-radius: 4px;
3474 border-radius: 4px;
3475 }
3476
3477 .nav-tabs .dropdown-toggle .caret, .admin > ul .dropdown-toggle .caret,
3478 .nav-pills .dropdown-toggle .caret {
3479 border-top-color: #0088cc;
3480 border-bottom-color: #0088cc;
3481 margin-top: 6px;
3482 }
3483
3484 .nav-tabs .dropdown-toggle:hover .caret, .admin > ul .dropdown-toggle:hover .car et,
3485 .nav-pills .dropdown-toggle:hover .caret {
3486 border-top-color: #005580;
3487 border-bottom-color: #005580;
3488 }
3489
3490 .nav-tabs .active .dropdown-toggle .caret, .admin > ul .active .dropdown-toggle .caret,
3491 .nav-pills .active .dropdown-toggle .caret {
3492 border-top-color: #333333;
3493 border-bottom-color: #333333;
3494 }
3495
3496 .nav > .dropdown.active > a:hover, .admin > ul > .dropdown.active > a:hover {
3497 color: black;
3498 cursor: pointer;
3499 }
3500
3501 .nav-tabs .open .dropdown-toggle, .admin > ul .open .dropdown-toggle,
3502 .nav-pills .open .dropdown-toggle,
3503 .nav > li.dropdown.open.active > a:hover,
3504 .admin > ul > li.dropdown.open.active > a:hover {
3505 color: white;
3506 background-color: #999999;
3507 border-color: #999999;
3508 }
3509
3510 .nav li.dropdown.open .caret, .admin > ul li.dropdown.open .caret,
3511 .nav li.dropdown.open.active .caret,
3512 .admin > ul li.dropdown.open.active .caret,
3513 .nav li.dropdown.open a:hover .caret,
3514 .admin > ul li.dropdown.open a:hover .caret {
3515 border-top-color: white;
3516 border-bottom-color: white;
3517 opacity: 1;
3518 filter: alpha(opacity=100);
3519 }
3520
3521 .tabs-stacked .open > a:hover {
3522 border-color: #999999;
3523 }
3524
3525 .tabbable, .admin {
3526 *zoom: 1;
3527 }
3528 .tabbable:before, .admin:before, .tabbable:after, .admin:after {
3529 display: table;
3530 content: "";
3531 }
3532 .tabbable:after, .admin:after {
3533 clear: both;
3534 }
3535
3536 .tab-content, .admin > div {
3537 overflow: auto;
3538 }
3539
3540 .tabs-below > .nav-tabs, .admin.tabs-below > ul,
3541 .tabs-right > .nav-tabs,
3542 .admin.tabs-right > ul,
3543 .tabs-left > .nav-tabs,
3544 .admin > .nav-tabs,
3545 .admin > ul {
3546 border-bottom: 0;
3547 }
3548
3549 .tab-content > .tab-pane, .admin > div > .tab-pane, .admin > div > div,
3550 .pill-content > .pill-pane {
3551 display: none;
3552 }
3553
3554 .tab-content > .active, .admin > div > .active,
3555 .pill-content > .active {
3556 display: block;
3557 }
3558
3559 .tabs-below > .nav-tabs, .admin.tabs-below > ul {
3560 border-top: 1px solid #ddd;
3561 }
3562
3563 .tabs-below > .nav-tabs > li, .admin.tabs-below > ul > li {
3564 margin-top: -1px;
3565 margin-bottom: 0;
3566 }
3567
3568 .tabs-below > .nav-tabs > li > a, .admin.tabs-below > ul > li > a {
3569 -webkit-border-radius: 0 0 4px 4px;
3570 -moz-border-radius: 0 0 4px 4px;
3571 border-radius: 0 0 4px 4px;
3572 }
3573 .tabs-below > .nav-tabs > li > a:hover, .admin.tabs-below > ul > li > a:hover {
3574 border-bottom-color: transparent;
3575 border-top-color: #ddd;
3576 }
3577
3578 .tabs-below > .nav-tabs > .active > a, .admin.tabs-below > ul > .active > a,
3579 .tabs-below > .nav-tabs > .active > a:hover,
3580 .admin.tabs-below > ul > .active > a:hover {
3581 border-color: transparent #ddd #ddd #ddd;
3582 }
3583
3584 .tabs-left > .nav-tabs > li, .admin > .nav-tabs > li, .admin > ul > li,
3585 .tabs-right > .nav-tabs > li,
3586 .admin.tabs-right > ul > li {
3587 float: none;
3588 }
3589
3590 .tabs-left > .nav-tabs > li > a, .admin > .nav-tabs > li > a, .admin > ul > li > a,
3591 .tabs-right > .nav-tabs > li > a,
3592 .admin.tabs-right > ul > li > a {
3593 min-width: 74px;
3594 margin-right: 0;
3595 margin-bottom: 3px;
3596 }
3597
3598 .tabs-left > .nav-tabs, .admin > .nav-tabs, .admin > ul {
3599 float: left;
3600 margin-right: 19px;
3601 border-right: 1px solid #ddd;
3602 }
3603
3604 .tabs-left > .nav-tabs > li > a, .admin > .nav-tabs > li > a, .admin > ul > li > a {
3605 margin-right: -1px;
3606 -webkit-border-radius: 4px 0 0 4px;
3607 -moz-border-radius: 4px 0 0 4px;
3608 border-radius: 4px 0 0 4px;
3609 }
3610
3611 .tabs-left > .nav-tabs > li > a:hover, .admin > .nav-tabs > li > a:hover, .admin > ul > li > a:hover {
3612 border-color: #eeeeee #dddddd #eeeeee #eeeeee;
3613 }
3614
3615 .tabs-left > .nav-tabs .active > a, .admin > .nav-tabs .active > a, .admin > ul .active > a,
3616 .tabs-left > .nav-tabs .active > a:hover,
3617 .admin > .nav-tabs .active > a:hover,
3618 .admin > ul .active > a:hover {
3619 border-color: #ddd transparent #ddd #ddd;
3620 *border-right-color: white;
3621 }
3622
3623 .tabs-right > .nav-tabs, .admin.tabs-right > ul {
3624 float: right;
3625 margin-left: 19px;
3626 border-left: 1px solid #ddd;
3627 }
3628
3629 .tabs-right > .nav-tabs > li > a, .admin.tabs-right > ul > li > a {
3630 margin-left: -1px;
3631 -webkit-border-radius: 0 4px 4px 0;
3632 -moz-border-radius: 0 4px 4px 0;
3633 border-radius: 0 4px 4px 0;
3634 }
3635
3636 .tabs-right > .nav-tabs > li > a:hover, .admin.tabs-right > ul > li > a:hover {
3637 border-color: #eeeeee #eeeeee #eeeeee #dddddd;
3638 }
3639
3640 .tabs-right > .nav-tabs .active > a, .admin.tabs-right > ul .active > a,
3641 .tabs-right > .nav-tabs .active > a:hover,
3642 .admin.tabs-right > ul .active > a:hover {
3643 border-color: #ddd #ddd #ddd transparent;
3644 *border-left-color: white;
3645 }
3646
3647 .navbar {
3648 *position: relative;
3649 *z-index: 2;
3650 overflow: visible;
3651 margin-bottom: 24px;
3652 }
3653
3654 .navbar-inner {
3655 min-height: 40px;
3656 padding-left: 20px;
3657 padding-right: 20px;
3658 background-color: #2c2c2c;
3659 background-image: -moz-linear-gradient(top, #333333, #222222);
3660 background-image: -ms-linear-gradient(top, #333333, #222222);
3661 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222 222));
3662 background-image: -webkit-linear-gradient(top, #333333, #222222);
3663 background-image: -o-linear-gradient(top, #333333, #222222);
3664 background-image: linear-gradient(top, #333333, #222222);
3665 background-repeat: repeat-x;
3666 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', en dColorstr='#222222', GradientType=0);
3667 -webkit-border-radius: 4px;
3668 -moz-border-radius: 4px;
3669 border-radius: 4px;
3670 -webkit-box-shadow: "0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1)" ;
3671 -moz-box-shadow: "0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1)";
3672 box-shadow: "0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1)";
3673 }
3674
3675 .navbar .container {
3676 width: auto;
3677 }
3678
3679 .nav-collapse.collapse {
3680 height: auto;
3681 }
3682
3683 .navbar {
3684 color: #999999;
3685 }
3686 .navbar .brand:hover {
3687 text-decoration: none;
3688 }
3689 .navbar .brand {
3690 float: left;
3691 display: block;
3692 padding: 8px 20px 12px;
3693 margin-left: -20px;
3694 font-size: 20px;
3695 font-weight: 200;
3696 line-height: 1;
3697 color: #999999;
3698 }
3699 .navbar .navbar-text {
3700 margin-bottom: 0;
3701 line-height: 40px;
3702 }
3703 .navbar .navbar-link {
3704 color: #999999;
3705 }
3706 .navbar .navbar-link:hover {
3707 color: white;
3708 }
3709 .navbar .btn, .navbar .get-started, .navbar .learn-more a, .learn-more .navbar a , .navbar .admin form button, .admin form .navbar button,
3710 .navbar .btn-group {
3711 margin-top: 5px;
3712 }
3713 .navbar .btn-group .btn, .navbar .btn-group .get-started, .navbar .btn-group .le arn-more a, .learn-more .navbar .btn-group a, .navbar .btn-group .admin form but ton, .admin form .navbar .btn-group button {
3714 margin: 0;
3715 }
3716
3717 .navbar-form {
3718 margin-bottom: 0;
3719 *zoom: 1;
3720 }
3721 .navbar-form:before, .navbar-form:after {
3722 display: table;
3723 content: "";
3724 }
3725 .navbar-form:after {
3726 clear: both;
3727 }
3728 .navbar-form input,
3729 .navbar-form select,
3730 .navbar-form .radio,
3731 .navbar-form .checkbox {
3732 margin-top: 5px;
3733 }
3734 .navbar-form input,
3735 .navbar-form select {
3736 display: inline-block;
3737 margin-bottom: 0;
3738 }
3739 .navbar-form input[type="image"],
3740 .navbar-form input[type="checkbox"],
3741 .navbar-form input[type="radio"] {
3742 margin-top: 3px;
3743 }
3744 .navbar-form .input-append,
3745 .navbar-form .input-prepend {
3746 margin-top: 6px;
3747 white-space: nowrap;
3748 }
3749 .navbar-form .input-append input,
3750 .navbar-form .input-prepend input {
3751 margin-top: 0;
3752 }
3753
3754 .navbar-search {
3755 position: relative;
3756 float: left;
3757 margin-top: 6px;
3758 margin-bottom: 0;
3759 }
3760 .navbar-search .search-query {
3761 padding: 4px 9px;
3762 font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
3763 font-size: 13px;
3764 font-weight: normal;
3765 line-height: 1;
3766 color: white;
3767 background-color: #626262;
3768 border: 1px solid #151515;
3769 -webkit-box-shadow: "inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,25 5,.15)";
3770 -moz-box-shadow: "inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,. 15)";
3771 box-shadow: "inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0px rgba(255,255,255,.15)";
3772 -webkit-transition: none;
3773 -moz-transition: none;
3774 -ms-transition: none;
3775 -o-transition: none;
3776 transition: none;
3777 }
3778 .navbar-search .search-query:-moz-placeholder {
3779 color: #cccccc;
3780 }
3781 .navbar-search .search-query::-webkit-input-placeholder {
3782 color: #cccccc;
3783 }
3784 .navbar-search .search-query:focus, .navbar-search .search-query.focused {
3785 padding: 5px 10px;
3786 color: #333333;
3787 text-shadow: 0 1px 0 white;
3788 background-color: white;
3789 border: 0;
3790 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3791 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3792 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
3793 outline: 0;
3794 }
3795
3796 .navbar-fixed-top,
3797 .navbar-fixed-bottom {
3798 position: fixed;
3799 right: 0;
3800 left: 0;
3801 z-index: 1030;
3802 margin-bottom: 0;
3803 }
3804
3805 .navbar-fixed-top .navbar-inner,
3806 .navbar-fixed-bottom .navbar-inner {
3807 padding-left: 0;
3808 padding-right: 0;
3809 -webkit-border-radius: 0;
3810 -moz-border-radius: 0;
3811 border-radius: 0;
3812 }
3813
3814 .navbar-fixed-top .container,
3815 .navbar-fixed-bottom .container {
3816 width: 940px;
3817 }
3818
3819 .navbar-fixed-top {
3820 top: 0;
3821 }
3822
3823 .navbar-fixed-bottom {
3824 bottom: 0;
3825 }
3826
3827 .navbar .nav, .navbar .admin > ul {
3828 position: relative;
3829 left: 0;
3830 display: block;
3831 float: left;
3832 margin: 0 10px 0 0;
3833 }
3834
3835 .navbar .nav.pull-right, .navbar .admin > ul.pull-right {
3836 float: right;
3837 }
3838
3839 .navbar .nav > li, .navbar .admin > ul > li {
3840 display: block;
3841 float: left;
3842 }
3843
3844 .navbar .nav > li > a, .navbar .admin > ul > li > a {
3845 float: none;
3846 padding: 9px 10px 11px;
3847 line-height: 19px;
3848 color: #999999;
3849 text-decoration: none;
3850 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3851 }
3852
3853 .navbar .btn, .navbar .get-started, .navbar .learn-more a, .learn-more .navbar a , .navbar .admin form button, .admin form .navbar button {
3854 display: inline-block;
3855 padding: 4px 10px 4px;
3856 margin: 5px 5px 6px;
3857 line-height: 24px;
3858 }
3859
3860 .navbar .btn-group {
3861 margin: 0;
3862 padding: 5px 5px 6px;
3863 }
3864
3865 .navbar .nav > li > a:hover, .navbar .admin > ul > li > a:hover {
3866 background-color: transparent;
3867 color: white;
3868 text-decoration: none;
3869 }
3870
3871 .navbar .nav .active > a, .navbar .admin > ul .active > a,
3872 .navbar .nav .active > a:hover,
3873 .navbar .admin > ul .active > a:hover {
3874 color: white;
3875 text-decoration: none;
3876 background-color: #222222;
3877 }
3878
3879 .navbar .divider-vertical {
3880 height: 40px;
3881 width: 1px;
3882 margin: 0 9px;
3883 overflow: hidden;
3884 background-color: #222222;
3885 border-right: 1px solid #333333;
3886 }
3887
3888 .navbar .nav.pull-right, .navbar .admin > ul.pull-right {
3889 margin-left: 10px;
3890 margin-right: 0;
3891 }
3892
3893 .navbar .btn-navbar {
3894 display: none;
3895 float: right;
3896 padding: 7px 10px;
3897 margin-left: 5px;
3898 margin-right: 5px;
3899 background-color: #2c2c2c;
3900 background-image: -moz-linear-gradient(top, #333333, #222222);
3901 background-image: -ms-linear-gradient(top, #333333, #222222);
3902 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222 222));
3903 background-image: -webkit-linear-gradient(top, #333333, #222222);
3904 background-image: -o-linear-gradient(top, #333333, #222222);
3905 background-image: linear-gradient(top, #333333, #222222);
3906 background-repeat: repeat-x;
3907 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', en dColorstr='#222222', GradientType=0);
3908 border-color: #222222 #222222 black;
3909 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) fadein(rgba(0, 0, 0, 0.1), 15%);
3910 *background-color: #222222;
3911 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
3912 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3913 -webkit-box-shadow: "inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255, 255,.075)";
3914 -moz-box-shadow: "inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255 ,.075)";
3915 box-shadow: "inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075 )";
3916 }
3917 .navbar .btn-navbar:hover, .navbar .btn-navbar:active, .navbar .btn-navbar.activ e, .navbar .btn-navbar.disabled, .navbar .btn-navbar[disabled] {
3918 background-color: #222222;
3919 *background-color: #151515;
3920 }
3921 .navbar .btn-navbar:active, .navbar .btn-navbar.active {
3922 background-color: #090909 \9;
3923 }
3924
3925 .navbar .btn-navbar .icon-bar {
3926 display: block;
3927 width: 18px;
3928 height: 2px;
3929 background-color: #f5f5f5;
3930 -webkit-border-radius: 1px;
3931 -moz-border-radius: 1px;
3932 border-radius: 1px;
3933 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
3934 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
3935 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
3936 }
3937
3938 .btn-navbar .icon-bar + .icon-bar {
3939 margin-top: 3px;
3940 }
3941
3942 .navbar .dropdown-menu:before {
3943 content: '';
3944 display: inline-block;
3945 border-left: 7px solid transparent;
3946 border-right: 7px solid transparent;
3947 border-bottom: 7px solid #ccc;
3948 border-bottom-color: rgba(0, 0, 0, 0.2);
3949 position: absolute;
3950 top: -7px;
3951 left: 9px;
3952 }
3953 .navbar .dropdown-menu:after {
3954 content: '';
3955 display: inline-block;
3956 border-left: 6px solid transparent;
3957 border-right: 6px solid transparent;
3958 border-bottom: 6px solid white;
3959 position: absolute;
3960 top: -6px;
3961 left: 10px;
3962 }
3963
3964 .navbar-fixed-bottom .dropdown-menu:before {
3965 border-top: 7px solid #ccc;
3966 border-top-color: rgba(0, 0, 0, 0.2);
3967 border-bottom: 0;
3968 bottom: -7px;
3969 top: auto;
3970 }
3971 .navbar-fixed-bottom .dropdown-menu:after {
3972 border-top: 6px solid white;
3973 border-bottom: 0;
3974 bottom: -6px;
3975 top: auto;
3976 }
3977
3978 .navbar .nav li.dropdown .dropdown-toggle .caret, .navbar .admin > ul li.dropdow n .dropdown-toggle .caret,
3979 .navbar .nav li.dropdown.open .caret,
3980 .navbar .admin > ul li.dropdown.open .caret {
3981 border-top-color: white;
3982 border-bottom-color: white;
3983 }
3984
3985 .navbar .nav li.dropdown.active .caret, .navbar .admin > ul li.dropdown.active . caret {
3986 opacity: 1;
3987 filter: alpha(opacity=100);
3988 }
3989
3990 .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .admin > ul li.dropdow n.open > .dropdown-toggle,
3991 .navbar .nav li.dropdown.active > .dropdown-toggle,
3992 .navbar .admin > ul li.dropdown.active > .dropdown-toggle,
3993 .navbar .nav li.dropdown.open.active > .dropdown-toggle,
3994 .navbar .admin > ul li.dropdown.open.active > .dropdown-toggle {
3995 background-color: transparent;
3996 }
3997
3998 .navbar .nav li.dropdown.active > .dropdown-toggle:hover, .navbar .admin > ul li .dropdown.active > .dropdown-toggle:hover {
3999 color: white;
4000 }
4001
4002 .navbar .pull-right .dropdown-menu,
4003 .navbar .dropdown-menu.pull-right {
4004 left: auto;
4005 right: 0;
4006 }
4007 .navbar .pull-right .dropdown-menu:before,
4008 .navbar .dropdown-menu.pull-right:before {
4009 left: auto;
4010 right: 12px;
4011 }
4012 .navbar .pull-right .dropdown-menu:after,
4013 .navbar .dropdown-menu.pull-right:after {
4014 left: auto;
4015 right: 13px;
4016 }
4017
4018 .breadcrumb {
4019 padding: 7px 14px;
4020 margin: 0 0 24px;
4021 list-style: none;
4022 background-color: #fbfbfb;
4023 background-image: -moz-linear-gradient(top, white, whitesmoke);
4024 background-image: -ms-linear-gradient(top, white, whitesmoke);
4025 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(whites moke));
4026 background-image: -webkit-linear-gradient(top, white, whitesmoke);
4027 background-image: -o-linear-gradient(top, white, whitesmoke);
4028 background-image: linear-gradient(top, #ffffff, #f5f5f5);
4029 background-repeat: repeat-x;
4030 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endC olorstr='whitesmoke', GradientType=0);
4031 border: 1px solid #ddd;
4032 -webkit-border-radius: 3px;
4033 -moz-border-radius: 3px;
4034 border-radius: 3px;
4035 -webkit-box-shadow: inset 0 1px 0 white;
4036 -moz-box-shadow: inset 0 1px 0 white;
4037 box-shadow: inset 0 1px 0 white;
4038 }
4039 .breadcrumb li {
4040 display: inline-block;
4041 *display: inline;
4042 /* IE7 inline-block hack */
4043 *zoom: 1;
4044 text-shadow: 0 1px 0 white;
4045 }
4046 .breadcrumb .divider {
4047 padding: 0 5px;
4048 color: #999999;
4049 }
4050 .breadcrumb .active a {
4051 color: #333333;
4052 }
4053
4054 .pagination {
4055 height: 48px;
4056 margin: 24px 0;
4057 }
4058
4059 .pagination ul {
4060 display: inline-block;
4061 *display: inline;
4062 /* IE7 inline-block hack */
4063 *zoom: 1;
4064 margin-left: 0;
4065 margin-bottom: 0;
4066 -webkit-border-radius: 3px;
4067 -moz-border-radius: 3px;
4068 border-radius: 3px;
4069 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4070 -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4071 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4072 }
4073
4074 .pagination li {
4075 display: inline;
4076 }
4077
4078 .pagination a {
4079 float: left;
4080 padding: 0 14px;
4081 line-height: 46px;
4082 text-decoration: none;
4083 border: 1px solid #ddd;
4084 border-left-width: 0;
4085 }
4086
4087 .pagination a:hover,
4088 .pagination .active a {
4089 background-color: #f5f5f5;
4090 }
4091
4092 .pagination .active a {
4093 color: #999999;
4094 cursor: default;
4095 }
4096
4097 .pagination .disabled span,
4098 .pagination .disabled a,
4099 .pagination .disabled a:hover {
4100 color: #999999;
4101 background-color: transparent;
4102 cursor: default;
4103 }
4104
4105 .pagination li:first-child a {
4106 border-left-width: 1px;
4107 -webkit-border-radius: 3px 0 0 3px;
4108 -moz-border-radius: 3px 0 0 3px;
4109 border-radius: 3px 0 0 3px;
4110 }
4111
4112 .pagination li:last-child a {
4113 -webkit-border-radius: 0 3px 3px 0;
4114 -moz-border-radius: 0 3px 3px 0;
4115 border-radius: 0 3px 3px 0;
4116 }
4117
4118 .pagination-centered, .pagination {
4119 text-align: center;
4120 }
4121
4122 .pagination-right {
4123 text-align: right;
4124 }
4125
4126 .pager {
4127 margin-left: 0;
4128 margin-bottom: 24px;
4129 list-style: none;
4130 text-align: center;
4131 *zoom: 1;
4132 }
4133 .pager:before, .pager:after {
4134 display: table;
4135 content: "";
4136 }
4137 .pager:after {
4138 clear: both;
4139 }
4140
4141 .pager li {
4142 display: inline;
4143 }
4144
4145 .pager a {
4146 display: inline-block;
4147 padding: 5px 14px;
4148 background-color: #fff;
4149 border: 1px solid #ddd;
4150 -webkit-border-radius: 15px;
4151 -moz-border-radius: 15px;
4152 border-radius: 15px;
4153 }
4154
4155 .pager a:hover {
4156 text-decoration: none;
4157 background-color: #f5f5f5;
4158 }
4159
4160 .pager .next a {
4161 float: right;
4162 }
4163
4164 .pager .previous a {
4165 float: left;
4166 }
4167
4168 .pager .disabled a,
4169 .pager .disabled a:hover {
4170 color: #999999;
4171 background-color: #fff;
4172 cursor: default;
4173 }
4174
4175 .modal-open .dropdown-menu {
4176 z-index: 2050;
4177 }
4178 .modal-open .dropdown.open {
4179 *z-index: 2050;
4180 }
4181 .modal-open .popover {
4182 z-index: 2060;
4183 }
4184 .modal-open .tooltip {
4185 z-index: 2070;
4186 } 6146 }
4187 6147
4188 .modal-backdrop { 6148 .modal-backdrop {
4189 position: fixed; 6149 position: fixed;
4190 top: 0; 6150 top: 0;
4191 right: 0; 6151 right: 0;
4192 bottom: 0; 6152 bottom: 0;
4193 left: 0; 6153 left: 0;
4194 z-index: 1040; 6154 z-index: 1030;
4195 background-color: black; 6155 background-color: black;
4196 } 6156 }
4197 .modal-backdrop.fade { 6157 .modal-backdrop.fade {
4198 opacity: 0; 6158 opacity: 0;
4199 } 6159 filter: alpha(opacity=0);
4200 6160 }
4201 .modal-backdrop, 6161 .modal-backdrop.in {
4202 .modal-backdrop.fade.in { 6162 opacity: 0.5;
4203 opacity: 0.8; 6163 filter: alpha(opacity=50);
4204 filter: alpha(opacity=80);
4205 }
4206
4207 .modal {
4208 position: fixed;
4209 top: 50%;
4210 left: 50%;
4211 z-index: 1050;
4212 overflow: auto;
4213 width: 560px;
4214 margin: -250px 0 0 -280px;
4215 background-color: white;
4216 border: 1px solid #999;
4217 border: 1px solid rgba(0, 0, 0, 0.3);
4218 *border: 1px solid #999;
4219 /* IE6-7 */
4220 -webkit-border-radius: 6px;
4221 -moz-border-radius: 6px;
4222 border-radius: 6px;
4223 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4224 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4225 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4226 -webkit-background-clip: padding-box;
4227 -moz-background-clip: padding-box;
4228 background-clip: padding-box;
4229 }
4230 .modal.fade {
4231 -webkit-transition: "opacity .3s linear, top .3s ease-out";
4232 -moz-transition: "opacity .3s linear, top .3s ease-out";
4233 -ms-transition: "opacity .3s linear, top .3s ease-out";
4234 -o-transition: "opacity .3s linear, top .3s ease-out";
4235 transition: "opacity .3s linear, top .3s ease-out";
4236 top: -25%;
4237 }
4238 .modal.fade.in {
4239 top: 50%;
4240 } 6164 }
4241 6165
4242 .modal-header { 6166 .modal-header {
4243 padding: 9px 15px; 6167 padding: 15px;
4244 border-bottom: 1px solid #eee; 6168 border-bottom: 1px solid #e5e5e5;
4245 } 6169 min-height: 16.2px;
6170 }
6171
4246 .modal-header .close { 6172 .modal-header .close {
4247 margin-top: 2px; 6173 margin-top: -2px;
6174 }
6175
6176 .modal-title {
6177 margin: 0;
6178 line-height: 1.2;
4248 } 6179 }
4249 6180
4250 .modal-body { 6181 .modal-body {
4251 overflow-y: auto; 6182 position: relative;
4252 max-height: 400px; 6183 padding: 20px;
4253 padding: 15px;
4254 }
4255
4256 .modal-form {
4257 margin-bottom: 0;
4258 } 6184 }
4259 6185
4260 .modal-footer { 6186 .modal-footer {
4261 padding: 14px 15px 15px; 6187 margin-top: 15px;
4262 margin-bottom: 0; 6188 padding: 19px 20px 20px;
4263 text-align: right; 6189 text-align: right;
4264 background-color: #f5f5f5; 6190 border-top: 1px solid #e5e5e5;
4265 border-top: 1px solid #ddd;
4266 -webkit-border-radius: 0 0 6px 6px;
4267 -moz-border-radius: 0 0 6px 6px;
4268 border-radius: 0 0 6px 6px;
4269 -webkit-box-shadow: inset 0 1px 0 white;
4270 -moz-box-shadow: inset 0 1px 0 white;
4271 box-shadow: inset 0 1px 0 white;
4272 *zoom: 1;
4273 } 6191 }
4274 .modal-footer:before, .modal-footer:after { 6192 .modal-footer:before, .modal-footer:after {
6193 content: " ";
6194 /* 1 */
4275 display: table; 6195 display: table;
4276 content: ""; 6196 /* 2 */
4277 } 6197 }
4278 .modal-footer:after { 6198 .modal-footer:after {
4279 clear: both; 6199 clear: both;
4280 } 6200 }
4281 .modal-footer .btn + .btn, .modal-footer .get-started + .btn, .modal-footer .lea rn-more a + .btn, .learn-more .modal-footer a + .btn, .modal-footer .admin form button + .btn, .admin form .modal-footer button + .btn, .modal-footer .btn + .ge t-started, .modal-footer .get-started + .get-started, .modal-footer .learn-more a + .get-started, .learn-more .modal-footer a + .get-started, .modal-footer .adm in form button + .get-started, .admin form .modal-footer button + .get-started, .modal-footer .learn-more .btn + a, .learn-more .modal-footer .btn + a, .modal-f ooter .learn-more .get-started + a, .learn-more .modal-footer .get-started + a, .modal-footer .learn-more a + a, .learn-more .modal-footer a + a, .modal-footer .admin form .learn-more button + a, .learn-more .modal-footer .admin form button + a, .admin form .modal-footer .learn-more button + a, .learn-more .admin form .modal-footer button + a, .modal-footer .admin form .btn + button, .admin form . modal-footer .btn + button, .modal-footer .admin form .get-started + button, .ad min form .modal-footer .get-started + button, .modal-footer .learn-more .admin f orm a + button, .admin form .modal-footer .learn-more a + button, .learn-more .m odal-footer .admin form a + button, .admin form .learn-more .modal-footer a + bu tton, .modal-footer .admin form button + button, .admin form .modal-footer butto n + button { 6201 .modal-footer .btn + .btn, .modal-footer .get-started + .btn, .modal-footer .lea rn-more a + .btn, .learn-more .modal-footer a + .btn, .modal-footer .btn + .get- started, .modal-footer .get-started + .get-started, .modal-footer .learn-more a + .get-started, .learn-more .modal-footer a + .get-started, .modal-footer .learn -more .btn + a, .learn-more .modal-footer .btn + a, .modal-footer .learn-more .g et-started + a, .learn-more .modal-footer .get-started + a, .modal-footer .learn -more a + a, .learn-more .modal-footer a + a {
4282 margin-left: 5px; 6202 margin-left: 5px;
4283 margin-bottom: 0; 6203 margin-bottom: 0;
4284 } 6204 }
4285 .modal-footer .btn-group .btn + .btn, .modal-footer .btn-group .get-started + .b tn, .modal-footer .btn-group .learn-more a + .btn, .learn-more .modal-footer .bt n-group a + .btn, .modal-footer .btn-group .admin form button + .btn, .admin for m .modal-footer .btn-group button + .btn, .modal-footer .btn-group .btn + .get-s tarted, .modal-footer .btn-group .get-started + .get-started, .modal-footer .btn -group .learn-more a + .get-started, .learn-more .modal-footer .btn-group a + .g et-started, .modal-footer .btn-group .admin form button + .get-started, .admin f orm .modal-footer .btn-group button + .get-started, .modal-footer .btn-group .le arn-more .btn + a, .learn-more .modal-footer .btn-group .btn + a, .modal-footer .btn-group .learn-more .get-started + a, .learn-more .modal-footer .btn-group .g et-started + a, .modal-footer .btn-group .learn-more a + a, .learn-more .modal-f ooter .btn-group a + a, .modal-footer .btn-group .admin form .learn-more button + a, .learn-more .modal-footer .btn-group .admin form button + a, .admin form .m odal-footer .btn-group .learn-more button + a, .learn-more .admin form .modal-fo oter .btn-group button + a, .modal-footer .btn-group .admin form .btn + button, .admin form .modal-footer .btn-group .btn + button, .modal-footer .btn-group .ad min form .get-started + button, .admin form .modal-footer .btn-group .get-starte d + button, .modal-footer .btn-group .learn-more .admin form a + button, .admin form .modal-footer .btn-group .learn-more a + button, .learn-more .modal-footer .btn-group .admin form a + button, .admin form .learn-more .modal-footer .btn-gr oup a + button, .modal-footer .btn-group .admin form button + button, .admin for m .modal-footer .btn-group button + button { 6205 .modal-footer .btn-group .btn + .btn, .modal-footer .btn-group .get-started + .b tn, .modal-footer .btn-group .learn-more a + .btn, .learn-more .modal-footer .bt n-group a + .btn, .modal-footer .btn-group .btn + .get-started, .modal-footer .b tn-group .get-started + .get-started, .modal-footer .btn-group .learn-more a + . get-started, .learn-more .modal-footer .btn-group a + .get-started, .modal-foote r .btn-group .learn-more .btn + a, .learn-more .modal-footer .btn-group .btn + a , .modal-footer .btn-group .learn-more .get-started + a, .learn-more .modal-foot er .btn-group .get-started + a, .modal-footer .btn-group .learn-more a + a, .lea rn-more .modal-footer .btn-group a + a {
4286 margin-left: -1px; 6206 margin-left: -1px;
4287 } 6207 }
4288 6208 .modal-footer .btn-block + .btn-block {
6209 margin-left: 0;
6210 }
6211
6212 @media screen and (min-width: 768px) {
6213 .modal-dialog {
6214 width: 600px;
6215 padding-top: 30px;
6216 padding-bottom: 30px;
6217 }
6218
6219 .modal-content {
6220 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
6221 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
6222 }
6223 }
4289 .tooltip { 6224 .tooltip {
4290 position: absolute; 6225 position: absolute;
4291 z-index: 1020; 6226 z-index: 1030;
4292 display: block; 6227 display: block;
4293 visibility: visible; 6228 visibility: visible;
4294 padding: 5px; 6229 font-size: 12px;
4295 font-size: 11px; 6230 line-height: 1.4;
4296 opacity: 0; 6231 opacity: 0;
4297 filter: alpha(opacity=0); 6232 filter: alpha(opacity=0);
4298 } 6233 }
4299 .tooltip.in { 6234 .tooltip.in {
4300 opacity: 0.8; 6235 opacity: 0.9;
4301 filter: alpha(opacity=80); 6236 filter: alpha(opacity=90);
4302 } 6237 }
4303 .tooltip.top { 6238 .tooltip.top {
4304 margin-top: -2px; 6239 margin-top: -3px;
6240 padding: 5px 0;
4305 } 6241 }
4306 .tooltip.right { 6242 .tooltip.right {
4307 margin-left: 2px; 6243 margin-left: 3px;
6244 padding: 0 5px;
4308 } 6245 }
4309 .tooltip.bottom { 6246 .tooltip.bottom {
4310 margin-top: 2px; 6247 margin-top: 3px;
6248 padding: 5px 0;
4311 } 6249 }
4312 .tooltip.left { 6250 .tooltip.left {
4313 margin-left: -2px; 6251 margin-left: -3px;
4314 } 6252 padding: 0 5px;
4315 .tooltip.top .tooltip-arrow {
4316 bottom: 0;
4317 left: 50%;
4318 margin-left: -5px;
4319 border-left: 5px solid transparent;
4320 border-right: 5px solid transparent;
4321 border-top: 5px solid black;
4322 }
4323 .tooltip.left .tooltip-arrow {
4324 top: 50%;
4325 right: 0;
4326 margin-top: -5px;
4327 border-top: 5px solid transparent;
4328 border-bottom: 5px solid transparent;
4329 border-left: 5px solid black;
4330 }
4331 .tooltip.bottom .tooltip-arrow {
4332 top: 0;
4333 left: 50%;
4334 margin-left: -5px;
4335 border-left: 5px solid transparent;
4336 border-right: 5px solid transparent;
4337 border-bottom: 5px solid black;
4338 }
4339 .tooltip.right .tooltip-arrow {
4340 top: 50%;
4341 left: 0;
4342 margin-top: -5px;
4343 border-top: 5px solid transparent;
4344 border-bottom: 5px solid transparent;
4345 border-right: 5px solid black;
4346 } 6253 }
4347 6254
4348 .tooltip-inner { 6255 .tooltip-inner {
4349 max-width: 200px; 6256 max-width: 200px;
4350 padding: 3px 8px; 6257 padding: 3px 8px;
4351 color: white; 6258 color: white;
4352 text-align: center; 6259 text-align: center;
4353 text-decoration: none; 6260 text-decoration: none;
4354 background-color: black; 6261 background-color: black;
4355 -webkit-border-radius: 4px;
4356 -moz-border-radius: 4px;
4357 border-radius: 4px; 6262 border-radius: 4px;
4358 } 6263 }
4359 6264
4360 .tooltip-arrow { 6265 .tooltip-arrow {
4361 position: absolute; 6266 position: absolute;
4362 width: 0; 6267 width: 0;
4363 height: 0; 6268 height: 0;
6269 border-color: transparent;
6270 border-style: solid;
6271 }
6272
6273 .tooltip.top .tooltip-arrow {
6274 bottom: 0;
6275 left: 50%;
6276 margin-left: -5px;
6277 border-width: 5px 5px 0;
6278 border-top-color: black;
6279 }
6280 .tooltip.top-left .tooltip-arrow {
6281 bottom: 0;
6282 left: 5px;
6283 border-width: 5px 5px 0;
6284 border-top-color: black;
6285 }
6286 .tooltip.top-right .tooltip-arrow {
6287 bottom: 0;
6288 right: 5px;
6289 border-width: 5px 5px 0;
6290 border-top-color: black;
6291 }
6292 .tooltip.right .tooltip-arrow {
6293 top: 50%;
6294 left: 0;
6295 margin-top: -5px;
6296 border-width: 5px 5px 5px 0;
6297 border-right-color: black;
6298 }
6299 .tooltip.left .tooltip-arrow {
6300 top: 50%;
6301 right: 0;
6302 margin-top: -5px;
6303 border-width: 5px 0 5px 5px;
6304 border-left-color: black;
6305 }
6306 .tooltip.bottom .tooltip-arrow {
6307 top: 0;
6308 left: 50%;
6309 margin-left: -5px;
6310 border-width: 0 5px 5px;
6311 border-bottom-color: black;
6312 }
6313 .tooltip.bottom-left .tooltip-arrow {
6314 top: 0;
6315 left: 5px;
6316 border-width: 0 5px 5px;
6317 border-bottom-color: black;
6318 }
6319 .tooltip.bottom-right .tooltip-arrow {
6320 top: 0;
6321 right: 5px;
6322 border-width: 0 5px 5px;
6323 border-bottom-color: black;
4364 } 6324 }
4365 6325
4366 .popover { 6326 .popover {
4367 position: absolute; 6327 position: absolute;
4368 top: 0; 6328 top: 0;
4369 left: 0; 6329 left: 0;
4370 z-index: 1010; 6330 z-index: 1010;
4371 display: none; 6331 display: none;
4372 padding: 5px; 6332 max-width: 276px;
6333 padding: 1px;
6334 text-align: left;
6335 background-color: white;
6336 background-clip: padding-box;
6337 border: 1px solid #cccccc;
6338 border: 1px solid rgba(0, 0, 0, 0.2);
6339 border-radius: 6px;
6340 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
6341 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
6342 white-space: normal;
4373 } 6343 }
4374 .popover.top { 6344 .popover.top {
4375 margin-top: -5px; 6345 margin-top: -10px;
4376 } 6346 }
4377 .popover.right { 6347 .popover.right {
4378 margin-left: 5px; 6348 margin-left: 10px;
4379 } 6349 }
4380 .popover.bottom { 6350 .popover.bottom {
4381 margin-top: 5px; 6351 margin-top: 10px;
4382 } 6352 }
4383 .popover.left { 6353 .popover.left {
4384 margin-left: -5px; 6354 margin-left: -10px;
4385 } 6355 }
6356
6357 .popover-title {
6358 margin: 0;
6359 padding: 8px 14px;
6360 font-size: 15px;
6361 font-weight: normal;
6362 line-height: 18px;
6363 background-color: #f7f7f7;
6364 border-bottom: 1px solid #ebebeb;
6365 border-radius: 5px 5px 0 0;
6366 }
6367
6368 .popover-content {
6369 padding: 9px 14px;
6370 }
6371
6372 .popover .arrow, .popover .arrow:after {
6373 position: absolute;
6374 display: block;
6375 width: 0;
6376 height: 0;
6377 border-color: transparent;
6378 border-style: solid;
6379 }
6380
6381 .popover .arrow {
6382 border-width: 11px;
6383 }
6384
6385 .popover .arrow:after {
6386 border-width: 10px;
6387 content: "";
6388 }
6389
4386 .popover.top .arrow { 6390 .popover.top .arrow {
4387 bottom: 0;
4388 left: 50%; 6391 left: 50%;
4389 margin-left: -5px; 6392 margin-left: -11px;
4390 border-left: 5px solid transparent; 6393 border-bottom-width: 0;
4391 border-right: 5px solid transparent; 6394 border-top-color: #999999;
4392 border-top: 5px solid black; 6395 border-top-color: rgba(0, 0, 0, 0.25);
6396 bottom: -11px;
6397 }
6398 .popover.top .arrow:after {
6399 content: " ";
6400 bottom: 1px;
6401 margin-left: -10px;
6402 border-bottom-width: 0;
6403 border-top-color: white;
4393 } 6404 }
4394 .popover.right .arrow { 6405 .popover.right .arrow {
4395 top: 50%; 6406 top: 50%;
4396 left: 0; 6407 left: -11px;
4397 margin-top: -5px; 6408 margin-top: -11px;
4398 border-top: 5px solid transparent; 6409 border-left-width: 0;
4399 border-bottom: 5px solid transparent; 6410 border-right-color: #999999;
4400 border-right: 5px solid black; 6411 border-right-color: rgba(0, 0, 0, 0.25);
6412 }
6413 .popover.right .arrow:after {
6414 content: " ";
6415 left: 1px;
6416 bottom: -10px;
6417 border-left-width: 0;
6418 border-right-color: white;
4401 } 6419 }
4402 .popover.bottom .arrow { 6420 .popover.bottom .arrow {
4403 top: 0;
4404 left: 50%; 6421 left: 50%;
4405 margin-left: -5px; 6422 margin-left: -11px;
4406 border-left: 5px solid transparent; 6423 border-top-width: 0;
4407 border-right: 5px solid transparent; 6424 border-bottom-color: #999999;
4408 border-bottom: 5px solid black; 6425 border-bottom-color: rgba(0, 0, 0, 0.25);
6426 top: -11px;
6427 }
6428 .popover.bottom .arrow:after {
6429 content: " ";
6430 top: 1px;
6431 margin-left: -10px;
6432 border-top-width: 0;
6433 border-bottom-color: white;
4409 } 6434 }
4410 .popover.left .arrow { 6435 .popover.left .arrow {
4411 top: 50%; 6436 top: 50%;
4412 right: 0; 6437 right: -11px;
4413 margin-top: -5px; 6438 margin-top: -11px;
4414 border-top: 5px solid transparent; 6439 border-right-width: 0;
4415 border-bottom: 5px solid transparent; 6440 border-left-color: #999999;
4416 border-left: 5px solid black; 6441 border-left-color: rgba(0, 0, 0, 0.25);
4417 } 6442 }
4418 .popover .arrow { 6443 .popover.left .arrow:after {
4419 position: absolute; 6444 content: " ";
4420 width: 0; 6445 right: 1px;
4421 height: 0; 6446 border-right-width: 0;
4422 } 6447 border-left-color: white;
4423 6448 bottom: -10px;
4424 .popover-inner {
4425 padding: 3px;
4426 width: 280px;
4427 overflow: hidden;
4428 background: black;
4429 background: rgba(0, 0, 0, 0.8);
4430 -webkit-border-radius: 6px;
4431 -moz-border-radius: 6px;
4432 border-radius: 6px;
4433 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4434 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4435 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4436 }
4437
4438 .popover-title {
4439 padding: 9px 15px;
4440 line-height: 1;
4441 background-color: #f5f5f5;
4442 border-bottom: 1px solid #eee;
4443 -webkit-border-radius: 3px 3px 0 0;
4444 -moz-border-radius: 3px 3px 0 0;
4445 border-radius: 3px 3px 0 0;
4446 }
4447
4448 .popover-content {
4449 padding: 14px;
4450 background-color: white;
4451 -webkit-border-radius: 0 0 3px 3px;
4452 -moz-border-radius: 0 0 3px 3px;
4453 border-radius: 0 0 3px 3px;
4454 -webkit-background-clip: padding-box;
4455 -moz-background-clip: padding-box;
4456 background-clip: padding-box;
4457 }
4458 .popover-content p, .popover-content ul, .popover-content ol {
4459 margin-bottom: 0;
4460 }
4461
4462 .thumbnails {
4463 margin-left: -20px;
4464 list-style: none;
4465 *zoom: 1;
4466 }
4467 .thumbnails:before, .thumbnails:after {
4468 display: table;
4469 content: "";
4470 }
4471 .thumbnails:after {
4472 clear: both;
4473 }
4474
4475 .row-fluid .thumbnails {
4476 margin-left: 0;
4477 }
4478
4479 .thumbnails > li {
4480 float: left;
4481 margin-bottom: 24px;
4482 margin-left: 20px;
4483 }
4484
4485 .thumbnail {
4486 display: block;
4487 padding: 4px;
4488 line-height: 1;
4489 border: 1px solid #ddd;
4490 -webkit-border-radius: 4px;
4491 -moz-border-radius: 4px;
4492 border-radius: 4px;
4493 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
4494 -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
4495 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
4496 }
4497
4498 a.thumbnail:hover {
4499 border-color: #0088cc;
4500 -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
4501 -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
4502 box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
4503 }
4504
4505 .thumbnail > img {
4506 display: block;
4507 max-width: 100%;
4508 margin-left: auto;
4509 margin-right: auto;
4510 }
4511
4512 .thumbnail .caption {
4513 padding: 9px;
4514 }
4515
4516 .label,
4517 .badge {
4518 font-size: 11.844px;
4519 font-weight: bold;
4520 line-height: 14px;
4521 color: white;
4522 vertical-align: baseline;
4523 white-space: nowrap;
4524 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4525 background-color: #999999;
4526 }
4527
4528 .label {
4529 padding: 1px 4px 2px;
4530 -webkit-border-radius: 3px;
4531 -moz-border-radius: 3px;
4532 border-radius: 3px;
4533 }
4534
4535 .badge {
4536 padding: 1px 9px 2px;
4537 -webkit-border-radius: 9px;
4538 -moz-border-radius: 9px;
4539 border-radius: 9px;
4540 }
4541
4542 a.label:hover, a.badge:hover {
4543 color: white;
4544 text-decoration: none;
4545 cursor: pointer;
4546 }
4547
4548 .label-important,
4549 .badge-important {
4550 background-color: #b94a48;
4551 }
4552
4553 .label-important[href],
4554 .badge-important[href] {
4555 background-color: #953b39;
4556 }
4557
4558 .label-warning,
4559 .badge-warning {
4560 background-color: #f89406;
4561 }
4562
4563 .label-warning[href],
4564 .badge-warning[href] {
4565 background-color: #c67605;
4566 }
4567
4568 .label-success,
4569 .badge-success {
4570 background-color: #468847;
4571 }
4572
4573 .label-success[href],
4574 .badge-success[href] {
4575 background-color: #356635;
4576 }
4577
4578 .label-info,
4579 .badge-info {
4580 background-color: #3a87ad;
4581 }
4582
4583 .label-info[href],
4584 .badge-info[href] {
4585 background-color: #2d6987;
4586 }
4587
4588 .label-inverse,
4589 .badge-inverse {
4590 background-color: #333333;
4591 }
4592
4593 .label-inverse[href],
4594 .badge-inverse[href] {
4595 background-color: #1a1a1a;
4596 }
4597
4598 @-webkit-keyframes progress-bar-stripes {
4599 from {
4600 background-position: 40px 0;
4601 }
4602
4603 to {
4604 background-position: 0 0;
4605 }
4606 }
4607
4608 @-moz-keyframes progress-bar-stripes {
4609 from {
4610 background-position: 40px 0;
4611 }
4612
4613 to {
4614 background-position: 0 0;
4615 }
4616 }
4617
4618 @-ms-keyframes progress-bar-stripes {
4619 from {
4620 background-position: 40px 0;
4621 }
4622
4623 to {
4624 background-position: 0 0;
4625 }
4626 }
4627
4628 @-o-keyframes progress-bar-stripes {
4629 from {
4630 background-position: 0 0;
4631 }
4632
4633 to {
4634 background-position: 40px 0;
4635 }
4636 }
4637
4638 @keyframes progress-bar-stripes {
4639 from {
4640 background-position: 40px 0;
4641 }
4642
4643 to {
4644 background-position: 0 0;
4645 }
4646 }
4647
4648 .progress {
4649 overflow: hidden;
4650 height: 18px;
4651 margin-bottom: 18px;
4652 background-color: #f6f6f6;
4653 background-image: -moz-linear-gradient(top, whitesmoke, #f9f9f9);
4654 background-image: -ms-linear-gradient(top, whitesmoke, #f9f9f9);
4655 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(whitesmoke), to(# f9f9f9));
4656 background-image: -webkit-linear-gradient(top, whitesmoke, #f9f9f9);
4657 background-image: -o-linear-gradient(top, whitesmoke, #f9f9f9);
4658 background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
4659 background-repeat: repeat-x;
4660 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='whitesmoke', endColorstr='#f9f9f9', GradientType=0);
4661 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4662 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4663 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4664 -webkit-border-radius: 4px;
4665 -moz-border-radius: 4px;
4666 border-radius: 4px;
4667 }
4668
4669 .progress .bar {
4670 width: 0%;
4671 height: 18px;
4672 color: white;
4673 font-size: 12px;
4674 text-align: center;
4675 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4676 background-color: #0d90d1;
4677 background-image: -moz-linear-gradient(top, #149bdf, #0480be);
4678 background-image: -ms-linear-gradient(top, #149bdf, #0480be);
4679 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#048 0be));
4680 background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
4681 background-image: -o-linear-gradient(top, #149bdf, #0480be);
4682 background-image: linear-gradient(top, #149bdf, #0480be);
4683 background-repeat: repeat-x;
4684 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', en dColorstr='#0480be', GradientType=0);
4685 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4686 -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4687 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4688 -webkit-box-sizing: border-box;
4689 -moz-box-sizing: border-box;
4690 -ms-box-sizing: border-box;
4691 box-sizing: border-box;
4692 -webkit-transition: width 0.6s ease;
4693 -moz-transition: width 0.6s ease;
4694 -ms-transition: width 0.6s ease;
4695 -o-transition: width 0.6s ease;
4696 transition: width 0.6s ease;
4697 }
4698
4699 .progress-striped .bar, .progress .bar {
4700 background-color: #149bdf;
4701 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4702 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, 25 5, 255, 0.15) 75%, transparent 75%, transparent);
4703 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);
4704 background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
4705 background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, tr ansparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 25 5, 0.15) 75%, transparent 75%, transparent);
4706 background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, trans parent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4707 -webkit-background-size: 40px 40px;
4708 -moz-background-size: 40px 40px;
4709 -o-background-size: 40px 40px;
4710 background-size: 40px 40px;
4711 }
4712
4713 .progress.active .bar {
4714 -webkit-animation: progress-bar-stripes 2s linear infinite;
4715 -moz-animation: progress-bar-stripes 2s linear infinite;
4716 -ms-animation: progress-bar-stripes 2s linear infinite;
4717 -o-animation: progress-bar-stripes 2s linear infinite;
4718 animation: progress-bar-stripes 2s linear infinite;
4719 }
4720
4721 .progress-danger .bar {
4722 background-color: #dd514b;
4723 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
4724 background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
4725 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43 c35));
4726 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
4727 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
4728 background-image: linear-gradient(top, #ee5f5b, #c43c35);
4729 background-repeat: repeat-x;
4730 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', en dColorstr='#c43c35', GradientType=0);
4731 }
4732
4733 .progress-danger.progress-striped .bar, .progress-danger.progress .bar {
4734 background-color: #ee5f5b;
4735 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4736 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, 25 5, 255, 0.15) 75%, transparent 75%, transparent);
4737 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);
4738 background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
4739 background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, tr ansparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 25 5, 0.15) 75%, transparent 75%, transparent);
4740 background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, trans parent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4741 }
4742
4743 .progress-success .bar {
4744 background-color: #5db95d;
4745 background-image: -moz-linear-gradient(top, #62c462, #57a957);
4746 background-image: -ms-linear-gradient(top, #62c462, #57a957);
4747 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a 957));
4748 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
4749 background-image: -o-linear-gradient(top, #62c462, #57a957);
4750 background-image: linear-gradient(top, #62c462, #57a957);
4751 background-repeat: repeat-x;
4752 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', en dColorstr='#57a957', GradientType=0);
4753 }
4754
4755 .progress-success.progress-striped .bar, .progress-success.progress .bar {
4756 background-color: #62c462;
4757 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4758 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, 25 5, 255, 0.15) 75%, transparent 75%, transparent);
4759 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);
4760 background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
4761 background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, tr ansparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 25 5, 0.15) 75%, transparent 75%, transparent);
4762 background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, trans parent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4763 }
4764
4765 .progress-info .bar {
4766 background-color: #4bb1cf;
4767 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
4768 background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
4769 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339 bb9));
4770 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
4771 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
4772 background-image: linear-gradient(top, #5bc0de, #339bb9);
4773 background-repeat: repeat-x;
4774 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', en dColorstr='#339bb9', GradientType=0);
4775 }
4776
4777 .progress-info.progress-striped .bar, .progress-info.progress .bar {
4778 background-color: #5bc0de;
4779 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4780 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, 25 5, 255, 0.15) 75%, transparent 75%, transparent);
4781 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);
4782 background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
4783 background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, tr ansparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 25 5, 0.15) 75%, transparent 75%, transparent);
4784 background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, trans parent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4785 }
4786
4787 .progress-warning .bar {
4788 background-color: #f9a732;
4789 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
4790 background-image: -ms-linear-gradient(top, #fbb450, #f89406);
4791 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89 406));
4792 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
4793 background-image: -o-linear-gradient(top, #fbb450, #f89406);
4794 background-image: linear-gradient(top, #fbb450, #f89406);
4795 background-repeat: repeat-x;
4796 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', en dColorstr='#f89406', GradientType=0);
4797 }
4798
4799 .progress-warning.progress-striped .bar, .progress-warning.progress .bar {
4800 background-color: #fbb450;
4801 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rg ba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transpa rent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 25 5, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4802 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, 25 5, 255, 0.15) 75%, transparent 75%, transparent);
4803 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);
4804 background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, t ransparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 2 55, 0.15) 75%, transparent 75%, transparent);
4805 background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, tr ansparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 25 5, 0.15) 75%, transparent 75%, transparent);
4806 background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, trans parent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4807 }
4808
4809 .accordion {
4810 margin-bottom: 24px;
4811 }
4812
4813 .accordion-group {
4814 margin-bottom: 2px;
4815 border: 1px solid #e5e5e5;
4816 -webkit-border-radius: 4px;
4817 -moz-border-radius: 4px;
4818 border-radius: 4px;
4819 }
4820
4821 .accordion-heading {
4822 border-bottom: 0;
4823 }
4824
4825 .accordion-heading .accordion-toggle {
4826 display: block;
4827 padding: 8px 15px;
4828 }
4829
4830 .accordion-toggle {
4831 cursor: pointer;
4832 }
4833
4834 .accordion-inner {
4835 padding: 9px 15px;
4836 border-top: 1px solid #e5e5e5;
4837 } 6449 }
4838 6450
4839 .carousel { 6451 .carousel {
4840 position: relative; 6452 position: relative;
4841 margin-bottom: 24px;
4842 line-height: 1;
4843 } 6453 }
4844 6454
4845 .carousel-inner { 6455 .carousel-inner {
6456 position: relative;
4846 overflow: hidden; 6457 overflow: hidden;
4847 width: 100%; 6458 width: 100%;
4848 position: relative; 6459 }
4849 } 6460 .carousel-inner > .item {
4850
4851 .carousel .item {
4852 display: none; 6461 display: none;
4853 position: relative; 6462 position: relative;
4854 -webkit-transition: 0.6s ease-in-out left; 6463 -webkit-transition: 0.6s ease-in-out left;
4855 -moz-transition: 0.6s ease-in-out left;
4856 -ms-transition: 0.6s ease-in-out left;
4857 -o-transition: 0.6s ease-in-out left;
4858 transition: 0.6s ease-in-out left; 6464 transition: 0.6s ease-in-out left;
4859 } 6465 }
4860 .carousel .item > img { 6466 .carousel-inner > .item > img,
6467 .carousel-inner > .item > a > img {
4861 display: block; 6468 display: block;
6469 max-width: 100%;
6470 height: auto;
4862 line-height: 1; 6471 line-height: 1;
4863 } 6472 }
4864 .carousel .active, 6473 .carousel-inner > .active,
4865 .carousel .next, 6474 .carousel-inner > .next,
4866 .carousel .prev { 6475 .carousel-inner > .prev {
4867 display: block; 6476 display: block;
4868 } 6477 }
4869 .carousel .active { 6478 .carousel-inner > .active {
4870 left: 0; 6479 left: 0;
4871 } 6480 }
4872 .carousel .next, 6481 .carousel-inner > .next,
4873 .carousel .prev { 6482 .carousel-inner > .prev {
4874 position: absolute; 6483 position: absolute;
4875 top: 0; 6484 top: 0;
4876 width: 100%; 6485 width: 100%;
4877 } 6486 }
4878 .carousel .next { 6487 .carousel-inner > .next {
4879 left: 100%; 6488 left: 100%;
4880 } 6489 }
4881 .carousel .prev { 6490 .carousel-inner > .prev {
4882 left: -100%; 6491 left: -100%;
4883 } 6492 }
4884 .carousel .next.left, 6493 .carousel-inner > .next.left,
4885 .carousel .prev.right { 6494 .carousel-inner > .prev.right {
4886 left: 0; 6495 left: 0;
4887 } 6496 }
4888 .carousel .active.left { 6497 .carousel-inner > .active.left {
4889 left: -100%; 6498 left: -100%;
4890 } 6499 }
4891 .carousel .active.right { 6500 .carousel-inner > .active.right {
4892 left: 100%; 6501 left: 100%;
4893 } 6502 }
4894 6503
4895 .carousel-control { 6504 .carousel-control {
4896 position: absolute; 6505 position: absolute;
4897 top: 40%; 6506 top: 0;
4898 left: 15px; 6507 left: 0;
4899 width: 40px; 6508 bottom: 0;
4900 height: 40px; 6509 width: 15%;
4901 margin-top: -20px; 6510 opacity: 0.5;
4902 font-size: 60px; 6511 filter: alpha(opacity=50);
4903 font-weight: 100; 6512 font-size: 20px;
4904 line-height: 30px;
4905 color: white; 6513 color: white;
4906 text-align: center; 6514 text-align: center;
4907 background: #222222; 6515 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
4908 border: 3px solid white; 6516 }
4909 -webkit-border-radius: 23px; 6517 .carousel-control.left {
4910 -moz-border-radius: 23px; 6518 background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0 , 0.5)), to(rgba(0, 0, 0, 0.0001)));
4911 border-radius: 23px; 6519 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
4912 opacity: 0.5; 6520 background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
4913 filter: alpha(opacity=50); 6521 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
6522 background-repeat: repeat-x;
6523 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
4914 } 6524 }
4915 .carousel-control.right { 6525 .carousel-control.right {
4916 left: auto; 6526 left: auto;
4917 right: 15px; 6527 right: 0;
4918 } 6528 background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0 , 0.0001)), to(rgba(0, 0, 0, 0.5)));
4919 .carousel-control:hover { 6529 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.000 1) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
6530 background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
6531 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
6532 background-repeat: repeat-x;
6533 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
6534 }
6535 .carousel-control:hover, .carousel-control:focus {
4920 color: white; 6536 color: white;
4921 text-decoration: none; 6537 text-decoration: none;
4922 opacity: 0.9; 6538 opacity: 0.9;
4923 filter: alpha(opacity=90); 6539 filter: alpha(opacity=90);
4924 } 6540 }
6541 .carousel-control .icon-prev,
6542 .carousel-control .icon-next,
6543 .carousel-control .glyphicon-chevron-left,
6544 .carousel-control .glyphicon-chevron-right {
6545 position: absolute;
6546 top: 50%;
6547 z-index: 5;
6548 display: inline-block;
6549 }
6550 .carousel-control .icon-prev,
6551 .carousel-control .glyphicon-chevron-left {
6552 left: 50%;
6553 }
6554 .carousel-control .icon-next,
6555 .carousel-control .glyphicon-chevron-right {
6556 right: 50%;
6557 }
6558 .carousel-control .icon-prev,
6559 .carousel-control .icon-next {
6560 width: 20px;
6561 height: 20px;
6562 margin-top: -10px;
6563 margin-left: -10px;
6564 font-family: serif;
6565 }
6566 .carousel-control .icon-prev:before {
6567 content: '\2039';
6568 }
6569 .carousel-control .icon-next:before {
6570 content: '\203a';
6571 }
6572
6573 .carousel-indicators {
6574 position: absolute;
6575 bottom: 10px;
6576 left: 50%;
6577 z-index: 15;
6578 width: 60%;
6579 margin-left: -30%;
6580 padding-left: 0;
6581 list-style: none;
6582 text-align: center;
6583 }
6584 .carousel-indicators li {
6585 display: inline-block;
6586 width: 10px;
6587 height: 10px;
6588 margin: 1px;
6589 text-indent: -999px;
6590 border: 1px solid white;
6591 border-radius: 10px;
6592 cursor: pointer;
6593 background-color: #000 \9;
6594 background-color: rgba(0, 0, 0, 0);
6595 }
6596 .carousel-indicators .active {
6597 margin: 0;
6598 width: 12px;
6599 height: 12px;
6600 background-color: white;
6601 }
4925 6602
4926 .carousel-caption { 6603 .carousel-caption {
4927 position: absolute; 6604 position: absolute;
4928 left: 0; 6605 left: 15%;
4929 right: 0; 6606 right: 15%;
4930 bottom: 0; 6607 bottom: 20px;
4931 padding: 10px 15px 5px; 6608 z-index: 10;
4932 background: #333333; 6609 padding-top: 20px;
4933 background: rgba(0, 0, 0, 0.75); 6610 padding-bottom: 20px;
4934 }
4935
4936 .carousel-caption h4,
4937 .carousel-caption p {
4938 color: white; 6611 color: white;
4939 } 6612 text-align: center;
4940 6613 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
4941 .hero-unit { 6614 }
4942 padding: 60px; 6615 .carousel-caption .btn, .carousel-caption .get-started, .carousel-caption .learn -more a, .learn-more .carousel-caption a {
4943 margin-bottom: 30px; 6616 text-shadow: none;
4944 background-color: #eeeeee; 6617 }
4945 -webkit-border-radius: 6px; 6618
4946 -moz-border-radius: 6px; 6619 @media screen and (min-width: 768px) {
4947 border-radius: 6px; 6620 .carousel-control .glyphicons-chevron-left,
4948 } 6621 .carousel-control .glyphicons-chevron-right,
4949 .hero-unit h1 { 6622 .carousel-control .icon-prev,
4950 margin-bottom: 0; 6623 .carousel-control .icon-next {
4951 font-size: 60px; 6624 width: 30px;
4952 line-height: 1; 6625 height: 30px;
4953 color: inherit; 6626 margin-top: -15px;
4954 letter-spacing: -1px; 6627 margin-left: -15px;
4955 } 6628 font-size: 30px;
4956 .hero-unit p { 6629 }
4957 font-size: 18px; 6630
4958 font-weight: 200; 6631 .carousel-caption {
4959 line-height: 36px; 6632 left: 20%;
4960 color: inherit; 6633 right: 20%;
6634 padding-bottom: 30px;
6635 }
6636
6637 .carousel-indicators {
6638 bottom: 20px;
6639 }
6640 }
6641 .clearfix:before, .clearfix:after {
6642 content: " ";
6643 /* 1 */
6644 display: table;
6645 /* 2 */
6646 }
6647 .clearfix:after {
6648 clear: both;
6649 }
6650
6651 .center-block {
6652 display: block;
6653 margin-left: auto;
6654 margin-right: auto;
4961 } 6655 }
4962 6656
4963 .pull-right { 6657 .pull-right {
4964 float: right; 6658 float: right !important;
4965 } 6659 }
4966 6660
4967 .pull-left { 6661 .pull-left {
4968 float: left; 6662 float: left !important;
4969 } 6663 }
4970 6664
4971 .hide { 6665 .hide {
4972 display: none; 6666 display: none !important;
4973 } 6667 }
4974 6668
4975 .show { 6669 .show {
4976 display: block; 6670 display: block !important;
4977 } 6671 }
4978 6672
4979 .invisible { 6673 .invisible {
4980 visibility: hidden; 6674 visibility: hidden;
4981 } 6675 }
4982 6676
6677 .text-hide {
6678 font: 0/0 a;
6679 color: transparent;
6680 text-shadow: none;
6681 background-color: transparent;
6682 border: 0;
6683 }
6684
6685 .hidden {
6686 display: none !important;
6687 visibility: hidden !important;
6688 }
6689
6690 .affix {
6691 position: fixed;
6692 }
6693
6694 @-ms-viewport {
6695 width: device-width;
6696 }
6697
6698 .visible-xs,
6699 tr.visible-xs,
6700 th.visible-xs,
6701 td.visible-xs {
6702 display: none !important;
6703 }
6704
6705 @media (max-width: 767px) {
6706 .visible-xs {
6707 display: block !important;
6708 }
6709
6710 tr.visible-xs {
6711 display: table-row !important;
6712 }
6713
6714 th.visible-xs,
6715 td.visible-xs {
6716 display: table-cell !important;
6717 }
6718 }
6719 @media (min-width: 768px) and (max-width: 991px) {
6720 .visible-xs.visible-sm {
6721 display: block !important;
6722 }
6723
6724 tr.visible-xs.visible-sm {
6725 display: table-row !important;
6726 }
6727
6728 th.visible-xs.visible-sm,
6729 td.visible-xs.visible-sm {
6730 display: table-cell !important;
6731 }
6732 }
6733 @media (min-width: 992px) and (max-width: 1199px) {
6734 .visible-xs.visible-md {
6735 display: block !important;
6736 }
6737
6738 tr.visible-xs.visible-md {
6739 display: table-row !important;
6740 }
6741
6742 th.visible-xs.visible-md,
6743 td.visible-xs.visible-md {
6744 display: table-cell !important;
6745 }
6746 }
6747 @media (min-width: 1200px) {
6748 .visible-xs.visible-lg {
6749 display: block !important;
6750 }
6751
6752 tr.visible-xs.visible-lg {
6753 display: table-row !important;
6754 }
6755
6756 th.visible-xs.visible-lg,
6757 td.visible-xs.visible-lg {
6758 display: table-cell !important;
6759 }
6760 }
6761 .visible-sm,
6762 tr.visible-sm,
6763 th.visible-sm,
6764 td.visible-sm {
6765 display: none !important;
6766 }
6767
6768 @media (max-width: 767px) {
6769 .visible-sm.visible-xs {
6770 display: block !important;
6771 }
6772
6773 tr.visible-sm.visible-xs {
6774 display: table-row !important;
6775 }
6776
6777 th.visible-sm.visible-xs,
6778 td.visible-sm.visible-xs {
6779 display: table-cell !important;
6780 }
6781 }
6782 @media (min-width: 768px) and (max-width: 991px) {
6783 .visible-sm {
6784 display: block !important;
6785 }
6786
6787 tr.visible-sm {
6788 display: table-row !important;
6789 }
6790
6791 th.visible-sm,
6792 td.visible-sm {
6793 display: table-cell !important;
6794 }
6795 }
6796 @media (min-width: 992px) and (max-width: 1199px) {
6797 .visible-sm.visible-md {
6798 display: block !important;
6799 }
6800
6801 tr.visible-sm.visible-md {
6802 display: table-row !important;
6803 }
6804
6805 th.visible-sm.visible-md,
6806 td.visible-sm.visible-md {
6807 display: table-cell !important;
6808 }
6809 }
6810 @media (min-width: 1200px) {
6811 .visible-sm.visible-lg {
6812 display: block !important;
6813 }
6814
6815 tr.visible-sm.visible-lg {
6816 display: table-row !important;
6817 }
6818
6819 th.visible-sm.visible-lg,
6820 td.visible-sm.visible-lg {
6821 display: table-cell !important;
6822 }
6823 }
6824 .visible-md,
6825 tr.visible-md,
6826 th.visible-md,
6827 td.visible-md {
6828 display: none !important;
6829 }
6830
6831 @media (max-width: 767px) {
6832 .visible-md.visible-xs {
6833 display: block !important;
6834 }
6835
6836 tr.visible-md.visible-xs {
6837 display: table-row !important;
6838 }
6839
6840 th.visible-md.visible-xs,
6841 td.visible-md.visible-xs {
6842 display: table-cell !important;
6843 }
6844 }
6845 @media (min-width: 768px) and (max-width: 991px) {
6846 .visible-md.visible-sm {
6847 display: block !important;
6848 }
6849
6850 tr.visible-md.visible-sm {
6851 display: table-row !important;
6852 }
6853
6854 th.visible-md.visible-sm,
6855 td.visible-md.visible-sm {
6856 display: table-cell !important;
6857 }
6858 }
6859 @media (min-width: 992px) and (max-width: 1199px) {
6860 .visible-md {
6861 display: block !important;
6862 }
6863
6864 tr.visible-md {
6865 display: table-row !important;
6866 }
6867
6868 th.visible-md,
6869 td.visible-md {
6870 display: table-cell !important;
6871 }
6872 }
6873 @media (min-width: 1200px) {
6874 .visible-md.visible-lg {
6875 display: block !important;
6876 }
6877
6878 tr.visible-md.visible-lg {
6879 display: table-row !important;
6880 }
6881
6882 th.visible-md.visible-lg,
6883 td.visible-md.visible-lg {
6884 display: table-cell !important;
6885 }
6886 }
6887 .visible-lg,
6888 tr.visible-lg,
6889 th.visible-lg,
6890 td.visible-lg {
6891 display: none !important;
6892 }
6893
6894 @media (max-width: 767px) {
6895 .visible-lg.visible-xs {
6896 display: block !important;
6897 }
6898
6899 tr.visible-lg.visible-xs {
6900 display: table-row !important;
6901 }
6902
6903 th.visible-lg.visible-xs,
6904 td.visible-lg.visible-xs {
6905 display: table-cell !important;
6906 }
6907 }
6908 @media (min-width: 768px) and (max-width: 991px) {
6909 .visible-lg.visible-sm {
6910 display: block !important;
6911 }
6912
6913 tr.visible-lg.visible-sm {
6914 display: table-row !important;
6915 }
6916
6917 th.visible-lg.visible-sm,
6918 td.visible-lg.visible-sm {
6919 display: table-cell !important;
6920 }
6921 }
6922 @media (min-width: 992px) and (max-width: 1199px) {
6923 .visible-lg.visible-md {
6924 display: block !important;
6925 }
6926
6927 tr.visible-lg.visible-md {
6928 display: table-row !important;
6929 }
6930
6931 th.visible-lg.visible-md,
6932 td.visible-lg.visible-md {
6933 display: table-cell !important;
6934 }
6935 }
6936 @media (min-width: 1200px) {
6937 .visible-lg {
6938 display: block !important;
6939 }
6940
6941 tr.visible-lg {
6942 display: table-row !important;
6943 }
6944
6945 th.visible-lg,
6946 td.visible-lg {
6947 display: table-cell !important;
6948 }
6949 }
6950 .hidden-xs {
6951 display: block !important;
6952 }
6953
6954 tr.hidden-xs {
6955 display: table-row !important;
6956 }
6957
6958 th.hidden-xs,
6959 td.hidden-xs {
6960 display: table-cell !important;
6961 }
6962
6963 @media (max-width: 767px) {
6964 .hidden-xs,
6965 tr.hidden-xs,
6966 th.hidden-xs,
6967 td.hidden-xs {
6968 display: none !important;
6969 }
6970 }
6971 @media (min-width: 768px) and (max-width: 991px) {
6972 .hidden-xs.hidden-sm,
6973 tr.hidden-xs.hidden-sm,
6974 th.hidden-xs.hidden-sm,
6975 td.hidden-xs.hidden-sm {
6976 display: none !important;
6977 }
6978 }
6979 @media (min-width: 992px) and (max-width: 1199px) {
6980 .hidden-xs.hidden-md,
6981 tr.hidden-xs.hidden-md,
6982 th.hidden-xs.hidden-md,
6983 td.hidden-xs.hidden-md {
6984 display: none !important;
6985 }
6986 }
6987 @media (min-width: 1200px) {
6988 .hidden-xs.hidden-lg,
6989 tr.hidden-xs.hidden-lg,
6990 th.hidden-xs.hidden-lg,
6991 td.hidden-xs.hidden-lg {
6992 display: none !important;
6993 }
6994 }
6995 .hidden-sm {
6996 display: block !important;
6997 }
6998
6999 tr.hidden-sm {
7000 display: table-row !important;
7001 }
7002
7003 th.hidden-sm,
7004 td.hidden-sm {
7005 display: table-cell !important;
7006 }
7007
7008 @media (max-width: 767px) {
7009 .hidden-sm.hidden-xs,
7010 tr.hidden-sm.hidden-xs,
7011 th.hidden-sm.hidden-xs,
7012 td.hidden-sm.hidden-xs {
7013 display: none !important;
7014 }
7015 }
7016 @media (min-width: 768px) and (max-width: 991px) {
7017 .hidden-sm,
7018 tr.hidden-sm,
7019 th.hidden-sm,
7020 td.hidden-sm {
7021 display: none !important;
7022 }
7023 }
7024 @media (min-width: 992px) and (max-width: 1199px) {
7025 .hidden-sm.hidden-md,
7026 tr.hidden-sm.hidden-md,
7027 th.hidden-sm.hidden-md,
7028 td.hidden-sm.hidden-md {
7029 display: none !important;
7030 }
7031 }
7032 @media (min-width: 1200px) {
7033 .hidden-sm.hidden-lg,
7034 tr.hidden-sm.hidden-lg,
7035 th.hidden-sm.hidden-lg,
7036 td.hidden-sm.hidden-lg {
7037 display: none !important;
7038 }
7039 }
7040 .hidden-md {
7041 display: block !important;
7042 }
7043
7044 tr.hidden-md {
7045 display: table-row !important;
7046 }
7047
7048 th.hidden-md,
7049 td.hidden-md {
7050 display: table-cell !important;
7051 }
7052
7053 @media (max-width: 767px) {
7054 .hidden-md.hidden-xs,
7055 tr.hidden-md.hidden-xs,
7056 th.hidden-md.hidden-xs,
7057 td.hidden-md.hidden-xs {
7058 display: none !important;
7059 }
7060 }
7061 @media (min-width: 768px) and (max-width: 991px) {
7062 .hidden-md.hidden-sm,
7063 tr.hidden-md.hidden-sm,
7064 th.hidden-md.hidden-sm,
7065 td.hidden-md.hidden-sm {
7066 display: none !important;
7067 }
7068 }
7069 @media (min-width: 992px) and (max-width: 1199px) {
7070 .hidden-md,
7071 tr.hidden-md,
7072 th.hidden-md,
7073 td.hidden-md {
7074 display: none !important;
7075 }
7076 }
7077 @media (min-width: 1200px) {
7078 .hidden-md.hidden-lg,
7079 tr.hidden-md.hidden-lg,
7080 th.hidden-md.hidden-lg,
7081 td.hidden-md.hidden-lg {
7082 display: none !important;
7083 }
7084 }
7085 .hidden-lg {
7086 display: block !important;
7087 }
7088
7089 tr.hidden-lg {
7090 display: table-row !important;
7091 }
7092
7093 th.hidden-lg,
7094 td.hidden-lg {
7095 display: table-cell !important;
7096 }
7097
7098 @media (max-width: 767px) {
7099 .hidden-lg.hidden-xs,
7100 tr.hidden-lg.hidden-xs,
7101 th.hidden-lg.hidden-xs,
7102 td.hidden-lg.hidden-xs {
7103 display: none !important;
7104 }
7105 }
7106 @media (min-width: 768px) and (max-width: 991px) {
7107 .hidden-lg.hidden-sm,
7108 tr.hidden-lg.hidden-sm,
7109 th.hidden-lg.hidden-sm,
7110 td.hidden-lg.hidden-sm {
7111 display: none !important;
7112 }
7113 }
7114 @media (min-width: 992px) and (max-width: 1199px) {
7115 .hidden-lg.hidden-md,
7116 tr.hidden-lg.hidden-md,
7117 th.hidden-lg.hidden-md,
7118 td.hidden-lg.hidden-md {
7119 display: none !important;
7120 }
7121 }
7122 @media (min-width: 1200px) {
7123 .hidden-lg,
7124 tr.hidden-lg,
7125 th.hidden-lg,
7126 td.hidden-lg {
7127 display: none !important;
7128 }
7129 }
7130 .visible-print,
7131 tr.visible-print,
7132 th.visible-print,
7133 td.visible-print {
7134 display: none !important;
7135 }
7136
7137 @media print {
7138 .visible-print {
7139 display: block !important;
7140 }
7141
7142 tr.visible-print {
7143 display: table-row !important;
7144 }
7145
7146 th.visible-print,
7147 td.visible-print {
7148 display: table-cell !important;
7149 }
7150
7151 .hidden-print,
7152 tr.hidden-print,
7153 th.hidden-print,
7154 td.hidden-print {
7155 display: none !important;
7156 }
7157 }
7158 .navbar {
7159 border: none;
7160 -webkit-box-shadow: 0 2px 2px rgba(50, 50, 50, 0.15);
7161 box-shadow: 0 2px 2px rgba(50, 50, 50, 0.15);
7162 }
7163
7164 .navbar-brand {
7165 font-family: "Montserrat", sans-serif;
7166 }
7167
7168 .navbar-nav > li > a {
7169 padding-top: 25px;
7170 font-family: "Montserrat", sans-serif;
7171 font-size: 12px;
7172 text-transform: uppercase;
7173 }
7174
4983 body { 7175 body {
4984 padding-top: 60px; 7176 padding-top: 65px;
7177 -webkit-font-smoothing: antialiased;
4985 } 7178 }
4986 7179
4987 code { 7180 code {
4988 white-space: nowrap; 7181 white-space: nowrap;
4989 } 7182 }
4990 7183
4991 pre code { 7184 pre code {
4992 white-space: inherit; 7185 white-space: inherit;
4993 } 7186 }
4994 7187
(...skipping 10 matching lines...) Expand all
5005 position: relative; 7198 position: relative;
5006 } 7199 }
5007 article h2, article h3, article .toc:before, article h4 { 7200 article h2, article h3, article .toc:before, article h4 {
5008 padding-top: 40px; 7201 padding-top: 40px;
5009 margin-top: -40px; 7202 margin-top: -40px;
5010 } 7203 }
5011 article h2:hover a.permalink, article h3:hover a.permalink, article .toc:hover:b efore a.permalink, article h4:hover a.permalink { 7204 article h2:hover a.permalink, article h3:hover a.permalink, article .toc:hover:b efore a.permalink, article h4:hover a.permalink {
5012 display: inline; 7205 display: inline;
5013 } 7206 }
5014 7207
5015 .navbar-search {
5016 margin-top: 4px;
5017 }
5018 .navbar-search .search-query {
5019 border-radius: 4px;
5020 -moz-border-radius: 4px;
5021 -webkit-border-radius: 4px;
5022 height: 20px;
5023 line-height: inherit;
5024 }
5025
5026 .has-permalink:hover > a.permalink { 7208 .has-permalink:hover > a.permalink {
5027 display: inline; 7209 display: inline;
5028 } 7210 }
5029 7211
5030 .nav-tabs > li > a, .admin > ul > li > a {
5031 padding-top: 4px;
5032 padding-bottom: 4px;
5033 }
5034
5035 .nav, .admin > ul {
5036 margin-bottom: 8px;
5037 }
5038
5039 .package-sidebar { 7212 .package-sidebar {
5040 padding-top: 50px; 7213 padding-top: 50px;
5041 } 7214 }
5042 7215
5043 tt {
5044 font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
5045 padding: 0 3px;
5046 }
5047
5048 footer { 7216 footer {
5049 font-size: 13px; 7217 font-size: 13px;
5050 text-align: center; 7218 text-align: center;
5051 } 7219 }
5052 footer .login, footer .logout { 7220 footer .login, footer .logout {
5053 display: inline-block; 7221 display: inline-block;
5054 float: right; 7222 float: right;
5055 color: #d0d0d0; 7223 color: #d0d0d0;
5056 } 7224 }
5057 7225
5058 form#private-key textarea {
5059 width: 550px;
5060 height: 420px;
5061 font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
5062 }
5063
5064 .brand + .brand {
5065 padding-left: 10px;
5066 }
5067
5068 a.brand:hover {
5069 color: white;
5070 }
5071
5072 .dart-logo { 7226 .dart-logo {
5073 text-indent: -119988px; 7227 font: 0/0 a;
5074 overflow: hidden; 7228 color: transparent;
5075 text-align: left; 7229 text-shadow: none;
5076 background-image: url(/static/img/dart.png); 7230 background-color: transparent;
7231 border: 0;
7232 background-image: url('/app/static/img/dart.png?1360362939');
5077 background-repeat: no-repeat; 7233 background-repeat: no-repeat;
5078 background-position: 0 0; 7234 background-position: 0 0;
5079 width: 21px; 7235 width: 21px;
7236 height: 21px;
5080 } 7237 }
5081 7238
5082 h1 .version { 7239 h1 .version {
5083 font-size: 20px; 7240 font-size: 20px;
5084 } 7241 }
5085 7242
5086 td table { 7243 td table {
5087 margin: -4px; 7244 margin: -4px;
5088 } 7245 }
5089 td table td, td table th { 7246 td table td, td table th {
5090 border: none; 7247 border: none;
5091 padding: 4px; 7248 padding: 4px;
5092 } 7249 }
5093 7250
5094 td.archive, th.archive { 7251 td.archive, th.archive {
5095 text-align: center; 7252 text-align: center;
5096 vertical-align: middle; 7253 vertical-align: middle;
5097 } 7254 }
5098 7255
5099 .icon-hand-right, 7256 .icon-hand-right,
5100 .icon-envelope { 7257 .icon-envelope {
5101 margin: 3px 0 0 2px; 7258 margin: 3px 0 0 2px;
5102 } 7259 }
5103 7260
5104 .author { 7261 .author {
5105 white-space: nowrap; 7262 white-space: nowrap;
5106 } 7263 }
5107 7264
5108 .learn-more a { 7265 .learn-more a {
5109 color: #0088cc; 7266 color: #428bca;
5110 float: right; 7267 float: right;
5111 position: absolute; 7268 position: absolute;
5112 width: 270px; 7269 width: 270px;
5113 right: -320px; 7270 right: -320px;
5114 display: inline-block; 7271 display: inline-block;
5115 } 7272 }
5116 7273
5117 ol.toc { 7274 ol.toc {
5118 position: absolute; 7275 position: absolute;
5119 right: -320px; 7276 right: -320px;
5120 width: 230px; 7277 width: 230px;
5121 float: right; 7278 float: right;
5122 padding: 10px 20px 20px 40px; 7279 padding: 10px 20px 20px 40px;
5123 } 7280 }
5124 ol.toc li { 7281 ol.toc li {
5125 font-size: 13px; 7282 font-size: 13px;
5126 line-height: 21px; 7283 line-height: 21px;
5127 } 7284 }
5128 7285
5129 .toc:before { 7286 .toc:before {
5130 content: "Contents"; 7287 content: "Contents";
5131 } 7288 }
5132 7289
5133 [class^="icon-"], [class*=" icon-"] { 7290 [class^="icon-"], [class*=" icon-"] {
5134 text-indent: -119988px; 7291 font: 0/0 a;
5135 overflow: hidden; 7292 color: transparent;
5136 text-align: left; 7293 text-shadow: none;
7294 background-color: transparent;
7295 border: 0;
5137 } 7296 }
5138 7297
5139 ul ul { 7298 ul ul {
5140 list-style-type: circle; 7299 list-style-type: circle;
5141 } 7300 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698