template.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219
  1. @charset "UTF-8";
  2. @import url(font-awesome.min.css);
  3. /*
  4. Intensify by TEMPLATED
  5. templated.co @templatedco
  6. Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
  7. */
  8. /* Reset */
  9. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  10. margin: 0;
  11. padding: 0;
  12. border: 0;
  13. font-size: 100%;
  14. font: inherit;
  15. vertical-align: baseline;
  16. }
  17. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  18. display: block;
  19. }
  20. body {
  21. line-height: 1;
  22. }
  23. ol, ul {
  24. list-style: none;
  25. }
  26. blockquote, q {
  27. quotes: none;
  28. }
  29. blockquote:before, blockquote:after, q:before, q:after {
  30. content: '';
  31. content: none;
  32. }
  33. table {
  34. border-collapse: collapse;
  35. border-spacing: 0;
  36. }
  37. body {
  38. -webkit-text-size-adjust: none;
  39. }
  40. /* Box Model */
  41. *, *:before, *:after {
  42. -moz-box-sizing: border-box;
  43. -webkit-box-sizing: border-box;
  44. box-sizing: border-box;
  45. }
  46. /* Containers */
  47. .container {
  48. margin-left: auto;
  49. margin-right: auto;
  50. }
  51. .container.\31 25\25 {
  52. width: 100%;
  53. max-width: 100em;
  54. min-width: 80em;
  55. }
  56. .container.\37 5\25 {
  57. width: 60em;
  58. }
  59. .container.\35 0\25 {
  60. width: 40em;
  61. }
  62. .container.\32 5\25 {
  63. width: 20em;
  64. }
  65. .container {
  66. width: 80em;
  67. }
  68. @media screen and (max-width: 1680px) {
  69. .container.\31 25\25 {
  70. width: 100%;
  71. max-width: 100em;
  72. min-width: 80em;
  73. }
  74. .container.\37 5\25 {
  75. width: 60em;
  76. }
  77. .container.\35 0\25 {
  78. width: 40em;
  79. }
  80. .container.\32 5\25 {
  81. width: 20em;
  82. }
  83. .container {
  84. width: 80em;
  85. }
  86. }
  87. @media screen and (max-width: 1280px) {
  88. .container.\31 25\25 {
  89. width: 100%;
  90. max-width: 81.25em;
  91. min-width: 65em;
  92. }
  93. .container.\37 5\25 {
  94. width: 48.75em;
  95. }
  96. .container.\35 0\25 {
  97. width: 32.5em;
  98. }
  99. .container.\32 5\25 {
  100. width: 16.25em;
  101. }
  102. .container {
  103. width: 65em;
  104. }
  105. }
  106. @media screen and (max-width: 980px) {
  107. .container.\31 25\25 {
  108. width: 100%;
  109. max-width: 112.5%;
  110. min-width: 90%;
  111. }
  112. .container.\37 5\25 {
  113. width: 67.5%;
  114. }
  115. .container.\35 0\25 {
  116. width: 45%;
  117. }
  118. .container.\32 5\25 {
  119. width: 22.5%;
  120. }
  121. .container {
  122. width: 90%;
  123. }
  124. }
  125. @media screen and (max-width: 736px) {
  126. .container.\31 25\25 {
  127. width: 100%;
  128. max-width: 112.5%;
  129. min-width: 90%;
  130. }
  131. .container.\37 5\25 {
  132. width: 67.5%;
  133. }
  134. .container.\35 0\25 {
  135. width: 45%;
  136. }
  137. .container.\32 5\25 {
  138. width: 22.5%;
  139. }
  140. .container {
  141. width: 90% !important;
  142. }
  143. }
  144. @media screen and (max-width: 480px) {
  145. .container.\31 25\25 {
  146. width: 100%;
  147. max-width: 112.5%;
  148. min-width: 90%;
  149. }
  150. .container.\37 5\25 {
  151. width: 67.5%;
  152. }
  153. .container.\35 0\25 {
  154. width: 45%;
  155. }
  156. .container.\32 5\25 {
  157. width: 22.5%;
  158. }
  159. .container {
  160. width: 90% !important;
  161. }
  162. }
  163. /* Grid */
  164. .row {
  165. border-bottom: solid 1px transparent;
  166. -moz-box-sizing: border-box;
  167. -webkit-box-sizing: border-box;
  168. box-sizing: border-box;
  169. }
  170. .row > * {
  171. float: left;
  172. -moz-box-sizing: border-box;
  173. -webkit-box-sizing: border-box;
  174. box-sizing: border-box;
  175. }
  176. .row:after, .row:before {
  177. content: '';
  178. display: block;
  179. clear: both;
  180. height: 0;
  181. }
  182. .row.uniform > * > :first-child {
  183. margin-top: 0;
  184. }
  185. .row.uniform > * > :last-child {
  186. margin-bottom: 0;
  187. }
  188. .row.\30 \25 > * {
  189. padding: 0 0 0 0em;
  190. }
  191. .row.\30 \25 {
  192. margin: 0 0 -1px 0em;
  193. }
  194. .row.uniform.\30 \25 > * {
  195. padding: 0em 0 0 0em;
  196. }
  197. .row.uniform.\30 \25 {
  198. margin: 0em 0 -1px 0em;
  199. }
  200. .row > * {
  201. padding: 0 0 0 2em;
  202. }
  203. .row {
  204. margin: 0 0 -1px -2em;
  205. }
  206. .row.uniform > * {
  207. padding: 2em 0 0 2em;
  208. }
  209. .row.uniform {
  210. margin: -2em 0 -1px -2em;
  211. }
  212. .row.\32 00\25 > * {
  213. padding: 0 0 0 4em;
  214. }
  215. .row.\32 00\25 {
  216. margin: 0 0 -1px -4em;
  217. }
  218. .row.uniform.\32 00\25 > * {
  219. padding: 4em 0 0 4em;
  220. }
  221. .row.uniform.\32 00\25 {
  222. margin: -4em 0 -1px -4em;
  223. }
  224. .row.\31 50\25 > * {
  225. padding: 0 0 0 3em;
  226. }
  227. .row.\31 50\25 {
  228. margin: 0 0 -1px -3em;
  229. }
  230. .row.uniform.\31 50\25 > * {
  231. padding: 3em 0 0 3em;
  232. }
  233. .row.uniform.\31 50\25 {
  234. margin: -3em 0 -1px -3em;
  235. }
  236. .row.\35 0\25 > * {
  237. padding: 0 0 0 1em;
  238. }
  239. .row.\35 0\25 {
  240. margin: 0 0 -1px -1em;
  241. }
  242. .row.uniform.\35 0\25 > * {
  243. padding: 1em 0 0 1em;
  244. }
  245. .row.uniform.\35 0\25 {
  246. margin: -1em 0 -1px -1em;
  247. }
  248. .row.\32 5\25 > * {
  249. padding: 0 0 0 0.5em;
  250. }
  251. .row.\32 5\25 {
  252. margin: 0 0 -1px -0.5em;
  253. }
  254. .row.uniform.\32 5\25 > * {
  255. padding: 0.5em 0 0 0.5em;
  256. }
  257. .row.uniform.\32 5\25 {
  258. margin: -0.5em 0 -1px -0.5em;
  259. }
  260. .\31 2u, .\31 2u\24 {
  261. width: 100%;
  262. clear: none;
  263. margin-left: 0;
  264. }
  265. .\31 1u, .\31 1u\24 {
  266. width: 91.6666666667%;
  267. clear: none;
  268. margin-left: 0;
  269. }
  270. .\31 0u, .\31 0u\24 {
  271. width: 83.3333333333%;
  272. clear: none;
  273. margin-left: 0;
  274. }
  275. .\39 u, .\39 u\24 {
  276. width: 75%;
  277. clear: none;
  278. margin-left: 0;
  279. }
  280. .\38 u, .\38 u\24 {
  281. width: 66.6666666667%;
  282. clear: none;
  283. margin-left: 0;
  284. }
  285. .\37 u, .\37 u\24 {
  286. width: 58.3333333333%;
  287. clear: none;
  288. margin-left: 0;
  289. }
  290. .\36 u, .\36 u\24 {
  291. width: 50%;
  292. clear: none;
  293. margin-left: 0;
  294. }
  295. .\35 u, .\35 u\24 {
  296. width: 41.6666666667%;
  297. clear: none;
  298. margin-left: 0;
  299. }
  300. .\34 u, .\34 u\24 {
  301. width: 33.3333333333%;
  302. clear: none;
  303. margin-left: 0;
  304. }
  305. .\33 u, .\33 u\24 {
  306. width: 25%;
  307. clear: none;
  308. margin-left: 0;
  309. }
  310. .\32 u, .\32 u\24 {
  311. width: 16.6666666667%;
  312. clear: none;
  313. margin-left: 0;
  314. }
  315. .\31 u, .\31 u\24 {
  316. width: 8.3333333333%;
  317. clear: none;
  318. margin-left: 0;
  319. }
  320. .\31 2u\24 + *,
  321. .\31 1u\24 + *,
  322. .\31 0u\24 + *,
  323. .\39 u\24 + *,
  324. .\38 u\24 + *,
  325. .\37 u\24 + *,
  326. .\36 u\24 + *,
  327. .\35 u\24 + *,
  328. .\34 u\24 + *,
  329. .\33 u\24 + *,
  330. .\32 u\24 + *,
  331. .\31 u\24 + * {
  332. clear: left;
  333. }
  334. .\-11u {
  335. margin-left: 91.66667%;
  336. }
  337. .\-10u {
  338. margin-left: 83.33333%;
  339. }
  340. .\-9u {
  341. margin-left: 75%;
  342. }
  343. .\-8u {
  344. margin-left: 66.66667%;
  345. }
  346. .\-7u {
  347. margin-left: 58.33333%;
  348. }
  349. .\-6u {
  350. margin-left: 50%;
  351. }
  352. .\-5u {
  353. margin-left: 41.66667%;
  354. }
  355. .\-4u {
  356. margin-left: 33.33333%;
  357. }
  358. .\-3u {
  359. margin-left: 25%;
  360. }
  361. .\-2u {
  362. margin-left: 16.66667%;
  363. }
  364. .\-1u {
  365. margin-left: 8.33333%;
  366. }
  367. @media screen and (max-width: 1680px) {
  368. .row > * {
  369. padding: 0 0 0 2em;
  370. }
  371. .row {
  372. margin: 0 0 -1px -2em;
  373. }
  374. .row.uniform > * {
  375. padding: 2em 0 0 2em;
  376. }
  377. .row.uniform {
  378. margin: -2em 0 -1px -2em;
  379. }
  380. .row.\32 00\25 > * {
  381. padding: 0 0 0 4em;
  382. }
  383. .row.\32 00\25 {
  384. margin: 0 0 -1px -4em;
  385. }
  386. .row.uniform.\32 00\25 > * {
  387. padding: 4em 0 0 4em;
  388. }
  389. .row.uniform.\32 00\25 {
  390. margin: -4em 0 -1px -4em;
  391. }
  392. .row.\31 50\25 > * {
  393. padding: 0 0 0 3em;
  394. }
  395. .row.\31 50\25 {
  396. margin: 0 0 -1px -3em;
  397. }
  398. .row.uniform.\31 50\25 > * {
  399. padding: 3em 0 0 3em;
  400. }
  401. .row.uniform.\31 50\25 {
  402. margin: -3em 0 -1px -3em;
  403. }
  404. .row.\35 0\25 > * {
  405. padding: 0 0 0 1em;
  406. }
  407. .row.\35 0\25 {
  408. margin: 0 0 -1px -1em;
  409. }
  410. .row.uniform.\35 0\25 > * {
  411. padding: 1em 0 0 1em;
  412. }
  413. .row.uniform.\35 0\25 {
  414. margin: -1em 0 -1px -1em;
  415. }
  416. .row.\32 5\25 > * {
  417. padding: 0 0 0 0.5em;
  418. }
  419. .row.\32 5\25 {
  420. margin: 0 0 -1px -0.5em;
  421. }
  422. .row.uniform.\32 5\25 > * {
  423. padding: 0.5em 0 0 0.5em;
  424. }
  425. .row.uniform.\32 5\25 {
  426. margin: -0.5em 0 -1px -0.5em;
  427. }
  428. .\31 2u\28xlarge\29, .\31 2u\24\28xlarge\29 {
  429. width: 100%;
  430. clear: none;
  431. margin-left: 0;
  432. }
  433. .\31 1u\28xlarge\29, .\31 1u\24\28xlarge\29 {
  434. width: 91.6666666667%;
  435. clear: none;
  436. margin-left: 0;
  437. }
  438. .\31 0u\28xlarge\29, .\31 0u\24\28xlarge\29 {
  439. width: 83.3333333333%;
  440. clear: none;
  441. margin-left: 0;
  442. }
  443. .\39 u\28xlarge\29, .\39 u\24\28xlarge\29 {
  444. width: 75%;
  445. clear: none;
  446. margin-left: 0;
  447. }
  448. .\38 u\28xlarge\29, .\38 u\24\28xlarge\29 {
  449. width: 66.6666666667%;
  450. clear: none;
  451. margin-left: 0;
  452. }
  453. .\37 u\28xlarge\29, .\37 u\24\28xlarge\29 {
  454. width: 58.3333333333%;
  455. clear: none;
  456. margin-left: 0;
  457. }
  458. .\36 u\28xlarge\29, .\36 u\24\28xlarge\29 {
  459. width: 50%;
  460. clear: none;
  461. margin-left: 0;
  462. }
  463. .\35 u\28xlarge\29, .\35 u\24\28xlarge\29 {
  464. width: 41.6666666667%;
  465. clear: none;
  466. margin-left: 0;
  467. }
  468. .\34 u\28xlarge\29, .\34 u\24\28xlarge\29 {
  469. width: 33.3333333333%;
  470. clear: none;
  471. margin-left: 0;
  472. }
  473. .\33 u\28xlarge\29, .\33 u\24\28xlarge\29 {
  474. width: 25%;
  475. clear: none;
  476. margin-left: 0;
  477. }
  478. .\32 u\28xlarge\29, .\32 u\24\28xlarge\29 {
  479. width: 16.6666666667%;
  480. clear: none;
  481. margin-left: 0;
  482. }
  483. .\31 u\28xlarge\29, .\31 u\24\28xlarge\29 {
  484. width: 8.3333333333%;
  485. clear: none;
  486. margin-left: 0;
  487. }
  488. .\31 2u\24\28xlarge\29 + *,
  489. .\31 1u\24\28xlarge\29 + *,
  490. .\31 0u\24\28xlarge\29 + *,
  491. .\39 u\24\28xlarge\29 + *,
  492. .\38 u\24\28xlarge\29 + *,
  493. .\37 u\24\28xlarge\29 + *,
  494. .\36 u\24\28xlarge\29 + *,
  495. .\35 u\24\28xlarge\29 + *,
  496. .\34 u\24\28xlarge\29 + *,
  497. .\33 u\24\28xlarge\29 + *,
  498. .\32 u\24\28xlarge\29 + *,
  499. .\31 u\24\28xlarge\29 + * {
  500. clear: left;
  501. }
  502. .\-11u\28xlarge\29 {
  503. margin-left: 91.66667%;
  504. }
  505. .\-10u\28xlarge\29 {
  506. margin-left: 83.33333%;
  507. }
  508. .\-9u\28xlarge\29 {
  509. margin-left: 75%;
  510. }
  511. .\-8u\28xlarge\29 {
  512. margin-left: 66.66667%;
  513. }
  514. .\-7u\28xlarge\29 {
  515. margin-left: 58.33333%;
  516. }
  517. .\-6u\28xlarge\29 {
  518. margin-left: 50%;
  519. }
  520. .\-5u\28xlarge\29 {
  521. margin-left: 41.66667%;
  522. }
  523. .\-4u\28xlarge\29 {
  524. margin-left: 33.33333%;
  525. }
  526. .\-3u\28xlarge\29 {
  527. margin-left: 25%;
  528. }
  529. .\-2u\28xlarge\29 {
  530. margin-left: 16.66667%;
  531. }
  532. .\-1u\28xlarge\29 {
  533. margin-left: 8.33333%;
  534. }
  535. }
  536. @media screen and (max-width: 1280px) {
  537. .row > * {
  538. padding: 0 0 0 1.5em;
  539. }
  540. .row {
  541. margin: 0 0 -1px -1.5em;
  542. }
  543. .row.uniform > * {
  544. padding: 1.5em 0 0 1.5em;
  545. }
  546. .row.uniform {
  547. margin: -1.5em 0 -1px -1.5em;
  548. }
  549. .row.\32 00\25 > * {
  550. padding: 0 0 0 3em;
  551. }
  552. .row.\32 00\25 {
  553. margin: 0 0 -1px -3em;
  554. }
  555. .row.uniform.\32 00\25 > * {
  556. padding: 3em 0 0 3em;
  557. }
  558. .row.uniform.\32 00\25 {
  559. margin: -3em 0 -1px -3em;
  560. }
  561. .row.\31 50\25 > * {
  562. padding: 0 0 0 2.25em;
  563. }
  564. .row.\31 50\25 {
  565. margin: 0 0 -1px -2.25em;
  566. }
  567. .row.uniform.\31 50\25 > * {
  568. padding: 2.25em 0 0 2.25em;
  569. }
  570. .row.uniform.\31 50\25 {
  571. margin: -2.25em 0 -1px -2.25em;
  572. }
  573. .row.\35 0\25 > * {
  574. padding: 0 0 0 0.75em;
  575. }
  576. .row.\35 0\25 {
  577. margin: 0 0 -1px -0.75em;
  578. }
  579. .row.uniform.\35 0\25 > * {
  580. padding: 0.75em 0 0 0.75em;
  581. }
  582. .row.uniform.\35 0\25 {
  583. margin: -0.75em 0 -1px -0.75em;
  584. }
  585. .row.\32 5\25 > * {
  586. padding: 0 0 0 0.375em;
  587. }
  588. .row.\32 5\25 {
  589. margin: 0 0 -1px -0.375em;
  590. }
  591. .row.uniform.\32 5\25 > * {
  592. padding: 0.375em 0 0 0.375em;
  593. }
  594. .row.uniform.\32 5\25 {
  595. margin: -0.375em 0 -1px -0.375em;
  596. }
  597. .\31 2u\28large\29, .\31 2u\24\28large\29 {
  598. width: 100%;
  599. clear: none;
  600. margin-left: 0;
  601. }
  602. .\31 1u\28large\29, .\31 1u\24\28large\29 {
  603. width: 91.6666666667%;
  604. clear: none;
  605. margin-left: 0;
  606. }
  607. .\31 0u\28large\29, .\31 0u\24\28large\29 {
  608. width: 83.3333333333%;
  609. clear: none;
  610. margin-left: 0;
  611. }
  612. .\39 u\28large\29, .\39 u\24\28large\29 {
  613. width: 75%;
  614. clear: none;
  615. margin-left: 0;
  616. }
  617. .\38 u\28large\29, .\38 u\24\28large\29 {
  618. width: 66.6666666667%;
  619. clear: none;
  620. margin-left: 0;
  621. }
  622. .\37 u\28large\29, .\37 u\24\28large\29 {
  623. width: 58.3333333333%;
  624. clear: none;
  625. margin-left: 0;
  626. }
  627. .\36 u\28large\29, .\36 u\24\28large\29 {
  628. width: 50%;
  629. clear: none;
  630. margin-left: 0;
  631. }
  632. .\35 u\28large\29, .\35 u\24\28large\29 {
  633. width: 41.6666666667%;
  634. clear: none;
  635. margin-left: 0;
  636. }
  637. .\34 u\28large\29, .\34 u\24\28large\29 {
  638. width: 33.3333333333%;
  639. clear: none;
  640. margin-left: 0;
  641. }
  642. .\33 u\28large\29, .\33 u\24\28large\29 {
  643. width: 25%;
  644. clear: none;
  645. margin-left: 0;
  646. }
  647. .\32 u\28large\29, .\32 u\24\28large\29 {
  648. width: 16.6666666667%;
  649. clear: none;
  650. margin-left: 0;
  651. }
  652. .\31 u\28large\29, .\31 u\24\28large\29 {
  653. width: 8.3333333333%;
  654. clear: none;
  655. margin-left: 0;
  656. }
  657. .\31 2u\24\28large\29 + *,
  658. .\31 1u\24\28large\29 + *,
  659. .\31 0u\24\28large\29 + *,
  660. .\39 u\24\28large\29 + *,
  661. .\38 u\24\28large\29 + *,
  662. .\37 u\24\28large\29 + *,
  663. .\36 u\24\28large\29 + *,
  664. .\35 u\24\28large\29 + *,
  665. .\34 u\24\28large\29 + *,
  666. .\33 u\24\28large\29 + *,
  667. .\32 u\24\28large\29 + *,
  668. .\31 u\24\28large\29 + * {
  669. clear: left;
  670. }
  671. .\-11u\28large\29 {
  672. margin-left: 91.66667%;
  673. }
  674. .\-10u\28large\29 {
  675. margin-left: 83.33333%;
  676. }
  677. .\-9u\28large\29 {
  678. margin-left: 75%;
  679. }
  680. .\-8u\28large\29 {
  681. margin-left: 66.66667%;
  682. }
  683. .\-7u\28large\29 {
  684. margin-left: 58.33333%;
  685. }
  686. .\-6u\28large\29 {
  687. margin-left: 50%;
  688. }
  689. .\-5u\28large\29 {
  690. margin-left: 41.66667%;
  691. }
  692. .\-4u\28large\29 {
  693. margin-left: 33.33333%;
  694. }
  695. .\-3u\28large\29 {
  696. margin-left: 25%;
  697. }
  698. .\-2u\28large\29 {
  699. margin-left: 16.66667%;
  700. }
  701. .\-1u\28large\29 {
  702. margin-left: 8.33333%;
  703. }
  704. }
  705. @media screen and (max-width: 980px) {
  706. .row > * {
  707. padding: 0 0 0 1.5em;
  708. }
  709. .row {
  710. margin: 0 0 -1px -1.5em;
  711. }
  712. .row.uniform > * {
  713. padding: 1.5em 0 0 1.5em;
  714. }
  715. .row.uniform {
  716. margin: -1.5em 0 -1px -1.5em;
  717. }
  718. .row.\32 00\25 > * {
  719. padding: 0 0 0 3em;
  720. }
  721. .row.\32 00\25 {
  722. margin: 0 0 -1px -3em;
  723. }
  724. .row.uniform.\32 00\25 > * {
  725. padding: 3em 0 0 3em;
  726. }
  727. .row.uniform.\32 00\25 {
  728. margin: -3em 0 -1px -3em;
  729. }
  730. .row.\31 50\25 > * {
  731. padding: 0 0 0 2.25em;
  732. }
  733. .row.\31 50\25 {
  734. margin: 0 0 -1px -2.25em;
  735. }
  736. .row.uniform.\31 50\25 > * {
  737. padding: 2.25em 0 0 2.25em;
  738. }
  739. .row.uniform.\31 50\25 {
  740. margin: -2.25em 0 -1px -2.25em;
  741. }
  742. .row.\35 0\25 > * {
  743. padding: 0 0 0 0.75em;
  744. }
  745. .row.\35 0\25 {
  746. margin: 0 0 -1px -0.75em;
  747. }
  748. .row.uniform.\35 0\25 > * {
  749. padding: 0.75em 0 0 0.75em;
  750. }
  751. .row.uniform.\35 0\25 {
  752. margin: -0.75em 0 -1px -0.75em;
  753. }
  754. .row.\32 5\25 > * {
  755. padding: 0 0 0 0.375em;
  756. }
  757. .row.\32 5\25 {
  758. margin: 0 0 -1px -0.375em;
  759. }
  760. .row.uniform.\32 5\25 > * {
  761. padding: 0.375em 0 0 0.375em;
  762. }
  763. .row.uniform.\32 5\25 {
  764. margin: -0.375em 0 -1px -0.375em;
  765. }
  766. .\31 2u\28medium\29, .\31 2u\24\28medium\29 {
  767. width: 100%;
  768. clear: none;
  769. margin-left: 0;
  770. }
  771. .\31 1u\28medium\29, .\31 1u\24\28medium\29 {
  772. width: 91.6666666667%;
  773. clear: none;
  774. margin-left: 0;
  775. }
  776. .\31 0u\28medium\29, .\31 0u\24\28medium\29 {
  777. width: 83.3333333333%;
  778. clear: none;
  779. margin-left: 0;
  780. }
  781. .\39 u\28medium\29, .\39 u\24\28medium\29 {
  782. width: 75%;
  783. clear: none;
  784. margin-left: 0;
  785. }
  786. .\38 u\28medium\29, .\38 u\24\28medium\29 {
  787. width: 66.6666666667%;
  788. clear: none;
  789. margin-left: 0;
  790. }
  791. .\37 u\28medium\29, .\37 u\24\28medium\29 {
  792. width: 58.3333333333%;
  793. clear: none;
  794. margin-left: 0;
  795. }
  796. .\36 u\28medium\29, .\36 u\24\28medium\29 {
  797. width: 50%;
  798. clear: none;
  799. margin-left: 0;
  800. }
  801. .\35 u\28medium\29, .\35 u\24\28medium\29 {
  802. width: 41.6666666667%;
  803. clear: none;
  804. margin-left: 0;
  805. }
  806. .\34 u\28medium\29, .\34 u\24\28medium\29 {
  807. width: 33.3333333333%;
  808. clear: none;
  809. margin-left: 0;
  810. }
  811. .\33 u\28medium\29, .\33 u\24\28medium\29 {
  812. width: 25%;
  813. clear: none;
  814. margin-left: 0;
  815. }
  816. .\32 u\28medium\29, .\32 u\24\28medium\29 {
  817. width: 16.6666666667%;
  818. clear: none;
  819. margin-left: 0;
  820. }
  821. .\31 u\28medium\29, .\31 u\24\28medium\29 {
  822. width: 8.3333333333%;
  823. clear: none;
  824. margin-left: 0;
  825. }
  826. .\31 2u\24\28medium\29 + *,
  827. .\31 1u\24\28medium\29 + *,
  828. .\31 0u\24\28medium\29 + *,
  829. .\39 u\24\28medium\29 + *,
  830. .\38 u\24\28medium\29 + *,
  831. .\37 u\24\28medium\29 + *,
  832. .\36 u\24\28medium\29 + *,
  833. .\35 u\24\28medium\29 + *,
  834. .\34 u\24\28medium\29 + *,
  835. .\33 u\24\28medium\29 + *,
  836. .\32 u\24\28medium\29 + *,
  837. .\31 u\24\28medium\29 + * {
  838. clear: left;
  839. }
  840. .\-11u\28medium\29 {
  841. margin-left: 91.66667%;
  842. }
  843. .\-10u\28medium\29 {
  844. margin-left: 83.33333%;
  845. }
  846. .\-9u\28medium\29 {
  847. margin-left: 75%;
  848. }
  849. .\-8u\28medium\29 {
  850. margin-left: 66.66667%;
  851. }
  852. .\-7u\28medium\29 {
  853. margin-left: 58.33333%;
  854. }
  855. .\-6u\28medium\29 {
  856. margin-left: 50%;
  857. }
  858. .\-5u\28medium\29 {
  859. margin-left: 41.66667%;
  860. }
  861. .\-4u\28medium\29 {
  862. margin-left: 33.33333%;
  863. }
  864. .\-3u\28medium\29 {
  865. margin-left: 25%;
  866. }
  867. .\-2u\28medium\29 {
  868. margin-left: 16.66667%;
  869. }
  870. .\-1u\28medium\29 {
  871. margin-left: 8.33333%;
  872. }
  873. }
  874. @media screen and (max-width: 736px) {
  875. .row > * {
  876. padding: 0 0 0 1.25em;
  877. }
  878. .row {
  879. margin: 0 0 -1px -1.25em;
  880. }
  881. .row.uniform > * {
  882. padding: 1.25em 0 0 1.25em;
  883. }
  884. .row.uniform {
  885. margin: -1.25em 0 -1px -1.25em;
  886. }
  887. .row.\32 00\25 > * {
  888. padding: 0 0 0 2.5em;
  889. }
  890. .row.\32 00\25 {
  891. margin: 0 0 -1px -2.5em;
  892. }
  893. .row.uniform.\32 00\25 > * {
  894. padding: 2.5em 0 0 2.5em;
  895. }
  896. .row.uniform.\32 00\25 {
  897. margin: -2.5em 0 -1px -2.5em;
  898. }
  899. .row.\31 50\25 > * {
  900. padding: 0 0 0 1.875em;
  901. }
  902. .row.\31 50\25 {
  903. margin: 0 0 -1px -1.875em;
  904. }
  905. .row.uniform.\31 50\25 > * {
  906. padding: 1.875em 0 0 1.875em;
  907. }
  908. .row.uniform.\31 50\25 {
  909. margin: -1.875em 0 -1px -1.875em;
  910. }
  911. .row.\35 0\25 > * {
  912. padding: 0 0 0 0.625em;
  913. }
  914. .row.\35 0\25 {
  915. margin: 0 0 -1px -0.625em;
  916. }
  917. .row.uniform.\35 0\25 > * {
  918. padding: 0.625em 0 0 0.625em;
  919. }
  920. .row.uniform.\35 0\25 {
  921. margin: -0.625em 0 -1px -0.625em;
  922. }
  923. .row.\32 5\25 > * {
  924. padding: 0 0 0 0.3125em;
  925. }
  926. .row.\32 5\25 {
  927. margin: 0 0 -1px -0.3125em;
  928. }
  929. .row.uniform.\32 5\25 > * {
  930. padding: 0.3125em 0 0 0.3125em;
  931. }
  932. .row.uniform.\32 5\25 {
  933. margin: -0.3125em 0 -1px -0.3125em;
  934. }
  935. .\31 2u\28small\29, .\31 2u\24\28small\29 {
  936. width: 100%;
  937. clear: none;
  938. margin-left: 0;
  939. }
  940. .\31 1u\28small\29, .\31 1u\24\28small\29 {
  941. width: 91.6666666667%;
  942. clear: none;
  943. margin-left: 0;
  944. }
  945. .\31 0u\28small\29, .\31 0u\24\28small\29 {
  946. width: 83.3333333333%;
  947. clear: none;
  948. margin-left: 0;
  949. }
  950. .\39 u\28small\29, .\39 u\24\28small\29 {
  951. width: 75%;
  952. clear: none;
  953. margin-left: 0;
  954. }
  955. .\38 u\28small\29, .\38 u\24\28small\29 {
  956. width: 66.6666666667%;
  957. clear: none;
  958. margin-left: 0;
  959. }
  960. .\37 u\28small\29, .\37 u\24\28small\29 {
  961. width: 58.3333333333%;
  962. clear: none;
  963. margin-left: 0;
  964. }
  965. .\36 u\28small\29, .\36 u\24\28small\29 {
  966. width: 50%;
  967. clear: none;
  968. margin-left: 0;
  969. }
  970. .\35 u\28small\29, .\35 u\24\28small\29 {
  971. width: 41.6666666667%;
  972. clear: none;
  973. margin-left: 0;
  974. }
  975. .\34 u\28small\29, .\34 u\24\28small\29 {
  976. width: 33.3333333333%;
  977. clear: none;
  978. margin-left: 0;
  979. }
  980. .\33 u\28small\29, .\33 u\24\28small\29 {
  981. width: 25%;
  982. clear: none;
  983. margin-left: 0;
  984. }
  985. .\32 u\28small\29, .\32 u\24\28small\29 {
  986. width: 16.6666666667%;
  987. clear: none;
  988. margin-left: 0;
  989. }
  990. .\31 u\28small\29, .\31 u\24\28small\29 {
  991. width: 8.3333333333%;
  992. clear: none;
  993. margin-left: 0;
  994. }
  995. .\31 2u\24\28small\29 + *,
  996. .\31 1u\24\28small\29 + *,
  997. .\31 0u\24\28small\29 + *,
  998. .\39 u\24\28small\29 + *,
  999. .\38 u\24\28small\29 + *,
  1000. .\37 u\24\28small\29 + *,
  1001. .\36 u\24\28small\29 + *,
  1002. .\35 u\24\28small\29 + *,
  1003. .\34 u\24\28small\29 + *,
  1004. .\33 u\24\28small\29 + *,
  1005. .\32 u\24\28small\29 + *,
  1006. .\31 u\24\28small\29 + * {
  1007. clear: left;
  1008. }
  1009. .\-11u\28small\29 {
  1010. margin-left: 91.66667%;
  1011. }
  1012. .\-10u\28small\29 {
  1013. margin-left: 83.33333%;
  1014. }
  1015. .\-9u\28small\29 {
  1016. margin-left: 75%;
  1017. }
  1018. .\-8u\28small\29 {
  1019. margin-left: 66.66667%;
  1020. }
  1021. .\-7u\28small\29 {
  1022. margin-left: 58.33333%;
  1023. }
  1024. .\-6u\28small\29 {
  1025. margin-left: 50%;
  1026. }
  1027. .\-5u\28small\29 {
  1028. margin-left: 41.66667%;
  1029. }
  1030. .\-4u\28small\29 {
  1031. margin-left: 33.33333%;
  1032. }
  1033. .\-3u\28small\29 {
  1034. margin-left: 25%;
  1035. }
  1036. .\-2u\28small\29 {
  1037. margin-left: 16.66667%;
  1038. }
  1039. .\-1u\28small\29 {
  1040. margin-left: 8.33333%;
  1041. }
  1042. }
  1043. @media screen and (max-width: 480px) {
  1044. .row > * {
  1045. padding: 0 0 0 1.25em;
  1046. }
  1047. .row {
  1048. margin: 0 0 -1px -1.25em;
  1049. }
  1050. .row.uniform > * {
  1051. padding: 1.25em 0 0 1.25em;
  1052. }
  1053. .row.uniform {
  1054. margin: -1.25em 0 -1px -1.25em;
  1055. }
  1056. .row.\32 00\25 > * {
  1057. padding: 0 0 0 2.5em;
  1058. }
  1059. .row.\32 00\25 {
  1060. margin: 0 0 -1px -2.5em;
  1061. }
  1062. .row.uniform.\32 00\25 > * {
  1063. padding: 2.5em 0 0 2.5em;
  1064. }
  1065. .row.uniform.\32 00\25 {
  1066. margin: -2.5em 0 -1px -2.5em;
  1067. }
  1068. .row.\31 50\25 > * {
  1069. padding: 0 0 0 1.875em;
  1070. }
  1071. .row.\31 50\25 {
  1072. margin: 0 0 -1px -1.875em;
  1073. }
  1074. .row.uniform.\31 50\25 > * {
  1075. padding: 1.875em 0 0 1.875em;
  1076. }
  1077. .row.uniform.\31 50\25 {
  1078. margin: -1.875em 0 -1px -1.875em;
  1079. }
  1080. .row.\35 0\25 > * {
  1081. padding: 0 0 0 0.625em;
  1082. }
  1083. .row.\35 0\25 {
  1084. margin: 0 0 -1px -0.625em;
  1085. }
  1086. .row.uniform.\35 0\25 > * {
  1087. padding: 0.625em 0 0 0.625em;
  1088. }
  1089. .row.uniform.\35 0\25 {
  1090. margin: -0.625em 0 -1px -0.625em;
  1091. }
  1092. .row.\32 5\25 > * {
  1093. padding: 0 0 0 0.3125em;
  1094. }
  1095. .row.\32 5\25 {
  1096. margin: 0 0 -1px -0.3125em;
  1097. }
  1098. .row.uniform.\32 5\25 > * {
  1099. padding: 0.3125em 0 0 0.3125em;
  1100. }
  1101. .row.uniform.\32 5\25 {
  1102. margin: -0.3125em 0 -1px -0.3125em;
  1103. }
  1104. .\31 2u\28xsmall\29, .\31 2u\24\28xsmall\29 {
  1105. width: 100%;
  1106. clear: none;
  1107. margin-left: 0;
  1108. }
  1109. .\31 1u\28xsmall\29, .\31 1u\24\28xsmall\29 {
  1110. width: 91.6666666667%;
  1111. clear: none;
  1112. margin-left: 0;
  1113. }
  1114. .\31 0u\28xsmall\29, .\31 0u\24\28xsmall\29 {
  1115. width: 83.3333333333%;
  1116. clear: none;
  1117. margin-left: 0;
  1118. }
  1119. .\39 u\28xsmall\29, .\39 u\24\28xsmall\29 {
  1120. width: 75%;
  1121. clear: none;
  1122. margin-left: 0;
  1123. }
  1124. .\38 u\28xsmall\29, .\38 u\24\28xsmall\29 {
  1125. width: 66.6666666667%;
  1126. clear: none;
  1127. margin-left: 0;
  1128. }
  1129. .\37 u\28xsmall\29, .\37 u\24\28xsmall\29 {
  1130. width: 58.3333333333%;
  1131. clear: none;
  1132. margin-left: 0;
  1133. }
  1134. .\36 u\28xsmall\29, .\36 u\24\28xsmall\29 {
  1135. width: 50%;
  1136. clear: none;
  1137. margin-left: 0;
  1138. }
  1139. .\35 u\28xsmall\29, .\35 u\24\28xsmall\29 {
  1140. width: 41.6666666667%;
  1141. clear: none;
  1142. margin-left: 0;
  1143. }
  1144. .\34 u\28xsmall\29, .\34 u\24\28xsmall\29 {
  1145. width: 33.3333333333%;
  1146. clear: none;
  1147. margin-left: 0;
  1148. }
  1149. .\33 u\28xsmall\29, .\33 u\24\28xsmall\29 {
  1150. width: 25%;
  1151. clear: none;
  1152. margin-left: 0;
  1153. }
  1154. .\32 u\28xsmall\29, .\32 u\24\28xsmall\29 {
  1155. width: 16.6666666667%;
  1156. clear: none;
  1157. margin-left: 0;
  1158. }
  1159. .\31 u\28xsmall\29, .\31 u\24\28xsmall\29 {
  1160. width: 8.3333333333%;
  1161. clear: none;
  1162. margin-left: 0;
  1163. }
  1164. .\31 2u\24\28xsmall\29 + *,
  1165. .\31 1u\24\28xsmall\29 + *,
  1166. .\31 0u\24\28xsmall\29 + *,
  1167. .\39 u\24\28xsmall\29 + *,
  1168. .\38 u\24\28xsmall\29 + *,
  1169. .\37 u\24\28xsmall\29 + *,
  1170. .\36 u\24\28xsmall\29 + *,
  1171. .\35 u\24\28xsmall\29 + *,
  1172. .\34 u\24\28xsmall\29 + *,
  1173. .\33 u\24\28xsmall\29 + *,
  1174. .\32 u\24\28xsmall\29 + *,
  1175. .\31 u\24\28xsmall\29 + * {
  1176. clear: left;
  1177. }
  1178. .\-11u\28xsmall\29 {
  1179. margin-left: 91.66667%;
  1180. }
  1181. .\-10u\28xsmall\29 {
  1182. margin-left: 83.33333%;
  1183. }
  1184. .\-9u\28xsmall\29 {
  1185. margin-left: 75%;
  1186. }
  1187. .\-8u\28xsmall\29 {
  1188. margin-left: 66.66667%;
  1189. }
  1190. .\-7u\28xsmall\29 {
  1191. margin-left: 58.33333%;
  1192. }
  1193. .\-6u\28xsmall\29 {
  1194. margin-left: 50%;
  1195. }
  1196. .\-5u\28xsmall\29 {
  1197. margin-left: 41.66667%;
  1198. }
  1199. .\-4u\28xsmall\29 {
  1200. margin-left: 33.33333%;
  1201. }
  1202. .\-3u\28xsmall\29 {
  1203. margin-left: 25%;
  1204. }
  1205. .\-2u\28xsmall\29 {
  1206. margin-left: 16.66667%;
  1207. }
  1208. .\-1u\28xsmall\29 {
  1209. margin-left: 8.33333%;
  1210. }
  1211. }
  1212. /* Basic */
  1213. @-ms-viewport {
  1214. width: device-width;
  1215. }
  1216. body {
  1217. -ms-overflow-style: scrollbar;
  1218. }
  1219. @media screen and (max-width: 480px) {
  1220. html, body {
  1221. min-width: 320px;
  1222. }
  1223. }
  1224. body {
  1225. background: #fff;
  1226. }
  1227. body.is-loading *, body.is-loading *:before, body.is-loading *:after {
  1228. -moz-animation: none !important;
  1229. -webkit-animation: none !important;
  1230. -ms-animation: none !important;
  1231. animation: none !important;
  1232. -moz-transition: none !important;
  1233. -webkit-transition: none !important;
  1234. -ms-transition: none !important;
  1235. transition: none !important;
  1236. }
  1237. .inner {
  1238. margin: 0 auto;
  1239. max-width: 65em;
  1240. }
  1241. @media screen and (max-width: 1280px) {
  1242. .inner {
  1243. max-width: 90%;
  1244. }
  1245. }
  1246. @media screen and (max-width: 980px) {
  1247. .inner {
  1248. max-width: 70%;
  1249. }
  1250. }
  1251. @media screen and (max-width: 736px) {
  1252. .inner {
  1253. max-width: 85%;
  1254. }
  1255. }
  1256. /* Type */
  1257. body, input, select, textarea {
  1258. color: #767d85;
  1259. font-family: "Open Sans", Arial, Helvetica, sans-serif;
  1260. font-size: 13pt;
  1261. font-weight: 300;
  1262. line-height: 1.65;
  1263. }
  1264. @media screen and (max-width: 1680px) {
  1265. body, input, select, textarea {
  1266. font-size: 11pt;
  1267. }
  1268. }
  1269. @media screen and (max-width: 1280px) {
  1270. body, input, select, textarea {
  1271. font-size: 11pt;
  1272. }
  1273. }
  1274. @media screen and (max-width: 980px) {
  1275. body, input, select, textarea {
  1276. font-size: 12pt;
  1277. }
  1278. }
  1279. @media screen and (max-width: 736px) {
  1280. body, input, select, textarea {
  1281. font-size: 12pt;
  1282. }
  1283. }
  1284. @media screen and (max-width: 480px) {
  1285. body, input, select, textarea {
  1286. font-size: 12pt;
  1287. }
  1288. }
  1289. a {
  1290. color: #25a2c3;
  1291. text-decoration: underline;
  1292. }
  1293. a:hover {
  1294. text-decoration: none;
  1295. }
  1296. strong, b {
  1297. color: #727a82;
  1298. font-weight: 700;
  1299. }
  1300. em, i {
  1301. font-style: italic;
  1302. }
  1303. p {
  1304. margin: 0 0 2em 0;
  1305. }
  1306. h1, h2, h3, h4, h5, h6 {
  1307. color: #727a82;
  1308. font-weight: 700;
  1309. font-family: "Montserrat", sans-serif;
  1310. line-height: 1.5;
  1311. margin: 0 0 1em 0;
  1312. }
  1313. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  1314. color: inherit;
  1315. text-decoration: none;
  1316. }
  1317. h1 {
  1318. font-size: 2em;
  1319. line-height: 1.3;
  1320. }
  1321. h2 {
  1322. font-size: 1.75em;
  1323. }
  1324. h3 {
  1325. font-size: 1.25em;
  1326. }
  1327. h4 {
  1328. font-size: 1em;
  1329. }
  1330. h5 {
  1331. font-size: 0.9em;
  1332. }
  1333. h6 {
  1334. font-size: 0.7em;
  1335. }
  1336. sub {
  1337. font-size: 0.8em;
  1338. position: relative;
  1339. top: 0.5em;
  1340. }
  1341. sup {
  1342. font-size: 0.8em;
  1343. position: relative;
  1344. top: -0.5em;
  1345. }
  1346. blockquote {
  1347. font-style: italic;
  1348. margin: 0 0 2em 0;
  1349. }
  1350. cite {
  1351. display: block;
  1352. }
  1353. cite.author {
  1354. font-weight: 400;
  1355. }
  1356. cite.company {
  1357. font-size: .8em;
  1358. }
  1359. figure {
  1360. margin: 0 0 2em 0;
  1361. }
  1362. code {
  1363. background: rgba(144, 144, 144, 0.075);
  1364. border-radius: 4px;
  1365. border: solid 1px #dee1e3;
  1366. font-family: "Courier New", monospace;
  1367. font-size: 0.9em;
  1368. margin: 0 0.25em;
  1369. padding: 0.25em 0.65em;
  1370. }
  1371. pre {
  1372. -webkit-overflow-scrolling: touch;
  1373. font-family: "Courier New", monospace;
  1374. font-size: 0.9em;
  1375. margin: 0 0 2em 0;
  1376. }
  1377. pre code {
  1378. display: block;
  1379. line-height: 1.75;
  1380. padding: 1em 1.5em;
  1381. overflow-x: auto;
  1382. }
  1383. hr {
  1384. border: 0;
  1385. border-bottom: solid 1px #dee1e3;
  1386. margin: 2em 0;
  1387. }
  1388. hr.major {
  1389. margin: 3em 0;
  1390. }
  1391. .align-left {
  1392. text-align: left;
  1393. }
  1394. .align-center {
  1395. text-align: center;
  1396. }
  1397. .align-right {
  1398. text-align: right;
  1399. }
  1400. /* Section/Article */
  1401. section.special, article.special {
  1402. text-align: center;
  1403. }
  1404. header p {
  1405. color: #bbb;
  1406. position: relative;
  1407. margin: 0 0 1.5em 0;
  1408. }
  1409. header h1 + p {
  1410. font-size: 1.25em;
  1411. margin-top: -1em;
  1412. }
  1413. header h2 + p {
  1414. font-size: 1.25em;
  1415. margin-top: -1em;
  1416. }
  1417. header h3 + p {
  1418. font-size: 1.1em;
  1419. margin-top: -0.8em;
  1420. }
  1421. header h4 + p,
  1422. header h5 + p,
  1423. header h6 + p {
  1424. font-size: 0.9em;
  1425. margin-top: -0.6em;
  1426. }
  1427. /* Form */
  1428. form {
  1429. margin: 0 0 2em 0;
  1430. }
  1431. label {
  1432. color: #727a82;
  1433. display: block;
  1434. font-size: 0.9em;
  1435. font-weight: 700;
  1436. margin: 0 0 1em 0;
  1437. }
  1438. input[type="text"],
  1439. input[type="password"],
  1440. input[type="email"],
  1441. input[type="tel"],
  1442. input[type="date"],
  1443. input[type="number"],
  1444. select,
  1445. textarea {
  1446. -moz-appearance: none;
  1447. -webkit-appearance: none;
  1448. -ms-appearance: none;
  1449. appearance: none;
  1450. background: rgba(144, 144, 144, 0.075);
  1451. border-radius: 4px;
  1452. border: none;
  1453. border: solid 1px #dee1e3;
  1454. color: inherit;
  1455. display: block;
  1456. outline: 0;
  1457. padding: 0 1em;
  1458. text-decoration: none;
  1459. width: 100%;
  1460. }
  1461. input[type="text"]:invalid,
  1462. input[type="password"]:invalid,
  1463. input[type="email"]:invalid,
  1464. input[type="tel"]:invalid,
  1465. input[type="date"]:invalid,
  1466. input[type="number"]:invalid,
  1467. select:invalid,
  1468. textarea:invalid {
  1469. box-shadow: none;
  1470. }
  1471. input[type="text"]:focus,
  1472. input[type="password"]:focus,
  1473. input[type="email"]:focus,
  1474. input[type="tel"]:focus,
  1475. input[type="date"]:focus,
  1476. input[type="number"]:focus,
  1477. select:focus,
  1478. textarea:focus {
  1479. border-color: #25a2c3;
  1480. box-shadow: 0 0 0 1px #25a2c3;
  1481. }
  1482. .select-wrapper {
  1483. text-decoration: none;
  1484. display: block;
  1485. position: relative;
  1486. }
  1487. .select-wrapper:before {
  1488. content: "";
  1489. -moz-osx-font-smoothing: grayscale;
  1490. -webkit-font-smoothing: antialiased;
  1491. font-family: FontAwesome;
  1492. font-style: normal;
  1493. font-weight: normal;
  1494. text-transform: none !important;
  1495. }
  1496. .select-wrapper:before {
  1497. color: #dee1e3;
  1498. display: block;
  1499. height: 2.75em;
  1500. line-height: 2.75em;
  1501. pointer-events: none;
  1502. position: absolute;
  1503. right: 0;
  1504. text-align: center;
  1505. top: 0;
  1506. width: 2.75em;
  1507. }
  1508. .select-wrapper select::-ms-expand {
  1509. display: none;
  1510. }
  1511. input[type="text"],
  1512. input[type="password"],
  1513. input[type="email"],
  1514. input[type="date"],
  1515. input[type="number"],
  1516. select {
  1517. height: 3.5em;
  1518. line-height: 3.5em;
  1519. }
  1520. textarea {
  1521. padding: 0.75em 1em;
  1522. }
  1523. input[type="checkbox"],
  1524. input[type="radio"] {
  1525. -moz-appearance: none;
  1526. -webkit-appearance: none;
  1527. -ms-appearance: none;
  1528. appearance: none;
  1529. display: block;
  1530. float: left;
  1531. margin-right: -2em;
  1532. opacity: 0;
  1533. width: 1em;
  1534. z-index: -1;
  1535. }
  1536. input[type="checkbox"] + label,
  1537. input[type="radio"] + label {
  1538. text-decoration: none;
  1539. color: #767d85;
  1540. cursor: pointer;
  1541. display: inline-block;
  1542. font-size: 1em;
  1543. font-weight: 300;
  1544. padding-left: 2.4em;
  1545. padding-right: 0.75em;
  1546. position: relative;
  1547. }
  1548. input[type="checkbox"] + label:before,
  1549. input[type="radio"] + label:before {
  1550. -moz-osx-font-smoothing: grayscale;
  1551. -webkit-font-smoothing: antialiased;
  1552. font-family: FontAwesome;
  1553. font-style: normal;
  1554. font-weight: normal;
  1555. text-transform: none !important;
  1556. }
  1557. input[type="checkbox"] + label:before,
  1558. input[type="radio"] + label:before {
  1559. background: rgba(144, 144, 144, 0.075);
  1560. border-radius: 4px;
  1561. border: solid 1px #dee1e3;
  1562. content: '';
  1563. display: inline-block;
  1564. height: 1.65em;
  1565. left: 0;
  1566. line-height: 1.58125em;
  1567. position: absolute;
  1568. text-align: center;
  1569. top: 0;
  1570. width: 1.65em;
  1571. }
  1572. input[type="checkbox"]:checked + label:before,
  1573. input[type="radio"]:checked + label:before {
  1574. background: #f6755e;
  1575. border-color: #f6755e;
  1576. color: #ffffff;
  1577. content: '\f00c';
  1578. }
  1579. input[type="checkbox"]:focus + label:before,
  1580. input[type="radio"]:focus + label:before {
  1581. border-color: #25a2c3;
  1582. box-shadow: 0 0 0 1px #25a2c3;
  1583. }
  1584. input[type="checkbox"] + label:before {
  1585. border-radius: 4px;
  1586. }
  1587. input[type="radio"] + label:before {
  1588. border-radius: 100%;
  1589. }
  1590. ::-webkit-input-placeholder {
  1591. color: #bbb !important;
  1592. opacity: 1.0;
  1593. }
  1594. :-moz-placeholder {
  1595. color: #bbb !important;
  1596. opacity: 1.0;
  1597. }
  1598. ::-moz-placeholder {
  1599. color: #bbb !important;
  1600. opacity: 1.0;
  1601. }
  1602. :-ms-input-placeholder {
  1603. color: #bbb !important;
  1604. opacity: 1.0;
  1605. }
  1606. .formerize-placeholder {
  1607. color: #bbb !important;
  1608. opacity: 1.0;
  1609. }
  1610. /* Box */
  1611. .box {
  1612. border-radius: 4px;
  1613. border: solid 1px #dee1e3;
  1614. margin-bottom: 2em;
  1615. overflow: hidden;
  1616. }
  1617. .box > :last-child,
  1618. .box > :last-child > :last-child,
  1619. .box > :last-child > :last-child > :last-child {
  1620. margin-bottom: 0;
  1621. }
  1622. .box .image.fit {
  1623. margin: 0;
  1624. }
  1625. .box .content {
  1626. padding: 1.5em;
  1627. }
  1628. .box.alt {
  1629. border: 0;
  1630. border-radius: 0;
  1631. padding: 0;
  1632. }
  1633. /* Icon */
  1634. .icon {
  1635. text-decoration: none;
  1636. border-bottom: none;
  1637. position: relative;
  1638. }
  1639. .icon:before {
  1640. -moz-osx-font-smoothing: grayscale;
  1641. -webkit-font-smoothing: antialiased;
  1642. font-family: FontAwesome;
  1643. font-style: normal;
  1644. font-weight: normal;
  1645. text-transform: none !important;
  1646. }
  1647. .icon > .label {
  1648. display: none;
  1649. }
  1650. /* Image */
  1651. .image {
  1652. border: 0;
  1653. display: inline-block;
  1654. position: relative;
  1655. }
  1656. .image img {
  1657. display: block;
  1658. }
  1659. .image.left, .image.right {
  1660. max-width: 40%;
  1661. }
  1662. .image.left img, .image.right img {
  1663. width: 100%;
  1664. }
  1665. .image.left {
  1666. float: left;
  1667. padding: 0 1.5em 1em 0;
  1668. top: 0.25em;
  1669. }
  1670. .image.right {
  1671. float: right;
  1672. padding: 0 0 1em 1.5em;
  1673. top: 0.25em;
  1674. }
  1675. .image.fit {
  1676. display: block;
  1677. margin: 0 0 2em 0;
  1678. width: 100%;
  1679. }
  1680. .image.fit img {
  1681. width: 100%;
  1682. }
  1683. .image.round img {
  1684. border-radius: 100%;
  1685. }
  1686. .image.main {
  1687. display: block;
  1688. margin: 0 0 3em 0;
  1689. width: 100%;
  1690. }
  1691. .image.main img {
  1692. width: 100%;
  1693. }
  1694. /* List */
  1695. ol {
  1696. list-style: decimal;
  1697. margin: 0 0 2em 0;
  1698. padding-left: 1.25em;
  1699. }
  1700. ol li {
  1701. padding-left: 0.25em;
  1702. }
  1703. ul {
  1704. list-style: disc;
  1705. margin: 0 0 2em 0;
  1706. padding-left: 1em;
  1707. }
  1708. ul li {
  1709. padding-left: 0.5em;
  1710. }
  1711. ul.alt {
  1712. list-style: none;
  1713. padding-left: 0;
  1714. }
  1715. ul.alt li {
  1716. border-top: solid 1px #dee1e3;
  1717. padding: 0.5em 0;
  1718. }
  1719. ul.alt li:first-child {
  1720. border-top: 0;
  1721. padding-top: 0;
  1722. }
  1723. ul.icons {
  1724. cursor: default;
  1725. list-style: none;
  1726. padding-left: 0;
  1727. }
  1728. ul.icons li {
  1729. display: inline-block;
  1730. padding: 0 1em 0 0;
  1731. }
  1732. ul.icons li:last-child {
  1733. padding-right: 0;
  1734. }
  1735. ul.icons li .icon:before {
  1736. font-size: 2em;
  1737. }
  1738. ul.actions {
  1739. cursor: default;
  1740. list-style: none;
  1741. padding-left: 0;
  1742. }
  1743. ul.actions li {
  1744. display: inline-block;
  1745. padding: 0 1em 0 0;
  1746. vertical-align: middle;
  1747. }
  1748. ul.actions li:last-child {
  1749. padding-right: 0;
  1750. }
  1751. ul.actions.small li {
  1752. padding: 0 0.5em 0 0;
  1753. }
  1754. ul.actions.vertical li {
  1755. display: block;
  1756. padding: 1em 0 0 0;
  1757. }
  1758. ul.actions.vertical li:first-child {
  1759. padding-top: 0;
  1760. }
  1761. ul.actions.vertical li > * {
  1762. margin-bottom: 0;
  1763. }
  1764. ul.actions.vertical.small li {
  1765. padding: 0.5em 0 0 0;
  1766. }
  1767. ul.actions.vertical.small li:first-child {
  1768. padding-top: 0;
  1769. }
  1770. ul.actions.fit {
  1771. display: table;
  1772. margin-left: -1em;
  1773. padding: 0;
  1774. table-layout: fixed;
  1775. width: calc(100% + 1em);
  1776. }
  1777. ul.actions.fit li {
  1778. display: table-cell;
  1779. padding: 0 0 0 1em;
  1780. }
  1781. ul.actions.fit li > * {
  1782. margin-bottom: 0;
  1783. }
  1784. ul.actions.fit.small {
  1785. margin-left: -0.5em;
  1786. width: calc(100% + 0.5em);
  1787. }
  1788. ul.actions.fit.small li {
  1789. padding: 0 0 0 0.5em;
  1790. }
  1791. @media screen and (max-width: 480px) {
  1792. ul.actions {
  1793. margin: 0 0 2em 0;
  1794. }
  1795. ul.actions li {
  1796. padding: 1em 0 0 0;
  1797. display: block;
  1798. text-align: center;
  1799. width: 100%;
  1800. }
  1801. ul.actions li:first-child {
  1802. padding-top: 0;
  1803. }
  1804. ul.actions li > * {
  1805. width: 100%;
  1806. margin: 0 !important;
  1807. }
  1808. ul.actions li > *.icon:before {
  1809. margin-left: -2em;
  1810. }
  1811. ul.actions.small li {
  1812. padding: 0.5em 0 0 0;
  1813. }
  1814. ul.actions.small li:first-child {
  1815. padding-top: 0;
  1816. }
  1817. }
  1818. dl {
  1819. margin: 0 0 2em 0;
  1820. }
  1821. dl dt {
  1822. display: block;
  1823. font-weight: 700;
  1824. margin: 0 0 1em 0;
  1825. }
  1826. dl dd {
  1827. margin-left: 2em;
  1828. }
  1829. /* Table */
  1830. .table-wrapper {
  1831. -webkit-overflow-scrolling: touch;
  1832. overflow-x: auto;
  1833. }
  1834. table {
  1835. margin: 0 0 2em 0;
  1836. width: 100%;
  1837. }
  1838. table tbody tr {
  1839. border: solid 1px #dee1e3;
  1840. border-left: 0;
  1841. border-right: 0;
  1842. }
  1843. table tbody tr:nth-child(2n + 1) {
  1844. background-color: rgba(144, 144, 144, 0.075);
  1845. }
  1846. table td {
  1847. padding: 0.75em 0.75em;
  1848. }
  1849. table th {
  1850. color: #727a82;
  1851. font-size: 0.9em;
  1852. font-weight: 700;
  1853. padding: 0 0.75em 0.75em 0.75em;
  1854. text-align: left;
  1855. }
  1856. table thead {
  1857. border-bottom: solid 2px #dee1e3;
  1858. }
  1859. table tfoot {
  1860. border-top: solid 2px #dee1e3;
  1861. }
  1862. table.alt {
  1863. border-collapse: separate;
  1864. }
  1865. table.alt tbody tr td {
  1866. border: solid 1px #dee1e3;
  1867. border-left-width: 0;
  1868. border-top-width: 0;
  1869. }
  1870. table.alt tbody tr td:first-child {
  1871. border-left-width: 1px;
  1872. }
  1873. table.alt tbody tr:first-child td {
  1874. border-top-width: 1px;
  1875. }
  1876. table.alt thead {
  1877. border-bottom: 0;
  1878. }
  1879. table.alt tfoot {
  1880. border-top: 0;
  1881. }
  1882. /* Button */
  1883. input[type="submit"],
  1884. input[type="reset"],
  1885. input[type="button"],
  1886. button,
  1887. .button {
  1888. -moz-appearance: none;
  1889. -webkit-appearance: none;
  1890. -ms-appearance: none;
  1891. appearance: none;
  1892. -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1893. -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1894. -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1895. transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  1896. background-color: #f6755e;
  1897. border-radius: 4px;
  1898. border: 0;
  1899. color: #ffffff;
  1900. cursor: pointer;
  1901. display: inline-block;
  1902. font-family: "Montserrat", sans-serif;
  1903. height: 3.5em;
  1904. line-height: 3.5em;
  1905. padding: 0 3.5em;
  1906. text-align: center;
  1907. text-decoration: none;
  1908. white-space: nowrap;
  1909. text-transform: uppercase;
  1910. }
  1911. input[type="submit"]:hover,
  1912. input[type="reset"]:hover,
  1913. input[type="button"]:hover,
  1914. button:hover,
  1915. .button:hover {
  1916. background-color: #f78a76;
  1917. }
  1918. input[type="submit"]:active,
  1919. input[type="reset"]:active,
  1920. input[type="button"]:active,
  1921. button:active,
  1922. .button:active {
  1923. background-color: #f56046;
  1924. }
  1925. input[type="submit"].icon,
  1926. input[type="reset"].icon,
  1927. input[type="button"].icon,
  1928. button.icon,
  1929. .button.icon {
  1930. padding-left: 1.35em;
  1931. }
  1932. input[type="submit"].icon:before,
  1933. input[type="reset"].icon:before,
  1934. input[type="button"].icon:before,
  1935. button.icon:before,
  1936. .button.icon:before {
  1937. margin-right: 0.5em;
  1938. }
  1939. input[type="submit"].fit,
  1940. input[type="reset"].fit,
  1941. input[type="button"].fit,
  1942. button.fit,
  1943. .button.fit {
  1944. display: block;
  1945. margin: 0 0 1em 0;
  1946. width: 100%;
  1947. }
  1948. input[type="submit"].small,
  1949. input[type="reset"].small,
  1950. input[type="button"].small,
  1951. button.small,
  1952. .button.small {
  1953. font-size: 0.8em;
  1954. }
  1955. input[type="submit"].big,
  1956. input[type="reset"].big,
  1957. input[type="button"].big,
  1958. button.big,
  1959. .button.big {
  1960. font-size: 1.35em;
  1961. }
  1962. input[type="submit"].alt,
  1963. input[type="reset"].alt,
  1964. input[type="button"].alt,
  1965. button.alt,
  1966. .button.alt {
  1967. background-color: transparent;
  1968. box-shadow: inset 0 0 0 1px #dee1e3;
  1969. color: #727a82 !important;
  1970. }
  1971. input[type="submit"].alt:hover,
  1972. input[type="reset"].alt:hover,
  1973. input[type="button"].alt:hover,
  1974. button.alt:hover,
  1975. .button.alt:hover {
  1976. background-color: rgba(144, 144, 144, 0.075);
  1977. }
  1978. input[type="submit"].alt:active,
  1979. input[type="reset"].alt:active,
  1980. input[type="button"].alt:active,
  1981. button.alt:active,
  1982. .button.alt:active {
  1983. background-color: rgba(144, 144, 144, 0.2);
  1984. }
  1985. input[type="submit"].alt.icon:before,
  1986. input[type="reset"].alt.icon:before,
  1987. input[type="button"].alt.icon:before,
  1988. button.alt.icon:before,
  1989. .button.alt.icon:before {
  1990. color: #bbb;
  1991. }
  1992. input[type="submit"].special,
  1993. input[type="reset"].special,
  1994. input[type="button"].special,
  1995. button.special,
  1996. .button.special {
  1997. background-color: #25a2c3;
  1998. color: #ffffff !important;
  1999. }
  2000. input[type="submit"].special:hover,
  2001. input[type="reset"].special:hover,
  2002. input[type="button"].special:hover,
  2003. button.special:hover,
  2004. .button.special:hover {
  2005. background-color: #2bb3d7;
  2006. }
  2007. input[type="submit"].special:active,
  2008. input[type="reset"].special:active,
  2009. input[type="button"].special:active,
  2010. button.special:active,
  2011. .button.special:active {
  2012. background-color: #2190ae;
  2013. }
  2014. input[type="submit"].disabled, input[type="submit"]:disabled,
  2015. input[type="reset"].disabled,
  2016. input[type="reset"]:disabled,
  2017. input[type="button"].disabled,
  2018. input[type="button"]:disabled,
  2019. button.disabled,
  2020. button:disabled,
  2021. .button.disabled,
  2022. .button:disabled {
  2023. background-color: #767d85 !important;
  2024. box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
  2025. color: #fff !important;
  2026. cursor: default;
  2027. opacity: 0.25;
  2028. }
  2029. @media screen and (max-width: 480px) {
  2030. input[type="submit"],
  2031. input[type="reset"],
  2032. input[type="button"],
  2033. button,
  2034. .button {
  2035. padding: 0;
  2036. }
  2037. }
  2038. /* Flex */
  2039. .flex {
  2040. display: -ms-flexbox;
  2041. -ms-flex-wrap: nowrap;
  2042. -ms-flex-pack: justify;
  2043. -ms-flex-align: stretch;
  2044. display: -moz-flex;
  2045. display: -webkit-flex;
  2046. display: -ms-flex;
  2047. display: flex;
  2048. -moz-flex-wrap: nowrap;
  2049. -webkit-flex-wrap: nowrap;
  2050. -ms-flex-wrap: nowrap;
  2051. flex-wrap: nowrap;
  2052. -moz-justify-content: space-between;
  2053. -webkit-justify-content: space-between;
  2054. -ms-justify-content: space-between;
  2055. justify-content: space-between;
  2056. -moz-align-items: stretch;
  2057. -webkit-align-items: stretch;
  2058. -ms-align-items: stretch;
  2059. align-items: stretch;
  2060. }
  2061. .flex.flex-3 .flex-item {
  2062. -ms-flex: 0 1 auto;
  2063. -ms-flex-preferred-size: 30%;
  2064. -moz-flex-basis: 30%;
  2065. -webkit-flex-basis: 30%;
  2066. -ms-flex-basis: 30%;
  2067. flex-basis: 30%;
  2068. }
  2069. .flex.flex-3 .flex-item.left {
  2070. text-align: right;
  2071. }
  2072. @media screen and (max-width: 980px) {
  2073. .flex {
  2074. -ms-flex-wrap: wrap;
  2075. -moz-flex-wrap: wrap;
  2076. -webkit-flex-wrap: wrap;
  2077. -ms-flex-wrap: wrap;
  2078. flex-wrap: wrap;
  2079. }
  2080. .flex.flex-3 .flex-item {
  2081. -ms-flex-preferred-size: 100%;
  2082. -moz-flex-basis: 100%;
  2083. -webkit-flex-basis: 100%;
  2084. -ms-flex-basis: 100%;
  2085. flex-basis: 100%;
  2086. }
  2087. .flex.flex-3 .flex-item.left {
  2088. text-align: right;
  2089. }
  2090. }
  2091. /* Wrapper */
  2092. .wrapper {
  2093. padding: 6em 0 4em 0;
  2094. }
  2095. .wrapper h1, .wrapper h2, .wrapper h3, .wrapper h4, .wrapper h5 {
  2096. color: #25a2c3;
  2097. }
  2098. .wrapper.style1 {
  2099. background: #f6755e;
  2100. color: #fcdcd6;
  2101. }
  2102. .wrapper.style1 h1, .wrapper.style1 h2, .wrapper.style1 h3, .wrapper.style1 h4, .wrapper.style1 h5 {
  2103. color: #fff;
  2104. }
  2105. .wrapper.style1 cite.author {
  2106. color: #fff;
  2107. }
  2108. @media screen and (max-width: 980px) {
  2109. .wrapper {
  2110. padding: 3em 0 1em 0;
  2111. }
  2112. }
  2113. @media screen and (max-width: 480px) {
  2114. .wrapper {
  2115. padding: 2em 0 0.1em 0;
  2116. }
  2117. }
  2118. /* Header */
  2119. body {
  2120. padding-top: 6em;
  2121. }
  2122. #header {
  2123. -moz-align-items: center;
  2124. -webkit-align-items: center;
  2125. -ms-align-items: center;
  2126. align-items: center;
  2127. background: #fff;
  2128. cursor: default;
  2129. height: 6em;
  2130. left: 0;
  2131. line-height: 6em;
  2132. position: fixed;
  2133. top: 0;
  2134. width: 100%;
  2135. z-index: 10001;
  2136. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.075);
  2137. text-align: center;
  2138. }
  2139. #header .logo {
  2140. color: #f6755e;
  2141. font-family: "Montserrat", cursive;
  2142. font-size: 2.5em;
  2143. letter-spacing: 2px;
  2144. margin-top: -5px;
  2145. text-decoration: none;
  2146. display: inline-block;
  2147. }
  2148. #header nav {
  2149. position: absolute;
  2150. top: 0;
  2151. height: inherit;
  2152. line-height: inherit;
  2153. }
  2154. #header nav.left {
  2155. left: 2em;
  2156. }
  2157. #header nav.right {
  2158. right: 2em;
  2159. }
  2160. #header nav .button {
  2161. padding: 0 2em;
  2162. height: 3.25em;
  2163. line-height: 3.25em;
  2164. }
  2165. #header nav a {
  2166. text-decoration: none;
  2167. display: inline-block;
  2168. }
  2169. #header nav a[href="#menu"] {
  2170. text-decoration: none;
  2171. -webkit-tap-highlight-color: transparent;
  2172. font-size: 2em;
  2173. color: #dee1e3;
  2174. z-index: 10005;
  2175. }
  2176. #header nav a[href="#menu"]:before {
  2177. content: "";
  2178. -moz-osx-font-smoothing: grayscale;
  2179. -webkit-font-smoothing: antialiased;
  2180. font-family: FontAwesome;
  2181. font-style: normal;
  2182. font-weight: normal;
  2183. text-transform: none !important;
  2184. }
  2185. #header nav a[href="#menu"] span {
  2186. display: none;
  2187. }
  2188. #header nav a[href="#menu"]:before {
  2189. margin: 0 0.5em 0 0;
  2190. }
  2191. @media screen and (max-width: 980px) {
  2192. body {
  2193. padding-top: 44px;
  2194. }
  2195. #header {
  2196. height: 44px;
  2197. line-height: 44px;
  2198. }
  2199. #header .logo {
  2200. font-size: 1.25em;
  2201. text-align: center;
  2202. }
  2203. #header nav a[href="#menu"] {
  2204. font-size: 1.5em;
  2205. }
  2206. #header nav.left {
  2207. left: 1em;
  2208. }
  2209. #header nav.right {
  2210. display: none;
  2211. }
  2212. }
  2213. @media screen and (max-width: 480px) {
  2214. #header {
  2215. min-width: 320px;
  2216. }
  2217. }
  2218. /* Menu */
  2219. #menu {
  2220. -moz-transform: translateX(-20em);
  2221. -webkit-transform: translateX(-20em);
  2222. -ms-transform: translateX(-20em);
  2223. transform: translateX(-20em);
  2224. -moz-transition: -moz-transform 0.5s ease, visibility 0.5s;
  2225. -webkit-transition: -webkit-transform 0.5s ease, visibility 0.5s;
  2226. -ms-transition: -ms-transform 0.5s ease, visibility 0.5s;
  2227. transition: transform 0.5s ease, visibility 0.5s;
  2228. -webkit-overflow-scrolling: touch;
  2229. background: #25a2c3;
  2230. color: #ffffff;
  2231. height: 100%;
  2232. max-width: 80%;
  2233. overflow-y: auto;
  2234. padding: 3em 2em;
  2235. position: fixed;
  2236. left: 0;
  2237. top: 0;
  2238. visibility: hidden;
  2239. width: 20em;
  2240. z-index: 10002;
  2241. }
  2242. #menu > ul {
  2243. margin: 0 0 1em 0;
  2244. }
  2245. #menu > ul.links {
  2246. list-style: none;
  2247. padding: 0;
  2248. }
  2249. #menu > ul.links > li {
  2250. padding: 0;
  2251. }
  2252. #menu > ul.links > li > a:not(.button) {
  2253. border: 0;
  2254. border-top: solid 1px rgba(255, 255, 255, 0.25);
  2255. color: inherit;
  2256. display: block;
  2257. line-height: 3.5em;
  2258. text-decoration: none;
  2259. }
  2260. #menu > ul.links > li > .button {
  2261. display: block;
  2262. margin: 0.5em 0 0 0;
  2263. }
  2264. #menu > ul.links > li:first-child > a:not(.button) {
  2265. border-top: 0 !important;
  2266. }
  2267. #menu > ul.actions {
  2268. display: none;
  2269. }
  2270. #menu .close {
  2271. text-decoration: none;
  2272. -moz-transition: color 0.2s ease-in-out;
  2273. -webkit-transition: color 0.2s ease-in-out;
  2274. -ms-transition: color 0.2s ease-in-out;
  2275. transition: color 0.2s ease-in-out;
  2276. -webkit-tap-highlight-color: transparent;
  2277. border: 0;
  2278. color: #a7d9e7;
  2279. cursor: pointer;
  2280. display: block;
  2281. height: 3.25em;
  2282. line-height: 3.25em;
  2283. padding-right: 1.25em;
  2284. position: absolute;
  2285. right: 0;
  2286. text-align: right;
  2287. top: 0;
  2288. vertical-align: middle;
  2289. width: 7em;
  2290. }
  2291. #menu .close:before {
  2292. content: "";
  2293. -moz-osx-font-smoothing: grayscale;
  2294. -webkit-font-smoothing: antialiased;
  2295. font-family: FontAwesome;
  2296. font-style: normal;
  2297. font-weight: normal;
  2298. text-transform: none !important;
  2299. }
  2300. #menu .close:before {
  2301. font-size: 1.25em;
  2302. }
  2303. #menu .close:hover {
  2304. color: #ffffff;
  2305. }
  2306. @media screen and (max-width: 736px) {
  2307. #menu .close {
  2308. height: 4em;
  2309. line-height: 4em;
  2310. }
  2311. }
  2312. #menu.visible {
  2313. -moz-transform: translateX(0);
  2314. -webkit-transform: translateX(0);
  2315. -ms-transform: translateX(0);
  2316. transform: translateX(0);
  2317. visibility: visible;
  2318. }
  2319. @media screen and (max-width: 980px) {
  2320. #menu ul.actions {
  2321. display: block;
  2322. }
  2323. }
  2324. @media screen and (max-width: 736px) {
  2325. #menu {
  2326. padding: 2.5em 1.75em;
  2327. }
  2328. }
  2329. /* Banner */
  2330. #banner {
  2331. padding: 14em 0 12em 0;
  2332. background-image: url(../../images/banner.jpg);
  2333. background-size: cover;
  2334. background-position: center top;
  2335. background-repeat: no-repeat;
  2336. text-align: center;
  2337. }
  2338. #banner .content {
  2339. -moz-transition: opacity 1s ease-in-out, -moz-transform 0.75s ease-in-out;
  2340. -webkit-transition: opacity 1s ease-in-out, -webkit-transform 0.75s ease-in-out;
  2341. -ms-transition: opacity 1s ease-in-out, -ms-transform 0.75s ease-in-out;
  2342. transition: opacity 1s ease-in-out, transform 0.75s ease-in-out;
  2343. opacity: 1;
  2344. }
  2345. #banner h1 {
  2346. font-size: 3em;
  2347. color: #25a2c3;
  2348. line-height: 1em;
  2349. margin: 0 0 0.5em 0;
  2350. padding: 0;
  2351. }
  2352. #banner p {
  2353. font-size: 1.25em;
  2354. margin-bottom: 1.75em;
  2355. }
  2356. @media screen and (max-width: 1280px) {
  2357. #banner {
  2358. padding: 12em 0 10em 0;
  2359. }
  2360. }
  2361. @media screen and (max-width: 980px) {
  2362. #banner {
  2363. padding: 8em 6em 6em 6em;
  2364. }
  2365. #banner br {
  2366. display: none;
  2367. }
  2368. #banner h1 {
  2369. font-size: 2.25em;
  2370. }
  2371. }
  2372. @media screen and (max-width: 736px) {
  2373. #banner {
  2374. padding: 6em 4em 4em 4em;
  2375. }
  2376. }
  2377. @media screen and (max-width: 480px) {
  2378. #banner {
  2379. padding: 4em 2em 2em 2em;
  2380. }
  2381. #banner h1 {
  2382. font-size: 2em;
  2383. }
  2384. #banner p {
  2385. font-size: 1em;
  2386. }
  2387. #banner .button {
  2388. font-size: .9em;
  2389. }
  2390. }
  2391. body.is-loading #banner .content {
  2392. opacity: 0;
  2393. -moz-transform: translateY(1em);
  2394. -webkit-transform: translateY(1em);
  2395. -ms-transform: translateY(1em);
  2396. transform: translateY(1em);
  2397. }
  2398. /* Main */
  2399. #one .inner {
  2400. margin-bottom: 2em;
  2401. }
  2402. #one .flex-item {
  2403. display: -ms-flexbox;
  2404. -ms-flex-wrap: wrap;
  2405. -ms-flex-pack: justify;
  2406. display: -moz-flex;
  2407. display: -webkit-flex;
  2408. display: -ms-flex;
  2409. display: flex;
  2410. -moz-flex-wrap: wrap;
  2411. -webkit-flex-wrap: wrap;
  2412. -ms-flex-wrap: wrap;
  2413. flex-wrap: wrap;
  2414. -moz-justify-content: space-between;
  2415. -webkit-justify-content: space-between;
  2416. -ms-justify-content: space-between;
  2417. justify-content: space-between;
  2418. -moz-align-items: stretch;
  2419. -webkit-align-items: stretch;
  2420. -ms-align-items: stretch;
  2421. align-items: stretch;
  2422. }
  2423. #one .flex-item.left div:first-child, #one .flex-item.right div:first-child {
  2424. padding-top: 1em;
  2425. }
  2426. #one .flex-item.left div:last-child, #one .flex-item.right div:last-child {
  2427. -moz-align-self: -moz-flex-end;
  2428. -webkit-align-self: -webkit-flex-end;
  2429. -ms-align-self: -ms-flex-end;
  2430. align-self: flex-end;
  2431. }
  2432. #one .flex-item.left div p, #one .flex-item.right div p {
  2433. margin-bottom: 1em;
  2434. }
  2435. @media screen and (max-width: 1280px) {
  2436. #one .flex-item.left div:first-child, #one .flex-item.right div:first-child {
  2437. padding-top: 0;
  2438. }
  2439. #one .flex-item.left div p, #one .flex-item.right div p {
  2440. margin-bottom: 0;
  2441. }
  2442. }
  2443. @media screen and (max-width: 980px) {
  2444. #one .flex-item {
  2445. -moz-flex-direction: column;
  2446. -webkit-flex-direction: column;
  2447. -ms-flex-direction: column;
  2448. flex-direction: column;
  2449. text-align: center;
  2450. }
  2451. #one .flex-item.left br, #one .flex-item.right br {
  2452. display: none;
  2453. }
  2454. #one .flex-item.left div:first-child, #one .flex-item.right div:first-child {
  2455. padding-top: 0;
  2456. }
  2457. #one .flex-item.left div:last-child, #one .flex-item.right div:last-child {
  2458. -moz-align-self: center;
  2459. -webkit-align-self: center;
  2460. -ms-align-self: center;
  2461. align-self: center;
  2462. }
  2463. #one .flex-item.left div p, #one .flex-item.right div p {
  2464. margin-bottom: 2em;
  2465. }
  2466. }
  2467. #one .image.fit {
  2468. margin: 0;
  2469. }
  2470. @media screen and (max-width: 980px) {
  2471. #one .image.fit {
  2472. margin: 0 auto 2em auto;
  2473. max-width: 60%;
  2474. }
  2475. }
  2476. @media screen and (max-width: 480px) {
  2477. #one .image.fit {
  2478. margin: 0 auto 2em auto;
  2479. max-width: 90%;
  2480. }
  2481. }
  2482. @media screen and (max-width: 980px) {
  2483. #two blockquote br {
  2484. display: none;
  2485. }
  2486. }
  2487. @media screen and (max-width: 980px) {
  2488. #three {
  2489. text-align: center;
  2490. }
  2491. }
  2492. /* Footer */
  2493. #footer {
  2494. padding: 6em 0 4em 0;
  2495. background: #25a2c3;
  2496. text-align: center;
  2497. color: #c8e7f0;
  2498. }
  2499. #footer h2 {
  2500. color: #fff;
  2501. }
  2502. #footer .icon {
  2503. color: #f6755e;
  2504. }
  2505. #footer a {
  2506. color: #c8e7f0;
  2507. text-decoration: none;
  2508. }
  2509. #footer ul li {
  2510. padding: 0 2em;
  2511. }
  2512. #footer .copyright {
  2513. display: inline-block;
  2514. color: #a7d9e7;
  2515. font-size: 0.75em;
  2516. margin: 0 0 2em 0;
  2517. padding: 0;
  2518. text-align: center;
  2519. border-top: 1px solid rgba(255, 255, 255, 0.25);
  2520. padding: 2em 10em;
  2521. }
  2522. @media screen and (max-width: 980px) {
  2523. #footer {
  2524. padding: 3em 0 1em 0;
  2525. }
  2526. #footer ul li {
  2527. display: block;
  2528. padding: .25em 0;
  2529. }
  2530. }
  2531. @media screen and (max-width: 736px) {
  2532. #footer .copyright {
  2533. padding: 2em 5em;
  2534. }
  2535. }
  2536. @media screen and (max-width: 480px) {
  2537. #footer {
  2538. padding: 2em 0 0.1em 0;
  2539. }
  2540. #footer ul li {
  2541. font-size: .9em;
  2542. }
  2543. #footer ul li .icon:before {
  2544. margin-left: -1em;
  2545. }
  2546. #footer .copyright {
  2547. padding: 2em 0;
  2548. }
  2549. }