styles.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  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. #u1260 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u1261_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:8px;
  33. height:28px;
  34. }
  35. #u1261 {
  36. border-width:0px;
  37. position:absolute;
  38. left:7px;
  39. top:21px;
  40. width:8px;
  41. height:28px;
  42. display:flex;
  43. }
  44. #u1261 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u1261_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u1262_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:190px;
  63. height:28px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 0);
  66. border:none;
  67. border-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  72. font-weight:700;
  73. font-style:normal;
  74. }
  75. #u1262 {
  76. border-width:0px;
  77. position:absolute;
  78. left:21px;
  79. top:21px;
  80. width:190px;
  81. height:28px;
  82. display:flex;
  83. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  84. font-weight:700;
  85. font-style:normal;
  86. }
  87. #u1262 .text {
  88. position:absolute;
  89. align-self:flex-start;
  90. padding:0px 0px 0px 0px;
  91. box-sizing:border-box;
  92. width:100%;
  93. }
  94. #u1262_text {
  95. border-width:0px;
  96. white-space:nowrap;
  97. text-transform:none;
  98. }
  99. #u1263_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:108px;
  105. height:21px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 0);
  108. border:none;
  109. border-radius:0px;
  110. -moz-box-shadow:none;
  111. -webkit-box-shadow:none;
  112. box-shadow:none;
  113. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  114. font-weight:700;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u1263 {
  119. border-width:0px;
  120. position:absolute;
  121. left:21px;
  122. top:67px;
  123. width:108px;
  124. height:21px;
  125. display:flex;
  126. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  127. font-weight:700;
  128. font-style:normal;
  129. font-size:18px;
  130. }
  131. #u1263 .text {
  132. position:absolute;
  133. align-self:flex-start;
  134. padding:0px 0px 0px 0px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u1263_text {
  139. border-width:0px;
  140. white-space:nowrap;
  141. text-transform:none;
  142. }
  143. #u1264_div {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:938px;
  149. height:74px;
  150. background:inherit;
  151. background-color:rgba(255, 255, 255, 0);
  152. border:none;
  153. border-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-size:16px;
  158. line-height:24px;
  159. }
  160. #u1264 {
  161. border-width:0px;
  162. position:absolute;
  163. left:57px;
  164. top:97px;
  165. width:938px;
  166. height:74px;
  167. display:flex;
  168. font-size:16px;
  169. line-height:24px;
  170. }
  171. #u1264 .text {
  172. position:absolute;
  173. align-self:flex-start;
  174. padding:0px 0px 0px 0px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u1264_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. }
  183. #u1265_div {
  184. border-width:0px;
  185. position:absolute;
  186. left:0px;
  187. top:0px;
  188. width:267px;
  189. height:22px;
  190. background:inherit;
  191. background-color:rgba(255, 255, 255, 0);
  192. border:none;
  193. border-radius:0px;
  194. -moz-box-shadow:none;
  195. -webkit-box-shadow:none;
  196. box-shadow:none;
  197. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  198. font-weight:700;
  199. font-style:normal;
  200. font-size:18px;
  201. }
  202. #u1265 {
  203. border-width:0px;
  204. position:absolute;
  205. left:21px;
  206. top:203px;
  207. width:267px;
  208. height:22px;
  209. display:flex;
  210. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  211. font-weight:700;
  212. font-style:normal;
  213. font-size:18px;
  214. }
  215. #u1265 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u1265_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u1266_img {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:1155px;
  233. height:583px;
  234. }
  235. #u1266 {
  236. border-width:0px;
  237. position:absolute;
  238. left:21px;
  239. top:1587px;
  240. width:1155px;
  241. height:583px;
  242. display:flex;
  243. }
  244. #u1266 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u1266_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u1267_div {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:90px;
  263. height:22px;
  264. background:inherit;
  265. background-color:rgba(255, 255, 255, 0);
  266. border:none;
  267. border-radius:0px;
  268. -moz-box-shadow:none;
  269. -webkit-box-shadow:none;
  270. box-shadow:none;
  271. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  272. font-weight:700;
  273. font-style:normal;
  274. font-size:18px;
  275. }
  276. #u1267 {
  277. border-width:0px;
  278. position:absolute;
  279. left:21px;
  280. top:1561px;
  281. width:90px;
  282. height:22px;
  283. display:flex;
  284. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  285. font-weight:700;
  286. font-style:normal;
  287. font-size:18px;
  288. }
  289. #u1267 .text {
  290. position:absolute;
  291. align-self:flex-start;
  292. padding:0px 0px 0px 0px;
  293. box-sizing:border-box;
  294. width:100%;
  295. }
  296. #u1267_text {
  297. border-width:0px;
  298. white-space:nowrap;
  299. text-transform:none;
  300. }
  301. #u1268_div {
  302. border-width:0px;
  303. position:absolute;
  304. left:0px;
  305. top:0px;
  306. width:90px;
  307. height:22px;
  308. background:inherit;
  309. background-color:rgba(255, 255, 255, 0);
  310. border:none;
  311. border-radius:0px;
  312. -moz-box-shadow:none;
  313. -webkit-box-shadow:none;
  314. box-shadow:none;
  315. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  316. font-weight:700;
  317. font-style:normal;
  318. font-size:18px;
  319. }
  320. #u1268 {
  321. border-width:0px;
  322. position:absolute;
  323. left:21px;
  324. top:2196px;
  325. width:90px;
  326. height:22px;
  327. display:flex;
  328. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  329. font-weight:700;
  330. font-style:normal;
  331. font-size:18px;
  332. }
  333. #u1268 .text {
  334. position:absolute;
  335. align-self:flex-start;
  336. padding:0px 0px 0px 0px;
  337. box-sizing:border-box;
  338. width:100%;
  339. }
  340. #u1268_text {
  341. border-width:0px;
  342. white-space:nowrap;
  343. text-transform:none;
  344. }
  345. #u1269_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:1155px;
  351. height:583px;
  352. }
  353. #u1269 {
  354. border-width:0px;
  355. position:absolute;
  356. left:21px;
  357. top:2870px;
  358. width:1155px;
  359. height:583px;
  360. display:flex;
  361. }
  362. #u1269 .text {
  363. position:absolute;
  364. align-self:center;
  365. padding:2px 2px 2px 2px;
  366. box-sizing:border-box;
  367. width:100%;
  368. }
  369. #u1269_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. visibility:hidden;
  374. }
  375. #u1270_div {
  376. border-width:0px;
  377. position:absolute;
  378. left:0px;
  379. top:0px;
  380. width:120px;
  381. height:22px;
  382. background:inherit;
  383. background-color:rgba(255, 255, 255, 0);
  384. border:none;
  385. border-radius:0px;
  386. -moz-box-shadow:none;
  387. -webkit-box-shadow:none;
  388. box-shadow:none;
  389. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  390. font-weight:700;
  391. font-style:normal;
  392. font-size:18px;
  393. }
  394. #u1270 {
  395. border-width:0px;
  396. position:absolute;
  397. left:21px;
  398. top:2838px;
  399. width:120px;
  400. height:22px;
  401. display:flex;
  402. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  403. font-weight:700;
  404. font-style:normal;
  405. font-size:18px;
  406. }
  407. #u1270 .text {
  408. position:absolute;
  409. align-self:flex-start;
  410. padding:0px 0px 0px 0px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u1270_text {
  415. border-width:0px;
  416. white-space:nowrap;
  417. text-transform:none;
  418. }
  419. #u1271_img {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:1155px;
  425. height:583px;
  426. }
  427. #u1271 {
  428. border-width:0px;
  429. position:absolute;
  430. left:21px;
  431. top:3518px;
  432. width:1155px;
  433. height:583px;
  434. display:flex;
  435. }
  436. #u1271 .text {
  437. position:absolute;
  438. align-self:center;
  439. padding:2px 2px 2px 2px;
  440. box-sizing:border-box;
  441. width:100%;
  442. }
  443. #u1271_text {
  444. border-width:0px;
  445. word-wrap:break-word;
  446. text-transform:none;
  447. visibility:hidden;
  448. }
  449. #u1272_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:120px;
  455. height:22px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  464. font-weight:700;
  465. font-style:normal;
  466. font-size:18px;
  467. }
  468. #u1272 {
  469. border-width:0px;
  470. position:absolute;
  471. left:21px;
  472. top:3492px;
  473. width:120px;
  474. height:22px;
  475. display:flex;
  476. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  477. font-weight:700;
  478. font-style:normal;
  479. font-size:18px;
  480. }
  481. #u1272 .text {
  482. position:absolute;
  483. align-self:flex-start;
  484. padding:0px 0px 0px 0px;
  485. box-sizing:border-box;
  486. width:100%;
  487. }
  488. #u1272_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u1273_img {
  494. border-width:0px;
  495. position:absolute;
  496. left:-4px;
  497. top:-4px;
  498. width:30px;
  499. height:30px;
  500. }
  501. #u1273 {
  502. border-width:0px;
  503. position:absolute;
  504. left:162px;
  505. top:3698px;
  506. width:20px;
  507. height:20px;
  508. display:flex;
  509. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  510. font-weight:700;
  511. font-style:normal;
  512. font-size:14px;
  513. color:#1E1E1E;
  514. }
  515. #u1273 .text {
  516. position:absolute;
  517. align-self:center;
  518. padding:2px 2px 2px 2px;
  519. box-sizing:border-box;
  520. width:100%;
  521. }
  522. #u1273_text {
  523. border-width:0px;
  524. word-wrap:break-word;
  525. text-transform:none;
  526. }
  527. #u1274_img {
  528. border-width:0px;
  529. position:absolute;
  530. left:-4px;
  531. top:-4px;
  532. width:30px;
  533. height:30px;
  534. }
  535. #u1274 {
  536. border-width:0px;
  537. position:absolute;
  538. left:289px;
  539. top:3698px;
  540. width:20px;
  541. height:20px;
  542. display:flex;
  543. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  544. font-weight:700;
  545. font-style:normal;
  546. font-size:14px;
  547. color:#1E1E1E;
  548. }
  549. #u1274 .text {
  550. position:absolute;
  551. align-self:center;
  552. padding:2px 2px 2px 2px;
  553. box-sizing:border-box;
  554. width:100%;
  555. }
  556. #u1274_text {
  557. border-width:0px;
  558. word-wrap:break-word;
  559. text-transform:none;
  560. }
  561. #u1275_img {
  562. border-width:0px;
  563. position:absolute;
  564. left:-4px;
  565. top:-4px;
  566. width:30px;
  567. height:30px;
  568. }
  569. #u1275 {
  570. border-width:0px;
  571. position:absolute;
  572. left:1030px;
  573. top:3734px;
  574. width:20px;
  575. height:20px;
  576. display:flex;
  577. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  578. font-weight:700;
  579. font-style:normal;
  580. font-size:14px;
  581. color:#1E1E1E;
  582. }
  583. #u1275 .text {
  584. position:absolute;
  585. align-self:center;
  586. padding:2px 2px 2px 2px;
  587. box-sizing:border-box;
  588. width:100%;
  589. }
  590. #u1275_text {
  591. border-width:0px;
  592. word-wrap:break-word;
  593. text-transform:none;
  594. }
  595. #u1276_img {
  596. border-width:0px;
  597. position:absolute;
  598. left:-4px;
  599. top:-4px;
  600. width:30px;
  601. height:30px;
  602. }
  603. #u1276 {
  604. border-width:0px;
  605. position:absolute;
  606. left:1082px;
  607. top:3734px;
  608. width:20px;
  609. height:20px;
  610. display:flex;
  611. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  612. font-weight:700;
  613. font-style:normal;
  614. font-size:14px;
  615. color:#1E1E1E;
  616. }
  617. #u1276 .text {
  618. position:absolute;
  619. align-self:center;
  620. padding:2px 2px 2px 2px;
  621. box-sizing:border-box;
  622. width:100%;
  623. }
  624. #u1276_text {
  625. border-width:0px;
  626. word-wrap:break-word;
  627. text-transform:none;
  628. }
  629. #u1277 {
  630. border-width:0px;
  631. position:absolute;
  632. left:0px;
  633. top:0px;
  634. width:0px;
  635. height:0px;
  636. }
  637. #u1278_img {
  638. border-width:0px;
  639. position:absolute;
  640. left:-4px;
  641. top:-4px;
  642. width:40px;
  643. height:40px;
  644. }
  645. #u1278 {
  646. border-width:0px;
  647. position:absolute;
  648. left:1181px;
  649. top:3518px;
  650. width:30px;
  651. height:30px;
  652. display:flex;
  653. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  654. font-weight:700;
  655. font-style:normal;
  656. font-size:18px;
  657. color:#1E1E1E;
  658. }
  659. #u1278 .text {
  660. position:absolute;
  661. align-self:center;
  662. padding:2px 2px 2px 2px;
  663. box-sizing:border-box;
  664. width:100%;
  665. }
  666. #u1278_text {
  667. border-width:0px;
  668. word-wrap:break-word;
  669. text-transform:none;
  670. }
  671. #u1279_div {
  672. border-width:0px;
  673. position:absolute;
  674. left:0px;
  675. top:0px;
  676. width:143px;
  677. height:18px;
  678. background:inherit;
  679. background-color:rgba(255, 255, 255, 0);
  680. border:none;
  681. border-radius:0px;
  682. -moz-box-shadow:none;
  683. -webkit-box-shadow:none;
  684. box-shadow:none;
  685. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  686. font-weight:700;
  687. font-style:normal;
  688. font-size:16px;
  689. color:#FF0000;
  690. }
  691. #u1279 {
  692. border-width:0px;
  693. position:absolute;
  694. left:1221px;
  695. top:3525px;
  696. width:143px;
  697. height:18px;
  698. display:flex;
  699. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  700. font-weight:700;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FF0000;
  704. }
  705. #u1279 .text {
  706. position:absolute;
  707. align-self:flex-start;
  708. padding:0px 0px 0px 0px;
  709. box-sizing:border-box;
  710. width:100%;
  711. }
  712. #u1279_text {
  713. border-width:0px;
  714. word-wrap:break-word;
  715. text-transform:none;
  716. }
  717. #u1280_div {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:352px;
  723. height:88px;
  724. background:inherit;
  725. background-color:rgba(255, 255, 255, 0);
  726. border:none;
  727. border-radius:0px;
  728. -moz-box-shadow:none;
  729. -webkit-box-shadow:none;
  730. box-shadow:none;
  731. line-height:22px;
  732. }
  733. #u1280 {
  734. border-width:0px;
  735. position:absolute;
  736. left:1221px;
  737. top:3563px;
  738. width:352px;
  739. height:88px;
  740. display:flex;
  741. line-height:22px;
  742. }
  743. #u1280 .text {
  744. position:absolute;
  745. align-self:flex-start;
  746. padding:0px 0px 0px 0px;
  747. box-sizing:border-box;
  748. width:100%;
  749. }
  750. #u1280_text {
  751. border-width:0px;
  752. word-wrap:break-word;
  753. text-transform:none;
  754. }
  755. #u1281 {
  756. border-width:0px;
  757. position:absolute;
  758. left:0px;
  759. top:0px;
  760. width:0px;
  761. height:0px;
  762. }
  763. #u1282_img {
  764. border-width:0px;
  765. position:absolute;
  766. left:-4px;
  767. top:-4px;
  768. width:40px;
  769. height:40px;
  770. }
  771. #u1282 {
  772. border-width:0px;
  773. position:absolute;
  774. left:1181px;
  775. top:3661px;
  776. width:30px;
  777. height:30px;
  778. display:flex;
  779. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  780. font-weight:700;
  781. font-style:normal;
  782. font-size:18px;
  783. color:#1E1E1E;
  784. }
  785. #u1282 .text {
  786. position:absolute;
  787. align-self:center;
  788. padding:2px 2px 2px 2px;
  789. box-sizing:border-box;
  790. width:100%;
  791. }
  792. #u1282_text {
  793. border-width:0px;
  794. word-wrap:break-word;
  795. text-transform:none;
  796. }
  797. #u1283_div {
  798. border-width:0px;
  799. position:absolute;
  800. left:0px;
  801. top:0px;
  802. width:143px;
  803. height:18px;
  804. background:inherit;
  805. background-color:rgba(255, 255, 255, 0);
  806. border:none;
  807. border-radius:0px;
  808. -moz-box-shadow:none;
  809. -webkit-box-shadow:none;
  810. box-shadow:none;
  811. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  812. font-weight:700;
  813. font-style:normal;
  814. font-size:16px;
  815. color:#FF0000;
  816. }
  817. #u1283 {
  818. border-width:0px;
  819. position:absolute;
  820. left:1221px;
  821. top:3668px;
  822. width:143px;
  823. height:18px;
  824. display:flex;
  825. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  826. font-weight:700;
  827. font-style:normal;
  828. font-size:16px;
  829. color:#FF0000;
  830. }
  831. #u1283 .text {
  832. position:absolute;
  833. align-self:flex-start;
  834. padding:0px 0px 0px 0px;
  835. box-sizing:border-box;
  836. width:100%;
  837. }
  838. #u1283_text {
  839. border-width:0px;
  840. word-wrap:break-word;
  841. text-transform:none;
  842. }
  843. #u1284_div {
  844. border-width:0px;
  845. position:absolute;
  846. left:0px;
  847. top:0px;
  848. width:352px;
  849. height:22px;
  850. background:inherit;
  851. background-color:rgba(255, 255, 255, 0);
  852. border:none;
  853. border-radius:0px;
  854. -moz-box-shadow:none;
  855. -webkit-box-shadow:none;
  856. box-shadow:none;
  857. line-height:22px;
  858. }
  859. #u1284 {
  860. border-width:0px;
  861. position:absolute;
  862. left:1221px;
  863. top:3706px;
  864. width:352px;
  865. height:22px;
  866. display:flex;
  867. line-height:22px;
  868. }
  869. #u1284 .text {
  870. position:absolute;
  871. align-self:flex-start;
  872. padding:0px 0px 0px 0px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u1284_text {
  877. border-width:0px;
  878. word-wrap:break-word;
  879. text-transform:none;
  880. }
  881. #u1285 {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:0px;
  887. height:0px;
  888. }
  889. #u1286_img {
  890. border-width:0px;
  891. position:absolute;
  892. left:-4px;
  893. top:-4px;
  894. width:40px;
  895. height:40px;
  896. }
  897. #u1286 {
  898. border-width:0px;
  899. position:absolute;
  900. left:1181px;
  901. top:3752px;
  902. width:30px;
  903. height:30px;
  904. display:flex;
  905. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  906. font-weight:700;
  907. font-style:normal;
  908. font-size:18px;
  909. color:#1E1E1E;
  910. }
  911. #u1286 .text {
  912. position:absolute;
  913. align-self:center;
  914. padding:2px 2px 2px 2px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u1286_text {
  919. border-width:0px;
  920. word-wrap:break-word;
  921. text-transform:none;
  922. }
  923. #u1287_div {
  924. border-width:0px;
  925. position:absolute;
  926. left:0px;
  927. top:0px;
  928. width:119px;
  929. height:18px;
  930. background:inherit;
  931. background-color:rgba(255, 255, 255, 0);
  932. border:none;
  933. border-radius:0px;
  934. -moz-box-shadow:none;
  935. -webkit-box-shadow:none;
  936. box-shadow:none;
  937. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  938. font-weight:700;
  939. font-style:normal;
  940. font-size:16px;
  941. color:#FF0000;
  942. }
  943. #u1287 {
  944. border-width:0px;
  945. position:absolute;
  946. left:1221px;
  947. top:3759px;
  948. width:119px;
  949. height:18px;
  950. display:flex;
  951. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  952. font-weight:700;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FF0000;
  956. }
  957. #u1287 .text {
  958. position:absolute;
  959. align-self:flex-start;
  960. padding:0px 0px 0px 0px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u1287_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. }
  969. #u1288_div {
  970. border-width:0px;
  971. position:absolute;
  972. left:0px;
  973. top:0px;
  974. width:352px;
  975. height:44px;
  976. background:inherit;
  977. background-color:rgba(255, 255, 255, 0);
  978. border:none;
  979. border-radius:0px;
  980. -moz-box-shadow:none;
  981. -webkit-box-shadow:none;
  982. box-shadow:none;
  983. line-height:22px;
  984. }
  985. #u1288 {
  986. border-width:0px;
  987. position:absolute;
  988. left:1221px;
  989. top:3797px;
  990. width:352px;
  991. height:44px;
  992. display:flex;
  993. line-height:22px;
  994. }
  995. #u1288 .text {
  996. position:absolute;
  997. align-self:flex-start;
  998. padding:0px 0px 0px 0px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u1288_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. }
  1007. #u1289 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:0px;
  1013. height:0px;
  1014. }
  1015. #u1290_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:-4px;
  1019. top:-4px;
  1020. width:40px;
  1021. height:40px;
  1022. }
  1023. #u1290 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:1181px;
  1027. top:3847px;
  1028. width:30px;
  1029. height:30px;
  1030. display:flex;
  1031. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1032. font-weight:700;
  1033. font-style:normal;
  1034. font-size:18px;
  1035. color:#1E1E1E;
  1036. }
  1037. #u1290 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 2px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u1290_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. }
  1049. #u1291_div {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:119px;
  1055. height:18px;
  1056. background:inherit;
  1057. background-color:rgba(255, 255, 255, 0);
  1058. border:none;
  1059. border-radius:0px;
  1060. -moz-box-shadow:none;
  1061. -webkit-box-shadow:none;
  1062. box-shadow:none;
  1063. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1064. font-weight:700;
  1065. font-style:normal;
  1066. font-size:16px;
  1067. }
  1068. #u1291 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:1221px;
  1072. top:3854px;
  1073. width:119px;
  1074. height:18px;
  1075. display:flex;
  1076. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1077. font-weight:700;
  1078. font-style:normal;
  1079. font-size:16px;
  1080. }
  1081. #u1291 .text {
  1082. position:absolute;
  1083. align-self:flex-start;
  1084. padding:0px 0px 0px 0px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u1291_text {
  1089. border-width:0px;
  1090. word-wrap:break-word;
  1091. text-transform:none;
  1092. }
  1093. #u1292_div {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:352px;
  1099. height:22px;
  1100. background:inherit;
  1101. background-color:rgba(255, 255, 255, 0);
  1102. border:none;
  1103. border-radius:0px;
  1104. -moz-box-shadow:none;
  1105. -webkit-box-shadow:none;
  1106. box-shadow:none;
  1107. line-height:22px;
  1108. }
  1109. #u1292 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:1221px;
  1113. top:3892px;
  1114. width:352px;
  1115. height:22px;
  1116. display:flex;
  1117. line-height:22px;
  1118. }
  1119. #u1292 .text {
  1120. position:absolute;
  1121. align-self:flex-start;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u1292_text {
  1127. border-width:0px;
  1128. word-wrap:break-word;
  1129. text-transform:none;
  1130. }
  1131. #u1293 {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:1221px;
  1135. top:3757px;
  1136. width:64px;
  1137. height:23px;
  1138. overflow:hidden;
  1139. background-image:url('../../resources/images/transparent.gif');
  1140. }
  1141. #u1294_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:245px;
  1147. height:88px;
  1148. }
  1149. #u1294 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:1221px;
  1153. top:3661px;
  1154. width:245px;
  1155. height:88px;
  1156. display:flex;
  1157. text-align:left;
  1158. }
  1159. #u1294 .text {
  1160. position:absolute;
  1161. align-self:center;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u1294_text {
  1167. border-width:0px;
  1168. word-wrap:break-word;
  1169. text-transform:none;
  1170. }
  1171. #u1295 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:1226px;
  1175. top:3523px;
  1176. width:87px;
  1177. height:23px;
  1178. overflow:hidden;
  1179. background-image:url('../../resources/images/transparent.gif');
  1180. }
  1181. #u1296_img {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:0px;
  1185. top:0px;
  1186. width:245px;
  1187. height:88px;
  1188. }
  1189. #u1296 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:1226px;
  1193. top:3420px;
  1194. width:245px;
  1195. height:88px;
  1196. display:flex;
  1197. text-align:left;
  1198. }
  1199. #u1296 .text {
  1200. position:absolute;
  1201. align-self:center;
  1202. padding:2px 2px 2px 2px;
  1203. box-sizing:border-box;
  1204. width:100%;
  1205. }
  1206. #u1296_text {
  1207. border-width:0px;
  1208. word-wrap:break-word;
  1209. text-transform:none;
  1210. }
  1211. #u1297 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:1226px;
  1215. top:3666px;
  1216. width:102px;
  1217. height:23px;
  1218. overflow:hidden;
  1219. background-image:url('../../resources/images/transparent.gif');
  1220. }
  1221. #u1298_img {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:245px;
  1227. height:88px;
  1228. }
  1229. #u1298 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:1221px;
  1233. top:3558px;
  1234. width:245px;
  1235. height:88px;
  1236. display:flex;
  1237. text-align:left;
  1238. }
  1239. #u1298 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u1298_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. }
  1251. #u1299_img {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:1155px;
  1257. height:583px;
  1258. }
  1259. #u1299 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:21px;
  1263. top:260px;
  1264. width:1155px;
  1265. height:583px;
  1266. display:flex;
  1267. }
  1268. #u1299 .text {
  1269. position:absolute;
  1270. align-self:center;
  1271. padding:2px 2px 2px 2px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u1299_text {
  1276. border-width:0px;
  1277. word-wrap:break-word;
  1278. text-transform:none;
  1279. visibility:hidden;
  1280. }
  1281. #u1300_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:-4px;
  1285. top:-4px;
  1286. width:30px;
  1287. height:30px;
  1288. }
  1289. #u1300 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:1056px;
  1293. top:489px;
  1294. width:20px;
  1295. height:20px;
  1296. display:flex;
  1297. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1298. font-weight:700;
  1299. font-style:normal;
  1300. font-size:14px;
  1301. color:#1E1E1E;
  1302. }
  1303. #u1300 .text {
  1304. position:absolute;
  1305. align-self:center;
  1306. padding:2px 2px 2px 2px;
  1307. box-sizing:border-box;
  1308. width:100%;
  1309. }
  1310. #u1300_text {
  1311. border-width:0px;
  1312. word-wrap:break-word;
  1313. text-transform:none;
  1314. }
  1315. #u1301_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:-4px;
  1319. top:-4px;
  1320. width:30px;
  1321. height:30px;
  1322. }
  1323. #u1301 {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:1108px;
  1327. top:489px;
  1328. width:20px;
  1329. height:20px;
  1330. display:flex;
  1331. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1332. font-weight:700;
  1333. font-style:normal;
  1334. font-size:14px;
  1335. color:#1E1E1E;
  1336. }
  1337. #u1301 .text {
  1338. position:absolute;
  1339. align-self:center;
  1340. padding:2px 2px 2px 2px;
  1341. box-sizing:border-box;
  1342. width:100%;
  1343. }
  1344. #u1301_text {
  1345. border-width:0px;
  1346. word-wrap:break-word;
  1347. text-transform:none;
  1348. }
  1349. #u1302 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:0px;
  1355. height:0px;
  1356. }
  1357. #u1303_img {
  1358. border-width:0px;
  1359. position:absolute;
  1360. left:-4px;
  1361. top:-4px;
  1362. width:40px;
  1363. height:40px;
  1364. }
  1365. #u1303 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:1181px;
  1369. top:261px;
  1370. width:30px;
  1371. height:30px;
  1372. display:flex;
  1373. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1374. font-weight:700;
  1375. font-style:normal;
  1376. font-size:18px;
  1377. color:#1E1E1E;
  1378. }
  1379. #u1303 .text {
  1380. position:absolute;
  1381. align-self:center;
  1382. padding:2px 2px 2px 2px;
  1383. box-sizing:border-box;
  1384. width:100%;
  1385. }
  1386. #u1303_text {
  1387. border-width:0px;
  1388. word-wrap:break-word;
  1389. text-transform:none;
  1390. }
  1391. #u1304_div {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:143px;
  1397. height:18px;
  1398. background:inherit;
  1399. background-color:rgba(255, 255, 255, 0);
  1400. border:none;
  1401. border-radius:0px;
  1402. -moz-box-shadow:none;
  1403. -webkit-box-shadow:none;
  1404. box-shadow:none;
  1405. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1406. font-weight:700;
  1407. font-style:normal;
  1408. font-size:16px;
  1409. }
  1410. #u1304 {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:1221px;
  1414. top:268px;
  1415. width:143px;
  1416. height:18px;
  1417. display:flex;
  1418. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1419. font-weight:700;
  1420. font-style:normal;
  1421. font-size:16px;
  1422. }
  1423. #u1304 .text {
  1424. position:absolute;
  1425. align-self:flex-start;
  1426. padding:0px 0px 0px 0px;
  1427. box-sizing:border-box;
  1428. width:100%;
  1429. }
  1430. #u1304_text {
  1431. border-width:0px;
  1432. word-wrap:break-word;
  1433. text-transform:none;
  1434. }
  1435. #u1305_div {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:352px;
  1441. height:44px;
  1442. background:inherit;
  1443. background-color:rgba(255, 255, 255, 0);
  1444. border:none;
  1445. border-radius:0px;
  1446. -moz-box-shadow:none;
  1447. -webkit-box-shadow:none;
  1448. box-shadow:none;
  1449. line-height:22px;
  1450. }
  1451. #u1305 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:1221px;
  1455. top:306px;
  1456. width:352px;
  1457. height:44px;
  1458. display:flex;
  1459. line-height:22px;
  1460. }
  1461. #u1305 .text {
  1462. position:absolute;
  1463. align-self:flex-start;
  1464. padding:0px 0px 0px 0px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u1305_text {
  1469. border-width:0px;
  1470. word-wrap:break-word;
  1471. text-transform:none;
  1472. }
  1473. #u1306 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:0px;
  1479. height:0px;
  1480. }
  1481. #u1307_img {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:-4px;
  1485. top:-4px;
  1486. width:40px;
  1487. height:40px;
  1488. }
  1489. #u1307 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:1181px;
  1493. top:350px;
  1494. width:30px;
  1495. height:30px;
  1496. display:flex;
  1497. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1498. font-weight:700;
  1499. font-style:normal;
  1500. font-size:18px;
  1501. color:#1E1E1E;
  1502. }
  1503. #u1307 .text {
  1504. position:absolute;
  1505. align-self:center;
  1506. padding:2px 2px 2px 2px;
  1507. box-sizing:border-box;
  1508. width:100%;
  1509. }
  1510. #u1307_text {
  1511. border-width:0px;
  1512. word-wrap:break-word;
  1513. text-transform:none;
  1514. }
  1515. #u1308_div {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:143px;
  1521. height:18px;
  1522. background:inherit;
  1523. background-color:rgba(255, 255, 255, 0);
  1524. border:none;
  1525. border-radius:0px;
  1526. -moz-box-shadow:none;
  1527. -webkit-box-shadow:none;
  1528. box-shadow:none;
  1529. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1530. font-weight:700;
  1531. font-style:normal;
  1532. font-size:16px;
  1533. }
  1534. #u1308 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:1221px;
  1538. top:357px;
  1539. width:143px;
  1540. height:18px;
  1541. display:flex;
  1542. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1543. font-weight:700;
  1544. font-style:normal;
  1545. font-size:16px;
  1546. }
  1547. #u1308 .text {
  1548. position:absolute;
  1549. align-self:flex-start;
  1550. padding:0px 0px 0px 0px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u1308_text {
  1555. border-width:0px;
  1556. word-wrap:break-word;
  1557. text-transform:none;
  1558. }
  1559. #u1309_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:352px;
  1565. height:22px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. line-height:22px;
  1574. }
  1575. #u1309 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:1221px;
  1579. top:395px;
  1580. width:352px;
  1581. height:22px;
  1582. display:flex;
  1583. line-height:22px;
  1584. }
  1585. #u1309 .text {
  1586. position:absolute;
  1587. align-self:flex-start;
  1588. padding:0px 0px 0px 0px;
  1589. box-sizing:border-box;
  1590. width:100%;
  1591. }
  1592. #u1309_text {
  1593. border-width:0px;
  1594. word-wrap:break-word;
  1595. text-transform:none;
  1596. }
  1597. #u1310_img {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:1155px;
  1603. height:583px;
  1604. }
  1605. #u1310 {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:21px;
  1609. top:938px;
  1610. width:1155px;
  1611. height:583px;
  1612. display:flex;
  1613. }
  1614. #u1310 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:2px 2px 2px 2px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u1310_text {
  1622. border-width:0px;
  1623. word-wrap:break-word;
  1624. text-transform:none;
  1625. visibility:hidden;
  1626. }
  1627. #u1311_img {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:-4px;
  1631. top:-4px;
  1632. width:30px;
  1633. height:30px;
  1634. }
  1635. #u1311 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:1117px;
  1639. top:1228px;
  1640. width:20px;
  1641. height:20px;
  1642. display:flex;
  1643. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1644. font-weight:700;
  1645. font-style:normal;
  1646. font-size:14px;
  1647. color:#1E1E1E;
  1648. }
  1649. #u1311 .text {
  1650. position:absolute;
  1651. align-self:center;
  1652. padding:2px 2px 2px 2px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u1311_text {
  1657. border-width:0px;
  1658. word-wrap:break-word;
  1659. text-transform:none;
  1660. }
  1661. #u1312 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:0px;
  1667. height:0px;
  1668. }
  1669. #u1313_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:-4px;
  1673. top:-4px;
  1674. width:44px;
  1675. height:44px;
  1676. }
  1677. #u1313 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:1186px;
  1681. top:938px;
  1682. width:34px;
  1683. height:34px;
  1684. display:flex;
  1685. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1686. font-weight:700;
  1687. font-style:normal;
  1688. font-size:26px;
  1689. }
  1690. #u1313 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 2px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u1313_text {
  1698. border-width:0px;
  1699. word-wrap:break-word;
  1700. text-transform:none;
  1701. }
  1702. #u1314_div {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:143px;
  1708. height:18px;
  1709. background:inherit;
  1710. background-color:rgba(255, 255, 255, 0);
  1711. border:none;
  1712. border-radius:0px;
  1713. -moz-box-shadow:none;
  1714. -webkit-box-shadow:none;
  1715. box-shadow:none;
  1716. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1717. font-weight:700;
  1718. font-style:normal;
  1719. font-size:16px;
  1720. }
  1721. #u1314 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:1226px;
  1725. top:945px;
  1726. width:143px;
  1727. height:18px;
  1728. display:flex;
  1729. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1730. font-weight:700;
  1731. font-style:normal;
  1732. font-size:16px;
  1733. }
  1734. #u1314 .text {
  1735. position:absolute;
  1736. align-self:flex-start;
  1737. padding:0px 0px 0px 0px;
  1738. box-sizing:border-box;
  1739. width:100%;
  1740. }
  1741. #u1314_text {
  1742. border-width:0px;
  1743. word-wrap:break-word;
  1744. text-transform:none;
  1745. }
  1746. #u1315_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:352px;
  1752. height:66px;
  1753. background:inherit;
  1754. background-color:rgba(255, 255, 255, 0);
  1755. border:none;
  1756. border-radius:0px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. line-height:22px;
  1761. }
  1762. #u1315 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:1226px;
  1766. top:983px;
  1767. width:352px;
  1768. height:66px;
  1769. display:flex;
  1770. line-height:22px;
  1771. }
  1772. #u1315 .text {
  1773. position:absolute;
  1774. align-self:flex-start;
  1775. padding:0px 0px 0px 0px;
  1776. box-sizing:border-box;
  1777. width:100%;
  1778. }
  1779. #u1315_text {
  1780. border-width:0px;
  1781. word-wrap:break-word;
  1782. text-transform:none;
  1783. }
  1784. #u1316_div {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:72px;
  1790. height:22px;
  1791. background:inherit;
  1792. background-color:rgba(255, 255, 255, 0);
  1793. border:none;
  1794. border-radius:0px;
  1795. -moz-box-shadow:none;
  1796. -webkit-box-shadow:none;
  1797. box-shadow:none;
  1798. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1799. font-weight:700;
  1800. font-style:normal;
  1801. font-size:18px;
  1802. }
  1803. #u1316 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:21px;
  1807. top:912px;
  1808. width:72px;
  1809. height:22px;
  1810. display:flex;
  1811. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1812. font-weight:700;
  1813. font-style:normal;
  1814. font-size:18px;
  1815. }
  1816. #u1316 .text {
  1817. position:absolute;
  1818. align-self:flex-start;
  1819. padding:0px 0px 0px 0px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u1316_text {
  1824. border-width:0px;
  1825. white-space:nowrap;
  1826. text-transform:none;
  1827. }
  1828. #u1317 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:0px;
  1834. height:0px;
  1835. }
  1836. #u1318_img {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:-4px;
  1840. top:-4px;
  1841. width:40px;
  1842. height:40px;
  1843. }
  1844. #u1318 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:1186px;
  1848. top:1059px;
  1849. width:30px;
  1850. height:30px;
  1851. display:flex;
  1852. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1853. font-weight:700;
  1854. font-style:normal;
  1855. font-size:18px;
  1856. color:#1E1E1E;
  1857. }
  1858. #u1318 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u1318_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. }
  1870. #u1319_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:143px;
  1876. height:18px;
  1877. background:inherit;
  1878. background-color:rgba(255, 255, 255, 0);
  1879. border:none;
  1880. border-radius:0px;
  1881. -moz-box-shadow:none;
  1882. -webkit-box-shadow:none;
  1883. box-shadow:none;
  1884. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1885. font-weight:700;
  1886. font-style:normal;
  1887. font-size:16px;
  1888. }
  1889. #u1319 {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:1226px;
  1893. top:1066px;
  1894. width:143px;
  1895. height:18px;
  1896. display:flex;
  1897. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1898. font-weight:700;
  1899. font-style:normal;
  1900. font-size:16px;
  1901. }
  1902. #u1319 .text {
  1903. position:absolute;
  1904. align-self:flex-start;
  1905. padding:0px 0px 0px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u1319_text {
  1910. border-width:0px;
  1911. word-wrap:break-word;
  1912. text-transform:none;
  1913. }
  1914. #u1320_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:352px;
  1920. height:44px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 0);
  1923. border:none;
  1924. border-radius:0px;
  1925. -moz-box-shadow:none;
  1926. -webkit-box-shadow:none;
  1927. box-shadow:none;
  1928. line-height:22px;
  1929. }
  1930. #u1320 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:1226px;
  1934. top:1104px;
  1935. width:352px;
  1936. height:44px;
  1937. display:flex;
  1938. line-height:22px;
  1939. }
  1940. #u1320 .text {
  1941. position:absolute;
  1942. align-self:flex-start;
  1943. padding:0px 0px 0px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u1320_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u1321_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:-4px;
  1956. top:-4px;
  1957. width:30px;
  1958. height:30px;
  1959. }
  1960. #u1321 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:1070px;
  1964. top:1228px;
  1965. width:20px;
  1966. height:20px;
  1967. display:flex;
  1968. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1969. font-weight:700;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. color:#1E1E1E;
  1973. }
  1974. #u1321 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 2px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u1321_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u1322_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:1155px;
  1992. height:583px;
  1993. }
  1994. #u1322 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:7px;
  1998. top:2228px;
  1999. width:1155px;
  2000. height:583px;
  2001. display:flex;
  2002. }
  2003. #u1322 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 2px 2px 2px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u1322_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. visibility:hidden;
  2015. }
  2016. #u1323 {
  2017. position:fixed;
  2018. left:1382px;
  2019. top:68px;
  2020. }
  2021. #u1323_state0 {
  2022. position:relative;
  2023. left:0px;
  2024. top:0px;
  2025. width:140px;
  2026. height:40px;
  2027. background-image:none;
  2028. border:none;
  2029. border-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. }
  2034. #u1323_state0_content {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:1px;
  2040. height:1px;
  2041. }
  2042. #u1324_div {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:140px;
  2048. height:40px;
  2049. background:inherit;
  2050. background-color:rgba(51, 160, 154, 1);
  2051. border:none;
  2052. border-radius:5px;
  2053. -moz-box-shadow:none;
  2054. -webkit-box-shadow:none;
  2055. box-shadow:none;
  2056. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2057. font-weight:700;
  2058. font-style:normal;
  2059. font-size:16px;
  2060. }
  2061. #u1324 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:140px;
  2067. height:40px;
  2068. display:flex;
  2069. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2070. font-weight:700;
  2071. font-style:normal;
  2072. font-size:16px;
  2073. }
  2074. #u1324 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 2px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u1324_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. }