styles.css 38 KB

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