styles.css 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997
  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. #u1579 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u1580_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:8px;
  33. height:28px;
  34. }
  35. #u1580 {
  36. border-width:0px;
  37. position:absolute;
  38. left:7px;
  39. top:13px;
  40. width:8px;
  41. height:28px;
  42. display:flex;
  43. }
  44. #u1580 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u1580_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u1581_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:190px;
  63. height:28px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 0);
  66. border:none;
  67. border-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  72. font-weight:700;
  73. font-style:normal;
  74. }
  75. #u1581 {
  76. border-width:0px;
  77. position:absolute;
  78. left:21px;
  79. top:13px;
  80. width:190px;
  81. height:28px;
  82. display:flex;
  83. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  84. font-weight:700;
  85. font-style:normal;
  86. }
  87. #u1581 .text {
  88. position:absolute;
  89. align-self:flex-start;
  90. padding:0px 0px 0px 0px;
  91. box-sizing:border-box;
  92. width:100%;
  93. }
  94. #u1581_text {
  95. border-width:0px;
  96. white-space:nowrap;
  97. text-transform:none;
  98. }
  99. #u1582_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:108px;
  105. height:21px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 0);
  108. border:none;
  109. border-radius:0px;
  110. -moz-box-shadow:none;
  111. -webkit-box-shadow:none;
  112. box-shadow:none;
  113. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  114. font-weight:700;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u1582 {
  119. border-width:0px;
  120. position:absolute;
  121. left:21px;
  122. top:59px;
  123. width:108px;
  124. height:21px;
  125. display:flex;
  126. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  127. font-weight:700;
  128. font-style:normal;
  129. font-size:18px;
  130. }
  131. #u1582 .text {
  132. position:absolute;
  133. align-self:flex-start;
  134. padding:0px 0px 0px 0px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u1582_text {
  139. border-width:0px;
  140. white-space:nowrap;
  141. text-transform:none;
  142. }
  143. #u1583_div {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:821px;
  149. height:120px;
  150. background:inherit;
  151. background-color:rgba(255, 255, 255, 0);
  152. border:none;
  153. border-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-size:16px;
  158. line-height:24px;
  159. }
  160. #u1583 {
  161. border-width:0px;
  162. position:absolute;
  163. left:57px;
  164. top:65px;
  165. width:821px;
  166. height:120px;
  167. display:flex;
  168. font-size:16px;
  169. line-height:24px;
  170. }
  171. #u1583 .text {
  172. position:absolute;
  173. align-self:flex-start;
  174. padding:0px 0px 0px 0px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u1583_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. }
  183. #u1584_div {
  184. border-width:0px;
  185. position:absolute;
  186. left:0px;
  187. top:0px;
  188. width:262px;
  189. height:21px;
  190. background:inherit;
  191. background-color:rgba(255, 255, 255, 0);
  192. border:none;
  193. border-radius:0px;
  194. -moz-box-shadow:none;
  195. -webkit-box-shadow:none;
  196. box-shadow:none;
  197. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  198. font-weight:700;
  199. font-style:normal;
  200. font-size:18px;
  201. }
  202. #u1584 {
  203. border-width:0px;
  204. position:absolute;
  205. left:21px;
  206. top:195px;
  207. width:262px;
  208. height:21px;
  209. display:flex;
  210. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  211. font-weight:700;
  212. font-style:normal;
  213. font-size:18px;
  214. }
  215. #u1584 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u1584_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u1585_img {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:1155px;
  233. height:583px;
  234. }
  235. #u1585 {
  236. border-width:0px;
  237. position:absolute;
  238. left:21px;
  239. top:897px;
  240. width:1155px;
  241. height:583px;
  242. display:flex;
  243. }
  244. #u1585 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u1585_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u1586_img {
  258. border-width:0px;
  259. position:absolute;
  260. left:-4px;
  261. top:-4px;
  262. width:30px;
  263. height:30px;
  264. }
  265. #u1586 {
  266. border-width:0px;
  267. position:absolute;
  268. left:973px;
  269. top:1278px;
  270. width:20px;
  271. height:20px;
  272. display:flex;
  273. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  274. font-weight:700;
  275. font-style:normal;
  276. font-size:14px;
  277. color:#1E1E1E;
  278. }
  279. #u1586 .text {
  280. position:absolute;
  281. align-self:center;
  282. padding:2px 2px 2px 2px;
  283. box-sizing:border-box;
  284. width:100%;
  285. }
  286. #u1586_text {
  287. border-width:0px;
  288. word-wrap:break-word;
  289. text-transform:none;
  290. }
  291. #u1587_img {
  292. border-width:0px;
  293. position:absolute;
  294. left:-4px;
  295. top:-4px;
  296. width:30px;
  297. height:30px;
  298. }
  299. #u1587 {
  300. border-width:0px;
  301. position:absolute;
  302. left:1047px;
  303. top:1278px;
  304. width:20px;
  305. height:20px;
  306. display:flex;
  307. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  308. font-weight:700;
  309. font-style:normal;
  310. font-size:14px;
  311. color:#1E1E1E;
  312. }
  313. #u1587 .text {
  314. position:absolute;
  315. align-self:center;
  316. padding:2px 2px 2px 2px;
  317. box-sizing:border-box;
  318. width:100%;
  319. }
  320. #u1587_text {
  321. border-width:0px;
  322. word-wrap:break-word;
  323. text-transform:none;
  324. }
  325. #u1588_img {
  326. border-width:0px;
  327. position:absolute;
  328. left:-4px;
  329. top:-4px;
  330. width:30px;
  331. height:30px;
  332. }
  333. #u1588 {
  334. border-width:0px;
  335. position:absolute;
  336. left:1112px;
  337. top:1278px;
  338. width:20px;
  339. height:20px;
  340. display:flex;
  341. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  342. font-weight:700;
  343. font-style:normal;
  344. font-size:14px;
  345. color:#1E1E1E;
  346. }
  347. #u1588 .text {
  348. position:absolute;
  349. align-self:center;
  350. padding:2px 2px 2px 2px;
  351. box-sizing:border-box;
  352. width:100%;
  353. }
  354. #u1588_text {
  355. border-width:0px;
  356. word-wrap:break-word;
  357. text-transform:none;
  358. }
  359. #u1589 {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:0px;
  365. height:0px;
  366. }
  367. #u1590_img {
  368. border-width:0px;
  369. position:absolute;
  370. left:-4px;
  371. top:-4px;
  372. width:40px;
  373. height:40px;
  374. }
  375. #u1590 {
  376. border-width:0px;
  377. position:absolute;
  378. left:1186px;
  379. top:1095px;
  380. width:30px;
  381. height:30px;
  382. display:flex;
  383. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  384. font-weight:700;
  385. font-style:normal;
  386. font-size:18px;
  387. color:#1E1E1E;
  388. }
  389. #u1590 .text {
  390. position:absolute;
  391. align-self:center;
  392. padding:2px 2px 2px 2px;
  393. box-sizing:border-box;
  394. width:100%;
  395. }
  396. #u1590_text {
  397. border-width:0px;
  398. word-wrap:break-word;
  399. text-transform:none;
  400. }
  401. #u1591_div {
  402. border-width:0px;
  403. position:absolute;
  404. left:0px;
  405. top:0px;
  406. width:143px;
  407. height:18px;
  408. background:inherit;
  409. background-color:rgba(255, 255, 255, 0);
  410. border:none;
  411. border-radius:0px;
  412. -moz-box-shadow:none;
  413. -webkit-box-shadow:none;
  414. box-shadow:none;
  415. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  416. font-weight:700;
  417. font-style:normal;
  418. font-size:16px;
  419. }
  420. #u1591 {
  421. border-width:0px;
  422. position:absolute;
  423. left:1226px;
  424. top:1102px;
  425. width:143px;
  426. height:18px;
  427. display:flex;
  428. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  429. font-weight:700;
  430. font-style:normal;
  431. font-size:16px;
  432. }
  433. #u1591 .text {
  434. position:absolute;
  435. align-self:flex-start;
  436. padding:0px 0px 0px 0px;
  437. box-sizing:border-box;
  438. width:100%;
  439. }
  440. #u1591_text {
  441. border-width:0px;
  442. word-wrap:break-word;
  443. text-transform:none;
  444. }
  445. #u1592_div {
  446. border-width:0px;
  447. position:absolute;
  448. left:0px;
  449. top:0px;
  450. width:352px;
  451. height:22px;
  452. background:inherit;
  453. background-color:rgba(255, 255, 255, 0);
  454. border:none;
  455. border-radius:0px;
  456. -moz-box-shadow:none;
  457. -webkit-box-shadow:none;
  458. box-shadow:none;
  459. line-height:22px;
  460. }
  461. #u1592 {
  462. border-width:0px;
  463. position:absolute;
  464. left:1226px;
  465. top:1140px;
  466. width:352px;
  467. height:22px;
  468. display:flex;
  469. line-height:22px;
  470. }
  471. #u1592 .text {
  472. position:absolute;
  473. align-self:flex-start;
  474. padding:0px 0px 0px 0px;
  475. box-sizing:border-box;
  476. width:100%;
  477. }
  478. #u1592_text {
  479. border-width:0px;
  480. word-wrap:break-word;
  481. text-transform:none;
  482. }
  483. #u1593 {
  484. border-width:0px;
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:0px;
  489. height:0px;
  490. }
  491. #u1594_img {
  492. border-width:0px;
  493. position:absolute;
  494. left:-4px;
  495. top:-4px;
  496. width:40px;
  497. height:40px;
  498. }
  499. #u1594 {
  500. border-width:0px;
  501. position:absolute;
  502. left:1186px;
  503. top:996px;
  504. width:30px;
  505. height:30px;
  506. display:flex;
  507. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  508. font-weight:700;
  509. font-style:normal;
  510. font-size:18px;
  511. color:#1E1E1E;
  512. }
  513. #u1594 .text {
  514. position:absolute;
  515. align-self:center;
  516. padding:2px 2px 2px 2px;
  517. box-sizing:border-box;
  518. width:100%;
  519. }
  520. #u1594_text {
  521. border-width:0px;
  522. word-wrap:break-word;
  523. text-transform:none;
  524. }
  525. #u1595_div {
  526. border-width:0px;
  527. position:absolute;
  528. left:0px;
  529. top:0px;
  530. width:143px;
  531. height:18px;
  532. background:inherit;
  533. background-color:rgba(255, 255, 255, 0);
  534. border:none;
  535. border-radius:0px;
  536. -moz-box-shadow:none;
  537. -webkit-box-shadow:none;
  538. box-shadow:none;
  539. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  540. font-weight:700;
  541. font-style:normal;
  542. font-size:16px;
  543. }
  544. #u1595 {
  545. border-width:0px;
  546. position:absolute;
  547. left:1226px;
  548. top:1003px;
  549. width:143px;
  550. height:18px;
  551. display:flex;
  552. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  553. font-weight:700;
  554. font-style:normal;
  555. font-size:16px;
  556. }
  557. #u1595 .text {
  558. position:absolute;
  559. align-self:flex-start;
  560. padding:0px 0px 0px 0px;
  561. box-sizing:border-box;
  562. width:100%;
  563. }
  564. #u1595_text {
  565. border-width:0px;
  566. word-wrap:break-word;
  567. text-transform:none;
  568. }
  569. #u1596_div {
  570. border-width:0px;
  571. position:absolute;
  572. left:0px;
  573. top:0px;
  574. width:352px;
  575. height:44px;
  576. background:inherit;
  577. background-color:rgba(255, 255, 255, 0);
  578. border:none;
  579. border-radius:0px;
  580. -moz-box-shadow:none;
  581. -webkit-box-shadow:none;
  582. box-shadow:none;
  583. line-height:22px;
  584. }
  585. #u1596 {
  586. border-width:0px;
  587. position:absolute;
  588. left:1226px;
  589. top:1041px;
  590. width:352px;
  591. height:44px;
  592. display:flex;
  593. line-height:22px;
  594. }
  595. #u1596 .text {
  596. position:absolute;
  597. align-self:flex-start;
  598. padding:0px 0px 0px 0px;
  599. box-sizing:border-box;
  600. width:100%;
  601. }
  602. #u1596_text {
  603. border-width:0px;
  604. word-wrap:break-word;
  605. text-transform:none;
  606. }
  607. #u1597 {
  608. border-width:0px;
  609. position:absolute;
  610. left:0px;
  611. top:0px;
  612. width:0px;
  613. height:0px;
  614. }
  615. #u1598_img {
  616. border-width:0px;
  617. position:absolute;
  618. left:-4px;
  619. top:-4px;
  620. width:40px;
  621. height:40px;
  622. }
  623. #u1598 {
  624. border-width:0px;
  625. position:absolute;
  626. left:1186px;
  627. top:897px;
  628. width:30px;
  629. height:30px;
  630. display:flex;
  631. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  632. font-weight:700;
  633. font-style:normal;
  634. font-size:18px;
  635. color:#1E1E1E;
  636. }
  637. #u1598 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u1598_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. }
  649. #u1599_div {
  650. border-width:0px;
  651. position:absolute;
  652. left:0px;
  653. top:0px;
  654. width:143px;
  655. height:18px;
  656. background:inherit;
  657. background-color:rgba(255, 255, 255, 0);
  658. border:none;
  659. border-radius:0px;
  660. -moz-box-shadow:none;
  661. -webkit-box-shadow:none;
  662. box-shadow:none;
  663. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  664. font-weight:700;
  665. font-style:normal;
  666. font-size:16px;
  667. }
  668. #u1599 {
  669. border-width:0px;
  670. position:absolute;
  671. left:1226px;
  672. top:904px;
  673. width:143px;
  674. height:18px;
  675. display:flex;
  676. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  677. font-weight:700;
  678. font-style:normal;
  679. font-size:16px;
  680. }
  681. #u1599 .text {
  682. position:absolute;
  683. align-self:flex-start;
  684. padding:0px 0px 0px 0px;
  685. box-sizing:border-box;
  686. width:100%;
  687. }
  688. #u1599_text {
  689. border-width:0px;
  690. word-wrap:break-word;
  691. text-transform:none;
  692. }
  693. #u1600_div {
  694. border-width:0px;
  695. position:absolute;
  696. left:0px;
  697. top:0px;
  698. width:352px;
  699. height:44px;
  700. background:inherit;
  701. background-color:rgba(255, 255, 255, 0);
  702. border:none;
  703. border-radius:0px;
  704. -moz-box-shadow:none;
  705. -webkit-box-shadow:none;
  706. box-shadow:none;
  707. line-height:22px;
  708. }
  709. #u1600 {
  710. border-width:0px;
  711. position:absolute;
  712. left:1226px;
  713. top:942px;
  714. width:352px;
  715. height:44px;
  716. display:flex;
  717. line-height:22px;
  718. }
  719. #u1600 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u1600_text {
  727. border-width:0px;
  728. word-wrap:break-word;
  729. text-transform:none;
  730. }
  731. #u1601 {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:0px;
  737. height:0px;
  738. }
  739. #u1602_img {
  740. border-width:0px;
  741. position:absolute;
  742. left:-4px;
  743. top:-4px;
  744. width:40px;
  745. height:40px;
  746. }
  747. #u1602 {
  748. border-width:0px;
  749. position:absolute;
  750. left:1186px;
  751. top:1550px;
  752. width:30px;
  753. height:30px;
  754. display:flex;
  755. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  756. font-weight:700;
  757. font-style:normal;
  758. font-size:18px;
  759. color:#1E1E1E;
  760. }
  761. #u1602 .text {
  762. position:absolute;
  763. align-self:center;
  764. padding:2px 2px 2px 2px;
  765. box-sizing:border-box;
  766. width:100%;
  767. }
  768. #u1602_text {
  769. border-width:0px;
  770. word-wrap:break-word;
  771. text-transform:none;
  772. }
  773. #u1603_div {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:143px;
  779. height:18px;
  780. background:inherit;
  781. background-color:rgba(255, 255, 255, 0);
  782. border:none;
  783. border-radius:0px;
  784. -moz-box-shadow:none;
  785. -webkit-box-shadow:none;
  786. box-shadow:none;
  787. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  788. font-weight:700;
  789. font-style:normal;
  790. font-size:16px;
  791. }
  792. #u1603 {
  793. border-width:0px;
  794. position:absolute;
  795. left:1226px;
  796. top:1557px;
  797. width:143px;
  798. height:18px;
  799. display:flex;
  800. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  801. font-weight:700;
  802. font-style:normal;
  803. font-size:16px;
  804. }
  805. #u1603 .text {
  806. position:absolute;
  807. align-self:flex-start;
  808. padding:0px 0px 0px 0px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u1603_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. }
  817. #u1604_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:352px;
  823. height:22px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 0);
  826. border:none;
  827. border-radius:0px;
  828. -moz-box-shadow:none;
  829. -webkit-box-shadow:none;
  830. box-shadow:none;
  831. line-height:22px;
  832. }
  833. #u1604 {
  834. border-width:0px;
  835. position:absolute;
  836. left:1226px;
  837. top:1595px;
  838. width:352px;
  839. height:22px;
  840. display:flex;
  841. line-height:22px;
  842. }
  843. #u1604 .text {
  844. position:absolute;
  845. align-self:flex-start;
  846. padding:0px 0px 0px 0px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u1604_text {
  851. border-width:0px;
  852. word-wrap:break-word;
  853. text-transform:none;
  854. }
  855. #u1605 {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:0px;
  861. height:0px;
  862. }
  863. #u1606_img {
  864. border-width:0px;
  865. position:absolute;
  866. left:-4px;
  867. top:-4px;
  868. width:40px;
  869. height:40px;
  870. }
  871. #u1606 {
  872. border-width:0px;
  873. position:absolute;
  874. left:1186px;
  875. top:1639px;
  876. width:30px;
  877. height:30px;
  878. display:flex;
  879. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  880. font-weight:700;
  881. font-style:normal;
  882. font-size:18px;
  883. color:#1E1E1E;
  884. }
  885. #u1606 .text {
  886. position:absolute;
  887. align-self:center;
  888. padding:2px 2px 2px 2px;
  889. box-sizing:border-box;
  890. width:100%;
  891. }
  892. #u1606_text {
  893. border-width:0px;
  894. word-wrap:break-word;
  895. text-transform:none;
  896. }
  897. #u1607_div {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:143px;
  903. height:18px;
  904. background:inherit;
  905. background-color:rgba(255, 255, 255, 0);
  906. border:none;
  907. border-radius:0px;
  908. -moz-box-shadow:none;
  909. -webkit-box-shadow:none;
  910. box-shadow:none;
  911. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  912. font-weight:700;
  913. font-style:normal;
  914. font-size:16px;
  915. color:#FF0000;
  916. }
  917. #u1607 {
  918. border-width:0px;
  919. position:absolute;
  920. left:1226px;
  921. top:1646px;
  922. width:143px;
  923. height:18px;
  924. display:flex;
  925. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  926. font-weight:700;
  927. font-style:normal;
  928. font-size:16px;
  929. color:#FF0000;
  930. }
  931. #u1607 .text {
  932. position:absolute;
  933. align-self:flex-start;
  934. padding:0px 0px 0px 0px;
  935. box-sizing:border-box;
  936. width:100%;
  937. }
  938. #u1607_text {
  939. border-width:0px;
  940. word-wrap:break-word;
  941. text-transform:none;
  942. }
  943. #u1608_div {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:352px;
  949. height:44px;
  950. background:inherit;
  951. background-color:rgba(255, 255, 255, 0);
  952. border:none;
  953. border-radius:0px;
  954. -moz-box-shadow:none;
  955. -webkit-box-shadow:none;
  956. box-shadow:none;
  957. line-height:22px;
  958. }
  959. #u1608 {
  960. border-width:0px;
  961. position:absolute;
  962. left:1226px;
  963. top:1684px;
  964. width:352px;
  965. height:44px;
  966. display:flex;
  967. line-height:22px;
  968. }
  969. #u1608 .text {
  970. position:absolute;
  971. align-self:flex-start;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u1608_text {
  977. border-width:0px;
  978. word-wrap:break-word;
  979. text-transform:none;
  980. }
  981. #u1609 {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:0px;
  987. height:0px;
  988. }
  989. #u1610_img {
  990. border-width:0px;
  991. position:absolute;
  992. left:-4px;
  993. top:-4px;
  994. width:40px;
  995. height:40px;
  996. }
  997. #u1610 {
  998. border-width:0px;
  999. position:absolute;
  1000. left:1186px;
  1001. top:1730px;
  1002. width:30px;
  1003. height:30px;
  1004. display:flex;
  1005. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1006. font-weight:700;
  1007. font-style:normal;
  1008. font-size:18px;
  1009. color:#1E1E1E;
  1010. }
  1011. #u1610 .text {
  1012. position:absolute;
  1013. align-self:center;
  1014. padding:2px 2px 2px 2px;
  1015. box-sizing:border-box;
  1016. width:100%;
  1017. }
  1018. #u1610_text {
  1019. border-width:0px;
  1020. word-wrap:break-word;
  1021. text-transform:none;
  1022. }
  1023. #u1611_div {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:119px;
  1029. height:18px;
  1030. background:inherit;
  1031. background-color:rgba(255, 255, 255, 0);
  1032. border:none;
  1033. border-radius:0px;
  1034. -moz-box-shadow:none;
  1035. -webkit-box-shadow:none;
  1036. box-shadow:none;
  1037. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1038. font-weight:700;
  1039. font-style:normal;
  1040. font-size:16px;
  1041. color:#FF0000;
  1042. }
  1043. #u1611 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:1226px;
  1047. top:1737px;
  1048. width:119px;
  1049. height:18px;
  1050. display:flex;
  1051. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1052. font-weight:700;
  1053. font-style:normal;
  1054. font-size:16px;
  1055. color:#FF0000;
  1056. }
  1057. #u1611 .text {
  1058. position:absolute;
  1059. align-self:flex-start;
  1060. padding:0px 0px 0px 0px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u1611_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. }
  1069. #u1612_div {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:352px;
  1075. height:88px;
  1076. background:inherit;
  1077. background-color:rgba(255, 255, 255, 0);
  1078. border:none;
  1079. border-radius:0px;
  1080. -moz-box-shadow:none;
  1081. -webkit-box-shadow:none;
  1082. box-shadow:none;
  1083. line-height:22px;
  1084. }
  1085. #u1612 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:1226px;
  1089. top:1775px;
  1090. width:352px;
  1091. height:88px;
  1092. display:flex;
  1093. line-height:22px;
  1094. }
  1095. #u1612 .text {
  1096. position:absolute;
  1097. align-self:flex-start;
  1098. padding:0px 0px 0px 0px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u1612_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. }
  1107. #u1613 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:0px;
  1113. height:0px;
  1114. }
  1115. #u1614_img {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:-4px;
  1119. top:-4px;
  1120. width:40px;
  1121. height:40px;
  1122. }
  1123. #u1614 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:1186px;
  1127. top:1873px;
  1128. width:30px;
  1129. height:30px;
  1130. display:flex;
  1131. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1132. font-weight:700;
  1133. font-style:normal;
  1134. font-size:18px;
  1135. color:#1E1E1E;
  1136. }
  1137. #u1614 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u1614_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. }
  1149. #u1615_div {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:119px;
  1155. height:18px;
  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. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1164. font-weight:700;
  1165. font-style:normal;
  1166. font-size:16px;
  1167. }
  1168. #u1615 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:1226px;
  1172. top:1880px;
  1173. width:119px;
  1174. height:18px;
  1175. display:flex;
  1176. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1177. font-weight:700;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. }
  1181. #u1615 .text {
  1182. position:absolute;
  1183. align-self:flex-start;
  1184. padding:0px 0px 0px 0px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u1615_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u1616_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:352px;
  1199. height:22px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 0);
  1202. border:none;
  1203. border-radius:0px;
  1204. -moz-box-shadow:none;
  1205. -webkit-box-shadow:none;
  1206. box-shadow:none;
  1207. line-height:22px;
  1208. }
  1209. #u1616 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:1226px;
  1213. top:1918px;
  1214. width:352px;
  1215. height:22px;
  1216. display:flex;
  1217. line-height:22px;
  1218. }
  1219. #u1616 .text {
  1220. position:absolute;
  1221. align-self:flex-start;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u1616_text {
  1227. border-width:0px;
  1228. word-wrap:break-word;
  1229. text-transform:none;
  1230. }
  1231. #u1617 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:1226px;
  1235. top:1735px;
  1236. width:64px;
  1237. height:23px;
  1238. overflow:hidden;
  1239. background-image:url('../../resources/images/transparent.gif');
  1240. }
  1241. #u1618_img {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:245px;
  1247. height:88px;
  1248. }
  1249. #u1618 {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:1226px;
  1253. top:1632px;
  1254. width:245px;
  1255. height:88px;
  1256. display:flex;
  1257. text-align:left;
  1258. }
  1259. #u1618 .text {
  1260. position:absolute;
  1261. align-self:center;
  1262. padding:2px 2px 2px 2px;
  1263. box-sizing:border-box;
  1264. width:100%;
  1265. }
  1266. #u1618_text {
  1267. border-width:0px;
  1268. word-wrap:break-word;
  1269. text-transform:none;
  1270. }
  1271. #u1619_img {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:1155px;
  1277. height:583px;
  1278. }
  1279. #u1619 {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:21px;
  1283. top:1550px;
  1284. width:1155px;
  1285. height:583px;
  1286. display:flex;
  1287. }
  1288. #u1619 .text {
  1289. position:absolute;
  1290. align-self:center;
  1291. padding:2px 2px 2px 2px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u1619_text {
  1296. border-width:0px;
  1297. word-wrap:break-word;
  1298. text-transform:none;
  1299. visibility:hidden;
  1300. }
  1301. #u1620_img {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:-4px;
  1305. top:-4px;
  1306. width:30px;
  1307. height:30px;
  1308. }
  1309. #u1620 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:204px;
  1313. top:1750px;
  1314. width:20px;
  1315. height:20px;
  1316. display:flex;
  1317. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1318. font-weight:700;
  1319. font-style:normal;
  1320. font-size:14px;
  1321. color:#1E1E1E;
  1322. }
  1323. #u1620 .text {
  1324. position:absolute;
  1325. align-self:center;
  1326. padding:2px 2px 2px 2px;
  1327. box-sizing:border-box;
  1328. width:100%;
  1329. }
  1330. #u1620_text {
  1331. border-width:0px;
  1332. word-wrap:break-word;
  1333. text-transform:none;
  1334. }
  1335. #u1621_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:-4px;
  1339. top:-4px;
  1340. width:30px;
  1341. height:30px;
  1342. }
  1343. #u1621 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:297px;
  1347. top:1750px;
  1348. width:20px;
  1349. height:20px;
  1350. display:flex;
  1351. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1352. font-weight:700;
  1353. font-style:normal;
  1354. font-size:14px;
  1355. color:#1E1E1E;
  1356. }
  1357. #u1621 .text {
  1358. position:absolute;
  1359. align-self:center;
  1360. padding:2px 2px 2px 2px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u1621_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. }
  1369. #u1622_img {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:-4px;
  1373. top:-4px;
  1374. width:30px;
  1375. height:30px;
  1376. }
  1377. #u1622 {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:1034px;
  1381. top:1841px;
  1382. width:20px;
  1383. height:20px;
  1384. display:flex;
  1385. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1386. font-weight:700;
  1387. font-style:normal;
  1388. font-size:14px;
  1389. color:#1E1E1E;
  1390. }
  1391. #u1622 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u1622_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. }
  1403. #u1623_img {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:-4px;
  1407. top:-4px;
  1408. width:30px;
  1409. height:30px;
  1410. }
  1411. #u1623 {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:1095px;
  1415. top:1841px;
  1416. width:20px;
  1417. height:20px;
  1418. display:flex;
  1419. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1420. font-weight:700;
  1421. font-style:normal;
  1422. font-size:14px;
  1423. color:#1E1E1E;
  1424. }
  1425. #u1623 .text {
  1426. position:absolute;
  1427. align-self:center;
  1428. padding:2px 2px 2px 2px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u1623_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. }
  1437. #u1624_img {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:1155px;
  1443. height:583px;
  1444. }
  1445. #u1624 {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:21px;
  1449. top:236px;
  1450. width:1155px;
  1451. height:583px;
  1452. display:flex;
  1453. }
  1454. #u1624 .text {
  1455. position:absolute;
  1456. align-self:center;
  1457. padding:2px 2px 2px 2px;
  1458. box-sizing:border-box;
  1459. width:100%;
  1460. }
  1461. #u1624_text {
  1462. border-width:0px;
  1463. word-wrap:break-word;
  1464. text-transform:none;
  1465. visibility:hidden;
  1466. }
  1467. #u1625_img {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:-4px;
  1471. top:-4px;
  1472. width:30px;
  1473. height:30px;
  1474. }
  1475. #u1625 {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:1034px;
  1479. top:592px;
  1480. width:20px;
  1481. height:20px;
  1482. display:flex;
  1483. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1484. font-weight:700;
  1485. font-style:normal;
  1486. font-size:14px;
  1487. color:#1E1E1E;
  1488. }
  1489. #u1625 .text {
  1490. position:absolute;
  1491. align-self:center;
  1492. padding:2px 2px 2px 2px;
  1493. box-sizing:border-box;
  1494. width:100%;
  1495. }
  1496. #u1625_text {
  1497. border-width:0px;
  1498. word-wrap:break-word;
  1499. text-transform:none;
  1500. }
  1501. #u1626_img {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:-4px;
  1505. top:-4px;
  1506. width:30px;
  1507. height:30px;
  1508. }
  1509. #u1626 {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:1095px;
  1513. top:592px;
  1514. width:20px;
  1515. height:20px;
  1516. display:flex;
  1517. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1518. font-weight:700;
  1519. font-style:normal;
  1520. font-size:14px;
  1521. color:#1E1E1E;
  1522. }
  1523. #u1626 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:2px 2px 2px 2px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u1626_text {
  1531. border-width:0px;
  1532. word-wrap:break-word;
  1533. text-transform:none;
  1534. }
  1535. #u1627 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:0px;
  1541. height:0px;
  1542. }
  1543. #u1628_img {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:-4px;
  1547. top:-4px;
  1548. width:40px;
  1549. height:40px;
  1550. }
  1551. #u1628 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:1186px;
  1555. top:236px;
  1556. width:30px;
  1557. height:30px;
  1558. display:flex;
  1559. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1560. font-weight:700;
  1561. font-style:normal;
  1562. font-size:18px;
  1563. color:#1E1E1E;
  1564. }
  1565. #u1628 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:2px 2px 2px 2px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u1628_text {
  1573. border-width:0px;
  1574. word-wrap:break-word;
  1575. text-transform:none;
  1576. }
  1577. #u1629_div {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:0px;
  1581. top:0px;
  1582. width:74px;
  1583. height:18px;
  1584. background:inherit;
  1585. background-color:rgba(255, 255, 255, 0);
  1586. border:none;
  1587. border-radius:0px;
  1588. -moz-box-shadow:none;
  1589. -webkit-box-shadow:none;
  1590. box-shadow:none;
  1591. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1592. font-weight:700;
  1593. font-style:normal;
  1594. font-size:16px;
  1595. }
  1596. #u1629 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:1226px;
  1600. top:243px;
  1601. width:74px;
  1602. height:18px;
  1603. display:flex;
  1604. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1605. font-weight:700;
  1606. font-style:normal;
  1607. font-size:16px;
  1608. }
  1609. #u1629 .text {
  1610. position:absolute;
  1611. align-self:flex-start;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u1629_text {
  1617. border-width:0px;
  1618. word-wrap:break-word;
  1619. text-transform:none;
  1620. }
  1621. #u1630_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:352px;
  1627. height:264px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border:none;
  1631. border-radius:0px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. line-height:22px;
  1636. }
  1637. #u1630 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:1226px;
  1641. top:281px;
  1642. width:352px;
  1643. height:264px;
  1644. display:flex;
  1645. line-height:22px;
  1646. }
  1647. #u1630 .text {
  1648. position:absolute;
  1649. align-self:flex-start;
  1650. padding:0px 0px 0px 0px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u1630_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u1631 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:1402px;
  1663. top:413px;
  1664. width:52px;
  1665. height:23px;
  1666. overflow:hidden;
  1667. background-image:url('../../resources/images/transparent.gif');
  1668. }
  1669. #u1632_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:182px;
  1675. height:70px;
  1676. }
  1677. #u1632 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:1330px;
  1681. top:333px;
  1682. width:182px;
  1683. height:70px;
  1684. display:flex;
  1685. color:#000000;
  1686. text-align:left;
  1687. line-height:18px;
  1688. }
  1689. #u1632 .text {
  1690. position:absolute;
  1691. align-self:center;
  1692. padding:2px 2px 2px 2px;
  1693. box-sizing:border-box;
  1694. width:100%;
  1695. }
  1696. #u1632_text {
  1697. border-width:0px;
  1698. word-wrap:break-word;
  1699. text-transform:none;
  1700. }
  1701. #u1633 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:1464px;
  1705. top:413px;
  1706. width:59px;
  1707. height:23px;
  1708. overflow:hidden;
  1709. background-image:url('../../resources/images/transparent.gif');
  1710. }
  1711. #u1634_img {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:208px;
  1717. height:70px;
  1718. }
  1719. #u1634 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:1370px;
  1723. top:333px;
  1724. width:208px;
  1725. height:70px;
  1726. display:flex;
  1727. color:#000000;
  1728. text-align:left;
  1729. line-height:18px;
  1730. }
  1731. #u1634 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u1634_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. }
  1743. #u1635 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:1249px;
  1747. top:433px;
  1748. width:59px;
  1749. height:23px;
  1750. overflow:hidden;
  1751. background-image:url('../../resources/images/transparent.gif');
  1752. }
  1753. #u1636_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:208px;
  1759. height:57px;
  1760. }
  1761. #u1636 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:1233px;
  1765. top:366px;
  1766. width:208px;
  1767. height:57px;
  1768. display:flex;
  1769. color:#000000;
  1770. text-align:left;
  1771. line-height:18px;
  1772. }
  1773. #u1636 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 2px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u1636_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u1637 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:0px;
  1791. height:0px;
  1792. }
  1793. #u1638_img {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:-4px;
  1797. top:-4px;
  1798. width:40px;
  1799. height:40px;
  1800. }
  1801. #u1638 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:1186px;
  1805. top:555px;
  1806. width:30px;
  1807. height:30px;
  1808. display:flex;
  1809. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1810. font-weight:700;
  1811. font-style:normal;
  1812. font-size:18px;
  1813. color:#1E1E1E;
  1814. }
  1815. #u1638 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 2px 2px 2px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u1638_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. }
  1827. #u1639_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:74px;
  1833. height:18px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 0);
  1836. border:none;
  1837. border-radius:0px;
  1838. -moz-box-shadow:none;
  1839. -webkit-box-shadow:none;
  1840. box-shadow:none;
  1841. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1842. font-weight:700;
  1843. font-style:normal;
  1844. font-size:16px;
  1845. }
  1846. #u1639 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:1226px;
  1850. top:562px;
  1851. width:74px;
  1852. height:18px;
  1853. display:flex;
  1854. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1855. font-weight:700;
  1856. font-style:normal;
  1857. font-size:16px;
  1858. }
  1859. #u1639 .text {
  1860. position:absolute;
  1861. align-self:flex-start;
  1862. padding:0px 0px 0px 0px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u1639_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u1640_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:352px;
  1877. height:22px;
  1878. background:inherit;
  1879. background-color:rgba(255, 255, 255, 0);
  1880. border:none;
  1881. border-radius:0px;
  1882. -moz-box-shadow:none;
  1883. -webkit-box-shadow:none;
  1884. box-shadow:none;
  1885. line-height:22px;
  1886. }
  1887. #u1640 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:1226px;
  1891. top:600px;
  1892. width:352px;
  1893. height:22px;
  1894. display:flex;
  1895. line-height:22px;
  1896. }
  1897. #u1640 .text {
  1898. position:absolute;
  1899. align-self:flex-start;
  1900. padding:0px 0px 0px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u1640_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u1641_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:1155px;
  1915. height:583px;
  1916. }
  1917. #u1641 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:21px;
  1921. top:2191px;
  1922. width:1155px;
  1923. height:583px;
  1924. display:flex;
  1925. }
  1926. #u1641 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u1641_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u1642_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:-4px;
  1943. top:-4px;
  1944. width:30px;
  1945. height:30px;
  1946. }
  1947. #u1642 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:1011px;
  1951. top:2437px;
  1952. width:20px;
  1953. height:20px;
  1954. display:flex;
  1955. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1956. font-weight:700;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. color:#1E1E1E;
  1960. }
  1961. #u1642 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:2px 2px 2px 2px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u1642_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. }
  1973. #u1643_img {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:-4px;
  1977. top:-4px;
  1978. width:30px;
  1979. height:30px;
  1980. }
  1981. #u1643 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:1084px;
  1985. top:2437px;
  1986. width:20px;
  1987. height:20px;
  1988. display:flex;
  1989. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1990. font-weight:700;
  1991. font-style:normal;
  1992. font-size:14px;
  1993. color:#1E1E1E;
  1994. }
  1995. #u1643 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 2px 2px 2px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u1643_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u1644 {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:0px;
  2013. height:0px;
  2014. }
  2015. #u1645_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:-4px;
  2019. top:-4px;
  2020. width:40px;
  2021. height:40px;
  2022. }
  2023. #u1645 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:1186px;
  2027. top:2561px;
  2028. width:30px;
  2029. height:30px;
  2030. display:flex;
  2031. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2032. font-weight:700;
  2033. font-style:normal;
  2034. font-size:18px;
  2035. color:#1E1E1E;
  2036. }
  2037. #u1645 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u1645_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u1646_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:158px;
  2055. height:18px;
  2056. background:inherit;
  2057. background-color:rgba(255, 255, 255, 0);
  2058. border:none;
  2059. border-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2064. font-weight:700;
  2065. font-style:normal;
  2066. font-size:16px;
  2067. color:#FF0000;
  2068. }
  2069. #u1646 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:1226px;
  2073. top:2568px;
  2074. width:158px;
  2075. height:18px;
  2076. display:flex;
  2077. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2078. font-weight:700;
  2079. font-style:normal;
  2080. font-size:16px;
  2081. color:#FF0000;
  2082. }
  2083. #u1646 .text {
  2084. position:absolute;
  2085. align-self:flex-start;
  2086. padding:0px 0px 0px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u1646_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u1647_div {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:352px;
  2101. height:22px;
  2102. background:inherit;
  2103. background-color:rgba(255, 255, 255, 0);
  2104. border:none;
  2105. border-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. line-height:22px;
  2110. }
  2111. #u1647 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:1226px;
  2115. top:2606px;
  2116. width:352px;
  2117. height:22px;
  2118. display:flex;
  2119. line-height:22px;
  2120. }
  2121. #u1647 .text {
  2122. position:absolute;
  2123. align-self:flex-start;
  2124. padding:0px 0px 0px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u1647_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. }
  2133. #u1648 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:1235px;
  2137. top:2566px;
  2138. width:87px;
  2139. height:23px;
  2140. overflow:hidden;
  2141. background-image:url('../../resources/images/transparent.gif');
  2142. }
  2143. #u1649_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:245px;
  2149. height:91px;
  2150. }
  2151. #u1649 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:1235px;
  2155. top:2470px;
  2156. width:245px;
  2157. height:91px;
  2158. display:flex;
  2159. color:#000000;
  2160. text-align:left;
  2161. line-height:18px;
  2162. }
  2163. #u1649 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u1649_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u1650 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:0px;
  2181. height:0px;
  2182. }
  2183. #u1651_img {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:-4px;
  2187. top:-4px;
  2188. width:40px;
  2189. height:40px;
  2190. }
  2191. #u1651 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:1186px;
  2195. top:2190px;
  2196. width:30px;
  2197. height:30px;
  2198. display:flex;
  2199. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2200. font-weight:700;
  2201. font-style:normal;
  2202. font-size:18px;
  2203. color:#1E1E1E;
  2204. }
  2205. #u1651 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 2px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u1651_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. }
  2217. #u1652_div {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:104px;
  2223. height:18px;
  2224. background:inherit;
  2225. background-color:rgba(255, 255, 255, 0);
  2226. border:none;
  2227. border-radius:0px;
  2228. -moz-box-shadow:none;
  2229. -webkit-box-shadow:none;
  2230. box-shadow:none;
  2231. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2232. font-weight:700;
  2233. font-style:normal;
  2234. font-size:16px;
  2235. color:#FF0000;
  2236. }
  2237. #u1652 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:1226px;
  2241. top:2197px;
  2242. width:104px;
  2243. height:18px;
  2244. display:flex;
  2245. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2246. font-weight:700;
  2247. font-style:normal;
  2248. font-size:16px;
  2249. color:#FF0000;
  2250. }
  2251. #u1652 .text {
  2252. position:absolute;
  2253. align-self:flex-start;
  2254. padding:0px 0px 0px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u1652_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. }
  2263. #u1653_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:352px;
  2269. height:110px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 0);
  2272. border:none;
  2273. border-radius:0px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. line-height:22px;
  2278. }
  2279. #u1653 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:1226px;
  2283. top:2235px;
  2284. width:352px;
  2285. height:110px;
  2286. display:flex;
  2287. line-height:22px;
  2288. }
  2289. #u1653 .text {
  2290. position:absolute;
  2291. align-self:flex-start;
  2292. padding:0px 0px 0px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u1653_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. }
  2301. #u1654_img {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:182px;
  2307. height:70px;
  2308. }
  2309. #u1654 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:1371px;
  2313. top:2158px;
  2314. width:182px;
  2315. height:70px;
  2316. display:flex;
  2317. color:#000000;
  2318. text-align:left;
  2319. line-height:18px;
  2320. }
  2321. #u1654 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 2px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u1654_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. }
  2333. #u1655 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:1226px;
  2337. top:2257px;
  2338. width:15px;
  2339. height:23px;
  2340. overflow:hidden;
  2341. background-image:url('../../resources/images/transparent.gif');
  2342. }
  2343. #u1656 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:0px;
  2349. height:0px;
  2350. }
  2351. #u1657_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:-4px;
  2355. top:-4px;
  2356. width:40px;
  2357. height:40px;
  2358. }
  2359. #u1657 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:1186px;
  2363. top:2341px;
  2364. width:30px;
  2365. height:30px;
  2366. display:flex;
  2367. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2368. font-weight:700;
  2369. font-style:normal;
  2370. font-size:18px;
  2371. color:#1E1E1E;
  2372. }
  2373. #u1657 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u1657_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. }
  2385. #u1658_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:119px;
  2391. height:18px;
  2392. background:inherit;
  2393. background-color:rgba(255, 255, 255, 0);
  2394. border:none;
  2395. border-radius:0px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2400. font-weight:700;
  2401. font-style:normal;
  2402. font-size:16px;
  2403. }
  2404. #u1658 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:1226px;
  2408. top:2348px;
  2409. width:119px;
  2410. height:18px;
  2411. display:flex;
  2412. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2413. font-weight:700;
  2414. font-style:normal;
  2415. font-size:16px;
  2416. }
  2417. #u1658 .text {
  2418. position:absolute;
  2419. align-self:flex-start;
  2420. padding:0px 0px 0px 0px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u1658_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. }
  2429. #u1659_div {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:352px;
  2435. height:22px;
  2436. background:inherit;
  2437. background-color:rgba(255, 255, 255, 0);
  2438. border:none;
  2439. border-radius:0px;
  2440. -moz-box-shadow:none;
  2441. -webkit-box-shadow:none;
  2442. box-shadow:none;
  2443. line-height:22px;
  2444. }
  2445. #u1659 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:1226px;
  2449. top:2386px;
  2450. width:352px;
  2451. height:22px;
  2452. display:flex;
  2453. line-height:22px;
  2454. }
  2455. #u1659 .text {
  2456. position:absolute;
  2457. align-self:flex-start;
  2458. padding:0px 0px 0px 0px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u1659_text {
  2463. border-width:0px;
  2464. word-wrap:break-word;
  2465. text-transform:none;
  2466. }
  2467. #u1660 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:0px;
  2473. height:0px;
  2474. }
  2475. #u1661_img {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:-4px;
  2479. top:-4px;
  2480. width:40px;
  2481. height:40px;
  2482. }
  2483. #u1661 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:1186px;
  2487. top:2408px;
  2488. width:30px;
  2489. height:30px;
  2490. display:flex;
  2491. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2492. font-weight:700;
  2493. font-style:normal;
  2494. font-size:18px;
  2495. color:#1E1E1E;
  2496. }
  2497. #u1661 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 2px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u1661_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. }
  2509. #u1662_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:158px;
  2515. height:18px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 0);
  2518. border:none;
  2519. border-radius:0px;
  2520. -moz-box-shadow:none;
  2521. -webkit-box-shadow:none;
  2522. box-shadow:none;
  2523. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2524. font-weight:700;
  2525. font-style:normal;
  2526. font-size:16px;
  2527. }
  2528. #u1662 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:1226px;
  2532. top:2415px;
  2533. width:158px;
  2534. height:18px;
  2535. display:flex;
  2536. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2537. font-weight:700;
  2538. font-style:normal;
  2539. font-size:16px;
  2540. }
  2541. #u1662 .text {
  2542. position:absolute;
  2543. align-self:flex-start;
  2544. padding:0px 0px 0px 0px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u1662_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. }
  2553. #u1663_div {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:352px;
  2559. height:22px;
  2560. background:inherit;
  2561. background-color:rgba(255, 255, 255, 0);
  2562. border:none;
  2563. border-radius:0px;
  2564. -moz-box-shadow:none;
  2565. -webkit-box-shadow:none;
  2566. box-shadow:none;
  2567. line-height:22px;
  2568. }
  2569. #u1663 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:1226px;
  2573. top:2453px;
  2574. width:352px;
  2575. height:22px;
  2576. display:flex;
  2577. line-height:22px;
  2578. }
  2579. #u1663 .text {
  2580. position:absolute;
  2581. align-self:flex-start;
  2582. padding:0px 0px 0px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u1663_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. }
  2591. #u1664_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:-4px;
  2595. top:-4px;
  2596. width:30px;
  2597. height:30px;
  2598. }
  2599. #u1664 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:263px;
  2603. top:2345px;
  2604. width:20px;
  2605. height:20px;
  2606. display:flex;
  2607. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2608. font-weight:700;
  2609. font-style:normal;
  2610. font-size:14px;
  2611. color:#1E1E1E;
  2612. }
  2613. #u1664 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 2px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u1664_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. }
  2625. #u1665_img {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:-4px;
  2629. top:-4px;
  2630. width:30px;
  2631. height:30px;
  2632. }
  2633. #u1665 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:336px;
  2637. top:2345px;
  2638. width:20px;
  2639. height:20px;
  2640. display:flex;
  2641. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2642. font-weight:700;
  2643. font-style:normal;
  2644. font-size:14px;
  2645. color:#1E1E1E;
  2646. }
  2647. #u1665 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:2px 2px 2px 2px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u1665_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. }
  2659. #u1666_img {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:-4px;
  2663. top:-4px;
  2664. width:30px;
  2665. height:30px;
  2666. }
  2667. #u1666 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:409px;
  2671. top:2345px;
  2672. width:20px;
  2673. height:20px;
  2674. display:flex;
  2675. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2676. font-weight:700;
  2677. font-style:normal;
  2678. font-size:14px;
  2679. color:#1E1E1E;
  2680. }
  2681. #u1666 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 2px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u1666_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. }
  2693. #u1667 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:1538px;
  2697. top:2234px;
  2698. width:40px;
  2699. height:23px;
  2700. overflow:hidden;
  2701. background-image:url('../../resources/images/transparent.gif');
  2702. }
  2703. #u1668 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:0px;
  2709. height:0px;
  2710. }
  2711. #u1669_img {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:-4px;
  2715. top:-4px;
  2716. width:40px;
  2717. height:40px;
  2718. }
  2719. #u1669 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:1186px;
  2723. top:2472px;
  2724. width:30px;
  2725. height:30px;
  2726. display:flex;
  2727. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2728. font-weight:700;
  2729. font-style:normal;
  2730. font-size:18px;
  2731. color:#1E1E1E;
  2732. }
  2733. #u1669 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 2px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u1669_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. }
  2745. #u1670_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:68px;
  2751. height:18px;
  2752. background:inherit;
  2753. background-color:rgba(255, 255, 255, 0);
  2754. border:none;
  2755. border-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2760. font-weight:700;
  2761. font-style:normal;
  2762. font-size:16px;
  2763. color:#FF0000;
  2764. }
  2765. #u1670 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:1226px;
  2769. top:2479px;
  2770. width:68px;
  2771. height:18px;
  2772. display:flex;
  2773. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2774. font-weight:700;
  2775. font-style:normal;
  2776. font-size:16px;
  2777. color:#FF0000;
  2778. }
  2779. #u1670 .text {
  2780. position:absolute;
  2781. align-self:flex-start;
  2782. padding:0px 0px 0px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u1670_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. }
  2791. #u1671_div {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:352px;
  2797. height:44px;
  2798. background:inherit;
  2799. background-color:rgba(255, 255, 255, 0);
  2800. border:none;
  2801. border-radius:0px;
  2802. -moz-box-shadow:none;
  2803. -webkit-box-shadow:none;
  2804. box-shadow:none;
  2805. line-height:22px;
  2806. }
  2807. #u1671 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:1226px;
  2811. top:2517px;
  2812. width:352px;
  2813. height:44px;
  2814. display:flex;
  2815. line-height:22px;
  2816. }
  2817. #u1671 .text {
  2818. position:absolute;
  2819. align-self:flex-start;
  2820. padding:0px 0px 0px 0px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u1671_text {
  2825. border-width:0px;
  2826. word-wrap:break-word;
  2827. text-transform:none;
  2828. }
  2829. #u1672 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:1233px;
  2833. top:2475px;
  2834. width:63px;
  2835. height:23px;
  2836. overflow:hidden;
  2837. background-image:url('../../resources/images/transparent.gif');
  2838. }
  2839. #u1673_img {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:182px;
  2845. height:70px;
  2846. }
  2847. #u1673 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:1233px;
  2851. top:2398px;
  2852. width:182px;
  2853. height:70px;
  2854. display:flex;
  2855. color:#000000;
  2856. text-align:left;
  2857. line-height:18px;
  2858. }
  2859. #u1673 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 2px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u1673_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. }
  2871. #u1674 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:1233px;
  2875. top:2193px;
  2876. width:87px;
  2877. height:23px;
  2878. overflow:hidden;
  2879. background-image:url('../../resources/images/transparent.gif');
  2880. }
  2881. #u1675_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:182px;
  2887. height:70px;
  2888. }
  2889. #u1675 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:1233px;
  2893. top:2116px;
  2894. width:182px;
  2895. height:70px;
  2896. display:flex;
  2897. color:#000000;
  2898. text-align:left;
  2899. line-height:18px;
  2900. }
  2901. #u1675 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 2px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u1675_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. }
  2913. #u1676 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:1231px;
  2917. top:1642px;
  2918. width:102px;
  2919. height:23px;
  2920. overflow:hidden;
  2921. background-image:url('../../resources/images/transparent.gif');
  2922. }
  2923. #u1677_img {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:245px;
  2929. height:88px;
  2930. }
  2931. #u1677 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:1226px;
  2935. top:1534px;
  2936. width:245px;
  2937. height:88px;
  2938. display:flex;
  2939. text-align:left;
  2940. }
  2941. #u1677 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 2px 2px 2px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u1677_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. }
  2953. #u1678_div {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:1px;
  2959. height:22px;
  2960. background:inherit;
  2961. background-color:rgba(255, 255, 255, 0);
  2962. border:none;
  2963. border-radius:0px;
  2964. -moz-box-shadow:none;
  2965. -webkit-box-shadow:none;
  2966. box-shadow:none;
  2967. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2968. font-weight:700;
  2969. font-style:normal;
  2970. font-size:18px;
  2971. }
  2972. #u1678 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:21px;
  2976. top:2159px;
  2977. width:1px;
  2978. height:22px;
  2979. display:flex;
  2980. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2981. font-weight:700;
  2982. font-style:normal;
  2983. font-size:18px;
  2984. }
  2985. #u1678 .text {
  2986. position:absolute;
  2987. align-self:flex-start;
  2988. padding:0px 0px 0px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u1678_text {
  2993. border-width:0px;
  2994. white-space:nowrap;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }