styles.css 55 KB

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