styles.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941
  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. #u2734 {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:0px;
  21. height:0px;
  22. }
  23. #u2735_img {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:0px;
  28. width:8px;
  29. height:28px;
  30. }
  31. #u2735 {
  32. border-width:0px;
  33. position:absolute;
  34. left:7px;
  35. top:21px;
  36. width:8px;
  37. height:28px;
  38. }
  39. #u2735_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. #u2736_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. #u2736 {
  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. #u2736_text {
  78. border-width:0px;
  79. position:absolute;
  80. left:0px;
  81. top:0px;
  82. width:121px;
  83. white-space:nowrap;
  84. }
  85. #u2737_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. #u2737 {
  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. #u2737_text {
  117. border-width:0px;
  118. position:absolute;
  119. left:0px;
  120. top:0px;
  121. width:109px;
  122. white-space:nowrap;
  123. }
  124. #u2738_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. #u2738 {
  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. #u2738_text {
  156. border-width:0px;
  157. position:absolute;
  158. left:0px;
  159. top:0px;
  160. width:215px;
  161. white-space:nowrap;
  162. }
  163. #u2739 {
  164. border-width:0px;
  165. position:absolute;
  166. left:0px;
  167. top:0px;
  168. width:0px;
  169. height:0px;
  170. }
  171. #u2740_img {
  172. border-width:0px;
  173. position:absolute;
  174. left:-4px;
  175. top:-4px;
  176. width:44px;
  177. height:44px;
  178. }
  179. #u2740 {
  180. border-width:0px;
  181. position:absolute;
  182. left:1186px;
  183. top:318px;
  184. width:34px;
  185. height:34px;
  186. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  187. font-weight:700;
  188. font-style:normal;
  189. font-size:26px;
  190. }
  191. #u2740_text {
  192. border-width:0px;
  193. position:absolute;
  194. left:2px;
  195. top:1px;
  196. width:30px;
  197. word-wrap:break-word;
  198. }
  199. #u2741_div {
  200. border-width:0px;
  201. position:absolute;
  202. left:0px;
  203. top:0px;
  204. width:143px;
  205. height:19px;
  206. background:inherit;
  207. background-color:rgba(255, 255, 255, 0);
  208. border:none;
  209. border-radius:0px;
  210. -moz-box-shadow:none;
  211. -webkit-box-shadow:none;
  212. box-shadow:none;
  213. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  214. font-weight:700;
  215. font-style:normal;
  216. font-size:16px;
  217. }
  218. #u2741 {
  219. border-width:0px;
  220. position:absolute;
  221. left:1226px;
  222. top:325px;
  223. width:143px;
  224. height:19px;
  225. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  226. font-weight:700;
  227. font-style:normal;
  228. font-size:16px;
  229. }
  230. #u2741_text {
  231. border-width:0px;
  232. position:absolute;
  233. left:0px;
  234. top:0px;
  235. width:143px;
  236. word-wrap:break-word;
  237. }
  238. #u2742_div {
  239. border-width:0px;
  240. position:absolute;
  241. left:0px;
  242. top:0px;
  243. width:352px;
  244. height:44px;
  245. background:inherit;
  246. background-color:rgba(255, 255, 255, 0);
  247. border:none;
  248. border-radius:0px;
  249. -moz-box-shadow:none;
  250. -webkit-box-shadow:none;
  251. box-shadow:none;
  252. line-height:22px;
  253. }
  254. #u2742 {
  255. border-width:0px;
  256. position:absolute;
  257. left:1226px;
  258. top:363px;
  259. width:352px;
  260. height:44px;
  261. line-height:22px;
  262. }
  263. #u2742_text {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:352px;
  269. word-wrap:break-word;
  270. }
  271. #u2743 {
  272. border-width:0px;
  273. position:absolute;
  274. left:1468px;
  275. top:358px;
  276. width:72px;
  277. height:23px;
  278. overflow:hidden;
  279. background-image:url('../../resources/images/transparent.gif');
  280. }
  281. #u2744_div {
  282. border-width:0px;
  283. position:absolute;
  284. left:0px;
  285. top:0px;
  286. width:242px;
  287. height:80px;
  288. background:inherit;
  289. background-color:rgba(255, 255, 0, 1);
  290. box-sizing:border-box;
  291. border-width:1px;
  292. border-style:solid;
  293. border-color:rgba(0, 0, 0, 1);
  294. border-radius:10px;
  295. -moz-box-shadow:none;
  296. -webkit-box-shadow:none;
  297. box-shadow:none;
  298. text-align:left;
  299. }
  300. #u2744 {
  301. border-width:0px;
  302. position:absolute;
  303. left:1312px;
  304. top:273px;
  305. width:242px;
  306. height:80px;
  307. text-align:left;
  308. }
  309. #u2744_text {
  310. border-width:0px;
  311. position:absolute;
  312. left:2px;
  313. top:11px;
  314. width:238px;
  315. word-wrap:break-word;
  316. }
  317. #u2745 {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:0px;
  323. height:0px;
  324. }
  325. #u2746_img {
  326. border-width:0px;
  327. position:absolute;
  328. left:-4px;
  329. top:-4px;
  330. width:40px;
  331. height:40px;
  332. }
  333. #u2746 {
  334. border-width:0px;
  335. position:absolute;
  336. left:1186px;
  337. top:501px;
  338. width:30px;
  339. height:30px;
  340. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  341. font-weight:700;
  342. font-style:normal;
  343. font-size:18px;
  344. color:#1E1E1E;
  345. }
  346. #u2746_text {
  347. border-width:0px;
  348. position:absolute;
  349. left:2px;
  350. top:4px;
  351. width:26px;
  352. word-wrap:break-word;
  353. }
  354. #u2747_div {
  355. border-width:0px;
  356. position:absolute;
  357. left:0px;
  358. top:0px;
  359. width:143px;
  360. height:19px;
  361. background:inherit;
  362. background-color:rgba(255, 255, 255, 0);
  363. border:none;
  364. border-radius:0px;
  365. -moz-box-shadow:none;
  366. -webkit-box-shadow:none;
  367. box-shadow:none;
  368. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  369. font-weight:700;
  370. font-style:normal;
  371. font-size:16px;
  372. }
  373. #u2747 {
  374. border-width:0px;
  375. position:absolute;
  376. left:1226px;
  377. top:508px;
  378. width:143px;
  379. height:19px;
  380. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  381. font-weight:700;
  382. font-style:normal;
  383. font-size:16px;
  384. }
  385. #u2747_text {
  386. border-width:0px;
  387. position:absolute;
  388. left:0px;
  389. top:0px;
  390. width:143px;
  391. word-wrap:break-word;
  392. }
  393. #u2748_div {
  394. border-width:0px;
  395. position:absolute;
  396. left:0px;
  397. top:0px;
  398. width:352px;
  399. height:88px;
  400. background:inherit;
  401. background-color:rgba(255, 255, 255, 0);
  402. border:none;
  403. border-radius:0px;
  404. -moz-box-shadow:none;
  405. -webkit-box-shadow:none;
  406. box-shadow:none;
  407. line-height:22px;
  408. }
  409. #u2748 {
  410. border-width:0px;
  411. position:absolute;
  412. left:1226px;
  413. top:546px;
  414. width:352px;
  415. height:88px;
  416. line-height:22px;
  417. }
  418. #u2748_text {
  419. border-width:0px;
  420. position:absolute;
  421. left:0px;
  422. top:0px;
  423. width:352px;
  424. word-wrap:break-word;
  425. }
  426. #u2749 {
  427. border-width:0px;
  428. position:absolute;
  429. left:0px;
  430. top:0px;
  431. width:0px;
  432. height:0px;
  433. }
  434. #u2750_img {
  435. border-width:0px;
  436. position:absolute;
  437. left:-4px;
  438. top:-4px;
  439. width:40px;
  440. height:40px;
  441. }
  442. #u2750 {
  443. border-width:0px;
  444. position:absolute;
  445. left:1186px;
  446. top:424px;
  447. width:30px;
  448. height:30px;
  449. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  450. font-weight:700;
  451. font-style:normal;
  452. font-size:18px;
  453. color:#1E1E1E;
  454. }
  455. #u2750_text {
  456. border-width:0px;
  457. position:absolute;
  458. left:2px;
  459. top:4px;
  460. width:26px;
  461. word-wrap:break-word;
  462. }
  463. #u2751_div {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:143px;
  469. height:19px;
  470. background:inherit;
  471. background-color:rgba(255, 255, 255, 0);
  472. border:none;
  473. border-radius:0px;
  474. -moz-box-shadow:none;
  475. -webkit-box-shadow:none;
  476. box-shadow:none;
  477. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  478. font-weight:700;
  479. font-style:normal;
  480. font-size:16px;
  481. }
  482. #u2751 {
  483. border-width:0px;
  484. position:absolute;
  485. left:1226px;
  486. top:431px;
  487. width:143px;
  488. height:19px;
  489. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  490. font-weight:700;
  491. font-style:normal;
  492. font-size:16px;
  493. }
  494. #u2751_text {
  495. border-width:0px;
  496. position:absolute;
  497. left:0px;
  498. top:0px;
  499. width:143px;
  500. word-wrap:break-word;
  501. }
  502. #u2752_div {
  503. border-width:0px;
  504. position:absolute;
  505. left:0px;
  506. top:0px;
  507. width:352px;
  508. height:22px;
  509. background:inherit;
  510. background-color:rgba(255, 255, 255, 0);
  511. border:none;
  512. border-radius:0px;
  513. -moz-box-shadow:none;
  514. -webkit-box-shadow:none;
  515. box-shadow:none;
  516. line-height:22px;
  517. }
  518. #u2752 {
  519. border-width:0px;
  520. position:absolute;
  521. left:1226px;
  522. top:469px;
  523. width:352px;
  524. height:22px;
  525. line-height:22px;
  526. }
  527. #u2752_text {
  528. border-width:0px;
  529. position:absolute;
  530. left:0px;
  531. top:0px;
  532. width:352px;
  533. word-wrap:break-word;
  534. }
  535. #u2753 {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:0px;
  541. height:0px;
  542. }
  543. #u2754_img {
  544. border-width:0px;
  545. position:absolute;
  546. left:-4px;
  547. top:-4px;
  548. width:44px;
  549. height:44px;
  550. }
  551. #u2754 {
  552. border-width:0px;
  553. position:absolute;
  554. left:1186px;
  555. top:651px;
  556. width:34px;
  557. height:34px;
  558. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  559. font-weight:700;
  560. font-style:normal;
  561. font-size:26px;
  562. }
  563. #u2754_text {
  564. border-width:0px;
  565. position:absolute;
  566. left:2px;
  567. top:1px;
  568. width:30px;
  569. word-wrap:break-word;
  570. }
  571. #u2755_div {
  572. border-width:0px;
  573. position:absolute;
  574. left:0px;
  575. top:0px;
  576. width:196px;
  577. height:19px;
  578. background:inherit;
  579. background-color:rgba(255, 255, 255, 0);
  580. border:none;
  581. border-radius:0px;
  582. -moz-box-shadow:none;
  583. -webkit-box-shadow:none;
  584. box-shadow:none;
  585. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  586. font-weight:700;
  587. font-style:normal;
  588. font-size:16px;
  589. color:#FF0000;
  590. }
  591. #u2755 {
  592. border-width:0px;
  593. position:absolute;
  594. left:1226px;
  595. top:658px;
  596. width:196px;
  597. height:19px;
  598. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  599. font-weight:700;
  600. font-style:normal;
  601. font-size:16px;
  602. color:#FF0000;
  603. }
  604. #u2755_text {
  605. border-width:0px;
  606. position:absolute;
  607. left:0px;
  608. top:0px;
  609. width:196px;
  610. word-wrap:break-word;
  611. }
  612. #u2756_div {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:352px;
  618. height:22px;
  619. background:inherit;
  620. background-color:rgba(255, 255, 255, 0);
  621. border:none;
  622. border-radius:0px;
  623. -moz-box-shadow:none;
  624. -webkit-box-shadow:none;
  625. box-shadow:none;
  626. line-height:22px;
  627. }
  628. #u2756 {
  629. border-width:0px;
  630. position:absolute;
  631. left:1226px;
  632. top:696px;
  633. width:352px;
  634. height:22px;
  635. line-height:22px;
  636. }
  637. #u2756_text {
  638. border-width:0px;
  639. position:absolute;
  640. left:0px;
  641. top:0px;
  642. width:352px;
  643. word-wrap:break-word;
  644. }
  645. #u2757 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u2758_img {
  654. border-width:0px;
  655. position:absolute;
  656. left:-4px;
  657. top:-4px;
  658. width:44px;
  659. height:44px;
  660. }
  661. #u2758 {
  662. border-width:0px;
  663. position:absolute;
  664. left:1186px;
  665. top:728px;
  666. width:34px;
  667. height:34px;
  668. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  669. font-weight:700;
  670. font-style:normal;
  671. font-size:26px;
  672. }
  673. #u2758_text {
  674. border-width:0px;
  675. position:absolute;
  676. left:2px;
  677. top:1px;
  678. width:30px;
  679. word-wrap:break-word;
  680. }
  681. #u2759_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:196px;
  687. height:19px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  696. font-weight:700;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FF0000;
  700. }
  701. #u2759 {
  702. border-width:0px;
  703. position:absolute;
  704. left:1226px;
  705. top:735px;
  706. width:196px;
  707. height:19px;
  708. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  709. font-weight:700;
  710. font-style:normal;
  711. font-size:16px;
  712. color:#FF0000;
  713. }
  714. #u2759_text {
  715. border-width:0px;
  716. position:absolute;
  717. left:0px;
  718. top:0px;
  719. width:196px;
  720. word-wrap:break-word;
  721. }
  722. #u2760_div {
  723. border-width:0px;
  724. position:absolute;
  725. left:0px;
  726. top:0px;
  727. width:352px;
  728. height:44px;
  729. background:inherit;
  730. background-color:rgba(255, 255, 255, 0);
  731. border:none;
  732. border-radius:0px;
  733. -moz-box-shadow:none;
  734. -webkit-box-shadow:none;
  735. box-shadow:none;
  736. line-height:22px;
  737. }
  738. #u2760 {
  739. border-width:0px;
  740. position:absolute;
  741. left:1226px;
  742. top:773px;
  743. width:352px;
  744. height:44px;
  745. line-height:22px;
  746. }
  747. #u2760_text {
  748. border-width:0px;
  749. position:absolute;
  750. left:0px;
  751. top:0px;
  752. width:352px;
  753. word-wrap:break-word;
  754. }
  755. #u2761 {
  756. border-width:0px;
  757. position:absolute;
  758. left:1231px;
  759. top:735px;
  760. width:106px;
  761. height:23px;
  762. overflow:hidden;
  763. background-image:url('../../resources/images/transparent.gif');
  764. }
  765. #u2762 {
  766. border-width:0px;
  767. position:absolute;
  768. left:1231px;
  769. top:654px;
  770. width:184px;
  771. height:23px;
  772. overflow:hidden;
  773. background-image:url('../../resources/images/transparent.gif');
  774. }
  775. #u2763_div {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:263px;
  781. height:146px;
  782. background:inherit;
  783. background-color:rgba(255, 255, 0, 1);
  784. box-sizing:border-box;
  785. border-width:1px;
  786. border-style:solid;
  787. border-color:rgba(0, 0, 0, 1);
  788. border-radius:10px;
  789. -moz-box-shadow:none;
  790. -webkit-box-shadow:none;
  791. box-shadow:none;
  792. text-align:left;
  793. }
  794. #u2763 {
  795. border-width:0px;
  796. position:absolute;
  797. left:1231px;
  798. top:498px;
  799. width:263px;
  800. height:146px;
  801. text-align:left;
  802. }
  803. #u2763_text {
  804. border-width:0px;
  805. position:absolute;
  806. left:2px;
  807. top:11px;
  808. width:259px;
  809. word-wrap:break-word;
  810. }
  811. #u2764_div {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:263px;
  817. height:145px;
  818. background:inherit;
  819. background-color:rgba(255, 255, 0, 1);
  820. box-sizing:border-box;
  821. border-width:1px;
  822. border-style:solid;
  823. border-color:rgba(0, 0, 0, 1);
  824. border-radius:10px;
  825. -moz-box-shadow:none;
  826. -webkit-box-shadow:none;
  827. box-shadow:none;
  828. text-align:left;
  829. }
  830. #u2764 {
  831. border-width:0px;
  832. position:absolute;
  833. left:1231px;
  834. top:580px;
  835. width:263px;
  836. height:145px;
  837. text-align:left;
  838. }
  839. #u2764_text {
  840. border-width:0px;
  841. position:absolute;
  842. left:2px;
  843. top:20px;
  844. width:259px;
  845. word-wrap:break-word;
  846. }
  847. #u2765 {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:0px;
  853. height:0px;
  854. }
  855. #u2766_img {
  856. border-width:0px;
  857. position:absolute;
  858. left:-4px;
  859. top:-4px;
  860. width:40px;
  861. height:40px;
  862. }
  863. #u2766 {
  864. border-width:0px;
  865. position:absolute;
  866. left:1186px;
  867. top:830px;
  868. width:30px;
  869. height:30px;
  870. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  871. font-weight:700;
  872. font-style:normal;
  873. font-size:18px;
  874. color:#1E1E1E;
  875. }
  876. #u2766_text {
  877. border-width:0px;
  878. position:absolute;
  879. left:2px;
  880. top:4px;
  881. width:26px;
  882. word-wrap:break-word;
  883. }
  884. #u2767_div {
  885. border-width:0px;
  886. position:absolute;
  887. left:0px;
  888. top:0px;
  889. width:198px;
  890. height:19px;
  891. background:inherit;
  892. background-color:rgba(255, 255, 255, 0);
  893. border:none;
  894. border-radius:0px;
  895. -moz-box-shadow:none;
  896. -webkit-box-shadow:none;
  897. box-shadow:none;
  898. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  899. font-weight:700;
  900. font-style:normal;
  901. font-size:16px;
  902. }
  903. #u2767 {
  904. border-width:0px;
  905. position:absolute;
  906. left:1226px;
  907. top:837px;
  908. width:198px;
  909. height:19px;
  910. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  911. font-weight:700;
  912. font-style:normal;
  913. font-size:16px;
  914. }
  915. #u2767_text {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:198px;
  921. word-wrap:break-word;
  922. }
  923. #u2768_div {
  924. border-width:0px;
  925. position:absolute;
  926. left:0px;
  927. top:0px;
  928. width:352px;
  929. height:44px;
  930. background:inherit;
  931. background-color:rgba(255, 255, 255, 0);
  932. border:none;
  933. border-radius:0px;
  934. -moz-box-shadow:none;
  935. -webkit-box-shadow:none;
  936. box-shadow:none;
  937. line-height:22px;
  938. }
  939. #u2768 {
  940. border-width:0px;
  941. position:absolute;
  942. left:1226px;
  943. top:875px;
  944. width:352px;
  945. height:44px;
  946. line-height:22px;
  947. }
  948. #u2768_text {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:352px;
  954. word-wrap:break-word;
  955. }
  956. #u2769_div {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:185px;
  962. height:71px;
  963. background:inherit;
  964. background-color:rgba(255, 255, 0, 1);
  965. box-sizing:border-box;
  966. border-width:1px;
  967. border-style:solid;
  968. border-color:rgba(0, 0, 0, 1);
  969. border-radius:10px;
  970. -moz-box-shadow:none;
  971. -webkit-box-shadow:none;
  972. box-shadow:none;
  973. color:#000000;
  974. text-align:left;
  975. line-height:18px;
  976. }
  977. #u2769 {
  978. border-width:0px;
  979. position:absolute;
  980. left:1326px;
  981. top:794px;
  982. width:185px;
  983. height:71px;
  984. color:#000000;
  985. text-align:left;
  986. line-height:18px;
  987. }
  988. #u2769_text {
  989. border-width:0px;
  990. position:absolute;
  991. left:2px;
  992. top:18px;
  993. width:181px;
  994. word-wrap:break-word;
  995. }
  996. #u2770 {
  997. border-width:0px;
  998. position:absolute;
  999. left:1407px;
  1000. top:875px;
  1001. width:57px;
  1002. height:23px;
  1003. overflow:hidden;
  1004. background-image:url('../../resources/images/transparent.gif');
  1005. }
  1006. #u2771_img {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:0px;
  1010. top:0px;
  1011. width:1155px;
  1012. height:583px;
  1013. }
  1014. #u2771 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:21px;
  1018. top:310px;
  1019. width:1155px;
  1020. height:583px;
  1021. }
  1022. #u2771_text {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:0px;
  1028. visibility:hidden;
  1029. word-wrap:break-word;
  1030. }
  1031. #u2772_img {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:-4px;
  1035. top:-4px;
  1036. width:30px;
  1037. height:30px;
  1038. }
  1039. #u2772 {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:949px;
  1043. top:663px;
  1044. width:20px;
  1045. height:20px;
  1046. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1047. font-weight:700;
  1048. font-style:normal;
  1049. font-size:14px;
  1050. color:#1E1E1E;
  1051. }
  1052. #u2772_text {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:2px;
  1056. top:2px;
  1057. width:16px;
  1058. word-wrap:break-word;
  1059. }
  1060. #u2773_img {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:-4px;
  1064. top:-4px;
  1065. width:30px;
  1066. height:30px;
  1067. }
  1068. #u2773 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:226px;
  1072. top:464px;
  1073. width:20px;
  1074. height:20px;
  1075. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1076. font-weight:700;
  1077. font-style:normal;
  1078. font-size:14px;
  1079. color:#1E1E1E;
  1080. }
  1081. #u2773_text {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:2px;
  1085. top:2px;
  1086. width:16px;
  1087. word-wrap:break-word;
  1088. }
  1089. #u2774_img {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:-4px;
  1093. top:-4px;
  1094. width:30px;
  1095. height:30px;
  1096. }
  1097. #u2774 {
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:415px;
  1101. top:464px;
  1102. width:20px;
  1103. height:20px;
  1104. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1105. font-weight:700;
  1106. font-style:normal;
  1107. font-size:14px;
  1108. color:#1E1E1E;
  1109. }
  1110. #u2774_text {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:2px;
  1114. top:2px;
  1115. width:16px;
  1116. word-wrap:break-word;
  1117. }
  1118. #u2775_img {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:-4px;
  1122. top:-4px;
  1123. width:30px;
  1124. height:30px;
  1125. }
  1126. #u2775 {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:507px;
  1130. top:464px;
  1131. width:20px;
  1132. height:20px;
  1133. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1134. font-weight:700;
  1135. font-style:normal;
  1136. font-size:14px;
  1137. color:#1E1E1E;
  1138. }
  1139. #u2775_text {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:2px;
  1143. top:2px;
  1144. width:16px;
  1145. word-wrap:break-word;
  1146. }
  1147. #u2776_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:-4px;
  1151. top:-4px;
  1152. width:30px;
  1153. height:30px;
  1154. }
  1155. #u2776 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:599px;
  1159. top:464px;
  1160. width:20px;
  1161. height:20px;
  1162. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1163. font-weight:700;
  1164. font-style:normal;
  1165. font-size:14px;
  1166. color:#1E1E1E;
  1167. }
  1168. #u2776_text {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:2px;
  1172. top:2px;
  1173. width:16px;
  1174. word-wrap:break-word;
  1175. }
  1176. #u2777_img {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:-4px;
  1180. top:-4px;
  1181. width:30px;
  1182. height:30px;
  1183. }
  1184. #u2777 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:327px;
  1188. top:464px;
  1189. width:20px;
  1190. height:20px;
  1191. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1192. font-weight:700;
  1193. font-style:normal;
  1194. font-size:14px;
  1195. color:#1E1E1E;
  1196. }
  1197. #u2777_text {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:2px;
  1201. top:2px;
  1202. width:16px;
  1203. word-wrap:break-word;
  1204. }
  1205. #u2778_img {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:-4px;
  1209. top:-4px;
  1210. width:30px;
  1211. height:30px;
  1212. }
  1213. #u2778 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:989px;
  1217. top:663px;
  1218. width:20px;
  1219. height:20px;
  1220. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1221. font-weight:700;
  1222. font-style:normal;
  1223. font-size:14px;
  1224. color:#1E1E1E;
  1225. }
  1226. #u2778_text {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:2px;
  1230. top:2px;
  1231. width:16px;
  1232. word-wrap:break-word;
  1233. }
  1234. #u2779_img {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:-4px;
  1238. top:-4px;
  1239. width:30px;
  1240. height:30px;
  1241. }
  1242. #u2779 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:1039px;
  1246. top:663px;
  1247. width:20px;
  1248. height:20px;
  1249. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1250. font-weight:700;
  1251. font-style:normal;
  1252. font-size:14px;
  1253. color:#1E1E1E;
  1254. }
  1255. #u2779_text {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:2px;
  1259. top:2px;
  1260. width:16px;
  1261. word-wrap:break-word;
  1262. }
  1263. #u2780_img {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:-4px;
  1267. top:-4px;
  1268. width:30px;
  1269. height:30px;
  1270. }
  1271. #u2780 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:1106px;
  1275. top:663px;
  1276. width:20px;
  1277. height:20px;
  1278. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1279. font-weight:700;
  1280. font-style:normal;
  1281. font-size:14px;
  1282. color:#1E1E1E;
  1283. }
  1284. #u2780_text {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:2px;
  1288. top:2px;
  1289. width:16px;
  1290. word-wrap:break-word;
  1291. }
  1292. #u2781_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:1155px;
  1298. height:583px;
  1299. }
  1300. #u2781 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:21px;
  1304. top:960px;
  1305. width:1155px;
  1306. height:583px;
  1307. }
  1308. #u2781_text {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:0px;
  1312. top:0px;
  1313. width:0px;
  1314. visibility:hidden;
  1315. word-wrap:break-word;
  1316. }
  1317. #u2782_img {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:1155px;
  1323. height:583px;
  1324. }
  1325. #u2782 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:21px;
  1329. top:1627px;
  1330. width:1155px;
  1331. height:583px;
  1332. }
  1333. #u2782_text {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:0px;
  1339. visibility:hidden;
  1340. word-wrap:break-word;
  1341. }
  1342. #u2783_img {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:1155px;
  1348. height:583px;
  1349. }
  1350. #u2783 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:21px;
  1354. top:2283px;
  1355. width:1155px;
  1356. height:583px;
  1357. }
  1358. #u2783_text {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:0px;
  1364. visibility:hidden;
  1365. word-wrap:break-word;
  1366. }
  1367. #u2784 {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:0px;
  1371. top:0px;
  1372. width:0px;
  1373. height:0px;
  1374. }
  1375. #u2785_img {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:-4px;
  1379. top:-4px;
  1380. width:40px;
  1381. height:40px;
  1382. }
  1383. #u2785 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:1186px;
  1387. top:1103px;
  1388. width:30px;
  1389. height:30px;
  1390. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1391. font-weight:700;
  1392. font-style:normal;
  1393. font-size:18px;
  1394. color:#333333;
  1395. }
  1396. #u2785_text {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:2px;
  1400. top:4px;
  1401. width:26px;
  1402. word-wrap:break-word;
  1403. }
  1404. #u2786_div {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:198px;
  1410. height:19px;
  1411. background:inherit;
  1412. background-color:rgba(255, 255, 255, 0);
  1413. border:none;
  1414. border-radius:0px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1419. font-weight:700;
  1420. font-style:normal;
  1421. font-size:16px;
  1422. }
  1423. #u2786 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:1226px;
  1427. top:1110px;
  1428. width:198px;
  1429. height:19px;
  1430. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1431. font-weight:700;
  1432. font-style:normal;
  1433. font-size:16px;
  1434. }
  1435. #u2786_text {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:198px;
  1441. word-wrap:break-word;
  1442. }
  1443. #u2787_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:352px;
  1449. height:22px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-radius:0px;
  1454. -moz-box-shadow:none;
  1455. -webkit-box-shadow:none;
  1456. box-shadow:none;
  1457. line-height:22px;
  1458. }
  1459. #u2787 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:1226px;
  1463. top:1148px;
  1464. width:352px;
  1465. height:22px;
  1466. line-height:22px;
  1467. }
  1468. #u2787_text {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:352px;
  1474. word-wrap:break-word;
  1475. }
  1476. #u2788 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:0px;
  1482. height:0px;
  1483. }
  1484. #u2789_img {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:-4px;
  1488. top:-4px;
  1489. width:44px;
  1490. height:44px;
  1491. }
  1492. #u2789 {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:1186px;
  1496. top:1006px;
  1497. width:34px;
  1498. height:34px;
  1499. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1500. font-weight:700;
  1501. font-style:normal;
  1502. font-size:26px;
  1503. }
  1504. #u2789_text {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:2px;
  1508. top:1px;
  1509. width:30px;
  1510. word-wrap:break-word;
  1511. }
  1512. #u2790_div {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:198px;
  1518. height:19px;
  1519. background:inherit;
  1520. background-color:rgba(255, 255, 255, 0);
  1521. border:none;
  1522. border-radius:0px;
  1523. -moz-box-shadow:none;
  1524. -webkit-box-shadow:none;
  1525. box-shadow:none;
  1526. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1527. font-weight:700;
  1528. font-style:normal;
  1529. font-size:16px;
  1530. }
  1531. #u2790 {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:1226px;
  1535. top:1013px;
  1536. width:198px;
  1537. height:19px;
  1538. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1539. font-weight:700;
  1540. font-style:normal;
  1541. font-size:16px;
  1542. }
  1543. #u2790_text {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:198px;
  1549. word-wrap:break-word;
  1550. }
  1551. #u2791_div {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:0px;
  1555. top:0px;
  1556. width:352px;
  1557. height:22px;
  1558. background:inherit;
  1559. background-color:rgba(255, 255, 255, 0);
  1560. border:none;
  1561. border-radius:0px;
  1562. -moz-box-shadow:none;
  1563. -webkit-box-shadow:none;
  1564. box-shadow:none;
  1565. line-height:22px;
  1566. }
  1567. #u2791 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:1226px;
  1571. top:1051px;
  1572. width:352px;
  1573. height:22px;
  1574. line-height:22px;
  1575. }
  1576. #u2791_text {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:352px;
  1582. word-wrap:break-word;
  1583. }
  1584. #u2792 {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:0px;
  1588. top:0px;
  1589. width:0px;
  1590. height:0px;
  1591. }
  1592. #u2793_img {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:-4px;
  1596. top:-4px;
  1597. width:40px;
  1598. height:40px;
  1599. }
  1600. #u2793 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:1186px;
  1604. top:929px;
  1605. width:30px;
  1606. height:30px;
  1607. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1608. font-weight:700;
  1609. font-style:normal;
  1610. font-size:18px;
  1611. color:#1E1E1E;
  1612. }
  1613. #u2793_text {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:2px;
  1617. top:4px;
  1618. width:26px;
  1619. word-wrap:break-word;
  1620. }
  1621. #u2794_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:198px;
  1627. height:19px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border:none;
  1631. border-radius:0px;
  1632. -moz-box-shadow:none;
  1633. -webkit-box-shadow:none;
  1634. box-shadow:none;
  1635. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1636. font-weight:700;
  1637. font-style:normal;
  1638. font-size:16px;
  1639. }
  1640. #u2794 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:1226px;
  1644. top:936px;
  1645. width:198px;
  1646. height:19px;
  1647. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1648. font-weight:700;
  1649. font-style:normal;
  1650. font-size:16px;
  1651. }
  1652. #u2794_text {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:198px;
  1658. word-wrap:break-word;
  1659. }
  1660. #u2795_div {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:0px;
  1664. top:0px;
  1665. width:352px;
  1666. height:22px;
  1667. background:inherit;
  1668. background-color:rgba(255, 255, 255, 0);
  1669. border:none;
  1670. border-radius:0px;
  1671. -moz-box-shadow:none;
  1672. -webkit-box-shadow:none;
  1673. box-shadow:none;
  1674. line-height:22px;
  1675. }
  1676. #u2795 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:1226px;
  1680. top:974px;
  1681. width:352px;
  1682. height:22px;
  1683. line-height:22px;
  1684. }
  1685. #u2795_text {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:352px;
  1691. word-wrap:break-word;
  1692. }
  1693. #u2796_div {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:0px;
  1697. top:0px;
  1698. width:91px;
  1699. height:22px;
  1700. background:inherit;
  1701. background-color:rgba(255, 255, 255, 0);
  1702. border:none;
  1703. border-radius:0px;
  1704. -moz-box-shadow:none;
  1705. -webkit-box-shadow:none;
  1706. box-shadow:none;
  1707. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1708. font-weight:700;
  1709. font-style:normal;
  1710. font-size:18px;
  1711. }
  1712. #u2796 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:21px;
  1716. top:928px;
  1717. width:91px;
  1718. height:22px;
  1719. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1720. font-weight:700;
  1721. font-style:normal;
  1722. font-size:18px;
  1723. }
  1724. #u2796_text {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:91px;
  1730. white-space:nowrap;
  1731. }
  1732. #u2797_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:73px;
  1738. height:22px;
  1739. background:inherit;
  1740. background-color:rgba(255, 255, 255, 0);
  1741. border:none;
  1742. border-radius:0px;
  1743. -moz-box-shadow:none;
  1744. -webkit-box-shadow:none;
  1745. box-shadow:none;
  1746. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1747. font-weight:700;
  1748. font-style:normal;
  1749. font-size:18px;
  1750. }
  1751. #u2797 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:21px;
  1755. top:1595px;
  1756. width:73px;
  1757. height:22px;
  1758. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1759. font-weight:700;
  1760. font-style:normal;
  1761. font-size:18px;
  1762. }
  1763. #u2797_text {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:73px;
  1769. white-space:nowrap;
  1770. }
  1771. #u2798_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:73px;
  1777. height:22px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1786. font-weight:700;
  1787. font-style:normal;
  1788. font-size:18px;
  1789. }
  1790. #u2798 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:21px;
  1794. top:2251px;
  1795. width:73px;
  1796. height:22px;
  1797. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1798. font-weight:700;
  1799. font-style:normal;
  1800. font-size:18px;
  1801. }
  1802. #u2798_text {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:73px;
  1808. white-space:nowrap;
  1809. }
  1810. #u2799 {
  1811. position:fixed;
  1812. left:1433px;
  1813. top:29px;
  1814. }
  1815. #u2799_state0 {
  1816. position:relative;
  1817. left:0px;
  1818. top:0px;
  1819. width:140px;
  1820. height:40px;
  1821. background-image:none;
  1822. }
  1823. #u2799_state0_content {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:1px;
  1829. height:1px;
  1830. }
  1831. #u2800_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:140px;
  1837. height:40px;
  1838. background:inherit;
  1839. background-color:rgba(51, 160, 154, 1);
  1840. border:none;
  1841. border-radius:5px;
  1842. -moz-box-shadow:none;
  1843. -webkit-box-shadow:none;
  1844. box-shadow:none;
  1845. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1846. font-weight:700;
  1847. font-style:normal;
  1848. font-size:16px;
  1849. }
  1850. #u2800 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:140px;
  1856. height:40px;
  1857. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1858. font-weight:700;
  1859. font-style:normal;
  1860. font-size:16px;
  1861. }
  1862. #u2800_text {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:2px;
  1866. top:10px;
  1867. width:136px;
  1868. word-wrap:break-word;
  1869. }
  1870. #u2801_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:83px;
  1876. height:40px;
  1877. background:inherit;
  1878. background-color:rgba(20, 146, 138, 1);
  1879. border:none;
  1880. border-radius:5px;
  1881. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  1882. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  1883. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  1884. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1885. font-weight:700;
  1886. font-style:normal;
  1887. }
  1888. #u2801 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:164px;
  1892. top:15px;
  1893. width:83px;
  1894. height:40px;
  1895. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1896. font-weight:700;
  1897. font-style:normal;
  1898. }
  1899. #u2801_text {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:2px;
  1903. top:12px;
  1904. width:79px;
  1905. word-wrap:break-word;
  1906. }
  1907. #u2802_div {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:865px;
  1913. height:81px;
  1914. background:inherit;
  1915. background-color:rgba(255, 255, 255, 0);
  1916. border:none;
  1917. border-radius:0px;
  1918. -moz-box-shadow:none;
  1919. -webkit-box-shadow:none;
  1920. box-shadow:none;
  1921. font-size:16px;
  1922. line-height:24px;
  1923. }
  1924. #u2802 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:55px;
  1928. top:115px;
  1929. width:865px;
  1930. height:81px;
  1931. font-size:16px;
  1932. line-height:24px;
  1933. }
  1934. #u2802_text {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:865px;
  1940. word-wrap:break-word;
  1941. }