styles.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246
  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. #u2389_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1578px;
  25. height:2389px;
  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. #u2389 {
  35. border-width:0px;
  36. position:absolute;
  37. left:0px;
  38. top:0px;
  39. width:1578px;
  40. height:2389px;
  41. display:flex;
  42. }
  43. #u2389 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u2389_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. }
  55. #u2390_img {
  56. border-width:0px;
  57. position:absolute;
  58. left:-10px;
  59. top:-8px;
  60. width:1175px;
  61. height:648px;
  62. }
  63. #u2390 {
  64. border-width:0px;
  65. position:absolute;
  66. left:20px;
  67. top:228px;
  68. width:1155px;
  69. height:628px;
  70. display:flex;
  71. }
  72. #u2390 .text {
  73. position:absolute;
  74. align-self:center;
  75. padding:2px 2px 2px 2px;
  76. box-sizing:border-box;
  77. width:100%;
  78. }
  79. #u2390_text {
  80. border-width:0px;
  81. word-wrap:break-word;
  82. text-transform:none;
  83. visibility:hidden;
  84. }
  85. #u2391 {
  86. border-width:0px;
  87. position:absolute;
  88. left:0px;
  89. top:0px;
  90. width:0px;
  91. height:0px;
  92. }
  93. #u2392_img {
  94. border-width:0px;
  95. position:absolute;
  96. left:0px;
  97. top:0px;
  98. width:8px;
  99. height:28px;
  100. }
  101. #u2392 {
  102. border-width:0px;
  103. position:absolute;
  104. left:20px;
  105. top:29px;
  106. width:8px;
  107. height:28px;
  108. display:flex;
  109. }
  110. #u2392 .text {
  111. position:absolute;
  112. align-self:center;
  113. padding:2px 2px 2px 2px;
  114. box-sizing:border-box;
  115. width:100%;
  116. }
  117. #u2392_text {
  118. border-width:0px;
  119. word-wrap:break-word;
  120. text-transform:none;
  121. visibility:hidden;
  122. }
  123. #u2393_div {
  124. border-width:0px;
  125. position:absolute;
  126. left:0px;
  127. top:0px;
  128. width:96px;
  129. height:28px;
  130. background:inherit;
  131. background-color:rgba(255, 255, 255, 0);
  132. border:none;
  133. border-radius:0px;
  134. -moz-box-shadow:none;
  135. -webkit-box-shadow:none;
  136. box-shadow:none;
  137. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  138. font-weight:700;
  139. font-style:normal;
  140. }
  141. #u2393 {
  142. border-width:0px;
  143. position:absolute;
  144. left:34px;
  145. top:29px;
  146. width:96px;
  147. height:28px;
  148. display:flex;
  149. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  150. font-weight:700;
  151. font-style:normal;
  152. }
  153. #u2393 .text {
  154. position:absolute;
  155. align-self:flex-start;
  156. padding:0px 0px 0px 0px;
  157. box-sizing:border-box;
  158. width:100%;
  159. }
  160. #u2393_text {
  161. border-width:0px;
  162. white-space:nowrap;
  163. text-transform:none;
  164. }
  165. #u2394_div {
  166. border-width:0px;
  167. position:absolute;
  168. left:0px;
  169. top:0px;
  170. width:1538px;
  171. height:28px;
  172. background:inherit;
  173. background-color:rgba(244, 244, 245, 1);
  174. border:none;
  175. border-radius:0px;
  176. -moz-box-shadow:none;
  177. -webkit-box-shadow:none;
  178. box-shadow:none;
  179. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  180. font-weight:700;
  181. font-style:normal;
  182. }
  183. #u2394 {
  184. border-width:0px;
  185. position:absolute;
  186. left:20px;
  187. top:77px;
  188. width:1538px;
  189. height:28px;
  190. display:flex;
  191. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  192. font-weight:700;
  193. font-style:normal;
  194. }
  195. #u2394 .text {
  196. position:absolute;
  197. align-self:flex-start;
  198. padding:6px 0px 6px 14px;
  199. box-sizing:border-box;
  200. width:100%;
  201. }
  202. #u2394_text {
  203. border-width:0px;
  204. word-wrap:break-word;
  205. text-transform:none;
  206. }
  207. #u2395_div {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:1538px;
  213. height:28px;
  214. background:inherit;
  215. background-color:rgba(244, 244, 245, 1);
  216. border:none;
  217. border-radius:0px;
  218. -moz-box-shadow:none;
  219. -webkit-box-shadow:none;
  220. box-shadow:none;
  221. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  222. font-weight:700;
  223. font-style:normal;
  224. }
  225. #u2395 {
  226. border-width:0px;
  227. position:absolute;
  228. left:20px;
  229. top:179px;
  230. width:1538px;
  231. height:28px;
  232. display:flex;
  233. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  234. font-weight:700;
  235. font-style:normal;
  236. }
  237. #u2395 .text {
  238. position:absolute;
  239. align-self:flex-start;
  240. padding:6px 0px 6px 14px;
  241. box-sizing:border-box;
  242. width:100%;
  243. }
  244. #u2395_text {
  245. border-width:0px;
  246. word-wrap:break-word;
  247. text-transform:none;
  248. }
  249. #u2396_div {
  250. border-width:0px;
  251. position:absolute;
  252. left:0px;
  253. top:0px;
  254. width:1156px;
  255. height:24px;
  256. background:inherit;
  257. background-color:rgba(255, 255, 255, 0);
  258. border:none;
  259. border-radius:0px;
  260. -moz-box-shadow:none;
  261. -webkit-box-shadow:none;
  262. box-shadow:none;
  263. font-size:14px;
  264. line-height:24px;
  265. }
  266. #u2396 {
  267. border-width:0px;
  268. position:absolute;
  269. left:20px;
  270. top:125px;
  271. width:1156px;
  272. height:24px;
  273. display:flex;
  274. font-size:14px;
  275. line-height:24px;
  276. }
  277. #u2396 .text {
  278. position:absolute;
  279. align-self:flex-start;
  280. padding:0px 0px 0px 14px;
  281. box-sizing:border-box;
  282. width:100%;
  283. }
  284. #u2396_text {
  285. border-width:0px;
  286. word-wrap:break-word;
  287. text-transform:none;
  288. }
  289. #u2397 {
  290. border-width:0px;
  291. position:absolute;
  292. left:0px;
  293. top:0px;
  294. width:0px;
  295. height:0px;
  296. }
  297. #u2398_div {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:328px;
  303. height:24px;
  304. background:inherit;
  305. background-color:rgba(255, 255, 255, 0);
  306. border:none;
  307. border-radius:0px;
  308. -moz-box-shadow:none;
  309. -webkit-box-shadow:none;
  310. box-shadow:none;
  311. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  312. font-weight:700;
  313. font-style:normal;
  314. font-size:16px;
  315. }
  316. #u2398 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1230px;
  320. top:228px;
  321. width:328px;
  322. height:24px;
  323. display:flex;
  324. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  325. font-weight:700;
  326. font-style:normal;
  327. font-size:16px;
  328. }
  329. #u2398 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:3px 0px 3px 0px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u2398_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. }
  341. #u2399_div {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:328px;
  347. height:96px;
  348. background:inherit;
  349. background-color:rgba(255, 255, 255, 0);
  350. border:none;
  351. border-radius:0px;
  352. -moz-box-shadow:none;
  353. -webkit-box-shadow:none;
  354. box-shadow:none;
  355. line-height:24px;
  356. }
  357. #u2399 {
  358. border-width:0px;
  359. position:absolute;
  360. left:1230px;
  361. top:259px;
  362. width:328px;
  363. height:96px;
  364. display:flex;
  365. line-height:24px;
  366. }
  367. #u2399 .text {
  368. position:absolute;
  369. align-self:flex-start;
  370. padding:0px 0px 0px 0px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u2399_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. }
  379. #u2400_img {
  380. border-width:0px;
  381. position:absolute;
  382. left:-10px;
  383. top:-8px;
  384. width:44px;
  385. height:44px;
  386. }
  387. #u2400 {
  388. border-width:0px;
  389. position:absolute;
  390. left:1196px;
  391. top:228px;
  392. width:24px;
  393. height:24px;
  394. display:flex;
  395. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  396. font-weight:700;
  397. font-style:normal;
  398. font-size:14px;
  399. color:#1E1E1E;
  400. }
  401. #u2400 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u2400_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. }
  413. #u2401_div {
  414. border-width:0px;
  415. position:absolute;
  416. left:0px;
  417. top:0px;
  418. width:106px;
  419. height:35px;
  420. background:inherit;
  421. background-color:rgba(255, 255, 255, 0);
  422. box-sizing:border-box;
  423. border-width:2px;
  424. border-style:solid;
  425. border-color:rgba(255, 199, 51, 1);
  426. border-radius:0px;
  427. -moz-box-shadow:none;
  428. -webkit-box-shadow:none;
  429. box-shadow:none;
  430. }
  431. #u2401 {
  432. border-width:0px;
  433. position:absolute;
  434. left:255px;
  435. top:320px;
  436. width:106px;
  437. height:35px;
  438. display:flex;
  439. }
  440. #u2401 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u2401_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. visibility:hidden;
  452. }
  453. #u2402_img {
  454. border-width:0px;
  455. position:absolute;
  456. left:-10px;
  457. top:-8px;
  458. width:44px;
  459. height:44px;
  460. }
  461. #u2402 {
  462. border-width:0px;
  463. position:absolute;
  464. left:296px;
  465. top:296px;
  466. width:24px;
  467. height:24px;
  468. display:flex;
  469. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  470. font-weight:700;
  471. font-style:normal;
  472. font-size:14px;
  473. color:#1E1E1E;
  474. }
  475. #u2402 .text {
  476. position:absolute;
  477. align-self:center;
  478. padding:2px 2px 2px 2px;
  479. box-sizing:border-box;
  480. width:100%;
  481. }
  482. #u2402_text {
  483. border-width:0px;
  484. word-wrap:break-word;
  485. text-transform:none;
  486. }
  487. #u2403_div {
  488. border-width:0px;
  489. position:absolute;
  490. left:0px;
  491. top:0px;
  492. width:91px;
  493. height:35px;
  494. background:inherit;
  495. background-color:rgba(255, 255, 255, 0);
  496. box-sizing:border-box;
  497. border-width:2px;
  498. border-style:solid;
  499. border-color:rgba(255, 199, 51, 1);
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. }
  505. #u2403 {
  506. border-width:0px;
  507. position:absolute;
  508. left:362px;
  509. top:320px;
  510. width:91px;
  511. height:35px;
  512. display:flex;
  513. }
  514. #u2403 .text {
  515. position:absolute;
  516. align-self:center;
  517. padding:2px 2px 2px 2px;
  518. box-sizing:border-box;
  519. width:100%;
  520. }
  521. #u2403_text {
  522. border-width:0px;
  523. word-wrap:break-word;
  524. text-transform:none;
  525. visibility:hidden;
  526. }
  527. #u2404_img {
  528. border-width:0px;
  529. position:absolute;
  530. left:-10px;
  531. top:-8px;
  532. width:44px;
  533. height:44px;
  534. }
  535. #u2404 {
  536. border-width:0px;
  537. position:absolute;
  538. left:396px;
  539. top:296px;
  540. width:24px;
  541. height:24px;
  542. display:flex;
  543. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  544. font-weight:700;
  545. font-style:normal;
  546. font-size:14px;
  547. color:#1E1E1E;
  548. }
  549. #u2404 .text {
  550. position:absolute;
  551. align-self:center;
  552. padding:2px 2px 2px 2px;
  553. box-sizing:border-box;
  554. width:100%;
  555. }
  556. #u2404_text {
  557. border-width:0px;
  558. word-wrap:break-word;
  559. text-transform:none;
  560. }
  561. #u2405_div {
  562. border-width:0px;
  563. position:absolute;
  564. left:0px;
  565. top:0px;
  566. width:75px;
  567. height:35px;
  568. background:inherit;
  569. background-color:rgba(255, 255, 255, 0);
  570. box-sizing:border-box;
  571. border-width:2px;
  572. border-style:solid;
  573. border-color:rgba(255, 199, 51, 1);
  574. border-radius:0px;
  575. -moz-box-shadow:none;
  576. -webkit-box-shadow:none;
  577. box-shadow:none;
  578. }
  579. #u2405 {
  580. border-width:0px;
  581. position:absolute;
  582. left:454px;
  583. top:320px;
  584. width:75px;
  585. height:35px;
  586. display:flex;
  587. }
  588. #u2405 .text {
  589. position:absolute;
  590. align-self:center;
  591. padding:2px 2px 2px 2px;
  592. box-sizing:border-box;
  593. width:100%;
  594. }
  595. #u2405_text {
  596. border-width:0px;
  597. word-wrap:break-word;
  598. text-transform:none;
  599. visibility:hidden;
  600. }
  601. #u2406_img {
  602. border-width:0px;
  603. position:absolute;
  604. left:-10px;
  605. top:-8px;
  606. width:44px;
  607. height:44px;
  608. }
  609. #u2406 {
  610. border-width:0px;
  611. position:absolute;
  612. left:480px;
  613. top:296px;
  614. width:24px;
  615. height:24px;
  616. display:flex;
  617. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  618. font-weight:700;
  619. font-style:normal;
  620. font-size:14px;
  621. color:#1E1E1E;
  622. }
  623. #u2406 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u2406_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. }
  635. #u2407_div {
  636. border-width:0px;
  637. position:absolute;
  638. left:0px;
  639. top:0px;
  640. width:24px;
  641. height:35px;
  642. background:inherit;
  643. background-color:rgba(255, 255, 255, 0);
  644. box-sizing:border-box;
  645. border-width:2px;
  646. border-style:solid;
  647. border-color:rgba(255, 199, 51, 1);
  648. border-radius:0px;
  649. -moz-box-shadow:none;
  650. -webkit-box-shadow:none;
  651. box-shadow:none;
  652. }
  653. #u2407 {
  654. border-width:0px;
  655. position:absolute;
  656. left:1020px;
  657. top:472px;
  658. width:24px;
  659. height:35px;
  660. display:flex;
  661. }
  662. #u2407 .text {
  663. position:absolute;
  664. align-self:center;
  665. padding:2px 2px 2px 2px;
  666. box-sizing:border-box;
  667. width:100%;
  668. }
  669. #u2407_text {
  670. border-width:0px;
  671. word-wrap:break-word;
  672. text-transform:none;
  673. visibility:hidden;
  674. }
  675. #u2408_img {
  676. border-width:0px;
  677. position:absolute;
  678. left:-10px;
  679. top:-8px;
  680. width:44px;
  681. height:44px;
  682. }
  683. #u2408 {
  684. border-width:0px;
  685. position:absolute;
  686. left:1020px;
  687. top:448px;
  688. width:24px;
  689. height:24px;
  690. display:flex;
  691. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  692. font-weight:700;
  693. font-style:normal;
  694. font-size:14px;
  695. color:#1E1E1E;
  696. }
  697. #u2408 .text {
  698. position:absolute;
  699. align-self:center;
  700. padding:2px 2px 2px 2px;
  701. box-sizing:border-box;
  702. width:100%;
  703. }
  704. #u2408_text {
  705. border-width:0px;
  706. word-wrap:break-word;
  707. text-transform:none;
  708. }
  709. #u2409_div {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:24px;
  715. height:35px;
  716. background:inherit;
  717. background-color:rgba(255, 255, 255, 0);
  718. box-sizing:border-box;
  719. border-width:2px;
  720. border-style:solid;
  721. border-color:rgba(255, 199, 51, 1);
  722. border-radius:0px;
  723. -moz-box-shadow:none;
  724. -webkit-box-shadow:none;
  725. box-shadow:none;
  726. }
  727. #u2409 {
  728. border-width:0px;
  729. position:absolute;
  730. left:1045px;
  731. top:472px;
  732. width:24px;
  733. height:35px;
  734. display:flex;
  735. }
  736. #u2409 .text {
  737. position:absolute;
  738. align-self:center;
  739. padding:2px 2px 2px 2px;
  740. box-sizing:border-box;
  741. width:100%;
  742. }
  743. #u2409_text {
  744. border-width:0px;
  745. word-wrap:break-word;
  746. text-transform:none;
  747. visibility:hidden;
  748. }
  749. #u2410_img {
  750. border-width:0px;
  751. position:absolute;
  752. left:-10px;
  753. top:-8px;
  754. width:44px;
  755. height:44px;
  756. }
  757. #u2410 {
  758. border-width:0px;
  759. position:absolute;
  760. left:1045px;
  761. top:448px;
  762. width:24px;
  763. height:24px;
  764. display:flex;
  765. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  766. font-weight:700;
  767. font-style:normal;
  768. font-size:14px;
  769. color:#1E1E1E;
  770. }
  771. #u2410 .text {
  772. position:absolute;
  773. align-self:center;
  774. padding:2px 2px 2px 2px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u2410_text {
  779. border-width:0px;
  780. word-wrap:break-word;
  781. text-transform:none;
  782. }
  783. #u2411_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:41px;
  789. height:35px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 0);
  792. box-sizing:border-box;
  793. border-width:2px;
  794. border-style:solid;
  795. border-color:rgba(255, 199, 51, 1);
  796. border-radius:0px;
  797. -moz-box-shadow:none;
  798. -webkit-box-shadow:none;
  799. box-shadow:none;
  800. }
  801. #u2411 {
  802. border-width:0px;
  803. position:absolute;
  804. left:1070px;
  805. top:472px;
  806. width:41px;
  807. height:35px;
  808. display:flex;
  809. }
  810. #u2411 .text {
  811. position:absolute;
  812. align-self:center;
  813. padding:2px 2px 2px 2px;
  814. box-sizing:border-box;
  815. width:100%;
  816. }
  817. #u2411_text {
  818. border-width:0px;
  819. word-wrap:break-word;
  820. text-transform:none;
  821. visibility:hidden;
  822. }
  823. #u2412_img {
  824. border-width:0px;
  825. position:absolute;
  826. left:-10px;
  827. top:-8px;
  828. width:44px;
  829. height:44px;
  830. }
  831. #u2412 {
  832. border-width:0px;
  833. position:absolute;
  834. left:1079px;
  835. top:448px;
  836. width:24px;
  837. height:24px;
  838. display:flex;
  839. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  840. font-weight:700;
  841. font-style:normal;
  842. font-size:14px;
  843. color:#1E1E1E;
  844. }
  845. #u2412 .text {
  846. position:absolute;
  847. align-self:center;
  848. padding:2px 2px 2px 2px;
  849. box-sizing:border-box;
  850. width:100%;
  851. }
  852. #u2412_text {
  853. border-width:0px;
  854. word-wrap:break-word;
  855. text-transform:none;
  856. }
  857. #u2413 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u2414_div {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:328px;
  871. height:24px;
  872. background:inherit;
  873. background-color:rgba(255, 255, 255, 0);
  874. border:none;
  875. border-radius:0px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  880. font-weight:700;
  881. font-style:normal;
  882. font-size:16px;
  883. }
  884. #u2414 {
  885. border-width:0px;
  886. position:absolute;
  887. left:1230px;
  888. top:396px;
  889. width:328px;
  890. height:24px;
  891. display:flex;
  892. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  893. font-weight:700;
  894. font-style:normal;
  895. font-size:16px;
  896. }
  897. #u2414 .text {
  898. position:absolute;
  899. align-self:flex-start;
  900. padding:3px 0px 3px 0px;
  901. box-sizing:border-box;
  902. width:100%;
  903. }
  904. #u2414_text {
  905. border-width:0px;
  906. word-wrap:break-word;
  907. text-transform:none;
  908. }
  909. #u2415_div {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:328px;
  915. height:66px;
  916. background:inherit;
  917. background-color:rgba(255, 255, 255, 0);
  918. border:none;
  919. border-radius:0px;
  920. -moz-box-shadow:none;
  921. -webkit-box-shadow:none;
  922. box-shadow:none;
  923. line-height:22px;
  924. }
  925. #u2415 {
  926. border-width:0px;
  927. position:absolute;
  928. left:1230px;
  929. top:427px;
  930. width:328px;
  931. height:66px;
  932. display:flex;
  933. line-height:22px;
  934. }
  935. #u2415 .text {
  936. position:absolute;
  937. align-self:flex-start;
  938. padding:0px 0px 0px 0px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u2415_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. }
  947. #u2416_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:-10px;
  951. top:-8px;
  952. width:44px;
  953. height:44px;
  954. }
  955. #u2416 {
  956. border-width:0px;
  957. position:absolute;
  958. left:1196px;
  959. top:396px;
  960. width:24px;
  961. height:24px;
  962. display:flex;
  963. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  964. font-weight:700;
  965. font-style:normal;
  966. font-size:14px;
  967. color:#1E1E1E;
  968. }
  969. #u2416 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:2px 2px 2px 2px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u2416_text {
  977. border-width:0px;
  978. word-wrap:break-word;
  979. text-transform:none;
  980. }
  981. #u2417_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:363px;
  987. height:2px;
  988. }
  989. #u2417 {
  990. border-width:0px;
  991. position:absolute;
  992. left:1196px;
  993. top:375px;
  994. width:362px;
  995. height:1px;
  996. display:flex;
  997. }
  998. #u2417 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u2417_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u2418 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u2419_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:328px;
  1025. height:24px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:0px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1034. font-weight:700;
  1035. font-style:normal;
  1036. font-size:16px;
  1037. }
  1038. #u2419 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:1230px;
  1042. top:534px;
  1043. width:328px;
  1044. height:24px;
  1045. display:flex;
  1046. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1047. font-weight:700;
  1048. font-style:normal;
  1049. font-size:16px;
  1050. }
  1051. #u2419 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:3px 0px 3px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u2419_text {
  1059. border-width:0px;
  1060. word-wrap:break-word;
  1061. text-transform:none;
  1062. }
  1063. #u2420_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:328px;
  1069. height:44px;
  1070. background:inherit;
  1071. background-color:rgba(255, 255, 255, 0);
  1072. border:none;
  1073. border-radius:0px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. line-height:22px;
  1078. }
  1079. #u2420 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:1230px;
  1083. top:565px;
  1084. width:328px;
  1085. height:44px;
  1086. display:flex;
  1087. line-height:22px;
  1088. }
  1089. #u2420 .text {
  1090. position:absolute;
  1091. align-self:flex-start;
  1092. padding:0px 0px 0px 0px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u2420_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. }
  1101. #u2421_img {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:-10px;
  1105. top:-8px;
  1106. width:44px;
  1107. height:44px;
  1108. }
  1109. #u2421 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:1196px;
  1113. top:534px;
  1114. width:24px;
  1115. height:24px;
  1116. display:flex;
  1117. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1118. font-weight:700;
  1119. font-style:normal;
  1120. font-size:14px;
  1121. color:#1E1E1E;
  1122. }
  1123. #u2421 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:2px 2px 2px 2px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u2421_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u2422_img {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:363px;
  1141. height:2px;
  1142. }
  1143. #u2422 {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:1196px;
  1147. top:513px;
  1148. width:362px;
  1149. height:1px;
  1150. display:flex;
  1151. }
  1152. #u2422 .text {
  1153. position:absolute;
  1154. align-self:center;
  1155. padding:2px 2px 2px 2px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u2422_text {
  1160. border-width:0px;
  1161. word-wrap:break-word;
  1162. text-transform:none;
  1163. visibility:hidden;
  1164. }
  1165. #u2423_div {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:328px;
  1171. height:24px;
  1172. background:inherit;
  1173. background-color:rgba(255, 255, 255, 0);
  1174. border:none;
  1175. border-radius:0px;
  1176. -moz-box-shadow:none;
  1177. -webkit-box-shadow:none;
  1178. box-shadow:none;
  1179. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1180. font-weight:700;
  1181. font-style:normal;
  1182. font-size:16px;
  1183. color:#14928A;
  1184. }
  1185. #u2423 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:1230px;
  1189. top:650px;
  1190. width:328px;
  1191. height:24px;
  1192. display:flex;
  1193. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1194. font-weight:700;
  1195. font-style:normal;
  1196. font-size:16px;
  1197. color:#14928A;
  1198. }
  1199. #u2423 .text {
  1200. position:absolute;
  1201. align-self:flex-start;
  1202. padding:3px 0px 3px 0px;
  1203. box-sizing:border-box;
  1204. width:100%;
  1205. }
  1206. #u2423_text {
  1207. border-width:0px;
  1208. word-wrap:break-word;
  1209. text-transform:none;
  1210. }
  1211. #u2424_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:328px;
  1217. height:66px;
  1218. background:inherit;
  1219. background-color:rgba(255, 255, 255, 0);
  1220. border:none;
  1221. border-radius:0px;
  1222. -moz-box-shadow:none;
  1223. -webkit-box-shadow:none;
  1224. box-shadow:none;
  1225. line-height:22px;
  1226. }
  1227. #u2424 {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:1230px;
  1231. top:681px;
  1232. width:328px;
  1233. height:66px;
  1234. display:flex;
  1235. line-height:22px;
  1236. }
  1237. #u2424 .text {
  1238. position:absolute;
  1239. align-self:flex-start;
  1240. padding:0px 0px 0px 0px;
  1241. box-sizing:border-box;
  1242. width:100%;
  1243. }
  1244. #u2424_text {
  1245. border-width:0px;
  1246. word-wrap:break-word;
  1247. text-transform:none;
  1248. }
  1249. #u2425_img {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:-10px;
  1253. top:-8px;
  1254. width:44px;
  1255. height:44px;
  1256. }
  1257. #u2425 {
  1258. border-width:0px;
  1259. position:absolute;
  1260. left:1196px;
  1261. top:650px;
  1262. width:24px;
  1263. height:24px;
  1264. display:flex;
  1265. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1266. font-weight:700;
  1267. font-style:normal;
  1268. font-size:14px;
  1269. color:#1E1E1E;
  1270. }
  1271. #u2425 .text {
  1272. position:absolute;
  1273. align-self:center;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u2425_text {
  1279. border-width:0px;
  1280. word-wrap:break-word;
  1281. text-transform:none;
  1282. }
  1283. #u2426_img {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:0px;
  1287. top:0px;
  1288. width:363px;
  1289. height:2px;
  1290. }
  1291. #u2426 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:1196px;
  1295. top:629px;
  1296. width:362px;
  1297. height:1px;
  1298. display:flex;
  1299. }
  1300. #u2426 .text {
  1301. position:absolute;
  1302. align-self:center;
  1303. padding:2px 2px 2px 2px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u2426_text {
  1308. border-width:0px;
  1309. word-wrap:break-word;
  1310. text-transform:none;
  1311. visibility:hidden;
  1312. }
  1313. #u2427 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:0px;
  1319. height:0px;
  1320. }
  1321. #u2428_div {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:328px;
  1327. height:24px;
  1328. background:inherit;
  1329. background-color:rgba(255, 255, 255, 0);
  1330. border:none;
  1331. border-radius:0px;
  1332. -moz-box-shadow:none;
  1333. -webkit-box-shadow:none;
  1334. box-shadow:none;
  1335. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1336. font-weight:700;
  1337. font-style:normal;
  1338. font-size:16px;
  1339. }
  1340. #u2428 {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:1230px;
  1344. top:788px;
  1345. width:328px;
  1346. height:24px;
  1347. display:flex;
  1348. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1349. font-weight:700;
  1350. font-style:normal;
  1351. font-size:16px;
  1352. }
  1353. #u2428 .text {
  1354. position:absolute;
  1355. align-self:flex-start;
  1356. padding:3px 0px 3px 0px;
  1357. box-sizing:border-box;
  1358. width:100%;
  1359. }
  1360. #u2428_text {
  1361. border-width:0px;
  1362. word-wrap:break-word;
  1363. text-transform:none;
  1364. }
  1365. #u2429_div {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:328px;
  1371. height:88px;
  1372. background:inherit;
  1373. background-color:rgba(255, 255, 255, 0);
  1374. border:none;
  1375. border-radius:0px;
  1376. -moz-box-shadow:none;
  1377. -webkit-box-shadow:none;
  1378. box-shadow:none;
  1379. line-height:22px;
  1380. }
  1381. #u2429 {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:1230px;
  1385. top:819px;
  1386. width:328px;
  1387. height:88px;
  1388. display:flex;
  1389. line-height:22px;
  1390. }
  1391. #u2429 .text {
  1392. position:absolute;
  1393. align-self:flex-start;
  1394. padding:0px 0px 0px 0px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u2429_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. }
  1403. #u2430_img {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:-10px;
  1407. top:-8px;
  1408. width:44px;
  1409. height:44px;
  1410. }
  1411. #u2430 {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:1196px;
  1415. top:788px;
  1416. width:24px;
  1417. height:24px;
  1418. display:flex;
  1419. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1420. font-weight:700;
  1421. font-style:normal;
  1422. font-size:14px;
  1423. color:#1E1E1E;
  1424. }
  1425. #u2430 .text {
  1426. position:absolute;
  1427. align-self:center;
  1428. padding:2px 2px 2px 2px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u2430_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. }
  1437. #u2431_img {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:363px;
  1443. height:2px;
  1444. }
  1445. #u2431 {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:1196px;
  1449. top:767px;
  1450. width:362px;
  1451. height:1px;
  1452. display:flex;
  1453. }
  1454. #u2431 .text {
  1455. position:absolute;
  1456. align-self:center;
  1457. padding:2px 2px 2px 2px;
  1458. box-sizing:border-box;
  1459. width:100%;
  1460. }
  1461. #u2431_text {
  1462. border-width:0px;
  1463. word-wrap:break-word;
  1464. text-transform:none;
  1465. visibility:hidden;
  1466. }
  1467. #u2432 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:0px;
  1473. height:0px;
  1474. }
  1475. #u2433_div {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:328px;
  1481. height:24px;
  1482. background:inherit;
  1483. background-color:rgba(255, 255, 255, 0);
  1484. border:none;
  1485. border-radius:0px;
  1486. -moz-box-shadow:none;
  1487. -webkit-box-shadow:none;
  1488. box-shadow:none;
  1489. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1490. font-weight:700;
  1491. font-style:normal;
  1492. font-size:16px;
  1493. }
  1494. #u2433 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:1230px;
  1498. top:948px;
  1499. width:328px;
  1500. height:24px;
  1501. display:flex;
  1502. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1503. font-weight:700;
  1504. font-style:normal;
  1505. font-size:16px;
  1506. }
  1507. #u2433 .text {
  1508. position:absolute;
  1509. align-self:flex-start;
  1510. padding:3px 0px 3px 0px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u2433_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. }
  1519. #u2434_div {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:0px;
  1523. top:0px;
  1524. width:328px;
  1525. height:44px;
  1526. background:inherit;
  1527. background-color:rgba(255, 255, 255, 0);
  1528. border:none;
  1529. border-radius:0px;
  1530. -moz-box-shadow:none;
  1531. -webkit-box-shadow:none;
  1532. box-shadow:none;
  1533. line-height:22px;
  1534. }
  1535. #u2434 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:1230px;
  1539. top:979px;
  1540. width:328px;
  1541. height:44px;
  1542. display:flex;
  1543. line-height:22px;
  1544. }
  1545. #u2434 .text {
  1546. position:absolute;
  1547. align-self:flex-start;
  1548. padding:0px 0px 0px 0px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u2434_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. }
  1557. #u2435_img {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:-10px;
  1561. top:-8px;
  1562. width:44px;
  1563. height:44px;
  1564. }
  1565. #u2435 {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:1196px;
  1569. top:948px;
  1570. width:24px;
  1571. height:24px;
  1572. display:flex;
  1573. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1574. font-weight:700;
  1575. font-style:normal;
  1576. font-size:14px;
  1577. color:#1E1E1E;
  1578. }
  1579. #u2435 .text {
  1580. position:absolute;
  1581. align-self:center;
  1582. padding:2px 2px 2px 2px;
  1583. box-sizing:border-box;
  1584. width:100%;
  1585. }
  1586. #u2435_text {
  1587. border-width:0px;
  1588. word-wrap:break-word;
  1589. text-transform:none;
  1590. }
  1591. #u2436_img {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:363px;
  1597. height:2px;
  1598. }
  1599. #u2436 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:1196px;
  1603. top:927px;
  1604. width:362px;
  1605. height:1px;
  1606. display:flex;
  1607. }
  1608. #u2436 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:2px 2px 2px 2px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u2436_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. visibility:hidden;
  1620. }
  1621. #u2437_img {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:-10px;
  1625. top:-8px;
  1626. width:1019px;
  1627. height:640px;
  1628. }
  1629. #u2437 {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:98px;
  1633. top:896px;
  1634. width:999px;
  1635. height:620px;
  1636. display:flex;
  1637. }
  1638. #u2437 .text {
  1639. position:absolute;
  1640. align-self:center;
  1641. padding:2px 2px 2px 2px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u2437_text {
  1646. border-width:0px;
  1647. word-wrap:break-word;
  1648. text-transform:none;
  1649. visibility:hidden;
  1650. }
  1651. #u2438 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:0px;
  1657. height:0px;
  1658. }
  1659. #u2439_div {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:0px;
  1663. top:0px;
  1664. width:328px;
  1665. height:88px;
  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. line-height:22px;
  1674. }
  1675. #u2439 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:1230px;
  1679. top:1095px;
  1680. width:328px;
  1681. height:88px;
  1682. display:flex;
  1683. line-height:22px;
  1684. }
  1685. #u2439 .text {
  1686. position:absolute;
  1687. align-self:flex-start;
  1688. padding:0px 0px 0px 0px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u2439_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. }
  1697. #u2440_div {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:328px;
  1703. height:24px;
  1704. background:inherit;
  1705. background-color:rgba(255, 255, 255, 0);
  1706. border:none;
  1707. border-radius:0px;
  1708. -moz-box-shadow:none;
  1709. -webkit-box-shadow:none;
  1710. box-shadow:none;
  1711. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1712. font-weight:700;
  1713. font-style:normal;
  1714. font-size:16px;
  1715. }
  1716. #u2440 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:1230px;
  1720. top:1064px;
  1721. width:328px;
  1722. height:24px;
  1723. display:flex;
  1724. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1725. font-weight:700;
  1726. font-style:normal;
  1727. font-size:16px;
  1728. }
  1729. #u2440 .text {
  1730. position:absolute;
  1731. align-self:flex-start;
  1732. padding:3px 0px 3px 0px;
  1733. box-sizing:border-box;
  1734. width:100%;
  1735. }
  1736. #u2440_text {
  1737. border-width:0px;
  1738. word-wrap:break-word;
  1739. text-transform:none;
  1740. }
  1741. #u2441_img {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:-10px;
  1745. top:-8px;
  1746. width:44px;
  1747. height:44px;
  1748. }
  1749. #u2441 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:1196px;
  1753. top:1064px;
  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. #u2441 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u2441_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. }
  1775. #u2442_img {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:363px;
  1781. height:2px;
  1782. }
  1783. #u2442 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:1196px;
  1787. top:1043px;
  1788. width:362px;
  1789. height:1px;
  1790. display:flex;
  1791. }
  1792. #u2442 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u2442_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u2443_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:81px;
  1811. height:35px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 255, 0);
  1814. box-sizing:border-box;
  1815. border-width:2px;
  1816. border-style:solid;
  1817. border-color:rgba(255, 199, 51, 1);
  1818. border-radius:0px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. }
  1823. #u2443 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:122px;
  1827. top:1171px;
  1828. width:81px;
  1829. height:35px;
  1830. display:flex;
  1831. }
  1832. #u2443 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 2px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u2443_text {
  1840. border-width:0px;
  1841. word-wrap:break-word;
  1842. text-transform:none;
  1843. visibility:hidden;
  1844. }
  1845. #u2444_img {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:-10px;
  1849. top:-8px;
  1850. width:44px;
  1851. height:44px;
  1852. }
  1853. #u2444 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:151px;
  1857. top:1147px;
  1858. width:24px;
  1859. height:24px;
  1860. display:flex;
  1861. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1862. font-weight:700;
  1863. font-style:normal;
  1864. font-size:14px;
  1865. color:#1E1E1E;
  1866. }
  1867. #u2444 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 2px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u2444_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u2445 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:0px;
  1885. height:0px;
  1886. }
  1887. #u2446_div {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:328px;
  1893. height:66px;
  1894. background:inherit;
  1895. background-color:rgba(255, 255, 255, 0);
  1896. border:none;
  1897. border-radius:0px;
  1898. -moz-box-shadow:none;
  1899. -webkit-box-shadow:none;
  1900. box-shadow:none;
  1901. line-height:22px;
  1902. }
  1903. #u2446 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:1230px;
  1907. top:1587px;
  1908. width:328px;
  1909. height:66px;
  1910. display:flex;
  1911. line-height:22px;
  1912. }
  1913. #u2446 .text {
  1914. position:absolute;
  1915. align-self:flex-start;
  1916. padding:0px 0px 0px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u2446_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u2447_div {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:328px;
  1931. height:24px;
  1932. background:inherit;
  1933. background-color:rgba(255, 255, 255, 0);
  1934. border:none;
  1935. border-radius:0px;
  1936. -moz-box-shadow:none;
  1937. -webkit-box-shadow:none;
  1938. box-shadow:none;
  1939. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1940. font-weight:700;
  1941. font-style:normal;
  1942. font-size:16px;
  1943. }
  1944. #u2447 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:1230px;
  1948. top:1556px;
  1949. width:328px;
  1950. height:24px;
  1951. display:flex;
  1952. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1953. font-weight:700;
  1954. font-style:normal;
  1955. font-size:16px;
  1956. }
  1957. #u2447 .text {
  1958. position:absolute;
  1959. align-self:flex-start;
  1960. padding:3px 0px 3px 0px;
  1961. box-sizing:border-box;
  1962. width:100%;
  1963. }
  1964. #u2447_text {
  1965. border-width:0px;
  1966. word-wrap:break-word;
  1967. text-transform:none;
  1968. }
  1969. #u2448_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:-10px;
  1973. top:-8px;
  1974. width:44px;
  1975. height:44px;
  1976. }
  1977. #u2448 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:1196px;
  1981. top:1556px;
  1982. width:24px;
  1983. height:24px;
  1984. display:flex;
  1985. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1986. font-weight:700;
  1987. font-style:normal;
  1988. font-size:14px;
  1989. color:#1E1E1E;
  1990. }
  1991. #u2448 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 2px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u2448_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u2449_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:-10px;
  2007. top:-8px;
  2008. width:1019px;
  2009. height:520px;
  2010. }
  2011. #u2449 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:98px;
  2015. top:1556px;
  2016. width:999px;
  2017. height:500px;
  2018. display:flex;
  2019. }
  2020. #u2449 .text {
  2021. position:absolute;
  2022. align-self:center;
  2023. padding:2px 2px 2px 2px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u2449_text {
  2028. border-width:0px;
  2029. word-wrap:break-word;
  2030. text-transform:none;
  2031. visibility:hidden;
  2032. }
  2033. #u2450_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:81px;
  2039. height:35px;
  2040. background:inherit;
  2041. background-color:rgba(255, 255, 255, 0);
  2042. box-sizing:border-box;
  2043. border-width:2px;
  2044. border-style:solid;
  2045. border-color:rgba(255, 199, 51, 1);
  2046. border-radius:0px;
  2047. -moz-box-shadow:none;
  2048. -webkit-box-shadow:none;
  2049. box-shadow:none;
  2050. }
  2051. #u2450 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:223px;
  2055. top:1830px;
  2056. width:81px;
  2057. height:35px;
  2058. display:flex;
  2059. }
  2060. #u2450 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:2px 2px 2px 2px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u2450_text {
  2068. border-width:0px;
  2069. word-wrap:break-word;
  2070. text-transform:none;
  2071. visibility:hidden;
  2072. }
  2073. #u2451_img {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:-10px;
  2077. top:-8px;
  2078. width:44px;
  2079. height:44px;
  2080. }
  2081. #u2451 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:252px;
  2085. top:1806px;
  2086. width:24px;
  2087. height:24px;
  2088. display:flex;
  2089. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2090. font-weight:700;
  2091. font-style:normal;
  2092. font-size:14px;
  2093. color:#1E1E1E;
  2094. }
  2095. #u2451 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 2px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u2451_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u2452_div {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:42px;
  2113. height:30px;
  2114. background:inherit;
  2115. background-color:rgba(255, 255, 255, 0);
  2116. box-sizing:border-box;
  2117. border-width:2px;
  2118. border-style:solid;
  2119. border-color:rgba(255, 199, 51, 1);
  2120. border-radius:0px;
  2121. -moz-box-shadow:none;
  2122. -webkit-box-shadow:none;
  2123. box-shadow:none;
  2124. }
  2125. #u2452 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:893px;
  2129. top:1943px;
  2130. width:42px;
  2131. height:30px;
  2132. display:flex;
  2133. }
  2134. #u2452 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u2452_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. visibility:hidden;
  2146. }
  2147. #u2453_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:-10px;
  2151. top:-8px;
  2152. width:44px;
  2153. height:44px;
  2154. }
  2155. #u2453 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:902px;
  2159. top:1917px;
  2160. width:24px;
  2161. height:24px;
  2162. display:flex;
  2163. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2164. font-weight:700;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. color:#1E1E1E;
  2168. }
  2169. #u2453 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u2453_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. }
  2181. #u2454_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:52px;
  2187. height:30px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 0);
  2190. box-sizing:border-box;
  2191. border-width:2px;
  2192. border-style:solid;
  2193. border-color:rgba(255, 199, 51, 1);
  2194. border-radius:0px;
  2195. -moz-box-shadow:none;
  2196. -webkit-box-shadow:none;
  2197. box-shadow:none;
  2198. }
  2199. #u2454 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:936px;
  2203. top:1943px;
  2204. width:52px;
  2205. height:30px;
  2206. display:flex;
  2207. }
  2208. #u2454 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u2454_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. visibility:hidden;
  2220. }
  2221. #u2455_img {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:-10px;
  2225. top:-8px;
  2226. width:44px;
  2227. height:44px;
  2228. }
  2229. #u2455 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:950px;
  2233. top:1917px;
  2234. width:24px;
  2235. height:24px;
  2236. display:flex;
  2237. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2238. font-weight:700;
  2239. font-style:normal;
  2240. font-size:14px;
  2241. color:#1E1E1E;
  2242. }
  2243. #u2455 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:2px 2px 2px 2px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u2455_text {
  2251. border-width:0px;
  2252. word-wrap:break-word;
  2253. text-transform:none;
  2254. }
  2255. #u2456_div {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:52px;
  2261. height:30px;
  2262. background:inherit;
  2263. background-color:rgba(255, 255, 255, 0);
  2264. box-sizing:border-box;
  2265. border-width:2px;
  2266. border-style:solid;
  2267. border-color:rgba(255, 199, 51, 1);
  2268. border-radius:0px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. }
  2273. #u2456 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:989px;
  2277. top:1943px;
  2278. width:52px;
  2279. height:30px;
  2280. display:flex;
  2281. }
  2282. #u2456 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 2px 2px 2px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u2456_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u2457_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:-10px;
  2299. top:-8px;
  2300. width:44px;
  2301. height:44px;
  2302. }
  2303. #u2457 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:1003px;
  2307. top:1917px;
  2308. width:24px;
  2309. height:24px;
  2310. display:flex;
  2311. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2312. font-weight:700;
  2313. font-style:normal;
  2314. font-size:14px;
  2315. color:#1E1E1E;
  2316. }
  2317. #u2457 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:2px 2px 2px 2px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u2457_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. }
  2329. #u2458_div {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:57px;
  2335. height:31px;
  2336. background:inherit;
  2337. background-color:rgba(255, 255, 255, 0);
  2338. box-sizing:border-box;
  2339. border-width:2px;
  2340. border-style:solid;
  2341. border-color:rgba(255, 199, 51, 1);
  2342. border-radius:0px;
  2343. -moz-box-shadow:none;
  2344. -webkit-box-shadow:none;
  2345. box-shadow:none;
  2346. }
  2347. #u2458 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:910px;
  2351. top:1975px;
  2352. width:57px;
  2353. height:31px;
  2354. display:flex;
  2355. }
  2356. #u2458 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 2px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u2458_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. visibility:hidden;
  2368. }
  2369. #u2459_img {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:-10px;
  2373. top:-8px;
  2374. width:44px;
  2375. height:44px;
  2376. }
  2377. #u2459 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:927px;
  2381. top:2006px;
  2382. width:24px;
  2383. height:24px;
  2384. display:flex;
  2385. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2386. font-weight:700;
  2387. font-style:normal;
  2388. font-size:14px;
  2389. color:#1E1E1E;
  2390. }
  2391. #u2459 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 2px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u2459_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. }
  2403. #u2460_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:57px;
  2409. height:31px;
  2410. background:inherit;
  2411. background-color:rgba(255, 255, 255, 0);
  2412. box-sizing:border-box;
  2413. border-width:2px;
  2414. border-style:solid;
  2415. border-color:rgba(255, 199, 51, 1);
  2416. border-radius:0px;
  2417. -moz-box-shadow:none;
  2418. -webkit-box-shadow:none;
  2419. box-shadow:none;
  2420. }
  2421. #u2460 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:968px;
  2425. top:1975px;
  2426. width:57px;
  2427. height:31px;
  2428. display:flex;
  2429. }
  2430. #u2460 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 2px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u2460_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u2461_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:-10px;
  2447. top:-8px;
  2448. width:44px;
  2449. height:44px;
  2450. }
  2451. #u2461 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:985px;
  2455. top:2006px;
  2456. width:24px;
  2457. height:24px;
  2458. display:flex;
  2459. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2460. font-weight:700;
  2461. font-style:normal;
  2462. font-size:14px;
  2463. color:#1E1E1E;
  2464. }
  2465. #u2461 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u2461_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. }
  2477. #u2462 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:0px;
  2483. height:0px;
  2484. }
  2485. #u2463_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:328px;
  2491. height:66px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 0);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. line-height:22px;
  2500. }
  2501. #u2463 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:1230px;
  2505. top:1725px;
  2506. width:328px;
  2507. height:66px;
  2508. display:flex;
  2509. line-height:22px;
  2510. }
  2511. #u2463 .text {
  2512. position:absolute;
  2513. align-self:flex-start;
  2514. padding:0px 0px 0px 0px;
  2515. box-sizing:border-box;
  2516. width:100%;
  2517. }
  2518. #u2463_text {
  2519. border-width:0px;
  2520. word-wrap:break-word;
  2521. text-transform:none;
  2522. }
  2523. #u2464_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:328px;
  2529. height:24px;
  2530. background:inherit;
  2531. background-color:rgba(255, 255, 255, 0);
  2532. border:none;
  2533. border-radius:0px;
  2534. -moz-box-shadow:none;
  2535. -webkit-box-shadow:none;
  2536. box-shadow:none;
  2537. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2538. font-weight:700;
  2539. font-style:normal;
  2540. font-size:16px;
  2541. }
  2542. #u2464 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:1230px;
  2546. top:1694px;
  2547. width:328px;
  2548. height:24px;
  2549. display:flex;
  2550. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2551. font-weight:700;
  2552. font-style:normal;
  2553. font-size:16px;
  2554. }
  2555. #u2464 .text {
  2556. position:absolute;
  2557. align-self:flex-start;
  2558. padding:3px 0px 3px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u2464_text {
  2563. border-width:0px;
  2564. word-wrap:break-word;
  2565. text-transform:none;
  2566. }
  2567. #u2465_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:-10px;
  2571. top:-8px;
  2572. width:44px;
  2573. height:44px;
  2574. }
  2575. #u2465 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:1196px;
  2579. top:1694px;
  2580. width:24px;
  2581. height:24px;
  2582. display:flex;
  2583. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2584. font-weight:700;
  2585. font-style:normal;
  2586. font-size:14px;
  2587. color:#1E1E1E;
  2588. }
  2589. #u2465 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 2px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u2465_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. }
  2601. #u2466_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:363px;
  2607. height:2px;
  2608. }
  2609. #u2466 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:1196px;
  2613. top:1673px;
  2614. width:362px;
  2615. height:1px;
  2616. display:flex;
  2617. }
  2618. #u2466 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 2px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u2466_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u2467 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:0px;
  2637. height:0px;
  2638. }
  2639. #u2468_div {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:0px;
  2643. top:0px;
  2644. width:328px;
  2645. height:44px;
  2646. background:inherit;
  2647. background-color:rgba(255, 255, 255, 0);
  2648. border:none;
  2649. border-radius:0px;
  2650. -moz-box-shadow:none;
  2651. -webkit-box-shadow:none;
  2652. box-shadow:none;
  2653. line-height:22px;
  2654. }
  2655. #u2468 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:1230px;
  2659. top:1863px;
  2660. width:328px;
  2661. height:44px;
  2662. display:flex;
  2663. line-height:22px;
  2664. }
  2665. #u2468 .text {
  2666. position:absolute;
  2667. align-self:flex-start;
  2668. padding:0px 0px 0px 0px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u2468_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. }
  2677. #u2469_div {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:328px;
  2683. height:24px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border:none;
  2687. border-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2692. font-weight:700;
  2693. font-style:normal;
  2694. font-size:16px;
  2695. }
  2696. #u2469 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:1230px;
  2700. top:1832px;
  2701. width:328px;
  2702. height:24px;
  2703. display:flex;
  2704. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2705. font-weight:700;
  2706. font-style:normal;
  2707. font-size:16px;
  2708. }
  2709. #u2469 .text {
  2710. position:absolute;
  2711. align-self:flex-start;
  2712. padding:3px 0px 3px 0px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u2469_text {
  2717. border-width:0px;
  2718. word-wrap:break-word;
  2719. text-transform:none;
  2720. }
  2721. #u2470_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:-10px;
  2725. top:-8px;
  2726. width:44px;
  2727. height:44px;
  2728. }
  2729. #u2470 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:1196px;
  2733. top:1832px;
  2734. width:24px;
  2735. height:24px;
  2736. display:flex;
  2737. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2738. font-weight:700;
  2739. font-style:normal;
  2740. font-size:14px;
  2741. color:#1E1E1E;
  2742. }
  2743. #u2470 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u2470_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. }
  2755. #u2471_img {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:363px;
  2761. height:2px;
  2762. }
  2763. #u2471 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:1196px;
  2767. top:1811px;
  2768. width:362px;
  2769. height:1px;
  2770. display:flex;
  2771. }
  2772. #u2471 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 2px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u2471_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u2472 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:0px;
  2791. height:0px;
  2792. }
  2793. #u2473_div {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:328px;
  2799. height:66px;
  2800. background:inherit;
  2801. background-color:rgba(255, 255, 255, 0);
  2802. border:none;
  2803. border-radius:0px;
  2804. -moz-box-shadow:none;
  2805. -webkit-box-shadow:none;
  2806. box-shadow:none;
  2807. line-height:22px;
  2808. }
  2809. #u2473 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:1230px;
  2813. top:2117px;
  2814. width:328px;
  2815. height:66px;
  2816. display:flex;
  2817. line-height:22px;
  2818. }
  2819. #u2473 .text {
  2820. position:absolute;
  2821. align-self:flex-start;
  2822. padding:0px 0px 0px 0px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u2473_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. }
  2831. #u2474_div {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:328px;
  2837. height:24px;
  2838. background:inherit;
  2839. background-color:rgba(255, 255, 255, 0);
  2840. border:none;
  2841. border-radius:0px;
  2842. -moz-box-shadow:none;
  2843. -webkit-box-shadow:none;
  2844. box-shadow:none;
  2845. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2846. font-weight:700;
  2847. font-style:normal;
  2848. font-size:16px;
  2849. }
  2850. #u2474 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:1230px;
  2854. top:2086px;
  2855. width:328px;
  2856. height:24px;
  2857. display:flex;
  2858. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2859. font-weight:700;
  2860. font-style:normal;
  2861. font-size:16px;
  2862. }
  2863. #u2474 .text {
  2864. position:absolute;
  2865. align-self:flex-start;
  2866. padding:3px 0px 3px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u2474_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. }
  2875. #u2475_img {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:-10px;
  2879. top:-8px;
  2880. width:44px;
  2881. height:44px;
  2882. }
  2883. #u2475 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:1196px;
  2887. top:2086px;
  2888. width:24px;
  2889. height:24px;
  2890. display:flex;
  2891. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2892. font-weight:700;
  2893. font-style:normal;
  2894. font-size:14px;
  2895. color:#1E1E1E;
  2896. }
  2897. #u2475 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 2px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u2475_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. }
  2909. #u2476_img {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:363px;
  2915. height:2px;
  2916. }
  2917. #u2476 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:1196px;
  2921. top:2065px;
  2922. width:362px;
  2923. height:1px;
  2924. display:flex;
  2925. }
  2926. #u2476 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 2px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u2476_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u2477 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:0px;
  2945. height:0px;
  2946. }
  2947. #u2478_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:328px;
  2953. height:22px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 0);
  2956. border:none;
  2957. border-radius:0px;
  2958. -moz-box-shadow:none;
  2959. -webkit-box-shadow:none;
  2960. box-shadow:none;
  2961. line-height:22px;
  2962. }
  2963. #u2478 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:1230px;
  2967. top:2255px;
  2968. width:328px;
  2969. height:22px;
  2970. display:flex;
  2971. line-height:22px;
  2972. }
  2973. #u2478 .text {
  2974. position:absolute;
  2975. align-self:flex-start;
  2976. padding:0px 0px 0px 0px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u2478_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. }
  2985. #u2479_div {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:328px;
  2991. height:24px;
  2992. background:inherit;
  2993. background-color:rgba(255, 255, 255, 0);
  2994. border:none;
  2995. border-radius:0px;
  2996. -moz-box-shadow:none;
  2997. -webkit-box-shadow:none;
  2998. box-shadow:none;
  2999. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3000. font-weight:700;
  3001. font-style:normal;
  3002. font-size:16px;
  3003. }
  3004. #u2479 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:1230px;
  3008. top:2224px;
  3009. width:328px;
  3010. height:24px;
  3011. display:flex;
  3012. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3013. font-weight:700;
  3014. font-style:normal;
  3015. font-size:16px;
  3016. }
  3017. #u2479 .text {
  3018. position:absolute;
  3019. align-self:flex-start;
  3020. padding:3px 0px 3px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u2479_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u2480_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:-10px;
  3033. top:-8px;
  3034. width:44px;
  3035. height:44px;
  3036. }
  3037. #u2480 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:1196px;
  3041. top:2224px;
  3042. width:24px;
  3043. height:24px;
  3044. display:flex;
  3045. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3046. font-weight:700;
  3047. font-style:normal;
  3048. font-size:14px;
  3049. color:#1E1E1E;
  3050. }
  3051. #u2480 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 2px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u2480_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. }
  3063. #u2481_img {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:363px;
  3069. height:2px;
  3070. }
  3071. #u2481 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:1196px;
  3075. top:2203px;
  3076. width:362px;
  3077. height:1px;
  3078. display:flex;
  3079. }
  3080. #u2481 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 2px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u2481_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u2482 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:0px;
  3099. height:0px;
  3100. }
  3101. #u2483_div {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:328px;
  3107. height:66px;
  3108. background:inherit;
  3109. background-color:rgba(255, 255, 255, 0);
  3110. border:none;
  3111. border-radius:0px;
  3112. -moz-box-shadow:none;
  3113. -webkit-box-shadow:none;
  3114. box-shadow:none;
  3115. line-height:22px;
  3116. }
  3117. #u2483 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:1230px;
  3121. top:1979px;
  3122. width:328px;
  3123. height:66px;
  3124. display:flex;
  3125. line-height:22px;
  3126. }
  3127. #u2483 .text {
  3128. position:absolute;
  3129. align-self:flex-start;
  3130. padding:0px 0px 0px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u2483_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. }
  3139. #u2484_div {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:328px;
  3145. height:24px;
  3146. background:inherit;
  3147. background-color:rgba(255, 255, 255, 0);
  3148. border:none;
  3149. border-radius:0px;
  3150. -moz-box-shadow:none;
  3151. -webkit-box-shadow:none;
  3152. box-shadow:none;
  3153. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3154. font-weight:700;
  3155. font-style:normal;
  3156. font-size:16px;
  3157. }
  3158. #u2484 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:1230px;
  3162. top:1948px;
  3163. width:328px;
  3164. height:24px;
  3165. display:flex;
  3166. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3167. font-weight:700;
  3168. font-style:normal;
  3169. font-size:16px;
  3170. }
  3171. #u2484 .text {
  3172. position:absolute;
  3173. align-self:flex-start;
  3174. padding:3px 0px 3px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u2484_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. }
  3183. #u2485_img {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:-10px;
  3187. top:-8px;
  3188. width:44px;
  3189. height:44px;
  3190. }
  3191. #u2485 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:1196px;
  3195. top:1948px;
  3196. width:24px;
  3197. height:24px;
  3198. display:flex;
  3199. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3200. font-weight:700;
  3201. font-style:normal;
  3202. font-size:14px;
  3203. color:#1E1E1E;
  3204. }
  3205. #u2485 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 2px 2px 2px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u2485_text {
  3213. border-width:0px;
  3214. word-wrap:break-word;
  3215. text-transform:none;
  3216. }
  3217. #u2486_img {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:363px;
  3223. height:2px;
  3224. }
  3225. #u2486 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:1196px;
  3229. top:1927px;
  3230. width:362px;
  3231. height:1px;
  3232. display:flex;
  3233. }
  3234. #u2486 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:2px 2px 2px 2px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u2486_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. visibility:hidden;
  3246. }