styles.css 32 KB

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