styles.css 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1579px;
  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. #u836_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1155px;
  25. height:583px;
  26. }
  27. #u836 {
  28. border-width:0px;
  29. position:absolute;
  30. left:22px;
  31. top:276px;
  32. width:1155px;
  33. height:583px;
  34. display:flex;
  35. }
  36. #u836 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u836_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u837 {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:0px;
  55. height:0px;
  56. }
  57. #u838_img {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:8px;
  63. height:28px;
  64. }
  65. #u838 {
  66. border-width:0px;
  67. position:absolute;
  68. left:8px;
  69. top:15px;
  70. width:8px;
  71. height:28px;
  72. display:flex;
  73. }
  74. #u838 .text {
  75. position:absolute;
  76. align-self:center;
  77. padding:2px 2px 2px 2px;
  78. box-sizing:border-box;
  79. width:100%;
  80. }
  81. #u838_text {
  82. border-width:0px;
  83. word-wrap:break-word;
  84. text-transform:none;
  85. visibility:hidden;
  86. }
  87. #u839_div {
  88. border-width:0px;
  89. position:absolute;
  90. left:0px;
  91. top:0px;
  92. width:96px;
  93. height:28px;
  94. background:inherit;
  95. background-color:rgba(255, 255, 255, 0);
  96. border:none;
  97. border-radius:0px;
  98. -moz-box-shadow:none;
  99. -webkit-box-shadow:none;
  100. box-shadow:none;
  101. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  102. font-weight:700;
  103. font-style:normal;
  104. }
  105. #u839 {
  106. border-width:0px;
  107. position:absolute;
  108. left:22px;
  109. top:15px;
  110. width:96px;
  111. height:28px;
  112. display:flex;
  113. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  114. font-weight:700;
  115. font-style:normal;
  116. }
  117. #u839 .text {
  118. position:absolute;
  119. align-self:flex-start;
  120. padding:0px 0px 0px 0px;
  121. box-sizing:border-box;
  122. width:100%;
  123. }
  124. #u839_text {
  125. border-width:0px;
  126. white-space:nowrap;
  127. text-transform:none;
  128. }
  129. #u840_div {
  130. border-width:0px;
  131. position:absolute;
  132. left:0px;
  133. top:0px;
  134. width:108px;
  135. height:21px;
  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. font-size:18px;
  147. }
  148. #u840 {
  149. border-width:0px;
  150. position:absolute;
  151. left:22px;
  152. top:71px;
  153. width:108px;
  154. height:21px;
  155. display:flex;
  156. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  157. font-weight:700;
  158. font-style:normal;
  159. font-size:18px;
  160. }
  161. #u840 .text {
  162. position:absolute;
  163. align-self:flex-start;
  164. padding:0px 0px 0px 0px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u840_text {
  169. border-width:0px;
  170. white-space:nowrap;
  171. text-transform:none;
  172. }
  173. #u841_div {
  174. border-width:0px;
  175. position:absolute;
  176. left:0px;
  177. top:0px;
  178. width:191px;
  179. height:21px;
  180. background:inherit;
  181. background-color:rgba(255, 255, 255, 0);
  182. border:none;
  183. border-radius:0px;
  184. -moz-box-shadow:none;
  185. -webkit-box-shadow:none;
  186. box-shadow:none;
  187. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  188. font-weight:700;
  189. font-style:normal;
  190. font-size:18px;
  191. }
  192. #u841 {
  193. border-width:0px;
  194. position:absolute;
  195. left:22px;
  196. top:198px;
  197. width:191px;
  198. height:21px;
  199. display:flex;
  200. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  201. font-weight:700;
  202. font-style:normal;
  203. font-size:18px;
  204. }
  205. #u841 .text {
  206. position:absolute;
  207. align-self:flex-start;
  208. padding:0px 0px 0px 0px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u841_text {
  213. border-width:0px;
  214. white-space:nowrap;
  215. text-transform:none;
  216. }
  217. #u842 {
  218. border-width:0px;
  219. position:absolute;
  220. left:0px;
  221. top:0px;
  222. width:0px;
  223. height:0px;
  224. }
  225. #u843_img {
  226. border-width:0px;
  227. position:absolute;
  228. left:-4px;
  229. top:-4px;
  230. width:40px;
  231. height:40px;
  232. }
  233. #u843 {
  234. border-width:0px;
  235. position:absolute;
  236. left:1187px;
  237. top:277px;
  238. width:30px;
  239. height:30px;
  240. display:flex;
  241. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  242. font-weight:700;
  243. font-style:normal;
  244. font-size:18px;
  245. color:#1E1E1E;
  246. }
  247. #u843 .text {
  248. position:absolute;
  249. align-self:center;
  250. padding:2px 2px 2px 2px;
  251. box-sizing:border-box;
  252. width:100%;
  253. }
  254. #u843_text {
  255. border-width:0px;
  256. word-wrap:break-word;
  257. text-transform:none;
  258. }
  259. #u844_div {
  260. border-width:0px;
  261. position:absolute;
  262. left:0px;
  263. top:0px;
  264. width:131px;
  265. height:18px;
  266. background:inherit;
  267. background-color:rgba(255, 255, 255, 0);
  268. border:none;
  269. border-radius:0px;
  270. -moz-box-shadow:none;
  271. -webkit-box-shadow:none;
  272. box-shadow:none;
  273. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  274. font-weight:700;
  275. font-style:normal;
  276. font-size:16px;
  277. }
  278. #u844 {
  279. border-width:0px;
  280. position:absolute;
  281. left:1227px;
  282. top:284px;
  283. width:131px;
  284. height:18px;
  285. display:flex;
  286. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  287. font-weight:700;
  288. font-style:normal;
  289. font-size:16px;
  290. }
  291. #u844 .text {
  292. position:absolute;
  293. align-self:flex-start;
  294. padding:0px 0px 0px 0px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u844_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. }
  303. #u845_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:352px;
  309. height:44px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. line-height:22px;
  318. }
  319. #u845 {
  320. border-width:0px;
  321. position:absolute;
  322. left:1227px;
  323. top:322px;
  324. width:352px;
  325. height:44px;
  326. display:flex;
  327. line-height:22px;
  328. }
  329. #u845 .text {
  330. position:absolute;
  331. align-self:flex-start;
  332. padding:0px 0px 0px 0px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u845_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. }
  341. #u846 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u847_img {
  350. border-width:0px;
  351. position:absolute;
  352. left:-4px;
  353. top:-4px;
  354. width:44px;
  355. height:44px;
  356. }
  357. #u847 {
  358. border-width:0px;
  359. position:absolute;
  360. left:1187px;
  361. top:580px;
  362. width:34px;
  363. height:34px;
  364. display:flex;
  365. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  366. font-weight:700;
  367. font-style:normal;
  368. font-size:26px;
  369. }
  370. #u847 .text {
  371. position:absolute;
  372. align-self:center;
  373. padding:2px 2px 2px 2px;
  374. box-sizing:border-box;
  375. width:100%;
  376. }
  377. #u847_text {
  378. border-width:0px;
  379. word-wrap:break-word;
  380. text-transform:none;
  381. }
  382. #u848_div {
  383. border-width:0px;
  384. position:absolute;
  385. left:0px;
  386. top:0px;
  387. width:131px;
  388. height:18px;
  389. background:inherit;
  390. background-color:rgba(255, 255, 255, 0);
  391. border:none;
  392. border-radius:0px;
  393. -moz-box-shadow:none;
  394. -webkit-box-shadow:none;
  395. box-shadow:none;
  396. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  397. font-weight:700;
  398. font-style:normal;
  399. font-size:16px;
  400. }
  401. #u848 {
  402. border-width:0px;
  403. position:absolute;
  404. left:1227px;
  405. top:587px;
  406. width:131px;
  407. height:18px;
  408. display:flex;
  409. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  410. font-weight:700;
  411. font-style:normal;
  412. font-size:16px;
  413. }
  414. #u848 .text {
  415. position:absolute;
  416. align-self:flex-start;
  417. padding:0px 0px 0px 0px;
  418. box-sizing:border-box;
  419. width:100%;
  420. }
  421. #u848_text {
  422. border-width:0px;
  423. word-wrap:break-word;
  424. text-transform:none;
  425. }
  426. #u849_div {
  427. border-width:0px;
  428. position:absolute;
  429. left:0px;
  430. top:0px;
  431. width:352px;
  432. height:22px;
  433. background:inherit;
  434. background-color:rgba(255, 255, 255, 0);
  435. border:none;
  436. border-radius:0px;
  437. -moz-box-shadow:none;
  438. -webkit-box-shadow:none;
  439. box-shadow:none;
  440. color:#000000;
  441. line-height:22px;
  442. }
  443. #u849 {
  444. border-width:0px;
  445. position:absolute;
  446. left:1227px;
  447. top:625px;
  448. width:352px;
  449. height:22px;
  450. display:flex;
  451. color:#000000;
  452. line-height:22px;
  453. }
  454. #u849 .text {
  455. position:absolute;
  456. align-self:flex-start;
  457. padding:0px 0px 0px 0px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u849_text {
  462. border-width:0px;
  463. word-wrap:break-word;
  464. text-transform:none;
  465. }
  466. #u850 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:0px;
  471. width:0px;
  472. height:0px;
  473. }
  474. #u851_img {
  475. border-width:0px;
  476. position:absolute;
  477. left:-4px;
  478. top:-4px;
  479. width:40px;
  480. height:40px;
  481. }
  482. #u851 {
  483. border-width:0px;
  484. position:absolute;
  485. left:1187px;
  486. top:1040px;
  487. width:30px;
  488. height:30px;
  489. display:flex;
  490. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  491. font-weight:700;
  492. font-style:normal;
  493. font-size:18px;
  494. color:#1E1E1E;
  495. }
  496. #u851 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u851_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. }
  508. #u852_div {
  509. border-width:0px;
  510. position:absolute;
  511. left:0px;
  512. top:0px;
  513. width:131px;
  514. height:18px;
  515. background:inherit;
  516. background-color:rgba(255, 255, 255, 0);
  517. border:none;
  518. border-radius:0px;
  519. -moz-box-shadow:none;
  520. -webkit-box-shadow:none;
  521. box-shadow:none;
  522. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  523. font-weight:700;
  524. font-style:normal;
  525. font-size:16px;
  526. }
  527. #u852 {
  528. border-width:0px;
  529. position:absolute;
  530. left:1227px;
  531. top:1047px;
  532. width:131px;
  533. height:18px;
  534. display:flex;
  535. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  536. font-weight:700;
  537. font-style:normal;
  538. font-size:16px;
  539. }
  540. #u852 .text {
  541. position:absolute;
  542. align-self:flex-start;
  543. padding:0px 0px 0px 0px;
  544. box-sizing:border-box;
  545. width:100%;
  546. }
  547. #u852_text {
  548. border-width:0px;
  549. word-wrap:break-word;
  550. text-transform:none;
  551. }
  552. #u853_div {
  553. border-width:0px;
  554. position:absolute;
  555. left:0px;
  556. top:0px;
  557. width:352px;
  558. height:110px;
  559. background:inherit;
  560. background-color:rgba(255, 255, 255, 0);
  561. border:none;
  562. border-radius:0px;
  563. -moz-box-shadow:none;
  564. -webkit-box-shadow:none;
  565. box-shadow:none;
  566. line-height:22px;
  567. }
  568. #u853 {
  569. border-width:0px;
  570. position:absolute;
  571. left:1227px;
  572. top:1085px;
  573. width:352px;
  574. height:110px;
  575. display:flex;
  576. line-height:22px;
  577. }
  578. #u853 .text {
  579. position:absolute;
  580. align-self:flex-start;
  581. padding:0px 0px 0px 0px;
  582. box-sizing:border-box;
  583. width:100%;
  584. }
  585. #u853_text {
  586. border-width:0px;
  587. word-wrap:break-word;
  588. text-transform:none;
  589. }
  590. #u854 {
  591. border-width:0px;
  592. position:absolute;
  593. left:0px;
  594. top:0px;
  595. width:0px;
  596. height:0px;
  597. }
  598. #u855_div {
  599. border-width:0px;
  600. position:absolute;
  601. left:0px;
  602. top:0px;
  603. width:131px;
  604. height:18px;
  605. background:inherit;
  606. background-color:rgba(255, 255, 255, 0);
  607. border:none;
  608. border-radius:0px;
  609. -moz-box-shadow:none;
  610. -webkit-box-shadow:none;
  611. box-shadow:none;
  612. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  613. font-weight:700;
  614. font-style:normal;
  615. font-size:16px;
  616. color:#FF0000;
  617. }
  618. #u855 {
  619. border-width:0px;
  620. position:absolute;
  621. left:1227px;
  622. top:1210px;
  623. width:131px;
  624. height:18px;
  625. display:flex;
  626. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  627. font-weight:700;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FF0000;
  631. }
  632. #u855 .text {
  633. position:absolute;
  634. align-self:flex-start;
  635. padding:0px 0px 0px 0px;
  636. box-sizing:border-box;
  637. width:100%;
  638. }
  639. #u855_text {
  640. border-width:0px;
  641. word-wrap:break-word;
  642. text-transform:none;
  643. }
  644. #u856_div {
  645. border-width:0px;
  646. position:absolute;
  647. left:0px;
  648. top:0px;
  649. width:352px;
  650. height:88px;
  651. background:inherit;
  652. background-color:rgba(255, 255, 255, 0);
  653. border:none;
  654. border-radius:0px;
  655. -moz-box-shadow:none;
  656. -webkit-box-shadow:none;
  657. box-shadow:none;
  658. line-height:22px;
  659. }
  660. #u856 {
  661. border-width:0px;
  662. position:absolute;
  663. left:1227px;
  664. top:1248px;
  665. width:352px;
  666. height:88px;
  667. display:flex;
  668. line-height:22px;
  669. }
  670. #u856 .text {
  671. position:absolute;
  672. align-self:flex-start;
  673. padding:0px 0px 0px 0px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u856_text {
  678. border-width:0px;
  679. word-wrap:break-word;
  680. text-transform:none;
  681. }
  682. #u857_img {
  683. border-width:0px;
  684. position:absolute;
  685. left:-4px;
  686. top:-4px;
  687. width:44px;
  688. height:44px;
  689. }
  690. #u857 {
  691. border-width:0px;
  692. position:absolute;
  693. left:1187px;
  694. top:1203px;
  695. width:34px;
  696. height:34px;
  697. display:flex;
  698. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  699. font-weight:700;
  700. font-style:normal;
  701. font-size:26px;
  702. }
  703. #u857 .text {
  704. position:absolute;
  705. align-self:center;
  706. padding:2px 2px 2px 2px;
  707. box-sizing:border-box;
  708. width:100%;
  709. }
  710. #u857_text {
  711. border-width:0px;
  712. word-wrap:break-word;
  713. text-transform:none;
  714. }
  715. #u858 {
  716. border-width:0px;
  717. position:absolute;
  718. left:0px;
  719. top:0px;
  720. width:0px;
  721. height:0px;
  722. }
  723. #u859_img {
  724. border-width:0px;
  725. position:absolute;
  726. left:-4px;
  727. top:-4px;
  728. width:44px;
  729. height:44px;
  730. }
  731. #u859 {
  732. border-width:0px;
  733. position:absolute;
  734. left:1187px;
  735. top:1340px;
  736. width:34px;
  737. height:34px;
  738. display:flex;
  739. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  740. font-weight:700;
  741. font-style:normal;
  742. font-size:26px;
  743. }
  744. #u859 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u859_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. }
  756. #u860_div {
  757. border-width:0px;
  758. position:absolute;
  759. left:0px;
  760. top:0px;
  761. width:131px;
  762. height:18px;
  763. background:inherit;
  764. background-color:rgba(255, 255, 255, 0);
  765. border:none;
  766. border-radius:0px;
  767. -moz-box-shadow:none;
  768. -webkit-box-shadow:none;
  769. box-shadow:none;
  770. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  771. font-weight:700;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FF0000;
  775. }
  776. #u860 {
  777. border-width:0px;
  778. position:absolute;
  779. left:1227px;
  780. top:1347px;
  781. width:131px;
  782. height:18px;
  783. display:flex;
  784. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  785. font-weight:700;
  786. font-style:normal;
  787. font-size:16px;
  788. color:#FF0000;
  789. }
  790. #u860 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u860_text {
  798. border-width:0px;
  799. word-wrap:break-word;
  800. text-transform:none;
  801. }
  802. #u861_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:352px;
  808. height:66px;
  809. background:inherit;
  810. background-color:rgba(255, 255, 255, 0);
  811. border:none;
  812. border-radius:0px;
  813. -moz-box-shadow:none;
  814. -webkit-box-shadow:none;
  815. box-shadow:none;
  816. line-height:22px;
  817. }
  818. #u861 {
  819. border-width:0px;
  820. position:absolute;
  821. left:1227px;
  822. top:1385px;
  823. width:352px;
  824. height:66px;
  825. display:flex;
  826. line-height:22px;
  827. }
  828. #u861 .text {
  829. position:absolute;
  830. align-self:flex-start;
  831. padding:0px 0px 0px 0px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u861_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. }
  840. #u862 {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:0px;
  846. height:0px;
  847. }
  848. #u863_img {
  849. border-width:0px;
  850. position:absolute;
  851. left:-4px;
  852. top:-4px;
  853. width:44px;
  854. height:44px;
  855. }
  856. #u863 {
  857. border-width:0px;
  858. position:absolute;
  859. left:1187px;
  860. top:1461px;
  861. width:34px;
  862. height:34px;
  863. display:flex;
  864. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  865. font-weight:700;
  866. font-style:normal;
  867. font-size:26px;
  868. }
  869. #u863 .text {
  870. position:absolute;
  871. align-self:center;
  872. padding:2px 2px 2px 2px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u863_text {
  877. border-width:0px;
  878. word-wrap:break-word;
  879. text-transform:none;
  880. }
  881. #u864_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:131px;
  887. height:18px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 0);
  890. border:none;
  891. border-radius:0px;
  892. -moz-box-shadow:none;
  893. -webkit-box-shadow:none;
  894. box-shadow:none;
  895. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  896. font-weight:700;
  897. font-style:normal;
  898. font-size:16px;
  899. color:#FF0000;
  900. }
  901. #u864 {
  902. border-width:0px;
  903. position:absolute;
  904. left:1227px;
  905. top:1468px;
  906. width:131px;
  907. height:18px;
  908. display:flex;
  909. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  910. font-weight:700;
  911. font-style:normal;
  912. font-size:16px;
  913. color:#FF0000;
  914. }
  915. #u864 .text {
  916. position:absolute;
  917. align-self:flex-start;
  918. padding:0px 0px 0px 0px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u864_text {
  923. border-width:0px;
  924. word-wrap:break-word;
  925. text-transform:none;
  926. }
  927. #u865_div {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:352px;
  933. height:88px;
  934. background:inherit;
  935. background-color:rgba(255, 255, 255, 0);
  936. border:none;
  937. border-radius:0px;
  938. -moz-box-shadow:none;
  939. -webkit-box-shadow:none;
  940. box-shadow:none;
  941. line-height:22px;
  942. }
  943. #u865 {
  944. border-width:0px;
  945. position:absolute;
  946. left:1227px;
  947. top:1506px;
  948. width:352px;
  949. height:88px;
  950. display:flex;
  951. line-height:22px;
  952. }
  953. #u865 .text {
  954. position:absolute;
  955. align-self:flex-start;
  956. padding:0px 0px 0px 0px;
  957. box-sizing:border-box;
  958. width:100%;
  959. }
  960. #u865_text {
  961. border-width:0px;
  962. word-wrap:break-word;
  963. text-transform:none;
  964. }
  965. #u866_div {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:1121px;
  971. height:74px;
  972. background:inherit;
  973. background-color:rgba(255, 255, 255, 0);
  974. border:none;
  975. border-radius:0px;
  976. -moz-box-shadow:none;
  977. -webkit-box-shadow:none;
  978. box-shadow:none;
  979. font-size:16px;
  980. line-height:24px;
  981. }
  982. #u866 {
  983. border-width:0px;
  984. position:absolute;
  985. left:57px;
  986. top:103px;
  987. width:1121px;
  988. height:74px;
  989. display:flex;
  990. font-size:16px;
  991. line-height:24px;
  992. }
  993. #u866 .text {
  994. position:absolute;
  995. align-self:flex-start;
  996. padding:0px 0px 0px 0px;
  997. box-sizing:border-box;
  998. width:100%;
  999. }
  1000. #u866_text {
  1001. border-width:0px;
  1002. word-wrap:break-word;
  1003. text-transform:none;
  1004. }
  1005. #u867 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:1227px;
  1009. top:1347px;
  1010. width:63px;
  1011. height:23px;
  1012. overflow:hidden;
  1013. background-image:url('../../resources/images/transparent.gif');
  1014. }
  1015. #u868_div {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:326px;
  1021. height:88px;
  1022. background:inherit;
  1023. background-color:rgba(255, 255, 0, 1);
  1024. box-sizing:border-box;
  1025. border-width:1px;
  1026. border-style:solid;
  1027. border-color:rgba(0, 0, 0, 1);
  1028. border-radius:10px;
  1029. -moz-box-shadow:none;
  1030. -webkit-box-shadow:none;
  1031. box-shadow:none;
  1032. text-align:left;
  1033. line-height:18px;
  1034. }
  1035. #u868 {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:1227px;
  1039. top:1252px;
  1040. width:326px;
  1041. height:88px;
  1042. display:flex;
  1043. text-align:left;
  1044. line-height:18px;
  1045. }
  1046. #u868 .text {
  1047. position:absolute;
  1048. align-self:center;
  1049. padding:2px 2px 2px 2px;
  1050. box-sizing:border-box;
  1051. width:100%;
  1052. }
  1053. #u868_text {
  1054. border-width:0px;
  1055. word-wrap:break-word;
  1056. text-transform:none;
  1057. }
  1058. #u869_img {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:-4px;
  1062. top:-4px;
  1063. width:30px;
  1064. height:30px;
  1065. }
  1066. #u869 {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:217px;
  1070. top:437px;
  1071. width:20px;
  1072. height:20px;
  1073. display:flex;
  1074. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1075. font-weight:700;
  1076. font-style:normal;
  1077. font-size:14px;
  1078. color:#1E1E1E;
  1079. }
  1080. #u869 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u869_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. }
  1092. #u870_img {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:-4px;
  1096. top:-4px;
  1097. width:30px;
  1098. height:30px;
  1099. }
  1100. #u870 {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:1015px;
  1104. top:579px;
  1105. width:20px;
  1106. height:20px;
  1107. display:flex;
  1108. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1109. font-weight:700;
  1110. font-style:normal;
  1111. font-size:14px;
  1112. color:#1E1E1E;
  1113. }
  1114. #u870 .text {
  1115. position:absolute;
  1116. align-self:center;
  1117. padding:2px 2px 2px 2px;
  1118. box-sizing:border-box;
  1119. width:100%;
  1120. }
  1121. #u870_text {
  1122. border-width:0px;
  1123. word-wrap:break-word;
  1124. text-transform:none;
  1125. }
  1126. #u871_img {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:-4px;
  1130. top:-4px;
  1131. width:30px;
  1132. height:30px;
  1133. }
  1134. #u871 {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:1081px;
  1138. top:579px;
  1139. width:20px;
  1140. height:20px;
  1141. display:flex;
  1142. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1143. font-weight:700;
  1144. font-style:normal;
  1145. font-size:14px;
  1146. color:#1E1E1E;
  1147. }
  1148. #u871 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u871_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. }
  1160. #u872_img {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:-4px;
  1164. top:-4px;
  1165. width:30px;
  1166. height:30px;
  1167. }
  1168. #u872 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:1051px;
  1172. top:579px;
  1173. width:20px;
  1174. height:20px;
  1175. display:flex;
  1176. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1177. font-weight:700;
  1178. font-style:normal;
  1179. font-size:14px;
  1180. color:#1E1E1E;
  1181. }
  1182. #u872 .text {
  1183. position:absolute;
  1184. align-self:center;
  1185. padding:2px 2px 2px 2px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u872_text {
  1190. border-width:0px;
  1191. word-wrap:break-word;
  1192. text-transform:none;
  1193. }
  1194. #u873_img {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:-4px;
  1198. top:-4px;
  1199. width:30px;
  1200. height:30px;
  1201. }
  1202. #u873 {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:1121px;
  1206. top:579px;
  1207. width:20px;
  1208. height:20px;
  1209. display:flex;
  1210. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1211. font-weight:700;
  1212. font-style:normal;
  1213. font-size:14px;
  1214. color:#1E1E1E;
  1215. }
  1216. #u873 .text {
  1217. position:absolute;
  1218. align-self:center;
  1219. padding:2px 2px 2px 2px;
  1220. box-sizing:border-box;
  1221. width:100%;
  1222. }
  1223. #u873_text {
  1224. border-width:0px;
  1225. word-wrap:break-word;
  1226. text-transform:none;
  1227. }
  1228. #u874_img {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:-4px;
  1232. top:-4px;
  1233. width:30px;
  1234. height:30px;
  1235. }
  1236. #u874 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:1121px;
  1240. top:615px;
  1241. width:20px;
  1242. height:20px;
  1243. display:flex;
  1244. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1245. font-weight:700;
  1246. font-style:normal;
  1247. font-size:14px;
  1248. color:#1E1E1E;
  1249. }
  1250. #u874 .text {
  1251. position:absolute;
  1252. align-self:center;
  1253. padding:2px 2px 2px 2px;
  1254. box-sizing:border-box;
  1255. width:100%;
  1256. }
  1257. #u874_text {
  1258. border-width:0px;
  1259. word-wrap:break-word;
  1260. text-transform:none;
  1261. }
  1262. #u875 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:0px;
  1268. height:0px;
  1269. }
  1270. #u876_img {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:-4px;
  1274. top:-4px;
  1275. width:44px;
  1276. height:44px;
  1277. }
  1278. #u876 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:1187px;
  1282. top:1603px;
  1283. width:34px;
  1284. height:34px;
  1285. display:flex;
  1286. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1287. font-weight:700;
  1288. font-style:normal;
  1289. font-size:26px;
  1290. }
  1291. #u876 .text {
  1292. position:absolute;
  1293. align-self:center;
  1294. padding:2px 2px 2px 2px;
  1295. box-sizing:border-box;
  1296. width:100%;
  1297. }
  1298. #u876_text {
  1299. border-width:0px;
  1300. word-wrap:break-word;
  1301. text-transform:none;
  1302. }
  1303. #u877_div {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:180px;
  1309. height:18px;
  1310. background:inherit;
  1311. background-color:rgba(255, 255, 255, 0);
  1312. border:none;
  1313. border-radius:0px;
  1314. -moz-box-shadow:none;
  1315. -webkit-box-shadow:none;
  1316. box-shadow:none;
  1317. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1318. font-weight:700;
  1319. font-style:normal;
  1320. font-size:16px;
  1321. color:#FF0000;
  1322. }
  1323. #u877 {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:1227px;
  1327. top:1610px;
  1328. width:180px;
  1329. height:18px;
  1330. display:flex;
  1331. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1332. font-weight:700;
  1333. font-style:normal;
  1334. font-size:16px;
  1335. color:#FF0000;
  1336. }
  1337. #u877 .text {
  1338. position:absolute;
  1339. align-self:flex-start;
  1340. padding:0px 0px 0px 0px;
  1341. box-sizing:border-box;
  1342. width:100%;
  1343. }
  1344. #u877_text {
  1345. border-width:0px;
  1346. word-wrap:break-word;
  1347. text-transform:none;
  1348. }
  1349. #u878_div {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:0px;
  1353. top:0px;
  1354. width:352px;
  1355. height:34px;
  1356. background:inherit;
  1357. background-color:rgba(255, 255, 255, 0);
  1358. border:none;
  1359. border-radius:0px;
  1360. -moz-box-shadow:none;
  1361. -webkit-box-shadow:none;
  1362. box-shadow:none;
  1363. line-height:22px;
  1364. }
  1365. #u878 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:1227px;
  1369. top:1648px;
  1370. width:352px;
  1371. height:34px;
  1372. display:flex;
  1373. line-height:22px;
  1374. }
  1375. #u878 .text {
  1376. position:absolute;
  1377. align-self:flex-start;
  1378. padding:0px 0px 0px 0px;
  1379. box-sizing:border-box;
  1380. width:100%;
  1381. }
  1382. #u878_text {
  1383. border-width:0px;
  1384. word-wrap:break-word;
  1385. text-transform:none;
  1386. }
  1387. #u879_img {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:-4px;
  1391. top:-4px;
  1392. width:30px;
  1393. height:30px;
  1394. }
  1395. #u879 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:1039px;
  1399. top:352px;
  1400. width:20px;
  1401. height:20px;
  1402. display:flex;
  1403. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1404. font-weight:700;
  1405. font-style:normal;
  1406. font-size:14px;
  1407. color:#1E1E1E;
  1408. }
  1409. #u879 .text {
  1410. position:absolute;
  1411. align-self:center;
  1412. padding:2px 2px 2px 2px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u879_text {
  1417. border-width:0px;
  1418. word-wrap:break-word;
  1419. text-transform:none;
  1420. }
  1421. #u880 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:1232px;
  1425. top:1464px;
  1426. width:90px;
  1427. height:23px;
  1428. overflow:hidden;
  1429. background-image:url('../../resources/images/transparent.gif');
  1430. }
  1431. #u881_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:329px;
  1437. height:88px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 0, 1);
  1440. box-sizing:border-box;
  1441. border-width:1px;
  1442. border-style:solid;
  1443. border-color:rgba(0, 0, 0, 1);
  1444. border-radius:10px;
  1445. -moz-box-shadow:none;
  1446. -webkit-box-shadow:none;
  1447. box-shadow:none;
  1448. text-align:left;
  1449. line-height:18px;
  1450. }
  1451. #u881 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:1232px;
  1455. top:1370px;
  1456. width:329px;
  1457. height:88px;
  1458. display:flex;
  1459. text-align:left;
  1460. line-height:18px;
  1461. }
  1462. #u881 .text {
  1463. position:absolute;
  1464. align-self:center;
  1465. padding:2px 2px 2px 2px;
  1466. box-sizing:border-box;
  1467. width:100%;
  1468. }
  1469. #u881_text {
  1470. border-width:0px;
  1471. word-wrap:break-word;
  1472. text-transform:none;
  1473. }
  1474. #u882_img {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:-4px;
  1478. top:-4px;
  1479. width:30px;
  1480. height:30px;
  1481. }
  1482. #u882 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:153px;
  1486. top:437px;
  1487. width:20px;
  1488. height:20px;
  1489. display:flex;
  1490. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1491. font-weight:700;
  1492. font-style:normal;
  1493. font-size:14px;
  1494. color:#1E1E1E;
  1495. }
  1496. #u882 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:2px 2px 2px 2px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u882_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u883 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:0px;
  1514. height:0px;
  1515. }
  1516. #u884_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:-4px;
  1520. top:-4px;
  1521. width:44px;
  1522. height:44px;
  1523. }
  1524. #u884 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:1187px;
  1528. top:1689px;
  1529. width:34px;
  1530. height:34px;
  1531. display:flex;
  1532. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1533. font-weight:700;
  1534. font-style:normal;
  1535. font-size:26px;
  1536. }
  1537. #u884 .text {
  1538. position:absolute;
  1539. align-self:center;
  1540. padding:2px 2px 2px 2px;
  1541. box-sizing:border-box;
  1542. width:100%;
  1543. }
  1544. #u884_text {
  1545. border-width:0px;
  1546. word-wrap:break-word;
  1547. text-transform:none;
  1548. }
  1549. #u885_div {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:0px;
  1553. top:0px;
  1554. width:131px;
  1555. height:18px;
  1556. background:inherit;
  1557. background-color:rgba(255, 255, 255, 0);
  1558. border:none;
  1559. border-radius:0px;
  1560. -moz-box-shadow:none;
  1561. -webkit-box-shadow:none;
  1562. box-shadow:none;
  1563. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1564. font-weight:700;
  1565. font-style:normal;
  1566. font-size:16px;
  1567. color:#FF0000;
  1568. }
  1569. #u885 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:1227px;
  1573. top:1696px;
  1574. width:131px;
  1575. height:18px;
  1576. display:flex;
  1577. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1578. font-weight:700;
  1579. font-style:normal;
  1580. font-size:16px;
  1581. color:#FF0000;
  1582. }
  1583. #u885 .text {
  1584. position:absolute;
  1585. align-self:flex-start;
  1586. padding:0px 0px 0px 0px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u885_text {
  1591. border-width:0px;
  1592. word-wrap:break-word;
  1593. text-transform:none;
  1594. }
  1595. #u886_div {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:352px;
  1601. height:66px;
  1602. background:inherit;
  1603. background-color:rgba(255, 255, 255, 0);
  1604. border:none;
  1605. border-radius:0px;
  1606. -moz-box-shadow:none;
  1607. -webkit-box-shadow:none;
  1608. box-shadow:none;
  1609. line-height:22px;
  1610. }
  1611. #u886 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:1227px;
  1615. top:1734px;
  1616. width:352px;
  1617. height:66px;
  1618. display:flex;
  1619. line-height:22px;
  1620. }
  1621. #u886 .text {
  1622. position:absolute;
  1623. align-self:flex-start;
  1624. padding:0px 0px 0px 0px;
  1625. box-sizing:border-box;
  1626. width:100%;
  1627. }
  1628. #u886_text {
  1629. border-width:0px;
  1630. word-wrap:break-word;
  1631. text-transform:none;
  1632. }
  1633. #u887 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:1227px;
  1637. top:1696px;
  1638. width:99px;
  1639. height:23px;
  1640. overflow:hidden;
  1641. background-image:url('../../resources/images/transparent.gif');
  1642. }
  1643. #u888_div {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:276px;
  1649. height:67px;
  1650. background:inherit;
  1651. background-color:rgba(255, 255, 0, 1);
  1652. box-sizing:border-box;
  1653. border-width:1px;
  1654. border-style:solid;
  1655. border-color:rgba(0, 0, 0, 1);
  1656. border-radius:10px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. text-align:left;
  1661. line-height:18px;
  1662. }
  1663. #u888 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:1227px;
  1667. top:1622px;
  1668. width:276px;
  1669. height:67px;
  1670. display:flex;
  1671. text-align:left;
  1672. line-height:18px;
  1673. }
  1674. #u888 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 2px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u888_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. }
  1686. #u889_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:-4px;
  1690. top:-4px;
  1691. width:30px;
  1692. height:30px;
  1693. }
  1694. #u889 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:343px;
  1698. top:437px;
  1699. width:20px;
  1700. height:20px;
  1701. display:flex;
  1702. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1703. font-weight:700;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#1E1E1E;
  1707. }
  1708. #u889 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u889_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }
  1720. #u890 {
  1721. position:fixed;
  1722. left:1382px;
  1723. top:68px;
  1724. }
  1725. #u890_state0 {
  1726. position:relative;
  1727. left:0px;
  1728. top:0px;
  1729. width:140px;
  1730. height:40px;
  1731. background-image:none;
  1732. border:none;
  1733. border-radius:0px;
  1734. -moz-box-shadow:none;
  1735. -webkit-box-shadow:none;
  1736. box-shadow:none;
  1737. }
  1738. #u890_state0_content {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:1px;
  1744. height:1px;
  1745. }
  1746. #u891_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:140px;
  1752. height:40px;
  1753. background:inherit;
  1754. background-color:rgba(20, 146, 138, 1);
  1755. border:none;
  1756. border-radius:5px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1761. font-weight:700;
  1762. font-style:normal;
  1763. font-size:16px;
  1764. }
  1765. #u891 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:140px;
  1771. height:40px;
  1772. display:flex;
  1773. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1774. font-weight:700;
  1775. font-style:normal;
  1776. font-size:16px;
  1777. }
  1778. #u891 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u891_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u892 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:0px;
  1796. height:0px;
  1797. }
  1798. #u893_img {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:-4px;
  1802. top:-4px;
  1803. width:44px;
  1804. height:44px;
  1805. }
  1806. #u893 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:1187px;
  1810. top:500px;
  1811. width:34px;
  1812. height:34px;
  1813. display:flex;
  1814. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1815. font-weight:700;
  1816. font-style:normal;
  1817. font-size:26px;
  1818. }
  1819. #u893 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 2px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u893_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. }
  1831. #u894_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:146px;
  1837. height:18px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 0);
  1840. border:none;
  1841. border-radius:0px;
  1842. -moz-box-shadow:none;
  1843. -webkit-box-shadow:none;
  1844. box-shadow:none;
  1845. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1846. font-weight:700;
  1847. font-style:normal;
  1848. font-size:16px;
  1849. }
  1850. #u894 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:1227px;
  1854. top:507px;
  1855. width:146px;
  1856. height:18px;
  1857. display:flex;
  1858. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1859. font-weight:700;
  1860. font-style:normal;
  1861. font-size:16px;
  1862. }
  1863. #u894 .text {
  1864. position:absolute;
  1865. align-self:flex-start;
  1866. padding:0px 0px 0px 0px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u894_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u895_div {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:352px;
  1881. height:25px;
  1882. background:inherit;
  1883. background-color:rgba(255, 255, 255, 0);
  1884. border:none;
  1885. border-radius:0px;
  1886. -moz-box-shadow:none;
  1887. -webkit-box-shadow:none;
  1888. box-shadow:none;
  1889. line-height:22px;
  1890. }
  1891. #u895 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:1227px;
  1895. top:545px;
  1896. width:352px;
  1897. height:25px;
  1898. display:flex;
  1899. line-height:22px;
  1900. }
  1901. #u895 .text {
  1902. position:absolute;
  1903. align-self:flex-start;
  1904. padding:0px 0px 0px 0px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u895_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. }
  1913. #u896_img {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:-4px;
  1917. top:-4px;
  1918. width:30px;
  1919. height:30px;
  1920. }
  1921. #u896 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:282px;
  1925. top:437px;
  1926. width:20px;
  1927. height:20px;
  1928. display:flex;
  1929. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1930. font-weight:700;
  1931. font-style:normal;
  1932. font-size:14px;
  1933. color:#1E1E1E;
  1934. }
  1935. #u896 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u896_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u897 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:0px;
  1953. height:0px;
  1954. }
  1955. #u898_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:-4px;
  1959. top:-4px;
  1960. width:40px;
  1961. height:40px;
  1962. }
  1963. #u898 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:1187px;
  1967. top:390px;
  1968. width:30px;
  1969. height:30px;
  1970. display:flex;
  1971. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1972. font-weight:700;
  1973. font-style:normal;
  1974. font-size:18px;
  1975. color:#000000;
  1976. }
  1977. #u898 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 2px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u898_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u899_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:131px;
  1995. height:18px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2004. font-weight:700;
  2005. font-style:normal;
  2006. font-size:16px;
  2007. color:#FF0000;
  2008. }
  2009. #u899 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:1227px;
  2013. top:397px;
  2014. width:131px;
  2015. height:18px;
  2016. display:flex;
  2017. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2018. font-weight:700;
  2019. font-style:normal;
  2020. font-size:16px;
  2021. color:#FF0000;
  2022. }
  2023. #u899 .text {
  2024. position:absolute;
  2025. align-self:flex-start;
  2026. padding:0px 0px 0px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u899_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u900_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:352px;
  2041. height:44px;
  2042. background:inherit;
  2043. background-color:rgba(255, 255, 255, 0);
  2044. border:none;
  2045. border-radius:0px;
  2046. -moz-box-shadow:none;
  2047. -webkit-box-shadow:none;
  2048. box-shadow:none;
  2049. line-height:22px;
  2050. }
  2051. #u900 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:1227px;
  2055. top:435px;
  2056. width:352px;
  2057. height:44px;
  2058. display:flex;
  2059. line-height:22px;
  2060. }
  2061. #u900 .text {
  2062. position:absolute;
  2063. align-self:flex-start;
  2064. padding:0px 0px 0px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u900_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u901 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:1233px;
  2077. top:397px;
  2078. width:88px;
  2079. height:23px;
  2080. overflow:hidden;
  2081. background-image:url('../../resources/images/transparent.gif');
  2082. }
  2083. #u902_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:276px;
  2089. height:67px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 0, 1);
  2092. box-sizing:border-box;
  2093. border-width:1px;
  2094. border-style:solid;
  2095. border-color:rgba(0, 0, 0, 1);
  2096. border-radius:10px;
  2097. -moz-box-shadow:none;
  2098. -webkit-box-shadow:none;
  2099. box-shadow:none;
  2100. text-align:left;
  2101. line-height:18px;
  2102. }
  2103. #u902 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:1227px;
  2107. top:313px;
  2108. width:276px;
  2109. height:67px;
  2110. display:flex;
  2111. text-align:left;
  2112. line-height:18px;
  2113. }
  2114. #u902 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 2px 2px 2px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u902_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. }
  2126. #u903_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:-4px;
  2130. top:-4px;
  2131. width:30px;
  2132. height:30px;
  2133. }
  2134. #u903 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:408px;
  2138. top:437px;
  2139. width:20px;
  2140. height:20px;
  2141. display:flex;
  2142. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2143. font-weight:700;
  2144. font-style:normal;
  2145. font-size:14px;
  2146. color:#1E1E1E;
  2147. }
  2148. #u903 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 2px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u903_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. }
  2160. #u904 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:0px;
  2166. height:0px;
  2167. }
  2168. #u905_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:-4px;
  2172. top:-4px;
  2173. width:40px;
  2174. height:40px;
  2175. }
  2176. #u905 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:1187px;
  2180. top:664px;
  2181. width:30px;
  2182. height:30px;
  2183. display:flex;
  2184. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2185. font-weight:700;
  2186. font-style:normal;
  2187. font-size:18px;
  2188. color:#1E1E1E;
  2189. }
  2190. #u905 .text {
  2191. position:absolute;
  2192. align-self:center;
  2193. padding:2px 2px 2px 2px;
  2194. box-sizing:border-box;
  2195. width:100%;
  2196. }
  2197. #u905_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. }
  2202. #u906_div {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:107px;
  2208. height:18px;
  2209. background:inherit;
  2210. background-color:rgba(255, 255, 255, 0);
  2211. border:none;
  2212. border-radius:0px;
  2213. -moz-box-shadow:none;
  2214. -webkit-box-shadow:none;
  2215. box-shadow:none;
  2216. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2217. font-weight:700;
  2218. font-style:normal;
  2219. font-size:16px;
  2220. }
  2221. #u906 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:1227px;
  2225. top:671px;
  2226. width:107px;
  2227. height:18px;
  2228. display:flex;
  2229. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2230. font-weight:700;
  2231. font-style:normal;
  2232. font-size:16px;
  2233. }
  2234. #u906 .text {
  2235. position:absolute;
  2236. align-self:flex-start;
  2237. padding:0px 0px 0px 0px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u906_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. }
  2246. #u907_div {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:352px;
  2252. height:28px;
  2253. background:inherit;
  2254. background-color:rgba(255, 255, 255, 0);
  2255. border:none;
  2256. border-radius:0px;
  2257. -moz-box-shadow:none;
  2258. -webkit-box-shadow:none;
  2259. box-shadow:none;
  2260. line-height:22px;
  2261. }
  2262. #u907 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:1227px;
  2266. top:709px;
  2267. width:352px;
  2268. height:28px;
  2269. display:flex;
  2270. line-height:22px;
  2271. }
  2272. #u907 .text {
  2273. position:absolute;
  2274. align-self:flex-start;
  2275. padding:0px 0px 0px 0px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u907_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u908_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:-4px;
  2288. top:-4px;
  2289. width:30px;
  2290. height:30px;
  2291. }
  2292. #u908 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:466px;
  2296. top:437px;
  2297. width:20px;
  2298. height:20px;
  2299. display:flex;
  2300. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2301. font-weight:700;
  2302. font-style:normal;
  2303. font-size:14px;
  2304. color:#1E1E1E;
  2305. }
  2306. #u908 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 2px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u908_text {
  2314. border-width:0px;
  2315. word-wrap:break-word;
  2316. text-transform:none;
  2317. }
  2318. #u909_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:-4px;
  2322. top:-4px;
  2323. width:30px;
  2324. height:30px;
  2325. }
  2326. #u909 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:529px;
  2330. top:437px;
  2331. width:20px;
  2332. height:20px;
  2333. display:flex;
  2334. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2335. font-weight:700;
  2336. font-style:normal;
  2337. font-size:14px;
  2338. color:#1E1E1E;
  2339. }
  2340. #u909 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u909_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u910_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:-4px;
  2356. top:-4px;
  2357. width:30px;
  2358. height:30px;
  2359. }
  2360. #u910 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:590px;
  2364. top:437px;
  2365. width:20px;
  2366. height:20px;
  2367. display:flex;
  2368. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2369. font-weight:700;
  2370. font-style:normal;
  2371. font-size:14px;
  2372. color:#1E1E1E;
  2373. }
  2374. #u910 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 2px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u910_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. }
  2386. #u911 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:0px;
  2392. height:0px;
  2393. }
  2394. #u912_img {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:-4px;
  2398. top:-4px;
  2399. width:40px;
  2400. height:40px;
  2401. }
  2402. #u912 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:1187px;
  2406. top:747px;
  2407. width:30px;
  2408. height:30px;
  2409. display:flex;
  2410. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2411. font-weight:700;
  2412. font-style:normal;
  2413. font-size:18px;
  2414. color:#1E1E1E;
  2415. }
  2416. #u912 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 2px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u912_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. }
  2428. #u913_div {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:121px;
  2434. height:18px;
  2435. background:inherit;
  2436. background-color:rgba(255, 255, 255, 0);
  2437. border:none;
  2438. border-radius:0px;
  2439. -moz-box-shadow:none;
  2440. -webkit-box-shadow:none;
  2441. box-shadow:none;
  2442. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2443. font-weight:700;
  2444. font-style:normal;
  2445. font-size:16px;
  2446. }
  2447. #u913 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:1227px;
  2451. top:754px;
  2452. width:121px;
  2453. height:18px;
  2454. display:flex;
  2455. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2456. font-weight:700;
  2457. font-style:normal;
  2458. font-size:16px;
  2459. }
  2460. #u913 .text {
  2461. position:absolute;
  2462. align-self:flex-start;
  2463. padding:0px 0px 0px 0px;
  2464. box-sizing:border-box;
  2465. width:100%;
  2466. }
  2467. #u913_text {
  2468. border-width:0px;
  2469. word-wrap:break-word;
  2470. text-transform:none;
  2471. }
  2472. #u914_div {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:352px;
  2478. height:30px;
  2479. background:inherit;
  2480. background-color:rgba(255, 255, 255, 0);
  2481. border:none;
  2482. border-radius:0px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. line-height:22px;
  2487. }
  2488. #u914 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:1227px;
  2492. top:792px;
  2493. width:352px;
  2494. height:30px;
  2495. display:flex;
  2496. line-height:22px;
  2497. }
  2498. #u914 .text {
  2499. position:absolute;
  2500. align-self:flex-start;
  2501. padding:0px 0px 0px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u914_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. }
  2510. #u915 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:0px;
  2516. height:0px;
  2517. }
  2518. #u916_img {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:-4px;
  2522. top:-4px;
  2523. width:44px;
  2524. height:44px;
  2525. }
  2526. #u916 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:1187px;
  2530. top:822px;
  2531. width:34px;
  2532. height:34px;
  2533. display:flex;
  2534. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2535. font-weight:700;
  2536. font-style:normal;
  2537. font-size:26px;
  2538. }
  2539. #u916 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 2px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u916_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. }
  2551. #u917_div {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:107px;
  2557. height:18px;
  2558. background:inherit;
  2559. background-color:rgba(255, 255, 255, 0);
  2560. border:none;
  2561. border-radius:0px;
  2562. -moz-box-shadow:none;
  2563. -webkit-box-shadow:none;
  2564. box-shadow:none;
  2565. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2566. font-weight:700;
  2567. font-style:normal;
  2568. font-size:16px;
  2569. color:#1E1E1E;
  2570. }
  2571. #u917 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:1227px;
  2575. top:829px;
  2576. width:107px;
  2577. height:18px;
  2578. display:flex;
  2579. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2580. font-weight:700;
  2581. font-style:normal;
  2582. font-size:16px;
  2583. color:#1E1E1E;
  2584. }
  2585. #u917 .text {
  2586. position:absolute;
  2587. align-self:flex-start;
  2588. padding:0px 0px 0px 0px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u917_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. }
  2597. #u918_div {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:352px;
  2603. height:66px;
  2604. background:inherit;
  2605. background-color:rgba(255, 255, 255, 0);
  2606. border:none;
  2607. border-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. color:#000000;
  2612. line-height:22px;
  2613. }
  2614. #u918 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:1227px;
  2618. top:867px;
  2619. width:352px;
  2620. height:66px;
  2621. display:flex;
  2622. color:#000000;
  2623. line-height:22px;
  2624. }
  2625. #u918 .text {
  2626. position:absolute;
  2627. align-self:flex-start;
  2628. padding:0px 0px 0px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u918_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. }
  2637. #u919 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:0px;
  2643. height:0px;
  2644. }
  2645. #u920_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:-4px;
  2649. top:-4px;
  2650. width:40px;
  2651. height:40px;
  2652. }
  2653. #u920 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1187px;
  2657. top:938px;
  2658. width:30px;
  2659. height:30px;
  2660. display:flex;
  2661. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2662. font-weight:700;
  2663. font-style:normal;
  2664. font-size:18px;
  2665. color:#1E1E1E;
  2666. }
  2667. #u920 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u920_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. }
  2679. #u921_div {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:180px;
  2685. height:18px;
  2686. background:inherit;
  2687. background-color:rgba(255, 255, 255, 0);
  2688. border:none;
  2689. border-radius:0px;
  2690. -moz-box-shadow:none;
  2691. -webkit-box-shadow:none;
  2692. box-shadow:none;
  2693. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2694. font-weight:700;
  2695. font-style:normal;
  2696. font-size:16px;
  2697. color:#1E1E1E;
  2698. }
  2699. #u921 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:1227px;
  2703. top:945px;
  2704. width:180px;
  2705. height:18px;
  2706. display:flex;
  2707. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2708. font-weight:700;
  2709. font-style:normal;
  2710. font-size:16px;
  2711. color:#1E1E1E;
  2712. }
  2713. #u921 .text {
  2714. position:absolute;
  2715. align-self:flex-start;
  2716. padding:0px 0px 0px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u921_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. }
  2725. #u922_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:352px;
  2731. height:47px;
  2732. background:inherit;
  2733. background-color:rgba(255, 255, 255, 0);
  2734. border:none;
  2735. border-radius:0px;
  2736. -moz-box-shadow:none;
  2737. -webkit-box-shadow:none;
  2738. box-shadow:none;
  2739. line-height:22px;
  2740. }
  2741. #u922 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:1227px;
  2745. top:983px;
  2746. width:352px;
  2747. height:47px;
  2748. display:flex;
  2749. line-height:22px;
  2750. }
  2751. #u922 .text {
  2752. position:absolute;
  2753. align-self:flex-start;
  2754. padding:0px 0px 0px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u922_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. }
  2763. #u923_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:1155px;
  2769. height:583px;
  2770. }
  2771. #u923 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:22px;
  2775. top:928px;
  2776. width:1155px;
  2777. height:583px;
  2778. display:flex;
  2779. }
  2780. #u923 .text {
  2781. position:absolute;
  2782. align-self:center;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u923_text {
  2788. border-width:0px;
  2789. word-wrap:break-word;
  2790. text-transform:none;
  2791. visibility:hidden;
  2792. }
  2793. #u924_div {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:90px;
  2799. height:21px;
  2800. background:inherit;
  2801. background-color:rgba(255, 255, 255, 0);
  2802. border:none;
  2803. border-radius:0px;
  2804. -moz-box-shadow:none;
  2805. -webkit-box-shadow:none;
  2806. box-shadow:none;
  2807. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2808. font-weight:700;
  2809. font-style:normal;
  2810. font-size:18px;
  2811. }
  2812. #u924 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:22px;
  2816. top:901px;
  2817. width:90px;
  2818. height:21px;
  2819. display:flex;
  2820. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2821. font-weight:700;
  2822. font-style:normal;
  2823. font-size:18px;
  2824. }
  2825. #u924 .text {
  2826. position:absolute;
  2827. align-self:flex-start;
  2828. padding:0px 0px 0px 0px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u924_text {
  2833. border-width:0px;
  2834. white-space:nowrap;
  2835. text-transform:none;
  2836. }
  2837. #u925_img {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:1155px;
  2843. height:583px;
  2844. }
  2845. #u925 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:22px;
  2849. top:1575px;
  2850. width:1155px;
  2851. height:583px;
  2852. display:flex;
  2853. }
  2854. #u925 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u925_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u926_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:90px;
  2873. height:21px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 0);
  2876. border:none;
  2877. border-radius:0px;
  2878. -moz-box-shadow:none;
  2879. -webkit-box-shadow:none;
  2880. box-shadow:none;
  2881. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2882. font-weight:700;
  2883. font-style:normal;
  2884. font-size:18px;
  2885. }
  2886. #u926 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:22px;
  2890. top:1543px;
  2891. width:90px;
  2892. height:21px;
  2893. display:flex;
  2894. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2895. font-weight:700;
  2896. font-style:normal;
  2897. font-size:18px;
  2898. }
  2899. #u926 .text {
  2900. position:absolute;
  2901. align-self:flex-start;
  2902. padding:0px 0px 0px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u926_text {
  2907. border-width:0px;
  2908. white-space:nowrap;
  2909. text-transform:none;
  2910. }
  2911. #u927_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:1155px;
  2917. height:583px;
  2918. }
  2919. #u927 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:22px;
  2923. top:2232px;
  2924. width:1155px;
  2925. height:583px;
  2926. display:flex;
  2927. }
  2928. #u927 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 2px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u927_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u928_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:90px;
  2947. height:21px;
  2948. background:inherit;
  2949. background-color:rgba(255, 255, 255, 0);
  2950. border:none;
  2951. border-radius:0px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2956. font-weight:700;
  2957. font-style:normal;
  2958. font-size:18px;
  2959. }
  2960. #u928 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:22px;
  2964. top:2205px;
  2965. width:90px;
  2966. height:21px;
  2967. display:flex;
  2968. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2969. font-weight:700;
  2970. font-style:normal;
  2971. font-size:18px;
  2972. }
  2973. #u928 .text {
  2974. position:absolute;
  2975. align-self:flex-start;
  2976. padding:0px 0px 0px 0px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u928_text {
  2981. border-width:0px;
  2982. white-space:nowrap;
  2983. text-transform:none;
  2984. }
  2985. #u929_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:1155px;
  2991. height:583px;
  2992. }
  2993. #u929 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:22px;
  2997. top:2888px;
  2998. width:1155px;
  2999. height:583px;
  3000. display:flex;
  3001. }
  3002. #u929 .text {
  3003. position:absolute;
  3004. align-self:center;
  3005. padding:2px 2px 2px 2px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u929_text {
  3010. border-width:0px;
  3011. word-wrap:break-word;
  3012. text-transform:none;
  3013. visibility:hidden;
  3014. }
  3015. #u930_div {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:90px;
  3021. height:21px;
  3022. background:inherit;
  3023. background-color:rgba(255, 255, 255, 0);
  3024. border:none;
  3025. border-radius:0px;
  3026. -moz-box-shadow:none;
  3027. -webkit-box-shadow:none;
  3028. box-shadow:none;
  3029. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3030. font-weight:700;
  3031. font-style:normal;
  3032. font-size:18px;
  3033. }
  3034. #u930 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:22px;
  3038. top:2860px;
  3039. width:90px;
  3040. height:21px;
  3041. display:flex;
  3042. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3043. font-weight:700;
  3044. font-style:normal;
  3045. font-size:18px;
  3046. }
  3047. #u930 .text {
  3048. position:absolute;
  3049. align-self:flex-start;
  3050. padding:0px 0px 0px 0px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u930_text {
  3055. border-width:0px;
  3056. white-space:nowrap;
  3057. text-transform:none;
  3058. }
  3059. #u931_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:1155px;
  3065. height:583px;
  3066. }
  3067. #u931 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:22px;
  3071. top:3536px;
  3072. width:1155px;
  3073. height:583px;
  3074. display:flex;
  3075. }
  3076. #u931 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u931_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u932_div {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:54px;
  3095. height:21px;
  3096. background:inherit;
  3097. background-color:rgba(255, 255, 255, 0);
  3098. border:none;
  3099. border-radius:0px;
  3100. -moz-box-shadow:none;
  3101. -webkit-box-shadow:none;
  3102. box-shadow:none;
  3103. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3104. font-weight:700;
  3105. font-style:normal;
  3106. font-size:18px;
  3107. }
  3108. #u932 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:22px;
  3112. top:3510px;
  3113. width:54px;
  3114. height:21px;
  3115. display:flex;
  3116. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3117. font-weight:700;
  3118. font-style:normal;
  3119. font-size:18px;
  3120. }
  3121. #u932 .text {
  3122. position:absolute;
  3123. align-self:flex-start;
  3124. padding:0px 0px 0px 0px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u932_text {
  3129. border-width:0px;
  3130. white-space:nowrap;
  3131. text-transform:none;
  3132. }
  3133. #u933_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:1155px;
  3139. height:583px;
  3140. }
  3141. #u933 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:22px;
  3145. top:4190px;
  3146. width:1155px;
  3147. height:583px;
  3148. display:flex;
  3149. }
  3150. #u933 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 2px 2px 2px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u933_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u934_div {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:90px;
  3169. height:21px;
  3170. background:inherit;
  3171. background-color:rgba(255, 255, 255, 0);
  3172. border:none;
  3173. border-radius:0px;
  3174. -moz-box-shadow:none;
  3175. -webkit-box-shadow:none;
  3176. box-shadow:none;
  3177. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3178. font-weight:700;
  3179. font-style:normal;
  3180. font-size:18px;
  3181. }
  3182. #u934 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:22px;
  3186. top:4163px;
  3187. width:90px;
  3188. height:21px;
  3189. display:flex;
  3190. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3191. font-weight:700;
  3192. font-style:normal;
  3193. font-size:18px;
  3194. }
  3195. #u934 .text {
  3196. position:absolute;
  3197. align-self:flex-start;
  3198. padding:0px 0px 0px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u934_text {
  3203. border-width:0px;
  3204. white-space:nowrap;
  3205. text-transform:none;
  3206. }
  3207. #u935_img {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:0px;
  3211. top:0px;
  3212. width:1155px;
  3213. height:583px;
  3214. }
  3215. #u935 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:22px;
  3219. top:4871px;
  3220. width:1155px;
  3221. height:583px;
  3222. display:flex;
  3223. }
  3224. #u935 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 2px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u935_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u936_div {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:90px;
  3243. height:21px;
  3244. background:inherit;
  3245. background-color:rgba(255, 255, 255, 0);
  3246. border:none;
  3247. border-radius:0px;
  3248. -moz-box-shadow:none;
  3249. -webkit-box-shadow:none;
  3250. box-shadow:none;
  3251. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3252. font-weight:700;
  3253. font-style:normal;
  3254. font-size:18px;
  3255. }
  3256. #u936 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:22px;
  3260. top:4845px;
  3261. width:90px;
  3262. height:21px;
  3263. display:flex;
  3264. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3265. font-weight:700;
  3266. font-style:normal;
  3267. font-size:18px;
  3268. }
  3269. #u936 .text {
  3270. position:absolute;
  3271. align-self:flex-start;
  3272. padding:0px 0px 0px 0px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u936_text {
  3277. border-width:0px;
  3278. white-space:nowrap;
  3279. text-transform:none;
  3280. }
  3281. #u937_img {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:1155px;
  3287. height:583px;
  3288. }
  3289. #u937 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:22px;
  3293. top:5538px;
  3294. width:1155px;
  3295. height:583px;
  3296. display:flex;
  3297. }
  3298. #u937 .text {
  3299. position:absolute;
  3300. align-self:center;
  3301. padding:2px 2px 2px 2px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u937_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u938_div {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:90px;
  3317. height:21px;
  3318. background:inherit;
  3319. background-color:rgba(255, 255, 255, 0);
  3320. border:none;
  3321. border-radius:0px;
  3322. -moz-box-shadow:none;
  3323. -webkit-box-shadow:none;
  3324. box-shadow:none;
  3325. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3326. font-weight:700;
  3327. font-style:normal;
  3328. font-size:18px;
  3329. }
  3330. #u938 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:22px;
  3334. top:5511px;
  3335. width:90px;
  3336. height:21px;
  3337. display:flex;
  3338. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3339. font-weight:700;
  3340. font-style:normal;
  3341. font-size:18px;
  3342. }
  3343. #u938 .text {
  3344. position:absolute;
  3345. align-self:flex-start;
  3346. padding:0px 0px 0px 0px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u938_text {
  3351. border-width:0px;
  3352. white-space:nowrap;
  3353. text-transform:none;
  3354. }
  3355. #u939_img {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:-4px;
  3359. top:-4px;
  3360. width:30px;
  3361. height:30px;
  3362. }
  3363. #u939 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:953px;
  3367. top:5827px;
  3368. width:20px;
  3369. height:20px;
  3370. display:flex;
  3371. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3372. font-weight:700;
  3373. font-style:normal;
  3374. font-size:14px;
  3375. color:#1E1E1E;
  3376. }
  3377. #u939 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:2px 2px 2px 2px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u939_text {
  3385. border-width:0px;
  3386. word-wrap:break-word;
  3387. text-transform:none;
  3388. }
  3389. #u940_img {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:-4px;
  3393. top:-4px;
  3394. width:30px;
  3395. height:30px;
  3396. }
  3397. #u940 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:1102px;
  3401. top:5827px;
  3402. width:20px;
  3403. height:20px;
  3404. display:flex;
  3405. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3406. font-weight:700;
  3407. font-style:normal;
  3408. font-size:14px;
  3409. color:#1E1E1E;
  3410. }
  3411. #u940 .text {
  3412. position:absolute;
  3413. align-self:center;
  3414. padding:2px 2px 2px 2px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u940_text {
  3419. border-width:0px;
  3420. word-wrap:break-word;
  3421. text-transform:none;
  3422. }
  3423. #u941_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:-4px;
  3427. top:-4px;
  3428. width:30px;
  3429. height:30px;
  3430. }
  3431. #u941 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:1008px;
  3435. top:5827px;
  3436. width:20px;
  3437. height:20px;
  3438. display:flex;
  3439. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3440. font-weight:700;
  3441. font-style:normal;
  3442. font-size:14px;
  3443. color:#1E1E1E;
  3444. }
  3445. #u941 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 2px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u941_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. }
  3457. #u942_img {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:-4px;
  3461. top:-4px;
  3462. width:30px;
  3463. height:30px;
  3464. }
  3465. #u942 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:1051px;
  3469. top:5827px;
  3470. width:20px;
  3471. height:20px;
  3472. display:flex;
  3473. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3474. font-weight:700;
  3475. font-style:normal;
  3476. font-size:14px;
  3477. color:#1E1E1E;
  3478. }
  3479. #u942 .text {
  3480. position:absolute;
  3481. align-self:center;
  3482. padding:2px 2px 2px 2px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u942_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. }
  3491. #u943 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:0px;
  3497. height:0px;
  3498. }
  3499. #u944_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:-4px;
  3503. top:-4px;
  3504. width:40px;
  3505. height:40px;
  3506. }
  3507. #u944 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:1187px;
  3511. top:5538px;
  3512. width:30px;
  3513. height:30px;
  3514. display:flex;
  3515. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3516. font-weight:700;
  3517. font-style:normal;
  3518. font-size:18px;
  3519. color:#1E1E1E;
  3520. }
  3521. #u944 .text {
  3522. position:absolute;
  3523. align-self:center;
  3524. padding:2px 2px 2px 2px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u944_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. }
  3533. #u945_div {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:131px;
  3539. height:18px;
  3540. background:inherit;
  3541. background-color:rgba(255, 255, 255, 0);
  3542. border:none;
  3543. border-radius:0px;
  3544. -moz-box-shadow:none;
  3545. -webkit-box-shadow:none;
  3546. box-shadow:none;
  3547. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3548. font-weight:700;
  3549. font-style:normal;
  3550. font-size:16px;
  3551. }
  3552. #u945 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:1227px;
  3556. top:5545px;
  3557. width:131px;
  3558. height:18px;
  3559. display:flex;
  3560. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3561. font-weight:700;
  3562. font-style:normal;
  3563. font-size:16px;
  3564. }
  3565. #u945 .text {
  3566. position:absolute;
  3567. align-self:flex-start;
  3568. padding:0px 0px 0px 0px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u945_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. }
  3577. #u946_div {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:0px;
  3581. top:0px;
  3582. width:352px;
  3583. height:22px;
  3584. background:inherit;
  3585. background-color:rgba(255, 255, 255, 0);
  3586. border:none;
  3587. border-radius:0px;
  3588. -moz-box-shadow:none;
  3589. -webkit-box-shadow:none;
  3590. box-shadow:none;
  3591. line-height:22px;
  3592. }
  3593. #u946 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:1227px;
  3597. top:5583px;
  3598. width:352px;
  3599. height:22px;
  3600. display:flex;
  3601. line-height:22px;
  3602. }
  3603. #u946 .text {
  3604. position:absolute;
  3605. align-self:flex-start;
  3606. padding:0px 0px 0px 0px;
  3607. box-sizing:border-box;
  3608. width:100%;
  3609. }
  3610. #u946_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. }
  3615. #u947 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:0px;
  3619. top:0px;
  3620. width:0px;
  3621. height:0px;
  3622. }
  3623. #u948_div {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:131px;
  3629. height:18px;
  3630. background:inherit;
  3631. background-color:rgba(255, 255, 255, 0);
  3632. border:none;
  3633. border-radius:0px;
  3634. -moz-box-shadow:none;
  3635. -webkit-box-shadow:none;
  3636. box-shadow:none;
  3637. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3638. font-weight:700;
  3639. font-style:normal;
  3640. font-size:16px;
  3641. color:#FF0000;
  3642. }
  3643. #u948 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:1227px;
  3647. top:5636px;
  3648. width:131px;
  3649. height:18px;
  3650. display:flex;
  3651. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3652. font-weight:700;
  3653. font-style:normal;
  3654. font-size:16px;
  3655. color:#FF0000;
  3656. }
  3657. #u948 .text {
  3658. position:absolute;
  3659. align-self:flex-start;
  3660. padding:0px 0px 0px 0px;
  3661. box-sizing:border-box;
  3662. width:100%;
  3663. }
  3664. #u948_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. }
  3669. #u949_div {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:352px;
  3675. height:88px;
  3676. background:inherit;
  3677. background-color:rgba(255, 255, 255, 0);
  3678. border:none;
  3679. border-radius:0px;
  3680. -moz-box-shadow:none;
  3681. -webkit-box-shadow:none;
  3682. box-shadow:none;
  3683. line-height:22px;
  3684. }
  3685. #u949 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:1227px;
  3689. top:5674px;
  3690. width:352px;
  3691. height:88px;
  3692. display:flex;
  3693. line-height:22px;
  3694. }
  3695. #u949 .text {
  3696. position:absolute;
  3697. align-self:flex-start;
  3698. padding:0px 0px 0px 0px;
  3699. box-sizing:border-box;
  3700. width:100%;
  3701. }
  3702. #u949_text {
  3703. border-width:0px;
  3704. word-wrap:break-word;
  3705. text-transform:none;
  3706. }
  3707. #u950_img {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:-4px;
  3711. top:-4px;
  3712. width:44px;
  3713. height:44px;
  3714. }
  3715. #u950 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:1187px;
  3719. top:5629px;
  3720. width:34px;
  3721. height:34px;
  3722. display:flex;
  3723. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3724. font-weight:700;
  3725. font-style:normal;
  3726. font-size:26px;
  3727. }
  3728. #u950 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:2px 2px 2px 2px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u950_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. }
  3740. #u951 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:0px;
  3746. height:0px;
  3747. }
  3748. #u952_img {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:-4px;
  3752. top:-4px;
  3753. width:44px;
  3754. height:44px;
  3755. }
  3756. #u952 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:1187px;
  3760. top:5766px;
  3761. width:34px;
  3762. height:34px;
  3763. display:flex;
  3764. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3765. font-weight:700;
  3766. font-style:normal;
  3767. font-size:26px;
  3768. }
  3769. #u952 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:2px 2px 2px 2px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. #u952_text {
  3777. border-width:0px;
  3778. word-wrap:break-word;
  3779. text-transform:none;
  3780. }
  3781. #u953_div {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:131px;
  3787. height:18px;
  3788. background:inherit;
  3789. background-color:rgba(255, 255, 255, 0);
  3790. border:none;
  3791. border-radius:0px;
  3792. -moz-box-shadow:none;
  3793. -webkit-box-shadow:none;
  3794. box-shadow:none;
  3795. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3796. font-weight:700;
  3797. font-style:normal;
  3798. font-size:16px;
  3799. color:#FF0000;
  3800. }
  3801. #u953 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:1227px;
  3805. top:5773px;
  3806. width:131px;
  3807. height:18px;
  3808. display:flex;
  3809. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3810. font-weight:700;
  3811. font-style:normal;
  3812. font-size:16px;
  3813. color:#FF0000;
  3814. }
  3815. #u953 .text {
  3816. position:absolute;
  3817. align-self:flex-start;
  3818. padding:0px 0px 0px 0px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u953_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. }
  3827. #u954_div {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:352px;
  3833. height:66px;
  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:22px;
  3842. }
  3843. #u954 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:1227px;
  3847. top:5811px;
  3848. width:352px;
  3849. height:66px;
  3850. display:flex;
  3851. line-height:22px;
  3852. }
  3853. #u954 .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. #u954_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. }
  3865. #u955 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:1227px;
  3869. top:5632px;
  3870. width:95px;
  3871. height:31px;
  3872. overflow:hidden;
  3873. background-image:url('../../resources/images/transparent.gif');
  3874. }
  3875. #u956_div {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:288px;
  3881. height:103px;
  3882. background:inherit;
  3883. background-color:rgba(255, 255, 0, 1);
  3884. box-sizing:border-box;
  3885. border-width:1px;
  3886. border-style:solid;
  3887. border-color:rgba(0, 0, 0, 1);
  3888. border-radius:10px;
  3889. -moz-box-shadow:none;
  3890. -webkit-box-shadow:none;
  3891. box-shadow:none;
  3892. text-align:left;
  3893. line-height:18px;
  3894. }
  3895. #u956 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:1227px;
  3899. top:5516px;
  3900. width:288px;
  3901. height:103px;
  3902. display:flex;
  3903. text-align:left;
  3904. line-height:18px;
  3905. }
  3906. #u956 .text {
  3907. position:absolute;
  3908. align-self:center;
  3909. padding:2px 2px 2px 2px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u956_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. }
  3918. #u957 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1227px;
  3922. top:5773px;
  3923. width:63px;
  3924. height:23px;
  3925. overflow:hidden;
  3926. background-image:url('../../resources/images/transparent.gif');
  3927. }
  3928. #u958_div {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:326px;
  3934. height:88px;
  3935. background:inherit;
  3936. background-color:rgba(255, 255, 0, 1);
  3937. box-sizing:border-box;
  3938. border-width:1px;
  3939. border-style:solid;
  3940. border-color:rgba(0, 0, 0, 1);
  3941. border-radius:10px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. text-align:left;
  3946. line-height:18px;
  3947. }
  3948. #u958 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:1227px;
  3952. top:5678px;
  3953. width:326px;
  3954. height:88px;
  3955. display:flex;
  3956. text-align:left;
  3957. line-height:18px;
  3958. }
  3959. #u958 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u958_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. }
  3971. #u959 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:0px;
  3977. height:0px;
  3978. }
  3979. #u960_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:-4px;
  3983. top:-4px;
  3984. width:44px;
  3985. height:44px;
  3986. }
  3987. #u960 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:1187px;
  3991. top:5883px;
  3992. width:34px;
  3993. height:34px;
  3994. display:flex;
  3995. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3996. font-weight:700;
  3997. font-style:normal;
  3998. font-size:26px;
  3999. }
  4000. #u960 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 2px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u960_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. }
  4012. #u961_div {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:180px;
  4018. height:18px;
  4019. background:inherit;
  4020. background-color:rgba(255, 255, 255, 0);
  4021. border:none;
  4022. border-radius:0px;
  4023. -moz-box-shadow:none;
  4024. -webkit-box-shadow:none;
  4025. box-shadow:none;
  4026. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4027. font-weight:700;
  4028. font-style:normal;
  4029. font-size:16px;
  4030. color:#FF0000;
  4031. }
  4032. #u961 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:1227px;
  4036. top:5890px;
  4037. width:180px;
  4038. height:18px;
  4039. display:flex;
  4040. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4041. font-weight:700;
  4042. font-style:normal;
  4043. font-size:16px;
  4044. color:#FF0000;
  4045. }
  4046. #u961 .text {
  4047. position:absolute;
  4048. align-self:flex-start;
  4049. padding:0px 0px 0px 0px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u961_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. }
  4058. #u962_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:352px;
  4064. height:34px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 0);
  4067. border:none;
  4068. border-radius:0px;
  4069. -moz-box-shadow:none;
  4070. -webkit-box-shadow:none;
  4071. box-shadow:none;
  4072. line-height:22px;
  4073. }
  4074. #u962 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:1227px;
  4078. top:5928px;
  4079. width:352px;
  4080. height:34px;
  4081. display:flex;
  4082. line-height:22px;
  4083. }
  4084. #u962 .text {
  4085. position:absolute;
  4086. align-self:flex-start;
  4087. padding:0px 0px 0px 0px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u962_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. }
  4096. #u963 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:1227px;
  4100. top:5890px;
  4101. width:95px;
  4102. height:23px;
  4103. overflow:hidden;
  4104. background-image:url('../../resources/images/transparent.gif');
  4105. }
  4106. #u964_div {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:232px;
  4112. height:198px;
  4113. background:inherit;
  4114. background-color:rgba(255, 255, 0, 1);
  4115. box-sizing:border-box;
  4116. border-width:1px;
  4117. border-style:solid;
  4118. border-color:rgba(0, 0, 0, 1);
  4119. border-radius:10px;
  4120. -moz-box-shadow:none;
  4121. -webkit-box-shadow:none;
  4122. box-shadow:none;
  4123. text-align:left;
  4124. line-height:18px;
  4125. }
  4126. #u964 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:1227px;
  4130. top:5682px;
  4131. width:232px;
  4132. height:198px;
  4133. display:flex;
  4134. text-align:left;
  4135. line-height:18px;
  4136. }
  4137. #u964 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 2px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u964_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. }
  4149. #u965 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:1227px;
  4153. top:1208px;
  4154. width:95px;
  4155. height:23px;
  4156. overflow:hidden;
  4157. background-image:url('../../resources/images/transparent.gif');
  4158. }
  4159. #u966_div {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:288px;
  4165. height:103px;
  4166. background:inherit;
  4167. background-color:rgba(255, 255, 0, 1);
  4168. box-sizing:border-box;
  4169. border-width:1px;
  4170. border-style:solid;
  4171. border-color:rgba(0, 0, 0, 1);
  4172. border-radius:10px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. text-align:left;
  4177. line-height:18px;
  4178. }
  4179. #u966 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:1227px;
  4183. top:1085px;
  4184. width:288px;
  4185. height:103px;
  4186. display:flex;
  4187. text-align:left;
  4188. line-height:18px;
  4189. }
  4190. #u966 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:2px 2px 2px 2px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u966_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. }
  4202. #u967 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:1231px;
  4206. top:1610px;
  4207. width:95px;
  4208. height:23px;
  4209. overflow:hidden;
  4210. background-image:url('../../resources/images/transparent.gif');
  4211. }
  4212. #u968_div {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:246px;
  4218. height:225px;
  4219. background:inherit;
  4220. background-color:rgba(255, 255, 0, 1);
  4221. box-sizing:border-box;
  4222. border-width:1px;
  4223. border-style:solid;
  4224. border-color:rgba(0, 0, 0, 1);
  4225. border-radius:10px;
  4226. -moz-box-shadow:none;
  4227. -webkit-box-shadow:none;
  4228. box-shadow:none;
  4229. text-align:left;
  4230. line-height:18px;
  4231. }
  4232. #u968 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:1232px;
  4236. top:1375px;
  4237. width:246px;
  4238. height:225px;
  4239. display:flex;
  4240. text-align:left;
  4241. line-height:18px;
  4242. }
  4243. #u968 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 2px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u968_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. }