main.css 52 KB

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