Advertisement
Guest User

libs.css

a guest
Feb 7th, 2017
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 35.51 KB | None | 0 0
  1. /*!
  2.  * Start Bootstrap - Blog Post HTML Template (http://startbootstrap.com)
  3.  * Code licensed under the Apache License v2.0.
  4.  * For details, see http://www.apache.org/licenses/LICENSE-2.0.
  5.  */
  6.  
  7. body {
  8.     padding-top: 70px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
  9. }
  10.  
  11. footer {
  12.     margin: 50px 0;
  13. }
  14. /*!
  15.  *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
  16.  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  17.  */
  18. /* FONT PATH
  19.  * -------------------------- */
  20. @font-face {
  21.   font-family: 'FontAwesome';
  22.   src: url('../fonts/fontawesome-webfont.eot?v=4.2.0');
  23.   src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  24.   font-weight: normal;
  25.   font-style: normal;
  26. }
  27. .fa {
  28.   display: inline-block;
  29.   font: normal normal normal 14px/1 FontAwesome;
  30.   font-size: inherit;
  31.   text-rendering: auto;
  32.   -webkit-font-smoothing: antialiased;
  33.   -moz-osx-font-smoothing: grayscale;
  34. }
  35. /* makes the font 33% larger relative to the icon container */
  36. .fa-lg {
  37.   font-size: 1.33333333em;
  38.   line-height: 0.75em;
  39.   vertical-align: -15%;
  40. }
  41. .fa-2x {
  42.   font-size: 2em;
  43. }
  44. .fa-3x {
  45.   font-size: 3em;
  46. }
  47. .fa-4x {
  48.   font-size: 4em;
  49. }
  50. .fa-5x {
  51.   font-size: 5em;
  52. }
  53. .fa-fw {
  54.   width: 1.28571429em;
  55.   text-align: center;
  56. }
  57. .fa-ul {
  58.   padding-left: 0;
  59.   margin-left: 2.14285714em;
  60.   list-style-type: none;
  61. }
  62. .fa-ul > li {
  63.   position: relative;
  64. }
  65. .fa-li {
  66.   position: absolute;
  67.   left: -2.14285714em;
  68.   width: 2.14285714em;
  69.   top: 0.14285714em;
  70.   text-align: center;
  71. }
  72. .fa-li.fa-lg {
  73.   left: -1.85714286em;
  74. }
  75. .fa-border {
  76.   padding: .2em .25em .15em;
  77.   border: solid 0.08em #eeeeee;
  78.   border-radius: .1em;
  79. }
  80. .pull-right {
  81.   float: right;
  82. }
  83. .pull-left {
  84.   float: left;
  85. }
  86. .fa.pull-left {
  87.   margin-right: .3em;
  88. }
  89. .fa.pull-right {
  90.   margin-left: .3em;
  91. }
  92. .fa-spin {
  93.   -webkit-animation: fa-spin 2s infinite linear;
  94.   animation: fa-spin 2s infinite linear;
  95. }
  96. @-webkit-keyframes fa-spin {
  97.   0% {
  98.     -webkit-transform: rotate(0deg);
  99.     transform: rotate(0deg);
  100.   }
  101.   100% {
  102.     -webkit-transform: rotate(359deg);
  103.     transform: rotate(359deg);
  104.   }
  105. }
  106. @keyframes fa-spin {
  107.   0% {
  108.     -webkit-transform: rotate(0deg);
  109.     transform: rotate(0deg);
  110.   }
  111.   100% {
  112.     -webkit-transform: rotate(359deg);
  113.     transform: rotate(359deg);
  114.   }
  115. }
  116. .fa-rotate-90 {
  117.   filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  118.   -webkit-transform: rotate(90deg);
  119.   -ms-transform: rotate(90deg);
  120.   transform: rotate(90deg);
  121. }
  122. .fa-rotate-180 {
  123.   filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  124.   -webkit-transform: rotate(180deg);
  125.   -ms-transform: rotate(180deg);
  126.   transform: rotate(180deg);
  127. }
  128. .fa-rotate-270 {
  129.   filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  130.   -webkit-transform: rotate(270deg);
  131.   -ms-transform: rotate(270deg);
  132.   transform: rotate(270deg);
  133. }
  134. .fa-flip-horizontal {
  135.   filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  136.   -webkit-transform: scale(-1, 1);
  137.   -ms-transform: scale(-1, 1);
  138.   transform: scale(-1, 1);
  139. }
  140. .fa-flip-vertical {
  141.   filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  142.   -webkit-transform: scale(1, -1);
  143.   -ms-transform: scale(1, -1);
  144.   transform: scale(1, -1);
  145. }
  146. :root .fa-rotate-90,
  147. :root .fa-rotate-180,
  148. :root .fa-rotate-270,
  149. :root .fa-flip-horizontal,
  150. :root .fa-flip-vertical {
  151.   filter: none;
  152. }
  153. .fa-stack {
  154.   position: relative;
  155.   display: inline-block;
  156.   width: 2em;
  157.   height: 2em;
  158.   line-height: 2em;
  159.   vertical-align: middle;
  160. }
  161. .fa-stack-1x,
  162. .fa-stack-2x {
  163.   position: absolute;
  164.   left: 0;
  165.   width: 100%;
  166.   text-align: center;
  167. }
  168. .fa-stack-1x {
  169.   line-height: inherit;
  170. }
  171. .fa-stack-2x {
  172.   font-size: 2em;
  173. }
  174. .fa-inverse {
  175.   color: #ffffff;
  176. }
  177. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  178.    readers do not read off random characters that represent icons */
  179. .fa-glass:before {
  180.   content: "\f000";
  181. }
  182. .fa-music:before {
  183.   content: "\f001";
  184. }
  185. .fa-search:before {
  186.   content: "\f002";
  187. }
  188. .fa-envelope-o:before {
  189.   content: "\f003";
  190. }
  191. .fa-heart:before {
  192.   content: "\f004";
  193. }
  194. .fa-star:before {
  195.   content: "\f005";
  196. }
  197. .fa-star-o:before {
  198.   content: "\f006";
  199. }
  200. .fa-user:before {
  201.   content: "\f007";
  202. }
  203. .fa-film:before {
  204.   content: "\f008";
  205. }
  206. .fa-th-large:before {
  207.   content: "\f009";
  208. }
  209. .fa-th:before {
  210.   content: "\f00a";
  211. }
  212. .fa-th-list:before {
  213.   content: "\f00b";
  214. }
  215. .fa-check:before {
  216.   content: "\f00c";
  217. }
  218. .fa-remove:before,
  219. .fa-close:before,
  220. .fa-times:before {
  221.   content: "\f00d";
  222. }
  223. .fa-search-plus:before {
  224.   content: "\f00e";
  225. }
  226. .fa-search-minus:before {
  227.   content: "\f010";
  228. }
  229. .fa-power-off:before {
  230.   content: "\f011";
  231. }
  232. .fa-signal:before {
  233.   content: "\f012";
  234. }
  235. .fa-gear:before,
  236. .fa-cog:before {
  237.   content: "\f013";
  238. }
  239. .fa-trash-o:before {
  240.   content: "\f014";
  241. }
  242. .fa-home:before {
  243.   content: "\f015";
  244. }
  245. .fa-file-o:before {
  246.   content: "\f016";
  247. }
  248. .fa-clock-o:before {
  249.   content: "\f017";
  250. }
  251. .fa-road:before {
  252.   content: "\f018";
  253. }
  254. .fa-download:before {
  255.   content: "\f019";
  256. }
  257. .fa-arrow-circle-o-down:before {
  258.   content: "\f01a";
  259. }
  260. .fa-arrow-circle-o-up:before {
  261.   content: "\f01b";
  262. }
  263. .fa-inbox:before {
  264.   content: "\f01c";
  265. }
  266. .fa-play-circle-o:before {
  267.   content: "\f01d";
  268. }
  269. .fa-rotate-right:before,
  270. .fa-repeat:before {
  271.   content: "\f01e";
  272. }
  273. .fa-refresh:before {
  274.   content: "\f021";
  275. }
  276. .fa-list-alt:before {
  277.   content: "\f022";
  278. }
  279. .fa-lock:before {
  280.   content: "\f023";
  281. }
  282. .fa-flag:before {
  283.   content: "\f024";
  284. }
  285. .fa-headphones:before {
  286.   content: "\f025";
  287. }
  288. .fa-volume-off:before {
  289.   content: "\f026";
  290. }
  291. .fa-volume-down:before {
  292.   content: "\f027";
  293. }
  294. .fa-volume-up:before {
  295.   content: "\f028";
  296. }
  297. .fa-qrcode:before {
  298.   content: "\f029";
  299. }
  300. .fa-barcode:before {
  301.   content: "\f02a";
  302. }
  303. .fa-tag:before {
  304.   content: "\f02b";
  305. }
  306. .fa-tags:before {
  307.   content: "\f02c";
  308. }
  309. .fa-book:before {
  310.   content: "\f02d";
  311. }
  312. .fa-bookmark:before {
  313.   content: "\f02e";
  314. }
  315. .fa-print:before {
  316.   content: "\f02f";
  317. }
  318. .fa-camera:before {
  319.   content: "\f030";
  320. }
  321. .fa-font:before {
  322.   content: "\f031";
  323. }
  324. .fa-bold:before {
  325.   content: "\f032";
  326. }
  327. .fa-italic:before {
  328.   content: "\f033";
  329. }
  330. .fa-text-height:before {
  331.   content: "\f034";
  332. }
  333. .fa-text-width:before {
  334.   content: "\f035";
  335. }
  336. .fa-align-left:before {
  337.   content: "\f036";
  338. }
  339. .fa-align-center:before {
  340.   content: "\f037";
  341. }
  342. .fa-align-right:before {
  343.   content: "\f038";
  344. }
  345. .fa-align-justify:before {
  346.   content: "\f039";
  347. }
  348. .fa-list:before {
  349.   content: "\f03a";
  350. }
  351. .fa-dedent:before,
  352. .fa-outdent:before {
  353.   content: "\f03b";
  354. }
  355. .fa-indent:before {
  356.   content: "\f03c";
  357. }
  358. .fa-video-camera:before {
  359.   content: "\f03d";
  360. }
  361. .fa-photo:before,
  362. .fa-image:before,
  363. .fa-picture-o:before {
  364.   content: "\f03e";
  365. }
  366. .fa-pencil:before {
  367.   content: "\f040";
  368. }
  369. .fa-map-marker:before {
  370.   content: "\f041";
  371. }
  372. .fa-adjust:before {
  373.   content: "\f042";
  374. }
  375. .fa-tint:before {
  376.   content: "\f043";
  377. }
  378. .fa-edit:before,
  379. .fa-pencil-square-o:before {
  380.   content: "\f044";
  381. }
  382. .fa-share-square-o:before {
  383.   content: "\f045";
  384. }
  385. .fa-check-square-o:before {
  386.   content: "\f046";
  387. }
  388. .fa-arrows:before {
  389.   content: "\f047";
  390. }
  391. .fa-step-backward:before {
  392.   content: "\f048";
  393. }
  394. .fa-fast-backward:before {
  395.   content: "\f049";
  396. }
  397. .fa-backward:before {
  398.   content: "\f04a";
  399. }
  400. .fa-play:before {
  401.   content: "\f04b";
  402. }
  403. .fa-pause:before {
  404.   content: "\f04c";
  405. }
  406. .fa-stop:before {
  407.   content: "\f04d";
  408. }
  409. .fa-forward:before {
  410.   content: "\f04e";
  411. }
  412. .fa-fast-forward:before {
  413.   content: "\f050";
  414. }
  415. .fa-step-forward:before {
  416.   content: "\f051";
  417. }
  418. .fa-eject:before {
  419.   content: "\f052";
  420. }
  421. .fa-chevron-left:before {
  422.   content: "\f053";
  423. }
  424. .fa-chevron-right:before {
  425.   content: "\f054";
  426. }
  427. .fa-plus-circle:before {
  428.   content: "\f055";
  429. }
  430. .fa-minus-circle:before {
  431.   content: "\f056";
  432. }
  433. .fa-times-circle:before {
  434.   content: "\f057";
  435. }
  436. .fa-check-circle:before {
  437.   content: "\f058";
  438. }
  439. .fa-question-circle:before {
  440.   content: "\f059";
  441. }
  442. .fa-info-circle:before {
  443.   content: "\f05a";
  444. }
  445. .fa-crosshairs:before {
  446.   content: "\f05b";
  447. }
  448. .fa-times-circle-o:before {
  449.   content: "\f05c";
  450. }
  451. .fa-check-circle-o:before {
  452.   content: "\f05d";
  453. }
  454. .fa-ban:before {
  455.   content: "\f05e";
  456. }
  457. .fa-arrow-left:before {
  458.   content: "\f060";
  459. }
  460. .fa-arrow-right:before {
  461.   content: "\f061";
  462. }
  463. .fa-arrow-up:before {
  464.   content: "\f062";
  465. }
  466. .fa-arrow-down:before {
  467.   content: "\f063";
  468. }
  469. .fa-mail-forward:before,
  470. .fa-share:before {
  471.   content: "\f064";
  472. }
  473. .fa-expand:before {
  474.   content: "\f065";
  475. }
  476. .fa-compress:before {
  477.   content: "\f066";
  478. }
  479. .fa-plus:before {
  480.   content: "\f067";
  481. }
  482. .fa-minus:before {
  483.   content: "\f068";
  484. }
  485. .fa-asterisk:before {
  486.   content: "\f069";
  487. }
  488. .fa-exclamation-circle:before {
  489.   content: "\f06a";
  490. }
  491. .fa-gift:before {
  492.   content: "\f06b";
  493. }
  494. .fa-leaf:before {
  495.   content: "\f06c";
  496. }
  497. .fa-fire:before {
  498.   content: "\f06d";
  499. }
  500. .fa-eye:before {
  501.   content: "\f06e";
  502. }
  503. .fa-eye-slash:before {
  504.   content: "\f070";
  505. }
  506. .fa-warning:before,
  507. .fa-exclamation-triangle:before {
  508.   content: "\f071";
  509. }
  510. .fa-plane:before {
  511.   content: "\f072";
  512. }
  513. .fa-calendar:before {
  514.   content: "\f073";
  515. }
  516. .fa-random:before {
  517.   content: "\f074";
  518. }
  519. .fa-comment:before {
  520.   content: "\f075";
  521. }
  522. .fa-magnet:before {
  523.   content: "\f076";
  524. }
  525. .fa-chevron-up:before {
  526.   content: "\f077";
  527. }
  528. .fa-chevron-down:before {
  529.   content: "\f078";
  530. }
  531. .fa-retweet:before {
  532.   content: "\f079";
  533. }
  534. .fa-shopping-cart:before {
  535.   content: "\f07a";
  536. }
  537. .fa-folder:before {
  538.   content: "\f07b";
  539. }
  540. .fa-folder-open:before {
  541.   content: "\f07c";
  542. }
  543. .fa-arrows-v:before {
  544.   content: "\f07d";
  545. }
  546. .fa-arrows-h:before {
  547.   content: "\f07e";
  548. }
  549. .fa-bar-chart-o:before,
  550. .fa-bar-chart:before {
  551.   content: "\f080";
  552. }
  553. .fa-twitter-square:before {
  554.   content: "\f081";
  555. }
  556. .fa-facebook-square:before {
  557.   content: "\f082";
  558. }
  559. .fa-camera-retro:before {
  560.   content: "\f083";
  561. }
  562. .fa-key:before {
  563.   content: "\f084";
  564. }
  565. .fa-gears:before,
  566. .fa-cogs:before {
  567.   content: "\f085";
  568. }
  569. .fa-comments:before {
  570.   content: "\f086";
  571. }
  572. .fa-thumbs-o-up:before {
  573.   content: "\f087";
  574. }
  575. .fa-thumbs-o-down:before {
  576.   content: "\f088";
  577. }
  578. .fa-star-half:before {
  579.   content: "\f089";
  580. }
  581. .fa-heart-o:before {
  582.   content: "\f08a";
  583. }
  584. .fa-sign-out:before {
  585.   content: "\f08b";
  586. }
  587. .fa-linkedin-square:before {
  588.   content: "\f08c";
  589. }
  590. .fa-thumb-tack:before {
  591.   content: "\f08d";
  592. }
  593. .fa-external-link:before {
  594.   content: "\f08e";
  595. }
  596. .fa-sign-in:before {
  597.   content: "\f090";
  598. }
  599. .fa-trophy:before {
  600.   content: "\f091";
  601. }
  602. .fa-github-square:before {
  603.   content: "\f092";
  604. }
  605. .fa-upload:before {
  606.   content: "\f093";
  607. }
  608. .fa-lemon-o:before {
  609.   content: "\f094";
  610. }
  611. .fa-phone:before {
  612.   content: "\f095";
  613. }
  614. .fa-square-o:before {
  615.   content: "\f096";
  616. }
  617. .fa-bookmark-o:before {
  618.   content: "\f097";
  619. }
  620. .fa-phone-square:before {
  621.   content: "\f098";
  622. }
  623. .fa-twitter:before {
  624.   content: "\f099";
  625. }
  626. .fa-facebook:before {
  627.   content: "\f09a";
  628. }
  629. .fa-github:before {
  630.   content: "\f09b";
  631. }
  632. .fa-unlock:before {
  633.   content: "\f09c";
  634. }
  635. .fa-credit-card:before {
  636.   content: "\f09d";
  637. }
  638. .fa-rss:before {
  639.   content: "\f09e";
  640. }
  641. .fa-hdd-o:before {
  642.   content: "\f0a0";
  643. }
  644. .fa-bullhorn:before {
  645.   content: "\f0a1";
  646. }
  647. .fa-bell:before {
  648.   content: "\f0f3";
  649. }
  650. .fa-certificate:before {
  651.   content: "\f0a3";
  652. }
  653. .fa-hand-o-right:before {
  654.   content: "\f0a4";
  655. }
  656. .fa-hand-o-left:before {
  657.   content: "\f0a5";
  658. }
  659. .fa-hand-o-up:before {
  660.   content: "\f0a6";
  661. }
  662. .fa-hand-o-down:before {
  663.   content: "\f0a7";
  664. }
  665. .fa-arrow-circle-left:before {
  666.   content: "\f0a8";
  667. }
  668. .fa-arrow-circle-right:before {
  669.   content: "\f0a9";
  670. }
  671. .fa-arrow-circle-up:before {
  672.   content: "\f0aa";
  673. }
  674. .fa-arrow-circle-down:before {
  675.   content: "\f0ab";
  676. }
  677. .fa-globe:before {
  678.   content: "\f0ac";
  679. }
  680. .fa-wrench:before {
  681.   content: "\f0ad";
  682. }
  683. .fa-tasks:before {
  684.   content: "\f0ae";
  685. }
  686. .fa-filter:before {
  687.   content: "\f0b0";
  688. }
  689. .fa-briefcase:before {
  690.   content: "\f0b1";
  691. }
  692. .fa-arrows-alt:before {
  693.   content: "\f0b2";
  694. }
  695. .fa-group:before,
  696. .fa-users:before {
  697.   content: "\f0c0";
  698. }
  699. .fa-chain:before,
  700. .fa-link:before {
  701.   content: "\f0c1";
  702. }
  703. .fa-cloud:before {
  704.   content: "\f0c2";
  705. }
  706. .fa-flask:before {
  707.   content: "\f0c3";
  708. }
  709. .fa-cut:before,
  710. .fa-scissors:before {
  711.   content: "\f0c4";
  712. }
  713. .fa-copy:before,
  714. .fa-files-o:before {
  715.   content: "\f0c5";
  716. }
  717. .fa-paperclip:before {
  718.   content: "\f0c6";
  719. }
  720. .fa-save:before,
  721. .fa-floppy-o:before {
  722.   content: "\f0c7";
  723. }
  724. .fa-square:before {
  725.   content: "\f0c8";
  726. }
  727. .fa-navicon:before,
  728. .fa-reorder:before,
  729. .fa-bars:before {
  730.   content: "\f0c9";
  731. }
  732. .fa-list-ul:before {
  733.   content: "\f0ca";
  734. }
  735. .fa-list-ol:before {
  736.   content: "\f0cb";
  737. }
  738. .fa-strikethrough:before {
  739.   content: "\f0cc";
  740. }
  741. .fa-underline:before {
  742.   content: "\f0cd";
  743. }
  744. .fa-table:before {
  745.   content: "\f0ce";
  746. }
  747. .fa-magic:before {
  748.   content: "\f0d0";
  749. }
  750. .fa-truck:before {
  751.   content: "\f0d1";
  752. }
  753. .fa-pinterest:before {
  754.   content: "\f0d2";
  755. }
  756. .fa-pinterest-square:before {
  757.   content: "\f0d3";
  758. }
  759. .fa-google-plus-square:before {
  760.   content: "\f0d4";
  761. }
  762. .fa-google-plus:before {
  763.   content: "\f0d5";
  764. }
  765. .fa-money:before {
  766.   content: "\f0d6";
  767. }
  768. .fa-caret-down:before {
  769.   content: "\f0d7";
  770. }
  771. .fa-caret-up:before {
  772.   content: "\f0d8";
  773. }
  774. .fa-caret-left:before {
  775.   content: "\f0d9";
  776. }
  777. .fa-caret-right:before {
  778.   content: "\f0da";
  779. }
  780. .fa-columns:before {
  781.   content: "\f0db";
  782. }
  783. .fa-unsorted:before,
  784. .fa-sort:before {
  785.   content: "\f0dc";
  786. }
  787. .fa-sort-down:before,
  788. .fa-sort-desc:before {
  789.   content: "\f0dd";
  790. }
  791. .fa-sort-up:before,
  792. .fa-sort-asc:before {
  793.   content: "\f0de";
  794. }
  795. .fa-envelope:before {
  796.   content: "\f0e0";
  797. }
  798. .fa-linkedin:before {
  799.   content: "\f0e1";
  800. }
  801. .fa-rotate-left:before,
  802. .fa-undo:before {
  803.   content: "\f0e2";
  804. }
  805. .fa-legal:before,
  806. .fa-gavel:before {
  807.   content: "\f0e3";
  808. }
  809. .fa-dashboard:before,
  810. .fa-tachometer:before {
  811.   content: "\f0e4";
  812. }
  813. .fa-comment-o:before {
  814.   content: "\f0e5";
  815. }
  816. .fa-comments-o:before {
  817.   content: "\f0e6";
  818. }
  819. .fa-flash:before,
  820. .fa-bolt:before {
  821.   content: "\f0e7";
  822. }
  823. .fa-sitemap:before {
  824.   content: "\f0e8";
  825. }
  826. .fa-umbrella:before {
  827.   content: "\f0e9";
  828. }
  829. .fa-paste:before,
  830. .fa-clipboard:before {
  831.   content: "\f0ea";
  832. }
  833. .fa-lightbulb-o:before {
  834.   content: "\f0eb";
  835. }
  836. .fa-exchange:before {
  837.   content: "\f0ec";
  838. }
  839. .fa-cloud-download:before {
  840.   content: "\f0ed";
  841. }
  842. .fa-cloud-upload:before {
  843.   content: "\f0ee";
  844. }
  845. .fa-user-md:before {
  846.   content: "\f0f0";
  847. }
  848. .fa-stethoscope:before {
  849.   content: "\f0f1";
  850. }
  851. .fa-suitcase:before {
  852.   content: "\f0f2";
  853. }
  854. .fa-bell-o:before {
  855.   content: "\f0a2";
  856. }
  857. .fa-coffee:before {
  858.   content: "\f0f4";
  859. }
  860. .fa-cutlery:before {
  861.   content: "\f0f5";
  862. }
  863. .fa-file-text-o:before {
  864.   content: "\f0f6";
  865. }
  866. .fa-building-o:before {
  867.   content: "\f0f7";
  868. }
  869. .fa-hospital-o:before {
  870.   content: "\f0f8";
  871. }
  872. .fa-ambulance:before {
  873.   content: "\f0f9";
  874. }
  875. .fa-medkit:before {
  876.   content: "\f0fa";
  877. }
  878. .fa-fighter-jet:before {
  879.   content: "\f0fb";
  880. }
  881. .fa-beer:before {
  882.   content: "\f0fc";
  883. }
  884. .fa-h-square:before {
  885.   content: "\f0fd";
  886. }
  887. .fa-plus-square:before {
  888.   content: "\f0fe";
  889. }
  890. .fa-angle-double-left:before {
  891.   content: "\f100";
  892. }
  893. .fa-angle-double-right:before {
  894.   content: "\f101";
  895. }
  896. .fa-angle-double-up:before {
  897.   content: "\f102";
  898. }
  899. .fa-angle-double-down:before {
  900.   content: "\f103";
  901. }
  902. .fa-angle-left:before {
  903.   content: "\f104";
  904. }
  905. .fa-angle-right:before {
  906.   content: "\f105";
  907. }
  908. .fa-angle-up:before {
  909.   content: "\f106";
  910. }
  911. .fa-angle-down:before {
  912.   content: "\f107";
  913. }
  914. .fa-desktop:before {
  915.   content: "\f108";
  916. }
  917. .fa-laptop:before {
  918.   content: "\f109";
  919. }
  920. .fa-tablet:before {
  921.   content: "\f10a";
  922. }
  923. .fa-mobile-phone:before,
  924. .fa-mobile:before {
  925.   content: "\f10b";
  926. }
  927. .fa-circle-o:before {
  928.   content: "\f10c";
  929. }
  930. .fa-quote-left:before {
  931.   content: "\f10d";
  932. }
  933. .fa-quote-right:before {
  934.   content: "\f10e";
  935. }
  936. .fa-spinner:before {
  937.   content: "\f110";
  938. }
  939. .fa-circle:before {
  940.   content: "\f111";
  941. }
  942. .fa-mail-reply:before,
  943. .fa-reply:before {
  944.   content: "\f112";
  945. }
  946. .fa-github-alt:before {
  947.   content: "\f113";
  948. }
  949. .fa-folder-o:before {
  950.   content: "\f114";
  951. }
  952. .fa-folder-open-o:before {
  953.   content: "\f115";
  954. }
  955. .fa-smile-o:before {
  956.   content: "\f118";
  957. }
  958. .fa-frown-o:before {
  959.   content: "\f119";
  960. }
  961. .fa-meh-o:before {
  962.   content: "\f11a";
  963. }
  964. .fa-gamepad:before {
  965.   content: "\f11b";
  966. }
  967. .fa-keyboard-o:before {
  968.   content: "\f11c";
  969. }
  970. .fa-flag-o:before {
  971.   content: "\f11d";
  972. }
  973. .fa-flag-checkered:before {
  974.   content: "\f11e";
  975. }
  976. .fa-terminal:before {
  977.   content: "\f120";
  978. }
  979. .fa-code:before {
  980.   content: "\f121";
  981. }
  982. .fa-mail-reply-all:before,
  983. .fa-reply-all:before {
  984.   content: "\f122";
  985. }
  986. .fa-star-half-empty:before,
  987. .fa-star-half-full:before,
  988. .fa-star-half-o:before {
  989.   content: "\f123";
  990. }
  991. .fa-location-arrow:before {
  992.   content: "\f124";
  993. }
  994. .fa-crop:before {
  995.   content: "\f125";
  996. }
  997. .fa-code-fork:before {
  998.   content: "\f126";
  999. }
  1000. .fa-unlink:before,
  1001. .fa-chain-broken:before {
  1002.   content: "\f127";
  1003. }
  1004. .fa-question:before {
  1005.   content: "\f128";
  1006. }
  1007. .fa-info:before {
  1008.   content: "\f129";
  1009. }
  1010. .fa-exclamation:before {
  1011.   content: "\f12a";
  1012. }
  1013. .fa-superscript:before {
  1014.   content: "\f12b";
  1015. }
  1016. .fa-subscript:before {
  1017.   content: "\f12c";
  1018. }
  1019. .fa-eraser:before {
  1020.   content: "\f12d";
  1021. }
  1022. .fa-puzzle-piece:before {
  1023.   content: "\f12e";
  1024. }
  1025. .fa-microphone:before {
  1026.   content: "\f130";
  1027. }
  1028. .fa-microphone-slash:before {
  1029.   content: "\f131";
  1030. }
  1031. .fa-shield:before {
  1032.   content: "\f132";
  1033. }
  1034. .fa-calendar-o:before {
  1035.   content: "\f133";
  1036. }
  1037. .fa-fire-extinguisher:before {
  1038.   content: "\f134";
  1039. }
  1040. .fa-rocket:before {
  1041.   content: "\f135";
  1042. }
  1043. .fa-maxcdn:before {
  1044.   content: "\f136";
  1045. }
  1046. .fa-chevron-circle-left:before {
  1047.   content: "\f137";
  1048. }
  1049. .fa-chevron-circle-right:before {
  1050.   content: "\f138";
  1051. }
  1052. .fa-chevron-circle-up:before {
  1053.   content: "\f139";
  1054. }
  1055. .fa-chevron-circle-down:before {
  1056.   content: "\f13a";
  1057. }
  1058. .fa-html5:before {
  1059.   content: "\f13b";
  1060. }
  1061. .fa-css3:before {
  1062.   content: "\f13c";
  1063. }
  1064. .fa-anchor:before {
  1065.   content: "\f13d";
  1066. }
  1067. .fa-unlock-alt:before {
  1068.   content: "\f13e";
  1069. }
  1070. .fa-bullseye:before {
  1071.   content: "\f140";
  1072. }
  1073. .fa-ellipsis-h:before {
  1074.   content: "\f141";
  1075. }
  1076. .fa-ellipsis-v:before {
  1077.   content: "\f142";
  1078. }
  1079. .fa-rss-square:before {
  1080.   content: "\f143";
  1081. }
  1082. .fa-play-circle:before {
  1083.   content: "\f144";
  1084. }
  1085. .fa-ticket:before {
  1086.   content: "\f145";
  1087. }
  1088. .fa-minus-square:before {
  1089.   content: "\f146";
  1090. }
  1091. .fa-minus-square-o:before {
  1092.   content: "\f147";
  1093. }
  1094. .fa-level-up:before {
  1095.   content: "\f148";
  1096. }
  1097. .fa-level-down:before {
  1098.   content: "\f149";
  1099. }
  1100. .fa-check-square:before {
  1101.   content: "\f14a";
  1102. }
  1103. .fa-pencil-square:before {
  1104.   content: "\f14b";
  1105. }
  1106. .fa-external-link-square:before {
  1107.   content: "\f14c";
  1108. }
  1109. .fa-share-square:before {
  1110.   content: "\f14d";
  1111. }
  1112. .fa-compass:before {
  1113.   content: "\f14e";
  1114. }
  1115. .fa-toggle-down:before,
  1116. .fa-caret-square-o-down:before {
  1117.   content: "\f150";
  1118. }
  1119. .fa-toggle-up:before,
  1120. .fa-caret-square-o-up:before {
  1121.   content: "\f151";
  1122. }
  1123. .fa-toggle-right:before,
  1124. .fa-caret-square-o-right:before {
  1125.   content: "\f152";
  1126. }
  1127. .fa-euro:before,
  1128. .fa-eur:before {
  1129.   content: "\f153";
  1130. }
  1131. .fa-gbp:before {
  1132.   content: "\f154";
  1133. }
  1134. .fa-dollar:before,
  1135. .fa-usd:before {
  1136.   content: "\f155";
  1137. }
  1138. .fa-rupee:before,
  1139. .fa-inr:before {
  1140.   content: "\f156";
  1141. }
  1142. .fa-cny:before,
  1143. .fa-rmb:before,
  1144. .fa-yen:before,
  1145. .fa-jpy:before {
  1146.   content: "\f157";
  1147. }
  1148. .fa-ruble:before,
  1149. .fa-rouble:before,
  1150. .fa-rub:before {
  1151.   content: "\f158";
  1152. }
  1153. .fa-won:before,
  1154. .fa-krw:before {
  1155.   content: "\f159";
  1156. }
  1157. .fa-bitcoin:before,
  1158. .fa-btc:before {
  1159.   content: "\f15a";
  1160. }
  1161. .fa-file:before {
  1162.   content: "\f15b";
  1163. }
  1164. .fa-file-text:before {
  1165.   content: "\f15c";
  1166. }
  1167. .fa-sort-alpha-asc:before {
  1168.   content: "\f15d";
  1169. }
  1170. .fa-sort-alpha-desc:before {
  1171.   content: "\f15e";
  1172. }
  1173. .fa-sort-amount-asc:before {
  1174.   content: "\f160";
  1175. }
  1176. .fa-sort-amount-desc:before {
  1177.   content: "\f161";
  1178. }
  1179. .fa-sort-numeric-asc:before {
  1180.   content: "\f162";
  1181. }
  1182. .fa-sort-numeric-desc:before {
  1183.   content: "\f163";
  1184. }
  1185. .fa-thumbs-up:before {
  1186.   content: "\f164";
  1187. }
  1188. .fa-thumbs-down:before {
  1189.   content: "\f165";
  1190. }
  1191. .fa-youtube-square:before {
  1192.   content: "\f166";
  1193. }
  1194. .fa-youtube:before {
  1195.   content: "\f167";
  1196. }
  1197. .fa-xing:before {
  1198.   content: "\f168";
  1199. }
  1200. .fa-xing-square:before {
  1201.   content: "\f169";
  1202. }
  1203. .fa-youtube-play:before {
  1204.   content: "\f16a";
  1205. }
  1206. .fa-dropbox:before {
  1207.   content: "\f16b";
  1208. }
  1209. .fa-stack-overflow:before {
  1210.   content: "\f16c";
  1211. }
  1212. .fa-instagram:before {
  1213.   content: "\f16d";
  1214. }
  1215. .fa-flickr:before {
  1216.   content: "\f16e";
  1217. }
  1218. .fa-adn:before {
  1219.   content: "\f170";
  1220. }
  1221. .fa-bitbucket:before {
  1222.   content: "\f171";
  1223. }
  1224. .fa-bitbucket-square:before {
  1225.   content: "\f172";
  1226. }
  1227. .fa-tumblr:before {
  1228.   content: "\f173";
  1229. }
  1230. .fa-tumblr-square:before {
  1231.   content: "\f174";
  1232. }
  1233. .fa-long-arrow-down:before {
  1234.   content: "\f175";
  1235. }
  1236. .fa-long-arrow-up:before {
  1237.   content: "\f176";
  1238. }
  1239. .fa-long-arrow-left:before {
  1240.   content: "\f177";
  1241. }
  1242. .fa-long-arrow-right:before {
  1243.   content: "\f178";
  1244. }
  1245. .fa-apple:before {
  1246.   content: "\f179";
  1247. }
  1248. .fa-windows:before {
  1249.   content: "\f17a";
  1250. }
  1251. .fa-android:before {
  1252.   content: "\f17b";
  1253. }
  1254. .fa-linux:before {
  1255.   content: "\f17c";
  1256. }
  1257. .fa-dribbble:before {
  1258.   content: "\f17d";
  1259. }
  1260. .fa-skype:before {
  1261.   content: "\f17e";
  1262. }
  1263. .fa-foursquare:before {
  1264.   content: "\f180";
  1265. }
  1266. .fa-trello:before {
  1267.   content: "\f181";
  1268. }
  1269. .fa-female:before {
  1270.   content: "\f182";
  1271. }
  1272. .fa-male:before {
  1273.   content: "\f183";
  1274. }
  1275. .fa-gittip:before {
  1276.   content: "\f184";
  1277. }
  1278. .fa-sun-o:before {
  1279.   content: "\f185";
  1280. }
  1281. .fa-moon-o:before {
  1282.   content: "\f186";
  1283. }
  1284. .fa-archive:before {
  1285.   content: "\f187";
  1286. }
  1287. .fa-bug:before {
  1288.   content: "\f188";
  1289. }
  1290. .fa-vk:before {
  1291.   content: "\f189";
  1292. }
  1293. .fa-weibo:before {
  1294.   content: "\f18a";
  1295. }
  1296. .fa-renren:before {
  1297.   content: "\f18b";
  1298. }
  1299. .fa-pagelines:before {
  1300.   content: "\f18c";
  1301. }
  1302. .fa-stack-exchange:before {
  1303.   content: "\f18d";
  1304. }
  1305. .fa-arrow-circle-o-right:before {
  1306.   content: "\f18e";
  1307. }
  1308. .fa-arrow-circle-o-left:before {
  1309.   content: "\f190";
  1310. }
  1311. .fa-toggle-left:before,
  1312. .fa-caret-square-o-left:before {
  1313.   content: "\f191";
  1314. }
  1315. .fa-dot-circle-o:before {
  1316.   content: "\f192";
  1317. }
  1318. .fa-wheelchair:before {
  1319.   content: "\f193";
  1320. }
  1321. .fa-vimeo-square:before {
  1322.   content: "\f194";
  1323. }
  1324. .fa-turkish-lira:before,
  1325. .fa-try:before {
  1326.   content: "\f195";
  1327. }
  1328. .fa-plus-square-o:before {
  1329.   content: "\f196";
  1330. }
  1331. .fa-space-shuttle:before {
  1332.   content: "\f197";
  1333. }
  1334. .fa-slack:before {
  1335.   content: "\f198";
  1336. }
  1337. .fa-envelope-square:before {
  1338.   content: "\f199";
  1339. }
  1340. .fa-wordpress:before {
  1341.   content: "\f19a";
  1342. }
  1343. .fa-openid:before {
  1344.   content: "\f19b";
  1345. }
  1346. .fa-institution:before,
  1347. .fa-bank:before,
  1348. .fa-university:before {
  1349.   content: "\f19c";
  1350. }
  1351. .fa-mortar-board:before,
  1352. .fa-graduation-cap:before {
  1353.   content: "\f19d";
  1354. }
  1355. .fa-yahoo:before {
  1356.   content: "\f19e";
  1357. }
  1358. .fa-google:before {
  1359.   content: "\f1a0";
  1360. }
  1361. .fa-reddit:before {
  1362.   content: "\f1a1";
  1363. }
  1364. .fa-reddit-square:before {
  1365.   content: "\f1a2";
  1366. }
  1367. .fa-stumbleupon-circle:before {
  1368.   content: "\f1a3";
  1369. }
  1370. .fa-stumbleupon:before {
  1371.   content: "\f1a4";
  1372. }
  1373. .fa-delicious:before {
  1374.   content: "\f1a5";
  1375. }
  1376. .fa-digg:before {
  1377.   content: "\f1a6";
  1378. }
  1379. .fa-pied-piper:before {
  1380.   content: "\f1a7";
  1381. }
  1382. .fa-pied-piper-alt:before {
  1383.   content: "\f1a8";
  1384. }
  1385. .fa-drupal:before {
  1386.   content: "\f1a9";
  1387. }
  1388. .fa-joomla:before {
  1389.   content: "\f1aa";
  1390. }
  1391. .fa-language:before {
  1392.   content: "\f1ab";
  1393. }
  1394. .fa-fax:before {
  1395.   content: "\f1ac";
  1396. }
  1397. .fa-building:before {
  1398.   content: "\f1ad";
  1399. }
  1400. .fa-child:before {
  1401.   content: "\f1ae";
  1402. }
  1403. .fa-paw:before {
  1404.   content: "\f1b0";
  1405. }
  1406. .fa-spoon:before {
  1407.   content: "\f1b1";
  1408. }
  1409. .fa-cube:before {
  1410.   content: "\f1b2";
  1411. }
  1412. .fa-cubes:before {
  1413.   content: "\f1b3";
  1414. }
  1415. .fa-behance:before {
  1416.   content: "\f1b4";
  1417. }
  1418. .fa-behance-square:before {
  1419.   content: "\f1b5";
  1420. }
  1421. .fa-steam:before {
  1422.   content: "\f1b6";
  1423. }
  1424. .fa-steam-square:before {
  1425.   content: "\f1b7";
  1426. }
  1427. .fa-recycle:before {
  1428.   content: "\f1b8";
  1429. }
  1430. .fa-automobile:before,
  1431. .fa-car:before {
  1432.   content: "\f1b9";
  1433. }
  1434. .fa-cab:before,
  1435. .fa-taxi:before {
  1436.   content: "\f1ba";
  1437. }
  1438. .fa-tree:before {
  1439.   content: "\f1bb";
  1440. }
  1441. .fa-spotify:before {
  1442.   content: "\f1bc";
  1443. }
  1444. .fa-deviantart:before {
  1445.   content: "\f1bd";
  1446. }
  1447. .fa-soundcloud:before {
  1448.   content: "\f1be";
  1449. }
  1450. .fa-database:before {
  1451.   content: "\f1c0";
  1452. }
  1453. .fa-file-pdf-o:before {
  1454.   content: "\f1c1";
  1455. }
  1456. .fa-file-word-o:before {
  1457.   content: "\f1c2";
  1458. }
  1459. .fa-file-excel-o:before {
  1460.   content: "\f1c3";
  1461. }
  1462. .fa-file-powerpoint-o:before {
  1463.   content: "\f1c4";
  1464. }
  1465. .fa-file-photo-o:before,
  1466. .fa-file-picture-o:before,
  1467. .fa-file-image-o:before {
  1468.   content: "\f1c5";
  1469. }
  1470. .fa-file-zip-o:before,
  1471. .fa-file-archive-o:before {
  1472.   content: "\f1c6";
  1473. }
  1474. .fa-file-sound-o:before,
  1475. .fa-file-audio-o:before {
  1476.   content: "\f1c7";
  1477. }
  1478. .fa-file-movie-o:before,
  1479. .fa-file-video-o:before {
  1480.   content: "\f1c8";
  1481. }
  1482. .fa-file-code-o:before {
  1483.   content: "\f1c9";
  1484. }
  1485. .fa-vine:before {
  1486.   content: "\f1ca";
  1487. }
  1488. .fa-codepen:before {
  1489.   content: "\f1cb";
  1490. }
  1491. .fa-jsfiddle:before {
  1492.   content: "\f1cc";
  1493. }
  1494. .fa-life-bouy:before,
  1495. .fa-life-buoy:before,
  1496. .fa-life-saver:before,
  1497. .fa-support:before,
  1498. .fa-life-ring:before {
  1499.   content: "\f1cd";
  1500. }
  1501. .fa-circle-o-notch:before {
  1502.   content: "\f1ce";
  1503. }
  1504. .fa-ra:before,
  1505. .fa-rebel:before {
  1506.   content: "\f1d0";
  1507. }
  1508. .fa-ge:before,
  1509. .fa-empire:before {
  1510.   content: "\f1d1";
  1511. }
  1512. .fa-git-square:before {
  1513.   content: "\f1d2";
  1514. }
  1515. .fa-git:before {
  1516.   content: "\f1d3";
  1517. }
  1518. .fa-hacker-news:before {
  1519.   content: "\f1d4";
  1520. }
  1521. .fa-tencent-weibo:before {
  1522.   content: "\f1d5";
  1523. }
  1524. .fa-qq:before {
  1525.   content: "\f1d6";
  1526. }
  1527. .fa-wechat:before,
  1528. .fa-weixin:before {
  1529.   content: "\f1d7";
  1530. }
  1531. .fa-send:before,
  1532. .fa-paper-plane:before {
  1533.   content: "\f1d8";
  1534. }
  1535. .fa-send-o:before,
  1536. .fa-paper-plane-o:before {
  1537.   content: "\f1d9";
  1538. }
  1539. .fa-history:before {
  1540.   content: "\f1da";
  1541. }
  1542. .fa-circle-thin:before {
  1543.   content: "\f1db";
  1544. }
  1545. .fa-header:before {
  1546.   content: "\f1dc";
  1547. }
  1548. .fa-paragraph:before {
  1549.   content: "\f1dd";
  1550. }
  1551. .fa-sliders:before {
  1552.   content: "\f1de";
  1553. }
  1554. .fa-share-alt:before {
  1555.   content: "\f1e0";
  1556. }
  1557. .fa-share-alt-square:before {
  1558.   content: "\f1e1";
  1559. }
  1560. .fa-bomb:before {
  1561.   content: "\f1e2";
  1562. }
  1563. .fa-soccer-ball-o:before,
  1564. .fa-futbol-o:before {
  1565.   content: "\f1e3";
  1566. }
  1567. .fa-tty:before {
  1568.   content: "\f1e4";
  1569. }
  1570. .fa-binoculars:before {
  1571.   content: "\f1e5";
  1572. }
  1573. .fa-plug:before {
  1574.   content: "\f1e6";
  1575. }
  1576. .fa-slideshare:before {
  1577.   content: "\f1e7";
  1578. }
  1579. .fa-twitch:before {
  1580.   content: "\f1e8";
  1581. }
  1582. .fa-yelp:before {
  1583.   content: "\f1e9";
  1584. }
  1585. .fa-newspaper-o:before {
  1586.   content: "\f1ea";
  1587. }
  1588. .fa-wifi:before {
  1589.   content: "\f1eb";
  1590. }
  1591. .fa-calculator:before {
  1592.   content: "\f1ec";
  1593. }
  1594. .fa-paypal:before {
  1595.   content: "\f1ed";
  1596. }
  1597. .fa-google-wallet:before {
  1598.   content: "\f1ee";
  1599. }
  1600. .fa-cc-visa:before {
  1601.   content: "\f1f0";
  1602. }
  1603. .fa-cc-mastercard:before {
  1604.   content: "\f1f1";
  1605. }
  1606. .fa-cc-discover:before {
  1607.   content: "\f1f2";
  1608. }
  1609. .fa-cc-amex:before {
  1610.   content: "\f1f3";
  1611. }
  1612. .fa-cc-paypal:before {
  1613.   content: "\f1f4";
  1614. }
  1615. .fa-cc-stripe:before {
  1616.   content: "\f1f5";
  1617. }
  1618. .fa-bell-slash:before {
  1619.   content: "\f1f6";
  1620. }
  1621. .fa-bell-slash-o:before {
  1622.   content: "\f1f7";
  1623. }
  1624. .fa-trash:before {
  1625.   content: "\f1f8";
  1626. }
  1627. .fa-copyright:before {
  1628.   content: "\f1f9";
  1629. }
  1630. .fa-at:before {
  1631.   content: "\f1fa";
  1632. }
  1633. .fa-eyedropper:before {
  1634.   content: "\f1fb";
  1635. }
  1636. .fa-paint-brush:before {
  1637.   content: "\f1fc";
  1638. }
  1639. .fa-birthday-cake:before {
  1640.   content: "\f1fd";
  1641. }
  1642. .fa-area-chart:before {
  1643.   content: "\f1fe";
  1644. }
  1645. .fa-pie-chart:before {
  1646.   content: "\f200";
  1647. }
  1648. .fa-line-chart:before {
  1649.   content: "\f201";
  1650. }
  1651. .fa-lastfm:before {
  1652.   content: "\f202";
  1653. }
  1654. .fa-lastfm-square:before {
  1655.   content: "\f203";
  1656. }
  1657. .fa-toggle-off:before {
  1658.   content: "\f204";
  1659. }
  1660. .fa-toggle-on:before {
  1661.   content: "\f205";
  1662. }
  1663. .fa-bicycle:before {
  1664.   content: "\f206";
  1665. }
  1666. .fa-bus:before {
  1667.   content: "\f207";
  1668. }
  1669. .fa-ioxhost:before {
  1670.   content: "\f208";
  1671. }
  1672. .fa-angellist:before {
  1673.   content: "\f209";
  1674. }
  1675. .fa-cc:before {
  1676.   content: "\f20a";
  1677. }
  1678. .fa-shekel:before,
  1679. .fa-sheqel:before,
  1680. .fa-ils:before {
  1681.   content: "\f20b";
  1682. }
  1683. .fa-meanpath:before {
  1684.   content: "\f20c";
  1685. }
  1686.  
  1687. /*
  1688.  * metismenu - v1.1.3
  1689.  * Easy menu jQuery plugin for Twitter Bootstrap 3
  1690.  * https://github.com/onokumus/metisMenu
  1691.  *
  1692.  * Made by Osman Nuri Okumus
  1693.  * Under MIT License
  1694.  */
  1695. .arrow {
  1696.     float: right;
  1697.     line-height: 1.42857;
  1698. }
  1699.  
  1700. .glyphicon.arrow:before {
  1701.     content: "\e079";
  1702. }
  1703.  
  1704. .active > a > .glyphicon.arrow:before {
  1705.     content: "\e114";
  1706. }
  1707.  
  1708.  
  1709. /*
  1710.  * Require Font-Awesome
  1711.  * http://fortawesome.github.io/Font-Awesome/
  1712. */
  1713.  
  1714.  
  1715. .fa.arrow:before {
  1716.     content: "\f104";
  1717. }
  1718.  
  1719. .active > a > .fa.arrow:before {
  1720.     content: "\f107";
  1721. }
  1722.  
  1723. .plus-times {
  1724.     float: right;
  1725. }
  1726.  
  1727. .fa.plus-times:before {
  1728.     content: "\f067";
  1729. }
  1730.  
  1731. .active > a > .fa.plus-times {
  1732.     filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  1733.     -webkit-transform: rotate(45deg);
  1734.     -moz-transform: rotate(45deg);
  1735.     -ms-transform: rotate(45deg);
  1736.     -o-transform: rotate(45deg);
  1737.     transform: rotate(45deg);
  1738. }
  1739.  
  1740. .plus-minus {
  1741.     float: right;
  1742. }
  1743.  
  1744. .fa.plus-minus:before {
  1745.     content: "\f067";
  1746. }
  1747.  
  1748. .active > a > .fa.plus-minus:before {
  1749.     content: "\f068";
  1750. }
  1751. /*!
  1752.  * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com)
  1753.  * Code licensed under the Apache License v2.0.
  1754.  * For details, see http://www.apache.org/licenses/LICENSE-2.0.
  1755.  */
  1756.  
  1757. body {
  1758.     background-color: #f8f8f8;
  1759. }
  1760.  
  1761. #wrapper {
  1762.     width: 100%;
  1763. }
  1764.  
  1765. #page-wrapper {
  1766.     padding: 0 15px;
  1767.     min-height: 568px;
  1768.     background-color: #fff;
  1769. }
  1770.  
  1771. @media(min-width:768px) {
  1772.     #page-wrapper {
  1773.         position: inherit;
  1774.         margin: 0 0 0 250px;
  1775.         padding: 0 30px;
  1776.         border-left: 1px solid #e7e7e7;
  1777.     }
  1778. }
  1779.  
  1780. .navbar-top-links {
  1781.     margin-right: 0;
  1782. }
  1783.  
  1784. .navbar-top-links li {
  1785.     display: inline-block;
  1786. }
  1787.  
  1788. .navbar-top-links li:last-child {
  1789.     margin-right: 15px;
  1790. }
  1791.  
  1792. .navbar-top-links li a {
  1793.     padding: 15px;
  1794.     min-height: 50px;
  1795. }
  1796.  
  1797. .navbar-top-links .dropdown-menu li {
  1798.     display: block;
  1799. }
  1800.  
  1801. .navbar-top-links .dropdown-menu li:last-child {
  1802.     margin-right: 0;
  1803. }
  1804.  
  1805. .navbar-top-links .dropdown-menu li a {
  1806.     padding: 3px 20px;
  1807.     min-height: 0;
  1808. }
  1809.  
  1810. .navbar-top-links .dropdown-menu li a div {
  1811.     white-space: normal;
  1812. }
  1813.  
  1814. .navbar-top-links .dropdown-messages,
  1815. .navbar-top-links .dropdown-tasks,
  1816. .navbar-top-links .dropdown-alerts {
  1817.     width: 310px;
  1818.     min-width: 0;
  1819. }
  1820.  
  1821. .navbar-top-links .dropdown-messages {
  1822.     margin-left: 5px;
  1823. }
  1824.  
  1825. .navbar-top-links .dropdown-tasks {
  1826.     margin-left: -59px;
  1827. }
  1828.  
  1829. .navbar-top-links .dropdown-alerts {
  1830.     margin-left: -123px;
  1831. }
  1832.  
  1833. .navbar-top-links .dropdown-user {
  1834.     right: 0;
  1835.     left: auto;
  1836. }
  1837.  
  1838. .sidebar .sidebar-nav.navbar-collapse {
  1839.     padding-right: 0;
  1840.     padding-left: 0;
  1841. }
  1842.  
  1843. .sidebar .sidebar-search {
  1844.     padding: 15px;
  1845. }
  1846.  
  1847. .sidebar ul li {
  1848.     border-bottom: 1px solid #e7e7e7;
  1849. }
  1850.  
  1851. .sidebar ul li a.active {
  1852.     background-color: #eee;
  1853. }
  1854.  
  1855. .sidebar .arrow {
  1856.     float: right;
  1857. }
  1858.  
  1859. .sidebar .fa.arrow:before {
  1860.     content: "\f104";
  1861. }
  1862.  
  1863. .sidebar .active>a>.fa.arrow:before {
  1864.     content: "\f107";
  1865. }
  1866.  
  1867. .sidebar .nav-second-level li,
  1868. .sidebar .nav-third-level li {
  1869.     border-bottom: 0!important;
  1870. }
  1871.  
  1872. .sidebar .nav-second-level li a {
  1873.     padding-left: 37px;
  1874. }
  1875.  
  1876. .sidebar .nav-third-level li a {
  1877.     padding-left: 52px;
  1878. }
  1879.  
  1880. @media(min-width:768px) {
  1881.     .sidebar {
  1882.         z-index: 1;
  1883.         position: absolute;
  1884.         width: 250px;
  1885.         margin-top: 51px;
  1886.     }
  1887.  
  1888.     .navbar-top-links .dropdown-messages,
  1889.     .navbar-top-links .dropdown-tasks,
  1890.     .navbar-top-links .dropdown-alerts {
  1891.         margin-left: auto;
  1892.     }
  1893. }
  1894.  
  1895. .btn-outline {
  1896.     color: inherit;
  1897.     background-color: transparent;
  1898.     transition: all .5s;
  1899. }
  1900.  
  1901. .btn-primary.btn-outline {
  1902.     color: #428bca;
  1903. }
  1904.  
  1905. .btn-success.btn-outline {
  1906.     color: #5cb85c;
  1907. }
  1908.  
  1909. .btn-info.btn-outline {
  1910.     color: #5bc0de;
  1911. }
  1912.  
  1913. .btn-warning.btn-outline {
  1914.     color: #f0ad4e;
  1915. }
  1916.  
  1917. .btn-danger.btn-outline {
  1918.     color: #d9534f;
  1919. }
  1920.  
  1921. .btn-primary.btn-outline:hover,
  1922. .btn-success.btn-outline:hover,
  1923. .btn-info.btn-outline:hover,
  1924. .btn-warning.btn-outline:hover,
  1925. .btn-danger.btn-outline:hover {
  1926.     color: #fff;
  1927. }
  1928.  
  1929. .chat {
  1930.     margin: 0;
  1931.     padding: 0;
  1932.     list-style: none;
  1933. }
  1934.  
  1935. .chat li {
  1936.     margin-bottom: 10px;
  1937.     padding-bottom: 5px;
  1938.     border-bottom: 1px dotted #999;
  1939. }
  1940.  
  1941. .chat li.left .chat-body {
  1942.     margin-left: 60px;
  1943. }
  1944.  
  1945. .chat li.right .chat-body {
  1946.     margin-right: 60px;
  1947. }
  1948.  
  1949. .chat li .chat-body p {
  1950.     margin: 0;
  1951. }
  1952.  
  1953. .panel .slidedown .glyphicon,
  1954. .chat .glyphicon {
  1955.     margin-right: 5px;
  1956. }
  1957.  
  1958. .chat-panel .panel-body {
  1959.     height: 350px;
  1960.     overflow-y: scroll;
  1961. }
  1962.  
  1963. .login-panel {
  1964.     margin-top: 25%;
  1965. }
  1966.  
  1967. .flot-chart {
  1968.     display: block;
  1969.     height: 400px;
  1970. }
  1971.  
  1972. .flot-chart-content {
  1973.     width: 100%;
  1974.     height: 100%;
  1975. }
  1976.  
  1977. .dataTables_wrapper {
  1978.     position: relative;
  1979.     clear: both;
  1980. }
  1981.  
  1982. table.dataTable thead .sorting,
  1983. table.dataTable thead .sorting_asc,
  1984. table.dataTable thead .sorting_desc,
  1985. table.dataTable thead .sorting_asc_disabled,
  1986. table.dataTable thead .sorting_desc_disabled {
  1987.     background: 0 0;
  1988. }
  1989.  
  1990. table.dataTable thead .sorting_asc:after {
  1991.     content: "\f0de";
  1992.     float: right;
  1993.     font-family: fontawesome;
  1994. }
  1995.  
  1996. table.dataTable thead .sorting_desc:after {
  1997.     content: "\f0dd";
  1998.     float: right;
  1999.     font-family: fontawesome;
  2000. }
  2001.  
  2002. table.dataTable thead .sorting:after {
  2003.     content: "\f0dc";
  2004.     float: right;
  2005.     font-family: fontawesome;
  2006.     color: rgba(50,50,50,.5);
  2007. }
  2008.  
  2009. .btn-circle {
  2010.     width: 30px;
  2011.     height: 30px;
  2012.     padding: 6px 0;
  2013.     border-radius: 15px;
  2014.     text-align: center;
  2015.     font-size: 12px;
  2016.     line-height: 1.428571429;
  2017. }
  2018.  
  2019. .btn-circle.btn-lg {
  2020.     width: 50px;
  2021.     height: 50px;
  2022.     padding: 10px 16px;
  2023.     border-radius: 25px;
  2024.     font-size: 18px;
  2025.     line-height: 1.33;
  2026. }
  2027.  
  2028. .btn-circle.btn-xl {
  2029.     width: 70px;
  2030.     height: 70px;
  2031.     padding: 10px 16px;
  2032.     border-radius: 35px;
  2033.     font-size: 24px;
  2034.     line-height: 1.33;
  2035. }
  2036.  
  2037. .show-grid [class^=col-] {
  2038.     padding-top: 10px;
  2039.     padding-bottom: 10px;
  2040.     border: 1px solid #ddd;
  2041.     background-color: #eee!important;
  2042. }
  2043.  
  2044. .show-grid {
  2045.     margin: 15px 0;
  2046. }
  2047.  
  2048. .huge {
  2049.     font-size: 40px;
  2050. }
  2051.  
  2052. .panel-green {
  2053.     border-color: #5cb85c;
  2054. }
  2055.  
  2056. .panel-green .panel-heading {
  2057.     border-color: #5cb85c;
  2058.     color: #fff;
  2059.     background-color: #5cb85c;
  2060. }
  2061.  
  2062. .panel-green a {
  2063.     color: #5cb85c;
  2064. }
  2065.  
  2066. .panel-green a:hover {
  2067.     color: #3d8b3d;
  2068. }
  2069.  
  2070. .panel-red {
  2071.     border-color: #d9534f;
  2072. }
  2073.  
  2074. .panel-red .panel-heading {
  2075.     border-color: #d9534f;
  2076.     color: #fff;
  2077.     background-color: #d9534f;
  2078. }
  2079.  
  2080. .panel-red a {
  2081.     color: #d9534f;
  2082. }
  2083.  
  2084. .panel-red a:hover {
  2085.     color: #b52b27;
  2086. }
  2087.  
  2088. .panel-yellow {
  2089.     border-color: #f0ad4e;
  2090. }
  2091.  
  2092. .panel-yellow .panel-heading {
  2093.     border-color: #f0ad4e;
  2094.     color: #fff;
  2095.     background-color: #f0ad4e;
  2096. }
  2097.  
  2098. .panel-yellow a {
  2099.     color: #f0ad4e;
  2100. }
  2101.  
  2102. .panel-yellow a:hover {
  2103.     color: #df8a13;
  2104. }
  2105.  
  2106.  
  2107.  
  2108. /****************User Profile  *********************/
  2109. .user-row {
  2110.     margin-bottom: 14px;
  2111. }
  2112.  
  2113. .user-row:last-child {
  2114.     margin-bottom: 0;
  2115. }
  2116.  
  2117. .dropdown-user {
  2118.     margin: 13px 0;
  2119.     padding: 5px;
  2120.     height: 100%;
  2121. }
  2122.  
  2123. .dropdown-user:hover {
  2124.     cursor: pointer;
  2125. }
  2126.  
  2127. .table-user-information > tbody > tr {
  2128.     border-top: 1px solid rgb(221, 221, 221);
  2129. }
  2130.  
  2131. .table-user-information > tbody > tr:first-child {
  2132.     border-top: 0;
  2133. }
  2134.  
  2135.  
  2136. .table-user-information > tbody > tr > td {
  2137.     border-top: 0;
  2138. }
  2139. .toppad
  2140. {margin-top:20px;
  2141. }
  2142.  
  2143. /*# sourceMappingURL=libs.css.map */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement