styles.css 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1578px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u433_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1578px;
  25. height:1569px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u433 {
  35. border-width:0px;
  36. position:absolute;
  37. left:0px;
  38. top:0px;
  39. width:1578px;
  40. height:1569px;
  41. display:flex;
  42. }
  43. #u433 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u433_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. }
  55. #u434_img {
  56. border-width:0px;
  57. position:absolute;
  58. left:-10px;
  59. top:-8px;
  60. width:1175px;
  61. height:648px;
  62. }
  63. #u434 {
  64. border-width:0px;
  65. position:absolute;
  66. left:20px;
  67. top:226px;
  68. width:1155px;
  69. height:628px;
  70. display:flex;
  71. }
  72. #u434 .text {
  73. position:absolute;
  74. align-self:center;
  75. padding:2px 2px 2px 2px;
  76. box-sizing:border-box;
  77. width:100%;
  78. }
  79. #u434_text {
  80. border-width:0px;
  81. word-wrap:break-word;
  82. text-transform:none;
  83. visibility:hidden;
  84. }
  85. #u435_div {
  86. border-width:0px;
  87. position:absolute;
  88. left:0px;
  89. top:0px;
  90. width:1538px;
  91. height:28px;
  92. background:inherit;
  93. background-color:rgba(244, 244, 245, 1);
  94. border:none;
  95. border-radius:0px;
  96. -moz-box-shadow:none;
  97. -webkit-box-shadow:none;
  98. box-shadow:none;
  99. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  100. font-weight:700;
  101. font-style:normal;
  102. }
  103. #u435 {
  104. border-width:0px;
  105. position:absolute;
  106. left:20px;
  107. top:179px;
  108. width:1538px;
  109. height:28px;
  110. display:flex;
  111. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  112. font-weight:700;
  113. font-style:normal;
  114. }
  115. #u435 .text {
  116. position:absolute;
  117. align-self:flex-start;
  118. padding:6px 0px 6px 14px;
  119. box-sizing:border-box;
  120. width:100%;
  121. }
  122. #u435_text {
  123. border-width:0px;
  124. word-wrap:break-word;
  125. text-transform:none;
  126. }
  127. #u436 {
  128. border-width:0px;
  129. position:absolute;
  130. left:0px;
  131. top:0px;
  132. width:0px;
  133. height:0px;
  134. }
  135. #u437_img {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:8px;
  141. height:28px;
  142. }
  143. #u437 {
  144. border-width:0px;
  145. position:absolute;
  146. left:20px;
  147. top:29px;
  148. width:8px;
  149. height:28px;
  150. display:flex;
  151. }
  152. #u437 .text {
  153. position:absolute;
  154. align-self:center;
  155. padding:2px 2px 2px 2px;
  156. box-sizing:border-box;
  157. width:100%;
  158. }
  159. #u437_text {
  160. border-width:0px;
  161. word-wrap:break-word;
  162. text-transform:none;
  163. visibility:hidden;
  164. }
  165. #u438_div {
  166. border-width:0px;
  167. position:absolute;
  168. left:0px;
  169. top:0px;
  170. width:144px;
  171. height:28px;
  172. background:inherit;
  173. background-color:rgba(255, 255, 255, 0);
  174. border:none;
  175. border-radius:0px;
  176. -moz-box-shadow:none;
  177. -webkit-box-shadow:none;
  178. box-shadow:none;
  179. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  180. font-weight:700;
  181. font-style:normal;
  182. }
  183. #u438 {
  184. border-width:0px;
  185. position:absolute;
  186. left:34px;
  187. top:29px;
  188. width:144px;
  189. height:28px;
  190. display:flex;
  191. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  192. font-weight:700;
  193. font-style:normal;
  194. }
  195. #u438 .text {
  196. position:absolute;
  197. align-self:flex-start;
  198. padding:0px 0px 0px 0px;
  199. box-sizing:border-box;
  200. width:100%;
  201. }
  202. #u438_text {
  203. border-width:0px;
  204. white-space:nowrap;
  205. text-transform:none;
  206. }
  207. #u439_div {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:74px;
  213. height:47px;
  214. background:inherit;
  215. background-color:rgba(255, 255, 255, 0);
  216. box-sizing:border-box;
  217. border-width:2px;
  218. border-style:solid;
  219. border-color:rgba(255, 199, 51, 1);
  220. border-radius:0px;
  221. -moz-box-shadow:none;
  222. -webkit-box-shadow:none;
  223. box-shadow:none;
  224. }
  225. #u439 {
  226. border-width:0px;
  227. position:absolute;
  228. left:168px;
  229. top:423px;
  230. width:74px;
  231. height:47px;
  232. display:flex;
  233. }
  234. #u439 .text {
  235. position:absolute;
  236. align-self:center;
  237. padding:2px 2px 2px 2px;
  238. box-sizing:border-box;
  239. width:100%;
  240. }
  241. #u439_text {
  242. border-width:0px;
  243. word-wrap:break-word;
  244. text-transform:none;
  245. visibility:hidden;
  246. }
  247. #u440_img {
  248. border-width:0px;
  249. position:absolute;
  250. left:-10px;
  251. top:-8px;
  252. width:44px;
  253. height:44px;
  254. }
  255. #u440 {
  256. border-width:0px;
  257. position:absolute;
  258. left:193px;
  259. top:412px;
  260. width:24px;
  261. height:24px;
  262. display:flex;
  263. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  264. font-weight:700;
  265. font-style:normal;
  266. font-size:14px;
  267. color:#1E1E1E;
  268. }
  269. #u440 .text {
  270. position:absolute;
  271. align-self:center;
  272. padding:2px 2px 2px 2px;
  273. box-sizing:border-box;
  274. width:100%;
  275. }
  276. #u440_text {
  277. border-width:0px;
  278. word-wrap:break-word;
  279. text-transform:none;
  280. }
  281. #u441_div {
  282. border-width:0px;
  283. position:absolute;
  284. left:0px;
  285. top:0px;
  286. width:1538px;
  287. height:28px;
  288. background:inherit;
  289. background-color:rgba(244, 244, 245, 1);
  290. border:none;
  291. border-radius:0px;
  292. -moz-box-shadow:none;
  293. -webkit-box-shadow:none;
  294. box-shadow:none;
  295. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  296. font-weight:700;
  297. font-style:normal;
  298. }
  299. #u441 {
  300. border-width:0px;
  301. position:absolute;
  302. left:20px;
  303. top:77px;
  304. width:1538px;
  305. height:28px;
  306. display:flex;
  307. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  308. font-weight:700;
  309. font-style:normal;
  310. }
  311. #u441 .text {
  312. position:absolute;
  313. align-self:flex-start;
  314. padding:6px 0px 6px 14px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u441_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. }
  323. #u442_div {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:1156px;
  329. height:24px;
  330. background:inherit;
  331. background-color:rgba(255, 255, 255, 0);
  332. border:none;
  333. border-radius:0px;
  334. -moz-box-shadow:none;
  335. -webkit-box-shadow:none;
  336. box-shadow:none;
  337. font-size:14px;
  338. line-height:24px;
  339. }
  340. #u442 {
  341. border-width:0px;
  342. position:absolute;
  343. left:20px;
  344. top:125px;
  345. width:1156px;
  346. height:24px;
  347. display:flex;
  348. font-size:14px;
  349. line-height:24px;
  350. }
  351. #u442 .text {
  352. position:absolute;
  353. align-self:flex-start;
  354. padding:0px 0px 0px 14px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u442_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. }
  363. #u443 {
  364. border-width:0px;
  365. position:absolute;
  366. left:0px;
  367. top:0px;
  368. width:0px;
  369. height:0px;
  370. }
  371. #u444_div {
  372. border-width:0px;
  373. position:absolute;
  374. left:0px;
  375. top:0px;
  376. width:328px;
  377. height:24px;
  378. background:inherit;
  379. background-color:rgba(255, 255, 255, 0);
  380. border:none;
  381. border-radius:0px;
  382. -moz-box-shadow:none;
  383. -webkit-box-shadow:none;
  384. box-shadow:none;
  385. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  386. font-weight:700;
  387. font-style:normal;
  388. font-size:16px;
  389. color:#14928A;
  390. }
  391. #u444 {
  392. border-width:0px;
  393. position:absolute;
  394. left:1230px;
  395. top:226px;
  396. width:328px;
  397. height:24px;
  398. display:flex;
  399. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  400. font-weight:700;
  401. font-style:normal;
  402. font-size:16px;
  403. color:#14928A;
  404. }
  405. #u444 .text {
  406. position:absolute;
  407. align-self:flex-start;
  408. padding:3px 0px 3px 0px;
  409. box-sizing:border-box;
  410. width:100%;
  411. }
  412. #u444_text {
  413. border-width:0px;
  414. word-wrap:break-word;
  415. text-transform:none;
  416. }
  417. #u445_div {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:303px;
  423. height:72px;
  424. background:inherit;
  425. background-color:rgba(255, 255, 255, 0);
  426. border:none;
  427. border-radius:0px;
  428. -moz-box-shadow:none;
  429. -webkit-box-shadow:none;
  430. box-shadow:none;
  431. line-height:24px;
  432. }
  433. #u445 {
  434. border-width:0px;
  435. position:absolute;
  436. left:1255px;
  437. top:257px;
  438. width:303px;
  439. height:72px;
  440. display:flex;
  441. line-height:24px;
  442. }
  443. #u445 .text {
  444. position:absolute;
  445. align-self:flex-start;
  446. padding:0px 0px 0px 0px;
  447. box-sizing:border-box;
  448. width:100%;
  449. }
  450. #u445_text {
  451. border-width:0px;
  452. word-wrap:break-word;
  453. text-transform:none;
  454. }
  455. #u446_img {
  456. border-width:0px;
  457. position:absolute;
  458. left:-10px;
  459. top:-8px;
  460. width:44px;
  461. height:44px;
  462. }
  463. #u446 {
  464. border-width:0px;
  465. position:absolute;
  466. left:1196px;
  467. top:226px;
  468. width:24px;
  469. height:24px;
  470. display:flex;
  471. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  472. font-weight:700;
  473. font-style:normal;
  474. font-size:14px;
  475. color:#1E1E1E;
  476. }
  477. #u446 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:2px 2px 2px 2px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u446_text {
  485. border-width:0px;
  486. word-wrap:break-word;
  487. text-transform:none;
  488. }
  489. #u447_div {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:25px;
  495. height:48px;
  496. background:inherit;
  497. background-color:rgba(255, 255, 255, 0);
  498. border:none;
  499. border-radius:0px;
  500. -moz-box-shadow:none;
  501. -webkit-box-shadow:none;
  502. box-shadow:none;
  503. line-height:24px;
  504. }
  505. #u447 {
  506. border-width:0px;
  507. position:absolute;
  508. left:1230px;
  509. top:257px;
  510. width:25px;
  511. height:48px;
  512. display:flex;
  513. line-height:24px;
  514. }
  515. #u447 .text {
  516. position:absolute;
  517. align-self:flex-start;
  518. padding:0px 0px 0px 0px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u447_text {
  523. border-width:0px;
  524. word-wrap:break-word;
  525. text-transform:none;
  526. }
  527. #u448 {
  528. border-width:0px;
  529. position:absolute;
  530. left:0px;
  531. top:0px;
  532. width:0px;
  533. height:0px;
  534. }
  535. #u449_img {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:363px;
  541. height:2px;
  542. }
  543. #u449 {
  544. border-width:0px;
  545. position:absolute;
  546. left:1196px;
  547. top:1379px;
  548. width:362px;
  549. height:1px;
  550. display:flex;
  551. }
  552. #u449 .text {
  553. position:absolute;
  554. align-self:center;
  555. padding:2px 2px 2px 2px;
  556. box-sizing:border-box;
  557. width:100%;
  558. }
  559. #u449_text {
  560. border-width:0px;
  561. word-wrap:break-word;
  562. text-transform:none;
  563. visibility:hidden;
  564. }
  565. #u450_div {
  566. border-width:0px;
  567. position:absolute;
  568. left:0px;
  569. top:0px;
  570. width:328px;
  571. height:24px;
  572. background:inherit;
  573. background-color:rgba(255, 255, 255, 0);
  574. border:none;
  575. border-radius:0px;
  576. -moz-box-shadow:none;
  577. -webkit-box-shadow:none;
  578. box-shadow:none;
  579. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  580. font-weight:700;
  581. font-style:normal;
  582. font-size:16px;
  583. }
  584. #u450 {
  585. border-width:0px;
  586. position:absolute;
  587. left:1230px;
  588. top:1400px;
  589. width:328px;
  590. height:24px;
  591. display:flex;
  592. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  593. font-weight:700;
  594. font-style:normal;
  595. font-size:16px;
  596. }
  597. #u450 .text {
  598. position:absolute;
  599. align-self:flex-start;
  600. padding:3px 0px 3px 0px;
  601. box-sizing:border-box;
  602. width:100%;
  603. }
  604. #u450_text {
  605. border-width:0px;
  606. word-wrap:break-word;
  607. text-transform:none;
  608. }
  609. #u451_div {
  610. border-width:0px;
  611. position:absolute;
  612. left:0px;
  613. top:0px;
  614. width:303px;
  615. height:120px;
  616. background:inherit;
  617. background-color:rgba(255, 255, 255, 0);
  618. border:none;
  619. border-radius:0px;
  620. -moz-box-shadow:none;
  621. -webkit-box-shadow:none;
  622. box-shadow:none;
  623. line-height:24px;
  624. }
  625. #u451 {
  626. border-width:0px;
  627. position:absolute;
  628. left:1255px;
  629. top:1431px;
  630. width:303px;
  631. height:120px;
  632. display:flex;
  633. line-height:24px;
  634. }
  635. #u451 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u451_text {
  643. border-width:0px;
  644. word-wrap:break-word;
  645. text-transform:none;
  646. }
  647. #u452_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:-10px;
  651. top:-8px;
  652. width:44px;
  653. height:44px;
  654. }
  655. #u452 {
  656. border-width:0px;
  657. position:absolute;
  658. left:1196px;
  659. top:1400px;
  660. width:24px;
  661. height:24px;
  662. display:flex;
  663. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  664. font-weight:700;
  665. font-style:normal;
  666. font-size:14px;
  667. color:#1E1E1E;
  668. }
  669. #u452 .text {
  670. position:absolute;
  671. align-self:center;
  672. padding:2px 2px 2px 2px;
  673. box-sizing:border-box;
  674. width:100%;
  675. }
  676. #u452_text {
  677. border-width:0px;
  678. word-wrap:break-word;
  679. text-transform:none;
  680. }
  681. #u453_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:25px;
  687. height:120px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. line-height:24px;
  696. }
  697. #u453 {
  698. border-width:0px;
  699. position:absolute;
  700. left:1230px;
  701. top:1431px;
  702. width:25px;
  703. height:120px;
  704. display:flex;
  705. line-height:24px;
  706. }
  707. #u453 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u453_text {
  715. border-width:0px;
  716. word-wrap:break-word;
  717. text-transform:none;
  718. }
  719. #u454 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u455_div {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:328px;
  733. height:24px;
  734. background:inherit;
  735. background-color:rgba(255, 255, 255, 0);
  736. border:none;
  737. border-radius:0px;
  738. -moz-box-shadow:none;
  739. -webkit-box-shadow:none;
  740. box-shadow:none;
  741. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  742. font-weight:700;
  743. font-style:normal;
  744. font-size:16px;
  745. }
  746. #u455 {
  747. border-width:0px;
  748. position:absolute;
  749. left:1230px;
  750. top:978px;
  751. width:328px;
  752. height:24px;
  753. display:flex;
  754. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  755. font-weight:700;
  756. font-style:normal;
  757. font-size:16px;
  758. }
  759. #u455 .text {
  760. position:absolute;
  761. align-self:flex-start;
  762. padding:3px 0px 3px 0px;
  763. box-sizing:border-box;
  764. width:100%;
  765. }
  766. #u455_text {
  767. border-width:0px;
  768. word-wrap:break-word;
  769. text-transform:none;
  770. }
  771. #u456_div {
  772. border-width:0px;
  773. position:absolute;
  774. left:0px;
  775. top:0px;
  776. width:328px;
  777. height:66px;
  778. background:inherit;
  779. background-color:rgba(255, 255, 255, 0);
  780. border:none;
  781. border-radius:0px;
  782. -moz-box-shadow:none;
  783. -webkit-box-shadow:none;
  784. box-shadow:none;
  785. line-height:22px;
  786. }
  787. #u456 {
  788. border-width:0px;
  789. position:absolute;
  790. left:1230px;
  791. top:1009px;
  792. width:328px;
  793. height:66px;
  794. display:flex;
  795. line-height:22px;
  796. }
  797. #u456 .text {
  798. position:absolute;
  799. align-self:flex-start;
  800. padding:0px 0px 0px 0px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u456_text {
  805. border-width:0px;
  806. word-wrap:break-word;
  807. text-transform:none;
  808. }
  809. #u457_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:-10px;
  813. top:-8px;
  814. width:44px;
  815. height:44px;
  816. }
  817. #u457 {
  818. border-width:0px;
  819. position:absolute;
  820. left:1196px;
  821. top:978px;
  822. width:24px;
  823. height:24px;
  824. display:flex;
  825. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  826. font-weight:700;
  827. font-style:normal;
  828. font-size:14px;
  829. color:#1E1E1E;
  830. }
  831. #u457 .text {
  832. position:absolute;
  833. align-self:center;
  834. padding:2px 2px 2px 2px;
  835. box-sizing:border-box;
  836. width:100%;
  837. }
  838. #u457_text {
  839. border-width:0px;
  840. word-wrap:break-word;
  841. text-transform:none;
  842. }
  843. #u458_img {
  844. border-width:0px;
  845. position:absolute;
  846. left:0px;
  847. top:0px;
  848. width:363px;
  849. height:2px;
  850. }
  851. #u458 {
  852. border-width:0px;
  853. position:absolute;
  854. left:1196px;
  855. top:957px;
  856. width:362px;
  857. height:1px;
  858. display:flex;
  859. }
  860. #u458 .text {
  861. position:absolute;
  862. align-self:center;
  863. padding:2px 2px 2px 2px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u458_text {
  868. border-width:0px;
  869. word-wrap:break-word;
  870. text-transform:none;
  871. visibility:hidden;
  872. }
  873. #u459 {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. #u460_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:328px;
  887. height:24px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 0);
  890. border:none;
  891. border-radius:0px;
  892. -moz-box-shadow:none;
  893. -webkit-box-shadow:none;
  894. box-shadow:none;
  895. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  896. font-weight:700;
  897. font-style:normal;
  898. font-size:16px;
  899. }
  900. #u460 {
  901. border-width:0px;
  902. position:absolute;
  903. left:1230px;
  904. top:884px;
  905. width:328px;
  906. height:24px;
  907. display:flex;
  908. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  909. font-weight:700;
  910. font-style:normal;
  911. font-size:16px;
  912. }
  913. #u460 .text {
  914. position:absolute;
  915. align-self:flex-start;
  916. padding:3px 0px 3px 0px;
  917. box-sizing:border-box;
  918. width:100%;
  919. }
  920. #u460_text {
  921. border-width:0px;
  922. word-wrap:break-word;
  923. text-transform:none;
  924. }
  925. #u461_div {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:328px;
  931. height:22px;
  932. background:inherit;
  933. background-color:rgba(255, 255, 255, 0);
  934. border:none;
  935. border-radius:0px;
  936. -moz-box-shadow:none;
  937. -webkit-box-shadow:none;
  938. box-shadow:none;
  939. line-height:22px;
  940. }
  941. #u461 {
  942. border-width:0px;
  943. position:absolute;
  944. left:1230px;
  945. top:915px;
  946. width:328px;
  947. height:22px;
  948. display:flex;
  949. line-height:22px;
  950. }
  951. #u461 .text {
  952. position:absolute;
  953. align-self:flex-start;
  954. padding:0px 0px 0px 0px;
  955. box-sizing:border-box;
  956. width:100%;
  957. }
  958. #u461_text {
  959. border-width:0px;
  960. word-wrap:break-word;
  961. text-transform:none;
  962. }
  963. #u462_img {
  964. border-width:0px;
  965. position:absolute;
  966. left:-10px;
  967. top:-8px;
  968. width:44px;
  969. height:44px;
  970. }
  971. #u462 {
  972. border-width:0px;
  973. position:absolute;
  974. left:1196px;
  975. top:884px;
  976. width:24px;
  977. height:24px;
  978. display:flex;
  979. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  980. font-weight:700;
  981. font-style:normal;
  982. font-size:14px;
  983. color:#1E1E1E;
  984. }
  985. #u462 .text {
  986. position:absolute;
  987. align-self:center;
  988. padding:2px 2px 2px 2px;
  989. box-sizing:border-box;
  990. width:100%;
  991. }
  992. #u462_text {
  993. border-width:0px;
  994. word-wrap:break-word;
  995. text-transform:none;
  996. }
  997. #u463_img {
  998. border-width:0px;
  999. position:absolute;
  1000. left:-10px;
  1001. top:-8px;
  1002. width:849px;
  1003. height:886px;
  1004. }
  1005. #u463 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:205px;
  1009. top:884px;
  1010. width:829px;
  1011. height:866px;
  1012. display:flex;
  1013. }
  1014. #u463 .text {
  1015. position:absolute;
  1016. align-self:center;
  1017. padding:2px 2px 2px 2px;
  1018. box-sizing:border-box;
  1019. width:100%;
  1020. }
  1021. #u463_text {
  1022. border-width:0px;
  1023. word-wrap:break-word;
  1024. text-transform:none;
  1025. visibility:hidden;
  1026. }
  1027. #u464_div {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:749px;
  1033. height:47px;
  1034. background:inherit;
  1035. background-color:rgba(255, 255, 255, 0);
  1036. box-sizing:border-box;
  1037. border-width:2px;
  1038. border-style:solid;
  1039. border-color:rgba(255, 199, 51, 1);
  1040. border-radius:0px;
  1041. -moz-box-shadow:none;
  1042. -webkit-box-shadow:none;
  1043. box-shadow:none;
  1044. }
  1045. #u464 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:263px;
  1049. top:1299px;
  1050. width:749px;
  1051. height:47px;
  1052. display:flex;
  1053. }
  1054. #u464 .text {
  1055. position:absolute;
  1056. align-self:center;
  1057. padding:2px 2px 2px 2px;
  1058. box-sizing:border-box;
  1059. width:100%;
  1060. }
  1061. #u464_text {
  1062. border-width:0px;
  1063. word-wrap:break-word;
  1064. text-transform:none;
  1065. visibility:hidden;
  1066. }
  1067. #u465_img {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:-10px;
  1071. top:-8px;
  1072. width:44px;
  1073. height:44px;
  1074. }
  1075. #u465 {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:250px;
  1079. top:1311px;
  1080. width:24px;
  1081. height:24px;
  1082. display:flex;
  1083. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1084. font-weight:700;
  1085. font-style:normal;
  1086. font-size:14px;
  1087. color:#1E1E1E;
  1088. }
  1089. #u465 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u465_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. }
  1101. #u466_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:749px;
  1107. height:47px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. box-sizing:border-box;
  1111. border-width:2px;
  1112. border-style:solid;
  1113. border-color:rgba(255, 199, 51, 1);
  1114. border-radius:0px;
  1115. -moz-box-shadow:none;
  1116. -webkit-box-shadow:none;
  1117. box-shadow:none;
  1118. }
  1119. #u466 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:263px;
  1123. top:1362px;
  1124. width:749px;
  1125. height:47px;
  1126. display:flex;
  1127. }
  1128. #u466 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 2px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u466_text {
  1136. border-width:0px;
  1137. word-wrap:break-word;
  1138. text-transform:none;
  1139. visibility:hidden;
  1140. }
  1141. #u467_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:-10px;
  1145. top:-8px;
  1146. width:44px;
  1147. height:44px;
  1148. }
  1149. #u467 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:250px;
  1153. top:1374px;
  1154. width:24px;
  1155. height:24px;
  1156. display:flex;
  1157. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1158. font-weight:700;
  1159. font-style:normal;
  1160. font-size:14px;
  1161. color:#1E1E1E;
  1162. }
  1163. #u467 .text {
  1164. position:absolute;
  1165. align-self:center;
  1166. padding:2px 2px 2px 2px;
  1167. box-sizing:border-box;
  1168. width:100%;
  1169. }
  1170. #u467_text {
  1171. border-width:0px;
  1172. word-wrap:break-word;
  1173. text-transform:none;
  1174. }
  1175. #u468_div {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:0px;
  1179. top:0px;
  1180. width:350px;
  1181. height:47px;
  1182. background:inherit;
  1183. background-color:rgba(255, 255, 255, 0);
  1184. box-sizing:border-box;
  1185. border-width:2px;
  1186. border-style:solid;
  1187. border-color:rgba(255, 199, 51, 1);
  1188. border-radius:0px;
  1189. -moz-box-shadow:none;
  1190. -webkit-box-shadow:none;
  1191. box-shadow:none;
  1192. }
  1193. #u468 {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:263px;
  1197. top:1424px;
  1198. width:350px;
  1199. height:47px;
  1200. display:flex;
  1201. }
  1202. #u468 .text {
  1203. position:absolute;
  1204. align-self:center;
  1205. padding:2px 2px 2px 2px;
  1206. box-sizing:border-box;
  1207. width:100%;
  1208. }
  1209. #u468_text {
  1210. border-width:0px;
  1211. word-wrap:break-word;
  1212. text-transform:none;
  1213. visibility:hidden;
  1214. }
  1215. #u469_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:-10px;
  1219. top:-8px;
  1220. width:44px;
  1221. height:44px;
  1222. }
  1223. #u469 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:250px;
  1227. top:1436px;
  1228. width:24px;
  1229. height:24px;
  1230. display:flex;
  1231. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1232. font-weight:700;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#1E1E1E;
  1236. }
  1237. #u469 .text {
  1238. position:absolute;
  1239. align-self:center;
  1240. padding:2px 2px 2px 2px;
  1241. box-sizing:border-box;
  1242. width:100%;
  1243. }
  1244. #u469_text {
  1245. border-width:0px;
  1246. word-wrap:break-word;
  1247. text-transform:none;
  1248. }
  1249. #u470_div {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:350px;
  1255. height:47px;
  1256. background:inherit;
  1257. background-color:rgba(255, 255, 255, 0);
  1258. box-sizing:border-box;
  1259. border-width:2px;
  1260. border-style:solid;
  1261. border-color:rgba(255, 199, 51, 1);
  1262. border-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. }
  1267. #u470 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:662px;
  1271. top:1424px;
  1272. width:350px;
  1273. height:47px;
  1274. display:flex;
  1275. }
  1276. #u470 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:2px 2px 2px 2px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u470_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. visibility:hidden;
  1288. }
  1289. #u471_img {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:-10px;
  1293. top:-8px;
  1294. width:44px;
  1295. height:44px;
  1296. }
  1297. #u471 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:649px;
  1301. top:1436px;
  1302. width:24px;
  1303. height:24px;
  1304. display:flex;
  1305. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1306. font-weight:700;
  1307. font-style:normal;
  1308. font-size:14px;
  1309. color:#1E1E1E;
  1310. }
  1311. #u471 .text {
  1312. position:absolute;
  1313. align-self:center;
  1314. padding:2px 2px 2px 2px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u471_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. }
  1323. #u472_div {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:749px;
  1329. height:47px;
  1330. background:inherit;
  1331. background-color:rgba(255, 255, 255, 0);
  1332. box-sizing:border-box;
  1333. border-width:2px;
  1334. border-style:solid;
  1335. border-color:rgba(255, 199, 51, 1);
  1336. border-radius:0px;
  1337. -moz-box-shadow:none;
  1338. -webkit-box-shadow:none;
  1339. box-shadow:none;
  1340. }
  1341. #u472 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:263px;
  1345. top:1487px;
  1346. width:749px;
  1347. height:47px;
  1348. display:flex;
  1349. }
  1350. #u472 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u472_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u473_img {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:-10px;
  1367. top:-8px;
  1368. width:44px;
  1369. height:44px;
  1370. }
  1371. #u473 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:250px;
  1375. top:1499px;
  1376. width:24px;
  1377. height:24px;
  1378. display:flex;
  1379. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1380. font-weight:700;
  1381. font-style:normal;
  1382. font-size:14px;
  1383. color:#1E1E1E;
  1384. }
  1385. #u473 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u473_text {
  1393. border-width:0px;
  1394. word-wrap:break-word;
  1395. text-transform:none;
  1396. }
  1397. #u474_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:749px;
  1403. height:65px;
  1404. background:inherit;
  1405. background-color:rgba(255, 255, 255, 0);
  1406. box-sizing:border-box;
  1407. border-width:2px;
  1408. border-style:solid;
  1409. border-color:rgba(255, 199, 51, 1);
  1410. border-radius:0px;
  1411. -moz-box-shadow:none;
  1412. -webkit-box-shadow:none;
  1413. box-shadow:none;
  1414. }
  1415. #u474 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:263px;
  1419. top:1601px;
  1420. width:749px;
  1421. height:65px;
  1422. display:flex;
  1423. }
  1424. #u474 .text {
  1425. position:absolute;
  1426. align-self:center;
  1427. padding:2px 2px 2px 2px;
  1428. box-sizing:border-box;
  1429. width:100%;
  1430. }
  1431. #u474_text {
  1432. border-width:0px;
  1433. word-wrap:break-word;
  1434. text-transform:none;
  1435. visibility:hidden;
  1436. }
  1437. #u475_img {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:-10px;
  1441. top:-8px;
  1442. width:44px;
  1443. height:44px;
  1444. }
  1445. #u475 {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:250px;
  1449. top:1622px;
  1450. width:24px;
  1451. height:24px;
  1452. display:flex;
  1453. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1454. font-weight:700;
  1455. font-style:normal;
  1456. font-size:14px;
  1457. color:#1E1E1E;
  1458. }
  1459. #u475 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u475_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. }
  1471. #u476_div {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:84px;
  1477. height:52px;
  1478. background:inherit;
  1479. background-color:rgba(255, 255, 255, 0);
  1480. box-sizing:border-box;
  1481. border-width:2px;
  1482. border-style:solid;
  1483. border-color:rgba(255, 199, 51, 1);
  1484. border-radius:0px;
  1485. -moz-box-shadow:none;
  1486. -webkit-box-shadow:none;
  1487. box-shadow:none;
  1488. }
  1489. #u476 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:937px;
  1493. top:1675px;
  1494. width:84px;
  1495. height:52px;
  1496. display:flex;
  1497. }
  1498. #u476 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:2px 2px 2px 2px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u476_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. visibility:hidden;
  1510. }
  1511. #u477_img {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:-10px;
  1515. top:-8px;
  1516. width:44px;
  1517. height:44px;
  1518. }
  1519. #u477 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:1010px;
  1523. top:1689px;
  1524. width:24px;
  1525. height:24px;
  1526. display:flex;
  1527. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1528. font-weight:700;
  1529. font-style:normal;
  1530. font-size:14px;
  1531. color:#1E1E1E;
  1532. }
  1533. #u477 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u477_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. }
  1545. #u478 {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:0px;
  1551. height:0px;
  1552. }
  1553. #u479_div {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:328px;
  1559. height:24px;
  1560. background:inherit;
  1561. background-color:rgba(255, 255, 255, 0);
  1562. border:none;
  1563. border-radius:0px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1568. font-weight:700;
  1569. font-style:normal;
  1570. font-size:16px;
  1571. }
  1572. #u479 {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:1230px;
  1576. top:1284px;
  1577. width:328px;
  1578. height:24px;
  1579. display:flex;
  1580. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1581. font-weight:700;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. }
  1585. #u479 .text {
  1586. position:absolute;
  1587. align-self:flex-start;
  1588. padding:3px 0px 3px 0px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u479_text {
  1593. border-width:0px;
  1594. word-wrap:break-word;
  1595. text-transform:none;
  1596. }
  1597. #u480_div {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:328px;
  1603. height:44px;
  1604. background:inherit;
  1605. background-color:rgba(255, 255, 255, 0);
  1606. border:none;
  1607. border-radius:0px;
  1608. -moz-box-shadow:none;
  1609. -webkit-box-shadow:none;
  1610. box-shadow:none;
  1611. line-height:22px;
  1612. }
  1613. #u480 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:1230px;
  1617. top:1315px;
  1618. width:328px;
  1619. height:44px;
  1620. display:flex;
  1621. line-height:22px;
  1622. }
  1623. #u480 .text {
  1624. position:absolute;
  1625. align-self:flex-start;
  1626. padding:0px 0px 0px 0px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u480_text {
  1631. border-width:0px;
  1632. word-wrap:break-word;
  1633. text-transform:none;
  1634. }
  1635. #u481_img {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:-10px;
  1639. top:-8px;
  1640. width:44px;
  1641. height:44px;
  1642. }
  1643. #u481 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:1196px;
  1647. top:1284px;
  1648. width:24px;
  1649. height:24px;
  1650. display:flex;
  1651. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1652. font-weight:700;
  1653. font-style:normal;
  1654. font-size:14px;
  1655. color:#1E1E1E;
  1656. }
  1657. #u481 .text {
  1658. position:absolute;
  1659. align-self:center;
  1660. padding:2px 2px 2px 2px;
  1661. box-sizing:border-box;
  1662. width:100%;
  1663. }
  1664. #u481_text {
  1665. border-width:0px;
  1666. word-wrap:break-word;
  1667. text-transform:none;
  1668. }
  1669. #u482_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:363px;
  1675. height:2px;
  1676. }
  1677. #u482 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:1196px;
  1681. top:1263px;
  1682. width:362px;
  1683. height:1px;
  1684. display:flex;
  1685. }
  1686. #u482 .text {
  1687. position:absolute;
  1688. align-self:center;
  1689. padding:2px 2px 2px 2px;
  1690. box-sizing:border-box;
  1691. width:100%;
  1692. }
  1693. #u482_text {
  1694. border-width:0px;
  1695. word-wrap:break-word;
  1696. text-transform:none;
  1697. visibility:hidden;
  1698. }
  1699. #u483 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:0px;
  1705. height:0px;
  1706. }
  1707. #u484_div {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:0px;
  1711. top:0px;
  1712. width:328px;
  1713. height:24px;
  1714. background:inherit;
  1715. background-color:rgba(255, 255, 255, 0);
  1716. border:none;
  1717. border-radius:0px;
  1718. -moz-box-shadow:none;
  1719. -webkit-box-shadow:none;
  1720. box-shadow:none;
  1721. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1722. font-weight:700;
  1723. font-style:normal;
  1724. font-size:16px;
  1725. }
  1726. #u484 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:1230px;
  1730. top:1592px;
  1731. width:328px;
  1732. height:24px;
  1733. display:flex;
  1734. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1735. font-weight:700;
  1736. font-style:normal;
  1737. font-size:16px;
  1738. }
  1739. #u484 .text {
  1740. position:absolute;
  1741. align-self:flex-start;
  1742. padding:3px 0px 3px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u484_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u485_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:328px;
  1757. height:44px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-radius:0px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. line-height:22px;
  1766. }
  1767. #u485 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:1230px;
  1771. top:1623px;
  1772. width:328px;
  1773. height:44px;
  1774. display:flex;
  1775. line-height:22px;
  1776. }
  1777. #u485 .text {
  1778. position:absolute;
  1779. align-self:flex-start;
  1780. padding:0px 0px 0px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u485_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u486_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:-10px;
  1793. top:-8px;
  1794. width:44px;
  1795. height:44px;
  1796. }
  1797. #u486 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:1196px;
  1801. top:1592px;
  1802. width:24px;
  1803. height:24px;
  1804. display:flex;
  1805. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1806. font-weight:700;
  1807. font-style:normal;
  1808. font-size:14px;
  1809. color:#1E1E1E;
  1810. }
  1811. #u486 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 2px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u486_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u487_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:363px;
  1829. height:2px;
  1830. }
  1831. #u487 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:1196px;
  1835. top:1571px;
  1836. width:362px;
  1837. height:1px;
  1838. display:flex;
  1839. }
  1840. #u487 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 2px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u487_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. visibility:hidden;
  1852. }
  1853. #u488 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:0px;
  1859. height:0px;
  1860. }
  1861. #u489_img {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:363px;
  1867. height:2px;
  1868. }
  1869. #u489 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:1196px;
  1873. top:1095px;
  1874. width:362px;
  1875. height:1px;
  1876. display:flex;
  1877. }
  1878. #u489 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u489_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. visibility:hidden;
  1890. }
  1891. #u490_div {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:328px;
  1897. height:24px;
  1898. background:inherit;
  1899. background-color:rgba(255, 255, 255, 0);
  1900. border:none;
  1901. border-radius:0px;
  1902. -moz-box-shadow:none;
  1903. -webkit-box-shadow:none;
  1904. box-shadow:none;
  1905. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1906. font-weight:700;
  1907. font-style:normal;
  1908. font-size:16px;
  1909. }
  1910. #u490 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:1230px;
  1914. top:1116px;
  1915. width:328px;
  1916. height:24px;
  1917. display:flex;
  1918. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1919. font-weight:700;
  1920. font-style:normal;
  1921. font-size:16px;
  1922. }
  1923. #u490 .text {
  1924. position:absolute;
  1925. align-self:flex-start;
  1926. padding:3px 0px 3px 0px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u490_text {
  1931. border-width:0px;
  1932. word-wrap:break-word;
  1933. text-transform:none;
  1934. }
  1935. #u491_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:303px;
  1941. height:96px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 0);
  1944. border:none;
  1945. border-radius:0px;
  1946. -moz-box-shadow:none;
  1947. -webkit-box-shadow:none;
  1948. box-shadow:none;
  1949. line-height:24px;
  1950. }
  1951. #u491 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:1255px;
  1955. top:1147px;
  1956. width:303px;
  1957. height:96px;
  1958. display:flex;
  1959. line-height:24px;
  1960. }
  1961. #u491 .text {
  1962. position:absolute;
  1963. align-self:flex-start;
  1964. padding:0px 0px 0px 0px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u491_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. }
  1973. #u492_img {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:-10px;
  1977. top:-8px;
  1978. width:44px;
  1979. height:44px;
  1980. }
  1981. #u492 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:1196px;
  1985. top:1116px;
  1986. width:24px;
  1987. height:24px;
  1988. display:flex;
  1989. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1990. font-weight:700;
  1991. font-style:normal;
  1992. font-size:14px;
  1993. color:#1E1E1E;
  1994. }
  1995. #u492 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 2px 2px 2px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u492_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u493_div {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:25px;
  2013. height:96px;
  2014. background:inherit;
  2015. background-color:rgba(255, 255, 255, 0);
  2016. border:none;
  2017. border-radius:0px;
  2018. -moz-box-shadow:none;
  2019. -webkit-box-shadow:none;
  2020. box-shadow:none;
  2021. line-height:24px;
  2022. }
  2023. #u493 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:1230px;
  2027. top:1147px;
  2028. width:25px;
  2029. height:96px;
  2030. display:flex;
  2031. line-height:24px;
  2032. }
  2033. #u493 .text {
  2034. position:absolute;
  2035. align-self:flex-start;
  2036. padding:0px 0px 0px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u493_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u494 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:0px;
  2051. height:0px;
  2052. }
  2053. #u495_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:363px;
  2059. height:2px;
  2060. }
  2061. #u495 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:1196px;
  2065. top:1687px;
  2066. width:362px;
  2067. height:1px;
  2068. display:flex;
  2069. }
  2070. #u495 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 2px 2px 2px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u495_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u496_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:328px;
  2089. height:24px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 0);
  2092. border:none;
  2093. border-radius:0px;
  2094. -moz-box-shadow:none;
  2095. -webkit-box-shadow:none;
  2096. box-shadow:none;
  2097. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2098. font-weight:700;
  2099. font-style:normal;
  2100. font-size:16px;
  2101. color:#14928A;
  2102. }
  2103. #u496 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:1230px;
  2107. top:1708px;
  2108. width:328px;
  2109. height:24px;
  2110. display:flex;
  2111. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2112. font-weight:700;
  2113. font-style:normal;
  2114. font-size:16px;
  2115. color:#14928A;
  2116. }
  2117. #u496 .text {
  2118. position:absolute;
  2119. align-self:flex-start;
  2120. padding:3px 0px 3px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u496_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. }
  2129. #u497_div {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:303px;
  2135. height:144px;
  2136. background:inherit;
  2137. background-color:rgba(255, 255, 255, 0);
  2138. border:none;
  2139. border-radius:0px;
  2140. -moz-box-shadow:none;
  2141. -webkit-box-shadow:none;
  2142. box-shadow:none;
  2143. line-height:24px;
  2144. }
  2145. #u497 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:1255px;
  2149. top:1739px;
  2150. width:303px;
  2151. height:144px;
  2152. display:flex;
  2153. line-height:24px;
  2154. }
  2155. #u497 .text {
  2156. position:absolute;
  2157. align-self:flex-start;
  2158. padding:0px 0px 0px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u497_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u498_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:-10px;
  2171. top:-8px;
  2172. width:44px;
  2173. height:44px;
  2174. }
  2175. #u498 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:1196px;
  2179. top:1708px;
  2180. width:24px;
  2181. height:24px;
  2182. display:flex;
  2183. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2184. font-weight:700;
  2185. font-style:normal;
  2186. font-size:14px;
  2187. color:#1E1E1E;
  2188. }
  2189. #u498 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 2px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u498_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u499_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:25px;
  2207. height:144px;
  2208. background:inherit;
  2209. background-color:rgba(255, 255, 255, 0);
  2210. border:none;
  2211. border-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. line-height:24px;
  2216. }
  2217. #u499 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:1230px;
  2221. top:1739px;
  2222. width:25px;
  2223. height:144px;
  2224. display:flex;
  2225. line-height:24px;
  2226. }
  2227. #u499 .text {
  2228. position:absolute;
  2229. align-self:flex-start;
  2230. padding:0px 0px 0px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u499_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. }