styles.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1579px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u600_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1155px;
  21. height:583px;
  22. }
  23. #u600 {
  24. border-width:0px;
  25. position:absolute;
  26. left:22px;
  27. top:276px;
  28. width:1155px;
  29. height:583px;
  30. }
  31. #u600_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u601 {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:0px;
  46. height:0px;
  47. }
  48. #u602_img {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:8px;
  54. height:28px;
  55. }
  56. #u602 {
  57. border-width:0px;
  58. position:absolute;
  59. left:8px;
  60. top:15px;
  61. width:8px;
  62. height:28px;
  63. }
  64. #u602_text {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:0px;
  70. visibility:hidden;
  71. word-wrap:break-word;
  72. }
  73. #u603_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:97px;
  79. height:28px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 0);
  82. border:none;
  83. border-radius:0px;
  84. -moz-box-shadow:none;
  85. -webkit-box-shadow:none;
  86. box-shadow:none;
  87. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  88. font-weight:700;
  89. font-style:normal;
  90. }
  91. #u603 {
  92. border-width:0px;
  93. position:absolute;
  94. left:22px;
  95. top:15px;
  96. width:97px;
  97. height:28px;
  98. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  99. font-weight:700;
  100. font-style:normal;
  101. }
  102. #u603_text {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:97px;
  108. white-space:nowrap;
  109. }
  110. #u604_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:109px;
  116. height:22px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 0);
  119. border:none;
  120. border-radius:0px;
  121. -moz-box-shadow:none;
  122. -webkit-box-shadow:none;
  123. box-shadow:none;
  124. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  125. font-weight:700;
  126. font-style:normal;
  127. font-size:18px;
  128. }
  129. #u604 {
  130. border-width:0px;
  131. position:absolute;
  132. left:22px;
  133. top:71px;
  134. width:109px;
  135. height:22px;
  136. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  137. font-weight:700;
  138. font-style:normal;
  139. font-size:18px;
  140. }
  141. #u604_text {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:109px;
  147. white-space:nowrap;
  148. }
  149. #u605_div {
  150. border-width:0px;
  151. position:absolute;
  152. left:0px;
  153. top:0px;
  154. width:192px;
  155. height:22px;
  156. background:inherit;
  157. background-color:rgba(255, 255, 255, 0);
  158. border:none;
  159. border-radius:0px;
  160. -moz-box-shadow:none;
  161. -webkit-box-shadow:none;
  162. box-shadow:none;
  163. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  164. font-weight:700;
  165. font-style:normal;
  166. font-size:18px;
  167. }
  168. #u605 {
  169. border-width:0px;
  170. position:absolute;
  171. left:22px;
  172. top:198px;
  173. width:192px;
  174. height:22px;
  175. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  176. font-weight:700;
  177. font-style:normal;
  178. font-size:18px;
  179. }
  180. #u605_text {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:192px;
  186. white-space:nowrap;
  187. }
  188. #u606 {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:0px;
  194. height:0px;
  195. }
  196. #u607_img {
  197. border-width:0px;
  198. position:absolute;
  199. left:-4px;
  200. top:-4px;
  201. width:40px;
  202. height:40px;
  203. }
  204. #u607 {
  205. border-width:0px;
  206. position:absolute;
  207. left:1187px;
  208. top:277px;
  209. width:30px;
  210. height:30px;
  211. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  212. font-weight:700;
  213. font-style:normal;
  214. font-size:18px;
  215. color:#1E1E1E;
  216. }
  217. #u607_text {
  218. border-width:0px;
  219. position:absolute;
  220. left:2px;
  221. top:4px;
  222. width:26px;
  223. word-wrap:break-word;
  224. }
  225. #u608_div {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:131px;
  231. height:19px;
  232. background:inherit;
  233. background-color:rgba(255, 255, 255, 0);
  234. border:none;
  235. border-radius:0px;
  236. -moz-box-shadow:none;
  237. -webkit-box-shadow:none;
  238. box-shadow:none;
  239. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  240. font-weight:700;
  241. font-style:normal;
  242. font-size:16px;
  243. }
  244. #u608 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1227px;
  248. top:284px;
  249. width:131px;
  250. height:19px;
  251. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  252. font-weight:700;
  253. font-style:normal;
  254. font-size:16px;
  255. }
  256. #u608_text {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:131px;
  262. word-wrap:break-word;
  263. }
  264. #u609_div {
  265. border-width:0px;
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:352px;
  270. height:44px;
  271. background:inherit;
  272. background-color:rgba(255, 255, 255, 0);
  273. border:none;
  274. border-radius:0px;
  275. -moz-box-shadow:none;
  276. -webkit-box-shadow:none;
  277. box-shadow:none;
  278. line-height:22px;
  279. }
  280. #u609 {
  281. border-width:0px;
  282. position:absolute;
  283. left:1227px;
  284. top:322px;
  285. width:352px;
  286. height:44px;
  287. line-height:22px;
  288. }
  289. #u609_text {
  290. border-width:0px;
  291. position:absolute;
  292. left:0px;
  293. top:0px;
  294. width:352px;
  295. word-wrap:break-word;
  296. }
  297. #u610 {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:0px;
  303. height:0px;
  304. }
  305. #u611_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:-4px;
  309. top:-4px;
  310. width:44px;
  311. height:44px;
  312. }
  313. #u611 {
  314. border-width:0px;
  315. position:absolute;
  316. left:1187px;
  317. top:580px;
  318. width:34px;
  319. height:34px;
  320. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  321. font-weight:700;
  322. font-style:normal;
  323. font-size:26px;
  324. }
  325. #u611_text {
  326. border-width:0px;
  327. position:absolute;
  328. left:2px;
  329. top:1px;
  330. width:30px;
  331. word-wrap:break-word;
  332. }
  333. #u612_div {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:131px;
  339. height:19px;
  340. background:inherit;
  341. background-color:rgba(255, 255, 255, 0);
  342. border:none;
  343. border-radius:0px;
  344. -moz-box-shadow:none;
  345. -webkit-box-shadow:none;
  346. box-shadow:none;
  347. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  348. font-weight:700;
  349. font-style:normal;
  350. font-size:16px;
  351. }
  352. #u612 {
  353. border-width:0px;
  354. position:absolute;
  355. left:1227px;
  356. top:587px;
  357. width:131px;
  358. height:19px;
  359. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  360. font-weight:700;
  361. font-style:normal;
  362. font-size:16px;
  363. }
  364. #u612_text {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:131px;
  370. word-wrap:break-word;
  371. }
  372. #u613_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:352px;
  378. height:22px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 0);
  381. border:none;
  382. border-radius:0px;
  383. -moz-box-shadow:none;
  384. -webkit-box-shadow:none;
  385. box-shadow:none;
  386. color:#000000;
  387. line-height:22px;
  388. }
  389. #u613 {
  390. border-width:0px;
  391. position:absolute;
  392. left:1227px;
  393. top:625px;
  394. width:352px;
  395. height:22px;
  396. color:#000000;
  397. line-height:22px;
  398. }
  399. #u613_text {
  400. border-width:0px;
  401. position:absolute;
  402. left:0px;
  403. top:0px;
  404. width:352px;
  405. word-wrap:break-word;
  406. }
  407. #u614 {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:0px;
  413. height:0px;
  414. }
  415. #u615_img {
  416. border-width:0px;
  417. position:absolute;
  418. left:-4px;
  419. top:-4px;
  420. width:40px;
  421. height:40px;
  422. }
  423. #u615 {
  424. border-width:0px;
  425. position:absolute;
  426. left:1187px;
  427. top:669px;
  428. width:30px;
  429. height:30px;
  430. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  431. font-weight:700;
  432. font-style:normal;
  433. font-size:18px;
  434. color:#1E1E1E;
  435. }
  436. #u615_text {
  437. border-width:0px;
  438. position:absolute;
  439. left:2px;
  440. top:4px;
  441. width:26px;
  442. word-wrap:break-word;
  443. }
  444. #u616_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:131px;
  450. height:19px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border:none;
  454. border-radius:0px;
  455. -moz-box-shadow:none;
  456. -webkit-box-shadow:none;
  457. box-shadow:none;
  458. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  459. font-weight:700;
  460. font-style:normal;
  461. font-size:16px;
  462. }
  463. #u616 {
  464. border-width:0px;
  465. position:absolute;
  466. left:1227px;
  467. top:676px;
  468. width:131px;
  469. height:19px;
  470. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  471. font-weight:700;
  472. font-style:normal;
  473. font-size:16px;
  474. }
  475. #u616_text {
  476. border-width:0px;
  477. position:absolute;
  478. left:0px;
  479. top:0px;
  480. width:131px;
  481. word-wrap:break-word;
  482. }
  483. #u617_div {
  484. border-width:0px;
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:352px;
  489. height:110px;
  490. background:inherit;
  491. background-color:rgba(255, 255, 255, 0);
  492. border:none;
  493. border-radius:0px;
  494. -moz-box-shadow:none;
  495. -webkit-box-shadow:none;
  496. box-shadow:none;
  497. line-height:22px;
  498. }
  499. #u617 {
  500. border-width:0px;
  501. position:absolute;
  502. left:1227px;
  503. top:714px;
  504. width:352px;
  505. height:110px;
  506. line-height:22px;
  507. }
  508. #u617_text {
  509. border-width:0px;
  510. position:absolute;
  511. left:0px;
  512. top:0px;
  513. width:352px;
  514. word-wrap:break-word;
  515. }
  516. #u618 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u619_div {
  525. border-width:0px;
  526. position:absolute;
  527. left:0px;
  528. top:0px;
  529. width:131px;
  530. height:19px;
  531. background:inherit;
  532. background-color:rgba(255, 255, 255, 0);
  533. border:none;
  534. border-radius:0px;
  535. -moz-box-shadow:none;
  536. -webkit-box-shadow:none;
  537. box-shadow:none;
  538. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  539. font-weight:700;
  540. font-style:normal;
  541. font-size:16px;
  542. color:#FF0000;
  543. }
  544. #u619 {
  545. border-width:0px;
  546. position:absolute;
  547. left:1227px;
  548. top:839px;
  549. width:131px;
  550. height:19px;
  551. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  552. font-weight:700;
  553. font-style:normal;
  554. font-size:16px;
  555. color:#FF0000;
  556. }
  557. #u619_text {
  558. border-width:0px;
  559. position:absolute;
  560. left:0px;
  561. top:0px;
  562. width:131px;
  563. word-wrap:break-word;
  564. }
  565. #u620_div {
  566. border-width:0px;
  567. position:absolute;
  568. left:0px;
  569. top:0px;
  570. width:352px;
  571. height:88px;
  572. background:inherit;
  573. background-color:rgba(255, 255, 255, 0);
  574. border:none;
  575. border-radius:0px;
  576. -moz-box-shadow:none;
  577. -webkit-box-shadow:none;
  578. box-shadow:none;
  579. line-height:22px;
  580. }
  581. #u620 {
  582. border-width:0px;
  583. position:absolute;
  584. left:1227px;
  585. top:877px;
  586. width:352px;
  587. height:88px;
  588. line-height:22px;
  589. }
  590. #u620_text {
  591. border-width:0px;
  592. position:absolute;
  593. left:0px;
  594. top:0px;
  595. width:352px;
  596. word-wrap:break-word;
  597. }
  598. #u621_img {
  599. border-width:0px;
  600. position:absolute;
  601. left:-4px;
  602. top:-4px;
  603. width:44px;
  604. height:44px;
  605. }
  606. #u621 {
  607. border-width:0px;
  608. position:absolute;
  609. left:1187px;
  610. top:832px;
  611. width:34px;
  612. height:34px;
  613. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  614. font-weight:700;
  615. font-style:normal;
  616. font-size:26px;
  617. }
  618. #u621_text {
  619. border-width:0px;
  620. position:absolute;
  621. left:2px;
  622. top:1px;
  623. width:30px;
  624. word-wrap:break-word;
  625. }
  626. #u622 {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:0px;
  632. height:0px;
  633. }
  634. #u623_img {
  635. border-width:0px;
  636. position:absolute;
  637. left:-4px;
  638. top:-4px;
  639. width:44px;
  640. height:44px;
  641. }
  642. #u623 {
  643. border-width:0px;
  644. position:absolute;
  645. left:1187px;
  646. top:969px;
  647. width:34px;
  648. height:34px;
  649. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  650. font-weight:700;
  651. font-style:normal;
  652. font-size:26px;
  653. }
  654. #u623_text {
  655. border-width:0px;
  656. position:absolute;
  657. left:2px;
  658. top:1px;
  659. width:30px;
  660. word-wrap:break-word;
  661. }
  662. #u624_div {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:131px;
  668. height:19px;
  669. background:inherit;
  670. background-color:rgba(255, 255, 255, 0);
  671. border:none;
  672. border-radius:0px;
  673. -moz-box-shadow:none;
  674. -webkit-box-shadow:none;
  675. box-shadow:none;
  676. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  677. font-weight:700;
  678. font-style:normal;
  679. font-size:16px;
  680. color:#FF0000;
  681. }
  682. #u624 {
  683. border-width:0px;
  684. position:absolute;
  685. left:1227px;
  686. top:976px;
  687. width:131px;
  688. height:19px;
  689. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  690. font-weight:700;
  691. font-style:normal;
  692. font-size:16px;
  693. color:#FF0000;
  694. }
  695. #u624_text {
  696. border-width:0px;
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:131px;
  701. word-wrap:break-word;
  702. }
  703. #u625_div {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:352px;
  709. height:66px;
  710. background:inherit;
  711. background-color:rgba(255, 255, 255, 0);
  712. border:none;
  713. border-radius:0px;
  714. -moz-box-shadow:none;
  715. -webkit-box-shadow:none;
  716. box-shadow:none;
  717. line-height:22px;
  718. }
  719. #u625 {
  720. border-width:0px;
  721. position:absolute;
  722. left:1227px;
  723. top:1014px;
  724. width:352px;
  725. height:66px;
  726. line-height:22px;
  727. }
  728. #u625_text {
  729. border-width:0px;
  730. position:absolute;
  731. left:0px;
  732. top:0px;
  733. width:352px;
  734. word-wrap:break-word;
  735. }
  736. #u626 {
  737. border-width:0px;
  738. position:absolute;
  739. left:0px;
  740. top:0px;
  741. width:0px;
  742. height:0px;
  743. }
  744. #u627_img {
  745. border-width:0px;
  746. position:absolute;
  747. left:-4px;
  748. top:-4px;
  749. width:44px;
  750. height:44px;
  751. }
  752. #u627 {
  753. border-width:0px;
  754. position:absolute;
  755. left:1187px;
  756. top:1090px;
  757. width:34px;
  758. height:34px;
  759. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  760. font-weight:700;
  761. font-style:normal;
  762. font-size:26px;
  763. }
  764. #u627_text {
  765. border-width:0px;
  766. position:absolute;
  767. left:2px;
  768. top:1px;
  769. width:30px;
  770. word-wrap:break-word;
  771. }
  772. #u628_div {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:131px;
  778. height:19px;
  779. background:inherit;
  780. background-color:rgba(255, 255, 255, 0);
  781. border:none;
  782. border-radius:0px;
  783. -moz-box-shadow:none;
  784. -webkit-box-shadow:none;
  785. box-shadow:none;
  786. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  787. font-weight:700;
  788. font-style:normal;
  789. font-size:16px;
  790. color:#FF0000;
  791. }
  792. #u628 {
  793. border-width:0px;
  794. position:absolute;
  795. left:1227px;
  796. top:1097px;
  797. width:131px;
  798. height:19px;
  799. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  800. font-weight:700;
  801. font-style:normal;
  802. font-size:16px;
  803. color:#FF0000;
  804. }
  805. #u628_text {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:131px;
  811. word-wrap:break-word;
  812. }
  813. #u629_div {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:352px;
  819. height:88px;
  820. background:inherit;
  821. background-color:rgba(255, 255, 255, 0);
  822. border:none;
  823. border-radius:0px;
  824. -moz-box-shadow:none;
  825. -webkit-box-shadow:none;
  826. box-shadow:none;
  827. line-height:22px;
  828. }
  829. #u629 {
  830. border-width:0px;
  831. position:absolute;
  832. left:1227px;
  833. top:1135px;
  834. width:352px;
  835. height:88px;
  836. line-height:22px;
  837. }
  838. #u629_text {
  839. border-width:0px;
  840. position:absolute;
  841. left:0px;
  842. top:0px;
  843. width:352px;
  844. word-wrap:break-word;
  845. }
  846. #u630_div {
  847. border-width:0px;
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:1121px;
  852. height:74px;
  853. background:inherit;
  854. background-color:rgba(255, 255, 255, 0);
  855. border:none;
  856. border-radius:0px;
  857. -moz-box-shadow:none;
  858. -webkit-box-shadow:none;
  859. box-shadow:none;
  860. font-size:16px;
  861. line-height:24px;
  862. }
  863. #u630 {
  864. border-width:0px;
  865. position:absolute;
  866. left:57px;
  867. top:103px;
  868. width:1121px;
  869. height:74px;
  870. font-size:16px;
  871. line-height:24px;
  872. }
  873. #u630_text {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:1121px;
  879. word-wrap:break-word;
  880. }
  881. #u631 {
  882. border-width:0px;
  883. position:absolute;
  884. left:1227px;
  885. top:835px;
  886. width:95px;
  887. height:31px;
  888. overflow:hidden;
  889. background-image:url('../../resources/images/transparent.gif');
  890. }
  891. #u632_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:288px;
  897. height:103px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 0, 1);
  900. box-sizing:border-box;
  901. border-width:1px;
  902. border-style:solid;
  903. border-color:rgba(0, 0, 0, 1);
  904. border-radius:10px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. text-align:left;
  909. line-height:18px;
  910. }
  911. #u632 {
  912. border-width:0px;
  913. position:absolute;
  914. left:1227px;
  915. top:719px;
  916. width:288px;
  917. height:103px;
  918. text-align:left;
  919. line-height:18px;
  920. }
  921. #u632_text {
  922. border-width:0px;
  923. position:absolute;
  924. left:2px;
  925. top:6px;
  926. width:284px;
  927. word-wrap:break-word;
  928. }
  929. #u633 {
  930. border-width:0px;
  931. position:absolute;
  932. left:1227px;
  933. top:976px;
  934. width:63px;
  935. height:23px;
  936. overflow:hidden;
  937. background-image:url('../../resources/images/transparent.gif');
  938. }
  939. #u634_div {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:326px;
  945. height:88px;
  946. background:inherit;
  947. background-color:rgba(255, 255, 0, 1);
  948. box-sizing:border-box;
  949. border-width:1px;
  950. border-style:solid;
  951. border-color:rgba(0, 0, 0, 1);
  952. border-radius:10px;
  953. -moz-box-shadow:none;
  954. -webkit-box-shadow:none;
  955. box-shadow:none;
  956. text-align:left;
  957. line-height:18px;
  958. }
  959. #u634 {
  960. border-width:0px;
  961. position:absolute;
  962. left:1227px;
  963. top:881px;
  964. width:326px;
  965. height:88px;
  966. text-align:left;
  967. line-height:18px;
  968. }
  969. #u634_text {
  970. border-width:0px;
  971. position:absolute;
  972. left:2px;
  973. top:17px;
  974. width:322px;
  975. word-wrap:break-word;
  976. }
  977. #u635_img {
  978. border-width:0px;
  979. position:absolute;
  980. left:-4px;
  981. top:-4px;
  982. width:30px;
  983. height:30px;
  984. }
  985. #u635 {
  986. border-width:0px;
  987. position:absolute;
  988. left:217px;
  989. top:437px;
  990. width:20px;
  991. height:20px;
  992. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  993. font-weight:700;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#1E1E1E;
  997. }
  998. #u635_text {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:2px;
  1002. top:2px;
  1003. width:16px;
  1004. word-wrap:break-word;
  1005. }
  1006. #u636_img {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:-4px;
  1010. top:-4px;
  1011. width:30px;
  1012. height:30px;
  1013. }
  1014. #u636 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:1015px;
  1018. top:579px;
  1019. width:20px;
  1020. height:20px;
  1021. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1022. font-weight:700;
  1023. font-style:normal;
  1024. font-size:14px;
  1025. color:#1E1E1E;
  1026. }
  1027. #u636_text {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:2px;
  1031. top:2px;
  1032. width:16px;
  1033. word-wrap:break-word;
  1034. }
  1035. #u637_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:-4px;
  1039. top:-4px;
  1040. width:30px;
  1041. height:30px;
  1042. }
  1043. #u637 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:1081px;
  1047. top:579px;
  1048. width:20px;
  1049. height:20px;
  1050. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1051. font-weight:700;
  1052. font-style:normal;
  1053. font-size:14px;
  1054. color:#1E1E1E;
  1055. }
  1056. #u637_text {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:2px;
  1060. top:2px;
  1061. width:16px;
  1062. word-wrap:break-word;
  1063. }
  1064. #u638_img {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:-4px;
  1068. top:-4px;
  1069. width:30px;
  1070. height:30px;
  1071. }
  1072. #u638 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1051px;
  1076. top:579px;
  1077. width:20px;
  1078. height:20px;
  1079. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1080. font-weight:700;
  1081. font-style:normal;
  1082. font-size:14px;
  1083. color:#1E1E1E;
  1084. }
  1085. #u638_text {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:2px;
  1089. top:2px;
  1090. width:16px;
  1091. word-wrap:break-word;
  1092. }
  1093. #u639_img {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:-4px;
  1097. top:-4px;
  1098. width:30px;
  1099. height:30px;
  1100. }
  1101. #u639 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:1121px;
  1105. top:579px;
  1106. width:20px;
  1107. height:20px;
  1108. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1109. font-weight:700;
  1110. font-style:normal;
  1111. font-size:14px;
  1112. color:#1E1E1E;
  1113. }
  1114. #u639_text {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:2px;
  1118. top:2px;
  1119. width:16px;
  1120. word-wrap:break-word;
  1121. }
  1122. #u640_img {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:-4px;
  1126. top:-4px;
  1127. width:30px;
  1128. height:30px;
  1129. }
  1130. #u640 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:1121px;
  1134. top:615px;
  1135. width:20px;
  1136. height:20px;
  1137. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1138. font-weight:700;
  1139. font-style:normal;
  1140. font-size:14px;
  1141. color:#1E1E1E;
  1142. }
  1143. #u640_text {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:2px;
  1147. top:2px;
  1148. width:16px;
  1149. word-wrap:break-word;
  1150. }
  1151. #u641 {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:0px;
  1157. height:0px;
  1158. }
  1159. #u642_img {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:-4px;
  1163. top:-4px;
  1164. width:44px;
  1165. height:44px;
  1166. }
  1167. #u642 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:1187px;
  1171. top:1232px;
  1172. width:34px;
  1173. height:34px;
  1174. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1175. font-weight:700;
  1176. font-style:normal;
  1177. font-size:26px;
  1178. }
  1179. #u642_text {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:2px;
  1183. top:1px;
  1184. width:30px;
  1185. word-wrap:break-word;
  1186. }
  1187. #u643_div {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:180px;
  1193. height:19px;
  1194. background:inherit;
  1195. background-color:rgba(255, 255, 255, 0);
  1196. border:none;
  1197. border-radius:0px;
  1198. -moz-box-shadow:none;
  1199. -webkit-box-shadow:none;
  1200. box-shadow:none;
  1201. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1202. font-weight:700;
  1203. font-style:normal;
  1204. font-size:16px;
  1205. color:#FF0000;
  1206. }
  1207. #u643 {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:1227px;
  1211. top:1239px;
  1212. width:180px;
  1213. height:19px;
  1214. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1215. font-weight:700;
  1216. font-style:normal;
  1217. font-size:16px;
  1218. color:#FF0000;
  1219. }
  1220. #u643_text {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:180px;
  1226. word-wrap:break-word;
  1227. }
  1228. #u644_div {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:0px;
  1232. top:0px;
  1233. width:352px;
  1234. height:34px;
  1235. background:inherit;
  1236. background-color:rgba(255, 255, 255, 0);
  1237. border:none;
  1238. border-radius:0px;
  1239. -moz-box-shadow:none;
  1240. -webkit-box-shadow:none;
  1241. box-shadow:none;
  1242. line-height:22px;
  1243. }
  1244. #u644 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:1227px;
  1248. top:1277px;
  1249. width:352px;
  1250. height:34px;
  1251. line-height:22px;
  1252. }
  1253. #u644_text {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:352px;
  1259. word-wrap:break-word;
  1260. }
  1261. #u645 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:1227px;
  1265. top:1239px;
  1266. width:95px;
  1267. height:23px;
  1268. overflow:hidden;
  1269. background-image:url('../../resources/images/transparent.gif');
  1270. }
  1271. #u646_div {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:232px;
  1277. height:198px;
  1278. background:inherit;
  1279. background-color:rgba(255, 255, 0, 1);
  1280. box-sizing:border-box;
  1281. border-width:1px;
  1282. border-style:solid;
  1283. border-color:rgba(0, 0, 0, 1);
  1284. border-radius:10px;
  1285. -moz-box-shadow:none;
  1286. -webkit-box-shadow:none;
  1287. box-shadow:none;
  1288. text-align:left;
  1289. line-height:18px;
  1290. }
  1291. #u646 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:1227px;
  1295. top:1031px;
  1296. width:232px;
  1297. height:198px;
  1298. text-align:left;
  1299. line-height:18px;
  1300. }
  1301. #u646_text {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:2px;
  1305. top:9px;
  1306. width:228px;
  1307. word-wrap:break-word;
  1308. }
  1309. #u647_img {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:-4px;
  1313. top:-4px;
  1314. width:30px;
  1315. height:30px;
  1316. }
  1317. #u647 {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:1039px;
  1321. top:352px;
  1322. width:20px;
  1323. height:20px;
  1324. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1325. font-weight:700;
  1326. font-style:normal;
  1327. font-size:14px;
  1328. color:#1E1E1E;
  1329. }
  1330. #u647_text {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:2px;
  1334. top:2px;
  1335. width:16px;
  1336. word-wrap:break-word;
  1337. }
  1338. #u648 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:1232px;
  1342. top:1093px;
  1343. width:90px;
  1344. height:23px;
  1345. overflow:hidden;
  1346. background-image:url('../../resources/images/transparent.gif');
  1347. }
  1348. #u649_div {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:329px;
  1354. height:88px;
  1355. background:inherit;
  1356. background-color:rgba(255, 255, 0, 1);
  1357. box-sizing:border-box;
  1358. border-width:1px;
  1359. border-style:solid;
  1360. border-color:rgba(0, 0, 0, 1);
  1361. border-radius:10px;
  1362. -moz-box-shadow:none;
  1363. -webkit-box-shadow:none;
  1364. box-shadow:none;
  1365. text-align:left;
  1366. line-height:18px;
  1367. }
  1368. #u649 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:1232px;
  1372. top:999px;
  1373. width:329px;
  1374. height:88px;
  1375. text-align:left;
  1376. line-height:18px;
  1377. }
  1378. #u649_text {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:2px;
  1382. top:-1px;
  1383. width:325px;
  1384. word-wrap:break-word;
  1385. }
  1386. #u650_img {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:-4px;
  1390. top:-4px;
  1391. width:30px;
  1392. height:30px;
  1393. }
  1394. #u650 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:153px;
  1398. top:437px;
  1399. width:20px;
  1400. height:20px;
  1401. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1402. font-weight:700;
  1403. font-style:normal;
  1404. font-size:14px;
  1405. color:#1E1E1E;
  1406. }
  1407. #u650_text {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:2px;
  1411. top:2px;
  1412. width:16px;
  1413. word-wrap:break-word;
  1414. }
  1415. #u651 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:0px;
  1421. height:0px;
  1422. }
  1423. #u652_img {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:-4px;
  1427. top:-4px;
  1428. width:44px;
  1429. height:44px;
  1430. }
  1431. #u652 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:1187px;
  1435. top:1318px;
  1436. width:34px;
  1437. height:34px;
  1438. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1439. font-weight:700;
  1440. font-style:normal;
  1441. font-size:26px;
  1442. }
  1443. #u652_text {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:2px;
  1447. top:1px;
  1448. width:30px;
  1449. word-wrap:break-word;
  1450. }
  1451. #u653_div {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:0px;
  1455. top:0px;
  1456. width:131px;
  1457. height:19px;
  1458. background:inherit;
  1459. background-color:rgba(255, 255, 255, 0);
  1460. border:none;
  1461. border-radius:0px;
  1462. -moz-box-shadow:none;
  1463. -webkit-box-shadow:none;
  1464. box-shadow:none;
  1465. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1466. font-weight:700;
  1467. font-style:normal;
  1468. font-size:16px;
  1469. color:#FF0000;
  1470. }
  1471. #u653 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:1227px;
  1475. top:1325px;
  1476. width:131px;
  1477. height:19px;
  1478. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1479. font-weight:700;
  1480. font-style:normal;
  1481. font-size:16px;
  1482. color:#FF0000;
  1483. }
  1484. #u653_text {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:131px;
  1490. word-wrap:break-word;
  1491. }
  1492. #u654_div {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:352px;
  1498. height:66px;
  1499. background:inherit;
  1500. background-color:rgba(255, 255, 255, 0);
  1501. border:none;
  1502. border-radius:0px;
  1503. -moz-box-shadow:none;
  1504. -webkit-box-shadow:none;
  1505. box-shadow:none;
  1506. line-height:22px;
  1507. }
  1508. #u654 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:1227px;
  1512. top:1363px;
  1513. width:352px;
  1514. height:66px;
  1515. line-height:22px;
  1516. }
  1517. #u654_text {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:352px;
  1523. word-wrap:break-word;
  1524. }
  1525. #u655 {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:1227px;
  1529. top:1325px;
  1530. width:99px;
  1531. height:23px;
  1532. overflow:hidden;
  1533. background-image:url('../../resources/images/transparent.gif');
  1534. }
  1535. #u656_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:276px;
  1541. height:67px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 0, 1);
  1544. box-sizing:border-box;
  1545. border-width:1px;
  1546. border-style:solid;
  1547. border-color:rgba(0, 0, 0, 1);
  1548. border-radius:10px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. text-align:left;
  1553. line-height:18px;
  1554. }
  1555. #u656 {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:1216px;
  1559. top:1244px;
  1560. width:276px;
  1561. height:67px;
  1562. text-align:left;
  1563. line-height:18px;
  1564. }
  1565. #u656_text {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:2px;
  1569. top:6px;
  1570. width:272px;
  1571. word-wrap:break-word;
  1572. }
  1573. #u657_img {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:-4px;
  1577. top:-4px;
  1578. width:30px;
  1579. height:30px;
  1580. }
  1581. #u657 {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:343px;
  1585. top:437px;
  1586. width:20px;
  1587. height:20px;
  1588. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1589. font-weight:700;
  1590. font-style:normal;
  1591. font-size:14px;
  1592. color:#1E1E1E;
  1593. }
  1594. #u657_text {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:2px;
  1598. top:2px;
  1599. width:16px;
  1600. word-wrap:break-word;
  1601. }
  1602. #u658 {
  1603. position:fixed;
  1604. left:1458px;
  1605. top:15px;
  1606. }
  1607. #u658_state0 {
  1608. position:relative;
  1609. left:0px;
  1610. top:0px;
  1611. width:140px;
  1612. height:40px;
  1613. background-image:none;
  1614. }
  1615. #u658_state0_content {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:1px;
  1621. height:1px;
  1622. }
  1623. #u659_div {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:0px;
  1627. top:0px;
  1628. width:140px;
  1629. height:40px;
  1630. background:inherit;
  1631. background-color:rgba(20, 146, 138, 1);
  1632. border:none;
  1633. border-radius:5px;
  1634. -moz-box-shadow:none;
  1635. -webkit-box-shadow:none;
  1636. box-shadow:none;
  1637. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1638. font-weight:700;
  1639. font-style:normal;
  1640. font-size:16px;
  1641. }
  1642. #u659 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:140px;
  1648. height:40px;
  1649. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1650. font-weight:700;
  1651. font-style:normal;
  1652. font-size:16px;
  1653. }
  1654. #u659_text {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:2px;
  1658. top:10px;
  1659. width:136px;
  1660. word-wrap:break-word;
  1661. }
  1662. #u660 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:0px;
  1666. top:0px;
  1667. width:0px;
  1668. height:0px;
  1669. }
  1670. #u661_img {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:-4px;
  1674. top:-4px;
  1675. width:44px;
  1676. height:44px;
  1677. }
  1678. #u661 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:1187px;
  1682. top:500px;
  1683. width:34px;
  1684. height:34px;
  1685. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1686. font-weight:700;
  1687. font-style:normal;
  1688. font-size:26px;
  1689. }
  1690. #u661_text {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:2px;
  1694. top:1px;
  1695. width:30px;
  1696. word-wrap:break-word;
  1697. }
  1698. #u662_div {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:146px;
  1704. height:19px;
  1705. background:inherit;
  1706. background-color:rgba(255, 255, 255, 0);
  1707. border:none;
  1708. border-radius:0px;
  1709. -moz-box-shadow:none;
  1710. -webkit-box-shadow:none;
  1711. box-shadow:none;
  1712. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1713. font-weight:700;
  1714. font-style:normal;
  1715. font-size:16px;
  1716. }
  1717. #u662 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:1227px;
  1721. top:507px;
  1722. width:146px;
  1723. height:19px;
  1724. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1725. font-weight:700;
  1726. font-style:normal;
  1727. font-size:16px;
  1728. }
  1729. #u662_text {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:146px;
  1735. word-wrap:break-word;
  1736. }
  1737. #u663_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:352px;
  1743. height:25px;
  1744. background:inherit;
  1745. background-color:rgba(255, 255, 255, 0);
  1746. border:none;
  1747. border-radius:0px;
  1748. -moz-box-shadow:none;
  1749. -webkit-box-shadow:none;
  1750. box-shadow:none;
  1751. line-height:22px;
  1752. }
  1753. #u663 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:1227px;
  1757. top:545px;
  1758. width:352px;
  1759. height:25px;
  1760. line-height:22px;
  1761. }
  1762. #u663_text {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:352px;
  1768. word-wrap:break-word;
  1769. }
  1770. #u664_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:-4px;
  1774. top:-4px;
  1775. width:30px;
  1776. height:30px;
  1777. }
  1778. #u664 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:282px;
  1782. top:437px;
  1783. width:20px;
  1784. height:20px;
  1785. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1786. font-weight:700;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. color:#1E1E1E;
  1790. }
  1791. #u664_text {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:2px;
  1795. top:2px;
  1796. width:16px;
  1797. word-wrap:break-word;
  1798. }
  1799. #u665 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:0px;
  1805. height:0px;
  1806. }
  1807. #u666_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:-4px;
  1811. top:-4px;
  1812. width:44px;
  1813. height:44px;
  1814. }
  1815. #u666 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:1187px;
  1819. top:390px;
  1820. width:34px;
  1821. height:34px;
  1822. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1823. font-weight:700;
  1824. font-style:normal;
  1825. font-size:26px;
  1826. }
  1827. #u666_text {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:2px;
  1831. top:1px;
  1832. width:30px;
  1833. word-wrap:break-word;
  1834. }
  1835. #u667_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:131px;
  1841. height:19px;
  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:16px;
  1853. color:#FF0000;
  1854. }
  1855. #u667 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:1227px;
  1859. top:397px;
  1860. width:131px;
  1861. height:19px;
  1862. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1863. font-weight:700;
  1864. font-style:normal;
  1865. font-size:16px;
  1866. color:#FF0000;
  1867. }
  1868. #u667_text {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:131px;
  1874. word-wrap:break-word;
  1875. }
  1876. #u668_div {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:352px;
  1882. height:44px;
  1883. background:inherit;
  1884. background-color:rgba(255, 255, 255, 0);
  1885. border:none;
  1886. border-radius:0px;
  1887. -moz-box-shadow:none;
  1888. -webkit-box-shadow:none;
  1889. box-shadow:none;
  1890. line-height:22px;
  1891. }
  1892. #u668 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:1227px;
  1896. top:435px;
  1897. width:352px;
  1898. height:44px;
  1899. line-height:22px;
  1900. }
  1901. #u668_text {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:352px;
  1907. word-wrap:break-word;
  1908. }
  1909. #u669 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:1233px;
  1913. top:397px;
  1914. width:88px;
  1915. height:23px;
  1916. overflow:hidden;
  1917. background-image:url('../../resources/images/transparent.gif');
  1918. }
  1919. #u670_div {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:276px;
  1925. height:67px;
  1926. background:inherit;
  1927. background-color:rgba(255, 255, 0, 1);
  1928. box-sizing:border-box;
  1929. border-width:1px;
  1930. border-style:solid;
  1931. border-color:rgba(0, 0, 0, 1);
  1932. border-radius:10px;
  1933. -moz-box-shadow:none;
  1934. -webkit-box-shadow:none;
  1935. box-shadow:none;
  1936. text-align:left;
  1937. line-height:18px;
  1938. }
  1939. #u670 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:1227px;
  1943. top:313px;
  1944. width:276px;
  1945. height:67px;
  1946. text-align:left;
  1947. line-height:18px;
  1948. }
  1949. #u670_text {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:2px;
  1953. top:16px;
  1954. width:272px;
  1955. word-wrap:break-word;
  1956. }