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,228 @@
1
+ # This is the customizer's master module list.
2
+ # Each item in the list is a module with any of these keys:
3
+ # - sass: Name of the CSS export. 'grid' becomes '@include foundation-grid;'
4
+ # - js: Name of the JavaScript file. 'accordion' becomes 'foundation.accordion.js'
5
+ # - js_utils: Names of plugin dependencies. 'box' becomes 'foundation.util.box.js'
6
+
7
+ grid:
8
+ sass: grid
9
+
10
+ flex_grid:
11
+ sass: flex-grid
12
+
13
+ flex_classes:
14
+ sass: flex-classes
15
+
16
+ typography:
17
+ sass: typography
18
+
19
+ button:
20
+ sass: button
21
+
22
+ card:
23
+ sass: card
24
+
25
+ forms:
26
+ sass: forms
27
+
28
+ input_range:
29
+ sass: range-input
30
+
31
+ abide:
32
+ js: abide
33
+
34
+ accordion:
35
+ sass: accordion
36
+ js: accordion
37
+ js_utils:
38
+ - keyboard
39
+ - motion
40
+
41
+ accordion_menu:
42
+ sass: accordion-menu
43
+ js: accordionMenu
44
+ js_utils:
45
+ - keyboard
46
+ - motion
47
+ - nest
48
+
49
+ badge:
50
+ sass: badge
51
+
52
+ breadcrumbs:
53
+ sass: breadcrumbs
54
+
55
+ button_group:
56
+ sass: button-group
57
+
58
+ callout:
59
+ sass: callout
60
+
61
+ close_button:
62
+ sass: close-button
63
+
64
+ drilldown_menu:
65
+ sass: drilldown-menu
66
+ js: drilldown
67
+ js_utils:
68
+ - keyboard
69
+ - motion
70
+ - nest
71
+
72
+ dropdown:
73
+ sass: dropdown
74
+ js: dropdown
75
+ js_utils:
76
+ - keyboard
77
+ - box
78
+ - triggers
79
+
80
+ dropdown_menu:
81
+ sass: dropdown-menu
82
+ js: dropdownMenu
83
+ js_utils:
84
+ - keyboard
85
+ - motion
86
+ - box
87
+ - nest
88
+
89
+ equalizer:
90
+ js: equalizer
91
+ js_utils:
92
+ - mediaQuery
93
+ - timerAndImageLoader
94
+
95
+ interchange:
96
+ js: interchange
97
+ js_utils:
98
+ - triggers
99
+ - timerAndImageLoader
100
+
101
+ label:
102
+ sass: label
103
+
104
+ magellan:
105
+ js: magellan
106
+ js_utils:
107
+ - motion
108
+
109
+ media_object:
110
+ sass: media-object
111
+
112
+ menu:
113
+ sass: menu
114
+
115
+ menu_icon:
116
+ sass: menu-icon
117
+
118
+ off_canvas:
119
+ sass: off-canvas
120
+ js: offcanvas
121
+
122
+ orbit:
123
+ sass: orbit
124
+ js: orbit
125
+ js_utils:
126
+ - motion
127
+ - timerAndImageLoader
128
+ - keyboard
129
+ - touch
130
+
131
+ pagination:
132
+ sass: pagination
133
+
134
+ progress_bar:
135
+ sass: progress-bar
136
+
137
+ progress_element:
138
+ sass: progress-element
139
+
140
+ responsive_embed:
141
+ sass: responsive-embed
142
+
143
+ responsive_menu:
144
+ js: responsiveMenu
145
+ js_utils:
146
+ - triggers
147
+ - mediaQuery
148
+
149
+ responsive_toggle:
150
+ js: responsiveToggle
151
+ js_utils:
152
+ - mediaQuery
153
+
154
+ meter_element:
155
+ sass: meter-element
156
+
157
+ slider:
158
+ sass: slider
159
+ js: slider
160
+ js_utils:
161
+ - box
162
+ - touch
163
+ - motion
164
+ - triggers
165
+ - mediaQuery
166
+ - keyboard
167
+
168
+ sticky:
169
+ sass: sticky
170
+ js: sticky
171
+ js_utils:
172
+ - triggers
173
+ - mediaQuery
174
+
175
+ responsive_accordion_tabs:
176
+ js: zf.responsiveAccordionTabs
177
+
178
+ reveal:
179
+ sass: reveal
180
+ js: reveal
181
+ js_utils:
182
+ - box
183
+ - motion
184
+ - triggers
185
+ - mediaQuery
186
+ - keyboard
187
+
188
+ switch:
189
+ sass: switch
190
+
191
+ table:
192
+ sass: table
193
+
194
+ tabs:
195
+ sass: tabs
196
+ js: tabs
197
+ js_utils:
198
+ - keyboard
199
+ - timerAndImageLoader
200
+
201
+ thumbnail:
202
+ sass: thumbnail
203
+
204
+ title_bar:
205
+ sass: title-bar
206
+
207
+ toggler:
208
+ js: toggler
209
+ js_utils:
210
+ - motion
211
+
212
+ tooltip:
213
+ sass: tooltip
214
+ js: tooltip
215
+ js_utils:
216
+ - box
217
+ - triggers
218
+ - mediaQuery
219
+ - motion
220
+
221
+ top_bar:
222
+ sass: top-bar
223
+
224
+ visibility:
225
+ sass: visibility-classes
226
+
227
+ float:
228
+ sass: float-classes
@@ -0,0 +1,11 @@
1
+ {
2
+ "modules": [
3
+ "typography",
4
+ "grid",
5
+ "forms",
6
+ "button",
7
+ "callout",
8
+ "reveal"
9
+ ],
10
+ "variables": {}
11
+ }
@@ -0,0 +1,169 @@
1
+ <!doctype html>
2
+ <html class="no-js" lang="en" dir="ltr">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Foundation for Sites</title>
8
+ <link rel="stylesheet" href="css/foundation.css">
9
+ <link rel="stylesheet" href="css/app.css">
10
+ </head>
11
+ <body>
12
+ <div class="row">
13
+ <div class="large-12 columns">
14
+ <h1>Welcome to Foundation</h1>
15
+ </div>
16
+ </div>
17
+
18
+ <div class="row">
19
+ <div class="large-12 columns">
20
+ <div class="callout">
21
+ <h3>We&rsquo;re stoked you want to try Foundation! </h3>
22
+ <p>To get going, this file (index.html) includes some basic styles you can modify, play around with, or totally destroy to get going.</p>
23
+ <p>Once you've exhausted the fun in this document, you should check out:</p>
24
+ <div class="row">
25
+ <div class="large-4 medium-4 columns">
26
+ <p><a href="http://foundation.zurb.com/docs">Foundation Documentation</a><br />Everything you need to know about using the framework.</p>
27
+ </div>
28
+ <div class="large-4 medium-4 columns">
29
+ <p><a href="http://zurb.com/university/code-skills">Foundation Code Skills</a><br />These online courses offer you a chance to better understand how Foundation works and how you can master it to create awesome projects.</p>
30
+ </div>
31
+ <div class="large-4 medium-4 columns">
32
+ <p><a href="http://foundation.zurb.com/forum">Foundation Forum</a><br />Join the Foundation community to ask a question or show off your knowlege.</p>
33
+ </div>
34
+ </div>
35
+ <div class="row">
36
+ <div class="large-4 medium-4 medium-push-2 columns">
37
+ <p><a href="http://github.com/zurb/foundation">Foundation on Github</a><br />Latest code, issue reports, feature requests and more.</p>
38
+ </div>
39
+ <div class="large-4 medium-4 medium-pull-2 columns">
40
+ <p><a href="https://twitter.com/ZURBfoundation">@zurbfoundation</a><br />Ping us on Twitter if you have questions. When you build something with this we'd love to see it (and send you a totally boss sticker).</p>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </div>
46
+
47
+ <div class="row">
48
+ <div class="large-8 medium-8 columns">
49
+ <h5>Here&rsquo;s your basic grid:</h5>
50
+ <!-- Grid Example -->
51
+
52
+ <div class="row">
53
+ <div class="large-12 columns">
54
+ <div class="primary callout">
55
+ <p><strong>This is a twelve column section in a row.</strong> Each of these includes a div.callout element so you can see where the columns are - it's not required at all for the grid.</p>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ <div class="row">
60
+ <div class="large-6 medium-6 columns">
61
+ <div class="primary callout">
62
+ <p>Six columns</p>
63
+ </div>
64
+ </div>
65
+ <div class="large-6 medium-6 columns">
66
+ <div class="primary callout">
67
+ <p>Six columns</p>
68
+ </div>
69
+ </div>
70
+ </div>
71
+ <div class="row">
72
+ <div class="large-4 medium-4 small-4 columns">
73
+ <div class="primary callout">
74
+ <p>Four columns</p>
75
+ </div>
76
+ </div>
77
+ <div class="large-4 medium-4 small-4 columns">
78
+ <div class="primary callout">
79
+ <p>Four columns</p>
80
+ </div>
81
+ </div>
82
+ <div class="large-4 medium-4 small-4 columns">
83
+ <div class="primary callout">
84
+ <p>Four columns</p>
85
+ </div>
86
+ </div>
87
+ </div>
88
+
89
+ <hr />
90
+
91
+ <h5>We bet you&rsquo;ll need a form somewhere:</h5>
92
+ <form>
93
+ <div class="row">
94
+ <div class="large-12 columns">
95
+ <label>Input Label</label>
96
+ <input type="text" placeholder="large-12.columns" />
97
+ </div>
98
+ </div>
99
+ <div class="row">
100
+ <div class="large-4 medium-4 columns">
101
+ <label>Input Label</label>
102
+ <input type="text" placeholder="large-4.columns" />
103
+ </div>
104
+ <div class="large-4 medium-4 columns">
105
+ <label>Input Label</label>
106
+ <input type="text" placeholder="large-4.columns" />
107
+ </div>
108
+ <div class="large-4 medium-4 columns">
109
+ <div class="row collapse">
110
+ <label>Input Label</label>
111
+ <div class="input-group">
112
+ <input type="text" placeholder="small-9.columns" class="input-group-field" />
113
+ <span class="input-group-label">.com</span>
114
+ </div>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ <div class="row">
119
+ <div class="large-12 columns">
120
+ <label>Select Box</label>
121
+ <select>
122
+ <option value="husker">Husker</option>
123
+ <option value="starbuck">Starbuck</option>
124
+ <option value="hotdog">Hot Dog</option>
125
+ <option value="apollo">Apollo</option>
126
+ </select>
127
+ </div>
128
+ </div>
129
+ <div class="row">
130
+ <div class="large-6 medium-6 columns">
131
+ <label>Choose Your Favorite</label>
132
+ <input type="radio" name="pokemon" value="Red" id="pokemonRed"><label for="pokemonRed">Radio 1</label>
133
+ <input type="radio" name="pokemon" value="Blue" id="pokemonBlue"><label for="pokemonBlue">Radio 2</label>
134
+ </div>
135
+ <div class="large-6 medium-6 columns">
136
+ <label>Check these out</label>
137
+ <input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label>
138
+ <input id="checkbox2" type="checkbox"><label for="checkbox2">Checkbox 2</label>
139
+ </div>
140
+ </div>
141
+ <div class="row">
142
+ <div class="large-12 columns">
143
+ <label>Textarea Label</label>
144
+ <textarea placeholder="small-12.columns"></textarea>
145
+ </div>
146
+ </div>
147
+ </form>
148
+ </div>
149
+
150
+ <div class="large-4 medium-4 columns">
151
+ <h5>Try one of these buttons:</h5>
152
+ <p><a href="#" class="button">Simple Button</a><br/>
153
+ <a href="#" class="success button">Success Btn</a><br/>
154
+ <a href="#" class="alert button">Alert Btn</a><br/>
155
+ <a href="#" class="secondary button">Secondary Btn</a></p>
156
+ <div class="callout">
157
+ <h5>So many components, girl!</h5>
158
+ <p>A whole kitchen sink of goodies comes with Foundation. Check out the docs to see them all, along with details on making them your own.</p>
159
+ <a href="http://foundation.zurb.com/sites/docs/" class="small button">Go to Foundation Docs</a>
160
+ </div>
161
+ </div>
162
+ </div>
163
+
164
+ <script src="js/vendor/jquery.js"></script>
165
+ <script src="js/vendor/what-input.js"></script>
166
+ <script src="js/vendor/foundation.js"></script>
167
+ <script src="js/app.js"></script>
168
+ </body>
169
+ </html>
@@ -0,0 +1,4566 @@
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
+ display: -webkit-box;
505
+ display: -webkit-flex;
506
+ display: -ms-flexbox;
507
+ display: flex;
508
+ -webkit-flex-flow: row wrap;
509
+ -ms-flex-flow: row wrap;
510
+ flex-flow: row wrap; }
511
+ .row .row {
512
+ margin-right: -0.625rem;
513
+ margin-left: -0.625rem; }
514
+ @media print, screen and (min-width: 40em) {
515
+ .row .row {
516
+ margin-right: -0.9375rem;
517
+ margin-left: -0.9375rem; } }
518
+ @media print, screen and (min-width: 64em) {
519
+ .row .row {
520
+ margin-right: -0.9375rem;
521
+ margin-left: -0.9375rem; } }
522
+ .row .row.collapse {
523
+ margin-right: 0;
524
+ margin-left: 0; }
525
+ .row.expanded {
526
+ max-width: none; }
527
+ .row:not(.expanded) .row {
528
+ max-width: none; }
529
+ .row.collapse > .column, .row.collapse > .columns {
530
+ padding-right: 0;
531
+ padding-left: 0; }
532
+ .row.is-collapse-child,
533
+ .row.collapse > .column > .row,
534
+ .row.collapse > .columns > .row {
535
+ margin-right: 0;
536
+ margin-left: 0; }
537
+
538
+ .column, .columns {
539
+ -webkit-box-flex: 1;
540
+ -webkit-flex: 1 1 0px;
541
+ -ms-flex: 1 1 0px;
542
+ flex: 1 1 0px;
543
+ padding-right: 0.625rem;
544
+ padding-left: 0.625rem;
545
+ min-width: initial; }
546
+ @media print, screen and (min-width: 40em) {
547
+ .column, .columns {
548
+ padding-right: 0.9375rem;
549
+ padding-left: 0.9375rem; } }
550
+
551
+ .column.row.row, .row.row.columns {
552
+ float: none;
553
+ display: block; }
554
+
555
+ .row .column.row.row, .row .row.row.columns {
556
+ margin-right: 0;
557
+ margin-left: 0;
558
+ padding-right: 0;
559
+ padding-left: 0; }
560
+
561
+ .flex-container {
562
+ display: -webkit-box;
563
+ display: -webkit-flex;
564
+ display: -ms-flexbox;
565
+ display: flex; }
566
+
567
+ .flex-child-auto {
568
+ -webkit-box-flex: 1;
569
+ -webkit-flex: 1 1 auto;
570
+ -ms-flex: 1 1 auto;
571
+ flex: 1 1 auto; }
572
+
573
+ .flex-child-grow {
574
+ -webkit-box-flex: 1;
575
+ -webkit-flex: 1 0 auto;
576
+ -ms-flex: 1 0 auto;
577
+ flex: 1 0 auto; }
578
+
579
+ .flex-child-shrink {
580
+ -webkit-box-flex: 0;
581
+ -webkit-flex: 0 1 auto;
582
+ -ms-flex: 0 1 auto;
583
+ flex: 0 1 auto; }
584
+
585
+ .flex-dir-row {
586
+ -webkit-box-orient: horizontal;
587
+ -webkit-box-direction: normal;
588
+ -webkit-flex-direction: row;
589
+ -ms-flex-direction: row;
590
+ flex-direction: row; }
591
+
592
+ .flex-dir-row-reverse {
593
+ -webkit-box-orient: horizontal;
594
+ -webkit-box-direction: reverse;
595
+ -webkit-flex-direction: row-reverse;
596
+ -ms-flex-direction: row-reverse;
597
+ flex-direction: row-reverse; }
598
+
599
+ .flex-dir-column {
600
+ -webkit-box-orient: vertical;
601
+ -webkit-box-direction: normal;
602
+ -webkit-flex-direction: column;
603
+ -ms-flex-direction: column;
604
+ flex-direction: column; }
605
+
606
+ .flex-dir-column-reverse {
607
+ -webkit-box-orient: vertical;
608
+ -webkit-box-direction: reverse;
609
+ -webkit-flex-direction: column-reverse;
610
+ -ms-flex-direction: column-reverse;
611
+ flex-direction: column-reverse; }
612
+
613
+ .small-1 {
614
+ -webkit-box-flex: 0;
615
+ -webkit-flex: 0 0 8.33333%;
616
+ -ms-flex: 0 0 8.33333%;
617
+ flex: 0 0 8.33333%;
618
+ max-width: 8.33333%; }
619
+
620
+ .small-offset-0 {
621
+ margin-left: 0%; }
622
+
623
+ .small-2 {
624
+ -webkit-box-flex: 0;
625
+ -webkit-flex: 0 0 16.66667%;
626
+ -ms-flex: 0 0 16.66667%;
627
+ flex: 0 0 16.66667%;
628
+ max-width: 16.66667%; }
629
+
630
+ .small-offset-1 {
631
+ margin-left: 8.33333%; }
632
+
633
+ .small-3 {
634
+ -webkit-box-flex: 0;
635
+ -webkit-flex: 0 0 25%;
636
+ -ms-flex: 0 0 25%;
637
+ flex: 0 0 25%;
638
+ max-width: 25%; }
639
+
640
+ .small-offset-2 {
641
+ margin-left: 16.66667%; }
642
+
643
+ .small-4 {
644
+ -webkit-box-flex: 0;
645
+ -webkit-flex: 0 0 33.33333%;
646
+ -ms-flex: 0 0 33.33333%;
647
+ flex: 0 0 33.33333%;
648
+ max-width: 33.33333%; }
649
+
650
+ .small-offset-3 {
651
+ margin-left: 25%; }
652
+
653
+ .small-5 {
654
+ -webkit-box-flex: 0;
655
+ -webkit-flex: 0 0 41.66667%;
656
+ -ms-flex: 0 0 41.66667%;
657
+ flex: 0 0 41.66667%;
658
+ max-width: 41.66667%; }
659
+
660
+ .small-offset-4 {
661
+ margin-left: 33.33333%; }
662
+
663
+ .small-6 {
664
+ -webkit-box-flex: 0;
665
+ -webkit-flex: 0 0 50%;
666
+ -ms-flex: 0 0 50%;
667
+ flex: 0 0 50%;
668
+ max-width: 50%; }
669
+
670
+ .small-offset-5 {
671
+ margin-left: 41.66667%; }
672
+
673
+ .small-7 {
674
+ -webkit-box-flex: 0;
675
+ -webkit-flex: 0 0 58.33333%;
676
+ -ms-flex: 0 0 58.33333%;
677
+ flex: 0 0 58.33333%;
678
+ max-width: 58.33333%; }
679
+
680
+ .small-offset-6 {
681
+ margin-left: 50%; }
682
+
683
+ .small-8 {
684
+ -webkit-box-flex: 0;
685
+ -webkit-flex: 0 0 66.66667%;
686
+ -ms-flex: 0 0 66.66667%;
687
+ flex: 0 0 66.66667%;
688
+ max-width: 66.66667%; }
689
+
690
+ .small-offset-7 {
691
+ margin-left: 58.33333%; }
692
+
693
+ .small-9 {
694
+ -webkit-box-flex: 0;
695
+ -webkit-flex: 0 0 75%;
696
+ -ms-flex: 0 0 75%;
697
+ flex: 0 0 75%;
698
+ max-width: 75%; }
699
+
700
+ .small-offset-8 {
701
+ margin-left: 66.66667%; }
702
+
703
+ .small-10 {
704
+ -webkit-box-flex: 0;
705
+ -webkit-flex: 0 0 83.33333%;
706
+ -ms-flex: 0 0 83.33333%;
707
+ flex: 0 0 83.33333%;
708
+ max-width: 83.33333%; }
709
+
710
+ .small-offset-9 {
711
+ margin-left: 75%; }
712
+
713
+ .small-11 {
714
+ -webkit-box-flex: 0;
715
+ -webkit-flex: 0 0 91.66667%;
716
+ -ms-flex: 0 0 91.66667%;
717
+ flex: 0 0 91.66667%;
718
+ max-width: 91.66667%; }
719
+
720
+ .small-offset-10 {
721
+ margin-left: 83.33333%; }
722
+
723
+ .small-12 {
724
+ -webkit-box-flex: 0;
725
+ -webkit-flex: 0 0 100%;
726
+ -ms-flex: 0 0 100%;
727
+ flex: 0 0 100%;
728
+ max-width: 100%; }
729
+
730
+ .small-offset-11 {
731
+ margin-left: 91.66667%; }
732
+
733
+ .small-order-1 {
734
+ -webkit-box-ordinal-group: 2;
735
+ -webkit-order: 1;
736
+ -ms-flex-order: 1;
737
+ order: 1; }
738
+
739
+ .small-order-2 {
740
+ -webkit-box-ordinal-group: 3;
741
+ -webkit-order: 2;
742
+ -ms-flex-order: 2;
743
+ order: 2; }
744
+
745
+ .small-order-3 {
746
+ -webkit-box-ordinal-group: 4;
747
+ -webkit-order: 3;
748
+ -ms-flex-order: 3;
749
+ order: 3; }
750
+
751
+ .small-order-4 {
752
+ -webkit-box-ordinal-group: 5;
753
+ -webkit-order: 4;
754
+ -ms-flex-order: 4;
755
+ order: 4; }
756
+
757
+ .small-order-5 {
758
+ -webkit-box-ordinal-group: 6;
759
+ -webkit-order: 5;
760
+ -ms-flex-order: 5;
761
+ order: 5; }
762
+
763
+ .small-order-6 {
764
+ -webkit-box-ordinal-group: 7;
765
+ -webkit-order: 6;
766
+ -ms-flex-order: 6;
767
+ order: 6; }
768
+
769
+ .small-up-1 {
770
+ -webkit-flex-wrap: wrap;
771
+ -ms-flex-wrap: wrap;
772
+ flex-wrap: wrap; }
773
+ .small-up-1 > .column, .small-up-1 > .columns {
774
+ -webkit-box-flex: 0;
775
+ -webkit-flex: 0 0 100%;
776
+ -ms-flex: 0 0 100%;
777
+ flex: 0 0 100%;
778
+ max-width: 100%; }
779
+
780
+ .small-up-2 {
781
+ -webkit-flex-wrap: wrap;
782
+ -ms-flex-wrap: wrap;
783
+ flex-wrap: wrap; }
784
+ .small-up-2 > .column, .small-up-2 > .columns {
785
+ -webkit-box-flex: 0;
786
+ -webkit-flex: 0 0 50%;
787
+ -ms-flex: 0 0 50%;
788
+ flex: 0 0 50%;
789
+ max-width: 50%; }
790
+
791
+ .small-up-3 {
792
+ -webkit-flex-wrap: wrap;
793
+ -ms-flex-wrap: wrap;
794
+ flex-wrap: wrap; }
795
+ .small-up-3 > .column, .small-up-3 > .columns {
796
+ -webkit-box-flex: 0;
797
+ -webkit-flex: 0 0 33.33333%;
798
+ -ms-flex: 0 0 33.33333%;
799
+ flex: 0 0 33.33333%;
800
+ max-width: 33.33333%; }
801
+
802
+ .small-up-4 {
803
+ -webkit-flex-wrap: wrap;
804
+ -ms-flex-wrap: wrap;
805
+ flex-wrap: wrap; }
806
+ .small-up-4 > .column, .small-up-4 > .columns {
807
+ -webkit-box-flex: 0;
808
+ -webkit-flex: 0 0 25%;
809
+ -ms-flex: 0 0 25%;
810
+ flex: 0 0 25%;
811
+ max-width: 25%; }
812
+
813
+ .small-up-5 {
814
+ -webkit-flex-wrap: wrap;
815
+ -ms-flex-wrap: wrap;
816
+ flex-wrap: wrap; }
817
+ .small-up-5 > .column, .small-up-5 > .columns {
818
+ -webkit-box-flex: 0;
819
+ -webkit-flex: 0 0 20%;
820
+ -ms-flex: 0 0 20%;
821
+ flex: 0 0 20%;
822
+ max-width: 20%; }
823
+
824
+ .small-up-6 {
825
+ -webkit-flex-wrap: wrap;
826
+ -ms-flex-wrap: wrap;
827
+ flex-wrap: wrap; }
828
+ .small-up-6 > .column, .small-up-6 > .columns {
829
+ -webkit-box-flex: 0;
830
+ -webkit-flex: 0 0 16.66667%;
831
+ -ms-flex: 0 0 16.66667%;
832
+ flex: 0 0 16.66667%;
833
+ max-width: 16.66667%; }
834
+
835
+ .small-up-7 {
836
+ -webkit-flex-wrap: wrap;
837
+ -ms-flex-wrap: wrap;
838
+ flex-wrap: wrap; }
839
+ .small-up-7 > .column, .small-up-7 > .columns {
840
+ -webkit-box-flex: 0;
841
+ -webkit-flex: 0 0 14.28571%;
842
+ -ms-flex: 0 0 14.28571%;
843
+ flex: 0 0 14.28571%;
844
+ max-width: 14.28571%; }
845
+
846
+ .small-up-8 {
847
+ -webkit-flex-wrap: wrap;
848
+ -ms-flex-wrap: wrap;
849
+ flex-wrap: wrap; }
850
+ .small-up-8 > .column, .small-up-8 > .columns {
851
+ -webkit-box-flex: 0;
852
+ -webkit-flex: 0 0 12.5%;
853
+ -ms-flex: 0 0 12.5%;
854
+ flex: 0 0 12.5%;
855
+ max-width: 12.5%; }
856
+
857
+ .small-collapse > .column, .small-collapse > .columns {
858
+ padding-right: 0;
859
+ padding-left: 0; }
860
+
861
+ .small-uncollapse > .column, .small-uncollapse > .columns {
862
+ padding-right: 0.625rem;
863
+ padding-left: 0.625rem; }
864
+
865
+ @media print, screen and (min-width: 40em) {
866
+ .medium-1 {
867
+ -webkit-box-flex: 0;
868
+ -webkit-flex: 0 0 8.33333%;
869
+ -ms-flex: 0 0 8.33333%;
870
+ flex: 0 0 8.33333%;
871
+ max-width: 8.33333%; }
872
+ .medium-offset-0 {
873
+ margin-left: 0%; }
874
+ .medium-2 {
875
+ -webkit-box-flex: 0;
876
+ -webkit-flex: 0 0 16.66667%;
877
+ -ms-flex: 0 0 16.66667%;
878
+ flex: 0 0 16.66667%;
879
+ max-width: 16.66667%; }
880
+ .medium-offset-1 {
881
+ margin-left: 8.33333%; }
882
+ .medium-3 {
883
+ -webkit-box-flex: 0;
884
+ -webkit-flex: 0 0 25%;
885
+ -ms-flex: 0 0 25%;
886
+ flex: 0 0 25%;
887
+ max-width: 25%; }
888
+ .medium-offset-2 {
889
+ margin-left: 16.66667%; }
890
+ .medium-4 {
891
+ -webkit-box-flex: 0;
892
+ -webkit-flex: 0 0 33.33333%;
893
+ -ms-flex: 0 0 33.33333%;
894
+ flex: 0 0 33.33333%;
895
+ max-width: 33.33333%; }
896
+ .medium-offset-3 {
897
+ margin-left: 25%; }
898
+ .medium-5 {
899
+ -webkit-box-flex: 0;
900
+ -webkit-flex: 0 0 41.66667%;
901
+ -ms-flex: 0 0 41.66667%;
902
+ flex: 0 0 41.66667%;
903
+ max-width: 41.66667%; }
904
+ .medium-offset-4 {
905
+ margin-left: 33.33333%; }
906
+ .medium-6 {
907
+ -webkit-box-flex: 0;
908
+ -webkit-flex: 0 0 50%;
909
+ -ms-flex: 0 0 50%;
910
+ flex: 0 0 50%;
911
+ max-width: 50%; }
912
+ .medium-offset-5 {
913
+ margin-left: 41.66667%; }
914
+ .medium-7 {
915
+ -webkit-box-flex: 0;
916
+ -webkit-flex: 0 0 58.33333%;
917
+ -ms-flex: 0 0 58.33333%;
918
+ flex: 0 0 58.33333%;
919
+ max-width: 58.33333%; }
920
+ .medium-offset-6 {
921
+ margin-left: 50%; }
922
+ .medium-8 {
923
+ -webkit-box-flex: 0;
924
+ -webkit-flex: 0 0 66.66667%;
925
+ -ms-flex: 0 0 66.66667%;
926
+ flex: 0 0 66.66667%;
927
+ max-width: 66.66667%; }
928
+ .medium-offset-7 {
929
+ margin-left: 58.33333%; }
930
+ .medium-9 {
931
+ -webkit-box-flex: 0;
932
+ -webkit-flex: 0 0 75%;
933
+ -ms-flex: 0 0 75%;
934
+ flex: 0 0 75%;
935
+ max-width: 75%; }
936
+ .medium-offset-8 {
937
+ margin-left: 66.66667%; }
938
+ .medium-10 {
939
+ -webkit-box-flex: 0;
940
+ -webkit-flex: 0 0 83.33333%;
941
+ -ms-flex: 0 0 83.33333%;
942
+ flex: 0 0 83.33333%;
943
+ max-width: 83.33333%; }
944
+ .medium-offset-9 {
945
+ margin-left: 75%; }
946
+ .medium-11 {
947
+ -webkit-box-flex: 0;
948
+ -webkit-flex: 0 0 91.66667%;
949
+ -ms-flex: 0 0 91.66667%;
950
+ flex: 0 0 91.66667%;
951
+ max-width: 91.66667%; }
952
+ .medium-offset-10 {
953
+ margin-left: 83.33333%; }
954
+ .medium-12 {
955
+ -webkit-box-flex: 0;
956
+ -webkit-flex: 0 0 100%;
957
+ -ms-flex: 0 0 100%;
958
+ flex: 0 0 100%;
959
+ max-width: 100%; }
960
+ .medium-offset-11 {
961
+ margin-left: 91.66667%; }
962
+ .medium-order-1 {
963
+ -webkit-box-ordinal-group: 2;
964
+ -webkit-order: 1;
965
+ -ms-flex-order: 1;
966
+ order: 1; }
967
+ .medium-order-2 {
968
+ -webkit-box-ordinal-group: 3;
969
+ -webkit-order: 2;
970
+ -ms-flex-order: 2;
971
+ order: 2; }
972
+ .medium-order-3 {
973
+ -webkit-box-ordinal-group: 4;
974
+ -webkit-order: 3;
975
+ -ms-flex-order: 3;
976
+ order: 3; }
977
+ .medium-order-4 {
978
+ -webkit-box-ordinal-group: 5;
979
+ -webkit-order: 4;
980
+ -ms-flex-order: 4;
981
+ order: 4; }
982
+ .medium-order-5 {
983
+ -webkit-box-ordinal-group: 6;
984
+ -webkit-order: 5;
985
+ -ms-flex-order: 5;
986
+ order: 5; }
987
+ .medium-order-6 {
988
+ -webkit-box-ordinal-group: 7;
989
+ -webkit-order: 6;
990
+ -ms-flex-order: 6;
991
+ order: 6; }
992
+ .medium-up-1 {
993
+ -webkit-flex-wrap: wrap;
994
+ -ms-flex-wrap: wrap;
995
+ flex-wrap: wrap; }
996
+ .medium-up-1 > .column, .medium-up-1 > .columns {
997
+ -webkit-box-flex: 0;
998
+ -webkit-flex: 0 0 100%;
999
+ -ms-flex: 0 0 100%;
1000
+ flex: 0 0 100%;
1001
+ max-width: 100%; }
1002
+ .medium-up-2 {
1003
+ -webkit-flex-wrap: wrap;
1004
+ -ms-flex-wrap: wrap;
1005
+ flex-wrap: wrap; }
1006
+ .medium-up-2 > .column, .medium-up-2 > .columns {
1007
+ -webkit-box-flex: 0;
1008
+ -webkit-flex: 0 0 50%;
1009
+ -ms-flex: 0 0 50%;
1010
+ flex: 0 0 50%;
1011
+ max-width: 50%; }
1012
+ .medium-up-3 {
1013
+ -webkit-flex-wrap: wrap;
1014
+ -ms-flex-wrap: wrap;
1015
+ flex-wrap: wrap; }
1016
+ .medium-up-3 > .column, .medium-up-3 > .columns {
1017
+ -webkit-box-flex: 0;
1018
+ -webkit-flex: 0 0 33.33333%;
1019
+ -ms-flex: 0 0 33.33333%;
1020
+ flex: 0 0 33.33333%;
1021
+ max-width: 33.33333%; }
1022
+ .medium-up-4 {
1023
+ -webkit-flex-wrap: wrap;
1024
+ -ms-flex-wrap: wrap;
1025
+ flex-wrap: wrap; }
1026
+ .medium-up-4 > .column, .medium-up-4 > .columns {
1027
+ -webkit-box-flex: 0;
1028
+ -webkit-flex: 0 0 25%;
1029
+ -ms-flex: 0 0 25%;
1030
+ flex: 0 0 25%;
1031
+ max-width: 25%; }
1032
+ .medium-up-5 {
1033
+ -webkit-flex-wrap: wrap;
1034
+ -ms-flex-wrap: wrap;
1035
+ flex-wrap: wrap; }
1036
+ .medium-up-5 > .column, .medium-up-5 > .columns {
1037
+ -webkit-box-flex: 0;
1038
+ -webkit-flex: 0 0 20%;
1039
+ -ms-flex: 0 0 20%;
1040
+ flex: 0 0 20%;
1041
+ max-width: 20%; }
1042
+ .medium-up-6 {
1043
+ -webkit-flex-wrap: wrap;
1044
+ -ms-flex-wrap: wrap;
1045
+ flex-wrap: wrap; }
1046
+ .medium-up-6 > .column, .medium-up-6 > .columns {
1047
+ -webkit-box-flex: 0;
1048
+ -webkit-flex: 0 0 16.66667%;
1049
+ -ms-flex: 0 0 16.66667%;
1050
+ flex: 0 0 16.66667%;
1051
+ max-width: 16.66667%; }
1052
+ .medium-up-7 {
1053
+ -webkit-flex-wrap: wrap;
1054
+ -ms-flex-wrap: wrap;
1055
+ flex-wrap: wrap; }
1056
+ .medium-up-7 > .column, .medium-up-7 > .columns {
1057
+ -webkit-box-flex: 0;
1058
+ -webkit-flex: 0 0 14.28571%;
1059
+ -ms-flex: 0 0 14.28571%;
1060
+ flex: 0 0 14.28571%;
1061
+ max-width: 14.28571%; }
1062
+ .medium-up-8 {
1063
+ -webkit-flex-wrap: wrap;
1064
+ -ms-flex-wrap: wrap;
1065
+ flex-wrap: wrap; }
1066
+ .medium-up-8 > .column, .medium-up-8 > .columns {
1067
+ -webkit-box-flex: 0;
1068
+ -webkit-flex: 0 0 12.5%;
1069
+ -ms-flex: 0 0 12.5%;
1070
+ flex: 0 0 12.5%;
1071
+ max-width: 12.5%; } }
1072
+
1073
+ @media print, screen and (min-width: 40em) and (min-width: 40em) {
1074
+ .medium-expand {
1075
+ -webkit-box-flex: 1;
1076
+ -webkit-flex: 1 1 0px;
1077
+ -ms-flex: 1 1 0px;
1078
+ flex: 1 1 0px; } }
1079
+
1080
+ @media print, screen and (min-width: 40em) {
1081
+ .medium-flex-dir-row {
1082
+ -webkit-box-orient: horizontal;
1083
+ -webkit-box-direction: normal;
1084
+ -webkit-flex-direction: row;
1085
+ -ms-flex-direction: row;
1086
+ flex-direction: row; }
1087
+ .medium-flex-dir-row-reverse {
1088
+ -webkit-box-orient: horizontal;
1089
+ -webkit-box-direction: reverse;
1090
+ -webkit-flex-direction: row-reverse;
1091
+ -ms-flex-direction: row-reverse;
1092
+ flex-direction: row-reverse; }
1093
+ .medium-flex-dir-column {
1094
+ -webkit-box-orient: vertical;
1095
+ -webkit-box-direction: normal;
1096
+ -webkit-flex-direction: column;
1097
+ -ms-flex-direction: column;
1098
+ flex-direction: column; }
1099
+ .medium-flex-dir-column-reverse {
1100
+ -webkit-box-orient: vertical;
1101
+ -webkit-box-direction: reverse;
1102
+ -webkit-flex-direction: column-reverse;
1103
+ -ms-flex-direction: column-reverse;
1104
+ flex-direction: column-reverse; }
1105
+ .medium-flex-child-auto {
1106
+ -webkit-box-flex: 1;
1107
+ -webkit-flex: 1 1 auto;
1108
+ -ms-flex: 1 1 auto;
1109
+ flex: 1 1 auto; }
1110
+ .medium-flex-child-grow {
1111
+ -webkit-box-flex: 1;
1112
+ -webkit-flex: 1 0 auto;
1113
+ -ms-flex: 1 0 auto;
1114
+ flex: 1 0 auto; }
1115
+ .medium-flex-child-shrink {
1116
+ -webkit-box-flex: 0;
1117
+ -webkit-flex: 0 1 auto;
1118
+ -ms-flex: 0 1 auto;
1119
+ flex: 0 1 auto; } }
1120
+
1121
+ .row.medium-unstack > .column, .row.medium-unstack > .columns {
1122
+ -webkit-box-flex: 0;
1123
+ -webkit-flex: 0 0 100%;
1124
+ -ms-flex: 0 0 100%;
1125
+ flex: 0 0 100%; }
1126
+ @media print, screen and (min-width: 40em) {
1127
+ .row.medium-unstack > .column, .row.medium-unstack > .columns {
1128
+ -webkit-box-flex: 1;
1129
+ -webkit-flex: 1 1 0px;
1130
+ -ms-flex: 1 1 0px;
1131
+ flex: 1 1 0px; } }
1132
+
1133
+ @media print, screen and (min-width: 40em) {
1134
+ .medium-collapse > .column, .medium-collapse > .columns {
1135
+ padding-right: 0;
1136
+ padding-left: 0; }
1137
+ .medium-uncollapse > .column, .medium-uncollapse > .columns {
1138
+ padding-right: 0.9375rem;
1139
+ padding-left: 0.9375rem; } }
1140
+
1141
+ @media print, screen and (min-width: 64em) {
1142
+ .large-1 {
1143
+ -webkit-box-flex: 0;
1144
+ -webkit-flex: 0 0 8.33333%;
1145
+ -ms-flex: 0 0 8.33333%;
1146
+ flex: 0 0 8.33333%;
1147
+ max-width: 8.33333%; }
1148
+ .large-offset-0 {
1149
+ margin-left: 0%; }
1150
+ .large-2 {
1151
+ -webkit-box-flex: 0;
1152
+ -webkit-flex: 0 0 16.66667%;
1153
+ -ms-flex: 0 0 16.66667%;
1154
+ flex: 0 0 16.66667%;
1155
+ max-width: 16.66667%; }
1156
+ .large-offset-1 {
1157
+ margin-left: 8.33333%; }
1158
+ .large-3 {
1159
+ -webkit-box-flex: 0;
1160
+ -webkit-flex: 0 0 25%;
1161
+ -ms-flex: 0 0 25%;
1162
+ flex: 0 0 25%;
1163
+ max-width: 25%; }
1164
+ .large-offset-2 {
1165
+ margin-left: 16.66667%; }
1166
+ .large-4 {
1167
+ -webkit-box-flex: 0;
1168
+ -webkit-flex: 0 0 33.33333%;
1169
+ -ms-flex: 0 0 33.33333%;
1170
+ flex: 0 0 33.33333%;
1171
+ max-width: 33.33333%; }
1172
+ .large-offset-3 {
1173
+ margin-left: 25%; }
1174
+ .large-5 {
1175
+ -webkit-box-flex: 0;
1176
+ -webkit-flex: 0 0 41.66667%;
1177
+ -ms-flex: 0 0 41.66667%;
1178
+ flex: 0 0 41.66667%;
1179
+ max-width: 41.66667%; }
1180
+ .large-offset-4 {
1181
+ margin-left: 33.33333%; }
1182
+ .large-6 {
1183
+ -webkit-box-flex: 0;
1184
+ -webkit-flex: 0 0 50%;
1185
+ -ms-flex: 0 0 50%;
1186
+ flex: 0 0 50%;
1187
+ max-width: 50%; }
1188
+ .large-offset-5 {
1189
+ margin-left: 41.66667%; }
1190
+ .large-7 {
1191
+ -webkit-box-flex: 0;
1192
+ -webkit-flex: 0 0 58.33333%;
1193
+ -ms-flex: 0 0 58.33333%;
1194
+ flex: 0 0 58.33333%;
1195
+ max-width: 58.33333%; }
1196
+ .large-offset-6 {
1197
+ margin-left: 50%; }
1198
+ .large-8 {
1199
+ -webkit-box-flex: 0;
1200
+ -webkit-flex: 0 0 66.66667%;
1201
+ -ms-flex: 0 0 66.66667%;
1202
+ flex: 0 0 66.66667%;
1203
+ max-width: 66.66667%; }
1204
+ .large-offset-7 {
1205
+ margin-left: 58.33333%; }
1206
+ .large-9 {
1207
+ -webkit-box-flex: 0;
1208
+ -webkit-flex: 0 0 75%;
1209
+ -ms-flex: 0 0 75%;
1210
+ flex: 0 0 75%;
1211
+ max-width: 75%; }
1212
+ .large-offset-8 {
1213
+ margin-left: 66.66667%; }
1214
+ .large-10 {
1215
+ -webkit-box-flex: 0;
1216
+ -webkit-flex: 0 0 83.33333%;
1217
+ -ms-flex: 0 0 83.33333%;
1218
+ flex: 0 0 83.33333%;
1219
+ max-width: 83.33333%; }
1220
+ .large-offset-9 {
1221
+ margin-left: 75%; }
1222
+ .large-11 {
1223
+ -webkit-box-flex: 0;
1224
+ -webkit-flex: 0 0 91.66667%;
1225
+ -ms-flex: 0 0 91.66667%;
1226
+ flex: 0 0 91.66667%;
1227
+ max-width: 91.66667%; }
1228
+ .large-offset-10 {
1229
+ margin-left: 83.33333%; }
1230
+ .large-12 {
1231
+ -webkit-box-flex: 0;
1232
+ -webkit-flex: 0 0 100%;
1233
+ -ms-flex: 0 0 100%;
1234
+ flex: 0 0 100%;
1235
+ max-width: 100%; }
1236
+ .large-offset-11 {
1237
+ margin-left: 91.66667%; }
1238
+ .large-order-1 {
1239
+ -webkit-box-ordinal-group: 2;
1240
+ -webkit-order: 1;
1241
+ -ms-flex-order: 1;
1242
+ order: 1; }
1243
+ .large-order-2 {
1244
+ -webkit-box-ordinal-group: 3;
1245
+ -webkit-order: 2;
1246
+ -ms-flex-order: 2;
1247
+ order: 2; }
1248
+ .large-order-3 {
1249
+ -webkit-box-ordinal-group: 4;
1250
+ -webkit-order: 3;
1251
+ -ms-flex-order: 3;
1252
+ order: 3; }
1253
+ .large-order-4 {
1254
+ -webkit-box-ordinal-group: 5;
1255
+ -webkit-order: 4;
1256
+ -ms-flex-order: 4;
1257
+ order: 4; }
1258
+ .large-order-5 {
1259
+ -webkit-box-ordinal-group: 6;
1260
+ -webkit-order: 5;
1261
+ -ms-flex-order: 5;
1262
+ order: 5; }
1263
+ .large-order-6 {
1264
+ -webkit-box-ordinal-group: 7;
1265
+ -webkit-order: 6;
1266
+ -ms-flex-order: 6;
1267
+ order: 6; }
1268
+ .large-up-1 {
1269
+ -webkit-flex-wrap: wrap;
1270
+ -ms-flex-wrap: wrap;
1271
+ flex-wrap: wrap; }
1272
+ .large-up-1 > .column, .large-up-1 > .columns {
1273
+ -webkit-box-flex: 0;
1274
+ -webkit-flex: 0 0 100%;
1275
+ -ms-flex: 0 0 100%;
1276
+ flex: 0 0 100%;
1277
+ max-width: 100%; }
1278
+ .large-up-2 {
1279
+ -webkit-flex-wrap: wrap;
1280
+ -ms-flex-wrap: wrap;
1281
+ flex-wrap: wrap; }
1282
+ .large-up-2 > .column, .large-up-2 > .columns {
1283
+ -webkit-box-flex: 0;
1284
+ -webkit-flex: 0 0 50%;
1285
+ -ms-flex: 0 0 50%;
1286
+ flex: 0 0 50%;
1287
+ max-width: 50%; }
1288
+ .large-up-3 {
1289
+ -webkit-flex-wrap: wrap;
1290
+ -ms-flex-wrap: wrap;
1291
+ flex-wrap: wrap; }
1292
+ .large-up-3 > .column, .large-up-3 > .columns {
1293
+ -webkit-box-flex: 0;
1294
+ -webkit-flex: 0 0 33.33333%;
1295
+ -ms-flex: 0 0 33.33333%;
1296
+ flex: 0 0 33.33333%;
1297
+ max-width: 33.33333%; }
1298
+ .large-up-4 {
1299
+ -webkit-flex-wrap: wrap;
1300
+ -ms-flex-wrap: wrap;
1301
+ flex-wrap: wrap; }
1302
+ .large-up-4 > .column, .large-up-4 > .columns {
1303
+ -webkit-box-flex: 0;
1304
+ -webkit-flex: 0 0 25%;
1305
+ -ms-flex: 0 0 25%;
1306
+ flex: 0 0 25%;
1307
+ max-width: 25%; }
1308
+ .large-up-5 {
1309
+ -webkit-flex-wrap: wrap;
1310
+ -ms-flex-wrap: wrap;
1311
+ flex-wrap: wrap; }
1312
+ .large-up-5 > .column, .large-up-5 > .columns {
1313
+ -webkit-box-flex: 0;
1314
+ -webkit-flex: 0 0 20%;
1315
+ -ms-flex: 0 0 20%;
1316
+ flex: 0 0 20%;
1317
+ max-width: 20%; }
1318
+ .large-up-6 {
1319
+ -webkit-flex-wrap: wrap;
1320
+ -ms-flex-wrap: wrap;
1321
+ flex-wrap: wrap; }
1322
+ .large-up-6 > .column, .large-up-6 > .columns {
1323
+ -webkit-box-flex: 0;
1324
+ -webkit-flex: 0 0 16.66667%;
1325
+ -ms-flex: 0 0 16.66667%;
1326
+ flex: 0 0 16.66667%;
1327
+ max-width: 16.66667%; }
1328
+ .large-up-7 {
1329
+ -webkit-flex-wrap: wrap;
1330
+ -ms-flex-wrap: wrap;
1331
+ flex-wrap: wrap; }
1332
+ .large-up-7 > .column, .large-up-7 > .columns {
1333
+ -webkit-box-flex: 0;
1334
+ -webkit-flex: 0 0 14.28571%;
1335
+ -ms-flex: 0 0 14.28571%;
1336
+ flex: 0 0 14.28571%;
1337
+ max-width: 14.28571%; }
1338
+ .large-up-8 {
1339
+ -webkit-flex-wrap: wrap;
1340
+ -ms-flex-wrap: wrap;
1341
+ flex-wrap: wrap; }
1342
+ .large-up-8 > .column, .large-up-8 > .columns {
1343
+ -webkit-box-flex: 0;
1344
+ -webkit-flex: 0 0 12.5%;
1345
+ -ms-flex: 0 0 12.5%;
1346
+ flex: 0 0 12.5%;
1347
+ max-width: 12.5%; } }
1348
+
1349
+ @media print, screen and (min-width: 64em) and (min-width: 64em) {
1350
+ .large-expand {
1351
+ -webkit-box-flex: 1;
1352
+ -webkit-flex: 1 1 0px;
1353
+ -ms-flex: 1 1 0px;
1354
+ flex: 1 1 0px; } }
1355
+
1356
+ @media print, screen and (min-width: 64em) {
1357
+ .large-flex-dir-row {
1358
+ -webkit-box-orient: horizontal;
1359
+ -webkit-box-direction: normal;
1360
+ -webkit-flex-direction: row;
1361
+ -ms-flex-direction: row;
1362
+ flex-direction: row; }
1363
+ .large-flex-dir-row-reverse {
1364
+ -webkit-box-orient: horizontal;
1365
+ -webkit-box-direction: reverse;
1366
+ -webkit-flex-direction: row-reverse;
1367
+ -ms-flex-direction: row-reverse;
1368
+ flex-direction: row-reverse; }
1369
+ .large-flex-dir-column {
1370
+ -webkit-box-orient: vertical;
1371
+ -webkit-box-direction: normal;
1372
+ -webkit-flex-direction: column;
1373
+ -ms-flex-direction: column;
1374
+ flex-direction: column; }
1375
+ .large-flex-dir-column-reverse {
1376
+ -webkit-box-orient: vertical;
1377
+ -webkit-box-direction: reverse;
1378
+ -webkit-flex-direction: column-reverse;
1379
+ -ms-flex-direction: column-reverse;
1380
+ flex-direction: column-reverse; }
1381
+ .large-flex-child-auto {
1382
+ -webkit-box-flex: 1;
1383
+ -webkit-flex: 1 1 auto;
1384
+ -ms-flex: 1 1 auto;
1385
+ flex: 1 1 auto; }
1386
+ .large-flex-child-grow {
1387
+ -webkit-box-flex: 1;
1388
+ -webkit-flex: 1 0 auto;
1389
+ -ms-flex: 1 0 auto;
1390
+ flex: 1 0 auto; }
1391
+ .large-flex-child-shrink {
1392
+ -webkit-box-flex: 0;
1393
+ -webkit-flex: 0 1 auto;
1394
+ -ms-flex: 0 1 auto;
1395
+ flex: 0 1 auto; } }
1396
+
1397
+ .row.large-unstack > .column, .row.large-unstack > .columns {
1398
+ -webkit-box-flex: 0;
1399
+ -webkit-flex: 0 0 100%;
1400
+ -ms-flex: 0 0 100%;
1401
+ flex: 0 0 100%; }
1402
+ @media print, screen and (min-width: 64em) {
1403
+ .row.large-unstack > .column, .row.large-unstack > .columns {
1404
+ -webkit-box-flex: 1;
1405
+ -webkit-flex: 1 1 0px;
1406
+ -ms-flex: 1 1 0px;
1407
+ flex: 1 1 0px; } }
1408
+
1409
+ @media print, screen and (min-width: 64em) {
1410
+ .large-collapse > .column, .large-collapse > .columns {
1411
+ padding-right: 0;
1412
+ padding-left: 0; }
1413
+ .large-uncollapse > .column, .large-uncollapse > .columns {
1414
+ padding-right: 0.9375rem;
1415
+ padding-left: 0.9375rem; } }
1416
+
1417
+ .shrink {
1418
+ -webkit-box-flex: 0;
1419
+ -webkit-flex: 0 0 auto;
1420
+ -ms-flex: 0 0 auto;
1421
+ flex: 0 0 auto;
1422
+ max-width: 100%; }
1423
+
1424
+ .column-block {
1425
+ margin-bottom: 1.25rem; }
1426
+ .column-block > :last-child {
1427
+ margin-bottom: 0; }
1428
+ @media print, screen and (min-width: 40em) {
1429
+ .column-block {
1430
+ margin-bottom: 1.875rem; }
1431
+ .column-block > :last-child {
1432
+ margin-bottom: 0; } }
1433
+
1434
+ div,
1435
+ dl,
1436
+ dt,
1437
+ dd,
1438
+ ul,
1439
+ ol,
1440
+ li,
1441
+ h1,
1442
+ h2,
1443
+ h3,
1444
+ h4,
1445
+ h5,
1446
+ h6,
1447
+ pre,
1448
+ form,
1449
+ p,
1450
+ blockquote,
1451
+ th,
1452
+ td {
1453
+ margin: 0;
1454
+ padding: 0; }
1455
+
1456
+ p {
1457
+ margin-bottom: 1rem;
1458
+ font-size: inherit;
1459
+ line-height: 1.6;
1460
+ text-rendering: optimizeLegibility; }
1461
+
1462
+ em,
1463
+ i {
1464
+ font-style: italic;
1465
+ line-height: inherit; }
1466
+
1467
+ strong,
1468
+ b {
1469
+ font-weight: bold;
1470
+ line-height: inherit; }
1471
+
1472
+ small {
1473
+ font-size: 80%;
1474
+ line-height: inherit; }
1475
+
1476
+ h1,
1477
+ h2,
1478
+ h3,
1479
+ h4,
1480
+ h5,
1481
+ h6 {
1482
+ font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
1483
+ font-style: normal;
1484
+ font-weight: normal;
1485
+ color: inherit;
1486
+ text-rendering: optimizeLegibility; }
1487
+ h1 small,
1488
+ h2 small,
1489
+ h3 small,
1490
+ h4 small,
1491
+ h5 small,
1492
+ h6 small {
1493
+ line-height: 0;
1494
+ color: #cacaca; }
1495
+
1496
+ h1 {
1497
+ font-size: 1.5rem;
1498
+ line-height: 1.4;
1499
+ margin-top: 0;
1500
+ margin-bottom: 0.5rem; }
1501
+
1502
+ h2 {
1503
+ font-size: 1.25rem;
1504
+ line-height: 1.4;
1505
+ margin-top: 0;
1506
+ margin-bottom: 0.5rem; }
1507
+
1508
+ h3 {
1509
+ font-size: 1.1875rem;
1510
+ line-height: 1.4;
1511
+ margin-top: 0;
1512
+ margin-bottom: 0.5rem; }
1513
+
1514
+ h4 {
1515
+ font-size: 1.125rem;
1516
+ line-height: 1.4;
1517
+ margin-top: 0;
1518
+ margin-bottom: 0.5rem; }
1519
+
1520
+ h5 {
1521
+ font-size: 1.0625rem;
1522
+ line-height: 1.4;
1523
+ margin-top: 0;
1524
+ margin-bottom: 0.5rem; }
1525
+
1526
+ h6 {
1527
+ font-size: 1rem;
1528
+ line-height: 1.4;
1529
+ margin-top: 0;
1530
+ margin-bottom: 0.5rem; }
1531
+
1532
+ @media print, screen and (min-width: 40em) {
1533
+ h1 {
1534
+ font-size: 3rem; }
1535
+ h2 {
1536
+ font-size: 2.5rem; }
1537
+ h3 {
1538
+ font-size: 1.9375rem; }
1539
+ h4 {
1540
+ font-size: 1.5625rem; }
1541
+ h5 {
1542
+ font-size: 1.25rem; }
1543
+ h6 {
1544
+ font-size: 1rem; } }
1545
+
1546
+ a {
1547
+ line-height: inherit;
1548
+ color: #1779ba;
1549
+ text-decoration: none;
1550
+ cursor: pointer; }
1551
+ a:hover, a:focus {
1552
+ color: #1468a0; }
1553
+ a img {
1554
+ border: 0; }
1555
+
1556
+ hr {
1557
+ clear: both;
1558
+ max-width: 75rem;
1559
+ height: 0;
1560
+ margin: 1.25rem auto;
1561
+ border-top: 0;
1562
+ border-right: 0;
1563
+ border-bottom: 1px solid #cacaca;
1564
+ border-left: 0; }
1565
+
1566
+ ul,
1567
+ ol,
1568
+ dl {
1569
+ margin-bottom: 1rem;
1570
+ list-style-position: outside;
1571
+ line-height: 1.6; }
1572
+
1573
+ li {
1574
+ font-size: inherit; }
1575
+
1576
+ ul {
1577
+ margin-left: 1.25rem;
1578
+ list-style-type: disc; }
1579
+
1580
+ ol {
1581
+ margin-left: 1.25rem; }
1582
+
1583
+ ul ul, ol ul, ul ol, ol ol {
1584
+ margin-left: 1.25rem;
1585
+ margin-bottom: 0; }
1586
+
1587
+ dl {
1588
+ margin-bottom: 1rem; }
1589
+ dl dt {
1590
+ margin-bottom: 0.3rem;
1591
+ font-weight: bold; }
1592
+
1593
+ blockquote {
1594
+ margin: 0 0 1rem;
1595
+ padding: 0.5625rem 1.25rem 0 1.1875rem;
1596
+ border-left: 1px solid #cacaca; }
1597
+ blockquote, blockquote p {
1598
+ line-height: 1.6;
1599
+ color: #8a8a8a; }
1600
+
1601
+ cite {
1602
+ display: block;
1603
+ font-size: 0.8125rem;
1604
+ color: #8a8a8a; }
1605
+ cite:before {
1606
+ content: "— "; }
1607
+
1608
+ abbr {
1609
+ border-bottom: 1px dotted #0a0a0a;
1610
+ color: #0a0a0a;
1611
+ cursor: help; }
1612
+
1613
+ figure {
1614
+ margin: 0; }
1615
+
1616
+ code {
1617
+ padding: 0.125rem 0.3125rem 0.0625rem;
1618
+ border: 1px solid #cacaca;
1619
+ background-color: #e6e6e6;
1620
+ font-family: Consolas, "Liberation Mono", Courier, monospace;
1621
+ font-weight: normal;
1622
+ color: #0a0a0a; }
1623
+
1624
+ kbd {
1625
+ margin: 0;
1626
+ padding: 0.125rem 0.25rem 0;
1627
+ background-color: #e6e6e6;
1628
+ font-family: Consolas, "Liberation Mono", Courier, monospace;
1629
+ color: #0a0a0a; }
1630
+
1631
+ .subheader {
1632
+ margin-top: 0.2rem;
1633
+ margin-bottom: 0.5rem;
1634
+ font-weight: normal;
1635
+ line-height: 1.4;
1636
+ color: #8a8a8a; }
1637
+
1638
+ .lead {
1639
+ font-size: 125%;
1640
+ line-height: 1.6; }
1641
+
1642
+ .stat {
1643
+ font-size: 2.5rem;
1644
+ line-height: 1; }
1645
+ p + .stat {
1646
+ margin-top: -1rem; }
1647
+
1648
+ .no-bullet {
1649
+ margin-left: 0;
1650
+ list-style: none; }
1651
+
1652
+ .text-left {
1653
+ text-align: left; }
1654
+
1655
+ .text-right {
1656
+ text-align: right; }
1657
+
1658
+ .text-center {
1659
+ text-align: center; }
1660
+
1661
+ .text-justify {
1662
+ text-align: justify; }
1663
+
1664
+ @media print, screen and (min-width: 40em) {
1665
+ .medium-text-left {
1666
+ text-align: left; }
1667
+ .medium-text-right {
1668
+ text-align: right; }
1669
+ .medium-text-center {
1670
+ text-align: center; }
1671
+ .medium-text-justify {
1672
+ text-align: justify; } }
1673
+
1674
+ @media print, screen and (min-width: 64em) {
1675
+ .large-text-left {
1676
+ text-align: left; }
1677
+ .large-text-right {
1678
+ text-align: right; }
1679
+ .large-text-center {
1680
+ text-align: center; }
1681
+ .large-text-justify {
1682
+ text-align: justify; } }
1683
+
1684
+ .show-for-print {
1685
+ display: none !important; }
1686
+
1687
+ @media print {
1688
+ * {
1689
+ background: transparent !important;
1690
+ -webkit-box-shadow: none !important;
1691
+ box-shadow: none !important;
1692
+ color: black !important;
1693
+ text-shadow: none !important; }
1694
+ .show-for-print {
1695
+ display: block !important; }
1696
+ .hide-for-print {
1697
+ display: none !important; }
1698
+ table.show-for-print {
1699
+ display: table !important; }
1700
+ thead.show-for-print {
1701
+ display: table-header-group !important; }
1702
+ tbody.show-for-print {
1703
+ display: table-row-group !important; }
1704
+ tr.show-for-print {
1705
+ display: table-row !important; }
1706
+ td.show-for-print {
1707
+ display: table-cell !important; }
1708
+ th.show-for-print {
1709
+ display: table-cell !important; }
1710
+ a,
1711
+ a:visited {
1712
+ text-decoration: underline; }
1713
+ a[href]:after {
1714
+ content: " (" attr(href) ")"; }
1715
+ .ir a:after,
1716
+ a[href^='javascript:']:after,
1717
+ a[href^='#']:after {
1718
+ content: ''; }
1719
+ abbr[title]:after {
1720
+ content: " (" attr(title) ")"; }
1721
+ pre,
1722
+ blockquote {
1723
+ border: 1px solid #8a8a8a;
1724
+ page-break-inside: avoid; }
1725
+ thead {
1726
+ display: table-header-group; }
1727
+ tr,
1728
+ img {
1729
+ page-break-inside: avoid; }
1730
+ img {
1731
+ max-width: 100% !important; }
1732
+ @page {
1733
+ margin: 0.5cm; }
1734
+ p,
1735
+ h2,
1736
+ h3 {
1737
+ orphans: 3;
1738
+ widows: 3; }
1739
+ h2,
1740
+ h3 {
1741
+ page-break-after: avoid; } }
1742
+
1743
+ [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'],
1744
+ textarea {
1745
+ display: block;
1746
+ -webkit-box-sizing: border-box;
1747
+ box-sizing: border-box;
1748
+ width: 100%;
1749
+ height: 2.4375rem;
1750
+ margin: 0 0 1rem;
1751
+ padding: 0.5rem;
1752
+ border: 1px solid #cacaca;
1753
+ border-radius: 0;
1754
+ background-color: #fefefe;
1755
+ -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
1756
+ box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
1757
+ font-family: inherit;
1758
+ font-size: 1rem;
1759
+ font-weight: normal;
1760
+ color: #0a0a0a;
1761
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1762
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1763
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1764
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1765
+ -webkit-appearance: none;
1766
+ -moz-appearance: none;
1767
+ appearance: none; }
1768
+ [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,
1769
+ textarea:focus {
1770
+ outline: none;
1771
+ border: 1px solid #8a8a8a;
1772
+ background-color: #fefefe;
1773
+ -webkit-box-shadow: 0 0 5px #cacaca;
1774
+ box-shadow: 0 0 5px #cacaca;
1775
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1776
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1777
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1778
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }
1779
+
1780
+ textarea {
1781
+ max-width: 100%; }
1782
+ textarea[rows] {
1783
+ height: auto; }
1784
+
1785
+ input::-webkit-input-placeholder,
1786
+ textarea::-webkit-input-placeholder {
1787
+ color: #cacaca; }
1788
+
1789
+ input::-moz-placeholder,
1790
+ textarea::-moz-placeholder {
1791
+ color: #cacaca; }
1792
+
1793
+ input:-ms-input-placeholder,
1794
+ textarea:-ms-input-placeholder {
1795
+ color: #cacaca; }
1796
+
1797
+ input::placeholder,
1798
+ textarea::placeholder {
1799
+ color: #cacaca; }
1800
+
1801
+ input:disabled, input[readonly],
1802
+ textarea:disabled,
1803
+ textarea[readonly] {
1804
+ background-color: #e6e6e6;
1805
+ cursor: not-allowed; }
1806
+
1807
+ [type='submit'],
1808
+ [type='button'] {
1809
+ -webkit-appearance: none;
1810
+ -moz-appearance: none;
1811
+ appearance: none;
1812
+ border-radius: 0; }
1813
+
1814
+ input[type='search'] {
1815
+ -webkit-box-sizing: border-box;
1816
+ box-sizing: border-box; }
1817
+
1818
+ [type='file'],
1819
+ [type='checkbox'],
1820
+ [type='radio'] {
1821
+ margin: 0 0 1rem; }
1822
+
1823
+ [type='checkbox'] + label,
1824
+ [type='radio'] + label {
1825
+ display: inline-block;
1826
+ vertical-align: baseline;
1827
+ margin-left: 0.5rem;
1828
+ margin-right: 1rem;
1829
+ margin-bottom: 0; }
1830
+ [type='checkbox'] + label[for],
1831
+ [type='radio'] + label[for] {
1832
+ cursor: pointer; }
1833
+
1834
+ label > [type='checkbox'],
1835
+ label > [type='radio'] {
1836
+ margin-right: 0.5rem; }
1837
+
1838
+ [type='file'] {
1839
+ width: 100%; }
1840
+
1841
+ label {
1842
+ display: block;
1843
+ margin: 0;
1844
+ font-size: 0.875rem;
1845
+ font-weight: normal;
1846
+ line-height: 1.8;
1847
+ color: #0a0a0a; }
1848
+ label.middle {
1849
+ margin: 0 0 1rem;
1850
+ padding: 0.5625rem 0; }
1851
+
1852
+ .help-text {
1853
+ margin-top: -0.5rem;
1854
+ font-size: 0.8125rem;
1855
+ font-style: italic;
1856
+ color: #0a0a0a; }
1857
+
1858
+ .input-group {
1859
+ display: -webkit-box;
1860
+ display: -webkit-flex;
1861
+ display: -ms-flexbox;
1862
+ display: flex;
1863
+ width: 100%;
1864
+ margin-bottom: 1rem;
1865
+ -webkit-box-align: stretch;
1866
+ -webkit-align-items: stretch;
1867
+ -ms-flex-align: stretch;
1868
+ align-items: stretch; }
1869
+ .input-group > :first-child {
1870
+ border-radius: 0 0 0 0; }
1871
+ .input-group > :last-child > * {
1872
+ border-radius: 0 0 0 0; }
1873
+
1874
+ .input-group-label, .input-group-field, .input-group-button, .input-group-button a,
1875
+ .input-group-button input,
1876
+ .input-group-button button,
1877
+ .input-group-button label {
1878
+ margin: 0;
1879
+ white-space: nowrap; }
1880
+
1881
+ .input-group-label {
1882
+ padding: 0 1rem;
1883
+ border: 1px solid #cacaca;
1884
+ background: #e6e6e6;
1885
+ color: #0a0a0a;
1886
+ text-align: center;
1887
+ white-space: nowrap;
1888
+ display: -webkit-box;
1889
+ display: -webkit-flex;
1890
+ display: -ms-flexbox;
1891
+ display: flex;
1892
+ -webkit-box-flex: 0;
1893
+ -webkit-flex: 0 0 auto;
1894
+ -ms-flex: 0 0 auto;
1895
+ flex: 0 0 auto;
1896
+ -webkit-box-align: center;
1897
+ -webkit-align-items: center;
1898
+ -ms-flex-align: center;
1899
+ align-items: center; }
1900
+ .input-group-label:first-child {
1901
+ border-right: 0; }
1902
+ .input-group-label:last-child {
1903
+ border-left: 0; }
1904
+
1905
+ .input-group-field {
1906
+ border-radius: 0;
1907
+ -webkit-box-flex: 1;
1908
+ -webkit-flex: 1 1 0px;
1909
+ -ms-flex: 1 1 0px;
1910
+ flex: 1 1 0px;
1911
+ height: auto;
1912
+ min-width: 0; }
1913
+
1914
+ .input-group-button {
1915
+ padding-top: 0;
1916
+ padding-bottom: 0;
1917
+ text-align: center;
1918
+ -webkit-box-flex: 0;
1919
+ -webkit-flex: 0 0 auto;
1920
+ -ms-flex: 0 0 auto;
1921
+ flex: 0 0 auto; }
1922
+ .input-group-button a,
1923
+ .input-group-button input,
1924
+ .input-group-button button,
1925
+ .input-group-button label {
1926
+ height: 2.5rem;
1927
+ padding-top: 0;
1928
+ padding-bottom: 0;
1929
+ font-size: 1rem; }
1930
+
1931
+ fieldset {
1932
+ margin: 0;
1933
+ padding: 0;
1934
+ border: 0; }
1935
+
1936
+ legend {
1937
+ max-width: 100%;
1938
+ margin-bottom: 0.5rem; }
1939
+
1940
+ .fieldset {
1941
+ margin: 1.125rem 0;
1942
+ padding: 1.25rem;
1943
+ border: 1px solid #cacaca; }
1944
+ .fieldset legend {
1945
+ margin: 0;
1946
+ margin-left: -0.1875rem;
1947
+ padding: 0 0.1875rem;
1948
+ background: #fefefe; }
1949
+
1950
+ select {
1951
+ height: 2.4375rem;
1952
+ margin: 0 0 1rem;
1953
+ padding: 0.5rem;
1954
+ -webkit-appearance: none;
1955
+ -moz-appearance: none;
1956
+ appearance: none;
1957
+ border: 1px solid #cacaca;
1958
+ border-radius: 0;
1959
+ background-color: #fefefe;
1960
+ font-family: inherit;
1961
+ font-size: 1rem;
1962
+ line-height: normal;
1963
+ color: #0a0a0a;
1964
+ 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>");
1965
+ -webkit-background-origin: content-box;
1966
+ background-origin: content-box;
1967
+ background-position: right -1rem center;
1968
+ background-repeat: no-repeat;
1969
+ -webkit-background-size: 9px 6px;
1970
+ background-size: 9px 6px;
1971
+ padding-right: 1.5rem;
1972
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1973
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1974
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1975
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }
1976
+ @media screen and (min-width: 0\0) {
1977
+ select {
1978
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
1979
+ select:focus {
1980
+ outline: none;
1981
+ border: 1px solid #8a8a8a;
1982
+ background-color: #fefefe;
1983
+ -webkit-box-shadow: 0 0 5px #cacaca;
1984
+ box-shadow: 0 0 5px #cacaca;
1985
+ -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1986
+ transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
1987
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
1988
+ transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s; }
1989
+ select:disabled {
1990
+ background-color: #e6e6e6;
1991
+ cursor: not-allowed; }
1992
+ select::-ms-expand {
1993
+ display: none; }
1994
+ select[multiple] {
1995
+ height: auto;
1996
+ background-image: none; }
1997
+
1998
+ .is-invalid-input:not(:focus) {
1999
+ border-color: #cc4b37;
2000
+ background-color: #f9ecea; }
2001
+ .is-invalid-input:not(:focus)::-webkit-input-placeholder {
2002
+ color: #cc4b37; }
2003
+ .is-invalid-input:not(:focus)::-moz-placeholder {
2004
+ color: #cc4b37; }
2005
+ .is-invalid-input:not(:focus):-ms-input-placeholder {
2006
+ color: #cc4b37; }
2007
+ .is-invalid-input:not(:focus)::placeholder {
2008
+ color: #cc4b37; }
2009
+
2010
+ .is-invalid-label {
2011
+ color: #cc4b37; }
2012
+
2013
+ .form-error {
2014
+ display: none;
2015
+ margin-top: -0.5rem;
2016
+ margin-bottom: 1rem;
2017
+ font-size: 0.75rem;
2018
+ font-weight: bold;
2019
+ color: #cc4b37; }
2020
+ .form-error.is-visible {
2021
+ display: block; }
2022
+
2023
+ .button {
2024
+ display: inline-block;
2025
+ vertical-align: middle;
2026
+ margin: 0 0 1rem 0;
2027
+ padding: 0.85em 1em;
2028
+ -webkit-appearance: none;
2029
+ border: 1px solid transparent;
2030
+ border-radius: 0;
2031
+ -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
2032
+ transition: background-color 0.25s ease-out, color 0.25s ease-out;
2033
+ font-size: 0.9rem;
2034
+ line-height: 1;
2035
+ text-align: center;
2036
+ cursor: pointer;
2037
+ background-color: #1779ba;
2038
+ color: #fefefe; }
2039
+ [data-whatinput='mouse'] .button {
2040
+ outline: 0; }
2041
+ .button:hover, .button:focus {
2042
+ background-color: #14679e;
2043
+ color: #fefefe; }
2044
+ .button.tiny {
2045
+ font-size: 0.6rem; }
2046
+ .button.small {
2047
+ font-size: 0.75rem; }
2048
+ .button.large {
2049
+ font-size: 1.25rem; }
2050
+ .button.expanded {
2051
+ display: block;
2052
+ width: 100%;
2053
+ margin-right: 0;
2054
+ margin-left: 0; }
2055
+ .button.primary {
2056
+ background-color: #1779ba;
2057
+ color: #fefefe; }
2058
+ .button.primary:hover, .button.primary:focus {
2059
+ background-color: #126195;
2060
+ color: #fefefe; }
2061
+ .button.secondary {
2062
+ background-color: #767676;
2063
+ color: #fefefe; }
2064
+ .button.secondary:hover, .button.secondary:focus {
2065
+ background-color: #5e5e5e;
2066
+ color: #fefefe; }
2067
+ .button.success {
2068
+ background-color: #3adb76;
2069
+ color: #0a0a0a; }
2070
+ .button.success:hover, .button.success:focus {
2071
+ background-color: #22bb5b;
2072
+ color: #0a0a0a; }
2073
+ .button.warning {
2074
+ background-color: #ffae00;
2075
+ color: #0a0a0a; }
2076
+ .button.warning:hover, .button.warning:focus {
2077
+ background-color: #cc8b00;
2078
+ color: #0a0a0a; }
2079
+ .button.alert {
2080
+ background-color: #cc4b37;
2081
+ color: #fefefe; }
2082
+ .button.alert:hover, .button.alert:focus {
2083
+ background-color: #a53b2a;
2084
+ color: #fefefe; }
2085
+ .button.hollow {
2086
+ border: 1px solid #1779ba;
2087
+ color: #1779ba; }
2088
+ .button.hollow, .button.hollow:hover, .button.hollow:focus {
2089
+ background-color: transparent; }
2090
+ .button.hollow:hover, .button.hollow:focus {
2091
+ border-color: #0c3d5d;
2092
+ color: #0c3d5d; }
2093
+ .button.hollow.primary {
2094
+ border: 1px solid #1779ba;
2095
+ color: #1779ba; }
2096
+ .button.hollow.primary:hover, .button.hollow.primary:focus {
2097
+ border-color: #0c3d5d;
2098
+ color: #0c3d5d; }
2099
+ .button.hollow.secondary {
2100
+ border: 1px solid #767676;
2101
+ color: #767676; }
2102
+ .button.hollow.secondary:hover, .button.hollow.secondary:focus {
2103
+ border-color: #3b3b3b;
2104
+ color: #3b3b3b; }
2105
+ .button.hollow.success {
2106
+ border: 1px solid #3adb76;
2107
+ color: #3adb76; }
2108
+ .button.hollow.success:hover, .button.hollow.success:focus {
2109
+ border-color: #157539;
2110
+ color: #157539; }
2111
+ .button.hollow.warning {
2112
+ border: 1px solid #ffae00;
2113
+ color: #ffae00; }
2114
+ .button.hollow.warning:hover, .button.hollow.warning:focus {
2115
+ border-color: #805700;
2116
+ color: #805700; }
2117
+ .button.hollow.alert {
2118
+ border: 1px solid #cc4b37;
2119
+ color: #cc4b37; }
2120
+ .button.hollow.alert:hover, .button.hollow.alert:focus {
2121
+ border-color: #67251a;
2122
+ color: #67251a; }
2123
+ .button.disabled, .button[disabled] {
2124
+ opacity: 0.25;
2125
+ cursor: not-allowed; }
2126
+ .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
2127
+ background-color: #1779ba;
2128
+ color: #fefefe; }
2129
+ .button.disabled.primary, .button[disabled].primary {
2130
+ opacity: 0.25;
2131
+ cursor: not-allowed; }
2132
+ .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
2133
+ background-color: #1779ba;
2134
+ color: #fefefe; }
2135
+ .button.disabled.secondary, .button[disabled].secondary {
2136
+ opacity: 0.25;
2137
+ cursor: not-allowed; }
2138
+ .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
2139
+ background-color: #767676;
2140
+ color: #fefefe; }
2141
+ .button.disabled.success, .button[disabled].success {
2142
+ opacity: 0.25;
2143
+ cursor: not-allowed; }
2144
+ .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
2145
+ background-color: #3adb76;
2146
+ color: #0a0a0a; }
2147
+ .button.disabled.warning, .button[disabled].warning {
2148
+ opacity: 0.25;
2149
+ cursor: not-allowed; }
2150
+ .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
2151
+ background-color: #ffae00;
2152
+ color: #0a0a0a; }
2153
+ .button.disabled.alert, .button[disabled].alert {
2154
+ opacity: 0.25;
2155
+ cursor: not-allowed; }
2156
+ .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
2157
+ background-color: #cc4b37;
2158
+ color: #fefefe; }
2159
+ .button.dropdown::after {
2160
+ display: block;
2161
+ width: 0;
2162
+ height: 0;
2163
+ border: inset 0.4em;
2164
+ content: '';
2165
+ border-bottom-width: 0;
2166
+ border-top-style: solid;
2167
+ border-color: #fefefe transparent transparent;
2168
+ position: relative;
2169
+ top: 0.4em;
2170
+ display: inline-block;
2171
+ float: right;
2172
+ margin-left: 1em; }
2173
+ .button.arrow-only::after {
2174
+ top: -0.1em;
2175
+ float: none;
2176
+ margin-left: 0; }
2177
+
2178
+ .accordion {
2179
+ margin-left: 0;
2180
+ background: #fefefe;
2181
+ list-style-type: none; }
2182
+
2183
+ .accordion-item:first-child > :first-child {
2184
+ border-radius: 0 0 0 0; }
2185
+
2186
+ .accordion-item:last-child > :last-child {
2187
+ border-radius: 0 0 0 0; }
2188
+
2189
+ .accordion-title {
2190
+ position: relative;
2191
+ display: block;
2192
+ padding: 1.25rem 1rem;
2193
+ border: 1px solid #e6e6e6;
2194
+ border-bottom: 0;
2195
+ font-size: 0.75rem;
2196
+ line-height: 1;
2197
+ color: #1779ba; }
2198
+ :last-child:not(.is-active) > .accordion-title {
2199
+ border-bottom: 1px solid #e6e6e6;
2200
+ border-radius: 0 0 0 0; }
2201
+ .accordion-title:hover, .accordion-title:focus {
2202
+ background-color: #e6e6e6; }
2203
+ .accordion-title::before {
2204
+ position: absolute;
2205
+ top: 50%;
2206
+ right: 1rem;
2207
+ margin-top: -0.5rem;
2208
+ content: '+'; }
2209
+ .is-active > .accordion-title::before {
2210
+ content: '\2013'; }
2211
+
2212
+ .accordion-content {
2213
+ display: none;
2214
+ padding: 1rem;
2215
+ border: 1px solid #e6e6e6;
2216
+ border-bottom: 0;
2217
+ background-color: #fefefe;
2218
+ color: #0a0a0a; }
2219
+ :last-child > .accordion-content:last-child {
2220
+ border-bottom: 1px solid #e6e6e6; }
2221
+
2222
+ .is-accordion-submenu-parent > a {
2223
+ position: relative; }
2224
+ .is-accordion-submenu-parent > a::after {
2225
+ display: block;
2226
+ width: 0;
2227
+ height: 0;
2228
+ border: inset 6px;
2229
+ content: '';
2230
+ border-bottom-width: 0;
2231
+ border-top-style: solid;
2232
+ border-color: #1779ba transparent transparent;
2233
+ position: absolute;
2234
+ top: 50%;
2235
+ margin-top: -3px;
2236
+ right: 1rem; }
2237
+
2238
+ .is-accordion-submenu-parent[aria-expanded='true'] > a::after {
2239
+ -webkit-transform: rotate(180deg);
2240
+ -ms-transform: rotate(180deg);
2241
+ transform: rotate(180deg);
2242
+ -webkit-transform-origin: 50% 50%;
2243
+ -ms-transform-origin: 50% 50%;
2244
+ transform-origin: 50% 50%; }
2245
+
2246
+ .badge {
2247
+ display: inline-block;
2248
+ min-width: 2.1em;
2249
+ padding: 0.3em;
2250
+ border-radius: 50%;
2251
+ font-size: 0.6rem;
2252
+ text-align: center;
2253
+ background: #1779ba;
2254
+ color: #fefefe; }
2255
+ .badge.primary {
2256
+ background: #1779ba;
2257
+ color: #fefefe; }
2258
+ .badge.secondary {
2259
+ background: #767676;
2260
+ color: #fefefe; }
2261
+ .badge.success {
2262
+ background: #3adb76;
2263
+ color: #0a0a0a; }
2264
+ .badge.warning {
2265
+ background: #ffae00;
2266
+ color: #0a0a0a; }
2267
+ .badge.alert {
2268
+ background: #cc4b37;
2269
+ color: #fefefe; }
2270
+
2271
+ .breadcrumbs {
2272
+ margin: 0 0 1rem 0;
2273
+ list-style: none; }
2274
+ .breadcrumbs::before, .breadcrumbs::after {
2275
+ display: table;
2276
+ content: ' ';
2277
+ -webkit-flex-basis: 0;
2278
+ -ms-flex-preferred-size: 0;
2279
+ flex-basis: 0;
2280
+ -webkit-box-ordinal-group: 2;
2281
+ -webkit-order: 1;
2282
+ -ms-flex-order: 1;
2283
+ order: 1; }
2284
+ .breadcrumbs::after {
2285
+ clear: both; }
2286
+ .breadcrumbs li {
2287
+ float: left;
2288
+ font-size: 0.6875rem;
2289
+ color: #0a0a0a;
2290
+ cursor: default;
2291
+ text-transform: uppercase; }
2292
+ .breadcrumbs li:not(:last-child)::after {
2293
+ position: relative;
2294
+ top: 1px;
2295
+ margin: 0 0.75rem;
2296
+ opacity: 1;
2297
+ content: "/";
2298
+ color: #cacaca; }
2299
+ .breadcrumbs a {
2300
+ color: #1779ba; }
2301
+ .breadcrumbs a:hover {
2302
+ text-decoration: underline; }
2303
+ .breadcrumbs .disabled {
2304
+ color: #cacaca;
2305
+ cursor: not-allowed; }
2306
+
2307
+ .button-group {
2308
+ margin-bottom: 1rem;
2309
+ display: -webkit-box;
2310
+ display: -webkit-flex;
2311
+ display: -ms-flexbox;
2312
+ display: flex;
2313
+ -webkit-flex-wrap: nowrap;
2314
+ -ms-flex-wrap: nowrap;
2315
+ flex-wrap: nowrap;
2316
+ -webkit-box-align: stretch;
2317
+ -webkit-align-items: stretch;
2318
+ -ms-flex-align: stretch;
2319
+ align-items: stretch; }
2320
+ .button-group::before, .button-group::after {
2321
+ display: table;
2322
+ content: ' ';
2323
+ -webkit-flex-basis: 0;
2324
+ -ms-flex-preferred-size: 0;
2325
+ flex-basis: 0;
2326
+ -webkit-box-ordinal-group: 2;
2327
+ -webkit-order: 1;
2328
+ -ms-flex-order: 1;
2329
+ order: 1; }
2330
+ .button-group::after {
2331
+ clear: both; }
2332
+ .button-group .button {
2333
+ margin: 0;
2334
+ margin-right: 1px;
2335
+ margin-bottom: 1px;
2336
+ font-size: 0.9rem;
2337
+ -webkit-box-flex: 0;
2338
+ -webkit-flex: 0 0 auto;
2339
+ -ms-flex: 0 0 auto;
2340
+ flex: 0 0 auto; }
2341
+ .button-group .button:last-child {
2342
+ margin-right: 0; }
2343
+ .button-group.tiny .button {
2344
+ font-size: 0.6rem; }
2345
+ .button-group.small .button {
2346
+ font-size: 0.75rem; }
2347
+ .button-group.large .button {
2348
+ font-size: 1.25rem; }
2349
+ .button-group.expanded .button {
2350
+ -webkit-box-flex: 1;
2351
+ -webkit-flex: 1 1 0px;
2352
+ -ms-flex: 1 1 0px;
2353
+ flex: 1 1 0px; }
2354
+ .button-group.primary .button {
2355
+ background-color: #1779ba;
2356
+ color: #fefefe; }
2357
+ .button-group.primary .button:hover, .button-group.primary .button:focus {
2358
+ background-color: #126195;
2359
+ color: #fefefe; }
2360
+ .button-group.secondary .button {
2361
+ background-color: #767676;
2362
+ color: #fefefe; }
2363
+ .button-group.secondary .button:hover, .button-group.secondary .button:focus {
2364
+ background-color: #5e5e5e;
2365
+ color: #fefefe; }
2366
+ .button-group.success .button {
2367
+ background-color: #3adb76;
2368
+ color: #0a0a0a; }
2369
+ .button-group.success .button:hover, .button-group.success .button:focus {
2370
+ background-color: #22bb5b;
2371
+ color: #0a0a0a; }
2372
+ .button-group.warning .button {
2373
+ background-color: #ffae00;
2374
+ color: #0a0a0a; }
2375
+ .button-group.warning .button:hover, .button-group.warning .button:focus {
2376
+ background-color: #cc8b00;
2377
+ color: #0a0a0a; }
2378
+ .button-group.alert .button {
2379
+ background-color: #cc4b37;
2380
+ color: #fefefe; }
2381
+ .button-group.alert .button:hover, .button-group.alert .button:focus {
2382
+ background-color: #a53b2a;
2383
+ color: #fefefe; }
2384
+ .button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
2385
+ -webkit-flex-wrap: wrap;
2386
+ -ms-flex-wrap: wrap;
2387
+ flex-wrap: wrap; }
2388
+ .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
2389
+ -webkit-box-flex: 0;
2390
+ -webkit-flex: 0 0 100%;
2391
+ -ms-flex: 0 0 100%;
2392
+ flex: 0 0 100%; }
2393
+ .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
2394
+ margin-bottom: 0; }
2395
+ @media print, screen and (min-width: 40em) {
2396
+ .button-group.stacked-for-small .button {
2397
+ -webkit-box-flex: 1;
2398
+ -webkit-flex: 1 1 0px;
2399
+ -ms-flex: 1 1 0px;
2400
+ flex: 1 1 0px;
2401
+ margin-bottom: 0; } }
2402
+ @media print, screen and (min-width: 64em) {
2403
+ .button-group.stacked-for-medium .button {
2404
+ -webkit-box-flex: 1;
2405
+ -webkit-flex: 1 1 0px;
2406
+ -ms-flex: 1 1 0px;
2407
+ flex: 1 1 0px;
2408
+ margin-bottom: 0; } }
2409
+ @media screen and (max-width: 39.9375em) {
2410
+ .button-group.stacked-for-small.expanded {
2411
+ display: block; }
2412
+ .button-group.stacked-for-small.expanded .button {
2413
+ display: block;
2414
+ margin-right: 0; } }
2415
+
2416
+ .callout {
2417
+ position: relative;
2418
+ margin: 0 0 1rem 0;
2419
+ padding: 1rem;
2420
+ border: 1px solid rgba(10, 10, 10, 0.25);
2421
+ border-radius: 0;
2422
+ background-color: white;
2423
+ color: #0a0a0a; }
2424
+ .callout > :first-child {
2425
+ margin-top: 0; }
2426
+ .callout > :last-child {
2427
+ margin-bottom: 0; }
2428
+ .callout.primary {
2429
+ background-color: #d7ecfa;
2430
+ color: #0a0a0a; }
2431
+ .callout.secondary {
2432
+ background-color: #eaeaea;
2433
+ color: #0a0a0a; }
2434
+ .callout.success {
2435
+ background-color: #e1faea;
2436
+ color: #0a0a0a; }
2437
+ .callout.warning {
2438
+ background-color: #fff3d9;
2439
+ color: #0a0a0a; }
2440
+ .callout.alert {
2441
+ background-color: #f7e4e1;
2442
+ color: #0a0a0a; }
2443
+ .callout.small {
2444
+ padding-top: 0.5rem;
2445
+ padding-right: 0.5rem;
2446
+ padding-bottom: 0.5rem;
2447
+ padding-left: 0.5rem; }
2448
+ .callout.large {
2449
+ padding-top: 3rem;
2450
+ padding-right: 3rem;
2451
+ padding-bottom: 3rem;
2452
+ padding-left: 3rem; }
2453
+
2454
+ .card {
2455
+ display: -webkit-box;
2456
+ display: -webkit-flex;
2457
+ display: -ms-flexbox;
2458
+ display: flex;
2459
+ -webkit-box-orient: vertical;
2460
+ -webkit-box-direction: normal;
2461
+ -webkit-flex-direction: column;
2462
+ -ms-flex-direction: column;
2463
+ flex-direction: column;
2464
+ margin-bottom: 1rem;
2465
+ border: 1px solid #e6e6e6;
2466
+ border-radius: 0;
2467
+ background: #fefefe;
2468
+ -webkit-box-shadow: none;
2469
+ box-shadow: none;
2470
+ overflow: hidden;
2471
+ color: #0a0a0a; }
2472
+ .card > :last-child {
2473
+ margin-bottom: 0; }
2474
+
2475
+ .card-divider {
2476
+ -webkit-box-flex: 0;
2477
+ -webkit-flex: 0 1 auto;
2478
+ -ms-flex: 0 1 auto;
2479
+ flex: 0 1 auto;
2480
+ padding: 1rem;
2481
+ background: #e6e6e6; }
2482
+ .card-divider > :last-child {
2483
+ margin-bottom: 0; }
2484
+
2485
+ .card-section {
2486
+ -webkit-box-flex: 1;
2487
+ -webkit-flex: 1 0 auto;
2488
+ -ms-flex: 1 0 auto;
2489
+ flex: 1 0 auto;
2490
+ padding: 1rem; }
2491
+ .card-section > :last-child {
2492
+ margin-bottom: 0; }
2493
+
2494
+ .close-button {
2495
+ position: absolute;
2496
+ color: #8a8a8a;
2497
+ cursor: pointer; }
2498
+ [data-whatinput='mouse'] .close-button {
2499
+ outline: 0; }
2500
+ .close-button:hover, .close-button:focus {
2501
+ color: #0a0a0a; }
2502
+ .close-button.small {
2503
+ right: 0.66rem;
2504
+ top: 0.33em;
2505
+ font-size: 1.5em;
2506
+ line-height: 1; }
2507
+ .close-button, .close-button.medium {
2508
+ right: 1rem;
2509
+ top: 0.5rem;
2510
+ font-size: 2em;
2511
+ line-height: 1; }
2512
+
2513
+ .menu {
2514
+ margin: 0;
2515
+ list-style-type: none;
2516
+ display: -webkit-box;
2517
+ display: -webkit-flex;
2518
+ display: -ms-flexbox;
2519
+ display: flex;
2520
+ -webkit-flex-wrap: nowrap;
2521
+ -ms-flex-wrap: nowrap;
2522
+ flex-wrap: nowrap;
2523
+ -webkit-box-align: center;
2524
+ -webkit-align-items: center;
2525
+ -ms-flex-align: center;
2526
+ align-items: center;
2527
+ width: 100%; }
2528
+ .menu > li {
2529
+ -webkit-box-flex: 0;
2530
+ -webkit-flex: 0 0 auto;
2531
+ -ms-flex: 0 0 auto;
2532
+ flex: 0 0 auto; }
2533
+ [data-whatinput='mouse'] .menu > li {
2534
+ outline: 0; }
2535
+ .menu > li > a {
2536
+ display: block;
2537
+ padding: 0.7rem 1rem;
2538
+ line-height: 1; }
2539
+ .menu input,
2540
+ .menu select,
2541
+ .menu a,
2542
+ .menu button {
2543
+ margin-bottom: 0; }
2544
+ .menu > li > a {
2545
+ display: -webkit-box;
2546
+ display: -webkit-flex;
2547
+ display: -ms-flexbox;
2548
+ display: flex; }
2549
+ .menu > li > a {
2550
+ -webkit-flex-flow: row nowrap;
2551
+ -ms-flex-flow: row nowrap;
2552
+ flex-flow: row nowrap; }
2553
+ .menu > li > a img,
2554
+ .menu > li > a i,
2555
+ .menu > li > a svg {
2556
+ margin-right: 0.25rem; }
2557
+ .menu, .menu.horizontal {
2558
+ -webkit-flex-wrap: nowrap;
2559
+ -ms-flex-wrap: nowrap;
2560
+ flex-wrap: nowrap; }
2561
+ .menu > li, .menu.horizontal > li {
2562
+ -webkit-box-flex: 0;
2563
+ -webkit-flex: 0 0 auto;
2564
+ -ms-flex: 0 0 auto;
2565
+ flex: 0 0 auto; }
2566
+ .menu.expanded > li {
2567
+ -webkit-box-flex: 1;
2568
+ -webkit-flex: 1 1 0px;
2569
+ -ms-flex: 1 1 0px;
2570
+ flex: 1 1 0px; }
2571
+ .menu.expanded > li:first-child:last-child {
2572
+ width: 100%; }
2573
+ .menu.vertical {
2574
+ -webkit-flex-wrap: wrap;
2575
+ -ms-flex-wrap: wrap;
2576
+ flex-wrap: wrap; }
2577
+ .menu.vertical > li {
2578
+ -webkit-box-flex: 0;
2579
+ -webkit-flex: 0 0 100%;
2580
+ -ms-flex: 0 0 100%;
2581
+ flex: 0 0 100%;
2582
+ max-width: 100%; }
2583
+ .menu.vertical > li > a {
2584
+ -webkit-box-pack: start;
2585
+ -webkit-justify-content: flex-start;
2586
+ -ms-flex-pack: start;
2587
+ justify-content: flex-start;
2588
+ -webkit-box-align: start;
2589
+ -webkit-align-items: flex-start;
2590
+ -ms-flex-align: start;
2591
+ align-items: flex-start; }
2592
+ @media print, screen and (min-width: 40em) {
2593
+ .menu.medium-horizontal {
2594
+ -webkit-flex-wrap: nowrap;
2595
+ -ms-flex-wrap: nowrap;
2596
+ flex-wrap: nowrap; }
2597
+ .menu.medium-horizontal > li {
2598
+ -webkit-box-flex: 0;
2599
+ -webkit-flex: 0 0 auto;
2600
+ -ms-flex: 0 0 auto;
2601
+ flex: 0 0 auto; }
2602
+ .menu.medium-expanded > li {
2603
+ -webkit-box-flex: 1;
2604
+ -webkit-flex: 1 1 0px;
2605
+ -ms-flex: 1 1 0px;
2606
+ flex: 1 1 0px; }
2607
+ .menu.medium-expanded > li:first-child:last-child {
2608
+ width: 100%; }
2609
+ .menu.medium-vertical {
2610
+ -webkit-flex-wrap: wrap;
2611
+ -ms-flex-wrap: wrap;
2612
+ flex-wrap: wrap; }
2613
+ .menu.medium-vertical > li {
2614
+ -webkit-box-flex: 0;
2615
+ -webkit-flex: 0 0 100%;
2616
+ -ms-flex: 0 0 100%;
2617
+ flex: 0 0 100%;
2618
+ max-width: 100%; }
2619
+ .menu.medium-vertical > li > a {
2620
+ -webkit-box-pack: start;
2621
+ -webkit-justify-content: flex-start;
2622
+ -ms-flex-pack: start;
2623
+ justify-content: flex-start;
2624
+ -webkit-box-align: start;
2625
+ -webkit-align-items: flex-start;
2626
+ -ms-flex-align: start;
2627
+ align-items: flex-start; } }
2628
+ @media print, screen and (min-width: 64em) {
2629
+ .menu.large-horizontal {
2630
+ -webkit-flex-wrap: nowrap;
2631
+ -ms-flex-wrap: nowrap;
2632
+ flex-wrap: nowrap; }
2633
+ .menu.large-horizontal > li {
2634
+ -webkit-box-flex: 0;
2635
+ -webkit-flex: 0 0 auto;
2636
+ -ms-flex: 0 0 auto;
2637
+ flex: 0 0 auto; }
2638
+ .menu.large-expanded > li {
2639
+ -webkit-box-flex: 1;
2640
+ -webkit-flex: 1 1 0px;
2641
+ -ms-flex: 1 1 0px;
2642
+ flex: 1 1 0px; }
2643
+ .menu.large-expanded > li:first-child:last-child {
2644
+ width: 100%; }
2645
+ .menu.large-vertical {
2646
+ -webkit-flex-wrap: wrap;
2647
+ -ms-flex-wrap: wrap;
2648
+ flex-wrap: wrap; }
2649
+ .menu.large-vertical > li {
2650
+ -webkit-box-flex: 0;
2651
+ -webkit-flex: 0 0 100%;
2652
+ -ms-flex: 0 0 100%;
2653
+ flex: 0 0 100%;
2654
+ max-width: 100%; }
2655
+ .menu.large-vertical > li > a {
2656
+ -webkit-box-pack: start;
2657
+ -webkit-justify-content: flex-start;
2658
+ -ms-flex-pack: start;
2659
+ justify-content: flex-start;
2660
+ -webkit-box-align: start;
2661
+ -webkit-align-items: flex-start;
2662
+ -ms-flex-align: start;
2663
+ align-items: flex-start; } }
2664
+ .menu.simple li {
2665
+ display: inline-block;
2666
+ vertical-align: top;
2667
+ line-height: 1; }
2668
+ .menu.simple a {
2669
+ padding: 0; }
2670
+ .menu.simple li {
2671
+ margin-left: 0;
2672
+ margin-right: 1rem; }
2673
+ .menu.simple.align-right li {
2674
+ margin-right: 0;
2675
+ margin-left: 1rem; }
2676
+ .menu.align-right {
2677
+ -webkit-box-pack: end;
2678
+ -webkit-justify-content: flex-end;
2679
+ -ms-flex-pack: end;
2680
+ justify-content: flex-end; }
2681
+ .menu.icon-top > li > a {
2682
+ -webkit-flex-flow: column nowrap;
2683
+ -ms-flex-flow: column nowrap;
2684
+ flex-flow: column nowrap; }
2685
+ .menu.icon-top > li > a img,
2686
+ .menu.icon-top > li > a i,
2687
+ .menu.icon-top > li > a svg {
2688
+ -webkit-align-self: stretch;
2689
+ -ms-flex-item-align: stretch;
2690
+ -ms-grid-row-align: stretch;
2691
+ align-self: stretch;
2692
+ margin-bottom: 0.25rem;
2693
+ text-align: center; }
2694
+ .menu.icon-top.vertical a > span {
2695
+ margin: auto; }
2696
+ .menu.nested {
2697
+ margin-left: 1rem; }
2698
+ .menu .active > a {
2699
+ background: #1779ba;
2700
+ color: #fefefe; }
2701
+ .menu.menu-bordered li {
2702
+ border: 1px solid #e6e6e6; }
2703
+ .menu.menu-bordered li:not(:first-child) {
2704
+ border-top: 0; }
2705
+ .menu.menu-hover li:hover {
2706
+ background-color: #e6e6e6; }
2707
+
2708
+ .menu-text {
2709
+ padding-top: 0;
2710
+ padding-bottom: 0;
2711
+ padding: 0.7rem 1rem;
2712
+ font-weight: bold;
2713
+ line-height: 1;
2714
+ color: inherit; }
2715
+
2716
+ .menu-centered {
2717
+ text-align: center; }
2718
+ .menu-centered > .menu {
2719
+ display: inline-block;
2720
+ vertical-align: top; }
2721
+
2722
+ .no-js [data-responsive-menu] ul {
2723
+ display: none; }
2724
+
2725
+ .menu-icon {
2726
+ position: relative;
2727
+ display: inline-block;
2728
+ vertical-align: middle;
2729
+ width: 20px;
2730
+ height: 16px;
2731
+ cursor: pointer; }
2732
+ .menu-icon::after {
2733
+ position: absolute;
2734
+ top: 0;
2735
+ left: 0;
2736
+ display: block;
2737
+ width: 100%;
2738
+ height: 2px;
2739
+ background: #fefefe;
2740
+ -webkit-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
2741
+ box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
2742
+ content: ''; }
2743
+ .menu-icon:hover::after {
2744
+ background: #cacaca;
2745
+ -webkit-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
2746
+ box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }
2747
+
2748
+ .menu-icon.dark {
2749
+ position: relative;
2750
+ display: inline-block;
2751
+ vertical-align: middle;
2752
+ width: 20px;
2753
+ height: 16px;
2754
+ cursor: pointer; }
2755
+ .menu-icon.dark::after {
2756
+ position: absolute;
2757
+ top: 0;
2758
+ left: 0;
2759
+ display: block;
2760
+ width: 100%;
2761
+ height: 2px;
2762
+ background: #0a0a0a;
2763
+ -webkit-box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
2764
+ box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
2765
+ content: ''; }
2766
+ .menu-icon.dark:hover::after {
2767
+ background: #8a8a8a;
2768
+ -webkit-box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
2769
+ box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
2770
+
2771
+ .is-drilldown {
2772
+ position: relative;
2773
+ overflow: hidden; }
2774
+ .is-drilldown li {
2775
+ display: block; }
2776
+ .is-drilldown.animate-height {
2777
+ -webkit-transition: height 0.5s;
2778
+ transition: height 0.5s; }
2779
+
2780
+ .is-drilldown-submenu {
2781
+ position: absolute;
2782
+ top: 0;
2783
+ left: 100%;
2784
+ z-index: -1;
2785
+ width: 100%;
2786
+ background: #fefefe;
2787
+ -webkit-transition: -webkit-transform 0.15s linear;
2788
+ transition: -webkit-transform 0.15s linear;
2789
+ transition: transform 0.15s linear;
2790
+ transition: transform 0.15s linear, -webkit-transform 0.15s linear; }
2791
+ .is-drilldown-submenu.is-active {
2792
+ z-index: 1;
2793
+ display: block;
2794
+ -webkit-transform: translateX(-100%);
2795
+ -ms-transform: translateX(-100%);
2796
+ transform: translateX(-100%); }
2797
+ .is-drilldown-submenu.is-closing {
2798
+ -webkit-transform: translateX(100%);
2799
+ -ms-transform: translateX(100%);
2800
+ transform: translateX(100%); }
2801
+
2802
+ .drilldown-submenu-cover-previous {
2803
+ min-height: 100%; }
2804
+
2805
+ .is-drilldown-submenu-parent > a {
2806
+ position: relative; }
2807
+ .is-drilldown-submenu-parent > a::after {
2808
+ display: block;
2809
+ width: 0;
2810
+ height: 0;
2811
+ border: inset 6px;
2812
+ content: '';
2813
+ border-right-width: 0;
2814
+ border-left-style: solid;
2815
+ border-color: transparent transparent transparent #1779ba;
2816
+ position: absolute;
2817
+ top: 50%;
2818
+ margin-top: -6px;
2819
+ right: 1rem; }
2820
+
2821
+ .js-drilldown-back > a::before {
2822
+ display: block;
2823
+ width: 0;
2824
+ height: 0;
2825
+ border: inset 6px;
2826
+ content: '';
2827
+ border-left-width: 0;
2828
+ border-right-style: solid;
2829
+ border-color: transparent #1779ba transparent transparent;
2830
+ border-left-width: 0;
2831
+ display: inline-block;
2832
+ vertical-align: middle;
2833
+ margin-right: 0.75rem;
2834
+ border-left-width: 0; }
2835
+
2836
+ .dropdown-pane {
2837
+ position: absolute;
2838
+ z-index: 10;
2839
+ display: block;
2840
+ width: 300px;
2841
+ padding: 1rem;
2842
+ visibility: hidden;
2843
+ border: 1px solid #cacaca;
2844
+ border-radius: 0;
2845
+ background-color: #fefefe;
2846
+ font-size: 1rem; }
2847
+ .dropdown-pane.is-open {
2848
+ visibility: visible; }
2849
+
2850
+ .dropdown-pane.tiny {
2851
+ width: 100px; }
2852
+
2853
+ .dropdown-pane.small {
2854
+ width: 200px; }
2855
+
2856
+ .dropdown-pane.large {
2857
+ width: 400px; }
2858
+
2859
+ .dropdown.menu > li.opens-left > .is-dropdown-submenu {
2860
+ top: 100%;
2861
+ right: 0;
2862
+ left: auto; }
2863
+
2864
+ .dropdown.menu > li.opens-right > .is-dropdown-submenu {
2865
+ top: 100%;
2866
+ right: auto;
2867
+ left: 0; }
2868
+
2869
+ .dropdown.menu > li.is-dropdown-submenu-parent > a {
2870
+ position: relative;
2871
+ padding-right: 1.5rem; }
2872
+
2873
+ .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
2874
+ display: block;
2875
+ width: 0;
2876
+ height: 0;
2877
+ border: inset 6px;
2878
+ content: '';
2879
+ border-bottom-width: 0;
2880
+ border-top-style: solid;
2881
+ border-color: #1779ba transparent transparent;
2882
+ right: 5px;
2883
+ margin-top: -3px; }
2884
+
2885
+ [data-whatinput='mouse'] .dropdown.menu a {
2886
+ outline: 0; }
2887
+
2888
+ .no-js .dropdown.menu ul {
2889
+ display: none; }
2890
+
2891
+ .dropdown.menu.vertical > li .is-dropdown-submenu {
2892
+ top: 0; }
2893
+
2894
+ .dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
2895
+ right: 100%;
2896
+ left: auto; }
2897
+
2898
+ .dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
2899
+ right: auto;
2900
+ left: 100%; }
2901
+
2902
+ .dropdown.menu.vertical > li > a::after {
2903
+ right: 14px; }
2904
+
2905
+ .dropdown.menu.vertical > li.opens-left > a::after {
2906
+ display: block;
2907
+ width: 0;
2908
+ height: 0;
2909
+ border: inset 6px;
2910
+ content: '';
2911
+ border-left-width: 0;
2912
+ border-right-style: solid;
2913
+ border-color: transparent #1779ba transparent transparent; }
2914
+
2915
+ .dropdown.menu.vertical > li.opens-right > a::after {
2916
+ display: block;
2917
+ width: 0;
2918
+ height: 0;
2919
+ border: inset 6px;
2920
+ content: '';
2921
+ border-right-width: 0;
2922
+ border-left-style: solid;
2923
+ border-color: transparent transparent transparent #1779ba; }
2924
+
2925
+ @media print, screen and (min-width: 40em) {
2926
+ .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
2927
+ top: 100%;
2928
+ right: 0;
2929
+ left: auto; }
2930
+ .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
2931
+ top: 100%;
2932
+ right: auto;
2933
+ left: 0; }
2934
+ .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
2935
+ position: relative;
2936
+ padding-right: 1.5rem; }
2937
+ .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
2938
+ display: block;
2939
+ width: 0;
2940
+ height: 0;
2941
+ border: inset 6px;
2942
+ content: '';
2943
+ border-bottom-width: 0;
2944
+ border-top-style: solid;
2945
+ border-color: #1779ba transparent transparent;
2946
+ right: 5px;
2947
+ margin-top: -3px; }
2948
+ .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
2949
+ top: 0; }
2950
+ .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
2951
+ right: 100%;
2952
+ left: auto; }
2953
+ .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
2954
+ right: auto;
2955
+ left: 100%; }
2956
+ .dropdown.menu.medium-vertical > li > a::after {
2957
+ right: 14px; }
2958
+ .dropdown.menu.medium-vertical > li.opens-left > a::after {
2959
+ display: block;
2960
+ width: 0;
2961
+ height: 0;
2962
+ border: inset 6px;
2963
+ content: '';
2964
+ border-left-width: 0;
2965
+ border-right-style: solid;
2966
+ border-color: transparent #1779ba transparent transparent; }
2967
+ .dropdown.menu.medium-vertical > li.opens-right > a::after {
2968
+ display: block;
2969
+ width: 0;
2970
+ height: 0;
2971
+ border: inset 6px;
2972
+ content: '';
2973
+ border-right-width: 0;
2974
+ border-left-style: solid;
2975
+ border-color: transparent transparent transparent #1779ba; } }
2976
+
2977
+ @media print, screen and (min-width: 64em) {
2978
+ .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
2979
+ top: 100%;
2980
+ right: 0;
2981
+ left: auto; }
2982
+ .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
2983
+ top: 100%;
2984
+ right: auto;
2985
+ left: 0; }
2986
+ .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
2987
+ position: relative;
2988
+ padding-right: 1.5rem; }
2989
+ .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
2990
+ display: block;
2991
+ width: 0;
2992
+ height: 0;
2993
+ border: inset 6px;
2994
+ content: '';
2995
+ border-bottom-width: 0;
2996
+ border-top-style: solid;
2997
+ border-color: #1779ba transparent transparent;
2998
+ right: 5px;
2999
+ margin-top: -3px; }
3000
+ .dropdown.menu.large-vertical > li .is-dropdown-submenu {
3001
+ top: 0; }
3002
+ .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
3003
+ right: 100%;
3004
+ left: auto; }
3005
+ .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
3006
+ right: auto;
3007
+ left: 100%; }
3008
+ .dropdown.menu.large-vertical > li > a::after {
3009
+ right: 14px; }
3010
+ .dropdown.menu.large-vertical > li.opens-left > a::after {
3011
+ display: block;
3012
+ width: 0;
3013
+ height: 0;
3014
+ border: inset 6px;
3015
+ content: '';
3016
+ border-left-width: 0;
3017
+ border-right-style: solid;
3018
+ border-color: transparent #1779ba transparent transparent; }
3019
+ .dropdown.menu.large-vertical > li.opens-right > a::after {
3020
+ display: block;
3021
+ width: 0;
3022
+ height: 0;
3023
+ border: inset 6px;
3024
+ content: '';
3025
+ border-right-width: 0;
3026
+ border-left-style: solid;
3027
+ border-color: transparent transparent transparent #1779ba; } }
3028
+
3029
+ .dropdown.menu.align-right .is-dropdown-submenu.first-sub {
3030
+ top: 100%;
3031
+ right: 0;
3032
+ left: auto; }
3033
+
3034
+ .is-dropdown-menu.vertical {
3035
+ width: 100px; }
3036
+ .is-dropdown-menu.vertical.align-right {
3037
+ float: right; }
3038
+
3039
+ .is-dropdown-submenu-parent {
3040
+ position: relative; }
3041
+ .is-dropdown-submenu-parent a::after {
3042
+ position: absolute;
3043
+ top: 50%;
3044
+ right: 5px;
3045
+ margin-top: -6px; }
3046
+ .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
3047
+ top: 100%;
3048
+ left: auto; }
3049
+ .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
3050
+ right: 100%;
3051
+ left: auto; }
3052
+ .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
3053
+ right: auto;
3054
+ left: 100%; }
3055
+
3056
+ .is-dropdown-submenu {
3057
+ position: absolute;
3058
+ top: 0;
3059
+ left: 100%;
3060
+ z-index: 1;
3061
+ display: none;
3062
+ min-width: 200px;
3063
+ border: 1px solid #cacaca;
3064
+ background: #fefefe; }
3065
+ .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
3066
+ right: 14px; }
3067
+ .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
3068
+ display: block;
3069
+ width: 0;
3070
+ height: 0;
3071
+ border: inset 6px;
3072
+ content: '';
3073
+ border-left-width: 0;
3074
+ border-right-style: solid;
3075
+ border-color: transparent #1779ba transparent transparent; }
3076
+ .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
3077
+ display: block;
3078
+ width: 0;
3079
+ height: 0;
3080
+ border: inset 6px;
3081
+ content: '';
3082
+ border-right-width: 0;
3083
+ border-left-style: solid;
3084
+ border-color: transparent transparent transparent #1779ba; }
3085
+ .is-dropdown-submenu .is-dropdown-submenu {
3086
+ margin-top: -1px; }
3087
+ .is-dropdown-submenu > li {
3088
+ width: 100%; }
3089
+ .is-dropdown-submenu.js-dropdown-active {
3090
+ display: block; }
3091
+
3092
+ .responsive-embed,
3093
+ .flex-video {
3094
+ position: relative;
3095
+ height: 0;
3096
+ margin-bottom: 1rem;
3097
+ padding-bottom: 75%;
3098
+ overflow: hidden; }
3099
+ .responsive-embed iframe,
3100
+ .responsive-embed object,
3101
+ .responsive-embed embed,
3102
+ .responsive-embed video,
3103
+ .flex-video iframe,
3104
+ .flex-video object,
3105
+ .flex-video embed,
3106
+ .flex-video video {
3107
+ position: absolute;
3108
+ top: 0;
3109
+ left: 0;
3110
+ width: 100%;
3111
+ height: 100%; }
3112
+ .responsive-embed.widescreen,
3113
+ .flex-video.widescreen {
3114
+ padding-bottom: 56.25%; }
3115
+
3116
+ .label {
3117
+ display: inline-block;
3118
+ padding: 0.33333rem 0.5rem;
3119
+ border-radius: 0;
3120
+ font-size: 0.8rem;
3121
+ line-height: 1;
3122
+ white-space: nowrap;
3123
+ cursor: default;
3124
+ background: #1779ba;
3125
+ color: #fefefe; }
3126
+ .label.primary {
3127
+ background: #1779ba;
3128
+ color: #fefefe; }
3129
+ .label.secondary {
3130
+ background: #767676;
3131
+ color: #fefefe; }
3132
+ .label.success {
3133
+ background: #3adb76;
3134
+ color: #0a0a0a; }
3135
+ .label.warning {
3136
+ background: #ffae00;
3137
+ color: #0a0a0a; }
3138
+ .label.alert {
3139
+ background: #cc4b37;
3140
+ color: #fefefe; }
3141
+
3142
+ .media-object {
3143
+ display: -webkit-box;
3144
+ display: -webkit-flex;
3145
+ display: -ms-flexbox;
3146
+ display: flex;
3147
+ margin-bottom: 1rem;
3148
+ -webkit-flex-wrap: nowrap;
3149
+ -ms-flex-wrap: nowrap;
3150
+ flex-wrap: nowrap; }
3151
+ .media-object img {
3152
+ max-width: none; }
3153
+ @media screen and (max-width: 39.9375em) {
3154
+ .media-object.stack-for-small {
3155
+ -webkit-flex-wrap: wrap;
3156
+ -ms-flex-wrap: wrap;
3157
+ flex-wrap: wrap; } }
3158
+ @media screen and (max-width: 39.9375em) {
3159
+ .media-object.stack-for-small .media-object-section {
3160
+ padding: 0;
3161
+ padding-bottom: 1rem;
3162
+ -webkit-flex-basis: 100%;
3163
+ -ms-flex-preferred-size: 100%;
3164
+ flex-basis: 100%;
3165
+ max-width: 100%; }
3166
+ .media-object.stack-for-small .media-object-section img {
3167
+ width: 100%; } }
3168
+
3169
+ .media-object-section {
3170
+ -webkit-box-flex: 0;
3171
+ -webkit-flex: 0 1 auto;
3172
+ -ms-flex: 0 1 auto;
3173
+ flex: 0 1 auto; }
3174
+ .media-object-section:first-child {
3175
+ padding-right: 1rem; }
3176
+ .media-object-section:last-child:not(:nth-child(2)) {
3177
+ padding-left: 1rem; }
3178
+ .media-object-section > :last-child {
3179
+ margin-bottom: 0; }
3180
+ .media-object-section.main-section {
3181
+ -webkit-box-flex: 1;
3182
+ -webkit-flex: 1 1 0px;
3183
+ -ms-flex: 1 1 0px;
3184
+ flex: 1 1 0px; }
3185
+
3186
+ .is-off-canvas-open {
3187
+ overflow: hidden; }
3188
+
3189
+ .js-off-canvas-overlay {
3190
+ position: absolute;
3191
+ top: 0;
3192
+ left: 0;
3193
+ width: 100%;
3194
+ height: 100%;
3195
+ -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
3196
+ transition: opacity 0.5s ease, visibility 0.5s ease;
3197
+ background: rgba(254, 254, 254, 0.25);
3198
+ opacity: 0;
3199
+ visibility: hidden;
3200
+ overflow: hidden; }
3201
+ .js-off-canvas-overlay.is-visible {
3202
+ opacity: 1;
3203
+ visibility: visible; }
3204
+ .js-off-canvas-overlay.is-closable {
3205
+ cursor: pointer; }
3206
+ .js-off-canvas-overlay.is-overlay-absolute {
3207
+ position: absolute; }
3208
+ .js-off-canvas-overlay.is-overlay-fixed {
3209
+ position: fixed; }
3210
+
3211
+ .off-canvas-wrapper {
3212
+ position: relative;
3213
+ overflow: hidden; }
3214
+
3215
+ .off-canvas {
3216
+ position: fixed;
3217
+ z-index: 1;
3218
+ -webkit-transition: -webkit-transform 0.5s ease;
3219
+ transition: -webkit-transform 0.5s ease;
3220
+ transition: transform 0.5s ease;
3221
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease;
3222
+ -webkit-backface-visibility: hidden;
3223
+ backface-visibility: hidden;
3224
+ background: #e6e6e6; }
3225
+ [data-whatinput='mouse'] .off-canvas {
3226
+ outline: 0; }
3227
+ .off-canvas.is-transition-overlap {
3228
+ z-index: 10; }
3229
+ .off-canvas.is-transition-overlap.is-open {
3230
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3231
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
3232
+ .off-canvas.is-open {
3233
+ -webkit-transform: translate(0, 0);
3234
+ -ms-transform: translate(0, 0);
3235
+ transform: translate(0, 0); }
3236
+
3237
+ .off-canvas-absolute {
3238
+ position: absolute;
3239
+ z-index: 1;
3240
+ -webkit-transition: -webkit-transform 0.5s ease;
3241
+ transition: -webkit-transform 0.5s ease;
3242
+ transition: transform 0.5s ease;
3243
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease;
3244
+ -webkit-backface-visibility: hidden;
3245
+ backface-visibility: hidden;
3246
+ background: #e6e6e6; }
3247
+ [data-whatinput='mouse'] .off-canvas-absolute {
3248
+ outline: 0; }
3249
+ .off-canvas-absolute.is-transition-overlap {
3250
+ z-index: 10; }
3251
+ .off-canvas-absolute.is-transition-overlap.is-open {
3252
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3253
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
3254
+ .off-canvas-absolute.is-open {
3255
+ -webkit-transform: translate(0, 0);
3256
+ -ms-transform: translate(0, 0);
3257
+ transform: translate(0, 0); }
3258
+
3259
+ .position-left {
3260
+ top: 0;
3261
+ left: 0;
3262
+ width: 250px;
3263
+ height: 100%;
3264
+ -webkit-transform: translateX(-250px);
3265
+ -ms-transform: translateX(-250px);
3266
+ transform: translateX(-250px);
3267
+ overflow-y: auto; }
3268
+ .position-left.is-open ~ .off-canvas-content {
3269
+ -webkit-transform: translateX(250px);
3270
+ -ms-transform: translateX(250px);
3271
+ transform: translateX(250px); }
3272
+ .position-left.is-transition-push::after {
3273
+ position: absolute;
3274
+ top: 0;
3275
+ right: 0;
3276
+ height: 100%;
3277
+ width: 1px;
3278
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3279
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3280
+ content: " "; }
3281
+ .position-left.is-transition-overlap.is-open ~ .off-canvas-content {
3282
+ -webkit-transform: none;
3283
+ -ms-transform: none;
3284
+ transform: none; }
3285
+
3286
+ .position-right {
3287
+ top: 0;
3288
+ right: 0;
3289
+ width: 250px;
3290
+ height: 100%;
3291
+ -webkit-transform: translateX(250px);
3292
+ -ms-transform: translateX(250px);
3293
+ transform: translateX(250px);
3294
+ overflow-y: auto; }
3295
+ .position-right.is-open ~ .off-canvas-content {
3296
+ -webkit-transform: translateX(-250px);
3297
+ -ms-transform: translateX(-250px);
3298
+ transform: translateX(-250px); }
3299
+ .position-right.is-transition-push::after {
3300
+ position: absolute;
3301
+ top: 0;
3302
+ left: 0;
3303
+ height: 100%;
3304
+ width: 1px;
3305
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3306
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3307
+ content: " "; }
3308
+ .position-right.is-transition-overlap.is-open ~ .off-canvas-content {
3309
+ -webkit-transform: none;
3310
+ -ms-transform: none;
3311
+ transform: none; }
3312
+
3313
+ .position-top {
3314
+ top: 0;
3315
+ left: 0;
3316
+ width: 100%;
3317
+ height: 250px;
3318
+ -webkit-transform: translateY(-250px);
3319
+ -ms-transform: translateY(-250px);
3320
+ transform: translateY(-250px);
3321
+ overflow-x: auto; }
3322
+ .position-top.is-open ~ .off-canvas-content {
3323
+ -webkit-transform: translateY(250px);
3324
+ -ms-transform: translateY(250px);
3325
+ transform: translateY(250px); }
3326
+ .position-top.is-transition-push::after {
3327
+ position: absolute;
3328
+ bottom: 0;
3329
+ left: 0;
3330
+ height: 1px;
3331
+ width: 100%;
3332
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3333
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3334
+ content: " "; }
3335
+ .position-top.is-transition-overlap.is-open ~ .off-canvas-content {
3336
+ -webkit-transform: none;
3337
+ -ms-transform: none;
3338
+ transform: none; }
3339
+
3340
+ .position-bottom {
3341
+ bottom: 0;
3342
+ left: 0;
3343
+ width: 100%;
3344
+ height: 250px;
3345
+ -webkit-transform: translateY(250px);
3346
+ -ms-transform: translateY(250px);
3347
+ transform: translateY(250px);
3348
+ overflow-x: auto; }
3349
+ .position-bottom.is-open ~ .off-canvas-content {
3350
+ -webkit-transform: translateY(-250px);
3351
+ -ms-transform: translateY(-250px);
3352
+ transform: translateY(-250px); }
3353
+ .position-bottom.is-transition-push::after {
3354
+ position: absolute;
3355
+ top: 0;
3356
+ left: 0;
3357
+ height: 1px;
3358
+ width: 100%;
3359
+ -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3360
+ box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
3361
+ content: " "; }
3362
+ .position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
3363
+ -webkit-transform: none;
3364
+ -ms-transform: none;
3365
+ transform: none; }
3366
+
3367
+ .off-canvas-content {
3368
+ -webkit-transition: -webkit-transform 0.5s ease;
3369
+ transition: -webkit-transform 0.5s ease;
3370
+ transition: transform 0.5s ease;
3371
+ transition: transform 0.5s ease, -webkit-transform 0.5s ease;
3372
+ -webkit-backface-visibility: hidden;
3373
+ backface-visibility: hidden; }
3374
+
3375
+ @media print, screen and (min-width: 40em) {
3376
+ .position-left.reveal-for-medium {
3377
+ -webkit-transform: none;
3378
+ -ms-transform: none;
3379
+ transform: none;
3380
+ z-index: 1; }
3381
+ .position-left.reveal-for-medium ~ .off-canvas-content {
3382
+ margin-left: 250px; }
3383
+ .position-right.reveal-for-medium {
3384
+ -webkit-transform: none;
3385
+ -ms-transform: none;
3386
+ transform: none;
3387
+ z-index: 1; }
3388
+ .position-right.reveal-for-medium ~ .off-canvas-content {
3389
+ margin-right: 250px; }
3390
+ .position-top.reveal-for-medium {
3391
+ -webkit-transform: none;
3392
+ -ms-transform: none;
3393
+ transform: none;
3394
+ z-index: 1; }
3395
+ .position-top.reveal-for-medium ~ .off-canvas-content {
3396
+ margin-top: 250px; }
3397
+ .position-bottom.reveal-for-medium {
3398
+ -webkit-transform: none;
3399
+ -ms-transform: none;
3400
+ transform: none;
3401
+ z-index: 1; }
3402
+ .position-bottom.reveal-for-medium ~ .off-canvas-content {
3403
+ margin-bottom: 250px; } }
3404
+
3405
+ @media print, screen and (min-width: 64em) {
3406
+ .position-left.reveal-for-large {
3407
+ -webkit-transform: none;
3408
+ -ms-transform: none;
3409
+ transform: none;
3410
+ z-index: 1; }
3411
+ .position-left.reveal-for-large ~ .off-canvas-content {
3412
+ margin-left: 250px; }
3413
+ .position-right.reveal-for-large {
3414
+ -webkit-transform: none;
3415
+ -ms-transform: none;
3416
+ transform: none;
3417
+ z-index: 1; }
3418
+ .position-right.reveal-for-large ~ .off-canvas-content {
3419
+ margin-right: 250px; }
3420
+ .position-top.reveal-for-large {
3421
+ -webkit-transform: none;
3422
+ -ms-transform: none;
3423
+ transform: none;
3424
+ z-index: 1; }
3425
+ .position-top.reveal-for-large ~ .off-canvas-content {
3426
+ margin-top: 250px; }
3427
+ .position-bottom.reveal-for-large {
3428
+ -webkit-transform: none;
3429
+ -ms-transform: none;
3430
+ transform: none;
3431
+ z-index: 1; }
3432
+ .position-bottom.reveal-for-large ~ .off-canvas-content {
3433
+ margin-bottom: 250px; } }
3434
+
3435
+ .orbit {
3436
+ position: relative; }
3437
+
3438
+ .orbit-container {
3439
+ position: relative;
3440
+ height: 0;
3441
+ margin: 0;
3442
+ list-style: none;
3443
+ overflow: hidden; }
3444
+
3445
+ .orbit-slide {
3446
+ width: 100%; }
3447
+ .orbit-slide.no-motionui.is-active {
3448
+ top: 0;
3449
+ left: 0; }
3450
+
3451
+ .orbit-figure {
3452
+ margin: 0; }
3453
+
3454
+ .orbit-image {
3455
+ width: 100%;
3456
+ max-width: 100%;
3457
+ margin: 0; }
3458
+
3459
+ .orbit-caption {
3460
+ position: absolute;
3461
+ bottom: 0;
3462
+ width: 100%;
3463
+ margin-bottom: 0;
3464
+ padding: 1rem;
3465
+ background-color: rgba(10, 10, 10, 0.5);
3466
+ color: #fefefe; }
3467
+
3468
+ .orbit-previous, .orbit-next {
3469
+ position: absolute;
3470
+ top: 50%;
3471
+ -webkit-transform: translateY(-50%);
3472
+ -ms-transform: translateY(-50%);
3473
+ transform: translateY(-50%);
3474
+ z-index: 10;
3475
+ padding: 1rem;
3476
+ color: #fefefe; }
3477
+ [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
3478
+ outline: 0; }
3479
+ .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
3480
+ background-color: rgba(10, 10, 10, 0.5); }
3481
+
3482
+ .orbit-previous {
3483
+ left: 0; }
3484
+
3485
+ .orbit-next {
3486
+ left: auto;
3487
+ right: 0; }
3488
+
3489
+ .orbit-bullets {
3490
+ position: relative;
3491
+ margin-top: 0.8rem;
3492
+ margin-bottom: 0.8rem;
3493
+ text-align: center; }
3494
+ [data-whatinput='mouse'] .orbit-bullets {
3495
+ outline: 0; }
3496
+ .orbit-bullets button {
3497
+ width: 1.2rem;
3498
+ height: 1.2rem;
3499
+ margin: 0.1rem;
3500
+ border-radius: 50%;
3501
+ background-color: #cacaca; }
3502
+ .orbit-bullets button:hover {
3503
+ background-color: #8a8a8a; }
3504
+ .orbit-bullets button.is-active {
3505
+ background-color: #8a8a8a; }
3506
+
3507
+ .pagination {
3508
+ margin-left: 0;
3509
+ margin-bottom: 1rem; }
3510
+ .pagination::before, .pagination::after {
3511
+ display: table;
3512
+ content: ' ';
3513
+ -webkit-flex-basis: 0;
3514
+ -ms-flex-preferred-size: 0;
3515
+ flex-basis: 0;
3516
+ -webkit-box-ordinal-group: 2;
3517
+ -webkit-order: 1;
3518
+ -ms-flex-order: 1;
3519
+ order: 1; }
3520
+ .pagination::after {
3521
+ clear: both; }
3522
+ .pagination li {
3523
+ margin-right: 0.0625rem;
3524
+ border-radius: 0;
3525
+ font-size: 0.875rem;
3526
+ display: none; }
3527
+ .pagination li:last-child, .pagination li:first-child {
3528
+ display: inline-block; }
3529
+ @media print, screen and (min-width: 40em) {
3530
+ .pagination li {
3531
+ display: inline-block; } }
3532
+ .pagination a,
3533
+ .pagination button {
3534
+ display: block;
3535
+ padding: 0.1875rem 0.625rem;
3536
+ border-radius: 0;
3537
+ color: #0a0a0a; }
3538
+ .pagination a:hover,
3539
+ .pagination button:hover {
3540
+ background: #e6e6e6; }
3541
+ .pagination .current {
3542
+ padding: 0.1875rem 0.625rem;
3543
+ background: #1779ba;
3544
+ color: #fefefe;
3545
+ cursor: default; }
3546
+ .pagination .disabled {
3547
+ padding: 0.1875rem 0.625rem;
3548
+ color: #cacaca;
3549
+ cursor: not-allowed; }
3550
+ .pagination .disabled:hover {
3551
+ background: transparent; }
3552
+ .pagination .ellipsis::after {
3553
+ padding: 0.1875rem 0.625rem;
3554
+ content: '\2026';
3555
+ color: #0a0a0a; }
3556
+
3557
+ .pagination-previous a::before,
3558
+ .pagination-previous.disabled::before {
3559
+ display: inline-block;
3560
+ margin-right: 0.5rem;
3561
+ content: '\00ab'; }
3562
+
3563
+ .pagination-next a::after,
3564
+ .pagination-next.disabled::after {
3565
+ display: inline-block;
3566
+ margin-left: 0.5rem;
3567
+ content: '\00bb'; }
3568
+
3569
+ .progress {
3570
+ height: 1rem;
3571
+ margin-bottom: 1rem;
3572
+ border-radius: 0;
3573
+ background-color: #cacaca; }
3574
+ .progress.primary .progress-meter {
3575
+ background-color: #1779ba; }
3576
+ .progress.secondary .progress-meter {
3577
+ background-color: #767676; }
3578
+ .progress.success .progress-meter {
3579
+ background-color: #3adb76; }
3580
+ .progress.warning .progress-meter {
3581
+ background-color: #ffae00; }
3582
+ .progress.alert .progress-meter {
3583
+ background-color: #cc4b37; }
3584
+
3585
+ .progress-meter {
3586
+ position: relative;
3587
+ display: block;
3588
+ width: 0%;
3589
+ height: 100%;
3590
+ background-color: #1779ba; }
3591
+
3592
+ .progress-meter-text {
3593
+ position: absolute;
3594
+ top: 50%;
3595
+ left: 50%;
3596
+ -webkit-transform: translate(-50%, -50%);
3597
+ -ms-transform: translate(-50%, -50%);
3598
+ transform: translate(-50%, -50%);
3599
+ position: absolute;
3600
+ margin: 0;
3601
+ font-size: 0.75rem;
3602
+ font-weight: bold;
3603
+ color: #fefefe;
3604
+ white-space: nowrap; }
3605
+
3606
+ .slider {
3607
+ position: relative;
3608
+ height: 0.5rem;
3609
+ margin-top: 1.25rem;
3610
+ margin-bottom: 2.25rem;
3611
+ background-color: #e6e6e6;
3612
+ cursor: pointer;
3613
+ -webkit-user-select: none;
3614
+ -moz-user-select: none;
3615
+ -ms-user-select: none;
3616
+ user-select: none;
3617
+ -ms-touch-action: none;
3618
+ touch-action: none; }
3619
+
3620
+ .slider-fill {
3621
+ position: absolute;
3622
+ top: 0;
3623
+ left: 0;
3624
+ display: inline-block;
3625
+ max-width: 100%;
3626
+ height: 0.5rem;
3627
+ background-color: #cacaca;
3628
+ -webkit-transition: all 0.2s ease-in-out;
3629
+ transition: all 0.2s ease-in-out; }
3630
+ .slider-fill.is-dragging {
3631
+ -webkit-transition: all 0s linear;
3632
+ transition: all 0s linear; }
3633
+
3634
+ .slider-handle {
3635
+ position: absolute;
3636
+ top: 50%;
3637
+ -webkit-transform: translateY(-50%);
3638
+ -ms-transform: translateY(-50%);
3639
+ transform: translateY(-50%);
3640
+ position: absolute;
3641
+ left: 0;
3642
+ z-index: 1;
3643
+ display: inline-block;
3644
+ width: 1.4rem;
3645
+ height: 1.4rem;
3646
+ border-radius: 0;
3647
+ background-color: #1779ba;
3648
+ -webkit-transition: all 0.2s ease-in-out;
3649
+ transition: all 0.2s ease-in-out;
3650
+ -ms-touch-action: manipulation;
3651
+ touch-action: manipulation; }
3652
+ [data-whatinput='mouse'] .slider-handle {
3653
+ outline: 0; }
3654
+ .slider-handle:hover {
3655
+ background-color: #14679e; }
3656
+ .slider-handle.is-dragging {
3657
+ -webkit-transition: all 0s linear;
3658
+ transition: all 0s linear; }
3659
+
3660
+ .slider.disabled,
3661
+ .slider[disabled] {
3662
+ opacity: 0.25;
3663
+ cursor: not-allowed; }
3664
+
3665
+ .slider.vertical {
3666
+ display: inline-block;
3667
+ width: 0.5rem;
3668
+ height: 12.5rem;
3669
+ margin: 0 1.25rem;
3670
+ -webkit-transform: scale(1, -1);
3671
+ -ms-transform: scale(1, -1);
3672
+ transform: scale(1, -1); }
3673
+ .slider.vertical .slider-fill {
3674
+ top: 0;
3675
+ width: 0.5rem;
3676
+ max-height: 100%; }
3677
+ .slider.vertical .slider-handle {
3678
+ position: absolute;
3679
+ top: 0;
3680
+ left: 50%;
3681
+ width: 1.4rem;
3682
+ height: 1.4rem;
3683
+ -webkit-transform: translateX(-50%);
3684
+ -ms-transform: translateX(-50%);
3685
+ transform: translateX(-50%); }
3686
+
3687
+ .sticky-container {
3688
+ position: relative; }
3689
+
3690
+ .sticky {
3691
+ position: relative;
3692
+ z-index: 0;
3693
+ -webkit-transform: translate3d(0, 0, 0);
3694
+ transform: translate3d(0, 0, 0); }
3695
+
3696
+ .sticky.is-stuck {
3697
+ position: fixed;
3698
+ z-index: 5; }
3699
+ .sticky.is-stuck.is-at-top {
3700
+ top: 0; }
3701
+ .sticky.is-stuck.is-at-bottom {
3702
+ bottom: 0; }
3703
+
3704
+ .sticky.is-anchored {
3705
+ position: relative;
3706
+ right: auto;
3707
+ left: auto; }
3708
+ .sticky.is-anchored.is-at-bottom {
3709
+ bottom: 0; }
3710
+
3711
+ body.is-reveal-open {
3712
+ overflow: hidden; }
3713
+
3714
+ html.is-reveal-open,
3715
+ html.is-reveal-open body {
3716
+ min-height: 100%;
3717
+ overflow: hidden;
3718
+ -webkit-user-select: none;
3719
+ -moz-user-select: none;
3720
+ -ms-user-select: none;
3721
+ user-select: none; }
3722
+
3723
+ .reveal-overlay {
3724
+ position: fixed;
3725
+ top: 0;
3726
+ right: 0;
3727
+ bottom: 0;
3728
+ left: 0;
3729
+ z-index: 1005;
3730
+ display: none;
3731
+ background-color: rgba(10, 10, 10, 0.45);
3732
+ overflow-y: scroll; }
3733
+
3734
+ .reveal {
3735
+ z-index: 1006;
3736
+ -webkit-backface-visibility: hidden;
3737
+ backface-visibility: hidden;
3738
+ display: none;
3739
+ padding: 1rem;
3740
+ border: 1px solid #cacaca;
3741
+ border-radius: 0;
3742
+ background-color: #fefefe;
3743
+ position: relative;
3744
+ top: 100px;
3745
+ margin-right: auto;
3746
+ margin-left: auto;
3747
+ overflow-y: auto; }
3748
+ [data-whatinput='mouse'] .reveal {
3749
+ outline: 0; }
3750
+ @media print, screen and (min-width: 40em) {
3751
+ .reveal {
3752
+ min-height: 0; } }
3753
+ .reveal .column, .reveal .columns,
3754
+ .reveal .columns {
3755
+ min-width: 0; }
3756
+ .reveal > :last-child {
3757
+ margin-bottom: 0; }
3758
+ @media print, screen and (min-width: 40em) {
3759
+ .reveal {
3760
+ width: 600px;
3761
+ max-width: 75rem; } }
3762
+ @media print, screen and (min-width: 40em) {
3763
+ .reveal .reveal {
3764
+ right: auto;
3765
+ left: auto;
3766
+ margin: 0 auto; } }
3767
+ .reveal.collapse {
3768
+ padding: 0; }
3769
+ @media print, screen and (min-width: 40em) {
3770
+ .reveal.tiny {
3771
+ width: 30%;
3772
+ max-width: 75rem; } }
3773
+ @media print, screen and (min-width: 40em) {
3774
+ .reveal.small {
3775
+ width: 50%;
3776
+ max-width: 75rem; } }
3777
+ @media print, screen and (min-width: 40em) {
3778
+ .reveal.large {
3779
+ width: 90%;
3780
+ max-width: 75rem; } }
3781
+ .reveal.full {
3782
+ top: 0;
3783
+ left: 0;
3784
+ width: 100%;
3785
+ max-width: none;
3786
+ height: 100%;
3787
+ height: 100vh;
3788
+ min-height: 100vh;
3789
+ margin-left: 0;
3790
+ border: 0;
3791
+ border-radius: 0; }
3792
+ @media screen and (max-width: 39.9375em) {
3793
+ .reveal {
3794
+ top: 0;
3795
+ left: 0;
3796
+ width: 100%;
3797
+ max-width: none;
3798
+ height: 100%;
3799
+ height: 100vh;
3800
+ min-height: 100vh;
3801
+ margin-left: 0;
3802
+ border: 0;
3803
+ border-radius: 0; } }
3804
+ .reveal.without-overlay {
3805
+ position: fixed; }
3806
+
3807
+ .switch {
3808
+ height: 2rem;
3809
+ position: relative;
3810
+ margin-bottom: 1rem;
3811
+ outline: 0;
3812
+ font-size: 0.875rem;
3813
+ font-weight: bold;
3814
+ color: #fefefe;
3815
+ -webkit-user-select: none;
3816
+ -moz-user-select: none;
3817
+ -ms-user-select: none;
3818
+ user-select: none; }
3819
+
3820
+ .switch-input {
3821
+ position: absolute;
3822
+ margin-bottom: 0;
3823
+ opacity: 0; }
3824
+
3825
+ .switch-paddle {
3826
+ position: relative;
3827
+ display: block;
3828
+ width: 4rem;
3829
+ height: 2rem;
3830
+ border-radius: 0;
3831
+ background: #cacaca;
3832
+ -webkit-transition: all 0.25s ease-out;
3833
+ transition: all 0.25s ease-out;
3834
+ font-weight: inherit;
3835
+ color: inherit;
3836
+ cursor: pointer; }
3837
+ input + .switch-paddle {
3838
+ margin: 0; }
3839
+ .switch-paddle::after {
3840
+ position: absolute;
3841
+ top: 0.25rem;
3842
+ left: 0.25rem;
3843
+ display: block;
3844
+ width: 1.5rem;
3845
+ height: 1.5rem;
3846
+ -webkit-transform: translate3d(0, 0, 0);
3847
+ transform: translate3d(0, 0, 0);
3848
+ border-radius: 0;
3849
+ background: #fefefe;
3850
+ -webkit-transition: all 0.25s ease-out;
3851
+ transition: all 0.25s ease-out;
3852
+ content: ''; }
3853
+ input:checked ~ .switch-paddle {
3854
+ background: #1779ba; }
3855
+ input:checked ~ .switch-paddle::after {
3856
+ left: 2.25rem; }
3857
+ [data-whatinput='mouse'] input:focus ~ .switch-paddle {
3858
+ outline: 0; }
3859
+
3860
+ .switch-active, .switch-inactive {
3861
+ position: absolute;
3862
+ top: 50%;
3863
+ -webkit-transform: translateY(-50%);
3864
+ -ms-transform: translateY(-50%);
3865
+ transform: translateY(-50%); }
3866
+
3867
+ .switch-active {
3868
+ left: 8%;
3869
+ display: none; }
3870
+ input:checked + label > .switch-active {
3871
+ display: block; }
3872
+
3873
+ .switch-inactive {
3874
+ right: 15%; }
3875
+ input:checked + label > .switch-inactive {
3876
+ display: none; }
3877
+
3878
+ .switch.tiny {
3879
+ height: 1.5rem; }
3880
+ .switch.tiny .switch-paddle {
3881
+ width: 3rem;
3882
+ height: 1.5rem;
3883
+ font-size: 0.625rem; }
3884
+ .switch.tiny .switch-paddle::after {
3885
+ top: 0.25rem;
3886
+ left: 0.25rem;
3887
+ width: 1rem;
3888
+ height: 1rem; }
3889
+ .switch.tiny input:checked ~ .switch-paddle::after {
3890
+ left: 1.75rem; }
3891
+
3892
+ .switch.small {
3893
+ height: 1.75rem; }
3894
+ .switch.small .switch-paddle {
3895
+ width: 3.5rem;
3896
+ height: 1.75rem;
3897
+ font-size: 0.75rem; }
3898
+ .switch.small .switch-paddle::after {
3899
+ top: 0.25rem;
3900
+ left: 0.25rem;
3901
+ width: 1.25rem;
3902
+ height: 1.25rem; }
3903
+ .switch.small input:checked ~ .switch-paddle::after {
3904
+ left: 2rem; }
3905
+
3906
+ .switch.large {
3907
+ height: 2.5rem; }
3908
+ .switch.large .switch-paddle {
3909
+ width: 5rem;
3910
+ height: 2.5rem;
3911
+ font-size: 1rem; }
3912
+ .switch.large .switch-paddle::after {
3913
+ top: 0.25rem;
3914
+ left: 0.25rem;
3915
+ width: 2rem;
3916
+ height: 2rem; }
3917
+ .switch.large input:checked ~ .switch-paddle::after {
3918
+ left: 2.75rem; }
3919
+
3920
+ table {
3921
+ width: 100%;
3922
+ margin-bottom: 1rem;
3923
+ border-radius: 0; }
3924
+ table thead,
3925
+ table tbody,
3926
+ table tfoot {
3927
+ border: 1px solid #f1f1f1;
3928
+ background-color: #fefefe; }
3929
+ table caption {
3930
+ padding: 0.5rem 0.625rem 0.625rem;
3931
+ font-weight: bold; }
3932
+ table thead {
3933
+ background: #f8f8f8;
3934
+ color: #0a0a0a; }
3935
+ table tfoot {
3936
+ background: #f1f1f1;
3937
+ color: #0a0a0a; }
3938
+ table thead tr,
3939
+ table tfoot tr {
3940
+ background: transparent; }
3941
+ table thead th,
3942
+ table thead td,
3943
+ table tfoot th,
3944
+ table tfoot td {
3945
+ padding: 0.5rem 0.625rem 0.625rem;
3946
+ font-weight: bold;
3947
+ text-align: left; }
3948
+ table tbody th,
3949
+ table tbody td {
3950
+ padding: 0.5rem 0.625rem 0.625rem; }
3951
+ table tbody tr:nth-child(even) {
3952
+ border-bottom: 0;
3953
+ background-color: #f1f1f1; }
3954
+ table.unstriped tbody {
3955
+ background-color: #fefefe; }
3956
+ table.unstriped tbody tr {
3957
+ border-bottom: 0;
3958
+ border-bottom: 1px solid #f1f1f1;
3959
+ background-color: #fefefe; }
3960
+
3961
+ @media screen and (max-width: 63.9375em) {
3962
+ table.stack thead {
3963
+ display: none; }
3964
+ table.stack tfoot {
3965
+ display: none; }
3966
+ table.stack tr,
3967
+ table.stack th,
3968
+ table.stack td {
3969
+ display: block; }
3970
+ table.stack td {
3971
+ border-top: 0; } }
3972
+
3973
+ table.scroll {
3974
+ display: block;
3975
+ width: 100%;
3976
+ overflow-x: auto; }
3977
+
3978
+ table.hover thead tr:hover {
3979
+ background-color: #f3f3f3; }
3980
+
3981
+ table.hover tfoot tr:hover {
3982
+ background-color: #ececec; }
3983
+
3984
+ table.hover tbody tr:hover {
3985
+ background-color: #f9f9f9; }
3986
+
3987
+ table.hover:not(.unstriped) tr:nth-of-type(even):hover {
3988
+ background-color: #ececec; }
3989
+
3990
+ .table-scroll {
3991
+ overflow-x: auto; }
3992
+ .table-scroll table {
3993
+ width: auto; }
3994
+
3995
+ .tabs {
3996
+ margin: 0;
3997
+ border: 1px solid #e6e6e6;
3998
+ background: #fefefe;
3999
+ list-style-type: none; }
4000
+ .tabs::before, .tabs::after {
4001
+ display: table;
4002
+ content: ' ';
4003
+ -webkit-flex-basis: 0;
4004
+ -ms-flex-preferred-size: 0;
4005
+ flex-basis: 0;
4006
+ -webkit-box-ordinal-group: 2;
4007
+ -webkit-order: 1;
4008
+ -ms-flex-order: 1;
4009
+ order: 1; }
4010
+ .tabs::after {
4011
+ clear: both; }
4012
+
4013
+ .tabs.vertical > li {
4014
+ display: block;
4015
+ float: none;
4016
+ width: auto; }
4017
+
4018
+ .tabs.simple > li > a {
4019
+ padding: 0; }
4020
+ .tabs.simple > li > a:hover {
4021
+ background: transparent; }
4022
+
4023
+ .tabs.primary {
4024
+ background: #1779ba; }
4025
+ .tabs.primary > li > a {
4026
+ color: #fefefe; }
4027
+ .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
4028
+ background: #1673b1; }
4029
+
4030
+ .tabs-title {
4031
+ float: left; }
4032
+ .tabs-title > a {
4033
+ display: block;
4034
+ padding: 1.25rem 1.5rem;
4035
+ font-size: 0.75rem;
4036
+ line-height: 1;
4037
+ color: #1779ba; }
4038
+ .tabs-title > a:hover {
4039
+ background: #fefefe;
4040
+ color: #1468a0; }
4041
+ .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
4042
+ background: #e6e6e6;
4043
+ color: #1779ba; }
4044
+
4045
+ .tabs-content {
4046
+ border: 1px solid #e6e6e6;
4047
+ border-top: 0;
4048
+ background: #fefefe;
4049
+ color: #0a0a0a;
4050
+ -webkit-transition: all 0.5s ease;
4051
+ transition: all 0.5s ease; }
4052
+
4053
+ .tabs-content.vertical {
4054
+ border: 1px solid #e6e6e6;
4055
+ border-left: 0; }
4056
+
4057
+ .tabs-panel {
4058
+ display: none;
4059
+ padding: 1rem; }
4060
+ .tabs-panel[aria-hidden="false"] {
4061
+ display: block; }
4062
+
4063
+ .thumbnail {
4064
+ display: inline-block;
4065
+ max-width: 100%;
4066
+ margin-bottom: 1rem;
4067
+ border: solid 4px #fefefe;
4068
+ border-radius: 0;
4069
+ -webkit-box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
4070
+ box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
4071
+ line-height: 0; }
4072
+
4073
+ a.thumbnail {
4074
+ -webkit-transition: -webkit-box-shadow 200ms ease-out;
4075
+ transition: -webkit-box-shadow 200ms ease-out;
4076
+ transition: box-shadow 200ms ease-out;
4077
+ transition: box-shadow 200ms ease-out, -webkit-box-shadow 200ms ease-out; }
4078
+ a.thumbnail:hover, a.thumbnail:focus {
4079
+ -webkit-box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
4080
+ box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5); }
4081
+ a.thumbnail image {
4082
+ -webkit-box-shadow: none;
4083
+ box-shadow: none; }
4084
+
4085
+ .title-bar {
4086
+ padding: 0.5rem;
4087
+ background: #0a0a0a;
4088
+ color: #fefefe;
4089
+ display: -webkit-box;
4090
+ display: -webkit-flex;
4091
+ display: -ms-flexbox;
4092
+ display: flex;
4093
+ -webkit-box-pack: justify;
4094
+ -webkit-justify-content: space-between;
4095
+ -ms-flex-pack: justify;
4096
+ justify-content: space-between;
4097
+ -webkit-box-align: center;
4098
+ -webkit-align-items: center;
4099
+ -ms-flex-align: center;
4100
+ align-items: center; }
4101
+ .title-bar .menu-icon {
4102
+ margin-left: 0.25rem;
4103
+ margin-right: 0.25rem; }
4104
+
4105
+ .title-bar-left,
4106
+ .title-bar-right {
4107
+ -webkit-box-flex: 1;
4108
+ -webkit-flex: 1 1 0px;
4109
+ -ms-flex: 1 1 0px;
4110
+ flex: 1 1 0px; }
4111
+
4112
+ .title-bar-right {
4113
+ text-align: right; }
4114
+
4115
+ .title-bar-title {
4116
+ display: inline-block;
4117
+ vertical-align: middle;
4118
+ font-weight: bold; }
4119
+
4120
+ .has-tip {
4121
+ position: relative;
4122
+ display: inline-block;
4123
+ border-bottom: dotted 1px #8a8a8a;
4124
+ font-weight: bold;
4125
+ cursor: help; }
4126
+
4127
+ .tooltip {
4128
+ position: absolute;
4129
+ top: calc(100% + 0.6495rem);
4130
+ z-index: 1200;
4131
+ max-width: 10rem;
4132
+ padding: 0.75rem;
4133
+ border-radius: 0;
4134
+ background-color: #0a0a0a;
4135
+ font-size: 80%;
4136
+ color: #fefefe; }
4137
+ .tooltip::before {
4138
+ display: block;
4139
+ width: 0;
4140
+ height: 0;
4141
+ border: inset 0.75rem;
4142
+ content: '';
4143
+ border-top-width: 0;
4144
+ border-bottom-style: solid;
4145
+ border-color: transparent transparent #0a0a0a;
4146
+ position: absolute;
4147
+ bottom: 100%;
4148
+ left: 50%;
4149
+ -webkit-transform: translateX(-50%);
4150
+ -ms-transform: translateX(-50%);
4151
+ transform: translateX(-50%); }
4152
+ .tooltip.top::before {
4153
+ display: block;
4154
+ width: 0;
4155
+ height: 0;
4156
+ border: inset 0.75rem;
4157
+ content: '';
4158
+ border-bottom-width: 0;
4159
+ border-top-style: solid;
4160
+ border-color: #0a0a0a transparent transparent;
4161
+ top: 100%;
4162
+ bottom: auto; }
4163
+ .tooltip.left::before {
4164
+ display: block;
4165
+ width: 0;
4166
+ height: 0;
4167
+ border: inset 0.75rem;
4168
+ content: '';
4169
+ border-right-width: 0;
4170
+ border-left-style: solid;
4171
+ border-color: transparent transparent transparent #0a0a0a;
4172
+ top: 50%;
4173
+ bottom: auto;
4174
+ left: 100%;
4175
+ -webkit-transform: translateY(-50%);
4176
+ -ms-transform: translateY(-50%);
4177
+ transform: translateY(-50%); }
4178
+ .tooltip.right::before {
4179
+ display: block;
4180
+ width: 0;
4181
+ height: 0;
4182
+ border: inset 0.75rem;
4183
+ content: '';
4184
+ border-left-width: 0;
4185
+ border-right-style: solid;
4186
+ border-color: transparent #0a0a0a transparent transparent;
4187
+ top: 50%;
4188
+ right: 100%;
4189
+ bottom: auto;
4190
+ left: auto;
4191
+ -webkit-transform: translateY(-50%);
4192
+ -ms-transform: translateY(-50%);
4193
+ transform: translateY(-50%); }
4194
+
4195
+ .top-bar {
4196
+ display: -webkit-box;
4197
+ display: -webkit-flex;
4198
+ display: -ms-flexbox;
4199
+ display: flex;
4200
+ -webkit-flex-wrap: nowrap;
4201
+ -ms-flex-wrap: nowrap;
4202
+ flex-wrap: nowrap;
4203
+ -webkit-box-pack: justify;
4204
+ -webkit-justify-content: space-between;
4205
+ -ms-flex-pack: justify;
4206
+ justify-content: space-between;
4207
+ -webkit-box-align: center;
4208
+ -webkit-align-items: center;
4209
+ -ms-flex-align: center;
4210
+ align-items: center;
4211
+ padding: 0.5rem;
4212
+ -webkit-flex-wrap: wrap;
4213
+ -ms-flex-wrap: wrap;
4214
+ flex-wrap: wrap; }
4215
+ .top-bar,
4216
+ .top-bar ul {
4217
+ background-color: #e6e6e6; }
4218
+ .top-bar input {
4219
+ max-width: 200px;
4220
+ margin-right: 1rem; }
4221
+ .top-bar .input-group-field {
4222
+ width: 100%;
4223
+ margin-right: 0; }
4224
+ .top-bar input.button {
4225
+ width: auto; }
4226
+ .top-bar .top-bar-left,
4227
+ .top-bar .top-bar-right {
4228
+ -webkit-box-flex: 0;
4229
+ -webkit-flex: 0 0 100%;
4230
+ -ms-flex: 0 0 100%;
4231
+ flex: 0 0 100%;
4232
+ max-width: 100%; }
4233
+ @media print, screen and (min-width: 40em) {
4234
+ .top-bar {
4235
+ -webkit-flex-wrap: nowrap;
4236
+ -ms-flex-wrap: nowrap;
4237
+ flex-wrap: nowrap; }
4238
+ .top-bar .top-bar-left {
4239
+ -webkit-box-flex: 1;
4240
+ -webkit-flex: 1 1 auto;
4241
+ -ms-flex: 1 1 auto;
4242
+ flex: 1 1 auto; }
4243
+ .top-bar .top-bar-right {
4244
+ -webkit-box-flex: 0;
4245
+ -webkit-flex: 0 1 auto;
4246
+ -ms-flex: 0 1 auto;
4247
+ flex: 0 1 auto; } }
4248
+ @media screen and (max-width: 63.9375em) {
4249
+ .top-bar.stacked-for-medium {
4250
+ -webkit-flex-wrap: wrap;
4251
+ -ms-flex-wrap: wrap;
4252
+ flex-wrap: wrap; }
4253
+ .top-bar.stacked-for-medium .top-bar-left,
4254
+ .top-bar.stacked-for-medium .top-bar-right {
4255
+ -webkit-box-flex: 0;
4256
+ -webkit-flex: 0 0 100%;
4257
+ -ms-flex: 0 0 100%;
4258
+ flex: 0 0 100%;
4259
+ max-width: 100%; } }
4260
+ @media screen and (max-width: 74.9375em) {
4261
+ .top-bar.stacked-for-large {
4262
+ -webkit-flex-wrap: wrap;
4263
+ -ms-flex-wrap: wrap;
4264
+ flex-wrap: wrap; }
4265
+ .top-bar.stacked-for-large .top-bar-left,
4266
+ .top-bar.stacked-for-large .top-bar-right {
4267
+ -webkit-box-flex: 0;
4268
+ -webkit-flex: 0 0 100%;
4269
+ -ms-flex: 0 0 100%;
4270
+ flex: 0 0 100%;
4271
+ max-width: 100%; } }
4272
+
4273
+ .top-bar-title {
4274
+ -webkit-box-flex: 0;
4275
+ -webkit-flex: 0 0 auto;
4276
+ -ms-flex: 0 0 auto;
4277
+ flex: 0 0 auto;
4278
+ margin: 0.5rem 1rem 0.5rem 0; }
4279
+
4280
+ .top-bar-left,
4281
+ .top-bar-right {
4282
+ -webkit-box-flex: 0;
4283
+ -webkit-flex: 0 0 auto;
4284
+ -ms-flex: 0 0 auto;
4285
+ flex: 0 0 auto; }
4286
+
4287
+ .hide {
4288
+ display: none !important; }
4289
+
4290
+ .invisible {
4291
+ visibility: hidden; }
4292
+
4293
+ @media screen and (max-width: 39.9375em) {
4294
+ .hide-for-small-only {
4295
+ display: none !important; } }
4296
+
4297
+ @media screen and (max-width: 0em), screen and (min-width: 40em) {
4298
+ .show-for-small-only {
4299
+ display: none !important; } }
4300
+
4301
+ @media print, screen and (min-width: 40em) {
4302
+ .hide-for-medium {
4303
+ display: none !important; } }
4304
+
4305
+ @media screen and (max-width: 39.9375em) {
4306
+ .show-for-medium {
4307
+ display: none !important; } }
4308
+
4309
+ @media screen and (min-width: 40em) and (max-width: 63.9375em) {
4310
+ .hide-for-medium-only {
4311
+ display: none !important; } }
4312
+
4313
+ @media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
4314
+ .show-for-medium-only {
4315
+ display: none !important; } }
4316
+
4317
+ @media print, screen and (min-width: 64em) {
4318
+ .hide-for-large {
4319
+ display: none !important; } }
4320
+
4321
+ @media screen and (max-width: 63.9375em) {
4322
+ .show-for-large {
4323
+ display: none !important; } }
4324
+
4325
+ @media screen and (min-width: 64em) and (max-width: 74.9375em) {
4326
+ .hide-for-large-only {
4327
+ display: none !important; } }
4328
+
4329
+ @media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
4330
+ .show-for-large-only {
4331
+ display: none !important; } }
4332
+
4333
+ .show-for-sr,
4334
+ .show-on-focus {
4335
+ position: absolute !important;
4336
+ width: 1px;
4337
+ height: 1px;
4338
+ overflow: hidden;
4339
+ clip: rect(0, 0, 0, 0); }
4340
+
4341
+ .show-on-focus:active, .show-on-focus:focus {
4342
+ position: static !important;
4343
+ width: auto;
4344
+ height: auto;
4345
+ overflow: visible;
4346
+ clip: auto; }
4347
+
4348
+ .show-for-landscape,
4349
+ .hide-for-portrait {
4350
+ display: block !important; }
4351
+ @media screen and (orientation: landscape) {
4352
+ .show-for-landscape,
4353
+ .hide-for-portrait {
4354
+ display: block !important; } }
4355
+ @media screen and (orientation: portrait) {
4356
+ .show-for-landscape,
4357
+ .hide-for-portrait {
4358
+ display: none !important; } }
4359
+
4360
+ .hide-for-landscape,
4361
+ .show-for-portrait {
4362
+ display: none !important; }
4363
+ @media screen and (orientation: landscape) {
4364
+ .hide-for-landscape,
4365
+ .show-for-portrait {
4366
+ display: none !important; } }
4367
+ @media screen and (orientation: portrait) {
4368
+ .hide-for-landscape,
4369
+ .show-for-portrait {
4370
+ display: block !important; } }
4371
+
4372
+ .float-left {
4373
+ float: left !important; }
4374
+
4375
+ .float-right {
4376
+ float: right !important; }
4377
+
4378
+ .float-center {
4379
+ display: block;
4380
+ margin-right: auto;
4381
+ margin-left: auto; }
4382
+
4383
+ .clearfix::before, .clearfix::after {
4384
+ display: table;
4385
+ content: ' ';
4386
+ -webkit-flex-basis: 0;
4387
+ -ms-flex-preferred-size: 0;
4388
+ flex-basis: 0;
4389
+ -webkit-box-ordinal-group: 2;
4390
+ -webkit-order: 1;
4391
+ -ms-flex-order: 1;
4392
+ order: 1; }
4393
+
4394
+ .clearfix::after {
4395
+ clear: both; }
4396
+
4397
+ .align-right {
4398
+ -webkit-box-pack: end;
4399
+ -webkit-justify-content: flex-end;
4400
+ -ms-flex-pack: end;
4401
+ justify-content: flex-end; }
4402
+
4403
+ .align-center {
4404
+ -webkit-box-pack: center;
4405
+ -webkit-justify-content: center;
4406
+ -ms-flex-pack: center;
4407
+ justify-content: center; }
4408
+
4409
+ .align-justify {
4410
+ -webkit-box-pack: justify;
4411
+ -webkit-justify-content: space-between;
4412
+ -ms-flex-pack: justify;
4413
+ justify-content: space-between; }
4414
+
4415
+ .align-spaced {
4416
+ -webkit-justify-content: space-around;
4417
+ -ms-flex-pack: distribute;
4418
+ justify-content: space-around; }
4419
+
4420
+ .align-top {
4421
+ -webkit-box-align: start;
4422
+ -webkit-align-items: flex-start;
4423
+ -ms-flex-align: start;
4424
+ align-items: flex-start; }
4425
+
4426
+ .align-self-top {
4427
+ -webkit-align-self: flex-start;
4428
+ -ms-flex-item-align: start;
4429
+ align-self: flex-start; }
4430
+
4431
+ .align-bottom {
4432
+ -webkit-box-align: end;
4433
+ -webkit-align-items: flex-end;
4434
+ -ms-flex-align: end;
4435
+ align-items: flex-end; }
4436
+
4437
+ .align-self-bottom {
4438
+ -webkit-align-self: flex-end;
4439
+ -ms-flex-item-align: end;
4440
+ align-self: flex-end; }
4441
+
4442
+ .align-middle {
4443
+ -webkit-box-align: center;
4444
+ -webkit-align-items: center;
4445
+ -ms-flex-align: center;
4446
+ align-items: center; }
4447
+
4448
+ .align-self-middle {
4449
+ -webkit-align-self: center;
4450
+ -ms-flex-item-align: center;
4451
+ -ms-grid-row-align: center;
4452
+ align-self: center; }
4453
+
4454
+ .align-stretch {
4455
+ -webkit-box-align: stretch;
4456
+ -webkit-align-items: stretch;
4457
+ -ms-flex-align: stretch;
4458
+ align-items: stretch; }
4459
+
4460
+ .align-self-stretch {
4461
+ -webkit-align-self: stretch;
4462
+ -ms-flex-item-align: stretch;
4463
+ -ms-grid-row-align: stretch;
4464
+ align-self: stretch; }
4465
+
4466
+ .small-order-1 {
4467
+ -webkit-box-ordinal-group: 2;
4468
+ -webkit-order: 1;
4469
+ -ms-flex-order: 1;
4470
+ order: 1; }
4471
+
4472
+ .small-order-2 {
4473
+ -webkit-box-ordinal-group: 3;
4474
+ -webkit-order: 2;
4475
+ -ms-flex-order: 2;
4476
+ order: 2; }
4477
+
4478
+ .small-order-3 {
4479
+ -webkit-box-ordinal-group: 4;
4480
+ -webkit-order: 3;
4481
+ -ms-flex-order: 3;
4482
+ order: 3; }
4483
+
4484
+ .small-order-4 {
4485
+ -webkit-box-ordinal-group: 5;
4486
+ -webkit-order: 4;
4487
+ -ms-flex-order: 4;
4488
+ order: 4; }
4489
+
4490
+ .small-order-5 {
4491
+ -webkit-box-ordinal-group: 6;
4492
+ -webkit-order: 5;
4493
+ -ms-flex-order: 5;
4494
+ order: 5; }
4495
+
4496
+ .small-order-6 {
4497
+ -webkit-box-ordinal-group: 7;
4498
+ -webkit-order: 6;
4499
+ -ms-flex-order: 6;
4500
+ order: 6; }
4501
+
4502
+ @media print, screen and (min-width: 40em) {
4503
+ .medium-order-1 {
4504
+ -webkit-box-ordinal-group: 2;
4505
+ -webkit-order: 1;
4506
+ -ms-flex-order: 1;
4507
+ order: 1; }
4508
+ .medium-order-2 {
4509
+ -webkit-box-ordinal-group: 3;
4510
+ -webkit-order: 2;
4511
+ -ms-flex-order: 2;
4512
+ order: 2; }
4513
+ .medium-order-3 {
4514
+ -webkit-box-ordinal-group: 4;
4515
+ -webkit-order: 3;
4516
+ -ms-flex-order: 3;
4517
+ order: 3; }
4518
+ .medium-order-4 {
4519
+ -webkit-box-ordinal-group: 5;
4520
+ -webkit-order: 4;
4521
+ -ms-flex-order: 4;
4522
+ order: 4; }
4523
+ .medium-order-5 {
4524
+ -webkit-box-ordinal-group: 6;
4525
+ -webkit-order: 5;
4526
+ -ms-flex-order: 5;
4527
+ order: 5; }
4528
+ .medium-order-6 {
4529
+ -webkit-box-ordinal-group: 7;
4530
+ -webkit-order: 6;
4531
+ -ms-flex-order: 6;
4532
+ order: 6; } }
4533
+
4534
+ @media print, screen and (min-width: 64em) {
4535
+ .large-order-1 {
4536
+ -webkit-box-ordinal-group: 2;
4537
+ -webkit-order: 1;
4538
+ -ms-flex-order: 1;
4539
+ order: 1; }
4540
+ .large-order-2 {
4541
+ -webkit-box-ordinal-group: 3;
4542
+ -webkit-order: 2;
4543
+ -ms-flex-order: 2;
4544
+ order: 2; }
4545
+ .large-order-3 {
4546
+ -webkit-box-ordinal-group: 4;
4547
+ -webkit-order: 3;
4548
+ -ms-flex-order: 3;
4549
+ order: 3; }
4550
+ .large-order-4 {
4551
+ -webkit-box-ordinal-group: 5;
4552
+ -webkit-order: 4;
4553
+ -ms-flex-order: 4;
4554
+ order: 4; }
4555
+ .large-order-5 {
4556
+ -webkit-box-ordinal-group: 6;
4557
+ -webkit-order: 5;
4558
+ -ms-flex-order: 5;
4559
+ order: 5; }
4560
+ .large-order-6 {
4561
+ -webkit-box-ordinal-group: 7;
4562
+ -webkit-order: 6;
4563
+ -ms-flex-order: 6;
4564
+ order: 6; } }
4565
+
4566
+ /*# sourceMappingURL=foundation-flex.css.map */