styles.css 73 KB

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