locomotivecms_wagon 1.4.0 → 1.5.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -0
  3. data/Gemfile +6 -2
  4. data/README.md +7 -1
  5. data/bin/wagon +3 -0
  6. data/generators/blank/Gemfile.tt +1 -3
  7. data/generators/blank/config/site.yml.tt +3 -3
  8. data/generators/bootstrap/config/site.yml.tt +3 -3
  9. data/generators/bootstrap3/Gemfile.tt +1 -3
  10. data/generators/bootstrap3/app/views/pages/index.liquid +21 -63
  11. data/generators/bootstrap3/app/views/pages/index.liquid.haml +15 -57
  12. data/generators/bootstrap3/config/deploy.yml +15 -15
  13. data/generators/bootstrap3/config/site.yml.tt +2 -2
  14. data/generators/bootstrap3/icon.png +0 -0
  15. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.eot +0 -0
  16. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.svg +201 -200
  17. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.ttf +0 -0
  18. data/generators/bootstrap3/public/fonts/glyphicons-halflings-regular.woff +0 -0
  19. data/generators/{bootstrap2/app/content_types → bootstrap3/public/images}/.empty_directory +0 -0
  20. data/generators/bootstrap3/public/javascripts/bootstrap/affix.js +137 -0
  21. data/generators/bootstrap3/public/javascripts/bootstrap/alert.js +88 -0
  22. data/generators/bootstrap3/public/javascripts/bootstrap/button.js +107 -0
  23. data/generators/bootstrap3/public/javascripts/bootstrap/carousel.js +205 -0
  24. data/generators/bootstrap3/public/javascripts/bootstrap/collapse.js +170 -0
  25. data/generators/bootstrap3/public/javascripts/bootstrap/dropdown.js +147 -0
  26. data/generators/bootstrap3/public/javascripts/bootstrap/modal.js +243 -0
  27. data/generators/bootstrap3/public/javascripts/bootstrap/popover.js +110 -0
  28. data/generators/bootstrap3/public/javascripts/bootstrap/scrollspy.js +153 -0
  29. data/generators/bootstrap3/public/javascripts/bootstrap/tab.js +125 -0
  30. data/generators/bootstrap3/public/javascripts/bootstrap/tooltip.js +399 -0
  31. data/generators/bootstrap3/public/javascripts/bootstrap/transition.js +48 -0
  32. data/generators/bootstrap3/public/javascripts/bootstrap.min.js +12 -6
  33. data/generators/bootstrap3/public/stylesheets/application.css +1 -0
  34. data/generators/bootstrap3/public/stylesheets/application.css.scss +8 -0
  35. data/generators/bootstrap3/public/stylesheets/bootstrap/_alerts.scss +67 -0
  36. data/generators/bootstrap3/public/stylesheets/bootstrap/_badges.scss +55 -0
  37. data/generators/bootstrap3/public/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
  38. data/generators/bootstrap3/public/stylesheets/bootstrap/_button-groups.scss +226 -0
  39. data/generators/bootstrap3/public/stylesheets/bootstrap/_buttons.scss +159 -0
  40. data/generators/bootstrap3/public/stylesheets/bootstrap/_carousel.scss +232 -0
  41. data/generators/bootstrap3/public/stylesheets/bootstrap/_close.scss +35 -0
  42. data/generators/bootstrap3/public/stylesheets/bootstrap/_code.scss +63 -0
  43. data/generators/bootstrap3/public/stylesheets/bootstrap/_component-animations.scss +29 -0
  44. data/generators/bootstrap3/public/stylesheets/bootstrap/_dropdowns.scss +213 -0
  45. data/generators/bootstrap3/public/stylesheets/bootstrap/_forms.scss +436 -0
  46. data/generators/bootstrap3/public/stylesheets/bootstrap/_glyphicons.scss +233 -0
  47. data/generators/bootstrap3/public/stylesheets/bootstrap/_grid.scss +84 -0
  48. data/generators/bootstrap3/public/stylesheets/bootstrap/_input-groups.scss +162 -0
  49. data/generators/bootstrap3/public/stylesheets/bootstrap/_jumbotron.scss +44 -0
  50. data/generators/bootstrap3/public/stylesheets/bootstrap/_labels.scss +64 -0
  51. data/generators/bootstrap3/public/stylesheets/bootstrap/_list-group.scss +110 -0
  52. data/generators/bootstrap3/public/stylesheets/bootstrap/_media.scss +56 -0
  53. data/generators/bootstrap3/public/stylesheets/bootstrap/_mixins.scss +947 -0
  54. data/generators/bootstrap3/public/stylesheets/bootstrap/_modals.scss +139 -0
  55. data/generators/bootstrap3/public/stylesheets/bootstrap/_navbar.scss +620 -0
  56. data/generators/bootstrap3/public/stylesheets/bootstrap/_navs.scss +242 -0
  57. data/generators/bootstrap3/public/stylesheets/bootstrap/_normalize.scss +423 -0
  58. data/generators/bootstrap3/public/stylesheets/bootstrap/_pager.scss +55 -0
  59. data/generators/bootstrap3/public/stylesheets/bootstrap/_pagination.scss +88 -0
  60. data/generators/bootstrap3/public/stylesheets/bootstrap/_panels.scss +241 -0
  61. data/generators/bootstrap3/public/stylesheets/bootstrap/_popovers.scss +133 -0
  62. data/generators/bootstrap3/public/stylesheets/bootstrap/_print.scss +101 -0
  63. data/generators/bootstrap3/public/stylesheets/bootstrap/_progress-bars.scss +80 -0
  64. data/generators/bootstrap3/public/stylesheets/bootstrap/_responsive-utilities.scss +74 -0
  65. data/generators/bootstrap3/public/stylesheets/bootstrap/_scaffolding.scss +134 -0
  66. data/generators/bootstrap3/public/stylesheets/bootstrap/_tables.scss +233 -0
  67. data/generators/bootstrap3/public/stylesheets/bootstrap/_theme.scss +247 -0
  68. data/generators/bootstrap3/public/stylesheets/bootstrap/_thumbnails.scss +38 -0
  69. data/generators/bootstrap3/public/stylesheets/bootstrap/_tooltip.scss +95 -0
  70. data/generators/bootstrap3/public/stylesheets/bootstrap/_type.scss +284 -0
  71. data/generators/bootstrap3/public/stylesheets/bootstrap/_utilities.scss +56 -0
  72. data/generators/bootstrap3/public/stylesheets/bootstrap/_variables.scss +833 -0
  73. data/generators/bootstrap3/public/stylesheets/bootstrap/_wells.scss +29 -0
  74. data/generators/bootstrap3/public/stylesheets/bootstrap/bootstrap.css.scss +49 -0
  75. data/generators/bootstrap3/public/stylesheets/bootstrap.css +2035 -3056
  76. data/generators/bootstrap3/public/stylesheets/bootstrap.css.scss +49 -0
  77. data/generators/cloned/Gemfile.tt +1 -3
  78. data/generators/content_type/app/content_types/%slug%.yml.tt +57 -0
  79. data/generators/content_type/data/{%name%.yml.tt → %slug%.yml.tt} +2 -2
  80. data/generators/{bootstrap2 → foundation5}/Gemfile.tt +1 -3
  81. data/generators/{bootstrap2/data → foundation5/app/content_types}/.empty_directory +0 -0
  82. data/generators/{foundation → foundation5}/app/views/pages/404.liquid +1 -4
  83. data/generators/{foundation → foundation5}/app/views/pages/404.liquid.haml +1 -1
  84. data/generators/foundation5/app/views/pages/index.liquid +196 -0
  85. data/generators/foundation5/app/views/pages/index.liquid.haml +157 -0
  86. data/generators/foundation5/config/deploy.yml +15 -0
  87. data/generators/{bootstrap2 → foundation5}/config/site.yml.tt +3 -4
  88. data/generators/{bootstrap2 → foundation5}/config/translations.yml +0 -0
  89. data/generators/{bootstrap2 → foundation5}/config.ru +0 -0
  90. data/generators/{bootstrap2/public/samples → foundation5/data}/.empty_directory +0 -0
  91. data/generators/foundation5/favicon.ico +0 -0
  92. data/generators/foundation5/icon.png +0 -0
  93. data/generators/{foundation/app/content_types → foundation5/public/fonts}/.empty_directory +0 -0
  94. data/generators/{foundation/data → foundation5/public/images}/.empty_directory +0 -0
  95. data/generators/foundation5/public/javascripts/foundation/foundation.abide.js +299 -0
  96. data/generators/foundation5/public/javascripts/foundation/foundation.accordion.js +59 -0
  97. data/generators/foundation5/public/javascripts/foundation/foundation.alert.js +43 -0
  98. data/generators/foundation5/public/javascripts/foundation/foundation.clearing.js +534 -0
  99. data/generators/foundation5/public/javascripts/foundation/foundation.dropdown.js +311 -0
  100. data/generators/foundation5/public/javascripts/foundation/foundation.equalizer.js +74 -0
  101. data/generators/foundation5/public/javascripts/foundation/foundation.interchange.js +331 -0
  102. data/generators/foundation5/public/javascripts/foundation/foundation.joyride.js +843 -0
  103. data/generators/foundation5/public/javascripts/foundation/foundation.js +611 -0
  104. data/generators/foundation5/public/javascripts/foundation/foundation.magellan.js +178 -0
  105. data/generators/foundation5/public/javascripts/foundation/foundation.offcanvas.js +108 -0
  106. data/generators/foundation5/public/javascripts/foundation/foundation.orbit.js +610 -0
  107. data/generators/foundation5/public/javascripts/foundation/foundation.reveal.js +437 -0
  108. data/generators/foundation5/public/javascripts/foundation/foundation.slider.js +199 -0
  109. data/generators/foundation5/public/javascripts/foundation/foundation.tab.js +167 -0
  110. data/generators/foundation5/public/javascripts/foundation/foundation.tooltip.js +298 -0
  111. data/generators/foundation5/public/javascripts/foundation/foundation.topbar.js +425 -0
  112. data/generators/foundation5/public/javascripts/foundation.js +4161 -0
  113. data/generators/foundation5/public/javascripts/foundation.min.js +10 -0
  114. data/generators/{foundation → foundation5}/public/javascripts/vendor/custom.modernizr.js +0 -0
  115. data/generators/foundation5/public/javascripts/vendor/custom.modernizr.min.js +1 -0
  116. data/generators/foundation5/public/javascripts/vendor/fastclick.js +9 -0
  117. data/generators/foundation5/public/javascripts/vendor/fastclick.min.js +11 -0
  118. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.js +645 -0
  119. data/generators/foundation5/public/javascripts/vendor/jquery.autocomplete.min.js +1 -0
  120. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.js +8 -0
  121. data/generators/foundation5/public/javascripts/vendor/jquery.cookie.min.js +8 -0
  122. data/generators/foundation5/public/javascripts/vendor/jquery.js +26 -0
  123. data/generators/foundation5/public/javascripts/vendor/jquery.min.js +27 -0
  124. data/generators/foundation5/public/javascripts/vendor/modernizr.js +8 -0
  125. data/generators/foundation5/public/javascripts/vendor/modernizr.min.js +1 -0
  126. data/generators/foundation5/public/javascripts/vendor/placeholder.js +2 -0
  127. data/generators/foundation5/public/javascripts/vendor/placeholder.min.js +1 -0
  128. data/generators/{foundation/public/fonts → foundation5/public/samples}/.empty_directory +0 -0
  129. data/generators/foundation5/public/stylesheets/application.css +2 -0
  130. data/generators/foundation5/public/stylesheets/application.css.scss +3 -0
  131. data/generators/foundation5/public/stylesheets/foundation/_functions.scss +101 -0
  132. data/generators/foundation5/public/stylesheets/foundation/_settings.scss +1296 -0
  133. data/generators/foundation5/public/stylesheets/foundation/components/_accordion.scss +53 -0
  134. data/generators/foundation5/public/stylesheets/foundation/components/_alert-boxes.scss +126 -0
  135. data/generators/foundation5/public/stylesheets/foundation/components/_block-grid.scss +132 -0
  136. data/generators/foundation5/public/stylesheets/foundation/components/_breadcrumbs.scss +127 -0
  137. data/generators/foundation5/public/stylesheets/foundation/components/_button-groups.scss +108 -0
  138. data/generators/foundation5/public/stylesheets/foundation/components/_buttons.scss +222 -0
  139. data/generators/foundation5/public/stylesheets/foundation/components/_clearing.scss +247 -0
  140. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown-buttons.scss +129 -0
  141. data/generators/foundation5/public/stylesheets/foundation/components/_dropdown.scss +248 -0
  142. data/generators/foundation5/public/stylesheets/foundation/components/_flex-video.scss +51 -0
  143. data/generators/foundation5/public/stylesheets/foundation/components/_forms.scss +498 -0
  144. data/generators/foundation5/public/stylesheets/foundation/components/_global.scss +434 -0
  145. data/generators/foundation5/public/stylesheets/foundation/components/_grid.scss +260 -0
  146. data/generators/foundation5/public/stylesheets/foundation/components/_inline-lists.scss +57 -0
  147. data/generators/foundation5/public/stylesheets/foundation/components/_joyride.scss +220 -0
  148. data/generators/foundation5/public/stylesheets/foundation/components/_keystrokes.scss +61 -0
  149. data/generators/foundation5/public/stylesheets/foundation/components/_labels.scss +104 -0
  150. data/generators/foundation5/public/stylesheets/foundation/components/_magellan.scss +34 -0
  151. data/generators/foundation5/public/stylesheets/foundation/components/_offcanvas.scss +356 -0
  152. data/generators/foundation5/public/stylesheets/foundation/components/_orbit.scss +423 -0
  153. data/generators/foundation5/public/stylesheets/foundation/components/_pagination.scss +150 -0
  154. data/generators/foundation5/public/stylesheets/foundation/components/_panels.scss +90 -0
  155. data/generators/foundation5/public/stylesheets/foundation/components/_pricing-tables.scss +150 -0
  156. data/generators/foundation5/public/stylesheets/foundation/components/_progress-bars.scss +79 -0
  157. data/generators/foundation5/public/stylesheets/foundation/components/_range-slider.scss +148 -0
  158. data/generators/foundation5/public/stylesheets/foundation/components/_reveal-new.scss +0 -0
  159. data/generators/foundation5/public/stylesheets/foundation/components/_reveal.scss +216 -0
  160. data/generators/foundation5/public/stylesheets/foundation/components/_side-nav.scss +115 -0
  161. data/generators/foundation5/public/stylesheets/foundation/components/_split-buttons.scss +191 -0
  162. data/generators/foundation5/public/stylesheets/foundation/components/_sub-nav.scss +125 -0
  163. data/generators/foundation5/public/stylesheets/foundation/components/_switch.scss +294 -0
  164. data/generators/foundation5/public/stylesheets/foundation/components/_tables.scss +129 -0
  165. data/generators/foundation5/public/stylesheets/foundation/components/_tabs.scss +109 -0
  166. data/generators/foundation5/public/stylesheets/foundation/components/_thumbs.scss +68 -0
  167. data/generators/foundation5/public/stylesheets/foundation/components/_tooltips.scss +140 -0
  168. data/generators/foundation5/public/stylesheets/foundation/components/_top-bar.scss +659 -0
  169. data/generators/foundation5/public/stylesheets/foundation/components/_type.scss +513 -0
  170. data/generators/foundation5/public/stylesheets/foundation/components/_visibility.scss +408 -0
  171. data/generators/foundation5/public/stylesheets/foundation.css +5398 -0
  172. data/generators/foundation5/public/stylesheets/foundation.css.scss +45 -0
  173. data/generators/foundation5/public/stylesheets/normalize.css +425 -0
  174. data/generators/foundation5/public/stylesheets/normalize.css.scss +425 -0
  175. data/generators/{foundation → line_case}/Gemfile.tt +1 -3
  176. data/generators/line_case/app/content_types/categories.yml +56 -0
  177. data/generators/line_case/app/content_types/emails.yml +35 -0
  178. data/generators/line_case/app/content_types/projects.yml +58 -0
  179. data/generators/{bootstrap2 → line_case}/app/views/pages/404.liquid.haml +3 -2
  180. data/generators/line_case/app/views/pages/email-registered.liquid.haml +13 -0
  181. data/generators/line_case/app/views/pages/index.liquid.haml +110 -0
  182. data/generators/line_case/app/views/pages/projects/content_type_template.liquid.haml +32 -0
  183. data/generators/line_case/app/views/snippets/newsletter_form.liquid.haml +14 -0
  184. data/generators/line_case/app/views/snippets/projects.liquid.haml +17 -0
  185. data/generators/line_case/app/views/snippets/social_links.liquid.haml +19 -0
  186. data/generators/line_case/config/deploy.yml +15 -0
  187. data/generators/{foundation → line_case}/config/site.yml.tt +3 -3
  188. data/generators/{foundation → line_case}/config/translations.yml +0 -0
  189. data/generators/{foundation → line_case}/config.ru +0 -0
  190. data/generators/line_case/data/categories.yml +8 -0
  191. data/generators/line_case/data/emails.yml +2 -0
  192. data/generators/line_case/data/projects.yml +39 -0
  193. data/generators/line_case/icon.png +0 -0
  194. data/generators/line_case/public/images/banner-header.png +0 -0
  195. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.abide.js +0 -0
  196. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.alerts.js +0 -0
  197. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.clearing.js +0 -0
  198. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.cookie.js +0 -0
  199. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.dropdown.js +0 -0
  200. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.forms.js +0 -0
  201. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.interchange.js +0 -0
  202. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.joyride.js +0 -0
  203. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.js +0 -0
  204. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.magellan.js +0 -0
  205. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.orbit.js +0 -0
  206. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.placeholder.js +0 -0
  207. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.reveal.js +0 -0
  208. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.section.js +0 -0
  209. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.tooltips.js +0 -0
  210. data/generators/{foundation → line_case}/public/javascripts/foundation/foundation.topbar.js +0 -0
  211. data/generators/{foundation → line_case}/public/javascripts/foundation.min.js +0 -0
  212. data/generators/line_case/public/javascripts/vendor/custom.modernizr.js +4 -0
  213. data/generators/{foundation → line_case}/public/javascripts/vendor/jquery.js +0 -0
  214. data/generators/{foundation → line_case}/public/javascripts/vendor/zepto.js +0 -0
  215. data/generators/line_case/public/samples/projects/sample.jpeg +0 -0
  216. data/generators/line_case/public/samples/projects/sample2.jpeg +0 -0
  217. data/generators/line_case/public/samples/projects/sample3.jpeg +0 -0
  218. data/generators/line_case/public/samples/projects/sample4.jpeg +0 -0
  219. data/generators/line_case/public/samples/projects/sample5.jpeg +0 -0
  220. data/generators/line_case/public/samples/projects/sample6.jpeg +0 -0
  221. data/generators/line_case/public/samples/projects/sample7.jpeg +0 -0
  222. data/generators/line_case/public/samples/projects/sample8.jpeg +0 -0
  223. data/generators/line_case/public/stylesheets/_variables.css.sass +20 -0
  224. data/generators/line_case/public/stylesheets/foundation/_variables.scss +1290 -0
  225. data/generators/line_case/public/stylesheets/foundation/components/_alert-boxes.scss +107 -0
  226. data/generators/line_case/public/stylesheets/foundation/components/_block-grid.scss +71 -0
  227. data/generators/line_case/public/stylesheets/foundation/components/_breadcrumbs.scss +124 -0
  228. data/generators/line_case/public/stylesheets/foundation/components/_button-groups.scss +89 -0
  229. data/generators/line_case/public/stylesheets/foundation/components/_buttons.scss +230 -0
  230. data/generators/line_case/public/stylesheets/foundation/components/_clearing.scss +227 -0
  231. data/generators/line_case/public/stylesheets/foundation/components/_custom-forms.scss +278 -0
  232. data/generators/line_case/public/stylesheets/foundation/components/_dropdown-buttons.scss +115 -0
  233. data/generators/line_case/public/stylesheets/foundation/components/_dropdown.scss +151 -0
  234. data/generators/line_case/public/stylesheets/foundation/components/_flex-video.scss +46 -0
  235. data/generators/line_case/public/stylesheets/foundation/components/_forms.scss +411 -0
  236. data/generators/line_case/public/stylesheets/foundation/components/_global.scss +366 -0
  237. data/generators/line_case/public/stylesheets/foundation/components/_grid-5.scss +214 -0
  238. data/generators/line_case/public/stylesheets/foundation/components/_grid.scss +188 -0
  239. data/generators/line_case/public/stylesheets/foundation/components/_inline-lists.scss +53 -0
  240. data/generators/line_case/public/stylesheets/foundation/components/_joyride.scss +217 -0
  241. data/generators/line_case/public/stylesheets/foundation/components/_keystrokes.scss +57 -0
  242. data/generators/line_case/public/stylesheets/foundation/components/_labels.scss +85 -0
  243. data/generators/line_case/public/stylesheets/foundation/components/_magellan.scss +23 -0
  244. data/generators/line_case/public/stylesheets/foundation/components/_orbit.scss +340 -0
  245. data/generators/line_case/public/stylesheets/foundation/components/_pagination.scss +140 -0
  246. data/generators/line_case/public/stylesheets/foundation/components/_panels.scss +83 -0
  247. data/generators/line_case/public/stylesheets/foundation/components/_pricing-tables.scss +131 -0
  248. data/generators/line_case/public/stylesheets/foundation/components/_progress-bars.scss +71 -0
  249. data/generators/line_case/public/stylesheets/foundation/components/_reveal.scss +136 -0
  250. data/generators/line_case/public/stylesheets/foundation/components/_section.scss +391 -0
  251. data/generators/line_case/public/stylesheets/foundation/components/_side-nav.scss +69 -0
  252. data/generators/line_case/public/stylesheets/foundation/components/_split-buttons.scss +167 -0
  253. data/generators/line_case/public/stylesheets/foundation/components/_sub-nav.scss +84 -0
  254. data/generators/line_case/public/stylesheets/foundation/components/_switch.scss +266 -0
  255. data/generators/line_case/public/stylesheets/foundation/components/_tables.scss +84 -0
  256. data/generators/line_case/public/stylesheets/foundation/components/_thumbs.scss +53 -0
  257. data/generators/line_case/public/stylesheets/foundation/components/_tooltips.scss +117 -0
  258. data/generators/line_case/public/stylesheets/foundation/components/_top-bar.scss +576 -0
  259. data/generators/line_case/public/stylesheets/foundation/components/_type.scss +435 -0
  260. data/generators/line_case/public/stylesheets/foundation/components/_visibility.scss +322 -0
  261. data/generators/line_case/public/stylesheets/foundation.css.scss +43 -0
  262. data/generators/{foundation → line_case}/public/stylesheets/foundation.min.css +0 -0
  263. data/generators/{foundation/public/stylesheets/normalize.css → line_case/public/stylesheets/normalize.css.scss} +5 -5
  264. data/generators/line_case/public/stylesheets/pages.css.sass +163 -0
  265. data/generators/page/template.liquid.haml.tt +8 -5
  266. data/generators/page/template.liquid.tt +6 -2
  267. data/lib/locomotive/wagon/cli.rb +139 -43
  268. data/lib/locomotive/wagon/generators/content_type.rb +26 -10
  269. data/lib/locomotive/wagon/generators/page.rb +41 -25
  270. data/lib/locomotive/wagon/generators/site/base.rb +53 -0
  271. data/lib/locomotive/wagon/generators/site/blank.rb +9 -2
  272. data/lib/locomotive/wagon/generators/site/bootstrap2.rb +8 -2
  273. data/lib/locomotive/wagon/generators/site/bootstrap3.rb +20 -2
  274. data/lib/locomotive/wagon/generators/site/cloned.rb +4 -0
  275. data/lib/locomotive/wagon/generators/site/{foundation.rb → foundation4.rb} +10 -4
  276. data/lib/locomotive/wagon/generators/site/foundation5.rb +48 -0
  277. data/lib/locomotive/wagon/generators/site/line_case.rb +20 -0
  278. data/lib/locomotive/wagon/generators/site/unzip.rb +10 -2
  279. data/lib/locomotive/wagon/generators/site.rb +48 -2
  280. data/lib/locomotive/wagon/generators/snippet.rb +2 -1
  281. data/lib/locomotive/wagon/liquid/drops/content_types.rb +9 -3
  282. data/lib/locomotive/wagon/liquid/drops/page.rb +9 -1
  283. data/lib/locomotive/wagon/liquid/scopeable.rb +1 -1
  284. data/lib/locomotive/wagon/liquid/tags/fetch_page.rb +41 -0
  285. data/lib/locomotive/wagon/liquid/tags/model_form.rb +67 -0
  286. data/lib/locomotive/wagon/liquid/tags/path_helper.rb +2 -2
  287. data/lib/locomotive/wagon/liquid/tags/with_scope.rb +1 -1
  288. data/lib/locomotive/wagon/listen.rb +18 -10
  289. data/lib/locomotive/wagon/logger.rb +4 -0
  290. data/lib/locomotive/wagon/misc/core_ext.rb +8 -0
  291. data/lib/locomotive/wagon/misc/deployment_connection.rb +120 -0
  292. data/lib/locomotive/wagon/misc/hosting_api.rb +115 -0
  293. data/lib/locomotive/wagon/misc/httparty.rb +2 -0
  294. data/lib/locomotive/wagon/misc/livereload.rb +43 -0
  295. data/lib/locomotive/wagon/misc/mounter.rb +1 -1
  296. data/lib/locomotive/wagon/misc/tcp_port.rb +42 -0
  297. data/lib/locomotive/wagon/misc/thor.rb +15 -0
  298. data/lib/locomotive/wagon/server/entry_submission.rb +69 -38
  299. data/lib/locomotive/wagon/server/middleware.rb +4 -2
  300. data/lib/locomotive/wagon/server/page.rb +2 -2
  301. data/lib/locomotive/wagon/server.rb +11 -7
  302. data/lib/locomotive/wagon/version.rb +1 -1
  303. data/lib/locomotive/wagon.rb +141 -30
  304. data/locomotivecms_wagon.gemspec +7 -6
  305. data/spec/fixtures/default/app/content_types/bands.yml +3 -1
  306. data/spec/fixtures/default/app/views/pages/all.liquid.haml +3 -0
  307. data/spec/fixtures/default/app/views/pages/events.liquid.haml +21 -0
  308. data/spec/fixtures/default/app/views/pages/filtered.liquid.haml +11 -1
  309. data/spec/fixtures/default/app/views/pages/index.liquid.haml +1 -1
  310. data/spec/fixtures/default/data/bands.yml +3 -0
  311. data/spec/integration/server/basic_spec.rb +1 -0
  312. data/spec/integration/server/contact_form_spec.rb +1 -1
  313. data/spec/integration/server/liquid_spec.rb +8 -1
  314. data/spec/integration/server/new_contact_form_spec.rb +67 -0
  315. data/spec/integration/server/with_scope_spec.rb +10 -0
  316. data/spec/spec_helper.rb +3 -0
  317. metadata +339 -144
  318. data/generators/bootstrap2/app/views/pages/404.liquid +0 -13
  319. data/generators/bootstrap2/app/views/pages/index.liquid +0 -98
  320. data/generators/bootstrap2/app/views/pages/index.liquid.haml +0 -80
  321. data/generators/bootstrap2/app/views/snippets/footer.liquid +0 -3
  322. data/generators/bootstrap2/app/views/snippets/footer.liquid.haml +0 -2
  323. data/generators/bootstrap2/config/deploy.yml +0 -15
  324. data/generators/bootstrap2/public/fonts/FontAwesome.otf +0 -0
  325. data/generators/bootstrap2/public/fonts/fontawesome-webfont.eot +0 -0
  326. data/generators/bootstrap2/public/fonts/fontawesome-webfont.svg +0 -399
  327. data/generators/bootstrap2/public/fonts/fontawesome-webfont.ttf +0 -0
  328. data/generators/bootstrap2/public/fonts/fontawesome-webfont.woff +0 -0
  329. data/generators/bootstrap2/public/javascripts/bootstrap.js +0 -2280
  330. data/generators/bootstrap2/public/javascripts/bootstrap.min.js +0 -6
  331. data/generators/bootstrap2/public/stylesheets/application.css.scss +0 -39
  332. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.css +0 -1109
  333. data/generators/bootstrap2/public/stylesheets/bootstrap-responsive.min.css +0 -9
  334. data/generators/bootstrap2/public/stylesheets/bootstrap.css +0 -5568
  335. data/generators/bootstrap2/public/stylesheets/bootstrap.min.css +0 -9
  336. data/generators/bootstrap2/public/stylesheets/fonts/awesome.css.scss +0 -3
  337. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.css +0 -1203
  338. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome-ie7.min.css +0 -384
  339. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.css +0 -1470
  340. data/generators/bootstrap2/public/stylesheets/fonts/font-awesome.min.css +0 -403
  341. data/generators/bootstrap3/public/javascripts/bootstrap.js +0 -1999
  342. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.css +0 -384
  343. data/generators/bootstrap3/public/stylesheets/bootstrap-theme.min.css +0 -1
  344. data/generators/bootstrap3/public/stylesheets/bootstrap.min.css +0 -9
  345. data/generators/content_type/app/content_types/%name%.yml.tt +0 -58
  346. data/generators/foundation/app/views/pages/index.liquid +0 -150
  347. data/generators/foundation/app/views/pages/index.liquid.haml +0 -125
  348. data/generators/foundation/app/views/snippets/footer.liquid +0 -16
  349. data/generators/foundation/app/views/snippets/footer.liquid.haml +0 -22
  350. data/generators/foundation/config/deploy.yml +0 -15
  351. data/generators/foundation/public/samples/.empty_directory +0 -1
  352. data/generators/foundation/public/stylesheets/foundation.css +0 -4727
@@ -1,4727 +0,0 @@
1
- meta.foundation-mq-small {
2
- font-family: "only screen and (min-width: 768px)";
3
- width: 768px; }
4
-
5
- meta.foundation-mq-medium {
6
- font-family: "only screen and (min-width:1280px)";
7
- width: 1280px; }
8
-
9
- meta.foundation-mq-large {
10
- font-family: "only screen and (min-width:1440px)";
11
- width: 1440px; }
12
-
13
- *,
14
- *:before,
15
- *:after {
16
- -moz-box-sizing: border-box;
17
- -webkit-box-sizing: border-box;
18
- box-sizing: border-box; }
19
-
20
- html,
21
- body {
22
- font-size: 100%; }
23
-
24
- body {
25
- background: white;
26
- color: #222222;
27
- padding: 0;
28
- margin: 0;
29
- font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
30
- font-weight: normal;
31
- font-style: normal;
32
- line-height: 1;
33
- position: relative;
34
- cursor: default; }
35
-
36
- a:hover {
37
- cursor: pointer; }
38
-
39
- img,
40
- object,
41
- embed {
42
- max-width: 100%;
43
- height: auto; }
44
-
45
- object,
46
- embed {
47
- height: 100%; }
48
-
49
- img {
50
- -ms-interpolation-mode: bicubic; }
51
-
52
- #map_canvas img,
53
- #map_canvas embed,
54
- #map_canvas object,
55
- .map_canvas img,
56
- .map_canvas embed,
57
- .map_canvas object {
58
- max-width: none !important; }
59
-
60
- .left {
61
- float: left !important; }
62
-
63
- .right {
64
- float: right !important; }
65
-
66
- .text-left {
67
- text-align: left !important; }
68
-
69
- .text-right {
70
- text-align: right !important; }
71
-
72
- .text-center {
73
- text-align: center !important; }
74
-
75
- .text-justify {
76
- text-align: justify !important; }
77
-
78
- .hide {
79
- display: none; }
80
-
81
- .antialiased {
82
- -webkit-font-smoothing: antialiased; }
83
-
84
- img {
85
- display: inline-block;
86
- vertical-align: middle; }
87
-
88
- textarea {
89
- height: auto;
90
- min-height: 50px; }
91
-
92
- select {
93
- width: 100%; }
94
-
95
- /* Grid HTML Classes */
96
- .row {
97
- width: 100%;
98
- margin-left: auto;
99
- margin-right: auto;
100
- margin-top: 0;
101
- margin-bottom: 0;
102
- max-width: 62.5em;
103
- *zoom: 1; }
104
- .row:before, .row:after {
105
- content: " ";
106
- display: table; }
107
- .row:after {
108
- clear: both; }
109
- .row.collapse > .column,
110
- .row.collapse > .columns {
111
- position: relative;
112
- padding-left: 0;
113
- padding-right: 0;
114
- float: left; }
115
- .row.collapse .row {
116
- margin-left: 0;
117
- margin-right: 0; }
118
- .row .row {
119
- width: auto;
120
- margin-left: -0.9375em;
121
- margin-right: -0.9375em;
122
- margin-top: 0;
123
- margin-bottom: 0;
124
- max-width: none;
125
- *zoom: 1; }
126
- .row .row:before, .row .row:after {
127
- content: " ";
128
- display: table; }
129
- .row .row:after {
130
- clear: both; }
131
- .row .row.collapse {
132
- width: auto;
133
- margin: 0;
134
- max-width: none;
135
- *zoom: 1; }
136
- .row .row.collapse:before, .row .row.collapse:after {
137
- content: " ";
138
- display: table; }
139
- .row .row.collapse:after {
140
- clear: both; }
141
-
142
- .column,
143
- .columns {
144
- position: relative;
145
- padding-left: 0.9375em;
146
- padding-right: 0.9375em;
147
- width: 100%;
148
- float: left; }
149
-
150
- @media only screen {
151
- .column,
152
- .columns {
153
- position: relative;
154
- padding-left: 0.9375em;
155
- padding-right: 0.9375em;
156
- float: left; }
157
-
158
- .small-1 {
159
- position: relative;
160
- width: 8.33333%; }
161
-
162
- .small-2 {
163
- position: relative;
164
- width: 16.66667%; }
165
-
166
- .small-3 {
167
- position: relative;
168
- width: 25%; }
169
-
170
- .small-4 {
171
- position: relative;
172
- width: 33.33333%; }
173
-
174
- .small-5 {
175
- position: relative;
176
- width: 41.66667%; }
177
-
178
- .small-6 {
179
- position: relative;
180
- width: 50%; }
181
-
182
- .small-7 {
183
- position: relative;
184
- width: 58.33333%; }
185
-
186
- .small-8 {
187
- position: relative;
188
- width: 66.66667%; }
189
-
190
- .small-9 {
191
- position: relative;
192
- width: 75%; }
193
-
194
- .small-10 {
195
- position: relative;
196
- width: 83.33333%; }
197
-
198
- .small-11 {
199
- position: relative;
200
- width: 91.66667%; }
201
-
202
- .small-12 {
203
- position: relative;
204
- width: 100%; }
205
-
206
- .small-offset-0 {
207
- position: relative;
208
- margin-left: 0%; }
209
-
210
- .small-offset-1 {
211
- position: relative;
212
- margin-left: 8.33333%; }
213
-
214
- .small-offset-2 {
215
- position: relative;
216
- margin-left: 16.66667%; }
217
-
218
- .small-offset-3 {
219
- position: relative;
220
- margin-left: 25%; }
221
-
222
- .small-offset-4 {
223
- position: relative;
224
- margin-left: 33.33333%; }
225
-
226
- .small-offset-5 {
227
- position: relative;
228
- margin-left: 41.66667%; }
229
-
230
- .small-offset-6 {
231
- position: relative;
232
- margin-left: 50%; }
233
-
234
- .small-offset-7 {
235
- position: relative;
236
- margin-left: 58.33333%; }
237
-
238
- .small-offset-8 {
239
- position: relative;
240
- margin-left: 66.66667%; }
241
-
242
- .small-offset-9 {
243
- position: relative;
244
- margin-left: 75%; }
245
-
246
- .small-offset-10 {
247
- position: relative;
248
- margin-left: 83.33333%; }
249
-
250
- [class*="column"] + [class*="column"]:last-child {
251
- float: right; }
252
-
253
- [class*="column"] + [class*="column"].end {
254
- float: left; }
255
-
256
- .column.small-centered,
257
- .columns.small-centered {
258
- position: relative;
259
- margin-left: auto;
260
- margin-right: auto;
261
- float: none !important; } }
262
- /* Styles for screens that are atleast 768px; */
263
- @media only screen and (min-width: 768px) {
264
- .large-1 {
265
- position: relative;
266
- width: 8.33333%; }
267
-
268
- .large-2 {
269
- position: relative;
270
- width: 16.66667%; }
271
-
272
- .large-3 {
273
- position: relative;
274
- width: 25%; }
275
-
276
- .large-4 {
277
- position: relative;
278
- width: 33.33333%; }
279
-
280
- .large-5 {
281
- position: relative;
282
- width: 41.66667%; }
283
-
284
- .large-6 {
285
- position: relative;
286
- width: 50%; }
287
-
288
- .large-7 {
289
- position: relative;
290
- width: 58.33333%; }
291
-
292
- .large-8 {
293
- position: relative;
294
- width: 66.66667%; }
295
-
296
- .large-9 {
297
- position: relative;
298
- width: 75%; }
299
-
300
- .large-10 {
301
- position: relative;
302
- width: 83.33333%; }
303
-
304
- .large-11 {
305
- position: relative;
306
- width: 91.66667%; }
307
-
308
- .large-12 {
309
- position: relative;
310
- width: 100%; }
311
-
312
- .row .large-offset-0 {
313
- position: relative;
314
- margin-left: 0%; }
315
-
316
- .row .large-offset-1 {
317
- position: relative;
318
- margin-left: 8.33333%; }
319
-
320
- .row .large-offset-2 {
321
- position: relative;
322
- margin-left: 16.66667%; }
323
-
324
- .row .large-offset-3 {
325
- position: relative;
326
- margin-left: 25%; }
327
-
328
- .row .large-offset-4 {
329
- position: relative;
330
- margin-left: 33.33333%; }
331
-
332
- .row .large-offset-5 {
333
- position: relative;
334
- margin-left: 41.66667%; }
335
-
336
- .row .large-offset-6 {
337
- position: relative;
338
- margin-left: 50%; }
339
-
340
- .row .large-offset-7 {
341
- position: relative;
342
- margin-left: 58.33333%; }
343
-
344
- .row .large-offset-8 {
345
- position: relative;
346
- margin-left: 66.66667%; }
347
-
348
- .row .large-offset-9 {
349
- position: relative;
350
- margin-left: 75%; }
351
-
352
- .row .large-offset-10 {
353
- position: relative;
354
- margin-left: 83.33333%; }
355
-
356
- .row .large-offset-11 {
357
- position: relative;
358
- margin-left: 91.66667%; }
359
-
360
- .push-1 {
361
- position: relative;
362
- left: 8.33333%;
363
- right: auto; }
364
-
365
- .pull-1 {
366
- position: relative;
367
- right: 8.33333%;
368
- left: auto; }
369
-
370
- .push-2 {
371
- position: relative;
372
- left: 16.66667%;
373
- right: auto; }
374
-
375
- .pull-2 {
376
- position: relative;
377
- right: 16.66667%;
378
- left: auto; }
379
-
380
- .push-3 {
381
- position: relative;
382
- left: 25%;
383
- right: auto; }
384
-
385
- .pull-3 {
386
- position: relative;
387
- right: 25%;
388
- left: auto; }
389
-
390
- .push-4 {
391
- position: relative;
392
- left: 33.33333%;
393
- right: auto; }
394
-
395
- .pull-4 {
396
- position: relative;
397
- right: 33.33333%;
398
- left: auto; }
399
-
400
- .push-5 {
401
- position: relative;
402
- left: 41.66667%;
403
- right: auto; }
404
-
405
- .pull-5 {
406
- position: relative;
407
- right: 41.66667%;
408
- left: auto; }
409
-
410
- .push-6 {
411
- position: relative;
412
- left: 50%;
413
- right: auto; }
414
-
415
- .pull-6 {
416
- position: relative;
417
- right: 50%;
418
- left: auto; }
419
-
420
- .push-7 {
421
- position: relative;
422
- left: 58.33333%;
423
- right: auto; }
424
-
425
- .pull-7 {
426
- position: relative;
427
- right: 58.33333%;
428
- left: auto; }
429
-
430
- .push-8 {
431
- position: relative;
432
- left: 66.66667%;
433
- right: auto; }
434
-
435
- .pull-8 {
436
- position: relative;
437
- right: 66.66667%;
438
- left: auto; }
439
-
440
- .push-9 {
441
- position: relative;
442
- left: 75%;
443
- right: auto; }
444
-
445
- .pull-9 {
446
- position: relative;
447
- right: 75%;
448
- left: auto; }
449
-
450
- .push-10 {
451
- position: relative;
452
- left: 83.33333%;
453
- right: auto; }
454
-
455
- .pull-10 {
456
- position: relative;
457
- right: 83.33333%;
458
- left: auto; }
459
-
460
- .push-11 {
461
- position: relative;
462
- left: 91.66667%;
463
- right: auto; }
464
-
465
- .pull-11 {
466
- position: relative;
467
- right: 91.66667%;
468
- left: auto; }
469
-
470
- .column.large-centered,
471
- .columns.large-centered {
472
- position: relative;
473
- margin-left: auto;
474
- margin-right: auto;
475
- float: none !important; }
476
-
477
- .column.large-uncentered,
478
- .columns.large-uncentered {
479
- margin-left: 0;
480
- margin-right: 0;
481
- float: left !important; }
482
-
483
- .column.large-uncentered.opposite,
484
- .columns.large-uncentered.opposite {
485
- float: right !important; } }
486
- /* Foundation Visibility HTML Classes */
487
- .show-for-small,
488
- .show-for-medium-down,
489
- .show-for-large-down {
490
- display: inherit !important; }
491
-
492
- .show-for-medium,
493
- .show-for-medium-up,
494
- .show-for-large,
495
- .show-for-large-up,
496
- .show-for-xlarge {
497
- display: none !important; }
498
-
499
- .hide-for-medium,
500
- .hide-for-medium-up,
501
- .hide-for-large,
502
- .hide-for-large-up,
503
- .hide-for-xlarge {
504
- display: inherit !important; }
505
-
506
- .hide-for-small,
507
- .hide-for-medium-down,
508
- .hide-for-large-down {
509
- display: none !important; }
510
-
511
- /* Specific visilbity for tables */
512
- table.show-for-small, table.show-for-medium-down, table.show-for-large-down, table.hide-for-medium, table.hide-for-medium-up, table.hide-for-large, table.hide-for-large-up, table.hide-for-xlarge {
513
- display: table; }
514
-
515
- thead.show-for-small, thead.show-for-medium-down, thead.show-for-large-down, thead.hide-for-medium, thead.hide-for-medium-up, thead.hide-for-large, thead.hide-for-large-up, thead.hide-for-xlarge {
516
- display: table-header-group !important; }
517
-
518
- tbody.show-for-small, tbody.show-for-medium-down, tbody.show-for-large-down, tbody.hide-for-medium, tbody.hide-for-medium-up, tbody.hide-for-large, tbody.hide-for-large-up, tbody.hide-for-xlarge {
519
- display: table-row-group !important; }
520
-
521
- tr.show-for-small, tr.show-for-medium-down, tr.show-for-large-down, tr.hide-for-medium, tr.hide-for-medium-up, tr.hide-for-large, tr.hide-for-large-up, tr.hide-for-xlarge {
522
- display: table-row !important; }
523
-
524
- td.show-for-small, td.show-for-medium-down, td.show-for-large-down, td.hide-for-medium, td.hide-for-medium-up, td.hide-for-large, td.hide-for-large-up, td.hide-for-xlarge,
525
- th.show-for-small,
526
- th.show-for-medium-down,
527
- th.show-for-large-down,
528
- th.hide-for-medium,
529
- th.hide-for-medium-up,
530
- th.hide-for-large,
531
- th.hide-for-large-up,
532
- th.hide-for-xlarge {
533
- display: table-cell !important; }
534
-
535
- /* Medium Displays: 768px - 1279px */
536
- @media only screen and (min-width: 768px) {
537
- .show-for-medium,
538
- .show-for-medium-up {
539
- display: inherit !important; }
540
-
541
- .show-for-small {
542
- display: none !important; }
543
-
544
- .hide-for-small {
545
- display: inherit !important; }
546
-
547
- .hide-for-medium,
548
- .hide-for-medium-up {
549
- display: none !important; }
550
-
551
- /* Specific visilbity for tables */
552
- table.show-for-medium, table.show-for-medium-up, table.hide-for-small {
553
- display: table; }
554
-
555
- thead.show-for-medium, thead.show-for-medium-up, thead.hide-for-small {
556
- display: table-header-group !important; }
557
-
558
- tbody.show-for-medium, tbody.show-for-medium-up, tbody.hide-for-small {
559
- display: table-row-group !important; }
560
-
561
- tr.show-for-medium, tr.show-for-medium-up, tr.hide-for-small {
562
- display: table-row !important; }
563
-
564
- td.show-for-medium, td.show-for-medium-up, td.hide-for-small,
565
- th.show-for-medium,
566
- th.show-for-medium-up,
567
- th.hide-for-small {
568
- display: table-cell !important; } }
569
- /* Large Displays: 1280px - 1440px */
570
- @media only screen and (min-width: 1280px) {
571
- .show-for-large,
572
- .show-for-large-up {
573
- display: inherit !important; }
574
-
575
- .show-for-medium,
576
- .show-for-medium-down {
577
- display: none !important; }
578
-
579
- .hide-for-medium,
580
- .hide-for-medium-down {
581
- display: inherit !important; }
582
-
583
- .hide-for-large,
584
- .hide-for-large-up {
585
- display: none !important; }
586
-
587
- /* Specific visilbity for tables */
588
- table.show-for-large, table.show-for-large-up, table.hide-for-medium, table.hide-for-medium-down {
589
- display: table; }
590
-
591
- thead.show-for-large, thead.show-for-large-up, thead.hide-for-medium, thead.hide-for-medium-down {
592
- display: table-header-group !important; }
593
-
594
- tbody.show-for-large, tbody.show-for-large-up, tbody.hide-for-medium, tbody.hide-for-medium-down {
595
- display: table-row-group !important; }
596
-
597
- tr.show-for-large, tr.show-for-large-up, tr.hide-for-medium, tr.hide-for-medium-down {
598
- display: table-row !important; }
599
-
600
- td.show-for-large, td.show-for-large-up, td.hide-for-medium, td.hide-for-medium-down,
601
- th.show-for-large,
602
- th.show-for-large-up,
603
- th.hide-for-medium,
604
- th.hide-for-medium-down {
605
- display: table-cell !important; } }
606
- /* X-Large Displays: 1400px and up */
607
- @media only screen and (min-width: 1440px) {
608
- .show-for-xlarge {
609
- display: inherit !important; }
610
-
611
- .show-for-large,
612
- .show-for-large-down {
613
- display: none !important; }
614
-
615
- .hide-for-large,
616
- .hide-for-large-down {
617
- display: inherit !important; }
618
-
619
- .hide-for-xlarge {
620
- display: none !important; }
621
-
622
- /* Specific visilbity for tables */
623
- table.show-for-xlarge, table.hide-for-large, table.hide-for-large-down {
624
- display: table; }
625
-
626
- thead.show-for-xlarge, thead.hide-for-large, thead.hide-for-large-down {
627
- display: table-header-group !important; }
628
-
629
- tbody.show-for-xlarge, tbody.hide-for-large, tbody.hide-for-large-down {
630
- display: table-row-group !important; }
631
-
632
- tr.show-for-xlarge, tr.hide-for-large, tr.hide-for-large-down {
633
- display: table-row !important; }
634
-
635
- td.show-for-xlarge, td.hide-for-large, td.hide-for-large-down,
636
- th.show-for-xlarge,
637
- th.hide-for-large,
638
- th.hide-for-large-down {
639
- display: table-cell !important; } }
640
- /* Orientation targeting */
641
- .show-for-landscape,
642
- .hide-for-portrait {
643
- display: inherit !important; }
644
-
645
- .hide-for-landscape,
646
- .show-for-portrait {
647
- display: none !important; }
648
-
649
- /* Specific visilbity for tables */
650
- table.hide-for-landscape, table.show-for-portrait {
651
- display: table; }
652
-
653
- thead.hide-for-landscape, thead.show-for-portrait {
654
- display: table-header-group !important; }
655
-
656
- tbody.hide-for-landscape, tbody.show-for-portrait {
657
- display: table-row-group !important; }
658
-
659
- tr.hide-for-landscape, tr.show-for-portrait {
660
- display: table-row !important; }
661
-
662
- td.hide-for-landscape, td.show-for-portrait,
663
- th.hide-for-landscape,
664
- th.show-for-portrait {
665
- display: table-cell !important; }
666
-
667
- @media only screen and (orientation: landscape) {
668
- .show-for-landscape,
669
- .hide-for-portrait {
670
- display: inherit !important; }
671
-
672
- .hide-for-landscape,
673
- .show-for-portrait {
674
- display: none !important; }
675
-
676
- /* Specific visilbity for tables */
677
- table.show-for-landscape, table.hide-for-portrait {
678
- display: table; }
679
-
680
- thead.show-for-landscape, thead.hide-for-portrait {
681
- display: table-header-group !important; }
682
-
683
- tbody.show-for-landscape, tbody.hide-for-portrait {
684
- display: table-row-group !important; }
685
-
686
- tr.show-for-landscape, tr.hide-for-portrait {
687
- display: table-row !important; }
688
-
689
- td.show-for-landscape, td.hide-for-portrait,
690
- th.show-for-landscape,
691
- th.hide-for-portrait {
692
- display: table-cell !important; } }
693
- @media only screen and (orientation: portrait) {
694
- .show-for-portrait,
695
- .hide-for-landscape {
696
- display: inherit !important; }
697
-
698
- .hide-for-portrait,
699
- .show-for-landscape {
700
- display: none !important; }
701
-
702
- /* Specific visilbity for tables */
703
- table.show-for-portrait, table.hide-for-landscape {
704
- display: table; }
705
-
706
- thead.show-for-portrait, thead.hide-for-landscape {
707
- display: table-header-group !important; }
708
-
709
- tbody.show-for-portrait, tbody.hide-for-landscape {
710
- display: table-row-group !important; }
711
-
712
- tr.show-for-portrait, tr.hide-for-landscape {
713
- display: table-row !important; }
714
-
715
- td.show-for-portrait, td.hide-for-landscape,
716
- th.show-for-portrait,
717
- th.hide-for-landscape {
718
- display: table-cell !important; } }
719
- /* Touch-enabled device targeting */
720
- .show-for-touch {
721
- display: none !important; }
722
-
723
- .hide-for-touch {
724
- display: inherit !important; }
725
-
726
- .touch .show-for-touch {
727
- display: inherit !important; }
728
-
729
- .touch .hide-for-touch {
730
- display: none !important; }
731
-
732
- /* Specific visilbity for tables */
733
- table.hide-for-touch {
734
- display: table; }
735
-
736
- .touch table.show-for-touch {
737
- display: table; }
738
-
739
- thead.hide-for-touch {
740
- display: table-header-group !important; }
741
-
742
- .touch thead.show-for-touch {
743
- display: table-header-group !important; }
744
-
745
- tbody.hide-for-touch {
746
- display: table-row-group !important; }
747
-
748
- .touch tbody.show-for-touch {
749
- display: table-row-group !important; }
750
-
751
- tr.hide-for-touch {
752
- display: table-row !important; }
753
-
754
- .touch tr.show-for-touch {
755
- display: table-row !important; }
756
-
757
- td.hide-for-touch {
758
- display: table-cell !important; }
759
-
760
- .touch td.show-for-touch {
761
- display: table-cell !important; }
762
-
763
- th.hide-for-touch {
764
- display: table-cell !important; }
765
-
766
- .touch th.show-for-touch {
767
- display: table-cell !important; }
768
-
769
- /* Foundation Block Grids for below small breakpoint */
770
- @media only screen {
771
- [class*="block-grid-"] {
772
- display: block;
773
- padding: 0;
774
- margin: 0 -0.625em;
775
- *zoom: 1; }
776
- [class*="block-grid-"]:before, [class*="block-grid-"]:after {
777
- content: " ";
778
- display: table; }
779
- [class*="block-grid-"]:after {
780
- clear: both; }
781
- [class*="block-grid-"] > li {
782
- display: inline;
783
- height: auto;
784
- float: left;
785
- padding: 0 0.625em 1.25em; }
786
-
787
- .small-block-grid-1 > li {
788
- width: 100%;
789
- padding: 0 0.625em 1.25em; }
790
- .small-block-grid-1 > li:nth-of-type(n) {
791
- clear: none; }
792
- .small-block-grid-1 > li:nth-of-type(1n+1) {
793
- clear: both; }
794
-
795
- .small-block-grid-2 > li {
796
- width: 50%;
797
- padding: 0 0.625em 1.25em; }
798
- .small-block-grid-2 > li:nth-of-type(n) {
799
- clear: none; }
800
- .small-block-grid-2 > li:nth-of-type(2n+1) {
801
- clear: both; }
802
-
803
- .small-block-grid-3 > li {
804
- width: 33.33333%;
805
- padding: 0 0.625em 1.25em; }
806
- .small-block-grid-3 > li:nth-of-type(n) {
807
- clear: none; }
808
- .small-block-grid-3 > li:nth-of-type(3n+1) {
809
- clear: both; }
810
-
811
- .small-block-grid-4 > li {
812
- width: 25%;
813
- padding: 0 0.625em 1.25em; }
814
- .small-block-grid-4 > li:nth-of-type(n) {
815
- clear: none; }
816
- .small-block-grid-4 > li:nth-of-type(4n+1) {
817
- clear: both; }
818
-
819
- .small-block-grid-5 > li {
820
- width: 20%;
821
- padding: 0 0.625em 1.25em; }
822
- .small-block-grid-5 > li:nth-of-type(n) {
823
- clear: none; }
824
- .small-block-grid-5 > li:nth-of-type(5n+1) {
825
- clear: both; }
826
-
827
- .small-block-grid-6 > li {
828
- width: 16.66667%;
829
- padding: 0 0.625em 1.25em; }
830
- .small-block-grid-6 > li:nth-of-type(n) {
831
- clear: none; }
832
- .small-block-grid-6 > li:nth-of-type(6n+1) {
833
- clear: both; }
834
-
835
- .small-block-grid-7 > li {
836
- width: 14.28571%;
837
- padding: 0 0.625em 1.25em; }
838
- .small-block-grid-7 > li:nth-of-type(n) {
839
- clear: none; }
840
- .small-block-grid-7 > li:nth-of-type(7n+1) {
841
- clear: both; }
842
-
843
- .small-block-grid-8 > li {
844
- width: 12.5%;
845
- padding: 0 0.625em 1.25em; }
846
- .small-block-grid-8 > li:nth-of-type(n) {
847
- clear: none; }
848
- .small-block-grid-8 > li:nth-of-type(8n+1) {
849
- clear: both; }
850
-
851
- .small-block-grid-9 > li {
852
- width: 11.11111%;
853
- padding: 0 0.625em 1.25em; }
854
- .small-block-grid-9 > li:nth-of-type(n) {
855
- clear: none; }
856
- .small-block-grid-9 > li:nth-of-type(9n+1) {
857
- clear: both; }
858
-
859
- .small-block-grid-10 > li {
860
- width: 10%;
861
- padding: 0 0.625em 1.25em; }
862
- .small-block-grid-10 > li:nth-of-type(n) {
863
- clear: none; }
864
- .small-block-grid-10 > li:nth-of-type(10n+1) {
865
- clear: both; }
866
-
867
- .small-block-grid-11 > li {
868
- width: 9.09091%;
869
- padding: 0 0.625em 1.25em; }
870
- .small-block-grid-11 > li:nth-of-type(n) {
871
- clear: none; }
872
- .small-block-grid-11 > li:nth-of-type(11n+1) {
873
- clear: both; }
874
-
875
- .small-block-grid-12 > li {
876
- width: 8.33333%;
877
- padding: 0 0.625em 1.25em; }
878
- .small-block-grid-12 > li:nth-of-type(n) {
879
- clear: none; }
880
- .small-block-grid-12 > li:nth-of-type(12n+1) {
881
- clear: both; } }
882
- /* Foundation Block Grids for above small breakpoint */
883
- @media only screen and (min-width: 768px) {
884
- /* Remove small grid clearing */
885
- .small-block-grid-1 > li:nth-of-type(1n+1) {
886
- clear: none; }
887
-
888
- .small-block-grid-2 > li:nth-of-type(2n+1) {
889
- clear: none; }
890
-
891
- .small-block-grid-3 > li:nth-of-type(3n+1) {
892
- clear: none; }
893
-
894
- .small-block-grid-4 > li:nth-of-type(4n+1) {
895
- clear: none; }
896
-
897
- .small-block-grid-5 > li:nth-of-type(5n+1) {
898
- clear: none; }
899
-
900
- .small-block-grid-6 > li:nth-of-type(6n+1) {
901
- clear: none; }
902
-
903
- .small-block-grid-7 > li:nth-of-type(7n+1) {
904
- clear: none; }
905
-
906
- .small-block-grid-8 > li:nth-of-type(8n+1) {
907
- clear: none; }
908
-
909
- .small-block-grid-9 > li:nth-of-type(9n+1) {
910
- clear: none; }
911
-
912
- .small-block-grid-10 > li:nth-of-type(10n+1) {
913
- clear: none; }
914
-
915
- .small-block-grid-11 > li:nth-of-type(11n+1) {
916
- clear: none; }
917
-
918
- .small-block-grid-12 > li:nth-of-type(12n+1) {
919
- clear: none; }
920
-
921
- .large-block-grid-1 > li {
922
- width: 100%;
923
- padding: 0 0.625em 1.25em; }
924
- .large-block-grid-1 > li:nth-of-type(n) {
925
- clear: none; }
926
- .large-block-grid-1 > li:nth-of-type(1n+1) {
927
- clear: both; }
928
-
929
- .large-block-grid-2 > li {
930
- width: 50%;
931
- padding: 0 0.625em 1.25em; }
932
- .large-block-grid-2 > li:nth-of-type(n) {
933
- clear: none; }
934
- .large-block-grid-2 > li:nth-of-type(2n+1) {
935
- clear: both; }
936
-
937
- .large-block-grid-3 > li {
938
- width: 33.33333%;
939
- padding: 0 0.625em 1.25em; }
940
- .large-block-grid-3 > li:nth-of-type(n) {
941
- clear: none; }
942
- .large-block-grid-3 > li:nth-of-type(3n+1) {
943
- clear: both; }
944
-
945
- .large-block-grid-4 > li {
946
- width: 25%;
947
- padding: 0 0.625em 1.25em; }
948
- .large-block-grid-4 > li:nth-of-type(n) {
949
- clear: none; }
950
- .large-block-grid-4 > li:nth-of-type(4n+1) {
951
- clear: both; }
952
-
953
- .large-block-grid-5 > li {
954
- width: 20%;
955
- padding: 0 0.625em 1.25em; }
956
- .large-block-grid-5 > li:nth-of-type(n) {
957
- clear: none; }
958
- .large-block-grid-5 > li:nth-of-type(5n+1) {
959
- clear: both; }
960
-
961
- .large-block-grid-6 > li {
962
- width: 16.66667%;
963
- padding: 0 0.625em 1.25em; }
964
- .large-block-grid-6 > li:nth-of-type(n) {
965
- clear: none; }
966
- .large-block-grid-6 > li:nth-of-type(6n+1) {
967
- clear: both; }
968
-
969
- .large-block-grid-7 > li {
970
- width: 14.28571%;
971
- padding: 0 0.625em 1.25em; }
972
- .large-block-grid-7 > li:nth-of-type(n) {
973
- clear: none; }
974
- .large-block-grid-7 > li:nth-of-type(7n+1) {
975
- clear: both; }
976
-
977
- .large-block-grid-8 > li {
978
- width: 12.5%;
979
- padding: 0 0.625em 1.25em; }
980
- .large-block-grid-8 > li:nth-of-type(n) {
981
- clear: none; }
982
- .large-block-grid-8 > li:nth-of-type(8n+1) {
983
- clear: both; }
984
-
985
- .large-block-grid-9 > li {
986
- width: 11.11111%;
987
- padding: 0 0.625em 1.25em; }
988
- .large-block-grid-9 > li:nth-of-type(n) {
989
- clear: none; }
990
- .large-block-grid-9 > li:nth-of-type(9n+1) {
991
- clear: both; }
992
-
993
- .large-block-grid-10 > li {
994
- width: 10%;
995
- padding: 0 0.625em 1.25em; }
996
- .large-block-grid-10 > li:nth-of-type(n) {
997
- clear: none; }
998
- .large-block-grid-10 > li:nth-of-type(10n+1) {
999
- clear: both; }
1000
-
1001
- .large-block-grid-11 > li {
1002
- width: 9.09091%;
1003
- padding: 0 0.625em 1.25em; }
1004
- .large-block-grid-11 > li:nth-of-type(n) {
1005
- clear: none; }
1006
- .large-block-grid-11 > li:nth-of-type(11n+1) {
1007
- clear: both; }
1008
-
1009
- .large-block-grid-12 > li {
1010
- width: 8.33333%;
1011
- padding: 0 0.625em 1.25em; }
1012
- .large-block-grid-12 > li:nth-of-type(n) {
1013
- clear: none; }
1014
- .large-block-grid-12 > li:nth-of-type(12n+1) {
1015
- clear: both; } }
1016
- p.lead {
1017
- font-size: 1.21875em;
1018
- line-height: 1.6; }
1019
-
1020
- .subheader {
1021
- line-height: 1.4;
1022
- color: #6f6f6f;
1023
- font-weight: 300;
1024
- margin-top: 0.2em;
1025
- margin-bottom: 0.5em; }
1026
-
1027
- /* Typography resets */
1028
- div,
1029
- dl,
1030
- dt,
1031
- dd,
1032
- ul,
1033
- ol,
1034
- li,
1035
- h1,
1036
- h2,
1037
- h3,
1038
- h4,
1039
- h5,
1040
- h6,
1041
- pre,
1042
- form,
1043
- p,
1044
- blockquote,
1045
- th,
1046
- td {
1047
- margin: 0;
1048
- padding: 0;
1049
- direction: ltr; }
1050
-
1051
- /* Default Link Styles */
1052
- a {
1053
- color: #2ba6cb;
1054
- text-decoration: none;
1055
- line-height: inherit; }
1056
- a:hover, a:focus {
1057
- color: #2795b6; }
1058
- a img {
1059
- border: none; }
1060
-
1061
- /* Default paragraph styles */
1062
- p {
1063
- font-family: inherit;
1064
- font-weight: normal;
1065
- font-size: 1em;
1066
- line-height: 1.6;
1067
- margin-bottom: 1.25em;
1068
- text-rendering: optimizeLegibility; }
1069
- p aside {
1070
- font-size: 0.875em;
1071
- line-height: 1.35;
1072
- font-style: italic; }
1073
-
1074
- /* Default header styles */
1075
- h1, h2, h3, h4, h5, h6 {
1076
- font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
1077
- font-weight: bold;
1078
- font-style: normal;
1079
- color: #222222;
1080
- text-rendering: optimizeLegibility;
1081
- margin-top: 0.2em;
1082
- margin-bottom: 0.5em;
1083
- line-height: 1.2125em; }
1084
- h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
1085
- font-size: 60%;
1086
- color: #6f6f6f;
1087
- line-height: 0; }
1088
-
1089
- h1 {
1090
- font-size: 2.125em; }
1091
-
1092
- h2 {
1093
- font-size: 1.6875em; }
1094
-
1095
- h3 {
1096
- font-size: 1.375em; }
1097
-
1098
- h4 {
1099
- font-size: 1.125em; }
1100
-
1101
- h5 {
1102
- font-size: 1.125em; }
1103
-
1104
- h6 {
1105
- font-size: 1em; }
1106
-
1107
- hr {
1108
- border: solid #dddddd;
1109
- border-width: 1px 0 0;
1110
- clear: both;
1111
- margin: 1.25em 0 1.1875em;
1112
- height: 0; }
1113
-
1114
- /* Helpful Typography Defaults */
1115
- em,
1116
- i {
1117
- font-style: italic;
1118
- line-height: inherit; }
1119
-
1120
- strong,
1121
- b {
1122
- font-weight: bold;
1123
- line-height: inherit; }
1124
-
1125
- small {
1126
- font-size: 60%;
1127
- line-height: inherit; }
1128
-
1129
- code {
1130
- font-family: Consolas, "Liberation Mono", Courier, monospace;
1131
- font-weight: bold;
1132
- color: #7f0a0c; }
1133
-
1134
- /* Lists */
1135
- ul,
1136
- ol,
1137
- dl {
1138
- font-size: 1em;
1139
- line-height: 1.6;
1140
- margin-bottom: 1.25em;
1141
- list-style-position: outside;
1142
- font-family: inherit; }
1143
-
1144
- ul, ol {
1145
- margin-left: 0; }
1146
- ul.no-bullet, ol.no-bullet {
1147
- margin-left: 0; }
1148
-
1149
- /* Unordered Lists */
1150
- ul li ul,
1151
- ul li ol {
1152
- margin-left: 1.25em;
1153
- margin-bottom: 0;
1154
- font-size: 1em;
1155
- /* Override nested font-size change */ }
1156
- ul.square li ul, ul.circle li ul, ul.disc li ul {
1157
- list-style: inherit; }
1158
- ul.square {
1159
- list-style-type: square; }
1160
- ul.circle {
1161
- list-style-type: circle; }
1162
- ul.disc {
1163
- list-style-type: disc; }
1164
- ul.no-bullet {
1165
- list-style: none; }
1166
-
1167
- /* Ordered Lists */
1168
- ol li ul,
1169
- ol li ol {
1170
- margin-left: 1.25em;
1171
- margin-bottom: 0; }
1172
-
1173
- /* Definition Lists */
1174
- dl dt {
1175
- margin-bottom: 0.3em;
1176
- font-weight: bold; }
1177
- dl dd {
1178
- margin-bottom: 0.75em; }
1179
-
1180
- /* Abbreviations */
1181
- abbr,
1182
- acronym {
1183
- text-transform: uppercase;
1184
- font-size: 90%;
1185
- color: #222222;
1186
- border-bottom: 1px dotted #dddddd;
1187
- cursor: help; }
1188
-
1189
- abbr {
1190
- text-transform: none; }
1191
-
1192
- /* Blockquotes */
1193
- blockquote {
1194
- margin: 0 0 1.25em;
1195
- padding: 0.5625em 1.25em 0 1.1875em;
1196
- border-left: 1px solid #dddddd; }
1197
- blockquote cite {
1198
- display: block;
1199
- font-size: 0.8125em;
1200
- color: #555555; }
1201
- blockquote cite:before {
1202
- content: "\2014 \0020"; }
1203
- blockquote cite a,
1204
- blockquote cite a:visited {
1205
- color: #555555; }
1206
-
1207
- blockquote,
1208
- blockquote p {
1209
- line-height: 1.6;
1210
- color: #6f6f6f; }
1211
-
1212
- /* Microformats */
1213
- .vcard {
1214
- display: inline-block;
1215
- margin: 0 0 1.25em 0;
1216
- border: 1px solid #dddddd;
1217
- padding: 0.625em 0.75em; }
1218
- .vcard li {
1219
- margin: 0;
1220
- display: block; }
1221
- .vcard .fn {
1222
- font-weight: bold;
1223
- font-size: 0.9375em; }
1224
-
1225
- .vevent .summary {
1226
- font-weight: bold; }
1227
- .vevent abbr {
1228
- cursor: default;
1229
- text-decoration: none;
1230
- font-weight: bold;
1231
- border: none;
1232
- padding: 0 0.0625em; }
1233
-
1234
- @media only screen and (min-width: 768px) {
1235
- h1, h2, h3, h4, h5, h6 {
1236
- line-height: 1.4; }
1237
-
1238
- h1 {
1239
- font-size: 2.75em; }
1240
-
1241
- h2 {
1242
- font-size: 2.3125em; }
1243
-
1244
- h3 {
1245
- font-size: 1.6875em; }
1246
-
1247
- h4 {
1248
- font-size: 1.4375em; } }
1249
- /*
1250
- * Print styles.
1251
- *
1252
- * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
1253
- * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
1254
- */
1255
- .print-only {
1256
- display: none !important; }
1257
-
1258
- @media print {
1259
- * {
1260
- background: transparent !important;
1261
- color: black !important;
1262
- /* Black prints faster: h5bp.com/s */
1263
- box-shadow: none !important;
1264
- text-shadow: none !important; }
1265
-
1266
- a,
1267
- a:visited {
1268
- text-decoration: underline; }
1269
-
1270
- a[href]:after {
1271
- content: " (" attr(href) ")"; }
1272
-
1273
- abbr[title]:after {
1274
- content: " (" attr(title) ")"; }
1275
-
1276
- .ir a:after,
1277
- a[href^="javascript:"]:after,
1278
- a[href^="#"]:after {
1279
- content: ""; }
1280
-
1281
- pre,
1282
- blockquote {
1283
- border: 1px solid #999999;
1284
- page-break-inside: avoid; }
1285
-
1286
- thead {
1287
- display: table-header-group;
1288
- /* h5bp.com/t */ }
1289
-
1290
- tr,
1291
- img {
1292
- page-break-inside: avoid; }
1293
-
1294
- img {
1295
- max-width: 100% !important; }
1296
-
1297
- @page {
1298
- margin: 0.5cm; }
1299
-
1300
- p,
1301
- h2,
1302
- h3 {
1303
- orphans: 3;
1304
- widows: 3; }
1305
-
1306
- h2,
1307
- h3 {
1308
- page-break-after: avoid; }
1309
-
1310
- .hide-on-print {
1311
- display: none !important; }
1312
-
1313
- .print-only {
1314
- display: block !important; }
1315
-
1316
- .hide-for-print {
1317
- display: none !important; }
1318
-
1319
- .show-for-print {
1320
- display: inherit !important; } }
1321
- button, .button {
1322
- border-style: solid;
1323
- border-width: 1px;
1324
- cursor: pointer;
1325
- font-family: inherit;
1326
- font-weight: bold;
1327
- line-height: normal;
1328
- margin: 0 0 1.25em;
1329
- position: relative;
1330
- text-decoration: none;
1331
- text-align: center;
1332
- display: inline-block;
1333
- padding-top: 0.75em;
1334
- padding-right: 1.5em;
1335
- padding-bottom: 0.8125em;
1336
- padding-left: 1.5em;
1337
- font-size: 1em;
1338
- background-color: #2ba6cb;
1339
- border-color: #2284a1;
1340
- color: white; }
1341
- button:hover, button:focus, .button:hover, .button:focus {
1342
- background-color: #2284a1; }
1343
- button:hover, button:focus, .button:hover, .button:focus {
1344
- color: white; }
1345
- button.secondary, .button.secondary {
1346
- background-color: #e9e9e9;
1347
- border-color: #d0d0d0;
1348
- color: #333333; }
1349
- button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
1350
- background-color: #d0d0d0; }
1351
- button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
1352
- color: #333333; }
1353
- button.success, .button.success {
1354
- background-color: #5da423;
1355
- border-color: #457a1a;
1356
- color: white; }
1357
- button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
1358
- background-color: #457a1a; }
1359
- button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
1360
- color: white; }
1361
- button.alert, .button.alert {
1362
- background-color: #c60f13;
1363
- border-color: #970b0e;
1364
- color: white; }
1365
- button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
1366
- background-color: #970b0e; }
1367
- button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
1368
- color: white; }
1369
- button.large, .button.large {
1370
- padding-top: 1em;
1371
- padding-right: 2em;
1372
- padding-bottom: 1.0625em;
1373
- padding-left: 2em;
1374
- font-size: 1.25em; }
1375
- button.small, .button.small {
1376
- padding-top: 0.5625em;
1377
- padding-right: 1.125em;
1378
- padding-bottom: 0.625em;
1379
- padding-left: 1.125em;
1380
- font-size: 0.8125em; }
1381
- button.tiny, .button.tiny {
1382
- padding-top: 0.4375em;
1383
- padding-right: 0.875em;
1384
- padding-bottom: 0.5em;
1385
- padding-left: 0.875em;
1386
- font-size: 0.6875em; }
1387
- button.expand, .button.expand {
1388
- padding-right: 0;
1389
- padding-left: 0;
1390
- width: 100%; }
1391
- button.left-align, .button.left-align {
1392
- text-align: left;
1393
- text-indent: 0.75em; }
1394
- button.right-align, .button.right-align {
1395
- text-align: right;
1396
- padding-right: 0.75em; }
1397
- button.disabled, button[disabled], .button.disabled, .button[disabled] {
1398
- background-color: #2ba6cb;
1399
- border-color: #2284a1;
1400
- color: white;
1401
- cursor: default;
1402
- opacity: 0.6;
1403
- -webkit-box-shadow: none;
1404
- box-shadow: none; }
1405
- button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
1406
- background-color: #2284a1; }
1407
- button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
1408
- color: white; }
1409
- button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
1410
- background-color: #2ba6cb; }
1411
- button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
1412
- background-color: #e9e9e9;
1413
- border-color: #d0d0d0;
1414
- color: #333333;
1415
- cursor: default;
1416
- opacity: 0.6;
1417
- -webkit-box-shadow: none;
1418
- box-shadow: none; }
1419
- button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
1420
- background-color: #d0d0d0; }
1421
- button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
1422
- color: #333333; }
1423
- button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
1424
- background-color: #e9e9e9; }
1425
- button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
1426
- background-color: #5da423;
1427
- border-color: #457a1a;
1428
- color: white;
1429
- cursor: default;
1430
- opacity: 0.6;
1431
- -webkit-box-shadow: none;
1432
- box-shadow: none; }
1433
- button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
1434
- background-color: #457a1a; }
1435
- button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
1436
- color: white; }
1437
- button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
1438
- background-color: #5da423; }
1439
- button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
1440
- background-color: #c60f13;
1441
- border-color: #970b0e;
1442
- color: white;
1443
- cursor: default;
1444
- opacity: 0.6;
1445
- -webkit-box-shadow: none;
1446
- box-shadow: none; }
1447
- button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
1448
- background-color: #970b0e; }
1449
- button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
1450
- color: white; }
1451
- button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
1452
- background-color: #c60f13; }
1453
-
1454
- button, .button {
1455
- padding-top: 0.8125em;
1456
- padding-bottom: 0.75em;
1457
- -webkit-appearance: none; }
1458
- button.tiny, .button.tiny {
1459
- padding-top: 0.5em;
1460
- padding-bottom: 0.4375em;
1461
- -webkit-appearance: none; }
1462
- button.small, .button.small {
1463
- padding-top: 0.625em;
1464
- padding-bottom: 0.5625em;
1465
- -webkit-appearance: none; }
1466
- button.large, .button.large {
1467
- padding-top: 1.03125em;
1468
- padding-bottom: 1.03125em;
1469
- -webkit-appearance: none; }
1470
-
1471
- @media only screen {
1472
- button, .button {
1473
- -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
1474
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
1475
- -webkit-transition: background-color 300ms ease-out;
1476
- -moz-transition: background-color 300ms ease-out;
1477
- transition: background-color 300ms ease-out; }
1478
- button:active, .button:active {
1479
- -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset;
1480
- box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; }
1481
- button.radius, .button.radius {
1482
- -webkit-border-radius: 3px;
1483
- border-radius: 3px; }
1484
- button.round, .button.round {
1485
- -webkit-border-radius: 1000px;
1486
- border-radius: 1000px; } }
1487
- @media only screen and (min-width: 768px) {
1488
- button, .button {
1489
- display: inline-block; } }
1490
- /* Standard Forms */
1491
- form {
1492
- margin: 0 0 1em; }
1493
-
1494
- /* Using forms within rows, we need to set some defaults */
1495
- form .row .row {
1496
- margin: 0 -0.5em; }
1497
- form .row .row .column,
1498
- form .row .row .columns {
1499
- padding: 0 0.5em; }
1500
- form .row .row.collapse {
1501
- margin: 0; }
1502
- form .row .row.collapse .column,
1503
- form .row .row.collapse .columns {
1504
- padding: 0; }
1505
- form .row .row.collapse input {
1506
- -moz-border-radius-bottomright: 0;
1507
- -moz-border-radius-topright: 0;
1508
- -webkit-border-bottom-right-radius: 0;
1509
- -webkit-border-top-right-radius: 0; }
1510
- form .row input.column,
1511
- form .row input.columns,
1512
- form .row textarea.column,
1513
- form .row textarea.columns {
1514
- padding-left: 0.5em; }
1515
-
1516
- /* Label Styles */
1517
- label {
1518
- font-size: 0.875em;
1519
- color: #4d4d4d;
1520
- cursor: pointer;
1521
- display: block;
1522
- font-weight: 500;
1523
- margin-bottom: 0.1875em;
1524
- /* Styles for required inputs */ }
1525
- label.right {
1526
- float: none;
1527
- text-align: right; }
1528
- label.inline {
1529
- margin: 0 0 1em 0;
1530
- padding: 0.625em 0; }
1531
- label small {
1532
- text-transform: capitalize;
1533
- color: #666666; }
1534
-
1535
- /* Attach elements to the beginning or end of an input */
1536
- .prefix,
1537
- .postfix {
1538
- display: block;
1539
- position: relative;
1540
- z-index: 2;
1541
- text-align: center;
1542
- width: 100%;
1543
- padding-top: 0;
1544
- padding-bottom: 0;
1545
- border-style: solid;
1546
- border-width: 1px;
1547
- overflow: hidden;
1548
- font-size: 0.875em;
1549
- height: 2.3125em;
1550
- line-height: 2.3125em; }
1551
-
1552
- /* Adjust padding, alignment and radius if pre/post element is a button */
1553
- .postfix.button {
1554
- padding-left: 0;
1555
- padding-right: 0;
1556
- padding-top: 0;
1557
- padding-bottom: 0;
1558
- text-align: center;
1559
- line-height: 2.125em; }
1560
-
1561
- .prefix.button {
1562
- padding-left: 0;
1563
- padding-right: 0;
1564
- padding-top: 0;
1565
- padding-bottom: 0;
1566
- text-align: center;
1567
- line-height: 2.125em; }
1568
-
1569
- .prefix.button.radius {
1570
- -webkit-border-radius: 0;
1571
- border-radius: 0;
1572
- -moz-border-radius-bottomleft: 3px;
1573
- -moz-border-radius-topleft: 3px;
1574
- -webkit-border-bottom-left-radius: 3px;
1575
- -webkit-border-top-left-radius: 3px;
1576
- border-bottom-left-radius: 3px;
1577
- border-top-left-radius: 3px; }
1578
-
1579
- .postfix.button.radius {
1580
- -webkit-border-radius: 0;
1581
- border-radius: 0;
1582
- -moz-border-radius-topright: 3px;
1583
- -moz-border-radius-bottomright: 3px;
1584
- -webkit-border-top-right-radius: 3px;
1585
- -webkit-border-bottom-right-radius: 3px;
1586
- border-top-right-radius: 3px;
1587
- border-bottom-right-radius: 3px; }
1588
-
1589
- .prefix.button.round {
1590
- -webkit-border-radius: 0;
1591
- border-radius: 0;
1592
- -moz-border-radius-bottomleft: 1000px;
1593
- -moz-border-radius-topleft: 1000px;
1594
- -webkit-border-bottom-left-radius: 1000px;
1595
- -webkit-border-top-left-radius: 1000px;
1596
- border-bottom-left-radius: 1000px;
1597
- border-top-left-radius: 1000px; }
1598
-
1599
- .postfix.button.round {
1600
- -webkit-border-radius: 0;
1601
- border-radius: 0;
1602
- -moz-border-radius-topright: 1000px;
1603
- -moz-border-radius-bottomright: 1000px;
1604
- -webkit-border-top-right-radius: 1000px;
1605
- -webkit-border-bottom-right-radius: 1000px;
1606
- border-top-right-radius: 1000px;
1607
- border-bottom-right-radius: 1000px; }
1608
-
1609
- /* Separate prefix and postfix styles when on span or label so buttons keep their own */
1610
- span.prefix, label.prefix {
1611
- background: #f2f2f2;
1612
- border-color: #d9d9d9;
1613
- border-right: none;
1614
- color: #333333; }
1615
- span.prefix.radius, label.prefix.radius {
1616
- -webkit-border-radius: 0;
1617
- border-radius: 0;
1618
- -moz-border-radius-bottomleft: 3px;
1619
- -moz-border-radius-topleft: 3px;
1620
- -webkit-border-bottom-left-radius: 3px;
1621
- -webkit-border-top-left-radius: 3px;
1622
- border-bottom-left-radius: 3px;
1623
- border-top-left-radius: 3px; }
1624
-
1625
- span.postfix, label.postfix {
1626
- background: #f2f2f2;
1627
- border-color: #cccccc;
1628
- border-left: none;
1629
- color: #333333; }
1630
- span.postfix.radius, label.postfix.radius {
1631
- -webkit-border-radius: 0;
1632
- border-radius: 0;
1633
- -moz-border-radius-topright: 3px;
1634
- -moz-border-radius-bottomright: 3px;
1635
- -webkit-border-top-right-radius: 3px;
1636
- -webkit-border-bottom-right-radius: 3px;
1637
- border-top-right-radius: 3px;
1638
- border-bottom-right-radius: 3px; }
1639
-
1640
- /* Input groups will automatically style first and last elements of the group */
1641
- .input-group.radius > *:first-child, .input-group.radius > *:first-child * {
1642
- -moz-border-radius-bottomleft: 3px;
1643
- -moz-border-radius-topleft: 3px;
1644
- -webkit-border-bottom-left-radius: 3px;
1645
- -webkit-border-top-left-radius: 3px;
1646
- border-bottom-left-radius: 3px;
1647
- border-top-left-radius: 3px; }
1648
- .input-group.radius > *:last-child, .input-group.radius > *:last-child * {
1649
- -moz-border-radius-topright: 3px;
1650
- -moz-border-radius-bottomright: 3px;
1651
- -webkit-border-top-right-radius: 3px;
1652
- -webkit-border-bottom-right-radius: 3px;
1653
- border-top-right-radius: 3px;
1654
- border-bottom-right-radius: 3px; }
1655
- .input-group.round > *:first-child, .input-group.round > *:first-child * {
1656
- -moz-border-radius-bottomleft: 1000px;
1657
- -moz-border-radius-topleft: 1000px;
1658
- -webkit-border-bottom-left-radius: 1000px;
1659
- -webkit-border-top-left-radius: 1000px;
1660
- border-bottom-left-radius: 1000px;
1661
- border-top-left-radius: 1000px; }
1662
- .input-group.round > *:last-child, .input-group.round > *:last-child * {
1663
- -moz-border-radius-topright: 1000px;
1664
- -moz-border-radius-bottomright: 1000px;
1665
- -webkit-border-top-right-radius: 1000px;
1666
- -webkit-border-bottom-right-radius: 1000px;
1667
- border-top-right-radius: 1000px;
1668
- border-bottom-right-radius: 1000px; }
1669
-
1670
- /* We use this to get basic styling on all basic form elements */
1671
- input[type="text"],
1672
- input[type="password"],
1673
- input[type="date"],
1674
- input[type="datetime"],
1675
- input[type="datetime-local"],
1676
- input[type="month"],
1677
- input[type="week"],
1678
- input[type="email"],
1679
- input[type="number"],
1680
- input[type="search"],
1681
- input[type="tel"],
1682
- input[type="time"],
1683
- input[type="url"],
1684
- textarea {
1685
- -webkit-appearance: none;
1686
- -webkit-border-radius: 0;
1687
- border-radius: 0;
1688
- background-color: white;
1689
- font-family: inherit;
1690
- border: 1px solid #cccccc;
1691
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
1692
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
1693
- color: rgba(0, 0, 0, 0.75);
1694
- display: block;
1695
- font-size: 0.875em;
1696
- margin: 0 0 1em 0;
1697
- padding: 0.5em;
1698
- height: 2.3125em;
1699
- width: 100%;
1700
- -moz-box-sizing: border-box;
1701
- -webkit-box-sizing: border-box;
1702
- box-sizing: border-box;
1703
- -webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out;
1704
- -moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out;
1705
- transition: box-shadow 0.45s, border-color 0.45s ease-in-out; }
1706
- input[type="text"]:focus,
1707
- input[type="password"]:focus,
1708
- input[type="date"]:focus,
1709
- input[type="datetime"]:focus,
1710
- input[type="datetime-local"]:focus,
1711
- input[type="month"]:focus,
1712
- input[type="week"]:focus,
1713
- input[type="email"]:focus,
1714
- input[type="number"]:focus,
1715
- input[type="search"]:focus,
1716
- input[type="tel"]:focus,
1717
- input[type="time"]:focus,
1718
- input[type="url"]:focus,
1719
- textarea:focus {
1720
- -webkit-box-shadow: 0 0 5px #999999;
1721
- -moz-box-shadow: 0 0 5px #999999;
1722
- box-shadow: 0 0 5px #999999;
1723
- border-color: #999999; }
1724
- input[type="text"]:focus,
1725
- input[type="password"]:focus,
1726
- input[type="date"]:focus,
1727
- input[type="datetime"]:focus,
1728
- input[type="datetime-local"]:focus,
1729
- input[type="month"]:focus,
1730
- input[type="week"]:focus,
1731
- input[type="email"]:focus,
1732
- input[type="number"]:focus,
1733
- input[type="search"]:focus,
1734
- input[type="tel"]:focus,
1735
- input[type="time"]:focus,
1736
- input[type="url"]:focus,
1737
- textarea:focus {
1738
- background: #fafafa;
1739
- border-color: #999999;
1740
- outline: none; }
1741
- input[type="text"][disabled],
1742
- input[type="password"][disabled],
1743
- input[type="date"][disabled],
1744
- input[type="datetime"][disabled],
1745
- input[type="datetime-local"][disabled],
1746
- input[type="month"][disabled],
1747
- input[type="week"][disabled],
1748
- input[type="email"][disabled],
1749
- input[type="number"][disabled],
1750
- input[type="search"][disabled],
1751
- input[type="tel"][disabled],
1752
- input[type="time"][disabled],
1753
- input[type="url"][disabled],
1754
- textarea[disabled] {
1755
- background-color: #dddddd; }
1756
-
1757
- /* Adjust margin for form elements below */
1758
- input[type="file"],
1759
- input[type="checkbox"],
1760
- input[type="radio"],
1761
- select {
1762
- margin: 0 0 1em 0; }
1763
-
1764
- /* Normalize file input width */
1765
- input[type="file"] {
1766
- width: 100%; }
1767
-
1768
- /* We add basic fieldset styling */
1769
- fieldset {
1770
- border: solid 1px #dddddd;
1771
- padding: 1.25em;
1772
- margin: 1.125em 0; }
1773
- fieldset legend {
1774
- font-weight: bold;
1775
- background: white;
1776
- padding: 0 0.1875em;
1777
- margin: 0;
1778
- margin-left: -0.1875em; }
1779
-
1780
- /* Error Handling */
1781
- [data-abide] .error small.error, [data-abide] span.error, [data-abide] small.error {
1782
- display: block;
1783
- padding: 0.375em 0.25em;
1784
- margin-top: 0;
1785
- margin-bottom: 1em;
1786
- font-size: 0.75em;
1787
- font-weight: bold;
1788
- background: #c60f13;
1789
- color: white; }
1790
- [data-abide] span.error, [data-abide] small.error {
1791
- display: none; }
1792
-
1793
- span.error, small.error {
1794
- display: block;
1795
- padding: 0.375em 0.25em;
1796
- margin-top: 0;
1797
- margin-bottom: 1em;
1798
- font-size: 0.75em;
1799
- font-weight: bold;
1800
- background: #c60f13;
1801
- color: white; }
1802
-
1803
- .error input,
1804
- .error textarea,
1805
- .error select {
1806
- border-color: #c60f13;
1807
- background-color: rgba(198, 15, 19, 0.1);
1808
- margin-bottom: 0; }
1809
- .error input:focus,
1810
- .error textarea:focus,
1811
- .error select:focus {
1812
- background: #fafafa;
1813
- border-color: #999999; }
1814
- .error label,
1815
- .error label.error {
1816
- color: #c60f13; }
1817
- .error > small,
1818
- .error small.error {
1819
- display: block;
1820
- padding: 0.375em 0.25em;
1821
- margin-top: 0;
1822
- margin-bottom: 1em;
1823
- font-size: 0.75em;
1824
- font-weight: bold;
1825
- background: #c60f13;
1826
- color: white; }
1827
- .error span.error-message {
1828
- display: block; }
1829
-
1830
- input.error,
1831
- textarea.error {
1832
- border-color: #c60f13;
1833
- background-color: rgba(198, 15, 19, 0.1);
1834
- margin-bottom: 0; }
1835
- input.error:focus,
1836
- textarea.error:focus {
1837
- background: #fafafa;
1838
- border-color: #999999; }
1839
-
1840
- .error select {
1841
- border-color: #c60f13;
1842
- background-color: rgba(198, 15, 19, 0.1); }
1843
- .error select:focus {
1844
- background: #fafafa;
1845
- border-color: #999999; }
1846
-
1847
- label.error {
1848
- color: #c60f13; }
1849
-
1850
- /* Button Groups */
1851
- .button-group {
1852
- list-style: none;
1853
- margin: 0;
1854
- *zoom: 1; }
1855
- .button-group:before, .button-group:after {
1856
- content: " ";
1857
- display: table; }
1858
- .button-group:after {
1859
- clear: both; }
1860
- .button-group > * {
1861
- margin: 0 0 0 -1px;
1862
- float: left; }
1863
- .button-group > *:first-child {
1864
- margin-left: 0; }
1865
- .button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
1866
- -moz-border-radius-bottomleft: 3px;
1867
- -moz-border-radius-topleft: 3px;
1868
- -webkit-border-bottom-left-radius: 3px;
1869
- -webkit-border-top-left-radius: 3px;
1870
- border-bottom-left-radius: 3px;
1871
- border-top-left-radius: 3px; }
1872
- .button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
1873
- -moz-border-radius-topright: 3px;
1874
- -moz-border-radius-bottomright: 3px;
1875
- -webkit-border-top-right-radius: 3px;
1876
- -webkit-border-bottom-right-radius: 3px;
1877
- border-top-right-radius: 3px;
1878
- border-bottom-right-radius: 3px; }
1879
- .button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
1880
- -moz-border-radius-bottomleft: 1000px;
1881
- -moz-border-radius-topleft: 1000px;
1882
- -webkit-border-bottom-left-radius: 1000px;
1883
- -webkit-border-top-left-radius: 1000px;
1884
- border-bottom-left-radius: 1000px;
1885
- border-top-left-radius: 1000px; }
1886
- .button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
1887
- -moz-border-radius-topright: 1000px;
1888
- -moz-border-radius-bottomright: 1000px;
1889
- -webkit-border-top-right-radius: 1000px;
1890
- -webkit-border-bottom-right-radius: 1000px;
1891
- border-top-right-radius: 1000px;
1892
- border-bottom-right-radius: 1000px; }
1893
- .button-group.even-2 li {
1894
- width: 50%; }
1895
- .button-group.even-2 li button, .button-group.even-2 li .button {
1896
- width: 100%; }
1897
- .button-group.even-3 li {
1898
- width: 33.33333%; }
1899
- .button-group.even-3 li button, .button-group.even-3 li .button {
1900
- width: 100%; }
1901
- .button-group.even-4 li {
1902
- width: 25%; }
1903
- .button-group.even-4 li button, .button-group.even-4 li .button {
1904
- width: 100%; }
1905
- .button-group.even-5 li {
1906
- width: 20%; }
1907
- .button-group.even-5 li button, .button-group.even-5 li .button {
1908
- width: 100%; }
1909
- .button-group.even-6 li {
1910
- width: 16.66667%; }
1911
- .button-group.even-6 li button, .button-group.even-6 li .button {
1912
- width: 100%; }
1913
- .button-group.even-7 li {
1914
- width: 14.28571%; }
1915
- .button-group.even-7 li button, .button-group.even-7 li .button {
1916
- width: 100%; }
1917
- .button-group.even-8 li {
1918
- width: 12.5%; }
1919
- .button-group.even-8 li button, .button-group.even-8 li .button {
1920
- width: 100%; }
1921
-
1922
- .button-bar {
1923
- *zoom: 1; }
1924
- .button-bar:before, .button-bar:after {
1925
- content: " ";
1926
- display: table; }
1927
- .button-bar:after {
1928
- clear: both; }
1929
- .button-bar .button-group {
1930
- float: left;
1931
- margin-right: 0.625em; }
1932
- .button-bar .button-group div {
1933
- overflow: hidden; }
1934
-
1935
- /* Dropdown Button */
1936
- .dropdown.button {
1937
- position: relative;
1938
- padding-right: 3.1875em; }
1939
- .dropdown.button:before {
1940
- position: absolute;
1941
- content: "";
1942
- width: 0;
1943
- height: 0;
1944
- display: block;
1945
- border-style: solid;
1946
- border-color: white transparent transparent transparent;
1947
- top: 50%; }
1948
- .dropdown.button:before {
1949
- border-width: 0.5625em;
1950
- right: 1.5em;
1951
- margin-top: -0.25em; }
1952
- .dropdown.button:before {
1953
- border-color: white transparent transparent transparent; }
1954
- .dropdown.button.tiny {
1955
- padding-right: 2.1875em; }
1956
- .dropdown.button.tiny:before {
1957
- border-width: 0.4375em;
1958
- right: 0.875em;
1959
- margin-top: -0.15625em; }
1960
- .dropdown.button.tiny:before {
1961
- border-color: white transparent transparent transparent; }
1962
- .dropdown.button.small {
1963
- padding-right: 2.8125em; }
1964
- .dropdown.button.small:before {
1965
- border-width: 0.5625em;
1966
- right: 1.125em;
1967
- margin-top: -0.21875em; }
1968
- .dropdown.button.small:before {
1969
- border-color: white transparent transparent transparent; }
1970
- .dropdown.button.large {
1971
- padding-right: 4em; }
1972
- .dropdown.button.large:before {
1973
- border-width: 0.625em;
1974
- right: 1.75em;
1975
- margin-top: -0.3125em; }
1976
- .dropdown.button.large:before {
1977
- border-color: white transparent transparent transparent; }
1978
- .dropdown.button.secondary:before {
1979
- border-color: #333333 transparent transparent transparent; }
1980
-
1981
- /* Split Buttons */
1982
- .split.button {
1983
- position: relative;
1984
- padding-right: 4.8em; }
1985
- .split.button span {
1986
- display: block;
1987
- height: 100%;
1988
- position: absolute;
1989
- right: 0;
1990
- top: 0;
1991
- border-left: solid 1px; }
1992
- .split.button span:before {
1993
- position: absolute;
1994
- content: "";
1995
- width: 0;
1996
- height: 0;
1997
- display: block;
1998
- border-style: inset;
1999
- left: 50%; }
2000
- .split.button span:active {
2001
- background-color: rgba(0, 0, 0, 0.1); }
2002
- .split.button span {
2003
- border-left-color: #1e728c; }
2004
- .split.button span {
2005
- width: 3em; }
2006
- .split.button span:before {
2007
- border-top-style: solid;
2008
- border-width: 0.5625em;
2009
- top: 1.125em;
2010
- margin-left: -0.5625em; }
2011
- .split.button span:before {
2012
- border-color: white transparent transparent transparent; }
2013
- .split.button.secondary span {
2014
- border-left-color: #c3c3c3; }
2015
- .split.button.secondary span:before {
2016
- border-color: white transparent transparent transparent; }
2017
- .split.button.alert span {
2018
- border-left-color: #7f0a0c; }
2019
- .split.button.success span {
2020
- border-left-color: #396516; }
2021
- .split.button.tiny {
2022
- padding-right: 3.9375em; }
2023
- .split.button.tiny span {
2024
- width: 2.84375em; }
2025
- .split.button.tiny span:before {
2026
- border-top-style: solid;
2027
- border-width: 0.4375em;
2028
- top: 0.875em;
2029
- margin-left: -0.3125em; }
2030
- .split.button.small {
2031
- padding-right: 3.9375em; }
2032
- .split.button.small span {
2033
- width: 2.8125em; }
2034
- .split.button.small span:before {
2035
- border-top-style: solid;
2036
- border-width: 0.5625em;
2037
- top: 0.84375em;
2038
- margin-left: -0.5625em; }
2039
- .split.button.large {
2040
- padding-right: 6em; }
2041
- .split.button.large span {
2042
- width: 3.75em; }
2043
- .split.button.large span:before {
2044
- border-top-style: solid;
2045
- border-width: 0.625em;
2046
- top: 1.3125em;
2047
- margin-left: -0.5625em; }
2048
- .split.button.expand {
2049
- padding-left: 2em; }
2050
- .split.button.secondary span:before {
2051
- border-color: #333333 transparent transparent transparent; }
2052
- .split.button.radius span {
2053
- -moz-border-radius-topright: 3px;
2054
- -moz-border-radius-bottomright: 3px;
2055
- -webkit-border-top-right-radius: 3px;
2056
- -webkit-border-bottom-right-radius: 3px;
2057
- border-top-right-radius: 3px;
2058
- border-bottom-right-radius: 3px; }
2059
- .split.button.round span {
2060
- -moz-border-radius-topright: 1000px;
2061
- -moz-border-radius-bottomright: 1000px;
2062
- -webkit-border-top-right-radius: 1000px;
2063
- -webkit-border-bottom-right-radius: 1000px;
2064
- border-top-right-radius: 1000px;
2065
- border-bottom-right-radius: 1000px; }
2066
-
2067
- /* Flex Video */
2068
- .flex-video {
2069
- position: relative;
2070
- padding-top: 1.5625em;
2071
- padding-bottom: 67.5%;
2072
- height: 0;
2073
- margin-bottom: 1em;
2074
- overflow: hidden; }
2075
- .flex-video.widescreen {
2076
- padding-bottom: 57.25%; }
2077
- .flex-video.vimeo {
2078
- padding-top: 0; }
2079
- .flex-video iframe,
2080
- .flex-video object,
2081
- .flex-video embed,
2082
- .flex-video video {
2083
- position: absolute;
2084
- top: 0;
2085
- left: 0;
2086
- width: 100%;
2087
- height: 100%; }
2088
-
2089
- /* Sections */
2090
- [data-section=''], [data-section='auto'], .section-container.auto,
2091
- [data-section='vertical-tabs'], .section-container.vertical-tabs,
2092
- [data-section='vertical-nav'], .section-container.vertical-nav,
2093
- [data-section='horizontal-nav'], .section-container.horizontal-nav,
2094
- [data-section='accordion'], .section-container.accordion {
2095
- width: 100%;
2096
- position: relative;
2097
- display: block;
2098
- margin-bottom: 1.25em; }
2099
- [data-section=''][data-section-small-style], [data-section='auto'][data-section-small-style], .section-container.auto[data-section-small-style],
2100
- [data-section='vertical-tabs'][data-section-small-style], .section-container.vertical-tabs[data-section-small-style],
2101
- [data-section='vertical-nav'][data-section-small-style], .section-container.vertical-nav[data-section-small-style],
2102
- [data-section='horizontal-nav'][data-section-small-style], .section-container.horizontal-nav[data-section-small-style],
2103
- [data-section='accordion'][data-section-small-style], .section-container.accordion[data-section-small-style] {
2104
- width: 100% !important; }
2105
- [data-section=''][data-section-small-style] > [data-section-region], [data-section=''][data-section-small-style] > section, [data-section=''][data-section-small-style] > .section, [data-section='auto'][data-section-small-style] > [data-section-region], [data-section='auto'][data-section-small-style] > section, [data-section='auto'][data-section-small-style] > .section, .section-container.auto[data-section-small-style] > [data-section-region], .section-container.auto[data-section-small-style] > section, .section-container.auto[data-section-small-style] > .section,
2106
- [data-section='vertical-tabs'][data-section-small-style] > [data-section-region],
2107
- [data-section='vertical-tabs'][data-section-small-style] > section,
2108
- [data-section='vertical-tabs'][data-section-small-style] > .section, .section-container.vertical-tabs[data-section-small-style] > [data-section-region], .section-container.vertical-tabs[data-section-small-style] > section, .section-container.vertical-tabs[data-section-small-style] > .section,
2109
- [data-section='vertical-nav'][data-section-small-style] > [data-section-region],
2110
- [data-section='vertical-nav'][data-section-small-style] > section,
2111
- [data-section='vertical-nav'][data-section-small-style] > .section, .section-container.vertical-nav[data-section-small-style] > [data-section-region], .section-container.vertical-nav[data-section-small-style] > section, .section-container.vertical-nav[data-section-small-style] > .section,
2112
- [data-section='horizontal-nav'][data-section-small-style] > [data-section-region],
2113
- [data-section='horizontal-nav'][data-section-small-style] > section,
2114
- [data-section='horizontal-nav'][data-section-small-style] > .section, .section-container.horizontal-nav[data-section-small-style] > [data-section-region], .section-container.horizontal-nav[data-section-small-style] > section, .section-container.horizontal-nav[data-section-small-style] > .section,
2115
- [data-section='accordion'][data-section-small-style] > [data-section-region],
2116
- [data-section='accordion'][data-section-small-style] > section,
2117
- [data-section='accordion'][data-section-small-style] > .section, .section-container.accordion[data-section-small-style] > [data-section-region], .section-container.accordion[data-section-small-style] > section, .section-container.accordion[data-section-small-style] > .section {
2118
- padding: 0 !important;
2119
- margin: 0 !important; }
2120
- [data-section=''][data-section-small-style] > [data-section-region] > [data-section-title], [data-section=''][data-section-small-style] > [data-section-region] > .title, [data-section=''][data-section-small-style] > section > [data-section-title], [data-section=''][data-section-small-style] > section > .title, [data-section=''][data-section-small-style] > .section > [data-section-title], [data-section=''][data-section-small-style] > .section > .title, [data-section='auto'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='auto'][data-section-small-style] > [data-section-region] > .title, [data-section='auto'][data-section-small-style] > section > [data-section-title], [data-section='auto'][data-section-small-style] > section > .title, [data-section='auto'][data-section-small-style] > .section > [data-section-title], [data-section='auto'][data-section-small-style] > .section > .title, .section-container.auto[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.auto[data-section-small-style] > [data-section-region] > .title, .section-container.auto[data-section-small-style] > section > [data-section-title], .section-container.auto[data-section-small-style] > section > .title, .section-container.auto[data-section-small-style] > .section > [data-section-title], .section-container.auto[data-section-small-style] > .section > .title,
2121
- [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > [data-section-title],
2122
- [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > .title,
2123
- [data-section='vertical-tabs'][data-section-small-style] > section > [data-section-title],
2124
- [data-section='vertical-tabs'][data-section-small-style] > section > .title,
2125
- [data-section='vertical-tabs'][data-section-small-style] > .section > [data-section-title],
2126
- [data-section='vertical-tabs'][data-section-small-style] > .section > .title, .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-tabs[data-section-small-style] > section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > section > .title, .section-container.vertical-tabs[data-section-small-style] > .section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > .section > .title,
2127
- [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > [data-section-title],
2128
- [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > .title,
2129
- [data-section='vertical-nav'][data-section-small-style] > section > [data-section-title],
2130
- [data-section='vertical-nav'][data-section-small-style] > section > .title,
2131
- [data-section='vertical-nav'][data-section-small-style] > .section > [data-section-title],
2132
- [data-section='vertical-nav'][data-section-small-style] > .section > .title, .section-container.vertical-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-nav[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-nav[data-section-small-style] > section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > section > .title, .section-container.vertical-nav[data-section-small-style] > .section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > .section > .title,
2133
- [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > [data-section-title],
2134
- [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > .title,
2135
- [data-section='horizontal-nav'][data-section-small-style] > section > [data-section-title],
2136
- [data-section='horizontal-nav'][data-section-small-style] > section > .title,
2137
- [data-section='horizontal-nav'][data-section-small-style] > .section > [data-section-title],
2138
- [data-section='horizontal-nav'][data-section-small-style] > .section > .title, .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > .title, .section-container.horizontal-nav[data-section-small-style] > section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > section > .title, .section-container.horizontal-nav[data-section-small-style] > .section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > .section > .title,
2139
- [data-section='accordion'][data-section-small-style] > [data-section-region] > [data-section-title],
2140
- [data-section='accordion'][data-section-small-style] > [data-section-region] > .title,
2141
- [data-section='accordion'][data-section-small-style] > section > [data-section-title],
2142
- [data-section='accordion'][data-section-small-style] > section > .title,
2143
- [data-section='accordion'][data-section-small-style] > .section > [data-section-title],
2144
- [data-section='accordion'][data-section-small-style] > .section > .title, .section-container.accordion[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.accordion[data-section-small-style] > [data-section-region] > .title, .section-container.accordion[data-section-small-style] > section > [data-section-title], .section-container.accordion[data-section-small-style] > section > .title, .section-container.accordion[data-section-small-style] > .section > [data-section-title], .section-container.accordion[data-section-small-style] > .section > .title {
2145
- width: 100% !important; }
2146
- [data-section=''] > section, [data-section=''] > .section, [data-section=''] > [data-section-region], [data-section='auto'] > section, [data-section='auto'] > .section, [data-section='auto'] > [data-section-region], .section-container.auto > section, .section-container.auto > .section, .section-container.auto > [data-section-region],
2147
- [data-section='vertical-tabs'] > section,
2148
- [data-section='vertical-tabs'] > .section,
2149
- [data-section='vertical-tabs'] > [data-section-region], .section-container.vertical-tabs > section, .section-container.vertical-tabs > .section, .section-container.vertical-tabs > [data-section-region],
2150
- [data-section='vertical-nav'] > section,
2151
- [data-section='vertical-nav'] > .section,
2152
- [data-section='vertical-nav'] > [data-section-region], .section-container.vertical-nav > section, .section-container.vertical-nav > .section, .section-container.vertical-nav > [data-section-region],
2153
- [data-section='horizontal-nav'] > section,
2154
- [data-section='horizontal-nav'] > .section,
2155
- [data-section='horizontal-nav'] > [data-section-region], .section-container.horizontal-nav > section, .section-container.horizontal-nav > .section, .section-container.horizontal-nav > [data-section-region],
2156
- [data-section='accordion'] > section,
2157
- [data-section='accordion'] > .section,
2158
- [data-section='accordion'] > [data-section-region], .section-container.accordion > section, .section-container.accordion > .section, .section-container.accordion > [data-section-region] {
2159
- margin: 0; }
2160
- [data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title,
2161
- [data-section='vertical-tabs'] > section > [data-section-title],
2162
- [data-section='vertical-tabs'] > section > .title,
2163
- [data-section='vertical-tabs'] > .section > [data-section-title],
2164
- [data-section='vertical-tabs'] > .section > .title,
2165
- [data-section='vertical-tabs'] > [data-section-region] > [data-section-title],
2166
- [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title,
2167
- [data-section='vertical-nav'] > section > [data-section-title],
2168
- [data-section='vertical-nav'] > section > .title,
2169
- [data-section='vertical-nav'] > .section > [data-section-title],
2170
- [data-section='vertical-nav'] > .section > .title,
2171
- [data-section='vertical-nav'] > [data-section-region] > [data-section-title],
2172
- [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title,
2173
- [data-section='horizontal-nav'] > section > [data-section-title],
2174
- [data-section='horizontal-nav'] > section > .title,
2175
- [data-section='horizontal-nav'] > .section > [data-section-title],
2176
- [data-section='horizontal-nav'] > .section > .title,
2177
- [data-section='horizontal-nav'] > [data-section-region] > [data-section-title],
2178
- [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title,
2179
- [data-section='accordion'] > section > [data-section-title],
2180
- [data-section='accordion'] > section > .title,
2181
- [data-section='accordion'] > .section > [data-section-title],
2182
- [data-section='accordion'] > .section > .title,
2183
- [data-section='accordion'] > [data-section-region] > [data-section-title],
2184
- [data-section='accordion'] > [data-section-region] > .title, .section-container.accordion > section > [data-section-title], .section-container.accordion > section > .title, .section-container.accordion > .section > [data-section-title], .section-container.accordion > .section > .title, .section-container.accordion > [data-section-region] > [data-section-title], .section-container.accordion > [data-section-region] > .title {
2185
- margin-bottom: 0; }
2186
- [data-section=''] > section > [data-section-title] a, [data-section=''] > section > .title a, [data-section=''] > .section > [data-section-title] a, [data-section=''] > .section > .title a, [data-section=''] > [data-section-region] > [data-section-title] a, [data-section=''] > [data-section-region] > .title a, [data-section='auto'] > section > [data-section-title] a, [data-section='auto'] > section > .title a, [data-section='auto'] > .section > [data-section-title] a, [data-section='auto'] > .section > .title a, [data-section='auto'] > [data-section-region] > [data-section-title] a, [data-section='auto'] > [data-section-region] > .title a, .section-container.auto > section > [data-section-title] a, .section-container.auto > section > .title a, .section-container.auto > .section > [data-section-title] a, .section-container.auto > .section > .title a, .section-container.auto > [data-section-region] > [data-section-title] a, .section-container.auto > [data-section-region] > .title a,
2187
- [data-section='vertical-tabs'] > section > [data-section-title] a,
2188
- [data-section='vertical-tabs'] > section > .title a,
2189
- [data-section='vertical-tabs'] > .section > [data-section-title] a,
2190
- [data-section='vertical-tabs'] > .section > .title a,
2191
- [data-section='vertical-tabs'] > [data-section-region] > [data-section-title] a,
2192
- [data-section='vertical-tabs'] > [data-section-region] > .title a, .section-container.vertical-tabs > section > [data-section-title] a, .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > [data-section-title] a, .section-container.vertical-tabs > .section > .title a, .section-container.vertical-tabs > [data-section-region] > [data-section-title] a, .section-container.vertical-tabs > [data-section-region] > .title a,
2193
- [data-section='vertical-nav'] > section > [data-section-title] a,
2194
- [data-section='vertical-nav'] > section > .title a,
2195
- [data-section='vertical-nav'] > .section > [data-section-title] a,
2196
- [data-section='vertical-nav'] > .section > .title a,
2197
- [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a,
2198
- [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a,
2199
- [data-section='horizontal-nav'] > section > [data-section-title] a,
2200
- [data-section='horizontal-nav'] > section > .title a,
2201
- [data-section='horizontal-nav'] > .section > [data-section-title] a,
2202
- [data-section='horizontal-nav'] > .section > .title a,
2203
- [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a,
2204
- [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a,
2205
- [data-section='accordion'] > section > [data-section-title] a,
2206
- [data-section='accordion'] > section > .title a,
2207
- [data-section='accordion'] > .section > [data-section-title] a,
2208
- [data-section='accordion'] > .section > .title a,
2209
- [data-section='accordion'] > [data-section-region] > [data-section-title] a,
2210
- [data-section='accordion'] > [data-section-region] > .title a, .section-container.accordion > section > [data-section-title] a, .section-container.accordion > section > .title a, .section-container.accordion > .section > [data-section-title] a, .section-container.accordion > .section > .title a, .section-container.accordion > [data-section-region] > [data-section-title] a, .section-container.accordion > [data-section-region] > .title a {
2211
- width: 100%;
2212
- display: inline-block;
2213
- white-space: nowrap; }
2214
- [data-section=''] > section > [data-section-content], [data-section=''] > section > .content, [data-section=''] > .section > [data-section-content], [data-section=''] > .section > .content, [data-section=''] > [data-section-region] > [data-section-content], [data-section=''] > [data-section-region] > .content, [data-section='auto'] > section > [data-section-content], [data-section='auto'] > section > .content, [data-section='auto'] > .section > [data-section-content], [data-section='auto'] > .section > .content, [data-section='auto'] > [data-section-region] > [data-section-content], [data-section='auto'] > [data-section-region] > .content, .section-container.auto > section > [data-section-content], .section-container.auto > section > .content, .section-container.auto > .section > [data-section-content], .section-container.auto > .section > .content, .section-container.auto > [data-section-region] > [data-section-content], .section-container.auto > [data-section-region] > .content,
2215
- [data-section='vertical-tabs'] > section > [data-section-content],
2216
- [data-section='vertical-tabs'] > section > .content,
2217
- [data-section='vertical-tabs'] > .section > [data-section-content],
2218
- [data-section='vertical-tabs'] > .section > .content,
2219
- [data-section='vertical-tabs'] > [data-section-region] > [data-section-content],
2220
- [data-section='vertical-tabs'] > [data-section-region] > .content, .section-container.vertical-tabs > section > [data-section-content], .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > [data-section-content], .section-container.vertical-tabs > .section > .content, .section-container.vertical-tabs > [data-section-region] > [data-section-content], .section-container.vertical-tabs > [data-section-region] > .content,
2221
- [data-section='vertical-nav'] > section > [data-section-content],
2222
- [data-section='vertical-nav'] > section > .content,
2223
- [data-section='vertical-nav'] > .section > [data-section-content],
2224
- [data-section='vertical-nav'] > .section > .content,
2225
- [data-section='vertical-nav'] > [data-section-region] > [data-section-content],
2226
- [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content,
2227
- [data-section='horizontal-nav'] > section > [data-section-content],
2228
- [data-section='horizontal-nav'] > section > .content,
2229
- [data-section='horizontal-nav'] > .section > [data-section-content],
2230
- [data-section='horizontal-nav'] > .section > .content,
2231
- [data-section='horizontal-nav'] > [data-section-region] > [data-section-content],
2232
- [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content,
2233
- [data-section='accordion'] > section > [data-section-content],
2234
- [data-section='accordion'] > section > .content,
2235
- [data-section='accordion'] > .section > [data-section-content],
2236
- [data-section='accordion'] > .section > .content,
2237
- [data-section='accordion'] > [data-section-region] > [data-section-content],
2238
- [data-section='accordion'] > [data-section-region] > .content, .section-container.accordion > section > [data-section-content], .section-container.accordion > section > .content, .section-container.accordion > .section > [data-section-content], .section-container.accordion > .section > .content, .section-container.accordion > [data-section-region] > [data-section-content], .section-container.accordion > [data-section-region] > .content {
2239
- display: none; }
2240
- [data-section=''] > section.active > [data-section-content], [data-section=''] > section.active > .content, [data-section=''] > .section.active > [data-section-content], [data-section=''] > .section.active > .content, [data-section=''] > [data-section-region].active > [data-section-content], [data-section=''] > [data-section-region].active > .content, [data-section='auto'] > section.active > [data-section-content], [data-section='auto'] > section.active > .content, [data-section='auto'] > .section.active > [data-section-content], [data-section='auto'] > .section.active > .content, [data-section='auto'] > [data-section-region].active > [data-section-content], [data-section='auto'] > [data-section-region].active > .content, .section-container.auto > section.active > [data-section-content], .section-container.auto > section.active > .content, .section-container.auto > .section.active > [data-section-content], .section-container.auto > .section.active > .content, .section-container.auto > [data-section-region].active > [data-section-content], .section-container.auto > [data-section-region].active > .content,
2241
- [data-section='vertical-tabs'] > section.active > [data-section-content],
2242
- [data-section='vertical-tabs'] > section.active > .content,
2243
- [data-section='vertical-tabs'] > .section.active > [data-section-content],
2244
- [data-section='vertical-tabs'] > .section.active > .content,
2245
- [data-section='vertical-tabs'] > [data-section-region].active > [data-section-content],
2246
- [data-section='vertical-tabs'] > [data-section-region].active > .content, .section-container.vertical-tabs > section.active > [data-section-content], .section-container.vertical-tabs > section.active > .content, .section-container.vertical-tabs > .section.active > [data-section-content], .section-container.vertical-tabs > .section.active > .content, .section-container.vertical-tabs > [data-section-region].active > [data-section-content], .section-container.vertical-tabs > [data-section-region].active > .content,
2247
- [data-section='vertical-nav'] > section.active > [data-section-content],
2248
- [data-section='vertical-nav'] > section.active > .content,
2249
- [data-section='vertical-nav'] > .section.active > [data-section-content],
2250
- [data-section='vertical-nav'] > .section.active > .content,
2251
- [data-section='vertical-nav'] > [data-section-region].active > [data-section-content],
2252
- [data-section='vertical-nav'] > [data-section-region].active > .content, .section-container.vertical-nav > section.active > [data-section-content], .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > [data-section-content], .section-container.vertical-nav > .section.active > .content, .section-container.vertical-nav > [data-section-region].active > [data-section-content], .section-container.vertical-nav > [data-section-region].active > .content,
2253
- [data-section='horizontal-nav'] > section.active > [data-section-content],
2254
- [data-section='horizontal-nav'] > section.active > .content,
2255
- [data-section='horizontal-nav'] > .section.active > [data-section-content],
2256
- [data-section='horizontal-nav'] > .section.active > .content,
2257
- [data-section='horizontal-nav'] > [data-section-region].active > [data-section-content],
2258
- [data-section='horizontal-nav'] > [data-section-region].active > .content, .section-container.horizontal-nav > section.active > [data-section-content], .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > [data-section-content], .section-container.horizontal-nav > .section.active > .content, .section-container.horizontal-nav > [data-section-region].active > [data-section-content], .section-container.horizontal-nav > [data-section-region].active > .content,
2259
- [data-section='accordion'] > section.active > [data-section-content],
2260
- [data-section='accordion'] > section.active > .content,
2261
- [data-section='accordion'] > .section.active > [data-section-content],
2262
- [data-section='accordion'] > .section.active > .content,
2263
- [data-section='accordion'] > [data-section-region].active > [data-section-content],
2264
- [data-section='accordion'] > [data-section-region].active > .content, .section-container.accordion > section.active > [data-section-content], .section-container.accordion > section.active > .content, .section-container.accordion > .section.active > [data-section-content], .section-container.accordion > .section.active > .content, .section-container.accordion > [data-section-region].active > [data-section-content], .section-container.accordion > [data-section-region].active > .content {
2265
- display: block; }
2266
- [data-section=''] > section:not(.active), [data-section=''] > .section:not(.active), [data-section=''] > [data-section-region]:not(.active), [data-section='auto'] > section:not(.active), [data-section='auto'] > .section:not(.active), [data-section='auto'] > [data-section-region]:not(.active), .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active), .section-container.auto > [data-section-region]:not(.active),
2267
- [data-section='vertical-tabs'] > section:not(.active),
2268
- [data-section='vertical-tabs'] > .section:not(.active),
2269
- [data-section='vertical-tabs'] > [data-section-region]:not(.active), .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active), .section-container.vertical-tabs > [data-section-region]:not(.active),
2270
- [data-section='vertical-nav'] > section:not(.active),
2271
- [data-section='vertical-nav'] > .section:not(.active),
2272
- [data-section='vertical-nav'] > [data-section-region]:not(.active), .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active), .section-container.vertical-nav > [data-section-region]:not(.active),
2273
- [data-section='horizontal-nav'] > section:not(.active),
2274
- [data-section='horizontal-nav'] > .section:not(.active),
2275
- [data-section='horizontal-nav'] > [data-section-region]:not(.active), .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active), .section-container.horizontal-nav > [data-section-region]:not(.active),
2276
- [data-section='accordion'] > section:not(.active),
2277
- [data-section='accordion'] > .section:not(.active),
2278
- [data-section='accordion'] > [data-section-region]:not(.active), .section-container.accordion > section:not(.active), .section-container.accordion > .section:not(.active), .section-container.accordion > [data-section-region]:not(.active) {
2279
- padding: 0 !important; }
2280
- [data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title,
2281
- [data-section='vertical-tabs'] > section > [data-section-title],
2282
- [data-section='vertical-tabs'] > section > .title,
2283
- [data-section='vertical-tabs'] > .section > [data-section-title],
2284
- [data-section='vertical-tabs'] > .section > .title,
2285
- [data-section='vertical-tabs'] > [data-section-region] > [data-section-title],
2286
- [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title,
2287
- [data-section='vertical-nav'] > section > [data-section-title],
2288
- [data-section='vertical-nav'] > section > .title,
2289
- [data-section='vertical-nav'] > .section > [data-section-title],
2290
- [data-section='vertical-nav'] > .section > .title,
2291
- [data-section='vertical-nav'] > [data-section-region] > [data-section-title],
2292
- [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title,
2293
- [data-section='horizontal-nav'] > section > [data-section-title],
2294
- [data-section='horizontal-nav'] > section > .title,
2295
- [data-section='horizontal-nav'] > .section > [data-section-title],
2296
- [data-section='horizontal-nav'] > .section > .title,
2297
- [data-section='horizontal-nav'] > [data-section-region] > [data-section-title],
2298
- [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title,
2299
- [data-section='accordion'] > section > [data-section-title],
2300
- [data-section='accordion'] > section > .title,
2301
- [data-section='accordion'] > .section > [data-section-title],
2302
- [data-section='accordion'] > .section > .title,
2303
- [data-section='accordion'] > [data-section-region] > [data-section-title],
2304
- [data-section='accordion'] > [data-section-region] > .title, .section-container.accordion > section > [data-section-title], .section-container.accordion > section > .title, .section-container.accordion > .section > [data-section-title], .section-container.accordion > .section > .title, .section-container.accordion > [data-section-region] > [data-section-title], .section-container.accordion > [data-section-region] > .title {
2305
- width: 100%; }
2306
-
2307
- .section-container.auto,
2308
- .section-container.vertical-tabs,
2309
- .section-container.vertical-nav,
2310
- .section-container.horizontal-nav,
2311
- .section-container.accordion {
2312
- border-top: 1px solid #cccccc; }
2313
- .section-container.auto > section > .title, .section-container.auto > .section > .title,
2314
- .section-container.vertical-tabs > section > .title,
2315
- .section-container.vertical-tabs > .section > .title,
2316
- .section-container.vertical-nav > section > .title,
2317
- .section-container.vertical-nav > .section > .title,
2318
- .section-container.horizontal-nav > section > .title,
2319
- .section-container.horizontal-nav > .section > .title,
2320
- .section-container.accordion > section > .title,
2321
- .section-container.accordion > .section > .title {
2322
- background-color: #efefef;
2323
- cursor: pointer;
2324
- border: solid 1px #cccccc; }
2325
- .section-container.auto > section > .title a, .section-container.auto > .section > .title a,
2326
- .section-container.vertical-tabs > section > .title a,
2327
- .section-container.vertical-tabs > .section > .title a,
2328
- .section-container.vertical-nav > section > .title a,
2329
- .section-container.vertical-nav > .section > .title a,
2330
- .section-container.horizontal-nav > section > .title a,
2331
- .section-container.horizontal-nav > .section > .title a,
2332
- .section-container.accordion > section > .title a,
2333
- .section-container.accordion > .section > .title a {
2334
- padding: 0.9375em;
2335
- color: #333333;
2336
- font-size: 0.875em;
2337
- background: none; }
2338
- .section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover,
2339
- .section-container.vertical-tabs > section > .title:hover,
2340
- .section-container.vertical-tabs > .section > .title:hover,
2341
- .section-container.vertical-nav > section > .title:hover,
2342
- .section-container.vertical-nav > .section > .title:hover,
2343
- .section-container.horizontal-nav > section > .title:hover,
2344
- .section-container.horizontal-nav > .section > .title:hover,
2345
- .section-container.accordion > section > .title:hover,
2346
- .section-container.accordion > .section > .title:hover {
2347
- background-color: #e2e2e2; }
2348
- .section-container.auto > section > .content, .section-container.auto > .section > .content,
2349
- .section-container.vertical-tabs > section > .content,
2350
- .section-container.vertical-tabs > .section > .content,
2351
- .section-container.vertical-nav > section > .content,
2352
- .section-container.vertical-nav > .section > .content,
2353
- .section-container.horizontal-nav > section > .content,
2354
- .section-container.horizontal-nav > .section > .content,
2355
- .section-container.accordion > section > .content,
2356
- .section-container.accordion > .section > .content {
2357
- padding: 0.9375em;
2358
- background-color: white;
2359
- border: solid 1px #cccccc; }
2360
- .section-container.auto > section > .content > *:last-child, .section-container.auto > .section > .content > *:last-child,
2361
- .section-container.vertical-tabs > section > .content > *:last-child,
2362
- .section-container.vertical-tabs > .section > .content > *:last-child,
2363
- .section-container.vertical-nav > section > .content > *:last-child,
2364
- .section-container.vertical-nav > .section > .content > *:last-child,
2365
- .section-container.horizontal-nav > section > .content > *:last-child,
2366
- .section-container.horizontal-nav > .section > .content > *:last-child,
2367
- .section-container.accordion > section > .content > *:last-child,
2368
- .section-container.accordion > .section > .content > *:last-child {
2369
- margin-bottom: 0; }
2370
- .section-container.auto > section > .content > *:first-child, .section-container.auto > .section > .content > *:first-child,
2371
- .section-container.vertical-tabs > section > .content > *:first-child,
2372
- .section-container.vertical-tabs > .section > .content > *:first-child,
2373
- .section-container.vertical-nav > section > .content > *:first-child,
2374
- .section-container.vertical-nav > .section > .content > *:first-child,
2375
- .section-container.horizontal-nav > section > .content > *:first-child,
2376
- .section-container.horizontal-nav > .section > .content > *:first-child,
2377
- .section-container.accordion > section > .content > *:first-child,
2378
- .section-container.accordion > .section > .content > *:first-child {
2379
- padding-top: 0; }
2380
- .section-container.auto > section > .content > *:last-child:not(.flex-video), .section-container.auto > .section > .content > *:last-child:not(.flex-video),
2381
- .section-container.vertical-tabs > section > .content > *:last-child:not(.flex-video),
2382
- .section-container.vertical-tabs > .section > .content > *:last-child:not(.flex-video),
2383
- .section-container.vertical-nav > section > .content > *:last-child:not(.flex-video),
2384
- .section-container.vertical-nav > .section > .content > *:last-child:not(.flex-video),
2385
- .section-container.horizontal-nav > section > .content > *:last-child:not(.flex-video),
2386
- .section-container.horizontal-nav > .section > .content > *:last-child:not(.flex-video),
2387
- .section-container.accordion > section > .content > *:last-child:not(.flex-video),
2388
- .section-container.accordion > .section > .content > *:last-child:not(.flex-video) {
2389
- padding-bottom: 0; }
2390
- .section-container.auto > section.active > .title, .section-container.auto > .section.active > .title,
2391
- .section-container.vertical-tabs > section.active > .title,
2392
- .section-container.vertical-tabs > .section.active > .title,
2393
- .section-container.vertical-nav > section.active > .title,
2394
- .section-container.vertical-nav > .section.active > .title,
2395
- .section-container.horizontal-nav > section.active > .title,
2396
- .section-container.horizontal-nav > .section.active > .title,
2397
- .section-container.accordion > section.active > .title,
2398
- .section-container.accordion > .section.active > .title {
2399
- background: #d5d5d5; }
2400
- .section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a,
2401
- .section-container.vertical-tabs > section.active > .title a,
2402
- .section-container.vertical-tabs > .section.active > .title a,
2403
- .section-container.vertical-nav > section.active > .title a,
2404
- .section-container.vertical-nav > .section.active > .title a,
2405
- .section-container.horizontal-nav > section.active > .title a,
2406
- .section-container.horizontal-nav > .section.active > .title a,
2407
- .section-container.accordion > section.active > .title a,
2408
- .section-container.accordion > .section.active > .title a {
2409
- color: #333333; }
2410
- .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active),
2411
- .section-container.vertical-tabs > section:not(.active),
2412
- .section-container.vertical-tabs > .section:not(.active),
2413
- .section-container.vertical-nav > section:not(.active),
2414
- .section-container.vertical-nav > .section:not(.active),
2415
- .section-container.horizontal-nav > section:not(.active),
2416
- .section-container.horizontal-nav > .section:not(.active),
2417
- .section-container.accordion > section:not(.active),
2418
- .section-container.accordion > .section:not(.active) {
2419
- padding: 0 !important; }
2420
- .section-container.auto > section > .title, .section-container.auto > .section > .title,
2421
- .section-container.vertical-tabs > section > .title,
2422
- .section-container.vertical-tabs > .section > .title,
2423
- .section-container.vertical-nav > section > .title,
2424
- .section-container.vertical-nav > .section > .title,
2425
- .section-container.horizontal-nav > section > .title,
2426
- .section-container.horizontal-nav > .section > .title,
2427
- .section-container.accordion > section > .title,
2428
- .section-container.accordion > .section > .title {
2429
- border-top: none; }
2430
-
2431
- [data-section='tabs'], .section-container.tabs {
2432
- width: 100%;
2433
- position: relative;
2434
- display: block;
2435
- margin-bottom: 1.25em; }
2436
- [data-section='tabs']:not([data-section-resized]):not([data-section-small-style]), .section-container.tabs:not([data-section-resized]):not([data-section-small-style]) {
2437
- visibility: hidden; }
2438
- [data-section='tabs'] > section > [data-section-title], [data-section='tabs'] > section > .title, [data-section='tabs'] > .section > [data-section-title], [data-section='tabs'] > .section > .title, [data-section='tabs'] > [data-section-region] > [data-section-title], [data-section='tabs'] > [data-section-region] > .title, .section-container.tabs > section > [data-section-title], .section-container.tabs > section > .title, .section-container.tabs > .section > [data-section-title], .section-container.tabs > .section > .title, .section-container.tabs > [data-section-region] > [data-section-title], .section-container.tabs > [data-section-region] > .title {
2439
- margin-bottom: 0; }
2440
- [data-section='tabs'] > section > [data-section-title] a, [data-section='tabs'] > section > .title a, [data-section='tabs'] > .section > [data-section-title] a, [data-section='tabs'] > .section > .title a, [data-section='tabs'] > [data-section-region] > [data-section-title] a, [data-section='tabs'] > [data-section-region] > .title a, .section-container.tabs > section > [data-section-title] a, .section-container.tabs > section > .title a, .section-container.tabs > .section > [data-section-title] a, .section-container.tabs > .section > .title a, .section-container.tabs > [data-section-region] > [data-section-title] a, .section-container.tabs > [data-section-region] > .title a {
2441
- width: 100%;
2442
- display: inline-block;
2443
- white-space: nowrap; }
2444
- [data-section='tabs'] > section > [data-section-content], [data-section='tabs'] > section > .content, [data-section='tabs'] > .section > [data-section-content], [data-section='tabs'] > .section > .content, [data-section='tabs'] > [data-section-region] > [data-section-content], [data-section='tabs'] > [data-section-region] > .content, .section-container.tabs > section > [data-section-content], .section-container.tabs > section > .content, .section-container.tabs > .section > [data-section-content], .section-container.tabs > .section > .content, .section-container.tabs > [data-section-region] > [data-section-content], .section-container.tabs > [data-section-region] > .content {
2445
- display: none; }
2446
- [data-section='tabs'] > section.active > [data-section-content], [data-section='tabs'] > section.active > .content, [data-section='tabs'] > .section.active > [data-section-content], [data-section='tabs'] > .section.active > .content, [data-section='tabs'] > [data-section-region].active > [data-section-content], [data-section='tabs'] > [data-section-region].active > .content, .section-container.tabs > section.active > [data-section-content], .section-container.tabs > section.active > .content, .section-container.tabs > .section.active > [data-section-content], .section-container.tabs > .section.active > .content, .section-container.tabs > [data-section-region].active > [data-section-content], .section-container.tabs > [data-section-region].active > .content {
2447
- display: block; }
2448
- [data-section='tabs'] > section:not(.active), [data-section='tabs'] > .section:not(.active), [data-section='tabs'] > [data-section-region]:not(.active), .section-container.tabs > section:not(.active), .section-container.tabs > .section:not(.active), .section-container.tabs > [data-section-region]:not(.active) {
2449
- padding: 0 !important; }
2450
- [data-section='tabs'] > section > [data-section-title], [data-section='tabs'] > section > .title, [data-section='tabs'] > .section > [data-section-title], [data-section='tabs'] > .section > .title, [data-section='tabs'] > [data-section-region] > [data-section-title], [data-section='tabs'] > [data-section-region] > .title, .section-container.tabs > section > [data-section-title], .section-container.tabs > section > .title, .section-container.tabs > .section > [data-section-title], .section-container.tabs > .section > .title, .section-container.tabs > [data-section-region] > [data-section-title], .section-container.tabs > [data-section-region] > .title {
2451
- width: auto;
2452
- position: absolute;
2453
- top: 0;
2454
- left: 0; }
2455
-
2456
- .section-container.tabs {
2457
- border: none; }
2458
- .section-container.tabs > section > .title, .section-container.tabs > .section > .title {
2459
- background-color: #efefef;
2460
- cursor: pointer;
2461
- border: solid 1px #cccccc; }
2462
- .section-container.tabs > section > .title a, .section-container.tabs > .section > .title a {
2463
- padding: 0.9375em;
2464
- color: #333333;
2465
- font-size: 0.875em;
2466
- background: none; }
2467
- .section-container.tabs > section > .title:hover, .section-container.tabs > .section > .title:hover {
2468
- background-color: #e2e2e2; }
2469
- .section-container.tabs > section > .content, .section-container.tabs > .section > .content {
2470
- padding: 0.9375em;
2471
- background-color: white;
2472
- border: solid 1px #cccccc; }
2473
- .section-container.tabs > section > .content > *:last-child, .section-container.tabs > .section > .content > *:last-child {
2474
- margin-bottom: 0; }
2475
- .section-container.tabs > section > .content > *:first-child, .section-container.tabs > .section > .content > *:first-child {
2476
- padding-top: 0; }
2477
- .section-container.tabs > section > .content > *:last-child:not(.flex-video), .section-container.tabs > .section > .content > *:last-child:not(.flex-video) {
2478
- padding-bottom: 0; }
2479
- .section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title {
2480
- background: white; }
2481
- .section-container.tabs > section.active > .title a, .section-container.tabs > .section.active > .title a {
2482
- color: #333333; }
2483
- .section-container.tabs > section:not(.active), .section-container.tabs > .section:not(.active) {
2484
- padding: 0 !important; }
2485
- .section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title {
2486
- border-bottom: 0; }
2487
-
2488
- @media only screen and (min-width: 768px) {
2489
- [data-section=''], [data-section='auto'], .section-container.auto {
2490
- width: 100%;
2491
- position: relative;
2492
- display: block;
2493
- margin-bottom: 1.25em; }
2494
- [data-section='']:not([data-section-resized]):not([data-section-small-style]), [data-section='auto']:not([data-section-resized]):not([data-section-small-style]), .section-container.auto:not([data-section-resized]):not([data-section-small-style]) {
2495
- visibility: hidden; }
2496
- [data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title {
2497
- margin-bottom: 0; }
2498
- [data-section=''] > section > [data-section-title] a, [data-section=''] > section > .title a, [data-section=''] > .section > [data-section-title] a, [data-section=''] > .section > .title a, [data-section=''] > [data-section-region] > [data-section-title] a, [data-section=''] > [data-section-region] > .title a, [data-section='auto'] > section > [data-section-title] a, [data-section='auto'] > section > .title a, [data-section='auto'] > .section > [data-section-title] a, [data-section='auto'] > .section > .title a, [data-section='auto'] > [data-section-region] > [data-section-title] a, [data-section='auto'] > [data-section-region] > .title a, .section-container.auto > section > [data-section-title] a, .section-container.auto > section > .title a, .section-container.auto > .section > [data-section-title] a, .section-container.auto > .section > .title a, .section-container.auto > [data-section-region] > [data-section-title] a, .section-container.auto > [data-section-region] > .title a {
2499
- width: 100%;
2500
- display: inline-block;
2501
- white-space: nowrap; }
2502
- [data-section=''] > section > [data-section-content], [data-section=''] > section > .content, [data-section=''] > .section > [data-section-content], [data-section=''] > .section > .content, [data-section=''] > [data-section-region] > [data-section-content], [data-section=''] > [data-section-region] > .content, [data-section='auto'] > section > [data-section-content], [data-section='auto'] > section > .content, [data-section='auto'] > .section > [data-section-content], [data-section='auto'] > .section > .content, [data-section='auto'] > [data-section-region] > [data-section-content], [data-section='auto'] > [data-section-region] > .content, .section-container.auto > section > [data-section-content], .section-container.auto > section > .content, .section-container.auto > .section > [data-section-content], .section-container.auto > .section > .content, .section-container.auto > [data-section-region] > [data-section-content], .section-container.auto > [data-section-region] > .content {
2503
- display: none; }
2504
- [data-section=''] > section.active > [data-section-content], [data-section=''] > section.active > .content, [data-section=''] > .section.active > [data-section-content], [data-section=''] > .section.active > .content, [data-section=''] > [data-section-region].active > [data-section-content], [data-section=''] > [data-section-region].active > .content, [data-section='auto'] > section.active > [data-section-content], [data-section='auto'] > section.active > .content, [data-section='auto'] > .section.active > [data-section-content], [data-section='auto'] > .section.active > .content, [data-section='auto'] > [data-section-region].active > [data-section-content], [data-section='auto'] > [data-section-region].active > .content, .section-container.auto > section.active > [data-section-content], .section-container.auto > section.active > .content, .section-container.auto > .section.active > [data-section-content], .section-container.auto > .section.active > .content, .section-container.auto > [data-section-region].active > [data-section-content], .section-container.auto > [data-section-region].active > .content {
2505
- display: block; }
2506
- [data-section=''] > section:not(.active), [data-section=''] > .section:not(.active), [data-section=''] > [data-section-region]:not(.active), [data-section='auto'] > section:not(.active), [data-section='auto'] > .section:not(.active), [data-section='auto'] > [data-section-region]:not(.active), .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active), .section-container.auto > [data-section-region]:not(.active) {
2507
- padding: 0 !important; }
2508
- [data-section=''] > section > [data-section-title], [data-section=''] > section > .title, [data-section=''] > .section > [data-section-title], [data-section=''] > .section > .title, [data-section=''] > [data-section-region] > [data-section-title], [data-section=''] > [data-section-region] > .title, [data-section='auto'] > section > [data-section-title], [data-section='auto'] > section > .title, [data-section='auto'] > .section > [data-section-title], [data-section='auto'] > .section > .title, [data-section='auto'] > [data-section-region] > [data-section-title], [data-section='auto'] > [data-section-region] > .title, .section-container.auto > section > [data-section-title], .section-container.auto > section > .title, .section-container.auto > .section > [data-section-title], .section-container.auto > .section > .title, .section-container.auto > [data-section-region] > [data-section-title], .section-container.auto > [data-section-region] > .title {
2509
- width: auto;
2510
- position: absolute;
2511
- top: 0;
2512
- left: 0; }
2513
-
2514
- .section-container.auto {
2515
- border: none; }
2516
- .section-container.auto > section > .title, .section-container.auto > .section > .title {
2517
- background-color: #efefef;
2518
- cursor: pointer;
2519
- border: solid 1px #cccccc; }
2520
- .section-container.auto > section > .title a, .section-container.auto > .section > .title a {
2521
- padding: 0.9375em;
2522
- color: #333333;
2523
- font-size: 0.875em;
2524
- background: none; }
2525
- .section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover {
2526
- background-color: #e2e2e2; }
2527
- .section-container.auto > section > .content, .section-container.auto > .section > .content {
2528
- padding: 0.9375em;
2529
- background-color: white;
2530
- border: solid 1px #cccccc; }
2531
- .section-container.auto > section > .content > *:last-child, .section-container.auto > .section > .content > *:last-child {
2532
- margin-bottom: 0; }
2533
- .section-container.auto > section > .content > *:first-child, .section-container.auto > .section > .content > *:first-child {
2534
- padding-top: 0; }
2535
- .section-container.auto > section > .content > *:last-child:not(.flex-video), .section-container.auto > .section > .content > *:last-child:not(.flex-video) {
2536
- padding-bottom: 0; }
2537
- .section-container.auto > section.active > .title, .section-container.auto > .section.active > .title {
2538
- background: white; }
2539
- .section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a {
2540
- color: #333333; }
2541
- .section-container.auto > section:not(.active), .section-container.auto > .section:not(.active) {
2542
- padding: 0 !important; }
2543
- .section-container.auto > section.active > .title, .section-container.auto > .section.active > .title {
2544
- border-bottom: 0; }
2545
-
2546
- [data-section='vertical-tabs'], .section-container.vertical-tabs {
2547
- width: 100%;
2548
- position: relative;
2549
- display: block;
2550
- margin-bottom: 1.25em; }
2551
- [data-section='vertical-tabs']:not([data-section-resized]):not([data-section-small-style]), .section-container.vertical-tabs:not([data-section-resized]):not([data-section-small-style]) {
2552
- visibility: hidden; }
2553
- [data-section='vertical-tabs'][data-section-small-style], .section-container.vertical-tabs[data-section-small-style] {
2554
- width: 100% !important; }
2555
- [data-section='vertical-tabs'][data-section-small-style] > [data-section-region], [data-section='vertical-tabs'][data-section-small-style] > section, [data-section='vertical-tabs'][data-section-small-style] > .section, .section-container.vertical-tabs[data-section-small-style] > [data-section-region], .section-container.vertical-tabs[data-section-small-style] > section, .section-container.vertical-tabs[data-section-small-style] > .section {
2556
- padding: 0 !important;
2557
- margin: 0 !important; }
2558
- [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-tabs'][data-section-small-style] > section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > section > .title, [data-section='vertical-tabs'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-tabs'][data-section-small-style] > .section > .title, .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-tabs[data-section-small-style] > section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > section > .title, .section-container.vertical-tabs[data-section-small-style] > .section > [data-section-title], .section-container.vertical-tabs[data-section-small-style] > .section > .title {
2559
- width: 100% !important; }
2560
- [data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title {
2561
- margin-bottom: 0; }
2562
- [data-section='vertical-tabs'] > section > [data-section-title] a, [data-section='vertical-tabs'] > section > .title a, [data-section='vertical-tabs'] > .section > [data-section-title] a, [data-section='vertical-tabs'] > .section > .title a, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title] a, [data-section='vertical-tabs'] > [data-section-region] > .title a, .section-container.vertical-tabs > section > [data-section-title] a, .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > [data-section-title] a, .section-container.vertical-tabs > .section > .title a, .section-container.vertical-tabs > [data-section-region] > [data-section-title] a, .section-container.vertical-tabs > [data-section-region] > .title a {
2563
- width: 100%;
2564
- display: inline-block;
2565
- white-space: nowrap; }
2566
- [data-section='vertical-tabs'] > section > [data-section-content], [data-section='vertical-tabs'] > section > .content, [data-section='vertical-tabs'] > .section > [data-section-content], [data-section='vertical-tabs'] > .section > .content, [data-section='vertical-tabs'] > [data-section-region] > [data-section-content], [data-section='vertical-tabs'] > [data-section-region] > .content, .section-container.vertical-tabs > section > [data-section-content], .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > [data-section-content], .section-container.vertical-tabs > .section > .content, .section-container.vertical-tabs > [data-section-region] > [data-section-content], .section-container.vertical-tabs > [data-section-region] > .content {
2567
- display: none; }
2568
- [data-section='vertical-tabs'] > section.active > [data-section-content], [data-section='vertical-tabs'] > section.active > .content, [data-section='vertical-tabs'] > .section.active > [data-section-content], [data-section='vertical-tabs'] > .section.active > .content, [data-section='vertical-tabs'] > [data-section-region].active > [data-section-content], [data-section='vertical-tabs'] > [data-section-region].active > .content, .section-container.vertical-tabs > section.active > [data-section-content], .section-container.vertical-tabs > section.active > .content, .section-container.vertical-tabs > .section.active > [data-section-content], .section-container.vertical-tabs > .section.active > .content, .section-container.vertical-tabs > [data-section-region].active > [data-section-content], .section-container.vertical-tabs > [data-section-region].active > .content {
2569
- display: block; }
2570
- [data-section='vertical-tabs'] > section:not(.active), [data-section='vertical-tabs'] > .section:not(.active), [data-section='vertical-tabs'] > [data-section-region]:not(.active), .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active), .section-container.vertical-tabs > [data-section-region]:not(.active) {
2571
- padding: 0 !important; }
2572
- [data-section='vertical-tabs'] > section > [data-section-title], [data-section='vertical-tabs'] > section > .title, [data-section='vertical-tabs'] > .section > [data-section-title], [data-section='vertical-tabs'] > .section > .title, [data-section='vertical-tabs'] > [data-section-region] > [data-section-title], [data-section='vertical-tabs'] > [data-section-region] > .title, .section-container.vertical-tabs > section > [data-section-title], .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > [data-section-title], .section-container.vertical-tabs > .section > .title, .section-container.vertical-tabs > [data-section-region] > [data-section-title], .section-container.vertical-tabs > [data-section-region] > .title {
2573
- position: absolute;
2574
- top: 0;
2575
- left: 0;
2576
- width: 12.5em; }
2577
- [data-section='vertical-tabs'] > section.active, [data-section='vertical-tabs'] > .section.active, [data-section='vertical-tabs'] > [data-section-region].active, .section-container.vertical-tabs > section.active, .section-container.vertical-tabs > .section.active, .section-container.vertical-tabs > [data-section-region].active {
2578
- padding-left: 12.5em; }
2579
- [data-section='vertical-tabs'] > section.active > [data-section-title], [data-section='vertical-tabs'] > section.active > .title, [data-section='vertical-tabs'] > .section.active > [data-section-title], [data-section='vertical-tabs'] > .section.active > .title, [data-section='vertical-tabs'] > [data-section-region].active > [data-section-title], [data-section='vertical-tabs'] > [data-section-region].active > .title, .section-container.vertical-tabs > section.active > [data-section-title], .section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > [data-section-title], .section-container.vertical-tabs > .section.active > .title, .section-container.vertical-tabs > [data-section-region].active > [data-section-title], .section-container.vertical-tabs > [data-section-region].active > .title {
2580
- width: 12.5em; }
2581
-
2582
- .section-container.vertical-tabs {
2583
- border: none; }
2584
- .section-container.vertical-tabs > section > .title, .section-container.vertical-tabs > .section > .title {
2585
- background-color: #efefef;
2586
- cursor: pointer;
2587
- border: solid 1px #cccccc; }
2588
- .section-container.vertical-tabs > section > .title a, .section-container.vertical-tabs > .section > .title a {
2589
- padding: 0.9375em;
2590
- color: #333333;
2591
- font-size: 0.875em;
2592
- background: none; }
2593
- .section-container.vertical-tabs > section > .title:hover, .section-container.vertical-tabs > .section > .title:hover {
2594
- background-color: #e2e2e2; }
2595
- .section-container.vertical-tabs > section > .content, .section-container.vertical-tabs > .section > .content {
2596
- padding: 0.9375em;
2597
- background-color: white;
2598
- border: solid 1px #cccccc; }
2599
- .section-container.vertical-tabs > section > .content > *:last-child, .section-container.vertical-tabs > .section > .content > *:last-child {
2600
- margin-bottom: 0; }
2601
- .section-container.vertical-tabs > section > .content > *:first-child, .section-container.vertical-tabs > .section > .content > *:first-child {
2602
- padding-top: 0; }
2603
- .section-container.vertical-tabs > section > .content > *:last-child:not(.flex-video), .section-container.vertical-tabs > .section > .content > *:last-child:not(.flex-video) {
2604
- padding-bottom: 0; }
2605
- .section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > .title {
2606
- background: #d5d5d5; }
2607
- .section-container.vertical-tabs > section.active > .title a, .section-container.vertical-tabs > .section.active > .title a {
2608
- color: #333333; }
2609
- .section-container.vertical-tabs > section:not(.active), .section-container.vertical-tabs > .section:not(.active) {
2610
- padding: 0 !important; }
2611
- .section-container.vertical-tabs > section.active, .section-container.vertical-tabs > .section.active {
2612
- padding-left: 12.4375em; }
2613
- .section-container.vertical-tabs > section.active > .title, .section-container.vertical-tabs > .section.active > .title {
2614
- background-color: #d5d5d5; }
2615
-
2616
- [data-section='vertical-nav'], .section-container.vertical-nav {
2617
- width: 100%;
2618
- position: relative;
2619
- display: block;
2620
- margin-bottom: 1.25em; }
2621
- [data-section='vertical-nav']:not([data-section-resized]):not([data-section-small-style]), .section-container.vertical-nav:not([data-section-resized]):not([data-section-small-style]) {
2622
- visibility: hidden; }
2623
- [data-section='vertical-nav'][data-section-small-style], .section-container.vertical-nav[data-section-small-style] {
2624
- width: 100% !important; }
2625
- [data-section='vertical-nav'][data-section-small-style] > [data-section-region], [data-section='vertical-nav'][data-section-small-style] > section, [data-section='vertical-nav'][data-section-small-style] > .section, .section-container.vertical-nav[data-section-small-style] > [data-section-region], .section-container.vertical-nav[data-section-small-style] > section, .section-container.vertical-nav[data-section-small-style] > .section {
2626
- padding: 0 !important;
2627
- margin: 0 !important; }
2628
- [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='vertical-nav'][data-section-small-style] > section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > section > .title, [data-section='vertical-nav'][data-section-small-style] > .section > [data-section-title], [data-section='vertical-nav'][data-section-small-style] > .section > .title, .section-container.vertical-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.vertical-nav[data-section-small-style] > [data-section-region] > .title, .section-container.vertical-nav[data-section-small-style] > section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > section > .title, .section-container.vertical-nav[data-section-small-style] > .section > [data-section-title], .section-container.vertical-nav[data-section-small-style] > .section > .title {
2629
- width: 100% !important; }
2630
- [data-section='vertical-nav'] > section, [data-section='vertical-nav'] > .section, [data-section='vertical-nav'] > [data-section-region], .section-container.vertical-nav > section, .section-container.vertical-nav > .section, .section-container.vertical-nav > [data-section-region] {
2631
- position: relative;
2632
- display: inline-block; }
2633
- [data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title {
2634
- margin-bottom: 0; }
2635
- [data-section='vertical-nav'] > section > [data-section-title] a, [data-section='vertical-nav'] > section > .title a, [data-section='vertical-nav'] > .section > [data-section-title] a, [data-section='vertical-nav'] > .section > .title a, [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a, [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a {
2636
- width: 100%;
2637
- display: inline-block;
2638
- white-space: nowrap; }
2639
- [data-section='vertical-nav'] > section > [data-section-content], [data-section='vertical-nav'] > section > .content, [data-section='vertical-nav'] > .section > [data-section-content], [data-section='vertical-nav'] > .section > .content, [data-section='vertical-nav'] > [data-section-region] > [data-section-content], [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content {
2640
- display: none; }
2641
- [data-section='vertical-nav'] > section.active > [data-section-content], [data-section='vertical-nav'] > section.active > .content, [data-section='vertical-nav'] > .section.active > [data-section-content], [data-section='vertical-nav'] > .section.active > .content, [data-section='vertical-nav'] > [data-section-region].active > [data-section-content], [data-section='vertical-nav'] > [data-section-region].active > .content, .section-container.vertical-nav > section.active > [data-section-content], .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > [data-section-content], .section-container.vertical-nav > .section.active > .content, .section-container.vertical-nav > [data-section-region].active > [data-section-content], .section-container.vertical-nav > [data-section-region].active > .content {
2642
- display: block; }
2643
- [data-section='vertical-nav'] > section:not(.active), [data-section='vertical-nav'] > .section:not(.active), [data-section='vertical-nav'] > [data-section-region]:not(.active), .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active), .section-container.vertical-nav > [data-section-region]:not(.active) {
2644
- padding: 0 !important; }
2645
- [data-section='vertical-nav'] > section > [data-section-title], [data-section='vertical-nav'] > section > .title, [data-section='vertical-nav'] > .section > [data-section-title], [data-section='vertical-nav'] > .section > .title, [data-section='vertical-nav'] > [data-section-region] > [data-section-title], [data-section='vertical-nav'] > [data-section-region] > .title, .section-container.vertical-nav > section > [data-section-title], .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > [data-section-title], .section-container.vertical-nav > .section > .title, .section-container.vertical-nav > [data-section-region] > [data-section-title], .section-container.vertical-nav > [data-section-region] > .title {
2646
- position: static;
2647
- width: auto; }
2648
- [data-section='vertical-nav'] > section > [data-section-title] a, [data-section='vertical-nav'] > section > .title a, [data-section='vertical-nav'] > .section > [data-section-title] a, [data-section='vertical-nav'] > .section > .title a, [data-section='vertical-nav'] > [data-section-region] > [data-section-title] a, [data-section='vertical-nav'] > [data-section-region] > .title a, .section-container.vertical-nav > section > [data-section-title] a, .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > [data-section-title] a, .section-container.vertical-nav > .section > .title a, .section-container.vertical-nav > [data-section-region] > [data-section-title] a, .section-container.vertical-nav > [data-section-region] > .title a {
2649
- display: block; }
2650
- [data-section='vertical-nav'] > section > [data-section-content], [data-section='vertical-nav'] > section > .content, [data-section='vertical-nav'] > .section > [data-section-content], [data-section='vertical-nav'] > .section > .content, [data-section='vertical-nav'] > [data-section-region] > [data-section-content], [data-section='vertical-nav'] > [data-section-region] > .content, .section-container.vertical-nav > section > [data-section-content], .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > [data-section-content], .section-container.vertical-nav > .section > .content, .section-container.vertical-nav > [data-section-region] > [data-section-content], .section-container.vertical-nav > [data-section-region] > .content {
2651
- position: absolute;
2652
- top: 0;
2653
- left: 0;
2654
- z-index: 999;
2655
- min-width: 12.5em; }
2656
-
2657
- .section-container.vertical-nav {
2658
- border: none; }
2659
- .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title {
2660
- background-color: #efefef;
2661
- cursor: pointer;
2662
- border: solid 1px #cccccc; }
2663
- .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a {
2664
- padding: 0.9375em;
2665
- color: #333333;
2666
- font-size: 0.875em;
2667
- background: none; }
2668
- .section-container.vertical-nav > section > .title:hover, .section-container.vertical-nav > .section > .title:hover {
2669
- background-color: #e2e2e2; }
2670
- .section-container.vertical-nav > section > .content, .section-container.vertical-nav > .section > .content {
2671
- padding: 0.9375em;
2672
- background-color: white;
2673
- border: solid 1px #cccccc; }
2674
- .section-container.vertical-nav > section > .content > *:last-child, .section-container.vertical-nav > .section > .content > *:last-child {
2675
- margin-bottom: 0; }
2676
- .section-container.vertical-nav > section > .content > *:first-child, .section-container.vertical-nav > .section > .content > *:first-child {
2677
- padding-top: 0; }
2678
- .section-container.vertical-nav > section > .content > *:last-child:not(.flex-video), .section-container.vertical-nav > .section > .content > *:last-child:not(.flex-video) {
2679
- padding-bottom: 0; }
2680
- .section-container.vertical-nav > section.active > .title, .section-container.vertical-nav > .section.active > .title {
2681
- background: #d5d5d5; }
2682
- .section-container.vertical-nav > section.active > .title a, .section-container.vertical-nav > .section.active > .title a {
2683
- color: #333333; }
2684
- .section-container.vertical-nav > section:not(.active), .section-container.vertical-nav > .section:not(.active) {
2685
- padding: 0 !important; }
2686
-
2687
- [data-section='horizontal-nav'], .section-container.horizontal-nav {
2688
- width: 100%;
2689
- position: relative;
2690
- display: block;
2691
- margin-bottom: 1.25em; }
2692
- [data-section='horizontal-nav']:not([data-section-resized]):not([data-section-small-style]), .section-container.horizontal-nav:not([data-section-resized]):not([data-section-small-style]) {
2693
- visibility: hidden; }
2694
- [data-section='horizontal-nav'][data-section-small-style], .section-container.horizontal-nav[data-section-small-style] {
2695
- width: 100% !important; }
2696
- [data-section='horizontal-nav'][data-section-small-style] > [data-section-region], [data-section='horizontal-nav'][data-section-small-style] > section, [data-section='horizontal-nav'][data-section-small-style] > .section, .section-container.horizontal-nav[data-section-small-style] > [data-section-region], .section-container.horizontal-nav[data-section-small-style] > section, .section-container.horizontal-nav[data-section-small-style] > .section {
2697
- padding: 0 !important;
2698
- margin: 0 !important; }
2699
- [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > [data-section-region] > .title, [data-section='horizontal-nav'][data-section-small-style] > section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > section > .title, [data-section='horizontal-nav'][data-section-small-style] > .section > [data-section-title], [data-section='horizontal-nav'][data-section-small-style] > .section > .title, .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > [data-section-region] > .title, .section-container.horizontal-nav[data-section-small-style] > section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > section > .title, .section-container.horizontal-nav[data-section-small-style] > .section > [data-section-title], .section-container.horizontal-nav[data-section-small-style] > .section > .title {
2700
- width: 100% !important; }
2701
- [data-section='horizontal-nav'] > section, [data-section='horizontal-nav'] > .section, [data-section='horizontal-nav'] > [data-section-region], .section-container.horizontal-nav > section, .section-container.horizontal-nav > .section, .section-container.horizontal-nav > [data-section-region] {
2702
- position: relative;
2703
- float: left; }
2704
- [data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title {
2705
- margin-bottom: 0; }
2706
- [data-section='horizontal-nav'] > section > [data-section-title] a, [data-section='horizontal-nav'] > section > .title a, [data-section='horizontal-nav'] > .section > [data-section-title] a, [data-section='horizontal-nav'] > .section > .title a, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a, [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a {
2707
- width: 100%;
2708
- display: inline-block;
2709
- white-space: nowrap; }
2710
- [data-section='horizontal-nav'] > section > [data-section-content], [data-section='horizontal-nav'] > section > .content, [data-section='horizontal-nav'] > .section > [data-section-content], [data-section='horizontal-nav'] > .section > .content, [data-section='horizontal-nav'] > [data-section-region] > [data-section-content], [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content {
2711
- display: none; }
2712
- [data-section='horizontal-nav'] > section.active > [data-section-content], [data-section='horizontal-nav'] > section.active > .content, [data-section='horizontal-nav'] > .section.active > [data-section-content], [data-section='horizontal-nav'] > .section.active > .content, [data-section='horizontal-nav'] > [data-section-region].active > [data-section-content], [data-section='horizontal-nav'] > [data-section-region].active > .content, .section-container.horizontal-nav > section.active > [data-section-content], .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > [data-section-content], .section-container.horizontal-nav > .section.active > .content, .section-container.horizontal-nav > [data-section-region].active > [data-section-content], .section-container.horizontal-nav > [data-section-region].active > .content {
2713
- display: block; }
2714
- [data-section='horizontal-nav'] > section:not(.active), [data-section='horizontal-nav'] > .section:not(.active), [data-section='horizontal-nav'] > [data-section-region]:not(.active), .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active), .section-container.horizontal-nav > [data-section-region]:not(.active) {
2715
- padding: 0 !important; }
2716
- [data-section='horizontal-nav'] > section > [data-section-title], [data-section='horizontal-nav'] > section > .title, [data-section='horizontal-nav'] > .section > [data-section-title], [data-section='horizontal-nav'] > .section > .title, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title], [data-section='horizontal-nav'] > [data-section-region] > .title, .section-container.horizontal-nav > section > [data-section-title], .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > [data-section-title], .section-container.horizontal-nav > .section > .title, .section-container.horizontal-nav > [data-section-region] > [data-section-title], .section-container.horizontal-nav > [data-section-region] > .title {
2717
- position: static;
2718
- width: auto; }
2719
- [data-section='horizontal-nav'] > section > [data-section-title] a, [data-section='horizontal-nav'] > section > .title a, [data-section='horizontal-nav'] > .section > [data-section-title] a, [data-section='horizontal-nav'] > .section > .title a, [data-section='horizontal-nav'] > [data-section-region] > [data-section-title] a, [data-section='horizontal-nav'] > [data-section-region] > .title a, .section-container.horizontal-nav > section > [data-section-title] a, .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > [data-section-title] a, .section-container.horizontal-nav > .section > .title a, .section-container.horizontal-nav > [data-section-region] > [data-section-title] a, .section-container.horizontal-nav > [data-section-region] > .title a {
2720
- display: block; }
2721
- [data-section='horizontal-nav'] > section > [data-section-content], [data-section='horizontal-nav'] > section > .content, [data-section='horizontal-nav'] > .section > [data-section-content], [data-section='horizontal-nav'] > .section > .content, [data-section='horizontal-nav'] > [data-section-region] > [data-section-content], [data-section='horizontal-nav'] > [data-section-region] > .content, .section-container.horizontal-nav > section > [data-section-content], .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > [data-section-content], .section-container.horizontal-nav > .section > .content, .section-container.horizontal-nav > [data-section-region] > [data-section-content], .section-container.horizontal-nav > [data-section-region] > .content {
2722
- width: auto;
2723
- position: absolute;
2724
- top: 0;
2725
- left: 0;
2726
- z-index: 999;
2727
- min-width: 12.5em; }
2728
-
2729
- .section-container.horizontal-nav {
2730
- background: #efefef;
2731
- border: 1px solid #cccccc; }
2732
- .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title {
2733
- background-color: #efefef;
2734
- cursor: pointer;
2735
- border: solid 1px #cccccc; }
2736
- .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a {
2737
- padding: 0.9375em;
2738
- color: #333333;
2739
- font-size: 0.875em;
2740
- background: none; }
2741
- .section-container.horizontal-nav > section > .title:hover, .section-container.horizontal-nav > .section > .title:hover {
2742
- background-color: #e2e2e2; }
2743
- .section-container.horizontal-nav > section > .content, .section-container.horizontal-nav > .section > .content {
2744
- padding: 0.9375em;
2745
- background-color: white;
2746
- border: solid 1px #cccccc; }
2747
- .section-container.horizontal-nav > section > .content > *:last-child, .section-container.horizontal-nav > .section > .content > *:last-child {
2748
- margin-bottom: 0; }
2749
- .section-container.horizontal-nav > section > .content > *:first-child, .section-container.horizontal-nav > .section > .content > *:first-child {
2750
- padding-top: 0; }
2751
- .section-container.horizontal-nav > section > .content > *:last-child:not(.flex-video), .section-container.horizontal-nav > .section > .content > *:last-child:not(.flex-video) {
2752
- padding-bottom: 0; }
2753
- .section-container.horizontal-nav > section.active > .title, .section-container.horizontal-nav > .section.active > .title {
2754
- background: #d5d5d5; }
2755
- .section-container.horizontal-nav > section.active > .title a, .section-container.horizontal-nav > .section.active > .title a {
2756
- color: #333333; }
2757
- .section-container.horizontal-nav > section:not(.active), .section-container.horizontal-nav > .section:not(.active) {
2758
- padding: 0 !important; } }
2759
- .no-js [data-section], .no-js .section-container {
2760
- width: 100%;
2761
- position: relative;
2762
- display: block;
2763
- margin-bottom: 1.25em; }
2764
- .no-js [data-section][data-section-small-style], .no-js .section-container[data-section-small-style] {
2765
- width: 100% !important; }
2766
- .no-js [data-section][data-section-small-style] > [data-section-region], .no-js [data-section][data-section-small-style] > section, .no-js [data-section][data-section-small-style] > .section, .no-js .section-container[data-section-small-style] > [data-section-region], .no-js .section-container[data-section-small-style] > section, .no-js .section-container[data-section-small-style] > .section {
2767
- padding: 0 !important;
2768
- margin: 0 !important; }
2769
- .no-js [data-section][data-section-small-style] > [data-section-region] > [data-section-title], .no-js [data-section][data-section-small-style] > [data-section-region] > .title, .no-js [data-section][data-section-small-style] > section > [data-section-title], .no-js [data-section][data-section-small-style] > section > .title, .no-js [data-section][data-section-small-style] > .section > [data-section-title], .no-js [data-section][data-section-small-style] > .section > .title, .no-js .section-container[data-section-small-style] > [data-section-region] > [data-section-title], .no-js .section-container[data-section-small-style] > [data-section-region] > .title, .no-js .section-container[data-section-small-style] > section > [data-section-title], .no-js .section-container[data-section-small-style] > section > .title, .no-js .section-container[data-section-small-style] > .section > [data-section-title], .no-js .section-container[data-section-small-style] > .section > .title {
2770
- width: 100% !important; }
2771
- .no-js [data-section] > section, .no-js [data-section] > .section, .no-js [data-section] > [data-section-region], .no-js .section-container > section, .no-js .section-container > .section, .no-js .section-container > [data-section-region] {
2772
- margin: 0; }
2773
- .no-js [data-section] > section > [data-section-title], .no-js [data-section] > section > .title, .no-js [data-section] > .section > [data-section-title], .no-js [data-section] > .section > .title, .no-js [data-section] > [data-section-region] > [data-section-title], .no-js [data-section] > [data-section-region] > .title, .no-js .section-container > section > [data-section-title], .no-js .section-container > section > .title, .no-js .section-container > .section > [data-section-title], .no-js .section-container > .section > .title, .no-js .section-container > [data-section-region] > [data-section-title], .no-js .section-container > [data-section-region] > .title {
2774
- margin-bottom: 0; }
2775
- .no-js [data-section] > section > [data-section-title] a, .no-js [data-section] > section > .title a, .no-js [data-section] > .section > [data-section-title] a, .no-js [data-section] > .section > .title a, .no-js [data-section] > [data-section-region] > [data-section-title] a, .no-js [data-section] > [data-section-region] > .title a, .no-js .section-container > section > [data-section-title] a, .no-js .section-container > section > .title a, .no-js .section-container > .section > [data-section-title] a, .no-js .section-container > .section > .title a, .no-js .section-container > [data-section-region] > [data-section-title] a, .no-js .section-container > [data-section-region] > .title a {
2776
- width: 100%;
2777
- display: inline-block;
2778
- white-space: nowrap; }
2779
- .no-js [data-section] > section > [data-section-content], .no-js [data-section] > section > .content, .no-js [data-section] > .section > [data-section-content], .no-js [data-section] > .section > .content, .no-js [data-section] > [data-section-region] > [data-section-content], .no-js [data-section] > [data-section-region] > .content, .no-js .section-container > section > [data-section-content], .no-js .section-container > section > .content, .no-js .section-container > .section > [data-section-content], .no-js .section-container > .section > .content, .no-js .section-container > [data-section-region] > [data-section-content], .no-js .section-container > [data-section-region] > .content {
2780
- display: none; }
2781
- .no-js [data-section] > section.active > [data-section-content], .no-js [data-section] > section.active > .content, .no-js [data-section] > .section.active > [data-section-content], .no-js [data-section] > .section.active > .content, .no-js [data-section] > [data-section-region].active > [data-section-content], .no-js [data-section] > [data-section-region].active > .content, .no-js .section-container > section.active > [data-section-content], .no-js .section-container > section.active > .content, .no-js .section-container > .section.active > [data-section-content], .no-js .section-container > .section.active > .content, .no-js .section-container > [data-section-region].active > [data-section-content], .no-js .section-container > [data-section-region].active > .content {
2782
- display: block; }
2783
- .no-js [data-section] > section:not(.active), .no-js [data-section] > .section:not(.active), .no-js [data-section] > [data-section-region]:not(.active), .no-js .section-container > section:not(.active), .no-js .section-container > .section:not(.active), .no-js .section-container > [data-section-region]:not(.active) {
2784
- padding: 0 !important; }
2785
- .no-js [data-section] > section > [data-section-title], .no-js [data-section] > section > .title, .no-js [data-section] > .section > [data-section-title], .no-js [data-section] > .section > .title, .no-js [data-section] > [data-section-region] > [data-section-title], .no-js [data-section] > [data-section-region] > .title, .no-js .section-container > section > [data-section-title], .no-js .section-container > section > .title, .no-js .section-container > .section > [data-section-title], .no-js .section-container > .section > .title, .no-js .section-container > [data-section-region] > [data-section-title], .no-js .section-container > [data-section-region] > .title {
2786
- width: 100%; }
2787
- .no-js .section-container {
2788
- border-top: 1px solid #cccccc; }
2789
- .no-js .section-container > section > .title, .no-js .section-container > .section > .title {
2790
- background-color: #efefef;
2791
- cursor: pointer;
2792
- border: solid 1px #cccccc; }
2793
- .no-js .section-container > section > .title a, .no-js .section-container > .section > .title a {
2794
- padding: 0.9375em;
2795
- color: #333333;
2796
- font-size: 0.875em;
2797
- background: none; }
2798
- .no-js .section-container > section > .title:hover, .no-js .section-container > .section > .title:hover {
2799
- background-color: #e2e2e2; }
2800
- .no-js .section-container > section > .content, .no-js .section-container > .section > .content {
2801
- padding: 0.9375em;
2802
- background-color: white;
2803
- border: solid 1px #cccccc; }
2804
- .no-js .section-container > section > .content > *:last-child, .no-js .section-container > .section > .content > *:last-child {
2805
- margin-bottom: 0; }
2806
- .no-js .section-container > section > .content > *:first-child, .no-js .section-container > .section > .content > *:first-child {
2807
- padding-top: 0; }
2808
- .no-js .section-container > section > .content > *:last-child:not(.flex-video), .no-js .section-container > .section > .content > *:last-child:not(.flex-video) {
2809
- padding-bottom: 0; }
2810
- .no-js .section-container > section.active > .title, .no-js .section-container > .section.active > .title {
2811
- background: #d5d5d5; }
2812
- .no-js .section-container > section.active > .title a, .no-js .section-container > .section.active > .title a {
2813
- color: #333333; }
2814
- .no-js .section-container > section:not(.active), .no-js .section-container > .section:not(.active) {
2815
- padding: 0 !important; }
2816
- .no-js .section-container > section > .title, .no-js .section-container > .section > .title {
2817
- border-top: none; }
2818
-
2819
- /* Wrapped around .top-bar to contain to grid width */
2820
- .contain-to-grid {
2821
- width: 100%;
2822
- background: #111111; }
2823
- .contain-to-grid .top-bar {
2824
- margin-bottom: 0; }
2825
-
2826
- .fixed {
2827
- width: 100%;
2828
- left: 0;
2829
- position: fixed;
2830
- top: 0;
2831
- z-index: 99; }
2832
- .fixed.expanded:not(.top-bar) {
2833
- overflow-y: auto;
2834
- height: auto;
2835
- width: 100%;
2836
- max-height: 100%; }
2837
- .fixed.expanded:not(.top-bar) .title-area {
2838
- position: fixed;
2839
- width: 100%;
2840
- z-index: 99; }
2841
- .fixed.expanded:not(.top-bar) .top-bar-section {
2842
- z-index: 98;
2843
- margin-top: 45px; }
2844
-
2845
- .top-bar {
2846
- overflow: hidden;
2847
- height: 45px;
2848
- line-height: 45px;
2849
- position: relative;
2850
- background: #111111;
2851
- margin-bottom: 0; }
2852
- .top-bar ul {
2853
- margin-bottom: 0;
2854
- list-style: none; }
2855
- .top-bar .row {
2856
- max-width: none; }
2857
- .top-bar form,
2858
- .top-bar input {
2859
- margin-bottom: 0; }
2860
- .top-bar input {
2861
- height: 2.45em; }
2862
- .top-bar .button {
2863
- padding-top: .5em;
2864
- padding-bottom: .5em;
2865
- margin-bottom: 0; }
2866
- .top-bar .title-area {
2867
- position: relative;
2868
- margin: 0; }
2869
- .top-bar .name {
2870
- height: 45px;
2871
- margin: 0;
2872
- font-size: 16px; }
2873
- .top-bar .name h1 {
2874
- line-height: 45px;
2875
- font-size: 1.0625em;
2876
- margin: 0; }
2877
- .top-bar .name h1 a {
2878
- font-weight: bold;
2879
- color: white;
2880
- width: 50%;
2881
- display: block;
2882
- padding: 0 15px; }
2883
- .top-bar .toggle-topbar {
2884
- position: absolute;
2885
- right: 0;
2886
- top: 0; }
2887
- .top-bar .toggle-topbar a {
2888
- color: white;
2889
- text-transform: uppercase;
2890
- font-size: 0.8125em;
2891
- font-weight: bold;
2892
- position: relative;
2893
- display: block;
2894
- padding: 0 15px;
2895
- height: 45px;
2896
- line-height: 45px; }
2897
- .top-bar .toggle-topbar.menu-icon {
2898
- right: 15px;
2899
- top: 50%;
2900
- margin-top: -16px;
2901
- padding-left: 40px; }
2902
- .top-bar .toggle-topbar.menu-icon a {
2903
- text-indent: -48px;
2904
- width: 34px;
2905
- height: 34px;
2906
- line-height: 33px;
2907
- padding: 0;
2908
- color: white; }
2909
- .top-bar .toggle-topbar.menu-icon a span {
2910
- position: absolute;
2911
- right: 0;
2912
- display: block;
2913
- width: 16px;
2914
- height: 0;
2915
- -webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
2916
- box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; }
2917
- .top-bar.expanded {
2918
- height: auto;
2919
- background: transparent; }
2920
- .top-bar.expanded .title-area {
2921
- background: #111111; }
2922
- .top-bar.expanded .toggle-topbar a {
2923
- color: #888888; }
2924
- .top-bar.expanded .toggle-topbar a span {
2925
- -webkit-box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888;
2926
- box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888; }
2927
-
2928
- .top-bar-section {
2929
- left: 0;
2930
- position: relative;
2931
- width: auto;
2932
- -webkit-transition: left 300ms ease-out;
2933
- -moz-transition: left 300ms ease-out;
2934
- transition: left 300ms ease-out; }
2935
- .top-bar-section ul {
2936
- width: 100%;
2937
- height: auto;
2938
- display: block;
2939
- background: #222222;
2940
- font-size: 16px;
2941
- margin: 0; }
2942
- .top-bar-section .divider,
2943
- .top-bar-section [role="separator"] {
2944
- border-bottom: solid 1px #2b2b2b;
2945
- border-top: solid 1px black;
2946
- clear: both;
2947
- height: 1px;
2948
- width: 100%; }
2949
- .top-bar-section ul li > a {
2950
- display: block;
2951
- width: 100%;
2952
- color: white;
2953
- padding: 12px 0 12px 0;
2954
- padding-left: 15px;
2955
- font-size: 0.8125em;
2956
- font-weight: bold;
2957
- background: #222222; }
2958
- .top-bar-section ul li > a.button {
2959
- background: #2ba6cb;
2960
- font-size: 0.8125em;
2961
- padding-right: 15px;
2962
- padding-left: 15px; }
2963
- .top-bar-section ul li > a.button:hover {
2964
- background: #2284a1; }
2965
- .top-bar-section ul li > a.button.secondary {
2966
- background: #e9e9e9; }
2967
- .top-bar-section ul li > a.button.secondary:hover {
2968
- background: #d0d0d0; }
2969
- .top-bar-section ul li > a.button.success {
2970
- background: #5da423; }
2971
- .top-bar-section ul li > a.button.success:hover {
2972
- background: #457a1a; }
2973
- .top-bar-section ul li > a.button.alert {
2974
- background: #c60f13; }
2975
- .top-bar-section ul li > a.button.alert:hover {
2976
- background: #970b0e; }
2977
- .top-bar-section ul li:hover > a {
2978
- background: black;
2979
- color: white; }
2980
- .top-bar-section ul li.active > a {
2981
- background: #090909;
2982
- color: white; }
2983
- .top-bar-section .has-form {
2984
- padding: 15px; }
2985
- .top-bar-section .has-dropdown {
2986
- position: relative; }
2987
- .top-bar-section .has-dropdown > a:after {
2988
- content: "";
2989
- display: block;
2990
- width: 0;
2991
- height: 0;
2992
- border: inset 5px;
2993
- border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
2994
- border-left-style: solid;
2995
- margin-right: 15px;
2996
- margin-top: -4.5px;
2997
- position: absolute;
2998
- top: 50%;
2999
- right: 0; }
3000
- .top-bar-section .has-dropdown.moved {
3001
- position: static; }
3002
- .top-bar-section .has-dropdown.moved > .dropdown {
3003
- display: block; }
3004
- .top-bar-section .dropdown {
3005
- position: absolute;
3006
- left: 100%;
3007
- top: 0;
3008
- display: none;
3009
- z-index: 99; }
3010
- .top-bar-section .dropdown li {
3011
- width: 100%;
3012
- height: auto; }
3013
- .top-bar-section .dropdown li a {
3014
- font-weight: normal;
3015
- padding: 8px 15px; }
3016
- .top-bar-section .dropdown li a.parent-link {
3017
- font-weight: bold; }
3018
- .top-bar-section .dropdown li.title h5 {
3019
- margin-bottom: 0; }
3020
- .top-bar-section .dropdown li.title h5 a {
3021
- color: white;
3022
- line-height: 22.5px;
3023
- display: block; }
3024
- .top-bar-section .dropdown label {
3025
- padding: 8px 15px 2px;
3026
- margin-bottom: 0;
3027
- text-transform: uppercase;
3028
- color: #555555;
3029
- font-weight: bold;
3030
- font-size: 0.625em; }
3031
-
3032
- .top-bar-js-breakpoint {
3033
- width: 940px !important;
3034
- visibility: hidden; }
3035
-
3036
- .js-generated {
3037
- display: block; }
3038
-
3039
- @media only screen and (min-width: 940px) {
3040
- .top-bar {
3041
- background: #111111;
3042
- *zoom: 1;
3043
- overflow: visible; }
3044
- .top-bar:before, .top-bar:after {
3045
- content: " ";
3046
- display: table; }
3047
- .top-bar:after {
3048
- clear: both; }
3049
- .top-bar .toggle-topbar {
3050
- display: none; }
3051
- .top-bar .title-area {
3052
- float: left; }
3053
- .top-bar .name h1 a {
3054
- width: auto; }
3055
- .top-bar input,
3056
- .top-bar .button {
3057
- line-height: 2em;
3058
- font-size: 0.875em;
3059
- height: 2em;
3060
- padding: 0 10px;
3061
- position: relative;
3062
- top: 8px; }
3063
- .top-bar.expanded {
3064
- background: #111111; }
3065
-
3066
- .contain-to-grid .top-bar {
3067
- max-width: 62.5em;
3068
- margin: 0 auto;
3069
- margin-bottom: 0; }
3070
-
3071
- .top-bar-section {
3072
- -webkit-transition: none 0 0;
3073
- -moz-transition: none 0 0;
3074
- transition: none 0 0;
3075
- left: 0 !important; }
3076
- .top-bar-section ul {
3077
- width: auto;
3078
- height: auto !important;
3079
- display: inline; }
3080
- .top-bar-section ul li {
3081
- float: left; }
3082
- .top-bar-section ul li .js-generated {
3083
- display: none; }
3084
- .top-bar-section li.hover > a:not(.button) {
3085
- background: black;
3086
- color: white; }
3087
- .top-bar-section li a:not(.button) {
3088
- padding: 0 15px;
3089
- line-height: 45px;
3090
- background: #111111; }
3091
- .top-bar-section li a:not(.button):hover {
3092
- background: black; }
3093
- .top-bar-section .has-dropdown > a {
3094
- padding-right: 35px !important; }
3095
- .top-bar-section .has-dropdown > a:after {
3096
- content: "";
3097
- display: block;
3098
- width: 0;
3099
- height: 0;
3100
- border: inset 5px;
3101
- border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
3102
- border-top-style: solid;
3103
- margin-top: -2.5px;
3104
- top: 22.5px; }
3105
- .top-bar-section .has-dropdown.moved {
3106
- position: relative; }
3107
- .top-bar-section .has-dropdown.moved > .dropdown {
3108
- display: none; }
3109
- .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
3110
- display: block; }
3111
- .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
3112
- border: none;
3113
- content: "\00bb";
3114
- top: 1em;
3115
- margin-top: -7px;
3116
- right: 5px; }
3117
- .top-bar-section .dropdown {
3118
- left: 0;
3119
- top: auto;
3120
- background: transparent;
3121
- min-width: 100%; }
3122
- .top-bar-section .dropdown li a {
3123
- color: white;
3124
- line-height: 1;
3125
- white-space: nowrap;
3126
- padding: 7px 15px;
3127
- background: #1e1e1e; }
3128
- .top-bar-section .dropdown li label {
3129
- white-space: nowrap;
3130
- background: #1e1e1e; }
3131
- .top-bar-section .dropdown li .dropdown {
3132
- left: 100%;
3133
- top: 0; }
3134
- .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
3135
- border-bottom: none;
3136
- border-top: none;
3137
- border-right: solid 1px #2b2b2b;
3138
- border-left: solid 1px black;
3139
- clear: none;
3140
- height: 45px;
3141
- width: 0; }
3142
- .top-bar-section .has-form {
3143
- background: #111111;
3144
- padding: 0 15px;
3145
- height: 45px; }
3146
- .top-bar-section ul.right li .dropdown {
3147
- left: auto;
3148
- right: 0; }
3149
- .top-bar-section ul.right li .dropdown li .dropdown {
3150
- right: 100%; }
3151
-
3152
- .no-js .top-bar-section ul li:hover > a {
3153
- background: black;
3154
- color: white; }
3155
- .no-js .top-bar-section ul li:active > a {
3156
- background: #090909;
3157
- color: white; }
3158
- .no-js .top-bar-section .has-dropdown:hover > .dropdown {
3159
- display: block; } }
3160
- @-webkit-keyframes rotate {
3161
- from {
3162
- -webkit-transform: rotate(0deg); }
3163
-
3164
- to {
3165
- -webkit-transform: rotate(360deg); } }
3166
-
3167
- @-moz-keyframes rotate {
3168
- from {
3169
- -moz-transform: rotate(0deg); }
3170
-
3171
- to {
3172
- -moz-transform: rotate(360deg); } }
3173
-
3174
- @-o-keyframes rotate {
3175
- from {
3176
- -o-transform: rotate(0deg); }
3177
-
3178
- to {
3179
- -o-transform: rotate(360deg); } }
3180
-
3181
- @keyframes rotate {
3182
- from {
3183
- transform: rotate(0deg); }
3184
-
3185
- to {
3186
- transform: rotate(360deg); } }
3187
-
3188
- /* Orbit Graceful Loading */
3189
- .slideshow-wrapper {
3190
- position: relative; }
3191
- .slideshow-wrapper ul {
3192
- list-style-type: none;
3193
- margin: 0; }
3194
- .slideshow-wrapper ul li,
3195
- .slideshow-wrapper ul li .orbit-caption {
3196
- display: none; }
3197
- .slideshow-wrapper ul li:first-child {
3198
- display: block; }
3199
- .slideshow-wrapper .orbit-container {
3200
- background-color: transparent; }
3201
- .slideshow-wrapper .orbit-container li {
3202
- display: block; }
3203
- .slideshow-wrapper .orbit-container li .orbit-caption {
3204
- display: block; }
3205
-
3206
- .preloader {
3207
- display: block;
3208
- width: 40px;
3209
- height: 40px;
3210
- position: absolute;
3211
- top: 50%;
3212
- left: 50%;
3213
- margin-top: -20px;
3214
- margin-left: -20px;
3215
- border: solid 3px;
3216
- border-color: #555555 white;
3217
- -webkit-border-radius: 1000px;
3218
- border-radius: 1000px;
3219
- -webkit-animation-name: rotate;
3220
- -webkit-animation-duration: 1.5s;
3221
- -webkit-animation-iteration-count: infinite;
3222
- -webkit-animation-timing-function: linear;
3223
- -moz-animation-name: rotate;
3224
- -moz-animation-duration: 1.5s;
3225
- -moz-animation-iteration-count: infinite;
3226
- -moz-animation-timing-function: linear;
3227
- -o-animation-name: rotate;
3228
- -o-animation-duration: 1.5s;
3229
- -o-animation-iteration-count: infinite;
3230
- -o-animation-timing-function: linear;
3231
- animation-name: rotate;
3232
- animation-duration: 1.5s;
3233
- animation-iteration-count: infinite;
3234
- animation-timing-function: linear; }
3235
-
3236
- .orbit-container {
3237
- overflow: hidden;
3238
- width: 100%;
3239
- position: relative;
3240
- background: whitesmoke; }
3241
- .orbit-container .orbit-slides-container {
3242
- list-style: none;
3243
- margin: 0;
3244
- padding: 0;
3245
- position: relative; }
3246
- .orbit-container .orbit-slides-container img {
3247
- display: block;
3248
- max-width: 100%; }
3249
- .orbit-container .orbit-slides-container > * {
3250
- position: absolute;
3251
- top: 0;
3252
- width: 100%;
3253
- margin-left: 100%; }
3254
- .orbit-container .orbit-slides-container > *:first-child {
3255
- margin-left: 0%; }
3256
- .orbit-container .orbit-slides-container > * .orbit-caption {
3257
- position: absolute;
3258
- bottom: 0;
3259
- background-color: rgba(0, 0, 0, 0.6);
3260
- color: white;
3261
- width: 100%;
3262
- padding: 10px 14px;
3263
- font-size: 0.875em; }
3264
- .orbit-container .orbit-slide-number {
3265
- position: absolute;
3266
- top: 10px;
3267
- left: 10px;
3268
- font-size: 12px;
3269
- color: white;
3270
- background: rgba(0, 0, 0, 0);
3271
- z-index: 10; }
3272
- .orbit-container .orbit-slide-number span {
3273
- font-weight: 700;
3274
- padding: 0.3125em; }
3275
- .orbit-container .orbit-timer {
3276
- position: absolute;
3277
- top: 10px;
3278
- right: 10px;
3279
- height: 6px;
3280
- width: 100px;
3281
- z-index: 10; }
3282
- .orbit-container .orbit-timer .orbit-progress {
3283
- height: 100%;
3284
- background-color: rgba(0, 0, 0, 0.6);
3285
- display: block;
3286
- width: 0%; }
3287
- .orbit-container .orbit-timer > span {
3288
- display: none;
3289
- position: absolute;
3290
- top: 10px;
3291
- right: 0;
3292
- width: 11px;
3293
- height: 14px;
3294
- border: solid 4px black;
3295
- border-top: none;
3296
- border-bottom: none; }
3297
- .orbit-container .orbit-timer.paused > span {
3298
- right: -6px;
3299
- top: 9px;
3300
- width: 11px;
3301
- height: 14px;
3302
- border: inset 8px;
3303
- border-right-style: solid;
3304
- border-color: transparent transparent transparent black; }
3305
- .orbit-container:hover .orbit-timer > span {
3306
- display: block; }
3307
- .orbit-container .orbit-prev,
3308
- .orbit-container .orbit-next {
3309
- position: absolute;
3310
- top: 50%;
3311
- margin-top: -25px;
3312
- background-color: rgba(0, 0, 0, 0.6);
3313
- width: 50px;
3314
- height: 60px;
3315
- line-height: 50px;
3316
- color: white;
3317
- text-indent: -9999px !important;
3318
- z-index: 10; }
3319
- .orbit-container .orbit-prev:hover,
3320
- .orbit-container .orbit-next:hover {
3321
- background-color: rgba(0, 0, 0, 0.6); }
3322
- .orbit-container .orbit-prev > span,
3323
- .orbit-container .orbit-next > span {
3324
- position: absolute;
3325
- top: 50%;
3326
- margin-top: -16px;
3327
- display: block;
3328
- width: 0;
3329
- height: 0;
3330
- border: inset 16px; }
3331
- .orbit-container .orbit-prev {
3332
- left: 0; }
3333
- .orbit-container .orbit-prev > span {
3334
- border-right-style: solid;
3335
- border-color: transparent;
3336
- border-right-color: white; }
3337
- .orbit-container .orbit-prev:hover > span {
3338
- border-right-color: #cccccc; }
3339
- .orbit-container .orbit-next {
3340
- right: 0; }
3341
- .orbit-container .orbit-next > span {
3342
- border-color: transparent;
3343
- border-left-style: solid;
3344
- border-left-color: white;
3345
- left: 50%;
3346
- margin-left: -8px; }
3347
- .orbit-container .orbit-next:hover > span {
3348
- border-left-color: #cccccc; }
3349
-
3350
- .orbit-bullets {
3351
- margin: 0 auto 30px auto;
3352
- overflow: hidden;
3353
- position: relative;
3354
- top: 10px; }
3355
- .orbit-bullets li {
3356
- display: block;
3357
- width: 0.75em;
3358
- height: 0.75em;
3359
- background: #999999;
3360
- float: left;
3361
- margin-right: 6px;
3362
- border: solid 1px #555555;
3363
- -webkit-border-radius: 1000px;
3364
- border-radius: 1000px; }
3365
- .orbit-bullets li.active {
3366
- background: #555555; }
3367
- .orbit-bullets li:last-child {
3368
- margin-right: 0; }
3369
-
3370
- .touch .orbit-container .orbit-prev,
3371
- .touch .orbit-container .orbit-next {
3372
- display: none; }
3373
- .touch .orbit-bullets {
3374
- display: none; }
3375
-
3376
- @media only screen and (min-width: 768px) {
3377
- .touch .orbit-container .orbit-prev,
3378
- .touch .orbit-container .orbit-next {
3379
- display: inherit; }
3380
- .touch .orbit-bullets {
3381
- display: block; } }
3382
- @media only screen and (max-width: 768px) {
3383
- .orbit-stack-on-small .orbit-slides-container {
3384
- height: auto !important; }
3385
- .orbit-stack-on-small .orbit-slides-container > * {
3386
- position: relative;
3387
- margin-left: 0% !important; }
3388
- .orbit-stack-on-small .orbit-timer,
3389
- .orbit-stack-on-small .orbit-next,
3390
- .orbit-stack-on-small .orbit-prev,
3391
- .orbit-stack-on-small .orbit-bullets {
3392
- display: none; } }
3393
- .reveal-modal-bg {
3394
- position: fixed;
3395
- height: 100%;
3396
- width: 100%;
3397
- background: black;
3398
- background: rgba(0, 0, 0, 0.45);
3399
- z-index: 98;
3400
- display: none;
3401
- top: 0;
3402
- left: 0; }
3403
-
3404
- .reveal-modal {
3405
- visibility: hidden;
3406
- display: none;
3407
- position: absolute;
3408
- left: 50%;
3409
- z-index: 99;
3410
- height: auto;
3411
- margin-left: -40%;
3412
- width: 80%;
3413
- background-color: white;
3414
- padding: 1.25em;
3415
- border: solid 1px #666666;
3416
- -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
3417
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
3418
- top: 50px; }
3419
- .reveal-modal .column,
3420
- .reveal-modal .columns {
3421
- min-width: 0; }
3422
- .reveal-modal > :first-child {
3423
- margin-top: 0; }
3424
- .reveal-modal > :last-child {
3425
- margin-bottom: 0; }
3426
- .reveal-modal .close-reveal-modal {
3427
- font-size: 1.375em;
3428
- line-height: 1;
3429
- position: absolute;
3430
- top: 0.5em;
3431
- right: 0.6875em;
3432
- color: #aaaaaa;
3433
- font-weight: bold;
3434
- cursor: pointer; }
3435
-
3436
- @media only screen and (min-width: 768px) {
3437
- .reveal-modal {
3438
- padding: 1.875em;
3439
- top: 6.25em; }
3440
- .reveal-modal.tiny {
3441
- margin-left: -15%;
3442
- width: 30%; }
3443
- .reveal-modal.small {
3444
- margin-left: -20%;
3445
- width: 40%; }
3446
- .reveal-modal.medium {
3447
- margin-left: -30%;
3448
- width: 60%; }
3449
- .reveal-modal.large {
3450
- margin-left: -35%;
3451
- width: 70%; }
3452
- .reveal-modal.xlarge {
3453
- margin-left: -47.5%;
3454
- width: 95%; } }
3455
- @media print {
3456
- .reveal-modal {
3457
- background: white !important; } }
3458
- /* Foundation Joyride */
3459
- .joyride-list {
3460
- display: none; }
3461
-
3462
- /* Default styles for the container */
3463
- .joyride-tip-guide {
3464
- display: none;
3465
- position: absolute;
3466
- background: black;
3467
- color: white;
3468
- z-index: 101;
3469
- top: 0;
3470
- left: 2.5%;
3471
- font-family: inherit;
3472
- font-weight: normal;
3473
- width: 95%; }
3474
-
3475
- .lt-ie9 .joyride-tip-guide {
3476
- max-width: 800px;
3477
- left: 50%;
3478
- margin-left: -400px; }
3479
-
3480
- .joyride-content-wrapper {
3481
- width: 100%;
3482
- padding: 1.125em 1.25em 1.5em; }
3483
- .joyride-content-wrapper .button {
3484
- margin-bottom: 0 !important; }
3485
-
3486
- /* Add a little css triangle pip, older browser just miss out on the fanciness of it */
3487
- .joyride-tip-guide .joyride-nub {
3488
- display: block;
3489
- position: absolute;
3490
- left: 22px;
3491
- width: 0;
3492
- height: 0;
3493
- border: inset 14px; }
3494
- .joyride-tip-guide .joyride-nub.top {
3495
- border-top-style: solid;
3496
- border-color: black;
3497
- border-top-color: transparent !important;
3498
- border-left-color: transparent !important;
3499
- border-right-color: transparent !important;
3500
- top: -28px; }
3501
- .joyride-tip-guide .joyride-nub.bottom {
3502
- border-bottom-style: solid;
3503
- border-color: black !important;
3504
- border-bottom-color: transparent !important;
3505
- border-left-color: transparent !important;
3506
- border-right-color: transparent !important;
3507
- bottom: -28px; }
3508
- .joyride-tip-guide .joyride-nub.right {
3509
- right: -28px; }
3510
- .joyride-tip-guide .joyride-nub.left {
3511
- left: -28px; }
3512
-
3513
- /* Typography */
3514
- .joyride-tip-guide h1,
3515
- .joyride-tip-guide h2,
3516
- .joyride-tip-guide h3,
3517
- .joyride-tip-guide h4,
3518
- .joyride-tip-guide h5,
3519
- .joyride-tip-guide h6 {
3520
- line-height: 1.25;
3521
- margin: 0;
3522
- font-weight: bold;
3523
- color: white; }
3524
-
3525
- .joyride-tip-guide p {
3526
- margin: 0 0 1.125em 0;
3527
- font-size: 0.875em;
3528
- line-height: 1.3; }
3529
-
3530
- .joyride-timer-indicator-wrap {
3531
- width: 50px;
3532
- height: 3px;
3533
- border: solid 1px #555555;
3534
- position: absolute;
3535
- right: 1.0625em;
3536
- bottom: 1em; }
3537
-
3538
- .joyride-timer-indicator {
3539
- display: block;
3540
- width: 0;
3541
- height: inherit;
3542
- background: #666666; }
3543
-
3544
- .joyride-close-tip {
3545
- position: absolute;
3546
- right: 12px;
3547
- top: 10px;
3548
- color: #777777 !important;
3549
- text-decoration: none;
3550
- font-size: 30px;
3551
- font-weight: normal;
3552
- line-height: 0.5 !important; }
3553
- .joyride-close-tip:hover, .joyride-close-tip:focus {
3554
- color: #eeeeee !important; }
3555
-
3556
- .joyride-modal-bg {
3557
- position: fixed;
3558
- height: 100%;
3559
- width: 100%;
3560
- background: transparent;
3561
- background: rgba(0, 0, 0, 0.5);
3562
- z-index: 100;
3563
- display: none;
3564
- top: 0;
3565
- left: 0;
3566
- cursor: pointer; }
3567
-
3568
- .joyride-expose-wrapper {
3569
- background-color: #ffffff;
3570
- position: absolute;
3571
- border-radius: 3px;
3572
- z-index: 102;
3573
- -moz-box-shadow: 0 0 30px white;
3574
- -webkit-box-shadow: 0 0 15px white;
3575
- box-shadow: 0 0 15px white; }
3576
-
3577
- .joyride-expose-cover {
3578
- background: transparent;
3579
- border-radius: 3px;
3580
- position: absolute;
3581
- z-index: 9999;
3582
- top: 0;
3583
- left: 0; }
3584
-
3585
- /* Styles for screens that are atleast 768px; */
3586
- @media only screen and (min-width: 768px) {
3587
- .joyride-tip-guide {
3588
- width: 300px;
3589
- left: inherit; }
3590
- .joyride-tip-guide .joyride-nub.bottom {
3591
- border-color: black !important;
3592
- border-bottom-color: transparent !important;
3593
- border-left-color: transparent !important;
3594
- border-right-color: transparent !important;
3595
- bottom: -28px; }
3596
- .joyride-tip-guide .joyride-nub.right {
3597
- border-color: black !important;
3598
- border-top-color: transparent !important;
3599
- border-right-color: transparent !important;
3600
- border-bottom-color: transparent !important;
3601
- top: 22px;
3602
- left: auto;
3603
- right: -28px; }
3604
- .joyride-tip-guide .joyride-nub.left {
3605
- border-color: black !important;
3606
- border-top-color: transparent !important;
3607
- border-left-color: transparent !important;
3608
- border-bottom-color: transparent !important;
3609
- top: 22px;
3610
- left: -28px;
3611
- right: auto; } }
3612
- /* Clearing Styles */
3613
- [data-clearing] {
3614
- *zoom: 1;
3615
- margin-bottom: 0;
3616
- margin-left: 0;
3617
- list-style: none; }
3618
- [data-clearing]:before, [data-clearing]:after {
3619
- content: " ";
3620
- display: table; }
3621
- [data-clearing]:after {
3622
- clear: both; }
3623
- [data-clearing] li {
3624
- float: left;
3625
- margin-right: 10px; }
3626
-
3627
- .clearing-blackout {
3628
- background: #111111;
3629
- position: fixed;
3630
- width: 100%;
3631
- height: 100%;
3632
- top: 0;
3633
- left: 0;
3634
- z-index: 998; }
3635
- .clearing-blackout .clearing-close {
3636
- display: block; }
3637
-
3638
- .clearing-container {
3639
- position: relative;
3640
- z-index: 998;
3641
- height: 100%;
3642
- overflow: hidden;
3643
- margin: 0; }
3644
-
3645
- .visible-img {
3646
- height: 95%;
3647
- position: relative; }
3648
- .visible-img img {
3649
- position: absolute;
3650
- left: 50%;
3651
- top: 50%;
3652
- margin-left: -50%;
3653
- max-height: 100%;
3654
- max-width: 100%; }
3655
-
3656
- .clearing-caption {
3657
- color: white;
3658
- line-height: 1.3;
3659
- margin-bottom: 0;
3660
- text-align: center;
3661
- bottom: 0;
3662
- background: #111111;
3663
- width: 100%;
3664
- padding: 10px 30px;
3665
- position: absolute;
3666
- left: 0; }
3667
-
3668
- .clearing-close {
3669
- z-index: 999;
3670
- padding-left: 20px;
3671
- padding-top: 10px;
3672
- font-size: 40px;
3673
- line-height: 1;
3674
- color: white;
3675
- display: none; }
3676
- .clearing-close:hover, .clearing-close:focus {
3677
- color: #ccc; }
3678
-
3679
- .clearing-assembled .clearing-container {
3680
- height: 100%; }
3681
- .clearing-assembled .clearing-container .carousel > ul {
3682
- display: none; }
3683
-
3684
- .clearing-feature li {
3685
- display: none; }
3686
- .clearing-feature li.clearing-featured-img {
3687
- display: block; }
3688
-
3689
- @media only screen and (min-width: 768px) {
3690
- .clearing-main-prev,
3691
- .clearing-main-next {
3692
- position: absolute;
3693
- height: 100%;
3694
- width: 40px;
3695
- top: 0; }
3696
- .clearing-main-prev > span,
3697
- .clearing-main-next > span {
3698
- position: absolute;
3699
- top: 50%;
3700
- display: block;
3701
- width: 0;
3702
- height: 0;
3703
- border: solid 16px; }
3704
-
3705
- .clearing-main-prev {
3706
- left: 0; }
3707
- .clearing-main-prev > span {
3708
- left: 5px;
3709
- border-color: transparent;
3710
- border-right-color: white; }
3711
-
3712
- .clearing-main-next {
3713
- right: 0; }
3714
- .clearing-main-next > span {
3715
- border-color: transparent;
3716
- border-left-color: white; }
3717
-
3718
- .clearing-main-prev.disabled,
3719
- .clearing-main-next.disabled {
3720
- opacity: 0.5; }
3721
-
3722
- .clearing-assembled .clearing-container .carousel {
3723
- background: #111111;
3724
- height: 150px;
3725
- margin-top: 5px; }
3726
- .clearing-assembled .clearing-container .carousel > ul {
3727
- display: block;
3728
- z-index: 999;
3729
- width: 200%;
3730
- height: 100%;
3731
- margin-left: 0;
3732
- position: relative;
3733
- left: 0; }
3734
- .clearing-assembled .clearing-container .carousel > ul li {
3735
- display: block;
3736
- width: 175px;
3737
- height: inherit;
3738
- padding: 0;
3739
- float: left;
3740
- overflow: hidden;
3741
- margin-right: 1px;
3742
- position: relative;
3743
- cursor: pointer;
3744
- opacity: 0.4; }
3745
- .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
3746
- min-height: 100%;
3747
- height: 100%;
3748
- max-width: none; }
3749
- .clearing-assembled .clearing-container .carousel > ul li a.th {
3750
- border: none;
3751
- -webkit-box-shadow: none;
3752
- box-shadow: none;
3753
- display: block; }
3754
- .clearing-assembled .clearing-container .carousel > ul li img {
3755
- cursor: pointer !important;
3756
- min-width: 100% !important; }
3757
- .clearing-assembled .clearing-container .carousel > ul li.visible {
3758
- opacity: 1; }
3759
- .clearing-assembled .clearing-container .visible-img {
3760
- background: #111111;
3761
- overflow: hidden;
3762
- height: 75%; }
3763
-
3764
- .clearing-close {
3765
- position: absolute;
3766
- top: 10px;
3767
- right: 20px;
3768
- padding-left: 0;
3769
- padding-top: 0; } }
3770
- /* Foundation Alerts */
3771
- .alert-box {
3772
- border-style: solid;
3773
- border-width: 1px;
3774
- display: block;
3775
- font-weight: bold;
3776
- margin-bottom: 1.25em;
3777
- position: relative;
3778
- padding: 0.6875em 1.3125em 0.75em 0.6875em;
3779
- font-size: 0.875em;
3780
- background-color: #2ba6cb;
3781
- border-color: #2284a1;
3782
- color: white; }
3783
- .alert-box .close {
3784
- font-size: 1.375em;
3785
- padding: 5px 4px 4px;
3786
- line-height: 0;
3787
- position: absolute;
3788
- top: 0.4375em;
3789
- right: 0.3125em;
3790
- color: #333333;
3791
- opacity: 0.3; }
3792
- .alert-box .close:hover, .alert-box .close:focus {
3793
- opacity: 0.5; }
3794
- .alert-box.radius {
3795
- -webkit-border-radius: 3px;
3796
- border-radius: 3px; }
3797
- .alert-box.round {
3798
- -webkit-border-radius: 1000px;
3799
- border-radius: 1000px; }
3800
- .alert-box.success {
3801
- background-color: #5da423;
3802
- border-color: #457a1a;
3803
- color: white; }
3804
- .alert-box.alert {
3805
- background-color: #c60f13;
3806
- border-color: #970b0e;
3807
- color: white; }
3808
- .alert-box.secondary {
3809
- background-color: #e9e9e9;
3810
- border-color: #d0d0d0;
3811
- color: #505050; }
3812
-
3813
- /* Breadcrumbs */
3814
- .breadcrumbs {
3815
- display: block;
3816
- padding: 0.5625em 0.875em 0.5625em;
3817
- overflow: hidden;
3818
- margin-left: 0;
3819
- list-style: none;
3820
- border-style: solid;
3821
- border-width: 1px;
3822
- background-color: #f6f6f6;
3823
- border-color: gainsboro;
3824
- -webkit-border-radius: 3px;
3825
- border-radius: 3px; }
3826
- .breadcrumbs > * {
3827
- margin: 0;
3828
- float: left;
3829
- font-size: 0.6875em;
3830
- text-transform: uppercase; }
3831
- .breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
3832
- text-decoration: underline; }
3833
- .breadcrumbs > * a,
3834
- .breadcrumbs > * span {
3835
- text-transform: uppercase;
3836
- color: #2ba6cb; }
3837
- .breadcrumbs > *.current {
3838
- cursor: default;
3839
- color: #333333; }
3840
- .breadcrumbs > *.current a {
3841
- cursor: default;
3842
- color: #333333; }
3843
- .breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
3844
- text-decoration: none; }
3845
- .breadcrumbs > *.unavailable {
3846
- color: #999999; }
3847
- .breadcrumbs > *.unavailable a {
3848
- color: #999999; }
3849
- .breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus,
3850
- .breadcrumbs > *.unavailable a:focus {
3851
- text-decoration: none;
3852
- color: #999999;
3853
- cursor: default; }
3854
- .breadcrumbs > *:before {
3855
- content: "/";
3856
- color: #aaaaaa;
3857
- margin: 0 0.75em;
3858
- position: relative;
3859
- top: 1px; }
3860
- .breadcrumbs > *:first-child:before {
3861
- content: " ";
3862
- margin: 0; }
3863
-
3864
- /* Custom Checkbox and Radio Inputs */
3865
- form.custom .hidden-field {
3866
- margin-left: -99999px;
3867
- position: absolute;
3868
- visibility: hidden; }
3869
- form.custom .custom {
3870
- display: inline-block;
3871
- width: 16px;
3872
- height: 16px;
3873
- position: relative;
3874
- top: -1px;
3875
- /* fix centering issue */
3876
- vertical-align: middle;
3877
- border: solid 1px #cccccc;
3878
- background: white; }
3879
- form.custom .custom.checkbox {
3880
- -webkit-border-radius: 0;
3881
- border-radius: 0;
3882
- padding: 0; }
3883
- form.custom .custom.radio {
3884
- -webkit-border-radius: 1000px;
3885
- border-radius: 1000px;
3886
- padding: 3px; }
3887
- form.custom .custom.checkbox:before {
3888
- content: "";
3889
- display: block;
3890
- font-size: 16px;
3891
- color: white; }
3892
- form.custom .custom.radio.checked:before {
3893
- content: "";
3894
- display: block;
3895
- width: 8px;
3896
- height: 8px;
3897
- -webkit-border-radius: 1000px;
3898
- border-radius: 1000px;
3899
- background: #222222;
3900
- position: relative; }
3901
- form.custom .custom.checkbox.checked:before {
3902
- content: "\00d7";
3903
- color: #222222;
3904
- position: absolute;
3905
- top: -50%;
3906
- left: 50%;
3907
- margin-top: 4px;
3908
- margin-left: -5px; }
3909
-
3910
- /* Custom Select Options and Dropdowns */
3911
- form.custom {
3912
- /* Custom input, disabled */ }
3913
- form.custom .custom.dropdown {
3914
- display: block;
3915
- position: relative;
3916
- top: 0;
3917
- height: 2.3125em;
3918
- margin-bottom: 1.25em;
3919
- margin-top: 0;
3920
- padding: 0;
3921
- width: 100%;
3922
- background: white;
3923
- background: -moz-linear-gradient(top, white 0%, #f3f3f3 100%);
3924
- background: -webkit-linear-gradient(top, white 0%, #f3f3f3 100%);
3925
- -webkit-box-shadow: none;
3926
- background: linear-gradient(to bottom, white 0%, #f3f3f3 100%);
3927
- box-shadow: none;
3928
- font-size: 0.875em;
3929
- vertical-align: top; }
3930
- form.custom .custom.dropdown ul {
3931
- overflow-y: auto;
3932
- max-height: 200px; }
3933
- form.custom .custom.dropdown .current {
3934
- cursor: default;
3935
- white-space: nowrap;
3936
- line-height: 2.25em;
3937
- color: rgba(0, 0, 0, 0.75);
3938
- text-decoration: none;
3939
- overflow: hidden;
3940
- display: block;
3941
- margin-left: 0.5em;
3942
- margin-right: 2.3125em; }
3943
- form.custom .custom.dropdown .selector {
3944
- cursor: default;
3945
- position: absolute;
3946
- width: 2.5em;
3947
- height: 2.3125em;
3948
- display: block;
3949
- right: 0;
3950
- top: 0; }
3951
- form.custom .custom.dropdown .selector:after {
3952
- content: "";
3953
- display: block;
3954
- content: "";
3955
- display: block;
3956
- width: 0;
3957
- height: 0;
3958
- border: inset 5px;
3959
- border-color: #aaaaaa transparent transparent transparent;
3960
- border-top-style: solid;
3961
- position: absolute;
3962
- left: 0.9375em;
3963
- top: 50%;
3964
- margin-top: -3px; }
3965
- form.custom .custom.dropdown:hover a.selector:after, form.custom .custom.dropdown.open a.selector:after {
3966
- content: "";
3967
- display: block;
3968
- width: 0;
3969
- height: 0;
3970
- border: inset 5px;
3971
- border-color: #222222 transparent transparent transparent;
3972
- border-top-style: solid; }
3973
- form.custom .custom.dropdown .disabled {
3974
- color: #888888; }
3975
- form.custom .custom.dropdown .disabled:hover {
3976
- background: transparent;
3977
- color: #888888; }
3978
- form.custom .custom.dropdown .disabled:hover:after {
3979
- display: none; }
3980
- form.custom .custom.dropdown.open ul {
3981
- display: block;
3982
- z-index: 10;
3983
- min-width: 100%;
3984
- -moz-box-sizing: content-box;
3985
- -webkit-box-sizing: content-box;
3986
- box-sizing: content-box; }
3987
- form.custom .custom.dropdown.small {
3988
- max-width: 134px; }
3989
- form.custom .custom.dropdown.medium {
3990
- max-width: 254px; }
3991
- form.custom .custom.dropdown.large {
3992
- max-width: 434px; }
3993
- form.custom .custom.dropdown.expand {
3994
- width: 100% !important; }
3995
- form.custom .custom.dropdown.open.small ul {
3996
- min-width: 134px;
3997
- -moz-box-sizing: border-box;
3998
- -webkit-box-sizing: border-box;
3999
- box-sizing: border-box; }
4000
- form.custom .custom.dropdown.open.medium ul {
4001
- min-width: 254px;
4002
- -moz-box-sizing: border-box;
4003
- -webkit-box-sizing: border-box;
4004
- box-sizing: border-box; }
4005
- form.custom .custom.dropdown.open.large ul {
4006
- min-width: 434px;
4007
- -moz-box-sizing: border-box;
4008
- -webkit-box-sizing: border-box;
4009
- box-sizing: border-box; }
4010
- form.custom .error .custom.dropdown {
4011
- border-color: #c60f13;
4012
- background-color: rgba(198, 15, 19, 0.1);
4013
- background: rgba(198, 15, 19, 0.1);
4014
- margin-bottom: 0; }
4015
- form.custom .error .custom.dropdown:focus {
4016
- background: #fafafa;
4017
- border-color: #999999; }
4018
- form.custom .error .custom.dropdown + small.error {
4019
- margin-top: 0; }
4020
- form.custom .custom.dropdown ul {
4021
- position: absolute;
4022
- width: auto;
4023
- display: none;
4024
- margin: 0;
4025
- left: -1px;
4026
- top: auto;
4027
- -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
4028
- box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
4029
- margin: 0;
4030
- padding: 0;
4031
- background: white;
4032
- border: solid 1px #cccccc;
4033
- font-size: 16px; }
4034
- form.custom .custom.dropdown ul li {
4035
- color: #555555;
4036
- font-size: 0.875em;
4037
- cursor: default;
4038
- padding-top: 0.25em;
4039
- padding-bottom: 0.25em;
4040
- padding-left: 0.375em;
4041
- padding-right: 2.375em;
4042
- min-height: 1.5em;
4043
- line-height: 1.5em;
4044
- margin: 0;
4045
- white-space: nowrap;
4046
- list-style: none; }
4047
- form.custom .custom.dropdown ul li.selected {
4048
- background: #eeeeee;
4049
- color: black; }
4050
- form.custom .custom.dropdown ul li:hover {
4051
- background-color: #e4e4e4;
4052
- color: black; }
4053
- form.custom .custom.dropdown ul li.selected:hover {
4054
- background: #eeeeee;
4055
- cursor: default;
4056
- color: black; }
4057
- form.custom .custom.dropdown ul.show {
4058
- display: block; }
4059
- form.custom .custom.disabled {
4060
- background: #dddddd; }
4061
-
4062
- /* Keystroke Characters */
4063
- .keystroke,
4064
- kbd {
4065
- background-color: #ededed;
4066
- border-color: #dbdbdb;
4067
- color: #222222;
4068
- border-style: solid;
4069
- border-width: 1px;
4070
- margin: 0;
4071
- font-family: "Consolas", "Menlo", "Courier", monospace;
4072
- font-size: 0.875em;
4073
- padding: 0.125em 0.25em 0;
4074
- -webkit-border-radius: 3px;
4075
- border-radius: 3px; }
4076
-
4077
- /* Labels */
4078
- .label {
4079
- font-weight: bold;
4080
- text-align: center;
4081
- text-decoration: none;
4082
- line-height: 1;
4083
- white-space: nowrap;
4084
- display: inline-block;
4085
- position: relative;
4086
- padding: 0.1875em 0.625em 0.25em;
4087
- font-size: 0.875em;
4088
- background-color: #2ba6cb;
4089
- color: white; }
4090
- .label.radius {
4091
- -webkit-border-radius: 3px;
4092
- border-radius: 3px; }
4093
- .label.round {
4094
- -webkit-border-radius: 1000px;
4095
- border-radius: 1000px; }
4096
- .label.alert {
4097
- background-color: #c60f13;
4098
- color: white; }
4099
- .label.success {
4100
- background-color: #5da423;
4101
- color: white; }
4102
- .label.secondary {
4103
- background-color: #e9e9e9;
4104
- color: #333333; }
4105
-
4106
- /* Inline Lists */
4107
- .inline-list {
4108
- margin: 0 auto 1.0625em auto;
4109
- margin-left: -1.375em;
4110
- margin-right: 0;
4111
- padding: 0;
4112
- list-style: none;
4113
- overflow: hidden; }
4114
- .inline-list > li {
4115
- list-style: none;
4116
- float: left;
4117
- margin-left: 1.375em;
4118
- display: block; }
4119
- .inline-list > li > * {
4120
- display: block; }
4121
-
4122
- /* Default Pagination */
4123
- ul.pagination {
4124
- display: block;
4125
- height: 1.5em;
4126
- margin-left: -0.3125em; }
4127
- ul.pagination li {
4128
- height: 1.5em;
4129
- color: #222222;
4130
- font-size: 0.875em;
4131
- margin-left: 0.3125em; }
4132
- ul.pagination li a {
4133
- display: block;
4134
- padding: 0.0625em 0.4375em 0.0625em;
4135
- color: #999999; }
4136
- ul.pagination li:hover a,
4137
- ul.pagination li a:focus {
4138
- background: #e6e6e6; }
4139
- ul.pagination li.unavailable a {
4140
- cursor: default;
4141
- color: #999999; }
4142
- ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus {
4143
- background: transparent; }
4144
- ul.pagination li.current a {
4145
- background: #2ba6cb;
4146
- color: white;
4147
- font-weight: bold;
4148
- cursor: default; }
4149
- ul.pagination li.current a:hover, ul.pagination li.current a:focus {
4150
- background: #2ba6cb; }
4151
- ul.pagination li {
4152
- float: left;
4153
- display: block; }
4154
-
4155
- /* Pagination centred wrapper */
4156
- .pagination-centered {
4157
- text-align: center; }
4158
- .pagination-centered ul.pagination li {
4159
- float: none;
4160
- display: inline-block; }
4161
-
4162
- /* Panels */
4163
- .panel {
4164
- border-style: solid;
4165
- border-width: 1px;
4166
- border-color: #d9d9d9;
4167
- margin-bottom: 1.25em;
4168
- padding: 1.25em;
4169
- background: #f2f2f2; }
4170
- .panel > :first-child {
4171
- margin-top: 0; }
4172
- .panel > :last-child {
4173
- margin-bottom: 0; }
4174
- .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p {
4175
- color: #333333; }
4176
- .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
4177
- line-height: 1;
4178
- margin-bottom: 0.625em; }
4179
- .panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
4180
- line-height: 1.4; }
4181
- .panel.callout {
4182
- border-style: solid;
4183
- border-width: 1px;
4184
- border-color: #2284a1;
4185
- margin-bottom: 1.25em;
4186
- padding: 1.25em;
4187
- background: #2ba6cb;
4188
- -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
4189
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; }
4190
- .panel.callout > :first-child {
4191
- margin-top: 0; }
4192
- .panel.callout > :last-child {
4193
- margin-bottom: 0; }
4194
- .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p {
4195
- color: white; }
4196
- .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
4197
- line-height: 1;
4198
- margin-bottom: 0.625em; }
4199
- .panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
4200
- line-height: 1.4; }
4201
- .panel.callout a {
4202
- color: white; }
4203
- .panel.radius {
4204
- -webkit-border-radius: 3px;
4205
- border-radius: 3px; }
4206
-
4207
- /* Pricing Tables */
4208
- .pricing-table {
4209
- border: solid 1px #dddddd;
4210
- margin-left: 0;
4211
- margin-bottom: 1.25em; }
4212
- .pricing-table * {
4213
- list-style: none;
4214
- line-height: 1; }
4215
- .pricing-table .title {
4216
- background-color: #dddddd;
4217
- padding: 0.9375em 1.25em;
4218
- text-align: center;
4219
- color: #333333;
4220
- font-weight: bold;
4221
- font-size: 1em; }
4222
- .pricing-table .price {
4223
- background-color: #eeeeee;
4224
- padding: 0.9375em 1.25em;
4225
- text-align: center;
4226
- color: #333333;
4227
- font-weight: normal;
4228
- font-size: 1.25em; }
4229
- .pricing-table .description {
4230
- background-color: white;
4231
- padding: 0.9375em;
4232
- text-align: center;
4233
- color: #777777;
4234
- font-size: 0.75em;
4235
- font-weight: normal;
4236
- line-height: 1.4;
4237
- border-bottom: dotted 1px #dddddd; }
4238
- .pricing-table .bullet-item {
4239
- background-color: white;
4240
- padding: 0.9375em;
4241
- text-align: center;
4242
- color: #333333;
4243
- font-size: 0.875em;
4244
- font-weight: normal;
4245
- border-bottom: dotted 1px #dddddd; }
4246
- .pricing-table .cta-button {
4247
- background-color: whitesmoke;
4248
- text-align: center;
4249
- padding: 1.25em 1.25em 0; }
4250
-
4251
- /* Progress Bar */
4252
- .progress {
4253
- background-color: transparent;
4254
- height: 1.5625em;
4255
- border: 1px solid #cccccc;
4256
- padding: 0.125em;
4257
- margin-bottom: 0.625em; }
4258
- .progress .meter {
4259
- background: #2ba6cb;
4260
- height: 100%;
4261
- display: block; }
4262
- .progress.secondary .meter {
4263
- background: #e9e9e9;
4264
- height: 100%;
4265
- display: block; }
4266
- .progress.success .meter {
4267
- background: #5da423;
4268
- height: 100%;
4269
- display: block; }
4270
- .progress.alert .meter {
4271
- background: #c60f13;
4272
- height: 100%;
4273
- display: block; }
4274
- .progress.radius {
4275
- -webkit-border-radius: 3px;
4276
- border-radius: 3px; }
4277
- .progress.radius .meter {
4278
- -webkit-border-radius: 2px;
4279
- border-radius: 2px; }
4280
- .progress.round {
4281
- -webkit-border-radius: 1000px;
4282
- border-radius: 1000px; }
4283
- .progress.round .meter {
4284
- -webkit-border-radius: 999px;
4285
- border-radius: 999px; }
4286
-
4287
- /* Side Nav */
4288
- .side-nav {
4289
- display: block;
4290
- margin: 0;
4291
- padding: 0.875em 0;
4292
- list-style-type: none;
4293
- list-style-position: inside; }
4294
- .side-nav li {
4295
- margin: 0 0 0.4375em 0;
4296
- font-size: 0.875em; }
4297
- .side-nav li a {
4298
- display: block;
4299
- color: #2ba6cb; }
4300
- .side-nav li.active > a:first-child {
4301
- color: #4d4d4d;
4302
- font-weight: bold; }
4303
- .side-nav li.divider {
4304
- border-top: 1px solid;
4305
- height: 0;
4306
- padding: 0;
4307
- list-style: none;
4308
- border-top-color: #e6e6e6; }
4309
-
4310
- /* Side Nav */
4311
- .sub-nav {
4312
- display: block;
4313
- width: auto;
4314
- overflow: hidden;
4315
- margin: -0.25em 0 1.125em;
4316
- padding-top: 0.25em;
4317
- margin-right: 0;
4318
- margin-left: -0.5625em; }
4319
- .sub-nav dt,
4320
- .sub-nav dd,
4321
- .sub-nav li {
4322
- float: left;
4323
- display: inline;
4324
- margin-left: 0.5625em;
4325
- margin-bottom: 0.625em;
4326
- font-weight: normal;
4327
- font-size: 0.875em; }
4328
- .sub-nav dt a,
4329
- .sub-nav dd a,
4330
- .sub-nav li a {
4331
- color: #999999;
4332
- text-decoration: none; }
4333
- .sub-nav dt.active a,
4334
- .sub-nav dd.active a,
4335
- .sub-nav li.active a {
4336
- -webkit-border-radius: 1000px;
4337
- border-radius: 1000px;
4338
- font-weight: bold;
4339
- background: #2ba6cb;
4340
- padding: 0.1875em 0.5625em;
4341
- cursor: default;
4342
- color: white; }
4343
-
4344
- /* Foundation Switches */
4345
- @media only screen {
4346
- div.switch {
4347
- position: relative;
4348
- padding: 0;
4349
- display: block;
4350
- overflow: hidden;
4351
- border-style: solid;
4352
- border-width: 1px;
4353
- margin-bottom: 1.25em;
4354
- height: 2.25em;
4355
- background: white;
4356
- border-color: #cccccc; }
4357
- div.switch label {
4358
- position: relative;
4359
- left: 0;
4360
- z-index: 2;
4361
- float: left;
4362
- width: 50%;
4363
- height: 100%;
4364
- margin: 0;
4365
- font-weight: bold;
4366
- text-align: left;
4367
- -webkit-transition: all 0.1s ease-out;
4368
- -moz-transition: all 0.1s ease-out;
4369
- transition: all 0.1s ease-out; }
4370
- div.switch input {
4371
- position: absolute;
4372
- z-index: 3;
4373
- opacity: 0;
4374
- width: 100%;
4375
- height: 100%;
4376
- -moz-appearance: none; }
4377
- div.switch input:hover, div.switch input:focus {
4378
- cursor: pointer; }
4379
- div.switch span:last-child {
4380
- position: absolute;
4381
- top: -1px;
4382
- left: -1px;
4383
- z-index: 1;
4384
- display: block;
4385
- padding: 0;
4386
- border-width: 1px;
4387
- border-style: solid;
4388
- -webkit-transition: all 0.1s ease-out;
4389
- -moz-transition: all 0.1s ease-out;
4390
- transition: all 0.1s ease-out; }
4391
- div.switch input:not(:checked) + label {
4392
- opacity: 0; }
4393
- div.switch input:checked {
4394
- display: none !important; }
4395
- div.switch input {
4396
- left: 0;
4397
- display: block !important; }
4398
- div.switch input:first-of-type + label,
4399
- div.switch input:first-of-type + span + label {
4400
- left: -50%; }
4401
- div.switch input:first-of-type:checked + label,
4402
- div.switch input:first-of-type:checked + span + label {
4403
- left: 0%; }
4404
- div.switch input:last-of-type + label,
4405
- div.switch input:last-of-type + span + label {
4406
- right: -50%;
4407
- left: auto;
4408
- text-align: right; }
4409
- div.switch input:last-of-type:checked + label,
4410
- div.switch input:last-of-type:checked + span + label {
4411
- right: 0%;
4412
- left: auto; }
4413
- div.switch span.custom {
4414
- display: none !important; }
4415
- form.custom div.switch .hidden-field {
4416
- margin-left: auto;
4417
- position: absolute;
4418
- visibility: visible; }
4419
- div.switch label {
4420
- padding: 0;
4421
- line-height: 2.3em;
4422
- font-size: 0.875em; }
4423
- div.switch input:first-of-type:checked ~ span:last-child {
4424
- left: 100%;
4425
- margin-left: -2.1875em; }
4426
- div.switch span:last-child {
4427
- width: 2.25em;
4428
- height: 2.25em; }
4429
- div.switch span:last-child {
4430
- border-color: #b3b3b3;
4431
- background: white;
4432
- background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%);
4433
- background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%);
4434
- background: linear-gradient(to bottom, white 0%, #f2f2f2 100%);
4435
- -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke;
4436
- box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke; }
4437
- div.switch:hover span:last-child, div.switch:focus span:last-child {
4438
- background: white;
4439
- background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%);
4440
- background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%);
4441
- background: linear-gradient(to bottom, white 0%, #e6e6e6 100%); }
4442
- div.switch:active {
4443
- background: transparent; }
4444
- div.switch.large {
4445
- height: 2.75em; }
4446
- div.switch.large label {
4447
- padding: 0;
4448
- line-height: 2.3em;
4449
- font-size: 1.0625em; }
4450
- div.switch.large input:first-of-type:checked ~ span:last-child {
4451
- left: 100%;
4452
- margin-left: -2.6875em; }
4453
- div.switch.large span:last-child {
4454
- width: 2.75em;
4455
- height: 2.75em; }
4456
- div.switch.small {
4457
- height: 1.75em; }
4458
- div.switch.small label {
4459
- padding: 0;
4460
- line-height: 2.1em;
4461
- font-size: 0.75em; }
4462
- div.switch.small input:first-of-type:checked ~ span:last-child {
4463
- left: 100%;
4464
- margin-left: -1.6875em; }
4465
- div.switch.small span:last-child {
4466
- width: 1.75em;
4467
- height: 1.75em; }
4468
- div.switch.tiny {
4469
- height: 1.375em; }
4470
- div.switch.tiny label {
4471
- padding: 0;
4472
- line-height: 1.9em;
4473
- font-size: 0.6875em; }
4474
- div.switch.tiny input:first-of-type:checked ~ span:last-child {
4475
- left: 100%;
4476
- margin-left: -1.3125em; }
4477
- div.switch.tiny span:last-child {
4478
- width: 1.375em;
4479
- height: 1.375em; }
4480
- div.switch.radius {
4481
- -webkit-border-radius: 4px;
4482
- border-radius: 4px; }
4483
- div.switch.radius span:last-child {
4484
- -webkit-border-radius: 3px;
4485
- border-radius: 3px; }
4486
- div.switch.round {
4487
- -webkit-border-radius: 1000px;
4488
- border-radius: 1000px; }
4489
- div.switch.round span:last-child {
4490
- -webkit-border-radius: 999px;
4491
- border-radius: 999px; }
4492
- div.switch.round label {
4493
- padding: 0 0.5625em; }
4494
-
4495
- @-webkit-keyframes webkitSiblingBugfix {
4496
- from {
4497
- position: relative; }
4498
-
4499
- to {
4500
- position: relative; } } }
4501
- @media only screen and (-webkit-min-device-pixel-ratio: 0) and (max-device-width: 480px) {
4502
- div.switch {
4503
- -webkit-animation: webkitSiblingBugfix infinite 1s; } }
4504
- @media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
4505
- div.switch {
4506
- -webkit-animation: none 0; } }
4507
- [data-magellan-expedition] {
4508
- background: white;
4509
- z-index: 50;
4510
- min-width: 100%;
4511
- padding: 10px; }
4512
- [data-magellan-expedition] .sub-nav {
4513
- margin-bottom: 0; }
4514
- [data-magellan-expedition] .sub-nav dd {
4515
- margin-bottom: 0; }
4516
-
4517
- /* Tables */
4518
- table {
4519
- background: white;
4520
- margin-bottom: 1.25em;
4521
- border: solid 1px #dddddd; }
4522
- table thead,
4523
- table tfoot {
4524
- background: whitesmoke;
4525
- font-weight: bold; }
4526
- table thead tr th,
4527
- table thead tr td,
4528
- table tfoot tr th,
4529
- table tfoot tr td {
4530
- padding: 0.5em 0.625em 0.625em;
4531
- font-size: 0.875em;
4532
- color: #222222;
4533
- text-align: left; }
4534
- table tr th,
4535
- table tr td {
4536
- padding: 0.5625em 0.625em;
4537
- font-size: 0.875em;
4538
- color: #222222; }
4539
- table tr.even, table tr.alt, table tr:nth-of-type(even) {
4540
- background: #f9f9f9; }
4541
- table thead tr th,
4542
- table tfoot tr th,
4543
- table tbody tr td,
4544
- table tr td,
4545
- table tfoot tr td {
4546
- display: table-cell;
4547
- line-height: 1.125em; }
4548
-
4549
- /* Image Thumbnails */
4550
- .th {
4551
- line-height: 0;
4552
- display: inline-block;
4553
- border: solid 4px white;
4554
- -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
4555
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
4556
- -webkit-transition: all 200ms ease-out;
4557
- -moz-transition: all 200ms ease-out;
4558
- transition: all 200ms ease-out; }
4559
- .th:hover, .th:focus {
4560
- -webkit-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5);
4561
- box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); }
4562
- .th.radius {
4563
- -webkit-border-radius: 3px;
4564
- border-radius: 3px; }
4565
-
4566
- a.th {
4567
- display: inline-block;
4568
- max-width: 100%; }
4569
-
4570
- /* Tooltips */
4571
- .has-tip {
4572
- border-bottom: dotted 1px #cccccc;
4573
- cursor: help;
4574
- font-weight: bold;
4575
- color: #333333; }
4576
- .has-tip:hover, .has-tip:focus {
4577
- border-bottom: dotted 1px #196177;
4578
- color: #2ba6cb; }
4579
- .has-tip.tip-left, .has-tip.tip-right {
4580
- float: none !important; }
4581
-
4582
- .tooltip {
4583
- display: none;
4584
- position: absolute;
4585
- z-index: 999;
4586
- font-weight: bold;
4587
- font-size: 0.9375em;
4588
- line-height: 1.3;
4589
- padding: 0.5em;
4590
- max-width: 85%;
4591
- left: 50%;
4592
- width: 100%;
4593
- color: white;
4594
- background: black;
4595
- -webkit-border-radius: 3px;
4596
- border-radius: 3px; }
4597
- .tooltip > .nub {
4598
- display: block;
4599
- left: 5px;
4600
- position: absolute;
4601
- width: 0;
4602
- height: 0;
4603
- border: solid 5px;
4604
- border-color: transparent transparent black transparent;
4605
- top: -10px; }
4606
- .tooltip.opened {
4607
- color: #2ba6cb !important;
4608
- border-bottom: dotted 1px #196177 !important; }
4609
-
4610
- .tap-to-close {
4611
- display: block;
4612
- font-size: 0.625em;
4613
- color: #888888;
4614
- font-weight: normal; }
4615
-
4616
- @media only screen and (min-width: 768px) {
4617
- .tooltip > .nub {
4618
- border-color: transparent transparent black transparent;
4619
- top: -10px; }
4620
- .tooltip.tip-top > .nub {
4621
- border-color: black transparent transparent transparent;
4622
- top: auto;
4623
- bottom: -10px; }
4624
- .tooltip.tip-left, .tooltip.tip-right {
4625
- float: none !important; }
4626
- .tooltip.tip-left > .nub {
4627
- border-color: transparent transparent transparent black;
4628
- right: -10px;
4629
- left: auto;
4630
- top: 50%;
4631
- margin-top: -5px; }
4632
- .tooltip.tip-right > .nub {
4633
- border-color: transparent black transparent transparent;
4634
- right: auto;
4635
- left: -10px;
4636
- top: 50%;
4637
- margin-top: -5px; } }
4638
- @media only screen and (max-width: 767px) {
4639
- .f-dropdown {
4640
- max-width: 100%;
4641
- left: 0; } }
4642
- /* Foundation Dropdowns */
4643
- .f-dropdown {
4644
- position: absolute;
4645
- top: -9999px;
4646
- list-style: none;
4647
- margin-left: 0;
4648
- width: 100%;
4649
- max-height: none;
4650
- height: auto;
4651
- background: white;
4652
- border: solid 1px #cccccc;
4653
- font-size: 16px;
4654
- z-index: 99;
4655
- margin-top: 2px;
4656
- max-width: 200px; }
4657
- .f-dropdown > *:first-child {
4658
- margin-top: 0; }
4659
- .f-dropdown > *:last-child {
4660
- margin-bottom: 0; }
4661
- .f-dropdown:before {
4662
- content: "";
4663
- display: block;
4664
- width: 0;
4665
- height: 0;
4666
- border: inset 6px;
4667
- border-color: transparent transparent white transparent;
4668
- border-bottom-style: solid;
4669
- position: absolute;
4670
- top: -12px;
4671
- left: 10px;
4672
- z-index: 99; }
4673
- .f-dropdown:after {
4674
- content: "";
4675
- display: block;
4676
- width: 0;
4677
- height: 0;
4678
- border: inset 7px;
4679
- border-color: transparent transparent #cccccc transparent;
4680
- border-bottom-style: solid;
4681
- position: absolute;
4682
- top: -14px;
4683
- left: 9px;
4684
- z-index: 98; }
4685
- .f-dropdown.right:before {
4686
- left: auto;
4687
- right: 10px; }
4688
- .f-dropdown.right:after {
4689
- left: auto;
4690
- right: 9px; }
4691
- .f-dropdown li {
4692
- font-size: 0.875em;
4693
- cursor: pointer;
4694
- line-height: 1.125em;
4695
- margin: 0; }
4696
- .f-dropdown li:hover, .f-dropdown li:focus {
4697
- background: #eeeeee; }
4698
- .f-dropdown li a {
4699
- display: block;
4700
- padding: 0.5em;
4701
- color: #555555; }
4702
- .f-dropdown.content {
4703
- position: absolute;
4704
- top: -9999px;
4705
- list-style: none;
4706
- margin-left: 0;
4707
- padding: 1.25em;
4708
- width: 100%;
4709
- height: auto;
4710
- max-height: none;
4711
- background: white;
4712
- border: solid 1px #cccccc;
4713
- font-size: 16px;
4714
- z-index: 99;
4715
- max-width: 200px; }
4716
- .f-dropdown.content > *:first-child {
4717
- margin-top: 0; }
4718
- .f-dropdown.content > *:last-child {
4719
- margin-bottom: 0; }
4720
- .f-dropdown.tiny {
4721
- max-width: 200px; }
4722
- .f-dropdown.small {
4723
- max-width: 300px; }
4724
- .f-dropdown.medium {
4725
- max-width: 500px; }
4726
- .f-dropdown.large {
4727
- max-width: 800px; }