styles.css 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1558px;
  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. #u535_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:-10px;
  23. top:-8px;
  24. width:1175px;
  25. height:647px;
  26. }
  27. #u535 {
  28. border-width:0px;
  29. position:absolute;
  30. left:20px;
  31. top:226px;
  32. width:1155px;
  33. height:627px;
  34. display:flex;
  35. }
  36. #u535 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u535_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u536_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:1538px;
  55. height:28px;
  56. background:inherit;
  57. background-color:rgba(244, 244, 245, 1);
  58. border:none;
  59. border-radius:0px;
  60. -moz-box-shadow:none;
  61. -webkit-box-shadow:none;
  62. box-shadow:none;
  63. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  64. font-weight:700;
  65. font-style:normal;
  66. }
  67. #u536 {
  68. border-width:0px;
  69. position:absolute;
  70. left:20px;
  71. top:179px;
  72. width:1538px;
  73. height:28px;
  74. display:flex;
  75. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  76. font-weight:700;
  77. font-style:normal;
  78. }
  79. #u536 .text {
  80. position:absolute;
  81. align-self:flex-start;
  82. padding:6px 0px 6px 14px;
  83. box-sizing:border-box;
  84. width:100%;
  85. }
  86. #u536_text {
  87. border-width:0px;
  88. word-wrap:break-word;
  89. text-transform:none;
  90. }
  91. #u537 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u538_img {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:8px;
  105. height:28px;
  106. }
  107. #u538 {
  108. border-width:0px;
  109. position:absolute;
  110. left:20px;
  111. top:29px;
  112. width:8px;
  113. height:28px;
  114. display:flex;
  115. }
  116. #u538 .text {
  117. position:absolute;
  118. align-self:center;
  119. padding:2px 2px 2px 2px;
  120. box-sizing:border-box;
  121. width:100%;
  122. }
  123. #u538_text {
  124. border-width:0px;
  125. word-wrap:break-word;
  126. text-transform:none;
  127. visibility:hidden;
  128. }
  129. #u539_div {
  130. border-width:0px;
  131. position:absolute;
  132. left:0px;
  133. top:0px;
  134. width:96px;
  135. height:28px;
  136. background:inherit;
  137. background-color:rgba(255, 255, 255, 0);
  138. border:none;
  139. border-radius:0px;
  140. -moz-box-shadow:none;
  141. -webkit-box-shadow:none;
  142. box-shadow:none;
  143. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  144. font-weight:700;
  145. font-style:normal;
  146. }
  147. #u539 {
  148. border-width:0px;
  149. position:absolute;
  150. left:34px;
  151. top:29px;
  152. width:96px;
  153. height:28px;
  154. display:flex;
  155. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  156. font-weight:700;
  157. font-style:normal;
  158. }
  159. #u539 .text {
  160. position:absolute;
  161. align-self:flex-start;
  162. padding:0px 0px 0px 0px;
  163. box-sizing:border-box;
  164. width:100%;
  165. }
  166. #u539_text {
  167. border-width:0px;
  168. white-space:nowrap;
  169. text-transform:none;
  170. }
  171. #u540_div {
  172. border-width:0px;
  173. position:absolute;
  174. left:0px;
  175. top:0px;
  176. width:69px;
  177. height:43px;
  178. background:inherit;
  179. background-color:rgba(255, 255, 255, 0);
  180. box-sizing:border-box;
  181. border-width:2px;
  182. border-style:solid;
  183. border-color:rgba(255, 199, 51, 1);
  184. border-radius:0px;
  185. -moz-box-shadow:none;
  186. -webkit-box-shadow:none;
  187. box-shadow:none;
  188. }
  189. #u540 {
  190. border-width:0px;
  191. position:absolute;
  192. left:176px;
  193. top:416px;
  194. width:69px;
  195. height:43px;
  196. display:flex;
  197. }
  198. #u540 .text {
  199. position:absolute;
  200. align-self:center;
  201. padding:2px 2px 2px 2px;
  202. box-sizing:border-box;
  203. width:100%;
  204. }
  205. #u540_text {
  206. border-width:0px;
  207. word-wrap:break-word;
  208. text-transform:none;
  209. visibility:hidden;
  210. }
  211. #u541_img {
  212. border-width:0px;
  213. position:absolute;
  214. left:-10px;
  215. top:-8px;
  216. width:44px;
  217. height:44px;
  218. }
  219. #u541 {
  220. border-width:0px;
  221. position:absolute;
  222. left:198px;
  223. top:404px;
  224. width:24px;
  225. height:24px;
  226. display:flex;
  227. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  228. font-weight:700;
  229. font-style:normal;
  230. font-size:14px;
  231. color:#1E1E1E;
  232. }
  233. #u541 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:2px 2px 2px 2px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u541_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u542_div {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:1538px;
  251. height:28px;
  252. background:inherit;
  253. background-color:rgba(244, 244, 245, 1);
  254. border:none;
  255. border-radius:0px;
  256. -moz-box-shadow:none;
  257. -webkit-box-shadow:none;
  258. box-shadow:none;
  259. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  260. font-weight:700;
  261. font-style:normal;
  262. }
  263. #u542 {
  264. border-width:0px;
  265. position:absolute;
  266. left:20px;
  267. top:77px;
  268. width:1538px;
  269. height:28px;
  270. display:flex;
  271. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  272. font-weight:700;
  273. font-style:normal;
  274. }
  275. #u542 .text {
  276. position:absolute;
  277. align-self:flex-start;
  278. padding:6px 0px 6px 14px;
  279. box-sizing:border-box;
  280. width:100%;
  281. }
  282. #u542_text {
  283. border-width:0px;
  284. word-wrap:break-word;
  285. text-transform:none;
  286. }
  287. #u543_div {
  288. border-width:0px;
  289. position:absolute;
  290. left:0px;
  291. top:0px;
  292. width:1156px;
  293. height:24px;
  294. background:inherit;
  295. background-color:rgba(255, 255, 255, 0);
  296. border:none;
  297. border-radius:0px;
  298. -moz-box-shadow:none;
  299. -webkit-box-shadow:none;
  300. box-shadow:none;
  301. font-size:14px;
  302. line-height:24px;
  303. }
  304. #u543 {
  305. border-width:0px;
  306. position:absolute;
  307. left:20px;
  308. top:125px;
  309. width:1156px;
  310. height:24px;
  311. display:flex;
  312. font-size:14px;
  313. line-height:24px;
  314. }
  315. #u543 .text {
  316. position:absolute;
  317. align-self:flex-start;
  318. padding:0px 0px 0px 14px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u543_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. }
  327. #u544 {
  328. border-width:0px;
  329. position:absolute;
  330. left:0px;
  331. top:0px;
  332. width:0px;
  333. height:0px;
  334. }
  335. #u545_div {
  336. border-width:0px;
  337. position:absolute;
  338. left:0px;
  339. top:0px;
  340. width:328px;
  341. height:24px;
  342. background:inherit;
  343. background-color:rgba(255, 255, 255, 0);
  344. border:none;
  345. border-radius:0px;
  346. -moz-box-shadow:none;
  347. -webkit-box-shadow:none;
  348. box-shadow:none;
  349. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  350. font-weight:700;
  351. font-style:normal;
  352. font-size:16px;
  353. }
  354. #u545 {
  355. border-width:0px;
  356. position:absolute;
  357. left:1230px;
  358. top:534px;
  359. width:328px;
  360. height:24px;
  361. display:flex;
  362. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  363. font-weight:700;
  364. font-style:normal;
  365. font-size:16px;
  366. }
  367. #u545 .text {
  368. position:absolute;
  369. align-self:flex-start;
  370. padding:3px 0px 3px 0px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u545_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. }
  379. #u546_div {
  380. border-width:0px;
  381. position:absolute;
  382. left:0px;
  383. top:0px;
  384. width:328px;
  385. height:22px;
  386. background:inherit;
  387. background-color:rgba(255, 255, 255, 0);
  388. border:none;
  389. border-radius:0px;
  390. -moz-box-shadow:none;
  391. -webkit-box-shadow:none;
  392. box-shadow:none;
  393. line-height:22px;
  394. }
  395. #u546 {
  396. border-width:0px;
  397. position:absolute;
  398. left:1230px;
  399. top:565px;
  400. width:328px;
  401. height:22px;
  402. display:flex;
  403. line-height:22px;
  404. }
  405. #u546 .text {
  406. position:absolute;
  407. align-self:flex-start;
  408. padding:0px 0px 0px 0px;
  409. box-sizing:border-box;
  410. width:100%;
  411. }
  412. #u546_text {
  413. border-width:0px;
  414. word-wrap:break-word;
  415. text-transform:none;
  416. }
  417. #u547_img {
  418. border-width:0px;
  419. position:absolute;
  420. left:-10px;
  421. top:-8px;
  422. width:44px;
  423. height:44px;
  424. }
  425. #u547 {
  426. border-width:0px;
  427. position:absolute;
  428. left:1196px;
  429. top:534px;
  430. width:24px;
  431. height:24px;
  432. display:flex;
  433. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  434. font-weight:700;
  435. font-style:normal;
  436. font-size:14px;
  437. color:#1E1E1E;
  438. }
  439. #u547 .text {
  440. position:absolute;
  441. align-self:center;
  442. padding:2px 2px 2px 2px;
  443. box-sizing:border-box;
  444. width:100%;
  445. }
  446. #u547_text {
  447. border-width:0px;
  448. word-wrap:break-word;
  449. text-transform:none;
  450. }
  451. #u548_img {
  452. border-width:0px;
  453. position:absolute;
  454. left:0px;
  455. top:0px;
  456. width:363px;
  457. height:2px;
  458. }
  459. #u548 {
  460. border-width:0px;
  461. position:absolute;
  462. left:1196px;
  463. top:513px;
  464. width:362px;
  465. height:1px;
  466. display:flex;
  467. }
  468. #u548 .text {
  469. position:absolute;
  470. align-self:center;
  471. padding:2px 2px 2px 2px;
  472. box-sizing:border-box;
  473. width:100%;
  474. }
  475. #u548_text {
  476. border-width:0px;
  477. word-wrap:break-word;
  478. text-transform:none;
  479. visibility:hidden;
  480. }
  481. #u549 {
  482. border-width:0px;
  483. position:absolute;
  484. left:0px;
  485. top:0px;
  486. width:0px;
  487. height:0px;
  488. }
  489. #u550_div {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:328px;
  495. height:24px;
  496. background:inherit;
  497. background-color:rgba(255, 255, 255, 0);
  498. border:none;
  499. border-radius:0px;
  500. -moz-box-shadow:none;
  501. -webkit-box-shadow:none;
  502. box-shadow:none;
  503. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  504. font-weight:700;
  505. font-style:normal;
  506. font-size:16px;
  507. }
  508. #u550 {
  509. border-width:0px;
  510. position:absolute;
  511. left:1230px;
  512. top:226px;
  513. width:328px;
  514. height:24px;
  515. display:flex;
  516. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  517. font-weight:700;
  518. font-style:normal;
  519. font-size:16px;
  520. }
  521. #u550 .text {
  522. position:absolute;
  523. align-self:flex-start;
  524. padding:3px 0px 3px 0px;
  525. box-sizing:border-box;
  526. width:100%;
  527. }
  528. #u550_text {
  529. border-width:0px;
  530. word-wrap:break-word;
  531. text-transform:none;
  532. }
  533. #u551_div {
  534. border-width:0px;
  535. position:absolute;
  536. left:0px;
  537. top:0px;
  538. width:328px;
  539. height:44px;
  540. background:inherit;
  541. background-color:rgba(255, 255, 255, 0);
  542. border:none;
  543. border-radius:0px;
  544. -moz-box-shadow:none;
  545. -webkit-box-shadow:none;
  546. box-shadow:none;
  547. line-height:22px;
  548. }
  549. #u551 {
  550. border-width:0px;
  551. position:absolute;
  552. left:1230px;
  553. top:257px;
  554. width:328px;
  555. height:44px;
  556. display:flex;
  557. line-height:22px;
  558. }
  559. #u551 .text {
  560. position:absolute;
  561. align-self:flex-start;
  562. padding:0px 0px 0px 0px;
  563. box-sizing:border-box;
  564. width:100%;
  565. }
  566. #u551_text {
  567. border-width:0px;
  568. word-wrap:break-word;
  569. text-transform:none;
  570. }
  571. #u552_img {
  572. border-width:0px;
  573. position:absolute;
  574. left:-10px;
  575. top:-8px;
  576. width:44px;
  577. height:44px;
  578. }
  579. #u552 {
  580. border-width:0px;
  581. position:absolute;
  582. left:1196px;
  583. top:226px;
  584. width:24px;
  585. height:24px;
  586. display:flex;
  587. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  588. font-weight:700;
  589. font-style:normal;
  590. font-size:14px;
  591. color:#1E1E1E;
  592. }
  593. #u552 .text {
  594. position:absolute;
  595. align-self:center;
  596. padding:2px 2px 2px 2px;
  597. box-sizing:border-box;
  598. width:100%;
  599. }
  600. #u552_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. }
  605. #u553_div {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:0px;
  610. width:69px;
  611. height:43px;
  612. background:inherit;
  613. background-color:rgba(255, 255, 255, 0);
  614. box-sizing:border-box;
  615. border-width:2px;
  616. border-style:solid;
  617. border-color:rgba(255, 199, 51, 1);
  618. border-radius:0px;
  619. -moz-box-shadow:none;
  620. -webkit-box-shadow:none;
  621. box-shadow:none;
  622. }
  623. #u553 {
  624. border-width:0px;
  625. position:absolute;
  626. left:248px;
  627. top:416px;
  628. width:69px;
  629. height:43px;
  630. display:flex;
  631. }
  632. #u553 .text {
  633. position:absolute;
  634. align-self:center;
  635. padding:2px 2px 2px 2px;
  636. box-sizing:border-box;
  637. width:100%;
  638. }
  639. #u553_text {
  640. border-width:0px;
  641. word-wrap:break-word;
  642. text-transform:none;
  643. visibility:hidden;
  644. }
  645. #u554_img {
  646. border-width:0px;
  647. position:absolute;
  648. left:-10px;
  649. top:-8px;
  650. width:44px;
  651. height:44px;
  652. }
  653. #u554 {
  654. border-width:0px;
  655. position:absolute;
  656. left:270px;
  657. top:404px;
  658. width:24px;
  659. height:24px;
  660. display:flex;
  661. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  662. font-weight:700;
  663. font-style:normal;
  664. font-size:14px;
  665. color:#1E1E1E;
  666. }
  667. #u554 .text {
  668. position:absolute;
  669. align-self:center;
  670. padding:2px 2px 2px 2px;
  671. box-sizing:border-box;
  672. width:100%;
  673. }
  674. #u554_text {
  675. border-width:0px;
  676. word-wrap:break-word;
  677. text-transform:none;
  678. }
  679. #u555_div {
  680. border-width:0px;
  681. position:absolute;
  682. left:0px;
  683. top:0px;
  684. width:69px;
  685. height:43px;
  686. background:inherit;
  687. background-color:rgba(255, 255, 255, 0);
  688. box-sizing:border-box;
  689. border-width:2px;
  690. border-style:solid;
  691. border-color:rgba(255, 199, 51, 1);
  692. border-radius:0px;
  693. -moz-box-shadow:none;
  694. -webkit-box-shadow:none;
  695. box-shadow:none;
  696. }
  697. #u555 {
  698. border-width:0px;
  699. position:absolute;
  700. left:319px;
  701. top:416px;
  702. width:69px;
  703. height:43px;
  704. display:flex;
  705. }
  706. #u555 .text {
  707. position:absolute;
  708. align-self:center;
  709. padding:2px 2px 2px 2px;
  710. box-sizing:border-box;
  711. width:100%;
  712. }
  713. #u555_text {
  714. border-width:0px;
  715. word-wrap:break-word;
  716. text-transform:none;
  717. visibility:hidden;
  718. }
  719. #u556_img {
  720. border-width:0px;
  721. position:absolute;
  722. left:-10px;
  723. top:-8px;
  724. width:44px;
  725. height:44px;
  726. }
  727. #u556 {
  728. border-width:0px;
  729. position:absolute;
  730. left:341px;
  731. top:404px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  736. font-weight:700;
  737. font-style:normal;
  738. font-size:14px;
  739. color:#1E1E1E;
  740. }
  741. #u556 .text {
  742. position:absolute;
  743. align-self:center;
  744. padding:2px 2px 2px 2px;
  745. box-sizing:border-box;
  746. width:100%;
  747. }
  748. #u556_text {
  749. border-width:0px;
  750. word-wrap:break-word;
  751. text-transform:none;
  752. }
  753. #u557_div {
  754. border-width:0px;
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:69px;
  759. height:43px;
  760. background:inherit;
  761. background-color:rgba(255, 255, 255, 0);
  762. box-sizing:border-box;
  763. border-width:2px;
  764. border-style:solid;
  765. border-color:rgba(255, 199, 51, 1);
  766. border-radius:0px;
  767. -moz-box-shadow:none;
  768. -webkit-box-shadow:none;
  769. box-shadow:none;
  770. }
  771. #u557 {
  772. border-width:0px;
  773. position:absolute;
  774. left:391px;
  775. top:416px;
  776. width:69px;
  777. height:43px;
  778. display:flex;
  779. }
  780. #u557 .text {
  781. position:absolute;
  782. align-self:center;
  783. padding:2px 2px 2px 2px;
  784. box-sizing:border-box;
  785. width:100%;
  786. }
  787. #u557_text {
  788. border-width:0px;
  789. word-wrap:break-word;
  790. text-transform:none;
  791. visibility:hidden;
  792. }
  793. #u558_img {
  794. border-width:0px;
  795. position:absolute;
  796. left:-10px;
  797. top:-8px;
  798. width:44px;
  799. height:44px;
  800. }
  801. #u558 {
  802. border-width:0px;
  803. position:absolute;
  804. left:413px;
  805. top:404px;
  806. width:24px;
  807. height:24px;
  808. display:flex;
  809. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  810. font-weight:700;
  811. font-style:normal;
  812. font-size:14px;
  813. color:#1E1E1E;
  814. }
  815. #u558 .text {
  816. position:absolute;
  817. align-self:center;
  818. padding:2px 2px 2px 2px;
  819. box-sizing:border-box;
  820. width:100%;
  821. }
  822. #u558_text {
  823. border-width:0px;
  824. word-wrap:break-word;
  825. text-transform:none;
  826. }
  827. #u559_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:69px;
  833. height:43px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 255, 0);
  836. box-sizing:border-box;
  837. border-width:2px;
  838. border-style:solid;
  839. border-color:rgba(255, 199, 51, 1);
  840. border-radius:0px;
  841. -moz-box-shadow:none;
  842. -webkit-box-shadow:none;
  843. box-shadow:none;
  844. }
  845. #u559 {
  846. border-width:0px;
  847. position:absolute;
  848. left:462px;
  849. top:416px;
  850. width:69px;
  851. height:43px;
  852. display:flex;
  853. }
  854. #u559 .text {
  855. position:absolute;
  856. align-self:center;
  857. padding:2px 2px 2px 2px;
  858. box-sizing:border-box;
  859. width:100%;
  860. }
  861. #u559_text {
  862. border-width:0px;
  863. word-wrap:break-word;
  864. text-transform:none;
  865. visibility:hidden;
  866. }
  867. #u560_img {
  868. border-width:0px;
  869. position:absolute;
  870. left:-10px;
  871. top:-8px;
  872. width:44px;
  873. height:44px;
  874. }
  875. #u560 {
  876. border-width:0px;
  877. position:absolute;
  878. left:484px;
  879. top:404px;
  880. width:24px;
  881. height:24px;
  882. display:flex;
  883. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  884. font-weight:700;
  885. font-style:normal;
  886. font-size:14px;
  887. color:#1E1E1E;
  888. }
  889. #u560 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u560_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. }
  901. #u561_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:69px;
  907. height:43px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 0);
  910. box-sizing:border-box;
  911. border-width:2px;
  912. border-style:solid;
  913. border-color:rgba(255, 199, 51, 1);
  914. border-radius:0px;
  915. -moz-box-shadow:none;
  916. -webkit-box-shadow:none;
  917. box-shadow:none;
  918. }
  919. #u561 {
  920. border-width:0px;
  921. position:absolute;
  922. left:533px;
  923. top:416px;
  924. width:69px;
  925. height:43px;
  926. display:flex;
  927. }
  928. #u561 .text {
  929. position:absolute;
  930. align-self:center;
  931. padding:2px 2px 2px 2px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u561_text {
  936. border-width:0px;
  937. word-wrap:break-word;
  938. text-transform:none;
  939. visibility:hidden;
  940. }
  941. #u562_img {
  942. border-width:0px;
  943. position:absolute;
  944. left:-10px;
  945. top:-8px;
  946. width:44px;
  947. height:44px;
  948. }
  949. #u562 {
  950. border-width:0px;
  951. position:absolute;
  952. left:555px;
  953. top:404px;
  954. width:24px;
  955. height:24px;
  956. display:flex;
  957. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  958. font-weight:700;
  959. font-style:normal;
  960. font-size:14px;
  961. color:#1E1E1E;
  962. }
  963. #u562 .text {
  964. position:absolute;
  965. align-self:center;
  966. padding:2px 2px 2px 2px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u562_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. }
  975. #u563_div {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:69px;
  981. height:43px;
  982. background:inherit;
  983. background-color:rgba(255, 255, 255, 0);
  984. box-sizing:border-box;
  985. border-width:2px;
  986. border-style:solid;
  987. border-color:rgba(255, 199, 51, 1);
  988. border-radius:0px;
  989. -moz-box-shadow:none;
  990. -webkit-box-shadow:none;
  991. box-shadow:none;
  992. }
  993. #u563 {
  994. border-width:0px;
  995. position:absolute;
  996. left:605px;
  997. top:416px;
  998. width:69px;
  999. height:43px;
  1000. display:flex;
  1001. }
  1002. #u563 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 2px 2px 2px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u563_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u564_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:-10px;
  1019. top:-8px;
  1020. width:44px;
  1021. height:44px;
  1022. }
  1023. #u564 {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:627px;
  1027. top:404px;
  1028. width:24px;
  1029. height:24px;
  1030. display:flex;
  1031. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1032. font-weight:700;
  1033. font-style:normal;
  1034. font-size:14px;
  1035. color:#1E1E1E;
  1036. }
  1037. #u564 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 2px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u564_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. }
  1049. #u565_div {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:100px;
  1055. height:43px;
  1056. background:inherit;
  1057. background-color:rgba(255, 255, 255, 0);
  1058. box-sizing:border-box;
  1059. border-width:2px;
  1060. border-style:solid;
  1061. border-color:rgba(255, 199, 51, 1);
  1062. border-radius:0px;
  1063. -moz-box-shadow:none;
  1064. -webkit-box-shadow:none;
  1065. box-shadow:none;
  1066. }
  1067. #u565 {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:676px;
  1071. top:416px;
  1072. width:100px;
  1073. height:43px;
  1074. display:flex;
  1075. }
  1076. #u565 .text {
  1077. position:absolute;
  1078. align-self:center;
  1079. padding:2px 2px 2px 2px;
  1080. box-sizing:border-box;
  1081. width:100%;
  1082. }
  1083. #u565_text {
  1084. border-width:0px;
  1085. word-wrap:break-word;
  1086. text-transform:none;
  1087. visibility:hidden;
  1088. }
  1089. #u566_img {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:-10px;
  1093. top:-8px;
  1094. width:44px;
  1095. height:44px;
  1096. }
  1097. #u566 {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:714px;
  1101. top:404px;
  1102. width:24px;
  1103. height:24px;
  1104. display:flex;
  1105. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1106. font-weight:700;
  1107. font-style:normal;
  1108. font-size:14px;
  1109. color:#1E1E1E;
  1110. }
  1111. #u566 .text {
  1112. position:absolute;
  1113. align-self:center;
  1114. padding:2px 2px 2px 2px;
  1115. box-sizing:border-box;
  1116. width:100%;
  1117. }
  1118. #u566_text {
  1119. border-width:0px;
  1120. word-wrap:break-word;
  1121. text-transform:none;
  1122. }
  1123. #u567_div {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:69px;
  1129. height:43px;
  1130. background:inherit;
  1131. background-color:rgba(255, 255, 255, 0);
  1132. box-sizing:border-box;
  1133. border-width:2px;
  1134. border-style:solid;
  1135. border-color:rgba(255, 199, 51, 1);
  1136. border-radius:0px;
  1137. -moz-box-shadow:none;
  1138. -webkit-box-shadow:none;
  1139. box-shadow:none;
  1140. }
  1141. #u567 {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:778px;
  1145. top:416px;
  1146. width:69px;
  1147. height:43px;
  1148. display:flex;
  1149. }
  1150. #u567 .text {
  1151. position:absolute;
  1152. align-self:center;
  1153. padding:2px 2px 2px 2px;
  1154. box-sizing:border-box;
  1155. width:100%;
  1156. }
  1157. #u567_text {
  1158. border-width:0px;
  1159. word-wrap:break-word;
  1160. text-transform:none;
  1161. visibility:hidden;
  1162. }
  1163. #u568_img {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:-10px;
  1167. top:-8px;
  1168. width:44px;
  1169. height:44px;
  1170. }
  1171. #u568 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:800px;
  1175. top:404px;
  1176. width:24px;
  1177. height:24px;
  1178. display:flex;
  1179. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1180. font-weight:700;
  1181. font-style:normal;
  1182. font-size:14px;
  1183. color:#1E1E1E;
  1184. }
  1185. #u568 .text {
  1186. position:absolute;
  1187. align-self:center;
  1188. padding:2px 2px 2px 2px;
  1189. box-sizing:border-box;
  1190. width:100%;
  1191. }
  1192. #u568_text {
  1193. border-width:0px;
  1194. word-wrap:break-word;
  1195. text-transform:none;
  1196. }
  1197. #u569_div {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:72px;
  1203. height:43px;
  1204. background:inherit;
  1205. background-color:rgba(255, 255, 255, 0);
  1206. box-sizing:border-box;
  1207. border-width:2px;
  1208. border-style:solid;
  1209. border-color:rgba(255, 199, 51, 1);
  1210. border-radius:0px;
  1211. -moz-box-shadow:none;
  1212. -webkit-box-shadow:none;
  1213. box-shadow:none;
  1214. }
  1215. #u569 {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:850px;
  1219. top:416px;
  1220. width:72px;
  1221. height:43px;
  1222. display:flex;
  1223. }
  1224. #u569 .text {
  1225. position:absolute;
  1226. align-self:center;
  1227. padding:2px 2px 2px 2px;
  1228. box-sizing:border-box;
  1229. width:100%;
  1230. }
  1231. #u569_text {
  1232. border-width:0px;
  1233. word-wrap:break-word;
  1234. text-transform:none;
  1235. visibility:hidden;
  1236. }
  1237. #u570_img {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:-10px;
  1241. top:-8px;
  1242. width:44px;
  1243. height:44px;
  1244. }
  1245. #u570 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:874px;
  1249. top:404px;
  1250. width:24px;
  1251. height:24px;
  1252. display:flex;
  1253. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1254. font-weight:700;
  1255. font-style:normal;
  1256. font-size:14px;
  1257. color:#1E1E1E;
  1258. }
  1259. #u570 .text {
  1260. position:absolute;
  1261. align-self:center;
  1262. padding:2px 2px 2px 2px;
  1263. box-sizing:border-box;
  1264. width:100%;
  1265. }
  1266. #u570_text {
  1267. border-width:0px;
  1268. word-wrap:break-word;
  1269. text-transform:none;
  1270. }
  1271. #u571_div {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:70px;
  1277. height:43px;
  1278. background:inherit;
  1279. background-color:rgba(255, 255, 255, 0);
  1280. box-sizing:border-box;
  1281. border-width:2px;
  1282. border-style:solid;
  1283. border-color:rgba(255, 199, 51, 1);
  1284. border-radius:0px;
  1285. -moz-box-shadow:none;
  1286. -webkit-box-shadow:none;
  1287. box-shadow:none;
  1288. }
  1289. #u571 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:924px;
  1293. top:416px;
  1294. width:70px;
  1295. height:43px;
  1296. display:flex;
  1297. }
  1298. #u571 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u571_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u572_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:-10px;
  1315. top:-8px;
  1316. width:44px;
  1317. height:44px;
  1318. }
  1319. #u572 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:948px;
  1323. top:404px;
  1324. width:24px;
  1325. height:24px;
  1326. display:flex;
  1327. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1328. font-weight:700;
  1329. font-style:normal;
  1330. font-size:14px;
  1331. color:#1E1E1E;
  1332. }
  1333. #u572 .text {
  1334. position:absolute;
  1335. align-self:center;
  1336. padding:2px 2px 2px 2px;
  1337. box-sizing:border-box;
  1338. width:100%;
  1339. }
  1340. #u572_text {
  1341. border-width:0px;
  1342. word-wrap:break-word;
  1343. text-transform:none;
  1344. }
  1345. #u573 {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:0px;
  1349. top:0px;
  1350. width:0px;
  1351. height:0px;
  1352. }
  1353. #u574_img {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:363px;
  1359. height:2px;
  1360. }
  1361. #u574 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:1196px;
  1365. top:1551px;
  1366. width:362px;
  1367. height:1px;
  1368. display:flex;
  1369. }
  1370. #u574 .text {
  1371. position:absolute;
  1372. align-self:center;
  1373. padding:2px 2px 2px 2px;
  1374. box-sizing:border-box;
  1375. width:100%;
  1376. }
  1377. #u574_text {
  1378. border-width:0px;
  1379. word-wrap:break-word;
  1380. text-transform:none;
  1381. visibility:hidden;
  1382. }
  1383. #u575_div {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:328px;
  1389. height:24px;
  1390. background:inherit;
  1391. background-color:rgba(255, 255, 255, 0);
  1392. border:none;
  1393. border-radius:0px;
  1394. -moz-box-shadow:none;
  1395. -webkit-box-shadow:none;
  1396. box-shadow:none;
  1397. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1398. font-weight:700;
  1399. font-style:normal;
  1400. font-size:16px;
  1401. }
  1402. #u575 {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:1230px;
  1406. top:1572px;
  1407. width:328px;
  1408. height:24px;
  1409. display:flex;
  1410. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1411. font-weight:700;
  1412. font-style:normal;
  1413. font-size:16px;
  1414. }
  1415. #u575 .text {
  1416. position:absolute;
  1417. align-self:flex-start;
  1418. padding:3px 0px 3px 0px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u575_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. }
  1427. #u576_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:303px;
  1433. height:72px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. line-height:24px;
  1442. }
  1443. #u576 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:1255px;
  1447. top:1603px;
  1448. width:303px;
  1449. height:72px;
  1450. display:flex;
  1451. line-height:24px;
  1452. }
  1453. #u576 .text {
  1454. position:absolute;
  1455. align-self:flex-start;
  1456. padding:0px 0px 0px 0px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u576_text {
  1461. border-width:0px;
  1462. word-wrap:break-word;
  1463. text-transform:none;
  1464. }
  1465. #u577_img {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:-10px;
  1469. top:-8px;
  1470. width:44px;
  1471. height:44px;
  1472. }
  1473. #u577 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:1196px;
  1477. top:1572px;
  1478. width:24px;
  1479. height:24px;
  1480. display:flex;
  1481. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1482. font-weight:700;
  1483. font-style:normal;
  1484. font-size:14px;
  1485. color:#1E1E1E;
  1486. }
  1487. #u577 .text {
  1488. position:absolute;
  1489. align-self:center;
  1490. padding:2px 2px 2px 2px;
  1491. box-sizing:border-box;
  1492. width:100%;
  1493. }
  1494. #u577_text {
  1495. border-width:0px;
  1496. word-wrap:break-word;
  1497. text-transform:none;
  1498. }
  1499. #u578_div {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:25px;
  1505. height:72px;
  1506. background:inherit;
  1507. background-color:rgba(255, 255, 255, 0);
  1508. border:none;
  1509. border-radius:0px;
  1510. -moz-box-shadow:none;
  1511. -webkit-box-shadow:none;
  1512. box-shadow:none;
  1513. line-height:24px;
  1514. }
  1515. #u578 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:1230px;
  1519. top:1603px;
  1520. width:25px;
  1521. height:72px;
  1522. display:flex;
  1523. line-height:24px;
  1524. }
  1525. #u578 .text {
  1526. position:absolute;
  1527. align-self:flex-start;
  1528. padding:0px 0px 0px 0px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u578_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. }
  1537. #u579 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:0px;
  1543. height:0px;
  1544. }
  1545. #u580_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:328px;
  1551. height:24px;
  1552. background:inherit;
  1553. background-color:rgba(255, 255, 255, 0);
  1554. border:none;
  1555. border-radius:0px;
  1556. -moz-box-shadow:none;
  1557. -webkit-box-shadow:none;
  1558. box-shadow:none;
  1559. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1560. font-weight:700;
  1561. font-style:normal;
  1562. font-size:16px;
  1563. }
  1564. #u580 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:1230px;
  1568. top:1456px;
  1569. width:328px;
  1570. height:24px;
  1571. display:flex;
  1572. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1573. font-weight:700;
  1574. font-style:normal;
  1575. font-size:16px;
  1576. }
  1577. #u580 .text {
  1578. position:absolute;
  1579. align-self:flex-start;
  1580. padding:3px 0px 3px 0px;
  1581. box-sizing:border-box;
  1582. width:100%;
  1583. }
  1584. #u580_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. }
  1589. #u581_div {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:328px;
  1595. height:44px;
  1596. background:inherit;
  1597. background-color:rgba(255, 255, 255, 0);
  1598. border:none;
  1599. border-radius:0px;
  1600. -moz-box-shadow:none;
  1601. -webkit-box-shadow:none;
  1602. box-shadow:none;
  1603. line-height:22px;
  1604. }
  1605. #u581 {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:1230px;
  1609. top:1487px;
  1610. width:328px;
  1611. height:44px;
  1612. display:flex;
  1613. line-height:22px;
  1614. }
  1615. #u581 .text {
  1616. position:absolute;
  1617. align-self:flex-start;
  1618. padding:0px 0px 0px 0px;
  1619. box-sizing:border-box;
  1620. width:100%;
  1621. }
  1622. #u581_text {
  1623. border-width:0px;
  1624. word-wrap:break-word;
  1625. text-transform:none;
  1626. }
  1627. #u582_img {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:-10px;
  1631. top:-8px;
  1632. width:44px;
  1633. height:44px;
  1634. }
  1635. #u582 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:1196px;
  1639. top:1456px;
  1640. width:24px;
  1641. height:24px;
  1642. display:flex;
  1643. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1644. font-weight:700;
  1645. font-style:normal;
  1646. font-size:14px;
  1647. color:#1E1E1E;
  1648. }
  1649. #u582 .text {
  1650. position:absolute;
  1651. align-self:center;
  1652. padding:2px 2px 2px 2px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u582_text {
  1657. border-width:0px;
  1658. word-wrap:break-word;
  1659. text-transform:none;
  1660. }
  1661. #u583_img {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:363px;
  1667. height:2px;
  1668. }
  1669. #u583 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:1196px;
  1673. top:1435px;
  1674. width:362px;
  1675. height:1px;
  1676. display:flex;
  1677. }
  1678. #u583 .text {
  1679. position:absolute;
  1680. align-self:center;
  1681. padding:2px 2px 2px 2px;
  1682. box-sizing:border-box;
  1683. width:100%;
  1684. }
  1685. #u583_text {
  1686. border-width:0px;
  1687. word-wrap:break-word;
  1688. text-transform:none;
  1689. visibility:hidden;
  1690. }
  1691. #u584 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:0px;
  1697. height:0px;
  1698. }
  1699. #u585_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:363px;
  1705. height:2px;
  1706. }
  1707. #u585 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:1196px;
  1711. top:1197px;
  1712. width:362px;
  1713. height:1px;
  1714. display:flex;
  1715. }
  1716. #u585 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 2px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u585_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. visibility:hidden;
  1728. }
  1729. #u586_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:328px;
  1735. height:24px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 0);
  1738. border:none;
  1739. border-radius:0px;
  1740. -moz-box-shadow:none;
  1741. -webkit-box-shadow:none;
  1742. box-shadow:none;
  1743. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1744. font-weight:700;
  1745. font-style:normal;
  1746. font-size:16px;
  1747. }
  1748. #u586 {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:1230px;
  1752. top:1218px;
  1753. width:328px;
  1754. height:24px;
  1755. display:flex;
  1756. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1757. font-weight:700;
  1758. font-style:normal;
  1759. font-size:16px;
  1760. }
  1761. #u586 .text {
  1762. position:absolute;
  1763. align-self:flex-start;
  1764. padding:3px 0px 3px 0px;
  1765. box-sizing:border-box;
  1766. width:100%;
  1767. }
  1768. #u586_text {
  1769. border-width:0px;
  1770. word-wrap:break-word;
  1771. text-transform:none;
  1772. }
  1773. #u587_div {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:303px;
  1779. height:72px;
  1780. background:inherit;
  1781. background-color:rgba(255, 255, 255, 0);
  1782. border:none;
  1783. border-radius:0px;
  1784. -moz-box-shadow:none;
  1785. -webkit-box-shadow:none;
  1786. box-shadow:none;
  1787. line-height:24px;
  1788. }
  1789. #u587 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:1255px;
  1793. top:1249px;
  1794. width:303px;
  1795. height:72px;
  1796. display:flex;
  1797. line-height:24px;
  1798. }
  1799. #u587 .text {
  1800. position:absolute;
  1801. align-self:flex-start;
  1802. padding:0px 0px 0px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u587_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u588_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:-10px;
  1815. top:-8px;
  1816. width:44px;
  1817. height:44px;
  1818. }
  1819. #u588 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:1196px;
  1823. top:1218px;
  1824. width:24px;
  1825. height:24px;
  1826. display:flex;
  1827. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1828. font-weight:700;
  1829. font-style:normal;
  1830. font-size:14px;
  1831. color:#1E1E1E;
  1832. }
  1833. #u588 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:2px 2px 2px 2px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u588_text {
  1841. border-width:0px;
  1842. word-wrap:break-word;
  1843. text-transform:none;
  1844. }
  1845. #u589_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:25px;
  1851. height:48px;
  1852. background:inherit;
  1853. background-color:rgba(255, 255, 255, 0);
  1854. border:none;
  1855. border-radius:0px;
  1856. -moz-box-shadow:none;
  1857. -webkit-box-shadow:none;
  1858. box-shadow:none;
  1859. line-height:24px;
  1860. }
  1861. #u589 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:1230px;
  1865. top:1249px;
  1866. width:25px;
  1867. height:48px;
  1868. display:flex;
  1869. line-height:24px;
  1870. }
  1871. #u589 .text {
  1872. position:absolute;
  1873. align-self:flex-start;
  1874. padding:0px 0px 0px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u589_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u590 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:0px;
  1889. height:0px;
  1890. }
  1891. #u591_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:363px;
  1897. height:2px;
  1898. }
  1899. #u591 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:1196px;
  1903. top:1789px;
  1904. width:362px;
  1905. height:1px;
  1906. display:flex;
  1907. }
  1908. #u591 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:2px 2px 2px 2px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u591_text {
  1916. border-width:0px;
  1917. word-wrap:break-word;
  1918. text-transform:none;
  1919. visibility:hidden;
  1920. }
  1921. #u592_div {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:328px;
  1927. height:24px;
  1928. background:inherit;
  1929. background-color:rgba(255, 255, 255, 0);
  1930. border:none;
  1931. border-radius:0px;
  1932. -moz-box-shadow:none;
  1933. -webkit-box-shadow:none;
  1934. box-shadow:none;
  1935. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1936. font-weight:700;
  1937. font-style:normal;
  1938. font-size:16px;
  1939. }
  1940. #u592 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:1230px;
  1944. top:1810px;
  1945. width:328px;
  1946. height:24px;
  1947. display:flex;
  1948. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1949. font-weight:700;
  1950. font-style:normal;
  1951. font-size:16px;
  1952. }
  1953. #u592 .text {
  1954. position:absolute;
  1955. align-self:flex-start;
  1956. padding:3px 0px 3px 0px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u592_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u593_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:303px;
  1971. height:216px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 0);
  1974. border:none;
  1975. border-radius:0px;
  1976. -moz-box-shadow:none;
  1977. -webkit-box-shadow:none;
  1978. box-shadow:none;
  1979. line-height:24px;
  1980. }
  1981. #u593 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:1255px;
  1985. top:1841px;
  1986. width:303px;
  1987. height:216px;
  1988. display:flex;
  1989. line-height:24px;
  1990. }
  1991. #u593 .text {
  1992. position:absolute;
  1993. align-self:flex-start;
  1994. padding:0px 0px 0px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u593_text {
  1999. border-width:0px;
  2000. word-wrap:break-word;
  2001. text-transform:none;
  2002. }
  2003. #u594_img {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:-10px;
  2007. top:-8px;
  2008. width:44px;
  2009. height:44px;
  2010. }
  2011. #u594 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:1196px;
  2015. top:1810px;
  2016. width:24px;
  2017. height:24px;
  2018. display:flex;
  2019. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2020. font-weight:700;
  2021. font-style:normal;
  2022. font-size:14px;
  2023. color:#1E1E1E;
  2024. }
  2025. #u594 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u594_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. }
  2037. #u595_div {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:25px;
  2043. height:216px;
  2044. background:inherit;
  2045. background-color:rgba(255, 255, 255, 0);
  2046. border:none;
  2047. border-radius:0px;
  2048. -moz-box-shadow:none;
  2049. -webkit-box-shadow:none;
  2050. box-shadow:none;
  2051. line-height:24px;
  2052. }
  2053. #u595 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:1230px;
  2057. top:1841px;
  2058. width:25px;
  2059. height:216px;
  2060. display:flex;
  2061. line-height:24px;
  2062. }
  2063. #u595 .text {
  2064. position:absolute;
  2065. align-self:flex-start;
  2066. padding:0px 0px 0px 0px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u595_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. }
  2075. #u596 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:0px;
  2081. height:0px;
  2082. }
  2083. #u597_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:328px;
  2089. height:24px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 0);
  2092. border:none;
  2093. border-radius:0px;
  2094. -moz-box-shadow:none;
  2095. -webkit-box-shadow:none;
  2096. box-shadow:none;
  2097. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2098. font-weight:700;
  2099. font-style:normal;
  2100. font-size:16px;
  2101. }
  2102. #u597 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:1230px;
  2106. top:892px;
  2107. width:328px;
  2108. height:24px;
  2109. display:flex;
  2110. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2111. font-weight:700;
  2112. font-style:normal;
  2113. font-size:16px;
  2114. }
  2115. #u597 .text {
  2116. position:absolute;
  2117. align-self:flex-start;
  2118. padding:3px 0px 3px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u597_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. }
  2127. #u598_div {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:328px;
  2133. height:66px;
  2134. background:inherit;
  2135. background-color:rgba(255, 255, 255, 0);
  2136. border:none;
  2137. border-radius:0px;
  2138. -moz-box-shadow:none;
  2139. -webkit-box-shadow:none;
  2140. box-shadow:none;
  2141. line-height:22px;
  2142. }
  2143. #u598 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:1230px;
  2147. top:923px;
  2148. width:328px;
  2149. height:66px;
  2150. display:flex;
  2151. line-height:22px;
  2152. }
  2153. #u598 .text {
  2154. position:absolute;
  2155. align-self:flex-start;
  2156. padding:0px 0px 0px 0px;
  2157. box-sizing:border-box;
  2158. width:100%;
  2159. }
  2160. #u598_text {
  2161. border-width:0px;
  2162. word-wrap:break-word;
  2163. text-transform:none;
  2164. }
  2165. #u599_img {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:-10px;
  2169. top:-8px;
  2170. width:44px;
  2171. height:44px;
  2172. }
  2173. #u599 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:1196px;
  2177. top:892px;
  2178. width:24px;
  2179. height:24px;
  2180. display:flex;
  2181. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2182. font-weight:700;
  2183. font-style:normal;
  2184. font-size:14px;
  2185. color:#1E1E1E;
  2186. }
  2187. #u599 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:2px 2px 2px 2px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u599_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. }
  2199. #u600_img {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:363px;
  2205. height:2px;
  2206. }
  2207. #u600 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:1196px;
  2211. top:871px;
  2212. width:362px;
  2213. height:1px;
  2214. display:flex;
  2215. }
  2216. #u600 .text {
  2217. position:absolute;
  2218. align-self:center;
  2219. padding:2px 2px 2px 2px;
  2220. box-sizing:border-box;
  2221. width:100%;
  2222. }
  2223. #u600_text {
  2224. border-width:0px;
  2225. word-wrap:break-word;
  2226. text-transform:none;
  2227. visibility:hidden;
  2228. }
  2229. #u601 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:0px;
  2235. height:0px;
  2236. }
  2237. #u602_div {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:328px;
  2243. height:24px;
  2244. background:inherit;
  2245. background-color:rgba(255, 255, 255, 0);
  2246. border:none;
  2247. border-radius:0px;
  2248. -moz-box-shadow:none;
  2249. -webkit-box-shadow:none;
  2250. box-shadow:none;
  2251. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2252. font-weight:700;
  2253. font-style:normal;
  2254. font-size:16px;
  2255. }
  2256. #u602 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:1230px;
  2260. top:1030px;
  2261. width:328px;
  2262. height:24px;
  2263. display:flex;
  2264. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2265. font-weight:700;
  2266. font-style:normal;
  2267. font-size:16px;
  2268. }
  2269. #u602 .text {
  2270. position:absolute;
  2271. align-self:flex-start;
  2272. padding:3px 0px 3px 0px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u602_text {
  2277. border-width:0px;
  2278. word-wrap:break-word;
  2279. text-transform:none;
  2280. }
  2281. #u603_div {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:328px;
  2287. height:22px;
  2288. background:inherit;
  2289. background-color:rgba(255, 255, 255, 0);
  2290. border:none;
  2291. border-radius:0px;
  2292. -moz-box-shadow:none;
  2293. -webkit-box-shadow:none;
  2294. box-shadow:none;
  2295. line-height:22px;
  2296. }
  2297. #u603 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:1230px;
  2301. top:1061px;
  2302. width:328px;
  2303. height:22px;
  2304. display:flex;
  2305. line-height:22px;
  2306. }
  2307. #u603 .text {
  2308. position:absolute;
  2309. align-self:flex-start;
  2310. padding:0px 0px 0px 0px;
  2311. box-sizing:border-box;
  2312. width:100%;
  2313. }
  2314. #u603_text {
  2315. border-width:0px;
  2316. word-wrap:break-word;
  2317. text-transform:none;
  2318. }
  2319. #u604_img {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:-10px;
  2323. top:-8px;
  2324. width:44px;
  2325. height:44px;
  2326. }
  2327. #u604 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:1196px;
  2331. top:1030px;
  2332. width:24px;
  2333. height:24px;
  2334. display:flex;
  2335. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2336. font-weight:700;
  2337. font-style:normal;
  2338. font-size:14px;
  2339. color:#1E1E1E;
  2340. }
  2341. #u604 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:2px 2px 2px 2px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u604_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. }
  2353. #u605_img {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:363px;
  2359. height:2px;
  2360. }
  2361. #u605 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:1196px;
  2365. top:1009px;
  2366. width:362px;
  2367. height:1px;
  2368. display:flex;
  2369. }
  2370. #u605 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u605_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u606 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:0px;
  2389. height:0px;
  2390. }
  2391. #u607_div {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:328px;
  2397. height:24px;
  2398. background:inherit;
  2399. background-color:rgba(255, 255, 255, 0);
  2400. border:none;
  2401. border-radius:0px;
  2402. -moz-box-shadow:none;
  2403. -webkit-box-shadow:none;
  2404. box-shadow:none;
  2405. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2406. font-weight:700;
  2407. font-style:normal;
  2408. font-size:16px;
  2409. }
  2410. #u607 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:1230px;
  2414. top:1124px;
  2415. width:328px;
  2416. height:24px;
  2417. display:flex;
  2418. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2419. font-weight:700;
  2420. font-style:normal;
  2421. font-size:16px;
  2422. }
  2423. #u607 .text {
  2424. position:absolute;
  2425. align-self:flex-start;
  2426. padding:3px 0px 3px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u607_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. }
  2435. #u608_div {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:328px;
  2441. height:22px;
  2442. background:inherit;
  2443. background-color:rgba(255, 255, 255, 0);
  2444. border:none;
  2445. border-radius:0px;
  2446. -moz-box-shadow:none;
  2447. -webkit-box-shadow:none;
  2448. box-shadow:none;
  2449. line-height:22px;
  2450. }
  2451. #u608 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:1230px;
  2455. top:1155px;
  2456. width:328px;
  2457. height:22px;
  2458. display:flex;
  2459. line-height:22px;
  2460. }
  2461. #u608 .text {
  2462. position:absolute;
  2463. align-self:flex-start;
  2464. padding:0px 0px 0px 0px;
  2465. box-sizing:border-box;
  2466. width:100%;
  2467. }
  2468. #u608_text {
  2469. border-width:0px;
  2470. word-wrap:break-word;
  2471. text-transform:none;
  2472. }
  2473. #u609_img {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:-10px;
  2477. top:-8px;
  2478. width:44px;
  2479. height:44px;
  2480. }
  2481. #u609 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:1196px;
  2485. top:1124px;
  2486. width:24px;
  2487. height:24px;
  2488. display:flex;
  2489. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2490. font-weight:700;
  2491. font-style:normal;
  2492. font-size:14px;
  2493. color:#1E1E1E;
  2494. }
  2495. #u609 .text {
  2496. position:absolute;
  2497. align-self:center;
  2498. padding:2px 2px 2px 2px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u609_text {
  2503. border-width:0px;
  2504. word-wrap:break-word;
  2505. text-transform:none;
  2506. }
  2507. #u610_img {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:363px;
  2513. height:2px;
  2514. }
  2515. #u610 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:1196px;
  2519. top:1103px;
  2520. width:362px;
  2521. height:1px;
  2522. display:flex;
  2523. }
  2524. #u610 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 2px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u610_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u611 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:0px;
  2543. height:0px;
  2544. }
  2545. #u612_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:328px;
  2551. height:24px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-radius:0px;
  2556. -moz-box-shadow:none;
  2557. -webkit-box-shadow:none;
  2558. box-shadow:none;
  2559. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2560. font-weight:700;
  2561. font-style:normal;
  2562. font-size:16px;
  2563. }
  2564. #u612 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:1230px;
  2568. top:1362px;
  2569. width:328px;
  2570. height:24px;
  2571. display:flex;
  2572. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2573. font-weight:700;
  2574. font-style:normal;
  2575. font-size:16px;
  2576. }
  2577. #u612 .text {
  2578. position:absolute;
  2579. align-self:flex-start;
  2580. padding:3px 0px 3px 0px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u612_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. }
  2589. #u613_div {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:328px;
  2595. height:22px;
  2596. background:inherit;
  2597. background-color:rgba(255, 255, 255, 0);
  2598. border:none;
  2599. border-radius:0px;
  2600. -moz-box-shadow:none;
  2601. -webkit-box-shadow:none;
  2602. box-shadow:none;
  2603. line-height:22px;
  2604. }
  2605. #u613 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:1230px;
  2609. top:1393px;
  2610. width:328px;
  2611. height:22px;
  2612. display:flex;
  2613. line-height:22px;
  2614. }
  2615. #u613 .text {
  2616. position:absolute;
  2617. align-self:flex-start;
  2618. padding:0px 0px 0px 0px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u613_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u614_img {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:-10px;
  2631. top:-8px;
  2632. width:44px;
  2633. height:44px;
  2634. }
  2635. #u614 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:1196px;
  2639. top:1362px;
  2640. width:24px;
  2641. height:24px;
  2642. display:flex;
  2643. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2644. font-weight:700;
  2645. font-style:normal;
  2646. font-size:14px;
  2647. color:#1E1E1E;
  2648. }
  2649. #u614 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 2px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u614_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. }
  2661. #u615_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:363px;
  2667. height:2px;
  2668. }
  2669. #u615 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:1196px;
  2673. top:1341px;
  2674. width:362px;
  2675. height:1px;
  2676. display:flex;
  2677. }
  2678. #u615 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 2px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u615_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. visibility:hidden;
  2690. }
  2691. #u616 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:0px;
  2697. height:0px;
  2698. }
  2699. #u617_div {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:328px;
  2705. height:24px;
  2706. background:inherit;
  2707. background-color:rgba(255, 255, 255, 0);
  2708. border:none;
  2709. border-radius:0px;
  2710. -moz-box-shadow:none;
  2711. -webkit-box-shadow:none;
  2712. box-shadow:none;
  2713. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2714. font-weight:700;
  2715. font-style:normal;
  2716. font-size:16px;
  2717. }
  2718. #u617 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:1230px;
  2722. top:1716px;
  2723. width:328px;
  2724. height:24px;
  2725. display:flex;
  2726. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2727. font-weight:700;
  2728. font-style:normal;
  2729. font-size:16px;
  2730. }
  2731. #u617 .text {
  2732. position:absolute;
  2733. align-self:flex-start;
  2734. padding:3px 0px 3px 0px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u617_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. }
  2743. #u618_div {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:328px;
  2749. height:22px;
  2750. background:inherit;
  2751. background-color:rgba(255, 255, 255, 0);
  2752. border:none;
  2753. border-radius:0px;
  2754. -moz-box-shadow:none;
  2755. -webkit-box-shadow:none;
  2756. box-shadow:none;
  2757. line-height:22px;
  2758. }
  2759. #u618 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:1230px;
  2763. top:1747px;
  2764. width:328px;
  2765. height:22px;
  2766. display:flex;
  2767. line-height:22px;
  2768. }
  2769. #u618 .text {
  2770. position:absolute;
  2771. align-self:flex-start;
  2772. padding:0px 0px 0px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u618_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. }
  2781. #u619_img {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:-10px;
  2785. top:-8px;
  2786. width:44px;
  2787. height:44px;
  2788. }
  2789. #u619 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:1196px;
  2793. top:1716px;
  2794. width:24px;
  2795. height:24px;
  2796. display:flex;
  2797. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2798. font-weight:700;
  2799. font-style:normal;
  2800. font-size:14px;
  2801. color:#1E1E1E;
  2802. }
  2803. #u619 .text {
  2804. position:absolute;
  2805. align-self:center;
  2806. padding:2px 2px 2px 2px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u619_text {
  2811. border-width:0px;
  2812. word-wrap:break-word;
  2813. text-transform:none;
  2814. }
  2815. #u620_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:363px;
  2821. height:2px;
  2822. }
  2823. #u620 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:1196px;
  2827. top:1695px;
  2828. width:362px;
  2829. height:1px;
  2830. display:flex;
  2831. }
  2832. #u620 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:2px 2px 2px 2px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u620_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u621 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:0px;
  2851. height:0px;
  2852. }
  2853. #u622_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:363px;
  2859. height:2px;
  2860. }
  2861. #u622 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:1196px;
  2865. top:2077px;
  2866. width:362px;
  2867. height:1px;
  2868. display:flex;
  2869. }
  2870. #u622 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 2px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u622_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. visibility:hidden;
  2882. }
  2883. #u623_div {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:328px;
  2889. height:24px;
  2890. background:inherit;
  2891. background-color:rgba(255, 255, 255, 0);
  2892. border:none;
  2893. border-radius:0px;
  2894. -moz-box-shadow:none;
  2895. -webkit-box-shadow:none;
  2896. box-shadow:none;
  2897. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2898. font-weight:700;
  2899. font-style:normal;
  2900. font-size:16px;
  2901. }
  2902. #u623 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:1230px;
  2906. top:2098px;
  2907. width:328px;
  2908. height:24px;
  2909. display:flex;
  2910. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2911. font-weight:700;
  2912. font-style:normal;
  2913. font-size:16px;
  2914. }
  2915. #u623 .text {
  2916. position:absolute;
  2917. align-self:flex-start;
  2918. padding:3px 0px 3px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u623_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. }
  2927. #u624_div {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:303px;
  2933. height:120px;
  2934. background:inherit;
  2935. background-color:rgba(255, 255, 255, 0);
  2936. border:none;
  2937. border-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. line-height:24px;
  2942. }
  2943. #u624 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:1255px;
  2947. top:2129px;
  2948. width:303px;
  2949. height:120px;
  2950. display:flex;
  2951. line-height:24px;
  2952. }
  2953. #u624 .text {
  2954. position:absolute;
  2955. align-self:flex-start;
  2956. padding:0px 0px 0px 0px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u624_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. }
  2965. #u625_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:-10px;
  2969. top:-8px;
  2970. width:44px;
  2971. height:44px;
  2972. }
  2973. #u625 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:1196px;
  2977. top:2098px;
  2978. width:24px;
  2979. height:24px;
  2980. display:flex;
  2981. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2982. font-weight:700;
  2983. font-style:normal;
  2984. font-size:14px;
  2985. color:#1E1E1E;
  2986. }
  2987. #u625 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u625_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. }
  2999. #u626_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:25px;
  3005. height:120px;
  3006. background:inherit;
  3007. background-color:rgba(255, 255, 255, 0);
  3008. border:none;
  3009. border-radius:0px;
  3010. -moz-box-shadow:none;
  3011. -webkit-box-shadow:none;
  3012. box-shadow:none;
  3013. line-height:24px;
  3014. }
  3015. #u626 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:1230px;
  3019. top:2129px;
  3020. width:25px;
  3021. height:120px;
  3022. display:flex;
  3023. line-height:24px;
  3024. }
  3025. #u626 .text {
  3026. position:absolute;
  3027. align-self:flex-start;
  3028. padding:0px 0px 0px 0px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u626_text {
  3033. border-width:0px;
  3034. word-wrap:break-word;
  3035. text-transform:none;
  3036. }
  3037. #u627_div {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:40px;
  3043. height:31px;
  3044. background:inherit;
  3045. background-color:rgba(255, 255, 255, 0);
  3046. box-sizing:border-box;
  3047. border-width:2px;
  3048. border-style:solid;
  3049. border-color:rgba(255, 199, 51, 1);
  3050. border-radius:0px;
  3051. -moz-box-shadow:none;
  3052. -webkit-box-shadow:none;
  3053. box-shadow:none;
  3054. }
  3055. #u627 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:994px;
  3059. top:589px;
  3060. width:40px;
  3061. height:31px;
  3062. display:flex;
  3063. }
  3064. #u627 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 2px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u627_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u628_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:-10px;
  3081. top:-8px;
  3082. width:44px;
  3083. height:44px;
  3084. }
  3085. #u628 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:1002px;
  3089. top:575px;
  3090. width:24px;
  3091. height:24px;
  3092. display:flex;
  3093. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3094. font-weight:700;
  3095. font-style:normal;
  3096. font-size:14px;
  3097. color:#1E1E1E;
  3098. }
  3099. #u628 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 2px 2px 2px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u628_text {
  3107. border-width:0px;
  3108. word-wrap:break-word;
  3109. text-transform:none;
  3110. }
  3111. #u629_div {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:40px;
  3117. height:31px;
  3118. background:inherit;
  3119. background-color:rgba(255, 255, 255, 0);
  3120. box-sizing:border-box;
  3121. border-width:2px;
  3122. border-style:solid;
  3123. border-color:rgba(255, 199, 51, 1);
  3124. border-radius:0px;
  3125. -moz-box-shadow:none;
  3126. -webkit-box-shadow:none;
  3127. box-shadow:none;
  3128. }
  3129. #u629 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:1032px;
  3133. top:589px;
  3134. width:40px;
  3135. height:31px;
  3136. display:flex;
  3137. }
  3138. #u629 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u629_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u630_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:-10px;
  3155. top:-8px;
  3156. width:44px;
  3157. height:44px;
  3158. }
  3159. #u630 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:1040px;
  3163. top:575px;
  3164. width:24px;
  3165. height:24px;
  3166. display:flex;
  3167. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3168. font-weight:700;
  3169. font-style:normal;
  3170. font-size:14px;
  3171. color:#1E1E1E;
  3172. }
  3173. #u630 .text {
  3174. position:absolute;
  3175. align-self:center;
  3176. padding:2px 2px 2px 2px;
  3177. box-sizing:border-box;
  3178. width:100%;
  3179. }
  3180. #u630_text {
  3181. border-width:0px;
  3182. word-wrap:break-word;
  3183. text-transform:none;
  3184. }
  3185. #u631_div {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:58px;
  3191. height:31px;
  3192. background:inherit;
  3193. background-color:rgba(255, 255, 255, 0);
  3194. box-sizing:border-box;
  3195. border-width:2px;
  3196. border-style:solid;
  3197. border-color:rgba(255, 199, 51, 1);
  3198. border-radius:0px;
  3199. -moz-box-shadow:none;
  3200. -webkit-box-shadow:none;
  3201. box-shadow:none;
  3202. }
  3203. #u631 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:1070px;
  3207. top:589px;
  3208. width:58px;
  3209. height:31px;
  3210. display:flex;
  3211. }
  3212. #u631 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u631_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u632_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:-10px;
  3229. top:-8px;
  3230. width:44px;
  3231. height:44px;
  3232. }
  3233. #u632 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:1087px;
  3237. top:575px;
  3238. width:24px;
  3239. height:24px;
  3240. display:flex;
  3241. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3242. font-weight:700;
  3243. font-style:normal;
  3244. font-size:14px;
  3245. color:#1E1E1E;
  3246. }
  3247. #u632 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 2px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u632_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. }
  3259. #u633_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:40px;
  3265. height:31px;
  3266. background:inherit;
  3267. background-color:rgba(255, 255, 255, 0);
  3268. box-sizing:border-box;
  3269. border-width:2px;
  3270. border-style:solid;
  3271. border-color:rgba(255, 199, 51, 1);
  3272. border-radius:0px;
  3273. -moz-box-shadow:none;
  3274. -webkit-box-shadow:none;
  3275. box-shadow:none;
  3276. }
  3277. #u633 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:1052px;
  3281. top:676px;
  3282. width:40px;
  3283. height:31px;
  3284. display:flex;
  3285. }
  3286. #u633 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 2px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u633_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u634_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:-10px;
  3303. top:-8px;
  3304. width:44px;
  3305. height:44px;
  3306. }
  3307. #u634 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:1060px;
  3311. top:662px;
  3312. width:24px;
  3313. height:24px;
  3314. display:flex;
  3315. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3316. font-weight:700;
  3317. font-style:normal;
  3318. font-size:14px;
  3319. color:#1E1E1E;
  3320. }
  3321. #u634 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 2px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u634_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. }
  3333. #u635_div {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:24px;
  3339. height:31px;
  3340. background:inherit;
  3341. background-color:rgba(255, 255, 255, 0);
  3342. box-sizing:border-box;
  3343. border-width:2px;
  3344. border-style:solid;
  3345. border-color:rgba(255, 199, 51, 1);
  3346. border-radius:0px;
  3347. -moz-box-shadow:none;
  3348. -webkit-box-shadow:none;
  3349. box-shadow:none;
  3350. }
  3351. #u635 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:1090px;
  3355. top:676px;
  3356. width:24px;
  3357. height:31px;
  3358. display:flex;
  3359. }
  3360. #u635 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u635_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u636_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:-10px;
  3377. top:-8px;
  3378. width:44px;
  3379. height:44px;
  3380. }
  3381. #u636 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:1090px;
  3385. top:662px;
  3386. width:24px;
  3387. height:24px;
  3388. display:flex;
  3389. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3390. font-weight:700;
  3391. font-style:normal;
  3392. font-size:14px;
  3393. color:#1E1E1E;
  3394. }
  3395. #u636 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u636_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. }
  3407. #u637_div {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:40px;
  3413. height:31px;
  3414. background:inherit;
  3415. background-color:rgba(255, 255, 255, 0);
  3416. box-sizing:border-box;
  3417. border-width:2px;
  3418. border-style:solid;
  3419. border-color:rgba(255, 199, 51, 1);
  3420. border-radius:0px;
  3421. -moz-box-shadow:none;
  3422. -webkit-box-shadow:none;
  3423. box-shadow:none;
  3424. }
  3425. #u637 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:1012px;
  3429. top:767px;
  3430. width:40px;
  3431. height:31px;
  3432. display:flex;
  3433. }
  3434. #u637 .text {
  3435. position:absolute;
  3436. align-self:center;
  3437. padding:2px 2px 2px 2px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u637_text {
  3442. border-width:0px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. visibility:hidden;
  3446. }
  3447. #u638_img {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:-10px;
  3451. top:-8px;
  3452. width:44px;
  3453. height:44px;
  3454. }
  3455. #u638 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:1020px;
  3459. top:753px;
  3460. width:24px;
  3461. height:24px;
  3462. display:flex;
  3463. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3464. font-weight:700;
  3465. font-style:normal;
  3466. font-size:14px;
  3467. color:#1E1E1E;
  3468. }
  3469. #u638 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 2px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u638_text {
  3477. border-width:0px;
  3478. word-wrap:break-word;
  3479. text-transform:none;
  3480. }
  3481. #u639 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:0px;
  3487. height:0px;
  3488. }
  3489. #u640_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:363px;
  3495. height:2px;
  3496. }
  3497. #u640 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:1196px;
  3501. top:607px;
  3502. width:362px;
  3503. height:1px;
  3504. display:flex;
  3505. }
  3506. #u640 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 2px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u640_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u641_div {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:328px;
  3525. height:24px;
  3526. background:inherit;
  3527. background-color:rgba(255, 255, 255, 0);
  3528. border:none;
  3529. border-radius:0px;
  3530. -moz-box-shadow:none;
  3531. -webkit-box-shadow:none;
  3532. box-shadow:none;
  3533. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3534. font-weight:700;
  3535. font-style:normal;
  3536. font-size:16px;
  3537. }
  3538. #u641 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:1230px;
  3542. top:628px;
  3543. width:328px;
  3544. height:24px;
  3545. display:flex;
  3546. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3547. font-weight:700;
  3548. font-style:normal;
  3549. font-size:16px;
  3550. }
  3551. #u641 .text {
  3552. position:absolute;
  3553. align-self:flex-start;
  3554. padding:3px 0px 3px 0px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u641_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. }
  3563. #u642_div {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:303px;
  3569. height:192px;
  3570. background:inherit;
  3571. background-color:rgba(255, 255, 255, 0);
  3572. border:none;
  3573. border-radius:0px;
  3574. -moz-box-shadow:none;
  3575. -webkit-box-shadow:none;
  3576. box-shadow:none;
  3577. line-height:24px;
  3578. }
  3579. #u642 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:1255px;
  3583. top:659px;
  3584. width:303px;
  3585. height:192px;
  3586. display:flex;
  3587. line-height:24px;
  3588. }
  3589. #u642 .text {
  3590. position:absolute;
  3591. align-self:flex-start;
  3592. padding:0px 0px 0px 0px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u642_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. }
  3601. #u643_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:-10px;
  3605. top:-8px;
  3606. width:44px;
  3607. height:44px;
  3608. }
  3609. #u643 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:1196px;
  3613. top:628px;
  3614. width:24px;
  3615. height:24px;
  3616. display:flex;
  3617. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3618. font-weight:700;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. color:#1E1E1E;
  3622. }
  3623. #u643 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 2px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u643_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. }
  3635. #u644_div {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:25px;
  3641. height:168px;
  3642. background:inherit;
  3643. background-color:rgba(255, 255, 255, 0);
  3644. border:none;
  3645. border-radius:0px;
  3646. -moz-box-shadow:none;
  3647. -webkit-box-shadow:none;
  3648. box-shadow:none;
  3649. line-height:24px;
  3650. }
  3651. #u644 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:1230px;
  3655. top:659px;
  3656. width:25px;
  3657. height:168px;
  3658. display:flex;
  3659. line-height:24px;
  3660. }
  3661. #u644 .text {
  3662. position:absolute;
  3663. align-self:flex-start;
  3664. padding:0px 0px 0px 0px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u644_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. }
  3673. #u645 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:0px;
  3677. top:0px;
  3678. width:0px;
  3679. height:0px;
  3680. }
  3681. #u646_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:363px;
  3687. height:2px;
  3688. }
  3689. #u646 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:1196px;
  3693. top:2269px;
  3694. width:362px;
  3695. height:1px;
  3696. display:flex;
  3697. }
  3698. #u646 .text {
  3699. position:absolute;
  3700. align-self:center;
  3701. padding:2px 2px 2px 2px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u646_text {
  3706. border-width:0px;
  3707. word-wrap:break-word;
  3708. text-transform:none;
  3709. visibility:hidden;
  3710. }
  3711. #u647_div {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:328px;
  3717. height:24px;
  3718. background:inherit;
  3719. background-color:rgba(255, 255, 255, 0);
  3720. border:none;
  3721. border-radius:0px;
  3722. -moz-box-shadow:none;
  3723. -webkit-box-shadow:none;
  3724. box-shadow:none;
  3725. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3726. font-weight:700;
  3727. font-style:normal;
  3728. font-size:16px;
  3729. }
  3730. #u647 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:1230px;
  3734. top:2290px;
  3735. width:328px;
  3736. height:24px;
  3737. display:flex;
  3738. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3739. font-weight:700;
  3740. font-style:normal;
  3741. font-size:16px;
  3742. }
  3743. #u647 .text {
  3744. position:absolute;
  3745. align-self:flex-start;
  3746. padding:3px 0px 3px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u647_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. }
  3755. #u648_div {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:303px;
  3761. height:96px;
  3762. background:inherit;
  3763. background-color:rgba(255, 255, 255, 0);
  3764. border:none;
  3765. border-radius:0px;
  3766. -moz-box-shadow:none;
  3767. -webkit-box-shadow:none;
  3768. box-shadow:none;
  3769. line-height:24px;
  3770. }
  3771. #u648 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:1255px;
  3775. top:2321px;
  3776. width:303px;
  3777. height:96px;
  3778. display:flex;
  3779. line-height:24px;
  3780. }
  3781. #u648 .text {
  3782. position:absolute;
  3783. align-self:flex-start;
  3784. padding:0px 0px 0px 0px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u648_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. }
  3793. #u649_img {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:-10px;
  3797. top:-8px;
  3798. width:44px;
  3799. height:44px;
  3800. }
  3801. #u649 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:1196px;
  3805. top:2290px;
  3806. width:24px;
  3807. height:24px;
  3808. display:flex;
  3809. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3810. font-weight:700;
  3811. font-style:normal;
  3812. font-size:14px;
  3813. color:#1E1E1E;
  3814. }
  3815. #u649 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 2px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u649_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. }
  3827. #u650_div {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:25px;
  3833. height:96px;
  3834. background:inherit;
  3835. background-color:rgba(255, 255, 255, 0);
  3836. border:none;
  3837. border-radius:0px;
  3838. -moz-box-shadow:none;
  3839. -webkit-box-shadow:none;
  3840. box-shadow:none;
  3841. line-height:24px;
  3842. }
  3843. #u650 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:1230px;
  3847. top:2321px;
  3848. width:25px;
  3849. height:96px;
  3850. display:flex;
  3851. line-height:24px;
  3852. }
  3853. #u650 .text {
  3854. position:absolute;
  3855. align-self:flex-start;
  3856. padding:0px 0px 0px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u650_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. }
  3865. #u651 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:0px;
  3871. height:0px;
  3872. }
  3873. #u652_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:363px;
  3879. height:2px;
  3880. }
  3881. #u652 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:1196px;
  3885. top:2437px;
  3886. width:362px;
  3887. height:1px;
  3888. display:flex;
  3889. }
  3890. #u652 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 2px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u652_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u653_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:328px;
  3909. height:24px;
  3910. background:inherit;
  3911. background-color:rgba(255, 255, 255, 0);
  3912. border:none;
  3913. border-radius:0px;
  3914. -moz-box-shadow:none;
  3915. -webkit-box-shadow:none;
  3916. box-shadow:none;
  3917. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3918. font-weight:700;
  3919. font-style:normal;
  3920. font-size:16px;
  3921. }
  3922. #u653 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:1230px;
  3926. top:2458px;
  3927. width:328px;
  3928. height:24px;
  3929. display:flex;
  3930. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3931. font-weight:700;
  3932. font-style:normal;
  3933. font-size:16px;
  3934. }
  3935. #u653 .text {
  3936. position:absolute;
  3937. align-self:flex-start;
  3938. padding:3px 0px 3px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u653_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. }
  3947. #u654_div {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:303px;
  3953. height:48px;
  3954. background:inherit;
  3955. background-color:rgba(255, 255, 255, 0);
  3956. border:none;
  3957. border-radius:0px;
  3958. -moz-box-shadow:none;
  3959. -webkit-box-shadow:none;
  3960. box-shadow:none;
  3961. line-height:24px;
  3962. }
  3963. #u654 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:1255px;
  3967. top:2489px;
  3968. width:303px;
  3969. height:48px;
  3970. display:flex;
  3971. line-height:24px;
  3972. }
  3973. #u654 .text {
  3974. position:absolute;
  3975. align-self:flex-start;
  3976. padding:0px 0px 0px 0px;
  3977. box-sizing:border-box;
  3978. width:100%;
  3979. }
  3980. #u654_text {
  3981. border-width:0px;
  3982. word-wrap:break-word;
  3983. text-transform:none;
  3984. }
  3985. #u655_img {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:-10px;
  3989. top:-8px;
  3990. width:44px;
  3991. height:44px;
  3992. }
  3993. #u655 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:1196px;
  3997. top:2458px;
  3998. width:24px;
  3999. height:24px;
  4000. display:flex;
  4001. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4002. font-weight:700;
  4003. font-style:normal;
  4004. font-size:14px;
  4005. color:#1E1E1E;
  4006. }
  4007. #u655 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 2px 2px 2px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u655_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. }
  4019. #u656_div {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:25px;
  4025. height:48px;
  4026. background:inherit;
  4027. background-color:rgba(255, 255, 255, 0);
  4028. border:none;
  4029. border-radius:0px;
  4030. -moz-box-shadow:none;
  4031. -webkit-box-shadow:none;
  4032. box-shadow:none;
  4033. line-height:24px;
  4034. }
  4035. #u656 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:1230px;
  4039. top:2489px;
  4040. width:25px;
  4041. height:48px;
  4042. display:flex;
  4043. line-height:24px;
  4044. }
  4045. #u656 .text {
  4046. position:absolute;
  4047. align-self:flex-start;
  4048. padding:0px 0px 0px 0px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u656_text {
  4053. border-width:0px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. }
  4057. #u657 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:0px;
  4063. height:0px;
  4064. }
  4065. #u658_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:363px;
  4071. height:2px;
  4072. }
  4073. #u658 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:1196px;
  4077. top:2557px;
  4078. width:362px;
  4079. height:1px;
  4080. display:flex;
  4081. }
  4082. #u658 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 2px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u658_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u659_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:328px;
  4101. height:24px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 0);
  4104. border:none;
  4105. border-radius:0px;
  4106. -moz-box-shadow:none;
  4107. -webkit-box-shadow:none;
  4108. box-shadow:none;
  4109. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4110. font-weight:700;
  4111. font-style:normal;
  4112. font-size:16px;
  4113. }
  4114. #u659 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:1230px;
  4118. top:2578px;
  4119. width:328px;
  4120. height:24px;
  4121. display:flex;
  4122. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4123. font-weight:700;
  4124. font-style:normal;
  4125. font-size:16px;
  4126. }
  4127. #u659 .text {
  4128. position:absolute;
  4129. align-self:flex-start;
  4130. padding:3px 0px 3px 0px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u659_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. }
  4139. #u660_div {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:303px;
  4145. height:120px;
  4146. background:inherit;
  4147. background-color:rgba(255, 255, 255, 0);
  4148. border:none;
  4149. border-radius:0px;
  4150. -moz-box-shadow:none;
  4151. -webkit-box-shadow:none;
  4152. box-shadow:none;
  4153. line-height:24px;
  4154. }
  4155. #u660 {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:1255px;
  4159. top:2609px;
  4160. width:303px;
  4161. height:120px;
  4162. display:flex;
  4163. line-height:24px;
  4164. }
  4165. #u660 .text {
  4166. position:absolute;
  4167. align-self:flex-start;
  4168. padding:0px 0px 0px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u660_text {
  4173. border-width:0px;
  4174. word-wrap:break-word;
  4175. text-transform:none;
  4176. }
  4177. #u661_img {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:-10px;
  4181. top:-8px;
  4182. width:44px;
  4183. height:44px;
  4184. }
  4185. #u661 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:1196px;
  4189. top:2578px;
  4190. width:24px;
  4191. height:24px;
  4192. display:flex;
  4193. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4194. font-weight:700;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. color:#1E1E1E;
  4198. }
  4199. #u661 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:2px 2px 2px 2px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u661_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. }
  4211. #u662_div {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:25px;
  4217. height:120px;
  4218. background:inherit;
  4219. background-color:rgba(255, 255, 255, 0);
  4220. border:none;
  4221. border-radius:0px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. line-height:24px;
  4226. }
  4227. #u662 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:1230px;
  4231. top:2609px;
  4232. width:25px;
  4233. height:120px;
  4234. display:flex;
  4235. line-height:24px;
  4236. }
  4237. #u662 .text {
  4238. position:absolute;
  4239. align-self:flex-start;
  4240. padding:0px 0px 0px 0px;
  4241. box-sizing:border-box;
  4242. width:100%;
  4243. }
  4244. #u662_text {
  4245. border-width:0px;
  4246. word-wrap:break-word;
  4247. text-transform:none;
  4248. }
  4249. #u663 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:0px;
  4255. height:0px;
  4256. }
  4257. #u664_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:363px;
  4263. height:2px;
  4264. }
  4265. #u664 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:1196px;
  4269. top:321px;
  4270. width:362px;
  4271. height:1px;
  4272. display:flex;
  4273. }
  4274. #u664 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 2px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u664_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. visibility:hidden;
  4286. }
  4287. #u665_div {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:328px;
  4293. height:24px;
  4294. background:inherit;
  4295. background-color:rgba(255, 255, 255, 0);
  4296. border:none;
  4297. border-radius:0px;
  4298. -moz-box-shadow:none;
  4299. -webkit-box-shadow:none;
  4300. box-shadow:none;
  4301. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4302. font-weight:700;
  4303. font-style:normal;
  4304. font-size:16px;
  4305. color:#14928A;
  4306. }
  4307. #u665 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:1230px;
  4311. top:342px;
  4312. width:328px;
  4313. height:24px;
  4314. display:flex;
  4315. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4316. font-weight:700;
  4317. font-style:normal;
  4318. font-size:16px;
  4319. color:#14928A;
  4320. }
  4321. #u665 .text {
  4322. position:absolute;
  4323. align-self:flex-start;
  4324. padding:3px 0px 3px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u665_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. }
  4333. #u666_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:303px;
  4339. height:120px;
  4340. background:inherit;
  4341. background-color:rgba(255, 255, 255, 0);
  4342. border:none;
  4343. border-radius:0px;
  4344. -moz-box-shadow:none;
  4345. -webkit-box-shadow:none;
  4346. box-shadow:none;
  4347. line-height:24px;
  4348. }
  4349. #u666 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:1255px;
  4353. top:373px;
  4354. width:303px;
  4355. height:120px;
  4356. display:flex;
  4357. line-height:24px;
  4358. }
  4359. #u666 .text {
  4360. position:absolute;
  4361. align-self:flex-start;
  4362. padding:0px 0px 0px 0px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u666_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. }
  4371. #u667_img {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:-10px;
  4375. top:-8px;
  4376. width:44px;
  4377. height:44px;
  4378. }
  4379. #u667 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:1196px;
  4383. top:342px;
  4384. width:24px;
  4385. height:24px;
  4386. display:flex;
  4387. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4388. font-weight:700;
  4389. font-style:normal;
  4390. font-size:14px;
  4391. color:#1E1E1E;
  4392. }
  4393. #u667 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 2px 2px 2px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u667_text {
  4401. border-width:0px;
  4402. word-wrap:break-word;
  4403. text-transform:none;
  4404. }
  4405. #u668_div {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:25px;
  4411. height:72px;
  4412. background:inherit;
  4413. background-color:rgba(255, 255, 255, 0);
  4414. border:none;
  4415. border-radius:0px;
  4416. -moz-box-shadow:none;
  4417. -webkit-box-shadow:none;
  4418. box-shadow:none;
  4419. line-height:24px;
  4420. }
  4421. #u668 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:1230px;
  4425. top:373px;
  4426. width:25px;
  4427. height:72px;
  4428. display:flex;
  4429. line-height:24px;
  4430. }
  4431. #u668 .text {
  4432. position:absolute;
  4433. align-self:flex-start;
  4434. padding:0px 0px 0px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u668_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. }
  4443. #u669_img {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:15px;
  4449. height:15px;
  4450. }
  4451. #u669 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:326px;
  4455. top:329px;
  4456. width:15px;
  4457. height:15px;
  4458. display:flex;
  4459. }
  4460. #u669 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 2px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u669_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u670 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:0px;
  4479. height:0px;
  4480. }
  4481. #u671_div {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:328px;
  4487. height:24px;
  4488. background:inherit;
  4489. background-color:rgba(255, 255, 255, 0);
  4490. border:none;
  4491. border-radius:0px;
  4492. -moz-box-shadow:none;
  4493. -webkit-box-shadow:none;
  4494. box-shadow:none;
  4495. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4496. font-weight:700;
  4497. font-style:normal;
  4498. font-size:16px;
  4499. color:#14928A;
  4500. }
  4501. #u671 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:1230px;
  4505. top:2770px;
  4506. width:328px;
  4507. height:24px;
  4508. display:flex;
  4509. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4510. font-weight:700;
  4511. font-style:normal;
  4512. font-size:16px;
  4513. color:#14928A;
  4514. }
  4515. #u671 .text {
  4516. position:absolute;
  4517. align-self:flex-start;
  4518. padding:3px 0px 3px 0px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u671_text {
  4523. border-width:0px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. }
  4527. #u672_img {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:-10px;
  4531. top:-8px;
  4532. width:44px;
  4533. height:44px;
  4534. }
  4535. #u672 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:1196px;
  4539. top:2770px;
  4540. width:24px;
  4541. height:24px;
  4542. display:flex;
  4543. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4544. font-weight:700;
  4545. font-style:normal;
  4546. font-size:14px;
  4547. color:#1E1E1E;
  4548. }
  4549. #u672 .text {
  4550. position:absolute;
  4551. align-self:center;
  4552. padding:2px 2px 2px 2px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u672_text {
  4557. border-width:0px;
  4558. word-wrap:break-word;
  4559. text-transform:none;
  4560. }
  4561. #u673_img {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:363px;
  4567. height:2px;
  4568. }
  4569. #u673 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:1196px;
  4573. top:2749px;
  4574. width:362px;
  4575. height:1px;
  4576. display:flex;
  4577. }
  4578. #u673 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 2px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u673_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. visibility:hidden;
  4590. }
  4591. #u674_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:303px;
  4597. height:24px;
  4598. background:inherit;
  4599. background-color:rgba(255, 255, 255, 0);
  4600. border:none;
  4601. border-radius:0px;
  4602. -moz-box-shadow:none;
  4603. -webkit-box-shadow:none;
  4604. box-shadow:none;
  4605. line-height:24px;
  4606. }
  4607. #u674 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:1255px;
  4611. top:2801px;
  4612. width:303px;
  4613. height:24px;
  4614. display:flex;
  4615. line-height:24px;
  4616. }
  4617. #u674 .text {
  4618. position:absolute;
  4619. align-self:flex-start;
  4620. padding:0px 0px 0px 0px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u674_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. }
  4629. #u675_div {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:25px;
  4635. height:24px;
  4636. background:inherit;
  4637. background-color:rgba(255, 255, 255, 0);
  4638. border:none;
  4639. border-radius:0px;
  4640. -moz-box-shadow:none;
  4641. -webkit-box-shadow:none;
  4642. box-shadow:none;
  4643. line-height:24px;
  4644. }
  4645. #u675 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:1230px;
  4649. top:2801px;
  4650. width:25px;
  4651. height:24px;
  4652. display:flex;
  4653. line-height:24px;
  4654. }
  4655. #u675 .text {
  4656. position:absolute;
  4657. align-self:flex-start;
  4658. padding:0px 0px 0px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u675_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. }
  4667. #u676_div {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:143px;
  4673. height:33px;
  4674. background:inherit;
  4675. background-color:rgba(255, 255, 255, 0);
  4676. box-sizing:border-box;
  4677. border-width:2px;
  4678. border-style:solid;
  4679. border-color:rgba(255, 199, 51, 1);
  4680. border-radius:0px;
  4681. -moz-box-shadow:none;
  4682. -webkit-box-shadow:none;
  4683. box-shadow:none;
  4684. }
  4685. #u676 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:218px;
  4689. top:321px;
  4690. width:143px;
  4691. height:33px;
  4692. display:flex;
  4693. }
  4694. #u676 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 2px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u676_text {
  4702. border-width:0px;
  4703. word-wrap:break-word;
  4704. text-transform:none;
  4705. visibility:hidden;
  4706. }
  4707. #u677_img {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:-10px;
  4711. top:-8px;
  4712. width:44px;
  4713. height:44px;
  4714. }
  4715. #u677 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:353px;
  4719. top:325px;
  4720. width:24px;
  4721. height:24px;
  4722. display:flex;
  4723. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4724. font-weight:700;
  4725. font-style:normal;
  4726. font-size:14px;
  4727. color:#1E1E1E;
  4728. }
  4729. #u677 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:2px 2px 2px 2px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u677_text {
  4737. border-width:0px;
  4738. word-wrap:break-word;
  4739. text-transform:none;
  4740. }