Guest User

style

a guest
Aug 26th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 197.95 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=PT+Sans&subset=latin,latin-ext);@import url(http://fonts.googleapis.com/css?family=Pacifico);@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,800,300,800italic,300italic&subset=latin,latin-ext);@font-face {
  2. font-family: 'Neo Sans Pro';
  3. src: url('/Content/fonts/NeoSansPro-Regular.eot');
  4. src: url('/Content/fonts/NeoSansPro-Regular.eot?#iefix') format('embedded-opentype'),url('/Content/fonts/NeoSansPro-Regular.woff') format('woff'),url('/Content/fonts/NeoSansPro-Regular.ttf') format('truetype'),url('/Content/fonts/NeoSansPro-Regular.svg#neosansregular') format('svg');
  5. font-weight: 300;
  6. font-style: normal
  7. }
  8.  
  9. @font-face {
  10. font-family: 'Neo Sans Pro';
  11. src: url('/Content/fonts/NeoSansPro-Light.eot');
  12. src: url('/Content/fonts/NeoSansPro-Light.eot?#iefix') format('embedded-opentype'),url('/Content/fonts/NeoSansPro-Light.woff') format('woff'),url('/Content/fonts/NeoSansPro-Light.ttf') format('truetype'),url('/Content/fonts/NeoSansPro-Light.svg#neosansregular') format('svg');
  13. font-weight: 200;
  14. font-style: normal
  15. }
  16.  
  17. @font-face {
  18. font-family: 'Neo Sans Pro';
  19. src: url('/Content/fonts/NeoSansPro-Medium.eot');
  20. src: url('/Content/fonts/NeoSansPro-Medium.eot?#iefix') format('embedded-opentype'),url('/Content/fonts/NeoSansPro-Medium.woff') format('woff'),url('/Content/fonts/NeoSansPro-Medium.ttf') format('truetype'),url('/Content/fonts/NeoSansPro-Medium.svg#neosansregular') format('svg');
  21. font-weight: 400;
  22. font-style: normal
  23. }
  24.  
  25. @font-face {
  26. font-family: 'FontAwesome';
  27. src: url('/Content/fonts/fontawesome-webfont.eot?v=4.1.0');
  28. src: url('/Content/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('/Content/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('/Content/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('/Content/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
  29. font-weight: normal;
  30. font-style: normal
  31. }
  32.  
  33. .fa {
  34. display: inline-block;
  35. font-family: FontAwesome;
  36. font-style: normal;
  37. font-weight: normal;
  38. line-height: 1;
  39. -webkit-font-smoothing: antialiased;
  40. -moz-osx-font-smoothing: grayscale
  41. }
  42.  
  43. .fa-lg {
  44. font-size: 1.33333333em;
  45. line-height: .75em;
  46. vertical-align: -15%
  47. }
  48.  
  49. .fa-2x {
  50. font-size: 2em
  51. }
  52.  
  53. .fa-3x {
  54. font-size: 3em
  55. }
  56.  
  57. .fa-4x {
  58. font-size: 4em
  59. }
  60.  
  61. .fa-5x {
  62. font-size: 5em
  63. }
  64.  
  65. .fa-fw {
  66. width: 1.28571429em;
  67. text-align: center
  68. }
  69.  
  70. .fa-ul {
  71. padding-left: 0;
  72. margin-left: 2.14285714em;
  73. list-style-type: none
  74. }
  75.  
  76. .fa-ul>li {
  77. position: relative
  78. }
  79.  
  80. .fa-li {
  81. position: absolute;
  82. left: -2.14285714em;
  83. width: 2.14285714em;
  84. top: .14285714em;
  85. text-align: center
  86. }
  87.  
  88. .fa-li.fa-lg {
  89. left: -1.85714286em
  90. }
  91.  
  92. .fa-border {
  93. padding: .2em .25em .15em;
  94. border: solid .08em #eee;
  95. border-radius: .1em
  96. }
  97.  
  98. .pull-right {
  99. float: right
  100. }
  101.  
  102. .pull-left {
  103. float: left
  104. }
  105.  
  106. .fa.pull-left {
  107. margin-right: .3em
  108. }
  109.  
  110. .fa.pull-right {
  111. margin-left: .3em
  112. }
  113.  
  114. .fa-spin {
  115. -webkit-animation: spin 2s infinite linear;
  116. -moz-animation: spin 2s infinite linear;
  117. -o-animation: spin 2s infinite linear;
  118. animation: spin 2s infinite linear
  119. }
  120.  
  121. @-moz-keyframes spin {
  122. 0% {
  123. -moz-transform: rotate(0)
  124. }
  125.  
  126. 100% {
  127. -moz-transform: rotate(359deg)
  128. }
  129. }
  130.  
  131. @-webkit-keyframes spin {
  132. 0% {
  133. -webkit-transform: rotate(0)
  134. }
  135.  
  136. 100% {
  137. -webkit-transform: rotate(359deg)
  138. }
  139. }
  140.  
  141. @-o-keyframes spin {
  142. 0% {
  143. -o-transform: rotate(0);
  144. }
  145.  
  146. 100% {
  147. -o-transform: rotate(359deg);
  148. }
  149. }
  150.  
  151. @keyframes spin {
  152. 0% {
  153. -webkit-transform: rotate(0);
  154. transform: rotate(0)
  155. }
  156.  
  157. 100% {
  158. -webkit-transform: rotate(359deg);
  159. transform: rotate(359deg)
  160. }
  161. }
  162.  
  163. .fa-rotate-90 {
  164. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  165. -webkit-transform: rotate(90deg);
  166. -moz-transform: rotate(90deg);
  167. -ms-transform: rotate(90deg);
  168. -o-transform: rotate(90deg);
  169. transform: rotate(90deg)
  170. }
  171.  
  172. .fa-rotate-180 {
  173. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  174. -webkit-transform: rotate(180deg);
  175. -moz-transform: rotate(180deg);
  176. -ms-transform: rotate(180deg);
  177. -o-transform: rotate(180deg);
  178. transform: rotate(180deg)
  179. }
  180.  
  181. .fa-rotate-270 {
  182. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  183. -webkit-transform: rotate(270deg);
  184. -moz-transform: rotate(270deg);
  185. -ms-transform: rotate(270deg);
  186. -o-transform: rotate(270deg);
  187. transform: rotate(270deg)
  188. }
  189.  
  190. .fa-flip-horizontal {
  191. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
  192. -webkit-transform: scale(-1,1);
  193. -moz-transform: scale(-1,1);
  194. -ms-transform: scale(-1,1);
  195. -o-transform: scale(-1,1);
  196. transform: scale(-1,1)
  197. }
  198.  
  199. .fa-flip-vertical {
  200. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);
  201. -webkit-transform: scale(1,-1);
  202. -moz-transform: scale(1,-1);
  203. -ms-transform: scale(1,-1);
  204. -o-transform: scale(1,-1);
  205. transform: scale(1,-1)
  206. }
  207.  
  208. .fa-stack {
  209. position: relative;
  210. display: inline-block;
  211. width: 2em;
  212. height: 2em;
  213. line-height: 2em;
  214. vertical-align: middle
  215. }
  216.  
  217. .fa-stack-1x,.fa-stack-2x {
  218. position: absolute;
  219. left: 0;
  220. width: 100%;
  221. text-align: center
  222. }
  223.  
  224. .fa-stack-1x {
  225. line-height: inherit
  226. }
  227.  
  228. .fa-stack-2x {
  229. font-size: 2em
  230. }
  231.  
  232. .fa-inverse {
  233. color: #fff
  234. }
  235.  
  236. .fa-glass:before {
  237. content: ""
  238. }
  239.  
  240. .fa-music:before {
  241. content: ""
  242. }
  243.  
  244. .fa-search:before {
  245. content: ""
  246. }
  247.  
  248. .fa-envelope-o:before {
  249. content: ""
  250. }
  251.  
  252. .fa-heart:before {
  253. content: ""
  254. }
  255.  
  256. .fa-star:before {
  257. content: ""
  258. }
  259.  
  260. .fa-star-o:before {
  261. content: ""
  262. }
  263.  
  264. .fa-user:before {
  265. content: ""
  266. }
  267.  
  268. .fa-film:before {
  269. content: ""
  270. }
  271.  
  272. .fa-th-large:before {
  273. content: ""
  274. }
  275.  
  276. .fa-th:before {
  277. content: ""
  278. }
  279.  
  280. .fa-th-list:before {
  281. content: ""
  282. }
  283.  
  284. .fa-check:before {
  285. content: ""
  286. }
  287.  
  288. .fa-times:before {
  289. content: ""
  290. }
  291.  
  292. .fa-search-plus:before {
  293. content: ""
  294. }
  295.  
  296. .fa-search-minus:before {
  297. content: ""
  298. }
  299.  
  300. .fa-power-off:before {
  301. content: ""
  302. }
  303.  
  304. .fa-signal:before {
  305. content: ""
  306. }
  307.  
  308. .fa-gear:before,.fa-cog:before {
  309. content: ""
  310. }
  311.  
  312. .fa-trash-o:before {
  313. content: ""
  314. }
  315.  
  316. .fa-home:before {
  317. content: ""
  318. }
  319.  
  320. .fa-file-o:before {
  321. content: ""
  322. }
  323.  
  324. .fa-clock-o:before {
  325. content: ""
  326. }
  327.  
  328. .fa-road:before {
  329. content: ""
  330. }
  331.  
  332. .fa-download:before {
  333. content: ""
  334. }
  335.  
  336. .fa-arrow-circle-o-down:before {
  337. content: ""
  338. }
  339.  
  340. .fa-arrow-circle-o-up:before {
  341. content: ""
  342. }
  343.  
  344. .fa-inbox:before {
  345. content: ""
  346. }
  347.  
  348. .fa-play-circle-o:before {
  349. content: ""
  350. }
  351.  
  352. .fa-rotate-right:before,.fa-repeat:before {
  353. content: ""
  354. }
  355.  
  356. .fa-refresh:before {
  357. content: ""
  358. }
  359.  
  360. .fa-list-alt:before {
  361. content: ""
  362. }
  363.  
  364. .fa-lock:before {
  365. content: ""
  366. }
  367.  
  368. .fa-flag:before {
  369. content: ""
  370. }
  371.  
  372. .fa-headphones:before {
  373. content: ""
  374. }
  375.  
  376. .fa-volume-off:before {
  377. content: ""
  378. }
  379.  
  380. .fa-volume-down:before {
  381. content: ""
  382. }
  383.  
  384. .fa-volume-up:before {
  385. content: ""
  386. }
  387.  
  388. .fa-qrcode:before {
  389. content: ""
  390. }
  391.  
  392. .fa-barcode:before {
  393. content: ""
  394. }
  395.  
  396. .fa-tag:before {
  397. content: ""
  398. }
  399.  
  400. .fa-tags:before {
  401. content: ""
  402. }
  403.  
  404. .fa-book:before {
  405. content: ""
  406. }
  407.  
  408. .fa-bookmark:before {
  409. content: ""
  410. }
  411.  
  412. .fa-print:before {
  413. content: ""
  414. }
  415.  
  416. .fa-camera:before {
  417. content: ""
  418. }
  419.  
  420. .fa-font:before {
  421. content: ""
  422. }
  423.  
  424. .fa-bold:before {
  425. content: ""
  426. }
  427.  
  428. .fa-italic:before {
  429. content: ""
  430. }
  431.  
  432. .fa-text-height:before {
  433. content: ""
  434. }
  435.  
  436. .fa-text-width:before {
  437. content: ""
  438. }
  439.  
  440. .fa-align-left:before {
  441. content: ""
  442. }
  443.  
  444. .fa-align-center:before {
  445. content: ""
  446. }
  447.  
  448. .fa-align-right:before {
  449. content: ""
  450. }
  451.  
  452. .fa-align-justify:before {
  453. content: ""
  454. }
  455.  
  456. .fa-list:before {
  457. content: ""
  458. }
  459.  
  460. .fa-dedent:before,.fa-outdent:before {
  461. content: ""
  462. }
  463.  
  464. .fa-indent:before {
  465. content: ""
  466. }
  467.  
  468. .fa-video-camera:before {
  469. content: ""
  470. }
  471.  
  472. .fa-photo:before,.fa-image:before,.fa-picture-o:before {
  473. content: ""
  474. }
  475.  
  476. .fa-pencil:before {
  477. content: ""
  478. }
  479.  
  480. .fa-map-marker:before {
  481. content: ""
  482. }
  483.  
  484. .fa-adjust:before {
  485. content: ""
  486. }
  487.  
  488. .fa-tint:before {
  489. content: ""
  490. }
  491.  
  492. .fa-edit:before,.fa-pencil-square-o:before {
  493. content: ""
  494. }
  495.  
  496. .fa-share-square-o:before {
  497. content: ""
  498. }
  499.  
  500. .fa-check-square-o:before {
  501. content: ""
  502. }
  503.  
  504. .fa-arrows:before {
  505. content: ""
  506. }
  507.  
  508. .fa-step-backward:before {
  509. content: ""
  510. }
  511.  
  512. .fa-fast-backward:before {
  513. content: ""
  514. }
  515.  
  516. .fa-backward:before {
  517. content: ""
  518. }
  519.  
  520. .fa-play:before {
  521. content: ""
  522. }
  523.  
  524. .fa-pause:before {
  525. content: ""
  526. }
  527.  
  528. .fa-stop:before {
  529. content: ""
  530. }
  531.  
  532. .fa-forward:before {
  533. content: ""
  534. }
  535.  
  536. .fa-fast-forward:before {
  537. content: ""
  538. }
  539.  
  540. .fa-step-forward:before {
  541. content: ""
  542. }
  543.  
  544. .fa-eject:before {
  545. content: ""
  546. }
  547.  
  548. .fa-chevron-left:before {
  549. content: ""
  550. }
  551.  
  552. .fa-chevron-right:before {
  553. content: ""
  554. }
  555.  
  556. .fa-plus-circle:before {
  557. content: ""
  558. }
  559.  
  560. .fa-minus-circle:before {
  561. content: ""
  562. }
  563.  
  564. .fa-times-circle:before {
  565. content: ""
  566. }
  567.  
  568. .fa-check-circle:before {
  569. content: ""
  570. }
  571.  
  572. .fa-question-circle:before {
  573. content: ""
  574. }
  575.  
  576. .fa-info-circle:before {
  577. content: ""
  578. }
  579.  
  580. .fa-crosshairs:before {
  581. content: ""
  582. }
  583.  
  584. .fa-times-circle-o:before {
  585. content: ""
  586. }
  587.  
  588. .fa-check-circle-o:before {
  589. content: ""
  590. }
  591.  
  592. .fa-ban:before {
  593. content: ""
  594. }
  595.  
  596. .fa-arrow-left:before {
  597. content: ""
  598. }
  599.  
  600. .fa-arrow-right:before {
  601. content: ""
  602. }
  603.  
  604. .fa-arrow-up:before {
  605. content: ""
  606. }
  607.  
  608. .fa-arrow-down:before {
  609. content: ""
  610. }
  611.  
  612. .fa-mail-forward:before,.fa-share:before {
  613. content: ""
  614. }
  615.  
  616. .fa-expand:before {
  617. content: ""
  618. }
  619.  
  620. .fa-compress:before {
  621. content: ""
  622. }
  623.  
  624. .fa-plus:before {
  625. content: ""
  626. }
  627.  
  628. .fa-minus:before {
  629. content: ""
  630. }
  631.  
  632. .fa-asterisk:before {
  633. content: ""
  634. }
  635.  
  636. .fa-exclamation-circle:before {
  637. content: ""
  638. }
  639.  
  640. .fa-gift:before {
  641. content: ""
  642. }
  643.  
  644. .fa-leaf:before {
  645. content: ""
  646. }
  647.  
  648. .fa-fire:before {
  649. content: ""
  650. }
  651.  
  652. .fa-eye:before {
  653. content: ""
  654. }
  655.  
  656. .fa-eye-slash:before {
  657. content: ""
  658. }
  659.  
  660. .fa-warning:before,.fa-exclamation-triangle:before {
  661. content: ""
  662. }
  663.  
  664. .fa-plane:before {
  665. content: ""
  666. }
  667.  
  668. .fa-calendar:before {
  669. content: ""
  670. }
  671.  
  672. .fa-random:before {
  673. content: ""
  674. }
  675.  
  676. .fa-comment:before {
  677. content: ""
  678. }
  679.  
  680. .fa-magnet:before {
  681. content: ""
  682. }
  683.  
  684. .fa-chevron-up:before {
  685. content: ""
  686. }
  687.  
  688. .fa-chevron-down:before {
  689. content: ""
  690. }
  691.  
  692. .fa-retweet:before {
  693. content: ""
  694. }
  695.  
  696. .fa-shopping-cart:before {
  697. content: ""
  698. }
  699.  
  700. .fa-folder:before {
  701. content: ""
  702. }
  703.  
  704. .fa-folder-open:before {
  705. content: ""
  706. }
  707.  
  708. .fa-arrows-v:before {
  709. content: ""
  710. }
  711.  
  712. .fa-arrows-h:before {
  713. content: ""
  714. }
  715.  
  716. .fa-bar-chart-o:before {
  717. content: ""
  718. }
  719.  
  720. .fa-twitter-square:before {
  721. content: ""
  722. }
  723.  
  724. .fa-facebook-square:before {
  725. content: ""
  726. }
  727.  
  728. .fa-camera-retro:before {
  729. content: ""
  730. }
  731.  
  732. .fa-key:before {
  733. content: ""
  734. }
  735.  
  736. .fa-gears:before,.fa-cogs:before {
  737. content: ""
  738. }
  739.  
  740. .fa-comments:before {
  741. content: ""
  742. }
  743.  
  744. .fa-thumbs-o-up:before {
  745. content: ""
  746. }
  747.  
  748. .fa-thumbs-o-down:before {
  749. content: ""
  750. }
  751.  
  752. .fa-star-half:before {
  753. content: ""
  754. }
  755.  
  756. .fa-heart-o:before {
  757. content: ""
  758. }
  759.  
  760. .fa-sign-out:before {
  761. content: ""
  762. }
  763.  
  764. .fa-linkedin-square:before {
  765. content: ""
  766. }
  767.  
  768. .fa-thumb-tack:before {
  769. content: ""
  770. }
  771.  
  772. .fa-external-link:before {
  773. content: ""
  774. }
  775.  
  776. .fa-sign-in:before {
  777. content: ""
  778. }
  779.  
  780. .fa-trophy:before {
  781. content: ""
  782. }
  783.  
  784. .fa-github-square:before {
  785. content: ""
  786. }
  787.  
  788. .fa-upload:before {
  789. content: ""
  790. }
  791.  
  792. .fa-lemon-o:before {
  793. content: ""
  794. }
  795.  
  796. .fa-phone:before {
  797. content: ""
  798. }
  799.  
  800. .fa-square-o:before {
  801. content: ""
  802. }
  803.  
  804. .fa-bookmark-o:before {
  805. content: ""
  806. }
  807.  
  808. .fa-phone-square:before {
  809. content: ""
  810. }
  811.  
  812. .fa-twitter:before {
  813. content: ""
  814. }
  815.  
  816. .fa-facebook:before {
  817. content: ""
  818. }
  819.  
  820. .fa-github:before {
  821. content: ""
  822. }
  823.  
  824. .fa-unlock:before {
  825. content: ""
  826. }
  827.  
  828. .fa-credit-card:before {
  829. content: ""
  830. }
  831.  
  832. .fa-rss:before {
  833. content: ""
  834. }
  835.  
  836. .fa-hdd-o:before {
  837. content: ""
  838. }
  839.  
  840. .fa-bullhorn:before {
  841. content: ""
  842. }
  843.  
  844. .fa-bell:before {
  845. content: ""
  846. }
  847.  
  848. .fa-certificate:before {
  849. content: ""
  850. }
  851.  
  852. .fa-hand-o-right:before {
  853. content: ""
  854. }
  855.  
  856. .fa-hand-o-left:before {
  857. content: ""
  858. }
  859.  
  860. .fa-hand-o-up:before {
  861. content: ""
  862. }
  863.  
  864. .fa-hand-o-down:before {
  865. content: ""
  866. }
  867.  
  868. .fa-arrow-circle-left:before {
  869. content: ""
  870. }
  871.  
  872. .fa-arrow-circle-right:before {
  873. content: ""
  874. }
  875.  
  876. .fa-arrow-circle-up:before {
  877. content: ""
  878. }
  879.  
  880. .fa-arrow-circle-down:before {
  881. content: ""
  882. }
  883.  
  884. .fa-globe:before {
  885. content: ""
  886. }
  887.  
  888. .fa-wrench:before {
  889. content: ""
  890. }
  891.  
  892. .fa-tasks:before {
  893. content: ""
  894. }
  895.  
  896. .fa-filter:before {
  897. content: ""
  898. }
  899.  
  900. .fa-briefcase:before {
  901. content: ""
  902. }
  903.  
  904. .fa-arrows-alt:before {
  905. content: ""
  906. }
  907.  
  908. .fa-group:before,.fa-users:before {
  909. content: ""
  910. }
  911.  
  912. .fa-chain:before,.fa-link:before {
  913. content: ""
  914. }
  915.  
  916. .fa-cloud:before {
  917. content: ""
  918. }
  919.  
  920. .fa-flask:before {
  921. content: ""
  922. }
  923.  
  924. .fa-cut:before,.fa-scissors:before {
  925. content: ""
  926. }
  927.  
  928. .fa-copy:before,.fa-files-o:before {
  929. content: ""
  930. }
  931.  
  932. .fa-paperclip:before {
  933. content: ""
  934. }
  935.  
  936. .fa-save:before,.fa-floppy-o:before {
  937. content: ""
  938. }
  939.  
  940. .fa-square:before {
  941. content: ""
  942. }
  943.  
  944. .fa-navicon:before,.fa-reorder:before,.fa-bars:before {
  945. content: ""
  946. }
  947.  
  948. .fa-list-ul:before {
  949. content: ""
  950. }
  951.  
  952. .fa-list-ol:before {
  953. content: ""
  954. }
  955.  
  956. .fa-strikethrough:before {
  957. content: ""
  958. }
  959.  
  960. .fa-underline:before {
  961. content: ""
  962. }
  963.  
  964. .fa-table:before {
  965. content: ""
  966. }
  967.  
  968. .fa-magic:before {
  969. content: ""
  970. }
  971.  
  972. .fa-truck:before {
  973. content: ""
  974. }
  975.  
  976. .fa-pinterest:before {
  977. content: ""
  978. }
  979.  
  980. .fa-pinterest-square:before {
  981. content: ""
  982. }
  983.  
  984. .fa-google-plus-square:before {
  985. content: ""
  986. }
  987.  
  988. .fa-google-plus:before {
  989. content: ""
  990. }
  991.  
  992. .fa-money:before {
  993. content: ""
  994. }
  995.  
  996. .fa-caret-down:before {
  997. content: ""
  998. }
  999.  
  1000. .fa-caret-up:before {
  1001. content: ""
  1002. }
  1003.  
  1004. .fa-caret-left:before {
  1005. content: ""
  1006. }
  1007.  
  1008. .fa-caret-right:before {
  1009. content: ""
  1010. }
  1011.  
  1012. .fa-columns:before {
  1013. content: ""
  1014. }
  1015.  
  1016. .fa-unsorted:before,.fa-sort:before {
  1017. content: ""
  1018. }
  1019.  
  1020. .fa-sort-down:before,.fa-sort-desc:before {
  1021. content: ""
  1022. }
  1023.  
  1024. .fa-sort-up:before,.fa-sort-asc:before {
  1025. content: ""
  1026. }
  1027.  
  1028. .fa-envelope:before {
  1029. content: ""
  1030. }
  1031.  
  1032. .fa-linkedin:before {
  1033. content: ""
  1034. }
  1035.  
  1036. .fa-rotate-left:before,.fa-undo:before {
  1037. content: ""
  1038. }
  1039.  
  1040. .fa-legal:before,.fa-gavel:before {
  1041. content: ""
  1042. }
  1043.  
  1044. .fa-dashboard:before,.fa-tachometer:before {
  1045. content: ""
  1046. }
  1047.  
  1048. .fa-comment-o:before {
  1049. content: ""
  1050. }
  1051.  
  1052. .fa-comments-o:before {
  1053. content: ""
  1054. }
  1055.  
  1056. .fa-flash:before,.fa-bolt:before {
  1057. content: ""
  1058. }
  1059.  
  1060. .fa-sitemap:before {
  1061. content: ""
  1062. }
  1063.  
  1064. .fa-umbrella:before {
  1065. content: ""
  1066. }
  1067.  
  1068. .fa-paste:before,.fa-clipboard:before {
  1069. content: ""
  1070. }
  1071.  
  1072. .fa-lightbulb-o:before {
  1073. content: ""
  1074. }
  1075.  
  1076. .fa-exchange:before {
  1077. content: ""
  1078. }
  1079.  
  1080. .fa-cloud-download:before {
  1081. content: ""
  1082. }
  1083.  
  1084. .fa-cloud-upload:before {
  1085. content: ""
  1086. }
  1087.  
  1088. .fa-user-md:before {
  1089. content: ""
  1090. }
  1091.  
  1092. .fa-stethoscope:before {
  1093. content: ""
  1094. }
  1095.  
  1096. .fa-suitcase:before {
  1097. content: ""
  1098. }
  1099.  
  1100. .fa-bell-o:before {
  1101. content: ""
  1102. }
  1103.  
  1104. .fa-coffee:before {
  1105. content: ""
  1106. }
  1107.  
  1108. .fa-cutlery:before {
  1109. content: ""
  1110. }
  1111.  
  1112. .fa-file-text-o:before {
  1113. content: ""
  1114. }
  1115.  
  1116. .fa-building-o:before {
  1117. content: ""
  1118. }
  1119.  
  1120. .fa-hospital-o:before {
  1121. content: ""
  1122. }
  1123.  
  1124. .fa-ambulance:before {
  1125. content: ""
  1126. }
  1127.  
  1128. .fa-medkit:before {
  1129. content: ""
  1130. }
  1131.  
  1132. .fa-fighter-jet:before {
  1133. content: ""
  1134. }
  1135.  
  1136. .fa-beer:before {
  1137. content: ""
  1138. }
  1139.  
  1140. .fa-h-square:before {
  1141. content: ""
  1142. }
  1143.  
  1144. .fa-plus-square:before {
  1145. content: ""
  1146. }
  1147.  
  1148. .fa-angle-double-left:before {
  1149. content: ""
  1150. }
  1151.  
  1152. .fa-angle-double-right:before {
  1153. content: ""
  1154. }
  1155.  
  1156. .fa-angle-double-up:before {
  1157. content: ""
  1158. }
  1159.  
  1160. .fa-angle-double-down:before {
  1161. content: ""
  1162. }
  1163.  
  1164. .fa-angle-left:before {
  1165. content: ""
  1166. }
  1167.  
  1168. .fa-angle-right:before {
  1169. content: ""
  1170. }
  1171.  
  1172. .fa-angle-up:before {
  1173. content: ""
  1174. }
  1175.  
  1176. .fa-angle-down:before {
  1177. content: ""
  1178. }
  1179.  
  1180. .fa-desktop:before {
  1181. content: ""
  1182. }
  1183.  
  1184. .fa-laptop:before {
  1185. content: ""
  1186. }
  1187.  
  1188. .fa-tablet:before {
  1189. content: ""
  1190. }
  1191.  
  1192. .fa-mobile-phone:before,.fa-mobile:before {
  1193. content: ""
  1194. }
  1195.  
  1196. .fa-circle-o:before {
  1197. content: ""
  1198. }
  1199.  
  1200. .fa-quote-left:before {
  1201. content: ""
  1202. }
  1203.  
  1204. .fa-quote-right:before {
  1205. content: ""
  1206. }
  1207.  
  1208. .fa-spinner:before {
  1209. content: ""
  1210. }
  1211.  
  1212. .fa-circle:before {
  1213. content: ""
  1214. }
  1215.  
  1216. .fa-mail-reply:before,.fa-reply:before {
  1217. content: ""
  1218. }
  1219.  
  1220. .fa-github-alt:before {
  1221. content: ""
  1222. }
  1223.  
  1224. .fa-folder-o:before {
  1225. content: ""
  1226. }
  1227.  
  1228. .fa-folder-open-o:before {
  1229. content: ""
  1230. }
  1231.  
  1232. .fa-smile-o:before {
  1233. content: ""
  1234. }
  1235.  
  1236. .fa-frown-o:before {
  1237. content: ""
  1238. }
  1239.  
  1240. .fa-meh-o:before {
  1241. content: ""
  1242. }
  1243.  
  1244. .fa-gamepad:before {
  1245. content: ""
  1246. }
  1247.  
  1248. .fa-keyboard-o:before {
  1249. content: ""
  1250. }
  1251.  
  1252. .fa-flag-o:before {
  1253. content: ""
  1254. }
  1255.  
  1256. .fa-flag-checkered:before {
  1257. content: ""
  1258. }
  1259.  
  1260. .fa-terminal:before {
  1261. content: ""
  1262. }
  1263.  
  1264. .fa-code:before {
  1265. content: ""
  1266. }
  1267.  
  1268. .fa-mail-reply-all:before,.fa-reply-all:before {
  1269. content: ""
  1270. }
  1271.  
  1272. .fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before {
  1273. content: ""
  1274. }
  1275.  
  1276. .fa-location-arrow:before {
  1277. content: ""
  1278. }
  1279.  
  1280. .fa-crop:before {
  1281. content: ""
  1282. }
  1283.  
  1284. .fa-code-fork:before {
  1285. content: ""
  1286. }
  1287.  
  1288. .fa-unlink:before,.fa-chain-broken:before {
  1289. content: ""
  1290. }
  1291.  
  1292. .fa-question:before {
  1293. content: ""
  1294. }
  1295.  
  1296. .fa-info:before {
  1297. content: ""
  1298. }
  1299.  
  1300. .fa-exclamation:before {
  1301. content: ""
  1302. }
  1303.  
  1304. .fa-superscript:before {
  1305. content: ""
  1306. }
  1307.  
  1308. .fa-subscript:before {
  1309. content: ""
  1310. }
  1311.  
  1312. .fa-eraser:before {
  1313. content: ""
  1314. }
  1315.  
  1316. .fa-puzzle-piece:before {
  1317. content: ""
  1318. }
  1319.  
  1320. .fa-microphone:before {
  1321. content: ""
  1322. }
  1323.  
  1324. .fa-microphone-slash:before {
  1325. content: ""
  1326. }
  1327.  
  1328. .fa-shield:before {
  1329. content: ""
  1330. }
  1331.  
  1332. .fa-calendar-o:before {
  1333. content: ""
  1334. }
  1335.  
  1336. .fa-fire-extinguisher:before {
  1337. content: ""
  1338. }
  1339.  
  1340. .fa-rocket:before {
  1341. content: ""
  1342. }
  1343.  
  1344. .fa-maxcdn:before {
  1345. content: ""
  1346. }
  1347.  
  1348. .fa-chevron-circle-left:before {
  1349. content: ""
  1350. }
  1351.  
  1352. .fa-chevron-circle-right:before {
  1353. content: ""
  1354. }
  1355.  
  1356. .fa-chevron-circle-up:before {
  1357. content: ""
  1358. }
  1359.  
  1360. .fa-chevron-circle-down:before {
  1361. content: ""
  1362. }
  1363.  
  1364. .fa-html5:before {
  1365. content: ""
  1366. }
  1367.  
  1368. .fa-css3:before {
  1369. content: ""
  1370. }
  1371.  
  1372. .fa-anchor:before {
  1373. content: ""
  1374. }
  1375.  
  1376. .fa-unlock-alt:before {
  1377. content: ""
  1378. }
  1379.  
  1380. .fa-bullseye:before {
  1381. content: ""
  1382. }
  1383.  
  1384. .fa-ellipsis-h:before {
  1385. content: ""
  1386. }
  1387.  
  1388. .fa-ellipsis-v:before {
  1389. content: ""
  1390. }
  1391.  
  1392. .fa-rss-square:before {
  1393. content: ""
  1394. }
  1395.  
  1396. .fa-play-circle:before {
  1397. content: ""
  1398. }
  1399.  
  1400. .fa-ticket:before {
  1401. content: ""
  1402. }
  1403.  
  1404. .fa-minus-square:before {
  1405. content: ""
  1406. }
  1407.  
  1408. .fa-minus-square-o:before {
  1409. content: ""
  1410. }
  1411.  
  1412. .fa-level-up:before {
  1413. content: ""
  1414. }
  1415.  
  1416. .fa-level-down:before {
  1417. content: ""
  1418. }
  1419.  
  1420. .fa-check-square:before {
  1421. content: ""
  1422. }
  1423.  
  1424. .fa-pencil-square:before {
  1425. content: ""
  1426. }
  1427.  
  1428. .fa-external-link-square:before {
  1429. content: ""
  1430. }
  1431.  
  1432. .fa-share-square:before {
  1433. content: ""
  1434. }
  1435.  
  1436. .fa-compass:before {
  1437. content: ""
  1438. }
  1439.  
  1440. .fa-toggle-down:before,.fa-caret-square-o-down:before {
  1441. content: ""
  1442. }
  1443.  
  1444. .fa-toggle-up:before,.fa-caret-square-o-up:before {
  1445. content: ""
  1446. }
  1447.  
  1448. .fa-toggle-right:before,.fa-caret-square-o-right:before {
  1449. content: ""
  1450. }
  1451.  
  1452. .fa-euro:before,.fa-eur:before {
  1453. content: ""
  1454. }
  1455.  
  1456. .fa-gbp:before {
  1457. content: ""
  1458. }
  1459.  
  1460. .fa-dollar:before,.fa-usd:before {
  1461. content: ""
  1462. }
  1463.  
  1464. .fa-rupee:before,.fa-inr:before {
  1465. content: ""
  1466. }
  1467.  
  1468. .fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before {
  1469. content: ""
  1470. }
  1471.  
  1472. .fa-ruble:before,.fa-rouble:before,.fa-rub:before {
  1473. content: ""
  1474. }
  1475.  
  1476. .fa-won:before,.fa-krw:before {
  1477. content: ""
  1478. }
  1479.  
  1480. .fa-bitcoin:before,.fa-btc:before {
  1481. content: ""
  1482. }
  1483.  
  1484. .fa-file:before {
  1485. content: ""
  1486. }
  1487.  
  1488. .fa-file-text:before {
  1489. content: ""
  1490. }
  1491.  
  1492. .fa-sort-alpha-asc:before {
  1493. content: ""
  1494. }
  1495.  
  1496. .fa-sort-alpha-desc:before {
  1497. content: ""
  1498. }
  1499.  
  1500. .fa-sort-amount-asc:before {
  1501. content: ""
  1502. }
  1503.  
  1504. .fa-sort-amount-desc:before {
  1505. content: ""
  1506. }
  1507.  
  1508. .fa-sort-numeric-asc:before {
  1509. content: ""
  1510. }
  1511.  
  1512. .fa-sort-numeric-desc:before {
  1513. content: ""
  1514. }
  1515.  
  1516. .fa-thumbs-up:before {
  1517. content: ""
  1518. }
  1519.  
  1520. .fa-thumbs-down:before {
  1521. content: ""
  1522. }
  1523.  
  1524. .fa-youtube-square:before {
  1525. content: ""
  1526. }
  1527.  
  1528. .fa-youtube:before {
  1529. content: ""
  1530. }
  1531.  
  1532. .fa-xing:before {
  1533. content: ""
  1534. }
  1535.  
  1536. .fa-xing-square:before {
  1537. content: ""
  1538. }
  1539.  
  1540. .fa-youtube-play:before {
  1541. content: ""
  1542. }
  1543.  
  1544. .fa-dropbox:before {
  1545. content: ""
  1546. }
  1547.  
  1548. .fa-stack-overflow:before {
  1549. content: ""
  1550. }
  1551.  
  1552. .fa-instagram:before {
  1553. content: ""
  1554. }
  1555.  
  1556. .fa-flickr:before {
  1557. content: ""
  1558. }
  1559.  
  1560. .fa-adn:before {
  1561. content: ""
  1562. }
  1563.  
  1564. .fa-bitbucket:before {
  1565. content: ""
  1566. }
  1567.  
  1568. .fa-bitbucket-square:before {
  1569. content: ""
  1570. }
  1571.  
  1572. .fa-tumblr:before {
  1573. content: ""
  1574. }
  1575.  
  1576. .fa-tumblr-square:before {
  1577. content: ""
  1578. }
  1579.  
  1580. .fa-long-arrow-down:before {
  1581. content: ""
  1582. }
  1583.  
  1584. .fa-long-arrow-up:before {
  1585. content: ""
  1586. }
  1587.  
  1588. .fa-long-arrow-left:before {
  1589. content: ""
  1590. }
  1591.  
  1592. .fa-long-arrow-right:before {
  1593. content: ""
  1594. }
  1595.  
  1596. .fa-apple:before {
  1597. content: ""
  1598. }
  1599.  
  1600. .fa-windows:before {
  1601. content: ""
  1602. }
  1603.  
  1604. .fa-android:before {
  1605. content: ""
  1606. }
  1607.  
  1608. .fa-linux:before {
  1609. content: ""
  1610. }
  1611.  
  1612. .fa-dribbble:before {
  1613. content: ""
  1614. }
  1615.  
  1616. .fa-skype:before {
  1617. content: ""
  1618. }
  1619.  
  1620. .fa-foursquare:before {
  1621. content: ""
  1622. }
  1623.  
  1624. .fa-trello:before {
  1625. content: ""
  1626. }
  1627.  
  1628. .fa-female:before {
  1629. content: ""
  1630. }
  1631.  
  1632. .fa-male:before {
  1633. content: ""
  1634. }
  1635.  
  1636. .fa-gittip:before {
  1637. content: ""
  1638. }
  1639.  
  1640. .fa-sun-o:before {
  1641. content: ""
  1642. }
  1643.  
  1644. .fa-moon-o:before {
  1645. content: ""
  1646. }
  1647.  
  1648. .fa-archive:before {
  1649. content: ""
  1650. }
  1651.  
  1652. .fa-bug:before {
  1653. content: ""
  1654. }
  1655.  
  1656. .fa-vk:before {
  1657. content: ""
  1658. }
  1659.  
  1660. .fa-weibo:before {
  1661. content: ""
  1662. }
  1663.  
  1664. .fa-renren:before {
  1665. content: ""
  1666. }
  1667.  
  1668. .fa-pagelines:before {
  1669. content: ""
  1670. }
  1671.  
  1672. .fa-stack-exchange:before {
  1673. content: ""
  1674. }
  1675.  
  1676. .fa-arrow-circle-o-right:before {
  1677. content: ""
  1678. }
  1679.  
  1680. .fa-arrow-circle-o-left:before {
  1681. content: ""
  1682. }
  1683.  
  1684. .fa-toggle-left:before,.fa-caret-square-o-left:before {
  1685. content: ""
  1686. }
  1687.  
  1688. .fa-dot-circle-o:before {
  1689. content: ""
  1690. }
  1691.  
  1692. .fa-wheelchair:before {
  1693. content: ""
  1694. }
  1695.  
  1696. .fa-vimeo-square:before {
  1697. content: ""
  1698. }
  1699.  
  1700. .fa-turkish-lira:before,.fa-try:before {
  1701. content: ""
  1702. }
  1703.  
  1704. .fa-plus-square-o:before {
  1705. content: ""
  1706. }
  1707.  
  1708. .fa-space-shuttle:before {
  1709. content: ""
  1710. }
  1711.  
  1712. .fa-slack:before {
  1713. content: ""
  1714. }
  1715.  
  1716. .fa-envelope-square:before {
  1717. content: ""
  1718. }
  1719.  
  1720. .fa-wordpress:before {
  1721. content: ""
  1722. }
  1723.  
  1724. .fa-openid:before {
  1725. content: ""
  1726. }
  1727.  
  1728. .fa-institution:before,.fa-bank:before,.fa-university:before {
  1729. content: ""
  1730. }
  1731.  
  1732. .fa-mortar-board:before,.fa-graduation-cap:before {
  1733. content: ""
  1734. }
  1735.  
  1736. .fa-yahoo:before {
  1737. content: ""
  1738. }
  1739.  
  1740. .fa-google:before {
  1741. content: ""
  1742. }
  1743.  
  1744. .fa-reddit:before {
  1745. content: ""
  1746. }
  1747.  
  1748. .fa-reddit-square:before {
  1749. content: ""
  1750. }
  1751.  
  1752. .fa-stumbleupon-circle:before {
  1753. content: ""
  1754. }
  1755.  
  1756. .fa-stumbleupon:before {
  1757. content: ""
  1758. }
  1759.  
  1760. .fa-delicious:before {
  1761. content: ""
  1762. }
  1763.  
  1764. .fa-digg:before {
  1765. content: ""
  1766. }
  1767.  
  1768. .fa-pied-piper-square:before,.fa-pied-piper:before {
  1769. content: ""
  1770. }
  1771.  
  1772. .fa-pied-piper-alt:before {
  1773. content: ""
  1774. }
  1775.  
  1776. .fa-drupal:before {
  1777. content: ""
  1778. }
  1779.  
  1780. .fa-joomla:before {
  1781. content: ""
  1782. }
  1783.  
  1784. .fa-language:before {
  1785. content: ""
  1786. }
  1787.  
  1788. .fa-fax:before {
  1789. content: ""
  1790. }
  1791.  
  1792. .fa-building:before {
  1793. content: ""
  1794. }
  1795.  
  1796. .fa-child:before {
  1797. content: ""
  1798. }
  1799.  
  1800. .fa-paw:before {
  1801. content: ""
  1802. }
  1803.  
  1804. .fa-spoon:before {
  1805. content: ""
  1806. }
  1807.  
  1808. .fa-cube:before {
  1809. content: ""
  1810. }
  1811.  
  1812. .fa-cubes:before {
  1813. content: ""
  1814. }
  1815.  
  1816. .fa-behance:before {
  1817. content: ""
  1818. }
  1819.  
  1820. .fa-behance-square:before {
  1821. content: ""
  1822. }
  1823.  
  1824. .fa-steam:before {
  1825. content: ""
  1826. }
  1827.  
  1828. .fa-steam-square:before {
  1829. content: ""
  1830. }
  1831.  
  1832. .fa-recycle:before {
  1833. content: ""
  1834. }
  1835.  
  1836. .fa-automobile:before,.fa-car:before {
  1837. content: ""
  1838. }
  1839.  
  1840. .fa-cab:before,.fa-taxi:before {
  1841. content: ""
  1842. }
  1843.  
  1844. .fa-tree:before {
  1845. content: ""
  1846. }
  1847.  
  1848. .fa-spotify:before {
  1849. content: ""
  1850. }
  1851.  
  1852. .fa-deviantart:before {
  1853. content: ""
  1854. }
  1855.  
  1856. .fa-soundcloud:before {
  1857. content: ""
  1858. }
  1859.  
  1860. .fa-database:before {
  1861. content: ""
  1862. }
  1863.  
  1864. .fa-file-pdf-o:before {
  1865. content: ""
  1866. }
  1867.  
  1868. .fa-file-word-o:before {
  1869. content: ""
  1870. }
  1871.  
  1872. .fa-file-excel-o:before {
  1873. content: ""
  1874. }
  1875.  
  1876. .fa-file-powerpoint-o:before {
  1877. content: ""
  1878. }
  1879.  
  1880. .fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before {
  1881. content: ""
  1882. }
  1883.  
  1884. .fa-file-zip-o:before,.fa-file-archive-o:before {
  1885. content: ""
  1886. }
  1887.  
  1888. .fa-file-sound-o:before,.fa-file-audio-o:before {
  1889. content: ""
  1890. }
  1891.  
  1892. .fa-file-movie-o:before,.fa-file-video-o:before {
  1893. content: ""
  1894. }
  1895.  
  1896. .fa-file-code-o:before {
  1897. content: ""
  1898. }
  1899.  
  1900. .fa-vine:before {
  1901. content: ""
  1902. }
  1903.  
  1904. .fa-codepen:before {
  1905. content: ""
  1906. }
  1907.  
  1908. .fa-jsfiddle:before {
  1909. content: ""
  1910. }
  1911.  
  1912. .fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before {
  1913. content: ""
  1914. }
  1915.  
  1916. .fa-circle-o-notch:before {
  1917. content: ""
  1918. }
  1919.  
  1920. .fa-ra:before,.fa-rebel:before {
  1921. content: ""
  1922. }
  1923.  
  1924. .fa-ge:before,.fa-empire:before {
  1925. content: ""
  1926. }
  1927.  
  1928. .fa-git-square:before {
  1929. content: ""
  1930. }
  1931.  
  1932. .fa-git:before {
  1933. content: ""
  1934. }
  1935.  
  1936. .fa-hacker-news:before {
  1937. content: ""
  1938. }
  1939.  
  1940. .fa-tencent-weibo:before {
  1941. content: ""
  1942. }
  1943.  
  1944. .fa-qq:before {
  1945. content: ""
  1946. }
  1947.  
  1948. .fa-wechat:before,.fa-weixin:before {
  1949. content: ""
  1950. }
  1951.  
  1952. .fa-send:before,.fa-paper-plane:before {
  1953. content: ""
  1954. }
  1955.  
  1956. .fa-send-o:before,.fa-paper-plane-o:before {
  1957. content: ""
  1958. }
  1959.  
  1960. .fa-history:before {
  1961. content: ""
  1962. }
  1963.  
  1964. .fa-circle-thin:before {
  1965. content: ""
  1966. }
  1967.  
  1968. .fa-header:before {
  1969. content: ""
  1970. }
  1971.  
  1972. .fa-paragraph:before {
  1973. content: ""
  1974. }
  1975.  
  1976. .fa-sliders:before {
  1977. content: ""
  1978. }
  1979.  
  1980. .fa-share-alt:before {
  1981. content: ""
  1982. }
  1983.  
  1984. .fa-share-alt-square:before {
  1985. content: ""
  1986. }
  1987.  
  1988. .fa-bomb:before {
  1989. content: ""
  1990. }
  1991.  
  1992. .fancybox-wrap,.fancybox-skin,.fancybox-outer,.fancybox-inner,.fancybox-image,.fancybox-wrap iframe,.fancybox-wrap object,.fancybox-nav,.fancybox-nav span,.fancybox-tmp {
  1993. padding: 0;
  1994. margin: 0;
  1995. border: 0;
  1996. outline: none;
  1997. vertical-align: top
  1998. }
  1999.  
  2000. .fancybox-wrap {
  2001. position: absolute;
  2002. top: 0;
  2003. left: 0;
  2004. z-index: 8020
  2005. }
  2006.  
  2007. .fancybox-skin {
  2008. position: relative;
  2009. background: #f9f9f9;
  2010. color: #444;
  2011. text-shadow: none;
  2012. -webkit-border-radius: 4px;
  2013. -moz-border-radius: 4px;
  2014. border-radius: 4px
  2015. }
  2016.  
  2017. .fancybox-opened {
  2018. z-index: 8030
  2019. }
  2020.  
  2021. .fancybox-opened .fancybox-skin {
  2022. -webkit-box-shadow: 0 10px 25px rgba(0,0,0,.5);
  2023. -moz-box-shadow: 0 10px 25px rgba(0,0,0,.5);
  2024. box-shadow: 0 10px 25px rgba(0,0,0,.5)
  2025. }
  2026.  
  2027. .fancybox-outer,.fancybox-inner {
  2028. position: relative
  2029. }
  2030.  
  2031. .fancybox-inner {
  2032. overflow: hidden
  2033. }
  2034.  
  2035. .fancybox-type-iframe .fancybox-inner {
  2036. -webkit-overflow-scrolling: touch
  2037. }
  2038.  
  2039. .fancybox-error {
  2040. color: #444;
  2041. font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  2042. margin: 0;
  2043. padding: 15px;
  2044. white-space: nowrap
  2045. }
  2046.  
  2047. .fancybox-image,.fancybox-iframe {
  2048. display: block;
  2049. width: 100%;
  2050. height: 100%
  2051. }
  2052.  
  2053. .fancybox-image {
  2054. max-width: 100%;
  2055. max-height: 100%
  2056. }
  2057.  
  2058. #fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span {
  2059. background-image: url('/Images/fancybox_sprite.png')
  2060. }
  2061.  
  2062. #fancybox-loading {
  2063. position: fixed;
  2064. top: 50%;
  2065. left: 50%;
  2066. margin-top: -22px;
  2067. margin-left: -22px;
  2068. background-position: 0 -108px;
  2069. opacity: .8;
  2070. cursor: pointer;
  2071. z-index: 8060
  2072. }
  2073.  
  2074. #fancybox-loading div {
  2075. width: 44px;
  2076. height: 44px;
  2077. background: url('/Images/fancybox_loading.gif') center center no-repeat
  2078. }
  2079.  
  2080. .fancybox-close {
  2081. position: absolute;
  2082. top: -18px;
  2083. right: -18px;
  2084. width: 36px;
  2085. height: 36px;
  2086. cursor: pointer;
  2087. z-index: 8040
  2088. }
  2089.  
  2090. .fancybox-nav {
  2091. position: absolute;
  2092. top: 0;
  2093. width: 40%;
  2094. height: 100%;
  2095. cursor: pointer;
  2096. text-decoration: none;
  2097. background: transparent url('/Images/blank.gif');
  2098. -webkit-tap-highlight-color: rgba(0,0,0,0);
  2099. z-index: 8040
  2100. }
  2101.  
  2102. .fancybox-prev {
  2103. left: 0
  2104. }
  2105.  
  2106. .fancybox-next {
  2107. right: 0
  2108. }
  2109.  
  2110. .fancybox-nav span {
  2111. position: absolute;
  2112. top: 50%;
  2113. width: 36px;
  2114. height: 34px;
  2115. margin-top: -18px;
  2116. cursor: pointer;
  2117. z-index: 8040;
  2118. visibility: hidden
  2119. }
  2120.  
  2121. .fancybox-prev span {
  2122. left: 10px;
  2123. background-position: 0 -36px
  2124. }
  2125.  
  2126. .fancybox-next span {
  2127. right: 10px;
  2128. background-position: 0 -72px
  2129. }
  2130.  
  2131. .fancybox-nav:hover span {
  2132. visibility: visible
  2133. }
  2134.  
  2135. .fancybox-tmp {
  2136. position: absolute;
  2137. top: -99999px;
  2138. left: -99999px;
  2139. visibility: hidden;
  2140. max-width: 99999px;
  2141. max-height: 99999px;
  2142. overflow: visible!important
  2143. }
  2144.  
  2145. .fancybox-lock {
  2146. overflow: hidden!important;
  2147. width: auto
  2148. }
  2149.  
  2150. .fancybox-lock body {
  2151. overflow: hidden!important
  2152. }
  2153.  
  2154. .fancybox-lock-test {
  2155. overflow-y: hidden!important
  2156. }
  2157.  
  2158. .fancybox-overlay {
  2159. position: absolute;
  2160. top: 0;
  2161. left: 0;
  2162. overflow: hidden;
  2163. display: none;
  2164. z-index: 8010;
  2165. background: url('/Images/fancybox_overlay.png')
  2166. }
  2167.  
  2168. .fancybox-overlay-fixed {
  2169. position: fixed;
  2170. bottom: 0;
  2171. right: 0
  2172. }
  2173.  
  2174. .fancybox-lock .fancybox-overlay {
  2175. overflow: auto;
  2176. overflow-y: scroll
  2177. }
  2178.  
  2179. .fancybox-title {
  2180. visibility: hidden;
  2181. font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  2182. position: relative;
  2183. text-shadow: none;
  2184. z-index: 8050
  2185. }
  2186.  
  2187. .fancybox-opened .fancybox-title {
  2188. visibility: visible
  2189. }
  2190.  
  2191. .fancybox-title-float-wrap {
  2192. position: absolute;
  2193. bottom: 0;
  2194. right: 50%;
  2195. margin-bottom: -35px;
  2196. z-index: 8050;
  2197. text-align: center
  2198. }
  2199.  
  2200. .fancybox-title-float-wrap .child {
  2201. display: inline-block;
  2202. margin-right: -100%;
  2203. padding: 2px 20px;
  2204. background: transparent;
  2205. background: rgba(0,0,0,.8);
  2206. -webkit-border-radius: 15px;
  2207. -moz-border-radius: 15px;
  2208. border-radius: 15px;
  2209. text-shadow: 0 1px 2px #222;
  2210. color: #fff;
  2211. font-weight: bold;
  2212. line-height: 24px;
  2213. white-space: nowrap
  2214. }
  2215.  
  2216. .fancybox-title-outside-wrap {
  2217. position: relative;
  2218. margin-top: 10px;
  2219. color: #fff
  2220. }
  2221.  
  2222. .fancybox-title-inside-wrap {
  2223. padding-top: 10px
  2224. }
  2225.  
  2226. .fancybox-title-over-wrap {
  2227. position: absolute;
  2228. bottom: 0;
  2229. left: 0;
  2230. color: #fff;
  2231. padding: 10px;
  2232. background: #000;
  2233. background: rgba(0,0,0,.8)
  2234. }
  2235.  
  2236. @media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
  2237. #fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span {
  2238. background-image:url('/Images/fancybox_sprite@2x.png');
  2239. background-size: 44px 152px
  2240. }
  2241.  
  2242. #fancybox-loading div {
  2243. background-image: url('/Images/fancybox_loading@2x.gif');
  2244. background-size: 24px 24px
  2245. }
  2246. }
  2247.  
  2248. article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
  2249. display: block
  2250. }
  2251.  
  2252. audio,canvas,video {
  2253. display: inline-block
  2254. }
  2255.  
  2256. audio:not([controls]) {
  2257. display: none;
  2258. height: 0
  2259. }
  2260.  
  2261. [hidden],template {
  2262. display: none
  2263. }
  2264.  
  2265. html {
  2266. font-family: sans-serif;
  2267. -webkit-text-size-adjust: 100%;
  2268. -ms-text-size-adjust: 100%
  2269. }
  2270.  
  2271. body {
  2272. margin: 0
  2273. }
  2274.  
  2275. a {
  2276. background: transparent
  2277. }
  2278.  
  2279. a:focus {
  2280. outline: thin dotted
  2281. }
  2282.  
  2283. a:active,a:hover {
  2284. outline: 0
  2285. }
  2286.  
  2287. h1 {
  2288. margin: .67em 0;
  2289. font-size: 2em
  2290. }
  2291.  
  2292. abbr[title] {
  2293. border-bottom: 1px dotted
  2294. }
  2295.  
  2296. b,strong {
  2297. font-weight: bold
  2298. }
  2299.  
  2300. dfn {
  2301. font-style: italic
  2302. }
  2303.  
  2304. hr {
  2305. height: 0;
  2306. -moz-box-sizing: content-box;
  2307. box-sizing: content-box
  2308. }
  2309.  
  2310. mark {
  2311. color: #000;
  2312. background: #ff0
  2313. }
  2314.  
  2315. code,kbd,pre,samp {
  2316. font-family: monospace,serif;
  2317. font-size: 1em
  2318. }
  2319.  
  2320. pre {
  2321. white-space: pre-wrap
  2322. }
  2323.  
  2324. q {
  2325. quotes: "“" "”" "‘" "’"
  2326. }
  2327.  
  2328. small {
  2329. font-size: 80%
  2330. }
  2331.  
  2332. sub,sup {
  2333. position: relative;
  2334. font-size: 75%;
  2335. line-height: 0;
  2336. vertical-align: baseline
  2337. }
  2338.  
  2339. sup {
  2340. top: -.5em
  2341. }
  2342.  
  2343. sub {
  2344. bottom: -.25em
  2345. }
  2346.  
  2347. img {
  2348. border: 0
  2349. }
  2350.  
  2351. svg:not(:root) {
  2352. overflow: hidden
  2353. }
  2354.  
  2355. figure {
  2356. margin: 0
  2357. }
  2358.  
  2359. fieldset {
  2360. padding: .35em .625em .75em;
  2361. margin: 0 2px;
  2362. border: 1px solid silver
  2363. }
  2364.  
  2365. legend {
  2366. padding: 0;
  2367. border: 0
  2368. }
  2369.  
  2370. button,input,select,textarea {
  2371. margin: 0;
  2372. font-family: inherit;
  2373. font-size: 100%
  2374. }
  2375.  
  2376. button,input {
  2377. line-height: normal
  2378. }
  2379.  
  2380. button,select {
  2381. text-transform: none
  2382. }
  2383.  
  2384. button,html input[type="button"],input[type="reset"],input[type="submit"] {
  2385. cursor: pointer;
  2386. -webkit-appearance: button
  2387. }
  2388.  
  2389. button[disabled],html input[disabled] {
  2390. cursor: default
  2391. }
  2392.  
  2393. input[type="checkbox"],input[type="radio"] {
  2394. padding: 0;
  2395. box-sizing: border-box
  2396. }
  2397.  
  2398. input[type="search"] {
  2399. -webkit-box-sizing: content-box;
  2400. -moz-box-sizing: content-box;
  2401. box-sizing: content-box;
  2402. -webkit-appearance: textfield
  2403. }
  2404.  
  2405. input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
  2406. -webkit-appearance: none
  2407. }
  2408.  
  2409. button::-moz-focus-inner,input::-moz-focus-inner {
  2410. padding: 0;
  2411. border: 0
  2412. }
  2413.  
  2414. textarea {
  2415. overflow: auto;
  2416. vertical-align: top
  2417. }
  2418.  
  2419. table {
  2420. border-collapse: collapse;
  2421. border-spacing: 0
  2422. }
  2423.  
  2424. @media print {
  2425. * {
  2426. color: #000!important;
  2427. text-shadow: none!important;
  2428. background: transparent!important;
  2429. box-shadow: none!important
  2430. }
  2431.  
  2432. a,a:visited {
  2433. text-decoration: underline
  2434. }
  2435.  
  2436. a[href]:after {
  2437. content: " (" attr(href) ")"
  2438. }
  2439.  
  2440. abbr[title]:after {
  2441. content: " (" attr(title) ")"
  2442. }
  2443.  
  2444. a[href^="javascript:"]:after,a[href^="#"]:after {
  2445. content: ""
  2446. }
  2447.  
  2448. pre,blockquote {
  2449. border: 1px solid #999;
  2450. page-break-inside: avoid
  2451. }
  2452.  
  2453. thead {
  2454. display: table-header-group
  2455. }
  2456.  
  2457. tr,img {
  2458. page-break-inside: avoid
  2459. }
  2460.  
  2461. img {
  2462. max-width: 100%!important
  2463. }
  2464.  
  2465. @page {
  2466. margin: 2cm .5cm
  2467. }
  2468.  
  2469. p,h2,h3 {
  2470. orphans: 3;
  2471. widows: 3
  2472. }
  2473.  
  2474. h2,h3 {
  2475. page-break-after: avoid
  2476. }
  2477.  
  2478. select {
  2479. background: #fff!important
  2480. }
  2481.  
  2482. .navbar {
  2483. display: none
  2484. }
  2485.  
  2486. .table td,.table th {
  2487. background-color: #fff!important
  2488. }
  2489.  
  2490. .btn>.caret,.dropup>.btn>.caret {
  2491. border-top-color: #000!important
  2492. }
  2493.  
  2494. .label {
  2495. border: 1px solid #000
  2496. }
  2497.  
  2498. .table {
  2499. border-collapse: collapse!important
  2500. }
  2501.  
  2502. .table-bordered th,.table-bordered td {
  2503. border: 1px solid #ddd!important
  2504. }
  2505. }
  2506.  
  2507. *,*:before,*:after {
  2508. -webkit-box-sizing: border-box;
  2509. -moz-box-sizing: border-box;
  2510. box-sizing: border-box
  2511. }
  2512.  
  2513. html {
  2514. font-size: 62.5%;
  2515. -webkit-tap-highlight-color: rgba(0,0,0,0)
  2516. }
  2517.  
  2518. body {
  2519. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  2520. font-size: 14px;
  2521. line-height: 1.428571429;
  2522. color: #333;
  2523. background-color: #fff
  2524. }
  2525.  
  2526. input,button,select,textarea {
  2527. font-family: inherit;
  2528. font-size: inherit;
  2529. line-height: inherit
  2530. }
  2531.  
  2532. a {
  2533. color: #428bca;
  2534. text-decoration: none
  2535. }
  2536.  
  2537. a:hover,a:focus {
  2538. color: #2a6496;
  2539. text-decoration: underline
  2540. }
  2541.  
  2542. a:focus {
  2543. outline: thin dotted #333;
  2544. outline: 5px auto -webkit-focus-ring-color;
  2545. outline-offset: -2px
  2546. }
  2547.  
  2548. img {
  2549. vertical-align: middle
  2550. }
  2551.  
  2552. .img-responsive {
  2553. display: block;
  2554. height: auto;
  2555. max-width: 100%
  2556. }
  2557.  
  2558. .img-rounded {
  2559. border-radius: 6px
  2560. }
  2561.  
  2562. .img-thumbnail {
  2563. display: inline-block;
  2564. height: auto;
  2565. max-width: 100%;
  2566. padding: 4px;
  2567. line-height: 1.428571429;
  2568. background-color: #fff;
  2569. border: 1px solid #ddd;
  2570. border-radius: 4px;
  2571. -webkit-transition: all .2s ease-in-out;
  2572. transition: all .2s ease-in-out
  2573. }
  2574.  
  2575. .img-circle {
  2576. border-radius: 50%
  2577. }
  2578.  
  2579. hr {
  2580. margin-top: 20px;
  2581. margin-bottom: 20px;
  2582. border: 0;
  2583. border-top: 1px solid #eee
  2584. }
  2585.  
  2586. .sr-only {
  2587. position: absolute;
  2588. width: 1px;
  2589. height: 1px;
  2590. padding: 0;
  2591. margin: -1px;
  2592. overflow: hidden;
  2593. clip: rect(0,0,0,0);
  2594. border: 0
  2595. }
  2596.  
  2597. p {
  2598. margin: 0 0 10px
  2599. }
  2600.  
  2601. .lead {
  2602. margin-bottom: 20px;
  2603. font-size: 16px;
  2604. font-weight: 200;
  2605. line-height: 1.4
  2606. }
  2607.  
  2608. @media(min-width: 768px) {
  2609. .lead {
  2610. font-size:21px
  2611. }
  2612. }
  2613.  
  2614. small,.small {
  2615. font-size: 85%
  2616. }
  2617.  
  2618. cite {
  2619. font-style: normal
  2620. }
  2621.  
  2622. .text-muted {
  2623. color: #999
  2624. }
  2625.  
  2626. .text-primary {
  2627. color: #428bca
  2628. }
  2629.  
  2630. .text-primary:hover {
  2631. color: #3071a9
  2632. }
  2633.  
  2634. .text-warning {
  2635. color: #c09853
  2636. }
  2637.  
  2638. .text-warning:hover {
  2639. color: #a47e3c
  2640. }
  2641.  
  2642. .text-danger {
  2643. color: #b94a48
  2644. }
  2645.  
  2646. .text-danger:hover {
  2647. color: #953b39
  2648. }
  2649.  
  2650. .text-success {
  2651. color: #468847
  2652. }
  2653.  
  2654. .text-success:hover {
  2655. color: #356635
  2656. }
  2657.  
  2658. .text-info {
  2659. color: #3a87ad
  2660. }
  2661.  
  2662. .text-info:hover {
  2663. color: #2d6987
  2664. }
  2665.  
  2666. .text-left {
  2667. text-align: left
  2668. }
  2669.  
  2670. .text-right {
  2671. text-align: right
  2672. }
  2673.  
  2674. .text-center {
  2675. text-align: center
  2676. }
  2677.  
  2678. h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  2679. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  2680. font-weight: 500;
  2681. line-height: 1.1;
  2682. color: inherit
  2683. }
  2684.  
  2685. h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small {
  2686. font-weight: normal;
  2687. line-height: 1;
  2688. color: #999
  2689. }
  2690.  
  2691. h1,h2,h3 {
  2692. margin-top: 20px;
  2693. margin-bottom: 10px
  2694. }
  2695.  
  2696. h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small {
  2697. font-size: 65%
  2698. }
  2699.  
  2700. h4,h5,h6 {
  2701. margin-top: 10px;
  2702. margin-bottom: 10px
  2703. }
  2704.  
  2705. h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small {
  2706. font-size: 75%
  2707. }
  2708.  
  2709. h1,.h1 {
  2710. font-size: 36px
  2711. }
  2712.  
  2713. h2,.h2 {
  2714. font-size: 30px
  2715. }
  2716.  
  2717. h3,.h3 {
  2718. font-size: 24px
  2719. }
  2720.  
  2721. h4,.h4 {
  2722. font-size: 18px
  2723. }
  2724.  
  2725. h5,.h5 {
  2726. font-size: 14px
  2727. }
  2728.  
  2729. h6,.h6 {
  2730. font-size: 12px
  2731. }
  2732.  
  2733. .page-header {
  2734. padding-bottom: 9px;
  2735. margin: 40px 0 20px;
  2736. border-bottom: 1px solid #eee
  2737. }
  2738.  
  2739. ul,ol {
  2740. margin-top: 0;
  2741. margin-bottom: 10px
  2742. }
  2743.  
  2744. ul ul,ol ul,ul ol,ol ol {
  2745. margin-bottom: 0
  2746. }
  2747.  
  2748. .list-unstyled {
  2749. padding-left: 0;
  2750. list-style: none
  2751. }
  2752.  
  2753. .list-inline {
  2754. padding-left: 0;
  2755. list-style: none
  2756. }
  2757.  
  2758. .list-inline>li {
  2759. display: inline-block;
  2760. padding-right: 5px;
  2761. padding-left: 5px
  2762. }
  2763.  
  2764. .list-inline>li:first-child {
  2765. padding-left: 0
  2766. }
  2767.  
  2768. dl {
  2769. margin-bottom: 20px
  2770. }
  2771.  
  2772. dt,dd {
  2773. line-height: 1.428571429
  2774. }
  2775.  
  2776. dt {
  2777. font-weight: bold
  2778. }
  2779.  
  2780. dd {
  2781. margin-left: 0
  2782. }
  2783.  
  2784. @media(min-width: 768px) {
  2785. .dl-horizontal dt {
  2786. float:left;
  2787. width: 160px;
  2788. overflow: hidden;
  2789. clear: left;
  2790. text-align: right;
  2791. text-overflow: ellipsis;
  2792. white-space: nowrap
  2793. }
  2794.  
  2795. .dl-horizontal dd {
  2796. margin-left: 180px
  2797. }
  2798.  
  2799. .dl-horizontal dd:before,.dl-horizontal dd:after {
  2800. display: table;
  2801. content: " "
  2802. }
  2803.  
  2804. .dl-horizontal dd:after {
  2805. clear: both
  2806. }
  2807.  
  2808. .dl-horizontal dd:before,.dl-horizontal dd:after {
  2809. display: table;
  2810. content: " "
  2811. }
  2812.  
  2813. .dl-horizontal dd:after {
  2814. clear: both
  2815. }
  2816. }
  2817.  
  2818. abbr[title],abbr[data-original-title] {
  2819. cursor: help;
  2820. border-bottom: 1px dotted #999
  2821. }
  2822.  
  2823. abbr.initialism {
  2824. font-size: 90%;
  2825. text-transform: uppercase
  2826. }
  2827.  
  2828. blockquote {
  2829. padding: 10px 20px;
  2830. margin: 0 0 20px;
  2831. border-left: 5px solid #eee
  2832. }
  2833.  
  2834. blockquote p {
  2835. font-size: 17.5px;
  2836. font-weight: 300;
  2837. line-height: 1.25
  2838. }
  2839.  
  2840. blockquote p:last-child {
  2841. margin-bottom: 0
  2842. }
  2843.  
  2844. blockquote small {
  2845. display: block;
  2846. line-height: 1.428571429;
  2847. color: #999
  2848. }
  2849.  
  2850. blockquote small:before {
  2851. content: '— '
  2852. }
  2853.  
  2854. blockquote.pull-right {
  2855. padding-right: 15px;
  2856. padding-left: 0;
  2857. border-right: 5px solid #eee;
  2858. border-left: 0
  2859. }
  2860.  
  2861. blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small {
  2862. text-align: right
  2863. }
  2864.  
  2865. blockquote.pull-right small:before,blockquote.pull-right .small:before {
  2866. content: ''
  2867. }
  2868.  
  2869. blockquote.pull-right small:after,blockquote.pull-right .small:after {
  2870. content: ' —'
  2871. }
  2872.  
  2873. blockquote:before,blockquote:after {
  2874. content: ""
  2875. }
  2876.  
  2877. address {
  2878. margin-bottom: 20px;
  2879. font-style: normal;
  2880. line-height: 1.428571429
  2881. }
  2882.  
  2883. code,kbd,pre,samp {
  2884. font-family: Monaco,Menlo,Consolas,"Courier New",monospace
  2885. }
  2886.  
  2887. code {
  2888. padding: 2px 4px;
  2889. font-size: 90%;
  2890. color: #c7254e;
  2891. white-space: nowrap;
  2892. background-color: #f9f2f4;
  2893. border-radius: 4px
  2894. }
  2895.  
  2896. pre {
  2897. display: block;
  2898. padding: 9.5px;
  2899. margin: 0 0 10px;
  2900. font-size: 13px;
  2901. line-height: 1.428571429;
  2902. color: #333;
  2903. word-break: break-all;
  2904. word-wrap: break-word;
  2905. background-color: #f5f5f5;
  2906. border: 1px solid #ccc;
  2907. border-radius: 4px
  2908. }
  2909.  
  2910. pre code {
  2911. padding: 0;
  2912. font-size: inherit;
  2913. color: inherit;
  2914. white-space: pre-wrap;
  2915. background-color: transparent;
  2916. border-radius: 0
  2917. }
  2918.  
  2919. .pre-scrollable {
  2920. max-height: 340px;
  2921. overflow-y: scroll
  2922. }
  2923.  
  2924. .container {
  2925. padding-right: 15px;
  2926. padding-left: 15px;
  2927. margin-right: auto;
  2928. margin-left: auto
  2929. }
  2930.  
  2931. .container:before,.container:after {
  2932. display: table;
  2933. content: " "
  2934. }
  2935.  
  2936. .container:after {
  2937. clear: both
  2938. }
  2939.  
  2940. .container:before,.container:after {
  2941. display: table;
  2942. content: " "
  2943. }
  2944.  
  2945. .container:after {
  2946. clear: both
  2947. }
  2948.  
  2949. .row {
  2950. margin-right: -15px;
  2951. margin-left: -15px
  2952. }
  2953.  
  2954. .row:before,.row:after {
  2955. display: table;
  2956. content: " "
  2957. }
  2958.  
  2959. .row:after {
  2960. clear: both
  2961. }
  2962.  
  2963. .row:before,.row:after {
  2964. display: table;
  2965. content: " "
  2966. }
  2967.  
  2968. .row:after {
  2969. clear: both
  2970. }
  2971.  
  2972. .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 {
  2973. position: relative;
  2974. min-height: 1px;
  2975. padding-right: 15px;
  2976. padding-left: 15px
  2977. }
  2978.  
  2979. .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 {
  2980. float: left
  2981. }
  2982.  
  2983. .col-xs-12 {
  2984. width: 100%
  2985. }
  2986.  
  2987. .col-xs-11 {
  2988. width: 91.66666666666666%
  2989. }
  2990.  
  2991. .col-xs-10 {
  2992. width: 83.33333333333334%
  2993. }
  2994.  
  2995. .col-xs-9 {
  2996. width: 75%
  2997. }
  2998.  
  2999. .col-xs-8 {
  3000. width: 66.66666666666666%
  3001. }
  3002.  
  3003. .col-xs-7 {
  3004. width: 58.333333333333336%
  3005. }
  3006.  
  3007. .col-xs-6 {
  3008. width: 50%
  3009. }
  3010.  
  3011. .col-xs-5 {
  3012. width: 41.66666666666667%
  3013. }
  3014.  
  3015. .col-xs-4 {
  3016. width: 33.33333333333333%
  3017. }
  3018.  
  3019. .col-xs-3 {
  3020. width: 25%
  3021. }
  3022.  
  3023. .col-xs-2 {
  3024. width: 16.666666666666664%
  3025. }
  3026.  
  3027. .col-xs-1 {
  3028. width: 8.333333333333332%
  3029. }
  3030.  
  3031. .col-xs-pull-12 {
  3032. right: 100%
  3033. }
  3034.  
  3035. .col-xs-pull-11 {
  3036. right: 91.66666666666666%
  3037. }
  3038.  
  3039. .col-xs-pull-10 {
  3040. right: 83.33333333333334%
  3041. }
  3042.  
  3043. .col-xs-pull-9 {
  3044. right: 75%
  3045. }
  3046.  
  3047. .col-xs-pull-8 {
  3048. right: 66.66666666666666%
  3049. }
  3050.  
  3051. .col-xs-pull-7 {
  3052. right: 58.333333333333336%
  3053. }
  3054.  
  3055. .col-xs-pull-6 {
  3056. right: 50%
  3057. }
  3058.  
  3059. .col-xs-pull-5 {
  3060. right: 41.66666666666667%
  3061. }
  3062.  
  3063. .col-xs-pull-4 {
  3064. right: 33.33333333333333%
  3065. }
  3066.  
  3067. .col-xs-pull-3 {
  3068. right: 25%
  3069. }
  3070.  
  3071. .col-xs-pull-2 {
  3072. right: 16.666666666666664%
  3073. }
  3074.  
  3075. .col-xs-pull-1 {
  3076. right: 8.333333333333332%
  3077. }
  3078.  
  3079. .col-xs-push-12 {
  3080. left: 100%
  3081. }
  3082.  
  3083. .col-xs-push-11 {
  3084. left: 91.66666666666666%
  3085. }
  3086.  
  3087. .col-xs-push-10 {
  3088. left: 83.33333333333334%
  3089. }
  3090.  
  3091. .col-xs-push-9 {
  3092. left: 75%
  3093. }
  3094.  
  3095. .col-xs-push-8 {
  3096. left: 66.66666666666666%
  3097. }
  3098.  
  3099. .col-xs-push-7 {
  3100. left: 58.333333333333336%
  3101. }
  3102.  
  3103. .col-xs-push-6 {
  3104. left: 50%
  3105. }
  3106.  
  3107. .col-xs-push-5 {
  3108. left: 41.66666666666667%
  3109. }
  3110.  
  3111. .col-xs-push-4 {
  3112. left: 33.33333333333333%
  3113. }
  3114.  
  3115. .col-xs-push-3 {
  3116. left: 25%
  3117. }
  3118.  
  3119. .col-xs-push-2 {
  3120. left: 16.666666666666664%
  3121. }
  3122.  
  3123. .col-xs-push-1 {
  3124. left: 8.333333333333332%
  3125. }
  3126.  
  3127. .col-xs-offset-12 {
  3128. margin-left: 100%
  3129. }
  3130.  
  3131. .col-xs-offset-11 {
  3132. margin-left: 91.66666666666666%
  3133. }
  3134.  
  3135. .col-xs-offset-10 {
  3136. margin-left: 83.33333333333334%
  3137. }
  3138.  
  3139. .col-xs-offset-9 {
  3140. margin-left: 75%
  3141. }
  3142.  
  3143. .col-xs-offset-8 {
  3144. margin-left: 66.66666666666666%
  3145. }
  3146.  
  3147. .col-xs-offset-7 {
  3148. margin-left: 58.333333333333336%
  3149. }
  3150.  
  3151. .col-xs-offset-6 {
  3152. margin-left: 50%
  3153. }
  3154.  
  3155. .col-xs-offset-5 {
  3156. margin-left: 41.66666666666667%
  3157. }
  3158.  
  3159. .col-xs-offset-4 {
  3160. margin-left: 33.33333333333333%
  3161. }
  3162.  
  3163. .col-xs-offset-3 {
  3164. margin-left: 25%
  3165. }
  3166.  
  3167. .col-xs-offset-2 {
  3168. margin-left: 16.666666666666664%
  3169. }
  3170.  
  3171. .col-xs-offset-1 {
  3172. margin-left: 8.333333333333332%
  3173. }
  3174.  
  3175. @media(min-width: 768px) {
  3176. .container {
  3177. width:100%
  3178. }
  3179.  
  3180. .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 {
  3181. float: left
  3182. }
  3183.  
  3184. .col-sm-12 {
  3185. width: 100%
  3186. }
  3187.  
  3188. .col-sm-11 {
  3189. width: 91.66666666666666%
  3190. }
  3191.  
  3192. .col-sm-10 {
  3193. width: 83.33333333333334%
  3194. }
  3195.  
  3196. .col-sm-9 {
  3197. width: 75%
  3198. }
  3199.  
  3200. .col-sm-8 {
  3201. width: 66.66666666666666%
  3202. }
  3203.  
  3204. .col-sm-7 {
  3205. width: 58.333333333333336%
  3206. }
  3207.  
  3208. .col-sm-6 {
  3209. width: 50%
  3210. }
  3211.  
  3212. .col-sm-5 {
  3213. width: 41.66666666666667%
  3214. }
  3215.  
  3216. .col-sm-4 {
  3217. width: 33.33333333333333%
  3218. }
  3219.  
  3220. .col-sm-3 {
  3221. width: 25%
  3222. }
  3223.  
  3224. .col-sm-2 {
  3225. width: 16.666666666666664%
  3226. }
  3227.  
  3228. .col-sm-1 {
  3229. width: 8.333333333333332%
  3230. }
  3231.  
  3232. .col-sm-pull-12 {
  3233. right: 100%
  3234. }
  3235.  
  3236. .col-sm-pull-11 {
  3237. right: 91.66666666666666%
  3238. }
  3239.  
  3240. .col-sm-pull-10 {
  3241. right: 83.33333333333334%
  3242. }
  3243.  
  3244. .col-sm-pull-9 {
  3245. right: 75%
  3246. }
  3247.  
  3248. .col-sm-pull-8 {
  3249. right: 66.66666666666666%
  3250. }
  3251.  
  3252. .col-sm-pull-7 {
  3253. right: 58.333333333333336%
  3254. }
  3255.  
  3256. .col-sm-pull-6 {
  3257. right: 50%
  3258. }
  3259.  
  3260. .col-sm-pull-5 {
  3261. right: 41.66666666666667%
  3262. }
  3263.  
  3264. .col-sm-pull-4 {
  3265. right: 33.33333333333333%
  3266. }
  3267.  
  3268. .col-sm-pull-3 {
  3269. right: 25%
  3270. }
  3271.  
  3272. .col-sm-pull-2 {
  3273. right: 16.666666666666664%
  3274. }
  3275.  
  3276. .col-sm-pull-1 {
  3277. right: 8.333333333333332%
  3278. }
  3279.  
  3280. .col-sm-push-12 {
  3281. left: 100%
  3282. }
  3283.  
  3284. .col-sm-push-11 {
  3285. left: 91.66666666666666%
  3286. }
  3287.  
  3288. .col-sm-push-10 {
  3289. left: 83.33333333333334%
  3290. }
  3291.  
  3292. .col-sm-push-9 {
  3293. left: 75%
  3294. }
  3295.  
  3296. .col-sm-push-8 {
  3297. left: 66.66666666666666%
  3298. }
  3299.  
  3300. .col-sm-push-7 {
  3301. left: 58.333333333333336%
  3302. }
  3303.  
  3304. .col-sm-push-6 {
  3305. left: 50%
  3306. }
  3307.  
  3308. .col-sm-push-5 {
  3309. left: 41.66666666666667%
  3310. }
  3311.  
  3312. .col-sm-push-4 {
  3313. left: 33.33333333333333%
  3314. }
  3315.  
  3316. .col-sm-push-3 {
  3317. left: 25%
  3318. }
  3319.  
  3320. .col-sm-push-2 {
  3321. left: 16.666666666666664%
  3322. }
  3323.  
  3324. .col-sm-push-1 {
  3325. left: 8.333333333333332%
  3326. }
  3327.  
  3328. .col-sm-offset-12 {
  3329. margin-left: 100%
  3330. }
  3331.  
  3332. .col-sm-offset-11 {
  3333. margin-left: 91.66666666666666%
  3334. }
  3335.  
  3336. .col-sm-offset-10 {
  3337. margin-left: 83.33333333333334%
  3338. }
  3339.  
  3340. .col-sm-offset-9 {
  3341. margin-left: 75%
  3342. }
  3343.  
  3344. .col-sm-offset-8 {
  3345. margin-left: 66.66666666666666%
  3346. }
  3347.  
  3348. .col-sm-offset-7 {
  3349. margin-left: 58.333333333333336%
  3350. }
  3351.  
  3352. .col-sm-offset-6 {
  3353. margin-left: 50%
  3354. }
  3355.  
  3356. .col-sm-offset-5 {
  3357. margin-left: 41.66666666666667%
  3358. }
  3359.  
  3360. .col-sm-offset-4 {
  3361. margin-left: 33.33333333333333%
  3362. }
  3363.  
  3364. .col-sm-offset-3 {
  3365. margin-left: 25%
  3366. }
  3367.  
  3368. .col-sm-offset-2 {
  3369. margin-left: 16.666666666666664%
  3370. }
  3371.  
  3372. .col-sm-offset-1 {
  3373. margin-left: 8.333333333333332%
  3374. }
  3375. }
  3376.  
  3377. @media(min-width: 992px) {
  3378. .container {
  3379. width:970px
  3380. }
  3381.  
  3382. .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 {
  3383. float: left
  3384. }
  3385.  
  3386. .col-md-12 {
  3387. width: 100%
  3388. }
  3389.  
  3390. .col-md-11 {
  3391. width: 91.66666666666666%
  3392. }
  3393.  
  3394. .col-md-10 {
  3395. width: 83.33333333333334%
  3396. }
  3397.  
  3398. .col-md-9 {
  3399. width: 75%
  3400. }
  3401.  
  3402. .col-md-8 {
  3403. width: 66.66666666666666%
  3404. }
  3405.  
  3406. .col-md-7 {
  3407. width: 58.333333333333336%
  3408. }
  3409.  
  3410. .col-md-6 {
  3411. width: 50%
  3412. }
  3413.  
  3414. .col-md-5 {
  3415. width: 41.66666666666667%
  3416. }
  3417.  
  3418. .col-md-4 {
  3419. width: 33.33333333333333%
  3420. }
  3421.  
  3422. .col-md-3 {
  3423. width: 25%
  3424. }
  3425.  
  3426. .col-md-2 {
  3427. width: 16.666666666666664%
  3428. }
  3429.  
  3430. .col-md-1 {
  3431. width: 8.333333333333332%
  3432. }
  3433.  
  3434. .col-md-pull-12 {
  3435. right: 100%
  3436. }
  3437.  
  3438. .col-md-pull-11 {
  3439. right: 91.66666666666666%
  3440. }
  3441.  
  3442. .col-md-pull-10 {
  3443. right: 83.33333333333334%
  3444. }
  3445.  
  3446. .col-md-pull-9 {
  3447. right: 75%
  3448. }
  3449.  
  3450. .col-md-pull-8 {
  3451. right: 66.66666666666666%
  3452. }
  3453.  
  3454. .col-md-pull-7 {
  3455. right: 58.333333333333336%
  3456. }
  3457.  
  3458. .col-md-pull-6 {
  3459. right: 50%
  3460. }
  3461.  
  3462. .col-md-pull-5 {
  3463. right: 41.66666666666667%
  3464. }
  3465.  
  3466. .col-md-pull-4 {
  3467. right: 33.33333333333333%
  3468. }
  3469.  
  3470. .col-md-pull-3 {
  3471. right: 25%
  3472. }
  3473.  
  3474. .col-md-pull-2 {
  3475. right: 16.666666666666664%
  3476. }
  3477.  
  3478. .col-md-pull-1 {
  3479. right: 8.333333333333332%
  3480. }
  3481.  
  3482. .col-md-push-12 {
  3483. left: 100%
  3484. }
  3485.  
  3486. .col-md-push-11 {
  3487. left: 91.66666666666666%
  3488. }
  3489.  
  3490. .col-md-push-10 {
  3491. left: 83.33333333333334%
  3492. }
  3493.  
  3494. .col-md-push-9 {
  3495. left: 75%
  3496. }
  3497.  
  3498. .col-md-push-8 {
  3499. left: 66.66666666666666%
  3500. }
  3501.  
  3502. .col-md-push-7 {
  3503. left: 58.333333333333336%
  3504. }
  3505.  
  3506. .col-md-push-6 {
  3507. left: 50%
  3508. }
  3509.  
  3510. .col-md-push-5 {
  3511. left: 41.66666666666667%
  3512. }
  3513.  
  3514. .col-md-push-4 {
  3515. left: 33.33333333333333%
  3516. }
  3517.  
  3518. .col-md-push-3 {
  3519. left: 25%
  3520. }
  3521.  
  3522. .col-md-push-2 {
  3523. left: 16.666666666666664%
  3524. }
  3525.  
  3526. .col-md-push-1 {
  3527. left: 8.333333333333332%
  3528. }
  3529.  
  3530. .col-md-offset-12 {
  3531. margin-left: 100%
  3532. }
  3533.  
  3534. .col-md-offset-11 {
  3535. margin-left: 91.66666666666666%
  3536. }
  3537.  
  3538. .col-md-offset-10 {
  3539. margin-left: 83.33333333333334%
  3540. }
  3541.  
  3542. .col-md-offset-9 {
  3543. margin-left: 75%
  3544. }
  3545.  
  3546. .col-md-offset-8 {
  3547. margin-left: 66.66666666666666%
  3548. }
  3549.  
  3550. .col-md-offset-7 {
  3551. margin-left: 58.333333333333336%
  3552. }
  3553.  
  3554. .col-md-offset-6 {
  3555. margin-left: 50%
  3556. }
  3557.  
  3558. .col-md-offset-5 {
  3559. margin-left: 41.66666666666667%
  3560. }
  3561.  
  3562. .col-md-offset-4 {
  3563. margin-left: 33.33333333333333%
  3564. }
  3565.  
  3566. .col-md-offset-3 {
  3567. margin-left: 25%
  3568. }
  3569.  
  3570. .col-md-offset-2 {
  3571. margin-left: 16.666666666666664%
  3572. }
  3573.  
  3574. .col-md-offset-1 {
  3575. margin-left: 8.333333333333332%
  3576. }
  3577. }
  3578.  
  3579. @media(min-width: 1200px) {
  3580. .container {
  3581. width:1170px
  3582. }
  3583.  
  3584. .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 {
  3585. float: left
  3586. }
  3587.  
  3588. .col-lg-12 {
  3589. width: 100%
  3590. }
  3591.  
  3592. .col-lg-11 {
  3593. width: 91.66666666666666%
  3594. }
  3595.  
  3596. .col-lg-10 {
  3597. width: 83.33333333333334%
  3598. }
  3599.  
  3600. .col-lg-9 {
  3601. width: 75%
  3602. }
  3603.  
  3604. .col-lg-8 {
  3605. width: 66.66666666666666%
  3606. }
  3607.  
  3608. .col-lg-7 {
  3609. width: 58.333333333333336%
  3610. }
  3611.  
  3612. .col-lg-6 {
  3613. width: 50%
  3614. }
  3615.  
  3616. .col-lg-5 {
  3617. width: 41.66666666666667%
  3618. }
  3619.  
  3620. .col-lg-4 {
  3621. width: 33.33333333333333%
  3622. }
  3623.  
  3624. .col-lg-3 {
  3625. width: 25%
  3626. }
  3627.  
  3628. .col-lg-2 {
  3629. width: 16.666666666666664%
  3630. }
  3631.  
  3632. .col-lg-1 {
  3633. width: 8.333333333333332%
  3634. }
  3635.  
  3636. .col-lg-pull-12 {
  3637. right: 100%
  3638. }
  3639.  
  3640. .col-lg-pull-11 {
  3641. right: 91.66666666666666%
  3642. }
  3643.  
  3644. .col-lg-pull-10 {
  3645. right: 83.33333333333334%
  3646. }
  3647.  
  3648. .col-lg-pull-9 {
  3649. right: 75%
  3650. }
  3651.  
  3652. .col-lg-pull-8 {
  3653. right: 66.66666666666666%
  3654. }
  3655.  
  3656. .col-lg-pull-7 {
  3657. right: 58.333333333333336%
  3658. }
  3659.  
  3660. .col-lg-pull-6 {
  3661. right: 50%
  3662. }
  3663.  
  3664. .col-lg-pull-5 {
  3665. right: 41.66666666666667%
  3666. }
  3667.  
  3668. .col-lg-pull-4 {
  3669. right: 33.33333333333333%
  3670. }
  3671.  
  3672. .col-lg-pull-3 {
  3673. right: 25%
  3674. }
  3675.  
  3676. .col-lg-pull-2 {
  3677. right: 16.666666666666664%
  3678. }
  3679.  
  3680. .col-lg-pull-1 {
  3681. right: 8.333333333333332%
  3682. }
  3683.  
  3684. .col-lg-push-12 {
  3685. left: 100%
  3686. }
  3687.  
  3688. .col-lg-push-11 {
  3689. left: 91.66666666666666%
  3690. }
  3691.  
  3692. .col-lg-push-10 {
  3693. left: 83.33333333333334%
  3694. }
  3695.  
  3696. .col-lg-push-9 {
  3697. left: 75%
  3698. }
  3699.  
  3700. .col-lg-push-8 {
  3701. left: 66.66666666666666%
  3702. }
  3703.  
  3704. .col-lg-push-7 {
  3705. left: 58.333333333333336%
  3706. }
  3707.  
  3708. .col-lg-push-6 {
  3709. left: 50%
  3710. }
  3711.  
  3712. .col-lg-push-5 {
  3713. left: 41.66666666666667%
  3714. }
  3715.  
  3716. .col-lg-push-4 {
  3717. left: 33.33333333333333%
  3718. }
  3719.  
  3720. .col-lg-push-3 {
  3721. left: 25%
  3722. }
  3723.  
  3724. .col-lg-push-2 {
  3725. left: 16.666666666666664%
  3726. }
  3727.  
  3728. .col-lg-push-1 {
  3729. left: 8.333333333333332%
  3730. }
  3731.  
  3732. .col-lg-offset-12 {
  3733. margin-left: 100%
  3734. }
  3735.  
  3736. .col-lg-offset-11 {
  3737. margin-left: 91.66666666666666%
  3738. }
  3739.  
  3740. .col-lg-offset-10 {
  3741. margin-left: 83.33333333333334%
  3742. }
  3743.  
  3744. .col-lg-offset-9 {
  3745. margin-left: 75%
  3746. }
  3747.  
  3748. .col-lg-offset-8 {
  3749. margin-left: 66.66666666666666%
  3750. }
  3751.  
  3752. .col-lg-offset-7 {
  3753. margin-left: 58.333333333333336%
  3754. }
  3755.  
  3756. .col-lg-offset-6 {
  3757. margin-left: 50%
  3758. }
  3759.  
  3760. .col-lg-offset-5 {
  3761. margin-left: 41.66666666666667%
  3762. }
  3763.  
  3764. .col-lg-offset-4 {
  3765. margin-left: 33.33333333333333%
  3766. }
  3767.  
  3768. .col-lg-offset-3 {
  3769. margin-left: 25%
  3770. }
  3771.  
  3772. .col-lg-offset-2 {
  3773. margin-left: 16.666666666666664%
  3774. }
  3775.  
  3776. .col-lg-offset-1 {
  3777. margin-left: 8.333333333333332%
  3778. }
  3779. }
  3780.  
  3781. table {
  3782. max-width: 100%;
  3783. background-color: transparent
  3784. }
  3785.  
  3786. th {
  3787. text-align: left
  3788. }
  3789.  
  3790. .table {
  3791. width: 100%;
  3792. margin-bottom: 20px
  3793. }
  3794.  
  3795. .table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td {
  3796. padding: 8px;
  3797. line-height: 1.428571429;
  3798. vertical-align: top;
  3799. border-top: 1px solid #ddd
  3800. }
  3801.  
  3802. .table>thead>tr>th {
  3803. vertical-align: bottom;
  3804. border-bottom: 2px solid #ddd
  3805. }
  3806.  
  3807. .table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td {
  3808. border-top: 0
  3809. }
  3810.  
  3811. .table>tbody+tbody {
  3812. border-top: 2px solid #ddd
  3813. }
  3814.  
  3815. .table .table {
  3816. background-color: #fff
  3817. }
  3818.  
  3819. .table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td {
  3820. padding: 5px
  3821. }
  3822.  
  3823. .table-bordered {
  3824. border: 1px solid #ddd
  3825. }
  3826.  
  3827. .table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td {
  3828. border: 1px solid #ddd
  3829. }
  3830.  
  3831. .table-bordered>thead>tr>th,.table-bordered>thead>tr>td {
  3832. border-bottom-width: 2px
  3833. }
  3834.  
  3835. .table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th {
  3836. background-color: #f9f9f9
  3837. }
  3838.  
  3839. .table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th {
  3840. background-color: #f5f5f5
  3841. }
  3842.  
  3843. table col[class*="col-"] {
  3844. display: table-column;
  3845. float: none
  3846. }
  3847.  
  3848. table td[class*="col-"],table th[class*="col-"] {
  3849. display: table-cell;
  3850. float: none
  3851. }
  3852.  
  3853. .table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th {
  3854. background-color: #f5f5f5
  3855. }
  3856.  
  3857. .table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th {
  3858. background-color: #dff0d8
  3859. }
  3860.  
  3861. .table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th {
  3862. background-color: #d0e9c6
  3863. }
  3864.  
  3865. .table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th {
  3866. background-color: #f2dede
  3867. }
  3868.  
  3869. .table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th {
  3870. background-color: #ebcccc
  3871. }
  3872.  
  3873. .table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th {
  3874. background-color: #fcf8e3
  3875. }
  3876.  
  3877. .table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th {
  3878. background-color: #faf2cc
  3879. }
  3880.  
  3881. @media(max-width: 767px) {
  3882. .table-responsive {
  3883. width:100%;
  3884. margin-bottom: 15px;
  3885. overflow-x: scroll;
  3886. overflow-y: hidden;
  3887. border: 1px solid #ddd;
  3888. -ms-overflow-style: -ms-autohiding-scrollbar;
  3889. -webkit-overflow-scrolling: touch
  3890. }
  3891.  
  3892. .table-responsive>.table {
  3893. margin-bottom: 0
  3894. }
  3895.  
  3896. .table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td {
  3897. white-space: nowrap
  3898. }
  3899.  
  3900. .table-responsive>.table-bordered {
  3901. border: 0
  3902. }
  3903.  
  3904. .table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child {
  3905. border-left: 0
  3906. }
  3907.  
  3908. .table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child {
  3909. border-right: 0
  3910. }
  3911.  
  3912. .table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td {
  3913. border-bottom: 0
  3914. }
  3915. }
  3916.  
  3917. fieldset {
  3918. padding: 0;
  3919. margin: 0;
  3920. border: 0
  3921. }
  3922.  
  3923. legend {
  3924. display: block;
  3925. width: 100%;
  3926. padding: 0;
  3927. margin-bottom: 20px;
  3928. font-size: 21px;
  3929. line-height: inherit;
  3930. color: #333;
  3931. border: 0;
  3932. border-bottom: 1px solid #e5e5e5
  3933. }
  3934.  
  3935. label {
  3936. display: inline-block;
  3937. margin-bottom: 5px;
  3938. font-weight: bold
  3939. }
  3940.  
  3941. input[type="search"] {
  3942. -webkit-box-sizing: border-box;
  3943. -moz-box-sizing: border-box;
  3944. box-sizing: border-box
  3945. }
  3946.  
  3947. input[type="radio"],input[type="checkbox"] {
  3948. margin: 4px 0 0;
  3949. margin-top: 1px \9;
  3950. line-height: normal
  3951. }
  3952.  
  3953. input[type="file"] {
  3954. display: block
  3955. }
  3956.  
  3957. select[multiple],select[size] {
  3958. height: auto
  3959. }
  3960.  
  3961. select optgroup {
  3962. font-family: inherit;
  3963. font-size: inherit;
  3964. font-style: inherit
  3965. }
  3966.  
  3967. input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus {
  3968. outline: thin dotted #333;
  3969. outline: 5px auto -webkit-focus-ring-color;
  3970. outline-offset: -2px
  3971. }
  3972.  
  3973. input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button {
  3974. height: auto
  3975. }
  3976.  
  3977. output {
  3978. display: block;
  3979. padding-top: 7px;
  3980. font-size: 14px;
  3981. line-height: 1.428571429;
  3982. color: #555;
  3983. vertical-align: middle
  3984. }
  3985.  
  3986. .form-control:-moz-placeholder {
  3987. color: #999
  3988. }
  3989.  
  3990. .form-control::-moz-placeholder {
  3991. color: #999
  3992. }
  3993.  
  3994. .form-control:-ms-input-placeholder {
  3995. color: #999
  3996. }
  3997.  
  3998. .form-control::-webkit-input-placeholder {
  3999. color: #999
  4000. }
  4001.  
  4002. .form-control {
  4003. display: block;
  4004. width: 100%;
  4005. height: 34px;
  4006. padding: 6px 12px;
  4007. font-size: 14px;
  4008. line-height: 1.428571429;
  4009. color: #555;
  4010. vertical-align: middle;
  4011. background-color: #fff;
  4012. background-image: none;
  4013. border: 1px solid #ccc;
  4014. border-radius: 4px;
  4015. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  4016. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  4017. -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  4018. transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s
  4019. }
  4020.  
  4021. .form-control:focus {
  4022. border-color: #66afe9;
  4023. outline: 0;
  4024. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  4025. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
  4026. }
  4027.  
  4028. .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {
  4029. cursor: not-allowed;
  4030. background-color: #eee
  4031. }
  4032.  
  4033. textarea.form-control {
  4034. height: auto
  4035. }
  4036.  
  4037. .form-group {
  4038. margin-bottom: 15px
  4039. }
  4040.  
  4041. .radio,.checkbox {
  4042. display: block;
  4043. min-height: 20px;
  4044. padding-left: 20px;
  4045. margin-top: 10px;
  4046. margin-bottom: 10px;
  4047. vertical-align: middle
  4048. }
  4049.  
  4050. .radio label,.checkbox label {
  4051. display: inline;
  4052. margin-bottom: 0;
  4053. font-weight: normal;
  4054. cursor: pointer
  4055. }
  4056.  
  4057. .radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"] {
  4058. float: left;
  4059. margin-left: -20px
  4060. }
  4061.  
  4062. .radio+.radio,.checkbox+.checkbox {
  4063. margin-top: -5px
  4064. }
  4065.  
  4066. .radio-inline,.checkbox-inline {
  4067. display: inline-block;
  4068. padding-left: 20px;
  4069. margin-bottom: 0;
  4070. font-weight: normal;
  4071. vertical-align: middle;
  4072. cursor: pointer
  4073. }
  4074.  
  4075. .radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline {
  4076. margin-top: 0;
  4077. margin-left: 10px
  4078. }
  4079.  
  4080. input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline {
  4081. cursor: not-allowed
  4082. }
  4083.  
  4084. .input-sm {
  4085. height: 30px;
  4086. padding: 5px 10px;
  4087. font-size: 12px;
  4088. line-height: 1.5;
  4089. border-radius: 3px
  4090. }
  4091.  
  4092. select.input-sm {
  4093. height: 30px;
  4094. line-height: 30px
  4095. }
  4096.  
  4097. textarea.input-sm {
  4098. height: auto
  4099. }
  4100.  
  4101. .input-lg {
  4102. height: 45px;
  4103. padding: 10px 16px;
  4104. font-size: 18px;
  4105. line-height: 1.33;
  4106. border-radius: 6px
  4107. }
  4108.  
  4109. select.input-lg {
  4110. height: 45px;
  4111. line-height: 45px
  4112. }
  4113.  
  4114. textarea.input-lg {
  4115. height: auto
  4116. }
  4117.  
  4118. .has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline {
  4119. color: #c09853
  4120. }
  4121.  
  4122. .has-warning .form-control {
  4123. border-color: #c09853;
  4124. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  4125. box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
  4126. }
  4127.  
  4128. .has-warning .form-control:focus {
  4129. border-color: #a47e3c;
  4130. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #dbc59e;
  4131. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #dbc59e
  4132. }
  4133.  
  4134. .has-warning .input-group-addon {
  4135. color: #c09853;
  4136. background-color: #fcf8e3;
  4137. border-color: #c09853
  4138. }
  4139.  
  4140. .has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline {
  4141. color: #b94a48
  4142. }
  4143.  
  4144. .has-error .form-control {
  4145. border-color: #b94a48;
  4146. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  4147. box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
  4148. }
  4149.  
  4150. .has-error .form-control:focus {
  4151. border-color: #953b39;
  4152. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;
  4153. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392
  4154. }
  4155.  
  4156. .has-error .input-group-addon {
  4157. color: #b94a48;
  4158. background-color: #f2dede;
  4159. border-color: #b94a48
  4160. }
  4161.  
  4162. .has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline {
  4163. color: #468847
  4164. }
  4165.  
  4166. .has-success .form-control {
  4167. border-color: #468847;
  4168. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  4169. box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
  4170. }
  4171.  
  4172. .has-success .form-control:focus {
  4173. border-color: #356635;
  4174. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;
  4175. box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b
  4176. }
  4177.  
  4178. .has-success .input-group-addon {
  4179. color: #468847;
  4180. background-color: #dff0d8;
  4181. border-color: #468847
  4182. }
  4183.  
  4184. .form-control-static {
  4185. margin-bottom: 0
  4186. }
  4187.  
  4188. .help-block {
  4189. display: block;
  4190. margin-top: 5px;
  4191. margin-bottom: 10px;
  4192. color: #737373
  4193. }
  4194.  
  4195. @media(min-width: 768px) {
  4196. .form-inline .form-group {
  4197. display:inline-block;
  4198. margin-bottom: 0;
  4199. vertical-align: middle
  4200. }
  4201.  
  4202. .form-inline .form-control {
  4203. display: inline-block
  4204. }
  4205.  
  4206. .form-inline .radio,.form-inline .checkbox {
  4207. display: inline-block;
  4208. padding-left: 0;
  4209. margin-top: 0;
  4210. margin-bottom: 0
  4211. }
  4212.  
  4213. .form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"] {
  4214. float: none;
  4215. margin-left: 0
  4216. }
  4217. }
  4218.  
  4219. .form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline {
  4220. padding-top: 7px;
  4221. margin-top: 0;
  4222. margin-bottom: 0
  4223. }
  4224.  
  4225. .form-horizontal .form-group {
  4226. margin-right: -15px;
  4227. margin-left: -15px
  4228. }
  4229.  
  4230. .form-horizontal .form-group:before,.form-horizontal .form-group:after {
  4231. display: table;
  4232. content: " "
  4233. }
  4234.  
  4235. .form-horizontal .form-group:after {
  4236. clear: both
  4237. }
  4238.  
  4239. .form-horizontal .form-group:before,.form-horizontal .form-group:after {
  4240. display: table;
  4241. content: " "
  4242. }
  4243.  
  4244. .form-horizontal .form-group:after {
  4245. clear: both
  4246. }
  4247.  
  4248. .form-horizontal .form-control-static {
  4249. padding-top: 7px
  4250. }
  4251.  
  4252. @media(min-width: 768px) {
  4253. .form-horizontal .control-label {
  4254. text-align:right
  4255. }
  4256. }
  4257.  
  4258. .btn {
  4259. display: inline-block;
  4260. padding: 6px 12px;
  4261. margin-bottom: 0;
  4262. font-size: 14px;
  4263. font-weight: normal;
  4264. line-height: 1.428571429;
  4265. text-align: center;
  4266. white-space: nowrap;
  4267. vertical-align: middle;
  4268. cursor: pointer;
  4269. background-image: none;
  4270. border: 1px solid transparent;
  4271. border-radius: 4px;
  4272. -webkit-user-select: none;
  4273. -moz-user-select: none;
  4274. -ms-user-select: none;
  4275. -o-user-select: none;
  4276. user-select: none
  4277. }
  4278.  
  4279. .btn:focus {
  4280. outline: thin dotted #333;
  4281. outline: 5px auto -webkit-focus-ring-color;
  4282. outline-offset: -2px
  4283. }
  4284.  
  4285. .btn:hover,.btn:focus {
  4286. color: #333;
  4287. text-decoration: none
  4288. }
  4289.  
  4290. .btn:active,.btn.active {
  4291. background-image: none;
  4292. outline: 0;
  4293. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  4294. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  4295. }
  4296.  
  4297. .btn.disabled,.btn[disabled],fieldset[disabled] .btn {
  4298. pointer-events: none;
  4299. cursor: not-allowed;
  4300. opacity: .65;
  4301. filter: alpha(opacity=65);
  4302. -webkit-box-shadow: none;
  4303. box-shadow: none
  4304. }
  4305.  
  4306. .btn-default {
  4307. color: #333;
  4308. background-color: #fff;
  4309. border-color: #ccc
  4310. }
  4311.  
  4312. .btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default {
  4313. color: #333;
  4314. background-color: #ebebeb;
  4315. border-color: #adadad
  4316. }
  4317.  
  4318. .btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default {
  4319. background-image: none
  4320. }
  4321.  
  4322. .btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active {
  4323. background-color: #fff;
  4324. border-color: #ccc
  4325. }
  4326.  
  4327. .btn-primary {
  4328. color: #fff;
  4329. background-color: #428bca;
  4330. border-color: #357ebd
  4331. }
  4332.  
  4333. .btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary {
  4334. color: #fff;
  4335. background-color: #3276b1;
  4336. border-color: #285e8e
  4337. }
  4338.  
  4339. .btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary {
  4340. background-image: none
  4341. }
  4342.  
  4343. .btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active {
  4344. background-color: #428bca;
  4345. border-color: #357ebd
  4346. }
  4347.  
  4348. .btn-warning {
  4349. color: #fff;
  4350. background-color: #f0ad4e;
  4351. border-color: #eea236
  4352. }
  4353.  
  4354. .btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning {
  4355. color: #fff;
  4356. background-color: #ed9c28;
  4357. border-color: #d58512
  4358. }
  4359.  
  4360. .btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning {
  4361. background-image: none
  4362. }
  4363.  
  4364. .btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active {
  4365. background-color: #f0ad4e;
  4366. border-color: #eea236
  4367. }
  4368.  
  4369. .btn-danger {
  4370. color: #fff;
  4371. background-color: #d9534f;
  4372. border-color: #d43f3a
  4373. }
  4374.  
  4375. .btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger {
  4376. color: #fff;
  4377. background-color: #d2322d;
  4378. border-color: #ac2925
  4379. }
  4380.  
  4381. .btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger {
  4382. background-image: none
  4383. }
  4384.  
  4385. .btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active {
  4386. background-color: #d9534f;
  4387. border-color: #d43f3a
  4388. }
  4389.  
  4390. .btn-success {
  4391. color: #fff;
  4392. background-color: #5cb85c;
  4393. border-color: #4cae4c
  4394. }
  4395.  
  4396. .btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success {
  4397. color: #fff;
  4398. background-color: #47a447;
  4399. border-color: #398439
  4400. }
  4401.  
  4402. .btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success {
  4403. background-image: none
  4404. }
  4405.  
  4406. .btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active {
  4407. background-color: #5cb85c;
  4408. border-color: #4cae4c
  4409. }
  4410.  
  4411. .btn-info {
  4412. color: #fff;
  4413. background-color: #5bc0de;
  4414. border-color: #46b8da
  4415. }
  4416.  
  4417. .btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info {
  4418. color: #fff;
  4419. background-color: #39b3d7;
  4420. border-color: #269abc
  4421. }
  4422.  
  4423. .btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info {
  4424. background-image: none
  4425. }
  4426.  
  4427. .btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active {
  4428. background-color: #5bc0de;
  4429. border-color: #46b8da
  4430. }
  4431.  
  4432. .btn-link {
  4433. font-weight: normal;
  4434. color: #428bca;
  4435. cursor: pointer;
  4436. border-radius: 0
  4437. }
  4438.  
  4439. .btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link {
  4440. background-color: transparent;
  4441. -webkit-box-shadow: none;
  4442. box-shadow: none
  4443. }
  4444.  
  4445. .btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active {
  4446. border-color: transparent
  4447. }
  4448.  
  4449. .btn-link:hover,.btn-link:focus {
  4450. color: #2a6496;
  4451. text-decoration: underline;
  4452. background-color: transparent
  4453. }
  4454.  
  4455. .btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus {
  4456. color: #999;
  4457. text-decoration: none
  4458. }
  4459.  
  4460. .btn-lg {
  4461. padding: 10px 16px;
  4462. font-size: 18px;
  4463. line-height: 1.33;
  4464. border-radius: 6px
  4465. }
  4466.  
  4467. .btn-sm,.btn-xs {
  4468. padding: 5px 10px;
  4469. font-size: 12px;
  4470. line-height: 1.5;
  4471. border-radius: 3px
  4472. }
  4473.  
  4474. .btn-xs {
  4475. padding: 1px 5px
  4476. }
  4477.  
  4478. .btn-block {
  4479. display: block;
  4480. width: 100%;
  4481. padding-right: 0;
  4482. padding-left: 0
  4483. }
  4484.  
  4485. .btn-block+.btn-block {
  4486. margin-top: 5px
  4487. }
  4488.  
  4489. input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block {
  4490. width: 100%
  4491. }
  4492.  
  4493. .fade {
  4494. opacity: 0;
  4495. -webkit-transition: opacity .15s linear;
  4496. transition: opacity .15s linear
  4497. }
  4498.  
  4499. .fade.in {
  4500. opacity: 1
  4501. }
  4502.  
  4503. .collapse {
  4504. display: none
  4505. }
  4506.  
  4507. .collapse.in {
  4508. display: block
  4509. }
  4510.  
  4511. .collapsing {
  4512. position: relative;
  4513. height: 0;
  4514. overflow: hidden;
  4515. -webkit-transition: height .35s ease;
  4516. transition: height .35s ease
  4517. }
  4518.  
  4519. @font-face {
  4520. font-family: 'Glyphicons Halflings';
  4521. src: url('../fonts/glyphicons-halflings-regular.eot');
  4522. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')
  4523. }
  4524.  
  4525. .glyphicon {
  4526. position: relative;
  4527. top: 1px;
  4528. display: inline-block;
  4529. font-family: 'Glyphicons Halflings';
  4530. -webkit-font-smoothing: antialiased;
  4531. font-style: normal;
  4532. font-weight: normal;
  4533. line-height: 1;
  4534. -moz-osx-font-smoothing: grayscale
  4535. }
  4536.  
  4537. .glyphicon:empty {
  4538. width: 1em
  4539. }
  4540.  
  4541. .glyphicon-asterisk:before {
  4542. content: "*"
  4543. }
  4544.  
  4545. .glyphicon-plus:before {
  4546. content: "+"
  4547. }
  4548.  
  4549. .glyphicon-euro:before {
  4550. content: "€"
  4551. }
  4552.  
  4553. .glyphicon-minus:before {
  4554. content: "−"
  4555. }
  4556.  
  4557. .glyphicon-cloud:before {
  4558. content: "☁"
  4559. }
  4560.  
  4561. .glyphicon-envelope:before {
  4562. content: "✉"
  4563. }
  4564.  
  4565. .glyphicon-pencil:before {
  4566. content: "✏"
  4567. }
  4568.  
  4569. .glyphicon-glass:before {
  4570. content: ""
  4571. }
  4572.  
  4573. .glyphicon-music:before {
  4574. content: ""
  4575. }
  4576.  
  4577. .glyphicon-search:before {
  4578. content: ""
  4579. }
  4580.  
  4581. .glyphicon-heart:before {
  4582. content: ""
  4583. }
  4584.  
  4585. .glyphicon-star:before {
  4586. content: ""
  4587. }
  4588.  
  4589. .glyphicon-star-empty:before {
  4590. content: ""
  4591. }
  4592.  
  4593. .glyphicon-user:before {
  4594. content: ""
  4595. }
  4596.  
  4597. .glyphicon-film:before {
  4598. content: ""
  4599. }
  4600.  
  4601. .glyphicon-th-large:before {
  4602. content: ""
  4603. }
  4604.  
  4605. .glyphicon-th:before {
  4606. content: ""
  4607. }
  4608.  
  4609. .glyphicon-th-list:before {
  4610. content: ""
  4611. }
  4612.  
  4613. .glyphicon-ok:before {
  4614. content: ""
  4615. }
  4616.  
  4617. .glyphicon-remove:before {
  4618. content: ""
  4619. }
  4620.  
  4621. .glyphicon-zoom-in:before {
  4622. content: ""
  4623. }
  4624.  
  4625. .glyphicon-zoom-out:before {
  4626. content: ""
  4627. }
  4628.  
  4629. .glyphicon-off:before {
  4630. content: ""
  4631. }
  4632.  
  4633. .glyphicon-signal:before {
  4634. content: ""
  4635. }
  4636.  
  4637. .glyphicon-cog:before {
  4638. content: ""
  4639. }
  4640.  
  4641. .glyphicon-trash:before {
  4642. content: ""
  4643. }
  4644.  
  4645. .glyphicon-home:before {
  4646. content: ""
  4647. }
  4648.  
  4649. .glyphicon-file:before {
  4650. content: ""
  4651. }
  4652.  
  4653. .glyphicon-time:before {
  4654. content: ""
  4655. }
  4656.  
  4657. .glyphicon-road:before {
  4658. content: ""
  4659. }
  4660.  
  4661. .glyphicon-download-alt:before {
  4662. content: ""
  4663. }
  4664.  
  4665. .glyphicon-download:before {
  4666. content: ""
  4667. }
  4668.  
  4669. .glyphicon-upload:before {
  4670. content: ""
  4671. }
  4672.  
  4673. .glyphicon-inbox:before {
  4674. content: ""
  4675. }
  4676.  
  4677. .glyphicon-play-circle:before {
  4678. content: ""
  4679. }
  4680.  
  4681. .glyphicon-repeat:before {
  4682. content: ""
  4683. }
  4684.  
  4685. .glyphicon-refresh:before {
  4686. content: ""
  4687. }
  4688.  
  4689. .glyphicon-list-alt:before {
  4690. content: ""
  4691. }
  4692.  
  4693. .glyphicon-lock:before {
  4694. content: ""
  4695. }
  4696.  
  4697. .glyphicon-flag:before {
  4698. content: ""
  4699. }
  4700.  
  4701. .glyphicon-headphones:before {
  4702. content: ""
  4703. }
  4704.  
  4705. .glyphicon-volume-off:before {
  4706. content: ""
  4707. }
  4708.  
  4709. .glyphicon-volume-down:before {
  4710. content: ""
  4711. }
  4712.  
  4713. .glyphicon-volume-up:before {
  4714. content: ""
  4715. }
  4716.  
  4717. .glyphicon-qrcode:before {
  4718. content: ""
  4719. }
  4720.  
  4721. .glyphicon-barcode:before {
  4722. content: ""
  4723. }
  4724.  
  4725. .glyphicon-tag:before {
  4726. content: ""
  4727. }
  4728.  
  4729. .glyphicon-tags:before {
  4730. content: ""
  4731. }
  4732.  
  4733. .glyphicon-book:before {
  4734. content: ""
  4735. }
  4736.  
  4737. .glyphicon-bookmark:before {
  4738. content: ""
  4739. }
  4740.  
  4741. .glyphicon-print:before {
  4742. content: ""
  4743. }
  4744.  
  4745. .glyphicon-camera:before {
  4746. content: ""
  4747. }
  4748.  
  4749. .glyphicon-font:before {
  4750. content: ""
  4751. }
  4752.  
  4753. .glyphicon-bold:before {
  4754. content: ""
  4755. }
  4756.  
  4757. .glyphicon-italic:before {
  4758. content: ""
  4759. }
  4760.  
  4761. .glyphicon-text-height:before {
  4762. content: ""
  4763. }
  4764.  
  4765. .glyphicon-text-width:before {
  4766. content: ""
  4767. }
  4768.  
  4769. .glyphicon-align-left:before {
  4770. content: ""
  4771. }
  4772.  
  4773. .glyphicon-align-center:before {
  4774. content: ""
  4775. }
  4776.  
  4777. .glyphicon-align-right:before {
  4778. content: ""
  4779. }
  4780.  
  4781. .glyphicon-align-justify:before {
  4782. content: ""
  4783. }
  4784.  
  4785. .glyphicon-list:before {
  4786. content: ""
  4787. }
  4788.  
  4789. .glyphicon-indent-left:before {
  4790. content: ""
  4791. }
  4792.  
  4793. .glyphicon-indent-right:before {
  4794. content: ""
  4795. }
  4796.  
  4797. .glyphicon-facetime-video:before {
  4798. content: ""
  4799. }
  4800.  
  4801. .glyphicon-picture:before {
  4802. content: ""
  4803. }
  4804.  
  4805. .glyphicon-map-marker:before {
  4806. content: ""
  4807. }
  4808.  
  4809. .glyphicon-adjust:before {
  4810. content: ""
  4811. }
  4812.  
  4813. .glyphicon-tint:before {
  4814. content: ""
  4815. }
  4816.  
  4817. .glyphicon-edit:before {
  4818. content: ""
  4819. }
  4820.  
  4821. .glyphicon-share:before {
  4822. content: ""
  4823. }
  4824.  
  4825. .glyphicon-check:before {
  4826. content: ""
  4827. }
  4828.  
  4829. .glyphicon-move:before {
  4830. content: ""
  4831. }
  4832.  
  4833. .glyphicon-step-backward:before {
  4834. content: ""
  4835. }
  4836.  
  4837. .glyphicon-fast-backward:before {
  4838. content: ""
  4839. }
  4840.  
  4841. .glyphicon-backward:before {
  4842. content: ""
  4843. }
  4844.  
  4845. .glyphicon-play:before {
  4846. content: ""
  4847. }
  4848.  
  4849. .glyphicon-pause:before {
  4850. content: ""
  4851. }
  4852.  
  4853. .glyphicon-stop:before {
  4854. content: ""
  4855. }
  4856.  
  4857. .glyphicon-forward:before {
  4858. content: ""
  4859. }
  4860.  
  4861. .glyphicon-fast-forward:before {
  4862. content: ""
  4863. }
  4864.  
  4865. .glyphicon-step-forward:before {
  4866. content: ""
  4867. }
  4868.  
  4869. .glyphicon-eject:before {
  4870. content: ""
  4871. }
  4872.  
  4873. .glyphicon-chevron-left:before {
  4874. content: ""
  4875. }
  4876.  
  4877. .glyphicon-chevron-right:before {
  4878. content: ""
  4879. }
  4880.  
  4881. .glyphicon-plus-sign:before {
  4882. content: ""
  4883. }
  4884.  
  4885. .glyphicon-minus-sign:before {
  4886. content: ""
  4887. }
  4888.  
  4889. .glyphicon-remove-sign:before {
  4890. content: ""
  4891. }
  4892.  
  4893. .glyphicon-ok-sign:before {
  4894. content: ""
  4895. }
  4896.  
  4897. .glyphicon-question-sign:before {
  4898. content: ""
  4899. }
  4900.  
  4901. .glyphicon-info-sign:before {
  4902. content: ""
  4903. }
  4904.  
  4905. .glyphicon-screenshot:before {
  4906. content: ""
  4907. }
  4908.  
  4909. .glyphicon-remove-circle:before {
  4910. content: ""
  4911. }
  4912.  
  4913. .glyphicon-ok-circle:before {
  4914. content: ""
  4915. }
  4916.  
  4917. .glyphicon-ban-circle:before {
  4918. content: ""
  4919. }
  4920.  
  4921. .glyphicon-arrow-left:before {
  4922. content: ""
  4923. }
  4924.  
  4925. .glyphicon-arrow-right:before {
  4926. content: ""
  4927. }
  4928.  
  4929. .glyphicon-arrow-up:before {
  4930. content: ""
  4931. }
  4932.  
  4933. .glyphicon-arrow-down:before {
  4934. content: ""
  4935. }
  4936.  
  4937. .glyphicon-share-alt:before {
  4938. content: ""
  4939. }
  4940.  
  4941. .glyphicon-resize-full:before {
  4942. content: ""
  4943. }
  4944.  
  4945. .glyphicon-resize-small:before {
  4946. content: ""
  4947. }
  4948.  
  4949. .glyphicon-exclamation-sign:before {
  4950. content: ""
  4951. }
  4952.  
  4953. .glyphicon-gift:before {
  4954. content: ""
  4955. }
  4956.  
  4957. .glyphicon-leaf:before {
  4958. content: ""
  4959. }
  4960.  
  4961. .glyphicon-fire:before {
  4962. content: ""
  4963. }
  4964.  
  4965. .glyphicon-eye-open:before {
  4966. content: ""
  4967. }
  4968.  
  4969. .glyphicon-eye-close:before {
  4970. content: ""
  4971. }
  4972.  
  4973. .glyphicon-warning-sign:before {
  4974. content: ""
  4975. }
  4976.  
  4977. .glyphicon-plane:before {
  4978. content: ""
  4979. }
  4980.  
  4981. .glyphicon-calendar:before {
  4982. content: ""
  4983. }
  4984.  
  4985. .glyphicon-random:before {
  4986. content: ""
  4987. }
  4988.  
  4989. .glyphicon-comment:before {
  4990. content: ""
  4991. }
  4992.  
  4993. .glyphicon-magnet:before {
  4994. content: ""
  4995. }
  4996.  
  4997. .glyphicon-chevron-up:before {
  4998. content: ""
  4999. }
  5000.  
  5001. .glyphicon-chevron-down:before {
  5002. content: ""
  5003. }
  5004.  
  5005. .glyphicon-retweet:before {
  5006. content: ""
  5007. }
  5008.  
  5009. .glyphicon-shopping-cart:before {
  5010. content: ""
  5011. }
  5012.  
  5013. .glyphicon-folder-close:before {
  5014. content: ""
  5015. }
  5016.  
  5017. .glyphicon-folder-open:before {
  5018. content: ""
  5019. }
  5020.  
  5021. .glyphicon-resize-vertical:before {
  5022. content: ""
  5023. }
  5024.  
  5025. .glyphicon-resize-horizontal:before {
  5026. content: ""
  5027. }
  5028.  
  5029. .glyphicon-hdd:before {
  5030. content: ""
  5031. }
  5032.  
  5033. .glyphicon-bullhorn:before {
  5034. content: ""
  5035. }
  5036.  
  5037. .glyphicon-bell:before {
  5038. content: ""
  5039. }
  5040.  
  5041. .glyphicon-certificate:before {
  5042. content: ""
  5043. }
  5044.  
  5045. .glyphicon-thumbs-up:before {
  5046. content: ""
  5047. }
  5048.  
  5049. .glyphicon-thumbs-down:before {
  5050. content: ""
  5051. }
  5052.  
  5053. .glyphicon-hand-right:before {
  5054. content: ""
  5055. }
  5056.  
  5057. .glyphicon-hand-left:before {
  5058. content: ""
  5059. }
  5060.  
  5061. .glyphicon-hand-up:before {
  5062. content: ""
  5063. }
  5064.  
  5065. .glyphicon-hand-down:before {
  5066. content: ""
  5067. }
  5068.  
  5069. .glyphicon-circle-arrow-right:before {
  5070. content: ""
  5071. }
  5072.  
  5073. .glyphicon-circle-arrow-left:before {
  5074. content: ""
  5075. }
  5076.  
  5077. .glyphicon-circle-arrow-up:before {
  5078. content: ""
  5079. }
  5080.  
  5081. .glyphicon-circle-arrow-down:before {
  5082. content: ""
  5083. }
  5084.  
  5085. .glyphicon-globe:before {
  5086. content: ""
  5087. }
  5088.  
  5089. .glyphicon-wrench:before {
  5090. content: ""
  5091. }
  5092.  
  5093. .glyphicon-tasks:before {
  5094. content: ""
  5095. }
  5096.  
  5097. .glyphicon-filter:before {
  5098. content: ""
  5099. }
  5100.  
  5101. .glyphicon-briefcase:before {
  5102. content: ""
  5103. }
  5104.  
  5105. .glyphicon-fullscreen:before {
  5106. content: ""
  5107. }
  5108.  
  5109. .glyphicon-dashboard:before {
  5110. content: ""
  5111. }
  5112.  
  5113. .glyphicon-paperclip:before {
  5114. content: ""
  5115. }
  5116.  
  5117. .glyphicon-heart-empty:before {
  5118. content: ""
  5119. }
  5120.  
  5121. .glyphicon-link:before {
  5122. content: ""
  5123. }
  5124.  
  5125. .glyphicon-phone:before {
  5126. content: ""
  5127. }
  5128.  
  5129. .glyphicon-pushpin:before {
  5130. content: ""
  5131. }
  5132.  
  5133. .glyphicon-usd:before {
  5134. content: ""
  5135. }
  5136.  
  5137. .glyphicon-gbp:before {
  5138. content: ""
  5139. }
  5140.  
  5141. .glyphicon-sort:before {
  5142. content: ""
  5143. }
  5144.  
  5145. .glyphicon-sort-by-alphabet:before {
  5146. content: ""
  5147. }
  5148.  
  5149. .glyphicon-sort-by-alphabet-alt:before {
  5150. content: ""
  5151. }
  5152.  
  5153. .glyphicon-sort-by-order:before {
  5154. content: ""
  5155. }
  5156.  
  5157. .glyphicon-sort-by-order-alt:before {
  5158. content: ""
  5159. }
  5160.  
  5161. .glyphicon-sort-by-attributes:before {
  5162. content: ""
  5163. }
  5164.  
  5165. .glyphicon-sort-by-attributes-alt:before {
  5166. content: ""
  5167. }
  5168.  
  5169. .glyphicon-unchecked:before {
  5170. content: ""
  5171. }
  5172.  
  5173. .glyphicon-expand:before {
  5174. content: ""
  5175. }
  5176.  
  5177. .glyphicon-collapse-down:before {
  5178. content: ""
  5179. }
  5180.  
  5181. .glyphicon-collapse-up:before {
  5182. content: ""
  5183. }
  5184.  
  5185. .glyphicon-log-in:before {
  5186. content: ""
  5187. }
  5188.  
  5189. .glyphicon-flash:before {
  5190. content: ""
  5191. }
  5192.  
  5193. .glyphicon-log-out:before {
  5194. content: ""
  5195. }
  5196.  
  5197. .glyphicon-new-window:before {
  5198. content: ""
  5199. }
  5200.  
  5201. .glyphicon-record:before {
  5202. content: ""
  5203. }
  5204.  
  5205. .glyphicon-save:before {
  5206. content: ""
  5207. }
  5208.  
  5209. .glyphicon-open:before {
  5210. content: ""
  5211. }
  5212.  
  5213. .glyphicon-saved:before {
  5214. content: ""
  5215. }
  5216.  
  5217. .glyphicon-import:before {
  5218. content: ""
  5219. }
  5220.  
  5221. .glyphicon-export:before {
  5222. content: ""
  5223. }
  5224.  
  5225. .glyphicon-send:before {
  5226. content: ""
  5227. }
  5228.  
  5229. .glyphicon-floppy-disk:before {
  5230. content: ""
  5231. }
  5232.  
  5233. .glyphicon-floppy-saved:before {
  5234. content: ""
  5235. }
  5236.  
  5237. .glyphicon-floppy-remove:before {
  5238. content: ""
  5239. }
  5240.  
  5241. .glyphicon-floppy-save:before {
  5242. content: ""
  5243. }
  5244.  
  5245. .glyphicon-floppy-open:before {
  5246. content: ""
  5247. }
  5248.  
  5249. .glyphicon-credit-card:before {
  5250. content: ""
  5251. }
  5252.  
  5253. .glyphicon-transfer:before {
  5254. content: ""
  5255. }
  5256.  
  5257. .glyphicon-cutlery:before {
  5258. content: ""
  5259. }
  5260.  
  5261. .glyphicon-header:before {
  5262. content: ""
  5263. }
  5264.  
  5265. .glyphicon-compressed:before {
  5266. content: ""
  5267. }
  5268.  
  5269. .glyphicon-earphone:before {
  5270. content: ""
  5271. }
  5272.  
  5273. .glyphicon-phone-alt:before {
  5274. content: ""
  5275. }
  5276.  
  5277. .glyphicon-tower:before {
  5278. content: ""
  5279. }
  5280.  
  5281. .glyphicon-stats:before {
  5282. content: ""
  5283. }
  5284.  
  5285. .glyphicon-sd-video:before {
  5286. content: ""
  5287. }
  5288.  
  5289. .glyphicon-hd-video:before {
  5290. content: ""
  5291. }
  5292.  
  5293. .glyphicon-subtitles:before {
  5294. content: ""
  5295. }
  5296.  
  5297. .glyphicon-sound-stereo:before {
  5298. content: ""
  5299. }
  5300.  
  5301. .glyphicon-sound-dolby:before {
  5302. content: ""
  5303. }
  5304.  
  5305. .glyphicon-sound-5-1:before {
  5306. content: ""
  5307. }
  5308.  
  5309. .glyphicon-sound-6-1:before {
  5310. content: ""
  5311. }
  5312.  
  5313. .glyphicon-sound-7-1:before {
  5314. content: ""
  5315. }
  5316.  
  5317. .glyphicon-copyright-mark:before {
  5318. content: ""
  5319. }
  5320.  
  5321. .glyphicon-registration-mark:before {
  5322. content: ""
  5323. }
  5324.  
  5325. .glyphicon-cloud-download:before {
  5326. content: ""
  5327. }
  5328.  
  5329. .glyphicon-cloud-upload:before {
  5330. content: ""
  5331. }
  5332.  
  5333. .glyphicon-tree-conifer:before {
  5334. content: ""
  5335. }
  5336.  
  5337. .glyphicon-tree-deciduous:before {
  5338. content: ""
  5339. }
  5340.  
  5341. .caret {
  5342. display: inline-block;
  5343. width: 0;
  5344. height: 0;
  5345. margin-left: 2px;
  5346. vertical-align: middle;
  5347. border-top: 4px solid #000;
  5348. border-right: 4px solid transparent;
  5349. border-bottom: 0 dotted;
  5350. border-left: 4px solid transparent
  5351. }
  5352.  
  5353. .dropdown {
  5354. position: relative
  5355. }
  5356.  
  5357. .dropdown-toggle:focus {
  5358. outline: 0
  5359. }
  5360.  
  5361. .dropdown-menu {
  5362. position: absolute;
  5363. top: 100%;
  5364. left: 0;
  5365. z-index: 1000;
  5366. display: none;
  5367. float: left;
  5368. min-width: 160px;
  5369. padding: 5px 0;
  5370. margin: 2px 0 0;
  5371. font-size: 14px;
  5372. list-style: none;
  5373. background-color: #fff;
  5374. border: 1px solid #ccc;
  5375. border: 1px solid rgba(0,0,0,.15);
  5376. border-radius: 4px;
  5377. -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  5378. box-shadow: 0 6px 12px rgba(0,0,0,.175);
  5379. background-clip: padding-box
  5380. }
  5381.  
  5382. .dropdown-menu.pull-right {
  5383. right: 0;
  5384. left: auto
  5385. }
  5386.  
  5387. .dropdown-menu .divider {
  5388. height: 1px;
  5389. margin: 9px 0;
  5390. overflow: hidden;
  5391. background-color: #e5e5e5
  5392. }
  5393.  
  5394. .dropdown-menu>li>a {
  5395. display: block;
  5396. padding: 3px 20px;
  5397. clear: both;
  5398. font-weight: normal;
  5399. line-height: 1.428571429;
  5400. color: #333;
  5401. white-space: nowrap
  5402. }
  5403.  
  5404. .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus {
  5405. color: #262626;
  5406. text-decoration: none;
  5407. background-color: #f5f5f5
  5408. }
  5409.  
  5410. .dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus {
  5411. color: #fff;
  5412. text-decoration: none;
  5413. background-color: #428bca;
  5414. outline: 0
  5415. }
  5416.  
  5417. .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus {
  5418. color: #999
  5419. }
  5420.  
  5421. .dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus {
  5422. text-decoration: none;
  5423. cursor: not-allowed;
  5424. background-color: transparent;
  5425. background-image: none;
  5426. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
  5427. }
  5428.  
  5429. .open>.dropdown-menu {
  5430. display: block
  5431. }
  5432.  
  5433. .open>a {
  5434. outline: 0
  5435. }
  5436.  
  5437. .dropdown-header {
  5438. display: block;
  5439. padding: 3px 20px;
  5440. font-size: 12px;
  5441. line-height: 1.428571429;
  5442. color: #999
  5443. }
  5444.  
  5445. .dropdown-backdrop {
  5446. position: fixed;
  5447. top: 0;
  5448. right: 0;
  5449. bottom: 0;
  5450. left: 0;
  5451. z-index: 990
  5452. }
  5453.  
  5454. .pull-right>.dropdown-menu {
  5455. right: 0;
  5456. left: auto
  5457. }
  5458.  
  5459. .dropup .caret,.navbar-fixed-bottom .dropdown .caret {
  5460. border-top: 0 dotted;
  5461. border-bottom: 4px solid #000;
  5462. content: ""
  5463. }
  5464.  
  5465. .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu {
  5466. top: auto;
  5467. bottom: 100%;
  5468. margin-bottom: 1px
  5469. }
  5470.  
  5471. @media(min-width: 768px) {
  5472. .navbar-right .dropdown-menu {
  5473. right:0;
  5474. left: auto
  5475. }
  5476. }
  5477.  
  5478. .btn-default .caret {
  5479. border-top-color: #333
  5480. }
  5481.  
  5482. .btn-primary .caret,.btn-success .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret {
  5483. border-top-color: #fff
  5484. }
  5485.  
  5486. .dropup .btn-default .caret {
  5487. border-bottom-color: #333
  5488. }
  5489.  
  5490. .dropup .btn-primary .caret,.dropup .btn-success .caret,.dropup .btn-warning .caret,.dropup .btn-danger .caret,.dropup .btn-info .caret {
  5491. border-bottom-color: #fff
  5492. }
  5493.  
  5494. .btn-group,.btn-group-vertical {
  5495. position: relative;
  5496. display: inline-block;
  5497. vertical-align: middle
  5498. }
  5499.  
  5500. .btn-group>.btn,.btn-group-vertical>.btn {
  5501. position: relative;
  5502. float: left
  5503. }
  5504.  
  5505. .btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active {
  5506. z-index: 2
  5507. }
  5508.  
  5509. .btn-group>.btn:focus,.btn-group-vertical>.btn:focus {
  5510. outline: none
  5511. }
  5512.  
  5513. .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group {
  5514. margin-left: -1px
  5515. }
  5516.  
  5517. .btn-toolbar:before,.btn-toolbar:after {
  5518. display: table;
  5519. content: " "
  5520. }
  5521.  
  5522. .btn-toolbar:after {
  5523. clear: both
  5524. }
  5525.  
  5526. .btn-toolbar:before,.btn-toolbar:after {
  5527. display: table;
  5528. content: " "
  5529. }
  5530.  
  5531. .btn-toolbar:after {
  5532. clear: both
  5533. }
  5534.  
  5535. .btn-toolbar .btn-group {
  5536. float: left
  5537. }
  5538.  
  5539. .btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group {
  5540. margin-left: 5px
  5541. }
  5542.  
  5543. .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  5544. border-radius: 0
  5545. }
  5546.  
  5547. .btn-group>.btn:first-child {
  5548. margin-left: 0
  5549. }
  5550.  
  5551. .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
  5552. border-top-right-radius: 0;
  5553. border-bottom-right-radius: 0
  5554. }
  5555.  
  5556. .btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child) {
  5557. border-bottom-left-radius: 0;
  5558. border-top-left-radius: 0
  5559. }
  5560.  
  5561. .btn-group>.btn-group {
  5562. float: left
  5563. }
  5564.  
  5565. .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
  5566. border-radius: 0
  5567. }
  5568.  
  5569. .btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle {
  5570. border-top-right-radius: 0;
  5571. border-bottom-right-radius: 0
  5572. }
  5573.  
  5574. .btn-group>.btn-group:last-child>.btn:first-child {
  5575. border-bottom-left-radius: 0;
  5576. border-top-left-radius: 0
  5577. }
  5578.  
  5579. .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle {
  5580. outline: 0
  5581. }
  5582.  
  5583. .btn-group-xs>.btn {
  5584. padding: 5px 10px;
  5585. padding: 1px 5px;
  5586. font-size: 12px;
  5587. line-height: 1.5;
  5588. border-radius: 3px
  5589. }
  5590.  
  5591. .btn-group-sm>.btn {
  5592. padding: 5px 10px;
  5593. font-size: 12px;
  5594. line-height: 1.5;
  5595. border-radius: 3px
  5596. }
  5597.  
  5598. .btn-group-lg>.btn {
  5599. padding: 10px 16px;
  5600. font-size: 18px;
  5601. line-height: 1.33;
  5602. border-radius: 6px
  5603. }
  5604.  
  5605. .btn-group>.btn+.dropdown-toggle {
  5606. padding-right: 8px;
  5607. padding-left: 8px
  5608. }
  5609.  
  5610. .btn-group>.btn-lg+.dropdown-toggle {
  5611. padding-right: 12px;
  5612. padding-left: 12px
  5613. }
  5614.  
  5615. .btn-group.open .dropdown-toggle {
  5616. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  5617. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  5618. }
  5619.  
  5620. .btn-group.open .dropdown-toggle.btn-link {
  5621. -webkit-box-shadow: none;
  5622. box-shadow: none
  5623. }
  5624.  
  5625. .btn .caret {
  5626. margin-left: 0
  5627. }
  5628.  
  5629. .btn-lg .caret {
  5630. border-width: 5px 5px 0;
  5631. border-bottom-width: 0
  5632. }
  5633.  
  5634. .dropup .btn-lg .caret {
  5635. border-width: 0 5px 5px
  5636. }
  5637.  
  5638. .btn-group-vertical>.btn,.btn-group-vertical>.btn-group {
  5639. display: block;
  5640. float: none;
  5641. width: 100%;
  5642. max-width: 100%
  5643. }
  5644.  
  5645. .btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after {
  5646. display: table;
  5647. content: " "
  5648. }
  5649.  
  5650. .btn-group-vertical>.btn-group:after {
  5651. clear: both
  5652. }
  5653.  
  5654. .btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after {
  5655. display: table;
  5656. content: " "
  5657. }
  5658.  
  5659. .btn-group-vertical>.btn-group:after {
  5660. clear: both
  5661. }
  5662.  
  5663. .btn-group-vertical>.btn-group>.btn {
  5664. float: none
  5665. }
  5666.  
  5667. .btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group {
  5668. margin-top: -1px;
  5669. margin-left: 0
  5670. }
  5671.  
  5672. .btn-group-vertical>.btn:not(:first-child):not(:last-child) {
  5673. border-radius: 0
  5674. }
  5675.  
  5676. .btn-group-vertical>.btn:first-child:not(:last-child) {
  5677. border-top-right-radius: 4px;
  5678. border-bottom-right-radius: 0;
  5679. border-bottom-left-radius: 0
  5680. }
  5681.  
  5682. .btn-group-vertical>.btn:last-child:not(:first-child) {
  5683. border-top-right-radius: 0;
  5684. border-bottom-left-radius: 4px;
  5685. border-top-left-radius: 0
  5686. }
  5687.  
  5688. .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
  5689. border-radius: 0
  5690. }
  5691.  
  5692. .btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle {
  5693. border-bottom-right-radius: 0;
  5694. border-bottom-left-radius: 0
  5695. }
  5696.  
  5697. .btn-group-vertical>.btn-group:last-child>.btn:first-child {
  5698. border-top-right-radius: 0;
  5699. border-top-left-radius: 0
  5700. }
  5701.  
  5702. .btn-group-justified {
  5703. display: table;
  5704. width: 100%;
  5705. border-collapse: separate;
  5706. table-layout: fixed
  5707. }
  5708.  
  5709. .btn-group-justified .btn {
  5710. display: table-cell;
  5711. float: none;
  5712. width: 1%
  5713. }
  5714.  
  5715. [data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"] {
  5716. display: none
  5717. }
  5718.  
  5719. .input-group {
  5720. position: relative;
  5721. display: table;
  5722. border-collapse: separate
  5723. }
  5724.  
  5725. .input-group.col {
  5726. float: none;
  5727. padding-right: 0;
  5728. padding-left: 0
  5729. }
  5730.  
  5731. .input-group .form-control {
  5732. width: 100%;
  5733. margin-bottom: 0
  5734. }
  5735.  
  5736. .input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn {
  5737. height: 45px;
  5738. padding: 10px 16px;
  5739. font-size: 18px;
  5740. line-height: 1.33;
  5741. border-radius: 6px
  5742. }
  5743.  
  5744. select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn {
  5745. height: 45px;
  5746. line-height: 45px
  5747. }
  5748.  
  5749. textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn {
  5750. height: auto
  5751. }
  5752.  
  5753. .input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn {
  5754. height: 30px;
  5755. padding: 5px 10px;
  5756. font-size: 12px;
  5757. line-height: 1.5;
  5758. border-radius: 3px
  5759. }
  5760.  
  5761. select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn {
  5762. height: 30px;
  5763. line-height: 30px
  5764. }
  5765.  
  5766. textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn {
  5767. height: auto
  5768. }
  5769.  
  5770. .input-group-addon,.input-group-btn,.input-group .form-control {
  5771. display: table-cell
  5772. }
  5773.  
  5774. .input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child) {
  5775. border-radius: 0
  5776. }
  5777.  
  5778. .input-group-addon,.input-group-btn {
  5779. width: 1%;
  5780. white-space: nowrap;
  5781. vertical-align: middle
  5782. }
  5783.  
  5784. .input-group-addon {
  5785. padding: 6px 12px;
  5786. font-size: 14px;
  5787. font-weight: normal;
  5788. line-height: 1;
  5789. color: #555;
  5790. text-align: center;
  5791. background-color: #eee;
  5792. border: 1px solid #ccc;
  5793. border-radius: 4px
  5794. }
  5795.  
  5796. .input-group-addon.input-sm {
  5797. padding: 5px 10px;
  5798. font-size: 12px;
  5799. border-radius: 3px
  5800. }
  5801.  
  5802. .input-group-addon.input-lg {
  5803. padding: 10px 16px;
  5804. font-size: 18px;
  5805. border-radius: 6px
  5806. }
  5807.  
  5808. .input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"] {
  5809. margin-top: 0
  5810. }
  5811.  
  5812. .input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
  5813. border-top-right-radius: 0;
  5814. border-bottom-right-radius: 0
  5815. }
  5816.  
  5817. .input-group-addon:first-child {
  5818. border-right: 0
  5819. }
  5820.  
  5821. .input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child) {
  5822. border-bottom-left-radius: 0;
  5823. border-top-left-radius: 0
  5824. }
  5825.  
  5826. .input-group-addon:last-child {
  5827. border-left: 0
  5828. }
  5829.  
  5830. .input-group-btn {
  5831. position: relative;
  5832. white-space: nowrap
  5833. }
  5834.  
  5835. .input-group-btn:first-child>.btn {
  5836. margin-right: -1px
  5837. }
  5838.  
  5839. .input-group-btn:last-child>.btn {
  5840. margin-left: -1px
  5841. }
  5842.  
  5843. .input-group-btn>.btn {
  5844. position: relative
  5845. }
  5846.  
  5847. .input-group-btn>.btn+.btn {
  5848. margin-left: -4px
  5849. }
  5850.  
  5851. .input-group-btn>.btn:hover,.input-group-btn>.btn:active {
  5852. z-index: 2
  5853. }
  5854.  
  5855. .nav {
  5856. padding-left: 0;
  5857. margin-bottom: 0;
  5858. list-style: none
  5859. }
  5860.  
  5861. .nav:before,.nav:after {
  5862. display: table;
  5863. content: " "
  5864. }
  5865.  
  5866. .nav:after {
  5867. clear: both
  5868. }
  5869.  
  5870. .nav:before,.nav:after {
  5871. display: table;
  5872. content: " "
  5873. }
  5874.  
  5875. .nav:after {
  5876. clear: both
  5877. }
  5878.  
  5879. .nav>li {
  5880. position: relative;
  5881. display: block
  5882. }
  5883.  
  5884. .nav>li>a {
  5885. position: relative;
  5886. display: block;
  5887. padding: 10px 15px
  5888. }
  5889.  
  5890. .nav>li>a:hover,.nav>li>a:focus {
  5891. text-decoration: none;
  5892. background-color: #eee
  5893. }
  5894.  
  5895. .nav>li.disabled>a {
  5896. color: #999
  5897. }
  5898.  
  5899. .nav>li.disabled>a:hover,.nav>li.disabled>a:focus {
  5900. color: #999;
  5901. text-decoration: none;
  5902. cursor: not-allowed;
  5903. background-color: transparent
  5904. }
  5905.  
  5906. .nav .open>a,.nav .open>a:hover,.nav .open>a:focus {
  5907. background-color: #eee;
  5908. border-color: #428bca
  5909. }
  5910.  
  5911. .nav .open>a .caret,.nav .open>a:hover .caret,.nav .open>a:focus .caret {
  5912. border-top-color: #2a6496;
  5913. border-bottom-color: #2a6496
  5914. }
  5915.  
  5916. .nav .nav-divider {
  5917. height: 1px;
  5918. margin: 9px 0;
  5919. overflow: hidden;
  5920. background-color: #e5e5e5
  5921. }
  5922.  
  5923. .nav>li>a>img {
  5924. max-width: none
  5925. }
  5926.  
  5927. .nav-tabs {
  5928. border-bottom: 1px solid #ddd
  5929. }
  5930.  
  5931. .nav-tabs>li {
  5932. float: left;
  5933. margin-bottom: -1px
  5934. }
  5935.  
  5936. .nav-tabs>li>a {
  5937. margin-right: 2px;
  5938. line-height: 1.428571429;
  5939. border: 1px solid transparent;
  5940. border-radius: 4px 4px 0 0
  5941. }
  5942.  
  5943. .nav-tabs>li>a:hover {
  5944. border-color: #eee #eee #ddd
  5945. }
  5946.  
  5947. .nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus {
  5948. color: #555;
  5949. cursor: default;
  5950. background-color: #fff;
  5951. border: 1px solid #ddd;
  5952. border-bottom-color: transparent
  5953. }
  5954.  
  5955. .nav-tabs.nav-justified {
  5956. width: 100%;
  5957. border-bottom: 0
  5958. }
  5959.  
  5960. .nav-tabs.nav-justified>li {
  5961. float: none
  5962. }
  5963.  
  5964. .nav-tabs.nav-justified>li>a {
  5965. margin-bottom: 5px;
  5966. text-align: center
  5967. }
  5968.  
  5969. .nav-tabs.nav-justified>.dropdown .dropdown-menu {
  5970. top: auto;
  5971. left: auto
  5972. }
  5973.  
  5974. @media(min-width: 768px) {
  5975. .nav-tabs.nav-justified>li {
  5976. display:table-cell;
  5977. width: 1%
  5978. }
  5979.  
  5980. .nav-tabs.nav-justified>li>a {
  5981. margin-bottom: 0
  5982. }
  5983. }
  5984.  
  5985. .nav-tabs.nav-justified>li>a {
  5986. margin-right: 0;
  5987. border-radius: 4px
  5988. }
  5989.  
  5990. .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus {
  5991. border: 1px solid #ddd
  5992. }
  5993.  
  5994. @media(min-width: 768px) {
  5995. .nav-tabs.nav-justified>li>a {
  5996. border-bottom:1px solid #ddd;
  5997. border-radius: 4px 4px 0 0
  5998. }
  5999.  
  6000. .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus {
  6001. border-bottom-color: #fff
  6002. }
  6003. }
  6004.  
  6005. .nav-pills>li {
  6006. float: left
  6007. }
  6008.  
  6009. .nav-pills>li>a {
  6010. border-radius: 4px
  6011. }
  6012.  
  6013. .nav-pills>li+li {
  6014. margin-left: 2px
  6015. }
  6016.  
  6017. .nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus {
  6018. color: #fff;
  6019. background-color: #428bca
  6020. }
  6021.  
  6022. .nav-pills>li.active>a .caret,.nav-pills>li.active>a:hover .caret,.nav-pills>li.active>a:focus .caret {
  6023. border-top-color: #fff;
  6024. border-bottom-color: #fff
  6025. }
  6026.  
  6027. .nav-stacked>li {
  6028. float: none
  6029. }
  6030.  
  6031. .nav-stacked>li+li {
  6032. margin-top: 2px;
  6033. margin-left: 0
  6034. }
  6035.  
  6036. .nav-justified {
  6037. width: 100%
  6038. }
  6039.  
  6040. .nav-justified>li {
  6041. float: none
  6042. }
  6043.  
  6044. .nav-justified>li>a {
  6045. margin-bottom: 5px;
  6046. text-align: center
  6047. }
  6048.  
  6049. .nav-justified>.dropdown .dropdown-menu {
  6050. top: auto;
  6051. left: auto
  6052. }
  6053.  
  6054. @media(min-width: 768px) {
  6055. .nav-justified>li {
  6056. display:table-cell;
  6057. width: 1%
  6058. }
  6059.  
  6060. .nav-justified>li>a {
  6061. margin-bottom: 0
  6062. }
  6063. }
  6064.  
  6065. .nav-tabs-justified {
  6066. border-bottom: 0
  6067. }
  6068.  
  6069. .nav-tabs-justified>li>a {
  6070. margin-right: 0;
  6071. border-radius: 4px
  6072. }
  6073.  
  6074. .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus {
  6075. border: 1px solid #ddd
  6076. }
  6077.  
  6078. @media(min-width: 768px) {
  6079. .nav-tabs-justified>li>a {
  6080. border-bottom:1px solid #ddd;
  6081. border-radius: 4px 4px 0 0
  6082. }
  6083.  
  6084. .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus {
  6085. border-bottom-color: #fff
  6086. }
  6087. }
  6088.  
  6089. .tab-content>.tab-pane {
  6090. display: none
  6091. }
  6092.  
  6093. .tab-content>.active {
  6094. display: block
  6095. }
  6096.  
  6097. .nav .caret {
  6098. border-top-color: #428bca;
  6099. border-bottom-color: #428bca
  6100. }
  6101.  
  6102. .nav a:hover .caret {
  6103. border-top-color: #2a6496;
  6104. border-bottom-color: #2a6496
  6105. }
  6106.  
  6107. .nav-tabs .dropdown-menu {
  6108. margin-top: -1px;
  6109. border-top-right-radius: 0;
  6110. border-top-left-radius: 0
  6111. }
  6112.  
  6113. .navbar {
  6114. position: relative;
  6115. min-height: 50px;
  6116. margin-bottom: 20px;
  6117. border: 1px solid transparent
  6118. }
  6119.  
  6120. .navbar:before,.navbar:after {
  6121. display: table;
  6122. content: " "
  6123. }
  6124.  
  6125. .navbar:after {
  6126. clear: both
  6127. }
  6128.  
  6129. .navbar:before,.navbar:after {
  6130. display: table;
  6131. content: " "
  6132. }
  6133.  
  6134. .navbar:after {
  6135. clear: both
  6136. }
  6137.  
  6138. @media(min-width: 768px) {
  6139. .navbar {
  6140. border-radius:4px
  6141. }
  6142. }
  6143.  
  6144. .navbar-header:before,.navbar-header:after {
  6145. display: table;
  6146. content: " "
  6147. }
  6148.  
  6149. .navbar-header:after {
  6150. clear: both
  6151. }
  6152.  
  6153. .navbar-header:before,.navbar-header:after {
  6154. display: table;
  6155. content: " "
  6156. }
  6157.  
  6158. .navbar-header:after {
  6159. clear: both
  6160. }
  6161.  
  6162. @media(min-width: 768px) {
  6163. .navbar-header {
  6164. float:left
  6165. }
  6166. }
  6167.  
  6168. .navbar-collapse {
  6169. max-height: 340px;
  6170. padding-right: 15px;
  6171. padding-left: 15px;
  6172. overflow-x: visible;
  6173. border-top: 1px solid transparent;
  6174. box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  6175. -webkit-overflow-scrolling: touch
  6176. }
  6177.  
  6178. .navbar-collapse:before,.navbar-collapse:after {
  6179. display: table;
  6180. content: " "
  6181. }
  6182.  
  6183. .navbar-collapse:after {
  6184. clear: both
  6185. }
  6186.  
  6187. .navbar-collapse:before,.navbar-collapse:after {
  6188. display: table;
  6189. content: " "
  6190. }
  6191.  
  6192. .navbar-collapse:after {
  6193. clear: both
  6194. }
  6195.  
  6196. .navbar-collapse.in {
  6197. overflow-y: auto
  6198. }
  6199.  
  6200. @media(min-width: 768px) {
  6201. .navbar-collapse {
  6202. width:auto;
  6203. border-top: 0;
  6204. box-shadow: none
  6205. }
  6206.  
  6207. .navbar-collapse.collapse {
  6208. display: block!important;
  6209. height: auto!important;
  6210. padding-bottom: 0;
  6211. overflow: visible!important
  6212. }
  6213.  
  6214. .navbar-collapse.in {
  6215. overflow-y: auto
  6216. }
  6217.  
  6218. .navbar-collapse .navbar-nav.navbar-left:first-child {
  6219. margin-left: -15px
  6220. }
  6221.  
  6222. .navbar-collapse .navbar-nav.navbar-right:last-child {
  6223. margin-right: -15px
  6224. }
  6225.  
  6226. .navbar-collapse .navbar-text:last-child {
  6227. margin-right: 0
  6228. }
  6229. }
  6230.  
  6231. .container>.navbar-header,.container>.navbar-collapse {
  6232. margin-right: -15px;
  6233. margin-left: -15px
  6234. }
  6235.  
  6236. @media(min-width: 768px) {
  6237. .container>.navbar-header,.container>.navbar-collapse {
  6238. margin-right:0;
  6239. margin-left: 0
  6240. }
  6241. }
  6242.  
  6243. .navbar-static-top {
  6244. z-index: 1000;
  6245. border-width: 0 0 1px
  6246. }
  6247.  
  6248. @media(min-width: 768px) {
  6249. .navbar-static-top {
  6250. border-radius:0
  6251. }
  6252. }
  6253.  
  6254. .navbar-fixed-top,.navbar-fixed-bottom {
  6255. position: fixed;
  6256. right: 0;
  6257. left: 0;
  6258. z-index: 1030
  6259. }
  6260.  
  6261. @media(min-width: 768px) {
  6262. .navbar-fixed-top,.navbar-fixed-bottom {
  6263. border-radius:0
  6264. }
  6265. }
  6266.  
  6267. .navbar-fixed-top {
  6268. top: 0;
  6269. border-width: 0 0 1px
  6270. }
  6271.  
  6272. .navbar-fixed-bottom {
  6273. bottom: 0;
  6274. margin-bottom: 0;
  6275. border-width: 1px 0 0
  6276. }
  6277.  
  6278. .navbar-brand {
  6279. float: left;
  6280. padding: 15px 15px;
  6281. font-size: 18px;
  6282. line-height: 20px
  6283. }
  6284.  
  6285. .navbar-brand:hover,.navbar-brand:focus {
  6286. text-decoration: none
  6287. }
  6288.  
  6289. @media(min-width: 768px) {
  6290. .navbar>.container .navbar-brand {
  6291. margin-left:-15px
  6292. }
  6293. }
  6294.  
  6295. .navbar-toggle {
  6296. position: relative;
  6297. float: right;
  6298. padding: 9px 10px;
  6299. margin-top: 8px;
  6300. margin-right: 15px;
  6301. margin-bottom: 8px;
  6302. background-color: transparent;
  6303. border: 1px solid transparent;
  6304. border-radius: 4px
  6305. }
  6306.  
  6307. .navbar-toggle .icon-bar {
  6308. display: block;
  6309. width: 22px;
  6310. height: 2px;
  6311. border-radius: 1px
  6312. }
  6313.  
  6314. .navbar-toggle .icon-bar+.icon-bar {
  6315. margin-top: 4px
  6316. }
  6317.  
  6318. @media(min-width: 768px) {
  6319. .navbar-toggle {
  6320. display:none
  6321. }
  6322. }
  6323.  
  6324. .navbar-nav {
  6325. margin: 7.5px -15px
  6326. }
  6327.  
  6328. .navbar-nav>li>a {
  6329. padding-top: 10px;
  6330. padding-bottom: 10px;
  6331. line-height: 20px
  6332. }
  6333.  
  6334. @media(max-width: 767px) {
  6335. .navbar-nav .open .dropdown-menu {
  6336. position:static;
  6337. float: none;
  6338. width: auto;
  6339. margin-top: 0;
  6340. background-color: transparent;
  6341. border: 0;
  6342. box-shadow: none
  6343. }
  6344.  
  6345. .navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header {
  6346. padding: 5px 15px 5px 25px
  6347. }
  6348.  
  6349. .navbar-nav .open .dropdown-menu>li>a {
  6350. line-height: 20px
  6351. }
  6352.  
  6353. .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus {
  6354. background-image: none
  6355. }
  6356. }
  6357.  
  6358. @media(min-width: 768px) {
  6359. .navbar-nav {
  6360. float:left;
  6361. margin: 0
  6362. }
  6363.  
  6364. .navbar-nav>li {
  6365. float: left
  6366. }
  6367.  
  6368. .navbar-nav>li>a {
  6369. padding-top: 15px;
  6370. padding-bottom: 15px
  6371. }
  6372. }
  6373.  
  6374. @media(min-width: 768px) {
  6375. .navbar-left {
  6376. float:left!important
  6377. }
  6378.  
  6379. .navbar-right {
  6380. float: right!important
  6381. }
  6382. }
  6383.  
  6384. .navbar-form {
  6385. padding: 10px 15px;
  6386. margin-top: 8px;
  6387. margin-right: -15px;
  6388. margin-bottom: 8px;
  6389. margin-left: -15px;
  6390. border-top: 1px solid transparent;
  6391. border-bottom: 1px solid transparent;
  6392. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);
  6393. box-shadow: inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)
  6394. }
  6395.  
  6396. @media(min-width: 768px) {
  6397. .navbar-form .form-group {
  6398. display:inline-block;
  6399. margin-bottom: 0;
  6400. vertical-align: middle
  6401. }
  6402.  
  6403. .navbar-form .form-control {
  6404. display: inline-block
  6405. }
  6406.  
  6407. .navbar-form .radio,.navbar-form .checkbox {
  6408. display: inline-block;
  6409. padding-left: 0;
  6410. margin-top: 0;
  6411. margin-bottom: 0
  6412. }
  6413.  
  6414. .navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"] {
  6415. float: none;
  6416. margin-left: 0
  6417. }
  6418. }
  6419.  
  6420. @media(max-width: 767px) {
  6421. .navbar-form .form-group {
  6422. margin-bottom:5px
  6423. }
  6424. }
  6425.  
  6426. @media(min-width: 768px) {
  6427. .navbar-form {
  6428. width:auto;
  6429. padding-top: 0;
  6430. padding-bottom: 0;
  6431. margin-right: 0;
  6432. margin-left: 0;
  6433. border: 0;
  6434. -webkit-box-shadow: none;
  6435. box-shadow: none
  6436. }
  6437. }
  6438.  
  6439. .navbar-nav>li>.dropdown-menu {
  6440. margin-top: 0;
  6441. border-top-right-radius: 0;
  6442. border-top-left-radius: 0
  6443. }
  6444.  
  6445. .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
  6446. border-bottom-right-radius: 0;
  6447. border-bottom-left-radius: 0
  6448. }
  6449.  
  6450. .navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right {
  6451. right: 0;
  6452. left: auto
  6453. }
  6454.  
  6455. .navbar-btn {
  6456. margin-top: 8px;
  6457. margin-bottom: 8px
  6458. }
  6459.  
  6460. .navbar-text {
  6461. float: left;
  6462. margin-top: 15px;
  6463. margin-bottom: 15px
  6464. }
  6465.  
  6466. @media(min-width: 768px) {
  6467. .navbar-text {
  6468. margin-right:15px;
  6469. margin-left: 15px
  6470. }
  6471. }
  6472.  
  6473. .navbar-default {
  6474. background-color: #f8f8f8;
  6475. border-color: #e7e7e7
  6476. }
  6477.  
  6478. .navbar-default .navbar-brand {
  6479. color: #777
  6480. }
  6481.  
  6482. .navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus {
  6483. color: #5e5e5e;
  6484. background-color: transparent
  6485. }
  6486.  
  6487. .navbar-default .navbar-text {
  6488. color: #777
  6489. }
  6490.  
  6491. .navbar-default .navbar-nav>li>a {
  6492. color: #777
  6493. }
  6494.  
  6495. .navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus {
  6496. color: #333;
  6497. background-color: transparent
  6498. }
  6499.  
  6500. .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus {
  6501. color: #555;
  6502. background-color: #e7e7e7
  6503. }
  6504.  
  6505. .navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus {
  6506. color: #ccc;
  6507. background-color: transparent
  6508. }
  6509.  
  6510. .navbar-default .navbar-toggle {
  6511. border-color: #ddd
  6512. }
  6513.  
  6514. .navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus {
  6515. background-color: #ddd
  6516. }
  6517.  
  6518. .navbar-default .navbar-toggle .icon-bar {
  6519. background-color: #ccc
  6520. }
  6521.  
  6522. .navbar-default .navbar-collapse,.navbar-default .navbar-form {
  6523. border-color: #e7e7e7
  6524. }
  6525.  
  6526. .navbar-default .navbar-nav>.dropdown>a:hover .caret,.navbar-default .navbar-nav>.dropdown>a:focus .caret {
  6527. border-top-color: #333;
  6528. border-bottom-color: #333
  6529. }
  6530.  
  6531. .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus {
  6532. color: #555;
  6533. background-color: #e7e7e7
  6534. }
  6535.  
  6536. .navbar-default .navbar-nav>.open>a .caret,.navbar-default .navbar-nav>.open>a:hover .caret,.navbar-default .navbar-nav>.open>a:focus .caret {
  6537. border-top-color: #555;
  6538. border-bottom-color: #555
  6539. }
  6540.  
  6541. .navbar-default .navbar-nav>.dropdown>a .caret {
  6542. border-top-color: #777;
  6543. border-bottom-color: #777
  6544. }
  6545.  
  6546. @media(max-width: 767px) {
  6547. .navbar-default .navbar-nav .open .dropdown-menu>li>a {
  6548. color:#777
  6549. }
  6550.  
  6551. .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
  6552. color: #333;
  6553. background-color: transparent
  6554. }
  6555.  
  6556. .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
  6557. color: #555;
  6558. background-color: #e7e7e7
  6559. }
  6560.  
  6561. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
  6562. color: #ccc;
  6563. background-color: transparent
  6564. }
  6565. }
  6566.  
  6567. .navbar-default .navbar-link {
  6568. color: #777
  6569. }
  6570.  
  6571. .navbar-default .navbar-link:hover {
  6572. color: #333
  6573. }
  6574.  
  6575. .navbar-inverse {
  6576. background-color: #222;
  6577. border-color: #080808
  6578. }
  6579.  
  6580. .navbar-inverse .navbar-brand {
  6581. color: #999
  6582. }
  6583.  
  6584. .navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus {
  6585. color: #fff;
  6586. background-color: transparent
  6587. }
  6588.  
  6589. .navbar-inverse .navbar-text {
  6590. color: #999
  6591. }
  6592.  
  6593. .navbar-inverse .navbar-nav>li>a {
  6594. color: #999
  6595. }
  6596.  
  6597. .navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus {
  6598. color: #fff;
  6599. background-color: transparent
  6600. }
  6601.  
  6602. .navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus {
  6603. color: #fff;
  6604. background-color: #080808
  6605. }
  6606.  
  6607. .navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus {
  6608. color: #444;
  6609. background-color: transparent
  6610. }
  6611.  
  6612. .navbar-inverse .navbar-toggle {
  6613. border-color: #333
  6614. }
  6615.  
  6616. .navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus {
  6617. background-color: #333
  6618. }
  6619.  
  6620. .navbar-inverse .navbar-toggle .icon-bar {
  6621. background-color: #fff
  6622. }
  6623.  
  6624. .navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form {
  6625. border-color: #101010
  6626. }
  6627.  
  6628. .navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus {
  6629. color: #fff;
  6630. background-color: #080808
  6631. }
  6632.  
  6633. .navbar-inverse .navbar-nav>.dropdown>a:hover .caret {
  6634. border-top-color: #fff;
  6635. border-bottom-color: #fff
  6636. }
  6637.  
  6638. .navbar-inverse .navbar-nav>.dropdown>a .caret {
  6639. border-top-color: #999;
  6640. border-bottom-color: #999
  6641. }
  6642.  
  6643. .navbar-inverse .navbar-nav>.open>a .caret,.navbar-inverse .navbar-nav>.open>a:hover .caret,.navbar-inverse .navbar-nav>.open>a:focus .caret {
  6644. border-top-color: #fff;
  6645. border-bottom-color: #fff
  6646. }
  6647.  
  6648. @media(max-width: 767px) {
  6649. .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
  6650. border-color:#080808
  6651. }
  6652.  
  6653. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
  6654. color: #999
  6655. }
  6656.  
  6657. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
  6658. color: #fff;
  6659. background-color: transparent
  6660. }
  6661.  
  6662. .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
  6663. color: #fff;
  6664. background-color: #080808
  6665. }
  6666.  
  6667. .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {
  6668. color: #444;
  6669. background-color: transparent
  6670. }
  6671. }
  6672.  
  6673. .navbar-inverse .navbar-link {
  6674. color: #999
  6675. }
  6676.  
  6677. .navbar-inverse .navbar-link:hover {
  6678. color: #fff
  6679. }
  6680.  
  6681. .breadcrumb {
  6682. padding: 8px 15px;
  6683. margin-bottom: 20px;
  6684. list-style: none;
  6685. background-color: #f5f5f5;
  6686. border-radius: 4px
  6687. }
  6688.  
  6689. .breadcrumb>li {
  6690. display: inline-block
  6691. }
  6692.  
  6693. .breadcrumb>li+li:before {
  6694. padding: 0 5px;
  6695. color: #ccc;
  6696. content: "/ "
  6697. }
  6698.  
  6699. .breadcrumb>.active {
  6700. color: #999
  6701. }
  6702.  
  6703. .pagination {
  6704. display: inline-block;
  6705. padding-left: 0;
  6706. margin: 20px 0;
  6707. border-radius: 4px
  6708. }
  6709.  
  6710. .pagination>li {
  6711. display: inline
  6712. }
  6713.  
  6714. .pagination>li>a,.pagination>li>span {
  6715. position: relative;
  6716. float: left;
  6717. padding: 6px 12px;
  6718. margin-left: -1px;
  6719. line-height: 1.428571429;
  6720. text-decoration: none;
  6721. background-color: #fff;
  6722. border: 1px solid #ddd
  6723. }
  6724.  
  6725. .pagination>li:first-child>a,.pagination>li:first-child>span {
  6726. margin-left: 0;
  6727. border-bottom-left-radius: 4px;
  6728. border-top-left-radius: 4px
  6729. }
  6730.  
  6731. .pagination>li:last-child>a,.pagination>li:last-child>span {
  6732. border-top-right-radius: 4px;
  6733. border-bottom-right-radius: 4px
  6734. }
  6735.  
  6736. .pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus {
  6737. background-color: #eee
  6738. }
  6739.  
  6740. .pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus {
  6741. z-index: 2;
  6742. color: #fff;
  6743. cursor: default;
  6744. background-color: #428bca;
  6745. border-color: #428bca
  6746. }
  6747.  
  6748. .pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus {
  6749. color: #999;
  6750. cursor: not-allowed;
  6751. background-color: #fff;
  6752. border-color: #ddd
  6753. }
  6754.  
  6755. .pagination-lg>li>a,.pagination-lg>li>span {
  6756. padding: 10px 16px;
  6757. font-size: 18px
  6758. }
  6759.  
  6760. .pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span {
  6761. border-bottom-left-radius: 6px;
  6762. border-top-left-radius: 6px
  6763. }
  6764.  
  6765. .pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span {
  6766. border-top-right-radius: 6px;
  6767. border-bottom-right-radius: 6px
  6768. }
  6769.  
  6770. .pagination-sm>li>a,.pagination-sm>li>span {
  6771. padding: 5px 10px;
  6772. font-size: 12px
  6773. }
  6774.  
  6775. .pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span {
  6776. border-bottom-left-radius: 3px;
  6777. border-top-left-radius: 3px
  6778. }
  6779.  
  6780. .pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span {
  6781. border-top-right-radius: 3px;
  6782. border-bottom-right-radius: 3px
  6783. }
  6784.  
  6785. .pager {
  6786. padding-left: 0;
  6787. margin: 20px 0;
  6788. text-align: center;
  6789. list-style: none
  6790. }
  6791.  
  6792. .pager:before,.pager:after {
  6793. display: table;
  6794. content: " "
  6795. }
  6796.  
  6797. .pager:after {
  6798. clear: both
  6799. }
  6800.  
  6801. .pager:before,.pager:after {
  6802. display: table;
  6803. content: " "
  6804. }
  6805.  
  6806. .pager:after {
  6807. clear: both
  6808. }
  6809.  
  6810. .pager li {
  6811. display: inline
  6812. }
  6813.  
  6814. .pager li>a,.pager li>span {
  6815. display: inline-block;
  6816. padding: 5px 14px;
  6817. background-color: #fff;
  6818. border: 1px solid #ddd;
  6819. border-radius: 15px
  6820. }
  6821.  
  6822. .pager li>a:hover,.pager li>a:focus {
  6823. text-decoration: none;
  6824. background-color: #eee
  6825. }
  6826.  
  6827. .pager .next>a,.pager .next>span {
  6828. float: right
  6829. }
  6830.  
  6831. .pager .previous>a,.pager .previous>span {
  6832. float: left
  6833. }
  6834.  
  6835. .pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span {
  6836. color: #999;
  6837. cursor: not-allowed;
  6838. background-color: #fff
  6839. }
  6840.  
  6841. .label {
  6842. display: inline;
  6843. padding: .2em .6em .3em;
  6844. font-size: 75%;
  6845. font-weight: bold;
  6846. line-height: 1;
  6847. color: #fff;
  6848. text-align: center;
  6849. white-space: nowrap;
  6850. vertical-align: baseline;
  6851. border-radius: .25em
  6852. }
  6853.  
  6854. .label[href]:hover,.label[href]:focus {
  6855. color: #fff;
  6856. text-decoration: none;
  6857. cursor: pointer
  6858. }
  6859.  
  6860. .label:empty {
  6861. display: none
  6862. }
  6863.  
  6864. .label-default {
  6865. background-color: #999
  6866. }
  6867.  
  6868. .label-default[href]:hover,.label-default[href]:focus {
  6869. background-color: gray
  6870. }
  6871.  
  6872. .label-primary {
  6873. background-color: #428bca
  6874. }
  6875.  
  6876. .label-primary[href]:hover,.label-primary[href]:focus {
  6877. background-color: #3071a9
  6878. }
  6879.  
  6880. .label-success {
  6881. background-color: #5cb85c
  6882. }
  6883.  
  6884. .label-success[href]:hover,.label-success[href]:focus {
  6885. background-color: #449d44
  6886. }
  6887.  
  6888. .label-info {
  6889. background-color: #5bc0de
  6890. }
  6891.  
  6892. .label-info[href]:hover,.label-info[href]:focus {
  6893. background-color: #31b0d5
  6894. }
  6895.  
  6896. .label-warning {
  6897. background-color: #f0ad4e
  6898. }
  6899.  
  6900. .label-warning[href]:hover,.label-warning[href]:focus {
  6901. background-color: #ec971f
  6902. }
  6903.  
  6904. .label-danger {
  6905. background-color: #d9534f
  6906. }
  6907.  
  6908. .label-danger[href]:hover,.label-danger[href]:focus {
  6909. background-color: #c9302c
  6910. }
  6911.  
  6912. .badge {
  6913. display: inline-block;
  6914. min-width: 10px;
  6915. padding: 3px 7px;
  6916. font-size: 12px;
  6917. font-weight: bold;
  6918. line-height: 1;
  6919. color: #fff;
  6920. text-align: center;
  6921. white-space: nowrap;
  6922. vertical-align: baseline;
  6923. background-color: #999;
  6924. border-radius: 10px
  6925. }
  6926.  
  6927. .badge:empty {
  6928. display: none
  6929. }
  6930.  
  6931. a.badge:hover,a.badge:focus {
  6932. color: #fff;
  6933. text-decoration: none;
  6934. cursor: pointer
  6935. }
  6936.  
  6937. .btn .badge {
  6938. position: relative;
  6939. top: -1px
  6940. }
  6941.  
  6942. a.list-group-item.active>.badge,.nav-pills>.active>a>.badge {
  6943. color: #428bca;
  6944. background-color: #fff
  6945. }
  6946.  
  6947. .nav-pills>li>a>.badge {
  6948. margin-left: 3px
  6949. }
  6950.  
  6951. .jumbotron {
  6952. padding: 30px;
  6953. margin-bottom: 30px;
  6954. font-size: 21px;
  6955. font-weight: 200;
  6956. line-height: 2.1428571435;
  6957. color: inherit;
  6958. background-color: #eee
  6959. }
  6960.  
  6961. .jumbotron h1 {
  6962. line-height: 1;
  6963. color: inherit
  6964. }
  6965.  
  6966. .jumbotron p {
  6967. line-height: 1.4
  6968. }
  6969.  
  6970. .container .jumbotron {
  6971. border-radius: 6px
  6972. }
  6973.  
  6974. @media screen and (min-width: 768px) {
  6975. .jumbotron {
  6976. padding-top:48px;
  6977. padding-bottom: 48px
  6978. }
  6979.  
  6980. .container .jumbotron {
  6981. padding-right: 60px;
  6982. padding-left: 60px
  6983. }
  6984.  
  6985. .jumbotron h1 {
  6986. font-size: 63px
  6987. }
  6988. }
  6989.  
  6990. .thumbnail {
  6991. display: inline-block;
  6992. display: block;
  6993. height: auto;
  6994. max-width: 100%;
  6995. padding: 4px;
  6996. margin-bottom: 20px;
  6997. line-height: 1.428571429;
  6998. background-color: #fff;
  6999. border: 1px solid #ddd;
  7000. border-radius: 4px;
  7001. -webkit-transition: all .2s ease-in-out;
  7002. transition: all .2s ease-in-out
  7003. }
  7004.  
  7005. .thumbnail>img {
  7006. display: block;
  7007. height: auto;
  7008. max-width: 100%;
  7009. margin-right: auto;
  7010. margin-left: auto
  7011. }
  7012.  
  7013. a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active {
  7014. border-color: #428bca
  7015. }
  7016.  
  7017. .thumbnail .caption {
  7018. padding: 9px;
  7019. color: #333
  7020. }
  7021.  
  7022. .alert {
  7023. padding: 15px;
  7024. margin-bottom: 20px;
  7025. border: 1px solid transparent;
  7026. border-radius: 4px
  7027. }
  7028.  
  7029. .alert h4 {
  7030. margin-top: 0;
  7031. color: inherit
  7032. }
  7033.  
  7034. .alert .alert-link {
  7035. font-weight: bold
  7036. }
  7037.  
  7038. .alert>p,.alert>ul {
  7039. margin-bottom: 0
  7040. }
  7041.  
  7042. .alert>p+p {
  7043. margin-top: 5px
  7044. }
  7045.  
  7046. .alert-dismissable {
  7047. padding-right: 35px
  7048. }
  7049.  
  7050. .alert-dismissable .close {
  7051. position: relative;
  7052. top: -2px;
  7053. right: -21px;
  7054. color: inherit
  7055. }
  7056.  
  7057. .alert-success {
  7058. color: #468847;
  7059. background-color: #dff0d8;
  7060. border-color: #d6e9c6
  7061. }
  7062.  
  7063. .alert-success hr {
  7064. border-top-color: #c9e2b3
  7065. }
  7066.  
  7067. .alert-success .alert-link {
  7068. color: #356635
  7069. }
  7070.  
  7071. .alert-info {
  7072. color: #3a87ad;
  7073. background-color: #d9edf7;
  7074. border-color: #bce8f1
  7075. }
  7076.  
  7077. .alert-info hr {
  7078. border-top-color: #a6e1ec
  7079. }
  7080.  
  7081. .alert-info .alert-link {
  7082. color: #2d6987
  7083. }
  7084.  
  7085. .alert-warning {
  7086. color: #c09853;
  7087. background-color: #fcf8e3;
  7088. border-color: #faebcc
  7089. }
  7090.  
  7091. .alert-warning hr {
  7092. border-top-color: #f7e1b5
  7093. }
  7094.  
  7095. .alert-warning .alert-link {
  7096. color: #a47e3c
  7097. }
  7098.  
  7099. .alert-danger {
  7100. color: #b94a48;
  7101. background-color: #f2dede;
  7102. border-color: #ebccd1
  7103. }
  7104.  
  7105. .alert-danger hr {
  7106. border-top-color: #e4b9c0
  7107. }
  7108.  
  7109. .alert-danger .alert-link {
  7110. color: #953b39
  7111. }
  7112.  
  7113. @-webkit-keyframes progress-bar-stripes {
  7114. from {
  7115. background-position: 40px 0
  7116. }
  7117.  
  7118. to {
  7119. background-position: 0 0
  7120. }
  7121. }
  7122.  
  7123. @-moz-keyframes progress-bar-stripes {
  7124. from {
  7125. background-position: 40px 0
  7126. }
  7127.  
  7128. to {
  7129. background-position: 0 0
  7130. }
  7131. }
  7132.  
  7133. @-o-keyframes progress-bar-stripes {
  7134. from {
  7135. background-position: 0 0;
  7136. }
  7137.  
  7138. to {
  7139. background-position: 40px 0;
  7140. }
  7141. }
  7142.  
  7143. @keyframes progress-bar-stripes {
  7144. from {
  7145. background-position: 40px 0
  7146. }
  7147.  
  7148. to {
  7149. background-position: 0 0
  7150. }
  7151. }
  7152.  
  7153. .progress {
  7154. height: 20px;
  7155. margin-bottom: 20px;
  7156. overflow: hidden;
  7157. background-color: #f5f5f5;
  7158. border-radius: 4px;
  7159. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
  7160. box-shadow: inset 0 1px 2px rgba(0,0,0,.1)
  7161. }
  7162.  
  7163. .progress-bar {
  7164. float: left;
  7165. width: 0;
  7166. height: 100%;
  7167. font-size: 12px;
  7168. line-height: 20px;
  7169. color: #fff;
  7170. text-align: center;
  7171. background-color: #428bca;
  7172. -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  7173. box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  7174. -webkit-transition: width .6s ease;
  7175. transition: width .6s ease
  7176. }
  7177.  
  7178. .progress-striped .progress-bar {
  7179. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  7180. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7181. background-image: -moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7182. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7183. background-size: 40px 40px
  7184. }
  7185.  
  7186. .progress.active .progress-bar {
  7187. -webkit-animation: progress-bar-stripes 2s linear infinite;
  7188. animation: progress-bar-stripes 2s linear infinite
  7189. }
  7190.  
  7191. .progress-bar-success {
  7192. background-color: #5cb85c
  7193. }
  7194.  
  7195. .progress-striped .progress-bar-success {
  7196. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  7197. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7198. background-image: -moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7199. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
  7200. }
  7201.  
  7202. .progress-bar-info {
  7203. background-color: #5bc0de
  7204. }
  7205.  
  7206. .progress-striped .progress-bar-info {
  7207. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  7208. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7209. background-image: -moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7210. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
  7211. }
  7212.  
  7213. .progress-bar-warning {
  7214. background-color: #f0ad4e
  7215. }
  7216.  
  7217. .progress-striped .progress-bar-warning {
  7218. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  7219. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7220. background-image: -moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7221. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
  7222. }
  7223.  
  7224. .progress-bar-danger {
  7225. background-color: #d9534f
  7226. }
  7227.  
  7228. .progress-striped .progress-bar-danger {
  7229. background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));
  7230. background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7231. background-image: -moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  7232. background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
  7233. }
  7234.  
  7235. .media,.media-body {
  7236. overflow: hidden;
  7237. zoom:1}
  7238.  
  7239. .media,.media .media {
  7240. margin-top: 15px
  7241. }
  7242.  
  7243. .media:first-child {
  7244. margin-top: 0
  7245. }
  7246.  
  7247. .media-object {
  7248. display: block
  7249. }
  7250.  
  7251. .media-heading {
  7252. margin: 0 0 5px
  7253. }
  7254.  
  7255. .media>.pull-left {
  7256. margin-right: 10px
  7257. }
  7258.  
  7259. .media>.pull-right {
  7260. margin-left: 10px
  7261. }
  7262.  
  7263. .media-list {
  7264. padding-left: 0;
  7265. list-style: none
  7266. }
  7267.  
  7268. .list-group {
  7269. padding-left: 0;
  7270. margin-bottom: 20px
  7271. }
  7272.  
  7273. .list-group-item {
  7274. position: relative;
  7275. display: block;
  7276. padding: 10px 15px;
  7277. margin-bottom: -1px;
  7278. background-color: #fff;
  7279. border: 1px solid #ddd
  7280. }
  7281.  
  7282. .list-group-item:first-child {
  7283. border-top-right-radius: 4px;
  7284. border-top-left-radius: 4px
  7285. }
  7286.  
  7287. .list-group-item:last-child {
  7288. margin-bottom: 0;
  7289. border-bottom-right-radius: 4px;
  7290. border-bottom-left-radius: 4px
  7291. }
  7292.  
  7293. .list-group-item>.badge {
  7294. float: right
  7295. }
  7296.  
  7297. .list-group-item>.badge+.badge {
  7298. margin-right: 5px
  7299. }
  7300.  
  7301. a.list-group-item {
  7302. color: #555
  7303. }
  7304.  
  7305. a.list-group-item .list-group-item-heading {
  7306. color: #333
  7307. }
  7308.  
  7309. a.list-group-item:hover,a.list-group-item:focus {
  7310. text-decoration: none;
  7311. background-color: #f5f5f5
  7312. }
  7313.  
  7314. a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus {
  7315. z-index: 2;
  7316. color: #fff;
  7317. background-color: #428bca;
  7318. border-color: #428bca
  7319. }
  7320.  
  7321. a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading {
  7322. color: inherit
  7323. }
  7324.  
  7325. a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text {
  7326. color: #e1edf7
  7327. }
  7328.  
  7329. .list-group-item-heading {
  7330. margin-top: 0;
  7331. margin-bottom: 5px
  7332. }
  7333.  
  7334. .list-group-item-text {
  7335. margin-bottom: 0;
  7336. line-height: 1.3
  7337. }
  7338.  
  7339. .panel {
  7340. margin-bottom: 20px;
  7341. background-color: #fff;
  7342. border: 1px solid transparent;
  7343. border-radius: 4px;
  7344. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
  7345. box-shadow: 0 1px 1px rgba(0,0,0,.05)
  7346. }
  7347.  
  7348. .panel-body {
  7349. padding: 15px
  7350. }
  7351.  
  7352. .panel-body:before,.panel-body:after {
  7353. display: table;
  7354. content: " "
  7355. }
  7356.  
  7357. .panel-body:after {
  7358. clear: both
  7359. }
  7360.  
  7361. .panel-body:before,.panel-body:after {
  7362. display: table;
  7363. content: " "
  7364. }
  7365.  
  7366. .panel-body:after {
  7367. clear: both
  7368. }
  7369.  
  7370. .panel>.list-group {
  7371. margin-bottom: 0
  7372. }
  7373.  
  7374. .panel>.list-group .list-group-item {
  7375. border-width: 1px 0
  7376. }
  7377.  
  7378. .panel>.list-group .list-group-item:first-child {
  7379. border-top-right-radius: 0;
  7380. border-top-left-radius: 0
  7381. }
  7382.  
  7383. .panel>.list-group .list-group-item:last-child {
  7384. border-bottom: 0
  7385. }
  7386.  
  7387. .panel-heading+.list-group .list-group-item:first-child {
  7388. border-top-width: 0
  7389. }
  7390.  
  7391. .panel>.table,.panel>.table-responsive {
  7392. margin-bottom: 0
  7393. }
  7394.  
  7395. .panel>.panel-body+.table,.panel>.panel-body+.table-responsive {
  7396. border-top: 1px solid #ddd
  7397. }
  7398.  
  7399. .panel>.table-bordered,.panel>.table-responsive>.table-bordered {
  7400. border: 0
  7401. }
  7402.  
  7403. .panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
  7404. border-left: 0
  7405. }
  7406.  
  7407. .panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
  7408. border-right: 0
  7409. }
  7410.  
  7411. .panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td {
  7412. border-bottom: 0
  7413. }
  7414.  
  7415. .panel-heading {
  7416. padding: 10px 15px;
  7417. border-bottom: 1px solid transparent;
  7418. border-top-right-radius: 3px;
  7419. border-top-left-radius: 3px
  7420. }
  7421.  
  7422. .panel-heading>.dropdown .dropdown-toggle {
  7423. color: inherit
  7424. }
  7425.  
  7426. .panel-title {
  7427. margin-top: 0;
  7428. margin-bottom: 0;
  7429. font-size: 16px
  7430. }
  7431.  
  7432. .panel-title>a {
  7433. color: inherit
  7434. }
  7435.  
  7436. .panel-footer {
  7437. padding: 10px 15px;
  7438. background-color: #f5f5f5;
  7439. border-top: 1px solid #ddd;
  7440. border-bottom-right-radius: 3px;
  7441. border-bottom-left-radius: 3px
  7442. }
  7443.  
  7444. .panel-group .panel {
  7445. margin-bottom: 0;
  7446. overflow: hidden;
  7447. border-radius: 4px
  7448. }
  7449.  
  7450. .panel-group .panel+.panel {
  7451. margin-top: 5px
  7452. }
  7453.  
  7454. .panel-group .panel-heading {
  7455. border-bottom: 0
  7456. }
  7457.  
  7458. .panel-group .panel-heading+.panel-collapse .panel-body {
  7459. border-top: 1px solid #ddd
  7460. }
  7461.  
  7462. .panel-group .panel-footer {
  7463. border-top: 0
  7464. }
  7465.  
  7466. .panel-group .panel-footer+.panel-collapse .panel-body {
  7467. border-bottom: 1px solid #ddd
  7468. }
  7469.  
  7470. .panel-default {
  7471. border-color: #ddd
  7472. }
  7473.  
  7474. .panel-default>.panel-heading {
  7475. color: #333;
  7476. background-color: #f5f5f5;
  7477. border-color: #ddd
  7478. }
  7479.  
  7480. .panel-default>.panel-heading+.panel-collapse .panel-body {
  7481. border-top-color: #ddd
  7482. }
  7483.  
  7484. .panel-default>.panel-heading>.dropdown .caret {
  7485. border-color: #333 transparent
  7486. }
  7487.  
  7488. .panel-default>.panel-footer+.panel-collapse .panel-body {
  7489. border-bottom-color: #ddd
  7490. }
  7491.  
  7492. .panel-primary {
  7493. border-color: #428bca
  7494. }
  7495.  
  7496. .panel-primary>.panel-heading {
  7497. color: #fff;
  7498. background-color: #428bca;
  7499. border-color: #428bca
  7500. }
  7501.  
  7502. .panel-primary>.panel-heading+.panel-collapse .panel-body {
  7503. border-top-color: #428bca
  7504. }
  7505.  
  7506. .panel-primary>.panel-heading>.dropdown .caret {
  7507. border-color: #fff transparent
  7508. }
  7509.  
  7510. .panel-primary>.panel-footer+.panel-collapse .panel-body {
  7511. border-bottom-color: #428bca
  7512. }
  7513.  
  7514. .panel-success {
  7515. border-color: #d6e9c6
  7516. }
  7517.  
  7518. .panel-success>.panel-heading {
  7519. color: #468847;
  7520. background-color: #dff0d8;
  7521. border-color: #d6e9c6
  7522. }
  7523.  
  7524. .panel-success>.panel-heading+.panel-collapse .panel-body {
  7525. border-top-color: #d6e9c6
  7526. }
  7527.  
  7528. .panel-success>.panel-heading>.dropdown .caret {
  7529. border-color: #468847 transparent
  7530. }
  7531.  
  7532. .panel-success>.panel-footer+.panel-collapse .panel-body {
  7533. border-bottom-color: #d6e9c6
  7534. }
  7535.  
  7536. .panel-warning {
  7537. border-color: #faebcc
  7538. }
  7539.  
  7540. .panel-warning>.panel-heading {
  7541. color: #c09853;
  7542. background-color: #fcf8e3;
  7543. border-color: #faebcc
  7544. }
  7545.  
  7546. .panel-warning>.panel-heading+.panel-collapse .panel-body {
  7547. border-top-color: #faebcc
  7548. }
  7549.  
  7550. .panel-warning>.panel-heading>.dropdown .caret {
  7551. border-color: #c09853 transparent
  7552. }
  7553.  
  7554. .panel-warning>.panel-footer+.panel-collapse .panel-body {
  7555. border-bottom-color: #faebcc
  7556. }
  7557.  
  7558. .panel-danger {
  7559. border-color: #ebccd1
  7560. }
  7561.  
  7562. .panel-danger>.panel-heading {
  7563. color: #b94a48;
  7564. background-color: #f2dede;
  7565. border-color: #ebccd1
  7566. }
  7567.  
  7568. .panel-danger>.panel-heading+.panel-collapse .panel-body {
  7569. border-top-color: #ebccd1
  7570. }
  7571.  
  7572. .panel-danger>.panel-heading>.dropdown .caret {
  7573. border-color: #b94a48 transparent
  7574. }
  7575.  
  7576. .panel-danger>.panel-footer+.panel-collapse .panel-body {
  7577. border-bottom-color: #ebccd1
  7578. }
  7579.  
  7580. .panel-info {
  7581. border-color: #bce8f1
  7582. }
  7583.  
  7584. .panel-info>.panel-heading {
  7585. color: #3a87ad;
  7586. background-color: #d9edf7;
  7587. border-color: #bce8f1
  7588. }
  7589.  
  7590. .panel-info>.panel-heading+.panel-collapse .panel-body {
  7591. border-top-color: #bce8f1
  7592. }
  7593.  
  7594. .panel-info>.panel-heading>.dropdown .caret {
  7595. border-color: #3a87ad transparent
  7596. }
  7597.  
  7598. .panel-info>.panel-footer+.panel-collapse .panel-body {
  7599. border-bottom-color: #bce8f1
  7600. }
  7601.  
  7602. .well {
  7603. min-height: 20px;
  7604. padding: 19px;
  7605. margin-bottom: 20px;
  7606. background-color: #f5f5f5;
  7607. border: 1px solid #e3e3e3;
  7608. border-radius: 4px;
  7609. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  7610. box-shadow: inset 0 1px 1px rgba(0,0,0,.05)
  7611. }
  7612.  
  7613. .well blockquote {
  7614. border-color: #ddd;
  7615. border-color: rgba(0,0,0,.15)
  7616. }
  7617.  
  7618. .well-lg {
  7619. padding: 24px;
  7620. border-radius: 6px
  7621. }
  7622.  
  7623. .well-sm {
  7624. padding: 9px;
  7625. border-radius: 3px
  7626. }
  7627.  
  7628. .close {
  7629. float: right;
  7630. font-size: 21px;
  7631. font-weight: bold;
  7632. line-height: 1;
  7633. color: #000;
  7634. text-shadow: 0 1px 0 #fff;
  7635. opacity: .2;
  7636. filter: alpha(opacity=20)
  7637. }
  7638.  
  7639. .close:hover,.close:focus {
  7640. color: #000;
  7641. text-decoration: none;
  7642. cursor: pointer;
  7643. opacity: .5;
  7644. filter: alpha(opacity=50)
  7645. }
  7646.  
  7647. button.close {
  7648. padding: 0;
  7649. cursor: pointer;
  7650. background: transparent;
  7651. border: 0;
  7652. -webkit-appearance: none
  7653. }
  7654.  
  7655. .modal-open {
  7656. overflow: hidden
  7657. }
  7658.  
  7659. .modal {
  7660. position: fixed;
  7661. top: 0;
  7662. right: 0;
  7663. bottom: 0;
  7664. left: 0;
  7665. z-index: 1040;
  7666. display: none;
  7667. overflow: auto;
  7668. overflow-y: scroll
  7669. }
  7670.  
  7671. .modal.fade .modal-dialog {
  7672. -webkit-transform: translate(0,-25%);
  7673. -ms-transform: translate(0,-25%);
  7674. transform: translate(0,-25%);
  7675. -webkit-transition: -webkit-transform .3s ease-out;
  7676. -moz-transition: -moz-transform .3s ease-out;
  7677. -o-transition: -o-transform .3s ease-out;
  7678. transition: transform .3s ease-out
  7679. }
  7680.  
  7681. .modal.in .modal-dialog {
  7682. -webkit-transform: translate(0,0);
  7683. -ms-transform: translate(0,0);
  7684. transform: translate(0,0)
  7685. }
  7686.  
  7687. .modal-dialog {
  7688. position: relative;
  7689. z-index: 1050;
  7690. width: auto;
  7691. padding: 10px;
  7692. margin-right: auto;
  7693. margin-left: auto
  7694. }
  7695.  
  7696. .modal-content {
  7697. position: relative;
  7698. background-color: #fff;
  7699. border: 1px solid #999;
  7700. border: 1px solid rgba(0,0,0,.2);
  7701. border-radius: 6px;
  7702. outline: none;
  7703. -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  7704. box-shadow: 0 3px 9px rgba(0,0,0,.5);
  7705. background-clip: padding-box
  7706. }
  7707.  
  7708. .modal-backdrop {
  7709. position: fixed;
  7710. top: 0;
  7711. right: 0;
  7712. bottom: 0;
  7713. left: 0;
  7714. z-index: 1030;
  7715. background-color: #000
  7716. }
  7717.  
  7718. .modal-backdrop.fade {
  7719. opacity: 0;
  7720. filter: alpha(opacity=0)
  7721. }
  7722.  
  7723. .modal-backdrop.in {
  7724. opacity: .5;
  7725. filter: alpha(opacity=50)
  7726. }
  7727.  
  7728. .modal-header {
  7729. min-height: 16.428571429px;
  7730. padding: 15px;
  7731. border-bottom: 1px solid #e5e5e5
  7732. }
  7733.  
  7734. .modal-header .close {
  7735. margin-top: -2px
  7736. }
  7737.  
  7738. .modal-title {
  7739. margin: 0;
  7740. line-height: 1.428571429
  7741. }
  7742.  
  7743. .modal-body {
  7744. position: relative;
  7745. padding: 20px
  7746. }
  7747.  
  7748. .modal-footer {
  7749. padding: 19px 20px 20px;
  7750. margin-top: 15px;
  7751. text-align: right;
  7752. border-top: 1px solid #e5e5e5
  7753. }
  7754.  
  7755. .modal-footer:before,.modal-footer:after {
  7756. display: table;
  7757. content: " "
  7758. }
  7759.  
  7760. .modal-footer:after {
  7761. clear: both
  7762. }
  7763.  
  7764. .modal-footer:before,.modal-footer:after {
  7765. display: table;
  7766. content: " "
  7767. }
  7768.  
  7769. .modal-footer:after {
  7770. clear: both
  7771. }
  7772.  
  7773. .modal-footer .btn+.btn {
  7774. margin-bottom: 0;
  7775. margin-left: 5px
  7776. }
  7777.  
  7778. .modal-footer .btn-group .btn+.btn {
  7779. margin-left: -1px
  7780. }
  7781.  
  7782. .modal-footer .btn-block+.btn-block {
  7783. margin-left: 0
  7784. }
  7785.  
  7786. @media screen and (min-width: 768px) {
  7787. .modal-dialog {
  7788. width:600px;
  7789. padding-top: 30px;
  7790. padding-bottom: 30px
  7791. }
  7792.  
  7793. .modal-content {
  7794. -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
  7795. box-shadow: 0 5px 15px rgba(0,0,0,.5)
  7796. }
  7797. }
  7798.  
  7799. .tooltip {
  7800. position: absolute;
  7801. z-index: 1030;
  7802. display: block;
  7803. font-size: 12px;
  7804. line-height: 1.4;
  7805. opacity: 0;
  7806. filter: alpha(opacity=0);
  7807. visibility: visible
  7808. }
  7809.  
  7810. .tooltip.in {
  7811. opacity: .9;
  7812. filter: alpha(opacity=90)
  7813. }
  7814.  
  7815. .tooltip.top {
  7816. padding: 5px 0;
  7817. margin-top: -3px
  7818. }
  7819.  
  7820. .tooltip.right {
  7821. padding: 0 5px;
  7822. margin-left: 3px
  7823. }
  7824.  
  7825. .tooltip.bottom {
  7826. padding: 5px 0;
  7827. margin-top: 3px
  7828. }
  7829.  
  7830. .tooltip.left {
  7831. padding: 0 5px;
  7832. margin-left: -3px
  7833. }
  7834.  
  7835. .tooltip-inner {
  7836. max-width: 200px;
  7837. padding: 3px 8px;
  7838. color: #fff;
  7839. text-align: center;
  7840. text-decoration: none;
  7841. background-color: #000;
  7842. border-radius: 4px
  7843. }
  7844.  
  7845. .tooltip-arrow {
  7846. position: absolute;
  7847. width: 0;
  7848. height: 0;
  7849. border-color: transparent;
  7850. border-style: solid
  7851. }
  7852.  
  7853. .tooltip.top .tooltip-arrow {
  7854. bottom: 0;
  7855. left: 50%;
  7856. margin-left: -5px;
  7857. border-top-color: #000;
  7858. border-width: 5px 5px 0
  7859. }
  7860.  
  7861. .tooltip.top-left .tooltip-arrow {
  7862. bottom: 0;
  7863. left: 5px;
  7864. border-top-color: #000;
  7865. border-width: 5px 5px 0
  7866. }
  7867.  
  7868. .tooltip.top-right .tooltip-arrow {
  7869. right: 5px;
  7870. bottom: 0;
  7871. border-top-color: #000;
  7872. border-width: 5px 5px 0
  7873. }
  7874.  
  7875. .tooltip.right .tooltip-arrow {
  7876. top: 50%;
  7877. left: 0;
  7878. margin-top: -5px;
  7879. border-right-color: #000;
  7880. border-width: 5px 5px 5px 0
  7881. }
  7882.  
  7883. .tooltip.left .tooltip-arrow {
  7884. top: 50%;
  7885. right: 0;
  7886. margin-top: -5px;
  7887. border-left-color: #000;
  7888. border-width: 5px 0 5px 5px
  7889. }
  7890.  
  7891. .tooltip.bottom .tooltip-arrow {
  7892. top: 0;
  7893. left: 50%;
  7894. margin-left: -5px;
  7895. border-bottom-color: #000;
  7896. border-width: 0 5px 5px
  7897. }
  7898.  
  7899. .tooltip.bottom-left .tooltip-arrow {
  7900. top: 0;
  7901. left: 5px;
  7902. border-bottom-color: #000;
  7903. border-width: 0 5px 5px
  7904. }
  7905.  
  7906. .tooltip.bottom-right .tooltip-arrow {
  7907. top: 0;
  7908. right: 5px;
  7909. border-bottom-color: #000;
  7910. border-width: 0 5px 5px
  7911. }
  7912.  
  7913. .popover {
  7914. position: absolute;
  7915. top: 0;
  7916. left: 0;
  7917. z-index: 1010;
  7918. display: none;
  7919. max-width: 276px;
  7920. padding: 1px;
  7921. text-align: left;
  7922. white-space: normal;
  7923. background-color: #fff;
  7924. border: 1px solid #ccc;
  7925. border: 1px solid rgba(0,0,0,.2);
  7926. border-radius: 6px;
  7927. -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  7928. box-shadow: 0 5px 10px rgba(0,0,0,.2);
  7929. background-clip: padding-box
  7930. }
  7931.  
  7932. .popover.top {
  7933. margin-top: -10px
  7934. }
  7935.  
  7936. .popover.right {
  7937. margin-left: 10px
  7938. }
  7939.  
  7940. .popover.bottom {
  7941. margin-top: 10px
  7942. }
  7943.  
  7944. .popover.left {
  7945. margin-left: -10px
  7946. }
  7947.  
  7948. .popover-title {
  7949. padding: 8px 14px;
  7950. margin: 0;
  7951. font-size: 14px;
  7952. font-weight: normal;
  7953. line-height: 18px;
  7954. background-color: #f7f7f7;
  7955. border-bottom: 1px solid #ebebeb;
  7956. border-radius: 5px 5px 0 0
  7957. }
  7958.  
  7959. .popover-content {
  7960. padding: 9px 14px
  7961. }
  7962.  
  7963. .popover .arrow,.popover .arrow:after {
  7964. position: absolute;
  7965. display: block;
  7966. width: 0;
  7967. height: 0;
  7968. border-color: transparent;
  7969. border-style: solid
  7970. }
  7971.  
  7972. .popover .arrow {
  7973. border-width: 11px
  7974. }
  7975.  
  7976. .popover .arrow:after {
  7977. border-width: 10px;
  7978. content: ""
  7979. }
  7980.  
  7981. .popover.top .arrow {
  7982. bottom: -11px;
  7983. left: 50%;
  7984. margin-left: -11px;
  7985. border-top-color: #999;
  7986. border-top-color: rgba(0,0,0,.25);
  7987. border-bottom-width: 0
  7988. }
  7989.  
  7990. .popover.top .arrow:after {
  7991. bottom: 1px;
  7992. margin-left: -10px;
  7993. border-top-color: #fff;
  7994. border-bottom-width: 0;
  7995. content: " "
  7996. }
  7997.  
  7998. .popover.right .arrow {
  7999. top: 50%;
  8000. left: -11px;
  8001. margin-top: -11px;
  8002. border-right-color: #999;
  8003. border-right-color: rgba(0,0,0,.25);
  8004. border-left-width: 0
  8005. }
  8006.  
  8007. .popover.right .arrow:after {
  8008. bottom: -10px;
  8009. left: 1px;
  8010. border-right-color: #fff;
  8011. border-left-width: 0;
  8012. content: " "
  8013. }
  8014.  
  8015. .popover.bottom .arrow {
  8016. top: -11px;
  8017. left: 50%;
  8018. margin-left: -11px;
  8019. border-bottom-color: #999;
  8020. border-bottom-color: rgba(0,0,0,.25);
  8021. border-top-width: 0
  8022. }
  8023.  
  8024. .popover.bottom .arrow:after {
  8025. top: 1px;
  8026. margin-left: -10px;
  8027. border-bottom-color: #fff;
  8028. border-top-width: 0;
  8029. content: " "
  8030. }
  8031.  
  8032. .popover.left .arrow {
  8033. top: 50%;
  8034. right: -11px;
  8035. margin-top: -11px;
  8036. border-left-color: #999;
  8037. border-left-color: rgba(0,0,0,.25);
  8038. border-right-width: 0
  8039. }
  8040.  
  8041. .popover.left .arrow:after {
  8042. right: 1px;
  8043. bottom: -10px;
  8044. border-left-color: #fff;
  8045. border-right-width: 0;
  8046. content: " "
  8047. }
  8048.  
  8049. .carousel {
  8050. position: relative
  8051. }
  8052.  
  8053. .carousel-inner {
  8054. position: relative;
  8055. width: 100%;
  8056. overflow: hidden
  8057. }
  8058.  
  8059. .carousel-inner>.item {
  8060. position: relative;
  8061. display: none;
  8062. -webkit-transition: .6s ease-in-out left;
  8063. transition: .6s ease-in-out left
  8064. }
  8065.  
  8066. .carousel-inner>.item>img,.carousel-inner>.item>a>img {
  8067. display: block;
  8068. height: auto;
  8069. max-width: 100%;
  8070. line-height: 1
  8071. }
  8072.  
  8073. .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev {
  8074. display: block
  8075. }
  8076.  
  8077. .carousel-inner>.active {
  8078. left: 0
  8079. }
  8080.  
  8081. .carousel-inner>.next,.carousel-inner>.prev {
  8082. position: absolute;
  8083. top: 0;
  8084. width: 100%
  8085. }
  8086.  
  8087. .carousel-inner>.next {
  8088. left: 100%
  8089. }
  8090.  
  8091. .carousel-inner>.prev {
  8092. left: -100%
  8093. }
  8094.  
  8095. .carousel-inner>.next.left,.carousel-inner>.prev.right {
  8096. left: 0
  8097. }
  8098.  
  8099. .carousel-inner>.active.left {
  8100. left: -100%
  8101. }
  8102.  
  8103. .carousel-inner>.active.right {
  8104. left: 100%
  8105. }
  8106.  
  8107. .carousel-control {
  8108. position: absolute;
  8109. top: 0;
  8110. bottom: 0;
  8111. left: 0;
  8112. width: 15%;
  8113. font-size: 20px;
  8114. color: #fff;
  8115. text-align: center;
  8116. text-shadow: 0 1px 2px rgba(0,0,0,.6);
  8117. opacity: .5;
  8118. filter: alpha(opacity=50)
  8119. }
  8120.  
  8121. .carousel-control.left {
  8122. background-image: -webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
  8123. background-image: -webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));
  8124. background-image: -moz-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  8125. background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
  8126. background-repeat: repeat-x;
  8127. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)
  8128. }
  8129.  
  8130. .carousel-control.right {
  8131. right: 0;
  8132. left: auto;
  8133. background-image: -webkit-gradient(linear,0 top,100% top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
  8134. background-image: -webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));
  8135. background-image: -moz-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  8136. background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
  8137. background-repeat: repeat-x;
  8138. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)
  8139. }
  8140.  
  8141. .carousel-control:hover,.carousel-control:focus {
  8142. color: #fff;
  8143. text-decoration: none;
  8144. opacity: .9;
  8145. filter: alpha(opacity=90)
  8146. }
  8147.  
  8148. .carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right {
  8149. position: absolute;
  8150. top: 50%;
  8151. z-index: 5;
  8152. display: inline-block
  8153. }
  8154.  
  8155. .carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left {
  8156. left: 50%
  8157. }
  8158.  
  8159. .carousel-control .icon-next,.carousel-control .glyphicon-chevron-right {
  8160. right: 50%
  8161. }
  8162.  
  8163. .carousel-control .icon-prev,.carousel-control .icon-next {
  8164. width: 20px;
  8165. height: 20px;
  8166. margin-top: -10px;
  8167. margin-left: -10px;
  8168. font-family: serif
  8169. }
  8170.  
  8171. .carousel-control .icon-prev:before {
  8172. content: '‹'
  8173. }
  8174.  
  8175. .carousel-control .icon-next:before {
  8176. content: '›'
  8177. }
  8178.  
  8179. .carousel-indicators {
  8180. position: absolute;
  8181. bottom: 10px;
  8182. left: 50%;
  8183. z-index: 15;
  8184. width: 60%;
  8185. padding-left: 0;
  8186. margin-left: -30%;
  8187. text-align: center;
  8188. list-style: none
  8189. }
  8190.  
  8191. .carousel-indicators li {
  8192. display: inline-block;
  8193. width: 10px;
  8194. height: 10px;
  8195. margin: 1px;
  8196. text-indent: -999px;
  8197. cursor: pointer;
  8198. background-color: #000 \9;
  8199. background-color: rgba(0,0,0,0);
  8200. border: 1px solid #fff;
  8201. border-radius: 10px
  8202. }
  8203.  
  8204. .carousel-indicators .active {
  8205. width: 12px;
  8206. height: 12px;
  8207. margin: 0;
  8208. background-color: #fff
  8209. }
  8210.  
  8211. .carousel-caption {
  8212. position: absolute;
  8213. right: 15%;
  8214. bottom: 20px;
  8215. left: 15%;
  8216. z-index: 10;
  8217. padding-top: 20px;
  8218. padding-bottom: 20px;
  8219. color: #fff;
  8220. text-align: center;
  8221. text-shadow: 0 1px 2px rgba(0,0,0,.6)
  8222. }
  8223.  
  8224. .carousel-caption .btn {
  8225. text-shadow: none
  8226. }
  8227.  
  8228. @media screen and (min-width: 768px) {
  8229. .carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next {
  8230. width:30px;
  8231. height: 30px;
  8232. margin-top: -15px;
  8233. margin-left: -15px;
  8234. font-size: 30px
  8235. }
  8236.  
  8237. .carousel-caption {
  8238. right: 20%;
  8239. left: 20%;
  8240. padding-bottom: 30px
  8241. }
  8242.  
  8243. .carousel-indicators {
  8244. bottom: 20px
  8245. }
  8246. }
  8247.  
  8248. .clearfix:before,.clearfix:after {
  8249. display: table;
  8250. content: " "
  8251. }
  8252.  
  8253. .clearfix:after {
  8254. clear: both
  8255. }
  8256.  
  8257. .center-block {
  8258. display: block;
  8259. margin-right: auto;
  8260. margin-left: auto
  8261. }
  8262.  
  8263. .pull-right {
  8264. float: right!important
  8265. }
  8266.  
  8267. .pull-left {
  8268. float: left!important
  8269. }
  8270.  
  8271. .hide {
  8272. display: none!important
  8273. }
  8274.  
  8275. .show {
  8276. display: block!important
  8277. }
  8278.  
  8279. .invisible {
  8280. visibility: hidden
  8281. }
  8282.  
  8283. .text-hide {
  8284. font: 0/0 a;
  8285. color: transparent;
  8286. text-shadow: none;
  8287. background-color: transparent;
  8288. border: 0
  8289. }
  8290.  
  8291. .hidden {
  8292. display: none!important;
  8293. visibility: hidden!important
  8294. }
  8295.  
  8296. .affix {
  8297. position: fixed
  8298. }
  8299.  
  8300. @-ms-viewport {
  8301. width: device-width;
  8302. }
  8303.  
  8304. .visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs {
  8305. display: none!important
  8306. }
  8307.  
  8308. @media(max-width: 767px) {
  8309. .visible-xs {
  8310. display:block!important
  8311. }
  8312.  
  8313. tr.visible-xs {
  8314. display: table-row!important
  8315. }
  8316.  
  8317. th.visible-xs,td.visible-xs {
  8318. display: table-cell!important
  8319. }
  8320. }
  8321.  
  8322. @media(min-width: 768px)and (max-width:991px) {
  8323. .visible-xs.visible-sm {
  8324. display:block!important
  8325. }
  8326.  
  8327. tr.visible-xs.visible-sm {
  8328. display: table-row!important
  8329. }
  8330.  
  8331. th.visible-xs.visible-sm,td.visible-xs.visible-sm {
  8332. display: table-cell!important
  8333. }
  8334. }
  8335.  
  8336. @media(min-width: 992px)and (max-width:1199px) {
  8337. .visible-xs.visible-md {
  8338. display:block!important
  8339. }
  8340.  
  8341. tr.visible-xs.visible-md {
  8342. display: table-row!important
  8343. }
  8344.  
  8345. th.visible-xs.visible-md,td.visible-xs.visible-md {
  8346. display: table-cell!important
  8347. }
  8348. }
  8349.  
  8350. @media(min-width: 1200px) {
  8351. .visible-xs.visible-lg {
  8352. display:block!important
  8353. }
  8354.  
  8355. tr.visible-xs.visible-lg {
  8356. display: table-row!important
  8357. }
  8358.  
  8359. th.visible-xs.visible-lg,td.visible-xs.visible-lg {
  8360. display: table-cell!important
  8361. }
  8362. }
  8363.  
  8364. .visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm {
  8365. display: none!important
  8366. }
  8367.  
  8368. @media(max-width: 767px) {
  8369. .visible-sm.visible-xs {
  8370. display:block!important
  8371. }
  8372.  
  8373. tr.visible-sm.visible-xs {
  8374. display: table-row!important
  8375. }
  8376.  
  8377. th.visible-sm.visible-xs,td.visible-sm.visible-xs {
  8378. display: table-cell!important
  8379. }
  8380. }
  8381.  
  8382. @media(min-width: 768px)and (max-width:991px) {
  8383. .visible-sm {
  8384. display:block!important
  8385. }
  8386.  
  8387. tr.visible-sm {
  8388. display: table-row!important
  8389. }
  8390.  
  8391. th.visible-sm,td.visible-sm {
  8392. display: table-cell!important
  8393. }
  8394. }
  8395.  
  8396. @media(min-width: 992px)and (max-width:1199px) {
  8397. .visible-sm.visible-md {
  8398. display:block!important
  8399. }
  8400.  
  8401. tr.visible-sm.visible-md {
  8402. display: table-row!important
  8403. }
  8404.  
  8405. th.visible-sm.visible-md,td.visible-sm.visible-md {
  8406. display: table-cell!important
  8407. }
  8408. }
  8409.  
  8410. @media(min-width: 1200px) {
  8411. .visible-sm.visible-lg {
  8412. display:block!important
  8413. }
  8414.  
  8415. tr.visible-sm.visible-lg {
  8416. display: table-row!important
  8417. }
  8418.  
  8419. th.visible-sm.visible-lg,td.visible-sm.visible-lg {
  8420. display: table-cell!important
  8421. }
  8422. }
  8423.  
  8424. .visible-md,tr.visible-md,th.visible-md,td.visible-md {
  8425. display: none!important
  8426. }
  8427.  
  8428. @media(max-width: 767px) {
  8429. .visible-md.visible-xs {
  8430. display:block!important
  8431. }
  8432.  
  8433. tr.visible-md.visible-xs {
  8434. display: table-row!important
  8435. }
  8436.  
  8437. th.visible-md.visible-xs,td.visible-md.visible-xs {
  8438. display: table-cell!important
  8439. }
  8440. }
  8441.  
  8442. @media(min-width: 768px)and (max-width:991px) {
  8443. .visible-md.visible-sm {
  8444. display:block!important
  8445. }
  8446.  
  8447. tr.visible-md.visible-sm {
  8448. display: table-row!important
  8449. }
  8450.  
  8451. th.visible-md.visible-sm,td.visible-md.visible-sm {
  8452. display: table-cell!important
  8453. }
  8454. }
  8455.  
  8456. @media(min-width: 992px)and (max-width:1199px) {
  8457. .visible-md {
  8458. display:block!important
  8459. }
  8460.  
  8461. tr.visible-md {
  8462. display: table-row!important
  8463. }
  8464.  
  8465. th.visible-md,td.visible-md {
  8466. display: table-cell!important
  8467. }
  8468. }
  8469.  
  8470. @media(min-width: 1200px) {
  8471. .visible-md.visible-lg {
  8472. display:block!important
  8473. }
  8474.  
  8475. tr.visible-md.visible-lg {
  8476. display: table-row!important
  8477. }
  8478.  
  8479. th.visible-md.visible-lg,td.visible-md.visible-lg {
  8480. display: table-cell!important
  8481. }
  8482. }
  8483.  
  8484. .visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg {
  8485. display: none!important
  8486. }
  8487.  
  8488. @media(max-width: 767px) {
  8489. .visible-lg.visible-xs {
  8490. display:block!important
  8491. }
  8492.  
  8493. tr.visible-lg.visible-xs {
  8494. display: table-row!important
  8495. }
  8496.  
  8497. th.visible-lg.visible-xs,td.visible-lg.visible-xs {
  8498. display: table-cell!important
  8499. }
  8500. }
  8501.  
  8502. @media(min-width: 768px)and (max-width:991px) {
  8503. .visible-lg.visible-sm {
  8504. display:block!important
  8505. }
  8506.  
  8507. tr.visible-lg.visible-sm {
  8508. display: table-row!important
  8509. }
  8510.  
  8511. th.visible-lg.visible-sm,td.visible-lg.visible-sm {
  8512. display: table-cell!important
  8513. }
  8514. }
  8515.  
  8516. @media(min-width: 992px)and (max-width:1199px) {
  8517. .visible-lg.visible-md {
  8518. display:block!important
  8519. }
  8520.  
  8521. tr.visible-lg.visible-md {
  8522. display: table-row!important
  8523. }
  8524.  
  8525. th.visible-lg.visible-md,td.visible-lg.visible-md {
  8526. display: table-cell!important
  8527. }
  8528. }
  8529.  
  8530. @media(min-width: 1200px) {
  8531. .visible-lg {
  8532. display:block!important
  8533. }
  8534.  
  8535. tr.visible-lg {
  8536. display: table-row!important
  8537. }
  8538.  
  8539. th.visible-lg,td.visible-lg {
  8540. display: table-cell!important
  8541. }
  8542. }
  8543.  
  8544. .hidden-xs {
  8545. display: block!important
  8546. }
  8547.  
  8548. tr.hidden-xs {
  8549. display: table-row!important
  8550. }
  8551.  
  8552. th.hidden-xs,td.hidden-xs {
  8553. display: table-cell!important
  8554. }
  8555.  
  8556. @media(max-width: 767px) {
  8557. .hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs {
  8558. display:none!important
  8559. }
  8560. }
  8561.  
  8562. @media(min-width: 768px)and (max-width:991px) {
  8563. .hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm {
  8564. display:none!important
  8565. }
  8566. }
  8567.  
  8568. @media(min-width: 992px)and (max-width:1199px) {
  8569. .hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md {
  8570. display:none!important
  8571. }
  8572. }
  8573.  
  8574. @media(min-width: 1200px) {
  8575. .hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg {
  8576. display:none!important
  8577. }
  8578. }
  8579.  
  8580. .hidden-sm {
  8581. display: block!important
  8582. }
  8583.  
  8584. tr.hidden-sm {
  8585. display: table-row!important
  8586. }
  8587.  
  8588. th.hidden-sm,td.hidden-sm {
  8589. display: table-cell!important
  8590. }
  8591.  
  8592. @media(max-width: 767px) {
  8593. .hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs {
  8594. display:none!important
  8595. }
  8596. }
  8597.  
  8598. @media(min-width: 768px)and (max-width:991px) {
  8599. .hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm {
  8600. display:none!important
  8601. }
  8602. }
  8603.  
  8604. @media(min-width: 992px)and (max-width:1199px) {
  8605. .hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md {
  8606. display:none!important
  8607. }
  8608. }
  8609.  
  8610. @media(min-width: 1200px) {
  8611. .hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg {
  8612. display:none!important
  8613. }
  8614. }
  8615.  
  8616. .hidden-md {
  8617. display: block!important
  8618. }
  8619.  
  8620. tr.hidden-md {
  8621. display: table-row!important
  8622. }
  8623.  
  8624. th.hidden-md,td.hidden-md {
  8625. display: table-cell!important
  8626. }
  8627.  
  8628. @media(max-width: 767px) {
  8629. .hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs {
  8630. display:none!important
  8631. }
  8632. }
  8633.  
  8634. @media(min-width: 768px)and (max-width:991px) {
  8635. .hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm {
  8636. display:none!important
  8637. }
  8638. }
  8639.  
  8640. @media(min-width: 992px)and (max-width:1199px) {
  8641. .hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md {
  8642. display:none!important
  8643. }
  8644. }
  8645.  
  8646. @media(min-width: 1200px) {
  8647. .hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg {
  8648. display:none!important
  8649. }
  8650. }
  8651.  
  8652. .hidden-lg {
  8653. display: block!important
  8654. }
  8655.  
  8656. tr.hidden-lg {
  8657. display: table-row!important
  8658. }
  8659.  
  8660. th.hidden-lg,td.hidden-lg {
  8661. display: table-cell!important
  8662. }
  8663.  
  8664. @media(max-width: 767px) {
  8665. .hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs {
  8666. display:none!important
  8667. }
  8668. }
  8669.  
  8670. @media(min-width: 768px)and (max-width:991px) {
  8671. .hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm {
  8672. display:none!important
  8673. }
  8674. }
  8675.  
  8676. @media(min-width: 992px)and (max-width:1199px) {
  8677. .hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md {
  8678. display:none!important
  8679. }
  8680. }
  8681.  
  8682. @media(min-width: 1200px) {
  8683. .hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg {
  8684. display:none!important
  8685. }
  8686. }
  8687.  
  8688. .visible-print,tr.visible-print,th.visible-print,td.visible-print {
  8689. display: none!important
  8690. }
  8691.  
  8692. @media print {
  8693. .visible-print {
  8694. display: block!important
  8695. }
  8696.  
  8697. tr.visible-print {
  8698. display: table-row!important
  8699. }
  8700.  
  8701. th.visible-print,td.visible-print {
  8702. display: table-cell!important
  8703. }
  8704.  
  8705. .hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print {
  8706. display: none!important
  8707. }
  8708. }
  8709.  
  8710. html,body {
  8711. height: 100%
  8712. }
  8713.  
  8714. body {
  8715. color: #555;
  8716. background-color: #fff;
  8717. font-family: "PT Sans";
  8718. font-weight: 300
  8719. }
  8720.  
  8721. header,footer,nav,section {
  8722. display: block
  8723. }
  8724.  
  8725. .modal-content {
  8726. border-radius: 0
  8727. }
  8728.  
  8729. .curtain {
  8730. background: rgba(0,0,0,.83);
  8731. position: fixed;
  8732. top: 0;
  8733. left: 0;
  8734. right: 0;
  8735. bottom: 0;
  8736. z-index: -1;
  8737. opacity: 0;
  8738. -moz-transition: .2s all;
  8739. -o-transition: .2s all;
  8740. -webkit-transition: .2s all;
  8741. transition: .2s all;
  8742. cursor: pointer
  8743. }
  8744.  
  8745. .curtain.open {
  8746. opacity: 1;
  8747. z-index: 998
  8748. }
  8749.  
  8750. button {
  8751. outline: none
  8752. }
  8753.  
  8754. .btn-default {
  8755. background: #c63a46;
  8756. border: 0;
  8757. color: #fff;
  8758. padding: 15px 30px;
  8759. height: auto;
  8760. border-radius: 0;
  8761. font-size: 16px
  8762. }
  8763.  
  8764. .btn-default:hover,.btn-default:focus {
  8765. background: #de525e;
  8766. color: #fff
  8767. }
  8768.  
  8769. .btn-default.btn-border {
  8770. background: none;
  8771. border: #c63a46 1px solid;
  8772. color: #c63a46
  8773. }
  8774.  
  8775. .btn-default.btn-border:hover {
  8776. background: #c63a46;
  8777. color: #fff
  8778. }
  8779.  
  8780. .btn-white {
  8781. background: none;
  8782. border: 1px solid #fff;
  8783. color: #fff;
  8784. padding: 15px 30px;
  8785. height: auto;
  8786. border-radius: 0;
  8787. font-size: 16px
  8788. }
  8789.  
  8790. .btn-white:hover,.btn-white:focus {
  8791. background: #de525e;
  8792. color: #fff;
  8793. border-color: #de525e
  8794. }
  8795.  
  8796. .btn-white.btn-border {
  8797. background: none;
  8798. border: #c63a46 1px solid;
  8799. color: #c63a46
  8800. }
  8801.  
  8802. .btn-white.btn-border:hover {
  8803. background: #c63a46;
  8804. color: #fff
  8805. }
  8806.  
  8807. nav {
  8808. position: absolute;
  8809. z-index: 4;
  8810. padding: 40px;
  8811. right: 0;
  8812. top: 0;
  8813. left: 0;
  8814. -moz-transition: .5s all;
  8815. -o-transition: .5s all;
  8816. -webkit-transition: .5s all;
  8817. transition: .5s all
  8818. }
  8819.  
  8820. nav.scrolled {
  8821. top: -120px;
  8822. position: fixed
  8823. }
  8824.  
  8825. nav .logo {
  8826. background: url(/Images/logo.png);
  8827. width: 215px;
  8828. height: 33px;
  8829. position: relative
  8830. }
  8831.  
  8832. nav .menu {
  8833. position: absolute;
  8834. right: 40px;
  8835. top: 40px
  8836. }
  8837.  
  8838. nav .menu li {
  8839. display: inline-block;
  8840. position: relative
  8841. }
  8842.  
  8843. nav .menu li a {
  8844. color: #fff;
  8845. font-size: 16px;
  8846. margin: 0 20px;
  8847. font-family: "Neo Sans Pro";
  8848. font-weight: 300;
  8849. opacity: .7
  8850. }
  8851.  
  8852. nav .menu li a:last-child {
  8853. margin-right: 0
  8854. }
  8855.  
  8856. nav .menu li a:hover,nav .menu li a:focus {
  8857. opacity: 1;
  8858. text-decoration: none
  8859. }
  8860.  
  8861. nav .menu li.toggle a {
  8862. color: #ff291c;
  8863. font-size: 18px
  8864. }
  8865.  
  8866. nav .fixed-toggle {
  8867. position: fixed;
  8868. right: 20px;
  8869. top: 40px;
  8870. opacity: 0;
  8871. -moz-transition: .2s all;
  8872. -o-transition: .2s all;
  8873. -webkit-transition: .2s all;
  8874. transition: .2s all
  8875. }
  8876.  
  8877. nav.scrolled .fixed-toggle {
  8878. opacity: 1
  8879. }
  8880.  
  8881. nav .fixed-toggle a {
  8882. color: #ff291c;
  8883. font-size: 18px;
  8884. margin: 0 20px;
  8885. font-weight: 300;
  8886. opacity: .7
  8887. }
  8888.  
  8889. nav button {
  8890. font-weight: 300!important;
  8891. padding: 8px 15px!important;
  8892. margin-top: -3px
  8893. }
  8894.  
  8895. .top-menu {
  8896. position: fixed;
  8897. left: 0;
  8898. right: 0;
  8899. top: -650px;
  8900. background: #c63a46;
  8901. z-index: 999;
  8902. padding: 40px;
  8903. transition: .3s all
  8904. }
  8905.  
  8906. .top-menu.open {
  8907. top: 0!important;
  8908. margin-top: 0!important
  8909. }
  8910.  
  8911. .top-menu .close {
  8912. color: #fff;
  8913. opacity: 1;
  8914. font-size: 30px;
  8915. z-index: 5;
  8916. position: relative
  8917. }
  8918.  
  8919. .top-menu .logo {
  8920. background: url(/Images/logo.png);
  8921. width: 215px;
  8922. height: 33px;
  8923. position: relative;
  8924. margin-bottom: 20px
  8925. }
  8926.  
  8927. .top-menu .menu {
  8928. border-left: 1px solid rgba(255,255,255,.55);
  8929. padding-left: 20px
  8930. }
  8931.  
  8932. .top-menu .menu li {
  8933. position: relative
  8934. }
  8935.  
  8936. .top-menu .menu li a {
  8937. padding: 5px 0 15px 0;
  8938. display: block;
  8939. color: #fff;
  8940. font-size: 16px;
  8941. font-family: "Neo Sans Pro";
  8942. font-weight: 300;
  8943. opacity: .7
  8944. }
  8945.  
  8946. .top-menu .menu.small li a {
  8947. padding: 5px 0 10px 0;
  8948. font-size: 14px
  8949. }
  8950.  
  8951. .top-menu .menu li a:last-child {
  8952. margin-right: 0
  8953. }
  8954.  
  8955. .top-menu .menu li a:hover,.top-menu .menu li a:focus {
  8956. opacity: 1;
  8957. text-decoration: none
  8958. }
  8959.  
  8960. .overlay {
  8961. position: absolute;
  8962. z-index: 2;
  8963. background: url(/Images/pattern.png),rgba(0,0,0,.5);
  8964. top: 0;
  8965. left: 0;
  8966. bottom: 0;
  8967. right: 0
  8968. }
  8969.  
  8970. section .header {
  8971. font-family: "Neo Sans Pro";
  8972. font-weight: 300;
  8973. font-size: 44px;
  8974. text-align: center;
  8975. color: #5b5b5b
  8976. }
  8977.  
  8978. section .header.left {
  8979. text-align: left
  8980. }
  8981.  
  8982. section .header .bold {
  8983. font-weight: 400;
  8984. position: relative
  8985. }
  8986.  
  8987. section .header .bold:after {
  8988. content: "";
  8989. height: 4px;
  8990. left: 3px;
  8991. bottom: 0;
  8992. right: 3px;
  8993. position: absolute;
  8994. background: #c63a46
  8995. }
  8996.  
  8997. section .header.small {
  8998. font-size: 28px;
  8999. font-family: "Neo Sans Pro";
  9000. font-weight: 100
  9001. }
  9002.  
  9003. section .sub-header {
  9004. text-align: center;
  9005. font-size: 18px;
  9006. margin-top: 10px
  9007. }
  9008.  
  9009. section .sub-header.small {
  9010. font-size: 14px
  9011. }
  9012.  
  9013. section.cut {
  9014. background-size: 100% 60px;
  9015. margin-top: -60px;
  9016. min-height: 60px;
  9017. position: relative;
  9018. z-index: 3;
  9019. width: 100%;
  9020. background-repeat: no-repeat
  9021. }
  9022.  
  9023. section.cut-left {
  9024. background-image: url(/Images/cut-left.png)
  9025. }
  9026.  
  9027. section.cut-bottom-left {
  9028. background-image: url(/Images/cut-bottom-left.png) bottom;
  9029. background-size: 100% 60px;
  9030. margin-top: -60px;
  9031. min-height: 60px;
  9032. position: relative;
  9033. z-index: 3;
  9034. width: 100%;
  9035. padding: 150px 0;
  9036. background-repeat: no-repeat
  9037. }
  9038.  
  9039. section.home-header {
  9040. background: #000;
  9041. background-size: cover;
  9042. width: 100%;
  9043. height: 100%;
  9044. overflow: hidden;
  9045. position: relative;
  9046. z-index: 1;
  9047. -moz-transition: 2s background-color;
  9048. -o-transition: 2s background-color;
  9049. -webkit-transition: 2s background-color;
  9050. transition: 2s background-color
  9051. }
  9052.  
  9053. section.home-header.show {
  9054. background: url(/Images/home-back.jpg) center
  9055. }
  9056.  
  9057. section.home-header video {
  9058. position: absolute;
  9059. top: 50%;
  9060. left: 50%;
  9061. right: 0;
  9062. bottom: 0;
  9063. min-width: 100%;
  9064. min-height: 100%;
  9065. z-index: 1;
  9066. -moz-transform: translate(-50%,-50%);
  9067. -ms-transform: translate(-50%,-50%);
  9068. -o-transform: translate(-50%,-50%);
  9069. -webkit-transform: translate(-50%,-50%);
  9070. transform: translate(-50%,-50%);
  9071. opacity: 0;
  9072. -moz-transition: 2s all;
  9073. -o-transition: 2s all;
  9074. -webkit-transition: 2s all;
  9075. transition: 2s all
  9076. }
  9077.  
  9078. section.home-header video.show {
  9079. opacity: 1
  9080. }
  9081.  
  9082. section.home-header .overlay {
  9083. background: url(/Images/video-overlay.png);
  9084. background-size: 100% 110%
  9085. }
  9086.  
  9087. section.home-header .volume:before {
  9088. font-family: FontAwesome;
  9089. content: "";
  9090. color: #fff;
  9091. font-size: 40px;
  9092. position: absolute;
  9093. z-index: 4;
  9094. right: 40px;
  9095. bottom: 100px;
  9096. width: 40px;
  9097. height: 40px;
  9098. opacity: .8;
  9099. cursor: pointer
  9100. }
  9101.  
  9102. section.home-header .volume.open:before {
  9103. content: ""
  9104. }
  9105.  
  9106. section.home-header .volume:hover:before {
  9107. opacity: 1
  9108. }
  9109.  
  9110. section.home-header>.arrow {
  9111. }
  9112.  
  9113. section.home-header>.arrow:before {
  9114. font-family: FontAwesome;
  9115. content: "";
  9116. color: #fff;
  9117. font-size: 60px;
  9118. position: absolute;
  9119. z-index: 4;
  9120. left: 50%;
  9121. width: 40px;
  9122. height: 40px;
  9123. opacity: .8;
  9124. cursor: pointer;
  9125. -moz-transform: translateX(-50%);
  9126. -ms-transform: translateX(-50%);
  9127. -o-transform: translateX(-50%);
  9128. -webkit-transform: translateX(-50%);
  9129. transform: translateX(-50%);
  9130. bottom: 120px;
  9131. opacity: .8
  9132. }
  9133.  
  9134. section.home-header>.arrow:hover:before {
  9135. opacity: 1
  9136. }
  9137.  
  9138. section.home-header .slogan {
  9139. position: relative;
  9140. z-index: 4;
  9141. top: 50%;
  9142. -moz-transform: translateY(-60%);
  9143. -ms-transform: translateY(-60%);
  9144. -o-transform: translateY(-60%);
  9145. -webkit-transform: translateY(-60%);
  9146. transform: translateY(-60%);
  9147. text-align: center
  9148. }
  9149.  
  9150. section.home-header .slogan h2,section.home-header .slogan h3 {
  9151. color: #fff;
  9152. font-family: "Neo Sans Pro";
  9153. font-weight: 300;
  9154. font-size: 72px;
  9155. margin-bottom: 0
  9156. }
  9157.  
  9158. section.home-header .slogan h3 {
  9159. font-size: 62px;
  9160. margin-top: 0
  9161. }
  9162.  
  9163. section.home-header .slogan p {
  9164. color: #fff;
  9165. font-weight: 300;
  9166. font-size: 22px;
  9167. margin-top: 10px
  9168. }
  9169.  
  9170. section.home-header .slogan .newsletter {
  9171. margin-top: 40px
  9172. }
  9173.  
  9174. .newsletter .form-control {
  9175. font-size: 20px;
  9176. padding: 15px 15px;
  9177. border-radius: 0;
  9178. box-shadow: none;
  9179. border: none;
  9180. height: auto;
  9181. width: 440px
  9182. }
  9183.  
  9184. .newsletter .btn {
  9185. border: 0;
  9186. font-size: 20px;
  9187. padding: 15px 40px
  9188. }
  9189.  
  9190. section.description:before {
  9191. position: absolute;
  9192. content: "";
  9193. background: url(/Images/cut-left.png);
  9194. background-size: 100% 60px;
  9195. background-repeat: no-repeat;
  9196. width: 100%;
  9197. height: 60px;
  9198. z-index: 4;
  9199. top: -60px
  9200. }
  9201.  
  9202. section.description {
  9203. background: url(/Images/cut-bottom-left.png) bottom center;
  9204. background-size: 100% 60px;
  9205. padding: 100px 0 150px 0;
  9206. margin-top: 0;
  9207. margin-bottom: -60px;
  9208. position: relative;
  9209. z-index: 3;
  9210. width: 100%;
  9211. background-repeat: no-repeat
  9212. }
  9213.  
  9214. section.description h3 {
  9215. font-family: "Neo Sans Pro";
  9216. font-size: 60px;
  9217. color: #c63a46;
  9218. text-align: right;
  9219. line-height: 60px
  9220. }
  9221.  
  9222. section.description h2 {
  9223. font-family: "Neo Sans Pro";
  9224. font-weight: 100
  9225. }
  9226.  
  9227. section.description p {
  9228. font-size: 18px;
  9229. margin-top: 20px
  9230. }
  9231.  
  9232. section.description p:first-child {
  9233. margin-top: 30px
  9234. }
  9235.  
  9236. section.description .btn {
  9237. margin-top: 30px
  9238. }
  9239.  
  9240. section.numbers {
  9241. background: url(/Images/collage.jpg) fixed;
  9242. background-size: cover;
  9243. font-size: 30px;
  9244. color: #fff;
  9245. padding: 200px 0 100px 0;
  9246. position: relative
  9247. }
  9248.  
  9249. section.numbers .container {
  9250. z-index: 2;
  9251. position: relative
  9252. }
  9253.  
  9254. section.numbers .number {
  9255. margin-bottom: 80px
  9256. }
  9257.  
  9258. section.numbers .big {
  9259. font-size: 100px;
  9260. font-family: "Neo Sans Pro";
  9261. font-weight: 600;
  9262. display: block;
  9263. color: #fff;
  9264. line-height: 120px
  9265. }
  9266.  
  9267. section.speakers {
  9268. background: url(/Images/cut-left.png),url(/Images/cut-bottom-right.png) bottom center;
  9269. background-size: 100% 60px;
  9270. padding: 160px 0 200px 0;
  9271. margin-top: -60px;
  9272. margin-bottom: -60px;
  9273. position: relative;
  9274. z-index: 3;
  9275. width: 100%;
  9276. background-repeat: no-repeat
  9277. }
  9278.  
  9279. section.speakers.no-padding {
  9280. padding: 100px 0 200px 0
  9281. }
  9282.  
  9283. .speaker-list {
  9284. text-align: center;
  9285. margin-top: 20px
  9286. }
  9287.  
  9288. .speaker-list li {
  9289. display: inline-block;
  9290. margin: 40px -1px;
  9291. width: 185px;
  9292. vertical-align: top
  9293. }
  9294.  
  9295. .speaker-list li .name {
  9296. font-family: "Neo Sans Pro";
  9297. font-size: 18px;
  9298. margin-top: 10px
  9299. }
  9300.  
  9301. .speaker-list li .title {
  9302. margin-top: 5px;
  9303. color: #666
  9304. }
  9305.  
  9306. .speaker-list li .firm {
  9307. margin-top: 2px;
  9308. color: #666
  9309. }
  9310.  
  9311. section.press {
  9312. background: url(/Images/press-back.jpg) fixed;
  9313. background-size: cover;
  9314. font-size: 30px;
  9315. color: #fff;
  9316. padding: 250px 0;
  9317. position: relative
  9318. }
  9319.  
  9320. section.press .container {
  9321. z-index: 2;
  9322. position: relative
  9323. }
  9324.  
  9325. section.press .quote {
  9326. font-family: "Neo Sans Pro";
  9327. font-size: 33px;
  9328. text-transform: uppercase;
  9329. position: relative
  9330. }
  9331.  
  9332. section.press .quote:before {
  9333. font-family: "Neo Sans Pro";
  9334. content: "\"";
  9335. font-size: 152px;
  9336. position: absolute;
  9337. top: -60px;
  9338. left: -60px
  9339. }
  9340.  
  9341. section.press .quote:after {
  9342. font-family: "Neo Sans Pro";
  9343. content: "\”";
  9344. font-size: 152px;
  9345. position: absolute;
  9346. top: -60px;
  9347. right: -60px
  9348. }
  9349.  
  9350. section.investors {
  9351. background: url(/Images/cut-left.png),url(/Images/cut-bottom-left.png) bottom center;
  9352. background-size: 100% 60px;
  9353. padding: 200px 0;
  9354. margin-top: -60px;
  9355. margin-bottom: -60px;
  9356. position: relative;
  9357. z-index: 3;
  9358. width: 100%;
  9359. background-repeat: no-repeat
  9360. }
  9361.  
  9362. .investor-list {
  9363. text-align: center;
  9364. margin-top: 20px
  9365. }
  9366.  
  9367. .investor-list li {
  9368. display: inline-block;
  9369. margin: 40px -1px;
  9370. width: 185px
  9371. }
  9372.  
  9373. section.startups-promo {
  9374. background: url(/Images/startups-home-back.jpg) center fixed;
  9375. background-size: cover;
  9376. color: #fff;
  9377. padding: 150px 0;
  9378. position: relative
  9379. }
  9380.  
  9381. section.startups-promo .container {
  9382. z-index: 2;
  9383. position: relative
  9384. }
  9385.  
  9386. section.startups-promo h2 {
  9387. font-family: "Neo Sans Pro";
  9388. font-size: 45px;
  9389. text-transform: uppercase;
  9390. position: relative;
  9391. font-weight: 300;
  9392. display: inline-block
  9393. }
  9394.  
  9395. section.startups-promo h2:after {
  9396. content: "";
  9397. height: 4px;
  9398. position: absolute;
  9399. bottom: -5px;
  9400. background: #fff;
  9401. left: 0;
  9402. right: 0
  9403. }
  9404.  
  9405. section.startups-promo p {
  9406. font-size: 18px;
  9407. margin-top: 50px
  9408. }
  9409.  
  9410. section.startups-promo .btn {
  9411. margin-top: 50px
  9412. }
  9413.  
  9414. section.startups {
  9415. background: url(/Images/cut-left.png),url(/Images/cut-bottom-right.png) bottom center;
  9416. background-size: 100% 60px;
  9417. padding: 200px 0;
  9418. margin-top: -60px;
  9419. margin-bottom: -60px;
  9420. position: relative;
  9421. z-index: 3;
  9422. width: 100%;
  9423. background-repeat: no-repeat
  9424. }
  9425.  
  9426. .startup-list {
  9427. text-align: center;
  9428. margin-top: 20px
  9429. }
  9430.  
  9431. .startup-list li {
  9432. display: inline-block;
  9433. width: 185px;
  9434. margin: 30px -1px;
  9435. position: relative
  9436. }
  9437.  
  9438. .startup-list li a,.startup-list li a:active,.startup-list li a:focus {
  9439. color: #666;
  9440. text-decoration: none
  9441. }
  9442.  
  9443. .startup-list li a:hover {
  9444. color: #c63a46;
  9445. text-decoration: none
  9446. }
  9447.  
  9448. .startup-list li .name {
  9449. font-family: "Neo Sans Pro";
  9450. font-size: 18px;
  9451. margin-top: 10px
  9452. }
  9453.  
  9454. .startup-list li img {
  9455. position: relative
  9456. }
  9457.  
  9458. .startup-list li .image {
  9459. padding: 20px
  9460. }
  9461.  
  9462. .startup-list li.big {
  9463. text-align: center;
  9464. width: 300px
  9465. }
  9466.  
  9467. .startup-list li.big .image {
  9468. padding: 0
  9469. }
  9470.  
  9471. section.venue {
  9472. background: url(/Images/venue-preview-hotel-back.jpg) center fixed;
  9473. background-size: cover;
  9474. color: #fff;
  9475. padding: 150px 0;
  9476. position: relative
  9477. }
  9478.  
  9479. section.venue .overlay {
  9480. background: rgba(30,30,30,.74)
  9481. }
  9482.  
  9483. section.venue .container {
  9484. z-index: 2;
  9485. position: relative
  9486. }
  9487.  
  9488. section.venue h2 {
  9489. font-family: "Neo Sans Pro";
  9490. font-size: 45px;
  9491. text-transform: uppercase;
  9492. position: relative;
  9493. font-weight: 300
  9494. }
  9495.  
  9496. section.venue h3 {
  9497. font-family: "Pacifico";
  9498. font-size: 26px;
  9499. text-transform: uppercase;
  9500. position: relative;
  9501. margin-top: 5px
  9502. }
  9503.  
  9504. section.venue h3:before {
  9505. position: absolute;
  9506. content: "";
  9507. height: 2px;
  9508. width: 140px;
  9509. left: 145px;
  9510. top: 15px;
  9511. background: #fff
  9512. }
  9513.  
  9514. section.venue h3:after {
  9515. position: absolute;
  9516. content: "";
  9517. height: 2px;
  9518. width: 140px;
  9519. right: 145px;
  9520. top: 15px;
  9521. background: #fff
  9522. }
  9523.  
  9524. section.venue p {
  9525. font-size: 18px;
  9526. margin-top: 50px
  9527. }
  9528.  
  9529. section.venue .btn {
  9530. margin-top: 50px
  9531. }
  9532.  
  9533. section.sponsors {
  9534. background: url(/Images/cut-right.png);
  9535. background-size: 100% 60px;
  9536. padding: 200px 0;
  9537. margin-top: -60px;
  9538. margin-bottom: -60px;
  9539. position: relative;
  9540. z-index: 3;
  9541. width: 100%;
  9542. background-repeat: no-repeat
  9543. }
  9544.  
  9545. .sponsor-list {
  9546. text-align: center;
  9547. margin-top: 20px;
  9548. margin-bottom: 10px
  9549. }
  9550.  
  9551. .sponsor-list li {
  9552. display: inline-block;
  9553. margin: 30px -1px;
  9554. padding: 10px 50px
  9555. }
  9556.  
  9557. section.learn-more {
  9558. background: url(/Images/cut-bottom-left.png) bottom center;
  9559. background-size: 100% 60px;
  9560. margin-bottom: -60px;
  9561. position: relative;
  9562. z-index: 3;
  9563. width: 100%;
  9564. background-repeat: no-repeat;
  9565. padding-bottom: 200px
  9566. }
  9567.  
  9568. section.learn-more img {
  9569. margin-top: 50px;
  9570. display: inline-block
  9571. }
  9572.  
  9573. section.learn-more .btn {
  9574. margin-top: 50px
  9575. }
  9576.  
  9577. section.map {
  9578. position: relative;
  9579. z-index: 1;
  9580. width: 100%;
  9581. height: 500px;
  9582. overflow: hidden
  9583. }
  9584.  
  9585. section.map #map {
  9586. height: 700px;
  9587. position: absolute;
  9588. top: -100px;
  9589. bottom: -100px;
  9590. width: 100%
  9591. }
  9592.  
  9593. section.about {
  9594. background: url(/Images/cut-left.png),url(/Images/cut-bottom-right.png) bottom center;
  9595. background-size: 100% 60px;
  9596. padding: 200px 0;
  9597. margin-top: -60px;
  9598. margin-bottom: -60px;
  9599. position: relative;
  9600. z-index: 3;
  9601. width: 100%;
  9602. background-repeat: no-repeat;
  9603. font-size: 30px
  9604. }
  9605.  
  9606. section.about .number {
  9607. margin-bottom: 80px;
  9608. margin-top: 100px
  9609. }
  9610.  
  9611. section.about .big {
  9612. font-size: 100px;
  9613. font-family: "Neo Sans Pro";
  9614. font-weight: 600;
  9615. display: block;
  9616. line-height: 120px
  9617. }
  9618.  
  9619. section.about p {
  9620. font-size: 18px;
  9621. text-align: center;
  9622. margin-bottom: 40px
  9623. }
  9624.  
  9625. section.about .fancyvideo {
  9626. position: relative;
  9627. display: block;
  9628. margin-top: 50px
  9629. }
  9630.  
  9631. section.about .fancyvideo:before {
  9632. content: "";
  9633. font-family: FontAwesome;
  9634. font-size: 220px;
  9635. color: #de525e;
  9636. position: absolute;
  9637. top: 50%;
  9638. left: 50%;
  9639. -moz-transform: translate(-50%,-50%);
  9640. -ms-transform: translate(-50%,-50%);
  9641. -o-transform: translate(-50%,-50%);
  9642. -webkit-transform: translate(-50%,-50%);
  9643. transform: translate(-50%,-50%);
  9644. z-index: 2;
  9645. -moz-transition: .1s all;
  9646. -o-transition: .1s all;
  9647. -webkit-transition: .1s all;
  9648. transition: .1s all
  9649. }
  9650.  
  9651. section.about .fancyvideo:hover:before {
  9652. color: #f16f7a
  9653. }
  9654.  
  9655. section.media-links:before {
  9656. position: absolute;
  9657. content: "";
  9658. background: url(/Images/cut-left-grey.png);
  9659. background-size: 100% 60px;
  9660. background-repeat: no-repeat;
  9661. width: 100%;
  9662. height: 60px;
  9663. z-index: 4;
  9664. top: -60px
  9665. }
  9666.  
  9667. section.media-links {
  9668. background-color: #272727;
  9669. background-size: 100% 60px;
  9670. padding: 50px 0 80px 0;
  9671. margin-bottom: -60px;
  9672. position: relative;
  9673. z-index: 3;
  9674. width: 100%;
  9675. background-repeat: no-repeat
  9676. }
  9677.  
  9678. section.media-links .header {
  9679. font-size: 20px;
  9680. color: #e5e5e5
  9681. }
  9682.  
  9683. .media-list {
  9684. text-align: center;
  9685. margin-top: 20px
  9686. }
  9687.  
  9688. .media-list li {
  9689. display: inline-block;
  9690. margin: 30px -1px;
  9691. width: 185px
  9692. }
  9693.  
  9694. footer {
  9695. background: url(/Images/footer-back.jpg) top -60px center fixed;
  9696. background-size: cover;
  9697. color: #fff;
  9698. padding: 150px 0 50px 0;
  9699. position: relative
  9700. }
  9701.  
  9702. footer .popover {
  9703. color: #666
  9704. }
  9705.  
  9706. footer .overlay {
  9707. background: rgba(36,36,36,.96)
  9708. }
  9709.  
  9710. footer .container {
  9711. z-index: 2;
  9712. position: relative
  9713. }
  9714.  
  9715. footer .social-links {
  9716. text-align: right
  9717. }
  9718.  
  9719. footer .social-links li {
  9720. display: inline-block;
  9721. font-size: 44px;
  9722. margin: 0 10px
  9723. }
  9724.  
  9725. footer .social-links li a {
  9726. color: #e0e0e0;
  9727. -moz-transition: .2s all;
  9728. -o-transition: .2s all;
  9729. -webkit-transition: .2s all;
  9730. transition: .2s all
  9731. }
  9732.  
  9733. footer .social-links li a:hover {
  9734. color: #fff
  9735. }
  9736.  
  9737. footer .footer-section {
  9738. margin-top: 30px
  9739. }
  9740.  
  9741. footer .footer-section li {
  9742. margin: 5px 0
  9743. }
  9744.  
  9745. footer .footer-section li.section-header {
  9746. font-family: "Neo Sans Pro";
  9747. font-size: 24px;
  9748. color: #de525e
  9749. }
  9750.  
  9751. footer .footer-section li a {
  9752. color: #e0e0e0
  9753. }
  9754.  
  9755. footer .mobidikpro {
  9756. float: right;
  9757. margin-top: 100px;
  9758. margin-right: 10px;
  9759. opacity: .8
  9760. }
  9761.  
  9762. footer .mobidikpro:hover {
  9763. opacity: 1
  9764. }
  9765.  
  9766. section.page-top {
  9767. width: 100%;
  9768. overflow: hidden;
  9769. position: relative;
  9770. z-index: 1;
  9771. height: 550px
  9772. }
  9773.  
  9774. section.page-top.speakers-page {
  9775. background: url(/Images/speakers-back.jpg) fixed top center
  9776. }
  9777.  
  9778. section.page-top.startups-page {
  9779. background: url(/Images/startups-back.jpg) fixed top -100px center;
  9780. height: 500px
  9781. }
  9782.  
  9783. section.page-top.companies-page {
  9784. background: url(/Images/companies-back.jpg) fixed top center
  9785. }
  9786.  
  9787. section.page-top.venue-page {
  9788. background: url(/Images/venue-preview-hotel-back.jpg) fixed top center
  9789. }
  9790.  
  9791. section.page-top.sponsors-page {
  9792. background: url(/Images/sponsors-back.jpg) fixed top center
  9793. }
  9794.  
  9795. section.page-top.media-page {
  9796. background: url(/Images/media-back.jpg) fixed top center
  9797. }
  9798.  
  9799. section.page-top.about-page {
  9800. background: url(/Images/home-back.jpg) fixed top center
  9801. }
  9802.  
  9803. section.page-top.invitation-page {
  9804. background: url(/Images/invitation-back.jpg) fixed top center;
  9805. height: 500px
  9806. }
  9807.  
  9808. section.page-top.speed-networking-page {
  9809. background: url(/Images/speednet-back.jpg) fixed top center
  9810. }
  9811.  
  9812. section.page-top.attendees-page {
  9813. background: url(/Images/attendees-back.jpg) fixed top center
  9814. }
  9815.  
  9816. section.page-top.registration-page {
  9817. background: transparent url("/Images/Cornelia-Diamond-Golf-Resort-Spa-Header.jpg") repeat fixed center top
  9818. }
  9819.  
  9820. .section.page-top.contact-page {
  9821. background: #c63a46;
  9822. height: 350px
  9823. }
  9824.  
  9825. section.page-top.photos-page {
  9826. background: #c63a46;
  9827. height: 400px
  9828. }
  9829.  
  9830. section.page-top.success-page {
  9831. background: #c63a46;
  9832. height: 800px
  9833. }
  9834.  
  9835. section.page-top .slogan {
  9836. position: relative;
  9837. z-index: 4;
  9838. top: 50%;
  9839. -moz-transform: translateY(-60%);
  9840. -ms-transform: translateY(-60%);
  9841. -o-transform: translateY(-60%);
  9842. -webkit-transform: translateY(-60%);
  9843. transform: translateY(-60%);
  9844. text-align: center
  9845. }
  9846.  
  9847. section.page-top .slogan h2,section.page-top .slogan h3 {
  9848. color: #fff;
  9849. font-family: "Neo Sans Pro";
  9850. font-weight: 300;
  9851. font-size: 72px;
  9852. margin-bottom: 0;
  9853. position: relative;
  9854. display: inline-block
  9855. }
  9856.  
  9857. section.page-top .slogan h2:after {
  9858. content: "";
  9859. height: 4px;
  9860. position: absolute;
  9861. bottom: -5px;
  9862. background: #fff;
  9863. left: 0;
  9864. right: 0
  9865. }
  9866.  
  9867. section.page-top .slogan h3 {
  9868. font-size: 62px;
  9869. margin-top: 0
  9870. }
  9871.  
  9872. section.page-top .slogan p {
  9873. color: #fff;
  9874. font-weight: 300;
  9875. font-size: 22px;
  9876. margin-top: 20px;
  9877. opacity: .8;
  9878. font-family: "Open Sans"
  9879. }
  9880.  
  9881. section.page-top .slogan .btn {
  9882. margin-top: 30px
  9883. }
  9884.  
  9885. section.content:before {
  9886. position: absolute;
  9887. content: "";
  9888. background: url(/Images/cut-left.png);
  9889. background-size: 100% 60px;
  9890. background-repeat: no-repeat;
  9891. width: 100%;
  9892. height: 60px;
  9893. z-index: 4;
  9894. top: -60px
  9895. }
  9896.  
  9897. .form {
  9898. }
  9899.  
  9900. .form h3 {
  9901. font-family: "Neo Sans Pro";
  9902. font-weight: 300;
  9903. margin-top: 40px;
  9904. color: #c63a46;
  9905. margin-bottom: 0;
  9906. font-size: 30px
  9907. }
  9908.  
  9909. .form .form-description {
  9910. color: #999;
  9911. border-bottom: 1px solid #efefef;
  9912. margin-top: 5px;
  9913. padding-bottom: 20px;
  9914. margin-bottom: 20px
  9915. }
  9916.  
  9917. .form .form-control {
  9918. border: 1px solid #e1e1e1;
  9919. border-bottom: 3px solid #e1e1e1;
  9920. -moz-border-radius: 0;
  9921. -webkit-border-radius: 0;
  9922. border-radius: 0;
  9923. -moz-box-shadow: none;
  9924. -webkit-box-shadow: none;
  9925. box-shadow: none;
  9926. padding: 15px 10px;
  9927. height: auto
  9928. }
  9929.  
  9930. .form .form-control:focus {
  9931. border-color: #de525e
  9932. }
  9933.  
  9934. .form .btn {
  9935. margin-top: 20px;
  9936. display: block;
  9937. float: none;
  9938. width: 100%
  9939. }
  9940.  
  9941. .form .form-group.has-error input,.form .form-group.has-error textarea {
  9942. border-color: #de525e
  9943. }
  9944.  
  9945. .gallery {
  9946. margin: 50px 0 100px 0;
  9947. font-size: 0
  9948. }
  9949.  
  9950. .gallery li {
  9951. display: inline-block;
  9952. margin: .5px;
  9953. width: 280px;
  9954. height: 250px;
  9955. overflow: hidden;
  9956. position: relative
  9957. }
  9958.  
  9959. .gallery.videos li {
  9960. width: 320px;
  9961. height: 300px;
  9962. position: relative
  9963. }
  9964.  
  9965. .gallery li a {
  9966. display: block;
  9967. width: 100%;
  9968. height: 100%;
  9969. position: relative
  9970. }
  9971.  
  9972. .gallery li img {
  9973. max-height: 100%;
  9974. min-width: 100%
  9975. }
  9976.  
  9977. .gallery li a:before {
  9978. position: absolute;
  9979. content: "";
  9980. background: rgba(198,58,70,.62);
  9981. left: 0;
  9982. top: 0;
  9983. right: 0;
  9984. bottom: 0;
  9985. opacity: 0;
  9986. -moz-transition: .2s all;
  9987. -o-transition: .2s all;
  9988. -webkit-transition: .2s all;
  9989. transition: .2s all;
  9990. z-index: 2
  9991. }
  9992.  
  9993. .gallery li:hover a:before {
  9994. opacity: 1
  9995. }
  9996.  
  9997. .gallery.videos li a:after {
  9998. position: absolute;
  9999. content: "";
  10000. font-family: FontAwesome;
  10001. font-size: 110px;
  10002. color: #fff;
  10003. position: absolute;
  10004. left: 50%;
  10005. top: 50%;
  10006. -moz-transform: translate(-50%,-50%);
  10007. -ms-transform: translate(-50%,-50%);
  10008. -o-transform: translate(-50%,-50%);
  10009. -webkit-transform: translate(-50%,-50%);
  10010. transform: translate(-50%,-50%);
  10011. z-index: 3;
  10012. text-shadow: 0 0 2px rgba(0,0,0,.2);
  10013. -moz-transition: .2s all;
  10014. -o-transition: .2s all;
  10015. -webkit-transition: .2s all;
  10016. transition: .2s all
  10017. }
  10018.  
  10019. .gallery.videos li a:hover:after {
  10020. font-size: 140px
  10021. }
  10022.  
  10023. section.venue-rating {
  10024. font-size: 40px;
  10025. background: url(/Images/venue-rating-back.jpg) bottom center fixed;
  10026. background-size: cover;
  10027. color: #fff;
  10028. padding: 150px 0;
  10029. position: relative
  10030. }
  10031.  
  10032. section.venue-rating p {
  10033. font-size: 20px;
  10034. margin-top: 20px;
  10035. position: relative
  10036. }
  10037.  
  10038. section.venue-rating p:before {
  10039. font-family: "Neo Sans Pro";
  10040. content: "\"";
  10041. font-size: 152px;
  10042. position: absolute;
  10043. top: -60px;
  10044. left: -60px
  10045. }
  10046.  
  10047. section.venue-rating p:after {
  10048. font-family: "Neo Sans Pro";
  10049. content: "\”";
  10050. font-size: 152px;
  10051. position: absolute;
  10052. top: -60px;
  10053. right: -60px
  10054. }
  10055.  
  10056. section.venue-rating .container {
  10057. z-index: 2;
  10058. position: relative
  10059. }
  10060.  
  10061. section.city-rating {
  10062. font-size: 40px;
  10063. background: url(/Images/city-rating-back.jpg) bottom center fixed;
  10064. background-size: cover;
  10065. color: #fff;
  10066. padding: 150px 0;
  10067. position: relative
  10068. }
  10069.  
  10070. section.city-rating p {
  10071. font-size: 20px;
  10072. margin-top: 20px;
  10073. position: relative
  10074. }
  10075.  
  10076. section.city-rating p:before {
  10077. font-family: "Neo Sans Pro";
  10078. content: "\"";
  10079. font-size: 152px;
  10080. position: absolute;
  10081. top: -60px;
  10082. left: -60px
  10083. }
  10084.  
  10085. section.city-rating p:after {
  10086. font-family: "Neo Sans Pro";
  10087. content: "\”";
  10088. font-size: 152px;
  10089. position: absolute;
  10090. top: -60px;
  10091. right: -60px
  10092. }
  10093.  
  10094. section.city-rating .container {
  10095. z-index: 2;
  10096. position: relative
  10097. }
  10098.  
  10099. section.vip-dinner-venue {
  10100. background: url(/Images/vip-venue-back.jpg) bottom center fixed;
  10101. padding: 150px 0;
  10102. position: relative
  10103. }
  10104.  
  10105. section.vip-dinner-venue .container {
  10106. z-index: 2;
  10107. position: relative
  10108. }
  10109.  
  10110. section.vip-dinner-venue h2 {
  10111. font-family: "Neo Sans Pro";
  10112. font-weight: 300;
  10113. font-size: 44px;
  10114. text-align: center;
  10115. color: #fff;
  10116. line-height: 45px;
  10117. display: inline-block;
  10118. position: relative
  10119. }
  10120.  
  10121. section.vip-dinner-venue h2 i {
  10122. margin-bottom: 20px
  10123. }
  10124.  
  10125. section.vip-dinner-venue h2 span {
  10126. display: block;
  10127. font-size: 30px
  10128. }
  10129.  
  10130. section.vip-dinner-venue h2:after {
  10131. content: "";
  10132. height: 4px;
  10133. left: 15px;
  10134. bottom: -20px;
  10135. right: 15px;
  10136. position: absolute;
  10137. background: #fff
  10138. }
  10139.  
  10140. section.speed-networking-quote {
  10141. font-size: 40px;
  10142. background: url(/Images/speednet-quote-back.jpg) bottom center fixed;
  10143. background-size: cover;
  10144. color: #fff;
  10145. padding: 150px 0;
  10146. position: relative
  10147. }
  10148.  
  10149. section.speed-networking-quote .container {
  10150. z-index: 2;
  10151. position: relative
  10152. }
  10153.  
  10154. section.speed-networking-quote p {
  10155. font-size: 36px;
  10156. margin-top: 20px;
  10157. position: relative
  10158. }
  10159.  
  10160. .loader {
  10161. position: fixed;
  10162. top: 0;
  10163. left: 0;
  10164. right: 0;
  10165. bottom: 0;
  10166. background: rgba(0,0,0,.8);
  10167. z-index: 99999;
  10168. display: none
  10169. }
  10170.  
  10171. .loader div {
  10172. position: absolute;
  10173. top: 50%;
  10174. left: 50%;
  10175. margin-left: -7px;
  10176. margin-top: -7px;
  10177. width: 44px;
  10178. height: 44px;
  10179. border: solid 5px transparent;
  10180. border-top-color: #c63a46;
  10181. border-left-color: #c63a46;
  10182. border-radius: 22px;
  10183. -webkit-animation: pace-spinner 600ms linear infinite;
  10184. -moz-animation: pace-spinner 600ms linear infinite;
  10185. -ms-animation: pace-spinner 600ms linear infinite;
  10186. -o-animation: pace-spinner 600ms linear infinite;
  10187. animation: pace-spinner 600ms linear infinite
  10188. }
  10189.  
  10190. @-webkit-keyframes pace-spinner {
  10191. 0% {
  10192. -webkit-transform: rotate(0);
  10193. transform: rotate(0)
  10194. }
  10195.  
  10196. 100% {
  10197. -webkit-transform: rotate(360deg);
  10198. transform: rotate(360deg)
  10199. }
  10200. }
  10201.  
  10202. @-moz-keyframes pace-spinner {
  10203. 0% {
  10204. -moz-transform: rotate(0);
  10205. transform: rotate(0)
  10206. }
  10207.  
  10208. 100% {
  10209. -moz-transform: rotate(360deg);
  10210. transform: rotate(360deg)
  10211. }
  10212. }
  10213.  
  10214. @-o-keyframes pace-spinner {
  10215. 0% {
  10216. -o-transform: rotate(0);
  10217. transform: rotate(0);
  10218. }
  10219.  
  10220. 100% {
  10221. -o-transform: rotate(360deg);
  10222. transform: rotate(360deg);
  10223. }
  10224. }
  10225.  
  10226. @-ms-keyframes pace-spinner {
  10227. 0% {
  10228. -ms-transform: rotate(0);
  10229. transform: rotate(0)
  10230. }
  10231.  
  10232. 100% {
  10233. -ms-transform: rotate(360deg);
  10234. transform: rotate(360deg)
  10235. }
  10236. }
  10237.  
  10238. @keyframes pace-spinner {
  10239. 0% {
  10240. transform: rotate(0);
  10241. transform: rotate(0)
  10242. }
  10243.  
  10244. 100% {
  10245. transform: rotate(360deg);
  10246. transform: rotate(360deg)
  10247. }
  10248. }
  10249.  
  10250. .about-antalya .row {
  10251. margin-bottom: 50px
  10252. }
  10253.  
  10254. .about-antalya h3 {
  10255. font-family: "Neo Sans Pro"
  10256. }
  10257.  
  10258. .about-antalya h3 i {
  10259. display: block;
  10260. margin-bottom: 10px;
  10261. color: #c63a46;
  10262. font-size: 40px
  10263. }
  10264.  
  10265. .about-antalya h3 img {
  10266. display: block;
  10267. margin-bottom: 10px
  10268. }
  10269.  
  10270. .who {
  10271. }
  10272.  
  10273. .who h3 {
  10274. font-family: "Neo Sans Pro";
  10275. font-size: 30px
  10276. }
  10277.  
  10278. .who p {
  10279. font-size: 16px
  10280. }
  10281.  
  10282. .who .social li {
  10283. font-size: 36px;
  10284. display: inline-block;
  10285. margin-right: 5px
  10286. }
  10287.  
  10288. .who .social li a {
  10289. color: #666
  10290. }
  10291.  
  10292. .who .social li a:hover {
  10293. color: #c63a46
  10294. }
  10295.  
  10296. .tips {
  10297. text-align: left;
  10298. margin-top: 10px
  10299. }
  10300.  
  10301. .tips li {
  10302. padding: 5px;
  10303. font-size: 16px
  10304. }
  10305.  
  10306. .success-page h4 {
  10307. color: #fff;
  10308. margin-top: 30px;
  10309. margin-bottom: 0
  10310. }
  10311.  
  10312. .success-page .social-share li {
  10313. font-size: 50px;
  10314. display: inline-block;
  10315. margin: 10px
  10316. }
  10317.  
  10318. .success-page .social-share li a {
  10319. color: #fff
  10320. }
  10321.  
  10322. .success-page .social-share li a:hover {
  10323. opacity: .8
  10324. }
  10325.  
  10326. section.program .program-dates {
  10327. text-align: center
  10328. }
  10329.  
  10330. section.program .program-dates li {
  10331. display: inline-block;
  10332. border: 1px solid #fff;
  10333. padding: 20px;
  10334. color: #fff;
  10335. text-align: center;
  10336. margin: 10px;
  10337. cursor: pointer;
  10338. font-size: 24px;
  10339. background: #f17680;
  10340. -moz-transition: .2s all;
  10341. -o-transition: .2s all;
  10342. -webkit-transition: .2s all;
  10343. transition: .2s all
  10344. }
  10345.  
  10346. section.program .program-dates li:hover {
  10347. background: #de525e;
  10348. color: #fff
  10349. }
  10350.  
  10351. section.program .program-dates li.active {
  10352. background: #de525e;
  10353. color: #fff;
  10354. position: relative
  10355. }
  10356.  
  10357. section.program .program-dates li.active :after,.program-dates li.active :before {
  10358. top: 100%;
  10359. left: 50%;
  10360. border: solid transparent;
  10361. content: " ";
  10362. height: 0;
  10363. width: 0;
  10364. position: absolute;
  10365. pointer-events: none
  10366. }
  10367.  
  10368. section.program .program-dates li.active :after {
  10369. border-color: rgba(136,183,213,0);
  10370. border-top-color: #de525e;
  10371. border-width: 10px;
  10372. margin-left: -10px
  10373. }
  10374.  
  10375. section.program .program-dates li span {
  10376. display: block;
  10377. font-weight: bold
  10378. }
  10379.  
  10380. section.program table {
  10381. width: 100%;
  10382. margin-top: 50px;
  10383. margin-bottom: 50px;
  10384. display: none
  10385. }
  10386.  
  10387. section.program table.active {
  10388. display: table
  10389. }
  10390.  
  10391. section.program table thead td {
  10392. color: #666;
  10393. text-align: left;
  10394. padding: 10px 20px;
  10395. font-size: 24px;
  10396. text-transform: uppercase;
  10397. font-family: "Neo Sans Pro"
  10398. }
  10399.  
  10400. section.program table tbody td {
  10401. color: #666;
  10402. text-align: left;
  10403. padding: 20px 20px;
  10404. border-top: 1px solid #ededed;
  10405. font-size: 16px
  10406. }
  10407.  
  10408. section.program table tbody td span {
  10409. font-weight: normal
  10410. }
  10411.  
  10412. section.program table tbody td span:nth-of-type(2) {
  10413. font-size: 14px;
  10414. color: #999
  10415. }
  10416.  
  10417. section.program table tr td:first-child {
  10418. width: 140px
  10419. }
  10420.  
  10421. section.program table tbody td:nth-child(2n+2) {
  10422. font-weight: bold
  10423. }
  10424.  
  10425. section.program table tbody tr.prize td {
  10426. color: #fff;
  10427. background: #d35400
  10428. }
  10429.  
  10430. table.prices {
  10431. width: 100%;
  10432. margin-top: 50px
  10433. }
  10434.  
  10435. table.prices thead td {
  10436. background: #c63a46;
  10437. color: #fff;
  10438. font-size: 16px;
  10439. padding: 20px
  10440. }
  10441.  
  10442. table.prices tbody td {
  10443. padding: 20px
  10444. }
  10445.  
  10446. table.prices tbody tr td:first-child {
  10447. font-weight: bold
  10448. }
  10449.  
  10450. table.prices tbody tr:nth-child(2n) td {
  10451. background: #efefef
  10452. }
  10453.  
  10454. .startup-modal h2 {
  10455. font-family: "Neo Sans Pro";
  10456. font-size: 26px
  10457. }
  10458.  
  10459. .startup-modal p {
  10460. margin-top: 20px
  10461. }
  10462.  
  10463. .startup-modal .btn-twitter {
  10464. background: #55acee;
  10465. border-radius: 0;
  10466. color: #fff;
  10467. margin-top: 10px
  10468. }
  10469.  
  10470. .startup-modal .btn-linkedin {
  10471. background: #0976b4;
  10472. border-radius: 0;
  10473. color: #fff;
  10474. margin-top: 10px
  10475. }
  10476.  
  10477. .startup-modal .founder-info {
  10478. margin: -20px
  10479. }
  10480.  
  10481. .startup-modal h3 {
  10482. font-family: "Neo Sans Pro";
  10483. font-weight: 300;
  10484. font-size: 22px
  10485. }
  10486.  
  10487. .startup-modal .founders li {
  10488. margin-bottom: 20px
  10489. }
  10490.  
  10491. .tt-query {
  10492. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  10493. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  10494. box-shadow: inset 0 1px 1px rgba(0,0,0,.075)
  10495. }
  10496.  
  10497. .tt-hint {
  10498. color: #999
  10499. }
  10500.  
  10501. .tt-menu {
  10502. width: 360px;
  10503. height: auto;
  10504. background-color: #fff;
  10505. border: 1px solid #e1e1e1;
  10506. border-bottom: 3px solid #e1e1e1;
  10507. -moz-border-radius: 0;
  10508. -webkit-border-radius: 0;
  10509. border-radius: 0;
  10510. -moz-box-shadow: none;
  10511. -webkit-box-shadow: none;
  10512. box-shadow: none;
  10513. padding: 15px 10px;
  10514. max-height: 250px;
  10515. overflow-y: auto
  10516. }
  10517.  
  10518. .tt-suggestion {
  10519. padding: 3px 20px;
  10520. font-size: 18px;
  10521. line-height: 24px
  10522. }
  10523.  
  10524. .tt-suggestion:hover {
  10525. cursor: pointer;
  10526. color: #fff;
  10527. background-color: #0097cf
  10528. }
  10529.  
  10530. .tt-suggestion.tt-cursor {
  10531. color: #fff;
  10532. background-color: #0097cf
  10533. }
  10534.  
  10535. .tt-suggestion p {
  10536. margin: 0
  10537. }
  10538.  
  10539. @media only screen and (max-width: 1024px) {
  10540. section.numbers,section.press,section.venue,footer,section.venue-rating,section.startups-promo {
  10541. background-attachment:local
  10542. }
  10543.  
  10544. section.venue h3:after,section.venue h3:before {
  10545. display: none
  10546. }
  10547. }
  10548.  
  10549. @media only screen and (max-width: 1200px) {
  10550. nav .menu li:not(.toggle) {
  10551. display:none
  10552. }
  10553. }
  10554.  
  10555. @media only screen and (max-width: 1000px) {
  10556. nav .fixed-toggle {
  10557. position:absolute
  10558. }
  10559.  
  10560. nav .menu li.toggle a {
  10561. font-size: 24px
  10562. }
  10563.  
  10564. nav.scrolled .fixed-toggle {
  10565. opacity: 0
  10566. }
  10567.  
  10568. nav.fixed {
  10569. position: absolute
  10570. }
  10571.  
  10572. nav.scrolled {
  10573. top: 0
  10574. }
  10575.  
  10576. nav {
  10577. padding: 30px
  10578. }
  10579.  
  10580. nav .menu {
  10581. right: 30px;
  10582. top: 30px
  10583. }
  10584.  
  10585. .top-menu {
  10586. position: relative
  10587. }
  10588.  
  10589. .curtain {
  10590. display: none
  10591. }
  10592.  
  10593. section.home-header .overlay {
  10594. background: url(/Images/pattern.png),rgba(0,0,0,.6);
  10595. background-size: auto
  10596. }
  10597.  
  10598. section.home-header .slogan h2 {
  10599. font-size: 40px
  10600. }
  10601.  
  10602. section.home-header .slogan h3 {
  10603. font-size: 36px;
  10604. margin-top: 5px
  10605. }
  10606.  
  10607. section.home-header .slogan p {
  10608. font-size: 14px
  10609. }
  10610.  
  10611. .newsletter .form-control {
  10612. display: inline-block;
  10613. width: 100%
  10614. }
  10615.  
  10616. .newsletter .form-group {
  10617. margin-bottom: 15px;
  10618. display: block
  10619. }
  10620.  
  10621. section.home-header video {
  10622. display: none
  10623. }
  10624.  
  10625. section.home-header .volume {
  10626. display: none
  10627. }
  10628.  
  10629. section.description h3 {
  10630. text-align: left;
  10631. font-size: 40px;
  10632. line-height: 40px
  10633. }
  10634.  
  10635. section.press .quote {
  10636. padding: 0 50px
  10637. }
  10638.  
  10639. section.press .quote:before,section.press .quote:after {
  10640. font-size: 80px
  10641. }
  10642.  
  10643. section.press .quote:before {
  10644. left: 10px;
  10645. top: -20px
  10646. }
  10647.  
  10648. section.press .quote:after {
  10649. right: 10px;
  10650. top: -20px
  10651. }
  10652.  
  10653. footer .social-links {
  10654. text-align: left
  10655. }
  10656.  
  10657. section.page-top .slogan h2,section.page-top .slogan h3 {
  10658. font-size: 40px
  10659. }
  10660. }
  10661.  
  10662. @media only screen and (max-width: 600px) {
  10663. .gallery.videos li {
  10664. width:250px
  10665. }
  10666. }
Add Comment
Please, Sign In to add comment