styles.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106
  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. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u2814 {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:0px;
  21. height:0px;
  22. }
  23. #u2815_img {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:0px;
  28. width:8px;
  29. height:28px;
  30. }
  31. #u2815 {
  32. border-width:0px;
  33. position:absolute;
  34. left:7px;
  35. top:21px;
  36. width:8px;
  37. height:28px;
  38. }
  39. #u2815_text {
  40. border-width:0px;
  41. position:absolute;
  42. left:0px;
  43. top:0px;
  44. width:0px;
  45. visibility:hidden;
  46. word-wrap:break-word;
  47. }
  48. #u2816_div {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:121px;
  54. height:28px;
  55. background:inherit;
  56. background-color:rgba(255, 255, 255, 0);
  57. border:none;
  58. border-radius:0px;
  59. -moz-box-shadow:none;
  60. -webkit-box-shadow:none;
  61. box-shadow:none;
  62. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  63. font-weight:700;
  64. font-style:normal;
  65. }
  66. #u2816 {
  67. border-width:0px;
  68. position:absolute;
  69. left:21px;
  70. top:21px;
  71. width:121px;
  72. height:28px;
  73. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  74. font-weight:700;
  75. font-style:normal;
  76. }
  77. #u2816_text {
  78. border-width:0px;
  79. position:absolute;
  80. left:0px;
  81. top:0px;
  82. width:121px;
  83. white-space:nowrap;
  84. }
  85. #u2817_div {
  86. border-width:0px;
  87. position:absolute;
  88. left:0px;
  89. top:0px;
  90. width:109px;
  91. height:22px;
  92. background:inherit;
  93. background-color:rgba(255, 255, 255, 0);
  94. border:none;
  95. border-radius:0px;
  96. -moz-box-shadow:none;
  97. -webkit-box-shadow:none;
  98. box-shadow:none;
  99. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  100. font-weight:700;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u2817 {
  105. border-width:0px;
  106. position:absolute;
  107. left:21px;
  108. top:77px;
  109. width:109px;
  110. height:22px;
  111. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  112. font-weight:700;
  113. font-style:normal;
  114. font-size:18px;
  115. }
  116. #u2817_text {
  117. border-width:0px;
  118. position:absolute;
  119. left:0px;
  120. top:0px;
  121. width:109px;
  122. white-space:nowrap;
  123. }
  124. #u2818_div {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:215px;
  130. height:22px;
  131. background:inherit;
  132. background-color:rgba(255, 255, 255, 0);
  133. border:none;
  134. border-radius:0px;
  135. -moz-box-shadow:none;
  136. -webkit-box-shadow:none;
  137. box-shadow:none;
  138. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  139. font-weight:700;
  140. font-style:normal;
  141. font-size:18px;
  142. }
  143. #u2818 {
  144. border-width:0px;
  145. position:absolute;
  146. left:21px;
  147. top:222px;
  148. width:215px;
  149. height:22px;
  150. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  151. font-weight:700;
  152. font-style:normal;
  153. font-size:18px;
  154. }
  155. #u2818_text {
  156. border-width:0px;
  157. position:absolute;
  158. left:0px;
  159. top:0px;
  160. width:215px;
  161. white-space:nowrap;
  162. }
  163. #u2819_img {
  164. border-width:0px;
  165. position:absolute;
  166. left:0px;
  167. top:0px;
  168. width:1155px;
  169. height:583px;
  170. }
  171. #u2819 {
  172. border-width:0px;
  173. position:absolute;
  174. left:21px;
  175. top:281px;
  176. width:1155px;
  177. height:583px;
  178. }
  179. #u2819_text {
  180. border-width:0px;
  181. position:absolute;
  182. left:0px;
  183. top:0px;
  184. width:0px;
  185. visibility:hidden;
  186. word-wrap:break-word;
  187. }
  188. #u2820_img {
  189. border-width:0px;
  190. position:absolute;
  191. left:-4px;
  192. top:-4px;
  193. width:30px;
  194. height:30px;
  195. }
  196. #u2820 {
  197. border-width:0px;
  198. position:absolute;
  199. left:157px;
  200. top:394px;
  201. width:20px;
  202. height:20px;
  203. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  204. font-weight:700;
  205. font-style:normal;
  206. font-size:14px;
  207. color:#1E1E1E;
  208. }
  209. #u2820_text {
  210. border-width:0px;
  211. position:absolute;
  212. left:2px;
  213. top:2px;
  214. width:16px;
  215. word-wrap:break-word;
  216. }
  217. #u2821_img {
  218. border-width:0px;
  219. position:absolute;
  220. left:-4px;
  221. top:-4px;
  222. width:30px;
  223. height:30px;
  224. }
  225. #u2821 {
  226. border-width:0px;
  227. position:absolute;
  228. left:346px;
  229. top:394px;
  230. width:20px;
  231. height:20px;
  232. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  233. font-weight:700;
  234. font-style:normal;
  235. font-size:14px;
  236. color:#1E1E1E;
  237. }
  238. #u2821_text {
  239. border-width:0px;
  240. position:absolute;
  241. left:2px;
  242. top:2px;
  243. width:16px;
  244. word-wrap:break-word;
  245. }
  246. #u2822_img {
  247. border-width:0px;
  248. position:absolute;
  249. left:-4px;
  250. top:-4px;
  251. width:30px;
  252. height:30px;
  253. }
  254. #u2822 {
  255. border-width:0px;
  256. position:absolute;
  257. left:438px;
  258. top:394px;
  259. width:20px;
  260. height:20px;
  261. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  262. font-weight:700;
  263. font-style:normal;
  264. font-size:14px;
  265. color:#1E1E1E;
  266. }
  267. #u2822_text {
  268. border-width:0px;
  269. position:absolute;
  270. left:2px;
  271. top:2px;
  272. width:16px;
  273. word-wrap:break-word;
  274. }
  275. #u2823_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:-4px;
  279. top:-4px;
  280. width:30px;
  281. height:30px;
  282. }
  283. #u2823 {
  284. border-width:0px;
  285. position:absolute;
  286. left:530px;
  287. top:394px;
  288. width:20px;
  289. height:20px;
  290. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  291. font-weight:700;
  292. font-style:normal;
  293. font-size:14px;
  294. color:#1E1E1E;
  295. }
  296. #u2823_text {
  297. border-width:0px;
  298. position:absolute;
  299. left:2px;
  300. top:2px;
  301. width:16px;
  302. word-wrap:break-word;
  303. }
  304. #u2824_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:-4px;
  308. top:-4px;
  309. width:30px;
  310. height:30px;
  311. }
  312. #u2824 {
  313. border-width:0px;
  314. position:absolute;
  315. left:258px;
  316. top:394px;
  317. width:20px;
  318. height:20px;
  319. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  320. font-weight:700;
  321. font-style:normal;
  322. font-size:14px;
  323. color:#1E1E1E;
  324. }
  325. #u2824_text {
  326. border-width:0px;
  327. position:absolute;
  328. left:2px;
  329. top:2px;
  330. width:16px;
  331. word-wrap:break-word;
  332. }
  333. #u2825_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:-4px;
  337. top:-4px;
  338. width:30px;
  339. height:30px;
  340. }
  341. #u2825 {
  342. border-width:0px;
  343. position:absolute;
  344. left:991px;
  345. top:465px;
  346. width:20px;
  347. height:20px;
  348. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  349. font-weight:700;
  350. font-style:normal;
  351. font-size:14px;
  352. color:#1E1E1E;
  353. }
  354. #u2825_text {
  355. border-width:0px;
  356. position:absolute;
  357. left:2px;
  358. top:2px;
  359. width:16px;
  360. word-wrap:break-word;
  361. }
  362. #u2826_img {
  363. border-width:0px;
  364. position:absolute;
  365. left:-4px;
  366. top:-4px;
  367. width:30px;
  368. height:30px;
  369. }
  370. #u2826 {
  371. border-width:0px;
  372. position:absolute;
  373. left:1031px;
  374. top:465px;
  375. width:20px;
  376. height:20px;
  377. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  378. font-weight:700;
  379. font-style:normal;
  380. font-size:14px;
  381. color:#1E1E1E;
  382. }
  383. #u2826_text {
  384. border-width:0px;
  385. position:absolute;
  386. left:2px;
  387. top:2px;
  388. width:16px;
  389. word-wrap:break-word;
  390. }
  391. #u2827_img {
  392. border-width:0px;
  393. position:absolute;
  394. left:-4px;
  395. top:-4px;
  396. width:30px;
  397. height:30px;
  398. }
  399. #u2827 {
  400. border-width:0px;
  401. position:absolute;
  402. left:1077px;
  403. top:465px;
  404. width:20px;
  405. height:20px;
  406. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  407. font-weight:700;
  408. font-style:normal;
  409. font-size:14px;
  410. color:#1E1E1E;
  411. }
  412. #u2827_text {
  413. border-width:0px;
  414. position:absolute;
  415. left:2px;
  416. top:2px;
  417. width:16px;
  418. word-wrap:break-word;
  419. }
  420. #u2828_img {
  421. border-width:0px;
  422. position:absolute;
  423. left:-4px;
  424. top:-4px;
  425. width:30px;
  426. height:30px;
  427. }
  428. #u2828 {
  429. border-width:0px;
  430. position:absolute;
  431. left:1125px;
  432. top:465px;
  433. width:20px;
  434. height:20px;
  435. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  436. font-weight:700;
  437. font-style:normal;
  438. font-size:14px;
  439. color:#1E1E1E;
  440. }
  441. #u2828_text {
  442. border-width:0px;
  443. position:absolute;
  444. left:2px;
  445. top:2px;
  446. width:16px;
  447. word-wrap:break-word;
  448. }
  449. #u2829_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:109px;
  455. height:22px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  464. font-weight:700;
  465. font-style:normal;
  466. font-size:18px;
  467. }
  468. #u2829 {
  469. border-width:0px;
  470. position:absolute;
  471. left:21px;
  472. top:918px;
  473. width:109px;
  474. height:22px;
  475. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  476. font-weight:700;
  477. font-style:normal;
  478. font-size:18px;
  479. }
  480. #u2829_text {
  481. border-width:0px;
  482. position:absolute;
  483. left:0px;
  484. top:0px;
  485. width:109px;
  486. white-space:nowrap;
  487. }
  488. #u2830_img {
  489. border-width:0px;
  490. position:absolute;
  491. left:0px;
  492. top:0px;
  493. width:1155px;
  494. height:583px;
  495. }
  496. #u2830 {
  497. border-width:0px;
  498. position:absolute;
  499. left:21px;
  500. top:950px;
  501. width:1155px;
  502. height:583px;
  503. }
  504. #u2830_text {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:0px;
  510. visibility:hidden;
  511. word-wrap:break-word;
  512. }
  513. #u2831_img {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:1155px;
  519. height:583px;
  520. }
  521. #u2831 {
  522. border-width:0px;
  523. position:absolute;
  524. left:21px;
  525. top:1592px;
  526. width:1155px;
  527. height:583px;
  528. }
  529. #u2831_text {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:0px;
  535. visibility:hidden;
  536. word-wrap:break-word;
  537. }
  538. #u2832_img {
  539. border-width:0px;
  540. position:absolute;
  541. left:0px;
  542. top:0px;
  543. width:1155px;
  544. height:583px;
  545. }
  546. #u2832 {
  547. border-width:0px;
  548. position:absolute;
  549. left:21px;
  550. top:2253px;
  551. width:1155px;
  552. height:583px;
  553. }
  554. #u2832_text {
  555. border-width:0px;
  556. position:absolute;
  557. left:0px;
  558. top:0px;
  559. width:0px;
  560. visibility:hidden;
  561. word-wrap:break-word;
  562. }
  563. #u2833_div {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:91px;
  569. height:22px;
  570. background:inherit;
  571. background-color:rgba(255, 255, 255, 0);
  572. border:none;
  573. border-radius:0px;
  574. -moz-box-shadow:none;
  575. -webkit-box-shadow:none;
  576. box-shadow:none;
  577. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  578. font-weight:700;
  579. font-style:normal;
  580. font-size:18px;
  581. }
  582. #u2833 {
  583. border-width:0px;
  584. position:absolute;
  585. left:21px;
  586. top:1560px;
  587. width:91px;
  588. height:22px;
  589. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  590. font-weight:700;
  591. font-style:normal;
  592. font-size:18px;
  593. }
  594. #u2833_text {
  595. border-width:0px;
  596. position:absolute;
  597. left:0px;
  598. top:0px;
  599. width:91px;
  600. white-space:nowrap;
  601. }
  602. #u2834_div {
  603. border-width:0px;
  604. position:absolute;
  605. left:0px;
  606. top:0px;
  607. width:109px;
  608. height:22px;
  609. background:inherit;
  610. background-color:rgba(255, 255, 255, 0);
  611. border:none;
  612. border-radius:0px;
  613. -moz-box-shadow:none;
  614. -webkit-box-shadow:none;
  615. box-shadow:none;
  616. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  617. font-weight:700;
  618. font-style:normal;
  619. font-size:18px;
  620. }
  621. #u2834 {
  622. border-width:0px;
  623. position:absolute;
  624. left:21px;
  625. top:2221px;
  626. width:109px;
  627. height:22px;
  628. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  629. font-weight:700;
  630. font-style:normal;
  631. font-size:18px;
  632. }
  633. #u2834_text {
  634. border-width:0px;
  635. position:absolute;
  636. left:0px;
  637. top:0px;
  638. width:109px;
  639. white-space:nowrap;
  640. }
  641. #u2835 {
  642. border-width:0px;
  643. position:absolute;
  644. left:0px;
  645. top:0px;
  646. width:0px;
  647. height:0px;
  648. }
  649. #u2836_img {
  650. border-width:0px;
  651. position:absolute;
  652. left:-4px;
  653. top:-4px;
  654. width:44px;
  655. height:44px;
  656. }
  657. #u2836 {
  658. border-width:0px;
  659. position:absolute;
  660. left:1186px;
  661. top:950px;
  662. width:34px;
  663. height:34px;
  664. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  665. font-weight:700;
  666. font-style:normal;
  667. font-size:26px;
  668. }
  669. #u2836_text {
  670. border-width:0px;
  671. position:absolute;
  672. left:2px;
  673. top:1px;
  674. width:30px;
  675. word-wrap:break-word;
  676. }
  677. #u2837_div {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:198px;
  683. height:19px;
  684. background:inherit;
  685. background-color:rgba(255, 255, 255, 0);
  686. border:none;
  687. border-radius:0px;
  688. -moz-box-shadow:none;
  689. -webkit-box-shadow:none;
  690. box-shadow:none;
  691. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  692. font-weight:700;
  693. font-style:normal;
  694. font-size:16px;
  695. }
  696. #u2837 {
  697. border-width:0px;
  698. position:absolute;
  699. left:1226px;
  700. top:957px;
  701. width:198px;
  702. height:19px;
  703. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  704. font-weight:700;
  705. font-style:normal;
  706. font-size:16px;
  707. }
  708. #u2837_text {
  709. border-width:0px;
  710. position:absolute;
  711. left:0px;
  712. top:0px;
  713. width:198px;
  714. word-wrap:break-word;
  715. }
  716. #u2838_div {
  717. border-width:0px;
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:352px;
  722. height:44px;
  723. background:inherit;
  724. background-color:rgba(255, 255, 255, 0);
  725. border:none;
  726. border-radius:0px;
  727. -moz-box-shadow:none;
  728. -webkit-box-shadow:none;
  729. box-shadow:none;
  730. line-height:22px;
  731. }
  732. #u2838 {
  733. border-width:0px;
  734. position:absolute;
  735. left:1226px;
  736. top:995px;
  737. width:352px;
  738. height:44px;
  739. line-height:22px;
  740. }
  741. #u2838_text {
  742. border-width:0px;
  743. position:absolute;
  744. left:0px;
  745. top:0px;
  746. width:352px;
  747. word-wrap:break-word;
  748. }
  749. #u2839 {
  750. border-width:0px;
  751. position:absolute;
  752. left:0px;
  753. top:0px;
  754. width:0px;
  755. height:0px;
  756. }
  757. #u2840_img {
  758. border-width:0px;
  759. position:absolute;
  760. left:-4px;
  761. top:-4px;
  762. width:40px;
  763. height:40px;
  764. }
  765. #u2840 {
  766. border-width:0px;
  767. position:absolute;
  768. left:1186px;
  769. top:1049px;
  770. width:30px;
  771. height:30px;
  772. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  773. font-weight:700;
  774. font-style:normal;
  775. font-size:18px;
  776. color:#1E1E1E;
  777. }
  778. #u2840_text {
  779. border-width:0px;
  780. position:absolute;
  781. left:2px;
  782. top:4px;
  783. width:26px;
  784. word-wrap:break-word;
  785. }
  786. #u2841_div {
  787. border-width:0px;
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:198px;
  792. height:19px;
  793. background:inherit;
  794. background-color:rgba(255, 255, 255, 0);
  795. border:none;
  796. border-radius:0px;
  797. -moz-box-shadow:none;
  798. -webkit-box-shadow:none;
  799. box-shadow:none;
  800. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  801. font-weight:700;
  802. font-style:normal;
  803. font-size:16px;
  804. }
  805. #u2841 {
  806. border-width:0px;
  807. position:absolute;
  808. left:1226px;
  809. top:1056px;
  810. width:198px;
  811. height:19px;
  812. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  813. font-weight:700;
  814. font-style:normal;
  815. font-size:16px;
  816. }
  817. #u2841_text {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:198px;
  823. word-wrap:break-word;
  824. }
  825. #u2842_div {
  826. border-width:0px;
  827. position:absolute;
  828. left:0px;
  829. top:0px;
  830. width:352px;
  831. height:44px;
  832. background:inherit;
  833. background-color:rgba(255, 255, 255, 0);
  834. border:none;
  835. border-radius:0px;
  836. -moz-box-shadow:none;
  837. -webkit-box-shadow:none;
  838. box-shadow:none;
  839. line-height:22px;
  840. }
  841. #u2842 {
  842. border-width:0px;
  843. position:absolute;
  844. left:1226px;
  845. top:1094px;
  846. width:352px;
  847. height:44px;
  848. line-height:22px;
  849. }
  850. #u2842_text {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:352px;
  856. word-wrap:break-word;
  857. }
  858. #u2843 {
  859. border-width:0px;
  860. position:absolute;
  861. left:0px;
  862. top:0px;
  863. width:0px;
  864. height:0px;
  865. }
  866. #u2844_img {
  867. border-width:0px;
  868. position:absolute;
  869. left:-4px;
  870. top:-4px;
  871. width:40px;
  872. height:40px;
  873. }
  874. #u2844 {
  875. border-width:0px;
  876. position:absolute;
  877. left:1186px;
  878. top:1148px;
  879. width:30px;
  880. height:30px;
  881. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  882. font-weight:700;
  883. font-style:normal;
  884. font-size:18px;
  885. color:#333333;
  886. }
  887. #u2844_text {
  888. border-width:0px;
  889. position:absolute;
  890. left:2px;
  891. top:4px;
  892. width:26px;
  893. word-wrap:break-word;
  894. }
  895. #u2845_div {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:198px;
  901. height:19px;
  902. background:inherit;
  903. background-color:rgba(255, 255, 255, 0);
  904. border:none;
  905. border-radius:0px;
  906. -moz-box-shadow:none;
  907. -webkit-box-shadow:none;
  908. box-shadow:none;
  909. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  910. font-weight:700;
  911. font-style:normal;
  912. font-size:16px;
  913. }
  914. #u2845 {
  915. border-width:0px;
  916. position:absolute;
  917. left:1226px;
  918. top:1155px;
  919. width:198px;
  920. height:19px;
  921. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  922. font-weight:700;
  923. font-style:normal;
  924. font-size:16px;
  925. }
  926. #u2845_text {
  927. border-width:0px;
  928. position:absolute;
  929. left:0px;
  930. top:0px;
  931. width:198px;
  932. word-wrap:break-word;
  933. }
  934. #u2846_div {
  935. border-width:0px;
  936. position:absolute;
  937. left:0px;
  938. top:0px;
  939. width:352px;
  940. height:22px;
  941. background:inherit;
  942. background-color:rgba(255, 255, 255, 0);
  943. border:none;
  944. border-radius:0px;
  945. -moz-box-shadow:none;
  946. -webkit-box-shadow:none;
  947. box-shadow:none;
  948. line-height:22px;
  949. }
  950. #u2846 {
  951. border-width:0px;
  952. position:absolute;
  953. left:1226px;
  954. top:1193px;
  955. width:352px;
  956. height:22px;
  957. line-height:22px;
  958. }
  959. #u2846_text {
  960. border-width:0px;
  961. position:absolute;
  962. left:0px;
  963. top:0px;
  964. width:352px;
  965. word-wrap:break-word;
  966. }
  967. #u2847 {
  968. border-width:0px;
  969. position:absolute;
  970. left:0px;
  971. top:0px;
  972. width:0px;
  973. height:0px;
  974. }
  975. #u2848_img {
  976. border-width:0px;
  977. position:absolute;
  978. left:-4px;
  979. top:-4px;
  980. width:44px;
  981. height:44px;
  982. }
  983. #u2848 {
  984. border-width:0px;
  985. position:absolute;
  986. left:1186px;
  987. top:289px;
  988. width:34px;
  989. height:34px;
  990. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  991. font-weight:700;
  992. font-style:normal;
  993. font-size:26px;
  994. }
  995. #u2848_text {
  996. border-width:0px;
  997. position:absolute;
  998. left:2px;
  999. top:1px;
  1000. width:30px;
  1001. word-wrap:break-word;
  1002. }
  1003. #u2849_div {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:143px;
  1009. height:19px;
  1010. background:inherit;
  1011. background-color:rgba(255, 255, 255, 0);
  1012. border:none;
  1013. border-radius:0px;
  1014. -moz-box-shadow:none;
  1015. -webkit-box-shadow:none;
  1016. box-shadow:none;
  1017. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1018. font-weight:700;
  1019. font-style:normal;
  1020. font-size:16px;
  1021. }
  1022. #u2849 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:1226px;
  1026. top:296px;
  1027. width:143px;
  1028. height:19px;
  1029. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1030. font-weight:700;
  1031. font-style:normal;
  1032. font-size:16px;
  1033. }
  1034. #u2849_text {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:0px;
  1038. top:0px;
  1039. width:143px;
  1040. word-wrap:break-word;
  1041. }
  1042. #u2850_div {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:352px;
  1048. height:44px;
  1049. background:inherit;
  1050. background-color:rgba(255, 255, 255, 0);
  1051. border:none;
  1052. border-radius:0px;
  1053. -moz-box-shadow:none;
  1054. -webkit-box-shadow:none;
  1055. box-shadow:none;
  1056. line-height:22px;
  1057. }
  1058. #u2850 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:1226px;
  1062. top:334px;
  1063. width:352px;
  1064. height:44px;
  1065. line-height:22px;
  1066. }
  1067. #u2850_text {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:0px;
  1071. top:0px;
  1072. width:352px;
  1073. word-wrap:break-word;
  1074. }
  1075. #u2851 {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:1468px;
  1079. top:329px;
  1080. width:72px;
  1081. height:23px;
  1082. overflow:hidden;
  1083. background-image:url('../../resources/images/transparent.gif');
  1084. }
  1085. #u2852_div {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:242px;
  1091. height:80px;
  1092. background:inherit;
  1093. background-color:rgba(255, 255, 0, 1);
  1094. box-sizing:border-box;
  1095. border-width:1px;
  1096. border-style:solid;
  1097. border-color:rgba(0, 0, 0, 1);
  1098. border-radius:10px;
  1099. -moz-box-shadow:none;
  1100. -webkit-box-shadow:none;
  1101. box-shadow:none;
  1102. text-align:left;
  1103. }
  1104. #u2852 {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:1312px;
  1108. top:244px;
  1109. width:242px;
  1110. height:80px;
  1111. text-align:left;
  1112. }
  1113. #u2852_text {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:2px;
  1117. top:11px;
  1118. width:238px;
  1119. word-wrap:break-word;
  1120. }
  1121. #u2853 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:0px;
  1126. width:0px;
  1127. height:0px;
  1128. }
  1129. #u2854_img {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:-4px;
  1133. top:-4px;
  1134. width:40px;
  1135. height:40px;
  1136. }
  1137. #u2854 {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:1186px;
  1141. top:472px;
  1142. width:30px;
  1143. height:30px;
  1144. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1145. font-weight:700;
  1146. font-style:normal;
  1147. font-size:18px;
  1148. color:#1E1E1E;
  1149. }
  1150. #u2854_text {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:2px;
  1154. top:4px;
  1155. width:26px;
  1156. word-wrap:break-word;
  1157. }
  1158. #u2855_div {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:143px;
  1164. height:19px;
  1165. background:inherit;
  1166. background-color:rgba(255, 255, 255, 0);
  1167. border:none;
  1168. border-radius:0px;
  1169. -moz-box-shadow:none;
  1170. -webkit-box-shadow:none;
  1171. box-shadow:none;
  1172. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1173. font-weight:700;
  1174. font-style:normal;
  1175. font-size:16px;
  1176. }
  1177. #u2855 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:1226px;
  1181. top:479px;
  1182. width:143px;
  1183. height:19px;
  1184. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1185. font-weight:700;
  1186. font-style:normal;
  1187. font-size:16px;
  1188. }
  1189. #u2855_text {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:143px;
  1195. word-wrap:break-word;
  1196. }
  1197. #u2856_div {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:352px;
  1203. height:88px;
  1204. background:inherit;
  1205. background-color:rgba(255, 255, 255, 0);
  1206. border:none;
  1207. border-radius:0px;
  1208. -moz-box-shadow:none;
  1209. -webkit-box-shadow:none;
  1210. box-shadow:none;
  1211. line-height:22px;
  1212. }
  1213. #u2856 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:1226px;
  1217. top:517px;
  1218. width:352px;
  1219. height:88px;
  1220. line-height:22px;
  1221. }
  1222. #u2856_text {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:352px;
  1228. word-wrap:break-word;
  1229. }
  1230. #u2857 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:0px;
  1236. height:0px;
  1237. }
  1238. #u2858_img {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:-4px;
  1242. top:-4px;
  1243. width:40px;
  1244. height:40px;
  1245. }
  1246. #u2858 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:1186px;
  1250. top:395px;
  1251. width:30px;
  1252. height:30px;
  1253. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1254. font-weight:700;
  1255. font-style:normal;
  1256. font-size:18px;
  1257. color:#1E1E1E;
  1258. }
  1259. #u2858_text {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:2px;
  1263. top:4px;
  1264. width:26px;
  1265. word-wrap:break-word;
  1266. }
  1267. #u2859_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:143px;
  1273. height:19px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 0);
  1276. border:none;
  1277. border-radius:0px;
  1278. -moz-box-shadow:none;
  1279. -webkit-box-shadow:none;
  1280. box-shadow:none;
  1281. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1282. font-weight:700;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. }
  1286. #u2859 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:1226px;
  1290. top:402px;
  1291. width:143px;
  1292. height:19px;
  1293. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1294. font-weight:700;
  1295. font-style:normal;
  1296. font-size:16px;
  1297. }
  1298. #u2859_text {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:0px;
  1302. top:0px;
  1303. width:143px;
  1304. word-wrap:break-word;
  1305. }
  1306. #u2860_div {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:0px;
  1310. top:0px;
  1311. width:352px;
  1312. height:22px;
  1313. background:inherit;
  1314. background-color:rgba(255, 255, 255, 0);
  1315. border:none;
  1316. border-radius:0px;
  1317. -moz-box-shadow:none;
  1318. -webkit-box-shadow:none;
  1319. box-shadow:none;
  1320. line-height:22px;
  1321. }
  1322. #u2860 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:1226px;
  1326. top:440px;
  1327. width:352px;
  1328. height:22px;
  1329. line-height:22px;
  1330. }
  1331. #u2860_text {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:0px;
  1335. top:0px;
  1336. width:352px;
  1337. word-wrap:break-word;
  1338. }
  1339. #u2861 {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:0px;
  1345. height:0px;
  1346. }
  1347. #u2862_img {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:-4px;
  1351. top:-4px;
  1352. width:44px;
  1353. height:44px;
  1354. }
  1355. #u2862 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:1186px;
  1359. top:622px;
  1360. width:34px;
  1361. height:34px;
  1362. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1363. font-weight:700;
  1364. font-style:normal;
  1365. font-size:26px;
  1366. }
  1367. #u2862_text {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:2px;
  1371. top:1px;
  1372. width:30px;
  1373. word-wrap:break-word;
  1374. }
  1375. #u2863_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:196px;
  1381. height:19px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1390. font-weight:700;
  1391. font-style:normal;
  1392. font-size:16px;
  1393. color:#FF0000;
  1394. }
  1395. #u2863 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:1226px;
  1399. top:629px;
  1400. width:196px;
  1401. height:19px;
  1402. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1403. font-weight:700;
  1404. font-style:normal;
  1405. font-size:16px;
  1406. color:#FF0000;
  1407. }
  1408. #u2863_text {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:0px;
  1412. top:0px;
  1413. width:196px;
  1414. word-wrap:break-word;
  1415. }
  1416. #u2864_div {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:0px;
  1420. top:0px;
  1421. width:352px;
  1422. height:22px;
  1423. background:inherit;
  1424. background-color:rgba(255, 255, 255, 0);
  1425. border:none;
  1426. border-radius:0px;
  1427. -moz-box-shadow:none;
  1428. -webkit-box-shadow:none;
  1429. box-shadow:none;
  1430. line-height:22px;
  1431. }
  1432. #u2864 {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:1226px;
  1436. top:667px;
  1437. width:352px;
  1438. height:22px;
  1439. line-height:22px;
  1440. }
  1441. #u2864_text {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:352px;
  1447. word-wrap:break-word;
  1448. }
  1449. #u2865 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:0px;
  1453. top:0px;
  1454. width:0px;
  1455. height:0px;
  1456. }
  1457. #u2866_img {
  1458. border-width:0px;
  1459. position:absolute;
  1460. left:-4px;
  1461. top:-4px;
  1462. width:44px;
  1463. height:44px;
  1464. }
  1465. #u2866 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:1186px;
  1469. top:699px;
  1470. width:34px;
  1471. height:34px;
  1472. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1473. font-weight:700;
  1474. font-style:normal;
  1475. font-size:26px;
  1476. }
  1477. #u2866_text {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:2px;
  1481. top:1px;
  1482. width:30px;
  1483. word-wrap:break-word;
  1484. }
  1485. #u2867_div {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:0px;
  1489. top:0px;
  1490. width:196px;
  1491. height:19px;
  1492. background:inherit;
  1493. background-color:rgba(255, 255, 255, 0);
  1494. border:none;
  1495. border-radius:0px;
  1496. -moz-box-shadow:none;
  1497. -webkit-box-shadow:none;
  1498. box-shadow:none;
  1499. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1500. font-weight:700;
  1501. font-style:normal;
  1502. font-size:16px;
  1503. color:#FF0000;
  1504. }
  1505. #u2867 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:1226px;
  1509. top:706px;
  1510. width:196px;
  1511. height:19px;
  1512. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1513. font-weight:700;
  1514. font-style:normal;
  1515. font-size:16px;
  1516. color:#FF0000;
  1517. }
  1518. #u2867_text {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:196px;
  1524. word-wrap:break-word;
  1525. }
  1526. #u2868_div {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:352px;
  1532. height:44px;
  1533. background:inherit;
  1534. background-color:rgba(255, 255, 255, 0);
  1535. border:none;
  1536. border-radius:0px;
  1537. -moz-box-shadow:none;
  1538. -webkit-box-shadow:none;
  1539. box-shadow:none;
  1540. line-height:22px;
  1541. }
  1542. #u2868 {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:1226px;
  1546. top:744px;
  1547. width:352px;
  1548. height:44px;
  1549. line-height:22px;
  1550. }
  1551. #u2868_text {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:0px;
  1555. top:0px;
  1556. width:352px;
  1557. word-wrap:break-word;
  1558. }
  1559. #u2869 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:1231px;
  1563. top:706px;
  1564. width:106px;
  1565. height:23px;
  1566. overflow:hidden;
  1567. background-image:url('../../resources/images/transparent.gif');
  1568. }
  1569. #u2870 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:1231px;
  1573. top:625px;
  1574. width:184px;
  1575. height:23px;
  1576. overflow:hidden;
  1577. background-image:url('../../resources/images/transparent.gif');
  1578. }
  1579. #u2871_div {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:263px;
  1585. height:146px;
  1586. background:inherit;
  1587. background-color:rgba(255, 255, 0, 1);
  1588. box-sizing:border-box;
  1589. border-width:1px;
  1590. border-style:solid;
  1591. border-color:rgba(0, 0, 0, 1);
  1592. border-radius:10px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. text-align:left;
  1597. }
  1598. #u2871 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:1231px;
  1602. top:469px;
  1603. width:263px;
  1604. height:146px;
  1605. text-align:left;
  1606. }
  1607. #u2871_text {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:2px;
  1611. top:11px;
  1612. width:259px;
  1613. word-wrap:break-word;
  1614. }
  1615. #u2872_div {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:263px;
  1621. height:145px;
  1622. background:inherit;
  1623. background-color:rgba(255, 255, 0, 1);
  1624. box-sizing:border-box;
  1625. border-width:1px;
  1626. border-style:solid;
  1627. border-color:rgba(0, 0, 0, 1);
  1628. border-radius:10px;
  1629. -moz-box-shadow:none;
  1630. -webkit-box-shadow:none;
  1631. box-shadow:none;
  1632. text-align:left;
  1633. }
  1634. #u2872 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:1231px;
  1638. top:551px;
  1639. width:263px;
  1640. height:145px;
  1641. text-align:left;
  1642. }
  1643. #u2872_text {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:2px;
  1647. top:20px;
  1648. width:259px;
  1649. word-wrap:break-word;
  1650. }
  1651. #u2873 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:0px;
  1657. height:0px;
  1658. }
  1659. #u2874_img {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:-4px;
  1663. top:-4px;
  1664. width:40px;
  1665. height:40px;
  1666. }
  1667. #u2874 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:1186px;
  1671. top:801px;
  1672. width:30px;
  1673. height:30px;
  1674. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1675. font-weight:700;
  1676. font-style:normal;
  1677. font-size:18px;
  1678. color:#1E1E1E;
  1679. }
  1680. #u2874_text {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:2px;
  1684. top:4px;
  1685. width:26px;
  1686. word-wrap:break-word;
  1687. }
  1688. #u2875_div {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:198px;
  1694. height:19px;
  1695. background:inherit;
  1696. background-color:rgba(255, 255, 255, 0);
  1697. border:none;
  1698. border-radius:0px;
  1699. -moz-box-shadow:none;
  1700. -webkit-box-shadow:none;
  1701. box-shadow:none;
  1702. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1703. font-weight:700;
  1704. font-style:normal;
  1705. font-size:16px;
  1706. }
  1707. #u2875 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:1226px;
  1711. top:808px;
  1712. width:198px;
  1713. height:19px;
  1714. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1715. font-weight:700;
  1716. font-style:normal;
  1717. font-size:16px;
  1718. }
  1719. #u2875_text {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:198px;
  1725. word-wrap:break-word;
  1726. }
  1727. #u2876_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:352px;
  1733. height:44px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. line-height:22px;
  1742. }
  1743. #u2876 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:1226px;
  1747. top:846px;
  1748. width:352px;
  1749. height:44px;
  1750. line-height:22px;
  1751. }
  1752. #u2876_text {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:352px;
  1758. word-wrap:break-word;
  1759. }
  1760. #u2877_div {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:185px;
  1766. height:71px;
  1767. background:inherit;
  1768. background-color:rgba(255, 255, 0, 1);
  1769. box-sizing:border-box;
  1770. border-width:1px;
  1771. border-style:solid;
  1772. border-color:rgba(0, 0, 0, 1);
  1773. border-radius:10px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. color:#000000;
  1778. text-align:left;
  1779. line-height:18px;
  1780. }
  1781. #u2877 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:1326px;
  1785. top:765px;
  1786. width:185px;
  1787. height:71px;
  1788. color:#000000;
  1789. text-align:left;
  1790. line-height:18px;
  1791. }
  1792. #u2877_text {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:2px;
  1796. top:18px;
  1797. width:181px;
  1798. word-wrap:break-word;
  1799. }
  1800. #u2878 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:1407px;
  1804. top:846px;
  1805. width:57px;
  1806. height:23px;
  1807. overflow:hidden;
  1808. background-image:url('../../resources/images/transparent.gif');
  1809. }
  1810. #u2879_img {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:1155px;
  1816. height:583px;
  1817. }
  1818. #u2879 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:21px;
  1822. top:2901px;
  1823. width:1155px;
  1824. height:583px;
  1825. }
  1826. #u2879_text {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:0px;
  1832. visibility:hidden;
  1833. word-wrap:break-word;
  1834. }
  1835. #u2880_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:181px;
  1841. height:22px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 0);
  1844. border:none;
  1845. border-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1850. font-weight:700;
  1851. font-style:normal;
  1852. font-size:18px;
  1853. }
  1854. #u2880 {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:21px;
  1858. top:2873px;
  1859. width:181px;
  1860. height:22px;
  1861. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1862. font-weight:700;
  1863. font-style:normal;
  1864. font-size:18px;
  1865. }
  1866. #u2880_text {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:181px;
  1872. white-space:nowrap;
  1873. }
  1874. #u2881_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:-4px;
  1878. top:-4px;
  1879. width:30px;
  1880. height:30px;
  1881. }
  1882. #u2881 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:1050px;
  1886. top:3153px;
  1887. width:20px;
  1888. height:20px;
  1889. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1890. font-weight:700;
  1891. font-style:normal;
  1892. font-size:14px;
  1893. color:#1E1E1E;
  1894. }
  1895. #u2881_text {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:2px;
  1899. top:2px;
  1900. width:16px;
  1901. word-wrap:break-word;
  1902. }
  1903. #u2882 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:0px;
  1909. height:0px;
  1910. }
  1911. #u2883_img {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:-4px;
  1915. top:-4px;
  1916. width:40px;
  1917. height:40px;
  1918. }
  1919. #u2883 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:1186px;
  1923. top:2901px;
  1924. width:30px;
  1925. height:30px;
  1926. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1927. font-weight:700;
  1928. font-style:normal;
  1929. font-size:18px;
  1930. color:#1E1E1E;
  1931. }
  1932. #u2883_text {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:2px;
  1936. top:4px;
  1937. width:26px;
  1938. word-wrap:break-word;
  1939. }
  1940. #u2884_div {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:198px;
  1946. height:19px;
  1947. background:inherit;
  1948. background-color:rgba(255, 255, 255, 0);
  1949. border:none;
  1950. border-radius:0px;
  1951. -moz-box-shadow:none;
  1952. -webkit-box-shadow:none;
  1953. box-shadow:none;
  1954. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1955. font-weight:700;
  1956. font-style:normal;
  1957. font-size:16px;
  1958. }
  1959. #u2884 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:1226px;
  1963. top:2908px;
  1964. width:198px;
  1965. height:19px;
  1966. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1967. font-weight:700;
  1968. font-style:normal;
  1969. font-size:16px;
  1970. }
  1971. #u2884_text {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:198px;
  1977. word-wrap:break-word;
  1978. }
  1979. #u2885_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:352px;
  1985. height:44px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 0);
  1988. border:none;
  1989. border-radius:0px;
  1990. -moz-box-shadow:none;
  1991. -webkit-box-shadow:none;
  1992. box-shadow:none;
  1993. line-height:22px;
  1994. }
  1995. #u2885 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1226px;
  1999. top:2946px;
  2000. width:352px;
  2001. height:44px;
  2002. line-height:22px;
  2003. }
  2004. #u2885_text {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:352px;
  2010. word-wrap:break-word;
  2011. }
  2012. #u2886_div {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:865px;
  2018. height:81px;
  2019. background:inherit;
  2020. background-color:rgba(255, 255, 255, 0);
  2021. border:none;
  2022. border-radius:0px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-size:16px;
  2027. line-height:24px;
  2028. }
  2029. #u2886 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:55px;
  2033. top:115px;
  2034. width:865px;
  2035. height:81px;
  2036. font-size:16px;
  2037. line-height:24px;
  2038. }
  2039. #u2886_text {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:865px;
  2045. word-wrap:break-word;
  2046. }
  2047. #u2887 {
  2048. position:fixed;
  2049. left:1382px;
  2050. top:68px;
  2051. }
  2052. #u2887_state0 {
  2053. position:relative;
  2054. left:0px;
  2055. top:0px;
  2056. width:140px;
  2057. height:40px;
  2058. background-image:none;
  2059. }
  2060. #u2887_state0_content {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:1px;
  2066. height:1px;
  2067. }
  2068. #u2888_div {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:140px;
  2074. height:40px;
  2075. background:inherit;
  2076. background-color:rgba(51, 160, 154, 1);
  2077. border:none;
  2078. border-radius:5px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2083. font-weight:700;
  2084. font-style:normal;
  2085. font-size:16px;
  2086. }
  2087. #u2888 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:140px;
  2093. height:40px;
  2094. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2095. font-weight:700;
  2096. font-style:normal;
  2097. font-size:16px;
  2098. }
  2099. #u2888_text {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:2px;
  2103. top:10px;
  2104. width:136px;
  2105. word-wrap:break-word;
  2106. }