styles.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1596px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u1802 {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:0px;
  21. height:0px;
  22. }
  23. #u1803_img {
  24. border-width:0px;
  25. position:absolute;
  26. left:-4px;
  27. top:-4px;
  28. width:40px;
  29. height:40px;
  30. }
  31. #u1803 {
  32. border-width:0px;
  33. position:absolute;
  34. left:1176px;
  35. top:52px;
  36. width:30px;
  37. height:30px;
  38. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  39. font-weight:700;
  40. font-style:normal;
  41. font-size:18px;
  42. color:#1E1E1E;
  43. }
  44. #u1803_text {
  45. border-width:0px;
  46. position:absolute;
  47. left:2px;
  48. top:4px;
  49. width:26px;
  50. word-wrap:break-word;
  51. }
  52. #u1804_div {
  53. border-width:0px;
  54. position:absolute;
  55. left:0px;
  56. top:0px;
  57. width:96px;
  58. height:19px;
  59. background:inherit;
  60. background-color:rgba(255, 255, 255, 0);
  61. border:none;
  62. border-radius:0px;
  63. -moz-box-shadow:none;
  64. -webkit-box-shadow:none;
  65. box-shadow:none;
  66. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  67. font-weight:700;
  68. font-style:normal;
  69. font-size:16px;
  70. }
  71. #u1804 {
  72. border-width:0px;
  73. position:absolute;
  74. left:1216px;
  75. top:59px;
  76. width:96px;
  77. height:19px;
  78. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  79. font-weight:700;
  80. font-style:normal;
  81. font-size:16px;
  82. }
  83. #u1804_text {
  84. border-width:0px;
  85. position:absolute;
  86. left:0px;
  87. top:0px;
  88. width:96px;
  89. word-wrap:break-word;
  90. }
  91. #u1805_div {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:352px;
  97. height:66px;
  98. background:inherit;
  99. background-color:rgba(255, 255, 255, 0);
  100. border:none;
  101. border-radius:0px;
  102. -moz-box-shadow:none;
  103. -webkit-box-shadow:none;
  104. box-shadow:none;
  105. line-height:22px;
  106. }
  107. #u1805 {
  108. border-width:0px;
  109. position:absolute;
  110. left:1216px;
  111. top:97px;
  112. width:352px;
  113. height:66px;
  114. line-height:22px;
  115. }
  116. #u1805_text {
  117. border-width:0px;
  118. position:absolute;
  119. left:0px;
  120. top:0px;
  121. width:352px;
  122. word-wrap:break-word;
  123. }
  124. #u1806 {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:0px;
  130. height:0px;
  131. }
  132. #u1807_img {
  133. border-width:0px;
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:8px;
  138. height:28px;
  139. }
  140. #u1807 {
  141. border-width:0px;
  142. position:absolute;
  143. left:7px;
  144. top:21px;
  145. width:8px;
  146. height:28px;
  147. }
  148. #u1807_text {
  149. border-width:0px;
  150. position:absolute;
  151. left:0px;
  152. top:0px;
  153. width:0px;
  154. visibility:hidden;
  155. word-wrap:break-word;
  156. }
  157. #u1808_div {
  158. border-width:0px;
  159. position:absolute;
  160. left:0px;
  161. top:0px;
  162. width:145px;
  163. height:28px;
  164. background:inherit;
  165. background-color:rgba(255, 255, 255, 0);
  166. border:none;
  167. border-radius:0px;
  168. -moz-box-shadow:none;
  169. -webkit-box-shadow:none;
  170. box-shadow:none;
  171. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  172. font-weight:700;
  173. font-style:normal;
  174. }
  175. #u1808 {
  176. border-width:0px;
  177. position:absolute;
  178. left:21px;
  179. top:21px;
  180. width:145px;
  181. height:28px;
  182. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  183. font-weight:700;
  184. font-style:normal;
  185. }
  186. #u1808_text {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:145px;
  192. white-space:nowrap;
  193. }
  194. #u1809_div {
  195. border-width:0px;
  196. position:absolute;
  197. left:0px;
  198. top:0px;
  199. width:258px;
  200. height:24px;
  201. background:inherit;
  202. background-color:rgba(255, 255, 255, 0);
  203. border:none;
  204. border-radius:0px;
  205. -moz-box-shadow:none;
  206. -webkit-box-shadow:none;
  207. box-shadow:none;
  208. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  209. font-weight:700;
  210. font-style:normal;
  211. font-size:20px;
  212. }
  213. #u1809 {
  214. border-width:0px;
  215. position:absolute;
  216. left:7px;
  217. top:101px;
  218. width:258px;
  219. height:24px;
  220. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  221. font-weight:700;
  222. font-style:normal;
  223. font-size:20px;
  224. }
  225. #u1809_text {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:260px;
  231. white-space:nowrap;
  232. }
  233. #u1810 {
  234. border-width:0px;
  235. position:absolute;
  236. left:0px;
  237. top:0px;
  238. width:0px;
  239. height:0px;
  240. }
  241. #u1811_img {
  242. border-width:0px;
  243. position:absolute;
  244. left:-4px;
  245. top:-4px;
  246. width:40px;
  247. height:40px;
  248. }
  249. #u1811 {
  250. border-width:0px;
  251. position:absolute;
  252. left:1176px;
  253. top:173px;
  254. width:30px;
  255. height:30px;
  256. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  257. font-weight:700;
  258. font-style:normal;
  259. font-size:18px;
  260. color:#1E1E1E;
  261. }
  262. #u1811_text {
  263. border-width:0px;
  264. position:absolute;
  265. left:2px;
  266. top:4px;
  267. width:26px;
  268. word-wrap:break-word;
  269. }
  270. #u1812_div {
  271. border-width:0px;
  272. position:absolute;
  273. left:0px;
  274. top:0px;
  275. width:96px;
  276. height:19px;
  277. background:inherit;
  278. background-color:rgba(255, 255, 255, 0);
  279. border:none;
  280. border-radius:0px;
  281. -moz-box-shadow:none;
  282. -webkit-box-shadow:none;
  283. box-shadow:none;
  284. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  285. font-weight:700;
  286. font-style:normal;
  287. font-size:16px;
  288. }
  289. #u1812 {
  290. border-width:0px;
  291. position:absolute;
  292. left:1216px;
  293. top:180px;
  294. width:96px;
  295. height:19px;
  296. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  297. font-weight:700;
  298. font-style:normal;
  299. font-size:16px;
  300. }
  301. #u1812_text {
  302. border-width:0px;
  303. position:absolute;
  304. left:0px;
  305. top:0px;
  306. width:96px;
  307. word-wrap:break-word;
  308. }
  309. #u1813_div {
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:352px;
  315. height:66px;
  316. background:inherit;
  317. background-color:rgba(255, 255, 255, 0);
  318. border:none;
  319. border-radius:0px;
  320. -moz-box-shadow:none;
  321. -webkit-box-shadow:none;
  322. box-shadow:none;
  323. line-height:22px;
  324. }
  325. #u1813 {
  326. border-width:0px;
  327. position:absolute;
  328. left:1216px;
  329. top:218px;
  330. width:352px;
  331. height:66px;
  332. line-height:22px;
  333. }
  334. #u1813_text {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:352px;
  340. word-wrap:break-word;
  341. }
  342. #u1814 {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:0px;
  348. height:0px;
  349. }
  350. #u1815_img {
  351. border-width:0px;
  352. position:absolute;
  353. left:-4px;
  354. top:-4px;
  355. width:40px;
  356. height:40px;
  357. }
  358. #u1815 {
  359. border-width:0px;
  360. position:absolute;
  361. left:1168px;
  362. top:305px;
  363. width:30px;
  364. height:30px;
  365. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  366. font-weight:700;
  367. font-style:normal;
  368. font-size:18px;
  369. color:#1E1E1E;
  370. }
  371. #u1815_text {
  372. border-width:0px;
  373. position:absolute;
  374. left:2px;
  375. top:4px;
  376. width:26px;
  377. word-wrap:break-word;
  378. }
  379. #u1816_div {
  380. border-width:0px;
  381. position:absolute;
  382. left:0px;
  383. top:0px;
  384. width:130px;
  385. height:19px;
  386. background:inherit;
  387. background-color:rgba(255, 255, 255, 0);
  388. border:none;
  389. border-radius:0px;
  390. -moz-box-shadow:none;
  391. -webkit-box-shadow:none;
  392. box-shadow:none;
  393. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  394. font-weight:700;
  395. font-style:normal;
  396. font-size:16px;
  397. }
  398. #u1816 {
  399. border-width:0px;
  400. position:absolute;
  401. left:1208px;
  402. top:312px;
  403. width:130px;
  404. height:19px;
  405. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  406. font-weight:700;
  407. font-style:normal;
  408. font-size:16px;
  409. }
  410. #u1816_text {
  411. border-width:0px;
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:130px;
  416. word-wrap:break-word;
  417. }
  418. #u1817_div {
  419. border-width:0px;
  420. position:absolute;
  421. left:0px;
  422. top:0px;
  423. width:352px;
  424. height:51px;
  425. background:inherit;
  426. background-color:rgba(255, 255, 255, 0);
  427. border:none;
  428. border-radius:0px;
  429. -moz-box-shadow:none;
  430. -webkit-box-shadow:none;
  431. box-shadow:none;
  432. line-height:22px;
  433. }
  434. #u1817 {
  435. border-width:0px;
  436. position:absolute;
  437. left:1208px;
  438. top:350px;
  439. width:352px;
  440. height:51px;
  441. line-height:22px;
  442. }
  443. #u1817_text {
  444. border-width:0px;
  445. position:absolute;
  446. left:0px;
  447. top:0px;
  448. width:352px;
  449. word-wrap:break-word;
  450. }
  451. #u1818 {
  452. border-width:0px;
  453. position:absolute;
  454. left:0px;
  455. top:0px;
  456. width:0px;
  457. height:0px;
  458. }
  459. #u1819_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:-4px;
  463. top:-4px;
  464. width:40px;
  465. height:40px;
  466. }
  467. #u1819 {
  468. border-width:0px;
  469. position:absolute;
  470. left:1176px;
  471. top:401px;
  472. width:30px;
  473. height:30px;
  474. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  475. font-weight:700;
  476. font-style:normal;
  477. font-size:18px;
  478. color:#1E1E1E;
  479. }
  480. #u1819_text {
  481. border-width:0px;
  482. position:absolute;
  483. left:2px;
  484. top:4px;
  485. width:26px;
  486. word-wrap:break-word;
  487. }
  488. #u1820_div {
  489. border-width:0px;
  490. position:absolute;
  491. left:0px;
  492. top:0px;
  493. width:102px;
  494. height:19px;
  495. background:inherit;
  496. background-color:rgba(255, 255, 255, 0);
  497. border:none;
  498. border-radius:0px;
  499. -moz-box-shadow:none;
  500. -webkit-box-shadow:none;
  501. box-shadow:none;
  502. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  503. font-weight:700;
  504. font-style:normal;
  505. font-size:16px;
  506. }
  507. #u1820 {
  508. border-width:0px;
  509. position:absolute;
  510. left:1216px;
  511. top:408px;
  512. width:102px;
  513. height:19px;
  514. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  515. font-weight:700;
  516. font-style:normal;
  517. font-size:16px;
  518. }
  519. #u1820_text {
  520. border-width:0px;
  521. position:absolute;
  522. left:0px;
  523. top:0px;
  524. width:102px;
  525. word-wrap:break-word;
  526. }
  527. #u1821_div {
  528. border-width:0px;
  529. position:absolute;
  530. left:0px;
  531. top:0px;
  532. width:352px;
  533. height:50px;
  534. background:inherit;
  535. background-color:rgba(255, 255, 255, 0);
  536. border:none;
  537. border-radius:0px;
  538. -moz-box-shadow:none;
  539. -webkit-box-shadow:none;
  540. box-shadow:none;
  541. line-height:22px;
  542. }
  543. #u1821 {
  544. border-width:0px;
  545. position:absolute;
  546. left:1216px;
  547. top:446px;
  548. width:352px;
  549. height:50px;
  550. line-height:22px;
  551. }
  552. #u1821_text {
  553. border-width:0px;
  554. position:absolute;
  555. left:0px;
  556. top:0px;
  557. width:352px;
  558. word-wrap:break-word;
  559. }
  560. #u1822 {
  561. border-width:0px;
  562. position:absolute;
  563. left:0px;
  564. top:0px;
  565. width:0px;
  566. height:0px;
  567. }
  568. #u1823_img {
  569. border-width:0px;
  570. position:absolute;
  571. left:-4px;
  572. top:-4px;
  573. width:40px;
  574. height:40px;
  575. }
  576. #u1823 {
  577. border-width:0px;
  578. position:absolute;
  579. left:1176px;
  580. top:618px;
  581. width:30px;
  582. height:30px;
  583. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  584. font-weight:700;
  585. font-style:normal;
  586. font-size:18px;
  587. color:#1E1E1E;
  588. }
  589. #u1823_text {
  590. border-width:0px;
  591. position:absolute;
  592. left:2px;
  593. top:4px;
  594. width:26px;
  595. word-wrap:break-word;
  596. }
  597. #u1824_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:102px;
  603. height:19px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  612. font-weight:700;
  613. font-style:normal;
  614. font-size:16px;
  615. }
  616. #u1824 {
  617. border-width:0px;
  618. position:absolute;
  619. left:1216px;
  620. top:625px;
  621. width:102px;
  622. height:19px;
  623. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  624. font-weight:700;
  625. font-style:normal;
  626. font-size:16px;
  627. }
  628. #u1824_text {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:102px;
  634. word-wrap:break-word;
  635. }
  636. #u1825_div {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:352px;
  642. height:105px;
  643. background:inherit;
  644. background-color:rgba(255, 255, 255, 0);
  645. border:none;
  646. border-radius:0px;
  647. -moz-box-shadow:none;
  648. -webkit-box-shadow:none;
  649. box-shadow:none;
  650. line-height:22px;
  651. }
  652. #u1825 {
  653. border-width:0px;
  654. position:absolute;
  655. left:1216px;
  656. top:663px;
  657. width:352px;
  658. height:105px;
  659. line-height:22px;
  660. }
  661. #u1825_text {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:352px;
  667. word-wrap:break-word;
  668. }
  669. #u1826 {
  670. border-width:0px;
  671. position:absolute;
  672. left:0px;
  673. top:0px;
  674. width:0px;
  675. height:0px;
  676. }
  677. #u1827_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:-4px;
  681. top:-4px;
  682. width:40px;
  683. height:40px;
  684. }
  685. #u1827 {
  686. border-width:0px;
  687. position:absolute;
  688. left:1176px;
  689. top:510px;
  690. width:30px;
  691. height:30px;
  692. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  693. font-weight:700;
  694. font-style:normal;
  695. font-size:18px;
  696. color:#1E1E1E;
  697. }
  698. #u1827_text {
  699. border-width:0px;
  700. position:absolute;
  701. left:2px;
  702. top:4px;
  703. width:26px;
  704. word-wrap:break-word;
  705. }
  706. #u1828_div {
  707. border-width:0px;
  708. position:absolute;
  709. left:0px;
  710. top:0px;
  711. width:102px;
  712. height:19px;
  713. background:inherit;
  714. background-color:rgba(255, 255, 255, 0);
  715. border:none;
  716. border-radius:0px;
  717. -moz-box-shadow:none;
  718. -webkit-box-shadow:none;
  719. box-shadow:none;
  720. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  721. font-weight:700;
  722. font-style:normal;
  723. font-size:16px;
  724. }
  725. #u1828 {
  726. border-width:0px;
  727. position:absolute;
  728. left:1216px;
  729. top:517px;
  730. width:102px;
  731. height:19px;
  732. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  733. font-weight:700;
  734. font-style:normal;
  735. font-size:16px;
  736. }
  737. #u1828_text {
  738. border-width:0px;
  739. position:absolute;
  740. left:0px;
  741. top:0px;
  742. width:102px;
  743. word-wrap:break-word;
  744. }
  745. #u1829_div {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:352px;
  751. height:53px;
  752. background:inherit;
  753. background-color:rgba(255, 255, 255, 0);
  754. border:none;
  755. border-radius:0px;
  756. -moz-box-shadow:none;
  757. -webkit-box-shadow:none;
  758. box-shadow:none;
  759. line-height:22px;
  760. }
  761. #u1829 {
  762. border-width:0px;
  763. position:absolute;
  764. left:1216px;
  765. top:555px;
  766. width:352px;
  767. height:53px;
  768. line-height:22px;
  769. }
  770. #u1829_text {
  771. border-width:0px;
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:352px;
  776. word-wrap:break-word;
  777. }
  778. #u1830 {
  779. border-width:0px;
  780. position:absolute;
  781. left:0px;
  782. top:0px;
  783. width:0px;
  784. height:0px;
  785. }
  786. #u1831_img {
  787. border-width:0px;
  788. position:absolute;
  789. left:-4px;
  790. top:-4px;
  791. width:40px;
  792. height:40px;
  793. }
  794. #u1831 {
  795. border-width:0px;
  796. position:absolute;
  797. left:1176px;
  798. top:745px;
  799. width:30px;
  800. height:30px;
  801. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  802. font-weight:700;
  803. font-style:normal;
  804. font-size:18px;
  805. color:#1E1E1E;
  806. }
  807. #u1831_text {
  808. border-width:0px;
  809. position:absolute;
  810. left:2px;
  811. top:4px;
  812. width:26px;
  813. word-wrap:break-word;
  814. }
  815. #u1832_div {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:102px;
  821. height:19px;
  822. background:inherit;
  823. background-color:rgba(255, 255, 255, 0);
  824. border:none;
  825. border-radius:0px;
  826. -moz-box-shadow:none;
  827. -webkit-box-shadow:none;
  828. box-shadow:none;
  829. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  830. font-weight:700;
  831. font-style:normal;
  832. font-size:16px;
  833. }
  834. #u1832 {
  835. border-width:0px;
  836. position:absolute;
  837. left:1216px;
  838. top:752px;
  839. width:102px;
  840. height:19px;
  841. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  842. font-weight:700;
  843. font-style:normal;
  844. font-size:16px;
  845. }
  846. #u1832_text {
  847. border-width:0px;
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:102px;
  852. word-wrap:break-word;
  853. }
  854. #u1833_div {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:352px;
  860. height:47px;
  861. background:inherit;
  862. background-color:rgba(255, 255, 255, 0);
  863. border:none;
  864. border-radius:0px;
  865. -moz-box-shadow:none;
  866. -webkit-box-shadow:none;
  867. box-shadow:none;
  868. line-height:22px;
  869. }
  870. #u1833 {
  871. border-width:0px;
  872. position:absolute;
  873. left:1216px;
  874. top:790px;
  875. width:352px;
  876. height:47px;
  877. line-height:22px;
  878. }
  879. #u1833_text {
  880. border-width:0px;
  881. position:absolute;
  882. left:0px;
  883. top:0px;
  884. width:352px;
  885. word-wrap:break-word;
  886. }
  887. #u1834 {
  888. border-width:0px;
  889. position:absolute;
  890. left:0px;
  891. top:0px;
  892. width:0px;
  893. height:0px;
  894. }
  895. #u1835_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:-4px;
  899. top:-4px;
  900. width:40px;
  901. height:40px;
  902. }
  903. #u1835 {
  904. border-width:0px;
  905. position:absolute;
  906. left:1176px;
  907. top:847px;
  908. width:30px;
  909. height:30px;
  910. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  911. font-weight:700;
  912. font-style:normal;
  913. font-size:18px;
  914. color:#1E1E1E;
  915. }
  916. #u1835_text {
  917. border-width:0px;
  918. position:absolute;
  919. left:2px;
  920. top:4px;
  921. width:26px;
  922. word-wrap:break-word;
  923. }
  924. #u1836_div {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:102px;
  930. height:19px;
  931. background:inherit;
  932. background-color:rgba(255, 255, 255, 0);
  933. border:none;
  934. border-radius:0px;
  935. -moz-box-shadow:none;
  936. -webkit-box-shadow:none;
  937. box-shadow:none;
  938. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  939. font-weight:700;
  940. font-style:normal;
  941. font-size:16px;
  942. }
  943. #u1836 {
  944. border-width:0px;
  945. position:absolute;
  946. left:1216px;
  947. top:854px;
  948. width:102px;
  949. height:19px;
  950. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  951. font-weight:700;
  952. font-style:normal;
  953. font-size:16px;
  954. }
  955. #u1836_text {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:102px;
  961. word-wrap:break-word;
  962. }
  963. #u1837_div {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:352px;
  969. height:29px;
  970. background:inherit;
  971. background-color:rgba(255, 255, 255, 0);
  972. border:none;
  973. border-radius:0px;
  974. -moz-box-shadow:none;
  975. -webkit-box-shadow:none;
  976. box-shadow:none;
  977. line-height:22px;
  978. }
  979. #u1837 {
  980. border-width:0px;
  981. position:absolute;
  982. left:1216px;
  983. top:892px;
  984. width:352px;
  985. height:29px;
  986. line-height:22px;
  987. }
  988. #u1837_text {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:352px;
  994. word-wrap:break-word;
  995. }
  996. #u1838_div {
  997. border-width:0px;
  998. position:absolute;
  999. left:0px;
  1000. top:0px;
  1001. width:260px;
  1002. height:24px;
  1003. background:inherit;
  1004. background-color:rgba(255, 255, 255, 0);
  1005. border:none;
  1006. border-radius:0px;
  1007. -moz-box-shadow:none;
  1008. -webkit-box-shadow:none;
  1009. box-shadow:none;
  1010. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1011. font-weight:700;
  1012. font-style:normal;
  1013. font-size:20px;
  1014. }
  1015. #u1838 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:21px;
  1019. top:969px;
  1020. width:260px;
  1021. height:24px;
  1022. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1023. font-weight:700;
  1024. font-style:normal;
  1025. font-size:20px;
  1026. }
  1027. #u1838_text {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:260px;
  1033. white-space:nowrap;
  1034. }
  1035. #u1839_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:1155px;
  1041. height:583px;
  1042. }
  1043. #u1839 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:21px;
  1047. top:1028px;
  1048. width:1155px;
  1049. height:583px;
  1050. }
  1051. #u1839_text {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:0px;
  1057. visibility:hidden;
  1058. word-wrap:break-word;
  1059. }
  1060. #u1840 {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:0px;
  1064. top:0px;
  1065. width:0px;
  1066. height:0px;
  1067. }
  1068. #u1841_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:-4px;
  1072. top:-4px;
  1073. width:40px;
  1074. height:40px;
  1075. }
  1076. #u1841 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:1204px;
  1080. top:1079px;
  1081. width:30px;
  1082. height:30px;
  1083. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1084. font-weight:700;
  1085. font-style:normal;
  1086. font-size:18px;
  1087. color:#1E1E1E;
  1088. }
  1089. #u1841_text {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:2px;
  1093. top:4px;
  1094. width:26px;
  1095. word-wrap:break-word;
  1096. }
  1097. #u1842_div {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:131px;
  1103. height:19px;
  1104. background:inherit;
  1105. background-color:rgba(255, 255, 255, 0);
  1106. border:none;
  1107. border-radius:0px;
  1108. -moz-box-shadow:none;
  1109. -webkit-box-shadow:none;
  1110. box-shadow:none;
  1111. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1112. font-weight:700;
  1113. font-style:normal;
  1114. font-size:16px;
  1115. }
  1116. #u1842 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:1244px;
  1120. top:1086px;
  1121. width:131px;
  1122. height:19px;
  1123. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1124. font-weight:700;
  1125. font-style:normal;
  1126. font-size:16px;
  1127. }
  1128. #u1842_text {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:131px;
  1134. word-wrap:break-word;
  1135. }
  1136. #u1843_div {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:352px;
  1142. height:44px;
  1143. background:inherit;
  1144. background-color:rgba(255, 255, 255, 0);
  1145. border:none;
  1146. border-radius:0px;
  1147. -moz-box-shadow:none;
  1148. -webkit-box-shadow:none;
  1149. box-shadow:none;
  1150. line-height:22px;
  1151. }
  1152. #u1843 {
  1153. border-width:0px;
  1154. position:absolute;
  1155. left:1244px;
  1156. top:1124px;
  1157. width:352px;
  1158. height:44px;
  1159. line-height:22px;
  1160. }
  1161. #u1843_text {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:352px;
  1167. word-wrap:break-word;
  1168. }
  1169. #u1844 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:0px;
  1175. height:0px;
  1176. }
  1177. #u1845_img {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:-4px;
  1181. top:-4px;
  1182. width:40px;
  1183. height:40px;
  1184. }
  1185. #u1845 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:1204px;
  1189. top:1178px;
  1190. width:30px;
  1191. height:30px;
  1192. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1193. font-weight:700;
  1194. font-style:normal;
  1195. font-size:18px;
  1196. color:#1E1E1E;
  1197. }
  1198. #u1845_text {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:2px;
  1202. top:4px;
  1203. width:26px;
  1204. word-wrap:break-word;
  1205. }
  1206. #u1846_div {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:67px;
  1212. height:19px;
  1213. background:inherit;
  1214. background-color:rgba(255, 255, 255, 0);
  1215. border:none;
  1216. border-radius:0px;
  1217. -moz-box-shadow:none;
  1218. -webkit-box-shadow:none;
  1219. box-shadow:none;
  1220. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1221. font-weight:700;
  1222. font-style:normal;
  1223. font-size:16px;
  1224. }
  1225. #u1846 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:1244px;
  1229. top:1185px;
  1230. width:67px;
  1231. height:19px;
  1232. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1233. font-weight:700;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. }
  1237. #u1846_text {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:67px;
  1243. word-wrap:break-word;
  1244. }
  1245. #u1847_div {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:352px;
  1251. height:66px;
  1252. background:inherit;
  1253. background-color:rgba(255, 255, 255, 0);
  1254. border:none;
  1255. border-radius:0px;
  1256. -moz-box-shadow:none;
  1257. -webkit-box-shadow:none;
  1258. box-shadow:none;
  1259. line-height:22px;
  1260. }
  1261. #u1847 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:1244px;
  1265. top:1223px;
  1266. width:352px;
  1267. height:66px;
  1268. line-height:22px;
  1269. }
  1270. #u1847_text {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:0px;
  1274. top:0px;
  1275. width:352px;
  1276. word-wrap:break-word;
  1277. }
  1278. #u1848 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:0px;
  1284. height:0px;
  1285. }
  1286. #u1849_img {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:-4px;
  1290. top:-4px;
  1291. width:40px;
  1292. height:40px;
  1293. }
  1294. #u1849 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:1204px;
  1298. top:1409px;
  1299. width:30px;
  1300. height:30px;
  1301. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1302. font-weight:700;
  1303. font-style:normal;
  1304. font-size:18px;
  1305. color:#1E1E1E;
  1306. }
  1307. #u1849_text {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:2px;
  1311. top:4px;
  1312. width:26px;
  1313. word-wrap:break-word;
  1314. }
  1315. #u1850_div {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:102px;
  1321. height:19px;
  1322. background:inherit;
  1323. background-color:rgba(255, 255, 255, 0);
  1324. border:none;
  1325. border-radius:0px;
  1326. -moz-box-shadow:none;
  1327. -webkit-box-shadow:none;
  1328. box-shadow:none;
  1329. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1330. font-weight:700;
  1331. font-style:normal;
  1332. font-size:16px;
  1333. }
  1334. #u1850 {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:1244px;
  1338. top:1416px;
  1339. width:102px;
  1340. height:19px;
  1341. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1342. font-weight:700;
  1343. font-style:normal;
  1344. font-size:16px;
  1345. }
  1346. #u1850_text {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:0px;
  1350. top:0px;
  1351. width:102px;
  1352. word-wrap:break-word;
  1353. }
  1354. #u1851_div {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:352px;
  1360. height:51px;
  1361. background:inherit;
  1362. background-color:rgba(255, 255, 255, 0);
  1363. border:none;
  1364. border-radius:0px;
  1365. -moz-box-shadow:none;
  1366. -webkit-box-shadow:none;
  1367. box-shadow:none;
  1368. line-height:22px;
  1369. }
  1370. #u1851 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:1244px;
  1374. top:1454px;
  1375. width:352px;
  1376. height:51px;
  1377. line-height:22px;
  1378. }
  1379. #u1851_text {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:0px;
  1383. top:0px;
  1384. width:352px;
  1385. word-wrap:break-word;
  1386. }
  1387. #u1852 {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:0px;
  1391. top:0px;
  1392. width:0px;
  1393. height:0px;
  1394. }
  1395. #u1853_img {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:-4px;
  1399. top:-4px;
  1400. width:40px;
  1401. height:40px;
  1402. }
  1403. #u1853 {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:1204px;
  1407. top:1304px;
  1408. width:30px;
  1409. height:30px;
  1410. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1411. font-weight:700;
  1412. font-style:normal;
  1413. font-size:18px;
  1414. color:#1E1E1E;
  1415. }
  1416. #u1853_text {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:2px;
  1420. top:4px;
  1421. width:26px;
  1422. word-wrap:break-word;
  1423. }
  1424. #u1854_div {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:102px;
  1430. height:19px;
  1431. background:inherit;
  1432. background-color:rgba(255, 255, 255, 0);
  1433. border:none;
  1434. border-radius:0px;
  1435. -moz-box-shadow:none;
  1436. -webkit-box-shadow:none;
  1437. box-shadow:none;
  1438. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1439. font-weight:700;
  1440. font-style:normal;
  1441. font-size:16px;
  1442. }
  1443. #u1854 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:1244px;
  1447. top:1311px;
  1448. width:102px;
  1449. height:19px;
  1450. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1451. font-weight:700;
  1452. font-style:normal;
  1453. font-size:16px;
  1454. }
  1455. #u1854_text {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:102px;
  1461. word-wrap:break-word;
  1462. }
  1463. #u1855_div {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:0px;
  1467. top:0px;
  1468. width:352px;
  1469. height:50px;
  1470. background:inherit;
  1471. background-color:rgba(255, 255, 255, 0);
  1472. border:none;
  1473. border-radius:0px;
  1474. -moz-box-shadow:none;
  1475. -webkit-box-shadow:none;
  1476. box-shadow:none;
  1477. line-height:22px;
  1478. }
  1479. #u1855 {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:1244px;
  1483. top:1349px;
  1484. width:352px;
  1485. height:50px;
  1486. line-height:22px;
  1487. }
  1488. #u1855_text {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:352px;
  1494. word-wrap:break-word;
  1495. }
  1496. #u1856 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:0px;
  1502. height:0px;
  1503. }
  1504. #u1857_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:-4px;
  1508. top:-4px;
  1509. width:40px;
  1510. height:40px;
  1511. }
  1512. #u1857 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:1204px;
  1516. top:1515px;
  1517. width:30px;
  1518. height:30px;
  1519. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1520. font-weight:700;
  1521. font-style:normal;
  1522. font-size:18px;
  1523. color:#1E1E1E;
  1524. }
  1525. #u1857_text {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:2px;
  1529. top:4px;
  1530. width:26px;
  1531. word-wrap:break-word;
  1532. }
  1533. #u1858_div {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:102px;
  1539. height:19px;
  1540. background:inherit;
  1541. background-color:rgba(255, 255, 255, 0);
  1542. border:none;
  1543. border-radius:0px;
  1544. -moz-box-shadow:none;
  1545. -webkit-box-shadow:none;
  1546. box-shadow:none;
  1547. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1548. font-weight:700;
  1549. font-style:normal;
  1550. font-size:16px;
  1551. }
  1552. #u1858 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:1244px;
  1556. top:1522px;
  1557. width:102px;
  1558. height:19px;
  1559. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1560. font-weight:700;
  1561. font-style:normal;
  1562. font-size:16px;
  1563. }
  1564. #u1858_text {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:0px;
  1568. top:0px;
  1569. width:102px;
  1570. word-wrap:break-word;
  1571. }
  1572. #u1859_div {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:352px;
  1578. height:51px;
  1579. background:inherit;
  1580. background-color:rgba(255, 255, 255, 0);
  1581. border:none;
  1582. border-radius:0px;
  1583. -moz-box-shadow:none;
  1584. -webkit-box-shadow:none;
  1585. box-shadow:none;
  1586. line-height:22px;
  1587. }
  1588. #u1859 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:1244px;
  1592. top:1560px;
  1593. width:352px;
  1594. height:51px;
  1595. line-height:22px;
  1596. }
  1597. #u1859_text {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:352px;
  1603. word-wrap:break-word;
  1604. }
  1605. #u1860_div {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:258px;
  1611. height:24px;
  1612. background:inherit;
  1613. background-color:rgba(255, 255, 255, 0);
  1614. border:none;
  1615. border-radius:0px;
  1616. -moz-box-shadow:none;
  1617. -webkit-box-shadow:none;
  1618. box-shadow:none;
  1619. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1620. font-weight:700;
  1621. font-style:normal;
  1622. font-size:20px;
  1623. }
  1624. #u1860 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:21px;
  1628. top:1710px;
  1629. width:258px;
  1630. height:24px;
  1631. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1632. font-weight:700;
  1633. font-style:normal;
  1634. font-size:20px;
  1635. }
  1636. #u1860_text {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:260px;
  1642. white-space:nowrap;
  1643. }
  1644. #u1861_img {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:1155px;
  1650. height:583px;
  1651. }
  1652. #u1861 {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:21px;
  1656. top:1781px;
  1657. width:1155px;
  1658. height:583px;
  1659. }
  1660. #u1861_text {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:0px;
  1664. top:0px;
  1665. width:0px;
  1666. visibility:hidden;
  1667. word-wrap:break-word;
  1668. }
  1669. #u1862 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:0px;
  1675. height:0px;
  1676. }
  1677. #u1863_img {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:-4px;
  1681. top:-4px;
  1682. width:40px;
  1683. height:40px;
  1684. }
  1685. #u1863 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:1186px;
  1689. top:1781px;
  1690. width:30px;
  1691. height:30px;
  1692. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1693. font-weight:700;
  1694. font-style:normal;
  1695. font-size:18px;
  1696. color:#1E1E1E;
  1697. }
  1698. #u1863_text {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:2px;
  1702. top:4px;
  1703. width:26px;
  1704. word-wrap:break-word;
  1705. }
  1706. #u1864_div {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:0px;
  1710. top:0px;
  1711. width:131px;
  1712. height:19px;
  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';
  1721. font-weight:700;
  1722. font-style:normal;
  1723. font-size:16px;
  1724. }
  1725. #u1864 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:1226px;
  1729. top:1788px;
  1730. width:131px;
  1731. height:19px;
  1732. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1733. font-weight:700;
  1734. font-style:normal;
  1735. font-size:16px;
  1736. }
  1737. #u1864_text {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:131px;
  1743. word-wrap:break-word;
  1744. }
  1745. #u1865_div {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:0px;
  1749. top:0px;
  1750. width:352px;
  1751. height:44px;
  1752. background:inherit;
  1753. background-color:rgba(255, 255, 255, 0);
  1754. border:none;
  1755. border-radius:0px;
  1756. -moz-box-shadow:none;
  1757. -webkit-box-shadow:none;
  1758. box-shadow:none;
  1759. line-height:22px;
  1760. }
  1761. #u1865 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:1226px;
  1765. top:1826px;
  1766. width:352px;
  1767. height:44px;
  1768. line-height:22px;
  1769. }
  1770. #u1865_text {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:352px;
  1776. word-wrap:break-word;
  1777. }
  1778. #u1866 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:0px;
  1784. height:0px;
  1785. }
  1786. #u1867_img {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:-4px;
  1790. top:-4px;
  1791. width:40px;
  1792. height:40px;
  1793. }
  1794. #u1867 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:1186px;
  1798. top:1880px;
  1799. width:30px;
  1800. height:30px;
  1801. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1802. font-weight:700;
  1803. font-style:normal;
  1804. font-size:18px;
  1805. color:#1E1E1E;
  1806. }
  1807. #u1867_text {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:2px;
  1811. top:4px;
  1812. width:26px;
  1813. word-wrap:break-word;
  1814. }
  1815. #u1868_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:67px;
  1821. height:19px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-radius:0px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1830. font-weight:700;
  1831. font-style:normal;
  1832. font-size:16px;
  1833. }
  1834. #u1868 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:1226px;
  1838. top:1887px;
  1839. width:67px;
  1840. height:19px;
  1841. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1842. font-weight:700;
  1843. font-style:normal;
  1844. font-size:16px;
  1845. }
  1846. #u1868_text {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:67px;
  1852. word-wrap:break-word;
  1853. }
  1854. #u1869_div {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:352px;
  1860. height:176px;
  1861. background:inherit;
  1862. background-color:rgba(255, 255, 255, 0);
  1863. border:none;
  1864. border-radius:0px;
  1865. -moz-box-shadow:none;
  1866. -webkit-box-shadow:none;
  1867. box-shadow:none;
  1868. line-height:22px;
  1869. }
  1870. #u1869 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:1226px;
  1874. top:1925px;
  1875. width:352px;
  1876. height:176px;
  1877. line-height:22px;
  1878. }
  1879. #u1869_text {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:352px;
  1885. word-wrap:break-word;
  1886. }
  1887. #u1870 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:0px;
  1893. height:0px;
  1894. }
  1895. #u1871_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:-4px;
  1899. top:-4px;
  1900. width:40px;
  1901. height:40px;
  1902. }
  1903. #u1871 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:1186px;
  1907. top:2111px;
  1908. width:30px;
  1909. height:30px;
  1910. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1911. font-weight:700;
  1912. font-style:normal;
  1913. font-size:18px;
  1914. color:#1E1E1E;
  1915. }
  1916. #u1871_text {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:2px;
  1920. top:4px;
  1921. width:26px;
  1922. word-wrap:break-word;
  1923. }
  1924. #u1872_div {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:102px;
  1930. height:19px;
  1931. background:inherit;
  1932. background-color:rgba(255, 255, 255, 0);
  1933. border:none;
  1934. border-radius:0px;
  1935. -moz-box-shadow:none;
  1936. -webkit-box-shadow:none;
  1937. box-shadow:none;
  1938. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1939. font-weight:700;
  1940. font-style:normal;
  1941. font-size:16px;
  1942. }
  1943. #u1872 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:1226px;
  1947. top:2118px;
  1948. width:102px;
  1949. height:19px;
  1950. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1951. font-weight:700;
  1952. font-style:normal;
  1953. font-size:16px;
  1954. }
  1955. #u1872_text {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:102px;
  1961. word-wrap:break-word;
  1962. }
  1963. #u1873_div {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:352px;
  1969. height:66px;
  1970. background:inherit;
  1971. background-color:rgba(255, 255, 255, 0);
  1972. border:none;
  1973. border-radius:0px;
  1974. -moz-box-shadow:none;
  1975. -webkit-box-shadow:none;
  1976. box-shadow:none;
  1977. line-height:22px;
  1978. }
  1979. #u1873 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:1226px;
  1983. top:2156px;
  1984. width:352px;
  1985. height:66px;
  1986. line-height:22px;
  1987. }
  1988. #u1873_text {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:352px;
  1994. word-wrap:break-word;
  1995. }
  1996. #u1874 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:0px;
  2002. height:0px;
  2003. }
  2004. #u1875_img {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:-4px;
  2008. top:-4px;
  2009. width:40px;
  2010. height:40px;
  2011. }
  2012. #u1875 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:1186px;
  2016. top:2232px;
  2017. width:30px;
  2018. height:30px;
  2019. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2020. font-weight:700;
  2021. font-style:normal;
  2022. font-size:18px;
  2023. color:#1E1E1E;
  2024. }
  2025. #u1875_text {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:2px;
  2029. top:4px;
  2030. width:26px;
  2031. word-wrap:break-word;
  2032. }
  2033. #u1876_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:102px;
  2039. height:19px;
  2040. background:inherit;
  2041. background-color:rgba(255, 255, 255, 0);
  2042. border:none;
  2043. border-radius:0px;
  2044. -moz-box-shadow:none;
  2045. -webkit-box-shadow:none;
  2046. box-shadow:none;
  2047. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2048. font-weight:700;
  2049. font-style:normal;
  2050. font-size:16px;
  2051. }
  2052. #u1876 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:1226px;
  2056. top:2239px;
  2057. width:102px;
  2058. height:19px;
  2059. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2060. font-weight:700;
  2061. font-style:normal;
  2062. font-size:16px;
  2063. }
  2064. #u1876_text {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:102px;
  2070. word-wrap:break-word;
  2071. }
  2072. #u1877_div {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:352px;
  2078. height:71px;
  2079. background:inherit;
  2080. background-color:rgba(255, 255, 255, 0);
  2081. border:none;
  2082. border-radius:0px;
  2083. -moz-box-shadow:none;
  2084. -webkit-box-shadow:none;
  2085. box-shadow:none;
  2086. line-height:22px;
  2087. }
  2088. #u1877 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:1226px;
  2092. top:2277px;
  2093. width:352px;
  2094. height:71px;
  2095. line-height:22px;
  2096. }
  2097. #u1877_text {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:352px;
  2103. word-wrap:break-word;
  2104. }
  2105. #u1878_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:1155px;
  2111. height:583px;
  2112. }
  2113. #u1878 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:13px;
  2117. top:167px;
  2118. width:1155px;
  2119. height:583px;
  2120. }
  2121. #u1878_text {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:0px;
  2127. visibility:hidden;
  2128. word-wrap:break-word;
  2129. }
  2130. #u1879_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:-4px;
  2134. top:-4px;
  2135. width:30px;
  2136. height:30px;
  2137. }
  2138. #u1879 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:662px;
  2142. top:172px;
  2143. width:20px;
  2144. height:20px;
  2145. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2146. font-weight:700;
  2147. font-style:normal;
  2148. font-size:14px;
  2149. color:#1E1E1E;
  2150. }
  2151. #u1879_text {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:2px;
  2155. top:2px;
  2156. width:16px;
  2157. word-wrap:break-word;
  2158. }
  2159. #u1880_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:-4px;
  2163. top:-4px;
  2164. width:30px;
  2165. height:30px;
  2166. }
  2167. #u1880 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:60px;
  2171. top:258px;
  2172. width:20px;
  2173. height:20px;
  2174. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2175. font-weight:700;
  2176. font-style:normal;
  2177. font-size:14px;
  2178. color:#1E1E1E;
  2179. }
  2180. #u1880_text {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:2px;
  2184. top:2px;
  2185. width:16px;
  2186. word-wrap:break-word;
  2187. }
  2188. #u1881_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:-4px;
  2192. top:-4px;
  2193. width:30px;
  2194. height:30px;
  2195. }
  2196. #u1881 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:90px;
  2200. top:326px;
  2201. width:20px;
  2202. height:20px;
  2203. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2204. font-weight:700;
  2205. font-style:normal;
  2206. font-size:14px;
  2207. color:#1E1E1E;
  2208. }
  2209. #u1881_text {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:2px;
  2213. top:2px;
  2214. width:16px;
  2215. word-wrap:break-word;
  2216. }
  2217. #u1882_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:-4px;
  2221. top:-4px;
  2222. width:30px;
  2223. height:30px;
  2224. }
  2225. #u1882 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:243px;
  2229. top:326px;
  2230. width:20px;
  2231. height:20px;
  2232. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2233. font-weight:700;
  2234. font-style:normal;
  2235. font-size:14px;
  2236. color:#1E1E1E;
  2237. }
  2238. #u1882_text {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:2px;
  2242. top:2px;
  2243. width:16px;
  2244. word-wrap:break-word;
  2245. }
  2246. #u1883_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:-4px;
  2250. top:-4px;
  2251. width:30px;
  2252. height:30px;
  2253. }
  2254. #u1883 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:622px;
  2258. top:390px;
  2259. width:20px;
  2260. height:20px;
  2261. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2262. font-weight:700;
  2263. font-style:normal;
  2264. font-size:14px;
  2265. color:#1E1E1E;
  2266. }
  2267. #u1883_text {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:2px;
  2271. top:2px;
  2272. width:16px;
  2273. word-wrap:break-word;
  2274. }
  2275. #u1884_img {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:-4px;
  2279. top:-4px;
  2280. width:30px;
  2281. height:30px;
  2282. }
  2283. #u1884 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:721px;
  2287. top:390px;
  2288. width:20px;
  2289. height:20px;
  2290. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2291. font-weight:700;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. color:#1E1E1E;
  2295. }
  2296. #u1884_text {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:2px;
  2300. top:2px;
  2301. width:16px;
  2302. word-wrap:break-word;
  2303. }
  2304. #u1885_img {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:-4px;
  2308. top:-4px;
  2309. width:30px;
  2310. height:30px;
  2311. }
  2312. #u1885 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:923px;
  2316. top:390px;
  2317. width:20px;
  2318. height:20px;
  2319. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2320. font-weight:700;
  2321. font-style:normal;
  2322. font-size:14px;
  2323. color:#1E1E1E;
  2324. }
  2325. #u1885_text {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:2px;
  2329. top:2px;
  2330. width:16px;
  2331. word-wrap:break-word;
  2332. }
  2333. #u1886_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:-4px;
  2337. top:-4px;
  2338. width:30px;
  2339. height:30px;
  2340. }
  2341. #u1886 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:978px;
  2345. top:390px;
  2346. width:20px;
  2347. height:20px;
  2348. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2349. font-weight:700;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. color:#1E1E1E;
  2353. }
  2354. #u1886_text {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:2px;
  2358. top:2px;
  2359. width:16px;
  2360. word-wrap:break-word;
  2361. }
  2362. #u1887_img {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:-4px;
  2366. top:-4px;
  2367. width:30px;
  2368. height:30px;
  2369. }
  2370. #u1887 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:331px;
  2374. top:1195px;
  2375. width:20px;
  2376. height:20px;
  2377. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2378. font-weight:700;
  2379. font-style:normal;
  2380. font-size:14px;
  2381. color:#1E1E1E;
  2382. }
  2383. #u1887_text {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:2px;
  2387. top:2px;
  2388. width:16px;
  2389. word-wrap:break-word;
  2390. }
  2391. #u1888_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:-4px;
  2395. top:-4px;
  2396. width:30px;
  2397. height:30px;
  2398. }
  2399. #u1888 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:232px;
  2403. top:1318px;
  2404. width:20px;
  2405. height:20px;
  2406. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2407. font-weight:700;
  2408. font-style:normal;
  2409. font-size:14px;
  2410. color:#1E1E1E;
  2411. }
  2412. #u1888_text {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:2px;
  2416. top:2px;
  2417. width:16px;
  2418. word-wrap:break-word;
  2419. }
  2420. #u1889_img {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:-4px;
  2424. top:-4px;
  2425. width:30px;
  2426. height:30px;
  2427. }
  2428. #u1889 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:644px;
  2432. top:1367px;
  2433. width:20px;
  2434. height:20px;
  2435. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2436. font-weight:700;
  2437. font-style:normal;
  2438. font-size:14px;
  2439. color:#1E1E1E;
  2440. }
  2441. #u1889_text {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:2px;
  2445. top:2px;
  2446. width:16px;
  2447. word-wrap:break-word;
  2448. }
  2449. #u1890_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:-4px;
  2453. top:-4px;
  2454. width:30px;
  2455. height:30px;
  2456. }
  2457. #u1890 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:769px;
  2461. top:1367px;
  2462. width:20px;
  2463. height:20px;
  2464. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2465. font-weight:700;
  2466. font-style:normal;
  2467. font-size:14px;
  2468. color:#1E1E1E;
  2469. }
  2470. #u1890_text {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:2px;
  2474. top:2px;
  2475. width:16px;
  2476. word-wrap:break-word;
  2477. }
  2478. #u1891_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:-4px;
  2482. top:-4px;
  2483. width:30px;
  2484. height:30px;
  2485. }
  2486. #u1891 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:1022px;
  2490. top:1409px;
  2491. width:20px;
  2492. height:20px;
  2493. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2494. font-weight:700;
  2495. font-style:normal;
  2496. font-size:14px;
  2497. color:#1E1E1E;
  2498. }
  2499. #u1891_text {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:2px;
  2503. top:2px;
  2504. width:16px;
  2505. word-wrap:break-word;
  2506. }
  2507. #u1892_img {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:-4px;
  2511. top:-4px;
  2512. width:30px;
  2513. height:30px;
  2514. }
  2515. #u1892 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:572px;
  2519. top:1948px;
  2520. width:20px;
  2521. height:20px;
  2522. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2523. font-weight:700;
  2524. font-style:normal;
  2525. font-size:14px;
  2526. color:#1E1E1E;
  2527. }
  2528. #u1892_text {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:2px;
  2532. top:2px;
  2533. width:16px;
  2534. word-wrap:break-word;
  2535. }
  2536. #u1893_img {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:-4px;
  2540. top:-4px;
  2541. width:30px;
  2542. height:30px;
  2543. }
  2544. #u1893 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:336px;
  2548. top:2063px;
  2549. width:20px;
  2550. height:20px;
  2551. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2552. font-weight:700;
  2553. font-style:normal;
  2554. font-size:14px;
  2555. color:#1E1E1E;
  2556. }
  2557. #u1893_text {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:2px;
  2561. top:2px;
  2562. width:16px;
  2563. word-wrap:break-word;
  2564. }
  2565. #u1894_img {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:-4px;
  2569. top:-4px;
  2570. width:30px;
  2571. height:30px;
  2572. }
  2573. #u1894 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:1014px;
  2577. top:2164px;
  2578. width:20px;
  2579. height:20px;
  2580. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2581. font-weight:700;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. color:#1E1E1E;
  2585. }
  2586. #u1894_text {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:2px;
  2590. top:2px;
  2591. width:16px;
  2592. word-wrap:break-word;
  2593. }
  2594. #u1895_img {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:-4px;
  2598. top:-4px;
  2599. width:30px;
  2600. height:30px;
  2601. }
  2602. #u1895 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:1078px;
  2606. top:2164px;
  2607. width:20px;
  2608. height:20px;
  2609. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2610. font-weight:700;
  2611. font-style:normal;
  2612. font-size:14px;
  2613. color:#1E1E1E;
  2614. }
  2615. #u1895_text {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:2px;
  2619. top:2px;
  2620. width:16px;
  2621. word-wrap:break-word;
  2622. }
  2623. #u1896 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:1458px;
  2627. top:1968px;
  2628. width:28px;
  2629. height:25px;
  2630. overflow:hidden;
  2631. background-image:url('../../resources/images/transparent.gif');
  2632. }
  2633. #u1897_div {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:301px;
  2639. height:74px;
  2640. background:inherit;
  2641. background-color:rgba(255, 255, 0, 1);
  2642. box-sizing:border-box;
  2643. border-width:1px;
  2644. border-style:solid;
  2645. border-color:rgba(0, 0, 0, 1);
  2646. border-radius:10px;
  2647. -moz-box-shadow:none;
  2648. -webkit-box-shadow:none;
  2649. box-shadow:none;
  2650. text-align:left;
  2651. line-height:18px;
  2652. }
  2653. #u1897 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1252px;
  2657. top:1880px;
  2658. width:301px;
  2659. height:74px;
  2660. text-align:left;
  2661. line-height:18px;
  2662. }
  2663. #u1897_text {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:2px;
  2667. top:18px;
  2668. width:297px;
  2669. word-wrap:break-word;
  2670. }