styles.css 56 KB

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