aacinfo-theme 0.2.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (489) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +25 -1
  3. data/_includes/footer.html +54 -0
  4. data/_includes/header.html +46 -0
  5. data/_includes/parts/content.html +6 -0
  6. data/_includes/parts/social-media.html +10 -0
  7. data/_includes/theme-menu.html +27 -28
  8. data/_layouts/theme.html +14 -26
  9. data/_layouts/title-page.html +22 -0
  10. data/_sass/_style.scss +122 -0
  11. data/_sass/components/_blockquotes.scss +62 -0
  12. data/_sass/components/_buttons.scss +100 -0
  13. data/_sass/components/_cards.scss +29 -0
  14. data/_sass/components/_dividers.scss +165 -0
  15. data/_sass/components/_featured-image.scss +14 -0
  16. data/_sass/components/_forms.scss +414 -0
  17. data/_sass/components/_links.scss +83 -0
  18. data/_sass/components/_pagination.scss +91 -0
  19. data/_sass/components/_selectric.scss +200 -0
  20. data/_sass/components/_slick-theme.scss +194 -0
  21. data/_sass/components/_slick.scss +98 -0
  22. data/_sass/components/_spinner.scss +356 -0
  23. data/_sass/components/_svg.scss +12 -0
  24. data/_sass/fontawesome/.bower.json +36 -0
  25. data/_sass/fontawesome/.gitignore +33 -0
  26. data/_sass/fontawesome/.npmignore +42 -0
  27. data/_sass/fontawesome/HELP-US-OUT.txt +7 -0
  28. data/_sass/fontawesome/bower.json +22 -0
  29. data/{assets → _sass/fontawesome}/css/font-awesome.css +547 -11
  30. data/_sass/fontawesome/css/font-awesome.css.map +7 -0
  31. data/_sass/fontawesome/css/font-awesome.min.css +4 -0
  32. data/_sass/fontawesome/fonts/FontAwesome.otf +0 -0
  33. data/_sass/fontawesome/fonts/fontawesome-webfont.eot +0 -0
  34. data/_sass/fontawesome/fonts/fontawesome-webfont.svg +2671 -0
  35. data/_sass/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
  36. data/_sass/fontawesome/fonts/fontawesome-webfont.woff +0 -0
  37. data/_sass/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
  38. data/_sass/fontawesome/less/animated.less +34 -0
  39. data/_sass/fontawesome/less/bordered-pulled.less +25 -0
  40. data/_sass/fontawesome/less/core.less +12 -0
  41. data/_sass/fontawesome/less/fixed-width.less +6 -0
  42. data/_sass/fontawesome/less/font-awesome.less +18 -0
  43. data/_sass/fontawesome/less/icons.less +789 -0
  44. data/_sass/fontawesome/less/larger.less +13 -0
  45. data/_sass/fontawesome/less/list.less +19 -0
  46. data/_sass/fontawesome/less/mixins.less +60 -0
  47. data/_sass/fontawesome/less/path.less +15 -0
  48. data/_sass/fontawesome/less/rotated-flipped.less +20 -0
  49. data/_sass/fontawesome/less/screen-reader.less +5 -0
  50. data/_sass/fontawesome/less/stacked.less +20 -0
  51. data/_sass/fontawesome/less/variables.less +800 -0
  52. data/_sass/fontawesome/scss/_animated.scss +34 -0
  53. data/_sass/fontawesome/scss/_bordered-pulled.scss +25 -0
  54. data/_sass/fontawesome/scss/_core.scss +12 -0
  55. data/_sass/fontawesome/scss/_fixed-width.scss +6 -0
  56. data/_sass/fontawesome/scss/_icons.scss +789 -0
  57. data/_sass/fontawesome/scss/_larger.scss +13 -0
  58. data/_sass/fontawesome/scss/_list.scss +19 -0
  59. data/_sass/fontawesome/scss/_mixins.scss +60 -0
  60. data/_sass/fontawesome/scss/_path.scss +15 -0
  61. data/_sass/fontawesome/scss/_rotated-flipped.scss +20 -0
  62. data/_sass/fontawesome/scss/_screen-reader.scss +5 -0
  63. data/_sass/fontawesome/scss/_stacked.scss +20 -0
  64. data/_sass/fontawesome/scss/_variables.scss +800 -0
  65. data/_sass/fontawesome/scss/font-awesome.scss +18 -0
  66. data/_sass/foundation-sites/.bower.json +44 -0
  67. data/_sass/foundation-sites/.bowerrc +3 -0
  68. data/_sass/foundation-sites/.eslintrc +64 -0
  69. data/_sass/foundation-sites/.github/ISSUE_TEMPLATE.md +21 -0
  70. data/_sass/foundation-sites/.github/PULL_REQUEST_TEMPLATE.md +9 -0
  71. data/_sass/foundation-sites/.sass-lint.yml +409 -0
  72. data/_sass/foundation-sites/.travis.yml +9 -0
  73. data/_sass/foundation-sites/LICENSE +22 -0
  74. data/_sass/foundation-sites/README.md +52 -0
  75. data/_sass/foundation-sites/_vendor/normalize-scss/sass/_normalize.scss +3 -0
  76. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_import-now.scss +11 -0
  77. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +676 -0
  78. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_variables.scss +36 -0
  79. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +61 -0
  80. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_purge.scss +38 -0
  81. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_remove.scss +31 -0
  82. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_replace.scss +46 -0
  83. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_to-list.scss +27 -0
  84. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +25 -0
  85. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/helpers/_true.scss +13 -0
  86. data/_sass/foundation-sites/assets/foundation-flex.scss +3 -0
  87. data/_sass/foundation-sites/assets/foundation-rtl.scss +5 -0
  88. data/_sass/foundation-sites/assets/foundation.scss +3 -0
  89. data/_sass/foundation-sites/bower.json +34 -0
  90. data/_sass/foundation-sites/browserstack.json +32 -0
  91. data/_sass/foundation-sites/code-of-conduct.md +43 -0
  92. data/_sass/foundation-sites/customizer/complete.json +48 -0
  93. data/_sass/foundation-sites/customizer/config.yml +228 -0
  94. data/_sass/foundation-sites/customizer/essential.json +11 -0
  95. data/_sass/foundation-sites/customizer/index.html +169 -0
  96. data/_sass/foundation-sites/dist/css/foundation-flex.css +4566 -0
  97. data/_sass/foundation-sites/dist/css/foundation-flex.min.css +2 -0
  98. data/_sass/foundation-sites/dist/css/foundation-rtl.css +4006 -0
  99. data/_sass/foundation-sites/dist/css/foundation-rtl.min.css +2 -0
  100. data/_sass/foundation-sites/dist/css/foundation.css +4001 -0
  101. data/_sass/foundation-sites/dist/css/foundation.min.css +2 -0
  102. data/_sass/foundation-sites/dist/js/foundation.d.ts +496 -0
  103. data/_sass/foundation-sites/dist/js/foundation.js +10207 -0
  104. data/_sass/foundation-sites/dist/js/foundation.min.js +4 -0
  105. data/_sass/foundation-sites/dist/js/plugins/foundation.abide.js +637 -0
  106. data/_sass/foundation-sites/dist/js/plugins/foundation.abide.min.js +1 -0
  107. data/_sass/foundation-sites/dist/js/plugins/foundation.accordion.js +252 -0
  108. data/_sass/foundation-sites/dist/js/plugins/foundation.accordion.min.js +1 -0
  109. data/_sass/foundation-sites/dist/js/plugins/foundation.accordionMenu.js +318 -0
  110. data/_sass/foundation-sites/dist/js/plugins/foundation.accordionMenu.min.js +1 -0
  111. data/_sass/foundation-sites/dist/js/plugins/foundation.core.js +386 -0
  112. data/_sass/foundation-sites/dist/js/plugins/foundation.core.min.js +1 -0
  113. data/_sass/foundation-sites/dist/js/plugins/foundation.drilldown.js +565 -0
  114. data/_sass/foundation-sites/dist/js/plugins/foundation.drilldown.min.js +1 -0
  115. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdown.js +465 -0
  116. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdown.min.js +1 -0
  117. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdownMenu.js +486 -0
  118. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdownMenu.min.js +1 -0
  119. data/_sass/foundation-sites/dist/js/plugins/foundation.equalizer.js +374 -0
  120. data/_sass/foundation-sites/dist/js/plugins/foundation.equalizer.min.js +1 -0
  121. data/_sass/foundation-sites/dist/js/plugins/foundation.interchange.js +233 -0
  122. data/_sass/foundation-sites/dist/js/plugins/foundation.interchange.min.js +1 -0
  123. data/_sass/foundation-sites/dist/js/plugins/foundation.magellan.js +285 -0
  124. data/_sass/foundation-sites/dist/js/plugins/foundation.magellan.min.js +1 -0
  125. data/_sass/foundation-sites/dist/js/plugins/foundation.offcanvas.js +474 -0
  126. data/_sass/foundation-sites/dist/js/plugins/foundation.offcanvas.min.js +1 -0
  127. data/_sass/foundation-sites/dist/js/plugins/foundation.orbit.js +566 -0
  128. data/_sass/foundation-sites/dist/js/plugins/foundation.orbit.min.js +1 -0
  129. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveMenu.js +169 -0
  130. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveMenu.min.js +1 -0
  131. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveToggle.js +177 -0
  132. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveToggle.min.js +1 -0
  133. data/_sass/foundation-sites/dist/js/plugins/foundation.reveal.js +633 -0
  134. data/_sass/foundation-sites/dist/js/plugins/foundation.reveal.min.js +1 -0
  135. data/_sass/foundation-sites/dist/js/plugins/foundation.slider.js +762 -0
  136. data/_sass/foundation-sites/dist/js/plugins/foundation.slider.min.js +1 -0
  137. data/_sass/foundation-sites/dist/js/plugins/foundation.sticky.js +518 -0
  138. data/_sass/foundation-sites/dist/js/plugins/foundation.sticky.min.js +1 -0
  139. data/_sass/foundation-sites/dist/js/plugins/foundation.tabs.js +512 -0
  140. data/_sass/foundation-sites/dist/js/plugins/foundation.tabs.min.js +1 -0
  141. data/_sass/foundation-sites/dist/js/plugins/foundation.toggler.js +169 -0
  142. data/_sass/foundation-sites/dist/js/plugins/foundation.toggler.min.js +1 -0
  143. data/_sass/foundation-sites/dist/js/plugins/foundation.tooltip.js +492 -0
  144. data/_sass/foundation-sites/dist/js/plugins/foundation.tooltip.min.js +1 -0
  145. data/_sass/foundation-sites/dist/js/plugins/foundation.util.box.js +196 -0
  146. data/_sass/foundation-sites/dist/js/plugins/foundation.util.box.min.js +1 -0
  147. data/_sass/foundation-sites/dist/js/plugins/foundation.util.keyboard.js +163 -0
  148. data/_sass/foundation-sites/dist/js/plugins/foundation.util.keyboard.min.js +1 -0
  149. data/_sass/foundation-sites/dist/js/plugins/foundation.util.mediaQuery.js +233 -0
  150. data/_sass/foundation-sites/dist/js/plugins/foundation.util.mediaQuery.min.js +1 -0
  151. data/_sass/foundation-sites/dist/js/plugins/foundation.util.motion.js +103 -0
  152. data/_sass/foundation-sites/dist/js/plugins/foundation.util.motion.min.js +1 -0
  153. data/_sass/foundation-sites/dist/js/plugins/foundation.util.nest.js +74 -0
  154. data/_sass/foundation-sites/dist/js/plugins/foundation.util.nest.min.js +1 -0
  155. data/_sass/foundation-sites/dist/js/plugins/foundation.util.timerAndImageLoader.js +90 -0
  156. data/_sass/foundation-sites/dist/js/plugins/foundation.util.timerAndImageLoader.min.js +1 -0
  157. data/_sass/foundation-sites/dist/js/plugins/foundation.util.touch.js +352 -0
  158. data/_sass/foundation-sites/dist/js/plugins/foundation.util.touch.min.js +1 -0
  159. data/_sass/foundation-sites/dist/js/plugins/foundation.util.triggers.js +261 -0
  160. data/_sass/foundation-sites/dist/js/plugins/foundation.util.triggers.min.js +1 -0
  161. data/_sass/foundation-sites/dist/js/plugins/foundation.zf.responsiveAccordionTabs.js +262 -0
  162. data/_sass/foundation-sites/dist/js/plugins/foundation.zf.responsiveAccordionTabs.min.js +1 -0
  163. data/_sass/foundation-sites/docslink.sh +3 -0
  164. data/_sass/foundation-sites/js/foundation.abide.js +584 -0
  165. data/_sass/foundation-sites/js/foundation.accordion.js +315 -0
  166. data/_sass/foundation-sites/js/foundation.accordionMenu.js +283 -0
  167. data/_sass/foundation-sites/js/foundation.core.js +378 -0
  168. data/_sass/foundation-sites/js/foundation.drilldown.js +518 -0
  169. data/_sass/foundation-sites/js/foundation.dropdown.js +432 -0
  170. data/_sass/foundation-sites/js/foundation.dropdownMenu.js +442 -0
  171. data/_sass/foundation-sites/js/foundation.equalizer.js +317 -0
  172. data/_sass/foundation-sites/js/foundation.interchange.js +203 -0
  173. data/_sass/foundation-sites/js/foundation.magellan.js +251 -0
  174. data/_sass/foundation-sites/js/foundation.offcanvas.js +434 -0
  175. data/_sass/foundation-sites/js/foundation.orbit.js +523 -0
  176. data/_sass/foundation-sites/js/foundation.responsiveMenu.js +147 -0
  177. data/_sass/foundation-sites/js/foundation.responsiveToggle.js +155 -0
  178. data/_sass/foundation-sites/js/foundation.reveal.js +603 -0
  179. data/_sass/foundation-sites/js/foundation.slider.js +697 -0
  180. data/_sass/foundation-sites/js/foundation.sticky.js +499 -0
  181. data/_sass/foundation-sites/js/foundation.tabs.js +490 -0
  182. data/_sass/foundation-sites/js/foundation.toggler.js +148 -0
  183. data/_sass/foundation-sites/js/foundation.tooltip.js +470 -0
  184. data/_sass/foundation-sites/js/foundation.util.box.js +195 -0
  185. data/_sass/foundation-sites/js/foundation.util.keyboard.js +152 -0
  186. data/_sass/foundation-sites/js/foundation.util.mediaQuery.js +230 -0
  187. data/_sass/foundation-sites/js/foundation.util.motion.js +105 -0
  188. data/_sass/foundation-sites/js/foundation.util.nest.js +81 -0
  189. data/_sass/foundation-sites/js/foundation.util.timerAndImageLoader.js +88 -0
  190. data/_sass/foundation-sites/js/foundation.util.touch.js +352 -0
  191. data/_sass/foundation-sites/js/foundation.util.triggers.js +210 -0
  192. data/_sass/foundation-sites/js/foundation.zf.responsiveAccordionTabs.js +240 -0
  193. data/_sass/foundation-sites/scss/_global.scss +219 -0
  194. data/_sass/foundation-sites/scss/components/_accordion-menu.scss +36 -0
  195. data/_sass/foundation-sites/scss/components/_accordion.scss +150 -0
  196. data/_sass/foundation-sites/scss/components/_badge.scss +63 -0
  197. data/_sass/foundation-sites/scss/components/_breadcrumbs.scss +100 -0
  198. data/_sass/foundation-sites/scss/components/_button-group.scss +253 -0
  199. data/_sass/foundation-sites/scss/components/_button.scss +332 -0
  200. data/_sass/foundation-sites/scss/components/_callout.scss +106 -0
  201. data/_sass/foundation-sites/scss/components/_card.scss +121 -0
  202. data/_sass/foundation-sites/scss/components/_close-button.scss +102 -0
  203. data/_sass/foundation-sites/scss/components/_drilldown.scss +93 -0
  204. data/_sass/foundation-sites/scss/components/_dropdown-menu.scss +226 -0
  205. data/_sass/foundation-sites/scss/components/_dropdown.scss +72 -0
  206. data/_sass/foundation-sites/scss/components/_flex-video.scss +1 -0
  207. data/_sass/foundation-sites/scss/components/_flex.scss +34 -0
  208. data/_sass/foundation-sites/scss/components/_float.scss +27 -0
  209. data/_sass/foundation-sites/scss/components/_label.scss +64 -0
  210. data/_sass/foundation-sites/scss/components/_media-object.scss +114 -0
  211. data/_sass/foundation-sites/scss/components/_menu-icon.scss +9 -0
  212. data/_sass/foundation-sites/scss/components/_menu.scss +376 -0
  213. data/_sass/foundation-sites/scss/components/_off-canvas.scss +329 -0
  214. data/_sass/foundation-sites/scss/components/_orbit.scss +196 -0
  215. data/_sass/foundation-sites/scss/components/_pagination.scss +193 -0
  216. data/_sass/foundation-sites/scss/components/_progress-bar.scss +64 -0
  217. data/_sass/foundation-sites/scss/components/_responsive-embed.scss +70 -0
  218. data/_sass/foundation-sites/scss/components/_reveal.scss +178 -0
  219. data/_sass/foundation-sites/scss/components/_slider.scss +138 -0
  220. data/_sass/foundation-sites/scss/components/_sticky.scss +38 -0
  221. data/_sass/foundation-sites/scss/components/_switch.scss +247 -0
  222. data/_sass/foundation-sites/scss/components/_table.scss +329 -0
  223. data/_sass/foundation-sites/scss/components/_tabs.scss +196 -0
  224. data/_sass/foundation-sites/scss/components/_thumbnail.scss +67 -0
  225. data/_sass/foundation-sites/scss/components/_title-bar.scss +84 -0
  226. data/_sass/foundation-sites/scss/components/_tooltip.scss +107 -0
  227. data/_sass/foundation-sites/scss/components/_top-bar.scss +173 -0
  228. data/_sass/foundation-sites/scss/components/_visibility.scss +132 -0
  229. data/_sass/foundation-sites/scss/forms/_checkbox.scss +41 -0
  230. data/_sass/foundation-sites/scss/forms/_error.scss +88 -0
  231. data/_sass/foundation-sites/scss/forms/_fieldset.scss +54 -0
  232. data/_sass/foundation-sites/scss/forms/_forms.scss +34 -0
  233. data/_sass/foundation-sites/scss/forms/_help-text.scss +30 -0
  234. data/_sass/foundation-sites/scss/forms/_input-group.scss +135 -0
  235. data/_sass/foundation-sites/scss/forms/_label.scss +50 -0
  236. data/_sass/foundation-sites/scss/forms/_meter.scss +110 -0
  237. data/_sass/foundation-sites/scss/forms/_progress.scss +94 -0
  238. data/_sass/foundation-sites/scss/forms/_range.scss +149 -0
  239. data/_sass/foundation-sites/scss/forms/_select.scss +85 -0
  240. data/_sass/foundation-sites/scss/forms/_text.scss +170 -0
  241. data/_sass/foundation-sites/scss/foundation.scss +118 -0
  242. data/_sass/foundation-sites/scss/grid/_classes.scss +176 -0
  243. data/_sass/foundation-sites/scss/grid/_column.scss +112 -0
  244. data/_sass/foundation-sites/scss/grid/_flex-grid.scss +312 -0
  245. data/_sass/foundation-sites/scss/grid/_grid.scss +48 -0
  246. data/_sass/foundation-sites/scss/grid/_gutter.scss +82 -0
  247. data/_sass/foundation-sites/scss/grid/_layout.scss +76 -0
  248. data/_sass/foundation-sites/scss/grid/_position.scss +76 -0
  249. data/_sass/foundation-sites/scss/grid/_row.scss +99 -0
  250. data/_sass/foundation-sites/scss/grid/_size.scss +24 -0
  251. data/_sass/foundation-sites/scss/settings/_settings.scss +620 -0
  252. data/_sass/foundation-sites/scss/typography/_alignment.scss +22 -0
  253. data/_sass/foundation-sites/scss/typography/_base.scss +509 -0
  254. data/_sass/foundation-sites/scss/typography/_helpers.scss +78 -0
  255. data/_sass/foundation-sites/scss/typography/_print.scss +86 -0
  256. data/_sass/foundation-sites/scss/typography/_typography.scss +26 -0
  257. data/_sass/foundation-sites/scss/util/_breakpoint.scss +281 -0
  258. data/_sass/foundation-sites/scss/util/_color.scss +126 -0
  259. data/_sass/foundation-sites/scss/util/_direction.scss +31 -0
  260. data/_sass/foundation-sites/scss/util/_flex.scss +85 -0
  261. data/_sass/foundation-sites/scss/util/_math.scss +72 -0
  262. data/_sass/foundation-sites/scss/util/_mixins.scss +276 -0
  263. data/_sass/foundation-sites/scss/util/_selector.scss +41 -0
  264. data/_sass/foundation-sites/scss/util/_typography.scss +26 -0
  265. data/_sass/foundation-sites/scss/util/_unit.scss +152 -0
  266. data/_sass/foundation-sites/scss/util/_util.scss +14 -0
  267. data/_sass/foundation-sites/scss/util/_value.scss +160 -0
  268. data/_sass/global/_accessibility.scss +32 -0
  269. data/_sass/global/_functions.scss +7 -0
  270. data/_sass/global/_modernizr.scss +0 -0
  271. data/_sass/global/_settings.scss +657 -0
  272. data/_sass/global/_wp-admin.scss +24 -0
  273. data/_sass/global/_wp-overrides.scss +51 -0
  274. data/_sass/jquery/.bower.json +25 -0
  275. data/_sass/jquery/AUTHORS.txt +278 -0
  276. data/_sass/jquery/LICENSE.txt +36 -0
  277. data/_sass/jquery/README.md +65 -0
  278. data/_sass/jquery/bower.json +14 -0
  279. data/_sass/jquery/dist/jquery.js +9814 -0
  280. data/_sass/jquery/dist/jquery.min.js +4 -0
  281. data/_sass/jquery/dist/jquery.min.map +1 -0
  282. data/_sass/jquery/external/sizzle/LICENSE.txt +36 -0
  283. data/_sass/jquery/external/sizzle/dist/sizzle.js +2143 -0
  284. data/_sass/jquery/external/sizzle/dist/sizzle.min.js +3 -0
  285. data/_sass/jquery/external/sizzle/dist/sizzle.min.map +1 -0
  286. data/_sass/jquery/src/.jshintrc +29 -0
  287. data/_sass/jquery/src/ajax.js +845 -0
  288. data/_sass/jquery/src/ajax/jsonp.js +100 -0
  289. data/_sass/jquery/src/ajax/load.js +83 -0
  290. data/_sass/jquery/src/ajax/parseJSON.js +13 -0
  291. data/_sass/jquery/src/ajax/parseXML.js +27 -0
  292. data/_sass/jquery/src/ajax/script.js +68 -0
  293. data/_sass/jquery/src/ajax/var/location.js +3 -0
  294. data/_sass/jquery/src/ajax/var/nonce.js +5 -0
  295. data/_sass/jquery/src/ajax/var/rquery.js +3 -0
  296. data/_sass/jquery/src/ajax/xhr.js +167 -0
  297. data/_sass/jquery/src/attributes.js +11 -0
  298. data/_sass/jquery/src/attributes/attr.js +142 -0
  299. data/_sass/jquery/src/attributes/classes.js +177 -0
  300. data/_sass/jquery/src/attributes/prop.js +125 -0
  301. data/_sass/jquery/src/attributes/support.js +36 -0
  302. data/_sass/jquery/src/attributes/val.js +177 -0
  303. data/_sass/jquery/src/callbacks.js +232 -0
  304. data/_sass/jquery/src/core.js +494 -0
  305. data/_sass/jquery/src/core/access.js +65 -0
  306. data/_sass/jquery/src/core/init.js +134 -0
  307. data/_sass/jquery/src/core/parseHTML.js +41 -0
  308. data/_sass/jquery/src/core/ready.js +103 -0
  309. data/_sass/jquery/src/core/var/rsingleTag.js +5 -0
  310. data/_sass/jquery/src/css.js +502 -0
  311. data/_sass/jquery/src/css/addGetHookIf.js +24 -0
  312. data/_sass/jquery/src/css/adjustCSS.js +65 -0
  313. data/_sass/jquery/src/css/curCSS.js +60 -0
  314. data/_sass/jquery/src/css/defaultDisplay.js +72 -0
  315. data/_sass/jquery/src/css/hiddenVisibleSelectors.js +18 -0
  316. data/_sass/jquery/src/css/showHide.js +48 -0
  317. data/_sass/jquery/src/css/support.js +121 -0
  318. data/_sass/jquery/src/css/var/cssExpand.js +3 -0
  319. data/_sass/jquery/src/css/var/getStyles.js +15 -0
  320. data/_sass/jquery/src/css/var/isHidden.js +16 -0
  321. data/_sass/jquery/src/css/var/rmargin.js +3 -0
  322. data/_sass/jquery/src/css/var/rnumnonpx.js +5 -0
  323. data/_sass/jquery/src/css/var/swap.js +24 -0
  324. data/_sass/jquery/src/data.js +187 -0
  325. data/_sass/jquery/src/data/Data.js +200 -0
  326. data/_sass/jquery/src/data/var/acceptData.js +18 -0
  327. data/_sass/jquery/src/data/var/dataPriv.js +5 -0
  328. data/_sass/jquery/src/data/var/dataUser.js +5 -0
  329. data/_sass/jquery/src/deferred.js +158 -0
  330. data/_sass/jquery/src/deprecated.js +32 -0
  331. data/_sass/jquery/src/dimensions.js +54 -0
  332. data/_sass/jquery/src/effects.js +629 -0
  333. data/_sass/jquery/src/effects/Tween.js +121 -0
  334. data/_sass/jquery/src/effects/animatedSelector.js +13 -0
  335. data/_sass/jquery/src/event.js +711 -0
  336. data/_sass/jquery/src/event/ajax.js +20 -0
  337. data/_sass/jquery/src/event/alias.js +27 -0
  338. data/_sass/jquery/src/event/focusin.js +53 -0
  339. data/_sass/jquery/src/event/support.js +9 -0
  340. data/_sass/jquery/src/event/trigger.js +183 -0
  341. data/_sass/jquery/src/exports/amd.js +24 -0
  342. data/_sass/jquery/src/exports/global.js +26 -0
  343. data/_sass/jquery/src/intro.js +44 -0
  344. data/_sass/jquery/src/jquery.js +37 -0
  345. data/_sass/jquery/src/manipulation.js +481 -0
  346. data/_sass/jquery/src/manipulation/_evalUrl.js +20 -0
  347. data/_sass/jquery/src/manipulation/buildFragment.js +102 -0
  348. data/_sass/jquery/src/manipulation/getAll.js +21 -0
  349. data/_sass/jquery/src/manipulation/setGlobalEval.js +20 -0
  350. data/_sass/jquery/src/manipulation/support.js +33 -0
  351. data/_sass/jquery/src/manipulation/var/rcheckableType.js +3 -0
  352. data/_sass/jquery/src/manipulation/var/rscriptType.js +3 -0
  353. data/_sass/jquery/src/manipulation/var/rtagName.js +3 -0
  354. data/_sass/jquery/src/manipulation/wrapMap.js +27 -0
  355. data/_sass/jquery/src/offset.js +218 -0
  356. data/_sass/jquery/src/outro.js +2 -0
  357. data/_sass/jquery/src/queue.js +143 -0
  358. data/_sass/jquery/src/queue/delay.js +22 -0
  359. data/_sass/jquery/src/selector-native.js +211 -0
  360. data/_sass/jquery/src/selector-sizzle.js +14 -0
  361. data/_sass/jquery/src/selector.js +1 -0
  362. data/_sass/jquery/src/serialize.js +125 -0
  363. data/_sass/jquery/src/traversing.js +175 -0
  364. data/_sass/jquery/src/traversing/findFilter.js +100 -0
  365. data/_sass/jquery/src/traversing/var/dir.js +20 -0
  366. data/_sass/jquery/src/traversing/var/rneedsContext.js +6 -0
  367. data/_sass/jquery/src/traversing/var/siblings.js +15 -0
  368. data/_sass/jquery/src/var/arr.js +3 -0
  369. data/_sass/jquery/src/var/class2type.js +5 -0
  370. data/_sass/jquery/src/var/concat.js +5 -0
  371. data/_sass/jquery/src/var/document.js +3 -0
  372. data/_sass/jquery/src/var/documentElement.js +5 -0
  373. data/_sass/jquery/src/var/hasOwn.js +5 -0
  374. data/_sass/jquery/src/var/indexOf.js +5 -0
  375. data/_sass/jquery/src/var/pnum.js +3 -0
  376. data/_sass/jquery/src/var/push.js +5 -0
  377. data/_sass/jquery/src/var/rcssNum.js +7 -0
  378. data/_sass/jquery/src/var/rnotwhite.js +3 -0
  379. data/_sass/jquery/src/var/slice.js +5 -0
  380. data/_sass/jquery/src/var/support.js +5 -0
  381. data/_sass/jquery/src/var/toString.js +5 -0
  382. data/_sass/jquery/src/wrap.js +79 -0
  383. data/_sass/modules/_editor-style.scss +5 -0
  384. data/_sass/modules/_footer.scss +115 -0
  385. data/_sass/modules/_navigation.scss +570 -0
  386. data/_sass/modules/_sidebar.scss +66 -0
  387. data/_sass/modules/_twitter.scss +58 -0
  388. data/_sass/motion-ui/.bower.json +38 -0
  389. data/_sass/motion-ui/LICENSE +22 -0
  390. data/_sass/motion-ui/README.md +29 -0
  391. data/_sass/motion-ui/bower.json +28 -0
  392. data/_sass/motion-ui/composer.json +25 -0
  393. data/_sass/motion-ui/dist/motion-ui.css +634 -0
  394. data/_sass/motion-ui/dist/motion-ui.js +117 -0
  395. data/_sass/motion-ui/dist/motion-ui.min.css +1 -0
  396. data/_sass/motion-ui/dist/motion-ui.min.js +1 -0
  397. data/_sass/motion-ui/docs/animations.md +230 -0
  398. data/_sass/motion-ui/docs/classes.md +81 -0
  399. data/_sass/motion-ui/docs/configuration.md +63 -0
  400. data/_sass/motion-ui/docs/installation.md +50 -0
  401. data/_sass/motion-ui/docs/javascript.md +36 -0
  402. data/_sass/motion-ui/docs/readme.md +32 -0
  403. data/_sass/motion-ui/docs/transitions.md +112 -0
  404. data/_sass/motion-ui/docs/wow.md +35 -0
  405. data/_sass/motion-ui/gulpfile.js +90 -0
  406. data/_sass/motion-ui/lib/handlebars.js +8 -0
  407. data/_sass/motion-ui/motion-ui.js +105 -0
  408. data/_sass/motion-ui/motion-ui.scss +4 -0
  409. data/_sass/motion-ui/package.json +44 -0
  410. data/_sass/motion-ui/src/_classes.scss +109 -0
  411. data/_sass/motion-ui/src/_settings.scss +61 -0
  412. data/_sass/motion-ui/src/effects/_fade.scss +32 -0
  413. data/_sass/motion-ui/src/effects/_hinge.scss +65 -0
  414. data/_sass/motion-ui/src/effects/_shake.scss +15 -0
  415. data/_sass/motion-ui/src/effects/_slide.scss +41 -0
  416. data/_sass/motion-ui/src/effects/_spin.scss +28 -0
  417. data/_sass/motion-ui/src/effects/_wiggle.scss +13 -0
  418. data/_sass/motion-ui/src/effects/_zoom.scss +15 -0
  419. data/_sass/motion-ui/src/motion-ui.scss +29 -0
  420. data/_sass/motion-ui/src/transitions/_fade.scss +28 -0
  421. data/_sass/motion-ui/src/transitions/_hinge.scss +43 -0
  422. data/_sass/motion-ui/src/transitions/_slide.scss +42 -0
  423. data/_sass/motion-ui/src/transitions/_spin.scss +39 -0
  424. data/_sass/motion-ui/src/transitions/_zoom.scss +39 -0
  425. data/_sass/motion-ui/src/util/_animation.scss +7 -0
  426. data/_sass/motion-ui/src/util/_args.scss +15 -0
  427. data/_sass/motion-ui/src/util/_keyframe.scss +136 -0
  428. data/_sass/motion-ui/src/util/_selector.scss +23 -0
  429. data/_sass/motion-ui/src/util/_series.scss +54 -0
  430. data/_sass/motion-ui/src/util/_transition.scss +45 -0
  431. data/_sass/motion-ui/src/util/_unit.scss +7 -0
  432. data/_sass/templates/_archive.scss +66 -0
  433. data/_sass/templates/_page-accordion-sidebar.scss +137 -0
  434. data/_sass/templates/_page-contact.scss +33 -0
  435. data/_sass/templates/_page-default.scss +472 -0
  436. data/_sass/templates/_page-faq-sidebar.scss +77 -0
  437. data/_sass/templates/_page-front.scss +549 -0
  438. data/_sass/templates/_page-full-width.scss +11 -0
  439. data/_sass/templates/_page-highlights.scss +156 -0
  440. data/_sass/templates/_page-sidebar-left.scss +27 -0
  441. data/_sass/templates/_print.scss +69 -0
  442. data/_sass/templates/_single-post.scss +12 -0
  443. data/_sass/what-input/.bower.json +35 -0
  444. data/_sass/what-input/Gulpfile.js +104 -0
  445. data/_sass/what-input/LICENSE +21 -0
  446. data/_sass/what-input/README.md +178 -0
  447. data/_sass/what-input/bower.json +26 -0
  448. data/_sass/what-input/dist/lte-IE8.js +1 -0
  449. data/_sass/what-input/dist/what-input.js +337 -0
  450. data/_sass/what-input/dist/what-input.min.js +7 -0
  451. data/_sass/what-input/index.html +164 -0
  452. data/_sass/what-input/package.json +38 -0
  453. data/_sass/what-input/src/polyfills/ie8/EventListener.js +150 -0
  454. data/_sass/what-input/src/polyfills/ie8/indexOf.js +65 -0
  455. data/_sass/what-input/src/what-input.js +269 -0
  456. data/_sass/what-input/yarn.lock +3482 -0
  457. data/assets/css/style.scss +4 -0
  458. data/assets/{css → fonts}/comfortaa-bold-webfont.eot +0 -0
  459. data/assets/{css → fonts}/comfortaa-bold-webfont.svg +0 -0
  460. data/assets/{css → fonts}/comfortaa-bold-webfont.ttf +0 -0
  461. data/assets/{css → fonts}/comfortaa-bold-webfont.woff +0 -0
  462. data/assets/{css → fonts}/comfortaa-bold-webfont.woff2 +0 -0
  463. data/assets/{css → fonts}/comfortaa-regular-webfont.eot +0 -0
  464. data/assets/{css → fonts}/comfortaa-regular-webfont.svg +0 -0
  465. data/assets/{css → fonts}/comfortaa-regular-webfont.ttf +0 -0
  466. data/assets/{css → fonts}/comfortaa-regular-webfont.woff +0 -0
  467. data/assets/{css → fonts}/comfortaa-regular-webfont.woff2 +0 -0
  468. data/assets/{css → fonts}/raleway-regular-webfont.svg +0 -0
  469. data/assets/images/ace-centre-logo.png +0 -0
  470. data/assets/images/getting-started-with-aac-logo.png +0 -0
  471. data/assets/images/getting-started-with-aac.png +0 -0
  472. data/assets/images/icon/ace-icon-180x180.png +0 -0
  473. data/assets/images/icon/ace-icon-192x192.png +0 -0
  474. data/assets/images/icon/ace-icon-270x270.png +0 -0
  475. data/assets/images/icon/ace-icon-32x32.png +0 -0
  476. data/assets/javascript/scripts.js +10 -0
  477. metadata +477 -29
  478. data/_includes/theme-footer.html +0 -16
  479. data/_includes/theme-head.html +0 -48
  480. data/assets/css/bootstrap-select.min.css +0 -7
  481. data/assets/css/bootstrap-theme.css +0 -442
  482. data/assets/css/bootstrap.css +0 -6203
  483. data/assets/css/draganddrop.css +0 -210
  484. data/assets/css/fonts.css +0 -41
  485. data/assets/css/responsive.css +0 -90
  486. data/assets/css/style.css +0 -260
  487. data/assets/images/divider.png +0 -0
  488. data/assets/images/logo-1.png +0 -0
  489. data/assets/images/logo-2.png +0 -0
@@ -0,0 +1,2 @@
1
+ @charset "UTF-8";
2
+ /*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}main{display:block}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}input{overflow:visible}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;display:table;max-width:100%;padding:0;color:inherit;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}details{display:block}summary{display:list-item}menu{display:block}canvas{display:inline-block}[hidden],template{display:none}.foundation-mq{font-family:"small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"}html{box-sizing:border-box;font-size:100%}*,:after,:before{box-sizing:inherit}body{margin:0;padding:0;background:#fefefe;font-family:Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;font-weight:400;line-height:1.5;color:#0a0a0a;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;vertical-align:middle;max-width:100%;height:auto;-ms-interpolation-mode:bicubic}textarea{height:auto;min-height:50px;border-radius:0}select{box-sizing:border-box;width:100%;border-radius:0}.map_canvas embed,.map_canvas img,.map_canvas object,.mqa-display embed,.mqa-display img,.mqa-display object{max-width:none!important}button{padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;border-radius:0;background:transparent;line-height:1}[data-whatinput=mouse] button{outline:0}pre{overflow:auto}.is-visible{display:block!important}.is-hidden{display:none!important}.row{max-width:75rem;margin-right:auto;margin-left:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.row .row{margin-right:-.625rem;margin-left:-.625rem}@media print,screen and (min-width:40em){.row .row{margin-right:-.9375rem;margin-left:-.9375rem}}@media print,screen and (min-width:64em){.row .row{margin-right:-.9375rem;margin-left:-.9375rem}}.row .row.collapse{margin-right:0;margin-left:0}.row.expanded,.row:not(.expanded) .row{max-width:none}.row.collapse>.column,.row.collapse>.columns{padding-right:0;padding-left:0}.row.collapse>.column>.row,.row.collapse>.columns>.row,.row.is-collapse-child{margin-right:0;margin-left:0}.column,.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;padding-right:.625rem;padding-left:.625rem;min-width:0}@media print,screen and (min-width:40em){.column,.columns{padding-right:.9375rem;padding-left:.9375rem}}.column.row.row,.row.row.columns{float:none;display:block}.row .column.row.row,.row .row.row.columns{margin-right:0;margin-left:0;padding-right:0;padding-left:0}.flex-container{display:-webkit-box;display:-ms-flexbox;display:flex}.flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.small-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.small-offset-0{margin-left:0}.small-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.small-offset-1{margin-left:8.33333%}.small-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.small-offset-2{margin-left:16.66667%}.small-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.small-offset-3{margin-left:25%}.small-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.small-offset-4{margin-left:33.33333%}.small-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.small-offset-5{margin-left:41.66667%}.small-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.small-offset-6{margin-left:50%}.small-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.small-offset-7{margin-left:58.33333%}.small-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.small-offset-8{margin-left:66.66667%}.small-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.small-offset-9{margin-left:75%}.small-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.small-offset-10{margin-left:83.33333%}.small-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.small-offset-11{margin-left:91.66667%}.small-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-1>.column,.small-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.small-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-2>.column,.small-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.small-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-3>.column,.small-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.small-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-4>.column,.small-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.small-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-5>.column,.small-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.small-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-6>.column,.small-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.small-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-7>.column,.small-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.small-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.small-up-8>.column,.small-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}.small-collapse>.column,.small-collapse>.columns{padding-right:0;padding-left:0}.small-uncollapse>.column,.small-uncollapse>.columns{padding-right:.625rem;padding-left:.625rem}@media print,screen and (min-width:40em){.medium-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.medium-offset-0{margin-left:0}.medium-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.medium-offset-1{margin-left:8.33333%}.medium-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.medium-offset-2{margin-left:16.66667%}.medium-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.medium-offset-3{margin-left:25%}.medium-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.medium-offset-4{margin-left:33.33333%}.medium-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.medium-offset-5{margin-left:41.66667%}.medium-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.medium-offset-6{margin-left:50%}.medium-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.medium-offset-7{margin-left:58.33333%}.medium-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.medium-offset-8{margin-left:66.66667%}.medium-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.medium-offset-9{margin-left:75%}.medium-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.medium-offset-10{margin-left:83.33333%}.medium-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.medium-offset-11{margin-left:91.66667%}.medium-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.medium-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.medium-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.medium-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.medium-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.medium-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.medium-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-1>.column,.medium-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.medium-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-2>.column,.medium-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.medium-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-3>.column,.medium-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.medium-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-4>.column,.medium-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.medium-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-5>.column,.medium-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.medium-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-6>.column,.medium-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.medium-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-7>.column,.medium-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.medium-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.medium-up-8>.column,.medium-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}}@media print,screen and (min-width:40em) and (min-width:40em){.medium-expand{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:40em){.medium-flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.medium-flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.medium-flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.medium-flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.medium-flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.medium-flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.medium-flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}.row.medium-unstack>.column,.row.medium-unstack>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}@media print,screen and (min-width:40em){.row.medium-unstack>.column,.row.medium-unstack>.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:40em){.medium-collapse>.column,.medium-collapse>.columns{padding-right:0;padding-left:0}.medium-uncollapse>.column,.medium-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}}@media print,screen and (min-width:64em){.large-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.large-offset-0{margin-left:0}.large-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.large-offset-1{margin-left:8.33333%}.large-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.large-offset-2{margin-left:16.66667%}.large-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.large-offset-3{margin-left:25%}.large-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.large-offset-4{margin-left:33.33333%}.large-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.large-offset-5{margin-left:41.66667%}.large-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.large-offset-6{margin-left:50%}.large-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.large-offset-7{margin-left:58.33333%}.large-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.large-offset-8{margin-left:66.66667%}.large-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.large-offset-9{margin-left:75%}.large-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.large-offset-10{margin-left:83.33333%}.large-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.large-offset-11{margin-left:91.66667%}.large-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.large-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.large-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.large-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.large-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.large-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.large-up-1{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-1>.column,.large-up-1>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.large-up-2{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-2>.column,.large-up-2>.columns{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.large-up-3{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-3>.column,.large-up-3>.columns{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.large-up-4{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-4>.column,.large-up-4>.columns{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.large-up-5{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-5>.column,.large-up-5>.columns{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.large-up-6{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-6>.column,.large-up-6>.columns{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.large-up-7{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-7>.column,.large-up-7>.columns{-webkit-box-flex:0;-ms-flex:0 0 14.28571%;flex:0 0 14.28571%;max-width:14.28571%}.large-up-8{-ms-flex-wrap:wrap;flex-wrap:wrap}.large-up-8>.column,.large-up-8>.columns{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5%}}@media print,screen and (min-width:64em) and (min-width:64em){.large-expand{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:64em){.large-flex-dir-row{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.large-flex-dir-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.large-flex-dir-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.large-flex-dir-column-reverse{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.large-flex-child-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.large-flex-child-grow{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}.large-flex-child-shrink{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}.row.large-unstack>.column,.row.large-unstack>.columns{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}@media print,screen and (min-width:64em){.row.large-unstack>.column,.row.large-unstack>.columns{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}}@media print,screen and (min-width:64em){.large-collapse>.column,.large-collapse>.columns{padding-right:0;padding-left:0}.large-uncollapse>.column,.large-uncollapse>.columns{padding-right:.9375rem;padding-left:.9375rem}}.shrink{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;max-width:100%}.column-block{margin-bottom:1.25rem}.column-block>:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.column-block{margin-bottom:1.875rem}.column-block>:last-child{margin-bottom:0}}blockquote,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,li,ol,p,pre,td,th,ul{margin:0;padding:0}p{margin-bottom:1rem;font-size:inherit;line-height:1.6;text-rendering:optimizeLegibility}em,i{font-style:italic}b,em,i,strong{line-height:inherit}b,strong{font-weight:700}small{font-size:80%;line-height:inherit}h1,h2,h3,h4,h5,h6{font-family:Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;font-style:normal;font-weight:400;color:inherit;text-rendering:optimizeLegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{line-height:0;color:#cacaca}h1{font-size:1.5rem}h1,h2{line-height:1.4;margin-top:0;margin-bottom:.5rem}h2{font-size:1.25rem}h3{font-size:1.1875rem}h3,h4{line-height:1.4;margin-top:0;margin-bottom:.5rem}h4{font-size:1.125rem}h5{font-size:1.0625rem}h5,h6{line-height:1.4;margin-top:0;margin-bottom:.5rem}h6{font-size:1rem}@media print,screen and (min-width:40em){h1{font-size:3rem}h2{font-size:2.5rem}h3{font-size:1.9375rem}h4{font-size:1.5625rem}h5{font-size:1.25rem}h6{font-size:1rem}}a{line-height:inherit;color:#1779ba;text-decoration:none;cursor:pointer}a:focus,a:hover{color:#1468a0}a img{border:0}hr{clear:both;max-width:75rem;height:0;margin:1.25rem auto;border-top:0;border-right:0;border-bottom:1px solid #cacaca;border-left:0}dl,ol,ul{margin-bottom:1rem;list-style-position:outside;line-height:1.6}li{font-size:inherit}ul{list-style-type:disc}ol,ul{margin-left:1.25rem}ol ol,ol ul,ul ol,ul ul{margin-left:1.25rem;margin-bottom:0}dl{margin-bottom:1rem}dl dt{margin-bottom:.3rem;font-weight:700}blockquote{margin:0 0 1rem;padding:.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #cacaca}blockquote,blockquote p{line-height:1.6;color:#8a8a8a}cite{display:block;font-size:.8125rem;color:#8a8a8a}cite:before{content:"— "}abbr{border-bottom:1px dotted #0a0a0a;color:#0a0a0a;cursor:help}figure{margin:0}code{padding:.125rem .3125rem .0625rem;border:1px solid #cacaca;font-weight:400}code,kbd{background-color:#e6e6e6;font-family:Consolas,Liberation Mono,Courier,monospace;color:#0a0a0a}kbd{margin:0;padding:.125rem .25rem 0}.subheader{margin-top:.2rem;margin-bottom:.5rem;font-weight:400;line-height:1.4;color:#8a8a8a}.lead{font-size:125%;line-height:1.6}.stat{font-size:2.5rem;line-height:1}p+.stat{margin-top:-1rem}.no-bullet{margin-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}@media print,screen and (min-width:40em){.medium-text-left{text-align:left}.medium-text-right{text-align:right}.medium-text-center{text-align:center}.medium-text-justify{text-align:justify}}@media print,screen and (min-width:64em){.large-text-left{text-align:left}.large-text-right{text-align:right}.large-text-center{text-align:center}.large-text-justify{text-align:justify}}.show-for-print{display:none!important}@media print{*{background:transparent!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}.show-for-print{display:block!important}.hide-for-print{display:none!important}table.show-for-print{display:table!important}thead.show-for-print{display:table-header-group!important}tbody.show-for-print{display:table-row-group!important}tr.show-for-print{display:table-row!important}td.show-for-print,th.show-for-print{display:table-cell!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}abbr[title]:after{content:" (" attr(title) ")"}blockquote,pre{border:1px solid #8a8a8a;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}}[type=color],[type=date],[type=datetime-local],[type=datetime],[type=email],[type=month],[type=number],[type=password],[type=search],[type=tel],[type=text],[type=time],[type=url],[type=week],textarea{display:block;box-sizing:border-box;width:100%;height:2.4375rem;margin:0 0 1rem;padding:.5rem;border:1px solid #cacaca;border-radius:0;background-color:#fefefe;box-shadow:inset 0 1px 2px hsla(0,0%,4%,.1);font-family:inherit;font-size:1rem;font-weight:400;color:#0a0a0a;-webkit-transition:border-color .25s ease-in-out,-webkit-box-shadow .5s;transition:box-shadow .5s,border-color .25s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}[type=color]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=datetime]:focus,[type=email]:focus,[type=month]:focus,[type=number]:focus,[type=password]:focus,[type=search]:focus,[type=tel]:focus,[type=text]:focus,[type=time]:focus,[type=url]:focus,[type=week]:focus,textarea:focus{outline:none;border:1px solid #8a8a8a;background-color:#fefefe;box-shadow:0 0 5px #cacaca;-webkit-transition:border-color .25s ease-in-out,-webkit-box-shadow .5s;transition:box-shadow .5s,border-color .25s ease-in-out}textarea{max-width:100%}textarea[rows]{height:auto}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#cacaca}input::-moz-placeholder,textarea::-moz-placeholder{color:#cacaca}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#cacaca}input::placeholder,textarea::placeholder{color:#cacaca}input:disabled,input[readonly],textarea:disabled,textarea[readonly]{background-color:#e6e6e6;cursor:not-allowed}[type=button],[type=submit]{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:0}input[type=search]{box-sizing:border-box}[type=checkbox],[type=file],[type=radio]{margin:0 0 1rem}[type=checkbox]+label,[type=radio]+label{display:inline-block;vertical-align:baseline;margin-left:.5rem;margin-right:1rem;margin-bottom:0}[type=checkbox]+label[for],[type=radio]+label[for]{cursor:pointer}label>[type=checkbox],label>[type=radio]{margin-right:.5rem}[type=file]{width:100%}label{display:block;margin:0;font-size:.875rem;font-weight:400;line-height:1.8;color:#0a0a0a}label.middle{margin:0 0 1rem;padding:.5625rem 0}.help-text{margin-top:-.5rem;font-size:.8125rem;font-style:italic;color:#0a0a0a}.input-group{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;margin-bottom:1rem;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.input-group>:first-child,.input-group>:last-child>*{border-radius:0 0 0 0}.input-group-button,.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label,.input-group-field,.input-group-label{margin:0;white-space:nowrap}.input-group-label{padding:0 1rem;border:1px solid #cacaca;background:#e6e6e6;color:#0a0a0a;text-align:center;white-space:nowrap;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input-group-label:first-child{border-right:0}.input-group-label:last-child{border-left:0}.input-group-field{border-radius:0;-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;height:auto;min-width:0}.input-group-button{padding-top:0;padding-bottom:0;text-align:center;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.input-group-button a,.input-group-button button,.input-group-button input,.input-group-button label{height:2.5rem;padding-top:0;padding-bottom:0;font-size:1rem}fieldset{margin:0;padding:0;border:0}legend{max-width:100%;margin-bottom:.5rem}.fieldset{margin:1.125rem 0;padding:1.25rem;border:1px solid #cacaca}.fieldset legend{margin:0;margin-left:-.1875rem;padding:0 .1875rem;background:#fefefe}select{height:2.4375rem;margin:0 0 1rem;padding:.5rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid #cacaca;border-radius:0;background-color:#fefefe;font-family:inherit;font-size:1rem;line-height:normal;color:#0a0a0a;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");background-origin:content-box;background-position:right -1rem center;background-repeat:no-repeat;background-size:9px 6px;padding-right:1.5rem;-webkit-transition:border-color .25s ease-in-out,-webkit-box-shadow .5s;transition:box-shadow .5s,border-color .25s ease-in-out}@media screen and (min-width:0\0){select{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==")}}select:focus{outline:none;border:1px solid #8a8a8a;background-color:#fefefe;box-shadow:0 0 5px #cacaca;-webkit-transition:border-color .25s ease-in-out,-webkit-box-shadow .5s;transition:box-shadow .5s,border-color .25s ease-in-out}select:disabled{background-color:#e6e6e6;cursor:not-allowed}select::-ms-expand{display:none}select[multiple]{height:auto;background-image:none}.is-invalid-input:not(:focus){border-color:#cc4b37;background-color:#f9ecea}.is-invalid-input:not(:focus)::-webkit-input-placeholder{color:#cc4b37}.is-invalid-input:not(:focus)::-moz-placeholder{color:#cc4b37}.is-invalid-input:not(:focus):-ms-input-placeholder{color:#cc4b37}.form-error,.is-invalid-input:not(:focus)::placeholder,.is-invalid-label{color:#cc4b37}.form-error{display:none;margin-top:-.5rem;margin-bottom:1rem;font-size:.75rem;font-weight:700}.form-error.is-visible{display:block}.button{display:inline-block;vertical-align:middle;margin:0 0 1rem;padding:.85em 1em;-webkit-appearance:none;border:1px solid transparent;border-radius:0;-webkit-transition:background-color .25s ease-out,color .25s ease-out;transition:background-color .25s ease-out,color .25s ease-out;font-size:.9rem;line-height:1;text-align:center;cursor:pointer;background-color:#1779ba;color:#fefefe}[data-whatinput=mouse] .button{outline:0}.button:focus,.button:hover{background-color:#14679e;color:#fefefe}.button.tiny{font-size:.6rem}.button.small{font-size:.75rem}.button.large{font-size:1.25rem}.button.expanded{display:block;width:100%;margin-right:0;margin-left:0}.button.primary{background-color:#1779ba;color:#fefefe}.button.primary:focus,.button.primary:hover{background-color:#126195;color:#fefefe}.button.secondary{background-color:#767676;color:#fefefe}.button.secondary:focus,.button.secondary:hover{background-color:#5e5e5e;color:#fefefe}.button.success{background-color:#3adb76;color:#0a0a0a}.button.success:focus,.button.success:hover{background-color:#22bb5b;color:#0a0a0a}.button.warning{background-color:#ffae00;color:#0a0a0a}.button.warning:focus,.button.warning:hover{background-color:#cc8b00;color:#0a0a0a}.button.alert{background-color:#cc4b37;color:#fefefe}.button.alert:focus,.button.alert:hover{background-color:#a53b2a;color:#fefefe}.button.hollow{border:1px solid #1779ba;color:#1779ba}.button.hollow,.button.hollow:focus,.button.hollow:hover{background-color:transparent}.button.hollow:focus,.button.hollow:hover{border-color:#0c3d5d;color:#0c3d5d}.button.hollow.primary{border:1px solid #1779ba;color:#1779ba}.button.hollow.primary:focus,.button.hollow.primary:hover{border-color:#0c3d5d;color:#0c3d5d}.button.hollow.secondary{border:1px solid #767676;color:#767676}.button.hollow.secondary:focus,.button.hollow.secondary:hover{border-color:#3b3b3b;color:#3b3b3b}.button.hollow.success{border:1px solid #3adb76;color:#3adb76}.button.hollow.success:focus,.button.hollow.success:hover{border-color:#157539;color:#157539}.button.hollow.warning{border:1px solid #ffae00;color:#ffae00}.button.hollow.warning:focus,.button.hollow.warning:hover{border-color:#805700;color:#805700}.button.hollow.alert{border:1px solid #cc4b37;color:#cc4b37}.button.hollow.alert:focus,.button.hollow.alert:hover{border-color:#67251a;color:#67251a}.button.disabled,.button[disabled]{opacity:.25;cursor:not-allowed}.button.disabled,.button.disabled:focus,.button.disabled:hover,.button[disabled],.button[disabled]:focus,.button[disabled]:hover{background-color:#1779ba;color:#fefefe}.button.disabled.primary,.button[disabled].primary{opacity:.25;cursor:not-allowed}.button.disabled.primary,.button.disabled.primary:focus,.button.disabled.primary:hover,.button[disabled].primary,.button[disabled].primary:focus,.button[disabled].primary:hover{background-color:#1779ba;color:#fefefe}.button.disabled.secondary,.button[disabled].secondary{opacity:.25;cursor:not-allowed}.button.disabled.secondary,.button.disabled.secondary:focus,.button.disabled.secondary:hover,.button[disabled].secondary,.button[disabled].secondary:focus,.button[disabled].secondary:hover{background-color:#767676;color:#fefefe}.button.disabled.success,.button[disabled].success{opacity:.25;cursor:not-allowed}.button.disabled.success,.button.disabled.success:focus,.button.disabled.success:hover,.button[disabled].success,.button[disabled].success:focus,.button[disabled].success:hover{background-color:#3adb76;color:#0a0a0a}.button.disabled.warning,.button[disabled].warning{opacity:.25;cursor:not-allowed}.button.disabled.warning,.button.disabled.warning:focus,.button.disabled.warning:hover,.button[disabled].warning,.button[disabled].warning:focus,.button[disabled].warning:hover{background-color:#ffae00;color:#0a0a0a}.button.disabled.alert,.button[disabled].alert{opacity:.25;cursor:not-allowed}.button.disabled.alert,.button.disabled.alert:focus,.button.disabled.alert:hover,.button[disabled].alert,.button[disabled].alert:focus,.button[disabled].alert:hover{background-color:#cc4b37;color:#fefefe}.button.dropdown:after{display:block;width:0;height:0;border:.4em inset;content:"";border-bottom-width:0;border-top-style:solid;border-color:#fefefe transparent transparent;position:relative;top:.4em;display:inline-block;float:right;margin-left:1em}.button.arrow-only:after{top:-.1em;float:none;margin-left:0}.accordion{margin-left:0;background:#fefefe;list-style-type:none}.accordion-item:first-child>:first-child,.accordion-item:last-child>:last-child{border-radius:0 0 0 0}.accordion-title{position:relative;display:block;padding:1.25rem 1rem;border:1px solid #e6e6e6;border-bottom:0;font-size:.75rem;line-height:1;color:#1779ba}:last-child:not(.is-active)>.accordion-title{border-bottom:1px solid #e6e6e6;border-radius:0 0 0 0}.accordion-title:focus,.accordion-title:hover{background-color:#e6e6e6}.accordion-title:before{position:absolute;top:50%;right:1rem;margin-top:-.5rem;content:"+"}.is-active>.accordion-title:before{content:"\2013"}.accordion-content{display:none;padding:1rem;border:1px solid #e6e6e6;border-bottom:0;background-color:#fefefe;color:#0a0a0a}:last-child>.accordion-content:last-child{border-bottom:1px solid #e6e6e6}.is-accordion-submenu-parent>a{position:relative}.is-accordion-submenu-parent>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-bottom-width:0;border-top-style:solid;border-color:#1779ba transparent transparent;position:absolute;top:50%;margin-top:-3px;right:1rem}.is-accordion-submenu-parent[aria-expanded=true]>a:after{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.badge{display:inline-block;min-width:2.1em;padding:.3em;border-radius:50%;font-size:.6rem;text-align:center}.badge,.badge.primary{background:#1779ba;color:#fefefe}.badge.secondary{background:#767676;color:#fefefe}.badge.success{background:#3adb76;color:#0a0a0a}.badge.warning{background:#ffae00;color:#0a0a0a}.badge.alert{background:#cc4b37;color:#fefefe}.breadcrumbs{margin:0 0 1rem;list-style:none}.breadcrumbs:after,.breadcrumbs:before{display:table;content:" ";-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.breadcrumbs:after{clear:both}.breadcrumbs li{float:left;font-size:.6875rem;color:#0a0a0a;cursor:default;text-transform:uppercase}.breadcrumbs li:not(:last-child):after{position:relative;top:1px;margin:0 .75rem;opacity:1;content:"/";color:#cacaca}.breadcrumbs a{color:#1779ba}.breadcrumbs a:hover{text-decoration:underline}.breadcrumbs .disabled{color:#cacaca;cursor:not-allowed}.button-group{margin-bottom:1rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.button-group:after,.button-group:before{display:table;content:" ";-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.button-group:after{clear:both}.button-group .button{margin:0;margin-right:1px;margin-bottom:1px;font-size:.9rem;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.button-group .button:last-child{margin-right:0}.button-group.tiny .button{font-size:.6rem}.button-group.small .button{font-size:.75rem}.button-group.large .button{font-size:1.25rem}.button-group.expanded .button{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.button-group.primary .button{background-color:#1779ba;color:#fefefe}.button-group.primary .button:focus,.button-group.primary .button:hover{background-color:#126195;color:#fefefe}.button-group.secondary .button{background-color:#767676;color:#fefefe}.button-group.secondary .button:focus,.button-group.secondary .button:hover{background-color:#5e5e5e;color:#fefefe}.button-group.success .button{background-color:#3adb76;color:#0a0a0a}.button-group.success .button:focus,.button-group.success .button:hover{background-color:#22bb5b;color:#0a0a0a}.button-group.warning .button{background-color:#ffae00;color:#0a0a0a}.button-group.warning .button:focus,.button-group.warning .button:hover{background-color:#cc8b00;color:#0a0a0a}.button-group.alert .button{background-color:#cc4b37;color:#fefefe}.button-group.alert .button:focus,.button-group.alert .button:hover{background-color:#a53b2a;color:#fefefe}.button-group.stacked,.button-group.stacked-for-medium,.button-group.stacked-for-small{-ms-flex-wrap:wrap;flex-wrap:wrap}.button-group.stacked-for-medium .button,.button-group.stacked-for-small .button,.button-group.stacked .button{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.button-group.stacked-for-medium .button:last-child,.button-group.stacked-for-small .button:last-child,.button-group.stacked .button:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.button-group.stacked-for-small .button{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;margin-bottom:0}}@media print,screen and (min-width:64em){.button-group.stacked-for-medium .button{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px;margin-bottom:0}}@media screen and (max-width:39.9375em){.button-group.stacked-for-small.expanded{display:block}.button-group.stacked-for-small.expanded .button{display:block;margin-right:0}}.callout{position:relative;margin:0 0 1rem;padding:1rem;border:1px solid hsla(0,0%,4%,.25);border-radius:0;background-color:#fff;color:#0a0a0a}.callout>:first-child{margin-top:0}.callout>:last-child{margin-bottom:0}.callout.primary{background-color:#d7ecfa;color:#0a0a0a}.callout.secondary{background-color:#eaeaea;color:#0a0a0a}.callout.success{background-color:#e1faea;color:#0a0a0a}.callout.warning{background-color:#fff3d9;color:#0a0a0a}.callout.alert{background-color:#f7e4e1;color:#0a0a0a}.callout.small{padding:.5rem}.callout.large{padding:3rem}.card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:1rem;border:1px solid #e6e6e6;border-radius:0;background:#fefefe;box-shadow:none;overflow:hidden;color:#0a0a0a}.card>:last-child{margin-bottom:0}.card-divider{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;padding:1rem;background:#e6e6e6}.card-divider>:last-child{margin-bottom:0}.card-section{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:1rem}.card-section>:last-child{margin-bottom:0}.close-button{position:absolute;color:#8a8a8a;cursor:pointer}[data-whatinput=mouse] .close-button{outline:0}.close-button:focus,.close-button:hover{color:#0a0a0a}.close-button.small{right:.66rem;top:.33em;font-size:1.5em;line-height:1}.close-button,.close-button.medium{right:1rem;top:.5rem;font-size:2em;line-height:1}.menu{margin:0;list-style-type:none;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.menu>li{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}[data-whatinput=mouse] .menu>li{outline:0}.menu>li>a{display:block;padding:.7rem 1rem;line-height:1}.menu a,.menu button,.menu input,.menu select{margin-bottom:0}.menu>li>a{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row nowrap;flex-flow:row}.menu>li>a i,.menu>li>a img,.menu>li>a svg{margin-right:.25rem}.menu,.menu.horizontal{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.menu.horizontal>li,.menu>li{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.menu.expanded>li{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.menu.expanded>li:first-child:last-child{width:100%}.menu.vertical{-ms-flex-wrap:wrap;flex-wrap:wrap}.menu.vertical>li{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.menu.vertical>li>a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media print,screen and (min-width:40em){.menu.medium-horizontal{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.menu.medium-horizontal>li{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.menu.medium-expanded>li{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.menu.medium-expanded>li:first-child:last-child{width:100%}.menu.medium-vertical{-ms-flex-wrap:wrap;flex-wrap:wrap}.menu.medium-vertical>li{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.menu.medium-vertical>li>a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media print,screen and (min-width:64em){.menu.large-horizontal{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.menu.large-horizontal>li{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.menu.large-expanded>li{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.menu.large-expanded>li:first-child:last-child{width:100%}.menu.large-vertical{-ms-flex-wrap:wrap;flex-wrap:wrap}.menu.large-vertical>li{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.menu.large-vertical>li>a{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}.menu.simple li{display:inline-block;vertical-align:top;line-height:1}.menu.simple a{padding:0}.menu.simple li{margin-left:0;margin-right:1rem}.menu.simple.align-right li{margin-right:0;margin-left:1rem}.menu.align-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.menu.icon-top>li>a{-ms-flex-flow:column nowrap;flex-flow:column}.menu.icon-top>li>a i,.menu.icon-top>li>a img,.menu.icon-top>li>a svg{-webkit-align-self:stretch;-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch;margin-bottom:.25rem;text-align:center}.menu.icon-top.vertical a>span{margin:auto}.menu.nested{margin-left:1rem}.menu .active>a{background:#1779ba;color:#fefefe}.menu.menu-bordered li{border:1px solid #e6e6e6}.menu.menu-bordered li:not(:first-child){border-top:0}.menu.menu-hover li:hover{background-color:#e6e6e6}.menu-text{padding-top:0;padding-bottom:0;padding:.7rem 1rem;font-weight:700;line-height:1;color:inherit}.menu-centered{text-align:center}.menu-centered>.menu{display:inline-block;vertical-align:top}.no-js [data-responsive-menu] ul{display:none}.menu-icon{position:relative;display:inline-block;vertical-align:middle;width:20px;height:16px;cursor:pointer}.menu-icon:after{position:absolute;top:0;left:0;display:block;width:100%;height:2px;background:#fefefe;box-shadow:0 7px 0 #fefefe,0 14px 0 #fefefe;content:""}.menu-icon:hover:after{background:#cacaca;box-shadow:0 7px 0 #cacaca,0 14px 0 #cacaca}.menu-icon.dark{position:relative;display:inline-block;vertical-align:middle;width:20px;height:16px;cursor:pointer}.menu-icon.dark:after{position:absolute;top:0;left:0;display:block;width:100%;height:2px;background:#0a0a0a;box-shadow:0 7px 0 #0a0a0a,0 14px 0 #0a0a0a;content:""}.menu-icon.dark:hover:after{background:#8a8a8a;box-shadow:0 7px 0 #8a8a8a,0 14px 0 #8a8a8a}.is-drilldown{position:relative;overflow:hidden}.is-drilldown li{display:block}.is-drilldown.animate-height{-webkit-transition:height .5s;transition:height .5s}.is-drilldown-submenu{position:absolute;top:0;left:100%;z-index:-1;width:100%;background:#fefefe;-webkit-transition:-webkit-transform .15s linear;transition:-webkit-transform .15s linear;transition:transform .15s linear;transition:transform .15s linear,-webkit-transform .15s linear}.is-drilldown-submenu.is-active{z-index:1;display:block;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.is-drilldown-submenu.is-closing{-webkit-transform:translateX(100%);transform:translateX(100%)}.drilldown-submenu-cover-previous{min-height:100%}.is-drilldown-submenu-parent>a{position:relative}.is-drilldown-submenu-parent>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #1779ba;position:absolute;top:50%;margin-top:-6px;right:1rem}.js-drilldown-back>a:before{display:block;width:0;height:0;border:6px inset;content:"";border-right-style:solid;border-color:transparent #1779ba transparent transparent;display:inline-block;vertical-align:middle;margin-right:.75rem;border-left-width:0}.dropdown-pane{position:absolute;z-index:10;display:block;width:300px;padding:1rem;visibility:hidden;border:1px solid #cacaca;border-radius:0;background-color:#fefefe;font-size:1rem}.dropdown-pane.is-open{visibility:visible}.dropdown-pane.tiny{width:100px}.dropdown-pane.small{width:200px}.dropdown-pane.large{width:400px}.dropdown.menu>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu>li.is-dropdown-submenu-parent>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-bottom-width:0;border-top-style:solid;border-color:#1779ba transparent transparent;right:5px;margin-top:-3px}[data-whatinput=mouse] .dropdown.menu a{outline:0}.no-js .dropdown.menu ul{display:none}.dropdown.menu.vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.vertical>li>a:after{right:14px}.dropdown.menu.vertical>li.opens-left>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-left-width:0;border-right-style:solid;border-color:transparent #1779ba transparent transparent}.dropdown.menu.vertical>li.opens-right>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #1779ba}@media print,screen and (min-width:40em){.dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-bottom-width:0;border-top-style:solid;border-color:#1779ba transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.medium-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.medium-vertical>li>a:after{right:14px}.dropdown.menu.medium-vertical>li.opens-left>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-left-width:0;border-right-style:solid;border-color:transparent #1779ba transparent transparent}.dropdown.menu.medium-vertical>li.opens-right>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #1779ba}}@media print,screen and (min-width:64em){.dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-bottom-width:0;border-top-style:solid;border-color:#1779ba transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.large-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.large-vertical>li>a:after{right:14px}.dropdown.menu.large-vertical>li.opens-left>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-left-width:0;border-right-style:solid;border-color:transparent #1779ba transparent transparent}.dropdown.menu.large-vertical>li.opens-right>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #1779ba}}.dropdown.menu.align-right .is-dropdown-submenu.first-sub{top:100%;right:0;left:auto}.is-dropdown-menu.vertical{width:100px}.is-dropdown-menu.vertical.align-right{float:right}.is-dropdown-submenu-parent{position:relative}.is-dropdown-submenu-parent a:after{position:absolute;top:50%;right:5px;margin-top:-6px}.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu{top:100%;left:auto}.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu{right:100%;left:auto}.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu{right:auto;left:100%}.is-dropdown-submenu{position:absolute;top:0;left:100%;z-index:1;display:none;min-width:200px;border:1px solid #cacaca;background:#fefefe}.is-dropdown-submenu .is-dropdown-submenu-parent>a:after{right:14px}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-left-width:0;border-right-style:solid;border-color:transparent #1779ba transparent transparent}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a:after{display:block;width:0;height:0;border:6px inset;content:"";border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #1779ba}.is-dropdown-submenu .is-dropdown-submenu{margin-top:-1px}.is-dropdown-submenu>li{width:100%}.is-dropdown-submenu.js-dropdown-active{display:block}.flex-video,.responsive-embed{position:relative;height:0;margin-bottom:1rem;padding-bottom:75%;overflow:hidden}.flex-video embed,.flex-video iframe,.flex-video object,.flex-video video,.responsive-embed embed,.responsive-embed iframe,.responsive-embed object,.responsive-embed video{position:absolute;top:0;left:0;width:100%;height:100%}.flex-video.widescreen,.responsive-embed.widescreen{padding-bottom:56.25%}.label{display:inline-block;padding:.33333rem .5rem;border-radius:0;font-size:.8rem;line-height:1;white-space:nowrap;cursor:default}.label,.label.primary{background:#1779ba;color:#fefefe}.label.secondary{background:#767676;color:#fefefe}.label.success{background:#3adb76;color:#0a0a0a}.label.warning{background:#ffae00;color:#0a0a0a}.label.alert{background:#cc4b37;color:#fefefe}.media-object{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:1rem;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.media-object img{max-width:none}@media screen and (max-width:39.9375em){.media-object.stack-for-small{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:39.9375em){.media-object.stack-for-small .media-object-section{padding:0;padding-bottom:1rem;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.media-object.stack-for-small .media-object-section img{width:100%}}.media-object-section{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.media-object-section:first-child{padding-right:1rem}.media-object-section:last-child:not(:nth-child(2)){padding-left:1rem}.media-object-section>:last-child{margin-bottom:0}.media-object-section.main-section{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.is-off-canvas-open{overflow:hidden}.js-off-canvas-overlay{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transition:opacity .5s ease,visibility .5s ease;transition:opacity .5s ease,visibility .5s ease;background:hsla(0,0%,100%,.25);opacity:0;visibility:hidden;overflow:hidden}.js-off-canvas-overlay.is-visible{opacity:1;visibility:visible}.js-off-canvas-overlay.is-closable{cursor:pointer}.js-off-canvas-overlay.is-overlay-absolute{position:absolute}.js-off-canvas-overlay.is-overlay-fixed{position:fixed}.off-canvas-wrapper{position:relative;overflow:hidden}.off-canvas{position:fixed;z-index:1;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;background:#e6e6e6}[data-whatinput=mouse] .off-canvas{outline:0}.off-canvas.is-transition-overlap{z-index:10}.off-canvas.is-transition-overlap.is-open{box-shadow:0 0 10px hsla(0,0%,4%,.7)}.off-canvas.is-open{-webkit-transform:translate(0);transform:translate(0)}.off-canvas-absolute{position:absolute;z-index:1;-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden;background:#e6e6e6}[data-whatinput=mouse] .off-canvas-absolute{outline:0}.off-canvas-absolute.is-transition-overlap{z-index:10}.off-canvas-absolute.is-transition-overlap.is-open{box-shadow:0 0 10px hsla(0,0%,4%,.7)}.off-canvas-absolute.is-open{-webkit-transform:translate(0);transform:translate(0)}.position-left{top:0;left:0;width:250px;height:100%;-webkit-transform:translateX(-250px);transform:translateX(-250px);overflow-y:auto}.position-left.is-open~.off-canvas-content{-webkit-transform:translateX(250px);transform:translateX(250px)}.position-left.is-transition-push:after{position:absolute;top:0;right:0;height:100%;width:1px;box-shadow:0 0 10px hsla(0,0%,4%,.7);content:" "}.position-left.is-transition-overlap.is-open~.off-canvas-content{-webkit-transform:none;transform:none}.position-right{top:0;right:0;width:250px;height:100%;-webkit-transform:translateX(250px);transform:translateX(250px);overflow-y:auto}.position-right.is-open~.off-canvas-content{-webkit-transform:translateX(-250px);transform:translateX(-250px)}.position-right.is-transition-push:after{position:absolute;top:0;left:0;height:100%;width:1px;box-shadow:0 0 10px hsla(0,0%,4%,.7);content:" "}.position-right.is-transition-overlap.is-open~.off-canvas-content{-webkit-transform:none;transform:none}.position-top{top:0;left:0;width:100%;height:250px;-webkit-transform:translateY(-250px);transform:translateY(-250px);overflow-x:auto}.position-top.is-open~.off-canvas-content{-webkit-transform:translateY(250px);transform:translateY(250px)}.position-top.is-transition-push:after{position:absolute;bottom:0;left:0;height:1px;width:100%;box-shadow:0 0 10px hsla(0,0%,4%,.7);content:" "}.position-top.is-transition-overlap.is-open~.off-canvas-content{-webkit-transform:none;transform:none}.position-bottom{bottom:0;left:0;width:100%;height:250px;-webkit-transform:translateY(250px);transform:translateY(250px);overflow-x:auto}.position-bottom.is-open~.off-canvas-content{-webkit-transform:translateY(-250px);transform:translateY(-250px)}.position-bottom.is-transition-push:after{position:absolute;top:0;left:0;height:1px;width:100%;box-shadow:0 0 10px hsla(0,0%,4%,.7);content:" "}.position-bottom.is-transition-overlap.is-open~.off-canvas-content{-webkit-transform:none;transform:none}.off-canvas-content{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-backface-visibility:hidden;backface-visibility:hidden}@media print,screen and (min-width:40em){.position-left.reveal-for-medium{-webkit-transform:none;transform:none;z-index:1}.position-left.reveal-for-medium~.off-canvas-content{margin-left:250px}.position-right.reveal-for-medium{-webkit-transform:none;transform:none;z-index:1}.position-right.reveal-for-medium~.off-canvas-content{margin-right:250px}.position-top.reveal-for-medium{-webkit-transform:none;transform:none;z-index:1}.position-top.reveal-for-medium~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-medium{-webkit-transform:none;transform:none;z-index:1}.position-bottom.reveal-for-medium~.off-canvas-content{margin-bottom:250px}}@media print,screen and (min-width:64em){.position-left.reveal-for-large{-webkit-transform:none;transform:none;z-index:1}.position-left.reveal-for-large~.off-canvas-content{margin-left:250px}.position-right.reveal-for-large{-webkit-transform:none;transform:none;z-index:1}.position-right.reveal-for-large~.off-canvas-content{margin-right:250px}.position-top.reveal-for-large{-webkit-transform:none;transform:none;z-index:1}.position-top.reveal-for-large~.off-canvas-content{margin-top:250px}.position-bottom.reveal-for-large{-webkit-transform:none;transform:none;z-index:1}.position-bottom.reveal-for-large~.off-canvas-content{margin-bottom:250px}}.orbit,.orbit-container{position:relative}.orbit-container{height:0;margin:0;list-style:none;overflow:hidden}.orbit-slide{width:100%}.orbit-slide.no-motionui.is-active{top:0;left:0}.orbit-figure{margin:0}.orbit-image{width:100%;max-width:100%;margin:0}.orbit-caption{bottom:0;width:100%;margin-bottom:0;background-color:hsla(0,0%,4%,.5)}.orbit-caption,.orbit-next,.orbit-previous{position:absolute;padding:1rem;color:#fefefe}.orbit-next,.orbit-previous{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);z-index:10}[data-whatinput=mouse] .orbit-next,[data-whatinput=mouse] .orbit-previous{outline:0}.orbit-next:active,.orbit-next:focus,.orbit-next:hover,.orbit-previous:active,.orbit-previous:focus,.orbit-previous:hover{background-color:hsla(0,0%,4%,.5)}.orbit-previous{left:0}.orbit-next{left:auto;right:0}.orbit-bullets{position:relative;margin-top:.8rem;margin-bottom:.8rem;text-align:center}[data-whatinput=mouse] .orbit-bullets{outline:0}.orbit-bullets button{width:1.2rem;height:1.2rem;margin:.1rem;border-radius:50%;background-color:#cacaca}.orbit-bullets button.is-active,.orbit-bullets button:hover{background-color:#8a8a8a}.pagination{margin-left:0;margin-bottom:1rem}.pagination:after,.pagination:before{display:table;content:" ";-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.pagination:after{clear:both}.pagination li{margin-right:.0625rem;border-radius:0;font-size:.875rem;display:none}.pagination li:first-child,.pagination li:last-child{display:inline-block}@media print,screen and (min-width:40em){.pagination li{display:inline-block}}.pagination a,.pagination button{display:block;padding:.1875rem .625rem;border-radius:0;color:#0a0a0a}.pagination a:hover,.pagination button:hover{background:#e6e6e6}.pagination .current{padding:.1875rem .625rem;background:#1779ba;color:#fefefe;cursor:default}.pagination .disabled{padding:.1875rem .625rem;color:#cacaca;cursor:not-allowed}.pagination .disabled:hover{background:transparent}.pagination .ellipsis:after{padding:.1875rem .625rem;content:"\2026";color:#0a0a0a}.pagination-previous.disabled:before,.pagination-previous a:before{display:inline-block;margin-right:.5rem;content:"\00ab"}.pagination-next.disabled:after,.pagination-next a:after{display:inline-block;margin-left:.5rem;content:"\00bb"}.progress{height:1rem;margin-bottom:1rem;border-radius:0;background-color:#cacaca}.progress.primary .progress-meter{background-color:#1779ba}.progress.secondary .progress-meter{background-color:#767676}.progress.success .progress-meter{background-color:#3adb76}.progress.warning .progress-meter{background-color:#ffae00}.progress.alert .progress-meter{background-color:#cc4b37}.progress-meter{position:relative;display:block;width:0;height:100%;background-color:#1779ba}.progress-meter-text{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);position:absolute;margin:0;font-size:.75rem;font-weight:700;color:#fefefe;white-space:nowrap}.slider{position:relative;height:.5rem;margin-top:1.25rem;margin-bottom:2.25rem;background-color:#e6e6e6;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:none;touch-action:none}.slider-fill{position:absolute;top:0;left:0;display:inline-block;max-width:100%;height:.5rem;background-color:#cacaca;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.slider-fill.is-dragging{-webkit-transition:all 0s linear;transition:all 0s linear}.slider-handle{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);position:absolute;left:0;z-index:1;display:inline-block;width:1.4rem;height:1.4rem;border-radius:0;background-color:#1779ba;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-ms-touch-action:manipulation;touch-action:manipulation}[data-whatinput=mouse] .slider-handle{outline:0}.slider-handle:hover{background-color:#14679e}.slider-handle.is-dragging{-webkit-transition:all 0s linear;transition:all 0s linear}.slider.disabled,.slider[disabled]{opacity:.25;cursor:not-allowed}.slider.vertical{display:inline-block;width:.5rem;height:12.5rem;margin:0 1.25rem;-webkit-transform:scaleY(-1);transform:scaleY(-1)}.slider.vertical .slider-fill{top:0;width:.5rem;max-height:100%}.slider.vertical .slider-handle{position:absolute;top:0;left:50%;width:1.4rem;height:1.4rem;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sticky,.sticky-container{position:relative}.sticky{z-index:0;-webkit-transform:translateZ(0);transform:translateZ(0)}.sticky.is-stuck{position:fixed;z-index:5}.sticky.is-stuck.is-at-top{top:0}.sticky.is-stuck.is-at-bottom{bottom:0}.sticky.is-anchored{position:relative;right:auto;left:auto}.sticky.is-anchored.is-at-bottom{bottom:0}body.is-reveal-open{overflow:hidden}html.is-reveal-open,html.is-reveal-open body{min-height:100%;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.reveal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1005;display:none;background-color:hsla(0,0%,4%,.45);overflow-y:scroll}.reveal{z-index:1006;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:none;padding:1rem;border:1px solid #cacaca;border-radius:0;background-color:#fefefe;position:relative;top:100px;margin-right:auto;margin-left:auto;overflow-y:auto}[data-whatinput=mouse] .reveal{outline:0}@media print,screen and (min-width:40em){.reveal{min-height:0}}.reveal .column,.reveal .columns{min-width:0}.reveal>:last-child{margin-bottom:0}@media print,screen and (min-width:40em){.reveal{width:600px;max-width:75rem}}@media print,screen and (min-width:40em){.reveal .reveal{right:auto;left:auto;margin:0 auto}}.reveal.collapse{padding:0}@media print,screen and (min-width:40em){.reveal.tiny{width:30%;max-width:75rem}}@media print,screen and (min-width:40em){.reveal.small{width:50%;max-width:75rem}}@media print,screen and (min-width:40em){.reveal.large{width:90%;max-width:75rem}}.reveal.full{top:0;left:0;width:100%;max-width:none;height:100%;height:100vh;min-height:100vh;margin-left:0;border:0;border-radius:0}@media screen and (max-width:39.9375em){.reveal{top:0;left:0;width:100%;max-width:none;height:100%;height:100vh;min-height:100vh;margin-left:0;border:0;border-radius:0}}.reveal.without-overlay{position:fixed}.switch{height:2rem;position:relative;margin-bottom:1rem;outline:0;font-size:.875rem;font-weight:700;color:#fefefe;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.switch-input{position:absolute;margin-bottom:0;opacity:0}.switch-paddle{position:relative;display:block;width:4rem;height:2rem;border-radius:0;background:#cacaca;-webkit-transition:all .25s ease-out;transition:all .25s ease-out;font-weight:inherit;color:inherit;cursor:pointer}input+.switch-paddle{margin:0}.switch-paddle:after{position:absolute;top:.25rem;left:.25rem;display:block;width:1.5rem;height:1.5rem;-webkit-transform:translateZ(0);transform:translateZ(0);border-radius:0;background:#fefefe;-webkit-transition:all .25s ease-out;transition:all .25s ease-out;content:""}input:checked~.switch-paddle{background:#1779ba}input:checked~.switch-paddle:after{left:2.25rem}[data-whatinput=mouse] input:focus~.switch-paddle{outline:0}.switch-active,.switch-inactive{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.switch-active{left:8%;display:none}input:checked+label>.switch-active{display:block}.switch-inactive{right:15%}input:checked+label>.switch-inactive{display:none}.switch.tiny{height:1.5rem}.switch.tiny .switch-paddle{width:3rem;height:1.5rem;font-size:.625rem}.switch.tiny .switch-paddle:after{top:.25rem;left:.25rem;width:1rem;height:1rem}.switch.tiny input:checked~.switch-paddle:after{left:1.75rem}.switch.small{height:1.75rem}.switch.small .switch-paddle{width:3.5rem;height:1.75rem;font-size:.75rem}.switch.small .switch-paddle:after{top:.25rem;left:.25rem;width:1.25rem;height:1.25rem}.switch.small input:checked~.switch-paddle:after{left:2rem}.switch.large{height:2.5rem}.switch.large .switch-paddle{width:5rem;height:2.5rem;font-size:1rem}.switch.large .switch-paddle:after{top:.25rem;left:.25rem;width:2rem;height:2rem}.switch.large input:checked~.switch-paddle:after{left:2.75rem}table{width:100%;margin-bottom:1rem;border-radius:0}table tbody,table tfoot,table thead{border:1px solid #f1f1f1;background-color:#fefefe}table caption{padding:.5rem .625rem .625rem;font-weight:700}table thead{background:#f8f8f8;color:#0a0a0a}table tfoot{background:#f1f1f1;color:#0a0a0a}table tfoot tr,table thead tr{background:transparent}table tfoot td,table tfoot th,table thead td,table thead th{padding:.5rem .625rem .625rem;font-weight:700;text-align:left}table tbody td,table tbody th{padding:.5rem .625rem .625rem}table tbody tr:nth-child(even){border-bottom:0;background-color:#f1f1f1}table.unstriped tbody{background-color:#fefefe}table.unstriped tbody tr{border-bottom:0;border-bottom:1px solid #f1f1f1;background-color:#fefefe}@media screen and (max-width:63.9375em){table.stack tfoot,table.stack thead{display:none}table.stack td,table.stack th,table.stack tr{display:block}table.stack td{border-top:0}}table.scroll{display:block;width:100%;overflow-x:auto}table.hover thead tr:hover{background-color:#f3f3f3}table.hover tfoot tr:hover{background-color:#ececec}table.hover tbody tr:hover{background-color:#f9f9f9}table.hover:not(.unstriped) tr:nth-of-type(even):hover{background-color:#ececec}.table-scroll{overflow-x:auto}.table-scroll table{width:auto}.tabs{margin:0;border:1px solid #e6e6e6;background:#fefefe;list-style-type:none}.tabs:after,.tabs:before{display:table;content:" ";-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.tabs:after{clear:both}.tabs.vertical>li{display:block;float:none;width:auto}.tabs.simple>li>a{padding:0}.tabs.simple>li>a:hover{background:transparent}.tabs.primary{background:#1779ba}.tabs.primary>li>a{color:#fefefe}.tabs.primary>li>a:focus,.tabs.primary>li>a:hover{background:#1673b1}.tabs-title{float:left}.tabs-title>a{display:block;padding:1.25rem 1.5rem;font-size:.75rem;line-height:1;color:#1779ba}.tabs-title>a:hover{background:#fefefe;color:#1468a0}.tabs-title>a:focus,.tabs-title>a[aria-selected=true]{background:#e6e6e6;color:#1779ba}.tabs-content{border:1px solid #e6e6e6;border-top:0;background:#fefefe;color:#0a0a0a;-webkit-transition:all .5s ease;transition:all .5s ease}.tabs-content.vertical{border:1px solid #e6e6e6;border-left:0}.tabs-panel{display:none;padding:1rem}.tabs-panel[aria-hidden=false]{display:block}.thumbnail{display:inline-block;max-width:100%;margin-bottom:1rem;border:4px solid #fefefe;border-radius:0;box-shadow:0 0 0 1px hsla(0,0%,4%,.2);line-height:0}a.thumbnail{-webkit-transition:-webkit-box-shadow .2s ease-out;transition:box-shadow .2s ease-out}a.thumbnail:focus,a.thumbnail:hover{box-shadow:0 0 6px 1px rgba(23,121,186,.5)}a.thumbnail image{box-shadow:none}.title-bar{padding:.5rem;background:#0a0a0a;color:#fefefe;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.title-bar .menu-icon{margin-left:.25rem;margin-right:.25rem}.title-bar-left,.title-bar-right{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0px}.title-bar-right{text-align:right}.title-bar-title{vertical-align:middle}.has-tip,.title-bar-title{display:inline-block;font-weight:700}.has-tip{position:relative;border-bottom:1px dotted #8a8a8a;cursor:help}.tooltip{position:absolute;top:calc(100% + .6495rem);z-index:1200;max-width:10rem;padding:.75rem;border-radius:0;background-color:#0a0a0a;font-size:80%;color:#fefefe}.tooltip:before{border:.75rem inset;border-top-width:0;border-bottom-style:solid;border-color:transparent transparent #0a0a0a;position:absolute;bottom:100%;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltip.top:before,.tooltip:before{display:block;width:0;height:0;content:""}.tooltip.top:before{border:.75rem inset;border-bottom-width:0;border-top-style:solid;border-color:#0a0a0a transparent transparent;top:100%;bottom:auto}.tooltip.left:before{border:.75rem inset;border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #0a0a0a;left:100%}.tooltip.left:before,.tooltip.right:before{display:block;width:0;height:0;content:"";top:50%;bottom:auto;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.tooltip.right:before{border:.75rem inset;border-left-width:0;border-right-style:solid;border-color:transparent #0a0a0a transparent transparent;right:100%;left:auto}.top-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.5rem;-ms-flex-wrap:wrap;flex-wrap:wrap}.top-bar,.top-bar ul{background-color:#e6e6e6}.top-bar input{max-width:200px;margin-right:1rem}.top-bar .input-group-field{width:100%;margin-right:0}.top-bar input.button{width:auto}.top-bar .top-bar-left,.top-bar .top-bar-right{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}@media print,screen and (min-width:40em){.top-bar{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.top-bar .top-bar-left{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.top-bar .top-bar-right{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}@media screen and (max-width:63.9375em){.top-bar.stacked-for-medium{-ms-flex-wrap:wrap;flex-wrap:wrap}.top-bar.stacked-for-medium .top-bar-left,.top-bar.stacked-for-medium .top-bar-right{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}@media screen and (max-width:74.9375em){.top-bar.stacked-for-large{-ms-flex-wrap:wrap;flex-wrap:wrap}.top-bar.stacked-for-large .top-bar-left,.top-bar.stacked-for-large .top-bar-right{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}}.top-bar-title{margin:.5rem 1rem .5rem 0}.top-bar-left,.top-bar-right,.top-bar-title{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.hide{display:none!important}.invisible{visibility:hidden}@media screen and (max-width:39.9375em){.hide-for-small-only{display:none!important}}@media screen and (max-width:0em),screen and (min-width:40em){.show-for-small-only{display:none!important}}@media print,screen and (min-width:40em){.hide-for-medium{display:none!important}}@media screen and (max-width:39.9375em){.show-for-medium{display:none!important}}@media screen and (min-width:40em) and (max-width:63.9375em){.hide-for-medium-only{display:none!important}}@media screen and (max-width:39.9375em),screen and (min-width:64em){.show-for-medium-only{display:none!important}}@media print,screen and (min-width:64em){.hide-for-large{display:none!important}}@media screen and (max-width:63.9375em){.show-for-large{display:none!important}}@media screen and (min-width:64em) and (max-width:74.9375em){.hide-for-large-only{display:none!important}}@media screen and (max-width:63.9375em),screen and (min-width:75em){.show-for-large-only{display:none!important}}.show-for-sr,.show-on-focus{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}.show-on-focus:active,.show-on-focus:focus{position:static!important;width:auto;height:auto;overflow:visible;clip:auto}.hide-for-portrait,.show-for-landscape{display:block!important}@media screen and (orientation:landscape){.hide-for-portrait,.show-for-landscape{display:block!important}}@media screen and (orientation:portrait){.hide-for-portrait,.show-for-landscape{display:none!important}}.hide-for-landscape,.show-for-portrait{display:none!important}@media screen and (orientation:landscape){.hide-for-landscape,.show-for-portrait{display:none!important}}@media screen and (orientation:portrait){.hide-for-landscape,.show-for-portrait{display:block!important}}.float-left{float:left!important}.float-right{float:right!important}.float-center{display:block;margin-right:auto;margin-left:auto}.clearfix:after,.clearfix:before{display:table;content:" ";-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.clearfix:after{clear:both}.align-right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.align-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.align-justify{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.align-spaced{-ms-flex-pack:distribute;justify-content:space-around}.align-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.align-self-top{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start}.align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.align-self-bottom{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end}.align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.align-self-middle{-webkit-align-self:center;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.align-stretch{-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.align-self-stretch{-webkit-align-self:stretch;-ms-flex-item-align:stretch;-ms-grid-row-align:stretch;align-self:stretch}.small-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.small-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.small-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.small-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.small-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.small-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}@media print,screen and (min-width:40em){.medium-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.medium-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.medium-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.medium-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.medium-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.medium-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}}@media print,screen and (min-width:64em){.large-order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.large-order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.large-order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.large-order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.large-order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.large-order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}}
@@ -0,0 +1,4006 @@
1
+ @charset "UTF-8";
2
+ /**
3
+ * Foundation for Sites by ZURB
4
+ * Version 6.3.1
5
+ * foundation.zurb.com
6
+ * Licensed under MIT Open Source
7
+ */
8
+ /*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
9
+ /* Document
10
+ ========================================================================== */
11
+ /**
12
+ * 1. Change the default font family in all browsers (opinionated).
13
+ * 2. Correct the line height in all browsers.
14
+ * 3. Prevent adjustments of font size after orientation changes in
15
+ * IE on Windows Phone and in iOS.
16
+ */
17
+ html {
18
+ font-family: sans-serif;
19
+ /* 1 */
20
+ line-height: 1.15;
21
+ /* 2 */
22
+ -ms-text-size-adjust: 100%;
23
+ /* 3 */
24
+ -webkit-text-size-adjust: 100%;
25
+ /* 3 */ }
26
+
27
+ /* Sections
28
+ ========================================================================== */
29
+ /**
30
+ * Remove the margin in all browsers (opinionated).
31
+ */
32
+ body {
33
+ margin: 0; }
34
+
35
+ /**
36
+ * Add the correct display in IE 9-.
37
+ */
38
+ article,
39
+ aside,
40
+ footer,
41
+ header,
42
+ nav,
43
+ section {
44
+ display: block; }
45
+
46
+ /**
47
+ * Correct the font size and margin on `h1` elements within `section` and
48
+ * `article` contexts in Chrome, Firefox, and Safari.
49
+ */
50
+ h1 {
51
+ font-size: 2em;
52
+ margin: 0.67em 0; }
53
+
54
+ /* Grouping content
55
+ ========================================================================== */
56
+ /**
57
+ * Add the correct display in IE 9-.
58
+ */
59
+ figcaption,
60
+ figure {
61
+ display: block; }
62
+
63
+ /**
64
+ * Add the correct margin in IE 8.
65
+ */
66
+ figure {
67
+ margin: 1em 40px; }
68
+
69
+ /**
70
+ * 1. Add the correct box sizing in Firefox.
71
+ * 2. Show the overflow in Edge and IE.
72
+ */
73
+ hr {
74
+ -webkit-box-sizing: content-box;
75
+ box-sizing: content-box;
76
+ /* 1 */
77
+ height: 0;
78
+ /* 1 */
79
+ overflow: visible;
80
+ /* 2 */ }
81
+
82
+ /**
83
+ * Add the correct display in IE.
84
+ */
85
+ main {
86
+ display: block; }
87
+
88
+ /**
89
+ * 1. Correct the inheritance and scaling of font size in all browsers.
90
+ * 2. Correct the odd `em` font sizing in all browsers.
91
+ */
92
+ pre {
93
+ font-family: monospace, monospace;
94
+ /* 1 */
95
+ font-size: 1em;
96
+ /* 2 */ }
97
+
98
+ /* Links
99
+ ========================================================================== */
100
+ /**
101
+ * 1. Remove the gray background on active links in IE 10.
102
+ * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
103
+ */
104
+ a {
105
+ background-color: transparent;
106
+ /* 1 */
107
+ -webkit-text-decoration-skip: objects;
108
+ /* 2 */ }
109
+
110
+ /**
111
+ * Remove the outline on focused links when they are also active or hovered
112
+ * in all browsers (opinionated).
113
+ */
114
+ a:active,
115
+ a:hover {
116
+ outline-width: 0; }
117
+
118
+ /* Text-level semantics
119
+ ========================================================================== */
120
+ /**
121
+ * 1. Remove the bottom border in Firefox 39-.
122
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
123
+ */
124
+ abbr[title] {
125
+ border-bottom: none;
126
+ /* 1 */
127
+ text-decoration: underline;
128
+ /* 2 */
129
+ text-decoration: underline dotted;
130
+ /* 2 */ }
131
+
132
+ /**
133
+ * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
134
+ */
135
+ b,
136
+ strong {
137
+ font-weight: inherit; }
138
+
139
+ /**
140
+ * Add the correct font weight in Chrome, Edge, and Safari.
141
+ */
142
+ b,
143
+ strong {
144
+ font-weight: bolder; }
145
+
146
+ /**
147
+ * 1. Correct the inheritance and scaling of font size in all browsers.
148
+ * 2. Correct the odd `em` font sizing in all browsers.
149
+ */
150
+ code,
151
+ kbd,
152
+ samp {
153
+ font-family: monospace, monospace;
154
+ /* 1 */
155
+ font-size: 1em;
156
+ /* 2 */ }
157
+
158
+ /**
159
+ * Add the correct font style in Android 4.3-.
160
+ */
161
+ dfn {
162
+ font-style: italic; }
163
+
164
+ /**
165
+ * Add the correct background and color in IE 9-.
166
+ */
167
+ mark {
168
+ background-color: #ff0;
169
+ color: #000; }
170
+
171
+ /**
172
+ * Add the correct font size in all browsers.
173
+ */
174
+ small {
175
+ font-size: 80%; }
176
+
177
+ /**
178
+ * Prevent `sub` and `sup` elements from affecting the line height in
179
+ * all browsers.
180
+ */
181
+ sub,
182
+ sup {
183
+ font-size: 75%;
184
+ line-height: 0;
185
+ position: relative;
186
+ vertical-align: baseline; }
187
+
188
+ sub {
189
+ bottom: -0.25em; }
190
+
191
+ sup {
192
+ top: -0.5em; }
193
+
194
+ /* Embedded content
195
+ ========================================================================== */
196
+ /**
197
+ * Add the correct display in IE 9-.
198
+ */
199
+ audio,
200
+ video {
201
+ display: inline-block; }
202
+
203
+ /**
204
+ * Add the correct display in iOS 4-7.
205
+ */
206
+ audio:not([controls]) {
207
+ display: none;
208
+ height: 0; }
209
+
210
+ /**
211
+ * Remove the border on images inside links in IE 10-.
212
+ */
213
+ img {
214
+ border-style: none; }
215
+
216
+ /**
217
+ * Hide the overflow in IE.
218
+ */
219
+ svg:not(:root) {
220
+ overflow: hidden; }
221
+
222
+ /* Forms
223
+ ========================================================================== */
224
+ /**
225
+ * 1. Change the font styles in all browsers (opinionated).
226
+ * 2. Remove the margin in Firefox and Safari.
227
+ */
228
+ button,
229
+ input,
230
+ optgroup,
231
+ select,
232
+ textarea {
233
+ font-family: sans-serif;
234
+ /* 1 */
235
+ font-size: 100%;
236
+ /* 1 */
237
+ line-height: 1.15;
238
+ /* 1 */
239
+ margin: 0;
240
+ /* 2 */ }
241
+
242
+ /**
243
+ * Show the overflow in IE.
244
+ */
245
+ button {
246
+ overflow: visible; }
247
+
248
+ /**
249
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
250
+ * 1. Remove the inheritance of text transform in Firefox.
251
+ */
252
+ button,
253
+ select {
254
+ /* 1 */
255
+ text-transform: none; }
256
+
257
+ /**
258
+ * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
259
+ * controls in Android 4.
260
+ * 2. Correct the inability to style clickable types in iOS and Safari.
261
+ */
262
+ button,
263
+ html [type="button"],
264
+ [type="reset"],
265
+ [type="submit"] {
266
+ -webkit-appearance: button;
267
+ /* 2 */ }
268
+
269
+ button,
270
+ [type="button"],
271
+ [type="reset"],
272
+ [type="submit"] {
273
+ /**
274
+ * Remove the inner border and padding in Firefox.
275
+ */
276
+ /**
277
+ * Restore the focus styles unset by the previous rule.
278
+ */ }
279
+ button::-moz-focus-inner,
280
+ [type="button"]::-moz-focus-inner,
281
+ [type="reset"]::-moz-focus-inner,
282
+ [type="submit"]::-moz-focus-inner {
283
+ border-style: none;
284
+ padding: 0; }
285
+ button:-moz-focusring,
286
+ [type="button"]:-moz-focusring,
287
+ [type="reset"]:-moz-focusring,
288
+ [type="submit"]:-moz-focusring {
289
+ outline: 1px dotted ButtonText; }
290
+
291
+ /**
292
+ * Show the overflow in Edge.
293
+ */
294
+ input {
295
+ overflow: visible; }
296
+
297
+ /**
298
+ * 1. Add the correct box sizing in IE 10-.
299
+ * 2. Remove the padding in IE 10-.
300
+ */
301
+ [type="checkbox"],
302
+ [type="radio"] {
303
+ -webkit-box-sizing: border-box;
304
+ box-sizing: border-box;
305
+ /* 1 */
306
+ padding: 0;
307
+ /* 2 */ }
308
+
309
+ /**
310
+ * Correct the cursor style of increment and decrement buttons in Chrome.
311
+ */
312
+ [type="number"]::-webkit-inner-spin-button,
313
+ [type="number"]::-webkit-outer-spin-button {
314
+ height: auto; }
315
+
316
+ /**
317
+ * 1. Correct the odd appearance in Chrome and Safari.
318
+ * 2. Correct the outline style in Safari.
319
+ */
320
+ [type="search"] {
321
+ -webkit-appearance: textfield;
322
+ /* 1 */
323
+ outline-offset: -2px;
324
+ /* 2 */
325
+ /**
326
+ * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
327
+ */ }
328
+ [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
329
+ -webkit-appearance: none; }
330
+
331
+ /**
332
+ * 1. Correct the inability to style clickable types in iOS and Safari.
333
+ * 2. Change font properties to `inherit` in Safari.
334
+ */
335
+ ::-webkit-file-upload-button {
336
+ -webkit-appearance: button;
337
+ /* 1 */
338
+ font: inherit;
339
+ /* 2 */ }
340
+
341
+ /**
342
+ * Change the border, margin, and padding in all browsers (opinionated).
343
+ */
344
+ fieldset {
345
+ border: 1px solid #c0c0c0;
346
+ margin: 0 2px;
347
+ padding: 0.35em 0.625em 0.75em; }
348
+
349
+ /**
350
+ * 1. Correct the text wrapping in Edge and IE.
351
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
352
+ * 3. Remove the padding so developers are not caught out when they zero out
353
+ * `fieldset` elements in all browsers.
354
+ */
355
+ legend {
356
+ -webkit-box-sizing: border-box;
357
+ box-sizing: border-box;
358
+ /* 1 */
359
+ display: table;
360
+ /* 1 */
361
+ max-width: 100%;
362
+ /* 1 */
363
+ padding: 0;
364
+ /* 3 */
365
+ color: inherit;
366
+ /* 2 */
367
+ white-space: normal;
368
+ /* 1 */ }
369
+
370
+ /**
371
+ * 1. Add the correct display in IE 9-.
372
+ * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
373
+ */
374
+ progress {
375
+ display: inline-block;
376
+ /* 1 */
377
+ vertical-align: baseline;
378
+ /* 2 */ }
379
+
380
+ /**
381
+ * Remove the default vertical scrollbar in IE.
382
+ */
383
+ textarea {
384
+ overflow: auto; }
385
+
386
+ /* Interactive
387
+ ========================================================================== */
388
+ /*
389
+ * Add the correct display in Edge, IE, and Firefox.
390
+ */
391
+ details {
392
+ display: block; }
393
+
394
+ /*
395
+ * Add the correct display in all browsers.
396
+ */
397
+ summary {
398
+ display: list-item; }
399
+
400
+ /*
401
+ * Add the correct display in IE 9-.
402
+ */
403
+ menu {
404
+ display: block; }
405
+
406
+ /* Scripting
407
+ ========================================================================== */
408
+ /**
409
+ * Add the correct display in IE 9-.
410
+ */
411
+ canvas {
412
+ display: inline-block; }
413
+
414
+ /**
415
+ * Add the correct display in IE.
416
+ */
417
+ template {
418
+ display: none; }
419
+
420
+ /* Hidden
421
+ ========================================================================== */
422
+ /**
423
+ * Add the correct display in IE 10-.
424
+ */
425
+ [hidden] {
426
+ display: none; }
427
+
428
+ .foundation-mq {
429
+ font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }
430
+
431
+ html {
432
+ -webkit-box-sizing: border-box;
433
+ box-sizing: border-box;
434
+ font-size: 100%; }
435
+
436
+ *,
437
+ *::before,
438
+ *::after {
439
+ -webkit-box-sizing: inherit;
440
+ box-sizing: inherit; }
441
+
442
+ body {
443
+ margin: 0;
444
+ padding: 0;
445
+ background: #fefefe;
446
+ font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
447
+ font-weight: normal;
448
+ line-height: 1.5;
449
+ color: #0a0a0a;
450
+ -webkit-font-smoothing: antialiased;
451
+ -moz-osx-font-smoothing: grayscale; }
452
+
453
+ img {
454
+ display: inline-block;
455
+ vertical-align: middle;
456
+ max-width: 100%;
457
+ height: auto;
458
+ -ms-interpolation-mode: bicubic; }
459
+
460
+ textarea {
461
+ height: auto;
462
+ min-height: 50px;
463
+ border-radius: 0; }
464
+
465
+ select {
466
+ -webkit-box-sizing: border-box;
467
+ box-sizing: border-box;
468
+ width: 100%;
469
+ border-radius: 0; }
470
+
471
+ .map_canvas img,
472
+ .map_canvas embed,
473
+ .map_canvas object,
474
+ .mqa-display img,
475
+ .mqa-display embed,
476
+ .mqa-display object {
477
+ max-width: none !important; }
478
+
479
+ button {
480
+ padding: 0;
481
+ -webkit-appearance: none;
482
+ -moz-appearance: none;
483
+ appearance: none;
484
+ border: 0;
485
+ border-radius: 0;
486
+ background: transparent;
487
+ line-height: 1; }
488
+ [data-whatinput='mouse'] button {
489
+ outline: 0; }
490
+
491
+ pre {
492
+ overflow: auto; }
493
+
494
+ .is-visible {
495
+ display: block !important; }
496
+
497
+ .is-hidden {
498
+ display: none !important; }
499
+
500
+ .row {
501
+ max-width: 75rem;
502
+ margin-right: auto;
503
+ margin-left: auto; }
504
+ .row::before, .row::after {
505
+ display: table;
506
+ content: ' '; }
507
+ .row::after {
508
+ clear: both; }
509
+ .row.collapse > .column, .row.collapse > .columns {
510
+ padding-right: 0;
511
+ padding-left: 0; }
512
+ .row .row {
513
+ margin-right: -0.625rem;
514
+ margin-left: -0.625rem; }
515
+ @media print, screen and (min-width: 40em) {
516
+ .row .row {
517
+ margin-right: -0.9375rem;
518
+ margin-left: -0.9375rem; } }
519
+ @media print, screen and (min-width: 64em) {
520
+ .row .row {
521
+ margin-right: -0.9375rem;
522
+ margin-left: -0.9375rem; } }
523
+ .row .row.collapse {
524
+ margin-right: 0;
525
+ margin-left: 0; }
526
+ .row.expanded {
527
+ max-width: none; }
528
+ .row.expanded .row {
529
+ margin-right: auto;
530
+ margin-left: auto; }
531
+ .row:not(.expanded) .row {
532
+ max-width: none; }
533
+ .row.gutter-small > .column, .row.gutter-small > .columns {
534
+ padding-right: 0.625rem;
535
+ padding-left: 0.625rem; }
536
+ .row.gutter-medium > .column, .row.gutter-medium > .columns {
537
+ padding-right: 0.9375rem;
538
+ padding-left: 0.9375rem; }
539
+
540
+ .column, .columns {
541
+ width: 100%;
542
+ float: right;
543
+ padding-right: 0.625rem;
544
+ padding-left: 0.625rem; }
545
+ @media print, screen and (min-width: 40em) {
546
+ .column, .columns {
547
+ padding-right: 0.9375rem;
548
+ padding-left: 0.9375rem; } }
549
+ .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
550
+ float: left; }
551
+ .column.end:last-child:last-child, .end.columns:last-child:last-child {
552
+ float: right; }
553
+
554
+ .column.row.row, .row.row.columns {
555
+ float: none; }
556
+
557
+ .row .column.row.row, .row .row.row.columns {
558
+ margin-right: 0;
559
+ margin-left: 0;
560
+ padding-right: 0;
561
+ padding-left: 0; }
562
+
563
+ .small-1 {
564
+ width: 8.33333%; }
565
+
566
+ .small-push-1 {
567
+ position: relative;
568
+ right: 8.33333%; }
569
+
570
+ .small-pull-1 {
571
+ position: relative;
572
+ right: -8.33333%; }
573
+
574
+ .small-offset-0 {
575
+ margin-right: 0%; }
576
+
577
+ .small-2 {
578
+ width: 16.66667%; }
579
+
580
+ .small-push-2 {
581
+ position: relative;
582
+ right: 16.66667%; }
583
+
584
+ .small-pull-2 {
585
+ position: relative;
586
+ right: -16.66667%; }
587
+
588
+ .small-offset-1 {
589
+ margin-right: 8.33333%; }
590
+
591
+ .small-3 {
592
+ width: 25%; }
593
+
594
+ .small-push-3 {
595
+ position: relative;
596
+ right: 25%; }
597
+
598
+ .small-pull-3 {
599
+ position: relative;
600
+ right: -25%; }
601
+
602
+ .small-offset-2 {
603
+ margin-right: 16.66667%; }
604
+
605
+ .small-4 {
606
+ width: 33.33333%; }
607
+
608
+ .small-push-4 {
609
+ position: relative;
610
+ right: 33.33333%; }
611
+
612
+ .small-pull-4 {
613
+ position: relative;
614
+ right: -33.33333%; }
615
+
616
+ .small-offset-3 {
617
+ margin-right: 25%; }
618
+
619
+ .small-5 {
620
+ width: 41.66667%; }
621
+
622
+ .small-push-5 {
623
+ position: relative;
624
+ right: 41.66667%; }
625
+
626
+ .small-pull-5 {
627
+ position: relative;
628
+ right: -41.66667%; }
629
+
630
+ .small-offset-4 {
631
+ margin-right: 33.33333%; }
632
+
633
+ .small-6 {
634
+ width: 50%; }
635
+
636
+ .small-push-6 {
637
+ position: relative;
638
+ right: 50%; }
639
+
640
+ .small-pull-6 {
641
+ position: relative;
642
+ right: -50%; }
643
+
644
+ .small-offset-5 {
645
+ margin-right: 41.66667%; }
646
+
647
+ .small-7 {
648
+ width: 58.33333%; }
649
+
650
+ .small-push-7 {
651
+ position: relative;
652
+ right: 58.33333%; }
653
+
654
+ .small-pull-7 {
655
+ position: relative;
656
+ right: -58.33333%; }
657
+
658
+ .small-offset-6 {
659
+ margin-right: 50%; }
660
+
661
+ .small-8 {
662
+ width: 66.66667%; }
663
+
664
+ .small-push-8 {
665
+ position: relative;
666
+ right: 66.66667%; }
667
+
668
+ .small-pull-8 {
669
+ position: relative;
670
+ right: -66.66667%; }
671
+
672
+ .small-offset-7 {
673
+ margin-right: 58.33333%; }
674
+
675
+ .small-9 {
676
+ width: 75%; }
677
+
678
+ .small-push-9 {
679
+ position: relative;
680
+ right: 75%; }
681
+
682
+ .small-pull-9 {
683
+ position: relative;
684
+ right: -75%; }
685
+
686
+ .small-offset-8 {
687
+ margin-right: 66.66667%; }
688
+
689
+ .small-10 {
690
+ width: 83.33333%; }
691
+
692
+ .small-push-10 {
693
+ position: relative;
694
+ right: 83.33333%; }
695
+
696
+ .small-pull-10 {
697
+ position: relative;
698
+ right: -83.33333%; }
699
+
700
+ .small-offset-9 {
701
+ margin-right: 75%; }
702
+
703
+ .small-11 {
704
+ width: 91.66667%; }
705
+
706
+ .small-push-11 {
707
+ position: relative;
708
+ right: 91.66667%; }
709
+
710
+ .small-pull-11 {
711
+ position: relative;
712
+ right: -91.66667%; }
713
+
714
+ .small-offset-10 {
715
+ margin-right: 83.33333%; }
716
+
717
+ .small-12 {
718
+ width: 100%; }
719
+
720
+ .small-offset-11 {
721
+ margin-right: 91.66667%; }
722
+
723
+ .small-up-1 > .column, .small-up-1 > .columns {
724
+ float: right;
725
+ width: 100%; }
726
+ .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
727
+ clear: none; }
728
+ .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
729
+ clear: both; }
730
+ .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
731
+ float: right; }
732
+
733
+ .small-up-2 > .column, .small-up-2 > .columns {
734
+ float: right;
735
+ width: 50%; }
736
+ .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
737
+ clear: none; }
738
+ .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
739
+ clear: both; }
740
+ .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
741
+ float: right; }
742
+
743
+ .small-up-3 > .column, .small-up-3 > .columns {
744
+ float: right;
745
+ width: 33.33333%; }
746
+ .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
747
+ clear: none; }
748
+ .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
749
+ clear: both; }
750
+ .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
751
+ float: right; }
752
+
753
+ .small-up-4 > .column, .small-up-4 > .columns {
754
+ float: right;
755
+ width: 25%; }
756
+ .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
757
+ clear: none; }
758
+ .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
759
+ clear: both; }
760
+ .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
761
+ float: right; }
762
+
763
+ .small-up-5 > .column, .small-up-5 > .columns {
764
+ float: right;
765
+ width: 20%; }
766
+ .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
767
+ clear: none; }
768
+ .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
769
+ clear: both; }
770
+ .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
771
+ float: right; }
772
+
773
+ .small-up-6 > .column, .small-up-6 > .columns {
774
+ float: right;
775
+ width: 16.66667%; }
776
+ .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
777
+ clear: none; }
778
+ .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
779
+ clear: both; }
780
+ .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
781
+ float: right; }
782
+
783
+ .small-up-7 > .column, .small-up-7 > .columns {
784
+ float: right;
785
+ width: 14.28571%; }
786
+ .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
787
+ clear: none; }
788
+ .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
789
+ clear: both; }
790
+ .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
791
+ float: right; }
792
+
793
+ .small-up-8 > .column, .small-up-8 > .columns {
794
+ float: right;
795
+ width: 12.5%; }
796
+ .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
797
+ clear: none; }
798
+ .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
799
+ clear: both; }
800
+ .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
801
+ float: right; }
802
+
803
+ .small-collapse > .column, .small-collapse > .columns {
804
+ padding-right: 0;
805
+ padding-left: 0; }
806
+
807
+ .small-collapse .row {
808
+ margin-right: 0;
809
+ margin-left: 0; }
810
+
811
+ .expanded.row .small-collapse.row {
812
+ margin-right: 0;
813
+ margin-left: 0; }
814
+
815
+ .small-uncollapse > .column, .small-uncollapse > .columns {
816
+ padding-right: 0.625rem;
817
+ padding-left: 0.625rem; }
818
+
819
+ .small-centered {
820
+ margin-right: auto;
821
+ margin-left: auto; }
822
+ .small-centered, .small-centered:last-child:not(:first-child) {
823
+ float: none;
824
+ clear: both; }
825
+
826
+ .small-uncentered,
827
+ .small-push-0,
828
+ .small-pull-0 {
829
+ position: static;
830
+ float: left;
831
+ margin-right: 0;
832
+ margin-left: 0; }
833
+
834
+ @media print, screen and (min-width: 40em) {
835
+ .medium-1 {
836
+ width: 8.33333%; }
837
+ .medium-push-1 {
838
+ position: relative;
839
+ right: 8.33333%; }
840
+ .medium-pull-1 {
841
+ position: relative;
842
+ right: -8.33333%; }
843
+ .medium-offset-0 {
844
+ margin-right: 0%; }
845
+ .medium-2 {
846
+ width: 16.66667%; }
847
+ .medium-push-2 {
848
+ position: relative;
849
+ right: 16.66667%; }
850
+ .medium-pull-2 {
851
+ position: relative;
852
+ right: -16.66667%; }
853
+ .medium-offset-1 {
854
+ margin-right: 8.33333%; }
855
+ .medium-3 {
856
+ width: 25%; }
857
+ .medium-push-3 {
858
+ position: relative;
859
+ right: 25%; }
860
+ .medium-pull-3 {
861
+ position: relative;
862
+ right: -25%; }
863
+ .medium-offset-2 {
864
+ margin-right: 16.66667%; }
865
+ .medium-4 {
866
+ width: 33.33333%; }
867
+ .medium-push-4 {
868
+ position: relative;
869
+ right: 33.33333%; }
870
+ .medium-pull-4 {
871
+ position: relative;
872
+ right: -33.33333%; }
873
+ .medium-offset-3 {
874
+ margin-right: 25%; }
875
+ .medium-5 {
876
+ width: 41.66667%; }
877
+ .medium-push-5 {
878
+ position: relative;
879
+ right: 41.66667%; }
880
+ .medium-pull-5 {
881
+ position: relative;
882
+ right: -41.66667%; }
883
+ .medium-offset-4 {
884
+ margin-right: 33.33333%; }
885
+ .medium-6 {
886
+ width: 50%; }
887
+ .medium-push-6 {
888
+ position: relative;
889
+ right: 50%; }
890
+ .medium-pull-6 {
891
+ position: relative;
892
+ right: -50%; }
893
+ .medium-offset-5 {
894
+ margin-right: 41.66667%; }
895
+ .medium-7 {
896
+ width: 58.33333%; }
897
+ .medium-push-7 {
898
+ position: relative;
899
+ right: 58.33333%; }
900
+ .medium-pull-7 {
901
+ position: relative;
902
+ right: -58.33333%; }
903
+ .medium-offset-6 {
904
+ margin-right: 50%; }
905
+ .medium-8 {
906
+ width: 66.66667%; }
907
+ .medium-push-8 {
908
+ position: relative;
909
+ right: 66.66667%; }
910
+ .medium-pull-8 {
911
+ position: relative;
912
+ right: -66.66667%; }
913
+ .medium-offset-7 {
914
+ margin-right: 58.33333%; }
915
+ .medium-9 {
916
+ width: 75%; }
917
+ .medium-push-9 {
918
+ position: relative;
919
+ right: 75%; }
920
+ .medium-pull-9 {
921
+ position: relative;
922
+ right: -75%; }
923
+ .medium-offset-8 {
924
+ margin-right: 66.66667%; }
925
+ .medium-10 {
926
+ width: 83.33333%; }
927
+ .medium-push-10 {
928
+ position: relative;
929
+ right: 83.33333%; }
930
+ .medium-pull-10 {
931
+ position: relative;
932
+ right: -83.33333%; }
933
+ .medium-offset-9 {
934
+ margin-right: 75%; }
935
+ .medium-11 {
936
+ width: 91.66667%; }
937
+ .medium-push-11 {
938
+ position: relative;
939
+ right: 91.66667%; }
940
+ .medium-pull-11 {
941
+ position: relative;
942
+ right: -91.66667%; }
943
+ .medium-offset-10 {
944
+ margin-right: 83.33333%; }
945
+ .medium-12 {
946
+ width: 100%; }
947
+ .medium-offset-11 {
948
+ margin-right: 91.66667%; }
949
+ .medium-up-1 > .column, .medium-up-1 > .columns {
950
+ float: right;
951
+ width: 100%; }
952
+ .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
953
+ clear: none; }
954
+ .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
955
+ clear: both; }
956
+ .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
957
+ float: right; }
958
+ .medium-up-2 > .column, .medium-up-2 > .columns {
959
+ float: right;
960
+ width: 50%; }
961
+ .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
962
+ clear: none; }
963
+ .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
964
+ clear: both; }
965
+ .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
966
+ float: right; }
967
+ .medium-up-3 > .column, .medium-up-3 > .columns {
968
+ float: right;
969
+ width: 33.33333%; }
970
+ .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
971
+ clear: none; }
972
+ .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
973
+ clear: both; }
974
+ .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
975
+ float: right; }
976
+ .medium-up-4 > .column, .medium-up-4 > .columns {
977
+ float: right;
978
+ width: 25%; }
979
+ .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
980
+ clear: none; }
981
+ .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
982
+ clear: both; }
983
+ .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
984
+ float: right; }
985
+ .medium-up-5 > .column, .medium-up-5 > .columns {
986
+ float: right;
987
+ width: 20%; }
988
+ .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
989
+ clear: none; }
990
+ .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
991
+ clear: both; }
992
+ .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
993
+ float: right; }
994
+ .medium-up-6 > .column, .medium-up-6 > .columns {
995
+ float: right;
996
+ width: 16.66667%; }
997
+ .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
998
+ clear: none; }
999
+ .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
1000
+ clear: both; }
1001
+ .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
1002
+ float: right; }
1003
+ .medium-up-7 > .column, .medium-up-7 > .columns {
1004
+ float: right;
1005
+ width: 14.28571%; }
1006
+ .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
1007
+ clear: none; }
1008
+ .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
1009
+ clear: both; }
1010
+ .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
1011
+ float: right; }
1012
+ .medium-up-8 > .column, .medium-up-8 > .columns {
1013
+ float: right;
1014
+ width: 12.5%; }
1015
+ .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
1016
+ clear: none; }
1017
+ .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
1018
+ clear: both; }
1019
+ .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
1020
+ float: right; }
1021
+ .medium-collapse > .column, .medium-collapse > .columns {
1022
+ padding-right: 0;
1023
+ padding-left: 0; }
1024
+ .medium-collapse .row {
1025
+ margin-right: 0;
1026
+ margin-left: 0; }
1027
+ .expanded.row .medium-collapse.row {
1028
+ margin-right: 0;
1029
+ margin-left: 0; }
1030
+ .medium-uncollapse > .column, .medium-uncollapse > .columns {
1031
+ padding-right: 0.9375rem;
1032
+ padding-left: 0.9375rem; }
1033
+ .medium-centered {
1034
+ margin-right: auto;
1035
+ margin-left: auto; }
1036
+ .medium-centered, .medium-centered:last-child:not(:first-child) {
1037
+ float: none;
1038
+ clear: both; }
1039
+ .medium-uncentered,
1040
+ .medium-push-0,
1041
+ .medium-pull-0 {
1042
+ position: static;
1043
+ float: left;
1044
+ margin-right: 0;
1045
+ margin-left: 0; } }
1046
+
1047
+ @media print, screen and (min-width: 64em) {
1048
+ .large-1 {
1049
+ width: 8.33333%; }
1050
+ .large-push-1 {
1051
+ position: relative;
1052
+ right: 8.33333%; }
1053
+ .large-pull-1 {
1054
+ position: relative;
1055
+ right: -8.33333%; }
1056
+ .large-offset-0 {
1057
+ margin-right: 0%; }
1058
+ .large-2 {
1059
+ width: 16.66667%; }
1060
+ .large-push-2 {
1061
+ position: relative;
1062
+ right: 16.66667%; }
1063
+ .large-pull-2 {
1064
+ position: relative;
1065
+ right: -16.66667%; }
1066
+ .large-offset-1 {
1067
+ margin-right: 8.33333%; }
1068
+ .large-3 {
1069
+ width: 25%; }
1070
+ .large-push-3 {
1071
+ position: relative;
1072
+ right: 25%; }
1073
+ .large-pull-3 {
1074
+ position: relative;
1075
+ right: -25%; }
1076
+ .large-offset-2 {
1077
+ margin-right: 16.66667%; }
1078
+ .large-4 {
1079
+ width: 33.33333%; }
1080
+ .large-push-4 {
1081
+ position: relative;
1082
+ right: 33.33333%; }
1083
+ .large-pull-4 {
1084
+ position: relative;
1085
+ right: -33.33333%; }
1086
+ .large-offset-3 {
1087
+ margin-right: 25%; }
1088
+ .large-5 {
1089
+ width: 41.66667%; }
1090
+ .large-push-5 {
1091
+ position: relative;
1092
+ right: 41.66667%; }
1093
+ .large-pull-5 {
1094
+ position: relative;
1095
+ right: -41.66667%; }
1096
+ .large-offset-4 {
1097
+ margin-right: 33.33333%; }
1098
+ .large-6 {
1099
+ width: 50%; }
1100
+ .large-push-6 {
1101
+ position: relative;
1102
+ right: 50%; }
1103
+ .large-pull-6 {
1104
+ position: relative;
1105
+ right: -50%; }
1106
+ .large-offset-5 {
1107
+ margin-right: 41.66667%; }
1108
+ .large-7 {
1109
+ width: 58.33333%; }
1110
+ .large-push-7 {
1111
+ position: relative;
1112
+ right: 58.33333%; }
1113
+ .large-pull-7 {
1114
+ position: relative;
1115
+ right: -58.33333%; }
1116
+ .large-offset-6 {
1117
+ margin-right: 50%; }
1118
+ .large-8 {
1119
+ width: 66.66667%; }
1120
+ .large-push-8 {
1121
+ position: relative;
1122
+ right: 66.66667%; }
1123
+ .large-pull-8 {
1124
+ position: relative;
1125
+ right: -66.66667%; }
1126
+ .large-offset-7 {
1127
+ margin-right: 58.33333%; }
1128
+ .large-9 {
1129
+ width: 75%; }
1130
+ .large-push-9 {
1131
+ position: relative;
1132
+ right: 75%; }
1133
+ .large-pull-9 {
1134
+ position: relative;
1135
+ right: -75%; }
1136
+ .large-offset-8 {
1137
+ margin-right: 66.66667%; }
1138
+ .large-10 {
1139
+ width: 83.33333%; }
1140
+ .large-push-10 {
1141
+ position: relative;
1142
+ right: 83.33333%; }
1143
+ .large-pull-10 {
1144
+ position: relative;
1145
+ right: -83.33333%; }
1146
+ .large-offset-9 {
1147
+ margin-right: 75%; }
1148
+ .large-11 {
1149
+ width: 91.66667%; }
1150
+ .large-push-11 {
1151
+ position: relative;
1152
+ right: 91.66667%; }
1153
+ .large-pull-11 {
1154
+ position: relative;
1155
+ right: -91.66667%; }
1156
+ .large-offset-10 {
1157
+ margin-right: 83.33333%; }
1158
+ .large-12 {
1159
+ width: 100%; }
1160
+ .large-offset-11 {
1161
+ margin-right: 91.66667%; }
1162
+ .large-up-1 > .column, .large-up-1 > .columns {
1163
+ float: right;
1164
+ width: 100%; }
1165
+ .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
1166
+ clear: none; }
1167
+ .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
1168
+ clear: both; }
1169
+ .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
1170
+ float: right; }
1171
+ .large-up-2 > .column, .large-up-2 > .columns {
1172
+ float: right;
1173
+ width: 50%; }
1174
+ .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
1175
+ clear: none; }
1176
+ .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
1177
+ clear: both; }
1178
+ .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
1179
+ float: right; }
1180
+ .large-up-3 > .column, .large-up-3 > .columns {
1181
+ float: right;
1182
+ width: 33.33333%; }
1183
+ .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
1184
+ clear: none; }
1185
+ .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
1186
+ clear: both; }
1187
+ .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
1188
+ float: right; }
1189
+ .large-up-4 > .column, .large-up-4 > .columns {
1190
+ float: right;
1191
+ width: 25%; }
1192
+ .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
1193
+ clear: none; }
1194
+ .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
1195
+ clear: both; }
1196
+ .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
1197
+ float: right; }
1198
+ .large-up-5 > .column, .large-up-5 > .columns {
1199
+ float: right;
1200
+ width: 20%; }
1201
+ .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
1202
+ clear: none; }
1203
+ .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
1204
+ clear: both; }
1205
+ .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
1206
+ float: right; }
1207
+ .large-up-6 > .column, .large-up-6 > .columns {
1208
+ float: right;
1209
+ width: 16.66667%; }
1210
+ .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
1211
+ clear: none; }
1212
+ .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
1213
+ clear: both; }
1214
+ .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
1215
+ float: right; }
1216
+ .large-up-7 > .column, .large-up-7 > .columns {
1217
+ float: right;
1218
+ width: 14.28571%; }
1219
+ .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
1220
+ clear: none; }
1221
+ .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
1222
+ clear: both; }
1223
+ .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
1224
+ float: right; }
1225
+ .large-up-8 > .column, .large-up-8 > .columns {
1226
+ float: right;
1227
+ width: 12.5%; }
1228
+ .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
1229
+ clear: none; }
1230
+ .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
1231
+ clear: both; }
1232
+ .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
1233
+ float: right; }
1234
+ .large-collapse > .column, .large-collapse > .columns {
1235
+ padding-right: 0;
1236
+ padding-left: 0; }
1237
+ .large-collapse .row {
1238
+ margin-right: 0;
1239
+ margin-left: 0; }
1240
+ .expanded.row .large-collapse.row {
1241
+ margin-right: 0;
1242
+ margin-left: 0; }
1243
+ .large-uncollapse > .column, .large-uncollapse > .columns {
1244
+ padding-right: 0.9375rem;
1245
+ padding-left: 0.9375rem; }
1246
+ .large-centered {
1247
+ margin-right: auto;
1248
+ margin-left: auto; }
1249
+ .large-centered, .large-centered:last-child:not(:first-child) {
1250
+ float: none;
1251
+ clear: both; }
1252
+ .large-uncentered,
1253
+ .large-push-0,
1254
+ .large-pull-0 {
1255
+ position: static;
1256
+ float: left;
1257
+ margin-right: 0;
1258
+ margin-left: 0; } }
1259
+
1260
+ .column-block {
1261
+ margin-bottom: 1.25rem; }
1262
+ .column-block > :last-child {
1263
+ margin-bottom: 0; }
1264
+ @media print, screen and (min-width: 40em) {
1265
+ .column-block {
1266
+ margin-bottom: 1.875rem; }
1267
+ .column-block > :last-child {
1268
+ margin-bottom: 0; } }
1269
+
1270
+ div,
1271
+ dl,
1272
+ dt,
1273
+ dd,
1274
+ ul,
1275
+ ol,
1276
+ li,
1277
+ h1,
1278
+ h2,
1279
+ h3,
1280
+ h4,
1281
+ h5,
1282
+ h6,
1283
+ pre,
1284
+ form,
1285
+ p,
1286
+ blockquote,
1287
+ th,
1288
+ td {
1289
+ margin: 0;
1290
+ padding: 0; }
1291
+
1292
+ p {
1293
+ margin-bottom: 1rem;
1294
+ font-size: inherit;
1295
+ line-height: 1.6;
1296
+ text-rendering: optimizeLegibility; }
1297
+
1298
+ em,
1299
+ i {
1300
+ font-style: italic;
1301
+ line-height: inherit; }
1302
+
1303
+ strong,
1304
+ b {
1305
+ font-weight: bold;
1306
+ line-height: inherit; }
1307
+
1308
+ small {
1309
+ font-size: 80%;
1310
+ line-height: inherit; }
1311
+
1312
+ h1,
1313
+ h2,
1314
+ h3,
1315
+ h4,
1316
+ h5,
1317
+ h6 {
1318
+ font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
1319
+ font-style: normal;
1320
+ font-weight: normal;
1321
+ color: inherit;
1322
+ text-rendering: optimizeLegibility; }
1323
+ h1 small,
1324
+ h2 small,
1325
+ h3 small,
1326
+ h4 small,
1327
+ h5 small,
1328
+ h6 small {
1329
+ line-height: 0;
1330
+ color: #cacaca; }
1331
+
1332
+ h1 {
1333
+ font-size: 1.5rem;
1334
+ line-height: 1.4;
1335
+ margin-top: 0;
1336
+ margin-bottom: 0.5rem; }
1337
+
1338
+ h2 {
1339
+ font-size: 1.25rem;
1340
+ line-height: 1.4;
1341
+ margin-top: 0;
1342
+ margin-bottom: 0.5rem; }
1343
+
1344
+ h3 {
1345
+ font-size: 1.1875rem;
1346
+ line-height: 1.4;
1347
+ margin-top: 0;
1348
+ margin-bottom: 0.5rem; }
1349
+
1350
+ h4 {
1351
+ font-size: 1.125rem;
1352
+ line-height: 1.4;
1353
+ margin-top: 0;
1354
+ margin-bottom: 0.5rem; }
1355
+
1356
+ h5 {
1357
+ font-size: 1.0625rem;
1358
+ line-height: 1.4;
1359
+ margin-top: 0;
1360
+ margin-bottom: 0.5rem; }
1361
+
1362
+ h6 {
1363
+ font-size: 1rem;
1364
+ line-height: 1.4;
1365
+ margin-top: 0;
1366
+ margin-bottom: 0.5rem; }
1367
+
1368
+ @media print, screen and (min-width: 40em) {
1369
+ h1 {
1370
+ font-size: 3rem; }
1371
+ h2 {
1372
+ font-size: 2.5rem; }
1373
+ h3 {
1374
+ font-size: 1.9375rem; }
1375
+ h4 {
1376
+ font-size: 1.5625rem; }
1377
+ h5 {
1378
+ font-size: 1.25rem; }
1379
+ h6 {
1380
+ font-size: 1rem; } }
1381
+
1382
+ a {
1383
+ line-height: inherit;
1384
+ color: #1779ba;
1385
+ text-decoration: none;
1386
+ cursor: pointer; }
1387
+ a:hover, a:focus {
1388
+ color: #1468a0; }
1389
+ a img {
1390
+ border: 0; }
1391
+
1392
+ hr {
1393
+ clear: both;
1394
+ max-width: 75rem;
1395
+ height: 0;
1396
+ margin: 1.25rem auto;
1397
+ border-top: 0;
1398
+ border-right: 0;
1399
+ border-bottom: 1px solid #cacaca;
1400
+ border-left: 0; }
1401
+
1402
+ ul,
1403
+ ol,
1404
+ dl {
1405
+ margin-bottom: 1rem;
1406
+ list-style-position: outside;
1407
+ line-height: 1.6; }
1408
+
1409
+ li {
1410
+ font-size: inherit; }
1411
+
1412
+ ul {
1413
+ margin-right: 1.25rem;
1414
+ list-style-type: disc; }
1415
+
1416
+ ol {
1417
+ margin-right: 1.25rem; }
1418
+
1419
+ ul ul, ol ul, ul ol, ol ol {
1420
+ margin-right: 1.25rem;
1421
+ margin-bottom: 0; }
1422
+
1423
+ dl {
1424
+ margin-bottom: 1rem; }
1425
+ dl dt {
1426
+ margin-bottom: 0.3rem;
1427
+ font-weight: bold; }
1428
+
1429
+ blockquote {
1430
+ margin: 0 0 1rem;
1431
+ padding: 0.5625rem 1.25rem 0 1.1875rem;
1432
+ border-right: 1px solid #cacaca; }
1433
+ blockquote, blockquote p {
1434
+ line-height: 1.6;
1435
+ color: #8a8a8a; }
1436
+
1437
+ cite {
1438
+ display: block;
1439
+ font-size: 0.8125rem;
1440
+ color: #8a8a8a; }
1441
+ cite:before {
1442
+ content: "— "; }
1443
+
1444
+ abbr {
1445
+ border-bottom: 1px dotted #0a0a0a;
1446
+ color: #0a0a0a;
1447
+ cursor: help; }
1448
+
1449
+ figure {
1450
+ margin: 0; }
1451
+
1452
+ code {
1453
+ padding: 0.125rem 0.3125rem 0.0625rem;
1454
+ border: 1px solid #cacaca;
1455
+ background-color: #e6e6e6;
1456
+ font-family: Consolas, "Liberation Mono", Courier, monospace;
1457
+ font-weight: normal;
1458
+ color: #0a0a0a; }
1459
+
1460
+ kbd {
1461
+ margin: 0;
1462
+ padding: 0.125rem 0.25rem 0;
1463
+ background-color: #e6e6e6;
1464
+ font-family: Consolas, "Liberation Mono", Courier, monospace;
1465
+ color: #0a0a0a; }
1466
+
1467
+ .subheader {
1468
+ margin-top: 0.2rem;
1469
+ margin-bottom: 0.5rem;
1470
+ font-weight: normal;
1471
+ line-height: 1.4;
1472
+ color: #8a8a8a; }
1473
+
1474
+ .lead {
1475
+ font-size: 125%;
1476
+ line-height: 1.6; }
1477
+
1478
+ .stat {
1479
+ font-size: 2.5rem;
1480
+ line-height: 1; }
1481
+ p + .stat {
1482
+ margin-top: -1rem; }
1483
+
1484
+ .no-bullet {
1485
+ margin-right: 0;
1486
+ list-style: none; }
1487
+
1488
+ .text-left {
1489
+ text-align: left; }
1490
+
1491
+ .text-right {
1492
+ text-align: right; }
1493
+
1494
+ .text-center {
1495
+ text-align: center; }
1496
+
1497
+ .text-justify {
1498
+ text-align: justify; }
1499
+
1500
+ @media print, screen and (min-width: 40em) {
1501
+ .medium-text-left {
1502
+ text-align: left; }
1503
+ .medium-text-right {
1504
+ text-align: right; }
1505
+ .medium-text-center {
1506
+ text-align: center; }
1507
+ .medium-text-justify {
1508
+ text-align: justify; } }
1509
+
1510
+ @media print, screen and (min-width: 64em) {
1511
+ .large-text-left {
1512
+ text-align: left; }
1513
+ .large-text-right {
1514
+ text-align: right; }
1515
+ .large-text-center {
1516
+ text-align: center; }
1517
+ .large-text-justify {
1518
+ text-align: justify; } }
1519
+
1520
+ .show-for-print {
1521
+ display: none !important; }
1522
+
1523
+ @media print {
1524
+ * {
1525
+ background: transparent !important;
1526
+ -webkit-box-shadow: none !important;
1527
+ box-shadow: none !important;
1528
+ color: black !important;
1529
+ text-shadow: none !important; }
1530
+ .show-for-print {
1531
+ display: block !important; }
1532
+ .hide-for-print {
1533
+ display: none !important; }
1534
+ table.show-for-print {
1535
+ display: table !important; }
1536
+ thead.show-for-print {
1537
+ display: table-header-group !important; }
1538
+ tbody.show-for-print {
1539
+ display: table-row-group !important; }
1540
+ tr.show-for-print {
1541
+ display: table-row !important; }
1542
+ td.show-for-print {
1543
+ display: table-cell !important; }
1544
+ th.show-for-print {
1545
+ display: table-cell !important; }
1546
+ a,
1547
+ a:visited {
1548
+ text-decoration: underline; }
1549
+ a[href]:after {
1550
+ content: " (" attr(href) ")"; }
1551
+ .ir a:after,
1552
+ a[href^='javascript:']:after,
1553
+ a[href^='#']:after {
1554
+ content: ''; }
1555
+ abbr[title]:after {
1556
+ content: " (" attr(title) ")"; }
1557
+ pre,
1558
+ blockquote {
1559
+ border: 1px solid #8a8a8a;
1560
+ page-break-inside: avoid; }
1561
+ thead {
1562
+ display: table-header-group; }
1563
+ tr,
1564
+ img {
1565
+ page-break-inside: avoid; }
1566
+ img {
1567
+ max-width: 100% !important; }
1568
+ @page {
1569
+ margin: 0.5cm; }
1570
+ p,
1571
+ h2,
1572
+ h3 {
1573
+ orphans: 3;
1574
+ widows: 3; }
1575
+ h2,
1576
+ h3 {
1577
+ page-break-after: avoid; } }
1578
+
1579
+ [type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
1580
+ textarea {
1581
+ display: block;
1582
+ -webkit-box-sizing: border-box;
1583
+ box-sizing: border-box;
1584
+ width: 100%;
1585
+ height: 2.4375rem;
1586
+ margin: 0 0 1rem;
1587
+ padding: 0.5rem;
1588
+ border: 1px solid #cacaca;
1589
+ border-radius: 0;
1590
+ background-color: #fefefe;
1591
+ -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
1592
+ box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
1593
+ font-family: inherit;
1594
+ font-size: 1rem;
1595
+ font-weight: normal;
1596
+ color: #0a0a0a;
1597
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1598
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1599
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1600
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1601
+ -webkit-appearance: none;
1602
+ -moz-appearance: none;
1603
+ appearance: none; }
1604
+ [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
1605
+ textarea:focus {
1606
+ outline: none;
1607
+ border: 1px solid #8a8a8a;
1608
+ background-color: #fefefe;
1609
+ -webkit-box-shadow: 0 0 5px #cacaca;
1610
+ box-shadow: 0 0 5px #cacaca;
1611
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1612
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1613
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1614
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }
1615
+
1616
+ textarea {
1617
+ max-width: 100%; }
1618
+ textarea[rows] {
1619
+ height: auto; }
1620
+
1621
+ input::-webkit-input-placeholder,
1622
+ textarea::-webkit-input-placeholder {
1623
+ color: #cacaca; }
1624
+
1625
+ input::-moz-placeholder,
1626
+ textarea::-moz-placeholder {
1627
+ color: #cacaca; }
1628
+
1629
+ input:-ms-input-placeholder,
1630
+ textarea:-ms-input-placeholder {
1631
+ color: #cacaca; }
1632
+
1633
+ input::placeholder,
1634
+ textarea::placeholder {
1635
+ color: #cacaca; }
1636
+
1637
+ input:disabled, input[readonly],
1638
+ textarea:disabled,
1639
+ textarea[readonly] {
1640
+ background-color: #e6e6e6;
1641
+ cursor: not-allowed; }
1642
+
1643
+ [type='submit'],
1644
+ [type='button'] {
1645
+ -webkit-appearance: none;
1646
+ -moz-appearance: none;
1647
+ appearance: none;
1648
+ border-radius: 0; }
1649
+
1650
+ input[type='search'] {
1651
+ -webkit-box-sizing: border-box;
1652
+ box-sizing: border-box; }
1653
+
1654
+ [type='file'],
1655
+ [type='checkbox'],
1656
+ [type='radio'] {
1657
+ margin: 0 0 1rem; }
1658
+
1659
+ [type='checkbox'] + label,
1660
+ [type='radio'] + label {
1661
+ display: inline-block;
1662
+ vertical-align: baseline;
1663
+ margin-right: 0.5rem;
1664
+ margin-left: 1rem;
1665
+ margin-bottom: 0; }
1666
+ [type='checkbox'] + label[for],
1667
+ [type='radio'] + label[for] {
1668
+ cursor: pointer; }
1669
+
1670
+ label > [type='checkbox'],
1671
+ label > [type='radio'] {
1672
+ margin-left: 0.5rem; }
1673
+
1674
+ [type='file'] {
1675
+ width: 100%; }
1676
+
1677
+ label {
1678
+ display: block;
1679
+ margin: 0;
1680
+ font-size: 0.875rem;
1681
+ font-weight: normal;
1682
+ line-height: 1.8;
1683
+ color: #0a0a0a; }
1684
+ label.middle {
1685
+ margin: 0 0 1rem;
1686
+ padding: 0.5625rem 0; }
1687
+
1688
+ .help-text {
1689
+ margin-top: -0.5rem;
1690
+ font-size: 0.8125rem;
1691
+ font-style: italic;
1692
+ color: #0a0a0a; }
1693
+
1694
+ .input-group {
1695
+ display: table;
1696
+ width: 100%;
1697
+ margin-bottom: 1rem; }
1698
+ .input-group > :first-child {
1699
+ border-radius: 0 0 0 0; }
1700
+ .input-group > :last-child > * {
1701
+ border-radius: 0 0 0 0; }
1702
+
1703
+ .input-group-label, .input-group-field, .input-group-button, .input-group-button a,
1704
+ .input-group-button input,
1705
+ .input-group-button button,
1706
+ .input-group-button label {
1707
+ margin: 0;
1708
+ white-space: nowrap;
1709
+ display: table-cell;
1710
+ vertical-align: middle; }
1711
+
1712
+ .input-group-label {
1713
+ padding: 0 1rem;
1714
+ border: 1px solid #cacaca;
1715
+ background: #e6e6e6;
1716
+ color: #0a0a0a;
1717
+ text-align: center;
1718
+ white-space: nowrap;
1719
+ width: 1%;
1720
+ height: 100%; }
1721
+ .input-group-label:first-child {
1722
+ border-left: 0; }
1723
+ .input-group-label:last-child {
1724
+ border-right: 0; }
1725
+
1726
+ .input-group-field {
1727
+ border-radius: 0;
1728
+ height: 2.5rem; }
1729
+
1730
+ .input-group-button {
1731
+ padding-top: 0;
1732
+ padding-bottom: 0;
1733
+ text-align: center;
1734
+ width: 1%;
1735
+ height: 100%; }
1736
+ .input-group-button a,
1737
+ .input-group-button input,
1738
+ .input-group-button button,
1739
+ .input-group-button label {
1740
+ height: 2.5rem;
1741
+ padding-top: 0;
1742
+ padding-bottom: 0;
1743
+ font-size: 1rem; }
1744
+
1745
+ .input-group .input-group-button {
1746
+ display: table-cell; }
1747
+
1748
+ fieldset {
1749
+ margin: 0;
1750
+ padding: 0;
1751
+ border: 0; }
1752
+
1753
+ legend {
1754
+ max-width: 100%;
1755
+ margin-bottom: 0.5rem; }
1756
+
1757
+ .fieldset {
1758
+ margin: 1.125rem 0;
1759
+ padding: 1.25rem;
1760
+ border: 1px solid #cacaca; }
1761
+ .fieldset legend {
1762
+ margin: 0;
1763
+ margin-right: -0.1875rem;
1764
+ padding: 0 0.1875rem;
1765
+ background: #fefefe; }
1766
+
1767
+ select {
1768
+ height: 2.4375rem;
1769
+ margin: 0 0 1rem;
1770
+ padding: 0.5rem;
1771
+ -webkit-appearance: none;
1772
+ -moz-appearance: none;
1773
+ appearance: none;
1774
+ border: 1px solid #cacaca;
1775
+ border-radius: 0;
1776
+ background-color: #fefefe;
1777
+ font-family: inherit;
1778
+ font-size: 1rem;
1779
+ line-height: normal;
1780
+ color: #0a0a0a;
1781
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
1782
+ -webkit-background-origin: content-box;
1783
+ background-origin: content-box;
1784
+ background-position: left -1rem center;
1785
+ background-repeat: no-repeat;
1786
+ -webkit-background-size: 9px 6px;
1787
+ background-size: 9px 6px;
1788
+ padding-left: 1.5rem;
1789
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1790
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1791
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1792
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }
1793
+ @media screen and (min-width: 0\0) {
1794
+ select {
1795
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
1796
+ select:focus {
1797
+ outline: none;
1798
+ border: 1px solid #8a8a8a;
1799
+ background-color: #fefefe;
1800
+ -webkit-box-shadow: 0 0 5px #cacaca;
1801
+ box-shadow: 0 0 5px #cacaca;
1802
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1803
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1804
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1805
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }
1806
+ select:disabled {
1807
+ background-color: #e6e6e6;
1808
+ cursor: not-allowed; }
1809
+ select::-ms-expand {
1810
+ display: none; }
1811
+ select[multiple] {
1812
+ height: auto;
1813
+ background-image: none; }
1814
+
1815
+ .is-invalid-input:not(:focus) {
1816
+ border-color: #cc4b37;
1817
+ background-color: #f9ecea; }
1818
+ .is-invalid-input:not(:focus)::-webkit-input-placeholder {
1819
+ color: #cc4b37; }
1820
+ .is-invalid-input:not(:focus)::-moz-placeholder {
1821
+ color: #cc4b37; }
1822
+ .is-invalid-input:not(:focus):-ms-input-placeholder {
1823
+ color: #cc4b37; }
1824
+ .is-invalid-input:not(:focus)::placeholder {
1825
+ color: #cc4b37; }
1826
+
1827
+ .is-invalid-label {
1828
+ color: #cc4b37; }
1829
+
1830
+ .form-error {
1831
+ display: none;
1832
+ margin-top: -0.5rem;
1833
+ margin-bottom: 1rem;
1834
+ font-size: 0.75rem;
1835
+ font-weight: bold;
1836
+ color: #cc4b37; }
1837
+ .form-error.is-visible {
1838
+ display: block; }
1839
+
1840
+ .button {
1841
+ display: inline-block;
1842
+ vertical-align: middle;
1843
+ margin: 0 0 1rem 0;
1844
+ padding: 0.85em 1em;
1845
+ -webkit-appearance: none;
1846
+ border: 1px solid transparent;
1847
+ border-radius: 0;
1848
+ -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
1849
+ transition: background-color 0.25s ease-out, color 0.25s ease-out;
1850
+ font-size: 0.9rem;
1851
+ line-height: 1;
1852
+ text-align: center;
1853
+ cursor: pointer;
1854
+ background-color: #1779ba;
1855
+ color: #fefefe; }
1856
+ [data-whatinput='mouse'] .button {
1857
+ outline: 0; }
1858
+ .button:hover, .button:focus {
1859
+ background-color: #14679e;
1860
+ color: #fefefe; }
1861
+ .button.tiny {
1862
+ font-size: 0.6rem; }
1863
+ .button.small {
1864
+ font-size: 0.75rem; }
1865
+ .button.large {
1866
+ font-size: 1.25rem; }
1867
+ .button.expanded {
1868
+ display: block;
1869
+ width: 100%;
1870
+ margin-right: 0;
1871
+ margin-left: 0; }
1872
+ .button.primary {
1873
+ background-color: #1779ba;
1874
+ color: #fefefe; }
1875
+ .button.primary:hover, .button.primary:focus {
1876
+ background-color: #126195;
1877
+ color: #fefefe; }
1878
+ .button.secondary {
1879
+ background-color: #767676;
1880
+ color: #fefefe; }
1881
+ .button.secondary:hover, .button.secondary:focus {
1882
+ background-color: #5e5e5e;
1883
+ color: #fefefe; }
1884
+ .button.success {
1885
+ background-color: #3adb76;
1886
+ color: #0a0a0a; }
1887
+ .button.success:hover, .button.success:focus {
1888
+ background-color: #22bb5b;
1889
+ color: #0a0a0a; }
1890
+ .button.warning {
1891
+ background-color: #ffae00;
1892
+ color: #0a0a0a; }
1893
+ .button.warning:hover, .button.warning:focus {
1894
+ background-color: #cc8b00;
1895
+ color: #0a0a0a; }
1896
+ .button.alert {
1897
+ background-color: #cc4b37;
1898
+ color: #fefefe; }
1899
+ .button.alert:hover, .button.alert:focus {
1900
+ background-color: #a53b2a;
1901
+ color: #fefefe; }
1902
+ .button.hollow {
1903
+ border: 1px solid #1779ba;
1904
+ color: #1779ba; }
1905
+ .button.hollow, .button.hollow:hover, .button.hollow:focus {
1906
+ background-color: transparent; }
1907
+ .button.hollow:hover, .button.hollow:focus {
1908
+ border-color: #0c3d5d;
1909
+ color: #0c3d5d; }
1910
+ .button.hollow.primary {
1911
+ border: 1px solid #1779ba;
1912
+ color: #1779ba; }
1913
+ .button.hollow.primary:hover, .button.hollow.primary:focus {
1914
+ border-color: #0c3d5d;
1915
+ color: #0c3d5d; }
1916
+ .button.hollow.secondary {
1917
+ border: 1px solid #767676;
1918
+ color: #767676; }
1919
+ .button.hollow.secondary:hover, .button.hollow.secondary:focus {
1920
+ border-color: #3b3b3b;
1921
+ color: #3b3b3b; }
1922
+ .button.hollow.success {
1923
+ border: 1px solid #3adb76;
1924
+ color: #3adb76; }
1925
+ .button.hollow.success:hover, .button.hollow.success:focus {
1926
+ border-color: #157539;
1927
+ color: #157539; }
1928
+ .button.hollow.warning {
1929
+ border: 1px solid #ffae00;
1930
+ color: #ffae00; }
1931
+ .button.hollow.warning:hover, .button.hollow.warning:focus {
1932
+ border-color: #805700;
1933
+ color: #805700; }
1934
+ .button.hollow.alert {
1935
+ border: 1px solid #cc4b37;
1936
+ color: #cc4b37; }
1937
+ .button.hollow.alert:hover, .button.hollow.alert:focus {
1938
+ border-color: #67251a;
1939
+ color: #67251a; }
1940
+ .button.disabled, .button[disabled] {
1941
+ opacity: 0.25;
1942
+ cursor: not-allowed; }
1943
+ .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
1944
+ background-color: #1779ba;
1945
+ color: #fefefe; }
1946
+ .button.disabled.primary, .button[disabled].primary {
1947
+ opacity: 0.25;
1948
+ cursor: not-allowed; }
1949
+ .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
1950
+ background-color: #1779ba;
1951
+ color: #fefefe; }
1952
+ .button.disabled.secondary, .button[disabled].secondary {
1953
+ opacity: 0.25;
1954
+ cursor: not-allowed; }
1955
+ .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
1956
+ background-color: #767676;
1957
+ color: #fefefe; }
1958
+ .button.disabled.success, .button[disabled].success {
1959
+ opacity: 0.25;
1960
+ cursor: not-allowed; }
1961
+ .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
1962
+ background-color: #3adb76;
1963
+ color: #0a0a0a; }
1964
+ .button.disabled.warning, .button[disabled].warning {
1965
+ opacity: 0.25;
1966
+ cursor: not-allowed; }
1967
+ .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
1968
+ background-color: #ffae00;
1969
+ color: #0a0a0a; }
1970
+ .button.disabled.alert, .button[disabled].alert {
1971
+ opacity: 0.25;
1972
+ cursor: not-allowed; }
1973
+ .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
1974
+ background-color: #cc4b37;
1975
+ color: #fefefe; }
1976
+ .button.dropdown::after {
1977
+ display: block;
1978
+ width: 0;
1979
+ height: 0;
1980
+ border: inset 0.4em;
1981
+ content: '';
1982
+ border-bottom-width: 0;
1983
+ border-top-style: solid;
1984
+ border-color: #fefefe transparent transparent;
1985
+ position: relative;
1986
+ top: 0.4em;
1987
+ display: inline-block;
1988
+ float: left;
1989
+ margin-right: 1em; }
1990
+ .button.arrow-only::after {
1991
+ top: -0.1em;
1992
+ float: none;
1993
+ margin-right: 0; }
1994
+
1995
+ .accordion {
1996
+ margin-right: 0;
1997
+ background: #fefefe;
1998
+ list-style-type: none; }
1999
+
2000
+ .accordion-item:first-child > :first-child {
2001
+ border-radius: 0 0 0 0; }
2002
+
2003
+ .accordion-item:last-child > :last-child {
2004
+ border-radius: 0 0 0 0; }
2005
+
2006
+ .accordion-title {
2007
+ position: relative;
2008
+ display: block;
2009
+ padding: 1.25rem 1rem;
2010
+ border: 1px solid #e6e6e6;
2011
+ border-bottom: 0;
2012
+ font-size: 0.75rem;
2013
+ line-height: 1;
2014
+ color: #1779ba; }
2015
+ :last-child:not(.is-active) > .accordion-title {
2016
+ border-bottom: 1px solid #e6e6e6;
2017
+ border-radius: 0 0 0 0; }
2018
+ .accordion-title:hover, .accordion-title:focus {
2019
+ background-color: #e6e6e6; }
2020
+ .accordion-title::before {
2021
+ position: absolute;
2022
+ top: 50%;
2023
+ left: 1rem;
2024
+ margin-top: -0.5rem;
2025
+ content: '+'; }
2026
+ .is-active > .accordion-title::before {
2027
+ content: '\2013'; }
2028
+
2029
+ .accordion-content {
2030
+ display: none;
2031
+ padding: 1rem;
2032
+ border: 1px solid #e6e6e6;
2033
+ border-bottom: 0;
2034
+ background-color: #fefefe;
2035
+ color: #0a0a0a; }
2036
+ :last-child > .accordion-content:last-child {
2037
+ border-bottom: 1px solid #e6e6e6; }
2038
+
2039
+ .is-accordion-submenu-parent > a {
2040
+ position: relative; }
2041
+ .is-accordion-submenu-parent > a::after {
2042
+ display: block;
2043
+ width: 0;
2044
+ height: 0;
2045
+ border: inset 6px;
2046
+ content: '';
2047
+ border-bottom-width: 0;
2048
+ border-top-style: solid;
2049
+ border-color: #1779ba transparent transparent;
2050
+ position: absolute;
2051
+ top: 50%;
2052
+ margin-top: -3px;
2053
+ left: 1rem; }
2054
+
2055
+ .is-accordion-submenu-parent[aria-expanded='true'] > a::after {
2056
+ -webkit-transform: rotate(180deg);
2057
+ -ms-transform: rotate(180deg);
2058
+ transform: rotate(180deg);
2059
+ -webkit-transform-origin: 50% 50%;
2060
+ -ms-transform-origin: 50% 50%;
2061
+ transform-origin: 50% 50%; }
2062
+
2063
+ .badge {
2064
+ display: inline-block;
2065
+ min-width: 2.1em;
2066
+ padding: 0.3em;
2067
+ border-radius: 50%;
2068
+ font-size: 0.6rem;
2069
+ text-align: center;
2070
+ background: #1779ba;
2071
+ color: #fefefe; }
2072
+ .badge.primary {
2073
+ background: #1779ba;
2074
+ color: #fefefe; }
2075
+ .badge.secondary {
2076
+ background: #767676;
2077
+ color: #fefefe; }
2078
+ .badge.success {
2079
+ background: #3adb76;
2080
+ color: #0a0a0a; }
2081
+ .badge.warning {
2082
+ background: #ffae00;
2083
+ color: #0a0a0a; }
2084
+ .badge.alert {
2085
+ background: #cc4b37;
2086
+ color: #fefefe; }
2087
+
2088
+ .breadcrumbs {
2089
+ margin: 0 0 1rem 0;
2090
+ list-style: none; }
2091
+ .breadcrumbs::before, .breadcrumbs::after {
2092
+ display: table;
2093
+ content: ' '; }
2094
+ .breadcrumbs::after {
2095
+ clear: both; }
2096
+ .breadcrumbs li {
2097
+ float: right;
2098
+ font-size: 0.6875rem;
2099
+ color: #0a0a0a;
2100
+ cursor: default;
2101
+ text-transform: uppercase; }
2102
+ .breadcrumbs li:not(:last-child)::after {
2103
+ position: relative;
2104
+ top: 1px;
2105
+ margin: 0 0.75rem;
2106
+ opacity: 1;
2107
+ content: "\\";
2108
+ color: #cacaca; }
2109
+ .breadcrumbs a {
2110
+ color: #1779ba; }
2111
+ .breadcrumbs a:hover {
2112
+ text-decoration: underline; }
2113
+ .breadcrumbs .disabled {
2114
+ color: #cacaca;
2115
+ cursor: not-allowed; }
2116
+
2117
+ .button-group {
2118
+ margin-bottom: 1rem;
2119
+ font-size: 0; }
2120
+ .button-group::before, .button-group::after {
2121
+ display: table;
2122
+ content: ' '; }
2123
+ .button-group::after {
2124
+ clear: both; }
2125
+ .button-group .button {
2126
+ margin: 0;
2127
+ margin-left: 1px;
2128
+ margin-bottom: 1px;
2129
+ font-size: 0.9rem; }
2130
+ .button-group .button:last-child {
2131
+ margin-left: 0; }
2132
+ .button-group.tiny .button {
2133
+ font-size: 0.6rem; }
2134
+ .button-group.small .button {
2135
+ font-size: 0.75rem; }
2136
+ .button-group.large .button {
2137
+ font-size: 1.25rem; }
2138
+ .button-group.expanded {
2139
+ margin-left: -1px; }
2140
+ .button-group.expanded::before, .button-group.expanded::after {
2141
+ display: none; }
2142
+ .button-group.expanded .button:first-child:last-child {
2143
+ width: 100%; }
2144
+ .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
2145
+ display: inline-block;
2146
+ width: calc(50% - 1px);
2147
+ margin-left: 1px; }
2148
+ .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
2149
+ margin-left: -6px; }
2150
+ .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
2151
+ display: inline-block;
2152
+ width: calc(33.33333% - 1px);
2153
+ margin-left: 1px; }
2154
+ .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
2155
+ margin-left: -6px; }
2156
+ .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
2157
+ display: inline-block;
2158
+ width: calc(25% - 1px);
2159
+ margin-left: 1px; }
2160
+ .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
2161
+ margin-left: -6px; }
2162
+ .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
2163
+ display: inline-block;
2164
+ width: calc(20% - 1px);
2165
+ margin-left: 1px; }
2166
+ .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
2167
+ margin-left: -6px; }
2168
+ .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
2169
+ display: inline-block;
2170
+ width: calc(16.66667% - 1px);
2171
+ margin-left: 1px; }
2172
+ .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
2173
+ margin-left: -6px; }
2174
+ .button-group.primary .button {
2175
+ background-color: #1779ba;
2176
+ color: #fefefe; }
2177
+ .button-group.primary .button:hover, .button-group.primary .button:focus {
2178
+ background-color: #126195;
2179
+ color: #fefefe; }
2180
+ .button-group.secondary .button {
2181
+ background-color: #767676;
2182
+ color: #fefefe; }
2183
+ .button-group.secondary .button:hover, .button-group.secondary .button:focus {
2184
+ background-color: #5e5e5e;
2185
+ color: #fefefe; }
2186
+ .button-group.success .button {
2187
+ background-color: #3adb76;
2188
+ color: #0a0a0a; }
2189
+ .button-group.success .button:hover, .button-group.success .button:focus {
2190
+ background-color: #22bb5b;
2191
+ color: #0a0a0a; }
2192
+ .button-group.warning .button {
2193
+ background-color: #ffae00;
2194
+ color: #0a0a0a; }
2195
+ .button-group.warning .button:hover, .button-group.warning .button:focus {
2196
+ background-color: #cc8b00;
2197
+ color: #0a0a0a; }
2198
+ .button-group.alert .button {
2199
+ background-color: #cc4b37;
2200
+ color: #fefefe; }
2201
+ .button-group.alert .button:hover, .button-group.alert .button:focus {
2202
+ background-color: #a53b2a;
2203
+ color: #fefefe; }
2204
+ .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
2205
+ width: 100%; }
2206
+ .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
2207
+ margin-bottom: 0; }
2208
+ @media print, screen and (min-width: 40em) {
2209
+ .button-group.stacked-for-small .button {
2210
+ width: auto;
2211
+ margin-bottom: 0; } }
2212
+ @media print, screen and (min-width: 64em) {
2213
+ .button-group.stacked-for-medium .button {
2214
+ width: auto;
2215
+ margin-bottom: 0; } }
2216
+ @media screen and (max-width: 39.9375em) {
2217
+ .button-group.stacked-for-small.expanded {
2218
+ display: block; }
2219
+ .button-group.stacked-for-small.expanded .button {
2220
+ display: block;
2221
+ margin-left: 0; } }
2222
+
2223
+ .callout {
2224
+ position: relative;
2225
+ margin: 0 0 1rem 0;
2226
+ padding: 1rem;
2227
+ border: 1px solid rgba(10, 10, 10, 0.25);
2228
+ border-radius: 0;
2229
+ background-color: white;
2230
+ color: #0a0a0a; }
2231
+ .callout > :first-child {
2232
+ margin-top: 0; }
2233
+ .callout > :last-child {
2234
+ margin-bottom: 0; }
2235
+ .callout.primary {
2236
+ background-color: #d7ecfa;
2237
+ color: #0a0a0a; }
2238
+ .callout.secondary {
2239
+ background-color: #eaeaea;
2240
+ color: #0a0a0a; }
2241
+ .callout.success {
2242
+ background-color: #e1faea;
2243
+ color: #0a0a0a; }
2244
+ .callout.warning {
2245
+ background-color: #fff3d9;
2246
+ color: #0a0a0a; }
2247
+ .callout.alert {
2248
+ background-color: #f7e4e1;
2249
+ color: #0a0a0a; }
2250
+ .callout.small {
2251
+ padding-top: 0.5rem;
2252
+ padding-right: 0.5rem;
2253
+ padding-bottom: 0.5rem;
2254
+ padding-left: 0.5rem; }
2255
+ .callout.large {
2256
+ padding-top: 3rem;
2257
+ padding-right: 3rem;
2258
+ padding-bottom: 3rem;
2259
+ padding-left: 3rem; }
2260
+
2261
+ .card {
2262
+ margin-bottom: 1rem;
2263
+ border: 1px solid #e6e6e6;
2264
+ border-radius: 0;
2265
+ background: #fefefe;
2266
+ -webkit-box-shadow: none;
2267
+ box-shadow: none;
2268
+ overflow: hidden;
2269
+ color: #0a0a0a; }
2270
+ .card > :last-child {
2271
+ margin-bottom: 0; }
2272
+
2273
+ .card-divider {
2274
+ padding: 1rem;
2275
+ background: #e6e6e6; }
2276
+ .card-divider > :last-child {
2277
+ margin-bottom: 0; }
2278
+
2279
+ .card-section {
2280
+ padding: 1rem; }
2281
+ .card-section > :last-child {
2282
+ margin-bottom: 0; }
2283
+
2284
+ .close-button {
2285
+ position: absolute;
2286
+ color: #8a8a8a;
2287
+ cursor: pointer; }
2288
+ [data-whatinput='mouse'] .close-button {
2289
+ outline: 0; }
2290
+ .close-button:hover, .close-button:focus {
2291
+ color: #0a0a0a; }
2292
+ .close-button.small {
2293
+ right: 0.66rem;
2294
+ top: 0.33em;
2295
+ font-size: 1.5em;
2296
+ line-height: 1; }
2297
+ .close-button, .close-button.medium {
2298
+ right: 1rem;
2299
+ top: 0.5rem;
2300
+ font-size: 2em;
2301
+ line-height: 1; }
2302
+
2303
+ .menu {
2304
+ margin: 0;
2305
+ list-style-type: none; }
2306
+ .menu > li {
2307
+ display: table-cell;
2308
+ vertical-align: middle; }
2309
+ [data-whatinput='mouse'] .menu > li {
2310
+ outline: 0; }
2311
+ .menu > li > a {
2312
+ display: block;
2313
+ padding: 0.7rem 1rem;
2314
+ line-height: 1; }
2315
+ .menu input,
2316
+ .menu select,
2317
+ .menu a,
2318
+ .menu button {
2319
+ margin-bottom: 0; }
2320
+ .menu > li > a img,
2321
+ .menu > li > a i,
2322
+ .menu > li > a svg {
2323
+ vertical-align: middle; }
2324
+ .menu > li > a img + span,
2325
+ .menu > li > a i + span,
2326
+ .menu > li > a svg + span {
2327
+ vertical-align: middle; }
2328
+ .menu > li > a img,
2329
+ .menu > li > a i,
2330
+ .menu > li > a svg {
2331
+ margin-left: 0.25rem;
2332
+ display: inline-block; }
2333
+ .menu > li, .menu.horizontal > li {
2334
+ display: table-cell; }
2335
+ .menu.expanded {
2336
+ display: table;
2337
+ width: 100%;
2338
+ table-layout: fixed; }
2339
+ .menu.expanded > li:first-child:last-child {
2340
+ width: 100%; }
2341
+ .menu.vertical > li {
2342
+ display: block; }
2343
+ @media print, screen and (min-width: 40em) {
2344
+ .menu.medium-horizontal > li {
2345
+ display: table-cell; }
2346
+ .menu.medium-expanded {
2347
+ display: table;
2348
+ width: 100%;
2349
+ table-layout: fixed; }
2350
+ .menu.medium-expanded > li:first-child:last-child {
2351
+ width: 100%; }
2352
+ .menu.medium-vertical > li {
2353
+ display: block; } }
2354
+ @media print, screen and (min-width: 64em) {
2355
+ .menu.large-horizontal > li {
2356
+ display: table-cell; }
2357
+ .menu.large-expanded {
2358
+ display: table;
2359
+ width: 100%;
2360
+ table-layout: fixed; }
2361
+ .menu.large-expanded > li:first-child:last-child {
2362
+ width: 100%; }
2363
+ .menu.large-vertical > li {
2364
+ display: block; } }
2365
+ .menu.simple li {
2366
+ display: inline-block;
2367
+ vertical-align: top;
2368
+ line-height: 1; }
2369
+ .menu.simple a {
2370
+ padding: 0; }
2371
+ .menu.simple li {
2372
+ margin-right: 0;
2373
+ margin-left: 1rem; }
2374
+ .menu.simple.align-left li {
2375
+ margin-left: 0;
2376
+ margin-right: 1rem; }
2377
+ .menu.align-left::before, .menu.align-left::after {
2378
+ display: table;
2379
+ content: ' '; }
2380
+ .menu.align-left::after {
2381
+ clear: both; }
2382
+ .menu.align-left > li {
2383
+ float: left; }
2384
+ .menu.icon-top > li > a {
2385
+ text-align: center; }
2386
+ .menu.icon-top > li > a img,
2387
+ .menu.icon-top > li > a i,
2388
+ .menu.icon-top > li > a svg {
2389
+ display: block;
2390
+ margin: 0 auto 0.25rem; }
2391
+ .menu.icon-top.vertical a > span {
2392
+ margin: auto; }
2393
+ .menu.nested {
2394
+ margin-right: 1rem; }
2395
+ .menu .active > a {
2396
+ background: #1779ba;
2397
+ color: #fefefe; }
2398
+ .menu.menu-bordered li {
2399
+ border: 1px solid #e6e6e6; }
2400
+ .menu.menu-bordered li:not(:first-child) {
2401
+ border-top: 0; }
2402
+ .menu.menu-hover li:hover {
2403
+ background-color: #e6e6e6; }
2404
+
2405
+ .menu-text {
2406
+ padding-top: 0;
2407
+ padding-bottom: 0;
2408
+ padding: 0.7rem 1rem;
2409
+ font-weight: bold;
2410
+ line-height: 1;
2411
+ color: inherit; }
2412
+
2413
+ .menu-centered {
2414
+ text-align: center; }
2415
+ .menu-centered > .menu {
2416
+ display: inline-block;
2417
+ vertical-align: top; }
2418
+
2419
+ .no-js [data-responsive-menu] ul {
2420
+ display: none; }
2421
+
2422
+ .menu-icon {
2423
+ position: relative;
2424
+ display: inline-block;
2425
+ vertical-align: middle;
2426
+ width: 20px;
2427
+ height: 16px;
2428
+ cursor: pointer; }
2429
+ .menu-icon::after {
2430
+ position: absolute;
2431
+ top: 0;
2432
+ left: 0;
2433
+ display: block;
2434
+ width: 100%;
2435
+ height: 2px;
2436
+ background: #fefefe;
2437
+ -webkit-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
2438
+ box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
2439
+ content: ''; }
2440
+ .menu-icon:hover::after {
2441
+ background: #cacaca;
2442
+ -webkit-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
2443
+ box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }
2444
+
2445
+ .menu-icon.dark {
2446
+ position: relative;
2447
+ display: inline-block;
2448
+ vertical-align: middle;
2449
+ width: 20px;
2450
+ height: 16px;
2451
+ cursor: pointer; }
2452
+ .menu-icon.dark::after {
2453
+ position: absolute;
2454
+ top: 0;
2455
+ left: 0;
2456
+ display: block;
2457
+ width: 100%;
2458
+ height: 2px;
2459
+ background: #0a0a0a;
2460
+ -webkit-box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
2461
+ box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
2462
+ content: ''; }
2463
+ .menu-icon.dark:hover::after {
2464
+ background: #8a8a8a;
2465
+ -webkit-box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
2466
+ box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
2467
+
2468
+ .is-drilldown {
2469
+ position: relative;
2470
+ overflow: hidden; }
2471
+ .is-drilldown li {
2472
+ display: block; }
2473
+ .is-drilldown.animate-height {
2474
+ -webkit-transition: height 0.5s;
2475
+ transition: height 0.5s; }
2476
+
2477
+ .is-drilldown-submenu {
2478
+ position: absolute;
2479
+ top: 0;
2480
+ right: 100%;
2481
+ z-index: -1;
2482
+ width: 100%;
2483
+ background: #fefefe;
2484
+ -webkit-transition: -webkit-transform 0.15s linear;
2485
+ transition: -webkit-transform 0.15s linear;
2486
+ transition: transform 0.15s linear;
2487
+ transition: transform 0.15s linear, -webkit-transform 0.15s linear; }
2488
+ .is-drilldown-submenu.is-active {
2489
+ z-index: 1;
2490
+ display: block;
2491
+ -webkit-transform: translateX(100%);
2492
+ -ms-transform: translateX(100%);
2493
+ transform: translateX(100%); }
2494
+ .is-drilldown-submenu.is-closing {
2495
+ -webkit-transform: translateX(-100%);
2496
+ -ms-transform: translateX(-100%);
2497
+ transform: translateX(-100%); }
2498
+
2499
+ .drilldown-submenu-cover-previous {
2500
+ min-height: 100%; }
2501
+
2502
+ .is-drilldown-submenu-parent > a {
2503
+ position: relative; }
2504
+ .is-drilldown-submenu-parent > a::after {
2505
+ display: block;
2506
+ width: 0;
2507
+ height: 0;
2508
+ border: inset 6px;
2509
+ content: '';
2510
+ border-left-width: 0;
2511
+ border-right-style: solid;
2512
+ border-color: transparent #1779ba transparent transparent;
2513
+ position: absolute;
2514
+ top: 50%;
2515
+ margin-top: -6px;
2516
+ left: 1rem; }
2517
+
2518
+ .js-drilldown-back > a::before {
2519
+ display: block;
2520
+ width: 0;
2521
+ height: 0;
2522
+ border: inset 6px;
2523
+ content: '';
2524
+ border-right-width: 0;
2525
+ border-left-style: solid;
2526
+ border-color: transparent transparent transparent #1779ba;
2527
+ border-right-width: 0;
2528
+ display: inline-block;
2529
+ vertical-align: middle;
2530
+ margin-left: 0.75rem;
2531
+ border-right-width: 0; }
2532
+
2533
+ .dropdown-pane {
2534
+ position: absolute;
2535
+ z-index: 10;
2536
+ display: block;
2537
+ width: 300px;
2538
+ padding: 1rem;
2539
+ visibility: hidden;
2540
+ border: 1px solid #cacaca;
2541
+ border-radius: 0;
2542
+ background-color: #fefefe;
2543
+ font-size: 1rem; }
2544
+ .dropdown-pane.is-open {
2545
+ visibility: visible; }
2546
+
2547
+ .dropdown-pane.tiny {
2548
+ width: 100px; }
2549
+
2550
+ .dropdown-pane.small {
2551
+ width: 200px; }
2552
+
2553
+ .dropdown-pane.large {
2554
+ width: 400px; }
2555
+
2556
+ .dropdown.menu > li.opens-left > .is-dropdown-submenu {
2557
+ top: 100%;
2558
+ right: 0;
2559
+ left: auto; }
2560
+
2561
+ .dropdown.menu > li.opens-right > .is-dropdown-submenu {
2562
+ top: 100%;
2563
+ right: auto;
2564
+ left: 0; }
2565
+
2566
+ .dropdown.menu > li.is-dropdown-submenu-parent > a {
2567
+ position: relative;
2568
+ padding-left: 1.5rem; }
2569
+
2570
+ .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
2571
+ display: block;
2572
+ width: 0;
2573
+ height: 0;
2574
+ border: inset 6px;
2575
+ content: '';
2576
+ border-bottom-width: 0;
2577
+ border-top-style: solid;
2578
+ border-color: #1779ba transparent transparent;
2579
+ left: 5px;
2580
+ margin-top: -3px; }
2581
+
2582
+ [data-whatinput='mouse'] .dropdown.menu a {
2583
+ outline: 0; }
2584
+
2585
+ .no-js .dropdown.menu ul {
2586
+ display: none; }
2587
+
2588
+ .dropdown.menu.vertical > li .is-dropdown-submenu {
2589
+ top: 0; }
2590
+
2591
+ .dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
2592
+ right: 100%;
2593
+ left: auto; }
2594
+
2595
+ .dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
2596
+ right: auto;
2597
+ left: 100%; }
2598
+
2599
+ .dropdown.menu.vertical > li > a::after {
2600
+ left: 14px; }
2601
+
2602
+ .dropdown.menu.vertical > li.opens-left > a::after {
2603
+ display: block;
2604
+ width: 0;
2605
+ height: 0;
2606
+ border: inset 6px;
2607
+ content: '';
2608
+ border-left-width: 0;
2609
+ border-right-style: solid;
2610
+ border-color: transparent #1779ba transparent transparent; }
2611
+
2612
+ .dropdown.menu.vertical > li.opens-right > a::after {
2613
+ display: block;
2614
+ width: 0;
2615
+ height: 0;
2616
+ border: inset 6px;
2617
+ content: '';
2618
+ border-right-width: 0;
2619
+ border-left-style: solid;
2620
+ border-color: transparent transparent transparent #1779ba; }
2621
+
2622
+ @media print, screen and (min-width: 40em) {
2623
+ .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
2624
+ top: 100%;
2625
+ right: 0;
2626
+ left: auto; }
2627
+ .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
2628
+ top: 100%;
2629
+ right: auto;
2630
+ left: 0; }
2631
+ .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
2632
+ position: relative;
2633
+ padding-left: 1.5rem; }
2634
+ .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
2635
+ display: block;
2636
+ width: 0;
2637
+ height: 0;
2638
+ border: inset 6px;
2639
+ content: '';
2640
+ border-bottom-width: 0;
2641
+ border-top-style: solid;
2642
+ border-color: #1779ba transparent transparent;
2643
+ left: 5px;
2644
+ margin-top: -3px; }
2645
+ .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
2646
+ top: 0; }
2647
+ .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
2648
+ right: 100%;
2649
+ left: auto; }
2650
+ .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
2651
+ right: auto;
2652
+ left: 100%; }
2653
+ .dropdown.menu.medium-vertical > li > a::after {
2654
+ left: 14px; }
2655
+ .dropdown.menu.medium-vertical > li.opens-left > a::after {
2656
+ display: block;
2657
+ width: 0;
2658
+ height: 0;
2659
+ border: inset 6px;
2660
+ content: '';
2661
+ border-left-width: 0;
2662
+ border-right-style: solid;
2663
+ border-color: transparent #1779ba transparent transparent; }
2664
+ .dropdown.menu.medium-vertical > li.opens-right > a::after {
2665
+ display: block;
2666
+ width: 0;
2667
+ height: 0;
2668
+ border: inset 6px;
2669
+ content: '';
2670
+ border-right-width: 0;
2671
+ border-left-style: solid;
2672
+ border-color: transparent transparent transparent #1779ba; } }
2673
+
2674
+ @media print, screen and (min-width: 64em) {
2675
+ .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
2676
+ top: 100%;
2677
+ right: 0;
2678
+ left: auto; }
2679
+ .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
2680
+ top: 100%;
2681
+ right: auto;
2682
+ left: 0; }
2683
+ .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
2684
+ position: relative;
2685
+ padding-left: 1.5rem; }
2686
+ .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
2687
+ display: block;
2688
+ width: 0;
2689
+ height: 0;
2690
+ border: inset 6px;
2691
+ content: '';
2692
+ border-bottom-width: 0;
2693
+ border-top-style: solid;
2694
+ border-color: #1779ba transparent transparent;
2695
+ left: 5px;
2696
+ margin-top: -3px; }
2697
+ .dropdown.menu.large-vertical > li .is-dropdown-submenu {
2698
+ top: 0; }
2699
+ .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
2700
+ right: 100%;
2701
+ left: auto; }
2702
+ .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
2703
+ right: auto;
2704
+ left: 100%; }
2705
+ .dropdown.menu.large-vertical > li > a::after {
2706
+ left: 14px; }
2707
+ .dropdown.menu.large-vertical > li.opens-left > a::after {
2708
+ display: block;
2709
+ width: 0;
2710
+ height: 0;
2711
+ border: inset 6px;
2712
+ content: '';
2713
+ border-left-width: 0;
2714
+ border-right-style: solid;
2715
+ border-color: transparent #1779ba transparent transparent; }
2716
+ .dropdown.menu.large-vertical > li.opens-right > a::after {
2717
+ display: block;
2718
+ width: 0;
2719
+ height: 0;
2720
+ border: inset 6px;
2721
+ content: '';
2722
+ border-right-width: 0;
2723
+ border-left-style: solid;
2724
+ border-color: transparent transparent transparent #1779ba; } }
2725
+
2726
+ .dropdown.menu.align-right .is-dropdown-submenu.first-sub {
2727
+ top: 100%;
2728
+ right: 0;
2729
+ left: auto; }
2730
+
2731
+ .is-dropdown-menu.vertical {
2732
+ width: 100px; }
2733
+ .is-dropdown-menu.vertical.align-right {
2734
+ float: right; }
2735
+
2736
+ .is-dropdown-submenu-parent {
2737
+ position: relative; }
2738
+ .is-dropdown-submenu-parent a::after {
2739
+ position: absolute;
2740
+ top: 50%;
2741
+ left: 5px;
2742
+ margin-top: -6px; }
2743
+ .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
2744
+ top: 100%;
2745
+ right: auto; }
2746
+ .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
2747
+ right: 100%;
2748
+ left: auto; }
2749
+ .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
2750
+ right: auto;
2751
+ left: 100%; }
2752
+
2753
+ .is-dropdown-submenu {
2754
+ position: absolute;
2755
+ top: 0;
2756
+ right: 100%;
2757
+ z-index: 1;
2758
+ display: none;
2759
+ min-width: 200px;
2760
+ border: 1px solid #cacaca;
2761
+ background: #fefefe; }
2762
+ .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
2763
+ left: 14px; }
2764
+ .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
2765
+ display: block;
2766
+ width: 0;
2767
+ height: 0;
2768
+ border: inset 6px;
2769
+ content: '';
2770
+ border-left-width: 0;
2771
+ border-right-style: solid;
2772
+ border-color: transparent #1779ba transparent transparent; }
2773
+ .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
2774
+ display: block;
2775
+ width: 0;
2776
+ height: 0;
2777
+ border: inset 6px;
2778
+ content: '';
2779
+ border-right-width: 0;
2780
+ border-left-style: solid;
2781
+ border-color: transparent transparent transparent #1779ba; }
2782
+ .is-dropdown-submenu .is-dropdown-submenu {
2783
+ margin-top: -1px; }
2784
+ .is-dropdown-submenu > li {
2785
+ width: 100%; }
2786
+ .is-dropdown-submenu.js-dropdown-active {
2787
+ display: block; }
2788
+
2789
+ .responsive-embed,
2790
+ .flex-video {
2791
+ position: relative;
2792
+ height: 0;
2793
+ margin-bottom: 1rem;
2794
+ padding-bottom: 75%;
2795
+ overflow: hidden; }
2796
+ .responsive-embed iframe,
2797
+ .responsive-embed object,
2798
+ .responsive-embed embed,
2799
+ .responsive-embed video,
2800
+ .flex-video iframe,
2801
+ .flex-video object,
2802
+ .flex-video embed,
2803
+ .flex-video video {
2804
+ position: absolute;
2805
+ top: 0;
2806
+ right: 0;
2807
+ width: 100%;
2808
+ height: 100%; }
2809
+ .responsive-embed.widescreen,
2810
+ .flex-video.widescreen {
2811
+ padding-bottom: 56.25%; }
2812
+
2813
+ .label {
2814
+ display: inline-block;
2815
+ padding: 0.33333rem 0.5rem;
2816
+ border-radius: 0;
2817
+ font-size: 0.8rem;
2818
+ line-height: 1;
2819
+ white-space: nowrap;
2820
+ cursor: default;
2821
+ background: #1779ba;
2822
+ color: #fefefe; }
2823
+ .label.primary {
2824
+ background: #1779ba;
2825
+ color: #fefefe; }
2826
+ .label.secondary {
2827
+ background: #767676;
2828
+ color: #fefefe; }
2829
+ .label.success {
2830
+ background: #3adb76;
2831
+ color: #0a0a0a; }
2832
+ .label.warning {
2833
+ background: #ffae00;
2834
+ color: #0a0a0a; }
2835
+ .label.alert {
2836
+ background: #cc4b37;
2837
+ color: #fefefe; }
2838
+
2839
+ .media-object {
2840
+ display: block;
2841
+ margin-bottom: 1rem; }
2842
+ .media-object img {
2843
+ max-width: none; }
2844
+ @media screen and (max-width: 39.9375em) {
2845
+ .media-object.stack-for-small .media-object-section {
2846
+ padding: 0;
2847
+ padding-bottom: 1rem;
2848
+ display: block; }
2849
+ .media-object.stack-for-small .media-object-section img {
2850
+ width: 100%; } }
2851
+
2852
+ .media-object-section {
2853
+ display: table-cell;
2854
+ vertical-align: top; }
2855
+ .media-object-section:first-child {
2856
+ padding-left: 1rem; }
2857
+ .media-object-section:last-child:not(:nth-child(2)) {
2858
+ padding-right: 1rem; }
2859
+ .media-object-section > :last-child {
2860
+ margin-bottom: 0; }
2861
+ .media-object-section.middle {
2862
+ vertical-align: middle; }
2863
+ .media-object-section.bottom {
2864
+ vertical-align: bottom; }
2865
+
2866
+ .is-off-canvas-open {
2867
+ overflow: hidden; }
2868
+
2869
+ .js-off-canvas-overlay {
2870
+ position: absolute;
2871
+ top: 0;
2872
+ left: 0;
2873
+ width: 100%;
2874
+ height: 100%;
2875
+ -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
2876
+ transition: opacity 0.5s ease, visibility 0.5s ease;
2877
+ background: rgba(254, 254, 254, 0.25);
2878
+ opacity: 0;
2879
+ visibility: hidden;
2880
+ overflow: hidden; }
2881
+ .js-off-canvas-overlay.is-visible {
2882
+ opacity: 1;
2883
+ visibility: visible; }
2884
+ .js-off-canvas-overlay.is-closable {
2885
+ cursor: pointer; }
2886
+ .js-off-canvas-overlay.is-overlay-absolute {
2887
+ position: absolute; }
2888
+ .js-off-canvas-overlay.is-overlay-fixed {
2889
+ position: fixed; }
2890
+
2891
+ .off-canvas-wrapper {
2892
+ position: relative;
2893
+ overflow: hidden; }
2894
+
2895
+ .off-canvas {
2896
+ position: fixed;
2897
+ z-index: 1;
2898
+ -webkit-transition: -webkit-transform 0.5s ease;
2899
+ transition: -webkit-transform 0.5s ease;
2900
+ transition: transform 0.5s ease;
2901
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease;
2902
+ -webkit-backface-visibility: hidden;
2903
+ backface-visibility: hidden;
2904
+ background: #e6e6e6; }
2905
+ [data-whatinput='mouse'] .off-canvas {
2906
+ outline: 0; }
2907
+ .off-canvas.is-transition-overlap {
2908
+ z-index: 10; }
2909
+ .off-canvas.is-transition-overlap.is-open {
2910
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
2911
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
2912
+ .off-canvas.is-open {
2913
+ -webkit-transform: translate(0, 0);
2914
+ -ms-transform: translate(0, 0);
2915
+ transform: translate(0, 0); }
2916
+
2917
+ .off-canvas-absolute {
2918
+ position: absolute;
2919
+ z-index: 1;
2920
+ -webkit-transition: -webkit-transform 0.5s ease;
2921
+ transition: -webkit-transform 0.5s ease;
2922
+ transition: transform 0.5s ease;
2923
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease;
2924
+ -webkit-backface-visibility: hidden;
2925
+ backface-visibility: hidden;
2926
+ background: #e6e6e6; }
2927
+ [data-whatinput='mouse'] .off-canvas-absolute {
2928
+ outline: 0; }
2929
+ .off-canvas-absolute.is-transition-overlap {
2930
+ z-index: 10; }
2931
+ .off-canvas-absolute.is-transition-overlap.is-open {
2932
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
2933
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
2934
+ .off-canvas-absolute.is-open {
2935
+ -webkit-transform: translate(0, 0);
2936
+ -ms-transform: translate(0, 0);
2937
+ transform: translate(0, 0); }
2938
+
2939
+ .position-left {
2940
+ top: 0;
2941
+ left: 0;
2942
+ width: 250px;
2943
+ height: 100%;
2944
+ -webkit-transform: translateX(-250px);
2945
+ -ms-transform: translateX(-250px);
2946
+ transform: translateX(-250px);
2947
+ overflow-y: auto; }
2948
+ .position-left.is-open ~ .off-canvas-content {
2949
+ -webkit-transform: translateX(250px);
2950
+ -ms-transform: translateX(250px);
2951
+ transform: translateX(250px); }
2952
+ .position-left.is-transition-push::after {
2953
+ position: absolute;
2954
+ top: 0;
2955
+ right: 0;
2956
+ height: 100%;
2957
+ width: 1px;
2958
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
2959
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
2960
+ content: " "; }
2961
+ .position-left.is-transition-overlap.is-open ~ .off-canvas-content {
2962
+ -webkit-transform: none;
2963
+ -ms-transform: none;
2964
+ transform: none; }
2965
+
2966
+ .position-right {
2967
+ top: 0;
2968
+ right: 0;
2969
+ width: 250px;
2970
+ height: 100%;
2971
+ -webkit-transform: translateX(250px);
2972
+ -ms-transform: translateX(250px);
2973
+ transform: translateX(250px);
2974
+ overflow-y: auto; }
2975
+ .position-right.is-open ~ .off-canvas-content {
2976
+ -webkit-transform: translateX(-250px);
2977
+ -ms-transform: translateX(-250px);
2978
+ transform: translateX(-250px); }
2979
+ .position-right.is-transition-push::after {
2980
+ position: absolute;
2981
+ top: 0;
2982
+ left: 0;
2983
+ height: 100%;
2984
+ width: 1px;
2985
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
2986
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
2987
+ content: " "; }
2988
+ .position-right.is-transition-overlap.is-open ~ .off-canvas-content {
2989
+ -webkit-transform: none;
2990
+ -ms-transform: none;
2991
+ transform: none; }
2992
+
2993
+ .position-top {
2994
+ top: 0;
2995
+ left: 0;
2996
+ width: 100%;
2997
+ height: 250px;
2998
+ -webkit-transform: translateY(-250px);
2999
+ -ms-transform: translateY(-250px);
3000
+ transform: translateY(-250px);
3001
+ overflow-x: auto; }
3002
+ .position-top.is-open ~ .off-canvas-content {
3003
+ -webkit-transform: translateY(250px);
3004
+ -ms-transform: translateY(250px);
3005
+ transform: translateY(250px); }
3006
+ .position-top.is-transition-push::after {
3007
+ position: absolute;
3008
+ bottom: 0;
3009
+ left: 0;
3010
+ height: 1px;
3011
+ width: 100%;
3012
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3013
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3014
+ content: " "; }
3015
+ .position-top.is-transition-overlap.is-open ~ .off-canvas-content {
3016
+ -webkit-transform: none;
3017
+ -ms-transform: none;
3018
+ transform: none; }
3019
+
3020
+ .position-bottom {
3021
+ bottom: 0;
3022
+ left: 0;
3023
+ width: 100%;
3024
+ height: 250px;
3025
+ -webkit-transform: translateY(250px);
3026
+ -ms-transform: translateY(250px);
3027
+ transform: translateY(250px);
3028
+ overflow-x: auto; }
3029
+ .position-bottom.is-open ~ .off-canvas-content {
3030
+ -webkit-transform: translateY(-250px);
3031
+ -ms-transform: translateY(-250px);
3032
+ transform: translateY(-250px); }
3033
+ .position-bottom.is-transition-push::after {
3034
+ position: absolute;
3035
+ top: 0;
3036
+ left: 0;
3037
+ height: 1px;
3038
+ width: 100%;
3039
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3040
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3041
+ content: " "; }
3042
+ .position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
3043
+ -webkit-transform: none;
3044
+ -ms-transform: none;
3045
+ transform: none; }
3046
+
3047
+ .off-canvas-content {
3048
+ -webkit-transition: -webkit-transform 0.5s ease;
3049
+ transition: -webkit-transform 0.5s ease;
3050
+ transition: transform 0.5s ease;
3051
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease;
3052
+ -webkit-backface-visibility: hidden;
3053
+ backface-visibility: hidden; }
3054
+
3055
+ @media print, screen and (min-width: 40em) {
3056
+ .position-left.reveal-for-medium {
3057
+ -webkit-transform: none;
3058
+ -ms-transform: none;
3059
+ transform: none;
3060
+ z-index: 1; }
3061
+ .position-left.reveal-for-medium ~ .off-canvas-content {
3062
+ margin-left: 250px; }
3063
+ .position-right.reveal-for-medium {
3064
+ -webkit-transform: none;
3065
+ -ms-transform: none;
3066
+ transform: none;
3067
+ z-index: 1; }
3068
+ .position-right.reveal-for-medium ~ .off-canvas-content {
3069
+ margin-right: 250px; }
3070
+ .position-top.reveal-for-medium {
3071
+ -webkit-transform: none;
3072
+ -ms-transform: none;
3073
+ transform: none;
3074
+ z-index: 1; }
3075
+ .position-top.reveal-for-medium ~ .off-canvas-content {
3076
+ margin-top: 250px; }
3077
+ .position-bottom.reveal-for-medium {
3078
+ -webkit-transform: none;
3079
+ -ms-transform: none;
3080
+ transform: none;
3081
+ z-index: 1; }
3082
+ .position-bottom.reveal-for-medium ~ .off-canvas-content {
3083
+ margin-bottom: 250px; } }
3084
+
3085
+ @media print, screen and (min-width: 64em) {
3086
+ .position-left.reveal-for-large {
3087
+ -webkit-transform: none;
3088
+ -ms-transform: none;
3089
+ transform: none;
3090
+ z-index: 1; }
3091
+ .position-left.reveal-for-large ~ .off-canvas-content {
3092
+ margin-left: 250px; }
3093
+ .position-right.reveal-for-large {
3094
+ -webkit-transform: none;
3095
+ -ms-transform: none;
3096
+ transform: none;
3097
+ z-index: 1; }
3098
+ .position-right.reveal-for-large ~ .off-canvas-content {
3099
+ margin-right: 250px; }
3100
+ .position-top.reveal-for-large {
3101
+ -webkit-transform: none;
3102
+ -ms-transform: none;
3103
+ transform: none;
3104
+ z-index: 1; }
3105
+ .position-top.reveal-for-large ~ .off-canvas-content {
3106
+ margin-top: 250px; }
3107
+ .position-bottom.reveal-for-large {
3108
+ -webkit-transform: none;
3109
+ -ms-transform: none;
3110
+ transform: none;
3111
+ z-index: 1; }
3112
+ .position-bottom.reveal-for-large ~ .off-canvas-content {
3113
+ margin-bottom: 250px; } }
3114
+
3115
+ .orbit {
3116
+ position: relative; }
3117
+
3118
+ .orbit-container {
3119
+ position: relative;
3120
+ height: 0;
3121
+ margin: 0;
3122
+ list-style: none;
3123
+ overflow: hidden; }
3124
+
3125
+ .orbit-slide {
3126
+ width: 100%; }
3127
+ .orbit-slide.no-motionui.is-active {
3128
+ top: 0;
3129
+ left: 0; }
3130
+
3131
+ .orbit-figure {
3132
+ margin: 0; }
3133
+
3134
+ .orbit-image {
3135
+ width: 100%;
3136
+ max-width: 100%;
3137
+ margin: 0; }
3138
+
3139
+ .orbit-caption {
3140
+ position: absolute;
3141
+ bottom: 0;
3142
+ width: 100%;
3143
+ margin-bottom: 0;
3144
+ padding: 1rem;
3145
+ background-color: rgba(10, 10, 10, 0.5);
3146
+ color: #fefefe; }
3147
+
3148
+ .orbit-previous, .orbit-next {
3149
+ position: absolute;
3150
+ top: 50%;
3151
+ -webkit-transform: translateY(-50%);
3152
+ -ms-transform: translateY(-50%);
3153
+ transform: translateY(-50%);
3154
+ z-index: 10;
3155
+ padding: 1rem;
3156
+ color: #fefefe; }
3157
+ [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
3158
+ outline: 0; }
3159
+ .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
3160
+ background-color: rgba(10, 10, 10, 0.5); }
3161
+
3162
+ .orbit-previous {
3163
+ right: 0; }
3164
+
3165
+ .orbit-next {
3166
+ right: auto;
3167
+ left: 0; }
3168
+
3169
+ .orbit-bullets {
3170
+ position: relative;
3171
+ margin-top: 0.8rem;
3172
+ margin-bottom: 0.8rem;
3173
+ text-align: center; }
3174
+ [data-whatinput='mouse'] .orbit-bullets {
3175
+ outline: 0; }
3176
+ .orbit-bullets button {
3177
+ width: 1.2rem;
3178
+ height: 1.2rem;
3179
+ margin: 0.1rem;
3180
+ border-radius: 50%;
3181
+ background-color: #cacaca; }
3182
+ .orbit-bullets button:hover {
3183
+ background-color: #8a8a8a; }
3184
+ .orbit-bullets button.is-active {
3185
+ background-color: #8a8a8a; }
3186
+
3187
+ .pagination {
3188
+ margin-right: 0;
3189
+ margin-bottom: 1rem; }
3190
+ .pagination::before, .pagination::after {
3191
+ display: table;
3192
+ content: ' '; }
3193
+ .pagination::after {
3194
+ clear: both; }
3195
+ .pagination li {
3196
+ margin-left: 0.0625rem;
3197
+ border-radius: 0;
3198
+ font-size: 0.875rem;
3199
+ display: none; }
3200
+ .pagination li:last-child, .pagination li:first-child {
3201
+ display: inline-block; }
3202
+ @media print, screen and (min-width: 40em) {
3203
+ .pagination li {
3204
+ display: inline-block; } }
3205
+ .pagination a,
3206
+ .pagination button {
3207
+ display: block;
3208
+ padding: 0.1875rem 0.625rem;
3209
+ border-radius: 0;
3210
+ color: #0a0a0a; }
3211
+ .pagination a:hover,
3212
+ .pagination button:hover {
3213
+ background: #e6e6e6; }
3214
+ .pagination .current {
3215
+ padding: 0.1875rem 0.625rem;
3216
+ background: #1779ba;
3217
+ color: #fefefe;
3218
+ cursor: default; }
3219
+ .pagination .disabled {
3220
+ padding: 0.1875rem 0.625rem;
3221
+ color: #cacaca;
3222
+ cursor: not-allowed; }
3223
+ .pagination .disabled:hover {
3224
+ background: transparent; }
3225
+ .pagination .ellipsis::after {
3226
+ padding: 0.1875rem 0.625rem;
3227
+ content: '\2026';
3228
+ color: #0a0a0a; }
3229
+
3230
+ .pagination-previous a::before,
3231
+ .pagination-previous.disabled::before {
3232
+ display: inline-block;
3233
+ margin-left: 0.5rem;
3234
+ content: '\00ab'; }
3235
+
3236
+ .pagination-next a::after,
3237
+ .pagination-next.disabled::after {
3238
+ display: inline-block;
3239
+ margin-right: 0.5rem;
3240
+ content: '\00bb'; }
3241
+
3242
+ .progress {
3243
+ height: 1rem;
3244
+ margin-bottom: 1rem;
3245
+ border-radius: 0;
3246
+ background-color: #cacaca; }
3247
+ .progress.primary .progress-meter {
3248
+ background-color: #1779ba; }
3249
+ .progress.secondary .progress-meter {
3250
+ background-color: #767676; }
3251
+ .progress.success .progress-meter {
3252
+ background-color: #3adb76; }
3253
+ .progress.warning .progress-meter {
3254
+ background-color: #ffae00; }
3255
+ .progress.alert .progress-meter {
3256
+ background-color: #cc4b37; }
3257
+
3258
+ .progress-meter {
3259
+ position: relative;
3260
+ display: block;
3261
+ width: 0%;
3262
+ height: 100%;
3263
+ background-color: #1779ba; }
3264
+
3265
+ .progress-meter-text {
3266
+ position: absolute;
3267
+ top: 50%;
3268
+ left: 50%;
3269
+ -webkit-transform: translate(-50%, -50%);
3270
+ -ms-transform: translate(-50%, -50%);
3271
+ transform: translate(-50%, -50%);
3272
+ position: absolute;
3273
+ margin: 0;
3274
+ font-size: 0.75rem;
3275
+ font-weight: bold;
3276
+ color: #fefefe;
3277
+ white-space: nowrap; }
3278
+
3279
+ .slider {
3280
+ position: relative;
3281
+ height: 0.5rem;
3282
+ margin-top: 1.25rem;
3283
+ margin-bottom: 2.25rem;
3284
+ background-color: #e6e6e6;
3285
+ cursor: pointer;
3286
+ -webkit-user-select: none;
3287
+ -moz-user-select: none;
3288
+ -ms-user-select: none;
3289
+ user-select: none;
3290
+ -ms-touch-action: none;
3291
+ touch-action: none; }
3292
+
3293
+ .slider-fill {
3294
+ position: absolute;
3295
+ top: 0;
3296
+ left: 0;
3297
+ display: inline-block;
3298
+ max-width: 100%;
3299
+ height: 0.5rem;
3300
+ background-color: #cacaca;
3301
+ -webkit-transition: all 0.2s ease-in-out;
3302
+ transition: all 0.2s ease-in-out; }
3303
+ .slider-fill.is-dragging {
3304
+ -webkit-transition: all 0s linear;
3305
+ transition: all 0s linear; }
3306
+
3307
+ .slider-handle {
3308
+ position: absolute;
3309
+ top: 50%;
3310
+ -webkit-transform: translateY(-50%);
3311
+ -ms-transform: translateY(-50%);
3312
+ transform: translateY(-50%);
3313
+ position: absolute;
3314
+ left: 0;
3315
+ z-index: 1;
3316
+ display: inline-block;
3317
+ width: 1.4rem;
3318
+ height: 1.4rem;
3319
+ border-radius: 0;
3320
+ background-color: #1779ba;
3321
+ -webkit-transition: all 0.2s ease-in-out;
3322
+ transition: all 0.2s ease-in-out;
3323
+ -ms-touch-action: manipulation;
3324
+ touch-action: manipulation; }
3325
+ [data-whatinput='mouse'] .slider-handle {
3326
+ outline: 0; }
3327
+ .slider-handle:hover {
3328
+ background-color: #14679e; }
3329
+ .slider-handle.is-dragging {
3330
+ -webkit-transition: all 0s linear;
3331
+ transition: all 0s linear; }
3332
+
3333
+ .slider.disabled,
3334
+ .slider[disabled] {
3335
+ opacity: 0.25;
3336
+ cursor: not-allowed; }
3337
+
3338
+ .slider.vertical {
3339
+ display: inline-block;
3340
+ width: 0.5rem;
3341
+ height: 12.5rem;
3342
+ margin: 0 1.25rem;
3343
+ -webkit-transform: scale(1, -1);
3344
+ -ms-transform: scale(1, -1);
3345
+ transform: scale(1, -1); }
3346
+ .slider.vertical .slider-fill {
3347
+ top: 0;
3348
+ width: 0.5rem;
3349
+ max-height: 100%; }
3350
+ .slider.vertical .slider-handle {
3351
+ position: absolute;
3352
+ top: 0;
3353
+ left: 50%;
3354
+ width: 1.4rem;
3355
+ height: 1.4rem;
3356
+ -webkit-transform: translateX(-50%);
3357
+ -ms-transform: translateX(-50%);
3358
+ transform: translateX(-50%); }
3359
+
3360
+ .slider:not(.vertical) {
3361
+ -webkit-transform: scale(-1, 1);
3362
+ -ms-transform: scale(-1, 1);
3363
+ transform: scale(-1, 1); }
3364
+
3365
+ .sticky-container {
3366
+ position: relative; }
3367
+
3368
+ .sticky {
3369
+ position: relative;
3370
+ z-index: 0;
3371
+ -webkit-transform: translate3d(0, 0, 0);
3372
+ transform: translate3d(0, 0, 0); }
3373
+
3374
+ .sticky.is-stuck {
3375
+ position: fixed;
3376
+ z-index: 5; }
3377
+ .sticky.is-stuck.is-at-top {
3378
+ top: 0; }
3379
+ .sticky.is-stuck.is-at-bottom {
3380
+ bottom: 0; }
3381
+
3382
+ .sticky.is-anchored {
3383
+ position: relative;
3384
+ right: auto;
3385
+ left: auto; }
3386
+ .sticky.is-anchored.is-at-bottom {
3387
+ bottom: 0; }
3388
+
3389
+ body.is-reveal-open {
3390
+ overflow: hidden; }
3391
+
3392
+ html.is-reveal-open,
3393
+ html.is-reveal-open body {
3394
+ min-height: 100%;
3395
+ overflow: hidden;
3396
+ -webkit-user-select: none;
3397
+ -moz-user-select: none;
3398
+ -ms-user-select: none;
3399
+ user-select: none; }
3400
+
3401
+ .reveal-overlay {
3402
+ position: fixed;
3403
+ top: 0;
3404
+ right: 0;
3405
+ bottom: 0;
3406
+ left: 0;
3407
+ z-index: 1005;
3408
+ display: none;
3409
+ background-color: rgba(10, 10, 10, 0.45);
3410
+ overflow-y: scroll; }
3411
+
3412
+ .reveal {
3413
+ z-index: 1006;
3414
+ -webkit-backface-visibility: hidden;
3415
+ backface-visibility: hidden;
3416
+ display: none;
3417
+ padding: 1rem;
3418
+ border: 1px solid #cacaca;
3419
+ border-radius: 0;
3420
+ background-color: #fefefe;
3421
+ position: relative;
3422
+ top: 100px;
3423
+ margin-right: auto;
3424
+ margin-left: auto;
3425
+ overflow-y: auto; }
3426
+ [data-whatinput='mouse'] .reveal {
3427
+ outline: 0; }
3428
+ @media print, screen and (min-width: 40em) {
3429
+ .reveal {
3430
+ min-height: 0; } }
3431
+ .reveal .column, .reveal .columns,
3432
+ .reveal .columns {
3433
+ min-width: 0; }
3434
+ .reveal > :last-child {
3435
+ margin-bottom: 0; }
3436
+ @media print, screen and (min-width: 40em) {
3437
+ .reveal {
3438
+ width: 600px;
3439
+ max-width: 75rem; } }
3440
+ @media print, screen and (min-width: 40em) {
3441
+ .reveal .reveal {
3442
+ right: auto;
3443
+ left: auto;
3444
+ margin: 0 auto; } }
3445
+ .reveal.collapse {
3446
+ padding: 0; }
3447
+ @media print, screen and (min-width: 40em) {
3448
+ .reveal.tiny {
3449
+ width: 30%;
3450
+ max-width: 75rem; } }
3451
+ @media print, screen and (min-width: 40em) {
3452
+ .reveal.small {
3453
+ width: 50%;
3454
+ max-width: 75rem; } }
3455
+ @media print, screen and (min-width: 40em) {
3456
+ .reveal.large {
3457
+ width: 90%;
3458
+ max-width: 75rem; } }
3459
+ .reveal.full {
3460
+ top: 0;
3461
+ left: 0;
3462
+ width: 100%;
3463
+ max-width: none;
3464
+ height: 100%;
3465
+ height: 100vh;
3466
+ min-height: 100vh;
3467
+ margin-left: 0;
3468
+ border: 0;
3469
+ border-radius: 0; }
3470
+ @media screen and (max-width: 39.9375em) {
3471
+ .reveal {
3472
+ top: 0;
3473
+ left: 0;
3474
+ width: 100%;
3475
+ max-width: none;
3476
+ height: 100%;
3477
+ height: 100vh;
3478
+ min-height: 100vh;
3479
+ margin-left: 0;
3480
+ border: 0;
3481
+ border-radius: 0; } }
3482
+ .reveal.without-overlay {
3483
+ position: fixed; }
3484
+
3485
+ .switch {
3486
+ height: 2rem;
3487
+ position: relative;
3488
+ margin-bottom: 1rem;
3489
+ outline: 0;
3490
+ font-size: 0.875rem;
3491
+ font-weight: bold;
3492
+ color: #fefefe;
3493
+ -webkit-user-select: none;
3494
+ -moz-user-select: none;
3495
+ -ms-user-select: none;
3496
+ user-select: none; }
3497
+
3498
+ .switch-input {
3499
+ position: absolute;
3500
+ margin-bottom: 0;
3501
+ opacity: 0; }
3502
+
3503
+ .switch-paddle {
3504
+ position: relative;
3505
+ display: block;
3506
+ width: 4rem;
3507
+ height: 2rem;
3508
+ border-radius: 0;
3509
+ background: #cacaca;
3510
+ -webkit-transition: all 0.25s ease-out;
3511
+ transition: all 0.25s ease-out;
3512
+ font-weight: inherit;
3513
+ color: inherit;
3514
+ cursor: pointer; }
3515
+ input + .switch-paddle {
3516
+ margin: 0; }
3517
+ .switch-paddle::after {
3518
+ position: absolute;
3519
+ top: 0.25rem;
3520
+ right: 0.25rem;
3521
+ display: block;
3522
+ width: 1.5rem;
3523
+ height: 1.5rem;
3524
+ -webkit-transform: translate3d(0, 0, 0);
3525
+ transform: translate3d(0, 0, 0);
3526
+ border-radius: 0;
3527
+ background: #fefefe;
3528
+ -webkit-transition: all 0.25s ease-out;
3529
+ transition: all 0.25s ease-out;
3530
+ content: ''; }
3531
+ input:checked ~ .switch-paddle {
3532
+ background: #1779ba; }
3533
+ input:checked ~ .switch-paddle::after {
3534
+ right: 2.25rem; }
3535
+ [data-whatinput='mouse'] input:focus ~ .switch-paddle {
3536
+ outline: 0; }
3537
+
3538
+ .switch-active, .switch-inactive {
3539
+ position: absolute;
3540
+ top: 50%;
3541
+ -webkit-transform: translateY(-50%);
3542
+ -ms-transform: translateY(-50%);
3543
+ transform: translateY(-50%); }
3544
+
3545
+ .switch-active {
3546
+ right: 8%;
3547
+ display: none; }
3548
+ input:checked + label > .switch-active {
3549
+ display: block; }
3550
+
3551
+ .switch-inactive {
3552
+ left: 15%; }
3553
+ input:checked + label > .switch-inactive {
3554
+ display: none; }
3555
+
3556
+ .switch.tiny {
3557
+ height: 1.5rem; }
3558
+ .switch.tiny .switch-paddle {
3559
+ width: 3rem;
3560
+ height: 1.5rem;
3561
+ font-size: 0.625rem; }
3562
+ .switch.tiny .switch-paddle::after {
3563
+ top: 0.25rem;
3564
+ right: 0.25rem;
3565
+ width: 1rem;
3566
+ height: 1rem; }
3567
+ .switch.tiny input:checked ~ .switch-paddle::after {
3568
+ right: 1.75rem; }
3569
+
3570
+ .switch.small {
3571
+ height: 1.75rem; }
3572
+ .switch.small .switch-paddle {
3573
+ width: 3.5rem;
3574
+ height: 1.75rem;
3575
+ font-size: 0.75rem; }
3576
+ .switch.small .switch-paddle::after {
3577
+ top: 0.25rem;
3578
+ right: 0.25rem;
3579
+ width: 1.25rem;
3580
+ height: 1.25rem; }
3581
+ .switch.small input:checked ~ .switch-paddle::after {
3582
+ right: 2rem; }
3583
+
3584
+ .switch.large {
3585
+ height: 2.5rem; }
3586
+ .switch.large .switch-paddle {
3587
+ width: 5rem;
3588
+ height: 2.5rem;
3589
+ font-size: 1rem; }
3590
+ .switch.large .switch-paddle::after {
3591
+ top: 0.25rem;
3592
+ right: 0.25rem;
3593
+ width: 2rem;
3594
+ height: 2rem; }
3595
+ .switch.large input:checked ~ .switch-paddle::after {
3596
+ right: 2.75rem; }
3597
+
3598
+ table {
3599
+ width: 100%;
3600
+ margin-bottom: 1rem;
3601
+ border-radius: 0; }
3602
+ table thead,
3603
+ table tbody,
3604
+ table tfoot {
3605
+ border: 1px solid #f1f1f1;
3606
+ background-color: #fefefe; }
3607
+ table caption {
3608
+ padding: 0.5rem 0.625rem 0.625rem;
3609
+ font-weight: bold; }
3610
+ table thead {
3611
+ background: #f8f8f8;
3612
+ color: #0a0a0a; }
3613
+ table tfoot {
3614
+ background: #f1f1f1;
3615
+ color: #0a0a0a; }
3616
+ table thead tr,
3617
+ table tfoot tr {
3618
+ background: transparent; }
3619
+ table thead th,
3620
+ table thead td,
3621
+ table tfoot th,
3622
+ table tfoot td {
3623
+ padding: 0.5rem 0.625rem 0.625rem;
3624
+ font-weight: bold;
3625
+ text-align: right; }
3626
+ table tbody th,
3627
+ table tbody td {
3628
+ padding: 0.5rem 0.625rem 0.625rem; }
3629
+ table tbody tr:nth-child(even) {
3630
+ border-bottom: 0;
3631
+ background-color: #f1f1f1; }
3632
+ table.unstriped tbody {
3633
+ background-color: #fefefe; }
3634
+ table.unstriped tbody tr {
3635
+ border-bottom: 0;
3636
+ border-bottom: 1px solid #f1f1f1;
3637
+ background-color: #fefefe; }
3638
+
3639
+ @media screen and (max-width: 63.9375em) {
3640
+ table.stack thead {
3641
+ display: none; }
3642
+ table.stack tfoot {
3643
+ display: none; }
3644
+ table.stack tr,
3645
+ table.stack th,
3646
+ table.stack td {
3647
+ display: block; }
3648
+ table.stack td {
3649
+ border-top: 0; } }
3650
+
3651
+ table.scroll {
3652
+ display: block;
3653
+ width: 100%;
3654
+ overflow-x: auto; }
3655
+
3656
+ table.hover thead tr:hover {
3657
+ background-color: #f3f3f3; }
3658
+
3659
+ table.hover tfoot tr:hover {
3660
+ background-color: #ececec; }
3661
+
3662
+ table.hover tbody tr:hover {
3663
+ background-color: #f9f9f9; }
3664
+
3665
+ table.hover:not(.unstriped) tr:nth-of-type(even):hover {
3666
+ background-color: #ececec; }
3667
+
3668
+ .table-scroll {
3669
+ overflow-x: auto; }
3670
+ .table-scroll table {
3671
+ width: auto; }
3672
+
3673
+ .tabs {
3674
+ margin: 0;
3675
+ border: 1px solid #e6e6e6;
3676
+ background: #fefefe;
3677
+ list-style-type: none; }
3678
+ .tabs::before, .tabs::after {
3679
+ display: table;
3680
+ content: ' '; }
3681
+ .tabs::after {
3682
+ clear: both; }
3683
+
3684
+ .tabs.vertical > li {
3685
+ display: block;
3686
+ float: none;
3687
+ width: auto; }
3688
+
3689
+ .tabs.simple > li > a {
3690
+ padding: 0; }
3691
+ .tabs.simple > li > a:hover {
3692
+ background: transparent; }
3693
+
3694
+ .tabs.primary {
3695
+ background: #1779ba; }
3696
+ .tabs.primary > li > a {
3697
+ color: #fefefe; }
3698
+ .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
3699
+ background: #1673b1; }
3700
+
3701
+ .tabs-title {
3702
+ float: right; }
3703
+ .tabs-title > a {
3704
+ display: block;
3705
+ padding: 1.25rem 1.5rem;
3706
+ font-size: 0.75rem;
3707
+ line-height: 1;
3708
+ color: #1779ba; }
3709
+ .tabs-title > a:hover {
3710
+ background: #fefefe;
3711
+ color: #1468a0; }
3712
+ .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
3713
+ background: #e6e6e6;
3714
+ color: #1779ba; }
3715
+
3716
+ .tabs-content {
3717
+ border: 1px solid #e6e6e6;
3718
+ border-top: 0;
3719
+ background: #fefefe;
3720
+ color: #0a0a0a;
3721
+ -webkit-transition: all 0.5s ease;
3722
+ transition: all 0.5s ease; }
3723
+
3724
+ .tabs-content.vertical {
3725
+ border: 1px solid #e6e6e6;
3726
+ border-right: 0; }
3727
+
3728
+ .tabs-panel {
3729
+ display: none;
3730
+ padding: 1rem; }
3731
+ .tabs-panel[aria-hidden="false"] {
3732
+ display: block; }
3733
+
3734
+ .thumbnail {
3735
+ display: inline-block;
3736
+ max-width: 100%;
3737
+ margin-bottom: 1rem;
3738
+ border: solid 4px #fefefe;
3739
+ border-radius: 0;
3740
+ -webkit-box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
3741
+ box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
3742
+ line-height: 0; }
3743
+
3744
+ a.thumbnail {
3745
+ -webkit-transition: -webkit-box-shadow 200ms ease-out;
3746
+ transition: -webkit-box-shadow 200ms ease-out;
3747
+ transition: box-shadow 200ms ease-out;
3748
+ transition: box-shadow 200ms ease-out, -webkit-box-shadow 200ms ease-out; }
3749
+ a.thumbnail:hover, a.thumbnail:focus {
3750
+ -webkit-box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
3751
+ box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); }
3752
+ a.thumbnail image {
3753
+ -webkit-box-shadow: none;
3754
+ box-shadow: none; }
3755
+
3756
+ .title-bar {
3757
+ padding: 0.5rem;
3758
+ background: #0a0a0a;
3759
+ color: #fefefe; }
3760
+ .title-bar::before, .title-bar::after {
3761
+ display: table;
3762
+ content: ' '; }
3763
+ .title-bar::after {
3764
+ clear: both; }
3765
+ .title-bar .menu-icon {
3766
+ margin-right: 0.25rem;
3767
+ margin-left: 0.25rem; }
3768
+
3769
+ .title-bar-left {
3770
+ float: left; }
3771
+
3772
+ .title-bar-right {
3773
+ float: right;
3774
+ text-align: right; }
3775
+
3776
+ .title-bar-title {
3777
+ display: inline-block;
3778
+ vertical-align: middle;
3779
+ font-weight: bold; }
3780
+
3781
+ .has-tip {
3782
+ position: relative;
3783
+ display: inline-block;
3784
+ border-bottom: dotted 1px #8a8a8a;
3785
+ font-weight: bold;
3786
+ cursor: help; }
3787
+
3788
+ .tooltip {
3789
+ position: absolute;
3790
+ top: calc(100% + 0.6495rem);
3791
+ z-index: 1200;
3792
+ max-width: 10rem;
3793
+ padding: 0.75rem;
3794
+ border-radius: 0;
3795
+ background-color: #0a0a0a;
3796
+ font-size: 80%;
3797
+ color: #fefefe; }
3798
+ .tooltip::before {
3799
+ display: block;
3800
+ width: 0;
3801
+ height: 0;
3802
+ border: inset 0.75rem;
3803
+ content: '';
3804
+ border-top-width: 0;
3805
+ border-bottom-style: solid;
3806
+ border-color: transparent transparent #0a0a0a;
3807
+ position: absolute;
3808
+ bottom: 100%;
3809
+ left: 50%;
3810
+ -webkit-transform: translateX(-50%);
3811
+ -ms-transform: translateX(-50%);
3812
+ transform: translateX(-50%); }
3813
+ .tooltip.top::before {
3814
+ display: block;
3815
+ width: 0;
3816
+ height: 0;
3817
+ border: inset 0.75rem;
3818
+ content: '';
3819
+ border-bottom-width: 0;
3820
+ border-top-style: solid;
3821
+ border-color: #0a0a0a transparent transparent;
3822
+ top: 100%;
3823
+ bottom: auto; }
3824
+ .tooltip.left::before {
3825
+ display: block;
3826
+ width: 0;
3827
+ height: 0;
3828
+ border: inset 0.75rem;
3829
+ content: '';
3830
+ border-right-width: 0;
3831
+ border-left-style: solid;
3832
+ border-color: transparent transparent transparent #0a0a0a;
3833
+ top: 50%;
3834
+ bottom: auto;
3835
+ left: 100%;
3836
+ -webkit-transform: translateY(-50%);
3837
+ -ms-transform: translateY(-50%);
3838
+ transform: translateY(-50%); }
3839
+ .tooltip.right::before {
3840
+ display: block;
3841
+ width: 0;
3842
+ height: 0;
3843
+ border: inset 0.75rem;
3844
+ content: '';
3845
+ border-left-width: 0;
3846
+ border-right-style: solid;
3847
+ border-color: transparent #0a0a0a transparent transparent;
3848
+ top: 50%;
3849
+ right: 100%;
3850
+ bottom: auto;
3851
+ left: auto;
3852
+ -webkit-transform: translateY(-50%);
3853
+ -ms-transform: translateY(-50%);
3854
+ transform: translateY(-50%); }
3855
+
3856
+ .top-bar {
3857
+ padding: 0.5rem; }
3858
+ .top-bar::before, .top-bar::after {
3859
+ display: table;
3860
+ content: ' '; }
3861
+ .top-bar::after {
3862
+ clear: both; }
3863
+ .top-bar,
3864
+ .top-bar ul {
3865
+ background-color: #e6e6e6; }
3866
+ .top-bar input {
3867
+ max-width: 200px;
3868
+ margin-left: 1rem; }
3869
+ .top-bar .input-group-field {
3870
+ width: 100%;
3871
+ margin-left: 0; }
3872
+ .top-bar input.button {
3873
+ width: auto; }
3874
+ .top-bar .top-bar-left,
3875
+ .top-bar .top-bar-right {
3876
+ width: 100%; }
3877
+ @media print, screen and (min-width: 40em) {
3878
+ .top-bar .top-bar-left,
3879
+ .top-bar .top-bar-right {
3880
+ width: auto; } }
3881
+ @media screen and (max-width: 63.9375em) {
3882
+ .top-bar.stacked-for-medium .top-bar-left,
3883
+ .top-bar.stacked-for-medium .top-bar-right {
3884
+ width: 100%; } }
3885
+ @media screen and (max-width: 74.9375em) {
3886
+ .top-bar.stacked-for-large .top-bar-left,
3887
+ .top-bar.stacked-for-large .top-bar-right {
3888
+ width: 100%; } }
3889
+
3890
+ .top-bar-title {
3891
+ display: inline-block;
3892
+ float: left;
3893
+ padding: 0.5rem 1rem 0.5rem 0; }
3894
+ .top-bar-title .menu-icon {
3895
+ bottom: 2px; }
3896
+
3897
+ .top-bar-left {
3898
+ float: left; }
3899
+
3900
+ .top-bar-right {
3901
+ float: right; }
3902
+
3903
+ .hide {
3904
+ display: none !important; }
3905
+
3906
+ .invisible {
3907
+ visibility: hidden; }
3908
+
3909
+ @media screen and (max-width: 39.9375em) {
3910
+ .hide-for-small-only {
3911
+ display: none !important; } }
3912
+
3913
+ @media screen and (max-width: 0em), screen and (min-width: 40em) {
3914
+ .show-for-small-only {
3915
+ display: none !important; } }
3916
+
3917
+ @media print, screen and (min-width: 40em) {
3918
+ .hide-for-medium {
3919
+ display: none !important; } }
3920
+
3921
+ @media screen and (max-width: 39.9375em) {
3922
+ .show-for-medium {
3923
+ display: none !important; } }
3924
+
3925
+ @media screen and (min-width: 40em) and (max-width: 63.9375em) {
3926
+ .hide-for-medium-only {
3927
+ display: none !important; } }
3928
+
3929
+ @media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
3930
+ .show-for-medium-only {
3931
+ display: none !important; } }
3932
+
3933
+ @media print, screen and (min-width: 64em) {
3934
+ .hide-for-large {
3935
+ display: none !important; } }
3936
+
3937
+ @media screen and (max-width: 63.9375em) {
3938
+ .show-for-large {
3939
+ display: none !important; } }
3940
+
3941
+ @media screen and (min-width: 64em) and (max-width: 74.9375em) {
3942
+ .hide-for-large-only {
3943
+ display: none !important; } }
3944
+
3945
+ @media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
3946
+ .show-for-large-only {
3947
+ display: none !important; } }
3948
+
3949
+ .show-for-sr,
3950
+ .show-on-focus {
3951
+ position: absolute !important;
3952
+ width: 1px;
3953
+ height: 1px;
3954
+ overflow: hidden;
3955
+ clip: rect(0, 0, 0, 0); }
3956
+
3957
+ .show-on-focus:active, .show-on-focus:focus {
3958
+ position: static !important;
3959
+ width: auto;
3960
+ height: auto;
3961
+ overflow: visible;
3962
+ clip: auto; }
3963
+
3964
+ .show-for-landscape,
3965
+ .hide-for-portrait {
3966
+ display: block !important; }
3967
+ @media screen and (orientation: landscape) {
3968
+ .show-for-landscape,
3969
+ .hide-for-portrait {
3970
+ display: block !important; } }
3971
+ @media screen and (orientation: portrait) {
3972
+ .show-for-landscape,
3973
+ .hide-for-portrait {
3974
+ display: none !important; } }
3975
+
3976
+ .hide-for-landscape,
3977
+ .show-for-portrait {
3978
+ display: none !important; }
3979
+ @media screen and (orientation: landscape) {
3980
+ .hide-for-landscape,
3981
+ .show-for-portrait {
3982
+ display: none !important; } }
3983
+ @media screen and (orientation: portrait) {
3984
+ .hide-for-landscape,
3985
+ .show-for-portrait {
3986
+ display: block !important; } }
3987
+
3988
+ .float-left {
3989
+ float: left !important; }
3990
+
3991
+ .float-right {
3992
+ float: right !important; }
3993
+
3994
+ .float-center {
3995
+ display: block;
3996
+ margin-right: auto;
3997
+ margin-left: auto; }
3998
+
3999
+ .clearfix::before, .clearfix::after {
4000
+ display: table;
4001
+ content: ' '; }
4002
+
4003
+ .clearfix::after {
4004
+ clear: both; }
4005
+
4006
+ /*# sourceMappingURL=foundation-rtl.css.map */