Guest User

Untitled

a guest
Oct 4th, 2018
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 268.57 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.  
  6. <meta charset="utf-8" />
  7. <meta http-equiv="X-UA-Compatible" content="chrome=1" />
  8.  
  9. <meta name="apple-mobile-web-app-capable" content="yes" />
  10. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  11.  
  12. <title>hrSpacy slides</title>
  13.  
  14. <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
  15. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
  16.  
  17. <!-- General and theme style sheets -->
  18. <link rel="stylesheet" href="reveal.js/css/reveal.css">
  19. <link rel="stylesheet" href="reveal.js/css/theme/simple.css" id="theme">
  20.  
  21. <!-- If the query includes 'print-pdf', include the PDF print sheet -->
  22. <script>
  23. if( window.location.search.match( /print-pdf/gi ) ) {
  24. var link = document.createElement( 'link' );
  25. link.rel = 'stylesheet';
  26. link.type = 'text/css';
  27. link.href = 'reveal.js/css/print/pdf.css';
  28. document.getElementsByTagName( 'head' )[0].appendChild( link );
  29. }
  30.  
  31. </script>
  32.  
  33. <!--[if lt IE 9]>
  34. <script src="reveal.js/lib/js/html5shiv.js"></script>
  35. <![endif]-->
  36.  
  37. <!-- Loading the mathjax macro -->
  38. <!-- Load mathjax -->
  39. <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML"></script>
  40. <!-- MathJax configuration -->
  41. <script type="text/x-mathjax-config">
  42. MathJax.Hub.Config({
  43. tex2jax: {
  44. inlineMath: [ ['$','$'], ["\\(","\\)"] ],
  45. displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
  46. processEscapes: true,
  47. processEnvironments: true
  48. },
  49. // Center justify equations in code and markdown cells. Elsewhere
  50. // we use CSS to left justify single line equations in code cells.
  51. displayAlign: 'center',
  52. "HTML-CSS": {
  53. styles: {'.MathJax_Display': {"margin": 0}},
  54. linebreaks: { automatic: true }
  55. }
  56. });
  57. </script>
  58. <!-- End of mathjax configuration -->
  59.  
  60. <!-- Get Font-awesome from cdn -->
  61. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.css">
  62.  
  63. <style type="text/css">
  64. /*!
  65. *
  66. * Twitter Bootstrap
  67. *
  68. */
  69. /*!
  70. * Bootstrap v3.3.7 (http://getbootstrap.com)
  71. * Copyright 2011-2016 Twitter, Inc.
  72. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  73. */
  74. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  75. html {
  76. font-family: sans-serif;
  77. -ms-text-size-adjust: 100%;
  78. -webkit-text-size-adjust: 100%;
  79. }
  80. body {
  81. margin: 0;
  82. }
  83. article,
  84. aside,
  85. details,
  86. figcaption,
  87. figure,
  88. footer,
  89. header,
  90. hgroup,
  91. main,
  92. menu,
  93. nav,
  94. section,
  95. summary {
  96. display: block;
  97. }
  98. audio,
  99. canvas,
  100. progress,
  101. video {
  102. display: inline-block;
  103. vertical-align: baseline;
  104. }
  105. audio:not([controls]) {
  106. display: none;
  107. height: 0;
  108. }
  109. [hidden],
  110. template {
  111. display: none;
  112. }
  113. a {
  114. background-color: transparent;
  115. }
  116. a:active,
  117. a:hover {
  118. outline: 0;
  119. }
  120. abbr[title] {
  121. border-bottom: 1px dotted;
  122. }
  123. b,
  124. strong {
  125. font-weight: bold;
  126. }
  127. dfn {
  128. font-style: italic;
  129. }
  130. h1 {
  131. font-size: 2em;
  132. margin: 0.67em 0;
  133. }
  134. mark {
  135. background: #ff0;
  136. color: #000;
  137. }
  138. small {
  139. font-size: 80%;
  140. }
  141. sub,
  142. sup {
  143. font-size: 75%;
  144. line-height: 0;
  145. position: relative;
  146. vertical-align: baseline;
  147. }
  148. sup {
  149. top: -0.5em;
  150. }
  151. sub {
  152. bottom: -0.25em;
  153. }
  154. img {
  155. border: 0;
  156. }
  157. svg:not(:root) {
  158. overflow: hidden;
  159. }
  160. figure {
  161. margin: 1em 40px;
  162. }
  163. hr {
  164. box-sizing: content-box;
  165. height: 0;
  166. }
  167. pre {
  168. overflow: auto;
  169. }
  170. code,
  171. kbd,
  172. pre,
  173. samp {
  174. font-family: monospace, monospace;
  175. font-size: 1em;
  176. }
  177. button,
  178. input,
  179. optgroup,
  180. select,
  181. textarea {
  182. color: inherit;
  183. font: inherit;
  184. margin: 0;
  185. }
  186. button {
  187. overflow: visible;
  188. }
  189. button,
  190. select {
  191. text-transform: none;
  192. }
  193. button,
  194. html input[type="button"],
  195. input[type="reset"],
  196. input[type="submit"] {
  197. -webkit-appearance: button;
  198. cursor: pointer;
  199. }
  200. button[disabled],
  201. html input[disabled] {
  202. cursor: default;
  203. }
  204. button::-moz-focus-inner,
  205. input::-moz-focus-inner {
  206. border: 0;
  207. padding: 0;
  208. }
  209. input {
  210. line-height: normal;
  211. }
  212. input[type="checkbox"],
  213. input[type="radio"] {
  214. box-sizing: border-box;
  215. padding: 0;
  216. }
  217. input[type="number"]::-webkit-inner-spin-button,
  218. input[type="number"]::-webkit-outer-spin-button {
  219. height: auto;
  220. }
  221. input[type="search"] {
  222. -webkit-appearance: textfield;
  223. box-sizing: content-box;
  224. }
  225. input[type="search"]::-webkit-search-cancel-button,
  226. input[type="search"]::-webkit-search-decoration {
  227. -webkit-appearance: none;
  228. }
  229. fieldset {
  230. border: 1px solid #c0c0c0;
  231. margin: 0 2px;
  232. padding: 0.35em 0.625em 0.75em;
  233. }
  234. legend {
  235. border: 0;
  236. padding: 0;
  237. }
  238. textarea {
  239. overflow: auto;
  240. }
  241. optgroup {
  242. font-weight: bold;
  243. }
  244. table {
  245. border-collapse: collapse;
  246. border-spacing: 0;
  247. }
  248. td,
  249. th {
  250. padding: 0;
  251. }
  252. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  253. @media print {
  254. *,
  255. *:before,
  256. *:after {
  257. background: transparent !important;
  258. color: #000 !important;
  259. box-shadow: none !important;
  260. text-shadow: none !important;
  261. }
  262. a,
  263. a:visited {
  264. text-decoration: underline;
  265. }
  266. a[href]:after {
  267. content: " (" attr(href) ")";
  268. }
  269. abbr[title]:after {
  270. content: " (" attr(title) ")";
  271. }
  272. a[href^="#"]:after,
  273. a[href^="javascript:"]:after {
  274. content: "";
  275. }
  276. pre,
  277. blockquote {
  278. border: 1px solid #999;
  279. page-break-inside: avoid;
  280. }
  281. thead {
  282. display: table-header-group;
  283. }
  284. tr,
  285. img {
  286. page-break-inside: avoid;
  287. }
  288. img {
  289. max-width: 100% !important;
  290. }
  291. p,
  292. h2,
  293. h3 {
  294. orphans: 3;
  295. widows: 3;
  296. }
  297. h2,
  298. h3 {
  299. page-break-after: avoid;
  300. }
  301. .navbar {
  302. display: none;
  303. }
  304. .btn > .caret,
  305. .dropup > .btn > .caret {
  306. border-top-color: #000 !important;
  307. }
  308. .label {
  309. border: 1px solid #000;
  310. }
  311. .table {
  312. border-collapse: collapse !important;
  313. }
  314. .table td,
  315. .table th {
  316. background-color: #fff !important;
  317. }
  318. .table-bordered th,
  319. .table-bordered td {
  320. border: 1px solid #ddd !important;
  321. }
  322. }
  323. @font-face {
  324. font-family: 'Glyphicons Halflings';
  325. src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');
  326. src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  327. }
  328. .glyphicon {
  329. position: relative;
  330. top: 1px;
  331. display: inline-block;
  332. font-family: 'Glyphicons Halflings';
  333. font-style: normal;
  334. font-weight: normal;
  335. line-height: 1;
  336. -webkit-font-smoothing: antialiased;
  337. -moz-osx-font-smoothing: grayscale;
  338. }
  339. .glyphicon-asterisk:before {
  340. content: "\002a";
  341. }
  342. .glyphicon-plus:before {
  343. content: "\002b";
  344. }
  345. .glyphicon-euro:before,
  346. .glyphicon-eur:before {
  347. content: "\20ac";
  348. }
  349. .glyphicon-minus:before {
  350. content: "\2212";
  351. }
  352. .glyphicon-cloud:before {
  353. content: "\2601";
  354. }
  355. .glyphicon-envelope:before {
  356. content: "\2709";
  357. }
  358. .glyphicon-pencil:before {
  359. content: "\270f";
  360. }
  361. .glyphicon-glass:before {
  362. content: "\e001";
  363. }
  364. .glyphicon-music:before {
  365. content: "\e002";
  366. }
  367. .glyphicon-search:before {
  368. content: "\e003";
  369. }
  370. .glyphicon-heart:before {
  371. content: "\e005";
  372. }
  373. .glyphicon-star:before {
  374. content: "\e006";
  375. }
  376. .glyphicon-star-empty:before {
  377. content: "\e007";
  378. }
  379. .glyphicon-user:before {
  380. content: "\e008";
  381. }
  382. .glyphicon-film:before {
  383. content: "\e009";
  384. }
  385. .glyphicon-th-large:before {
  386. content: "\e010";
  387. }
  388. .glyphicon-th:before {
  389. content: "\e011";
  390. }
  391. .glyphicon-th-list:before {
  392. content: "\e012";
  393. }
  394. .glyphicon-ok:before {
  395. content: "\e013";
  396. }
  397. .glyphicon-remove:before {
  398. content: "\e014";
  399. }
  400. .glyphicon-zoom-in:before {
  401. content: "\e015";
  402. }
  403. .glyphicon-zoom-out:before {
  404. content: "\e016";
  405. }
  406. .glyphicon-off:before {
  407. content: "\e017";
  408. }
  409. .glyphicon-signal:before {
  410. content: "\e018";
  411. }
  412. .glyphicon-cog:before {
  413. content: "\e019";
  414. }
  415. .glyphicon-trash:before {
  416. content: "\e020";
  417. }
  418. .glyphicon-home:before {
  419. content: "\e021";
  420. }
  421. .glyphicon-file:before {
  422. content: "\e022";
  423. }
  424. .glyphicon-time:before {
  425. content: "\e023";
  426. }
  427. .glyphicon-road:before {
  428. content: "\e024";
  429. }
  430. .glyphicon-download-alt:before {
  431. content: "\e025";
  432. }
  433. .glyphicon-download:before {
  434. content: "\e026";
  435. }
  436. .glyphicon-upload:before {
  437. content: "\e027";
  438. }
  439. .glyphicon-inbox:before {
  440. content: "\e028";
  441. }
  442. .glyphicon-play-circle:before {
  443. content: "\e029";
  444. }
  445. .glyphicon-repeat:before {
  446. content: "\e030";
  447. }
  448. .glyphicon-refresh:before {
  449. content: "\e031";
  450. }
  451. .glyphicon-list-alt:before {
  452. content: "\e032";
  453. }
  454. .glyphicon-lock:before {
  455. content: "\e033";
  456. }
  457. .glyphicon-flag:before {
  458. content: "\e034";
  459. }
  460. .glyphicon-headphones:before {
  461. content: "\e035";
  462. }
  463. .glyphicon-volume-off:before {
  464. content: "\e036";
  465. }
  466. .glyphicon-volume-down:before {
  467. content: "\e037";
  468. }
  469. .glyphicon-volume-up:before {
  470. content: "\e038";
  471. }
  472. .glyphicon-qrcode:before {
  473. content: "\e039";
  474. }
  475. .glyphicon-barcode:before {
  476. content: "\e040";
  477. }
  478. .glyphicon-tag:before {
  479. content: "\e041";
  480. }
  481. .glyphicon-tags:before {
  482. content: "\e042";
  483. }
  484. .glyphicon-book:before {
  485. content: "\e043";
  486. }
  487. .glyphicon-bookmark:before {
  488. content: "\e044";
  489. }
  490. .glyphicon-print:before {
  491. content: "\e045";
  492. }
  493. .glyphicon-camera:before {
  494. content: "\e046";
  495. }
  496. .glyphicon-font:before {
  497. content: "\e047";
  498. }
  499. .glyphicon-bold:before {
  500. content: "\e048";
  501. }
  502. .glyphicon-italic:before {
  503. content: "\e049";
  504. }
  505. .glyphicon-text-height:before {
  506. content: "\e050";
  507. }
  508. .glyphicon-text-width:before {
  509. content: "\e051";
  510. }
  511. .glyphicon-align-left:before {
  512. content: "\e052";
  513. }
  514. .glyphicon-align-center:before {
  515. content: "\e053";
  516. }
  517. .glyphicon-align-right:before {
  518. content: "\e054";
  519. }
  520. .glyphicon-align-justify:before {
  521. content: "\e055";
  522. }
  523. .glyphicon-list:before {
  524. content: "\e056";
  525. }
  526. .glyphicon-indent-left:before {
  527. content: "\e057";
  528. }
  529. .glyphicon-indent-right:before {
  530. content: "\e058";
  531. }
  532. .glyphicon-facetime-video:before {
  533. content: "\e059";
  534. }
  535. .glyphicon-picture:before {
  536. content: "\e060";
  537. }
  538. .glyphicon-map-marker:before {
  539. content: "\e062";
  540. }
  541. .glyphicon-adjust:before {
  542. content: "\e063";
  543. }
  544. .glyphicon-tint:before {
  545. content: "\e064";
  546. }
  547. .glyphicon-edit:before {
  548. content: "\e065";
  549. }
  550. .glyphicon-share:before {
  551. content: "\e066";
  552. }
  553. .glyphicon-check:before {
  554. content: "\e067";
  555. }
  556. .glyphicon-move:before {
  557. content: "\e068";
  558. }
  559. .glyphicon-step-backward:before {
  560. content: "\e069";
  561. }
  562. .glyphicon-fast-backward:before {
  563. content: "\e070";
  564. }
  565. .glyphicon-backward:before {
  566. content: "\e071";
  567. }
  568. .glyphicon-play:before {
  569. content: "\e072";
  570. }
  571. .glyphicon-pause:before {
  572. content: "\e073";
  573. }
  574. .glyphicon-stop:before {
  575. content: "\e074";
  576. }
  577. .glyphicon-forward:before {
  578. content: "\e075";
  579. }
  580. .glyphicon-fast-forward:before {
  581. content: "\e076";
  582. }
  583. .glyphicon-step-forward:before {
  584. content: "\e077";
  585. }
  586. .glyphicon-eject:before {
  587. content: "\e078";
  588. }
  589. .glyphicon-chevron-left:before {
  590. content: "\e079";
  591. }
  592. .glyphicon-chevron-right:before {
  593. content: "\e080";
  594. }
  595. .glyphicon-plus-sign:before {
  596. content: "\e081";
  597. }
  598. .glyphicon-minus-sign:before {
  599. content: "\e082";
  600. }
  601. .glyphicon-remove-sign:before {
  602. content: "\e083";
  603. }
  604. .glyphicon-ok-sign:before {
  605. content: "\e084";
  606. }
  607. .glyphicon-question-sign:before {
  608. content: "\e085";
  609. }
  610. .glyphicon-info-sign:before {
  611. content: "\e086";
  612. }
  613. .glyphicon-screenshot:before {
  614. content: "\e087";
  615. }
  616. .glyphicon-remove-circle:before {
  617. content: "\e088";
  618. }
  619. .glyphicon-ok-circle:before {
  620. content: "\e089";
  621. }
  622. .glyphicon-ban-circle:before {
  623. content: "\e090";
  624. }
  625. .glyphicon-arrow-left:before {
  626. content: "\e091";
  627. }
  628. .glyphicon-arrow-right:before {
  629. content: "\e092";
  630. }
  631. .glyphicon-arrow-up:before {
  632. content: "\e093";
  633. }
  634. .glyphicon-arrow-down:before {
  635. content: "\e094";
  636. }
  637. .glyphicon-share-alt:before {
  638. content: "\e095";
  639. }
  640. .glyphicon-resize-full:before {
  641. content: "\e096";
  642. }
  643. .glyphicon-resize-small:before {
  644. content: "\e097";
  645. }
  646. .glyphicon-exclamation-sign:before {
  647. content: "\e101";
  648. }
  649. .glyphicon-gift:before {
  650. content: "\e102";
  651. }
  652. .glyphicon-leaf:before {
  653. content: "\e103";
  654. }
  655. .glyphicon-fire:before {
  656. content: "\e104";
  657. }
  658. .glyphicon-eye-open:before {
  659. content: "\e105";
  660. }
  661. .glyphicon-eye-close:before {
  662. content: "\e106";
  663. }
  664. .glyphicon-warning-sign:before {
  665. content: "\e107";
  666. }
  667. .glyphicon-plane:before {
  668. content: "\e108";
  669. }
  670. .glyphicon-calendar:before {
  671. content: "\e109";
  672. }
  673. .glyphicon-random:before {
  674. content: "\e110";
  675. }
  676. .glyphicon-comment:before {
  677. content: "\e111";
  678. }
  679. .glyphicon-magnet:before {
  680. content: "\e112";
  681. }
  682. .glyphicon-chevron-up:before {
  683. content: "\e113";
  684. }
  685. .glyphicon-chevron-down:before {
  686. content: "\e114";
  687. }
  688. .glyphicon-retweet:before {
  689. content: "\e115";
  690. }
  691. .glyphicon-shopping-cart:before {
  692. content: "\e116";
  693. }
  694. .glyphicon-folder-close:before {
  695. content: "\e117";
  696. }
  697. .glyphicon-folder-open:before {
  698. content: "\e118";
  699. }
  700. .glyphicon-resize-vertical:before {
  701. content: "\e119";
  702. }
  703. .glyphicon-resize-horizontal:before {
  704. content: "\e120";
  705. }
  706. .glyphicon-hdd:before {
  707. content: "\e121";
  708. }
  709. .glyphicon-bullhorn:before {
  710. content: "\e122";
  711. }
  712. .glyphicon-bell:before {
  713. content: "\e123";
  714. }
  715. .glyphicon-certificate:before {
  716. content: "\e124";
  717. }
  718. .glyphicon-thumbs-up:before {
  719. content: "\e125";
  720. }
  721. .glyphicon-thumbs-down:before {
  722. content: "\e126";
  723. }
  724. .glyphicon-hand-right:before {
  725. content: "\e127";
  726. }
  727. .glyphicon-hand-left:before {
  728. content: "\e128";
  729. }
  730. .glyphicon-hand-up:before {
  731. content: "\e129";
  732. }
  733. .glyphicon-hand-down:before {
  734. content: "\e130";
  735. }
  736. .glyphicon-circle-arrow-right:before {
  737. content: "\e131";
  738. }
  739. .glyphicon-circle-arrow-left:before {
  740. content: "\e132";
  741. }
  742. .glyphicon-circle-arrow-up:before {
  743. content: "\e133";
  744. }
  745. .glyphicon-circle-arrow-down:before {
  746. content: "\e134";
  747. }
  748. .glyphicon-globe:before {
  749. content: "\e135";
  750. }
  751. .glyphicon-wrench:before {
  752. content: "\e136";
  753. }
  754. .glyphicon-tasks:before {
  755. content: "\e137";
  756. }
  757. .glyphicon-filter:before {
  758. content: "\e138";
  759. }
  760. .glyphicon-briefcase:before {
  761. content: "\e139";
  762. }
  763. .glyphicon-fullscreen:before {
  764. content: "\e140";
  765. }
  766. .glyphicon-dashboard:before {
  767. content: "\e141";
  768. }
  769. .glyphicon-paperclip:before {
  770. content: "\e142";
  771. }
  772. .glyphicon-heart-empty:before {
  773. content: "\e143";
  774. }
  775. .glyphicon-link:before {
  776. content: "\e144";
  777. }
  778. .glyphicon-phone:before {
  779. content: "\e145";
  780. }
  781. .glyphicon-pushpin:before {
  782. content: "\e146";
  783. }
  784. .glyphicon-usd:before {
  785. content: "\e148";
  786. }
  787. .glyphicon-gbp:before {
  788. content: "\e149";
  789. }
  790. .glyphicon-sort:before {
  791. content: "\e150";
  792. }
  793. .glyphicon-sort-by-alphabet:before {
  794. content: "\e151";
  795. }
  796. .glyphicon-sort-by-alphabet-alt:before {
  797. content: "\e152";
  798. }
  799. .glyphicon-sort-by-order:before {
  800. content: "\e153";
  801. }
  802. .glyphicon-sort-by-order-alt:before {
  803. content: "\e154";
  804. }
  805. .glyphicon-sort-by-attributes:before {
  806. content: "\e155";
  807. }
  808. .glyphicon-sort-by-attributes-alt:before {
  809. content: "\e156";
  810. }
  811. .glyphicon-unchecked:before {
  812. content: "\e157";
  813. }
  814. .glyphicon-expand:before {
  815. content: "\e158";
  816. }
  817. .glyphicon-collapse-down:before {
  818. content: "\e159";
  819. }
  820. .glyphicon-collapse-up:before {
  821. content: "\e160";
  822. }
  823. .glyphicon-log-in:before {
  824. content: "\e161";
  825. }
  826. .glyphicon-flash:before {
  827. content: "\e162";
  828. }
  829. .glyphicon-log-out:before {
  830. content: "\e163";
  831. }
  832. .glyphicon-new-window:before {
  833. content: "\e164";
  834. }
  835. .glyphicon-record:before {
  836. content: "\e165";
  837. }
  838. .glyphicon-save:before {
  839. content: "\e166";
  840. }
  841. .glyphicon-open:before {
  842. content: "\e167";
  843. }
  844. .glyphicon-saved:before {
  845. content: "\e168";
  846. }
  847. .glyphicon-import:before {
  848. content: "\e169";
  849. }
  850. .glyphicon-export:before {
  851. content: "\e170";
  852. }
  853. .glyphicon-send:before {
  854. content: "\e171";
  855. }
  856. .glyphicon-floppy-disk:before {
  857. content: "\e172";
  858. }
  859. .glyphicon-floppy-saved:before {
  860. content: "\e173";
  861. }
  862. .glyphicon-floppy-remove:before {
  863. content: "\e174";
  864. }
  865. .glyphicon-floppy-save:before {
  866. content: "\e175";
  867. }
  868. .glyphicon-floppy-open:before {
  869. content: "\e176";
  870. }
  871. .glyphicon-credit-card:before {
  872. content: "\e177";
  873. }
  874. .glyphicon-transfer:before {
  875. content: "\e178";
  876. }
  877. .glyphicon-cutlery:before {
  878. content: "\e179";
  879. }
  880. .glyphicon-header:before {
  881. content: "\e180";
  882. }
  883. .glyphicon-compressed:before {
  884. content: "\e181";
  885. }
  886. .glyphicon-earphone:before {
  887. content: "\e182";
  888. }
  889. .glyphicon-phone-alt:before {
  890. content: "\e183";
  891. }
  892. .glyphicon-tower:before {
  893. content: "\e184";
  894. }
  895. .glyphicon-stats:before {
  896. content: "\e185";
  897. }
  898. .glyphicon-sd-video:before {
  899. content: "\e186";
  900. }
  901. .glyphicon-hd-video:before {
  902. content: "\e187";
  903. }
  904. .glyphicon-subtitles:before {
  905. content: "\e188";
  906. }
  907. .glyphicon-sound-stereo:before {
  908. content: "\e189";
  909. }
  910. .glyphicon-sound-dolby:before {
  911. content: "\e190";
  912. }
  913. .glyphicon-sound-5-1:before {
  914. content: "\e191";
  915. }
  916. .glyphicon-sound-6-1:before {
  917. content: "\e192";
  918. }
  919. .glyphicon-sound-7-1:before {
  920. content: "\e193";
  921. }
  922. .glyphicon-copyright-mark:before {
  923. content: "\e194";
  924. }
  925. .glyphicon-registration-mark:before {
  926. content: "\e195";
  927. }
  928. .glyphicon-cloud-download:before {
  929. content: "\e197";
  930. }
  931. .glyphicon-cloud-upload:before {
  932. content: "\e198";
  933. }
  934. .glyphicon-tree-conifer:before {
  935. content: "\e199";
  936. }
  937. .glyphicon-tree-deciduous:before {
  938. content: "\e200";
  939. }
  940. .glyphicon-cd:before {
  941. content: "\e201";
  942. }
  943. .glyphicon-save-file:before {
  944. content: "\e202";
  945. }
  946. .glyphicon-open-file:before {
  947. content: "\e203";
  948. }
  949. .glyphicon-level-up:before {
  950. content: "\e204";
  951. }
  952. .glyphicon-copy:before {
  953. content: "\e205";
  954. }
  955. .glyphicon-paste:before {
  956. content: "\e206";
  957. }
  958. .glyphicon-alert:before {
  959. content: "\e209";
  960. }
  961. .glyphicon-equalizer:before {
  962. content: "\e210";
  963. }
  964. .glyphicon-king:before {
  965. content: "\e211";
  966. }
  967. .glyphicon-queen:before {
  968. content: "\e212";
  969. }
  970. .glyphicon-pawn:before {
  971. content: "\e213";
  972. }
  973. .glyphicon-bishop:before {
  974. content: "\e214";
  975. }
  976. .glyphicon-knight:before {
  977. content: "\e215";
  978. }
  979. .glyphicon-baby-formula:before {
  980. content: "\e216";
  981. }
  982. .glyphicon-tent:before {
  983. content: "\26fa";
  984. }
  985. .glyphicon-blackboard:before {
  986. content: "\e218";
  987. }
  988. .glyphicon-bed:before {
  989. content: "\e219";
  990. }
  991. .glyphicon-apple:before {
  992. content: "\f8ff";
  993. }
  994. .glyphicon-erase:before {
  995. content: "\e221";
  996. }
  997. .glyphicon-hourglass:before {
  998. content: "\231b";
  999. }
  1000. .glyphicon-lamp:before {
  1001. content: "\e223";
  1002. }
  1003. .glyphicon-duplicate:before {
  1004. content: "\e224";
  1005. }
  1006. .glyphicon-piggy-bank:before {
  1007. content: "\e225";
  1008. }
  1009. .glyphicon-scissors:before {
  1010. content: "\e226";
  1011. }
  1012. .glyphicon-bitcoin:before {
  1013. content: "\e227";
  1014. }
  1015. .glyphicon-btc:before {
  1016. content: "\e227";
  1017. }
  1018. .glyphicon-xbt:before {
  1019. content: "\e227";
  1020. }
  1021. .glyphicon-yen:before {
  1022. content: "\00a5";
  1023. }
  1024. .glyphicon-jpy:before {
  1025. content: "\00a5";
  1026. }
  1027. .glyphicon-ruble:before {
  1028. content: "\20bd";
  1029. }
  1030. .glyphicon-rub:before {
  1031. content: "\20bd";
  1032. }
  1033. .glyphicon-scale:before {
  1034. content: "\e230";
  1035. }
  1036. .glyphicon-ice-lolly:before {
  1037. content: "\e231";
  1038. }
  1039. .glyphicon-ice-lolly-tasted:before {
  1040. content: "\e232";
  1041. }
  1042. .glyphicon-education:before {
  1043. content: "\e233";
  1044. }
  1045. .glyphicon-option-horizontal:before {
  1046. content: "\e234";
  1047. }
  1048. .glyphicon-option-vertical:before {
  1049. content: "\e235";
  1050. }
  1051. .glyphicon-menu-hamburger:before {
  1052. content: "\e236";
  1053. }
  1054. .glyphicon-modal-window:before {
  1055. content: "\e237";
  1056. }
  1057. .glyphicon-oil:before {
  1058. content: "\e238";
  1059. }
  1060. .glyphicon-grain:before {
  1061. content: "\e239";
  1062. }
  1063. .glyphicon-sunglasses:before {
  1064. content: "\e240";
  1065. }
  1066. .glyphicon-text-size:before {
  1067. content: "\e241";
  1068. }
  1069. .glyphicon-text-color:before {
  1070. content: "\e242";
  1071. }
  1072. .glyphicon-text-background:before {
  1073. content: "\e243";
  1074. }
  1075. .glyphicon-object-align-top:before {
  1076. content: "\e244";
  1077. }
  1078. .glyphicon-object-align-bottom:before {
  1079. content: "\e245";
  1080. }
  1081. .glyphicon-object-align-horizontal:before {
  1082. content: "\e246";
  1083. }
  1084. .glyphicon-object-align-left:before {
  1085. content: "\e247";
  1086. }
  1087. .glyphicon-object-align-vertical:before {
  1088. content: "\e248";
  1089. }
  1090. .glyphicon-object-align-right:before {
  1091. content: "\e249";
  1092. }
  1093. .glyphicon-triangle-right:before {
  1094. content: "\e250";
  1095. }
  1096. .glyphicon-triangle-left:before {
  1097. content: "\e251";
  1098. }
  1099. .glyphicon-triangle-bottom:before {
  1100. content: "\e252";
  1101. }
  1102. .glyphicon-triangle-top:before {
  1103. content: "\e253";
  1104. }
  1105. .glyphicon-console:before {
  1106. content: "\e254";
  1107. }
  1108. .glyphicon-superscript:before {
  1109. content: "\e255";
  1110. }
  1111. .glyphicon-subscript:before {
  1112. content: "\e256";
  1113. }
  1114. .glyphicon-menu-left:before {
  1115. content: "\e257";
  1116. }
  1117. .glyphicon-menu-right:before {
  1118. content: "\e258";
  1119. }
  1120. .glyphicon-menu-down:before {
  1121. content: "\e259";
  1122. }
  1123. .glyphicon-menu-up:before {
  1124. content: "\e260";
  1125. }
  1126. * {
  1127. -webkit-box-sizing: border-box;
  1128. -moz-box-sizing: border-box;
  1129. box-sizing: border-box;
  1130. }
  1131. *:before,
  1132. *:after {
  1133. -webkit-box-sizing: border-box;
  1134. -moz-box-sizing: border-box;
  1135. box-sizing: border-box;
  1136. }
  1137. html {
  1138. font-size: 10px;
  1139. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1140. }
  1141. body {
  1142. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1143. font-size: 13px;
  1144. line-height: 1.42857143;
  1145. color: #000;
  1146. background-color: #fff;
  1147. }
  1148. input,
  1149. button,
  1150. select,
  1151. textarea {
  1152. font-family: inherit;
  1153. font-size: inherit;
  1154. line-height: inherit;
  1155. }
  1156. a {
  1157. color: #337ab7;
  1158. text-decoration: none;
  1159. }
  1160. a:hover,
  1161. a:focus {
  1162. color: #23527c;
  1163. text-decoration: underline;
  1164. }
  1165. a:focus {
  1166. outline: 5px auto -webkit-focus-ring-color;
  1167. outline-offset: -2px;
  1168. }
  1169. figure {
  1170. margin: 0;
  1171. }
  1172. img {
  1173. vertical-align: middle;
  1174. }
  1175. .img-responsive,
  1176. .thumbnail > img,
  1177. .thumbnail a > img,
  1178. .carousel-inner > .item > img,
  1179. .carousel-inner > .item > a > img {
  1180. display: block;
  1181. max-width: 100%;
  1182. height: auto;
  1183. }
  1184. .img-rounded {
  1185. border-radius: 3px;
  1186. }
  1187. .img-thumbnail {
  1188. padding: 4px;
  1189. line-height: 1.42857143;
  1190. background-color: #fff;
  1191. border: 1px solid #ddd;
  1192. border-radius: 2px;
  1193. -webkit-transition: all 0.2s ease-in-out;
  1194. -o-transition: all 0.2s ease-in-out;
  1195. transition: all 0.2s ease-in-out;
  1196. display: inline-block;
  1197. max-width: 100%;
  1198. height: auto;
  1199. }
  1200. .img-circle {
  1201. border-radius: 50%;
  1202. }
  1203. hr {
  1204. margin-top: 18px;
  1205. margin-bottom: 18px;
  1206. border: 0;
  1207. border-top: 1px solid #eeeeee;
  1208. }
  1209. .sr-only {
  1210. position: absolute;
  1211. width: 1px;
  1212. height: 1px;
  1213. margin: -1px;
  1214. padding: 0;
  1215. overflow: hidden;
  1216. clip: rect(0, 0, 0, 0);
  1217. border: 0;
  1218. }
  1219. .sr-only-focusable:active,
  1220. .sr-only-focusable:focus {
  1221. position: static;
  1222. width: auto;
  1223. height: auto;
  1224. margin: 0;
  1225. overflow: visible;
  1226. clip: auto;
  1227. }
  1228. [role="button"] {
  1229. cursor: pointer;
  1230. }
  1231. h1,
  1232. h2,
  1233. h3,
  1234. h4,
  1235. h5,
  1236. h6,
  1237. .h1,
  1238. .h2,
  1239. .h3,
  1240. .h4,
  1241. .h5,
  1242. .h6 {
  1243. font-family: inherit;
  1244. font-weight: 500;
  1245. line-height: 1.1;
  1246. color: inherit;
  1247. }
  1248. h1 small,
  1249. h2 small,
  1250. h3 small,
  1251. h4 small,
  1252. h5 small,
  1253. h6 small,
  1254. .h1 small,
  1255. .h2 small,
  1256. .h3 small,
  1257. .h4 small,
  1258. .h5 small,
  1259. .h6 small,
  1260. h1 .small,
  1261. h2 .small,
  1262. h3 .small,
  1263. h4 .small,
  1264. h5 .small,
  1265. h6 .small,
  1266. .h1 .small,
  1267. .h2 .small,
  1268. .h3 .small,
  1269. .h4 .small,
  1270. .h5 .small,
  1271. .h6 .small {
  1272. font-weight: normal;
  1273. line-height: 1;
  1274. color: #777777;
  1275. }
  1276. h1,
  1277. .h1,
  1278. h2,
  1279. .h2,
  1280. h3,
  1281. .h3 {
  1282. margin-top: 18px;
  1283. margin-bottom: 9px;
  1284. }
  1285. h1 small,
  1286. .h1 small,
  1287. h2 small,
  1288. .h2 small,
  1289. h3 small,
  1290. .h3 small,
  1291. h1 .small,
  1292. .h1 .small,
  1293. h2 .small,
  1294. .h2 .small,
  1295. h3 .small,
  1296. .h3 .small {
  1297. font-size: 65%;
  1298. }
  1299. h4,
  1300. .h4,
  1301. h5,
  1302. .h5,
  1303. h6,
  1304. .h6 {
  1305. margin-top: 9px;
  1306. margin-bottom: 9px;
  1307. }
  1308. h4 small,
  1309. .h4 small,
  1310. h5 small,
  1311. .h5 small,
  1312. h6 small,
  1313. .h6 small,
  1314. h4 .small,
  1315. .h4 .small,
  1316. h5 .small,
  1317. .h5 .small,
  1318. h6 .small,
  1319. .h6 .small {
  1320. font-size: 75%;
  1321. }
  1322. h1,
  1323. .h1 {
  1324. font-size: 33px;
  1325. }
  1326. h2,
  1327. .h2 {
  1328. font-size: 27px;
  1329. }
  1330. h3,
  1331. .h3 {
  1332. font-size: 23px;
  1333. }
  1334. h4,
  1335. .h4 {
  1336. font-size: 17px;
  1337. }
  1338. h5,
  1339. .h5 {
  1340. font-size: 13px;
  1341. }
  1342. h6,
  1343. .h6 {
  1344. font-size: 12px;
  1345. }
  1346. p {
  1347. margin: 0 0 9px;
  1348. }
  1349. .lead {
  1350. margin-bottom: 18px;
  1351. font-size: 14px;
  1352. font-weight: 300;
  1353. line-height: 1.4;
  1354. }
  1355. @media (min-width: 768px) {
  1356. .lead {
  1357. font-size: 19.5px;
  1358. }
  1359. }
  1360. small,
  1361. .small {
  1362. font-size: 92%;
  1363. }
  1364. mark,
  1365. .mark {
  1366. background-color: #fcf8e3;
  1367. padding: .2em;
  1368. }
  1369. .text-left {
  1370. text-align: left;
  1371. }
  1372. .text-right {
  1373. text-align: right;
  1374. }
  1375. .text-center {
  1376. text-align: center;
  1377. }
  1378. .text-justify {
  1379. text-align: justify;
  1380. }
  1381. .text-nowrap {
  1382. white-space: nowrap;
  1383. }
  1384. .text-lowercase {
  1385. text-transform: lowercase;
  1386. }
  1387. .text-uppercase {
  1388. text-transform: uppercase;
  1389. }
  1390. .text-capitalize {
  1391. text-transform: capitalize;
  1392. }
  1393. .text-muted {
  1394. color: #777777;
  1395. }
  1396. .text-primary {
  1397. color: #337ab7;
  1398. }
  1399. a.text-primary:hover,
  1400. a.text-primary:focus {
  1401. color: #286090;
  1402. }
  1403. .text-success {
  1404. color: #3c763d;
  1405. }
  1406. a.text-success:hover,
  1407. a.text-success:focus {
  1408. color: #2b542c;
  1409. }
  1410. .text-info {
  1411. color: #31708f;
  1412. }
  1413. a.text-info:hover,
  1414. a.text-info:focus {
  1415. color: #245269;
  1416. }
  1417. .text-warning {
  1418. color: #8a6d3b;
  1419. }
  1420. a.text-warning:hover,
  1421. a.text-warning:focus {
  1422. color: #66512c;
  1423. }
  1424. .text-danger {
  1425. color: #a94442;
  1426. }
  1427. a.text-danger:hover,
  1428. a.text-danger:focus {
  1429. color: #843534;
  1430. }
  1431. .bg-primary {
  1432. color: #fff;
  1433. background-color: #337ab7;
  1434. }
  1435. a.bg-primary:hover,
  1436. a.bg-primary:focus {
  1437. background-color: #286090;
  1438. }
  1439. .bg-success {
  1440. background-color: #dff0d8;
  1441. }
  1442. a.bg-success:hover,
  1443. a.bg-success:focus {
  1444. background-color: #c1e2b3;
  1445. }
  1446. .bg-info {
  1447. background-color: #d9edf7;
  1448. }
  1449. a.bg-info:hover,
  1450. a.bg-info:focus {
  1451. background-color: #afd9ee;
  1452. }
  1453. .bg-warning {
  1454. background-color: #fcf8e3;
  1455. }
  1456. a.bg-warning:hover,
  1457. a.bg-warning:focus {
  1458. background-color: #f7ecb5;
  1459. }
  1460. .bg-danger {
  1461. background-color: #f2dede;
  1462. }
  1463. a.bg-danger:hover,
  1464. a.bg-danger:focus {
  1465. background-color: #e4b9b9;
  1466. }
  1467. .page-header {
  1468. padding-bottom: 8px;
  1469. margin: 36px 0 18px;
  1470. border-bottom: 1px solid #eeeeee;
  1471. }
  1472. ul,
  1473. ol {
  1474. margin-top: 0;
  1475. margin-bottom: 9px;
  1476. }
  1477. ul ul,
  1478. ol ul,
  1479. ul ol,
  1480. ol ol {
  1481. margin-bottom: 0;
  1482. }
  1483. .list-unstyled {
  1484. padding-left: 0;
  1485. list-style: none;
  1486. }
  1487. .list-inline {
  1488. padding-left: 0;
  1489. list-style: none;
  1490. margin-left: -5px;
  1491. }
  1492. .list-inline > li {
  1493. display: inline-block;
  1494. padding-left: 5px;
  1495. padding-right: 5px;
  1496. }
  1497. dl {
  1498. margin-top: 0;
  1499. margin-bottom: 18px;
  1500. }
  1501. dt,
  1502. dd {
  1503. line-height: 1.42857143;
  1504. }
  1505. dt {
  1506. font-weight: bold;
  1507. }
  1508. dd {
  1509. margin-left: 0;
  1510. }
  1511. @media (min-width: 541px) {
  1512. .dl-horizontal dt {
  1513. float: left;
  1514. width: 160px;
  1515. clear: left;
  1516. text-align: right;
  1517. overflow: hidden;
  1518. text-overflow: ellipsis;
  1519. white-space: nowrap;
  1520. }
  1521. .dl-horizontal dd {
  1522. margin-left: 180px;
  1523. }
  1524. }
  1525. abbr[title],
  1526. abbr[data-original-title] {
  1527. cursor: help;
  1528. border-bottom: 1px dotted #777777;
  1529. }
  1530. .initialism {
  1531. font-size: 90%;
  1532. text-transform: uppercase;
  1533. }
  1534. blockquote {
  1535. padding: 9px 18px;
  1536. margin: 0 0 18px;
  1537. font-size: inherit;
  1538. border-left: 5px solid #eeeeee;
  1539. }
  1540. blockquote p:last-child,
  1541. blockquote ul:last-child,
  1542. blockquote ol:last-child {
  1543. margin-bottom: 0;
  1544. }
  1545. blockquote footer,
  1546. blockquote small,
  1547. blockquote .small {
  1548. display: block;
  1549. font-size: 80%;
  1550. line-height: 1.42857143;
  1551. color: #777777;
  1552. }
  1553. blockquote footer:before,
  1554. blockquote small:before,
  1555. blockquote .small:before {
  1556. content: '\2014 \00A0';
  1557. }
  1558. .blockquote-reverse,
  1559. blockquote.pull-right {
  1560. padding-right: 15px;
  1561. padding-left: 0;
  1562. border-right: 5px solid #eeeeee;
  1563. border-left: 0;
  1564. text-align: right;
  1565. }
  1566. .blockquote-reverse footer:before,
  1567. blockquote.pull-right footer:before,
  1568. .blockquote-reverse small:before,
  1569. blockquote.pull-right small:before,
  1570. .blockquote-reverse .small:before,
  1571. blockquote.pull-right .small:before {
  1572. content: '';
  1573. }
  1574. .blockquote-reverse footer:after,
  1575. blockquote.pull-right footer:after,
  1576. .blockquote-reverse small:after,
  1577. blockquote.pull-right small:after,
  1578. .blockquote-reverse .small:after,
  1579. blockquote.pull-right .small:after {
  1580. content: '\00A0 \2014';
  1581. }
  1582. address {
  1583. margin-bottom: 18px;
  1584. font-style: normal;
  1585. line-height: 1.42857143;
  1586. }
  1587. code,
  1588. kbd,
  1589. pre,
  1590. samp {
  1591. font-family: monospace;
  1592. }
  1593. code {
  1594. padding: 2px 4px;
  1595. font-size: 90%;
  1596. color: #c7254e;
  1597. background-color: #f9f2f4;
  1598. border-radius: 2px;
  1599. }
  1600. kbd {
  1601. padding: 2px 4px;
  1602. font-size: 90%;
  1603. color: #888;
  1604. background-color: transparent;
  1605. border-radius: 1px;
  1606. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1607. }
  1608. kbd kbd {
  1609. padding: 0;
  1610. font-size: 100%;
  1611. font-weight: bold;
  1612. box-shadow: none;
  1613. }
  1614. pre {
  1615. display: block;
  1616. padding: 8.5px;
  1617. margin: 0 0 9px;
  1618. font-size: 12px;
  1619. line-height: 1.42857143;
  1620. word-break: break-all;
  1621. word-wrap: break-word;
  1622. color: #333333;
  1623. background-color: #f5f5f5;
  1624. border: 1px solid #ccc;
  1625. border-radius: 2px;
  1626. }
  1627. pre code {
  1628. padding: 0;
  1629. font-size: inherit;
  1630. color: inherit;
  1631. white-space: pre-wrap;
  1632. background-color: transparent;
  1633. border-radius: 0;
  1634. }
  1635. .pre-scrollable {
  1636. max-height: 340px;
  1637. overflow-y: scroll;
  1638. }
  1639. .container {
  1640. margin-right: auto;
  1641. margin-left: auto;
  1642. padding-left: 0px;
  1643. padding-right: 0px;
  1644. }
  1645. @media (min-width: 768px) {
  1646. .container {
  1647. width: 768px;
  1648. }
  1649. }
  1650. @media (min-width: 992px) {
  1651. .container {
  1652. width: 940px;
  1653. }
  1654. }
  1655. @media (min-width: 1200px) {
  1656. .container {
  1657. width: 1140px;
  1658. }
  1659. }
  1660. .container-fluid {
  1661. margin-right: auto;
  1662. margin-left: auto;
  1663. padding-left: 0px;
  1664. padding-right: 0px;
  1665. }
  1666. .row {
  1667. margin-left: 0px;
  1668. margin-right: 0px;
  1669. }
  1670. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1671. position: relative;
  1672. min-height: 1px;
  1673. padding-left: 0px;
  1674. padding-right: 0px;
  1675. }
  1676. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  1677. float: left;
  1678. }
  1679. .col-xs-12 {
  1680. width: 100%;
  1681. }
  1682. .col-xs-11 {
  1683. width: 91.66666667%;
  1684. }
  1685. .col-xs-10 {
  1686. width: 83.33333333%;
  1687. }
  1688. .col-xs-9 {
  1689. width: 75%;
  1690. }
  1691. .col-xs-8 {
  1692. width: 66.66666667%;
  1693. }
  1694. .col-xs-7 {
  1695. width: 58.33333333%;
  1696. }
  1697. .col-xs-6 {
  1698. width: 50%;
  1699. }
  1700. .col-xs-5 {
  1701. width: 41.66666667%;
  1702. }
  1703. .col-xs-4 {
  1704. width: 33.33333333%;
  1705. }
  1706. .col-xs-3 {
  1707. width: 25%;
  1708. }
  1709. .col-xs-2 {
  1710. width: 16.66666667%;
  1711. }
  1712. .col-xs-1 {
  1713. width: 8.33333333%;
  1714. }
  1715. .col-xs-pull-12 {
  1716. right: 100%;
  1717. }
  1718. .col-xs-pull-11 {
  1719. right: 91.66666667%;
  1720. }
  1721. .col-xs-pull-10 {
  1722. right: 83.33333333%;
  1723. }
  1724. .col-xs-pull-9 {
  1725. right: 75%;
  1726. }
  1727. .col-xs-pull-8 {
  1728. right: 66.66666667%;
  1729. }
  1730. .col-xs-pull-7 {
  1731. right: 58.33333333%;
  1732. }
  1733. .col-xs-pull-6 {
  1734. right: 50%;
  1735. }
  1736. .col-xs-pull-5 {
  1737. right: 41.66666667%;
  1738. }
  1739. .col-xs-pull-4 {
  1740. right: 33.33333333%;
  1741. }
  1742. .col-xs-pull-3 {
  1743. right: 25%;
  1744. }
  1745. .col-xs-pull-2 {
  1746. right: 16.66666667%;
  1747. }
  1748. .col-xs-pull-1 {
  1749. right: 8.33333333%;
  1750. }
  1751. .col-xs-pull-0 {
  1752. right: auto;
  1753. }
  1754. .col-xs-push-12 {
  1755. left: 100%;
  1756. }
  1757. .col-xs-push-11 {
  1758. left: 91.66666667%;
  1759. }
  1760. .col-xs-push-10 {
  1761. left: 83.33333333%;
  1762. }
  1763. .col-xs-push-9 {
  1764. left: 75%;
  1765. }
  1766. .col-xs-push-8 {
  1767. left: 66.66666667%;
  1768. }
  1769. .col-xs-push-7 {
  1770. left: 58.33333333%;
  1771. }
  1772. .col-xs-push-6 {
  1773. left: 50%;
  1774. }
  1775. .col-xs-push-5 {
  1776. left: 41.66666667%;
  1777. }
  1778. .col-xs-push-4 {
  1779. left: 33.33333333%;
  1780. }
  1781. .col-xs-push-3 {
  1782. left: 25%;
  1783. }
  1784. .col-xs-push-2 {
  1785. left: 16.66666667%;
  1786. }
  1787. .col-xs-push-1 {
  1788. left: 8.33333333%;
  1789. }
  1790. .col-xs-push-0 {
  1791. left: auto;
  1792. }
  1793. .col-xs-offset-12 {
  1794. margin-left: 100%;
  1795. }
  1796. .col-xs-offset-11 {
  1797. margin-left: 91.66666667%;
  1798. }
  1799. .col-xs-offset-10 {
  1800. margin-left: 83.33333333%;
  1801. }
  1802. .col-xs-offset-9 {
  1803. margin-left: 75%;
  1804. }
  1805. .col-xs-offset-8 {
  1806. margin-left: 66.66666667%;
  1807. }
  1808. .col-xs-offset-7 {
  1809. margin-left: 58.33333333%;
  1810. }
  1811. .col-xs-offset-6 {
  1812. margin-left: 50%;
  1813. }
  1814. .col-xs-offset-5 {
  1815. margin-left: 41.66666667%;
  1816. }
  1817. .col-xs-offset-4 {
  1818. margin-left: 33.33333333%;
  1819. }
  1820. .col-xs-offset-3 {
  1821. margin-left: 25%;
  1822. }
  1823. .col-xs-offset-2 {
  1824. margin-left: 16.66666667%;
  1825. }
  1826. .col-xs-offset-1 {
  1827. margin-left: 8.33333333%;
  1828. }
  1829. .col-xs-offset-0 {
  1830. margin-left: 0%;
  1831. }
  1832. @media (min-width: 768px) {
  1833. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  1834. float: left;
  1835. }
  1836. .col-sm-12 {
  1837. width: 100%;
  1838. }
  1839. .col-sm-11 {
  1840. width: 91.66666667%;
  1841. }
  1842. .col-sm-10 {
  1843. width: 83.33333333%;
  1844. }
  1845. .col-sm-9 {
  1846. width: 75%;
  1847. }
  1848. .col-sm-8 {
  1849. width: 66.66666667%;
  1850. }
  1851. .col-sm-7 {
  1852. width: 58.33333333%;
  1853. }
  1854. .col-sm-6 {
  1855. width: 50%;
  1856. }
  1857. .col-sm-5 {
  1858. width: 41.66666667%;
  1859. }
  1860. .col-sm-4 {
  1861. width: 33.33333333%;
  1862. }
  1863. .col-sm-3 {
  1864. width: 25%;
  1865. }
  1866. .col-sm-2 {
  1867. width: 16.66666667%;
  1868. }
  1869. .col-sm-1 {
  1870. width: 8.33333333%;
  1871. }
  1872. .col-sm-pull-12 {
  1873. right: 100%;
  1874. }
  1875. .col-sm-pull-11 {
  1876. right: 91.66666667%;
  1877. }
  1878. .col-sm-pull-10 {
  1879. right: 83.33333333%;
  1880. }
  1881. .col-sm-pull-9 {
  1882. right: 75%;
  1883. }
  1884. .col-sm-pull-8 {
  1885. right: 66.66666667%;
  1886. }
  1887. .col-sm-pull-7 {
  1888. right: 58.33333333%;
  1889. }
  1890. .col-sm-pull-6 {
  1891. right: 50%;
  1892. }
  1893. .col-sm-pull-5 {
  1894. right: 41.66666667%;
  1895. }
  1896. .col-sm-pull-4 {
  1897. right: 33.33333333%;
  1898. }
  1899. .col-sm-pull-3 {
  1900. right: 25%;
  1901. }
  1902. .col-sm-pull-2 {
  1903. right: 16.66666667%;
  1904. }
  1905. .col-sm-pull-1 {
  1906. right: 8.33333333%;
  1907. }
  1908. .col-sm-pull-0 {
  1909. right: auto;
  1910. }
  1911. .col-sm-push-12 {
  1912. left: 100%;
  1913. }
  1914. .col-sm-push-11 {
  1915. left: 91.66666667%;
  1916. }
  1917. .col-sm-push-10 {
  1918. left: 83.33333333%;
  1919. }
  1920. .col-sm-push-9 {
  1921. left: 75%;
  1922. }
  1923. .col-sm-push-8 {
  1924. left: 66.66666667%;
  1925. }
  1926. .col-sm-push-7 {
  1927. left: 58.33333333%;
  1928. }
  1929. .col-sm-push-6 {
  1930. left: 50%;
  1931. }
  1932. .col-sm-push-5 {
  1933. left: 41.66666667%;
  1934. }
  1935. .col-sm-push-4 {
  1936. left: 33.33333333%;
  1937. }
  1938. .col-sm-push-3 {
  1939. left: 25%;
  1940. }
  1941. .col-sm-push-2 {
  1942. left: 16.66666667%;
  1943. }
  1944. .col-sm-push-1 {
  1945. left: 8.33333333%;
  1946. }
  1947. .col-sm-push-0 {
  1948. left: auto;
  1949. }
  1950. .col-sm-offset-12 {
  1951. margin-left: 100%;
  1952. }
  1953. .col-sm-offset-11 {
  1954. margin-left: 91.66666667%;
  1955. }
  1956. .col-sm-offset-10 {
  1957. margin-left: 83.33333333%;
  1958. }
  1959. .col-sm-offset-9 {
  1960. margin-left: 75%;
  1961. }
  1962. .col-sm-offset-8 {
  1963. margin-left: 66.66666667%;
  1964. }
  1965. .col-sm-offset-7 {
  1966. margin-left: 58.33333333%;
  1967. }
  1968. .col-sm-offset-6 {
  1969. margin-left: 50%;
  1970. }
  1971. .col-sm-offset-5 {
  1972. margin-left: 41.66666667%;
  1973. }
  1974. .col-sm-offset-4 {
  1975. margin-left: 33.33333333%;
  1976. }
  1977. .col-sm-offset-3 {
  1978. margin-left: 25%;
  1979. }
  1980. .col-sm-offset-2 {
  1981. margin-left: 16.66666667%;
  1982. }
  1983. .col-sm-offset-1 {
  1984. margin-left: 8.33333333%;
  1985. }
  1986. .col-sm-offset-0 {
  1987. margin-left: 0%;
  1988. }
  1989. }
  1990. @media (min-width: 992px) {
  1991. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1992. float: left;
  1993. }
  1994. .col-md-12 {
  1995. width: 100%;
  1996. }
  1997. .col-md-11 {
  1998. width: 91.66666667%;
  1999. }
  2000. .col-md-10 {
  2001. width: 83.33333333%;
  2002. }
  2003. .col-md-9 {
  2004. width: 75%;
  2005. }
  2006. .col-md-8 {
  2007. width: 66.66666667%;
  2008. }
  2009. .col-md-7 {
  2010. width: 58.33333333%;
  2011. }
  2012. .col-md-6 {
  2013. width: 50%;
  2014. }
  2015. .col-md-5 {
  2016. width: 41.66666667%;
  2017. }
  2018. .col-md-4 {
  2019. width: 33.33333333%;
  2020. }
  2021. .col-md-3 {
  2022. width: 25%;
  2023. }
  2024. .col-md-2 {
  2025. width: 16.66666667%;
  2026. }
  2027. .col-md-1 {
  2028. width: 8.33333333%;
  2029. }
  2030. .col-md-pull-12 {
  2031. right: 100%;
  2032. }
  2033. .col-md-pull-11 {
  2034. right: 91.66666667%;
  2035. }
  2036. .col-md-pull-10 {
  2037. right: 83.33333333%;
  2038. }
  2039. .col-md-pull-9 {
  2040. right: 75%;
  2041. }
  2042. .col-md-pull-8 {
  2043. right: 66.66666667%;
  2044. }
  2045. .col-md-pull-7 {
  2046. right: 58.33333333%;
  2047. }
  2048. .col-md-pull-6 {
  2049. right: 50%;
  2050. }
  2051. .col-md-pull-5 {
  2052. right: 41.66666667%;
  2053. }
  2054. .col-md-pull-4 {
  2055. right: 33.33333333%;
  2056. }
  2057. .col-md-pull-3 {
  2058. right: 25%;
  2059. }
  2060. .col-md-pull-2 {
  2061. right: 16.66666667%;
  2062. }
  2063. .col-md-pull-1 {
  2064. right: 8.33333333%;
  2065. }
  2066. .col-md-pull-0 {
  2067. right: auto;
  2068. }
  2069. .col-md-push-12 {
  2070. left: 100%;
  2071. }
  2072. .col-md-push-11 {
  2073. left: 91.66666667%;
  2074. }
  2075. .col-md-push-10 {
  2076. left: 83.33333333%;
  2077. }
  2078. .col-md-push-9 {
  2079. left: 75%;
  2080. }
  2081. .col-md-push-8 {
  2082. left: 66.66666667%;
  2083. }
  2084. .col-md-push-7 {
  2085. left: 58.33333333%;
  2086. }
  2087. .col-md-push-6 {
  2088. left: 50%;
  2089. }
  2090. .col-md-push-5 {
  2091. left: 41.66666667%;
  2092. }
  2093. .col-md-push-4 {
  2094. left: 33.33333333%;
  2095. }
  2096. .col-md-push-3 {
  2097. left: 25%;
  2098. }
  2099. .col-md-push-2 {
  2100. left: 16.66666667%;
  2101. }
  2102. .col-md-push-1 {
  2103. left: 8.33333333%;
  2104. }
  2105. .col-md-push-0 {
  2106. left: auto;
  2107. }
  2108. .col-md-offset-12 {
  2109. margin-left: 100%;
  2110. }
  2111. .col-md-offset-11 {
  2112. margin-left: 91.66666667%;
  2113. }
  2114. .col-md-offset-10 {
  2115. margin-left: 83.33333333%;
  2116. }
  2117. .col-md-offset-9 {
  2118. margin-left: 75%;
  2119. }
  2120. .col-md-offset-8 {
  2121. margin-left: 66.66666667%;
  2122. }
  2123. .col-md-offset-7 {
  2124. margin-left: 58.33333333%;
  2125. }
  2126. .col-md-offset-6 {
  2127. margin-left: 50%;
  2128. }
  2129. .col-md-offset-5 {
  2130. margin-left: 41.66666667%;
  2131. }
  2132. .col-md-offset-4 {
  2133. margin-left: 33.33333333%;
  2134. }
  2135. .col-md-offset-3 {
  2136. margin-left: 25%;
  2137. }
  2138. .col-md-offset-2 {
  2139. margin-left: 16.66666667%;
  2140. }
  2141. .col-md-offset-1 {
  2142. margin-left: 8.33333333%;
  2143. }
  2144. .col-md-offset-0 {
  2145. margin-left: 0%;
  2146. }
  2147. }
  2148. @media (min-width: 1200px) {
  2149. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  2150. float: left;
  2151. }
  2152. .col-lg-12 {
  2153. width: 100%;
  2154. }
  2155. .col-lg-11 {
  2156. width: 91.66666667%;
  2157. }
  2158. .col-lg-10 {
  2159. width: 83.33333333%;
  2160. }
  2161. .col-lg-9 {
  2162. width: 75%;
  2163. }
  2164. .col-lg-8 {
  2165. width: 66.66666667%;
  2166. }
  2167. .col-lg-7 {
  2168. width: 58.33333333%;
  2169. }
  2170. .col-lg-6 {
  2171. width: 50%;
  2172. }
  2173. .col-lg-5 {
  2174. width: 41.66666667%;
  2175. }
  2176. .col-lg-4 {
  2177. width: 33.33333333%;
  2178. }
  2179. .col-lg-3 {
  2180. width: 25%;
  2181. }
  2182. .col-lg-2 {
  2183. width: 16.66666667%;
  2184. }
  2185. .col-lg-1 {
  2186. width: 8.33333333%;
  2187. }
  2188. .col-lg-pull-12 {
  2189. right: 100%;
  2190. }
  2191. .col-lg-pull-11 {
  2192. right: 91.66666667%;
  2193. }
  2194. .col-lg-pull-10 {
  2195. right: 83.33333333%;
  2196. }
  2197. .col-lg-pull-9 {
  2198. right: 75%;
  2199. }
  2200. .col-lg-pull-8 {
  2201. right: 66.66666667%;
  2202. }
  2203. .col-lg-pull-7 {
  2204. right: 58.33333333%;
  2205. }
  2206. .col-lg-pull-6 {
  2207. right: 50%;
  2208. }
  2209. .col-lg-pull-5 {
  2210. right: 41.66666667%;
  2211. }
  2212. .col-lg-pull-4 {
  2213. right: 33.33333333%;
  2214. }
  2215. .col-lg-pull-3 {
  2216. right: 25%;
  2217. }
  2218. .col-lg-pull-2 {
  2219. right: 16.66666667%;
  2220. }
  2221. .col-lg-pull-1 {
  2222. right: 8.33333333%;
  2223. }
  2224. .col-lg-pull-0 {
  2225. right: auto;
  2226. }
  2227. .col-lg-push-12 {
  2228. left: 100%;
  2229. }
  2230. .col-lg-push-11 {
  2231. left: 91.66666667%;
  2232. }
  2233. .col-lg-push-10 {
  2234. left: 83.33333333%;
  2235. }
  2236. .col-lg-push-9 {
  2237. left: 75%;
  2238. }
  2239. .col-lg-push-8 {
  2240. left: 66.66666667%;
  2241. }
  2242. .col-lg-push-7 {
  2243. left: 58.33333333%;
  2244. }
  2245. .col-lg-push-6 {
  2246. left: 50%;
  2247. }
  2248. .col-lg-push-5 {
  2249. left: 41.66666667%;
  2250. }
  2251. .col-lg-push-4 {
  2252. left: 33.33333333%;
  2253. }
  2254. .col-lg-push-3 {
  2255. left: 25%;
  2256. }
  2257. .col-lg-push-2 {
  2258. left: 16.66666667%;
  2259. }
  2260. .col-lg-push-1 {
  2261. left: 8.33333333%;
  2262. }
  2263. .col-lg-push-0 {
  2264. left: auto;
  2265. }
  2266. .col-lg-offset-12 {
  2267. margin-left: 100%;
  2268. }
  2269. .col-lg-offset-11 {
  2270. margin-left: 91.66666667%;
  2271. }
  2272. .col-lg-offset-10 {
  2273. margin-left: 83.33333333%;
  2274. }
  2275. .col-lg-offset-9 {
  2276. margin-left: 75%;
  2277. }
  2278. .col-lg-offset-8 {
  2279. margin-left: 66.66666667%;
  2280. }
  2281. .col-lg-offset-7 {
  2282. margin-left: 58.33333333%;
  2283. }
  2284. .col-lg-offset-6 {
  2285. margin-left: 50%;
  2286. }
  2287. .col-lg-offset-5 {
  2288. margin-left: 41.66666667%;
  2289. }
  2290. .col-lg-offset-4 {
  2291. margin-left: 33.33333333%;
  2292. }
  2293. .col-lg-offset-3 {
  2294. margin-left: 25%;
  2295. }
  2296. .col-lg-offset-2 {
  2297. margin-left: 16.66666667%;
  2298. }
  2299. .col-lg-offset-1 {
  2300. margin-left: 8.33333333%;
  2301. }
  2302. .col-lg-offset-0 {
  2303. margin-left: 0%;
  2304. }
  2305. }
  2306. table {
  2307. background-color: transparent;
  2308. }
  2309. caption {
  2310. padding-top: 8px;
  2311. padding-bottom: 8px;
  2312. color: #777777;
  2313. text-align: left;
  2314. }
  2315. th {
  2316. text-align: left;
  2317. }
  2318. .table {
  2319. width: 100%;
  2320. max-width: 100%;
  2321. margin-bottom: 18px;
  2322. }
  2323. .table > thead > tr > th,
  2324. .table > tbody > tr > th,
  2325. .table > tfoot > tr > th,
  2326. .table > thead > tr > td,
  2327. .table > tbody > tr > td,
  2328. .table > tfoot > tr > td {
  2329. padding: 8px;
  2330. line-height: 1.42857143;
  2331. vertical-align: top;
  2332. border-top: 1px solid #ddd;
  2333. }
  2334. .table > thead > tr > th {
  2335. vertical-align: bottom;
  2336. border-bottom: 2px solid #ddd;
  2337. }
  2338. .table > caption + thead > tr:first-child > th,
  2339. .table > colgroup + thead > tr:first-child > th,
  2340. .table > thead:first-child > tr:first-child > th,
  2341. .table > caption + thead > tr:first-child > td,
  2342. .table > colgroup + thead > tr:first-child > td,
  2343. .table > thead:first-child > tr:first-child > td {
  2344. border-top: 0;
  2345. }
  2346. .table > tbody + tbody {
  2347. border-top: 2px solid #ddd;
  2348. }
  2349. .table .table {
  2350. background-color: #fff;
  2351. }
  2352. .table-condensed > thead > tr > th,
  2353. .table-condensed > tbody > tr > th,
  2354. .table-condensed > tfoot > tr > th,
  2355. .table-condensed > thead > tr > td,
  2356. .table-condensed > tbody > tr > td,
  2357. .table-condensed > tfoot > tr > td {
  2358. padding: 5px;
  2359. }
  2360. .table-bordered {
  2361. border: 1px solid #ddd;
  2362. }
  2363. .table-bordered > thead > tr > th,
  2364. .table-bordered > tbody > tr > th,
  2365. .table-bordered > tfoot > tr > th,
  2366. .table-bordered > thead > tr > td,
  2367. .table-bordered > tbody > tr > td,
  2368. .table-bordered > tfoot > tr > td {
  2369. border: 1px solid #ddd;
  2370. }
  2371. .table-bordered > thead > tr > th,
  2372. .table-bordered > thead > tr > td {
  2373. border-bottom-width: 2px;
  2374. }
  2375. .table-striped > tbody > tr:nth-of-type(odd) {
  2376. background-color: #f9f9f9;
  2377. }
  2378. .table-hover > tbody > tr:hover {
  2379. background-color: #f5f5f5;
  2380. }
  2381. table col[class*="col-"] {
  2382. position: static;
  2383. float: none;
  2384. display: table-column;
  2385. }
  2386. table td[class*="col-"],
  2387. table th[class*="col-"] {
  2388. position: static;
  2389. float: none;
  2390. display: table-cell;
  2391. }
  2392. .table > thead > tr > td.active,
  2393. .table > tbody > tr > td.active,
  2394. .table > tfoot > tr > td.active,
  2395. .table > thead > tr > th.active,
  2396. .table > tbody > tr > th.active,
  2397. .table > tfoot > tr > th.active,
  2398. .table > thead > tr.active > td,
  2399. .table > tbody > tr.active > td,
  2400. .table > tfoot > tr.active > td,
  2401. .table > thead > tr.active > th,
  2402. .table > tbody > tr.active > th,
  2403. .table > tfoot > tr.active > th {
  2404. background-color: #f5f5f5;
  2405. }
  2406. .table-hover > tbody > tr > td.active:hover,
  2407. .table-hover > tbody > tr > th.active:hover,
  2408. .table-hover > tbody > tr.active:hover > td,
  2409. .table-hover > tbody > tr:hover > .active,
  2410. .table-hover > tbody > tr.active:hover > th {
  2411. background-color: #e8e8e8;
  2412. }
  2413. .table > thead > tr > td.success,
  2414. .table > tbody > tr > td.success,
  2415. .table > tfoot > tr > td.success,
  2416. .table > thead > tr > th.success,
  2417. .table > tbody > tr > th.success,
  2418. .table > tfoot > tr > th.success,
  2419. .table > thead > tr.success > td,
  2420. .table > tbody > tr.success > td,
  2421. .table > tfoot > tr.success > td,
  2422. .table > thead > tr.success > th,
  2423. .table > tbody > tr.success > th,
  2424. .table > tfoot > tr.success > th {
  2425. background-color: #dff0d8;
  2426. }
  2427. .table-hover > tbody > tr > td.success:hover,
  2428. .table-hover > tbody > tr > th.success:hover,
  2429. .table-hover > tbody > tr.success:hover > td,
  2430. .table-hover > tbody > tr:hover > .success,
  2431. .table-hover > tbody > tr.success:hover > th {
  2432. background-color: #d0e9c6;
  2433. }
  2434. .table > thead > tr > td.info,
  2435. .table > tbody > tr > td.info,
  2436. .table > tfoot > tr > td.info,
  2437. .table > thead > tr > th.info,
  2438. .table > tbody > tr > th.info,
  2439. .table > tfoot > tr > th.info,
  2440. .table > thead > tr.info > td,
  2441. .table > tbody > tr.info > td,
  2442. .table > tfoot > tr.info > td,
  2443. .table > thead > tr.info > th,
  2444. .table > tbody > tr.info > th,
  2445. .table > tfoot > tr.info > th {
  2446. background-color: #d9edf7;
  2447. }
  2448. .table-hover > tbody > tr > td.info:hover,
  2449. .table-hover > tbody > tr > th.info:hover,
  2450. .table-hover > tbody > tr.info:hover > td,
  2451. .table-hover > tbody > tr:hover > .info,
  2452. .table-hover > tbody > tr.info:hover > th {
  2453. background-color: #c4e3f3;
  2454. }
  2455. .table > thead > tr > td.warning,
  2456. .table > tbody > tr > td.warning,
  2457. .table > tfoot > tr > td.warning,
  2458. .table > thead > tr > th.warning,
  2459. .table > tbody > tr > th.warning,
  2460. .table > tfoot > tr > th.warning,
  2461. .table > thead > tr.warning > td,
  2462. .table > tbody > tr.warning > td,
  2463. .table > tfoot > tr.warning > td,
  2464. .table > thead > tr.warning > th,
  2465. .table > tbody > tr.warning > th,
  2466. .table > tfoot > tr.warning > th {
  2467. background-color: #fcf8e3;
  2468. }
  2469. .table-hover > tbody > tr > td.warning:hover,
  2470. .table-hover > tbody > tr > th.warning:hover,
  2471. .table-hover > tbody > tr.warning:hover > td,
  2472. .table-hover > tbody > tr:hover > .warning,
  2473. .table-hover > tbody > tr.warning:hover > th {
  2474. background-color: #faf2cc;
  2475. }
  2476. .table > thead > tr > td.danger,
  2477. .table > tbody > tr > td.danger,
  2478. .table > tfoot > tr > td.danger,
  2479. .table > thead > tr > th.danger,
  2480. .table > tbody > tr > th.danger,
  2481. .table > tfoot > tr > th.danger,
  2482. .table > thead > tr.danger > td,
  2483. .table > tbody > tr.danger > td,
  2484. .table > tfoot > tr.danger > td,
  2485. .table > thead > tr.danger > th,
  2486. .table > tbody > tr.danger > th,
  2487. .table > tfoot > tr.danger > th {
  2488. background-color: #f2dede;
  2489. }
  2490. .table-hover > tbody > tr > td.danger:hover,
  2491. .table-hover > tbody > tr > th.danger:hover,
  2492. .table-hover > tbody > tr.danger:hover > td,
  2493. .table-hover > tbody > tr:hover > .danger,
  2494. .table-hover > tbody > tr.danger:hover > th {
  2495. background-color: #ebcccc;
  2496. }
  2497. .table-responsive {
  2498. overflow-x: auto;
  2499. min-height: 0.01%;
  2500. }
  2501. @media screen and (max-width: 767px) {
  2502. .table-responsive {
  2503. width: 100%;
  2504. margin-bottom: 13.5px;
  2505. overflow-y: hidden;
  2506. -ms-overflow-style: -ms-autohiding-scrollbar;
  2507. border: 1px solid #ddd;
  2508. }
  2509. .table-responsive > .table {
  2510. margin-bottom: 0;
  2511. }
  2512. .table-responsive > .table > thead > tr > th,
  2513. .table-responsive > .table > tbody > tr > th,
  2514. .table-responsive > .table > tfoot > tr > th,
  2515. .table-responsive > .table > thead > tr > td,
  2516. .table-responsive > .table > tbody > tr > td,
  2517. .table-responsive > .table > tfoot > tr > td {
  2518. white-space: nowrap;
  2519. }
  2520. .table-responsive > .table-bordered {
  2521. border: 0;
  2522. }
  2523. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2524. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2525. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2526. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2527. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2528. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2529. border-left: 0;
  2530. }
  2531. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2532. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2533. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2534. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2535. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2536. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2537. border-right: 0;
  2538. }
  2539. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2540. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2541. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2542. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2543. border-bottom: 0;
  2544. }
  2545. }
  2546. fieldset {
  2547. padding: 0;
  2548. margin: 0;
  2549. border: 0;
  2550. min-width: 0;
  2551. }
  2552. legend {
  2553. display: block;
  2554. width: 100%;
  2555. padding: 0;
  2556. margin-bottom: 18px;
  2557. font-size: 19.5px;
  2558. line-height: inherit;
  2559. color: #333333;
  2560. border: 0;
  2561. border-bottom: 1px solid #e5e5e5;
  2562. }
  2563. label {
  2564. display: inline-block;
  2565. max-width: 100%;
  2566. margin-bottom: 5px;
  2567. font-weight: bold;
  2568. }
  2569. input[type="search"] {
  2570. -webkit-box-sizing: border-box;
  2571. -moz-box-sizing: border-box;
  2572. box-sizing: border-box;
  2573. }
  2574. input[type="radio"],
  2575. input[type="checkbox"] {
  2576. margin: 4px 0 0;
  2577. margin-top: 1px \9;
  2578. line-height: normal;
  2579. }
  2580. input[type="file"] {
  2581. display: block;
  2582. }
  2583. input[type="range"] {
  2584. display: block;
  2585. width: 100%;
  2586. }
  2587. select[multiple],
  2588. select[size] {
  2589. height: auto;
  2590. }
  2591. input[type="file"]:focus,
  2592. input[type="radio"]:focus,
  2593. input[type="checkbox"]:focus {
  2594. outline: 5px auto -webkit-focus-ring-color;
  2595. outline-offset: -2px;
  2596. }
  2597. output {
  2598. display: block;
  2599. padding-top: 7px;
  2600. font-size: 13px;
  2601. line-height: 1.42857143;
  2602. color: #555555;
  2603. }
  2604. .form-control {
  2605. display: block;
  2606. width: 100%;
  2607. height: 32px;
  2608. padding: 6px 12px;
  2609. font-size: 13px;
  2610. line-height: 1.42857143;
  2611. color: #555555;
  2612. background-color: #fff;
  2613. background-image: none;
  2614. border: 1px solid #ccc;
  2615. border-radius: 2px;
  2616. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2617. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2618. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2619. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2620. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2621. }
  2622. .form-control:focus {
  2623. border-color: #66afe9;
  2624. outline: 0;
  2625. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2626. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2627. }
  2628. .form-control::-moz-placeholder {
  2629. color: #999;
  2630. opacity: 1;
  2631. }
  2632. .form-control:-ms-input-placeholder {
  2633. color: #999;
  2634. }
  2635. .form-control::-webkit-input-placeholder {
  2636. color: #999;
  2637. }
  2638. .form-control::-ms-expand {
  2639. border: 0;
  2640. background-color: transparent;
  2641. }
  2642. .form-control[disabled],
  2643. .form-control[readonly],
  2644. fieldset[disabled] .form-control {
  2645. background-color: #eeeeee;
  2646. opacity: 1;
  2647. }
  2648. .form-control[disabled],
  2649. fieldset[disabled] .form-control {
  2650. cursor: not-allowed;
  2651. }
  2652. textarea.form-control {
  2653. height: auto;
  2654. }
  2655. input[type="search"] {
  2656. -webkit-appearance: none;
  2657. }
  2658. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2659. input[type="date"].form-control,
  2660. input[type="time"].form-control,
  2661. input[type="datetime-local"].form-control,
  2662. input[type="month"].form-control {
  2663. line-height: 32px;
  2664. }
  2665. input[type="date"].input-sm,
  2666. input[type="time"].input-sm,
  2667. input[type="datetime-local"].input-sm,
  2668. input[type="month"].input-sm,
  2669. .input-group-sm input[type="date"],
  2670. .input-group-sm input[type="time"],
  2671. .input-group-sm input[type="datetime-local"],
  2672. .input-group-sm input[type="month"] {
  2673. line-height: 30px;
  2674. }
  2675. input[type="date"].input-lg,
  2676. input[type="time"].input-lg,
  2677. input[type="datetime-local"].input-lg,
  2678. input[type="month"].input-lg,
  2679. .input-group-lg input[type="date"],
  2680. .input-group-lg input[type="time"],
  2681. .input-group-lg input[type="datetime-local"],
  2682. .input-group-lg input[type="month"] {
  2683. line-height: 45px;
  2684. }
  2685. }
  2686. .form-group {
  2687. margin-bottom: 15px;
  2688. }
  2689. .radio,
  2690. .checkbox {
  2691. position: relative;
  2692. display: block;
  2693. margin-top: 10px;
  2694. margin-bottom: 10px;
  2695. }
  2696. .radio label,
  2697. .checkbox label {
  2698. min-height: 18px;
  2699. padding-left: 20px;
  2700. margin-bottom: 0;
  2701. font-weight: normal;
  2702. cursor: pointer;
  2703. }
  2704. .radio input[type="radio"],
  2705. .radio-inline input[type="radio"],
  2706. .checkbox input[type="checkbox"],
  2707. .checkbox-inline input[type="checkbox"] {
  2708. position: absolute;
  2709. margin-left: -20px;
  2710. margin-top: 4px \9;
  2711. }
  2712. .radio + .radio,
  2713. .checkbox + .checkbox {
  2714. margin-top: -5px;
  2715. }
  2716. .radio-inline,
  2717. .checkbox-inline {
  2718. position: relative;
  2719. display: inline-block;
  2720. padding-left: 20px;
  2721. margin-bottom: 0;
  2722. vertical-align: middle;
  2723. font-weight: normal;
  2724. cursor: pointer;
  2725. }
  2726. .radio-inline + .radio-inline,
  2727. .checkbox-inline + .checkbox-inline {
  2728. margin-top: 0;
  2729. margin-left: 10px;
  2730. }
  2731. input[type="radio"][disabled],
  2732. input[type="checkbox"][disabled],
  2733. input[type="radio"].disabled,
  2734. input[type="checkbox"].disabled,
  2735. fieldset[disabled] input[type="radio"],
  2736. fieldset[disabled] input[type="checkbox"] {
  2737. cursor: not-allowed;
  2738. }
  2739. .radio-inline.disabled,
  2740. .checkbox-inline.disabled,
  2741. fieldset[disabled] .radio-inline,
  2742. fieldset[disabled] .checkbox-inline {
  2743. cursor: not-allowed;
  2744. }
  2745. .radio.disabled label,
  2746. .checkbox.disabled label,
  2747. fieldset[disabled] .radio label,
  2748. fieldset[disabled] .checkbox label {
  2749. cursor: not-allowed;
  2750. }
  2751. .form-control-static {
  2752. padding-top: 7px;
  2753. padding-bottom: 7px;
  2754. margin-bottom: 0;
  2755. min-height: 31px;
  2756. }
  2757. .form-control-static.input-lg,
  2758. .form-control-static.input-sm {
  2759. padding-left: 0;
  2760. padding-right: 0;
  2761. }
  2762. .input-sm {
  2763. height: 30px;
  2764. padding: 5px 10px;
  2765. font-size: 12px;
  2766. line-height: 1.5;
  2767. border-radius: 1px;
  2768. }
  2769. select.input-sm {
  2770. height: 30px;
  2771. line-height: 30px;
  2772. }
  2773. textarea.input-sm,
  2774. select[multiple].input-sm {
  2775. height: auto;
  2776. }
  2777. .form-group-sm .form-control {
  2778. height: 30px;
  2779. padding: 5px 10px;
  2780. font-size: 12px;
  2781. line-height: 1.5;
  2782. border-radius: 1px;
  2783. }
  2784. .form-group-sm select.form-control {
  2785. height: 30px;
  2786. line-height: 30px;
  2787. }
  2788. .form-group-sm textarea.form-control,
  2789. .form-group-sm select[multiple].form-control {
  2790. height: auto;
  2791. }
  2792. .form-group-sm .form-control-static {
  2793. height: 30px;
  2794. min-height: 30px;
  2795. padding: 6px 10px;
  2796. font-size: 12px;
  2797. line-height: 1.5;
  2798. }
  2799. .input-lg {
  2800. height: 45px;
  2801. padding: 10px 16px;
  2802. font-size: 17px;
  2803. line-height: 1.3333333;
  2804. border-radius: 3px;
  2805. }
  2806. select.input-lg {
  2807. height: 45px;
  2808. line-height: 45px;
  2809. }
  2810. textarea.input-lg,
  2811. select[multiple].input-lg {
  2812. height: auto;
  2813. }
  2814. .form-group-lg .form-control {
  2815. height: 45px;
  2816. padding: 10px 16px;
  2817. font-size: 17px;
  2818. line-height: 1.3333333;
  2819. border-radius: 3px;
  2820. }
  2821. .form-group-lg select.form-control {
  2822. height: 45px;
  2823. line-height: 45px;
  2824. }
  2825. .form-group-lg textarea.form-control,
  2826. .form-group-lg select[multiple].form-control {
  2827. height: auto;
  2828. }
  2829. .form-group-lg .form-control-static {
  2830. height: 45px;
  2831. min-height: 35px;
  2832. padding: 11px 16px;
  2833. font-size: 17px;
  2834. line-height: 1.3333333;
  2835. }
  2836. .has-feedback {
  2837. position: relative;
  2838. }
  2839. .has-feedback .form-control {
  2840. padding-right: 40px;
  2841. }
  2842. .form-control-feedback {
  2843. position: absolute;
  2844. top: 0;
  2845. right: 0;
  2846. z-index: 2;
  2847. display: block;
  2848. width: 32px;
  2849. height: 32px;
  2850. line-height: 32px;
  2851. text-align: center;
  2852. pointer-events: none;
  2853. }
  2854. .input-lg + .form-control-feedback,
  2855. .input-group-lg + .form-control-feedback,
  2856. .form-group-lg .form-control + .form-control-feedback {
  2857. width: 45px;
  2858. height: 45px;
  2859. line-height: 45px;
  2860. }
  2861. .input-sm + .form-control-feedback,
  2862. .input-group-sm + .form-control-feedback,
  2863. .form-group-sm .form-control + .form-control-feedback {
  2864. width: 30px;
  2865. height: 30px;
  2866. line-height: 30px;
  2867. }
  2868. .has-success .help-block,
  2869. .has-success .control-label,
  2870. .has-success .radio,
  2871. .has-success .checkbox,
  2872. .has-success .radio-inline,
  2873. .has-success .checkbox-inline,
  2874. .has-success.radio label,
  2875. .has-success.checkbox label,
  2876. .has-success.radio-inline label,
  2877. .has-success.checkbox-inline label {
  2878. color: #3c763d;
  2879. }
  2880. .has-success .form-control {
  2881. border-color: #3c763d;
  2882. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2883. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2884. }
  2885. .has-success .form-control:focus {
  2886. border-color: #2b542c;
  2887. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2888. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2889. }
  2890. .has-success .input-group-addon {
  2891. color: #3c763d;
  2892. border-color: #3c763d;
  2893. background-color: #dff0d8;
  2894. }
  2895. .has-success .form-control-feedback {
  2896. color: #3c763d;
  2897. }
  2898. .has-warning .help-block,
  2899. .has-warning .control-label,
  2900. .has-warning .radio,
  2901. .has-warning .checkbox,
  2902. .has-warning .radio-inline,
  2903. .has-warning .checkbox-inline,
  2904. .has-warning.radio label,
  2905. .has-warning.checkbox label,
  2906. .has-warning.radio-inline label,
  2907. .has-warning.checkbox-inline label {
  2908. color: #8a6d3b;
  2909. }
  2910. .has-warning .form-control {
  2911. border-color: #8a6d3b;
  2912. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2913. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2914. }
  2915. .has-warning .form-control:focus {
  2916. border-color: #66512c;
  2917. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2918. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2919. }
  2920. .has-warning .input-group-addon {
  2921. color: #8a6d3b;
  2922. border-color: #8a6d3b;
  2923. background-color: #fcf8e3;
  2924. }
  2925. .has-warning .form-control-feedback {
  2926. color: #8a6d3b;
  2927. }
  2928. .has-error .help-block,
  2929. .has-error .control-label,
  2930. .has-error .radio,
  2931. .has-error .checkbox,
  2932. .has-error .radio-inline,
  2933. .has-error .checkbox-inline,
  2934. .has-error.radio label,
  2935. .has-error.checkbox label,
  2936. .has-error.radio-inline label,
  2937. .has-error.checkbox-inline label {
  2938. color: #a94442;
  2939. }
  2940. .has-error .form-control {
  2941. border-color: #a94442;
  2942. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2943. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2944. }
  2945. .has-error .form-control:focus {
  2946. border-color: #843534;
  2947. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2948. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2949. }
  2950. .has-error .input-group-addon {
  2951. color: #a94442;
  2952. border-color: #a94442;
  2953. background-color: #f2dede;
  2954. }
  2955. .has-error .form-control-feedback {
  2956. color: #a94442;
  2957. }
  2958. .has-feedback label ~ .form-control-feedback {
  2959. top: 23px;
  2960. }
  2961. .has-feedback label.sr-only ~ .form-control-feedback {
  2962. top: 0;
  2963. }
  2964. .help-block {
  2965. display: block;
  2966. margin-top: 5px;
  2967. margin-bottom: 10px;
  2968. color: #404040;
  2969. }
  2970. @media (min-width: 768px) {
  2971. .form-inline .form-group {
  2972. display: inline-block;
  2973. margin-bottom: 0;
  2974. vertical-align: middle;
  2975. }
  2976. .form-inline .form-control {
  2977. display: inline-block;
  2978. width: auto;
  2979. vertical-align: middle;
  2980. }
  2981. .form-inline .form-control-static {
  2982. display: inline-block;
  2983. }
  2984. .form-inline .input-group {
  2985. display: inline-table;
  2986. vertical-align: middle;
  2987. }
  2988. .form-inline .input-group .input-group-addon,
  2989. .form-inline .input-group .input-group-btn,
  2990. .form-inline .input-group .form-control {
  2991. width: auto;
  2992. }
  2993. .form-inline .input-group > .form-control {
  2994. width: 100%;
  2995. }
  2996. .form-inline .control-label {
  2997. margin-bottom: 0;
  2998. vertical-align: middle;
  2999. }
  3000. .form-inline .radio,
  3001. .form-inline .checkbox {
  3002. display: inline-block;
  3003. margin-top: 0;
  3004. margin-bottom: 0;
  3005. vertical-align: middle;
  3006. }
  3007. .form-inline .radio label,
  3008. .form-inline .checkbox label {
  3009. padding-left: 0;
  3010. }
  3011. .form-inline .radio input[type="radio"],
  3012. .form-inline .checkbox input[type="checkbox"] {
  3013. position: relative;
  3014. margin-left: 0;
  3015. }
  3016. .form-inline .has-feedback .form-control-feedback {
  3017. top: 0;
  3018. }
  3019. }
  3020. .form-horizontal .radio,
  3021. .form-horizontal .checkbox,
  3022. .form-horizontal .radio-inline,
  3023. .form-horizontal .checkbox-inline {
  3024. margin-top: 0;
  3025. margin-bottom: 0;
  3026. padding-top: 7px;
  3027. }
  3028. .form-horizontal .radio,
  3029. .form-horizontal .checkbox {
  3030. min-height: 25px;
  3031. }
  3032. .form-horizontal .form-group {
  3033. margin-left: 0px;
  3034. margin-right: 0px;
  3035. }
  3036. @media (min-width: 768px) {
  3037. .form-horizontal .control-label {
  3038. text-align: right;
  3039. margin-bottom: 0;
  3040. padding-top: 7px;
  3041. }
  3042. }
  3043. .form-horizontal .has-feedback .form-control-feedback {
  3044. right: 0px;
  3045. }
  3046. @media (min-width: 768px) {
  3047. .form-horizontal .form-group-lg .control-label {
  3048. padding-top: 11px;
  3049. font-size: 17px;
  3050. }
  3051. }
  3052. @media (min-width: 768px) {
  3053. .form-horizontal .form-group-sm .control-label {
  3054. padding-top: 6px;
  3055. font-size: 12px;
  3056. }
  3057. }
  3058. .btn {
  3059. display: inline-block;
  3060. margin-bottom: 0;
  3061. font-weight: normal;
  3062. text-align: center;
  3063. vertical-align: middle;
  3064. touch-action: manipulation;
  3065. cursor: pointer;
  3066. background-image: none;
  3067. border: 1px solid transparent;
  3068. white-space: nowrap;
  3069. padding: 6px 12px;
  3070. font-size: 13px;
  3071. line-height: 1.42857143;
  3072. border-radius: 2px;
  3073. -webkit-user-select: none;
  3074. -moz-user-select: none;
  3075. -ms-user-select: none;
  3076. user-select: none;
  3077. }
  3078. .btn:focus,
  3079. .btn:active:focus,
  3080. .btn.active:focus,
  3081. .btn.focus,
  3082. .btn:active.focus,
  3083. .btn.active.focus {
  3084. outline: 5px auto -webkit-focus-ring-color;
  3085. outline-offset: -2px;
  3086. }
  3087. .btn:hover,
  3088. .btn:focus,
  3089. .btn.focus {
  3090. color: #333;
  3091. text-decoration: none;
  3092. }
  3093. .btn:active,
  3094. .btn.active {
  3095. outline: 0;
  3096. background-image: none;
  3097. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3098. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3099. }
  3100. .btn.disabled,
  3101. .btn[disabled],
  3102. fieldset[disabled] .btn {
  3103. cursor: not-allowed;
  3104. opacity: 0.65;
  3105. filter: alpha(opacity=65);
  3106. -webkit-box-shadow: none;
  3107. box-shadow: none;
  3108. }
  3109. a.btn.disabled,
  3110. fieldset[disabled] a.btn {
  3111. pointer-events: none;
  3112. }
  3113. .btn-default {
  3114. color: #333;
  3115. background-color: #fff;
  3116. border-color: #ccc;
  3117. }
  3118. .btn-default:focus,
  3119. .btn-default.focus {
  3120. color: #333;
  3121. background-color: #e6e6e6;
  3122. border-color: #8c8c8c;
  3123. }
  3124. .btn-default:hover {
  3125. color: #333;
  3126. background-color: #e6e6e6;
  3127. border-color: #adadad;
  3128. }
  3129. .btn-default:active,
  3130. .btn-default.active,
  3131. .open > .dropdown-toggle.btn-default {
  3132. color: #333;
  3133. background-color: #e6e6e6;
  3134. border-color: #adadad;
  3135. }
  3136. .btn-default:active:hover,
  3137. .btn-default.active:hover,
  3138. .open > .dropdown-toggle.btn-default:hover,
  3139. .btn-default:active:focus,
  3140. .btn-default.active:focus,
  3141. .open > .dropdown-toggle.btn-default:focus,
  3142. .btn-default:active.focus,
  3143. .btn-default.active.focus,
  3144. .open > .dropdown-toggle.btn-default.focus {
  3145. color: #333;
  3146. background-color: #d4d4d4;
  3147. border-color: #8c8c8c;
  3148. }
  3149. .btn-default:active,
  3150. .btn-default.active,
  3151. .open > .dropdown-toggle.btn-default {
  3152. background-image: none;
  3153. }
  3154. .btn-default.disabled:hover,
  3155. .btn-default[disabled]:hover,
  3156. fieldset[disabled] .btn-default:hover,
  3157. .btn-default.disabled:focus,
  3158. .btn-default[disabled]:focus,
  3159. fieldset[disabled] .btn-default:focus,
  3160. .btn-default.disabled.focus,
  3161. .btn-default[disabled].focus,
  3162. fieldset[disabled] .btn-default.focus {
  3163. background-color: #fff;
  3164. border-color: #ccc;
  3165. }
  3166. .btn-default .badge {
  3167. color: #fff;
  3168. background-color: #333;
  3169. }
  3170. .btn-primary {
  3171. color: #fff;
  3172. background-color: #337ab7;
  3173. border-color: #2e6da4;
  3174. }
  3175. .btn-primary:focus,
  3176. .btn-primary.focus {
  3177. color: #fff;
  3178. background-color: #286090;
  3179. border-color: #122b40;
  3180. }
  3181. .btn-primary:hover {
  3182. color: #fff;
  3183. background-color: #286090;
  3184. border-color: #204d74;
  3185. }
  3186. .btn-primary:active,
  3187. .btn-primary.active,
  3188. .open > .dropdown-toggle.btn-primary {
  3189. color: #fff;
  3190. background-color: #286090;
  3191. border-color: #204d74;
  3192. }
  3193. .btn-primary:active:hover,
  3194. .btn-primary.active:hover,
  3195. .open > .dropdown-toggle.btn-primary:hover,
  3196. .btn-primary:active:focus,
  3197. .btn-primary.active:focus,
  3198. .open > .dropdown-toggle.btn-primary:focus,
  3199. .btn-primary:active.focus,
  3200. .btn-primary.active.focus,
  3201. .open > .dropdown-toggle.btn-primary.focus {
  3202. color: #fff;
  3203. background-color: #204d74;
  3204. border-color: #122b40;
  3205. }
  3206. .btn-primary:active,
  3207. .btn-primary.active,
  3208. .open > .dropdown-toggle.btn-primary {
  3209. background-image: none;
  3210. }
  3211. .btn-primary.disabled:hover,
  3212. .btn-primary[disabled]:hover,
  3213. fieldset[disabled] .btn-primary:hover,
  3214. .btn-primary.disabled:focus,
  3215. .btn-primary[disabled]:focus,
  3216. fieldset[disabled] .btn-primary:focus,
  3217. .btn-primary.disabled.focus,
  3218. .btn-primary[disabled].focus,
  3219. fieldset[disabled] .btn-primary.focus {
  3220. background-color: #337ab7;
  3221. border-color: #2e6da4;
  3222. }
  3223. .btn-primary .badge {
  3224. color: #337ab7;
  3225. background-color: #fff;
  3226. }
  3227. .btn-success {
  3228. color: #fff;
  3229. background-color: #5cb85c;
  3230. border-color: #4cae4c;
  3231. }
  3232. .btn-success:focus,
  3233. .btn-success.focus {
  3234. color: #fff;
  3235. background-color: #449d44;
  3236. border-color: #255625;
  3237. }
  3238. .btn-success:hover {
  3239. color: #fff;
  3240. background-color: #449d44;
  3241. border-color: #398439;
  3242. }
  3243. .btn-success:active,
  3244. .btn-success.active,
  3245. .open > .dropdown-toggle.btn-success {
  3246. color: #fff;
  3247. background-color: #449d44;
  3248. border-color: #398439;
  3249. }
  3250. .btn-success:active:hover,
  3251. .btn-success.active:hover,
  3252. .open > .dropdown-toggle.btn-success:hover,
  3253. .btn-success:active:focus,
  3254. .btn-success.active:focus,
  3255. .open > .dropdown-toggle.btn-success:focus,
  3256. .btn-success:active.focus,
  3257. .btn-success.active.focus,
  3258. .open > .dropdown-toggle.btn-success.focus {
  3259. color: #fff;
  3260. background-color: #398439;
  3261. border-color: #255625;
  3262. }
  3263. .btn-success:active,
  3264. .btn-success.active,
  3265. .open > .dropdown-toggle.btn-success {
  3266. background-image: none;
  3267. }
  3268. .btn-success.disabled:hover,
  3269. .btn-success[disabled]:hover,
  3270. fieldset[disabled] .btn-success:hover,
  3271. .btn-success.disabled:focus,
  3272. .btn-success[disabled]:focus,
  3273. fieldset[disabled] .btn-success:focus,
  3274. .btn-success.disabled.focus,
  3275. .btn-success[disabled].focus,
  3276. fieldset[disabled] .btn-success.focus {
  3277. background-color: #5cb85c;
  3278. border-color: #4cae4c;
  3279. }
  3280. .btn-success .badge {
  3281. color: #5cb85c;
  3282. background-color: #fff;
  3283. }
  3284. .btn-info {
  3285. color: #fff;
  3286. background-color: #5bc0de;
  3287. border-color: #46b8da;
  3288. }
  3289. .btn-info:focus,
  3290. .btn-info.focus {
  3291. color: #fff;
  3292. background-color: #31b0d5;
  3293. border-color: #1b6d85;
  3294. }
  3295. .btn-info:hover {
  3296. color: #fff;
  3297. background-color: #31b0d5;
  3298. border-color: #269abc;
  3299. }
  3300. .btn-info:active,
  3301. .btn-info.active,
  3302. .open > .dropdown-toggle.btn-info {
  3303. color: #fff;
  3304. background-color: #31b0d5;
  3305. border-color: #269abc;
  3306. }
  3307. .btn-info:active:hover,
  3308. .btn-info.active:hover,
  3309. .open > .dropdown-toggle.btn-info:hover,
  3310. .btn-info:active:focus,
  3311. .btn-info.active:focus,
  3312. .open > .dropdown-toggle.btn-info:focus,
  3313. .btn-info:active.focus,
  3314. .btn-info.active.focus,
  3315. .open > .dropdown-toggle.btn-info.focus {
  3316. color: #fff;
  3317. background-color: #269abc;
  3318. border-color: #1b6d85;
  3319. }
  3320. .btn-info:active,
  3321. .btn-info.active,
  3322. .open > .dropdown-toggle.btn-info {
  3323. background-image: none;
  3324. }
  3325. .btn-info.disabled:hover,
  3326. .btn-info[disabled]:hover,
  3327. fieldset[disabled] .btn-info:hover,
  3328. .btn-info.disabled:focus,
  3329. .btn-info[disabled]:focus,
  3330. fieldset[disabled] .btn-info:focus,
  3331. .btn-info.disabled.focus,
  3332. .btn-info[disabled].focus,
  3333. fieldset[disabled] .btn-info.focus {
  3334. background-color: #5bc0de;
  3335. border-color: #46b8da;
  3336. }
  3337. .btn-info .badge {
  3338. color: #5bc0de;
  3339. background-color: #fff;
  3340. }
  3341. .btn-warning {
  3342. color: #fff;
  3343. background-color: #f0ad4e;
  3344. border-color: #eea236;
  3345. }
  3346. .btn-warning:focus,
  3347. .btn-warning.focus {
  3348. color: #fff;
  3349. background-color: #ec971f;
  3350. border-color: #985f0d;
  3351. }
  3352. .btn-warning:hover {
  3353. color: #fff;
  3354. background-color: #ec971f;
  3355. border-color: #d58512;
  3356. }
  3357. .btn-warning:active,
  3358. .btn-warning.active,
  3359. .open > .dropdown-toggle.btn-warning {
  3360. color: #fff;
  3361. background-color: #ec971f;
  3362. border-color: #d58512;
  3363. }
  3364. .btn-warning:active:hover,
  3365. .btn-warning.active:hover,
  3366. .open > .dropdown-toggle.btn-warning:hover,
  3367. .btn-warning:active:focus,
  3368. .btn-warning.active:focus,
  3369. .open > .dropdown-toggle.btn-warning:focus,
  3370. .btn-warning:active.focus,
  3371. .btn-warning.active.focus,
  3372. .open > .dropdown-toggle.btn-warning.focus {
  3373. color: #fff;
  3374. background-color: #d58512;
  3375. border-color: #985f0d;
  3376. }
  3377. .btn-warning:active,
  3378. .btn-warning.active,
  3379. .open > .dropdown-toggle.btn-warning {
  3380. background-image: none;
  3381. }
  3382. .btn-warning.disabled:hover,
  3383. .btn-warning[disabled]:hover,
  3384. fieldset[disabled] .btn-warning:hover,
  3385. .btn-warning.disabled:focus,
  3386. .btn-warning[disabled]:focus,
  3387. fieldset[disabled] .btn-warning:focus,
  3388. .btn-warning.disabled.focus,
  3389. .btn-warning[disabled].focus,
  3390. fieldset[disabled] .btn-warning.focus {
  3391. background-color: #f0ad4e;
  3392. border-color: #eea236;
  3393. }
  3394. .btn-warning .badge {
  3395. color: #f0ad4e;
  3396. background-color: #fff;
  3397. }
  3398. .btn-danger {
  3399. color: #fff;
  3400. background-color: #d9534f;
  3401. border-color: #d43f3a;
  3402. }
  3403. .btn-danger:focus,
  3404. .btn-danger.focus {
  3405. color: #fff;
  3406. background-color: #c9302c;
  3407. border-color: #761c19;
  3408. }
  3409. .btn-danger:hover {
  3410. color: #fff;
  3411. background-color: #c9302c;
  3412. border-color: #ac2925;
  3413. }
  3414. .btn-danger:active,
  3415. .btn-danger.active,
  3416. .open > .dropdown-toggle.btn-danger {
  3417. color: #fff;
  3418. background-color: #c9302c;
  3419. border-color: #ac2925;
  3420. }
  3421. .btn-danger:active:hover,
  3422. .btn-danger.active:hover,
  3423. .open > .dropdown-toggle.btn-danger:hover,
  3424. .btn-danger:active:focus,
  3425. .btn-danger.active:focus,
  3426. .open > .dropdown-toggle.btn-danger:focus,
  3427. .btn-danger:active.focus,
  3428. .btn-danger.active.focus,
  3429. .open > .dropdown-toggle.btn-danger.focus {
  3430. color: #fff;
  3431. background-color: #ac2925;
  3432. border-color: #761c19;
  3433. }
  3434. .btn-danger:active,
  3435. .btn-danger.active,
  3436. .open > .dropdown-toggle.btn-danger {
  3437. background-image: none;
  3438. }
  3439. .btn-danger.disabled:hover,
  3440. .btn-danger[disabled]:hover,
  3441. fieldset[disabled] .btn-danger:hover,
  3442. .btn-danger.disabled:focus,
  3443. .btn-danger[disabled]:focus,
  3444. fieldset[disabled] .btn-danger:focus,
  3445. .btn-danger.disabled.focus,
  3446. .btn-danger[disabled].focus,
  3447. fieldset[disabled] .btn-danger.focus {
  3448. background-color: #d9534f;
  3449. border-color: #d43f3a;
  3450. }
  3451. .btn-danger .badge {
  3452. color: #d9534f;
  3453. background-color: #fff;
  3454. }
  3455. .btn-link {
  3456. color: #337ab7;
  3457. font-weight: normal;
  3458. border-radius: 0;
  3459. }
  3460. .btn-link,
  3461. .btn-link:active,
  3462. .btn-link.active,
  3463. .btn-link[disabled],
  3464. fieldset[disabled] .btn-link {
  3465. background-color: transparent;
  3466. -webkit-box-shadow: none;
  3467. box-shadow: none;
  3468. }
  3469. .btn-link,
  3470. .btn-link:hover,
  3471. .btn-link:focus,
  3472. .btn-link:active {
  3473. border-color: transparent;
  3474. }
  3475. .btn-link:hover,
  3476. .btn-link:focus {
  3477. color: #23527c;
  3478. text-decoration: underline;
  3479. background-color: transparent;
  3480. }
  3481. .btn-link[disabled]:hover,
  3482. fieldset[disabled] .btn-link:hover,
  3483. .btn-link[disabled]:focus,
  3484. fieldset[disabled] .btn-link:focus {
  3485. color: #777777;
  3486. text-decoration: none;
  3487. }
  3488. .btn-lg,
  3489. .btn-group-lg > .btn {
  3490. padding: 10px 16px;
  3491. font-size: 17px;
  3492. line-height: 1.3333333;
  3493. border-radius: 3px;
  3494. }
  3495. .btn-sm,
  3496. .btn-group-sm > .btn {
  3497. padding: 5px 10px;
  3498. font-size: 12px;
  3499. line-height: 1.5;
  3500. border-radius: 1px;
  3501. }
  3502. .btn-xs,
  3503. .btn-group-xs > .btn {
  3504. padding: 1px 5px;
  3505. font-size: 12px;
  3506. line-height: 1.5;
  3507. border-radius: 1px;
  3508. }
  3509. .btn-block {
  3510. display: block;
  3511. width: 100%;
  3512. }
  3513. .btn-block + .btn-block {
  3514. margin-top: 5px;
  3515. }
  3516. input[type="submit"].btn-block,
  3517. input[type="reset"].btn-block,
  3518. input[type="button"].btn-block {
  3519. width: 100%;
  3520. }
  3521. .fade {
  3522. opacity: 0;
  3523. -webkit-transition: opacity 0.15s linear;
  3524. -o-transition: opacity 0.15s linear;
  3525. transition: opacity 0.15s linear;
  3526. }
  3527. .fade.in {
  3528. opacity: 1;
  3529. }
  3530. .collapse {
  3531. display: none;
  3532. }
  3533. .collapse.in {
  3534. display: block;
  3535. }
  3536. tr.collapse.in {
  3537. display: table-row;
  3538. }
  3539. tbody.collapse.in {
  3540. display: table-row-group;
  3541. }
  3542. .collapsing {
  3543. position: relative;
  3544. height: 0;
  3545. overflow: hidden;
  3546. -webkit-transition-property: height, visibility;
  3547. transition-property: height, visibility;
  3548. -webkit-transition-duration: 0.35s;
  3549. transition-duration: 0.35s;
  3550. -webkit-transition-timing-function: ease;
  3551. transition-timing-function: ease;
  3552. }
  3553. .caret {
  3554. display: inline-block;
  3555. width: 0;
  3556. height: 0;
  3557. margin-left: 2px;
  3558. vertical-align: middle;
  3559. border-top: 4px dashed;
  3560. border-top: 4px solid \9;
  3561. border-right: 4px solid transparent;
  3562. border-left: 4px solid transparent;
  3563. }
  3564. .dropup,
  3565. .dropdown {
  3566. position: relative;
  3567. }
  3568. .dropdown-toggle:focus {
  3569. outline: 0;
  3570. }
  3571. .dropdown-menu {
  3572. position: absolute;
  3573. top: 100%;
  3574. left: 0;
  3575. z-index: 1000;
  3576. display: none;
  3577. float: left;
  3578. min-width: 160px;
  3579. padding: 5px 0;
  3580. margin: 2px 0 0;
  3581. list-style: none;
  3582. font-size: 13px;
  3583. text-align: left;
  3584. background-color: #fff;
  3585. border: 1px solid #ccc;
  3586. border: 1px solid rgba(0, 0, 0, 0.15);
  3587. border-radius: 2px;
  3588. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3589. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3590. background-clip: padding-box;
  3591. }
  3592. .dropdown-menu.pull-right {
  3593. right: 0;
  3594. left: auto;
  3595. }
  3596. .dropdown-menu .divider {
  3597. height: 1px;
  3598. margin: 8px 0;
  3599. overflow: hidden;
  3600. background-color: #e5e5e5;
  3601. }
  3602. .dropdown-menu > li > a {
  3603. display: block;
  3604. padding: 3px 20px;
  3605. clear: both;
  3606. font-weight: normal;
  3607. line-height: 1.42857143;
  3608. color: #333333;
  3609. white-space: nowrap;
  3610. }
  3611. .dropdown-menu > li > a:hover,
  3612. .dropdown-menu > li > a:focus {
  3613. text-decoration: none;
  3614. color: #262626;
  3615. background-color: #f5f5f5;
  3616. }
  3617. .dropdown-menu > .active > a,
  3618. .dropdown-menu > .active > a:hover,
  3619. .dropdown-menu > .active > a:focus {
  3620. color: #fff;
  3621. text-decoration: none;
  3622. outline: 0;
  3623. background-color: #337ab7;
  3624. }
  3625. .dropdown-menu > .disabled > a,
  3626. .dropdown-menu > .disabled > a:hover,
  3627. .dropdown-menu > .disabled > a:focus {
  3628. color: #777777;
  3629. }
  3630. .dropdown-menu > .disabled > a:hover,
  3631. .dropdown-menu > .disabled > a:focus {
  3632. text-decoration: none;
  3633. background-color: transparent;
  3634. background-image: none;
  3635. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3636. cursor: not-allowed;
  3637. }
  3638. .open > .dropdown-menu {
  3639. display: block;
  3640. }
  3641. .open > a {
  3642. outline: 0;
  3643. }
  3644. .dropdown-menu-right {
  3645. left: auto;
  3646. right: 0;
  3647. }
  3648. .dropdown-menu-left {
  3649. left: 0;
  3650. right: auto;
  3651. }
  3652. .dropdown-header {
  3653. display: block;
  3654. padding: 3px 20px;
  3655. font-size: 12px;
  3656. line-height: 1.42857143;
  3657. color: #777777;
  3658. white-space: nowrap;
  3659. }
  3660. .dropdown-backdrop {
  3661. position: fixed;
  3662. left: 0;
  3663. right: 0;
  3664. bottom: 0;
  3665. top: 0;
  3666. z-index: 990;
  3667. }
  3668. .pull-right > .dropdown-menu {
  3669. right: 0;
  3670. left: auto;
  3671. }
  3672. .dropup .caret,
  3673. .navbar-fixed-bottom .dropdown .caret {
  3674. border-top: 0;
  3675. border-bottom: 4px dashed;
  3676. border-bottom: 4px solid \9;
  3677. content: "";
  3678. }
  3679. .dropup .dropdown-menu,
  3680. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3681. top: auto;
  3682. bottom: 100%;
  3683. margin-bottom: 2px;
  3684. }
  3685. @media (min-width: 541px) {
  3686. .navbar-right .dropdown-menu {
  3687. left: auto;
  3688. right: 0;
  3689. }
  3690. .navbar-right .dropdown-menu-left {
  3691. left: 0;
  3692. right: auto;
  3693. }
  3694. }
  3695. .btn-group,
  3696. .btn-group-vertical {
  3697. position: relative;
  3698. display: inline-block;
  3699. vertical-align: middle;
  3700. }
  3701. .btn-group > .btn,
  3702. .btn-group-vertical > .btn {
  3703. position: relative;
  3704. float: left;
  3705. }
  3706. .btn-group > .btn:hover,
  3707. .btn-group-vertical > .btn:hover,
  3708. .btn-group > .btn:focus,
  3709. .btn-group-vertical > .btn:focus,
  3710. .btn-group > .btn:active,
  3711. .btn-group-vertical > .btn:active,
  3712. .btn-group > .btn.active,
  3713. .btn-group-vertical > .btn.active {
  3714. z-index: 2;
  3715. }
  3716. .btn-group .btn + .btn,
  3717. .btn-group .btn + .btn-group,
  3718. .btn-group .btn-group + .btn,
  3719. .btn-group .btn-group + .btn-group {
  3720. margin-left: -1px;
  3721. }
  3722. .btn-toolbar {
  3723. margin-left: -5px;
  3724. }
  3725. .btn-toolbar .btn,
  3726. .btn-toolbar .btn-group,
  3727. .btn-toolbar .input-group {
  3728. float: left;
  3729. }
  3730. .btn-toolbar > .btn,
  3731. .btn-toolbar > .btn-group,
  3732. .btn-toolbar > .input-group {
  3733. margin-left: 5px;
  3734. }
  3735. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3736. border-radius: 0;
  3737. }
  3738. .btn-group > .btn:first-child {
  3739. margin-left: 0;
  3740. }
  3741. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3742. border-bottom-right-radius: 0;
  3743. border-top-right-radius: 0;
  3744. }
  3745. .btn-group > .btn:last-child:not(:first-child),
  3746. .btn-group > .dropdown-toggle:not(:first-child) {
  3747. border-bottom-left-radius: 0;
  3748. border-top-left-radius: 0;
  3749. }
  3750. .btn-group > .btn-group {
  3751. float: left;
  3752. }
  3753. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3754. border-radius: 0;
  3755. }
  3756. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3757. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3758. border-bottom-right-radius: 0;
  3759. border-top-right-radius: 0;
  3760. }
  3761. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3762. border-bottom-left-radius: 0;
  3763. border-top-left-radius: 0;
  3764. }
  3765. .btn-group .dropdown-toggle:active,
  3766. .btn-group.open .dropdown-toggle {
  3767. outline: 0;
  3768. }
  3769. .btn-group > .btn + .dropdown-toggle {
  3770. padding-left: 8px;
  3771. padding-right: 8px;
  3772. }
  3773. .btn-group > .btn-lg + .dropdown-toggle {
  3774. padding-left: 12px;
  3775. padding-right: 12px;
  3776. }
  3777. .btn-group.open .dropdown-toggle {
  3778. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3779. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3780. }
  3781. .btn-group.open .dropdown-toggle.btn-link {
  3782. -webkit-box-shadow: none;
  3783. box-shadow: none;
  3784. }
  3785. .btn .caret {
  3786. margin-left: 0;
  3787. }
  3788. .btn-lg .caret {
  3789. border-width: 5px 5px 0;
  3790. border-bottom-width: 0;
  3791. }
  3792. .dropup .btn-lg .caret {
  3793. border-width: 0 5px 5px;
  3794. }
  3795. .btn-group-vertical > .btn,
  3796. .btn-group-vertical > .btn-group,
  3797. .btn-group-vertical > .btn-group > .btn {
  3798. display: block;
  3799. float: none;
  3800. width: 100%;
  3801. max-width: 100%;
  3802. }
  3803. .btn-group-vertical > .btn-group > .btn {
  3804. float: none;
  3805. }
  3806. .btn-group-vertical > .btn + .btn,
  3807. .btn-group-vertical > .btn + .btn-group,
  3808. .btn-group-vertical > .btn-group + .btn,
  3809. .btn-group-vertical > .btn-group + .btn-group {
  3810. margin-top: -1px;
  3811. margin-left: 0;
  3812. }
  3813. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3814. border-radius: 0;
  3815. }
  3816. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3817. border-top-right-radius: 2px;
  3818. border-top-left-radius: 2px;
  3819. border-bottom-right-radius: 0;
  3820. border-bottom-left-radius: 0;
  3821. }
  3822. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3823. border-top-right-radius: 0;
  3824. border-top-left-radius: 0;
  3825. border-bottom-right-radius: 2px;
  3826. border-bottom-left-radius: 2px;
  3827. }
  3828. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3829. border-radius: 0;
  3830. }
  3831. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3832. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3833. border-bottom-right-radius: 0;
  3834. border-bottom-left-radius: 0;
  3835. }
  3836. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3837. border-top-right-radius: 0;
  3838. border-top-left-radius: 0;
  3839. }
  3840. .btn-group-justified {
  3841. display: table;
  3842. width: 100%;
  3843. table-layout: fixed;
  3844. border-collapse: separate;
  3845. }
  3846. .btn-group-justified > .btn,
  3847. .btn-group-justified > .btn-group {
  3848. float: none;
  3849. display: table-cell;
  3850. width: 1%;
  3851. }
  3852. .btn-group-justified > .btn-group .btn {
  3853. width: 100%;
  3854. }
  3855. .btn-group-justified > .btn-group .dropdown-menu {
  3856. left: auto;
  3857. }
  3858. [data-toggle="buttons"] > .btn input[type="radio"],
  3859. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3860. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3861. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3862. position: absolute;
  3863. clip: rect(0, 0, 0, 0);
  3864. pointer-events: none;
  3865. }
  3866. .input-group {
  3867. position: relative;
  3868. display: table;
  3869. border-collapse: separate;
  3870. }
  3871. .input-group[class*="col-"] {
  3872. float: none;
  3873. padding-left: 0;
  3874. padding-right: 0;
  3875. }
  3876. .input-group .form-control {
  3877. position: relative;
  3878. z-index: 2;
  3879. float: left;
  3880. width: 100%;
  3881. margin-bottom: 0;
  3882. }
  3883. .input-group .form-control:focus {
  3884. z-index: 3;
  3885. }
  3886. .input-group-lg > .form-control,
  3887. .input-group-lg > .input-group-addon,
  3888. .input-group-lg > .input-group-btn > .btn {
  3889. height: 45px;
  3890. padding: 10px 16px;
  3891. font-size: 17px;
  3892. line-height: 1.3333333;
  3893. border-radius: 3px;
  3894. }
  3895. select.input-group-lg > .form-control,
  3896. select.input-group-lg > .input-group-addon,
  3897. select.input-group-lg > .input-group-btn > .btn {
  3898. height: 45px;
  3899. line-height: 45px;
  3900. }
  3901. textarea.input-group-lg > .form-control,
  3902. textarea.input-group-lg > .input-group-addon,
  3903. textarea.input-group-lg > .input-group-btn > .btn,
  3904. select[multiple].input-group-lg > .form-control,
  3905. select[multiple].input-group-lg > .input-group-addon,
  3906. select[multiple].input-group-lg > .input-group-btn > .btn {
  3907. height: auto;
  3908. }
  3909. .input-group-sm > .form-control,
  3910. .input-group-sm > .input-group-addon,
  3911. .input-group-sm > .input-group-btn > .btn {
  3912. height: 30px;
  3913. padding: 5px 10px;
  3914. font-size: 12px;
  3915. line-height: 1.5;
  3916. border-radius: 1px;
  3917. }
  3918. select.input-group-sm > .form-control,
  3919. select.input-group-sm > .input-group-addon,
  3920. select.input-group-sm > .input-group-btn > .btn {
  3921. height: 30px;
  3922. line-height: 30px;
  3923. }
  3924. textarea.input-group-sm > .form-control,
  3925. textarea.input-group-sm > .input-group-addon,
  3926. textarea.input-group-sm > .input-group-btn > .btn,
  3927. select[multiple].input-group-sm > .form-control,
  3928. select[multiple].input-group-sm > .input-group-addon,
  3929. select[multiple].input-group-sm > .input-group-btn > .btn {
  3930. height: auto;
  3931. }
  3932. .input-group-addon,
  3933. .input-group-btn,
  3934. .input-group .form-control {
  3935. display: table-cell;
  3936. }
  3937. .input-group-addon:not(:first-child):not(:last-child),
  3938. .input-group-btn:not(:first-child):not(:last-child),
  3939. .input-group .form-control:not(:first-child):not(:last-child) {
  3940. border-radius: 0;
  3941. }
  3942. .input-group-addon,
  3943. .input-group-btn {
  3944. width: 1%;
  3945. white-space: nowrap;
  3946. vertical-align: middle;
  3947. }
  3948. .input-group-addon {
  3949. padding: 6px 12px;
  3950. font-size: 13px;
  3951. font-weight: normal;
  3952. line-height: 1;
  3953. color: #555555;
  3954. text-align: center;
  3955. background-color: #eeeeee;
  3956. border: 1px solid #ccc;
  3957. border-radius: 2px;
  3958. }
  3959. .input-group-addon.input-sm {
  3960. padding: 5px 10px;
  3961. font-size: 12px;
  3962. border-radius: 1px;
  3963. }
  3964. .input-group-addon.input-lg {
  3965. padding: 10px 16px;
  3966. font-size: 17px;
  3967. border-radius: 3px;
  3968. }
  3969. .input-group-addon input[type="radio"],
  3970. .input-group-addon input[type="checkbox"] {
  3971. margin-top: 0;
  3972. }
  3973. .input-group .form-control:first-child,
  3974. .input-group-addon:first-child,
  3975. .input-group-btn:first-child > .btn,
  3976. .input-group-btn:first-child > .btn-group > .btn,
  3977. .input-group-btn:first-child > .dropdown-toggle,
  3978. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3979. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3980. border-bottom-right-radius: 0;
  3981. border-top-right-radius: 0;
  3982. }
  3983. .input-group-addon:first-child {
  3984. border-right: 0;
  3985. }
  3986. .input-group .form-control:last-child,
  3987. .input-group-addon:last-child,
  3988. .input-group-btn:last-child > .btn,
  3989. .input-group-btn:last-child > .btn-group > .btn,
  3990. .input-group-btn:last-child > .dropdown-toggle,
  3991. .input-group-btn:first-child > .btn:not(:first-child),
  3992. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3993. border-bottom-left-radius: 0;
  3994. border-top-left-radius: 0;
  3995. }
  3996. .input-group-addon:last-child {
  3997. border-left: 0;
  3998. }
  3999. .input-group-btn {
  4000. position: relative;
  4001. font-size: 0;
  4002. white-space: nowrap;
  4003. }
  4004. .input-group-btn > .btn {
  4005. position: relative;
  4006. }
  4007. .input-group-btn > .btn + .btn {
  4008. margin-left: -1px;
  4009. }
  4010. .input-group-btn > .btn:hover,
  4011. .input-group-btn > .btn:focus,
  4012. .input-group-btn > .btn:active {
  4013. z-index: 2;
  4014. }
  4015. .input-group-btn:first-child > .btn,
  4016. .input-group-btn:first-child > .btn-group {
  4017. margin-right: -1px;
  4018. }
  4019. .input-group-btn:last-child > .btn,
  4020. .input-group-btn:last-child > .btn-group {
  4021. z-index: 2;
  4022. margin-left: -1px;
  4023. }
  4024. .nav {
  4025. margin-bottom: 0;
  4026. padding-left: 0;
  4027. list-style: none;
  4028. }
  4029. .nav > li {
  4030. position: relative;
  4031. display: block;
  4032. }
  4033. .nav > li > a {
  4034. position: relative;
  4035. display: block;
  4036. padding: 10px 15px;
  4037. }
  4038. .nav > li > a:hover,
  4039. .nav > li > a:focus {
  4040. text-decoration: none;
  4041. background-color: #eeeeee;
  4042. }
  4043. .nav > li.disabled > a {
  4044. color: #777777;
  4045. }
  4046. .nav > li.disabled > a:hover,
  4047. .nav > li.disabled > a:focus {
  4048. color: #777777;
  4049. text-decoration: none;
  4050. background-color: transparent;
  4051. cursor: not-allowed;
  4052. }
  4053. .nav .open > a,
  4054. .nav .open > a:hover,
  4055. .nav .open > a:focus {
  4056. background-color: #eeeeee;
  4057. border-color: #337ab7;
  4058. }
  4059. .nav .nav-divider {
  4060. height: 1px;
  4061. margin: 8px 0;
  4062. overflow: hidden;
  4063. background-color: #e5e5e5;
  4064. }
  4065. .nav > li > a > img {
  4066. max-width: none;
  4067. }
  4068. .nav-tabs {
  4069. border-bottom: 1px solid #ddd;
  4070. }
  4071. .nav-tabs > li {
  4072. float: left;
  4073. margin-bottom: -1px;
  4074. }
  4075. .nav-tabs > li > a {
  4076. margin-right: 2px;
  4077. line-height: 1.42857143;
  4078. border: 1px solid transparent;
  4079. border-radius: 2px 2px 0 0;
  4080. }
  4081. .nav-tabs > li > a:hover {
  4082. border-color: #eeeeee #eeeeee #ddd;
  4083. }
  4084. .nav-tabs > li.active > a,
  4085. .nav-tabs > li.active > a:hover,
  4086. .nav-tabs > li.active > a:focus {
  4087. color: #555555;
  4088. background-color: #fff;
  4089. border: 1px solid #ddd;
  4090. border-bottom-color: transparent;
  4091. cursor: default;
  4092. }
  4093. .nav-tabs.nav-justified {
  4094. width: 100%;
  4095. border-bottom: 0;
  4096. }
  4097. .nav-tabs.nav-justified > li {
  4098. float: none;
  4099. }
  4100. .nav-tabs.nav-justified > li > a {
  4101. text-align: center;
  4102. margin-bottom: 5px;
  4103. }
  4104. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4105. top: auto;
  4106. left: auto;
  4107. }
  4108. @media (min-width: 768px) {
  4109. .nav-tabs.nav-justified > li {
  4110. display: table-cell;
  4111. width: 1%;
  4112. }
  4113. .nav-tabs.nav-justified > li > a {
  4114. margin-bottom: 0;
  4115. }
  4116. }
  4117. .nav-tabs.nav-justified > li > a {
  4118. margin-right: 0;
  4119. border-radius: 2px;
  4120. }
  4121. .nav-tabs.nav-justified > .active > a,
  4122. .nav-tabs.nav-justified > .active > a:hover,
  4123. .nav-tabs.nav-justified > .active > a:focus {
  4124. border: 1px solid #ddd;
  4125. }
  4126. @media (min-width: 768px) {
  4127. .nav-tabs.nav-justified > li > a {
  4128. border-bottom: 1px solid #ddd;
  4129. border-radius: 2px 2px 0 0;
  4130. }
  4131. .nav-tabs.nav-justified > .active > a,
  4132. .nav-tabs.nav-justified > .active > a:hover,
  4133. .nav-tabs.nav-justified > .active > a:focus {
  4134. border-bottom-color: #fff;
  4135. }
  4136. }
  4137. .nav-pills > li {
  4138. float: left;
  4139. }
  4140. .nav-pills > li > a {
  4141. border-radius: 2px;
  4142. }
  4143. .nav-pills > li + li {
  4144. margin-left: 2px;
  4145. }
  4146. .nav-pills > li.active > a,
  4147. .nav-pills > li.active > a:hover,
  4148. .nav-pills > li.active > a:focus {
  4149. color: #fff;
  4150. background-color: #337ab7;
  4151. }
  4152. .nav-stacked > li {
  4153. float: none;
  4154. }
  4155. .nav-stacked > li + li {
  4156. margin-top: 2px;
  4157. margin-left: 0;
  4158. }
  4159. .nav-justified {
  4160. width: 100%;
  4161. }
  4162. .nav-justified > li {
  4163. float: none;
  4164. }
  4165. .nav-justified > li > a {
  4166. text-align: center;
  4167. margin-bottom: 5px;
  4168. }
  4169. .nav-justified > .dropdown .dropdown-menu {
  4170. top: auto;
  4171. left: auto;
  4172. }
  4173. @media (min-width: 768px) {
  4174. .nav-justified > li {
  4175. display: table-cell;
  4176. width: 1%;
  4177. }
  4178. .nav-justified > li > a {
  4179. margin-bottom: 0;
  4180. }
  4181. }
  4182. .nav-tabs-justified {
  4183. border-bottom: 0;
  4184. }
  4185. .nav-tabs-justified > li > a {
  4186. margin-right: 0;
  4187. border-radius: 2px;
  4188. }
  4189. .nav-tabs-justified > .active > a,
  4190. .nav-tabs-justified > .active > a:hover,
  4191. .nav-tabs-justified > .active > a:focus {
  4192. border: 1px solid #ddd;
  4193. }
  4194. @media (min-width: 768px) {
  4195. .nav-tabs-justified > li > a {
  4196. border-bottom: 1px solid #ddd;
  4197. border-radius: 2px 2px 0 0;
  4198. }
  4199. .nav-tabs-justified > .active > a,
  4200. .nav-tabs-justified > .active > a:hover,
  4201. .nav-tabs-justified > .active > a:focus {
  4202. border-bottom-color: #fff;
  4203. }
  4204. }
  4205. .tab-content > .tab-pane {
  4206. display: none;
  4207. }
  4208. .tab-content > .active {
  4209. display: block;
  4210. }
  4211. .nav-tabs .dropdown-menu {
  4212. margin-top: -1px;
  4213. border-top-right-radius: 0;
  4214. border-top-left-radius: 0;
  4215. }
  4216. .navbar {
  4217. position: relative;
  4218. min-height: 30px;
  4219. margin-bottom: 18px;
  4220. border: 1px solid transparent;
  4221. }
  4222. @media (min-width: 541px) {
  4223. .navbar {
  4224. border-radius: 2px;
  4225. }
  4226. }
  4227. @media (min-width: 541px) {
  4228. .navbar-header {
  4229. float: left;
  4230. }
  4231. }
  4232. .navbar-collapse {
  4233. overflow-x: visible;
  4234. padding-right: 0px;
  4235. padding-left: 0px;
  4236. border-top: 1px solid transparent;
  4237. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4238. -webkit-overflow-scrolling: touch;
  4239. }
  4240. .navbar-collapse.in {
  4241. overflow-y: auto;
  4242. }
  4243. @media (min-width: 541px) {
  4244. .navbar-collapse {
  4245. width: auto;
  4246. border-top: 0;
  4247. box-shadow: none;
  4248. }
  4249. .navbar-collapse.collapse {
  4250. display: block !important;
  4251. height: auto !important;
  4252. padding-bottom: 0;
  4253. overflow: visible !important;
  4254. }
  4255. .navbar-collapse.in {
  4256. overflow-y: visible;
  4257. }
  4258. .navbar-fixed-top .navbar-collapse,
  4259. .navbar-static-top .navbar-collapse,
  4260. .navbar-fixed-bottom .navbar-collapse {
  4261. padding-left: 0;
  4262. padding-right: 0;
  4263. }
  4264. }
  4265. .navbar-fixed-top .navbar-collapse,
  4266. .navbar-fixed-bottom .navbar-collapse {
  4267. max-height: 340px;
  4268. }
  4269. @media (max-device-width: 540px) and (orientation: landscape) {
  4270. .navbar-fixed-top .navbar-collapse,
  4271. .navbar-fixed-bottom .navbar-collapse {
  4272. max-height: 200px;
  4273. }
  4274. }
  4275. .container > .navbar-header,
  4276. .container-fluid > .navbar-header,
  4277. .container > .navbar-collapse,
  4278. .container-fluid > .navbar-collapse {
  4279. margin-right: 0px;
  4280. margin-left: 0px;
  4281. }
  4282. @media (min-width: 541px) {
  4283. .container > .navbar-header,
  4284. .container-fluid > .navbar-header,
  4285. .container > .navbar-collapse,
  4286. .container-fluid > .navbar-collapse {
  4287. margin-right: 0;
  4288. margin-left: 0;
  4289. }
  4290. }
  4291. .navbar-static-top {
  4292. z-index: 1000;
  4293. border-width: 0 0 1px;
  4294. }
  4295. @media (min-width: 541px) {
  4296. .navbar-static-top {
  4297. border-radius: 0;
  4298. }
  4299. }
  4300. .navbar-fixed-top,
  4301. .navbar-fixed-bottom {
  4302. position: fixed;
  4303. right: 0;
  4304. left: 0;
  4305. z-index: 1030;
  4306. }
  4307. @media (min-width: 541px) {
  4308. .navbar-fixed-top,
  4309. .navbar-fixed-bottom {
  4310. border-radius: 0;
  4311. }
  4312. }
  4313. .navbar-fixed-top {
  4314. top: 0;
  4315. border-width: 0 0 1px;
  4316. }
  4317. .navbar-fixed-bottom {
  4318. bottom: 0;
  4319. margin-bottom: 0;
  4320. border-width: 1px 0 0;
  4321. }
  4322. .navbar-brand {
  4323. float: left;
  4324. padding: 6px 0px;
  4325. font-size: 17px;
  4326. line-height: 18px;
  4327. height: 30px;
  4328. }
  4329. .navbar-brand:hover,
  4330. .navbar-brand:focus {
  4331. text-decoration: none;
  4332. }
  4333. .navbar-brand > img {
  4334. display: block;
  4335. }
  4336. @media (min-width: 541px) {
  4337. .navbar > .container .navbar-brand,
  4338. .navbar > .container-fluid .navbar-brand {
  4339. margin-left: 0px;
  4340. }
  4341. }
  4342. .navbar-toggle {
  4343. position: relative;
  4344. float: right;
  4345. margin-right: 0px;
  4346. padding: 9px 10px;
  4347. margin-top: -2px;
  4348. margin-bottom: -2px;
  4349. background-color: transparent;
  4350. background-image: none;
  4351. border: 1px solid transparent;
  4352. border-radius: 2px;
  4353. }
  4354. .navbar-toggle:focus {
  4355. outline: 0;
  4356. }
  4357. .navbar-toggle .icon-bar {
  4358. display: block;
  4359. width: 22px;
  4360. height: 2px;
  4361. border-radius: 1px;
  4362. }
  4363. .navbar-toggle .icon-bar + .icon-bar {
  4364. margin-top: 4px;
  4365. }
  4366. @media (min-width: 541px) {
  4367. .navbar-toggle {
  4368. display: none;
  4369. }
  4370. }
  4371. .navbar-nav {
  4372. margin: 3px 0px;
  4373. }
  4374. .navbar-nav > li > a {
  4375. padding-top: 10px;
  4376. padding-bottom: 10px;
  4377. line-height: 18px;
  4378. }
  4379. @media (max-width: 540px) {
  4380. .navbar-nav .open .dropdown-menu {
  4381. position: static;
  4382. float: none;
  4383. width: auto;
  4384. margin-top: 0;
  4385. background-color: transparent;
  4386. border: 0;
  4387. box-shadow: none;
  4388. }
  4389. .navbar-nav .open .dropdown-menu > li > a,
  4390. .navbar-nav .open .dropdown-menu .dropdown-header {
  4391. padding: 5px 15px 5px 25px;
  4392. }
  4393. .navbar-nav .open .dropdown-menu > li > a {
  4394. line-height: 18px;
  4395. }
  4396. .navbar-nav .open .dropdown-menu > li > a:hover,
  4397. .navbar-nav .open .dropdown-menu > li > a:focus {
  4398. background-image: none;
  4399. }
  4400. }
  4401. @media (min-width: 541px) {
  4402. .navbar-nav {
  4403. float: left;
  4404. margin: 0;
  4405. }
  4406. .navbar-nav > li {
  4407. float: left;
  4408. }
  4409. .navbar-nav > li > a {
  4410. padding-top: 6px;
  4411. padding-bottom: 6px;
  4412. }
  4413. }
  4414. .navbar-form {
  4415. margin-left: 0px;
  4416. margin-right: 0px;
  4417. padding: 10px 0px;
  4418. border-top: 1px solid transparent;
  4419. border-bottom: 1px solid transparent;
  4420. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4421. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4422. margin-top: -1px;
  4423. margin-bottom: -1px;
  4424. }
  4425. @media (min-width: 768px) {
  4426. .navbar-form .form-group {
  4427. display: inline-block;
  4428. margin-bottom: 0;
  4429. vertical-align: middle;
  4430. }
  4431. .navbar-form .form-control {
  4432. display: inline-block;
  4433. width: auto;
  4434. vertical-align: middle;
  4435. }
  4436. .navbar-form .form-control-static {
  4437. display: inline-block;
  4438. }
  4439. .navbar-form .input-group {
  4440. display: inline-table;
  4441. vertical-align: middle;
  4442. }
  4443. .navbar-form .input-group .input-group-addon,
  4444. .navbar-form .input-group .input-group-btn,
  4445. .navbar-form .input-group .form-control {
  4446. width: auto;
  4447. }
  4448. .navbar-form .input-group > .form-control {
  4449. width: 100%;
  4450. }
  4451. .navbar-form .control-label {
  4452. margin-bottom: 0;
  4453. vertical-align: middle;
  4454. }
  4455. .navbar-form .radio,
  4456. .navbar-form .checkbox {
  4457. display: inline-block;
  4458. margin-top: 0;
  4459. margin-bottom: 0;
  4460. vertical-align: middle;
  4461. }
  4462. .navbar-form .radio label,
  4463. .navbar-form .checkbox label {
  4464. padding-left: 0;
  4465. }
  4466. .navbar-form .radio input[type="radio"],
  4467. .navbar-form .checkbox input[type="checkbox"] {
  4468. position: relative;
  4469. margin-left: 0;
  4470. }
  4471. .navbar-form .has-feedback .form-control-feedback {
  4472. top: 0;
  4473. }
  4474. }
  4475. @media (max-width: 540px) {
  4476. .navbar-form .form-group {
  4477. margin-bottom: 5px;
  4478. }
  4479. .navbar-form .form-group:last-child {
  4480. margin-bottom: 0;
  4481. }
  4482. }
  4483. @media (min-width: 541px) {
  4484. .navbar-form {
  4485. width: auto;
  4486. border: 0;
  4487. margin-left: 0;
  4488. margin-right: 0;
  4489. padding-top: 0;
  4490. padding-bottom: 0;
  4491. -webkit-box-shadow: none;
  4492. box-shadow: none;
  4493. }
  4494. }
  4495. .navbar-nav > li > .dropdown-menu {
  4496. margin-top: 0;
  4497. border-top-right-radius: 0;
  4498. border-top-left-radius: 0;
  4499. }
  4500. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4501. margin-bottom: 0;
  4502. border-top-right-radius: 2px;
  4503. border-top-left-radius: 2px;
  4504. border-bottom-right-radius: 0;
  4505. border-bottom-left-radius: 0;
  4506. }
  4507. .navbar-btn {
  4508. margin-top: -1px;
  4509. margin-bottom: -1px;
  4510. }
  4511. .navbar-btn.btn-sm {
  4512. margin-top: 0px;
  4513. margin-bottom: 0px;
  4514. }
  4515. .navbar-btn.btn-xs {
  4516. margin-top: 4px;
  4517. margin-bottom: 4px;
  4518. }
  4519. .navbar-text {
  4520. margin-top: 6px;
  4521. margin-bottom: 6px;
  4522. }
  4523. @media (min-width: 541px) {
  4524. .navbar-text {
  4525. float: left;
  4526. margin-left: 0px;
  4527. margin-right: 0px;
  4528. }
  4529. }
  4530. @media (min-width: 541px) {
  4531. .navbar-left {
  4532. float: left !important;
  4533. float: left;
  4534. }
  4535. .navbar-right {
  4536. float: right !important;
  4537. float: right;
  4538. margin-right: 0px;
  4539. }
  4540. .navbar-right ~ .navbar-right {
  4541. margin-right: 0;
  4542. }
  4543. }
  4544. .navbar-default {
  4545. background-color: #f8f8f8;
  4546. border-color: #e7e7e7;
  4547. }
  4548. .navbar-default .navbar-brand {
  4549. color: #777;
  4550. }
  4551. .navbar-default .navbar-brand:hover,
  4552. .navbar-default .navbar-brand:focus {
  4553. color: #5e5e5e;
  4554. background-color: transparent;
  4555. }
  4556. .navbar-default .navbar-text {
  4557. color: #777;
  4558. }
  4559. .navbar-default .navbar-nav > li > a {
  4560. color: #777;
  4561. }
  4562. .navbar-default .navbar-nav > li > a:hover,
  4563. .navbar-default .navbar-nav > li > a:focus {
  4564. color: #333;
  4565. background-color: transparent;
  4566. }
  4567. .navbar-default .navbar-nav > .active > a,
  4568. .navbar-default .navbar-nav > .active > a:hover,
  4569. .navbar-default .navbar-nav > .active > a:focus {
  4570. color: #555;
  4571. background-color: #e7e7e7;
  4572. }
  4573. .navbar-default .navbar-nav > .disabled > a,
  4574. .navbar-default .navbar-nav > .disabled > a:hover,
  4575. .navbar-default .navbar-nav > .disabled > a:focus {
  4576. color: #ccc;
  4577. background-color: transparent;
  4578. }
  4579. .navbar-default .navbar-toggle {
  4580. border-color: #ddd;
  4581. }
  4582. .navbar-default .navbar-toggle:hover,
  4583. .navbar-default .navbar-toggle:focus {
  4584. background-color: #ddd;
  4585. }
  4586. .navbar-default .navbar-toggle .icon-bar {
  4587. background-color: #888;
  4588. }
  4589. .navbar-default .navbar-collapse,
  4590. .navbar-default .navbar-form {
  4591. border-color: #e7e7e7;
  4592. }
  4593. .navbar-default .navbar-nav > .open > a,
  4594. .navbar-default .navbar-nav > .open > a:hover,
  4595. .navbar-default .navbar-nav > .open > a:focus {
  4596. background-color: #e7e7e7;
  4597. color: #555;
  4598. }
  4599. @media (max-width: 540px) {
  4600. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4601. color: #777;
  4602. }
  4603. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4604. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4605. color: #333;
  4606. background-color: transparent;
  4607. }
  4608. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4609. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4610. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4611. color: #555;
  4612. background-color: #e7e7e7;
  4613. }
  4614. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4615. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4616. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4617. color: #ccc;
  4618. background-color: transparent;
  4619. }
  4620. }
  4621. .navbar-default .navbar-link {
  4622. color: #777;
  4623. }
  4624. .navbar-default .navbar-link:hover {
  4625. color: #333;
  4626. }
  4627. .navbar-default .btn-link {
  4628. color: #777;
  4629. }
  4630. .navbar-default .btn-link:hover,
  4631. .navbar-default .btn-link:focus {
  4632. color: #333;
  4633. }
  4634. .navbar-default .btn-link[disabled]:hover,
  4635. fieldset[disabled] .navbar-default .btn-link:hover,
  4636. .navbar-default .btn-link[disabled]:focus,
  4637. fieldset[disabled] .navbar-default .btn-link:focus {
  4638. color: #ccc;
  4639. }
  4640. .navbar-inverse {
  4641. background-color: #222;
  4642. border-color: #080808;
  4643. }
  4644. .navbar-inverse .navbar-brand {
  4645. color: #9d9d9d;
  4646. }
  4647. .navbar-inverse .navbar-brand:hover,
  4648. .navbar-inverse .navbar-brand:focus {
  4649. color: #fff;
  4650. background-color: transparent;
  4651. }
  4652. .navbar-inverse .navbar-text {
  4653. color: #9d9d9d;
  4654. }
  4655. .navbar-inverse .navbar-nav > li > a {
  4656. color: #9d9d9d;
  4657. }
  4658. .navbar-inverse .navbar-nav > li > a:hover,
  4659. .navbar-inverse .navbar-nav > li > a:focus {
  4660. color: #fff;
  4661. background-color: transparent;
  4662. }
  4663. .navbar-inverse .navbar-nav > .active > a,
  4664. .navbar-inverse .navbar-nav > .active > a:hover,
  4665. .navbar-inverse .navbar-nav > .active > a:focus {
  4666. color: #fff;
  4667. background-color: #080808;
  4668. }
  4669. .navbar-inverse .navbar-nav > .disabled > a,
  4670. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4671. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4672. color: #444;
  4673. background-color: transparent;
  4674. }
  4675. .navbar-inverse .navbar-toggle {
  4676. border-color: #333;
  4677. }
  4678. .navbar-inverse .navbar-toggle:hover,
  4679. .navbar-inverse .navbar-toggle:focus {
  4680. background-color: #333;
  4681. }
  4682. .navbar-inverse .navbar-toggle .icon-bar {
  4683. background-color: #fff;
  4684. }
  4685. .navbar-inverse .navbar-collapse,
  4686. .navbar-inverse .navbar-form {
  4687. border-color: #101010;
  4688. }
  4689. .navbar-inverse .navbar-nav > .open > a,
  4690. .navbar-inverse .navbar-nav > .open > a:hover,
  4691. .navbar-inverse .navbar-nav > .open > a:focus {
  4692. background-color: #080808;
  4693. color: #fff;
  4694. }
  4695. @media (max-width: 540px) {
  4696. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4697. border-color: #080808;
  4698. }
  4699. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4700. background-color: #080808;
  4701. }
  4702. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4703. color: #9d9d9d;
  4704. }
  4705. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4706. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4707. color: #fff;
  4708. background-color: transparent;
  4709. }
  4710. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4711. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4712. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4713. color: #fff;
  4714. background-color: #080808;
  4715. }
  4716. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4717. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4718. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4719. color: #444;
  4720. background-color: transparent;
  4721. }
  4722. }
  4723. .navbar-inverse .navbar-link {
  4724. color: #9d9d9d;
  4725. }
  4726. .navbar-inverse .navbar-link:hover {
  4727. color: #fff;
  4728. }
  4729. .navbar-inverse .btn-link {
  4730. color: #9d9d9d;
  4731. }
  4732. .navbar-inverse .btn-link:hover,
  4733. .navbar-inverse .btn-link:focus {
  4734. color: #fff;
  4735. }
  4736. .navbar-inverse .btn-link[disabled]:hover,
  4737. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4738. .navbar-inverse .btn-link[disabled]:focus,
  4739. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4740. color: #444;
  4741. }
  4742. .breadcrumb {
  4743. padding: 8px 15px;
  4744. margin-bottom: 18px;
  4745. list-style: none;
  4746. background-color: #f5f5f5;
  4747. border-radius: 2px;
  4748. }
  4749. .breadcrumb > li {
  4750. display: inline-block;
  4751. }
  4752. .breadcrumb > li + li:before {
  4753. content: "/\00a0";
  4754. padding: 0 5px;
  4755. color: #5e5e5e;
  4756. }
  4757. .breadcrumb > .active {
  4758. color: #777777;
  4759. }
  4760. .pagination {
  4761. display: inline-block;
  4762. padding-left: 0;
  4763. margin: 18px 0;
  4764. border-radius: 2px;
  4765. }
  4766. .pagination > li {
  4767. display: inline;
  4768. }
  4769. .pagination > li > a,
  4770. .pagination > li > span {
  4771. position: relative;
  4772. float: left;
  4773. padding: 6px 12px;
  4774. line-height: 1.42857143;
  4775. text-decoration: none;
  4776. color: #337ab7;
  4777. background-color: #fff;
  4778. border: 1px solid #ddd;
  4779. margin-left: -1px;
  4780. }
  4781. .pagination > li:first-child > a,
  4782. .pagination > li:first-child > span {
  4783. margin-left: 0;
  4784. border-bottom-left-radius: 2px;
  4785. border-top-left-radius: 2px;
  4786. }
  4787. .pagination > li:last-child > a,
  4788. .pagination > li:last-child > span {
  4789. border-bottom-right-radius: 2px;
  4790. border-top-right-radius: 2px;
  4791. }
  4792. .pagination > li > a:hover,
  4793. .pagination > li > span:hover,
  4794. .pagination > li > a:focus,
  4795. .pagination > li > span:focus {
  4796. z-index: 2;
  4797. color: #23527c;
  4798. background-color: #eeeeee;
  4799. border-color: #ddd;
  4800. }
  4801. .pagination > .active > a,
  4802. .pagination > .active > span,
  4803. .pagination > .active > a:hover,
  4804. .pagination > .active > span:hover,
  4805. .pagination > .active > a:focus,
  4806. .pagination > .active > span:focus {
  4807. z-index: 3;
  4808. color: #fff;
  4809. background-color: #337ab7;
  4810. border-color: #337ab7;
  4811. cursor: default;
  4812. }
  4813. .pagination > .disabled > span,
  4814. .pagination > .disabled > span:hover,
  4815. .pagination > .disabled > span:focus,
  4816. .pagination > .disabled > a,
  4817. .pagination > .disabled > a:hover,
  4818. .pagination > .disabled > a:focus {
  4819. color: #777777;
  4820. background-color: #fff;
  4821. border-color: #ddd;
  4822. cursor: not-allowed;
  4823. }
  4824. .pagination-lg > li > a,
  4825. .pagination-lg > li > span {
  4826. padding: 10px 16px;
  4827. font-size: 17px;
  4828. line-height: 1.3333333;
  4829. }
  4830. .pagination-lg > li:first-child > a,
  4831. .pagination-lg > li:first-child > span {
  4832. border-bottom-left-radius: 3px;
  4833. border-top-left-radius: 3px;
  4834. }
  4835. .pagination-lg > li:last-child > a,
  4836. .pagination-lg > li:last-child > span {
  4837. border-bottom-right-radius: 3px;
  4838. border-top-right-radius: 3px;
  4839. }
  4840. .pagination-sm > li > a,
  4841. .pagination-sm > li > span {
  4842. padding: 5px 10px;
  4843. font-size: 12px;
  4844. line-height: 1.5;
  4845. }
  4846. .pagination-sm > li:first-child > a,
  4847. .pagination-sm > li:first-child > span {
  4848. border-bottom-left-radius: 1px;
  4849. border-top-left-radius: 1px;
  4850. }
  4851. .pagination-sm > li:last-child > a,
  4852. .pagination-sm > li:last-child > span {
  4853. border-bottom-right-radius: 1px;
  4854. border-top-right-radius: 1px;
  4855. }
  4856. .pager {
  4857. padding-left: 0;
  4858. margin: 18px 0;
  4859. list-style: none;
  4860. text-align: center;
  4861. }
  4862. .pager li {
  4863. display: inline;
  4864. }
  4865. .pager li > a,
  4866. .pager li > span {
  4867. display: inline-block;
  4868. padding: 5px 14px;
  4869. background-color: #fff;
  4870. border: 1px solid #ddd;
  4871. border-radius: 15px;
  4872. }
  4873. .pager li > a:hover,
  4874. .pager li > a:focus {
  4875. text-decoration: none;
  4876. background-color: #eeeeee;
  4877. }
  4878. .pager .next > a,
  4879. .pager .next > span {
  4880. float: right;
  4881. }
  4882. .pager .previous > a,
  4883. .pager .previous > span {
  4884. float: left;
  4885. }
  4886. .pager .disabled > a,
  4887. .pager .disabled > a:hover,
  4888. .pager .disabled > a:focus,
  4889. .pager .disabled > span {
  4890. color: #777777;
  4891. background-color: #fff;
  4892. cursor: not-allowed;
  4893. }
  4894. .label {
  4895. display: inline;
  4896. padding: .2em .6em .3em;
  4897. font-size: 75%;
  4898. font-weight: bold;
  4899. line-height: 1;
  4900. color: #fff;
  4901. text-align: center;
  4902. white-space: nowrap;
  4903. vertical-align: baseline;
  4904. border-radius: .25em;
  4905. }
  4906. a.label:hover,
  4907. a.label:focus {
  4908. color: #fff;
  4909. text-decoration: none;
  4910. cursor: pointer;
  4911. }
  4912. .label:empty {
  4913. display: none;
  4914. }
  4915. .btn .label {
  4916. position: relative;
  4917. top: -1px;
  4918. }
  4919. .label-default {
  4920. background-color: #777777;
  4921. }
  4922. .label-default[href]:hover,
  4923. .label-default[href]:focus {
  4924. background-color: #5e5e5e;
  4925. }
  4926. .label-primary {
  4927. background-color: #337ab7;
  4928. }
  4929. .label-primary[href]:hover,
  4930. .label-primary[href]:focus {
  4931. background-color: #286090;
  4932. }
  4933. .label-success {
  4934. background-color: #5cb85c;
  4935. }
  4936. .label-success[href]:hover,
  4937. .label-success[href]:focus {
  4938. background-color: #449d44;
  4939. }
  4940. .label-info {
  4941. background-color: #5bc0de;
  4942. }
  4943. .label-info[href]:hover,
  4944. .label-info[href]:focus {
  4945. background-color: #31b0d5;
  4946. }
  4947. .label-warning {
  4948. background-color: #f0ad4e;
  4949. }
  4950. .label-warning[href]:hover,
  4951. .label-warning[href]:focus {
  4952. background-color: #ec971f;
  4953. }
  4954. .label-danger {
  4955. background-color: #d9534f;
  4956. }
  4957. .label-danger[href]:hover,
  4958. .label-danger[href]:focus {
  4959. background-color: #c9302c;
  4960. }
  4961. .badge {
  4962. display: inline-block;
  4963. min-width: 10px;
  4964. padding: 3px 7px;
  4965. font-size: 12px;
  4966. font-weight: bold;
  4967. color: #fff;
  4968. line-height: 1;
  4969. vertical-align: middle;
  4970. white-space: nowrap;
  4971. text-align: center;
  4972. background-color: #777777;
  4973. border-radius: 10px;
  4974. }
  4975. .badge:empty {
  4976. display: none;
  4977. }
  4978. .btn .badge {
  4979. position: relative;
  4980. top: -1px;
  4981. }
  4982. .btn-xs .badge,
  4983. .btn-group-xs > .btn .badge {
  4984. top: 0;
  4985. padding: 1px 5px;
  4986. }
  4987. a.badge:hover,
  4988. a.badge:focus {
  4989. color: #fff;
  4990. text-decoration: none;
  4991. cursor: pointer;
  4992. }
  4993. .list-group-item.active > .badge,
  4994. .nav-pills > .active > a > .badge {
  4995. color: #337ab7;
  4996. background-color: #fff;
  4997. }
  4998. .list-group-item > .badge {
  4999. float: right;
  5000. }
  5001. .list-group-item > .badge + .badge {
  5002. margin-right: 5px;
  5003. }
  5004. .nav-pills > li > a > .badge {
  5005. margin-left: 3px;
  5006. }
  5007. .jumbotron {
  5008. padding-top: 30px;
  5009. padding-bottom: 30px;
  5010. margin-bottom: 30px;
  5011. color: inherit;
  5012. background-color: #eeeeee;
  5013. }
  5014. .jumbotron h1,
  5015. .jumbotron .h1 {
  5016. color: inherit;
  5017. }
  5018. .jumbotron p {
  5019. margin-bottom: 15px;
  5020. font-size: 20px;
  5021. font-weight: 200;
  5022. }
  5023. .jumbotron > hr {
  5024. border-top-color: #d5d5d5;
  5025. }
  5026. .container .jumbotron,
  5027. .container-fluid .jumbotron {
  5028. border-radius: 3px;
  5029. padding-left: 0px;
  5030. padding-right: 0px;
  5031. }
  5032. .jumbotron .container {
  5033. max-width: 100%;
  5034. }
  5035. @media screen and (min-width: 768px) {
  5036. .jumbotron {
  5037. padding-top: 48px;
  5038. padding-bottom: 48px;
  5039. }
  5040. .container .jumbotron,
  5041. .container-fluid .jumbotron {
  5042. padding-left: 60px;
  5043. padding-right: 60px;
  5044. }
  5045. .jumbotron h1,
  5046. .jumbotron .h1 {
  5047. font-size: 59px;
  5048. }
  5049. }
  5050. .thumbnail {
  5051. display: block;
  5052. padding: 4px;
  5053. margin-bottom: 18px;
  5054. line-height: 1.42857143;
  5055. background-color: #fff;
  5056. border: 1px solid #ddd;
  5057. border-radius: 2px;
  5058. -webkit-transition: border 0.2s ease-in-out;
  5059. -o-transition: border 0.2s ease-in-out;
  5060. transition: border 0.2s ease-in-out;
  5061. }
  5062. .thumbnail > img,
  5063. .thumbnail a > img {
  5064. margin-left: auto;
  5065. margin-right: auto;
  5066. }
  5067. a.thumbnail:hover,
  5068. a.thumbnail:focus,
  5069. a.thumbnail.active {
  5070. border-color: #337ab7;
  5071. }
  5072. .thumbnail .caption {
  5073. padding: 9px;
  5074. color: #000;
  5075. }
  5076. .alert {
  5077. padding: 15px;
  5078. margin-bottom: 18px;
  5079. border: 1px solid transparent;
  5080. border-radius: 2px;
  5081. }
  5082. .alert h4 {
  5083. margin-top: 0;
  5084. color: inherit;
  5085. }
  5086. .alert .alert-link {
  5087. font-weight: bold;
  5088. }
  5089. .alert > p,
  5090. .alert > ul {
  5091. margin-bottom: 0;
  5092. }
  5093. .alert > p + p {
  5094. margin-top: 5px;
  5095. }
  5096. .alert-dismissable,
  5097. .alert-dismissible {
  5098. padding-right: 35px;
  5099. }
  5100. .alert-dismissable .close,
  5101. .alert-dismissible .close {
  5102. position: relative;
  5103. top: -2px;
  5104. right: -21px;
  5105. color: inherit;
  5106. }
  5107. .alert-success {
  5108. background-color: #dff0d8;
  5109. border-color: #d6e9c6;
  5110. color: #3c763d;
  5111. }
  5112. .alert-success hr {
  5113. border-top-color: #c9e2b3;
  5114. }
  5115. .alert-success .alert-link {
  5116. color: #2b542c;
  5117. }
  5118. .alert-info {
  5119. background-color: #d9edf7;
  5120. border-color: #bce8f1;
  5121. color: #31708f;
  5122. }
  5123. .alert-info hr {
  5124. border-top-color: #a6e1ec;
  5125. }
  5126. .alert-info .alert-link {
  5127. color: #245269;
  5128. }
  5129. .alert-warning {
  5130. background-color: #fcf8e3;
  5131. border-color: #faebcc;
  5132. color: #8a6d3b;
  5133. }
  5134. .alert-warning hr {
  5135. border-top-color: #f7e1b5;
  5136. }
  5137. .alert-warning .alert-link {
  5138. color: #66512c;
  5139. }
  5140. .alert-danger {
  5141. background-color: #f2dede;
  5142. border-color: #ebccd1;
  5143. color: #a94442;
  5144. }
  5145. .alert-danger hr {
  5146. border-top-color: #e4b9c0;
  5147. }
  5148. .alert-danger .alert-link {
  5149. color: #843534;
  5150. }
  5151. @-webkit-keyframes progress-bar-stripes {
  5152. from {
  5153. background-position: 40px 0;
  5154. }
  5155. to {
  5156. background-position: 0 0;
  5157. }
  5158. }
  5159. @keyframes progress-bar-stripes {
  5160. from {
  5161. background-position: 40px 0;
  5162. }
  5163. to {
  5164. background-position: 0 0;
  5165. }
  5166. }
  5167. .progress {
  5168. overflow: hidden;
  5169. height: 18px;
  5170. margin-bottom: 18px;
  5171. background-color: #f5f5f5;
  5172. border-radius: 2px;
  5173. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5174. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5175. }
  5176. .progress-bar {
  5177. float: left;
  5178. width: 0%;
  5179. height: 100%;
  5180. font-size: 12px;
  5181. line-height: 18px;
  5182. color: #fff;
  5183. text-align: center;
  5184. background-color: #337ab7;
  5185. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5186. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5187. -webkit-transition: width 0.6s ease;
  5188. -o-transition: width 0.6s ease;
  5189. transition: width 0.6s ease;
  5190. }
  5191. .progress-striped .progress-bar,
  5192. .progress-bar-striped {
  5193. 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);
  5194. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5195. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5196. background-size: 40px 40px;
  5197. }
  5198. .progress.active .progress-bar,
  5199. .progress-bar.active {
  5200. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5201. -o-animation: progress-bar-stripes 2s linear infinite;
  5202. animation: progress-bar-stripes 2s linear infinite;
  5203. }
  5204. .progress-bar-success {
  5205. background-color: #5cb85c;
  5206. }
  5207. .progress-striped .progress-bar-success {
  5208. 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);
  5209. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5210. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5211. }
  5212. .progress-bar-info {
  5213. background-color: #5bc0de;
  5214. }
  5215. .progress-striped .progress-bar-info {
  5216. 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);
  5217. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5218. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5219. }
  5220. .progress-bar-warning {
  5221. background-color: #f0ad4e;
  5222. }
  5223. .progress-striped .progress-bar-warning {
  5224. 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);
  5225. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5226. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5227. }
  5228. .progress-bar-danger {
  5229. background-color: #d9534f;
  5230. }
  5231. .progress-striped .progress-bar-danger {
  5232. 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);
  5233. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5234. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5235. }
  5236. .media {
  5237. margin-top: 15px;
  5238. }
  5239. .media:first-child {
  5240. margin-top: 0;
  5241. }
  5242. .media,
  5243. .media-body {
  5244. zoom: 1;
  5245. overflow: hidden;
  5246. }
  5247. .media-body {
  5248. width: 10000px;
  5249. }
  5250. .media-object {
  5251. display: block;
  5252. }
  5253. .media-object.img-thumbnail {
  5254. max-width: none;
  5255. }
  5256. .media-right,
  5257. .media > .pull-right {
  5258. padding-left: 10px;
  5259. }
  5260. .media-left,
  5261. .media > .pull-left {
  5262. padding-right: 10px;
  5263. }
  5264. .media-left,
  5265. .media-right,
  5266. .media-body {
  5267. display: table-cell;
  5268. vertical-align: top;
  5269. }
  5270. .media-middle {
  5271. vertical-align: middle;
  5272. }
  5273. .media-bottom {
  5274. vertical-align: bottom;
  5275. }
  5276. .media-heading {
  5277. margin-top: 0;
  5278. margin-bottom: 5px;
  5279. }
  5280. .media-list {
  5281. padding-left: 0;
  5282. list-style: none;
  5283. }
  5284. .list-group {
  5285. margin-bottom: 20px;
  5286. padding-left: 0;
  5287. }
  5288. .list-group-item {
  5289. position: relative;
  5290. display: block;
  5291. padding: 10px 15px;
  5292. margin-bottom: -1px;
  5293. background-color: #fff;
  5294. border: 1px solid #ddd;
  5295. }
  5296. .list-group-item:first-child {
  5297. border-top-right-radius: 2px;
  5298. border-top-left-radius: 2px;
  5299. }
  5300. .list-group-item:last-child {
  5301. margin-bottom: 0;
  5302. border-bottom-right-radius: 2px;
  5303. border-bottom-left-radius: 2px;
  5304. }
  5305. a.list-group-item,
  5306. button.list-group-item {
  5307. color: #555;
  5308. }
  5309. a.list-group-item .list-group-item-heading,
  5310. button.list-group-item .list-group-item-heading {
  5311. color: #333;
  5312. }
  5313. a.list-group-item:hover,
  5314. button.list-group-item:hover,
  5315. a.list-group-item:focus,
  5316. button.list-group-item:focus {
  5317. text-decoration: none;
  5318. color: #555;
  5319. background-color: #f5f5f5;
  5320. }
  5321. button.list-group-item {
  5322. width: 100%;
  5323. text-align: left;
  5324. }
  5325. .list-group-item.disabled,
  5326. .list-group-item.disabled:hover,
  5327. .list-group-item.disabled:focus {
  5328. background-color: #eeeeee;
  5329. color: #777777;
  5330. cursor: not-allowed;
  5331. }
  5332. .list-group-item.disabled .list-group-item-heading,
  5333. .list-group-item.disabled:hover .list-group-item-heading,
  5334. .list-group-item.disabled:focus .list-group-item-heading {
  5335. color: inherit;
  5336. }
  5337. .list-group-item.disabled .list-group-item-text,
  5338. .list-group-item.disabled:hover .list-group-item-text,
  5339. .list-group-item.disabled:focus .list-group-item-text {
  5340. color: #777777;
  5341. }
  5342. .list-group-item.active,
  5343. .list-group-item.active:hover,
  5344. .list-group-item.active:focus {
  5345. z-index: 2;
  5346. color: #fff;
  5347. background-color: #337ab7;
  5348. border-color: #337ab7;
  5349. }
  5350. .list-group-item.active .list-group-item-heading,
  5351. .list-group-item.active:hover .list-group-item-heading,
  5352. .list-group-item.active:focus .list-group-item-heading,
  5353. .list-group-item.active .list-group-item-heading > small,
  5354. .list-group-item.active:hover .list-group-item-heading > small,
  5355. .list-group-item.active:focus .list-group-item-heading > small,
  5356. .list-group-item.active .list-group-item-heading > .small,
  5357. .list-group-item.active:hover .list-group-item-heading > .small,
  5358. .list-group-item.active:focus .list-group-item-heading > .small {
  5359. color: inherit;
  5360. }
  5361. .list-group-item.active .list-group-item-text,
  5362. .list-group-item.active:hover .list-group-item-text,
  5363. .list-group-item.active:focus .list-group-item-text {
  5364. color: #c7ddef;
  5365. }
  5366. .list-group-item-success {
  5367. color: #3c763d;
  5368. background-color: #dff0d8;
  5369. }
  5370. a.list-group-item-success,
  5371. button.list-group-item-success {
  5372. color: #3c763d;
  5373. }
  5374. a.list-group-item-success .list-group-item-heading,
  5375. button.list-group-item-success .list-group-item-heading {
  5376. color: inherit;
  5377. }
  5378. a.list-group-item-success:hover,
  5379. button.list-group-item-success:hover,
  5380. a.list-group-item-success:focus,
  5381. button.list-group-item-success:focus {
  5382. color: #3c763d;
  5383. background-color: #d0e9c6;
  5384. }
  5385. a.list-group-item-success.active,
  5386. button.list-group-item-success.active,
  5387. a.list-group-item-success.active:hover,
  5388. button.list-group-item-success.active:hover,
  5389. a.list-group-item-success.active:focus,
  5390. button.list-group-item-success.active:focus {
  5391. color: #fff;
  5392. background-color: #3c763d;
  5393. border-color: #3c763d;
  5394. }
  5395. .list-group-item-info {
  5396. color: #31708f;
  5397. background-color: #d9edf7;
  5398. }
  5399. a.list-group-item-info,
  5400. button.list-group-item-info {
  5401. color: #31708f;
  5402. }
  5403. a.list-group-item-info .list-group-item-heading,
  5404. button.list-group-item-info .list-group-item-heading {
  5405. color: inherit;
  5406. }
  5407. a.list-group-item-info:hover,
  5408. button.list-group-item-info:hover,
  5409. a.list-group-item-info:focus,
  5410. button.list-group-item-info:focus {
  5411. color: #31708f;
  5412. background-color: #c4e3f3;
  5413. }
  5414. a.list-group-item-info.active,
  5415. button.list-group-item-info.active,
  5416. a.list-group-item-info.active:hover,
  5417. button.list-group-item-info.active:hover,
  5418. a.list-group-item-info.active:focus,
  5419. button.list-group-item-info.active:focus {
  5420. color: #fff;
  5421. background-color: #31708f;
  5422. border-color: #31708f;
  5423. }
  5424. .list-group-item-warning {
  5425. color: #8a6d3b;
  5426. background-color: #fcf8e3;
  5427. }
  5428. a.list-group-item-warning,
  5429. button.list-group-item-warning {
  5430. color: #8a6d3b;
  5431. }
  5432. a.list-group-item-warning .list-group-item-heading,
  5433. button.list-group-item-warning .list-group-item-heading {
  5434. color: inherit;
  5435. }
  5436. a.list-group-item-warning:hover,
  5437. button.list-group-item-warning:hover,
  5438. a.list-group-item-warning:focus,
  5439. button.list-group-item-warning:focus {
  5440. color: #8a6d3b;
  5441. background-color: #faf2cc;
  5442. }
  5443. a.list-group-item-warning.active,
  5444. button.list-group-item-warning.active,
  5445. a.list-group-item-warning.active:hover,
  5446. button.list-group-item-warning.active:hover,
  5447. a.list-group-item-warning.active:focus,
  5448. button.list-group-item-warning.active:focus {
  5449. color: #fff;
  5450. background-color: #8a6d3b;
  5451. border-color: #8a6d3b;
  5452. }
  5453. .list-group-item-danger {
  5454. color: #a94442;
  5455. background-color: #f2dede;
  5456. }
  5457. a.list-group-item-danger,
  5458. button.list-group-item-danger {
  5459. color: #a94442;
  5460. }
  5461. a.list-group-item-danger .list-group-item-heading,
  5462. button.list-group-item-danger .list-group-item-heading {
  5463. color: inherit;
  5464. }
  5465. a.list-group-item-danger:hover,
  5466. button.list-group-item-danger:hover,
  5467. a.list-group-item-danger:focus,
  5468. button.list-group-item-danger:focus {
  5469. color: #a94442;
  5470. background-color: #ebcccc;
  5471. }
  5472. a.list-group-item-danger.active,
  5473. button.list-group-item-danger.active,
  5474. a.list-group-item-danger.active:hover,
  5475. button.list-group-item-danger.active:hover,
  5476. a.list-group-item-danger.active:focus,
  5477. button.list-group-item-danger.active:focus {
  5478. color: #fff;
  5479. background-color: #a94442;
  5480. border-color: #a94442;
  5481. }
  5482. .list-group-item-heading {
  5483. margin-top: 0;
  5484. margin-bottom: 5px;
  5485. }
  5486. .list-group-item-text {
  5487. margin-bottom: 0;
  5488. line-height: 1.3;
  5489. }
  5490. .panel {
  5491. margin-bottom: 18px;
  5492. background-color: #fff;
  5493. border: 1px solid transparent;
  5494. border-radius: 2px;
  5495. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5496. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5497. }
  5498. .panel-body {
  5499. padding: 15px;
  5500. }
  5501. .panel-heading {
  5502. padding: 10px 15px;
  5503. border-bottom: 1px solid transparent;
  5504. border-top-right-radius: 1px;
  5505. border-top-left-radius: 1px;
  5506. }
  5507. .panel-heading > .dropdown .dropdown-toggle {
  5508. color: inherit;
  5509. }
  5510. .panel-title {
  5511. margin-top: 0;
  5512. margin-bottom: 0;
  5513. font-size: 15px;
  5514. color: inherit;
  5515. }
  5516. .panel-title > a,
  5517. .panel-title > small,
  5518. .panel-title > .small,
  5519. .panel-title > small > a,
  5520. .panel-title > .small > a {
  5521. color: inherit;
  5522. }
  5523. .panel-footer {
  5524. padding: 10px 15px;
  5525. background-color: #f5f5f5;
  5526. border-top: 1px solid #ddd;
  5527. border-bottom-right-radius: 1px;
  5528. border-bottom-left-radius: 1px;
  5529. }
  5530. .panel > .list-group,
  5531. .panel > .panel-collapse > .list-group {
  5532. margin-bottom: 0;
  5533. }
  5534. .panel > .list-group .list-group-item,
  5535. .panel > .panel-collapse > .list-group .list-group-item {
  5536. border-width: 1px 0;
  5537. border-radius: 0;
  5538. }
  5539. .panel > .list-group:first-child .list-group-item:first-child,
  5540. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5541. border-top: 0;
  5542. border-top-right-radius: 1px;
  5543. border-top-left-radius: 1px;
  5544. }
  5545. .panel > .list-group:last-child .list-group-item:last-child,
  5546. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5547. border-bottom: 0;
  5548. border-bottom-right-radius: 1px;
  5549. border-bottom-left-radius: 1px;
  5550. }
  5551. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5552. border-top-right-radius: 0;
  5553. border-top-left-radius: 0;
  5554. }
  5555. .panel-heading + .list-group .list-group-item:first-child {
  5556. border-top-width: 0;
  5557. }
  5558. .list-group + .panel-footer {
  5559. border-top-width: 0;
  5560. }
  5561. .panel > .table,
  5562. .panel > .table-responsive > .table,
  5563. .panel > .panel-collapse > .table {
  5564. margin-bottom: 0;
  5565. }
  5566. .panel > .table caption,
  5567. .panel > .table-responsive > .table caption,
  5568. .panel > .panel-collapse > .table caption {
  5569. padding-left: 15px;
  5570. padding-right: 15px;
  5571. }
  5572. .panel > .table:first-child,
  5573. .panel > .table-responsive:first-child > .table:first-child {
  5574. border-top-right-radius: 1px;
  5575. border-top-left-radius: 1px;
  5576. }
  5577. .panel > .table:first-child > thead:first-child > tr:first-child,
  5578. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5579. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5580. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5581. border-top-left-radius: 1px;
  5582. border-top-right-radius: 1px;
  5583. }
  5584. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5585. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5586. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5587. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5588. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5589. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5590. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5591. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5592. border-top-left-radius: 1px;
  5593. }
  5594. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5595. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5596. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5597. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5598. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5599. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5600. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5601. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5602. border-top-right-radius: 1px;
  5603. }
  5604. .panel > .table:last-child,
  5605. .panel > .table-responsive:last-child > .table:last-child {
  5606. border-bottom-right-radius: 1px;
  5607. border-bottom-left-radius: 1px;
  5608. }
  5609. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5610. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5611. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5612. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5613. border-bottom-left-radius: 1px;
  5614. border-bottom-right-radius: 1px;
  5615. }
  5616. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5617. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5618. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5619. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5620. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5621. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5622. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5623. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5624. border-bottom-left-radius: 1px;
  5625. }
  5626. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5627. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5628. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5629. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5630. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5631. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5632. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5633. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5634. border-bottom-right-radius: 1px;
  5635. }
  5636. .panel > .panel-body + .table,
  5637. .panel > .panel-body + .table-responsive,
  5638. .panel > .table + .panel-body,
  5639. .panel > .table-responsive + .panel-body {
  5640. border-top: 1px solid #ddd;
  5641. }
  5642. .panel > .table > tbody:first-child > tr:first-child th,
  5643. .panel > .table > tbody:first-child > tr:first-child td {
  5644. border-top: 0;
  5645. }
  5646. .panel > .table-bordered,
  5647. .panel > .table-responsive > .table-bordered {
  5648. border: 0;
  5649. }
  5650. .panel > .table-bordered > thead > tr > th:first-child,
  5651. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5652. .panel > .table-bordered > tbody > tr > th:first-child,
  5653. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5654. .panel > .table-bordered > tfoot > tr > th:first-child,
  5655. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5656. .panel > .table-bordered > thead > tr > td:first-child,
  5657. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5658. .panel > .table-bordered > tbody > tr > td:first-child,
  5659. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5660. .panel > .table-bordered > tfoot > tr > td:first-child,
  5661. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5662. border-left: 0;
  5663. }
  5664. .panel > .table-bordered > thead > tr > th:last-child,
  5665. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5666. .panel > .table-bordered > tbody > tr > th:last-child,
  5667. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5668. .panel > .table-bordered > tfoot > tr > th:last-child,
  5669. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5670. .panel > .table-bordered > thead > tr > td:last-child,
  5671. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5672. .panel > .table-bordered > tbody > tr > td:last-child,
  5673. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5674. .panel > .table-bordered > tfoot > tr > td:last-child,
  5675. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5676. border-right: 0;
  5677. }
  5678. .panel > .table-bordered > thead > tr:first-child > td,
  5679. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5680. .panel > .table-bordered > tbody > tr:first-child > td,
  5681. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5682. .panel > .table-bordered > thead > tr:first-child > th,
  5683. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5684. .panel > .table-bordered > tbody > tr:first-child > th,
  5685. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5686. border-bottom: 0;
  5687. }
  5688. .panel > .table-bordered > tbody > tr:last-child > td,
  5689. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5690. .panel > .table-bordered > tfoot > tr:last-child > td,
  5691. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5692. .panel > .table-bordered > tbody > tr:last-child > th,
  5693. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5694. .panel > .table-bordered > tfoot > tr:last-child > th,
  5695. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5696. border-bottom: 0;
  5697. }
  5698. .panel > .table-responsive {
  5699. border: 0;
  5700. margin-bottom: 0;
  5701. }
  5702. .panel-group {
  5703. margin-bottom: 18px;
  5704. }
  5705. .panel-group .panel {
  5706. margin-bottom: 0;
  5707. border-radius: 2px;
  5708. }
  5709. .panel-group .panel + .panel {
  5710. margin-top: 5px;
  5711. }
  5712. .panel-group .panel-heading {
  5713. border-bottom: 0;
  5714. }
  5715. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5716. .panel-group .panel-heading + .panel-collapse > .list-group {
  5717. border-top: 1px solid #ddd;
  5718. }
  5719. .panel-group .panel-footer {
  5720. border-top: 0;
  5721. }
  5722. .panel-group .panel-footer + .panel-collapse .panel-body {
  5723. border-bottom: 1px solid #ddd;
  5724. }
  5725. .panel-default {
  5726. border-color: #ddd;
  5727. }
  5728. .panel-default > .panel-heading {
  5729. color: #333333;
  5730. background-color: #f5f5f5;
  5731. border-color: #ddd;
  5732. }
  5733. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5734. border-top-color: #ddd;
  5735. }
  5736. .panel-default > .panel-heading .badge {
  5737. color: #f5f5f5;
  5738. background-color: #333333;
  5739. }
  5740. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5741. border-bottom-color: #ddd;
  5742. }
  5743. .panel-primary {
  5744. border-color: #337ab7;
  5745. }
  5746. .panel-primary > .panel-heading {
  5747. color: #fff;
  5748. background-color: #337ab7;
  5749. border-color: #337ab7;
  5750. }
  5751. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5752. border-top-color: #337ab7;
  5753. }
  5754. .panel-primary > .panel-heading .badge {
  5755. color: #337ab7;
  5756. background-color: #fff;
  5757. }
  5758. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5759. border-bottom-color: #337ab7;
  5760. }
  5761. .panel-success {
  5762. border-color: #d6e9c6;
  5763. }
  5764. .panel-success > .panel-heading {
  5765. color: #3c763d;
  5766. background-color: #dff0d8;
  5767. border-color: #d6e9c6;
  5768. }
  5769. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5770. border-top-color: #d6e9c6;
  5771. }
  5772. .panel-success > .panel-heading .badge {
  5773. color: #dff0d8;
  5774. background-color: #3c763d;
  5775. }
  5776. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5777. border-bottom-color: #d6e9c6;
  5778. }
  5779. .panel-info {
  5780. border-color: #bce8f1;
  5781. }
  5782. .panel-info > .panel-heading {
  5783. color: #31708f;
  5784. background-color: #d9edf7;
  5785. border-color: #bce8f1;
  5786. }
  5787. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5788. border-top-color: #bce8f1;
  5789. }
  5790. .panel-info > .panel-heading .badge {
  5791. color: #d9edf7;
  5792. background-color: #31708f;
  5793. }
  5794. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5795. border-bottom-color: #bce8f1;
  5796. }
  5797. .panel-warning {
  5798. border-color: #faebcc;
  5799. }
  5800. .panel-warning > .panel-heading {
  5801. color: #8a6d3b;
  5802. background-color: #fcf8e3;
  5803. border-color: #faebcc;
  5804. }
  5805. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5806. border-top-color: #faebcc;
  5807. }
  5808. .panel-warning > .panel-heading .badge {
  5809. color: #fcf8e3;
  5810. background-color: #8a6d3b;
  5811. }
  5812. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5813. border-bottom-color: #faebcc;
  5814. }
  5815. .panel-danger {
  5816. border-color: #ebccd1;
  5817. }
  5818. .panel-danger > .panel-heading {
  5819. color: #a94442;
  5820. background-color: #f2dede;
  5821. border-color: #ebccd1;
  5822. }
  5823. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5824. border-top-color: #ebccd1;
  5825. }
  5826. .panel-danger > .panel-heading .badge {
  5827. color: #f2dede;
  5828. background-color: #a94442;
  5829. }
  5830. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5831. border-bottom-color: #ebccd1;
  5832. }
  5833. .embed-responsive {
  5834. position: relative;
  5835. display: block;
  5836. height: 0;
  5837. padding: 0;
  5838. overflow: hidden;
  5839. }
  5840. .embed-responsive .embed-responsive-item,
  5841. .embed-responsive iframe,
  5842. .embed-responsive embed,
  5843. .embed-responsive object,
  5844. .embed-responsive video {
  5845. position: absolute;
  5846. top: 0;
  5847. left: 0;
  5848. bottom: 0;
  5849. height: 100%;
  5850. width: 100%;
  5851. border: 0;
  5852. }
  5853. .embed-responsive-16by9 {
  5854. padding-bottom: 56.25%;
  5855. }
  5856. .embed-responsive-4by3 {
  5857. padding-bottom: 75%;
  5858. }
  5859. .well {
  5860. min-height: 20px;
  5861. padding: 19px;
  5862. margin-bottom: 20px;
  5863. background-color: #f5f5f5;
  5864. border: 1px solid #e3e3e3;
  5865. border-radius: 2px;
  5866. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5867. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5868. }
  5869. .well blockquote {
  5870. border-color: #ddd;
  5871. border-color: rgba(0, 0, 0, 0.15);
  5872. }
  5873. .well-lg {
  5874. padding: 24px;
  5875. border-radius: 3px;
  5876. }
  5877. .well-sm {
  5878. padding: 9px;
  5879. border-radius: 1px;
  5880. }
  5881. .close {
  5882. float: right;
  5883. font-size: 19.5px;
  5884. font-weight: bold;
  5885. line-height: 1;
  5886. color: #000;
  5887. text-shadow: 0 1px 0 #fff;
  5888. opacity: 0.2;
  5889. filter: alpha(opacity=20);
  5890. }
  5891. .close:hover,
  5892. .close:focus {
  5893. color: #000;
  5894. text-decoration: none;
  5895. cursor: pointer;
  5896. opacity: 0.5;
  5897. filter: alpha(opacity=50);
  5898. }
  5899. button.close {
  5900. padding: 0;
  5901. cursor: pointer;
  5902. background: transparent;
  5903. border: 0;
  5904. -webkit-appearance: none;
  5905. }
  5906. .modal-open {
  5907. overflow: hidden;
  5908. }
  5909. .modal {
  5910. display: none;
  5911. overflow: hidden;
  5912. position: fixed;
  5913. top: 0;
  5914. right: 0;
  5915. bottom: 0;
  5916. left: 0;
  5917. z-index: 1050;
  5918. -webkit-overflow-scrolling: touch;
  5919. outline: 0;
  5920. }
  5921. .modal.fade .modal-dialog {
  5922. -webkit-transform: translate(0, -25%);
  5923. -ms-transform: translate(0, -25%);
  5924. -o-transform: translate(0, -25%);
  5925. transform: translate(0, -25%);
  5926. -webkit-transition: -webkit-transform 0.3s ease-out;
  5927. -moz-transition: -moz-transform 0.3s ease-out;
  5928. -o-transition: -o-transform 0.3s ease-out;
  5929. transition: transform 0.3s ease-out;
  5930. }
  5931. .modal.in .modal-dialog {
  5932. -webkit-transform: translate(0, 0);
  5933. -ms-transform: translate(0, 0);
  5934. -o-transform: translate(0, 0);
  5935. transform: translate(0, 0);
  5936. }
  5937. .modal-open .modal {
  5938. overflow-x: hidden;
  5939. overflow-y: auto;
  5940. }
  5941. .modal-dialog {
  5942. position: relative;
  5943. width: auto;
  5944. margin: 10px;
  5945. }
  5946. .modal-content {
  5947. position: relative;
  5948. background-color: #fff;
  5949. border: 1px solid #999;
  5950. border: 1px solid rgba(0, 0, 0, 0.2);
  5951. border-radius: 3px;
  5952. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5953. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5954. background-clip: padding-box;
  5955. outline: 0;
  5956. }
  5957. .modal-backdrop {
  5958. position: fixed;
  5959. top: 0;
  5960. right: 0;
  5961. bottom: 0;
  5962. left: 0;
  5963. z-index: 1040;
  5964. background-color: #000;
  5965. }
  5966. .modal-backdrop.fade {
  5967. opacity: 0;
  5968. filter: alpha(opacity=0);
  5969. }
  5970. .modal-backdrop.in {
  5971. opacity: 0.5;
  5972. filter: alpha(opacity=50);
  5973. }
  5974. .modal-header {
  5975. padding: 15px;
  5976. border-bottom: 1px solid #e5e5e5;
  5977. }
  5978. .modal-header .close {
  5979. margin-top: -2px;
  5980. }
  5981. .modal-title {
  5982. margin: 0;
  5983. line-height: 1.42857143;
  5984. }
  5985. .modal-body {
  5986. position: relative;
  5987. padding: 15px;
  5988. }
  5989. .modal-footer {
  5990. padding: 15px;
  5991. text-align: right;
  5992. border-top: 1px solid #e5e5e5;
  5993. }
  5994. .modal-footer .btn + .btn {
  5995. margin-left: 5px;
  5996. margin-bottom: 0;
  5997. }
  5998. .modal-footer .btn-group .btn + .btn {
  5999. margin-left: -1px;
  6000. }
  6001. .modal-footer .btn-block + .btn-block {
  6002. margin-left: 0;
  6003. }
  6004. .modal-scrollbar-measure {
  6005. position: absolute;
  6006. top: -9999px;
  6007. width: 50px;
  6008. height: 50px;
  6009. overflow: scroll;
  6010. }
  6011. @media (min-width: 768px) {
  6012. .modal-dialog {
  6013. width: 600px;
  6014. margin: 30px auto;
  6015. }
  6016. .modal-content {
  6017. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  6018. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  6019. }
  6020. .modal-sm {
  6021. width: 300px;
  6022. }
  6023. }
  6024. @media (min-width: 992px) {
  6025. .modal-lg {
  6026. width: 900px;
  6027. }
  6028. }
  6029. .tooltip {
  6030. position: absolute;
  6031. z-index: 1070;
  6032. display: block;
  6033. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6034. font-style: normal;
  6035. font-weight: normal;
  6036. letter-spacing: normal;
  6037. line-break: auto;
  6038. line-height: 1.42857143;
  6039. text-align: left;
  6040. text-align: start;
  6041. text-decoration: none;
  6042. text-shadow: none;
  6043. text-transform: none;
  6044. white-space: normal;
  6045. word-break: normal;
  6046. word-spacing: normal;
  6047. word-wrap: normal;
  6048. font-size: 12px;
  6049. opacity: 0;
  6050. filter: alpha(opacity=0);
  6051. }
  6052. .tooltip.in {
  6053. opacity: 0.9;
  6054. filter: alpha(opacity=90);
  6055. }
  6056. .tooltip.top {
  6057. margin-top: -3px;
  6058. padding: 5px 0;
  6059. }
  6060. .tooltip.right {
  6061. margin-left: 3px;
  6062. padding: 0 5px;
  6063. }
  6064. .tooltip.bottom {
  6065. margin-top: 3px;
  6066. padding: 5px 0;
  6067. }
  6068. .tooltip.left {
  6069. margin-left: -3px;
  6070. padding: 0 5px;
  6071. }
  6072. .tooltip-inner {
  6073. max-width: 200px;
  6074. padding: 3px 8px;
  6075. color: #fff;
  6076. text-align: center;
  6077. background-color: #000;
  6078. border-radius: 2px;
  6079. }
  6080. .tooltip-arrow {
  6081. position: absolute;
  6082. width: 0;
  6083. height: 0;
  6084. border-color: transparent;
  6085. border-style: solid;
  6086. }
  6087. .tooltip.top .tooltip-arrow {
  6088. bottom: 0;
  6089. left: 50%;
  6090. margin-left: -5px;
  6091. border-width: 5px 5px 0;
  6092. border-top-color: #000;
  6093. }
  6094. .tooltip.top-left .tooltip-arrow {
  6095. bottom: 0;
  6096. right: 5px;
  6097. margin-bottom: -5px;
  6098. border-width: 5px 5px 0;
  6099. border-top-color: #000;
  6100. }
  6101. .tooltip.top-right .tooltip-arrow {
  6102. bottom: 0;
  6103. left: 5px;
  6104. margin-bottom: -5px;
  6105. border-width: 5px 5px 0;
  6106. border-top-color: #000;
  6107. }
  6108. .tooltip.right .tooltip-arrow {
  6109. top: 50%;
  6110. left: 0;
  6111. margin-top: -5px;
  6112. border-width: 5px 5px 5px 0;
  6113. border-right-color: #000;
  6114. }
  6115. .tooltip.left .tooltip-arrow {
  6116. top: 50%;
  6117. right: 0;
  6118. margin-top: -5px;
  6119. border-width: 5px 0 5px 5px;
  6120. border-left-color: #000;
  6121. }
  6122. .tooltip.bottom .tooltip-arrow {
  6123. top: 0;
  6124. left: 50%;
  6125. margin-left: -5px;
  6126. border-width: 0 5px 5px;
  6127. border-bottom-color: #000;
  6128. }
  6129. .tooltip.bottom-left .tooltip-arrow {
  6130. top: 0;
  6131. right: 5px;
  6132. margin-top: -5px;
  6133. border-width: 0 5px 5px;
  6134. border-bottom-color: #000;
  6135. }
  6136. .tooltip.bottom-right .tooltip-arrow {
  6137. top: 0;
  6138. left: 5px;
  6139. margin-top: -5px;
  6140. border-width: 0 5px 5px;
  6141. border-bottom-color: #000;
  6142. }
  6143. .popover {
  6144. position: absolute;
  6145. top: 0;
  6146. left: 0;
  6147. z-index: 1060;
  6148. display: none;
  6149. max-width: 276px;
  6150. padding: 1px;
  6151. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6152. font-style: normal;
  6153. font-weight: normal;
  6154. letter-spacing: normal;
  6155. line-break: auto;
  6156. line-height: 1.42857143;
  6157. text-align: left;
  6158. text-align: start;
  6159. text-decoration: none;
  6160. text-shadow: none;
  6161. text-transform: none;
  6162. white-space: normal;
  6163. word-break: normal;
  6164. word-spacing: normal;
  6165. word-wrap: normal;
  6166. font-size: 13px;
  6167. background-color: #fff;
  6168. background-clip: padding-box;
  6169. border: 1px solid #ccc;
  6170. border: 1px solid rgba(0, 0, 0, 0.2);
  6171. border-radius: 3px;
  6172. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6173. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6174. }
  6175. .popover.top {
  6176. margin-top: -10px;
  6177. }
  6178. .popover.right {
  6179. margin-left: 10px;
  6180. }
  6181. .popover.bottom {
  6182. margin-top: 10px;
  6183. }
  6184. .popover.left {
  6185. margin-left: -10px;
  6186. }
  6187. .popover-title {
  6188. margin: 0;
  6189. padding: 8px 14px;
  6190. font-size: 13px;
  6191. background-color: #f7f7f7;
  6192. border-bottom: 1px solid #ebebeb;
  6193. border-radius: 2px 2px 0 0;
  6194. }
  6195. .popover-content {
  6196. padding: 9px 14px;
  6197. }
  6198. .popover > .arrow,
  6199. .popover > .arrow:after {
  6200. position: absolute;
  6201. display: block;
  6202. width: 0;
  6203. height: 0;
  6204. border-color: transparent;
  6205. border-style: solid;
  6206. }
  6207. .popover > .arrow {
  6208. border-width: 11px;
  6209. }
  6210. .popover > .arrow:after {
  6211. border-width: 10px;
  6212. content: "";
  6213. }
  6214. .popover.top > .arrow {
  6215. left: 50%;
  6216. margin-left: -11px;
  6217. border-bottom-width: 0;
  6218. border-top-color: #999999;
  6219. border-top-color: rgba(0, 0, 0, 0.25);
  6220. bottom: -11px;
  6221. }
  6222. .popover.top > .arrow:after {
  6223. content: " ";
  6224. bottom: 1px;
  6225. margin-left: -10px;
  6226. border-bottom-width: 0;
  6227. border-top-color: #fff;
  6228. }
  6229. .popover.right > .arrow {
  6230. top: 50%;
  6231. left: -11px;
  6232. margin-top: -11px;
  6233. border-left-width: 0;
  6234. border-right-color: #999999;
  6235. border-right-color: rgba(0, 0, 0, 0.25);
  6236. }
  6237. .popover.right > .arrow:after {
  6238. content: " ";
  6239. left: 1px;
  6240. bottom: -10px;
  6241. border-left-width: 0;
  6242. border-right-color: #fff;
  6243. }
  6244. .popover.bottom > .arrow {
  6245. left: 50%;
  6246. margin-left: -11px;
  6247. border-top-width: 0;
  6248. border-bottom-color: #999999;
  6249. border-bottom-color: rgba(0, 0, 0, 0.25);
  6250. top: -11px;
  6251. }
  6252. .popover.bottom > .arrow:after {
  6253. content: " ";
  6254. top: 1px;
  6255. margin-left: -10px;
  6256. border-top-width: 0;
  6257. border-bottom-color: #fff;
  6258. }
  6259. .popover.left > .arrow {
  6260. top: 50%;
  6261. right: -11px;
  6262. margin-top: -11px;
  6263. border-right-width: 0;
  6264. border-left-color: #999999;
  6265. border-left-color: rgba(0, 0, 0, 0.25);
  6266. }
  6267. .popover.left > .arrow:after {
  6268. content: " ";
  6269. right: 1px;
  6270. border-right-width: 0;
  6271. border-left-color: #fff;
  6272. bottom: -10px;
  6273. }
  6274. .carousel {
  6275. position: relative;
  6276. }
  6277. .carousel-inner {
  6278. position: relative;
  6279. overflow: hidden;
  6280. width: 100%;
  6281. }
  6282. .carousel-inner > .item {
  6283. display: none;
  6284. position: relative;
  6285. -webkit-transition: 0.6s ease-in-out left;
  6286. -o-transition: 0.6s ease-in-out left;
  6287. transition: 0.6s ease-in-out left;
  6288. }
  6289. .carousel-inner > .item > img,
  6290. .carousel-inner > .item > a > img {
  6291. line-height: 1;
  6292. }
  6293. @media all and (transform-3d), (-webkit-transform-3d) {
  6294. .carousel-inner > .item {
  6295. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6296. -moz-transition: -moz-transform 0.6s ease-in-out;
  6297. -o-transition: -o-transform 0.6s ease-in-out;
  6298. transition: transform 0.6s ease-in-out;
  6299. -webkit-backface-visibility: hidden;
  6300. -moz-backface-visibility: hidden;
  6301. backface-visibility: hidden;
  6302. -webkit-perspective: 1000px;
  6303. -moz-perspective: 1000px;
  6304. perspective: 1000px;
  6305. }
  6306. .carousel-inner > .item.next,
  6307. .carousel-inner > .item.active.right {
  6308. -webkit-transform: translate3d(100%, 0, 0);
  6309. transform: translate3d(100%, 0, 0);
  6310. left: 0;
  6311. }
  6312. .carousel-inner > .item.prev,
  6313. .carousel-inner > .item.active.left {
  6314. -webkit-transform: translate3d(-100%, 0, 0);
  6315. transform: translate3d(-100%, 0, 0);
  6316. left: 0;
  6317. }
  6318. .carousel-inner > .item.next.left,
  6319. .carousel-inner > .item.prev.right,
  6320. .carousel-inner > .item.active {
  6321. -webkit-transform: translate3d(0, 0, 0);
  6322. transform: translate3d(0, 0, 0);
  6323. left: 0;
  6324. }
  6325. }
  6326. .carousel-inner > .active,
  6327. .carousel-inner > .next,
  6328. .carousel-inner > .prev {
  6329. display: block;
  6330. }
  6331. .carousel-inner > .active {
  6332. left: 0;
  6333. }
  6334. .carousel-inner > .next,
  6335. .carousel-inner > .prev {
  6336. position: absolute;
  6337. top: 0;
  6338. width: 100%;
  6339. }
  6340. .carousel-inner > .next {
  6341. left: 100%;
  6342. }
  6343. .carousel-inner > .prev {
  6344. left: -100%;
  6345. }
  6346. .carousel-inner > .next.left,
  6347. .carousel-inner > .prev.right {
  6348. left: 0;
  6349. }
  6350. .carousel-inner > .active.left {
  6351. left: -100%;
  6352. }
  6353. .carousel-inner > .active.right {
  6354. left: 100%;
  6355. }
  6356. .carousel-control {
  6357. position: absolute;
  6358. top: 0;
  6359. left: 0;
  6360. bottom: 0;
  6361. width: 15%;
  6362. opacity: 0.5;
  6363. filter: alpha(opacity=50);
  6364. font-size: 20px;
  6365. color: #fff;
  6366. text-align: center;
  6367. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6368. background-color: rgba(0, 0, 0, 0);
  6369. }
  6370. .carousel-control.left {
  6371. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6372. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6373. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6374. background-repeat: repeat-x;
  6375. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6376. }
  6377. .carousel-control.right {
  6378. left: auto;
  6379. right: 0;
  6380. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6381. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6382. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6383. background-repeat: repeat-x;
  6384. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6385. }
  6386. .carousel-control:hover,
  6387. .carousel-control:focus {
  6388. outline: 0;
  6389. color: #fff;
  6390. text-decoration: none;
  6391. opacity: 0.9;
  6392. filter: alpha(opacity=90);
  6393. }
  6394. .carousel-control .icon-prev,
  6395. .carousel-control .icon-next,
  6396. .carousel-control .glyphicon-chevron-left,
  6397. .carousel-control .glyphicon-chevron-right {
  6398. position: absolute;
  6399. top: 50%;
  6400. margin-top: -10px;
  6401. z-index: 5;
  6402. display: inline-block;
  6403. }
  6404. .carousel-control .icon-prev,
  6405. .carousel-control .glyphicon-chevron-left {
  6406. left: 50%;
  6407. margin-left: -10px;
  6408. }
  6409. .carousel-control .icon-next,
  6410. .carousel-control .glyphicon-chevron-right {
  6411. right: 50%;
  6412. margin-right: -10px;
  6413. }
  6414. .carousel-control .icon-prev,
  6415. .carousel-control .icon-next {
  6416. width: 20px;
  6417. height: 20px;
  6418. line-height: 1;
  6419. font-family: serif;
  6420. }
  6421. .carousel-control .icon-prev:before {
  6422. content: '\2039';
  6423. }
  6424. .carousel-control .icon-next:before {
  6425. content: '\203a';
  6426. }
  6427. .carousel-indicators {
  6428. position: absolute;
  6429. bottom: 10px;
  6430. left: 50%;
  6431. z-index: 15;
  6432. width: 60%;
  6433. margin-left: -30%;
  6434. padding-left: 0;
  6435. list-style: none;
  6436. text-align: center;
  6437. }
  6438. .carousel-indicators li {
  6439. display: inline-block;
  6440. width: 10px;
  6441. height: 10px;
  6442. margin: 1px;
  6443. text-indent: -999px;
  6444. border: 1px solid #fff;
  6445. border-radius: 10px;
  6446. cursor: pointer;
  6447. background-color: #000 \9;
  6448. background-color: rgba(0, 0, 0, 0);
  6449. }
  6450. .carousel-indicators .active {
  6451. margin: 0;
  6452. width: 12px;
  6453. height: 12px;
  6454. background-color: #fff;
  6455. }
  6456. .carousel-caption {
  6457. position: absolute;
  6458. left: 15%;
  6459. right: 15%;
  6460. bottom: 20px;
  6461. z-index: 10;
  6462. padding-top: 20px;
  6463. padding-bottom: 20px;
  6464. color: #fff;
  6465. text-align: center;
  6466. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6467. }
  6468. .carousel-caption .btn {
  6469. text-shadow: none;
  6470. }
  6471. @media screen and (min-width: 768px) {
  6472. .carousel-control .glyphicon-chevron-left,
  6473. .carousel-control .glyphicon-chevron-right,
  6474. .carousel-control .icon-prev,
  6475. .carousel-control .icon-next {
  6476. width: 30px;
  6477. height: 30px;
  6478. margin-top: -10px;
  6479. font-size: 30px;
  6480. }
  6481. .carousel-control .glyphicon-chevron-left,
  6482. .carousel-control .icon-prev {
  6483. margin-left: -10px;
  6484. }
  6485. .carousel-control .glyphicon-chevron-right,
  6486. .carousel-control .icon-next {
  6487. margin-right: -10px;
  6488. }
  6489. .carousel-caption {
  6490. left: 20%;
  6491. right: 20%;
  6492. padding-bottom: 30px;
  6493. }
  6494. .carousel-indicators {
  6495. bottom: 20px;
  6496. }
  6497. }
  6498. .clearfix:before,
  6499. .clearfix:after,
  6500. .dl-horizontal dd:before,
  6501. .dl-horizontal dd:after,
  6502. .container:before,
  6503. .container:after,
  6504. .container-fluid:before,
  6505. .container-fluid:after,
  6506. .row:before,
  6507. .row:after,
  6508. .form-horizontal .form-group:before,
  6509. .form-horizontal .form-group:after,
  6510. .btn-toolbar:before,
  6511. .btn-toolbar:after,
  6512. .btn-group-vertical > .btn-group:before,
  6513. .btn-group-vertical > .btn-group:after,
  6514. .nav:before,
  6515. .nav:after,
  6516. .navbar:before,
  6517. .navbar:after,
  6518. .navbar-header:before,
  6519. .navbar-header:after,
  6520. .navbar-collapse:before,
  6521. .navbar-collapse:after,
  6522. .pager:before,
  6523. .pager:after,
  6524. .panel-body:before,
  6525. .panel-body:after,
  6526. .modal-header:before,
  6527. .modal-header:after,
  6528. .modal-footer:before,
  6529. .modal-footer:after,
  6530. .item_buttons:before,
  6531. .item_buttons:after {
  6532. content: " ";
  6533. display: table;
  6534. }
  6535. .clearfix:after,
  6536. .dl-horizontal dd:after,
  6537. .container:after,
  6538. .container-fluid:after,
  6539. .row:after,
  6540. .form-horizontal .form-group:after,
  6541. .btn-toolbar:after,
  6542. .btn-group-vertical > .btn-group:after,
  6543. .nav:after,
  6544. .navbar:after,
  6545. .navbar-header:after,
  6546. .navbar-collapse:after,
  6547. .pager:after,
  6548. .panel-body:after,
  6549. .modal-header:after,
  6550. .modal-footer:after,
  6551. .item_buttons:after {
  6552. clear: both;
  6553. }
  6554. .center-block {
  6555. display: block;
  6556. margin-left: auto;
  6557. margin-right: auto;
  6558. }
  6559. .pull-right {
  6560. float: right !important;
  6561. }
  6562. .pull-left {
  6563. float: left !important;
  6564. }
  6565. .hide {
  6566. display: none !important;
  6567. }
  6568. .show {
  6569. display: block !important;
  6570. }
  6571. .invisible {
  6572. visibility: hidden;
  6573. }
  6574. .text-hide {
  6575. font: 0/0 a;
  6576. color: transparent;
  6577. text-shadow: none;
  6578. background-color: transparent;
  6579. border: 0;
  6580. }
  6581. .hidden {
  6582. display: none !important;
  6583. }
  6584. .affix {
  6585. position: fixed;
  6586. }
  6587. @-ms-viewport {
  6588. width: device-width;
  6589. }
  6590. .visible-xs,
  6591. .visible-sm,
  6592. .visible-md,
  6593. .visible-lg {
  6594. display: none !important;
  6595. }
  6596. .visible-xs-block,
  6597. .visible-xs-inline,
  6598. .visible-xs-inline-block,
  6599. .visible-sm-block,
  6600. .visible-sm-inline,
  6601. .visible-sm-inline-block,
  6602. .visible-md-block,
  6603. .visible-md-inline,
  6604. .visible-md-inline-block,
  6605. .visible-lg-block,
  6606. .visible-lg-inline,
  6607. .visible-lg-inline-block {
  6608. display: none !important;
  6609. }
  6610. @media (max-width: 767px) {
  6611. .visible-xs {
  6612. display: block !important;
  6613. }
  6614. table.visible-xs {
  6615. display: table !important;
  6616. }
  6617. tr.visible-xs {
  6618. display: table-row !important;
  6619. }
  6620. th.visible-xs,
  6621. td.visible-xs {
  6622. display: table-cell !important;
  6623. }
  6624. }
  6625. @media (max-width: 767px) {
  6626. .visible-xs-block {
  6627. display: block !important;
  6628. }
  6629. }
  6630. @media (max-width: 767px) {
  6631. .visible-xs-inline {
  6632. display: inline !important;
  6633. }
  6634. }
  6635. @media (max-width: 767px) {
  6636. .visible-xs-inline-block {
  6637. display: inline-block !important;
  6638. }
  6639. }
  6640. @media (min-width: 768px) and (max-width: 991px) {
  6641. .visible-sm {
  6642. display: block !important;
  6643. }
  6644. table.visible-sm {
  6645. display: table !important;
  6646. }
  6647. tr.visible-sm {
  6648. display: table-row !important;
  6649. }
  6650. th.visible-sm,
  6651. td.visible-sm {
  6652. display: table-cell !important;
  6653. }
  6654. }
  6655. @media (min-width: 768px) and (max-width: 991px) {
  6656. .visible-sm-block {
  6657. display: block !important;
  6658. }
  6659. }
  6660. @media (min-width: 768px) and (max-width: 991px) {
  6661. .visible-sm-inline {
  6662. display: inline !important;
  6663. }
  6664. }
  6665. @media (min-width: 768px) and (max-width: 991px) {
  6666. .visible-sm-inline-block {
  6667. display: inline-block !important;
  6668. }
  6669. }
  6670. @media (min-width: 992px) and (max-width: 1199px) {
  6671. .visible-md {
  6672. display: block !important;
  6673. }
  6674. table.visible-md {
  6675. display: table !important;
  6676. }
  6677. tr.visible-md {
  6678. display: table-row !important;
  6679. }
  6680. th.visible-md,
  6681. td.visible-md {
  6682. display: table-cell !important;
  6683. }
  6684. }
  6685. @media (min-width: 992px) and (max-width: 1199px) {
  6686. .visible-md-block {
  6687. display: block !important;
  6688. }
  6689. }
  6690. @media (min-width: 992px) and (max-width: 1199px) {
  6691. .visible-md-inline {
  6692. display: inline !important;
  6693. }
  6694. }
  6695. @media (min-width: 992px) and (max-width: 1199px) {
  6696. .visible-md-inline-block {
  6697. display: inline-block !important;
  6698. }
  6699. }
  6700. @media (min-width: 1200px) {
  6701. .visible-lg {
  6702. display: block !important;
  6703. }
  6704. table.visible-lg {
  6705. display: table !important;
  6706. }
  6707. tr.visible-lg {
  6708. display: table-row !important;
  6709. }
  6710. th.visible-lg,
  6711. td.visible-lg {
  6712. display: table-cell !important;
  6713. }
  6714. }
  6715. @media (min-width: 1200px) {
  6716. .visible-lg-block {
  6717. display: block !important;
  6718. }
  6719. }
  6720. @media (min-width: 1200px) {
  6721. .visible-lg-inline {
  6722. display: inline !important;
  6723. }
  6724. }
  6725. @media (min-width: 1200px) {
  6726. .visible-lg-inline-block {
  6727. display: inline-block !important;
  6728. }
  6729. }
  6730. @media (max-width: 767px) {
  6731. .hidden-xs {
  6732. display: none !important;
  6733. }
  6734. }
  6735. @media (min-width: 768px) and (max-width: 991px) {
  6736. .hidden-sm {
  6737. display: none !important;
  6738. }
  6739. }
  6740. @media (min-width: 992px) and (max-width: 1199px) {
  6741. .hidden-md {
  6742. display: none !important;
  6743. }
  6744. }
  6745. @media (min-width: 1200px) {
  6746. .hidden-lg {
  6747. display: none !important;
  6748. }
  6749. }
  6750. .visible-print {
  6751. display: none !important;
  6752. }
  6753. @media print {
  6754. .visible-print {
  6755. display: block !important;
  6756. }
  6757. table.visible-print {
  6758. display: table !important;
  6759. }
  6760. tr.visible-print {
  6761. display: table-row !important;
  6762. }
  6763. th.visible-print,
  6764. td.visible-print {
  6765. display: table-cell !important;
  6766. }
  6767. }
  6768. .visible-print-block {
  6769. display: none !important;
  6770. }
  6771. @media print {
  6772. .visible-print-block {
  6773. display: block !important;
  6774. }
  6775. }
  6776. .visible-print-inline {
  6777. display: none !important;
  6778. }
  6779. @media print {
  6780. .visible-print-inline {
  6781. display: inline !important;
  6782. }
  6783. }
  6784. .visible-print-inline-block {
  6785. display: none !important;
  6786. }
  6787. @media print {
  6788. .visible-print-inline-block {
  6789. display: inline-block !important;
  6790. }
  6791. }
  6792. @media print {
  6793. .hidden-print {
  6794. display: none !important;
  6795. }
  6796. }
  6797. /*!
  6798. *
  6799. * Font Awesome
  6800. *
  6801. */
  6802. /*!
  6803. * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
  6804. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  6805. */
  6806. /* FONT PATH
  6807. * -------------------------- */
  6808. @font-face {
  6809. font-family: 'FontAwesome';
  6810. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
  6811. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  6812. font-weight: normal;
  6813. font-style: normal;
  6814. }
  6815. .fa {
  6816. display: inline-block;
  6817. font: normal normal normal 14px/1 FontAwesome;
  6818. font-size: inherit;
  6819. text-rendering: auto;
  6820. -webkit-font-smoothing: antialiased;
  6821. -moz-osx-font-smoothing: grayscale;
  6822. }
  6823. /* makes the font 33% larger relative to the icon container */
  6824. .fa-lg {
  6825. font-size: 1.33333333em;
  6826. line-height: 0.75em;
  6827. vertical-align: -15%;
  6828. }
  6829. .fa-2x {
  6830. font-size: 2em;
  6831. }
  6832. .fa-3x {
  6833. font-size: 3em;
  6834. }
  6835. .fa-4x {
  6836. font-size: 4em;
  6837. }
  6838. .fa-5x {
  6839. font-size: 5em;
  6840. }
  6841. .fa-fw {
  6842. width: 1.28571429em;
  6843. text-align: center;
  6844. }
  6845. .fa-ul {
  6846. padding-left: 0;
  6847. margin-left: 2.14285714em;
  6848. list-style-type: none;
  6849. }
  6850. .fa-ul > li {
  6851. position: relative;
  6852. }
  6853. .fa-li {
  6854. position: absolute;
  6855. left: -2.14285714em;
  6856. width: 2.14285714em;
  6857. top: 0.14285714em;
  6858. text-align: center;
  6859. }
  6860. .fa-li.fa-lg {
  6861. left: -1.85714286em;
  6862. }
  6863. .fa-border {
  6864. padding: .2em .25em .15em;
  6865. border: solid 0.08em #eee;
  6866. border-radius: .1em;
  6867. }
  6868. .pull-right {
  6869. float: right;
  6870. }
  6871. .pull-left {
  6872. float: left;
  6873. }
  6874. .fa.pull-left {
  6875. margin-right: .3em;
  6876. }
  6877. .fa.pull-right {
  6878. margin-left: .3em;
  6879. }
  6880. .fa-spin {
  6881. -webkit-animation: fa-spin 2s infinite linear;
  6882. animation: fa-spin 2s infinite linear;
  6883. }
  6884. @-webkit-keyframes fa-spin {
  6885. 0% {
  6886. -webkit-transform: rotate(0deg);
  6887. transform: rotate(0deg);
  6888. }
  6889. 100% {
  6890. -webkit-transform: rotate(359deg);
  6891. transform: rotate(359deg);
  6892. }
  6893. }
  6894. @keyframes fa-spin {
  6895. 0% {
  6896. -webkit-transform: rotate(0deg);
  6897. transform: rotate(0deg);
  6898. }
  6899. 100% {
  6900. -webkit-transform: rotate(359deg);
  6901. transform: rotate(359deg);
  6902. }
  6903. }
  6904. .fa-rotate-90 {
  6905. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  6906. -webkit-transform: rotate(90deg);
  6907. -ms-transform: rotate(90deg);
  6908. transform: rotate(90deg);
  6909. }
  6910. .fa-rotate-180 {
  6911. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  6912. -webkit-transform: rotate(180deg);
  6913. -ms-transform: rotate(180deg);
  6914. transform: rotate(180deg);
  6915. }
  6916. .fa-rotate-270 {
  6917. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  6918. -webkit-transform: rotate(270deg);
  6919. -ms-transform: rotate(270deg);
  6920. transform: rotate(270deg);
  6921. }
  6922. .fa-flip-horizontal {
  6923. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  6924. -webkit-transform: scale(-1, 1);
  6925. -ms-transform: scale(-1, 1);
  6926. transform: scale(-1, 1);
  6927. }
  6928. .fa-flip-vertical {
  6929. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  6930. -webkit-transform: scale(1, -1);
  6931. -ms-transform: scale(1, -1);
  6932. transform: scale(1, -1);
  6933. }
  6934. :root .fa-rotate-90,
  6935. :root .fa-rotate-180,
  6936. :root .fa-rotate-270,
  6937. :root .fa-flip-horizontal,
  6938. :root .fa-flip-vertical {
  6939. filter: none;
  6940. }
  6941. .fa-stack {
  6942. position: relative;
  6943. display: inline-block;
  6944. width: 2em;
  6945. height: 2em;
  6946. line-height: 2em;
  6947. vertical-align: middle;
  6948. }
  6949. .fa-stack-1x,
  6950. .fa-stack-2x {
  6951. position: absolute;
  6952. left: 0;
  6953. width: 100%;
  6954. text-align: center;
  6955. }
  6956. .fa-stack-1x {
  6957. line-height: inherit;
  6958. }
  6959. .fa-stack-2x {
  6960. font-size: 2em;
  6961. }
  6962. .fa-inverse {
  6963. color: #fff;
  6964. }
  6965. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  6966. readers do not read off random characters that represent icons */
  6967. .fa-glass:before {
  6968. content: "\f000";
  6969. }
  6970. .fa-music:before {
  6971. content: "\f001";
  6972. }
  6973. .fa-search:before {
  6974. content: "\f002";
  6975. }
  6976. .fa-envelope-o:before {
  6977. content: "\f003";
  6978. }
  6979. .fa-heart:before {
  6980. content: "\f004";
  6981. }
  6982. .fa-star:before {
  6983. content: "\f005";
  6984. }
  6985. .fa-star-o:before {
  6986. content: "\f006";
  6987. }
  6988. .fa-user:before {
  6989. content: "\f007";
  6990. }
  6991. .fa-film:before {
  6992. content: "\f008";
  6993. }
  6994. .fa-th-large:before {
  6995. content: "\f009";
  6996. }
  6997. .fa-th:before {
  6998. content: "\f00a";
  6999. }
  7000. .fa-th-list:before {
  7001. content: "\f00b";
  7002. }
  7003. .fa-check:before {
  7004. content: "\f00c";
  7005. }
  7006. .fa-remove:before,
  7007. .fa-close:before,
  7008. .fa-times:before {
  7009. content: "\f00d";
  7010. }
  7011. .fa-search-plus:before {
  7012. content: "\f00e";
  7013. }
  7014. .fa-search-minus:before {
  7015. content: "\f010";
  7016. }
  7017. .fa-power-off:before {
  7018. content: "\f011";
  7019. }
  7020. .fa-signal:before {
  7021. content: "\f012";
  7022. }
  7023. .fa-gear:before,
  7024. .fa-cog:before {
  7025. content: "\f013";
  7026. }
  7027. .fa-trash-o:before {
  7028. content: "\f014";
  7029. }
  7030. .fa-home:before {
  7031. content: "\f015";
  7032. }
  7033. .fa-file-o:before {
  7034. content: "\f016";
  7035. }
  7036. .fa-clock-o:before {
  7037. content: "\f017";
  7038. }
  7039. .fa-road:before {
  7040. content: "\f018";
  7041. }
  7042. .fa-download:before {
  7043. content: "\f019";
  7044. }
  7045. .fa-arrow-circle-o-down:before {
  7046. content: "\f01a";
  7047. }
  7048. .fa-arrow-circle-o-up:before {
  7049. content: "\f01b";
  7050. }
  7051. .fa-inbox:before {
  7052. content: "\f01c";
  7053. }
  7054. .fa-play-circle-o:before {
  7055. content: "\f01d";
  7056. }
  7057. .fa-rotate-right:before,
  7058. .fa-repeat:before {
  7059. content: "\f01e";
  7060. }
  7061. .fa-refresh:before {
  7062. content: "\f021";
  7063. }
  7064. .fa-list-alt:before {
  7065. content: "\f022";
  7066. }
  7067. .fa-lock:before {
  7068. content: "\f023";
  7069. }
  7070. .fa-flag:before {
  7071. content: "\f024";
  7072. }
  7073. .fa-headphones:before {
  7074. content: "\f025";
  7075. }
  7076. .fa-volume-off:before {
  7077. content: "\f026";
  7078. }
  7079. .fa-volume-down:before {
  7080. content: "\f027";
  7081. }
  7082. .fa-volume-up:before {
  7083. content: "\f028";
  7084. }
  7085. .fa-qrcode:before {
  7086. content: "\f029";
  7087. }
  7088. .fa-barcode:before {
  7089. content: "\f02a";
  7090. }
  7091. .fa-tag:before {
  7092. content: "\f02b";
  7093. }
  7094. .fa-tags:before {
  7095. content: "\f02c";
  7096. }
  7097. .fa-book:before {
  7098. content: "\f02d";
  7099. }
  7100. .fa-bookmark:before {
  7101. content: "\f02e";
  7102. }
  7103. .fa-print:before {
  7104. content: "\f02f";
  7105. }
  7106. .fa-camera:before {
  7107. content: "\f030";
  7108. }
  7109. .fa-font:before {
  7110. content: "\f031";
  7111. }
  7112. .fa-bold:before {
  7113. content: "\f032";
  7114. }
  7115. .fa-italic:before {
  7116. content: "\f033";
  7117. }
  7118. .fa-text-height:before {
  7119. content: "\f034";
  7120. }
  7121. .fa-text-width:before {
  7122. content: "\f035";
  7123. }
  7124. .fa-align-left:before {
  7125. content: "\f036";
  7126. }
  7127. .fa-align-center:before {
  7128. content: "\f037";
  7129. }
  7130. .fa-align-right:before {
  7131. content: "\f038";
  7132. }
  7133. .fa-align-justify:before {
  7134. content: "\f039";
  7135. }
  7136. .fa-list:before {
  7137. content: "\f03a";
  7138. }
  7139. .fa-dedent:before,
  7140. .fa-outdent:before {
  7141. content: "\f03b";
  7142. }
  7143. .fa-indent:before {
  7144. content: "\f03c";
  7145. }
  7146. .fa-video-camera:before {
  7147. content: "\f03d";
  7148. }
  7149. .fa-photo:before,
  7150. .fa-image:before,
  7151. .fa-picture-o:before {
  7152. content: "\f03e";
  7153. }
  7154. .fa-pencil:before {
  7155. content: "\f040";
  7156. }
  7157. .fa-map-marker:before {
  7158. content: "\f041";
  7159. }
  7160. .fa-adjust:before {
  7161. content: "\f042";
  7162. }
  7163. .fa-tint:before {
  7164. content: "\f043";
  7165. }
  7166. .fa-edit:before,
  7167. .fa-pencil-square-o:before {
  7168. content: "\f044";
  7169. }
  7170. .fa-share-square-o:before {
  7171. content: "\f045";
  7172. }
  7173. .fa-check-square-o:before {
  7174. content: "\f046";
  7175. }
  7176. .fa-arrows:before {
  7177. content: "\f047";
  7178. }
  7179. .fa-step-backward:before {
  7180. content: "\f048";
  7181. }
  7182. .fa-fast-backward:before {
  7183. content: "\f049";
  7184. }
  7185. .fa-backward:before {
  7186. content: "\f04a";
  7187. }
  7188. .fa-play:before {
  7189. content: "\f04b";
  7190. }
  7191. .fa-pause:before {
  7192. content: "\f04c";
  7193. }
  7194. .fa-stop:before {
  7195. content: "\f04d";
  7196. }
  7197. .fa-forward:before {
  7198. content: "\f04e";
  7199. }
  7200. .fa-fast-forward:before {
  7201. content: "\f050";
  7202. }
  7203. .fa-step-forward:before {
  7204. content: "\f051";
  7205. }
  7206. .fa-eject:before {
  7207. content: "\f052";
  7208. }
  7209. .fa-chevron-left:before {
  7210. content: "\f053";
  7211. }
  7212. .fa-chevron-right:before {
  7213. content: "\f054";
  7214. }
  7215. .fa-plus-circle:before {
  7216. content: "\f055";
  7217. }
  7218. .fa-minus-circle:before {
  7219. content: "\f056";
  7220. }
  7221. .fa-times-circle:before {
  7222. content: "\f057";
  7223. }
  7224. .fa-check-circle:before {
  7225. content: "\f058";
  7226. }
  7227. .fa-question-circle:before {
  7228. content: "\f059";
  7229. }
  7230. .fa-info-circle:before {
  7231. content: "\f05a";
  7232. }
  7233. .fa-crosshairs:before {
  7234. content: "\f05b";
  7235. }
  7236. .fa-times-circle-o:before {
  7237. content: "\f05c";
  7238. }
  7239. .fa-check-circle-o:before {
  7240. content: "\f05d";
  7241. }
  7242. .fa-ban:before {
  7243. content: "\f05e";
  7244. }
  7245. .fa-arrow-left:before {
  7246. content: "\f060";
  7247. }
  7248. .fa-arrow-right:before {
  7249. content: "\f061";
  7250. }
  7251. .fa-arrow-up:before {
  7252. content: "\f062";
  7253. }
  7254. .fa-arrow-down:before {
  7255. content: "\f063";
  7256. }
  7257. .fa-mail-forward:before,
  7258. .fa-share:before {
  7259. content: "\f064";
  7260. }
  7261. .fa-expand:before {
  7262. content: "\f065";
  7263. }
  7264. .fa-compress:before {
  7265. content: "\f066";
  7266. }
  7267. .fa-plus:before {
  7268. content: "\f067";
  7269. }
  7270. .fa-minus:before {
  7271. content: "\f068";
  7272. }
  7273. .fa-asterisk:before {
  7274. content: "\f069";
  7275. }
  7276. .fa-exclamation-circle:before {
  7277. content: "\f06a";
  7278. }
  7279. .fa-gift:before {
  7280. content: "\f06b";
  7281. }
  7282. .fa-leaf:before {
  7283. content: "\f06c";
  7284. }
  7285. .fa-fire:before {
  7286. content: "\f06d";
  7287. }
  7288. .fa-eye:before {
  7289. content: "\f06e";
  7290. }
  7291. .fa-eye-slash:before {
  7292. content: "\f070";
  7293. }
  7294. .fa-warning:before,
  7295. .fa-exclamation-triangle:before {
  7296. content: "\f071";
  7297. }
  7298. .fa-plane:before {
  7299. content: "\f072";
  7300. }
  7301. .fa-calendar:before {
  7302. content: "\f073";
  7303. }
  7304. .fa-random:before {
  7305. content: "\f074";
  7306. }
  7307. .fa-comment:before {
  7308. content: "\f075";
  7309. }
  7310. .fa-magnet:before {
  7311. content: "\f076";
  7312. }
  7313. .fa-chevron-up:before {
  7314. content: "\f077";
  7315. }
  7316. .fa-chevron-down:before {
  7317. content: "\f078";
  7318. }
  7319. .fa-retweet:before {
  7320. content: "\f079";
  7321. }
  7322. .fa-shopping-cart:before {
  7323. content: "\f07a";
  7324. }
  7325. .fa-folder:before {
  7326. content: "\f07b";
  7327. }
  7328. .fa-folder-open:before {
  7329. content: "\f07c";
  7330. }
  7331. .fa-arrows-v:before {
  7332. content: "\f07d";
  7333. }
  7334. .fa-arrows-h:before {
  7335. content: "\f07e";
  7336. }
  7337. .fa-bar-chart-o:before,
  7338. .fa-bar-chart:before {
  7339. content: "\f080";
  7340. }
  7341. .fa-twitter-square:before {
  7342. content: "\f081";
  7343. }
  7344. .fa-facebook-square:before {
  7345. content: "\f082";
  7346. }
  7347. .fa-camera-retro:before {
  7348. content: "\f083";
  7349. }
  7350. .fa-key:before {
  7351. content: "\f084";
  7352. }
  7353. .fa-gears:before,
  7354. .fa-cogs:before {
  7355. content: "\f085";
  7356. }
  7357. .fa-comments:before {
  7358. content: "\f086";
  7359. }
  7360. .fa-thumbs-o-up:before {
  7361. content: "\f087";
  7362. }
  7363. .fa-thumbs-o-down:before {
  7364. content: "\f088";
  7365. }
  7366. .fa-star-half:before {
  7367. content: "\f089";
  7368. }
  7369. .fa-heart-o:before {
  7370. content: "\f08a";
  7371. }
  7372. .fa-sign-out:before {
  7373. content: "\f08b";
  7374. }
  7375. .fa-linkedin-square:before {
  7376. content: "\f08c";
  7377. }
  7378. .fa-thumb-tack:before {
  7379. content: "\f08d";
  7380. }
  7381. .fa-external-link:before {
  7382. content: "\f08e";
  7383. }
  7384. .fa-sign-in:before {
  7385. content: "\f090";
  7386. }
  7387. .fa-trophy:before {
  7388. content: "\f091";
  7389. }
  7390. .fa-github-square:before {
  7391. content: "\f092";
  7392. }
  7393. .fa-upload:before {
  7394. content: "\f093";
  7395. }
  7396. .fa-lemon-o:before {
  7397. content: "\f094";
  7398. }
  7399. .fa-phone:before {
  7400. content: "\f095";
  7401. }
  7402. .fa-square-o:before {
  7403. content: "\f096";
  7404. }
  7405. .fa-bookmark-o:before {
  7406. content: "\f097";
  7407. }
  7408. .fa-phone-square:before {
  7409. content: "\f098";
  7410. }
  7411. .fa-twitter:before {
  7412. content: "\f099";
  7413. }
  7414. .fa-facebook:before {
  7415. content: "\f09a";
  7416. }
  7417. .fa-github:before {
  7418. content: "\f09b";
  7419. }
  7420. .fa-unlock:before {
  7421. content: "\f09c";
  7422. }
  7423. .fa-credit-card:before {
  7424. content: "\f09d";
  7425. }
  7426. .fa-rss:before {
  7427. content: "\f09e";
  7428. }
  7429. .fa-hdd-o:before {
  7430. content: "\f0a0";
  7431. }
  7432. .fa-bullhorn:before {
  7433. content: "\f0a1";
  7434. }
  7435. .fa-bell:before {
  7436. content: "\f0f3";
  7437. }
  7438. .fa-certificate:before {
  7439. content: "\f0a3";
  7440. }
  7441. .fa-hand-o-right:before {
  7442. content: "\f0a4";
  7443. }
  7444. .fa-hand-o-left:before {
  7445. content: "\f0a5";
  7446. }
  7447. .fa-hand-o-up:before {
  7448. content: "\f0a6";
  7449. }
  7450. .fa-hand-o-down:before {
  7451. content: "\f0a7";
  7452. }
  7453. .fa-arrow-circle-left:before {
  7454. content: "\f0a8";
  7455. }
  7456. .fa-arrow-circle-right:before {
  7457. content: "\f0a9";
  7458. }
  7459. .fa-arrow-circle-up:before {
  7460. content: "\f0aa";
  7461. }
  7462. .fa-arrow-circle-down:before {
  7463. content: "\f0ab";
  7464. }
  7465. .fa-globe:before {
  7466. content: "\f0ac";
  7467. }
  7468. .fa-wrench:before {
  7469. content: "\f0ad";
  7470. }
  7471. .fa-tasks:before {
  7472. content: "\f0ae";
  7473. }
  7474. .fa-filter:before {
  7475. content: "\f0b0";
  7476. }
  7477. .fa-briefcase:before {
  7478. content: "\f0b1";
  7479. }
  7480. .fa-arrows-alt:before {
  7481. content: "\f0b2";
  7482. }
  7483. .fa-group:before,
  7484. .fa-users:before {
  7485. content: "\f0c0";
  7486. }
  7487. .fa-chain:before,
  7488. .fa-link:before {
  7489. content: "\f0c1";
  7490. }
  7491. .fa-cloud:before {
  7492. content: "\f0c2";
  7493. }
  7494. .fa-flask:before {
  7495. content: "\f0c3";
  7496. }
  7497. .fa-cut:before,
  7498. .fa-scissors:before {
  7499. content: "\f0c4";
  7500. }
  7501. .fa-copy:before,
  7502. .fa-files-o:before {
  7503. content: "\f0c5";
  7504. }
  7505. .fa-paperclip:before {
  7506. content: "\f0c6";
  7507. }
  7508. .fa-save:before,
  7509. .fa-floppy-o:before {
  7510. content: "\f0c7";
  7511. }
  7512. .fa-square:before {
  7513. content: "\f0c8";
  7514. }
  7515. .fa-navicon:before,
  7516. .fa-reorder:before,
  7517. .fa-bars:before {
  7518. content: "\f0c9";
  7519. }
  7520. .fa-list-ul:before {
  7521. content: "\f0ca";
  7522. }
  7523. .fa-list-ol:before {
  7524. content: "\f0cb";
  7525. }
  7526. .fa-strikethrough:before {
  7527. content: "\f0cc";
  7528. }
  7529. .fa-underline:before {
  7530. content: "\f0cd";
  7531. }
  7532. .fa-table:before {
  7533. content: "\f0ce";
  7534. }
  7535. .fa-magic:before {
  7536. content: "\f0d0";
  7537. }
  7538. .fa-truck:before {
  7539. content: "\f0d1";
  7540. }
  7541. .fa-pinterest:before {
  7542. content: "\f0d2";
  7543. }
  7544. .fa-pinterest-square:before {
  7545. content: "\f0d3";
  7546. }
  7547. .fa-google-plus-square:before {
  7548. content: "\f0d4";
  7549. }
  7550. .fa-google-plus:before {
  7551. content: "\f0d5";
  7552. }
  7553. .fa-money:before {
  7554. content: "\f0d6";
  7555. }
  7556. .fa-caret-down:before {
  7557. content: "\f0d7";
  7558. }
  7559. .fa-caret-up:before {
  7560. content: "\f0d8";
  7561. }
  7562. .fa-caret-left:before {
  7563. content: "\f0d9";
  7564. }
  7565. .fa-caret-right:before {
  7566. content: "\f0da";
  7567. }
  7568. .fa-columns:before {
  7569. content: "\f0db";
  7570. }
  7571. .fa-unsorted:before,
  7572. .fa-sort:before {
  7573. content: "\f0dc";
  7574. }
  7575. .fa-sort-down:before,
  7576. .fa-sort-desc:before {
  7577. content: "\f0dd";
  7578. }
  7579. .fa-sort-up:before,
  7580. .fa-sort-asc:before {
  7581. content: "\f0de";
  7582. }
  7583. .fa-envelope:before {
  7584. content: "\f0e0";
  7585. }
  7586. .fa-linkedin:before {
  7587. content: "\f0e1";
  7588. }
  7589. .fa-rotate-left:before,
  7590. .fa-undo:before {
  7591. content: "\f0e2";
  7592. }
  7593. .fa-legal:before,
  7594. .fa-gavel:before {
  7595. content: "\f0e3";
  7596. }
  7597. .fa-dashboard:before,
  7598. .fa-tachometer:before {
  7599. content: "\f0e4";
  7600. }
  7601. .fa-comment-o:before {
  7602. content: "\f0e5";
  7603. }
  7604. .fa-comments-o:before {
  7605. content: "\f0e6";
  7606. }
  7607. .fa-flash:before,
  7608. .fa-bolt:before {
  7609. content: "\f0e7";
  7610. }
  7611. .fa-sitemap:before {
  7612. content: "\f0e8";
  7613. }
  7614. .fa-umbrella:before {
  7615. content: "\f0e9";
  7616. }
  7617. .fa-paste:before,
  7618. .fa-clipboard:before {
  7619. content: "\f0ea";
  7620. }
  7621. .fa-lightbulb-o:before {
  7622. content: "\f0eb";
  7623. }
  7624. .fa-exchange:before {
  7625. content: "\f0ec";
  7626. }
  7627. .fa-cloud-download:before {
  7628. content: "\f0ed";
  7629. }
  7630. .fa-cloud-upload:before {
  7631. content: "\f0ee";
  7632. }
  7633. .fa-user-md:before {
  7634. content: "\f0f0";
  7635. }
  7636. .fa-stethoscope:before {
  7637. content: "\f0f1";
  7638. }
  7639. .fa-suitcase:before {
  7640. content: "\f0f2";
  7641. }
  7642. .fa-bell-o:before {
  7643. content: "\f0a2";
  7644. }
  7645. .fa-coffee:before {
  7646. content: "\f0f4";
  7647. }
  7648. .fa-cutlery:before {
  7649. content: "\f0f5";
  7650. }
  7651. .fa-file-text-o:before {
  7652. content: "\f0f6";
  7653. }
  7654. .fa-building-o:before {
  7655. content: "\f0f7";
  7656. }
  7657. .fa-hospital-o:before {
  7658. content: "\f0f8";
  7659. }
  7660. .fa-ambulance:before {
  7661. content: "\f0f9";
  7662. }
  7663. .fa-medkit:before {
  7664. content: "\f0fa";
  7665. }
  7666. .fa-fighter-jet:before {
  7667. content: "\f0fb";
  7668. }
  7669. .fa-beer:before {
  7670. content: "\f0fc";
  7671. }
  7672. .fa-h-square:before {
  7673. content: "\f0fd";
  7674. }
  7675. .fa-plus-square:before {
  7676. content: "\f0fe";
  7677. }
  7678. .fa-angle-double-left:before {
  7679. content: "\f100";
  7680. }
  7681. .fa-angle-double-right:before {
  7682. content: "\f101";
  7683. }
  7684. .fa-angle-double-up:before {
  7685. content: "\f102";
  7686. }
  7687. .fa-angle-double-down:before {
  7688. content: "\f103";
  7689. }
  7690. .fa-angle-left:before {
  7691. content: "\f104";
  7692. }
  7693. .fa-angle-right:before {
  7694. content: "\f105";
  7695. }
  7696. .fa-angle-up:before {
  7697. content: "\f106";
  7698. }
  7699. .fa-angle-down:before {
  7700. content: "\f107";
  7701. }
  7702. .fa-desktop:before {
  7703. content: "\f108";
  7704. }
  7705. .fa-laptop:before {
  7706. content: "\f109";
  7707. }
  7708. .fa-tablet:before {
  7709. content: "\f10a";
  7710. }
  7711. .fa-mobile-phone:before,
  7712. .fa-mobile:before {
  7713. content: "\f10b";
  7714. }
  7715. .fa-circle-o:before {
  7716. content: "\f10c";
  7717. }
  7718. .fa-quote-left:before {
  7719. content: "\f10d";
  7720. }
  7721. .fa-quote-right:before {
  7722. content: "\f10e";
  7723. }
  7724. .fa-spinner:before {
  7725. content: "\f110";
  7726. }
  7727. .fa-circle:before {
  7728. content: "\f111";
  7729. }
  7730. .fa-mail-reply:before,
  7731. .fa-reply:before {
  7732. content: "\f112";
  7733. }
  7734. .fa-github-alt:before {
  7735. content: "\f113";
  7736. }
  7737. .fa-folder-o:before {
  7738. content: "\f114";
  7739. }
  7740. .fa-folder-open-o:before {
  7741. content: "\f115";
  7742. }
  7743. .fa-smile-o:before {
  7744. content: "\f118";
  7745. }
  7746. .fa-frown-o:before {
  7747. content: "\f119";
  7748. }
  7749. .fa-meh-o:before {
  7750. content: "\f11a";
  7751. }
  7752. .fa-gamepad:before {
  7753. content: "\f11b";
  7754. }
  7755. .fa-keyboard-o:before {
  7756. content: "\f11c";
  7757. }
  7758. .fa-flag-o:before {
  7759. content: "\f11d";
  7760. }
  7761. .fa-flag-checkered:before {
  7762. content: "\f11e";
  7763. }
  7764. .fa-terminal:before {
  7765. content: "\f120";
  7766. }
  7767. .fa-code:before {
  7768. content: "\f121";
  7769. }
  7770. .fa-mail-reply-all:before,
  7771. .fa-reply-all:before {
  7772. content: "\f122";
  7773. }
  7774. .fa-star-half-empty:before,
  7775. .fa-star-half-full:before,
  7776. .fa-star-half-o:before {
  7777. content: "\f123";
  7778. }
  7779. .fa-location-arrow:before {
  7780. content: "\f124";
  7781. }
  7782. .fa-crop:before {
  7783. content: "\f125";
  7784. }
  7785. .fa-code-fork:before {
  7786. content: "\f126";
  7787. }
  7788. .fa-unlink:before,
  7789. .fa-chain-broken:before {
  7790. content: "\f127";
  7791. }
  7792. .fa-question:before {
  7793. content: "\f128";
  7794. }
  7795. .fa-info:before {
  7796. content: "\f129";
  7797. }
  7798. .fa-exclamation:before {
  7799. content: "\f12a";
  7800. }
  7801. .fa-superscript:before {
  7802. content: "\f12b";
  7803. }
  7804. .fa-subscript:before {
  7805. content: "\f12c";
  7806. }
  7807. .fa-eraser:before {
  7808. content: "\f12d";
  7809. }
  7810. .fa-puzzle-piece:before {
  7811. content: "\f12e";
  7812. }
  7813. .fa-microphone:before {
  7814. content: "\f130";
  7815. }
  7816. .fa-microphone-slash:before {
  7817. content: "\f131";
  7818. }
  7819. .fa-shield:before {
  7820. content: "\f132";
  7821. }
  7822. .fa-calendar-o:before {
  7823. content: "\f133";
  7824. }
  7825. .fa-fire-extinguisher:before {
  7826. content: "\f134";
  7827. }
  7828. .fa-rocket:before {
  7829. content: "\f135";
  7830. }
  7831. .fa-maxcdn:before {
  7832. content: "\f136";
  7833. }
  7834. .fa-chevron-circle-left:before {
  7835. content: "\f137";
  7836. }
  7837. .fa-chevron-circle-right:before {
  7838. content: "\f138";
  7839. }
  7840. .fa-chevron-circle-up:before {
  7841. content: "\f139";
  7842. }
  7843. .fa-chevron-circle-down:before {
  7844. content: "\f13a";
  7845. }
  7846. .fa-html5:before {
  7847. content: "\f13b";
  7848. }
  7849. .fa-css3:before {
  7850. content: "\f13c";
  7851. }
  7852. .fa-anchor:before {
  7853. content: "\f13d";
  7854. }
  7855. .fa-unlock-alt:before {
  7856. content: "\f13e";
  7857. }
  7858. .fa-bullseye:before {
  7859. content: "\f140";
  7860. }
  7861. .fa-ellipsis-h:before {
  7862. content: "\f141";
  7863. }
  7864. .fa-ellipsis-v:before {
  7865. content: "\f142";
  7866. }
  7867. .fa-rss-square:before {
  7868. content: "\f143";
  7869. }
  7870. .fa-play-circle:before {
  7871. content: "\f144";
  7872. }
  7873. .fa-ticket:before {
  7874. content: "\f145";
  7875. }
  7876. .fa-minus-square:before {
  7877. content: "\f146";
  7878. }
  7879. .fa-minus-square-o:before {
  7880. content: "\f147";
  7881. }
  7882. .fa-level-up:before {
  7883. content: "\f148";
  7884. }
  7885. .fa-level-down:before {
  7886. content: "\f149";
  7887. }
  7888. .fa-check-square:before {
  7889. content: "\f14a";
  7890. }
  7891. .fa-pencil-square:before {
  7892. content: "\f14b";
  7893. }
  7894. .fa-external-link-square:before {
  7895. content: "\f14c";
  7896. }
  7897. .fa-share-square:before {
  7898. content: "\f14d";
  7899. }
  7900. .fa-compass:before {
  7901. content: "\f14e";
  7902. }
  7903. .fa-toggle-down:before,
  7904. .fa-caret-square-o-down:before {
  7905. content: "\f150";
  7906. }
  7907. .fa-toggle-up:before,
  7908. .fa-caret-square-o-up:before {
  7909. content: "\f151";
  7910. }
  7911. .fa-toggle-right:before,
  7912. .fa-caret-square-o-right:before {
  7913. content: "\f152";
  7914. }
  7915. .fa-euro:before,
  7916. .fa-eur:before {
  7917. content: "\f153";
  7918. }
  7919. .fa-gbp:before {
  7920. content: "\f154";
  7921. }
  7922. .fa-dollar:before,
  7923. .fa-usd:before {
  7924. content: "\f155";
  7925. }
  7926. .fa-rupee:before,
  7927. .fa-inr:before {
  7928. content: "\f156";
  7929. }
  7930. .fa-cny:before,
  7931. .fa-rmb:before,
  7932. .fa-yen:before,
  7933. .fa-jpy:before {
  7934. content: "\f157";
  7935. }
  7936. .fa-ruble:before,
  7937. .fa-rouble:before,
  7938. .fa-rub:before {
  7939. content: "\f158";
  7940. }
  7941. .fa-won:before,
  7942. .fa-krw:before {
  7943. content: "\f159";
  7944. }
  7945. .fa-bitcoin:before,
  7946. .fa-btc:before {
  7947. content: "\f15a";
  7948. }
  7949. .fa-file:before {
  7950. content: "\f15b";
  7951. }
  7952. .fa-file-text:before {
  7953. content: "\f15c";
  7954. }
  7955. .fa-sort-alpha-asc:before {
  7956. content: "\f15d";
  7957. }
  7958. .fa-sort-alpha-desc:before {
  7959. content: "\f15e";
  7960. }
  7961. .fa-sort-amount-asc:before {
  7962. content: "\f160";
  7963. }
  7964. .fa-sort-amount-desc:before {
  7965. content: "\f161";
  7966. }
  7967. .fa-sort-numeric-asc:before {
  7968. content: "\f162";
  7969. }
  7970. .fa-sort-numeric-desc:before {
  7971. content: "\f163";
  7972. }
  7973. .fa-thumbs-up:before {
  7974. content: "\f164";
  7975. }
  7976. .fa-thumbs-down:before {
  7977. content: "\f165";
  7978. }
  7979. .fa-youtube-square:before {
  7980. content: "\f166";
  7981. }
  7982. .fa-youtube:before {
  7983. content: "\f167";
  7984. }
  7985. .fa-xing:before {
  7986. content: "\f168";
  7987. }
  7988. .fa-xing-square:before {
  7989. content: "\f169";
  7990. }
  7991. .fa-youtube-play:before {
  7992. content: "\f16a";
  7993. }
  7994. .fa-dropbox:before {
  7995. content: "\f16b";
  7996. }
  7997. .fa-stack-overflow:before {
  7998. content: "\f16c";
  7999. }
  8000. .fa-instagram:before {
  8001. content: "\f16d";
  8002. }
  8003. .fa-flickr:before {
  8004. content: "\f16e";
  8005. }
  8006. .fa-adn:before {
  8007. content: "\f170";
  8008. }
  8009. .fa-bitbucket:before {
  8010. content: "\f171";
  8011. }
  8012. .fa-bitbucket-square:before {
  8013. content: "\f172";
  8014. }
  8015. .fa-tumblr:before {
  8016. content: "\f173";
  8017. }
  8018. .fa-tumblr-square:before {
  8019. content: "\f174";
  8020. }
  8021. .fa-long-arrow-down:before {
  8022. content: "\f175";
  8023. }
  8024. .fa-long-arrow-up:before {
  8025. content: "\f176";
  8026. }
  8027. .fa-long-arrow-left:before {
  8028. content: "\f177";
  8029. }
  8030. .fa-long-arrow-right:before {
  8031. content: "\f178";
  8032. }
  8033. .fa-apple:before {
  8034. content: "\f179";
  8035. }
  8036. .fa-windows:before {
  8037. content: "\f17a";
  8038. }
  8039. .fa-android:before {
  8040. content: "\f17b";
  8041. }
  8042. .fa-linux:before {
  8043. content: "\f17c";
  8044. }
  8045. .fa-dribbble:before {
  8046. content: "\f17d";
  8047. }
  8048. .fa-skype:before {
  8049. content: "\f17e";
  8050. }
  8051. .fa-foursquare:before {
  8052. content: "\f180";
  8053. }
  8054. .fa-trello:before {
  8055. content: "\f181";
  8056. }
  8057. .fa-female:before {
  8058. content: "\f182";
  8059. }
  8060. .fa-male:before {
  8061. content: "\f183";
  8062. }
  8063. .fa-gittip:before {
  8064. content: "\f184";
  8065. }
  8066. .fa-sun-o:before {
  8067. content: "\f185";
  8068. }
  8069. .fa-moon-o:before {
  8070. content: "\f186";
  8071. }
  8072. .fa-archive:before {
  8073. content: "\f187";
  8074. }
  8075. .fa-bug:before {
  8076. content: "\f188";
  8077. }
  8078. .fa-vk:before {
  8079. content: "\f189";
  8080. }
  8081. .fa-weibo:before {
  8082. content: "\f18a";
  8083. }
  8084. .fa-renren:before {
  8085. content: "\f18b";
  8086. }
  8087. .fa-pagelines:before {
  8088. content: "\f18c";
  8089. }
  8090. .fa-stack-exchange:before {
  8091. content: "\f18d";
  8092. }
  8093. .fa-arrow-circle-o-right:before {
  8094. content: "\f18e";
  8095. }
  8096. .fa-arrow-circle-o-left:before {
  8097. content: "\f190";
  8098. }
  8099. .fa-toggle-left:before,
  8100. .fa-caret-square-o-left:before {
  8101. content: "\f191";
  8102. }
  8103. .fa-dot-circle-o:before {
  8104. content: "\f192";
  8105. }
  8106. .fa-wheelchair:before {
  8107. content: "\f193";
  8108. }
  8109. .fa-vimeo-square:before {
  8110. content: "\f194";
  8111. }
  8112. .fa-turkish-lira:before,
  8113. .fa-try:before {
  8114. content: "\f195";
  8115. }
  8116. .fa-plus-square-o:before {
  8117. content: "\f196";
  8118. }
  8119. .fa-space-shuttle:before {
  8120. content: "\f197";
  8121. }
  8122. .fa-slack:before {
  8123. content: "\f198";
  8124. }
  8125. .fa-envelope-square:before {
  8126. content: "\f199";
  8127. }
  8128. .fa-wordpress:before {
  8129. content: "\f19a";
  8130. }
  8131. .fa-openid:before {
  8132. content: "\f19b";
  8133. }
  8134. .fa-institution:before,
  8135. .fa-bank:before,
  8136. .fa-university:before {
  8137. content: "\f19c";
  8138. }
  8139. .fa-mortar-board:before,
  8140. .fa-graduation-cap:before {
  8141. content: "\f19d";
  8142. }
  8143. .fa-yahoo:before {
  8144. content: "\f19e";
  8145. }
  8146. .fa-google:before {
  8147. content: "\f1a0";
  8148. }
  8149. .fa-reddit:before {
  8150. content: "\f1a1";
  8151. }
  8152. .fa-reddit-square:before {
  8153. content: "\f1a2";
  8154. }
  8155. .fa-stumbleupon-circle:before {
  8156. content: "\f1a3";
  8157. }
  8158. .fa-stumbleupon:before {
  8159. content: "\f1a4";
  8160. }
  8161. .fa-delicious:before {
  8162. content: "\f1a5";
  8163. }
  8164. .fa-digg:before {
  8165. content: "\f1a6";
  8166. }
  8167. .fa-pied-piper:before {
  8168. content: "\f1a7";
  8169. }
  8170. .fa-pied-piper-alt:before {
  8171. content: "\f1a8";
  8172. }
  8173. .fa-drupal:before {
  8174. content: "\f1a9";
  8175. }
  8176. .fa-joomla:before {
  8177. content: "\f1aa";
  8178. }
  8179. .fa-language:before {
  8180. content: "\f1ab";
  8181. }
  8182. .fa-fax:before {
  8183. content: "\f1ac";
  8184. }
  8185. .fa-building:before {
  8186. content: "\f1ad";
  8187. }
  8188. .fa-child:before {
  8189. content: "\f1ae";
  8190. }
  8191. .fa-paw:before {
  8192. content: "\f1b0";
  8193. }
  8194. .fa-spoon:before {
  8195. content: "\f1b1";
  8196. }
  8197. .fa-cube:before {
  8198. content: "\f1b2";
  8199. }
  8200. .fa-cubes:before {
  8201. content: "\f1b3";
  8202. }
  8203. .fa-behance:before {
  8204. content: "\f1b4";
  8205. }
  8206. .fa-behance-square:before {
  8207. content: "\f1b5";
  8208. }
  8209. .fa-steam:before {
  8210. content: "\f1b6";
  8211. }
  8212. .fa-steam-square:before {
  8213. content: "\f1b7";
  8214. }
  8215. .fa-recycle:before {
  8216. content: "\f1b8";
  8217. }
  8218. .fa-automobile:before,
  8219. .fa-car:before {
  8220. content: "\f1b9";
  8221. }
  8222. .fa-cab:before,
  8223. .fa-taxi:before {
  8224. content: "\f1ba";
  8225. }
  8226. .fa-tree:before {
  8227. content: "\f1bb";
  8228. }
  8229. .fa-spotify:before {
  8230. content: "\f1bc";
  8231. }
  8232. .fa-deviantart:before {
  8233. content: "\f1bd";
  8234. }
  8235. .fa-soundcloud:before {
  8236. content: "\f1be";
  8237. }
  8238. .fa-database:before {
  8239. content: "\f1c0";
  8240. }
  8241. .fa-file-pdf-o:before {
  8242. content: "\f1c1";
  8243. }
  8244. .fa-file-word-o:before {
  8245. content: "\f1c2";
  8246. }
  8247. .fa-file-excel-o:before {
  8248. content: "\f1c3";
  8249. }
  8250. .fa-file-powerpoint-o:before {
  8251. content: "\f1c4";
  8252. }
  8253. .fa-file-photo-o:before,
  8254. .fa-file-picture-o:before,
  8255. .fa-file-image-o:before {
  8256. content: "\f1c5";
  8257. }
  8258. .fa-file-zip-o:before,
  8259. .fa-file-archive-o:before {
  8260. content: "\f1c6";
  8261. }
  8262. .fa-file-sound-o:before,
  8263. .fa-file-audio-o:before {
  8264. content: "\f1c7";
  8265. }
  8266. .fa-file-movie-o:before,
  8267. .fa-file-video-o:before {
  8268. content: "\f1c8";
  8269. }
  8270. .fa-file-code-o:before {
  8271. content: "\f1c9";
  8272. }
  8273. .fa-vine:before {
  8274. content: "\f1ca";
  8275. }
  8276. .fa-codepen:before {
  8277. content: "\f1cb";
  8278. }
  8279. .fa-jsfiddle:before {
  8280. content: "\f1cc";
  8281. }
  8282. .fa-life-bouy:before,
  8283. .fa-life-buoy:before,
  8284. .fa-life-saver:before,
  8285. .fa-support:before,
  8286. .fa-life-ring:before {
  8287. content: "\f1cd";
  8288. }
  8289. .fa-circle-o-notch:before {
  8290. content: "\f1ce";
  8291. }
  8292. .fa-ra:before,
  8293. .fa-rebel:before {
  8294. content: "\f1d0";
  8295. }
  8296. .fa-ge:before,
  8297. .fa-empire:before {
  8298. content: "\f1d1";
  8299. }
  8300. .fa-git-square:before {
  8301. content: "\f1d2";
  8302. }
  8303. .fa-git:before {
  8304. content: "\f1d3";
  8305. }
  8306. .fa-hacker-news:before {
  8307. content: "\f1d4";
  8308. }
  8309. .fa-tencent-weibo:before {
  8310. content: "\f1d5";
  8311. }
  8312. .fa-qq:before {
  8313. content: "\f1d6";
  8314. }
  8315. .fa-wechat:before,
  8316. .fa-weixin:before {
  8317. content: "\f1d7";
  8318. }
  8319. .fa-send:before,
  8320. .fa-paper-plane:before {
  8321. content: "\f1d8";
  8322. }
  8323. .fa-send-o:before,
  8324. .fa-paper-plane-o:before {
  8325. content: "\f1d9";
  8326. }
  8327. .fa-history:before {
  8328. content: "\f1da";
  8329. }
  8330. .fa-circle-thin:before {
  8331. content: "\f1db";
  8332. }
  8333. .fa-header:before {
  8334. content: "\f1dc";
  8335. }
  8336. .fa-paragraph:before {
  8337. content: "\f1dd";
  8338. }
  8339. .fa-sliders:before {
  8340. content: "\f1de";
  8341. }
  8342. .fa-share-alt:before {
  8343. content: "\f1e0";
  8344. }
  8345. .fa-share-alt-square:before {
  8346. content: "\f1e1";
  8347. }
  8348. .fa-bomb:before {
  8349. content: "\f1e2";
  8350. }
  8351. .fa-soccer-ball-o:before,
  8352. .fa-futbol-o:before {
  8353. content: "\f1e3";
  8354. }
  8355. .fa-tty:before {
  8356. content: "\f1e4";
  8357. }
  8358. .fa-binoculars:before {
  8359. content: "\f1e5";
  8360. }
  8361. .fa-plug:before {
  8362. content: "\f1e6";
  8363. }
  8364. .fa-slideshare:before {
  8365. content: "\f1e7";
  8366. }
  8367. .fa-twitch:before {
  8368. content: "\f1e8";
  8369. }
  8370. .fa-yelp:before {
  8371. content: "\f1e9";
  8372. }
  8373. .fa-newspaper-o:before {
  8374. content: "\f1ea";
  8375. }
  8376. .fa-wifi:before {
  8377. content: "\f1eb";
  8378. }
  8379. .fa-calculator:before {
  8380. content: "\f1ec";
  8381. }
  8382. .fa-paypal:before {
  8383. content: "\f1ed";
  8384. }
  8385. .fa-google-wallet:before {
  8386. content: "\f1ee";
  8387. }
  8388. .fa-cc-visa:before {
  8389. content: "\f1f0";
  8390. }
  8391. .fa-cc-mastercard:before {
  8392. content: "\f1f1";
  8393. }
  8394. .fa-cc-discover:before {
  8395. content: "\f1f2";
  8396. }
  8397. .fa-cc-amex:before {
  8398. content: "\f1f3";
  8399. }
  8400. .fa-cc-paypal:before {
  8401. content: "\f1f4";
  8402. }
  8403. .fa-cc-stripe:before {
  8404. content: "\f1f5";
  8405. }
  8406. .fa-bell-slash:before {
  8407. content: "\f1f6";
  8408. }
  8409. .fa-bell-slash-o:before {
  8410. content: "\f1f7";
  8411. }
  8412. .fa-trash:before {
  8413. content: "\f1f8";
  8414. }
  8415. .fa-copyright:before {
  8416. content: "\f1f9";
  8417. }
  8418. .fa-at:before {
  8419. content: "\f1fa";
  8420. }
  8421. .fa-eyedropper:before {
  8422. content: "\f1fb";
  8423. }
  8424. .fa-paint-brush:before {
  8425. content: "\f1fc";
  8426. }
  8427. .fa-birthday-cake:before {
  8428. content: "\f1fd";
  8429. }
  8430. .fa-area-chart:before {
  8431. content: "\f1fe";
  8432. }
  8433. .fa-pie-chart:before {
  8434. content: "\f200";
  8435. }
  8436. .fa-line-chart:before {
  8437. content: "\f201";
  8438. }
  8439. .fa-lastfm:before {
  8440. content: "\f202";
  8441. }
  8442. .fa-lastfm-square:before {
  8443. content: "\f203";
  8444. }
  8445. .fa-toggle-off:before {
  8446. content: "\f204";
  8447. }
  8448. .fa-toggle-on:before {
  8449. content: "\f205";
  8450. }
  8451. .fa-bicycle:before {
  8452. content: "\f206";
  8453. }
  8454. .fa-bus:before {
  8455. content: "\f207";
  8456. }
  8457. .fa-ioxhost:before {
  8458. content: "\f208";
  8459. }
  8460. .fa-angellist:before {
  8461. content: "\f209";
  8462. }
  8463. .fa-cc:before {
  8464. content: "\f20a";
  8465. }
  8466. .fa-shekel:before,
  8467. .fa-sheqel:before,
  8468. .fa-ils:before {
  8469. content: "\f20b";
  8470. }
  8471. .fa-meanpath:before {
  8472. content: "\f20c";
  8473. }
  8474. /*!
  8475. *
  8476. * IPython base
  8477. *
  8478. */
  8479. .modal.fade .modal-dialog {
  8480. -webkit-transform: translate(0, 0);
  8481. -ms-transform: translate(0, 0);
  8482. -o-transform: translate(0, 0);
  8483. transform: translate(0, 0);
  8484. }
  8485. code {
  8486. color: #000;
  8487. }
  8488. pre {
  8489. font-size: inherit;
  8490. line-height: inherit;
  8491. }
  8492. label {
  8493. font-weight: normal;
  8494. }
  8495. /* Make the page background atleast 100% the height of the view port */
  8496. /* Make the page itself atleast 70% the height of the view port */
  8497. .border-box-sizing {
  8498. box-sizing: border-box;
  8499. -moz-box-sizing: border-box;
  8500. -webkit-box-sizing: border-box;
  8501. }
  8502. .corner-all {
  8503. border-radius: 2px;
  8504. }
  8505. .no-padding {
  8506. padding: 0px;
  8507. }
  8508. /* Flexible box model classes */
  8509. /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
  8510. /* This file is a compatability layer. It allows the usage of flexible box
  8511. model layouts accross multiple browsers, including older browsers. The newest,
  8512. universal implementation of the flexible box model is used when available (see
  8513. `Modern browsers` comments below). Browsers that are known to implement this
  8514. new spec completely include:
  8515.  
  8516. Firefox 28.0+
  8517. Chrome 29.0+
  8518. Internet Explorer 11+
  8519. Opera 17.0+
  8520.  
  8521. Browsers not listed, including Safari, are supported via the styling under the
  8522. `Old browsers` comments below.
  8523. */
  8524. .hbox {
  8525. /* Old browsers */
  8526. display: -webkit-box;
  8527. -webkit-box-orient: horizontal;
  8528. -webkit-box-align: stretch;
  8529. display: -moz-box;
  8530. -moz-box-orient: horizontal;
  8531. -moz-box-align: stretch;
  8532. display: box;
  8533. box-orient: horizontal;
  8534. box-align: stretch;
  8535. /* Modern browsers */
  8536. display: flex;
  8537. flex-direction: row;
  8538. align-items: stretch;
  8539. }
  8540. .hbox > * {
  8541. /* Old browsers */
  8542. -webkit-box-flex: 0;
  8543. -moz-box-flex: 0;
  8544. box-flex: 0;
  8545. /* Modern browsers */
  8546. flex: none;
  8547. }
  8548. .vbox {
  8549. /* Old browsers */
  8550. display: -webkit-box;
  8551. -webkit-box-orient: vertical;
  8552. -webkit-box-align: stretch;
  8553. display: -moz-box;
  8554. -moz-box-orient: vertical;
  8555. -moz-box-align: stretch;
  8556. display: box;
  8557. box-orient: vertical;
  8558. box-align: stretch;
  8559. /* Modern browsers */
  8560. display: flex;
  8561. flex-direction: column;
  8562. align-items: stretch;
  8563. }
  8564. .vbox > * {
  8565. /* Old browsers */
  8566. -webkit-box-flex: 0;
  8567. -moz-box-flex: 0;
  8568. box-flex: 0;
  8569. /* Modern browsers */
  8570. flex: none;
  8571. }
  8572. .hbox.reverse,
  8573. .vbox.reverse,
  8574. .reverse {
  8575. /* Old browsers */
  8576. -webkit-box-direction: reverse;
  8577. -moz-box-direction: reverse;
  8578. box-direction: reverse;
  8579. /* Modern browsers */
  8580. flex-direction: row-reverse;
  8581. }
  8582. .hbox.box-flex0,
  8583. .vbox.box-flex0,
  8584. .box-flex0 {
  8585. /* Old browsers */
  8586. -webkit-box-flex: 0;
  8587. -moz-box-flex: 0;
  8588. box-flex: 0;
  8589. /* Modern browsers */
  8590. flex: none;
  8591. width: auto;
  8592. }
  8593. .hbox.box-flex1,
  8594. .vbox.box-flex1,
  8595. .box-flex1 {
  8596. /* Old browsers */
  8597. -webkit-box-flex: 1;
  8598. -moz-box-flex: 1;
  8599. box-flex: 1;
  8600. /* Modern browsers */
  8601. flex: 1;
  8602. }
  8603. .hbox.box-flex,
  8604. .vbox.box-flex,
  8605. .box-flex {
  8606. /* Old browsers */
  8607. /* Old browsers */
  8608. -webkit-box-flex: 1;
  8609. -moz-box-flex: 1;
  8610. box-flex: 1;
  8611. /* Modern browsers */
  8612. flex: 1;
  8613. }
  8614. .hbox.box-flex2,
  8615. .vbox.box-flex2,
  8616. .box-flex2 {
  8617. /* Old browsers */
  8618. -webkit-box-flex: 2;
  8619. -moz-box-flex: 2;
  8620. box-flex: 2;
  8621. /* Modern browsers */
  8622. flex: 2;
  8623. }
  8624. .box-group1 {
  8625. /* Deprecated */
  8626. -webkit-box-flex-group: 1;
  8627. -moz-box-flex-group: 1;
  8628. box-flex-group: 1;
  8629. }
  8630. .box-group2 {
  8631. /* Deprecated */
  8632. -webkit-box-flex-group: 2;
  8633. -moz-box-flex-group: 2;
  8634. box-flex-group: 2;
  8635. }
  8636. .hbox.start,
  8637. .vbox.start,
  8638. .start {
  8639. /* Old browsers */
  8640. -webkit-box-pack: start;
  8641. -moz-box-pack: start;
  8642. box-pack: start;
  8643. /* Modern browsers */
  8644. justify-content: flex-start;
  8645. }
  8646. .hbox.end,
  8647. .vbox.end,
  8648. .end {
  8649. /* Old browsers */
  8650. -webkit-box-pack: end;
  8651. -moz-box-pack: end;
  8652. box-pack: end;
  8653. /* Modern browsers */
  8654. justify-content: flex-end;
  8655. }
  8656. .hbox.center,
  8657. .vbox.center,
  8658. .center {
  8659. /* Old browsers */
  8660. -webkit-box-pack: center;
  8661. -moz-box-pack: center;
  8662. box-pack: center;
  8663. /* Modern browsers */
  8664. justify-content: center;
  8665. }
  8666. .hbox.baseline,
  8667. .vbox.baseline,
  8668. .baseline {
  8669. /* Old browsers */
  8670. -webkit-box-pack: baseline;
  8671. -moz-box-pack: baseline;
  8672. box-pack: baseline;
  8673. /* Modern browsers */
  8674. justify-content: baseline;
  8675. }
  8676. .hbox.stretch,
  8677. .vbox.stretch,
  8678. .stretch {
  8679. /* Old browsers */
  8680. -webkit-box-pack: stretch;
  8681. -moz-box-pack: stretch;
  8682. box-pack: stretch;
  8683. /* Modern browsers */
  8684. justify-content: stretch;
  8685. }
  8686. .hbox.align-start,
  8687. .vbox.align-start,
  8688. .align-start {
  8689. /* Old browsers */
  8690. -webkit-box-align: start;
  8691. -moz-box-align: start;
  8692. box-align: start;
  8693. /* Modern browsers */
  8694. align-items: flex-start;
  8695. }
  8696. .hbox.align-end,
  8697. .vbox.align-end,
  8698. .align-end {
  8699. /* Old browsers */
  8700. -webkit-box-align: end;
  8701. -moz-box-align: end;
  8702. box-align: end;
  8703. /* Modern browsers */
  8704. align-items: flex-end;
  8705. }
  8706. .hbox.align-center,
  8707. .vbox.align-center,
  8708. .align-center {
  8709. /* Old browsers */
  8710. -webkit-box-align: center;
  8711. -moz-box-align: center;
  8712. box-align: center;
  8713. /* Modern browsers */
  8714. align-items: center;
  8715. }
  8716. .hbox.align-baseline,
  8717. .vbox.align-baseline,
  8718. .align-baseline {
  8719. /* Old browsers */
  8720. -webkit-box-align: baseline;
  8721. -moz-box-align: baseline;
  8722. box-align: baseline;
  8723. /* Modern browsers */
  8724. align-items: baseline;
  8725. }
  8726. .hbox.align-stretch,
  8727. .vbox.align-stretch,
  8728. .align-stretch {
  8729. /* Old browsers */
  8730. -webkit-box-align: stretch;
  8731. -moz-box-align: stretch;
  8732. box-align: stretch;
  8733. /* Modern browsers */
  8734. align-items: stretch;
  8735. }
  8736. div.error {
  8737. margin: 2em;
  8738. text-align: center;
  8739. }
  8740. div.error > h1 {
  8741. font-size: 500%;
  8742. line-height: normal;
  8743. }
  8744. div.error > p {
  8745. font-size: 200%;
  8746. line-height: normal;
  8747. }
  8748. div.traceback-wrapper {
  8749. text-align: left;
  8750. max-width: 800px;
  8751. margin: auto;
  8752. }
  8753. /**
  8754. * Primary styles
  8755. *
  8756. * Author: Jupyter Development Team
  8757. */
  8758. body {
  8759. background-color: #fff;
  8760. /* This makes sure that the body covers the entire window and needs to
  8761. be in a different element than the display: box in wrapper below */
  8762. position: absolute;
  8763. left: 0px;
  8764. right: 0px;
  8765. top: 0px;
  8766. bottom: 0px;
  8767. overflow: visible;
  8768. }
  8769. body > #header {
  8770. /* Initially hidden to prevent FLOUC */
  8771. display: none;
  8772. background-color: #fff;
  8773. /* Display over codemirror */
  8774. position: relative;
  8775. z-index: 100;
  8776. }
  8777. body > #header #header-container {
  8778. padding-bottom: 5px;
  8779. padding-top: 5px;
  8780. box-sizing: border-box;
  8781. -moz-box-sizing: border-box;
  8782. -webkit-box-sizing: border-box;
  8783. }
  8784. body > #header .header-bar {
  8785. width: 100%;
  8786. height: 1px;
  8787. background: #e7e7e7;
  8788. margin-bottom: -1px;
  8789. }
  8790. @media print {
  8791. body > #header {
  8792. display: none !important;
  8793. }
  8794. }
  8795. #header-spacer {
  8796. width: 100%;
  8797. visibility: hidden;
  8798. }
  8799. @media print {
  8800. #header-spacer {
  8801. display: none;
  8802. }
  8803. }
  8804. #ipython_notebook {
  8805. padding-left: 0px;
  8806. padding-top: 1px;
  8807. padding-bottom: 1px;
  8808. }
  8809. @media (max-width: 991px) {
  8810. #ipython_notebook {
  8811. margin-left: 10px;
  8812. }
  8813. }
  8814. [dir="rtl"] #ipython_notebook {
  8815. float: right !important;
  8816. }
  8817. #noscript {
  8818. width: auto;
  8819. padding-top: 16px;
  8820. padding-bottom: 16px;
  8821. text-align: center;
  8822. font-size: 22px;
  8823. color: red;
  8824. font-weight: bold;
  8825. }
  8826. #ipython_notebook img {
  8827. height: 28px;
  8828. }
  8829. #site {
  8830. width: 100%;
  8831. display: none;
  8832. box-sizing: border-box;
  8833. -moz-box-sizing: border-box;
  8834. -webkit-box-sizing: border-box;
  8835. overflow: auto;
  8836. }
  8837. @media print {
  8838. #site {
  8839. height: auto !important;
  8840. }
  8841. }
  8842. /* Smaller buttons */
  8843. .ui-button .ui-button-text {
  8844. padding: 0.2em 0.8em;
  8845. font-size: 77%;
  8846. }
  8847. input.ui-button {
  8848. padding: 0.3em 0.9em;
  8849. }
  8850. span#login_widget {
  8851. float: right;
  8852. }
  8853. span#login_widget > .button,
  8854. #logout {
  8855. color: #333;
  8856. background-color: #fff;
  8857. border-color: #ccc;
  8858. }
  8859. span#login_widget > .button:focus,
  8860. #logout:focus,
  8861. span#login_widget > .button.focus,
  8862. #logout.focus {
  8863. color: #333;
  8864. background-color: #e6e6e6;
  8865. border-color: #8c8c8c;
  8866. }
  8867. span#login_widget > .button:hover,
  8868. #logout:hover {
  8869. color: #333;
  8870. background-color: #e6e6e6;
  8871. border-color: #adadad;
  8872. }
  8873. span#login_widget > .button:active,
  8874. #logout:active,
  8875. span#login_widget > .button.active,
  8876. #logout.active,
  8877. .open > .dropdown-togglespan#login_widget > .button,
  8878. .open > .dropdown-toggle#logout {
  8879. color: #333;
  8880. background-color: #e6e6e6;
  8881. border-color: #adadad;
  8882. }
  8883. span#login_widget > .button:active:hover,
  8884. #logout:active:hover,
  8885. span#login_widget > .button.active:hover,
  8886. #logout.active:hover,
  8887. .open > .dropdown-togglespan#login_widget > .button:hover,
  8888. .open > .dropdown-toggle#logout:hover,
  8889. span#login_widget > .button:active:focus,
  8890. #logout:active:focus,
  8891. span#login_widget > .button.active:focus,
  8892. #logout.active:focus,
  8893. .open > .dropdown-togglespan#login_widget > .button:focus,
  8894. .open > .dropdown-toggle#logout:focus,
  8895. span#login_widget > .button:active.focus,
  8896. #logout:active.focus,
  8897. span#login_widget > .button.active.focus,
  8898. #logout.active.focus,
  8899. .open > .dropdown-togglespan#login_widget > .button.focus,
  8900. .open > .dropdown-toggle#logout.focus {
  8901. color: #333;
  8902. background-color: #d4d4d4;
  8903. border-color: #8c8c8c;
  8904. }
  8905. span#login_widget > .button:active,
  8906. #logout:active,
  8907. span#login_widget > .button.active,
  8908. #logout.active,
  8909. .open > .dropdown-togglespan#login_widget > .button,
  8910. .open > .dropdown-toggle#logout {
  8911. background-image: none;
  8912. }
  8913. span#login_widget > .button.disabled:hover,
  8914. #logout.disabled:hover,
  8915. span#login_widget > .button[disabled]:hover,
  8916. #logout[disabled]:hover,
  8917. fieldset[disabled] span#login_widget > .button:hover,
  8918. fieldset[disabled] #logout:hover,
  8919. span#login_widget > .button.disabled:focus,
  8920. #logout.disabled:focus,
  8921. span#login_widget > .button[disabled]:focus,
  8922. #logout[disabled]:focus,
  8923. fieldset[disabled] span#login_widget > .button:focus,
  8924. fieldset[disabled] #logout:focus,
  8925. span#login_widget > .button.disabled.focus,
  8926. #logout.disabled.focus,
  8927. span#login_widget > .button[disabled].focus,
  8928. #logout[disabled].focus,
  8929. fieldset[disabled] span#login_widget > .button.focus,
  8930. fieldset[disabled] #logout.focus {
  8931. background-color: #fff;
  8932. border-color: #ccc;
  8933. }
  8934. span#login_widget > .button .badge,
  8935. #logout .badge {
  8936. color: #fff;
  8937. background-color: #333;
  8938. }
  8939. .nav-header {
  8940. text-transform: none;
  8941. }
  8942. #header > span {
  8943. margin-top: 10px;
  8944. }
  8945. .modal_stretch .modal-dialog {
  8946. /* Old browsers */
  8947. display: -webkit-box;
  8948. -webkit-box-orient: vertical;
  8949. -webkit-box-align: stretch;
  8950. display: -moz-box;
  8951. -moz-box-orient: vertical;
  8952. -moz-box-align: stretch;
  8953. display: box;
  8954. box-orient: vertical;
  8955. box-align: stretch;
  8956. /* Modern browsers */
  8957. display: flex;
  8958. flex-direction: column;
  8959. align-items: stretch;
  8960. min-height: 80vh;
  8961. }
  8962. .modal_stretch .modal-dialog .modal-body {
  8963. max-height: calc(100vh - 200px);
  8964. overflow: auto;
  8965. flex: 1;
  8966. }
  8967. @media (min-width: 768px) {
  8968. .modal .modal-dialog {
  8969. width: 700px;
  8970. }
  8971. }
  8972. @media (min-width: 768px) {
  8973. select.form-control {
  8974. margin-left: 12px;
  8975. margin-right: 12px;
  8976. }
  8977. }
  8978. /*!
  8979. *
  8980. * IPython auth
  8981. *
  8982. */
  8983. .center-nav {
  8984. display: inline-block;
  8985. margin-bottom: -4px;
  8986. }
  8987. /*!
  8988. *
  8989. * IPython tree view
  8990. *
  8991. */
  8992. /* We need an invisible input field on top of the sentense*/
  8993. /* "Drag file onto the list ..." */
  8994. .alternate_upload {
  8995. background-color: none;
  8996. display: inline;
  8997. }
  8998. .alternate_upload.form {
  8999. padding: 0;
  9000. margin: 0;
  9001. }
  9002. .alternate_upload input.fileinput {
  9003. text-align: center;
  9004. vertical-align: middle;
  9005. display: inline;
  9006. opacity: 0;
  9007. z-index: 2;
  9008. width: 12ex;
  9009. margin-right: -12ex;
  9010. }
  9011. .alternate_upload .btn-upload {
  9012. height: 22px;
  9013. }
  9014. /**
  9015. * Primary styles
  9016. *
  9017. * Author: Jupyter Development Team
  9018. */
  9019. [dir="rtl"] #tabs li {
  9020. float: right;
  9021. }
  9022. ul#tabs {
  9023. margin-bottom: 4px;
  9024. }
  9025. [dir="rtl"] ul#tabs {
  9026. margin-right: 0px;
  9027. }
  9028. ul#tabs a {
  9029. padding-top: 6px;
  9030. padding-bottom: 4px;
  9031. }
  9032. ul.breadcrumb a:focus,
  9033. ul.breadcrumb a:hover {
  9034. text-decoration: none;
  9035. }
  9036. ul.breadcrumb i.icon-home {
  9037. font-size: 16px;
  9038. margin-right: 4px;
  9039. }
  9040. ul.breadcrumb span {
  9041. color: #5e5e5e;
  9042. }
  9043. .list_toolbar {
  9044. padding: 4px 0 4px 0;
  9045. vertical-align: middle;
  9046. }
  9047. .list_toolbar .tree-buttons {
  9048. padding-top: 1px;
  9049. }
  9050. [dir="rtl"] .list_toolbar .tree-buttons {
  9051. float: left !important;
  9052. }
  9053. [dir="rtl"] .list_toolbar .pull-right {
  9054. padding-top: 1px;
  9055. float: left !important;
  9056. }
  9057. [dir="rtl"] .list_toolbar .pull-left {
  9058. float: right !important;
  9059. }
  9060. .dynamic-buttons {
  9061. padding-top: 3px;
  9062. display: inline-block;
  9063. }
  9064. .list_toolbar [class*="span"] {
  9065. min-height: 24px;
  9066. }
  9067. .list_header {
  9068. font-weight: bold;
  9069. background-color: #EEE;
  9070. }
  9071. .list_placeholder {
  9072. font-weight: bold;
  9073. padding-top: 4px;
  9074. padding-bottom: 4px;
  9075. padding-left: 7px;
  9076. padding-right: 7px;
  9077. }
  9078. .list_container {
  9079. margin-top: 4px;
  9080. margin-bottom: 20px;
  9081. border: 1px solid #ddd;
  9082. border-radius: 2px;
  9083. }
  9084. .list_container > div {
  9085. border-bottom: 1px solid #ddd;
  9086. }
  9087. .list_container > div:hover .list-item {
  9088. background-color: red;
  9089. }
  9090. .list_container > div:last-child {
  9091. border: none;
  9092. }
  9093. .list_item:hover .list_item {
  9094. background-color: #ddd;
  9095. }
  9096. .list_item a {
  9097. text-decoration: none;
  9098. }
  9099. .list_item:hover {
  9100. background-color: #fafafa;
  9101. }
  9102. .list_header > div,
  9103. .list_item > div {
  9104. padding-top: 4px;
  9105. padding-bottom: 4px;
  9106. padding-left: 7px;
  9107. padding-right: 7px;
  9108. line-height: 22px;
  9109. }
  9110. .list_header > div input,
  9111. .list_item > div input {
  9112. margin-right: 7px;
  9113. margin-left: 14px;
  9114. vertical-align: baseline;
  9115. line-height: 22px;
  9116. position: relative;
  9117. top: -1px;
  9118. }
  9119. .list_header > div .item_link,
  9120. .list_item > div .item_link {
  9121. margin-left: -1px;
  9122. vertical-align: baseline;
  9123. line-height: 22px;
  9124. }
  9125. .new-file input[type=checkbox] {
  9126. visibility: hidden;
  9127. }
  9128. .item_name {
  9129. line-height: 22px;
  9130. height: 24px;
  9131. }
  9132. .item_icon {
  9133. font-size: 14px;
  9134. color: #5e5e5e;
  9135. margin-right: 7px;
  9136. margin-left: 7px;
  9137. line-height: 22px;
  9138. vertical-align: baseline;
  9139. }
  9140. .item_buttons {
  9141. line-height: 1em;
  9142. margin-left: -5px;
  9143. }
  9144. .item_buttons .btn,
  9145. .item_buttons .btn-group,
  9146. .item_buttons .input-group {
  9147. float: left;
  9148. }
  9149. .item_buttons > .btn,
  9150. .item_buttons > .btn-group,
  9151. .item_buttons > .input-group {
  9152. margin-left: 5px;
  9153. }
  9154. .item_buttons .btn {
  9155. min-width: 13ex;
  9156. }
  9157. .item_buttons .running-indicator {
  9158. padding-top: 4px;
  9159. color: #5cb85c;
  9160. }
  9161. .item_buttons .kernel-name {
  9162. padding-top: 4px;
  9163. color: #5bc0de;
  9164. margin-right: 7px;
  9165. float: left;
  9166. }
  9167. .toolbar_info {
  9168. height: 24px;
  9169. line-height: 24px;
  9170. }
  9171. .list_item input:not([type=checkbox]) {
  9172. padding-top: 3px;
  9173. padding-bottom: 3px;
  9174. height: 22px;
  9175. line-height: 14px;
  9176. margin: 0px;
  9177. }
  9178. .highlight_text {
  9179. color: blue;
  9180. }
  9181. #project_name {
  9182. display: inline-block;
  9183. padding-left: 7px;
  9184. margin-left: -2px;
  9185. }
  9186. #project_name > .breadcrumb {
  9187. padding: 0px;
  9188. margin-bottom: 0px;
  9189. background-color: transparent;
  9190. font-weight: bold;
  9191. }
  9192. #tree-selector {
  9193. padding-right: 0px;
  9194. }
  9195. [dir="rtl"] #tree-selector a {
  9196. float: right;
  9197. }
  9198. #button-select-all {
  9199. min-width: 50px;
  9200. }
  9201. #select-all {
  9202. margin-left: 7px;
  9203. margin-right: 2px;
  9204. }
  9205. .menu_icon {
  9206. margin-right: 2px;
  9207. }
  9208. .tab-content .row {
  9209. margin-left: 0px;
  9210. margin-right: 0px;
  9211. }
  9212. .folder_icon:before {
  9213. display: inline-block;
  9214. font: normal normal normal 14px/1 FontAwesome;
  9215. font-size: inherit;
  9216. text-rendering: auto;
  9217. -webkit-font-smoothing: antialiased;
  9218. -moz-osx-font-smoothing: grayscale;
  9219. content: "\f114";
  9220. }
  9221. .folder_icon:before.pull-left {
  9222. margin-right: .3em;
  9223. }
  9224. .folder_icon:before.pull-right {
  9225. margin-left: .3em;
  9226. }
  9227. .notebook_icon:before {
  9228. display: inline-block;
  9229. font: normal normal normal 14px/1 FontAwesome;
  9230. font-size: inherit;
  9231. text-rendering: auto;
  9232. -webkit-font-smoothing: antialiased;
  9233. -moz-osx-font-smoothing: grayscale;
  9234. content: "\f02d";
  9235. position: relative;
  9236. top: -1px;
  9237. }
  9238. .notebook_icon:before.pull-left {
  9239. margin-right: .3em;
  9240. }
  9241. .notebook_icon:before.pull-right {
  9242. margin-left: .3em;
  9243. }
  9244. .running_notebook_icon:before {
  9245. display: inline-block;
  9246. font: normal normal normal 14px/1 FontAwesome;
  9247. font-size: inherit;
  9248. text-rendering: auto;
  9249. -webkit-font-smoothing: antialiased;
  9250. -moz-osx-font-smoothing: grayscale;
  9251. content: "\f02d";
  9252. position: relative;
  9253. top: -1px;
  9254. color: #5cb85c;
  9255. }
  9256. .running_notebook_icon:before.pull-left {
  9257. margin-right: .3em;
  9258. }
  9259. .running_notebook_icon:before.pull-right {
  9260. margin-left: .3em;
  9261. }
  9262. .file_icon:before {
  9263. display: inline-block;
  9264. font: normal normal normal 14px/1 FontAwesome;
  9265. font-size: inherit;
  9266. text-rendering: auto;
  9267. -webkit-font-smoothing: antialiased;
  9268. -moz-osx-font-smoothing: grayscale;
  9269. content: "\f016";
  9270. position: relative;
  9271. top: -2px;
  9272. }
  9273. .file_icon:before.pull-left {
  9274. margin-right: .3em;
  9275. }
  9276. .file_icon:before.pull-right {
  9277. margin-left: .3em;
  9278. }
  9279. #notebook_toolbar .pull-right {
  9280. padding-top: 0px;
  9281. margin-right: -1px;
  9282. }
  9283. ul#new-menu {
  9284. left: auto;
  9285. right: 0;
  9286. }
  9287. [dir="rtl"] #new-menu {
  9288. text-align: right;
  9289. }
  9290. .kernel-menu-icon {
  9291. padding-right: 12px;
  9292. width: 24px;
  9293. content: "\f096";
  9294. }
  9295. .kernel-menu-icon:before {
  9296. content: "\f096";
  9297. }
  9298. .kernel-menu-icon-current:before {
  9299. content: "\f00c";
  9300. }
  9301. #tab_content {
  9302. padding-top: 20px;
  9303. }
  9304. #running .panel-group .panel {
  9305. margin-top: 3px;
  9306. margin-bottom: 1em;
  9307. }
  9308. #running .panel-group .panel .panel-heading {
  9309. background-color: #EEE;
  9310. padding-top: 4px;
  9311. padding-bottom: 4px;
  9312. padding-left: 7px;
  9313. padding-right: 7px;
  9314. line-height: 22px;
  9315. }
  9316. #running .panel-group .panel .panel-heading a:focus,
  9317. #running .panel-group .panel .panel-heading a:hover {
  9318. text-decoration: none;
  9319. }
  9320. #running .panel-group .panel .panel-body {
  9321. padding: 0px;
  9322. }
  9323. #running .panel-group .panel .panel-body .list_container {
  9324. margin-top: 0px;
  9325. margin-bottom: 0px;
  9326. border: 0px;
  9327. border-radius: 0px;
  9328. }
  9329. #running .panel-group .panel .panel-body .list_container .list_item {
  9330. border-bottom: 1px solid #ddd;
  9331. }
  9332. #running .panel-group .panel .panel-body .list_container .list_item:last-child {
  9333. border-bottom: 0px;
  9334. }
  9335. [dir="rtl"] #running .col-sm-8 {
  9336. float: right !important;
  9337. }
  9338. .delete-button {
  9339. display: none;
  9340. }
  9341. .duplicate-button {
  9342. display: none;
  9343. }
  9344. .rename-button {
  9345. display: none;
  9346. }
  9347. .shutdown-button {
  9348. display: none;
  9349. }
  9350. .dynamic-instructions {
  9351. display: inline-block;
  9352. padding-top: 4px;
  9353. }
  9354. /*!
  9355. *
  9356. * IPython text editor webapp
  9357. *
  9358. */
  9359. .selected-keymap i.fa {
  9360. padding: 0px 5px;
  9361. }
  9362. .selected-keymap i.fa:before {
  9363. content: "\f00c";
  9364. }
  9365. #mode-menu {
  9366. overflow: auto;
  9367. max-height: 20em;
  9368. }
  9369. .edit_app #header {
  9370. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9371. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9372. }
  9373. .edit_app #menubar .navbar {
  9374. /* Use a negative 1 bottom margin, so the border overlaps the border of the
  9375. header */
  9376. margin-bottom: -1px;
  9377. }
  9378. .dirty-indicator {
  9379. display: inline-block;
  9380. font: normal normal normal 14px/1 FontAwesome;
  9381. font-size: inherit;
  9382. text-rendering: auto;
  9383. -webkit-font-smoothing: antialiased;
  9384. -moz-osx-font-smoothing: grayscale;
  9385. width: 20px;
  9386. }
  9387. .dirty-indicator.pull-left {
  9388. margin-right: .3em;
  9389. }
  9390. .dirty-indicator.pull-right {
  9391. margin-left: .3em;
  9392. }
  9393. .dirty-indicator-dirty {
  9394. display: inline-block;
  9395. font: normal normal normal 14px/1 FontAwesome;
  9396. font-size: inherit;
  9397. text-rendering: auto;
  9398. -webkit-font-smoothing: antialiased;
  9399. -moz-osx-font-smoothing: grayscale;
  9400. width: 20px;
  9401. }
  9402. .dirty-indicator-dirty.pull-left {
  9403. margin-right: .3em;
  9404. }
  9405. .dirty-indicator-dirty.pull-right {
  9406. margin-left: .3em;
  9407. }
  9408. .dirty-indicator-clean {
  9409. display: inline-block;
  9410. font: normal normal normal 14px/1 FontAwesome;
  9411. font-size: inherit;
  9412. text-rendering: auto;
  9413. -webkit-font-smoothing: antialiased;
  9414. -moz-osx-font-smoothing: grayscale;
  9415. width: 20px;
  9416. }
  9417. .dirty-indicator-clean.pull-left {
  9418. margin-right: .3em;
  9419. }
  9420. .dirty-indicator-clean.pull-right {
  9421. margin-left: .3em;
  9422. }
  9423. .dirty-indicator-clean:before {
  9424. display: inline-block;
  9425. font: normal normal normal 14px/1 FontAwesome;
  9426. font-size: inherit;
  9427. text-rendering: auto;
  9428. -webkit-font-smoothing: antialiased;
  9429. -moz-osx-font-smoothing: grayscale;
  9430. content: "\f00c";
  9431. }
  9432. .dirty-indicator-clean:before.pull-left {
  9433. margin-right: .3em;
  9434. }
  9435. .dirty-indicator-clean:before.pull-right {
  9436. margin-left: .3em;
  9437. }
  9438. #filename {
  9439. font-size: 16pt;
  9440. display: table;
  9441. padding: 0px 5px;
  9442. }
  9443. #current-mode {
  9444. padding-left: 5px;
  9445. padding-right: 5px;
  9446. }
  9447. #texteditor-backdrop {
  9448. padding-top: 20px;
  9449. padding-bottom: 20px;
  9450. }
  9451. @media not print {
  9452. #texteditor-backdrop {
  9453. background-color: #EEE;
  9454. }
  9455. }
  9456. @media print {
  9457. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  9458. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  9459. background-color: #fff;
  9460. }
  9461. }
  9462. @media not print {
  9463. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  9464. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  9465. background-color: #fff;
  9466. }
  9467. }
  9468. @media not print {
  9469. #texteditor-backdrop #texteditor-container {
  9470. padding: 0px;
  9471. background-color: #fff;
  9472. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9473. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9474. }
  9475. }
  9476. /*!
  9477. *
  9478. * IPython notebook
  9479. *
  9480. */
  9481. /* CSS font colors for translated ANSI colors. */
  9482. .ansibold {
  9483. font-weight: bold;
  9484. }
  9485. /* use dark versions for foreground, to improve visibility */
  9486. .ansiblack {
  9487. color: black;
  9488. }
  9489. .ansired {
  9490. color: darkred;
  9491. }
  9492. .ansigreen {
  9493. color: darkgreen;
  9494. }
  9495. .ansiyellow {
  9496. color: #c4a000;
  9497. }
  9498. .ansiblue {
  9499. color: darkblue;
  9500. }
  9501. .ansipurple {
  9502. color: darkviolet;
  9503. }
  9504. .ansicyan {
  9505. color: steelblue;
  9506. }
  9507. .ansigray {
  9508. color: gray;
  9509. }
  9510. /* and light for background, for the same reason */
  9511. .ansibgblack {
  9512. background-color: black;
  9513. }
  9514. .ansibgred {
  9515. background-color: red;
  9516. }
  9517. .ansibggreen {
  9518. background-color: green;
  9519. }
  9520. .ansibgyellow {
  9521. background-color: yellow;
  9522. }
  9523. .ansibgblue {
  9524. background-color: blue;
  9525. }
  9526. .ansibgpurple {
  9527. background-color: magenta;
  9528. }
  9529. .ansibgcyan {
  9530. background-color: cyan;
  9531. }
  9532. .ansibggray {
  9533. background-color: gray;
  9534. }
  9535. div.cell {
  9536. /* Old browsers */
  9537. display: -webkit-box;
  9538. -webkit-box-orient: vertical;
  9539. -webkit-box-align: stretch;
  9540. display: -moz-box;
  9541. -moz-box-orient: vertical;
  9542. -moz-box-align: stretch;
  9543. display: box;
  9544. box-orient: vertical;
  9545. box-align: stretch;
  9546. /* Modern browsers */
  9547. display: flex;
  9548. flex-direction: column;
  9549. align-items: stretch;
  9550. border-radius: 2px;
  9551. box-sizing: border-box;
  9552. -moz-box-sizing: border-box;
  9553. -webkit-box-sizing: border-box;
  9554. border-width: 1px;
  9555. border-style: solid;
  9556. border-color: transparent;
  9557. width: 100%;
  9558. padding: 5px;
  9559. /* This acts as a spacer between cells, that is outside the border */
  9560. margin: 0px;
  9561. outline: none;
  9562. border-left-width: 1px;
  9563. padding-left: 5px;
  9564. background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%);
  9565. }
  9566. div.cell.jupyter-soft-selected {
  9567. border-left-color: #90CAF9;
  9568. border-left-color: #E3F2FD;
  9569. border-left-width: 1px;
  9570. padding-left: 5px;
  9571. border-right-color: #E3F2FD;
  9572. border-right-width: 1px;
  9573. background: #E3F2FD;
  9574. }
  9575. @media print {
  9576. div.cell.jupyter-soft-selected {
  9577. border-color: transparent;
  9578. }
  9579. }
  9580. div.cell.selected {
  9581. border-color: #ababab;
  9582. border-left-width: 0px;
  9583. padding-left: 6px;
  9584. background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%);
  9585. }
  9586. @media print {
  9587. div.cell.selected {
  9588. border-color: transparent;
  9589. }
  9590. }
  9591. div.cell.selected.jupyter-soft-selected {
  9592. border-left-width: 0;
  9593. padding-left: 6px;
  9594. background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%);
  9595. }
  9596. .edit_mode div.cell.selected {
  9597. border-color: #66BB6A;
  9598. border-left-width: 0px;
  9599. padding-left: 6px;
  9600. background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%);
  9601. }
  9602. @media print {
  9603. .edit_mode div.cell.selected {
  9604. border-color: transparent;
  9605. }
  9606. }
  9607. .prompt {
  9608. /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
  9609. min-width: 14ex;
  9610. /* This padding is tuned to match the padding on the CodeMirror editor. */
  9611. padding: 0.4em;
  9612. margin: 0px;
  9613. font-family: monospace;
  9614. text-align: right;
  9615. /* This has to match that of the the CodeMirror class line-height below */
  9616. line-height: 1.21429em;
  9617. /* Don't highlight prompt number selection */
  9618. -webkit-touch-callout: none;
  9619. -webkit-user-select: none;
  9620. -khtml-user-select: none;
  9621. -moz-user-select: none;
  9622. -ms-user-select: none;
  9623. user-select: none;
  9624. /* Use default cursor */
  9625. cursor: default;
  9626. }
  9627. @media (max-width: 540px) {
  9628. .prompt {
  9629. text-align: left;
  9630. }
  9631. }
  9632. div.inner_cell {
  9633. min-width: 0;
  9634. /* Old browsers */
  9635. display: -webkit-box;
  9636. -webkit-box-orient: vertical;
  9637. -webkit-box-align: stretch;
  9638. display: -moz-box;
  9639. -moz-box-orient: vertical;
  9640. -moz-box-align: stretch;
  9641. display: box;
  9642. box-orient: vertical;
  9643. box-align: stretch;
  9644. /* Modern browsers */
  9645. display: flex;
  9646. flex-direction: column;
  9647. align-items: stretch;
  9648. /* Old browsers */
  9649. -webkit-box-flex: 1;
  9650. -moz-box-flex: 1;
  9651. box-flex: 1;
  9652. /* Modern browsers */
  9653. flex: 1;
  9654. }
  9655. /* input_area and input_prompt must match in top border and margin for alignment */
  9656. div.input_area {
  9657. border: 1px solid #cfcfcf;
  9658. border-radius: 2px;
  9659. background: #f7f7f7;
  9660. line-height: 1.21429em;
  9661. }
  9662. /* This is needed so that empty prompt areas can collapse to zero height when there
  9663. is no content in the output_subarea and the prompt. The main purpose of this is
  9664. to make sure that empty JavaScript output_subareas have no height. */
  9665. div.prompt:empty {
  9666. padding-top: 0;
  9667. padding-bottom: 0;
  9668. }
  9669. div.unrecognized_cell {
  9670. padding: 5px 5px 5px 0px;
  9671. /* Old browsers */
  9672. display: -webkit-box;
  9673. -webkit-box-orient: horizontal;
  9674. -webkit-box-align: stretch;
  9675. display: -moz-box;
  9676. -moz-box-orient: horizontal;
  9677. -moz-box-align: stretch;
  9678. display: box;
  9679. box-orient: horizontal;
  9680. box-align: stretch;
  9681. /* Modern browsers */
  9682. display: flex;
  9683. flex-direction: row;
  9684. align-items: stretch;
  9685. }
  9686. div.unrecognized_cell .inner_cell {
  9687. border-radius: 2px;
  9688. padding: 5px;
  9689. font-weight: bold;
  9690. color: red;
  9691. border: 1px solid #cfcfcf;
  9692. background: #eaeaea;
  9693. }
  9694. div.unrecognized_cell .inner_cell a {
  9695. color: inherit;
  9696. text-decoration: none;
  9697. }
  9698. div.unrecognized_cell .inner_cell a:hover {
  9699. color: inherit;
  9700. text-decoration: none;
  9701. }
  9702. @media (max-width: 540px) {
  9703. div.unrecognized_cell > div.prompt {
  9704. display: none;
  9705. }
  9706. }
  9707. div.code_cell {
  9708. /* avoid page breaking on code cells when printing */
  9709. }
  9710. @media print {
  9711. div.code_cell {
  9712. page-break-inside: avoid;
  9713. }
  9714. }
  9715. /* any special styling for code cells that are currently running goes here */
  9716. div.input {
  9717. page-break-inside: avoid;
  9718. /* Old browsers */
  9719. display: -webkit-box;
  9720. -webkit-box-orient: horizontal;
  9721. -webkit-box-align: stretch;
  9722. display: -moz-box;
  9723. -moz-box-orient: horizontal;
  9724. -moz-box-align: stretch;
  9725. display: box;
  9726. box-orient: horizontal;
  9727. box-align: stretch;
  9728. /* Modern browsers */
  9729. display: flex;
  9730. flex-direction: row;
  9731. align-items: stretch;
  9732. }
  9733. @media (max-width: 540px) {
  9734. div.input {
  9735. /* Old browsers */
  9736. display: -webkit-box;
  9737. -webkit-box-orient: vertical;
  9738. -webkit-box-align: stretch;
  9739. display: -moz-box;
  9740. -moz-box-orient: vertical;
  9741. -moz-box-align: stretch;
  9742. display: box;
  9743. box-orient: vertical;
  9744. box-align: stretch;
  9745. /* Modern browsers */
  9746. display: flex;
  9747. flex-direction: column;
  9748. align-items: stretch;
  9749. }
  9750. }
  9751. /* input_area and input_prompt must match in top border and margin for alignment */
  9752. div.input_prompt {
  9753. color: #303F9F;
  9754. border-top: 1px solid transparent;
  9755. }
  9756. div.input_area > div.highlight {
  9757. margin: 0.4em;
  9758. border: none;
  9759. padding: 0px;
  9760. background-color: transparent;
  9761. }
  9762. div.input_area > div.highlight > pre {
  9763. margin: 0px;
  9764. border: none;
  9765. padding: 0px;
  9766. background-color: transparent;
  9767. }
  9768. /* The following gets added to the <head> if it is detected that the user has a
  9769. * monospace font with inconsistent normal/bold/italic height. See
  9770. * notebookmain.js. Such fonts will have keywords vertically offset with
  9771. * respect to the rest of the text. The user should select a better font.
  9772. * See: https://github.com/ipython/ipython/issues/1503
  9773. *
  9774. * .CodeMirror span {
  9775. * vertical-align: bottom;
  9776. * }
  9777. */
  9778. .CodeMirror {
  9779. line-height: 1.21429em;
  9780. /* Changed from 1em to our global default */
  9781. font-size: 14px;
  9782. height: auto;
  9783. /* Changed to auto to autogrow */
  9784. background: none;
  9785. /* Changed from white to allow our bg to show through */
  9786. }
  9787. .CodeMirror-scroll {
  9788. /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
  9789. /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
  9790. overflow-y: hidden;
  9791. overflow-x: auto;
  9792. }
  9793. .CodeMirror-lines {
  9794. /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
  9795. /* we have set a different line-height and want this to scale with that. */
  9796. padding: 0.4em;
  9797. }
  9798. .CodeMirror-linenumber {
  9799. padding: 0 8px 0 4px;
  9800. }
  9801. .CodeMirror-gutters {
  9802. border-bottom-left-radius: 2px;
  9803. border-top-left-radius: 2px;
  9804. }
  9805. .CodeMirror pre {
  9806. /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
  9807. /* .CodeMirror-lines */
  9808. padding: 0;
  9809. border: 0;
  9810. border-radius: 0;
  9811. }
  9812. /*
  9813.  
  9814. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  9815. Adapted from GitHub theme
  9816.  
  9817. */
  9818. .highlight-base {
  9819. color: #000;
  9820. }
  9821. .highlight-variable {
  9822. color: #000;
  9823. }
  9824. .highlight-variable-2 {
  9825. color: #1a1a1a;
  9826. }
  9827. .highlight-variable-3 {
  9828. color: #333333;
  9829. }
  9830. .highlight-string {
  9831. color: #BA2121;
  9832. }
  9833. .highlight-comment {
  9834. color: #408080;
  9835. font-style: italic;
  9836. }
  9837. .highlight-number {
  9838. color: #080;
  9839. }
  9840. .highlight-atom {
  9841. color: #88F;
  9842. }
  9843. .highlight-keyword {
  9844. color: #008000;
  9845. font-weight: bold;
  9846. }
  9847. .highlight-builtin {
  9848. color: #008000;
  9849. }
  9850. .highlight-error {
  9851. color: #f00;
  9852. }
  9853. .highlight-operator {
  9854. color: #AA22FF;
  9855. font-weight: bold;
  9856. }
  9857. .highlight-meta {
  9858. color: #AA22FF;
  9859. }
  9860. /* previously not defined, copying from default codemirror */
  9861. .highlight-def {
  9862. color: #00f;
  9863. }
  9864. .highlight-string-2 {
  9865. color: #f50;
  9866. }
  9867. .highlight-qualifier {
  9868. color: #555;
  9869. }
  9870. .highlight-bracket {
  9871. color: #997;
  9872. }
  9873. .highlight-tag {
  9874. color: #170;
  9875. }
  9876. .highlight-attribute {
  9877. color: #00c;
  9878. }
  9879. .highlight-header {
  9880. color: blue;
  9881. }
  9882. .highlight-quote {
  9883. color: #090;
  9884. }
  9885. .highlight-link {
  9886. color: #00c;
  9887. }
  9888. /* apply the same style to codemirror */
  9889. .cm-s-ipython span.cm-keyword {
  9890. color: #008000;
  9891. font-weight: bold;
  9892. }
  9893. .cm-s-ipython span.cm-atom {
  9894. color: #88F;
  9895. }
  9896. .cm-s-ipython span.cm-number {
  9897. color: #080;
  9898. }
  9899. .cm-s-ipython span.cm-def {
  9900. color: #00f;
  9901. }
  9902. .cm-s-ipython span.cm-variable {
  9903. color: #000;
  9904. }
  9905. .cm-s-ipython span.cm-operator {
  9906. color: #AA22FF;
  9907. font-weight: bold;
  9908. }
  9909. .cm-s-ipython span.cm-variable-2 {
  9910. color: #1a1a1a;
  9911. }
  9912. .cm-s-ipython span.cm-variable-3 {
  9913. color: #333333;
  9914. }
  9915. .cm-s-ipython span.cm-comment {
  9916. color: #408080;
  9917. font-style: italic;
  9918. }
  9919. .cm-s-ipython span.cm-string {
  9920. color: #BA2121;
  9921. }
  9922. .cm-s-ipython span.cm-string-2 {
  9923. color: #f50;
  9924. }
  9925. .cm-s-ipython span.cm-meta {
  9926. color: #AA22FF;
  9927. }
  9928. .cm-s-ipython span.cm-qualifier {
  9929. color: #555;
  9930. }
  9931. .cm-s-ipython span.cm-builtin {
  9932. color: #008000;
  9933. }
  9934. .cm-s-ipython span.cm-bracket {
  9935. color: #997;
  9936. }
  9937. .cm-s-ipython span.cm-tag {
  9938. color: #170;
  9939. }
  9940. .cm-s-ipython span.cm-attribute {
  9941. color: #00c;
  9942. }
  9943. .cm-s-ipython span.cm-header {
  9944. color: blue;
  9945. }
  9946. .cm-s-ipython span.cm-quote {
  9947. color: #090;
  9948. }
  9949. .cm-s-ipython span.cm-link {
  9950. color: #00c;
  9951. }
  9952. .cm-s-ipython span.cm-error {
  9953. color: #f00;
  9954. }
  9955. .cm-s-ipython span.cm-tab {
  9956. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  9957. background-position: right;
  9958. background-repeat: no-repeat;
  9959. }
  9960. div.output_wrapper {
  9961. /* this position must be relative to enable descendents to be absolute within it */
  9962. position: relative;
  9963. /* Old browsers */
  9964. display: -webkit-box;
  9965. -webkit-box-orient: vertical;
  9966. -webkit-box-align: stretch;
  9967. display: -moz-box;
  9968. -moz-box-orient: vertical;
  9969. -moz-box-align: stretch;
  9970. display: box;
  9971. box-orient: vertical;
  9972. box-align: stretch;
  9973. /* Modern browsers */
  9974. display: flex;
  9975. flex-direction: column;
  9976. align-items: stretch;
  9977. z-index: 1;
  9978. }
  9979. /* class for the output area when it should be height-limited */
  9980. div.output_scroll {
  9981. /* ideally, this would be max-height, but FF barfs all over that */
  9982. height: 24em;
  9983. /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
  9984. width: 100%;
  9985. overflow: auto;
  9986. border-radius: 2px;
  9987. -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  9988. box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  9989. display: block;
  9990. }
  9991. /* output div while it is collapsed */
  9992. div.output_collapsed {
  9993. margin: 0px;
  9994. padding: 0px;
  9995. /* Old browsers */
  9996. display: -webkit-box;
  9997. -webkit-box-orient: vertical;
  9998. -webkit-box-align: stretch;
  9999. display: -moz-box;
  10000. -moz-box-orient: vertical;
  10001. -moz-box-align: stretch;
  10002. display: box;
  10003. box-orient: vertical;
  10004. box-align: stretch;
  10005. /* Modern browsers */
  10006. display: flex;
  10007. flex-direction: column;
  10008. align-items: stretch;
  10009. }
  10010. div.out_prompt_overlay {
  10011. height: 100%;
  10012. padding: 0px 0.4em;
  10013. position: absolute;
  10014. border-radius: 2px;
  10015. }
  10016. div.out_prompt_overlay:hover {
  10017. /* use inner shadow to get border that is computed the same on WebKit/FF */
  10018. -webkit-box-shadow: inset 0 0 1px #000;
  10019. box-shadow: inset 0 0 1px #000;
  10020. background: rgba(240, 240, 240, 0.5);
  10021. }
  10022. div.output_prompt {
  10023. color: #D84315;
  10024. }
  10025. /* This class is the outer container of all output sections. */
  10026. div.output_area {
  10027. padding: 0px;
  10028. page-break-inside: avoid;
  10029. /* Old browsers */
  10030. display: -webkit-box;
  10031. -webkit-box-orient: horizontal;
  10032. -webkit-box-align: stretch;
  10033. display: -moz-box;
  10034. -moz-box-orient: horizontal;
  10035. -moz-box-align: stretch;
  10036. display: box;
  10037. box-orient: horizontal;
  10038. box-align: stretch;
  10039. /* Modern browsers */
  10040. display: flex;
  10041. flex-direction: row;
  10042. align-items: stretch;
  10043. }
  10044. div.output_area .MathJax_Display {
  10045. text-align: left !important;
  10046. }
  10047. div.output_area .rendered_html table {
  10048. margin-left: 0;
  10049. margin-right: 0;
  10050. }
  10051. div.output_area .rendered_html img {
  10052. margin-left: 0;
  10053. margin-right: 0;
  10054. }
  10055. div.output_area img,
  10056. div.output_area svg {
  10057. max-width: 100%;
  10058. height: auto;
  10059. }
  10060. div.output_area img.unconfined,
  10061. div.output_area svg.unconfined {
  10062. max-width: none;
  10063. }
  10064. /* This is needed to protect the pre formating from global settings such
  10065. as that of bootstrap */
  10066. .output {
  10067. /* Old browsers */
  10068. display: -webkit-box;
  10069. -webkit-box-orient: vertical;
  10070. -webkit-box-align: stretch;
  10071. display: -moz-box;
  10072. -moz-box-orient: vertical;
  10073. -moz-box-align: stretch;
  10074. display: box;
  10075. box-orient: vertical;
  10076. box-align: stretch;
  10077. /* Modern browsers */
  10078. display: flex;
  10079. flex-direction: column;
  10080. align-items: stretch;
  10081. }
  10082. @media (max-width: 540px) {
  10083. div.output_area {
  10084. /* Old browsers */
  10085. display: -webkit-box;
  10086. -webkit-box-orient: vertical;
  10087. -webkit-box-align: stretch;
  10088. display: -moz-box;
  10089. -moz-box-orient: vertical;
  10090. -moz-box-align: stretch;
  10091. display: box;
  10092. box-orient: vertical;
  10093. box-align: stretch;
  10094. /* Modern browsers */
  10095. display: flex;
  10096. flex-direction: column;
  10097. align-items: stretch;
  10098. }
  10099. }
  10100. div.output_area pre {
  10101. margin: 0;
  10102. padding: 0;
  10103. border: 0;
  10104. vertical-align: baseline;
  10105. color: black;
  10106. background-color: transparent;
  10107. border-radius: 0;
  10108. }
  10109. /* This class is for the output subarea inside the output_area and after
  10110. the prompt div. */
  10111. div.output_subarea {
  10112. overflow-x: auto;
  10113. padding: 0.4em;
  10114. /* Old browsers */
  10115. -webkit-box-flex: 1;
  10116. -moz-box-flex: 1;
  10117. box-flex: 1;
  10118. /* Modern browsers */
  10119. flex: 1;
  10120. max-width: calc(100% - 14ex);
  10121. }
  10122. div.output_scroll div.output_subarea {
  10123. overflow-x: visible;
  10124. }
  10125. /* The rest of the output_* classes are for special styling of the different
  10126. output types */
  10127. /* all text output has this class: */
  10128. div.output_text {
  10129. text-align: left;
  10130. color: #000;
  10131. /* This has to match that of the the CodeMirror class line-height below */
  10132. line-height: 1.21429em;
  10133. }
  10134. /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
  10135. div.output_stderr {
  10136. background: #fdd;
  10137. /* very light red background for stderr */
  10138. }
  10139. div.output_latex {
  10140. text-align: left;
  10141. }
  10142. /* Empty output_javascript divs should have no height */
  10143. div.output_javascript:empty {
  10144. padding: 0;
  10145. }
  10146. .js-error {
  10147. color: darkred;
  10148. }
  10149. /* raw_input styles */
  10150. div.raw_input_container {
  10151. line-height: 1.21429em;
  10152. padding-top: 5px;
  10153. }
  10154. pre.raw_input_prompt {
  10155. /* nothing needed here. */
  10156. }
  10157. input.raw_input {
  10158. font-family: monospace;
  10159. font-size: inherit;
  10160. color: inherit;
  10161. width: auto;
  10162. /* make sure input baseline aligns with prompt */
  10163. vertical-align: baseline;
  10164. /* padding + margin = 0.5em between prompt and cursor */
  10165. padding: 0em 0.25em;
  10166. margin: 0em 0.25em;
  10167. }
  10168. input.raw_input:focus {
  10169. box-shadow: none;
  10170. }
  10171. p.p-space {
  10172. margin-bottom: 10px;
  10173. }
  10174. div.output_unrecognized {
  10175. padding: 5px;
  10176. font-weight: bold;
  10177. color: red;
  10178. }
  10179. div.output_unrecognized a {
  10180. color: inherit;
  10181. text-decoration: none;
  10182. }
  10183. div.output_unrecognized a:hover {
  10184. color: inherit;
  10185. text-decoration: none;
  10186. }
  10187. .rendered_html {
  10188. color: #000;
  10189. /* any extras will just be numbers: */
  10190. }
  10191. .rendered_html em {
  10192. font-style: italic;
  10193. }
  10194. .rendered_html strong {
  10195. font-weight: bold;
  10196. }
  10197. .rendered_html u {
  10198. text-decoration: underline;
  10199. }
  10200. .rendered_html :link {
  10201. text-decoration: underline;
  10202. }
  10203. .rendered_html :visited {
  10204. text-decoration: underline;
  10205. }
  10206. .rendered_html h1 {
  10207. font-size: 185.7%;
  10208. margin: 1.08em 0 0 0;
  10209. font-weight: bold;
  10210. line-height: 1.0;
  10211. }
  10212. .rendered_html h2 {
  10213. font-size: 157.1%;
  10214. margin: 1.27em 0 0 0;
  10215. font-weight: bold;
  10216. line-height: 1.0;
  10217. }
  10218. .rendered_html h3 {
  10219. font-size: 128.6%;
  10220. margin: 1.55em 0 0 0;
  10221. font-weight: bold;
  10222. line-height: 1.0;
  10223. }
  10224. .rendered_html h4 {
  10225. font-size: 100%;
  10226. margin: 2em 0 0 0;
  10227. font-weight: bold;
  10228. line-height: 1.0;
  10229. }
  10230. .rendered_html h5 {
  10231. font-size: 100%;
  10232. margin: 2em 0 0 0;
  10233. font-weight: bold;
  10234. line-height: 1.0;
  10235. font-style: italic;
  10236. }
  10237. .rendered_html h6 {
  10238. font-size: 100%;
  10239. margin: 2em 0 0 0;
  10240. font-weight: bold;
  10241. line-height: 1.0;
  10242. font-style: italic;
  10243. }
  10244. .rendered_html h1:first-child {
  10245. margin-top: 0.538em;
  10246. }
  10247. .rendered_html h2:first-child {
  10248. margin-top: 0.636em;
  10249. }
  10250. .rendered_html h3:first-child {
  10251. margin-top: 0.777em;
  10252. }
  10253. .rendered_html h4:first-child {
  10254. margin-top: 1em;
  10255. }
  10256. .rendered_html h5:first-child {
  10257. margin-top: 1em;
  10258. }
  10259. .rendered_html h6:first-child {
  10260. margin-top: 1em;
  10261. }
  10262. .rendered_html ul {
  10263. list-style: disc;
  10264. margin: 0em 2em;
  10265. padding-left: 0px;
  10266. }
  10267. .rendered_html ul ul {
  10268. list-style: square;
  10269. margin: 0em 2em;
  10270. }
  10271. .rendered_html ul ul ul {
  10272. list-style: circle;
  10273. margin: 0em 2em;
  10274. }
  10275. .rendered_html ol {
  10276. list-style: decimal;
  10277. margin: 0em 2em;
  10278. padding-left: 0px;
  10279. }
  10280. .rendered_html ol ol {
  10281. list-style: upper-alpha;
  10282. margin: 0em 2em;
  10283. }
  10284. .rendered_html ol ol ol {
  10285. list-style: lower-alpha;
  10286. margin: 0em 2em;
  10287. }
  10288. .rendered_html ol ol ol ol {
  10289. list-style: lower-roman;
  10290. margin: 0em 2em;
  10291. }
  10292. .rendered_html ol ol ol ol ol {
  10293. list-style: decimal;
  10294. margin: 0em 2em;
  10295. }
  10296. .rendered_html * + ul {
  10297. margin-top: 1em;
  10298. }
  10299. .rendered_html * + ol {
  10300. margin-top: 1em;
  10301. }
  10302. .rendered_html hr {
  10303. color: black;
  10304. background-color: black;
  10305. }
  10306. .rendered_html pre {
  10307. margin: 1em 2em;
  10308. }
  10309. .rendered_html pre,
  10310. .rendered_html code {
  10311. border: 0;
  10312. background-color: #fff;
  10313. color: #000;
  10314. font-size: 100%;
  10315. padding: 0px;
  10316. }
  10317. .rendered_html blockquote {
  10318. margin: 1em 2em;
  10319. }
  10320. .rendered_html table {
  10321. margin-left: auto;
  10322. margin-right: auto;
  10323. border: 1px solid black;
  10324. border-collapse: collapse;
  10325. }
  10326. .rendered_html tr,
  10327. .rendered_html th,
  10328. .rendered_html td {
  10329. border: 1px solid black;
  10330. border-collapse: collapse;
  10331. margin: 1em 2em;
  10332. }
  10333. .rendered_html td,
  10334. .rendered_html th {
  10335. text-align: left;
  10336. vertical-align: middle;
  10337. padding: 4px;
  10338. }
  10339. .rendered_html th {
  10340. font-weight: bold;
  10341. }
  10342. .rendered_html * + table {
  10343. margin-top: 1em;
  10344. }
  10345. .rendered_html p {
  10346. text-align: left;
  10347. }
  10348. .rendered_html * + p {
  10349. margin-top: 1em;
  10350. }
  10351. .rendered_html img {
  10352. display: block;
  10353. margin-left: auto;
  10354. margin-right: auto;
  10355. }
  10356. .rendered_html * + img {
  10357. margin-top: 1em;
  10358. }
  10359. .rendered_html img,
  10360. .rendered_html svg {
  10361. max-width: 100%;
  10362. height: auto;
  10363. }
  10364. .rendered_html img.unconfined,
  10365. .rendered_html svg.unconfined {
  10366. max-width: none;
  10367. }
  10368. div.text_cell {
  10369. /* Old browsers */
  10370. display: -webkit-box;
  10371. -webkit-box-orient: horizontal;
  10372. -webkit-box-align: stretch;
  10373. display: -moz-box;
  10374. -moz-box-orient: horizontal;
  10375. -moz-box-align: stretch;
  10376. display: box;
  10377. box-orient: horizontal;
  10378. box-align: stretch;
  10379. /* Modern browsers */
  10380. display: flex;
  10381. flex-direction: row;
  10382. align-items: stretch;
  10383. }
  10384. @media (max-width: 540px) {
  10385. div.text_cell > div.prompt {
  10386. display: none;
  10387. }
  10388. }
  10389. div.text_cell_render {
  10390. /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
  10391. outline: none;
  10392. resize: none;
  10393. width: inherit;
  10394. border-style: none;
  10395. padding: 0.5em 0.5em 0.5em 0.4em;
  10396. color: #000;
  10397. box-sizing: border-box;
  10398. -moz-box-sizing: border-box;
  10399. -webkit-box-sizing: border-box;
  10400. }
  10401. a.anchor-link:link {
  10402. text-decoration: none;
  10403. padding: 0px 20px;
  10404. visibility: hidden;
  10405. }
  10406. h1:hover .anchor-link,
  10407. h2:hover .anchor-link,
  10408. h3:hover .anchor-link,
  10409. h4:hover .anchor-link,
  10410. h5:hover .anchor-link,
  10411. h6:hover .anchor-link {
  10412. visibility: visible;
  10413. }
  10414. .text_cell.rendered .input_area {
  10415. display: none;
  10416. }
  10417. .text_cell.rendered .rendered_html {
  10418. overflow-x: auto;
  10419. overflow-y: hidden;
  10420. }
  10421. .text_cell.unrendered .text_cell_render {
  10422. display: none;
  10423. }
  10424. .cm-header-1,
  10425. .cm-header-2,
  10426. .cm-header-3,
  10427. .cm-header-4,
  10428. .cm-header-5,
  10429. .cm-header-6 {
  10430. font-weight: bold;
  10431. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  10432. }
  10433. .cm-header-1 {
  10434. font-size: 185.7%;
  10435. }
  10436. .cm-header-2 {
  10437. font-size: 157.1%;
  10438. }
  10439. .cm-header-3 {
  10440. font-size: 128.6%;
  10441. }
  10442. .cm-header-4 {
  10443. font-size: 110%;
  10444. }
  10445. .cm-header-5 {
  10446. font-size: 100%;
  10447. font-style: italic;
  10448. }
  10449. .cm-header-6 {
  10450. font-size: 100%;
  10451. font-style: italic;
  10452. }
  10453. /*!
  10454. *
  10455. * IPython notebook webapp
  10456. *
  10457. */
  10458. @media (max-width: 767px) {
  10459. .notebook_app {
  10460. padding-left: 0px;
  10461. padding-right: 0px;
  10462. }
  10463. }
  10464. #ipython-main-app {
  10465. box-sizing: border-box;
  10466. -moz-box-sizing: border-box;
  10467. -webkit-box-sizing: border-box;
  10468. height: 100%;
  10469. }
  10470. div#notebook_panel {
  10471. margin: 0px;
  10472. padding: 0px;
  10473. box-sizing: border-box;
  10474. -moz-box-sizing: border-box;
  10475. -webkit-box-sizing: border-box;
  10476. height: 100%;
  10477. }
  10478. div#notebook {
  10479. font-size: 14px;
  10480. line-height: 20px;
  10481. overflow-y: hidden;
  10482. overflow-x: auto;
  10483. width: 100%;
  10484. /* This spaces the page away from the edge of the notebook area */
  10485. padding-top: 20px;
  10486. margin: 0px;
  10487. outline: none;
  10488. box-sizing: border-box;
  10489. -moz-box-sizing: border-box;
  10490. -webkit-box-sizing: border-box;
  10491. min-height: 100%;
  10492. }
  10493. @media not print {
  10494. #notebook-container {
  10495. padding: 15px;
  10496. background-color: #fff;
  10497. min-height: 0;
  10498. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10499. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10500. }
  10501. }
  10502. @media print {
  10503. #notebook-container {
  10504. width: 100%;
  10505. }
  10506. }
  10507. div.ui-widget-content {
  10508. border: 1px solid #ababab;
  10509. outline: none;
  10510. }
  10511. pre.dialog {
  10512. background-color: #f7f7f7;
  10513. border: 1px solid #ddd;
  10514. border-radius: 2px;
  10515. padding: 0.4em;
  10516. padding-left: 2em;
  10517. }
  10518. p.dialog {
  10519. padding: 0.2em;
  10520. }
  10521. /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
  10522. to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
  10523. */
  10524. pre,
  10525. code,
  10526. kbd,
  10527. samp {
  10528. white-space: pre-wrap;
  10529. }
  10530. #fonttest {
  10531. font-family: monospace;
  10532. }
  10533. p {
  10534. margin-bottom: 0;
  10535. }
  10536. .end_space {
  10537. min-height: 100px;
  10538. transition: height .2s ease;
  10539. }
  10540. .notebook_app > #header {
  10541. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10542. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10543. }
  10544. @media not print {
  10545. .notebook_app {
  10546. background-color: #EEE;
  10547. }
  10548. }
  10549. kbd {
  10550. border-style: solid;
  10551. border-width: 1px;
  10552. box-shadow: none;
  10553. margin: 2px;
  10554. padding-left: 2px;
  10555. padding-right: 2px;
  10556. padding-top: 1px;
  10557. padding-bottom: 1px;
  10558. }
  10559. /* CSS for the cell toolbar */
  10560. .celltoolbar {
  10561. border: thin solid #CFCFCF;
  10562. border-bottom: none;
  10563. background: #EEE;
  10564. border-radius: 2px 2px 0px 0px;
  10565. width: 100%;
  10566. height: 29px;
  10567. padding-right: 4px;
  10568. /* Old browsers */
  10569. display: -webkit-box;
  10570. -webkit-box-orient: horizontal;
  10571. -webkit-box-align: stretch;
  10572. display: -moz-box;
  10573. -moz-box-orient: horizontal;
  10574. -moz-box-align: stretch;
  10575. display: box;
  10576. box-orient: horizontal;
  10577. box-align: stretch;
  10578. /* Modern browsers */
  10579. display: flex;
  10580. flex-direction: row;
  10581. align-items: stretch;
  10582. /* Old browsers */
  10583. -webkit-box-pack: end;
  10584. -moz-box-pack: end;
  10585. box-pack: end;
  10586. /* Modern browsers */
  10587. justify-content: flex-end;
  10588. display: -webkit-flex;
  10589. }
  10590. @media print {
  10591. .celltoolbar {
  10592. display: none;
  10593. }
  10594. }
  10595. .ctb_hideshow {
  10596. display: none;
  10597. vertical-align: bottom;
  10598. }
  10599. /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
  10600. Cell toolbars are only shown when the ctb_global_show class is also set.
  10601. */
  10602. .ctb_global_show .ctb_show.ctb_hideshow {
  10603. display: block;
  10604. }
  10605. .ctb_global_show .ctb_show + .input_area,
  10606. .ctb_global_show .ctb_show + div.text_cell_input,
  10607. .ctb_global_show .ctb_show ~ div.text_cell_render {
  10608. border-top-right-radius: 0px;
  10609. border-top-left-radius: 0px;
  10610. }
  10611. .ctb_global_show .ctb_show ~ div.text_cell_render {
  10612. border: 1px solid #cfcfcf;
  10613. }
  10614. .celltoolbar {
  10615. font-size: 87%;
  10616. padding-top: 3px;
  10617. }
  10618. .celltoolbar select {
  10619. display: block;
  10620. width: 100%;
  10621. height: 32px;
  10622. padding: 6px 12px;
  10623. font-size: 13px;
  10624. line-height: 1.42857143;
  10625. color: #555555;
  10626. background-color: #fff;
  10627. background-image: none;
  10628. border: 1px solid #ccc;
  10629. border-radius: 2px;
  10630. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  10631. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  10632. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10633. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10634. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10635. height: 30px;
  10636. padding: 5px 10px;
  10637. font-size: 12px;
  10638. line-height: 1.5;
  10639. border-radius: 1px;
  10640. width: inherit;
  10641. font-size: inherit;
  10642. height: 22px;
  10643. padding: 0px;
  10644. display: inline-block;
  10645. }
  10646. .celltoolbar select:focus {
  10647. border-color: #66afe9;
  10648. outline: 0;
  10649. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  10650. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  10651. }
  10652. .celltoolbar select::-moz-placeholder {
  10653. color: #999;
  10654. opacity: 1;
  10655. }
  10656. .celltoolbar select:-ms-input-placeholder {
  10657. color: #999;
  10658. }
  10659. .celltoolbar select::-webkit-input-placeholder {
  10660. color: #999;
  10661. }
  10662. .celltoolbar select::-ms-expand {
  10663. border: 0;
  10664. background-color: transparent;
  10665. }
  10666. .celltoolbar select[disabled],
  10667. .celltoolbar select[readonly],
  10668. fieldset[disabled] .celltoolbar select {
  10669. background-color: #eeeeee;
  10670. opacity: 1;
  10671. }
  10672. .celltoolbar select[disabled],
  10673. fieldset[disabled] .celltoolbar select {
  10674. cursor: not-allowed;
  10675. }
  10676. textarea.celltoolbar select {
  10677. height: auto;
  10678. }
  10679. select.celltoolbar select {
  10680. height: 30px;
  10681. line-height: 30px;
  10682. }
  10683. textarea.celltoolbar select,
  10684. select[multiple].celltoolbar select {
  10685. height: auto;
  10686. }
  10687. .celltoolbar label {
  10688. margin-left: 5px;
  10689. margin-right: 5px;
  10690. }
  10691. .completions {
  10692. position: absolute;
  10693. z-index: 110;
  10694. overflow: hidden;
  10695. border: 1px solid #ababab;
  10696. border-radius: 2px;
  10697. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  10698. box-shadow: 0px 6px 10px -1px #adadad;
  10699. line-height: 1;
  10700. }
  10701. .completions select {
  10702. background: white;
  10703. outline: none;
  10704. border: none;
  10705. padding: 0px;
  10706. margin: 0px;
  10707. overflow: auto;
  10708. font-family: monospace;
  10709. font-size: 110%;
  10710. color: #000;
  10711. width: auto;
  10712. }
  10713. .completions select option.context {
  10714. color: #286090;
  10715. }
  10716. #kernel_logo_widget {
  10717. float: right !important;
  10718. float: right;
  10719. }
  10720. #kernel_logo_widget .current_kernel_logo {
  10721. display: none;
  10722. margin-top: -1px;
  10723. margin-bottom: -1px;
  10724. width: 32px;
  10725. height: 32px;
  10726. }
  10727. #menubar {
  10728. box-sizing: border-box;
  10729. -moz-box-sizing: border-box;
  10730. -webkit-box-sizing: border-box;
  10731. margin-top: 1px;
  10732. }
  10733. #menubar .navbar {
  10734. border-top: 1px;
  10735. border-radius: 0px 0px 2px 2px;
  10736. margin-bottom: 0px;
  10737. }
  10738. #menubar .navbar-toggle {
  10739. float: left;
  10740. padding-top: 7px;
  10741. padding-bottom: 7px;
  10742. border: none;
  10743. }
  10744. #menubar .navbar-collapse {
  10745. clear: left;
  10746. }
  10747. .nav-wrapper {
  10748. border-bottom: 1px solid #e7e7e7;
  10749. }
  10750. i.menu-icon {
  10751. padding-top: 4px;
  10752. }
  10753. ul#help_menu li a {
  10754. overflow: hidden;
  10755. padding-right: 2.2em;
  10756. }
  10757. ul#help_menu li a i {
  10758. margin-right: -1.2em;
  10759. }
  10760. .dropdown-submenu {
  10761. position: relative;
  10762. }
  10763. .dropdown-submenu > .dropdown-menu {
  10764. top: 0;
  10765. left: 100%;
  10766. margin-top: -6px;
  10767. margin-left: -1px;
  10768. }
  10769. .dropdown-submenu:hover > .dropdown-menu {
  10770. display: block;
  10771. }
  10772. .dropdown-submenu > a:after {
  10773. display: inline-block;
  10774. font: normal normal normal 14px/1 FontAwesome;
  10775. font-size: inherit;
  10776. text-rendering: auto;
  10777. -webkit-font-smoothing: antialiased;
  10778. -moz-osx-font-smoothing: grayscale;
  10779. display: block;
  10780. content: "\f0da";
  10781. float: right;
  10782. color: #333333;
  10783. margin-top: 2px;
  10784. margin-right: -10px;
  10785. }
  10786. .dropdown-submenu > a:after.pull-left {
  10787. margin-right: .3em;
  10788. }
  10789. .dropdown-submenu > a:after.pull-right {
  10790. margin-left: .3em;
  10791. }
  10792. .dropdown-submenu:hover > a:after {
  10793. color: #262626;
  10794. }
  10795. .dropdown-submenu.pull-left {
  10796. float: none;
  10797. }
  10798. .dropdown-submenu.pull-left > .dropdown-menu {
  10799. left: -100%;
  10800. margin-left: 10px;
  10801. }
  10802. #notification_area {
  10803. float: right !important;
  10804. float: right;
  10805. z-index: 10;
  10806. }
  10807. .indicator_area {
  10808. float: right !important;
  10809. float: right;
  10810. color: #777;
  10811. margin-left: 5px;
  10812. margin-right: 5px;
  10813. width: 11px;
  10814. z-index: 10;
  10815. text-align: center;
  10816. width: auto;
  10817. }
  10818. #kernel_indicator {
  10819. float: right !important;
  10820. float: right;
  10821. color: #777;
  10822. margin-left: 5px;
  10823. margin-right: 5px;
  10824. width: 11px;
  10825. z-index: 10;
  10826. text-align: center;
  10827. width: auto;
  10828. border-left: 1px solid;
  10829. }
  10830. #kernel_indicator .kernel_indicator_name {
  10831. padding-left: 5px;
  10832. padding-right: 5px;
  10833. }
  10834. #modal_indicator {
  10835. float: right !important;
  10836. float: right;
  10837. color: #777;
  10838. margin-left: 5px;
  10839. margin-right: 5px;
  10840. width: 11px;
  10841. z-index: 10;
  10842. text-align: center;
  10843. width: auto;
  10844. }
  10845. #readonly-indicator {
  10846. float: right !important;
  10847. float: right;
  10848. color: #777;
  10849. margin-left: 5px;
  10850. margin-right: 5px;
  10851. width: 11px;
  10852. z-index: 10;
  10853. text-align: center;
  10854. width: auto;
  10855. margin-top: 2px;
  10856. margin-bottom: 0px;
  10857. margin-left: 0px;
  10858. margin-right: 0px;
  10859. display: none;
  10860. }
  10861. .modal_indicator:before {
  10862. width: 1.28571429em;
  10863. text-align: center;
  10864. }
  10865. .edit_mode .modal_indicator:before {
  10866. display: inline-block;
  10867. font: normal normal normal 14px/1 FontAwesome;
  10868. font-size: inherit;
  10869. text-rendering: auto;
  10870. -webkit-font-smoothing: antialiased;
  10871. -moz-osx-font-smoothing: grayscale;
  10872. content: "\f040";
  10873. }
  10874. .edit_mode .modal_indicator:before.pull-left {
  10875. margin-right: .3em;
  10876. }
  10877. .edit_mode .modal_indicator:before.pull-right {
  10878. margin-left: .3em;
  10879. }
  10880. .command_mode .modal_indicator:before {
  10881. display: inline-block;
  10882. font: normal normal normal 14px/1 FontAwesome;
  10883. font-size: inherit;
  10884. text-rendering: auto;
  10885. -webkit-font-smoothing: antialiased;
  10886. -moz-osx-font-smoothing: grayscale;
  10887. content: ' ';
  10888. }
  10889. .command_mode .modal_indicator:before.pull-left {
  10890. margin-right: .3em;
  10891. }
  10892. .command_mode .modal_indicator:before.pull-right {
  10893. margin-left: .3em;
  10894. }
  10895. .kernel_idle_icon:before {
  10896. display: inline-block;
  10897. font: normal normal normal 14px/1 FontAwesome;
  10898. font-size: inherit;
  10899. text-rendering: auto;
  10900. -webkit-font-smoothing: antialiased;
  10901. -moz-osx-font-smoothing: grayscale;
  10902. content: "\f10c";
  10903. }
  10904. .kernel_idle_icon:before.pull-left {
  10905. margin-right: .3em;
  10906. }
  10907. .kernel_idle_icon:before.pull-right {
  10908. margin-left: .3em;
  10909. }
  10910. .kernel_busy_icon:before {
  10911. display: inline-block;
  10912. font: normal normal normal 14px/1 FontAwesome;
  10913. font-size: inherit;
  10914. text-rendering: auto;
  10915. -webkit-font-smoothing: antialiased;
  10916. -moz-osx-font-smoothing: grayscale;
  10917. content: "\f111";
  10918. }
  10919. .kernel_busy_icon:before.pull-left {
  10920. margin-right: .3em;
  10921. }
  10922. .kernel_busy_icon:before.pull-right {
  10923. margin-left: .3em;
  10924. }
  10925. .kernel_dead_icon:before {
  10926. display: inline-block;
  10927. font: normal normal normal 14px/1 FontAwesome;
  10928. font-size: inherit;
  10929. text-rendering: auto;
  10930. -webkit-font-smoothing: antialiased;
  10931. -moz-osx-font-smoothing: grayscale;
  10932. content: "\f1e2";
  10933. }
  10934. .kernel_dead_icon:before.pull-left {
  10935. margin-right: .3em;
  10936. }
  10937. .kernel_dead_icon:before.pull-right {
  10938. margin-left: .3em;
  10939. }
  10940. .kernel_disconnected_icon:before {
  10941. display: inline-block;
  10942. font: normal normal normal 14px/1 FontAwesome;
  10943. font-size: inherit;
  10944. text-rendering: auto;
  10945. -webkit-font-smoothing: antialiased;
  10946. -moz-osx-font-smoothing: grayscale;
  10947. content: "\f127";
  10948. }
  10949. .kernel_disconnected_icon:before.pull-left {
  10950. margin-right: .3em;
  10951. }
  10952. .kernel_disconnected_icon:before.pull-right {
  10953. margin-left: .3em;
  10954. }
  10955. .notification_widget {
  10956. color: #777;
  10957. z-index: 10;
  10958. background: rgba(240, 240, 240, 0.5);
  10959. margin-right: 4px;
  10960. color: #333;
  10961. background-color: #fff;
  10962. border-color: #ccc;
  10963. }
  10964. .notification_widget:focus,
  10965. .notification_widget.focus {
  10966. color: #333;
  10967. background-color: #e6e6e6;
  10968. border-color: #8c8c8c;
  10969. }
  10970. .notification_widget:hover {
  10971. color: #333;
  10972. background-color: #e6e6e6;
  10973. border-color: #adadad;
  10974. }
  10975. .notification_widget:active,
  10976. .notification_widget.active,
  10977. .open > .dropdown-toggle.notification_widget {
  10978. color: #333;
  10979. background-color: #e6e6e6;
  10980. border-color: #adadad;
  10981. }
  10982. .notification_widget:active:hover,
  10983. .notification_widget.active:hover,
  10984. .open > .dropdown-toggle.notification_widget:hover,
  10985. .notification_widget:active:focus,
  10986. .notification_widget.active:focus,
  10987. .open > .dropdown-toggle.notification_widget:focus,
  10988. .notification_widget:active.focus,
  10989. .notification_widget.active.focus,
  10990. .open > .dropdown-toggle.notification_widget.focus {
  10991. color: #333;
  10992. background-color: #d4d4d4;
  10993. border-color: #8c8c8c;
  10994. }
  10995. .notification_widget:active,
  10996. .notification_widget.active,
  10997. .open > .dropdown-toggle.notification_widget {
  10998. background-image: none;
  10999. }
  11000. .notification_widget.disabled:hover,
  11001. .notification_widget[disabled]:hover,
  11002. fieldset[disabled] .notification_widget:hover,
  11003. .notification_widget.disabled:focus,
  11004. .notification_widget[disabled]:focus,
  11005. fieldset[disabled] .notification_widget:focus,
  11006. .notification_widget.disabled.focus,
  11007. .notification_widget[disabled].focus,
  11008. fieldset[disabled] .notification_widget.focus {
  11009. background-color: #fff;
  11010. border-color: #ccc;
  11011. }
  11012. .notification_widget .badge {
  11013. color: #fff;
  11014. background-color: #333;
  11015. }
  11016. .notification_widget.warning {
  11017. color: #fff;
  11018. background-color: #f0ad4e;
  11019. border-color: #eea236;
  11020. }
  11021. .notification_widget.warning:focus,
  11022. .notification_widget.warning.focus {
  11023. color: #fff;
  11024. background-color: #ec971f;
  11025. border-color: #985f0d;
  11026. }
  11027. .notification_widget.warning:hover {
  11028. color: #fff;
  11029. background-color: #ec971f;
  11030. border-color: #d58512;
  11031. }
  11032. .notification_widget.warning:active,
  11033. .notification_widget.warning.active,
  11034. .open > .dropdown-toggle.notification_widget.warning {
  11035. color: #fff;
  11036. background-color: #ec971f;
  11037. border-color: #d58512;
  11038. }
  11039. .notification_widget.warning:active:hover,
  11040. .notification_widget.warning.active:hover,
  11041. .open > .dropdown-toggle.notification_widget.warning:hover,
  11042. .notification_widget.warning:active:focus,
  11043. .notification_widget.warning.active:focus,
  11044. .open > .dropdown-toggle.notification_widget.warning:focus,
  11045. .notification_widget.warning:active.focus,
  11046. .notification_widget.warning.active.focus,
  11047. .open > .dropdown-toggle.notification_widget.warning.focus {
  11048. color: #fff;
  11049. background-color: #d58512;
  11050. border-color: #985f0d;
  11051. }
  11052. .notification_widget.warning:active,
  11053. .notification_widget.warning.active,
  11054. .open > .dropdown-toggle.notification_widget.warning {
  11055. background-image: none;
  11056. }
  11057. .notification_widget.warning.disabled:hover,
  11058. .notification_widget.warning[disabled]:hover,
  11059. fieldset[disabled] .notification_widget.warning:hover,
  11060. .notification_widget.warning.disabled:focus,
  11061. .notification_widget.warning[disabled]:focus,
  11062. fieldset[disabled] .notification_widget.warning:focus,
  11063. .notification_widget.warning.disabled.focus,
  11064. .notification_widget.warning[disabled].focus,
  11065. fieldset[disabled] .notification_widget.warning.focus {
  11066. background-color: #f0ad4e;
  11067. border-color: #eea236;
  11068. }
  11069. .notification_widget.warning .badge {
  11070. color: #f0ad4e;
  11071. background-color: #fff;
  11072. }
  11073. .notification_widget.success {
  11074. color: #fff;
  11075. background-color: #5cb85c;
  11076. border-color: #4cae4c;
  11077. }
  11078. .notification_widget.success:focus,
  11079. .notification_widget.success.focus {
  11080. color: #fff;
  11081. background-color: #449d44;
  11082. border-color: #255625;
  11083. }
  11084. .notification_widget.success:hover {
  11085. color: #fff;
  11086. background-color: #449d44;
  11087. border-color: #398439;
  11088. }
  11089. .notification_widget.success:active,
  11090. .notification_widget.success.active,
  11091. .open > .dropdown-toggle.notification_widget.success {
  11092. color: #fff;
  11093. background-color: #449d44;
  11094. border-color: #398439;
  11095. }
  11096. .notification_widget.success:active:hover,
  11097. .notification_widget.success.active:hover,
  11098. .open > .dropdown-toggle.notification_widget.success:hover,
  11099. .notification_widget.success:active:focus,
  11100. .notification_widget.success.active:focus,
  11101. .open > .dropdown-toggle.notification_widget.success:focus,
  11102. .notification_widget.success:active.focus,
  11103. .notification_widget.success.active.focus,
  11104. .open > .dropdown-toggle.notification_widget.success.focus {
  11105. color: #fff;
  11106. background-color: #398439;
  11107. border-color: #255625;
  11108. }
  11109. .notification_widget.success:active,
  11110. .notification_widget.success.active,
  11111. .open > .dropdown-toggle.notification_widget.success {
  11112. background-image: none;
  11113. }
  11114. .notification_widget.success.disabled:hover,
  11115. .notification_widget.success[disabled]:hover,
  11116. fieldset[disabled] .notification_widget.success:hover,
  11117. .notification_widget.success.disabled:focus,
  11118. .notification_widget.success[disabled]:focus,
  11119. fieldset[disabled] .notification_widget.success:focus,
  11120. .notification_widget.success.disabled.focus,
  11121. .notification_widget.success[disabled].focus,
  11122. fieldset[disabled] .notification_widget.success.focus {
  11123. background-color: #5cb85c;
  11124. border-color: #4cae4c;
  11125. }
  11126. .notification_widget.success .badge {
  11127. color: #5cb85c;
  11128. background-color: #fff;
  11129. }
  11130. .notification_widget.info {
  11131. color: #fff;
  11132. background-color: #5bc0de;
  11133. border-color: #46b8da;
  11134. }
  11135. .notification_widget.info:focus,
  11136. .notification_widget.info.focus {
  11137. color: #fff;
  11138. background-color: #31b0d5;
  11139. border-color: #1b6d85;
  11140. }
  11141. .notification_widget.info:hover {
  11142. color: #fff;
  11143. background-color: #31b0d5;
  11144. border-color: #269abc;
  11145. }
  11146. .notification_widget.info:active,
  11147. .notification_widget.info.active,
  11148. .open > .dropdown-toggle.notification_widget.info {
  11149. color: #fff;
  11150. background-color: #31b0d5;
  11151. border-color: #269abc;
  11152. }
  11153. .notification_widget.info:active:hover,
  11154. .notification_widget.info.active:hover,
  11155. .open > .dropdown-toggle.notification_widget.info:hover,
  11156. .notification_widget.info:active:focus,
  11157. .notification_widget.info.active:focus,
  11158. .open > .dropdown-toggle.notification_widget.info:focus,
  11159. .notification_widget.info:active.focus,
  11160. .notification_widget.info.active.focus,
  11161. .open > .dropdown-toggle.notification_widget.info.focus {
  11162. color: #fff;
  11163. background-color: #269abc;
  11164. border-color: #1b6d85;
  11165. }
  11166. .notification_widget.info:active,
  11167. .notification_widget.info.active,
  11168. .open > .dropdown-toggle.notification_widget.info {
  11169. background-image: none;
  11170. }
  11171. .notification_widget.info.disabled:hover,
  11172. .notification_widget.info[disabled]:hover,
  11173. fieldset[disabled] .notification_widget.info:hover,
  11174. .notification_widget.info.disabled:focus,
  11175. .notification_widget.info[disabled]:focus,
  11176. fieldset[disabled] .notification_widget.info:focus,
  11177. .notification_widget.info.disabled.focus,
  11178. .notification_widget.info[disabled].focus,
  11179. fieldset[disabled] .notification_widget.info.focus {
  11180. background-color: #5bc0de;
  11181. border-color: #46b8da;
  11182. }
  11183. .notification_widget.info .badge {
  11184. color: #5bc0de;
  11185. background-color: #fff;
  11186. }
  11187. .notification_widget.danger {
  11188. color: #fff;
  11189. background-color: #d9534f;
  11190. border-color: #d43f3a;
  11191. }
  11192. .notification_widget.danger:focus,
  11193. .notification_widget.danger.focus {
  11194. color: #fff;
  11195. background-color: #c9302c;
  11196. border-color: #761c19;
  11197. }
  11198. .notification_widget.danger:hover {
  11199. color: #fff;
  11200. background-color: #c9302c;
  11201. border-color: #ac2925;
  11202. }
  11203. .notification_widget.danger:active,
  11204. .notification_widget.danger.active,
  11205. .open > .dropdown-toggle.notification_widget.danger {
  11206. color: #fff;
  11207. background-color: #c9302c;
  11208. border-color: #ac2925;
  11209. }
  11210. .notification_widget.danger:active:hover,
  11211. .notification_widget.danger.active:hover,
  11212. .open > .dropdown-toggle.notification_widget.danger:hover,
  11213. .notification_widget.danger:active:focus,
  11214. .notification_widget.danger.active:focus,
  11215. .open > .dropdown-toggle.notification_widget.danger:focus,
  11216. .notification_widget.danger:active.focus,
  11217. .notification_widget.danger.active.focus,
  11218. .open > .dropdown-toggle.notification_widget.danger.focus {
  11219. color: #fff;
  11220. background-color: #ac2925;
  11221. border-color: #761c19;
  11222. }
  11223. .notification_widget.danger:active,
  11224. .notification_widget.danger.active,
  11225. .open > .dropdown-toggle.notification_widget.danger {
  11226. background-image: none;
  11227. }
  11228. .notification_widget.danger.disabled:hover,
  11229. .notification_widget.danger[disabled]:hover,
  11230. fieldset[disabled] .notification_widget.danger:hover,
  11231. .notification_widget.danger.disabled:focus,
  11232. .notification_widget.danger[disabled]:focus,
  11233. fieldset[disabled] .notification_widget.danger:focus,
  11234. .notification_widget.danger.disabled.focus,
  11235. .notification_widget.danger[disabled].focus,
  11236. fieldset[disabled] .notification_widget.danger.focus {
  11237. background-color: #d9534f;
  11238. border-color: #d43f3a;
  11239. }
  11240. .notification_widget.danger .badge {
  11241. color: #d9534f;
  11242. background-color: #fff;
  11243. }
  11244. div#pager {
  11245. background-color: #fff;
  11246. font-size: 14px;
  11247. line-height: 20px;
  11248. overflow: hidden;
  11249. display: none;
  11250. position: fixed;
  11251. bottom: 0px;
  11252. width: 100%;
  11253. max-height: 50%;
  11254. padding-top: 8px;
  11255. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11256. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11257. /* Display over codemirror */
  11258. z-index: 100;
  11259. /* Hack which prevents jquery ui resizable from changing top. */
  11260. top: auto !important;
  11261. }
  11262. div#pager pre {
  11263. line-height: 1.21429em;
  11264. color: #000;
  11265. background-color: #f7f7f7;
  11266. padding: 0.4em;
  11267. }
  11268. div#pager #pager-button-area {
  11269. position: absolute;
  11270. top: 8px;
  11271. right: 20px;
  11272. }
  11273. div#pager #pager-contents {
  11274. position: relative;
  11275. overflow: auto;
  11276. width: 100%;
  11277. height: 100%;
  11278. }
  11279. div#pager #pager-contents #pager-container {
  11280. position: relative;
  11281. padding: 15px 0px;
  11282. box-sizing: border-box;
  11283. -moz-box-sizing: border-box;
  11284. -webkit-box-sizing: border-box;
  11285. }
  11286. div#pager .ui-resizable-handle {
  11287. top: 0px;
  11288. height: 8px;
  11289. background: #f7f7f7;
  11290. border-top: 1px solid #cfcfcf;
  11291. border-bottom: 1px solid #cfcfcf;
  11292. /* This injects handle bars (a short, wide = symbol) for
  11293. the resize handle. */
  11294. }
  11295. div#pager .ui-resizable-handle::after {
  11296. content: '';
  11297. top: 2px;
  11298. left: 50%;
  11299. height: 3px;
  11300. width: 30px;
  11301. margin-left: -15px;
  11302. position: absolute;
  11303. border-top: 1px solid #cfcfcf;
  11304. }
  11305. .quickhelp {
  11306. /* Old browsers */
  11307. display: -webkit-box;
  11308. -webkit-box-orient: horizontal;
  11309. -webkit-box-align: stretch;
  11310. display: -moz-box;
  11311. -moz-box-orient: horizontal;
  11312. -moz-box-align: stretch;
  11313. display: box;
  11314. box-orient: horizontal;
  11315. box-align: stretch;
  11316. /* Modern browsers */
  11317. display: flex;
  11318. flex-direction: row;
  11319. align-items: stretch;
  11320. line-height: 1.8em;
  11321. }
  11322. .shortcut_key {
  11323. display: inline-block;
  11324. width: 21ex;
  11325. text-align: right;
  11326. font-family: monospace;
  11327. }
  11328. .shortcut_descr {
  11329. display: inline-block;
  11330. /* Old browsers */
  11331. -webkit-box-flex: 1;
  11332. -moz-box-flex: 1;
  11333. box-flex: 1;
  11334. /* Modern browsers */
  11335. flex: 1;
  11336. }
  11337. span.save_widget {
  11338. margin-top: 6px;
  11339. }
  11340. span.save_widget span.filename {
  11341. height: 1em;
  11342. line-height: 1em;
  11343. padding: 3px;
  11344. margin-left: 16px;
  11345. border: none;
  11346. font-size: 146.5%;
  11347. border-radius: 2px;
  11348. }
  11349. span.save_widget span.filename:hover {
  11350. background-color: #e6e6e6;
  11351. }
  11352. span.checkpoint_status,
  11353. span.autosave_status {
  11354. font-size: small;
  11355. }
  11356. @media (max-width: 767px) {
  11357. span.save_widget {
  11358. font-size: small;
  11359. }
  11360. span.checkpoint_status,
  11361. span.autosave_status {
  11362. display: none;
  11363. }
  11364. }
  11365. @media (min-width: 768px) and (max-width: 991px) {
  11366. span.checkpoint_status {
  11367. display: none;
  11368. }
  11369. span.autosave_status {
  11370. font-size: x-small;
  11371. }
  11372. }
  11373. .toolbar {
  11374. padding: 0px;
  11375. margin-left: -5px;
  11376. margin-top: 2px;
  11377. margin-bottom: 5px;
  11378. box-sizing: border-box;
  11379. -moz-box-sizing: border-box;
  11380. -webkit-box-sizing: border-box;
  11381. }
  11382. .toolbar select,
  11383. .toolbar label {
  11384. width: auto;
  11385. vertical-align: middle;
  11386. margin-right: 2px;
  11387. margin-bottom: 0px;
  11388. display: inline;
  11389. font-size: 92%;
  11390. margin-left: 0.3em;
  11391. margin-right: 0.3em;
  11392. padding: 0px;
  11393. padding-top: 3px;
  11394. }
  11395. .toolbar .btn {
  11396. padding: 2px 8px;
  11397. }
  11398. .toolbar .btn-group {
  11399. margin-top: 0px;
  11400. margin-left: 5px;
  11401. }
  11402. #maintoolbar {
  11403. margin-bottom: -3px;
  11404. margin-top: -8px;
  11405. border: 0px;
  11406. min-height: 27px;
  11407. margin-left: 0px;
  11408. padding-top: 11px;
  11409. padding-bottom: 3px;
  11410. }
  11411. #maintoolbar .navbar-text {
  11412. float: none;
  11413. vertical-align: middle;
  11414. text-align: right;
  11415. margin-left: 5px;
  11416. margin-right: 0px;
  11417. margin-top: 0px;
  11418. }
  11419. .select-xs {
  11420. height: 24px;
  11421. }
  11422. .pulse,
  11423. .dropdown-menu > li > a.pulse,
  11424. li.pulse > a.dropdown-toggle,
  11425. li.pulse.open > a.dropdown-toggle {
  11426. background-color: #F37626;
  11427. color: white;
  11428. }
  11429. /**
  11430. * Primary styles
  11431. *
  11432. * Author: Jupyter Development Team
  11433. */
  11434. /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
  11435. * of chance of beeing generated from the ../less/[samename].less file, you can
  11436. * try to get back the less file by reverting somme commit in history
  11437. **/
  11438. /*
  11439. * We'll try to get something pretty, so we
  11440. * have some strange css to have the scroll bar on
  11441. * the left with fix button on the top right of the tooltip
  11442. */
  11443. @-moz-keyframes fadeOut {
  11444. from {
  11445. opacity: 1;
  11446. }
  11447. to {
  11448. opacity: 0;
  11449. }
  11450. }
  11451. @-webkit-keyframes fadeOut {
  11452. from {
  11453. opacity: 1;
  11454. }
  11455. to {
  11456. opacity: 0;
  11457. }
  11458. }
  11459. @-moz-keyframes fadeIn {
  11460. from {
  11461. opacity: 0;
  11462. }
  11463. to {
  11464. opacity: 1;
  11465. }
  11466. }
  11467. @-webkit-keyframes fadeIn {
  11468. from {
  11469. opacity: 0;
  11470. }
  11471. to {
  11472. opacity: 1;
  11473. }
  11474. }
  11475. /*properties of tooltip after "expand"*/
  11476. .bigtooltip {
  11477. overflow: auto;
  11478. height: 200px;
  11479. -webkit-transition-property: height;
  11480. -webkit-transition-duration: 500ms;
  11481. -moz-transition-property: height;
  11482. -moz-transition-duration: 500ms;
  11483. transition-property: height;
  11484. transition-duration: 500ms;
  11485. }
  11486. /*properties of tooltip before "expand"*/
  11487. .smalltooltip {
  11488. -webkit-transition-property: height;
  11489. -webkit-transition-duration: 500ms;
  11490. -moz-transition-property: height;
  11491. -moz-transition-duration: 500ms;
  11492. transition-property: height;
  11493. transition-duration: 500ms;
  11494. text-overflow: ellipsis;
  11495. overflow: hidden;
  11496. height: 80px;
  11497. }
  11498. .tooltipbuttons {
  11499. position: absolute;
  11500. padding-right: 15px;
  11501. top: 0px;
  11502. right: 0px;
  11503. }
  11504. .tooltiptext {
  11505. /*avoid the button to overlap on some docstring*/
  11506. padding-right: 30px;
  11507. }
  11508. .ipython_tooltip {
  11509. max-width: 700px;
  11510. /*fade-in animation when inserted*/
  11511. -webkit-animation: fadeOut 400ms;
  11512. -moz-animation: fadeOut 400ms;
  11513. animation: fadeOut 400ms;
  11514. -webkit-animation: fadeIn 400ms;
  11515. -moz-animation: fadeIn 400ms;
  11516. animation: fadeIn 400ms;
  11517. vertical-align: middle;
  11518. background-color: #f7f7f7;
  11519. overflow: visible;
  11520. border: #ababab 1px solid;
  11521. outline: none;
  11522. padding: 3px;
  11523. margin: 0px;
  11524. padding-left: 7px;
  11525. font-family: monospace;
  11526. min-height: 50px;
  11527. -moz-box-shadow: 0px 6px 10px -1px #adadad;
  11528. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  11529. box-shadow: 0px 6px 10px -1px #adadad;
  11530. border-radius: 2px;
  11531. position: absolute;
  11532. z-index: 1000;
  11533. }
  11534. .ipython_tooltip a {
  11535. float: right;
  11536. }
  11537. .ipython_tooltip .tooltiptext pre {
  11538. border: 0;
  11539. border-radius: 0;
  11540. font-size: 100%;
  11541. background-color: #f7f7f7;
  11542. }
  11543. .pretooltiparrow {
  11544. left: 0px;
  11545. margin: 0px;
  11546. top: -16px;
  11547. width: 40px;
  11548. height: 16px;
  11549. overflow: hidden;
  11550. position: absolute;
  11551. }
  11552. .pretooltiparrow:before {
  11553. background-color: #f7f7f7;
  11554. border: 1px #ababab solid;
  11555. z-index: 11;
  11556. content: "";
  11557. position: absolute;
  11558. left: 15px;
  11559. top: 10px;
  11560. width: 25px;
  11561. height: 25px;
  11562. -webkit-transform: rotate(45deg);
  11563. -moz-transform: rotate(45deg);
  11564. -ms-transform: rotate(45deg);
  11565. -o-transform: rotate(45deg);
  11566. }
  11567. ul.typeahead-list i {
  11568. margin-left: -10px;
  11569. width: 18px;
  11570. }
  11571. ul.typeahead-list {
  11572. max-height: 80vh;
  11573. overflow: auto;
  11574. }
  11575. ul.typeahead-list > li > a {
  11576. /** Firefox bug **/
  11577. /* see https://github.com/jupyter/notebook/issues/559 */
  11578. white-space: normal;
  11579. }
  11580. .cmd-palette .modal-body {
  11581. padding: 7px;
  11582. }
  11583. .cmd-palette form {
  11584. background: white;
  11585. }
  11586. .cmd-palette input {
  11587. outline: none;
  11588. }
  11589. .no-shortcut {
  11590. display: none;
  11591. }
  11592. .command-shortcut:before {
  11593. content: "(command)";
  11594. padding-right: 3px;
  11595. color: #777777;
  11596. }
  11597. .edit-shortcut:before {
  11598. content: "(edit)";
  11599. padding-right: 3px;
  11600. color: #777777;
  11601. }
  11602. #find-and-replace #replace-preview .match,
  11603. #find-and-replace #replace-preview .insert {
  11604. background-color: #BBDEFB;
  11605. border-color: #90CAF9;
  11606. border-style: solid;
  11607. border-width: 1px;
  11608. border-radius: 0px;
  11609. }
  11610. #find-and-replace #replace-preview .replace .match {
  11611. background-color: #FFCDD2;
  11612. border-color: #EF9A9A;
  11613. border-radius: 0px;
  11614. }
  11615. #find-and-replace #replace-preview .replace .insert {
  11616. background-color: #C8E6C9;
  11617. border-color: #A5D6A7;
  11618. border-radius: 0px;
  11619. }
  11620. #find-and-replace #replace-preview {
  11621. max-height: 60vh;
  11622. overflow: auto;
  11623. }
  11624. #find-and-replace #replace-preview pre {
  11625. padding: 5px 10px;
  11626. }
  11627. .terminal-app {
  11628. background: #EEE;
  11629. }
  11630. .terminal-app #header {
  11631. background: #fff;
  11632. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11633. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11634. }
  11635. .terminal-app .terminal {
  11636. width: 100%;
  11637. float: left;
  11638. font-family: monospace;
  11639. color: white;
  11640. background: black;
  11641. padding: 0.4em;
  11642. border-radius: 2px;
  11643. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  11644. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  11645. }
  11646. .terminal-app .terminal,
  11647. .terminal-app .terminal dummy-screen {
  11648. line-height: 1em;
  11649. font-size: 14px;
  11650. }
  11651. .terminal-app .terminal .xterm-rows {
  11652. padding: 10px;
  11653. }
  11654. .terminal-app .terminal-cursor {
  11655. color: black;
  11656. background: white;
  11657. }
  11658. .terminal-app #terminado-container {
  11659. margin-top: 20px;
  11660. }
  11661. /*# sourceMappingURL=style.min.css.map */
  11662. </style>
  11663. <style type="text/css">
  11664. .highlight .hll { background-color: #ffffcc }
  11665. .highlight { background: #f8f8f8; }
  11666. .highlight .c { color: #408080; font-style: italic } /* Comment */
  11667. .highlight .err { border: 1px solid #FF0000 } /* Error */
  11668. .highlight .k { color: #008000; font-weight: bold } /* Keyword */
  11669. .highlight .o { color: #666666 } /* Operator */
  11670. .highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
  11671. .highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
  11672. .highlight .cp { color: #BC7A00 } /* Comment.Preproc */
  11673. .highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
  11674. .highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
  11675. .highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
  11676. .highlight .gd { color: #A00000 } /* Generic.Deleted */
  11677. .highlight .ge { font-style: italic } /* Generic.Emph */
  11678. .highlight .gr { color: #FF0000 } /* Generic.Error */
  11679. .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
  11680. .highlight .gi { color: #00A000 } /* Generic.Inserted */
  11681. .highlight .go { color: #888888 } /* Generic.Output */
  11682. .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
  11683. .highlight .gs { font-weight: bold } /* Generic.Strong */
  11684. .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
  11685. .highlight .gt { color: #0044DD } /* Generic.Traceback */
  11686. .highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
  11687. .highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
  11688. .highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
  11689. .highlight .kp { color: #008000 } /* Keyword.Pseudo */
  11690. .highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
  11691. .highlight .kt { color: #B00040 } /* Keyword.Type */
  11692. .highlight .m { color: #666666 } /* Literal.Number */
  11693. .highlight .s { color: #BA2121 } /* Literal.String */
  11694. .highlight .na { color: #7D9029 } /* Name.Attribute */
  11695. .highlight .nb { color: #008000 } /* Name.Builtin */
  11696. .highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
  11697. .highlight .no { color: #880000 } /* Name.Constant */
  11698. .highlight .nd { color: #AA22FF } /* Name.Decorator */
  11699. .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
  11700. .highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
  11701. .highlight .nf { color: #0000FF } /* Name.Function */
  11702. .highlight .nl { color: #A0A000 } /* Name.Label */
  11703. .highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
  11704. .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
  11705. .highlight .nv { color: #19177C } /* Name.Variable */
  11706. .highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
  11707. .highlight .w { color: #bbbbbb } /* Text.Whitespace */
  11708. .highlight .mb { color: #666666 } /* Literal.Number.Bin */
  11709. .highlight .mf { color: #666666 } /* Literal.Number.Float */
  11710. .highlight .mh { color: #666666 } /* Literal.Number.Hex */
  11711. .highlight .mi { color: #666666 } /* Literal.Number.Integer */
  11712. .highlight .mo { color: #666666 } /* Literal.Number.Oct */
  11713. .highlight .sa { color: #BA2121 } /* Literal.String.Affix */
  11714. .highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
  11715. .highlight .sc { color: #BA2121 } /* Literal.String.Char */
  11716. .highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
  11717. .highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
  11718. .highlight .s2 { color: #BA2121 } /* Literal.String.Double */
  11719. .highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
  11720. .highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
  11721. .highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
  11722. .highlight .sx { color: #008000 } /* Literal.String.Other */
  11723. .highlight .sr { color: #BB6688 } /* Literal.String.Regex */
  11724. .highlight .s1 { color: #BA2121 } /* Literal.String.Single */
  11725. .highlight .ss { color: #19177C } /* Literal.String.Symbol */
  11726. .highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
  11727. .highlight .fm { color: #0000FF } /* Name.Function.Magic */
  11728. .highlight .vc { color: #19177C } /* Name.Variable.Class */
  11729. .highlight .vg { color: #19177C } /* Name.Variable.Global */
  11730. .highlight .vi { color: #19177C } /* Name.Variable.Instance */
  11731. .highlight .vm { color: #19177C } /* Name.Variable.Magic */
  11732. .highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
  11733. </style>
  11734. <style type="text/css">
  11735.  
  11736. /* Temporary definitions which will become obsolete with Notebook release 5.0 */
  11737. .ansi-black-fg { color: #3E424D; }
  11738. .ansi-black-bg { background-color: #3E424D; }
  11739. .ansi-black-intense-fg { color: #282C36; }
  11740. .ansi-black-intense-bg { background-color: #282C36; }
  11741. .ansi-red-fg { color: #E75C58; }
  11742. .ansi-red-bg { background-color: #E75C58; }
  11743. .ansi-red-intense-fg { color: #B22B31; }
  11744. .ansi-red-intense-bg { background-color: #B22B31; }
  11745. .ansi-green-fg { color: #00A250; }
  11746. .ansi-green-bg { background-color: #00A250; }
  11747. .ansi-green-intense-fg { color: #007427; }
  11748. .ansi-green-intense-bg { background-color: #007427; }
  11749. .ansi-yellow-fg { color: #DDB62B; }
  11750. .ansi-yellow-bg { background-color: #DDB62B; }
  11751. .ansi-yellow-intense-fg { color: #B27D12; }
  11752. .ansi-yellow-intense-bg { background-color: #B27D12; }
  11753. .ansi-blue-fg { color: #208FFB; }
  11754. .ansi-blue-bg { background-color: #208FFB; }
  11755. .ansi-blue-intense-fg { color: #0065CA; }
  11756. .ansi-blue-intense-bg { background-color: #0065CA; }
  11757. .ansi-magenta-fg { color: #D160C4; }
  11758. .ansi-magenta-bg { background-color: #D160C4; }
  11759. .ansi-magenta-intense-fg { color: #A03196; }
  11760. .ansi-magenta-intense-bg { background-color: #A03196; }
  11761. .ansi-cyan-fg { color: #60C6C8; }
  11762. .ansi-cyan-bg { background-color: #60C6C8; }
  11763. .ansi-cyan-intense-fg { color: #258F8F; }
  11764. .ansi-cyan-intense-bg { background-color: #258F8F; }
  11765. .ansi-white-fg { color: #C5C1B4; }
  11766. .ansi-white-bg { background-color: #C5C1B4; }
  11767. .ansi-white-intense-fg { color: #A1A6B2; }
  11768. .ansi-white-intense-bg { background-color: #A1A6B2; }
  11769.  
  11770. .ansi-bold { font-weight: bold; }
  11771.  
  11772. </style>
  11773.  
  11774.  
  11775. <style type="text/css">
  11776. /* Overrides of notebook CSS for static HTML export */
  11777. .reveal {
  11778. font-size: 160%;
  11779. }
  11780. .reveal pre {
  11781. width: inherit;
  11782. padding: 0.4em;
  11783. margin: 0px;
  11784. font-family: monospace, sans-serif;
  11785. font-size: 80%;
  11786. box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  11787. }
  11788. .reveal pre code {
  11789. padding: 0px;
  11790. }
  11791. .reveal section img {
  11792. border: 0px solid black;
  11793. box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  11794. }
  11795. .reveal i {
  11796. font-style: normal;
  11797. font-family: FontAwesome;
  11798. font-size: 2em;
  11799. }
  11800. .reveal .slides {
  11801. text-align: left;
  11802. }
  11803. .reveal.fade {
  11804. opacity: 1;
  11805. }
  11806. .reveal .progress {
  11807. position: static;
  11808. }
  11809. .reveal .controls .navigate-left,
  11810. .reveal .controls .navigate-left.enabled {
  11811. border-right-color: #727272;
  11812. }
  11813. .reveal .controls .navigate-left.enabled:hover,
  11814. .reveal .controls .navigate-left.enabled.enabled:hover {
  11815. border-right-color: #dfdfdf;
  11816. }
  11817. .reveal .controls .navigate-right,
  11818. .reveal .controls .navigate-right.enabled {
  11819. border-left-color: #727272;
  11820. }
  11821. .reveal .controls .navigate-right.enabled:hover,
  11822. .reveal .controls .navigate-right.enabled.enabled:hover {
  11823. border-left-color: #dfdfdf;
  11824. }
  11825. .reveal .controls .navigate-up,
  11826. .reveal .controls .navigate-up.enabled {
  11827. border-bottom-color: #727272;
  11828. }
  11829. .reveal .controls .navigate-up.enabled:hover,
  11830. .reveal .controls .navigate-up.enabled.enabled:hover {
  11831. border-bottom-color: #dfdfdf;
  11832. }
  11833. .reveal .controls .navigate-down,
  11834. .reveal .controls .navigate-down.enabled {
  11835. border-top-color: #727272;
  11836. }
  11837. .reveal .controls .navigate-down.enabled:hover,
  11838. .reveal .controls .navigate-down.enabled.enabled:hover {
  11839. border-top-color: #dfdfdf;
  11840. }
  11841. .reveal .progress span {
  11842. background: #727272;
  11843. }
  11844. div.input_area {
  11845. padding: 0.06em;
  11846. }
  11847. div.code_cell {
  11848. background-color: transparent;
  11849. }
  11850. div.prompt {
  11851. width: 11ex;
  11852. padding: 0.4em;
  11853. margin: 0px;
  11854. font-family: monospace, sans-serif;
  11855. font-size: 80%;
  11856. text-align: right;
  11857. }
  11858. div.output_area pre {
  11859. font-family: monospace, sans-serif;
  11860. font-size: 80%;
  11861. }
  11862. div.output_prompt {
  11863. /* 5px right shift to account for margin in parent container */
  11864. margin: 5px 5px 0 0;
  11865. }
  11866. div.text_cell.rendered .rendered_html {
  11867. /* The H1 height seems miscalculated, we are just hidding the scrollbar */
  11868. overflow-y: hidden;
  11869. }
  11870. a.anchor-link {
  11871. /* There is still an anchor, we are only hidding it */
  11872. display: none;
  11873. }
  11874. .rendered_html p {
  11875. text-align: inherit;
  11876. }
  11877. ::-webkit-scrollbar
  11878. {
  11879. width: 6px;
  11880. height: 6px;
  11881. }
  11882. ::-webkit-scrollbar *
  11883. {
  11884. background:transparent;
  11885. }
  11886. ::-webkit-scrollbar-thumb
  11887. {
  11888. background: #727272 !important;
  11889. }
  11890. </style>
  11891.  
  11892. <!-- Custom stylesheet, it must be in the same directory as the html file -->
  11893. <link rel="stylesheet" href="custom.css">
  11894.  
  11895. </head>
  11896.  
  11897.  
  11898. <body>
  11899.  
  11900.  
  11901. <div class="reveal">
  11902. <div class="slides">
  11903. <section><section>
  11904. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11905. </div>
  11906. <div class="inner_cell">
  11907. <div class="text_cell_render border-box-sizing rendered_html">
  11908. <h1 id="Spacy-Natural-Language-Processing-|-Croatian-model">Spacy Natural Language Processing | Croatian model<a class="anchor-link" href="#Spacy-Natural-Language-Processing-|-Croatian-model">&#182;</a></h1>
  11909. </div>
  11910. </div>
  11911. </div></section></section><section><section>
  11912. <div class="cell border-box-sizing code_cell rendered">
  11913. <div class="input">
  11914. <div class="prompt input_prompt">In&nbsp;[1]:</div>
  11915. <div class="inner_cell">
  11916. <div class="input_area">
  11917. <div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># coding: utf-8</span>
  11918.  
  11919. <span class="c1"># testing Croatian tokenizer</span>
  11920. <span class="c1">#</span>
  11921. <span class="kn">import</span> <span class="nn">spacy</span>
  11922. <span class="kn">from</span> <span class="nn">spacy</span> <span class="k">import</span> <span class="n">displacy</span>
  11923. <span class="kn">from</span> <span class="nn">ssf</span> <span class="k">import</span> <span class="n">ssf</span>
  11924.  
  11925. <span class="c1"># text </span>
  11926. <span class="n">sentence</span> <span class="o">=</span> <span class="s1">&#39;marija ustane i pođe u gorje.&#39;</span>
  11927. <span class="c1"># rule-based vs. DL approch</span>
  11928. <span class="n">nlp_ssf</span> <span class="o">=</span> <span class="n">ssf</span><span class="o">.</span><span class="n">load</span><span class="p">(</span><span class="s1">&#39;hr&#39;</span><span class="p">)</span>
  11929. <span class="n">doc</span> <span class="o">=</span> <span class="n">nlp_ssf</span><span class="p">(</span><span class="n">sentence</span><span class="p">)</span>
  11930. <span class="c1">#visualize</span>
  11931. <span class="n">doc</span><span class="o">.</span><span class="n">render</span><span class="p">()</span>
  11932.  
  11933. <span class="n">nlp</span> <span class="o">=</span> <span class="n">spacy</span><span class="o">.</span><span class="n">load</span><span class="p">(</span><span class="s1">&#39;hr_set_times_ud&#39;</span><span class="p">)</span>
  11934. <span class="n">doc</span> <span class="o">=</span> <span class="n">nlp</span><span class="p">(</span><span class="n">sentence</span><span class="p">)</span>
  11935.  
  11936. <span class="c1"># vizualize</span>
  11937. <span class="n">displacy</span><span class="o">.</span><span class="n">render</span><span class="p">(</span><span class="n">doc</span><span class="p">,</span><span class="n">style</span><span class="o">=</span><span class="s1">&#39;dep&#39;</span><span class="p">,</span><span class="n">jupyter</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
  11938. </pre></div>
  11939.  
  11940. </div>
  11941. </div>
  11942. </div>
  11943.  
  11944. <div class="output_wrapper">
  11945. <div class="output">
  11946.  
  11947.  
  11948. <div class="output_area">
  11949.  
  11950. <div class="prompt"></div>
  11951.  
  11952.  
  11953.  
  11954. <div class="output_html rendered_html output_subarea ">
  11955. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="0" class="displacy" width="1275" height="137.0" style="max-width: none; height: 137.0px; color: #000000; background: #ffffff; font-family: Arial">
  11956. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="47.0">
  11957. <tspan class="displacy-word" fill="currentColor" x="50">marija</tspan>
  11958. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="50">NOUN</tspan>
  11959. </text>
  11960.  
  11961. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="47.0">
  11962. <tspan class="displacy-word" fill="currentColor" x="225">ustane</tspan>
  11963. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="225">VERB</tspan>
  11964. </text>
  11965.  
  11966. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="47.0">
  11967. <tspan class="displacy-word" fill="currentColor" x="400">i</tspan>
  11968. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="400">CCONJ</tspan>
  11969. </text>
  11970.  
  11971. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="47.0">
  11972. <tspan class="displacy-word" fill="currentColor" x="575">pođe</tspan>
  11973. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="575">VERB</tspan>
  11974. </text>
  11975.  
  11976. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="47.0">
  11977. <tspan class="displacy-word" fill="currentColor" x="750">u</tspan>
  11978. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="750">ADP</tspan>
  11979. </text>
  11980.  
  11981. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="47.0">
  11982. <tspan class="displacy-word" fill="currentColor" x="925">gorje</tspan>
  11983. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="925">NOUN</tspan>
  11984. </text>
  11985.  
  11986. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="47.0">
  11987. <tspan class="displacy-word" fill="currentColor" x="1100">.</tspan>
  11988. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="1100">x</tspan>
  11989. </text>
  11990. </svg>
  11991. </div>
  11992.  
  11993. </div>
  11994.  
  11995. <div class="output_area">
  11996.  
  11997. <div class="prompt"></div>
  11998.  
  11999.  
  12000.  
  12001. <div class="output_html rendered_html output_subarea ">
  12002. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="0" class="displacy" width="1100" height="312.0" style="max-width: none; height: 312.0px; color: #000000; background: #ffffff; font-family: Arial">
  12003. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="222.0">
  12004. <tspan class="displacy-word" fill="currentColor" x="50">marija</tspan>
  12005. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="50">NOUN</tspan>
  12006. </text>
  12007.  
  12008. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="222.0">
  12009. <tspan class="displacy-word" fill="currentColor" x="225">ustane</tspan>
  12010. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="225">ADJ</tspan>
  12011. </text>
  12012.  
  12013. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="222.0">
  12014. <tspan class="displacy-word" fill="currentColor" x="400">i</tspan>
  12015. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="400">CCONJ</tspan>
  12016. </text>
  12017.  
  12018. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="222.0">
  12019. <tspan class="displacy-word" fill="currentColor" x="575">pođe</tspan>
  12020. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="575">VERB</tspan>
  12021. </text>
  12022.  
  12023. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="222.0">
  12024. <tspan class="displacy-word" fill="currentColor" x="750">u</tspan>
  12025. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="750">ADP</tspan>
  12026. </text>
  12027.  
  12028. <text class="displacy-token" fill="currentColor" text-anchor="middle" y="222.0">
  12029. <tspan class="displacy-word" fill="currentColor" x="925">gorje.</tspan>
  12030. <tspan class="displacy-tag" dy="2em" fill="currentColor" x="925">NOUN</tspan>
  12031. </text>
  12032.  
  12033. <g class="displacy-arrow">
  12034. <path class="displacy-arc" id="arrow-0-0" stroke-width="2px" d="M70,177.0 C70,89.5 220.0,89.5 220.0,177.0" fill="none" stroke="currentColor"/>
  12035. <text dy="1.25em" style="font-size: 0.8em; letter-spacing: 1px">
  12036. <textPath xlink:href="#arrow-0-0" class="displacy-label" startOffset="50%" fill="currentColor" text-anchor="middle">nsubj</textPath>
  12037. </text>
  12038. <path class="displacy-arrowhead" d="M70,179.0 L62,167.0 78,167.0" fill="currentColor"/>
  12039. </g>
  12040.  
  12041. <g class="displacy-arrow">
  12042. <path class="displacy-arc" id="arrow-0-1" stroke-width="2px" d="M420,177.0 C420,89.5 570.0,89.5 570.0,177.0" fill="none" stroke="currentColor"/>
  12043. <text dy="1.25em" style="font-size: 0.8em; letter-spacing: 1px">
  12044. <textPath xlink:href="#arrow-0-1" class="displacy-label" startOffset="50%" fill="currentColor" text-anchor="middle">cc</textPath>
  12045. </text>
  12046. <path class="displacy-arrowhead" d="M420,179.0 L412,167.0 428,167.0" fill="currentColor"/>
  12047. </g>
  12048.  
  12049. <g class="displacy-arrow">
  12050. <path class="displacy-arc" id="arrow-0-2" stroke-width="2px" d="M245,177.0 C245,2.0 575.0,2.0 575.0,177.0" fill="none" stroke="currentColor"/>
  12051. <text dy="1.25em" style="font-size: 0.8em; letter-spacing: 1px">
  12052. <textPath xlink:href="#arrow-0-2" class="displacy-label" startOffset="50%" fill="currentColor" text-anchor="middle">conj</textPath>
  12053. </text>
  12054. <path class="displacy-arrowhead" d="M575.0,179.0 L583.0,167.0 567.0,167.0" fill="currentColor"/>
  12055. </g>
  12056.  
  12057. <g class="displacy-arrow">
  12058. <path class="displacy-arc" id="arrow-0-3" stroke-width="2px" d="M770,177.0 C770,89.5 920.0,89.5 920.0,177.0" fill="none" stroke="currentColor"/>
  12059. <text dy="1.25em" style="font-size: 0.8em; letter-spacing: 1px">
  12060. <textPath xlink:href="#arrow-0-3" class="displacy-label" startOffset="50%" fill="currentColor" text-anchor="middle">case</textPath>
  12061. </text>
  12062. <path class="displacy-arrowhead" d="M770,179.0 L762,167.0 778,167.0" fill="currentColor"/>
  12063. </g>
  12064.  
  12065. <g class="displacy-arrow">
  12066. <path class="displacy-arc" id="arrow-0-4" stroke-width="2px" d="M595,177.0 C595,2.0 925.0,2.0 925.0,177.0" fill="none" stroke="currentColor"/>
  12067. <text dy="1.25em" style="font-size: 0.8em; letter-spacing: 1px">
  12068. <textPath xlink:href="#arrow-0-4" class="displacy-label" startOffset="50%" fill="currentColor" text-anchor="middle">obl</textPath>
  12069. </text>
  12070. <path class="displacy-arrowhead" d="M925.0,179.0 L933.0,167.0 917.0,167.0" fill="currentColor"/>
  12071. </g>
  12072. </svg>
  12073. </div>
  12074.  
  12075. </div>
  12076.  
  12077. </div>
  12078. </div>
  12079.  
  12080. </div></section>
  12081. </div>
  12082. </div>
  12083.  
  12084. <script>
  12085.  
  12086. require(
  12087. {
  12088. // it makes sense to wait a little bit when you are loading
  12089. // reveal from a cdn in a slow connection environment
  12090. waitSeconds: 15
  12091. },
  12092. [
  12093. "reveal.js/lib/js/head.min.js",
  12094. "reveal.js/js/reveal.js"
  12095. ],
  12096.  
  12097. function(head, Reveal){
  12098.  
  12099. // Full list of configuration options available here: https://github.com/hakimel/reveal.js#configuration
  12100. Reveal.initialize({
  12101. controls: true,
  12102. progress: true,
  12103. history: true,
  12104.  
  12105. transition: "slide",
  12106.  
  12107. // Optional libraries used to extend on reveal.js
  12108. dependencies: [
  12109. { src: "reveal.js/lib/js/classList.js",
  12110. condition: function() { return !document.body.classList; } },
  12111. { src: "reveal.js/plugin/notes/notes.js",
  12112. async: true,
  12113. condition: function() { return !!document.body.classList; } }
  12114. ]
  12115. });
  12116.  
  12117. var update = function(event){
  12118. if(MathJax.Hub.getAllJax(Reveal.getCurrentSlide())){
  12119. MathJax.Hub.Rerender(Reveal.getCurrentSlide());
  12120. }
  12121. };
  12122.  
  12123. Reveal.addEventListener('slidechanged', update);
  12124.  
  12125. function setScrollingSlide() {
  12126. var scroll = false
  12127. if (scroll === true) {
  12128. var h = $('.reveal').height() * 0.95;
  12129. $('section.present').find('section')
  12130. .filter(function() {
  12131. return $(this).height() > h;
  12132. })
  12133. .css('height', 'calc(95vh)')
  12134. .css('overflow-y', 'scroll')
  12135. .css('margin-top', '20px');
  12136. }
  12137. }
  12138.  
  12139. // check and set the scrolling slide every time the slide change
  12140. Reveal.addEventListener('slidechanged', setScrollingSlide);
  12141.  
  12142. }
  12143.  
  12144. );
  12145. </script>
  12146.  
  12147. </body>
  12148.  
  12149.  
  12150. </html>
Add Comment
Please, Sign In to add comment