styles.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616
  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. #u294_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1578px;
  25. height:1569px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u294 {
  35. border-width:0px;
  36. position:absolute;
  37. left:0px;
  38. top:0px;
  39. width:1578px;
  40. height:1569px;
  41. display:flex;
  42. }
  43. #u294 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u294_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. }
  55. #u295 {
  56. border-width:0px;
  57. position:absolute;
  58. left:0px;
  59. top:0px;
  60. width:0px;
  61. height:0px;
  62. }
  63. #u296_img {
  64. border-width:0px;
  65. position:absolute;
  66. left:0px;
  67. top:0px;
  68. width:8px;
  69. height:28px;
  70. }
  71. #u296 {
  72. border-width:0px;
  73. position:absolute;
  74. left:20px;
  75. top:29px;
  76. width:8px;
  77. height:28px;
  78. display:flex;
  79. }
  80. #u296 .text {
  81. position:absolute;
  82. align-self:center;
  83. padding:2px 2px 2px 2px;
  84. box-sizing:border-box;
  85. width:100%;
  86. }
  87. #u296_text {
  88. border-width:0px;
  89. word-wrap:break-word;
  90. text-transform:none;
  91. visibility:hidden;
  92. }
  93. #u297_div {
  94. border-width:0px;
  95. position:absolute;
  96. left:0px;
  97. top:0px;
  98. width:96px;
  99. height:28px;
  100. background:inherit;
  101. background-color:rgba(255, 255, 255, 0);
  102. border:none;
  103. border-radius:0px;
  104. -moz-box-shadow:none;
  105. -webkit-box-shadow:none;
  106. box-shadow:none;
  107. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  108. font-weight:700;
  109. font-style:normal;
  110. }
  111. #u297 {
  112. border-width:0px;
  113. position:absolute;
  114. left:34px;
  115. top:29px;
  116. width:96px;
  117. height:28px;
  118. display:flex;
  119. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  120. font-weight:700;
  121. font-style:normal;
  122. }
  123. #u297 .text {
  124. position:absolute;
  125. align-self:flex-start;
  126. padding:0px 0px 0px 0px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u297_text {
  131. border-width:0px;
  132. white-space:nowrap;
  133. text-transform:none;
  134. }
  135. #u298_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:1538px;
  141. height:28px;
  142. background:inherit;
  143. background-color:rgba(244, 244, 245, 1);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  150. font-weight:700;
  151. font-style:normal;
  152. }
  153. #u298 {
  154. border-width:0px;
  155. position:absolute;
  156. left:20px;
  157. top:77px;
  158. width:1538px;
  159. height:28px;
  160. display:flex;
  161. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  162. font-weight:700;
  163. font-style:normal;
  164. }
  165. #u298 .text {
  166. position:absolute;
  167. align-self:flex-start;
  168. padding:6px 0px 6px 14px;
  169. box-sizing:border-box;
  170. width:100%;
  171. }
  172. #u298_text {
  173. border-width:0px;
  174. word-wrap:break-word;
  175. text-transform:none;
  176. }
  177. #u299_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:-10px;
  181. top:-8px;
  182. width:1175px;
  183. height:647px;
  184. }
  185. #u299 {
  186. border-width:0px;
  187. position:absolute;
  188. left:20px;
  189. top:126px;
  190. width:1155px;
  191. height:627px;
  192. display:flex;
  193. }
  194. #u299 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u299_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u300_div {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:54px;
  213. height:39px;
  214. background:inherit;
  215. background-color:rgba(255, 255, 255, 0);
  216. box-sizing:border-box;
  217. border-width:2px;
  218. border-style:solid;
  219. border-color:rgba(255, 199, 51, 1);
  220. border-radius:0px;
  221. -moz-box-shadow:none;
  222. -webkit-box-shadow:none;
  223. box-shadow:none;
  224. }
  225. #u300 {
  226. border-width:0px;
  227. position:absolute;
  228. left:180px;
  229. top:319px;
  230. width:54px;
  231. height:39px;
  232. display:flex;
  233. }
  234. #u300 .text {
  235. position:absolute;
  236. align-self:center;
  237. padding:2px 2px 2px 2px;
  238. box-sizing:border-box;
  239. width:100%;
  240. }
  241. #u300_text {
  242. border-width:0px;
  243. word-wrap:break-word;
  244. text-transform:none;
  245. visibility:hidden;
  246. }
  247. #u301_img {
  248. border-width:0px;
  249. position:absolute;
  250. left:-10px;
  251. top:-8px;
  252. width:44px;
  253. height:44px;
  254. }
  255. #u301 {
  256. border-width:0px;
  257. position:absolute;
  258. left:195px;
  259. top:301px;
  260. width:24px;
  261. height:24px;
  262. display:flex;
  263. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  264. font-weight:700;
  265. font-style:normal;
  266. font-size:14px;
  267. color:#1E1E1E;
  268. }
  269. #u301 .text {
  270. position:absolute;
  271. align-self:center;
  272. padding:2px 2px 2px 2px;
  273. box-sizing:border-box;
  274. width:100%;
  275. }
  276. #u301_text {
  277. border-width:0px;
  278. word-wrap:break-word;
  279. text-transform:none;
  280. }
  281. #u302_div {
  282. border-width:0px;
  283. position:absolute;
  284. left:0px;
  285. top:0px;
  286. width:22px;
  287. height:23px;
  288. background:inherit;
  289. background-color:rgba(255, 255, 255, 0);
  290. box-sizing:border-box;
  291. border-width:2px;
  292. border-style:solid;
  293. border-color:rgba(255, 199, 51, 1);
  294. border-radius:0px;
  295. -moz-box-shadow:none;
  296. -webkit-box-shadow:none;
  297. box-shadow:none;
  298. }
  299. #u302 {
  300. border-width:0px;
  301. position:absolute;
  302. left:178px;
  303. top:367px;
  304. width:22px;
  305. height:23px;
  306. display:flex;
  307. }
  308. #u302 .text {
  309. position:absolute;
  310. align-self:center;
  311. padding:2px 2px 2px 2px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u302_text {
  316. border-width:0px;
  317. word-wrap:break-word;
  318. text-transform:none;
  319. visibility:hidden;
  320. }
  321. #u303_img {
  322. border-width:0px;
  323. position:absolute;
  324. left:-10px;
  325. top:-8px;
  326. width:44px;
  327. height:44px;
  328. }
  329. #u303 {
  330. border-width:0px;
  331. position:absolute;
  332. left:158px;
  333. top:366px;
  334. width:24px;
  335. height:24px;
  336. display:flex;
  337. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  338. font-weight:700;
  339. font-style:normal;
  340. font-size:14px;
  341. color:#1E1E1E;
  342. }
  343. #u303 .text {
  344. position:absolute;
  345. align-self:center;
  346. padding:2px 2px 2px 2px;
  347. box-sizing:border-box;
  348. width:100%;
  349. }
  350. #u303_text {
  351. border-width:0px;
  352. word-wrap:break-word;
  353. text-transform:none;
  354. }
  355. #u304 {
  356. border-width:0px;
  357. position:absolute;
  358. left:0px;
  359. top:0px;
  360. width:0px;
  361. height:0px;
  362. }
  363. #u305_div {
  364. border-width:0px;
  365. position:absolute;
  366. left:0px;
  367. top:0px;
  368. width:328px;
  369. height:24px;
  370. background:inherit;
  371. background-color:rgba(255, 255, 255, 0);
  372. border:none;
  373. border-radius:0px;
  374. -moz-box-shadow:none;
  375. -webkit-box-shadow:none;
  376. box-shadow:none;
  377. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  378. font-weight:700;
  379. font-style:normal;
  380. font-size:16px;
  381. }
  382. #u305 {
  383. border-width:0px;
  384. position:absolute;
  385. left:1230px;
  386. top:220px;
  387. width:328px;
  388. height:24px;
  389. display:flex;
  390. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  391. font-weight:700;
  392. font-style:normal;
  393. font-size:16px;
  394. }
  395. #u305 .text {
  396. position:absolute;
  397. align-self:flex-start;
  398. padding:3px 0px 3px 0px;
  399. box-sizing:border-box;
  400. width:100%;
  401. }
  402. #u305_text {
  403. border-width:0px;
  404. word-wrap:break-word;
  405. text-transform:none;
  406. }
  407. #u306_div {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:328px;
  413. height:22px;
  414. background:inherit;
  415. background-color:rgba(255, 255, 255, 0);
  416. border:none;
  417. border-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. line-height:22px;
  422. }
  423. #u306 {
  424. border-width:0px;
  425. position:absolute;
  426. left:1230px;
  427. top:251px;
  428. width:328px;
  429. height:22px;
  430. display:flex;
  431. line-height:22px;
  432. }
  433. #u306 .text {
  434. position:absolute;
  435. align-self:flex-start;
  436. padding:0px 0px 0px 0px;
  437. box-sizing:border-box;
  438. width:100%;
  439. }
  440. #u306_text {
  441. border-width:0px;
  442. word-wrap:break-word;
  443. text-transform:none;
  444. }
  445. #u307_img {
  446. border-width:0px;
  447. position:absolute;
  448. left:-10px;
  449. top:-8px;
  450. width:44px;
  451. height:44px;
  452. }
  453. #u307 {
  454. border-width:0px;
  455. position:absolute;
  456. left:1196px;
  457. top:220px;
  458. width:24px;
  459. height:24px;
  460. display:flex;
  461. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  462. font-weight:700;
  463. font-style:normal;
  464. font-size:14px;
  465. color:#1E1E1E;
  466. }
  467. #u307 .text {
  468. position:absolute;
  469. align-self:center;
  470. padding:2px 2px 2px 2px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u307_text {
  475. border-width:0px;
  476. word-wrap:break-word;
  477. text-transform:none;
  478. }
  479. #u308_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:363px;
  485. height:2px;
  486. }
  487. #u308 {
  488. border-width:0px;
  489. position:absolute;
  490. left:1196px;
  491. top:199px;
  492. width:362px;
  493. height:1px;
  494. display:flex;
  495. }
  496. #u308 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u308_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u309_div {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:54px;
  515. height:39px;
  516. background:inherit;
  517. background-color:rgba(255, 255, 255, 0);
  518. box-sizing:border-box;
  519. border-width:2px;
  520. border-style:solid;
  521. border-color:rgba(255, 199, 51, 1);
  522. border-radius:0px;
  523. -moz-box-shadow:none;
  524. -webkit-box-shadow:none;
  525. box-shadow:none;
  526. }
  527. #u309 {
  528. border-width:0px;
  529. position:absolute;
  530. left:233px;
  531. top:319px;
  532. width:54px;
  533. height:39px;
  534. display:flex;
  535. }
  536. #u309 .text {
  537. position:absolute;
  538. align-self:center;
  539. padding:2px 2px 2px 2px;
  540. box-sizing:border-box;
  541. width:100%;
  542. }
  543. #u309_text {
  544. border-width:0px;
  545. word-wrap:break-word;
  546. text-transform:none;
  547. visibility:hidden;
  548. }
  549. #u310_img {
  550. border-width:0px;
  551. position:absolute;
  552. left:-10px;
  553. top:-8px;
  554. width:44px;
  555. height:44px;
  556. }
  557. #u310 {
  558. border-width:0px;
  559. position:absolute;
  560. left:248px;
  561. top:301px;
  562. width:24px;
  563. height:24px;
  564. display:flex;
  565. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  566. font-weight:700;
  567. font-style:normal;
  568. font-size:14px;
  569. color:#1E1E1E;
  570. }
  571. #u310 .text {
  572. position:absolute;
  573. align-self:center;
  574. padding:2px 2px 2px 2px;
  575. box-sizing:border-box;
  576. width:100%;
  577. }
  578. #u310_text {
  579. border-width:0px;
  580. word-wrap:break-word;
  581. text-transform:none;
  582. }
  583. #u311_div {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:54px;
  589. height:39px;
  590. background:inherit;
  591. background-color:rgba(255, 255, 255, 0);
  592. box-sizing:border-box;
  593. border-width:2px;
  594. border-style:solid;
  595. border-color:rgba(255, 199, 51, 1);
  596. border-radius:0px;
  597. -moz-box-shadow:none;
  598. -webkit-box-shadow:none;
  599. box-shadow:none;
  600. }
  601. #u311 {
  602. border-width:0px;
  603. position:absolute;
  604. left:285px;
  605. top:319px;
  606. width:54px;
  607. height:39px;
  608. display:flex;
  609. }
  610. #u311 .text {
  611. position:absolute;
  612. align-self:center;
  613. padding:2px 2px 2px 2px;
  614. box-sizing:border-box;
  615. width:100%;
  616. }
  617. #u311_text {
  618. border-width:0px;
  619. word-wrap:break-word;
  620. text-transform:none;
  621. visibility:hidden;
  622. }
  623. #u312_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:-10px;
  627. top:-8px;
  628. width:44px;
  629. height:44px;
  630. }
  631. #u312 {
  632. border-width:0px;
  633. position:absolute;
  634. left:300px;
  635. top:301px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  640. font-weight:700;
  641. font-style:normal;
  642. font-size:14px;
  643. color:#1E1E1E;
  644. }
  645. #u312 .text {
  646. position:absolute;
  647. align-self:center;
  648. padding:2px 2px 2px 2px;
  649. box-sizing:border-box;
  650. width:100%;
  651. }
  652. #u312_text {
  653. border-width:0px;
  654. word-wrap:break-word;
  655. text-transform:none;
  656. }
  657. #u313 {
  658. border-width:0px;
  659. position:absolute;
  660. left:0px;
  661. top:0px;
  662. width:0px;
  663. height:0px;
  664. }
  665. #u314_div {
  666. border-width:0px;
  667. position:absolute;
  668. left:0px;
  669. top:0px;
  670. width:328px;
  671. height:24px;
  672. background:inherit;
  673. background-color:rgba(255, 255, 255, 0);
  674. border:none;
  675. border-radius:0px;
  676. -moz-box-shadow:none;
  677. -webkit-box-shadow:none;
  678. box-shadow:none;
  679. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  680. font-weight:700;
  681. font-style:normal;
  682. font-size:16px;
  683. }
  684. #u314 {
  685. border-width:0px;
  686. position:absolute;
  687. left:1230px;
  688. top:126px;
  689. width:328px;
  690. height:24px;
  691. display:flex;
  692. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  693. font-weight:700;
  694. font-style:normal;
  695. font-size:16px;
  696. }
  697. #u314 .text {
  698. position:absolute;
  699. align-self:flex-start;
  700. padding:3px 0px 3px 0px;
  701. box-sizing:border-box;
  702. width:100%;
  703. }
  704. #u314_text {
  705. border-width:0px;
  706. word-wrap:break-word;
  707. text-transform:none;
  708. }
  709. #u315_div {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:328px;
  715. height:22px;
  716. background:inherit;
  717. background-color:rgba(255, 255, 255, 0);
  718. border:none;
  719. border-radius:0px;
  720. -moz-box-shadow:none;
  721. -webkit-box-shadow:none;
  722. box-shadow:none;
  723. line-height:22px;
  724. }
  725. #u315 {
  726. border-width:0px;
  727. position:absolute;
  728. left:1230px;
  729. top:157px;
  730. width:328px;
  731. height:22px;
  732. display:flex;
  733. line-height:22px;
  734. }
  735. #u315 .text {
  736. position:absolute;
  737. align-self:flex-start;
  738. padding:0px 0px 0px 0px;
  739. box-sizing:border-box;
  740. width:100%;
  741. }
  742. #u315_text {
  743. border-width:0px;
  744. word-wrap:break-word;
  745. text-transform:none;
  746. }
  747. #u316_img {
  748. border-width:0px;
  749. position:absolute;
  750. left:-10px;
  751. top:-8px;
  752. width:44px;
  753. height:44px;
  754. }
  755. #u316 {
  756. border-width:0px;
  757. position:absolute;
  758. left:1196px;
  759. top:126px;
  760. width:24px;
  761. height:24px;
  762. display:flex;
  763. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  764. font-weight:700;
  765. font-style:normal;
  766. font-size:14px;
  767. color:#1E1E1E;
  768. }
  769. #u316 .text {
  770. position:absolute;
  771. align-self:center;
  772. padding:2px 2px 2px 2px;
  773. box-sizing:border-box;
  774. width:100%;
  775. }
  776. #u316_text {
  777. border-width:0px;
  778. word-wrap:break-word;
  779. text-transform:none;
  780. }
  781. #u317 {
  782. border-width:0px;
  783. position:absolute;
  784. left:0px;
  785. top:0px;
  786. width:0px;
  787. height:0px;
  788. }
  789. #u318_div {
  790. border-width:0px;
  791. position:absolute;
  792. left:0px;
  793. top:0px;
  794. width:328px;
  795. height:24px;
  796. background:inherit;
  797. background-color:rgba(255, 255, 255, 0);
  798. border:none;
  799. border-radius:0px;
  800. -moz-box-shadow:none;
  801. -webkit-box-shadow:none;
  802. box-shadow:none;
  803. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  804. font-weight:700;
  805. font-style:normal;
  806. font-size:16px;
  807. }
  808. #u318 {
  809. border-width:0px;
  810. position:absolute;
  811. left:1230px;
  812. top:314px;
  813. width:328px;
  814. height:24px;
  815. display:flex;
  816. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  817. font-weight:700;
  818. font-style:normal;
  819. font-size:16px;
  820. }
  821. #u318 .text {
  822. position:absolute;
  823. align-self:flex-start;
  824. padding:3px 0px 3px 0px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u318_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u319_div {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:328px;
  839. height:22px;
  840. background:inherit;
  841. background-color:rgba(255, 255, 255, 0);
  842. border:none;
  843. border-radius:0px;
  844. -moz-box-shadow:none;
  845. -webkit-box-shadow:none;
  846. box-shadow:none;
  847. line-height:22px;
  848. }
  849. #u319 {
  850. border-width:0px;
  851. position:absolute;
  852. left:1230px;
  853. top:345px;
  854. width:328px;
  855. height:22px;
  856. display:flex;
  857. line-height:22px;
  858. }
  859. #u319 .text {
  860. position:absolute;
  861. align-self:flex-start;
  862. padding:0px 0px 0px 0px;
  863. box-sizing:border-box;
  864. width:100%;
  865. }
  866. #u319_text {
  867. border-width:0px;
  868. word-wrap:break-word;
  869. text-transform:none;
  870. }
  871. #u320_img {
  872. border-width:0px;
  873. position:absolute;
  874. left:-10px;
  875. top:-8px;
  876. width:44px;
  877. height:44px;
  878. }
  879. #u320 {
  880. border-width:0px;
  881. position:absolute;
  882. left:1196px;
  883. top:314px;
  884. width:24px;
  885. height:24px;
  886. display:flex;
  887. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  888. font-weight:700;
  889. font-style:normal;
  890. font-size:14px;
  891. color:#1E1E1E;
  892. }
  893. #u320 .text {
  894. position:absolute;
  895. align-self:center;
  896. padding:2px 2px 2px 2px;
  897. box-sizing:border-box;
  898. width:100%;
  899. }
  900. #u320_text {
  901. border-width:0px;
  902. word-wrap:break-word;
  903. text-transform:none;
  904. }
  905. #u321_img {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:363px;
  911. height:2px;
  912. }
  913. #u321 {
  914. border-width:0px;
  915. position:absolute;
  916. left:1196px;
  917. top:293px;
  918. width:362px;
  919. height:1px;
  920. display:flex;
  921. }
  922. #u321 .text {
  923. position:absolute;
  924. align-self:center;
  925. padding:2px 2px 2px 2px;
  926. box-sizing:border-box;
  927. width:100%;
  928. }
  929. #u321_text {
  930. border-width:0px;
  931. word-wrap:break-word;
  932. text-transform:none;
  933. visibility:hidden;
  934. }
  935. #u322 {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:0px;
  941. height:0px;
  942. }
  943. #u323_div {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:328px;
  949. height:24px;
  950. background:inherit;
  951. background-color:rgba(255, 255, 255, 0);
  952. border:none;
  953. border-radius:0px;
  954. -moz-box-shadow:none;
  955. -webkit-box-shadow:none;
  956. box-shadow:none;
  957. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  958. font-weight:700;
  959. font-style:normal;
  960. font-size:16px;
  961. }
  962. #u323 {
  963. border-width:0px;
  964. position:absolute;
  965. left:1230px;
  966. top:408px;
  967. width:328px;
  968. height:24px;
  969. display:flex;
  970. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  971. font-weight:700;
  972. font-style:normal;
  973. font-size:16px;
  974. }
  975. #u323 .text {
  976. position:absolute;
  977. align-self:flex-start;
  978. padding:3px 0px 3px 0px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u323_text {
  983. border-width:0px;
  984. word-wrap:break-word;
  985. text-transform:none;
  986. }
  987. #u324_div {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:328px;
  993. height:22px;
  994. background:inherit;
  995. background-color:rgba(255, 255, 255, 0);
  996. border:none;
  997. border-radius:0px;
  998. -moz-box-shadow:none;
  999. -webkit-box-shadow:none;
  1000. box-shadow:none;
  1001. line-height:22px;
  1002. }
  1003. #u324 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:1230px;
  1007. top:439px;
  1008. width:328px;
  1009. height:22px;
  1010. display:flex;
  1011. line-height:22px;
  1012. }
  1013. #u324 .text {
  1014. position:absolute;
  1015. align-self:flex-start;
  1016. padding:0px 0px 0px 0px;
  1017. box-sizing:border-box;
  1018. width:100%;
  1019. }
  1020. #u324_text {
  1021. border-width:0px;
  1022. word-wrap:break-word;
  1023. text-transform:none;
  1024. }
  1025. #u325_img {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:-10px;
  1029. top:-8px;
  1030. width:44px;
  1031. height:44px;
  1032. }
  1033. #u325 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:1196px;
  1037. top:408px;
  1038. width:24px;
  1039. height:24px;
  1040. display:flex;
  1041. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1042. font-weight:700;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#1E1E1E;
  1046. }
  1047. #u325 .text {
  1048. position:absolute;
  1049. align-self:center;
  1050. padding:2px 2px 2px 2px;
  1051. box-sizing:border-box;
  1052. width:100%;
  1053. }
  1054. #u325_text {
  1055. border-width:0px;
  1056. word-wrap:break-word;
  1057. text-transform:none;
  1058. }
  1059. #u326_img {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:363px;
  1065. height:2px;
  1066. }
  1067. #u326 {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:1196px;
  1071. top:387px;
  1072. width:362px;
  1073. height:1px;
  1074. display:flex;
  1075. }
  1076. #u326 .text {
  1077. position:absolute;
  1078. align-self:center;
  1079. padding:2px 2px 2px 2px;
  1080. box-sizing:border-box;
  1081. width:100%;
  1082. }
  1083. #u326_text {
  1084. border-width:0px;
  1085. word-wrap:break-word;
  1086. text-transform:none;
  1087. visibility:hidden;
  1088. }
  1089. #u327_div {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:0px;
  1094. width:194px;
  1095. height:37px;
  1096. background:inherit;
  1097. background-color:rgba(255, 255, 255, 0);
  1098. box-sizing:border-box;
  1099. border-width:2px;
  1100. border-style:solid;
  1101. border-color:rgba(255, 199, 51, 1);
  1102. border-radius:0px;
  1103. -moz-box-shadow:none;
  1104. -webkit-box-shadow:none;
  1105. box-shadow:none;
  1106. }
  1107. #u327 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:215px;
  1111. top:403px;
  1112. width:194px;
  1113. height:37px;
  1114. display:flex;
  1115. }
  1116. #u327 .text {
  1117. position:absolute;
  1118. align-self:center;
  1119. padding:2px 2px 2px 2px;
  1120. box-sizing:border-box;
  1121. width:100%;
  1122. }
  1123. #u327_text {
  1124. border-width:0px;
  1125. word-wrap:break-word;
  1126. text-transform:none;
  1127. visibility:hidden;
  1128. }
  1129. #u328_img {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:-10px;
  1133. top:-8px;
  1134. width:44px;
  1135. height:44px;
  1136. }
  1137. #u328 {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:395px;
  1141. top:394px;
  1142. width:24px;
  1143. height:24px;
  1144. display:flex;
  1145. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1146. font-weight:700;
  1147. font-style:normal;
  1148. font-size:14px;
  1149. color:#1E1E1E;
  1150. }
  1151. #u328 .text {
  1152. position:absolute;
  1153. align-self:center;
  1154. padding:2px 2px 2px 2px;
  1155. box-sizing:border-box;
  1156. width:100%;
  1157. }
  1158. #u328_text {
  1159. border-width:0px;
  1160. word-wrap:break-word;
  1161. text-transform:none;
  1162. }
  1163. #u329_div {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:0px;
  1167. top:0px;
  1168. width:194px;
  1169. height:37px;
  1170. background:inherit;
  1171. background-color:rgba(255, 255, 255, 0);
  1172. box-sizing:border-box;
  1173. border-width:2px;
  1174. border-style:solid;
  1175. border-color:rgba(255, 199, 51, 1);
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. }
  1181. #u329 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:215px;
  1185. top:458px;
  1186. width:194px;
  1187. height:37px;
  1188. display:flex;
  1189. }
  1190. #u329 .text {
  1191. position:absolute;
  1192. align-self:center;
  1193. padding:2px 2px 2px 2px;
  1194. box-sizing:border-box;
  1195. width:100%;
  1196. }
  1197. #u329_text {
  1198. border-width:0px;
  1199. word-wrap:break-word;
  1200. text-transform:none;
  1201. visibility:hidden;
  1202. }
  1203. #u330_img {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:-10px;
  1207. top:-8px;
  1208. width:44px;
  1209. height:44px;
  1210. }
  1211. #u330 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:395px;
  1215. top:450px;
  1216. width:24px;
  1217. height:24px;
  1218. display:flex;
  1219. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1220. font-weight:700;
  1221. font-style:normal;
  1222. font-size:14px;
  1223. color:#1E1E1E;
  1224. }
  1225. #u330 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u330_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. }
  1237. #u331_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:215px;
  1243. height:37px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. box-sizing:border-box;
  1247. border-width:2px;
  1248. border-style:solid;
  1249. border-color:rgba(255, 199, 51, 1);
  1250. border-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. }
  1255. #u331 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:423px;
  1259. top:458px;
  1260. width:215px;
  1261. height:37px;
  1262. display:flex;
  1263. }
  1264. #u331 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u331_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u332_img {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:-10px;
  1281. top:-8px;
  1282. width:44px;
  1283. height:44px;
  1284. }
  1285. #u332 {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:625px;
  1289. top:450px;
  1290. width:24px;
  1291. height:24px;
  1292. display:flex;
  1293. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1294. font-weight:700;
  1295. font-style:normal;
  1296. font-size:14px;
  1297. color:#1E1E1E;
  1298. }
  1299. #u332 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:2px 2px 2px 2px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u332_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. }
  1311. #u333_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:70px;
  1317. height:37px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. box-sizing:border-box;
  1321. border-width:2px;
  1322. border-style:solid;
  1323. border-color:rgba(255, 199, 51, 1);
  1324. border-radius:0px;
  1325. -moz-box-shadow:none;
  1326. -webkit-box-shadow:none;
  1327. box-shadow:none;
  1328. }
  1329. #u333 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:1035px;
  1333. top:600px;
  1334. width:70px;
  1335. height:37px;
  1336. display:flex;
  1337. }
  1338. #u333 .text {
  1339. position:absolute;
  1340. align-self:center;
  1341. padding:2px 2px 2px 2px;
  1342. box-sizing:border-box;
  1343. width:100%;
  1344. }
  1345. #u333_text {
  1346. border-width:0px;
  1347. word-wrap:break-word;
  1348. text-transform:none;
  1349. visibility:hidden;
  1350. }
  1351. #u334_img {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:-10px;
  1355. top:-8px;
  1356. width:44px;
  1357. height:44px;
  1358. }
  1359. #u334 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:1058px;
  1363. top:582px;
  1364. width:24px;
  1365. height:24px;
  1366. display:flex;
  1367. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1368. font-weight:700;
  1369. font-style:normal;
  1370. font-size:14px;
  1371. color:#1E1E1E;
  1372. }
  1373. #u334 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u334_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. }
  1385. #u335_div {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:52px;
  1391. height:37px;
  1392. background:inherit;
  1393. background-color:rgba(255, 255, 255, 0);
  1394. box-sizing:border-box;
  1395. border-width:2px;
  1396. border-style:solid;
  1397. border-color:rgba(255, 199, 51, 1);
  1398. border-radius:0px;
  1399. -moz-box-shadow:none;
  1400. -webkit-box-shadow:none;
  1401. box-shadow:none;
  1402. }
  1403. #u335 {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:1103px;
  1407. top:600px;
  1408. width:52px;
  1409. height:37px;
  1410. display:flex;
  1411. }
  1412. #u335 .text {
  1413. position:absolute;
  1414. align-self:center;
  1415. padding:2px 2px 2px 2px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u335_text {
  1420. border-width:0px;
  1421. word-wrap:break-word;
  1422. text-transform:none;
  1423. visibility:hidden;
  1424. }
  1425. #u336_img {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:-10px;
  1429. top:-8px;
  1430. width:44px;
  1431. height:44px;
  1432. }
  1433. #u336 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:1117px;
  1437. top:582px;
  1438. width:24px;
  1439. height:24px;
  1440. display:flex;
  1441. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1442. font-weight:700;
  1443. font-style:normal;
  1444. font-size:14px;
  1445. color:#1E1E1E;
  1446. }
  1447. #u336 .text {
  1448. position:absolute;
  1449. align-self:center;
  1450. padding:2px 2px 2px 2px;
  1451. box-sizing:border-box;
  1452. width:100%;
  1453. }
  1454. #u336_text {
  1455. border-width:0px;
  1456. word-wrap:break-word;
  1457. text-transform:none;
  1458. }
  1459. #u337 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:0px;
  1465. height:0px;
  1466. }
  1467. #u338_div {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:328px;
  1473. height:24px;
  1474. background:inherit;
  1475. background-color:rgba(255, 255, 255, 0);
  1476. border:none;
  1477. border-radius:0px;
  1478. -moz-box-shadow:none;
  1479. -webkit-box-shadow:none;
  1480. box-shadow:none;
  1481. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1482. font-weight:700;
  1483. font-style:normal;
  1484. font-size:16px;
  1485. }
  1486. #u338 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:1230px;
  1490. top:502px;
  1491. width:328px;
  1492. height:24px;
  1493. display:flex;
  1494. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1495. font-weight:700;
  1496. font-style:normal;
  1497. font-size:16px;
  1498. }
  1499. #u338 .text {
  1500. position:absolute;
  1501. align-self:flex-start;
  1502. padding:3px 0px 3px 0px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u338_text {
  1507. border-width:0px;
  1508. word-wrap:break-word;
  1509. text-transform:none;
  1510. }
  1511. #u339_div {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:303px;
  1517. height:120px;
  1518. background:inherit;
  1519. background-color:rgba(255, 255, 255, 0);
  1520. border:none;
  1521. border-radius:0px;
  1522. -moz-box-shadow:none;
  1523. -webkit-box-shadow:none;
  1524. box-shadow:none;
  1525. line-height:24px;
  1526. }
  1527. #u339 {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:1255px;
  1531. top:533px;
  1532. width:303px;
  1533. height:120px;
  1534. display:flex;
  1535. line-height:24px;
  1536. }
  1537. #u339 .text {
  1538. position:absolute;
  1539. align-self:flex-start;
  1540. padding:0px 0px 0px 0px;
  1541. box-sizing:border-box;
  1542. width:100%;
  1543. }
  1544. #u339_text {
  1545. border-width:0px;
  1546. word-wrap:break-word;
  1547. text-transform:none;
  1548. }
  1549. #u340_img {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:-10px;
  1553. top:-8px;
  1554. width:44px;
  1555. height:44px;
  1556. }
  1557. #u340 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:1196px;
  1561. top:502px;
  1562. width:24px;
  1563. height:24px;
  1564. display:flex;
  1565. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1566. font-weight:700;
  1567. font-style:normal;
  1568. font-size:14px;
  1569. color:#1E1E1E;
  1570. }
  1571. #u340 .text {
  1572. position:absolute;
  1573. align-self:center;
  1574. padding:2px 2px 2px 2px;
  1575. box-sizing:border-box;
  1576. width:100%;
  1577. }
  1578. #u340_text {
  1579. border-width:0px;
  1580. word-wrap:break-word;
  1581. text-transform:none;
  1582. }
  1583. #u341_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:25px;
  1589. height:120px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 0);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. line-height:24px;
  1598. }
  1599. #u341 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:1230px;
  1603. top:533px;
  1604. width:25px;
  1605. height:120px;
  1606. display:flex;
  1607. line-height:24px;
  1608. }
  1609. #u341 .text {
  1610. position:absolute;
  1611. align-self:flex-start;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u341_text {
  1617. border-width:0px;
  1618. word-wrap:break-word;
  1619. text-transform:none;
  1620. }
  1621. #u342_img {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:363px;
  1627. height:2px;
  1628. }
  1629. #u342 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:1196px;
  1633. top:481px;
  1634. width:362px;
  1635. height:1px;
  1636. display:flex;
  1637. }
  1638. #u342 .text {
  1639. position:absolute;
  1640. align-self:center;
  1641. padding:2px 2px 2px 2px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u342_text {
  1646. border-width:0px;
  1647. word-wrap:break-word;
  1648. text-transform:none;
  1649. visibility:hidden;
  1650. }
  1651. #u343 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:0px;
  1657. height:0px;
  1658. }
  1659. #u344_div {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:0px;
  1663. top:0px;
  1664. width:328px;
  1665. height:24px;
  1666. background:inherit;
  1667. background-color:rgba(255, 255, 255, 0);
  1668. border:none;
  1669. border-radius:0px;
  1670. -moz-box-shadow:none;
  1671. -webkit-box-shadow:none;
  1672. box-shadow:none;
  1673. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1674. font-weight:700;
  1675. font-style:normal;
  1676. font-size:16px;
  1677. }
  1678. #u344 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:1230px;
  1682. top:694px;
  1683. width:328px;
  1684. height:24px;
  1685. display:flex;
  1686. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1687. font-weight:700;
  1688. font-style:normal;
  1689. font-size:16px;
  1690. }
  1691. #u344 .text {
  1692. position:absolute;
  1693. align-self:flex-start;
  1694. padding:3px 0px 3px 0px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u344_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. }
  1703. #u345_div {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:328px;
  1709. height:44px;
  1710. background:inherit;
  1711. background-color:rgba(255, 255, 255, 0);
  1712. border:none;
  1713. border-radius:0px;
  1714. -moz-box-shadow:none;
  1715. -webkit-box-shadow:none;
  1716. box-shadow:none;
  1717. line-height:22px;
  1718. }
  1719. #u345 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:1230px;
  1723. top:725px;
  1724. width:328px;
  1725. height:44px;
  1726. display:flex;
  1727. line-height:22px;
  1728. }
  1729. #u345 .text {
  1730. position:absolute;
  1731. align-self:flex-start;
  1732. padding:0px 0px 0px 0px;
  1733. box-sizing:border-box;
  1734. width:100%;
  1735. }
  1736. #u345_text {
  1737. border-width:0px;
  1738. word-wrap:break-word;
  1739. text-transform:none;
  1740. }
  1741. #u346_img {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:-10px;
  1745. top:-8px;
  1746. width:44px;
  1747. height:44px;
  1748. }
  1749. #u346 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:1196px;
  1753. top:694px;
  1754. width:24px;
  1755. height:24px;
  1756. display:flex;
  1757. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1758. font-weight:700;
  1759. font-style:normal;
  1760. font-size:14px;
  1761. color:#1E1E1E;
  1762. }
  1763. #u346 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u346_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. }
  1775. #u347_img {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:363px;
  1781. height:2px;
  1782. }
  1783. #u347 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:1196px;
  1787. top:673px;
  1788. width:362px;
  1789. height:1px;
  1790. display:flex;
  1791. }
  1792. #u347 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u347_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u348 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:0px;
  1811. height:0px;
  1812. }
  1813. #u349_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:328px;
  1819. height:24px;
  1820. background:inherit;
  1821. background-color:rgba(255, 255, 255, 0);
  1822. border:none;
  1823. border-radius:0px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1828. font-weight:700;
  1829. font-style:normal;
  1830. font-size:16px;
  1831. }
  1832. #u349 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:1230px;
  1836. top:810px;
  1837. width:328px;
  1838. height:24px;
  1839. display:flex;
  1840. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1841. font-weight:700;
  1842. font-style:normal;
  1843. font-size:16px;
  1844. }
  1845. #u349 .text {
  1846. position:absolute;
  1847. align-self:flex-start;
  1848. padding:3px 0px 3px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u349_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u350_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:328px;
  1863. height:22px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. line-height:22px;
  1872. }
  1873. #u350 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:1230px;
  1877. top:841px;
  1878. width:328px;
  1879. height:22px;
  1880. display:flex;
  1881. line-height:22px;
  1882. }
  1883. #u350 .text {
  1884. position:absolute;
  1885. align-self:flex-start;
  1886. padding:0px 0px 0px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u350_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. }
  1895. #u351_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:-10px;
  1899. top:-8px;
  1900. width:44px;
  1901. height:44px;
  1902. }
  1903. #u351 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:1196px;
  1907. top:810px;
  1908. width:24px;
  1909. height:24px;
  1910. display:flex;
  1911. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1912. font-weight:700;
  1913. font-style:normal;
  1914. font-size:14px;
  1915. color:#1E1E1E;
  1916. }
  1917. #u351 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u351_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. }
  1929. #u352_img {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:363px;
  1935. height:2px;
  1936. }
  1937. #u352 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:1196px;
  1941. top:789px;
  1942. width:362px;
  1943. height:1px;
  1944. display:flex;
  1945. }
  1946. #u352 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 2px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u352_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. visibility:hidden;
  1958. }
  1959. #u353 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:0px;
  1965. height:0px;
  1966. }
  1967. #u354_div {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:328px;
  1973. height:24px;
  1974. background:inherit;
  1975. background-color:rgba(255, 255, 255, 0);
  1976. border:none;
  1977. border-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1982. font-weight:700;
  1983. font-style:normal;
  1984. font-size:16px;
  1985. }
  1986. #u354 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:1230px;
  1990. top:1020px;
  1991. width:328px;
  1992. height:24px;
  1993. display:flex;
  1994. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1995. font-weight:700;
  1996. font-style:normal;
  1997. font-size:16px;
  1998. }
  1999. #u354 .text {
  2000. position:absolute;
  2001. align-self:flex-start;
  2002. padding:3px 0px 3px 0px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u354_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. }
  2011. #u355_div {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:328px;
  2017. height:44px;
  2018. background:inherit;
  2019. background-color:rgba(255, 255, 255, 0);
  2020. border:none;
  2021. border-radius:0px;
  2022. -moz-box-shadow:none;
  2023. -webkit-box-shadow:none;
  2024. box-shadow:none;
  2025. line-height:22px;
  2026. }
  2027. #u355 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:1230px;
  2031. top:1051px;
  2032. width:328px;
  2033. height:44px;
  2034. display:flex;
  2035. line-height:22px;
  2036. }
  2037. #u355 .text {
  2038. position:absolute;
  2039. align-self:flex-start;
  2040. padding:0px 0px 0px 0px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u355_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u356_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:-10px;
  2053. top:-8px;
  2054. width:44px;
  2055. height:44px;
  2056. }
  2057. #u356 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:1196px;
  2061. top:1020px;
  2062. width:24px;
  2063. height:24px;
  2064. display:flex;
  2065. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2066. font-weight:700;
  2067. font-style:normal;
  2068. font-size:14px;
  2069. color:#1E1E1E;
  2070. }
  2071. #u356 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 2px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u356_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u357_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:363px;
  2089. height:2px;
  2090. }
  2091. #u357 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:1196px;
  2095. top:999px;
  2096. width:362px;
  2097. height:1px;
  2098. display:flex;
  2099. }
  2100. #u357 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u357_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u358 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:0px;
  2119. height:0px;
  2120. }
  2121. #u359_div {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:328px;
  2127. height:24px;
  2128. background:inherit;
  2129. background-color:rgba(255, 255, 255, 0);
  2130. border:none;
  2131. border-radius:0px;
  2132. -moz-box-shadow:none;
  2133. -webkit-box-shadow:none;
  2134. box-shadow:none;
  2135. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2136. font-weight:700;
  2137. font-style:normal;
  2138. font-size:16px;
  2139. color:#14928A;
  2140. }
  2141. #u359 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:1230px;
  2145. top:904px;
  2146. width:328px;
  2147. height:24px;
  2148. display:flex;
  2149. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2150. font-weight:700;
  2151. font-style:normal;
  2152. font-size:16px;
  2153. color:#14928A;
  2154. }
  2155. #u359 .text {
  2156. position:absolute;
  2157. align-self:flex-start;
  2158. padding:3px 0px 3px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u359_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u360_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:328px;
  2173. height:44px;
  2174. background:inherit;
  2175. background-color:rgba(255, 255, 255, 0);
  2176. border:none;
  2177. border-radius:0px;
  2178. -moz-box-shadow:none;
  2179. -webkit-box-shadow:none;
  2180. box-shadow:none;
  2181. line-height:22px;
  2182. }
  2183. #u360 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:1230px;
  2187. top:935px;
  2188. width:328px;
  2189. height:44px;
  2190. display:flex;
  2191. line-height:22px;
  2192. }
  2193. #u360 .text {
  2194. position:absolute;
  2195. align-self:flex-start;
  2196. padding:0px 0px 0px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u360_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. }
  2205. #u361_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:-10px;
  2209. top:-8px;
  2210. width:44px;
  2211. height:44px;
  2212. }
  2213. #u361 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:1196px;
  2217. top:904px;
  2218. width:24px;
  2219. height:24px;
  2220. display:flex;
  2221. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2222. font-weight:700;
  2223. font-style:normal;
  2224. font-size:14px;
  2225. color:#1E1E1E;
  2226. }
  2227. #u361 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 2px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u361_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. }
  2239. #u362_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:363px;
  2245. height:2px;
  2246. }
  2247. #u362 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:1196px;
  2251. top:883px;
  2252. width:362px;
  2253. height:1px;
  2254. display:flex;
  2255. }
  2256. #u362 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 2px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u362_text {
  2264. border-width:0px;
  2265. word-wrap:break-word;
  2266. text-transform:none;
  2267. visibility:hidden;
  2268. }
  2269. #u363 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:0px;
  2275. height:0px;
  2276. }
  2277. #u364_div {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:328px;
  2283. height:24px;
  2284. background:inherit;
  2285. background-color:rgba(255, 255, 255, 0);
  2286. border:none;
  2287. border-radius:0px;
  2288. -moz-box-shadow:none;
  2289. -webkit-box-shadow:none;
  2290. box-shadow:none;
  2291. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2292. font-weight:700;
  2293. font-style:normal;
  2294. font-size:16px;
  2295. }
  2296. #u364 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:1230px;
  2300. top:1280px;
  2301. width:328px;
  2302. height:24px;
  2303. display:flex;
  2304. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2305. font-weight:700;
  2306. font-style:normal;
  2307. font-size:16px;
  2308. }
  2309. #u364 .text {
  2310. position:absolute;
  2311. align-self:flex-start;
  2312. padding:3px 0px 3px 0px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u364_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. }
  2321. #u365_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:328px;
  2327. height:44px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 0);
  2330. border:none;
  2331. border-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. line-height:22px;
  2336. }
  2337. #u365 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:1230px;
  2341. top:1311px;
  2342. width:328px;
  2343. height:44px;
  2344. display:flex;
  2345. line-height:22px;
  2346. }
  2347. #u365 .text {
  2348. position:absolute;
  2349. align-self:flex-start;
  2350. padding:0px 0px 0px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u365_text {
  2355. border-width:0px;
  2356. word-wrap:break-word;
  2357. text-transform:none;
  2358. }
  2359. #u366_img {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:-10px;
  2363. top:-8px;
  2364. width:44px;
  2365. height:44px;
  2366. }
  2367. #u366 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:1196px;
  2371. top:1280px;
  2372. width:24px;
  2373. height:24px;
  2374. display:flex;
  2375. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2376. font-weight:700;
  2377. font-style:normal;
  2378. font-size:14px;
  2379. color:#1E1E1E;
  2380. }
  2381. #u366 .text {
  2382. position:absolute;
  2383. align-self:center;
  2384. padding:2px 2px 2px 2px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u366_text {
  2389. border-width:0px;
  2390. word-wrap:break-word;
  2391. text-transform:none;
  2392. }
  2393. #u367_img {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:363px;
  2399. height:2px;
  2400. }
  2401. #u367 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:1196px;
  2405. top:1259px;
  2406. width:362px;
  2407. height:1px;
  2408. display:flex;
  2409. }
  2410. #u367 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:2px 2px 2px 2px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u367_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. visibility:hidden;
  2422. }
  2423. #u368 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:0px;
  2428. width:0px;
  2429. height:0px;
  2430. }
  2431. #u369_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:-10px;
  2435. top:-8px;
  2436. width:44px;
  2437. height:44px;
  2438. }
  2439. #u369 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:1196px;
  2443. top:1136px;
  2444. width:24px;
  2445. height:24px;
  2446. display:flex;
  2447. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2448. font-weight:700;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. color:#1E1E1E;
  2452. }
  2453. #u369 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u369_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. }
  2465. #u370_img {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:363px;
  2471. height:2px;
  2472. }
  2473. #u370 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:1196px;
  2477. top:1115px;
  2478. width:362px;
  2479. height:1px;
  2480. display:flex;
  2481. }
  2482. #u370 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 2px 2px 2px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u370_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u371_div {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:328px;
  2501. height:24px;
  2502. background:inherit;
  2503. background-color:rgba(255, 255, 255, 0);
  2504. border:none;
  2505. border-radius:0px;
  2506. -moz-box-shadow:none;
  2507. -webkit-box-shadow:none;
  2508. box-shadow:none;
  2509. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2510. font-weight:700;
  2511. font-style:normal;
  2512. font-size:16px;
  2513. color:#14928A;
  2514. }
  2515. #u371 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:1230px;
  2519. top:1136px;
  2520. width:328px;
  2521. height:24px;
  2522. display:flex;
  2523. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2524. font-weight:700;
  2525. font-style:normal;
  2526. font-size:16px;
  2527. color:#14928A;
  2528. }
  2529. #u371 .text {
  2530. position:absolute;
  2531. align-self:flex-start;
  2532. padding:3px 0px 3px 0px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u371_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. }
  2541. #u372_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:303px;
  2547. height:72px;
  2548. background:inherit;
  2549. background-color:rgba(255, 255, 255, 0);
  2550. border:none;
  2551. border-radius:0px;
  2552. -moz-box-shadow:none;
  2553. -webkit-box-shadow:none;
  2554. box-shadow:none;
  2555. line-height:24px;
  2556. }
  2557. #u372 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:1255px;
  2561. top:1167px;
  2562. width:303px;
  2563. height:72px;
  2564. display:flex;
  2565. line-height:24px;
  2566. }
  2567. #u372 .text {
  2568. position:absolute;
  2569. align-self:flex-start;
  2570. padding:0px 0px 0px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u372_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. }
  2579. #u373_div {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:25px;
  2585. height:72px;
  2586. background:inherit;
  2587. background-color:rgba(255, 255, 255, 0);
  2588. border:none;
  2589. border-radius:0px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. line-height:24px;
  2594. }
  2595. #u373 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:1230px;
  2599. top:1167px;
  2600. width:25px;
  2601. height:72px;
  2602. display:flex;
  2603. line-height:24px;
  2604. }
  2605. #u373 .text {
  2606. position:absolute;
  2607. align-self:flex-start;
  2608. padding:0px 0px 0px 0px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u373_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. }