styles.css 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728
  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. <<<<<<< HEAD
  16. #u1792_div {
  17. =======
  18. #u1793_div {
  19. >>>>>>> 0601optimize
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:716px;
  25. height:28px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. line-height:28px;
  35. }
  36. <<<<<<< HEAD
  37. #u1792 {
  38. =======
  39. #u1793 {
  40. >>>>>>> 0601optimize
  41. border-width:0px;
  42. position:absolute;
  43. left:57px;
  44. top:119px;
  45. width:716px;
  46. height:28px;
  47. font-size:16px;
  48. line-height:28px;
  49. }
  50. <<<<<<< HEAD
  51. #u1792_text {
  52. =======
  53. #u1793_text {
  54. >>>>>>> 0601optimize
  55. border-width:0px;
  56. position:absolute;
  57. left:0px;
  58. top:0px;
  59. width:716px;
  60. word-wrap:break-word;
  61. }
  62. <<<<<<< HEAD
  63. #u1793 {
  64. =======
  65. #u1794 {
  66. >>>>>>> 0601optimize
  67. border-width:0px;
  68. position:absolute;
  69. left:0px;
  70. top:0px;
  71. width:0px;
  72. height:0px;
  73. }
  74. <<<<<<< HEAD
  75. #u1794_img {
  76. =======
  77. #u1795_img {
  78. >>>>>>> 0601optimize
  79. border-width:0px;
  80. position:absolute;
  81. left:0px;
  82. top:0px;
  83. width:8px;
  84. height:28px;
  85. }
  86. <<<<<<< HEAD
  87. #u1794 {
  88. =======
  89. #u1795 {
  90. >>>>>>> 0601optimize
  91. border-width:0px;
  92. position:absolute;
  93. left:8px;
  94. top:15px;
  95. width:8px;
  96. height:28px;
  97. }
  98. <<<<<<< HEAD
  99. #u1794_text {
  100. =======
  101. #u1795_text {
  102. >>>>>>> 0601optimize
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:0px;
  108. visibility:hidden;
  109. word-wrap:break-word;
  110. }
  111. <<<<<<< HEAD
  112. #u1795_div {
  113. =======
  114. #u1796_div {
  115. >>>>>>> 0601optimize
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:145px;
  121. height:28px;
  122. background:inherit;
  123. background-color:rgba(255, 255, 255, 0);
  124. border:none;
  125. border-radius:0px;
  126. -moz-box-shadow:none;
  127. -webkit-box-shadow:none;
  128. box-shadow:none;
  129. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  130. font-weight:700;
  131. font-style:normal;
  132. }
  133. <<<<<<< HEAD
  134. #u1795 {
  135. =======
  136. #u1796 {
  137. >>>>>>> 0601optimize
  138. border-width:0px;
  139. position:absolute;
  140. left:22px;
  141. top:15px;
  142. width:145px;
  143. height:28px;
  144. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  145. font-weight:700;
  146. font-style:normal;
  147. }
  148. <<<<<<< HEAD
  149. #u1795_text {
  150. =======
  151. #u1796_text {
  152. >>>>>>> 0601optimize
  153. border-width:0px;
  154. position:absolute;
  155. left:0px;
  156. top:0px;
  157. width:145px;
  158. white-space:nowrap;
  159. }
  160. <<<<<<< HEAD
  161. #u1796_div {
  162. =======
  163. #u1797_div {
  164. >>>>>>> 0601optimize
  165. border-width:0px;
  166. position:absolute;
  167. left:0px;
  168. top:0px;
  169. width:109px;
  170. height:22px;
  171. background:inherit;
  172. background-color:rgba(255, 255, 255, 0);
  173. border:none;
  174. border-radius:0px;
  175. -moz-box-shadow:none;
  176. -webkit-box-shadow:none;
  177. box-shadow:none;
  178. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  179. font-weight:700;
  180. font-style:normal;
  181. font-size:18px;
  182. }
  183. <<<<<<< HEAD
  184. #u1796 {
  185. =======
  186. #u1797 {
  187. >>>>>>> 0601optimize
  188. border-width:0px;
  189. position:absolute;
  190. left:22px;
  191. top:71px;
  192. width:109px;
  193. height:22px;
  194. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  195. font-weight:700;
  196. font-style:normal;
  197. font-size:18px;
  198. }
  199. <<<<<<< HEAD
  200. #u1796_text {
  201. =======
  202. #u1797_text {
  203. >>>>>>> 0601optimize
  204. border-width:0px;
  205. position:absolute;
  206. left:0px;
  207. top:0px;
  208. width:109px;
  209. white-space:nowrap;
  210. }
  211. <<<<<<< HEAD
  212. #u1797_div {
  213. =======
  214. #u1798_div {
  215. >>>>>>> 0601optimize
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:228px;
  221. height:22px;
  222. background:inherit;
  223. background-color:rgba(255, 255, 255, 0);
  224. border:none;
  225. border-radius:0px;
  226. -moz-box-shadow:none;
  227. -webkit-box-shadow:none;
  228. box-shadow:none;
  229. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  230. font-weight:700;
  231. font-style:normal;
  232. font-size:18px;
  233. }
  234. <<<<<<< HEAD
  235. #u1797 {
  236. =======
  237. #u1798 {
  238. >>>>>>> 0601optimize
  239. border-width:0px;
  240. position:absolute;
  241. left:22px;
  242. top:201px;
  243. width:228px;
  244. height:22px;
  245. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  246. font-weight:700;
  247. font-style:normal;
  248. font-size:18px;
  249. }
  250. <<<<<<< HEAD
  251. #u1797_text {
  252. =======
  253. #u1798_text {
  254. >>>>>>> 0601optimize
  255. border-width:0px;
  256. position:absolute;
  257. left:0px;
  258. top:0px;
  259. width:228px;
  260. white-space:nowrap;
  261. }
  262. <<<<<<< HEAD
  263. #u1798 {
  264. =======
  265. #u1799 {
  266. >>>>>>> 0601optimize
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. <<<<<<< HEAD
  275. #u1799_img {
  276. =======
  277. #u1800_img {
  278. >>>>>>> 0601optimize
  279. border-width:0px;
  280. position:absolute;
  281. left:-4px;
  282. top:-4px;
  283. width:44px;
  284. height:44px;
  285. }
  286. <<<<<<< HEAD
  287. #u1799 {
  288. =======
  289. #u1800 {
  290. >>>>>>> 0601optimize
  291. border-width:0px;
  292. position:absolute;
  293. left:1187px;
  294. top:272px;
  295. width:34px;
  296. height:34px;
  297. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  298. font-weight:700;
  299. font-style:normal;
  300. font-size:26px;
  301. }
  302. <<<<<<< HEAD
  303. #u1799_text {
  304. =======
  305. #u1800_text {
  306. >>>>>>> 0601optimize
  307. border-width:0px;
  308. position:absolute;
  309. left:2px;
  310. top:1px;
  311. width:30px;
  312. word-wrap:break-word;
  313. }
  314. <<<<<<< HEAD
  315. #u1800_div {
  316. =======
  317. #u1801_div {
  318. >>>>>>> 0601optimize
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:101px;
  324. height:19px;
  325. background:inherit;
  326. background-color:rgba(255, 255, 255, 0);
  327. border:none;
  328. border-radius:0px;
  329. -moz-box-shadow:none;
  330. -webkit-box-shadow:none;
  331. box-shadow:none;
  332. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  333. font-weight:700;
  334. font-style:normal;
  335. font-size:16px;
  336. }
  337. <<<<<<< HEAD
  338. #u1800 {
  339. =======
  340. #u1801 {
  341. >>>>>>> 0601optimize
  342. border-width:0px;
  343. position:absolute;
  344. left:1227px;
  345. top:279px;
  346. width:101px;
  347. height:19px;
  348. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  349. font-weight:700;
  350. font-style:normal;
  351. font-size:16px;
  352. }
  353. <<<<<<< HEAD
  354. #u1800_text {
  355. =======
  356. #u1801_text {
  357. >>>>>>> 0601optimize
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:101px;
  363. word-wrap:break-word;
  364. }
  365. <<<<<<< HEAD
  366. #u1801_div {
  367. =======
  368. #u1802_div {
  369. >>>>>>> 0601optimize
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:352px;
  375. height:110px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 0);
  378. border:none;
  379. border-radius:0px;
  380. -moz-box-shadow:none;
  381. -webkit-box-shadow:none;
  382. box-shadow:none;
  383. line-height:22px;
  384. }
  385. <<<<<<< HEAD
  386. #u1801 {
  387. =======
  388. #u1802 {
  389. >>>>>>> 0601optimize
  390. border-width:0px;
  391. position:absolute;
  392. left:1227px;
  393. top:317px;
  394. width:352px;
  395. height:110px;
  396. line-height:22px;
  397. }
  398. <<<<<<< HEAD
  399. #u1801_text {
  400. =======
  401. #u1802_text {
  402. >>>>>>> 0601optimize
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:352px;
  408. word-wrap:break-word;
  409. }
  410. <<<<<<< HEAD
  411. #u1802_img {
  412. =======
  413. #u1803_img {
  414. >>>>>>> 0601optimize
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:1155px;
  420. height:583px;
  421. }
  422. <<<<<<< HEAD
  423. #u1802 {
  424. =======
  425. #u1803 {
  426. >>>>>>> 0601optimize
  427. border-width:0px;
  428. position:absolute;
  429. left:22px;
  430. top:272px;
  431. width:1155px;
  432. height:583px;
  433. }
  434. <<<<<<< HEAD
  435. #u1802_text {
  436. =======
  437. #u1803_text {
  438. >>>>>>> 0601optimize
  439. border-width:0px;
  440. position:absolute;
  441. left:0px;
  442. top:0px;
  443. width:0px;
  444. visibility:hidden;
  445. word-wrap:break-word;
  446. }
  447. <<<<<<< HEAD
  448. #u1803_img {
  449. =======
  450. #u1804_img {
  451. >>>>>>> 0601optimize
  452. border-width:0px;
  453. position:absolute;
  454. left:-4px;
  455. top:-4px;
  456. width:30px;
  457. height:30px;
  458. }
  459. <<<<<<< HEAD
  460. #u1803 {
  461. =======
  462. #u1804 {
  463. >>>>>>> 0601optimize
  464. border-width:0px;
  465. position:absolute;
  466. left:221px;
  467. top:424px;
  468. width:20px;
  469. height:20px;
  470. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  471. font-weight:700;
  472. font-style:normal;
  473. font-size:14px;
  474. color:#1E1E1E;
  475. }
  476. <<<<<<< HEAD
  477. #u1803_text {
  478. =======
  479. #u1804_text {
  480. >>>>>>> 0601optimize
  481. border-width:0px;
  482. position:absolute;
  483. left:2px;
  484. top:2px;
  485. width:16px;
  486. word-wrap:break-word;
  487. }
  488. <<<<<<< HEAD
  489. #u1804_img {
  490. =======
  491. #u1805_img {
  492. >>>>>>> 0601optimize
  493. border-width:0px;
  494. position:absolute;
  495. left:0px;
  496. top:0px;
  497. width:1155px;
  498. height:583px;
  499. }
  500. <<<<<<< HEAD
  501. #u1804 {
  502. =======
  503. #u1805 {
  504. >>>>>>> 0601optimize
  505. border-width:0px;
  506. position:absolute;
  507. left:22px;
  508. top:894px;
  509. width:1155px;
  510. height:583px;
  511. }
  512. <<<<<<< HEAD
  513. #u1804_text {
  514. =======
  515. #u1805_text {
  516. >>>>>>> 0601optimize
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. visibility:hidden;
  523. word-wrap:break-word;
  524. }
  525. <<<<<<< HEAD
  526. #u1805_img {
  527. =======
  528. #u1806_img {
  529. >>>>>>> 0601optimize
  530. border-width:0px;
  531. position:absolute;
  532. left:-4px;
  533. top:-4px;
  534. width:30px;
  535. height:30px;
  536. }
  537. <<<<<<< HEAD
  538. #u1805 {
  539. =======
  540. #u1806 {
  541. >>>>>>> 0601optimize
  542. border-width:0px;
  543. position:absolute;
  544. left:992px;
  545. top:1216px;
  546. width:20px;
  547. height:20px;
  548. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  549. font-weight:700;
  550. font-style:normal;
  551. font-size:14px;
  552. color:#1E1E1E;
  553. }
  554. <<<<<<< HEAD
  555. #u1805_text {
  556. =======
  557. #u1806_text {
  558. >>>>>>> 0601optimize
  559. border-width:0px;
  560. position:absolute;
  561. left:2px;
  562. top:2px;
  563. width:16px;
  564. word-wrap:break-word;
  565. }
  566. <<<<<<< HEAD
  567. #u1806 {
  568. =======
  569. #u1807 {
  570. >>>>>>> 0601optimize
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:0px;
  576. height:0px;
  577. }
  578. <<<<<<< HEAD
  579. #u1807_img {
  580. =======
  581. #u1808_img {
  582. >>>>>>> 0601optimize
  583. border-width:0px;
  584. position:absolute;
  585. left:-4px;
  586. top:-4px;
  587. width:44px;
  588. height:44px;
  589. }
  590. <<<<<<< HEAD
  591. #u1807 {
  592. =======
  593. #u1808 {
  594. >>>>>>> 0601optimize
  595. border-width:0px;
  596. position:absolute;
  597. left:1187px;
  598. top:437px;
  599. width:34px;
  600. height:34px;
  601. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  602. font-weight:700;
  603. font-style:normal;
  604. font-size:26px;
  605. }
  606. <<<<<<< HEAD
  607. #u1807_text {
  608. =======
  609. #u1808_text {
  610. >>>>>>> 0601optimize
  611. border-width:0px;
  612. position:absolute;
  613. left:2px;
  614. top:1px;
  615. width:30px;
  616. word-wrap:break-word;
  617. }
  618. <<<<<<< HEAD
  619. #u1808_div {
  620. =======
  621. #u1809_div {
  622. >>>>>>> 0601optimize
  623. border-width:0px;
  624. position:absolute;
  625. left:0px;
  626. top:0px;
  627. width:101px;
  628. height:19px;
  629. background:inherit;
  630. background-color:rgba(255, 255, 255, 0);
  631. border:none;
  632. border-radius:0px;
  633. -moz-box-shadow:none;
  634. -webkit-box-shadow:none;
  635. box-shadow:none;
  636. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  637. font-weight:700;
  638. font-style:normal;
  639. font-size:16px;
  640. }
  641. <<<<<<< HEAD
  642. #u1808 {
  643. =======
  644. #u1809 {
  645. >>>>>>> 0601optimize
  646. border-width:0px;
  647. position:absolute;
  648. left:1227px;
  649. top:444px;
  650. width:101px;
  651. height:19px;
  652. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  653. font-weight:700;
  654. font-style:normal;
  655. font-size:16px;
  656. }
  657. <<<<<<< HEAD
  658. #u1808_text {
  659. =======
  660. #u1809_text {
  661. >>>>>>> 0601optimize
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:101px;
  667. word-wrap:break-word;
  668. }
  669. <<<<<<< HEAD
  670. #u1809_div {
  671. =======
  672. #u1810_div {
  673. >>>>>>> 0601optimize
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:352px;
  679. height:44px;
  680. background:inherit;
  681. background-color:rgba(255, 255, 255, 0);
  682. border:none;
  683. border-radius:0px;
  684. -moz-box-shadow:none;
  685. -webkit-box-shadow:none;
  686. box-shadow:none;
  687. line-height:22px;
  688. }
  689. <<<<<<< HEAD
  690. #u1809 {
  691. =======
  692. #u1810 {
  693. >>>>>>> 0601optimize
  694. border-width:0px;
  695. position:absolute;
  696. left:1227px;
  697. top:482px;
  698. width:352px;
  699. height:44px;
  700. line-height:22px;
  701. }
  702. <<<<<<< HEAD
  703. #u1809_text {
  704. =======
  705. #u1810_text {
  706. >>>>>>> 0601optimize
  707. border-width:0px;
  708. position:absolute;
  709. left:0px;
  710. top:0px;
  711. width:352px;
  712. word-wrap:break-word;
  713. }
  714. <<<<<<< HEAD
  715. #u1810_img {
  716. =======
  717. #u1811_img {
  718. >>>>>>> 0601optimize
  719. border-width:0px;
  720. position:absolute;
  721. left:-4px;
  722. top:-4px;
  723. width:30px;
  724. height:30px;
  725. }
  726. <<<<<<< HEAD
  727. #u1810 {
  728. =======
  729. #u1811 {
  730. >>>>>>> 0601optimize
  731. border-width:0px;
  732. position:absolute;
  733. left:922px;
  734. top:1216px;
  735. width:20px;
  736. height:20px;
  737. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  738. font-weight:700;
  739. font-style:normal;
  740. font-size:14px;
  741. color:#1E1E1E;
  742. }
  743. <<<<<<< HEAD
  744. #u1810_text {
  745. =======
  746. #u1811_text {
  747. >>>>>>> 0601optimize
  748. border-width:0px;
  749. position:absolute;
  750. left:2px;
  751. top:2px;
  752. width:16px;
  753. word-wrap:break-word;
  754. }
  755. <<<<<<< HEAD
  756. #u1811 {
  757. =======
  758. #u1812 {
  759. >>>>>>> 0601optimize
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:0px;
  765. height:0px;
  766. }
  767. <<<<<<< HEAD
  768. #u1812_img {
  769. =======
  770. #u1813_img {
  771. >>>>>>> 0601optimize
  772. border-width:0px;
  773. position:absolute;
  774. left:-4px;
  775. top:-4px;
  776. width:40px;
  777. height:40px;
  778. }
  779. <<<<<<< HEAD
  780. #u1812 {
  781. =======
  782. #u1813 {
  783. >>>>>>> 0601optimize
  784. border-width:0px;
  785. position:absolute;
  786. left:1187px;
  787. top:536px;
  788. width:30px;
  789. height:30px;
  790. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  791. font-weight:700;
  792. font-style:normal;
  793. font-size:18px;
  794. color:#000000;
  795. }
  796. <<<<<<< HEAD
  797. #u1812_text {
  798. =======
  799. #u1813_text {
  800. >>>>>>> 0601optimize
  801. border-width:0px;
  802. position:absolute;
  803. left:2px;
  804. top:4px;
  805. width:26px;
  806. word-wrap:break-word;
  807. }
  808. <<<<<<< HEAD
  809. #u1813_div {
  810. =======
  811. #u1814_div {
  812. >>>>>>> 0601optimize
  813. border-width:0px;
  814. position:absolute;
  815. left:0px;
  816. top:0px;
  817. width:101px;
  818. height:19px;
  819. background:inherit;
  820. background-color:rgba(255, 255, 255, 0);
  821. border:none;
  822. border-radius:0px;
  823. -moz-box-shadow:none;
  824. -webkit-box-shadow:none;
  825. box-shadow:none;
  826. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  827. font-weight:700;
  828. font-style:normal;
  829. font-size:16px;
  830. }
  831. <<<<<<< HEAD
  832. #u1813 {
  833. =======
  834. #u1814 {
  835. >>>>>>> 0601optimize
  836. border-width:0px;
  837. position:absolute;
  838. left:1227px;
  839. top:543px;
  840. width:101px;
  841. height:19px;
  842. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  843. font-weight:700;
  844. font-style:normal;
  845. font-size:16px;
  846. }
  847. <<<<<<< HEAD
  848. #u1813_text {
  849. =======
  850. #u1814_text {
  851. >>>>>>> 0601optimize
  852. border-width:0px;
  853. position:absolute;
  854. left:0px;
  855. top:0px;
  856. width:101px;
  857. word-wrap:break-word;
  858. }
  859. <<<<<<< HEAD
  860. #u1814_div {
  861. =======
  862. #u1815_div {
  863. >>>>>>> 0601optimize
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:352px;
  869. height:44px;
  870. background:inherit;
  871. background-color:rgba(255, 255, 255, 0);
  872. border:none;
  873. border-radius:0px;
  874. -moz-box-shadow:none;
  875. -webkit-box-shadow:none;
  876. box-shadow:none;
  877. line-height:22px;
  878. }
  879. <<<<<<< HEAD
  880. #u1814 {
  881. =======
  882. #u1815 {
  883. >>>>>>> 0601optimize
  884. border-width:0px;
  885. position:absolute;
  886. left:1227px;
  887. top:581px;
  888. width:352px;
  889. height:44px;
  890. line-height:22px;
  891. }
  892. <<<<<<< HEAD
  893. #u1814_text {
  894. =======
  895. #u1815_text {
  896. >>>>>>> 0601optimize
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:352px;
  902. word-wrap:break-word;
  903. }
  904. <<<<<<< HEAD
  905. #u1815_img {
  906. =======
  907. #u1816_img {
  908. >>>>>>> 0601optimize
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:1155px;
  914. height:583px;
  915. }
  916. <<<<<<< HEAD
  917. #u1815 {
  918. =======
  919. #u1816 {
  920. >>>>>>> 0601optimize
  921. border-width:0px;
  922. position:absolute;
  923. left:22px;
  924. top:1532px;
  925. width:1155px;
  926. height:583px;
  927. }
  928. <<<<<<< HEAD
  929. #u1815_text {
  930. =======
  931. #u1816_text {
  932. >>>>>>> 0601optimize
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:0px;
  938. visibility:hidden;
  939. word-wrap:break-word;
  940. }
  941. <<<<<<< HEAD
  942. #u1816_img {
  943. border-width:0px;
  944. position:absolute;
  945. left:-4px;
  946. top:-4px;
  947. width:30px;
  948. height:30px;
  949. }
  950. #u1816 {
  951. border-width:0px;
  952. position:absolute;
  953. left:999px;
  954. top:1973px;
  955. width:20px;
  956. height:20px;
  957. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  958. font-weight:700;
  959. font-style:normal;
  960. font-size:14px;
  961. color:#1E1E1E;
  962. }
  963. #u1816_text {
  964. border-width:0px;
  965. position:absolute;
  966. left:2px;
  967. top:2px;
  968. width:16px;
  969. word-wrap:break-word;
  970. }
  971. =======
  972. >>>>>>> 0601optimize
  973. #u1817_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:-4px;
  977. top:-4px;
  978. width:30px;
  979. height:30px;
  980. }
  981. #u1817 {
  982. border-width:0px;
  983. position:absolute;
  984. <<<<<<< HEAD
  985. left:1059px;
  986. =======
  987. left:999px;
  988. >>>>>>> 0601optimize
  989. top:1973px;
  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. #u1817_text {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:2px;
  1002. top:2px;
  1003. width:16px;
  1004. word-wrap:break-word;
  1005. }
  1006. <<<<<<< HEAD
  1007. #u1818 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:0px;
  1013. height:0px;
  1014. }
  1015. #u1819_div {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:131px;
  1021. height:19px;
  1022. background:inherit;
  1023. background-color:rgba(255, 255, 255, 0);
  1024. border:none;
  1025. border-radius:0px;
  1026. -moz-box-shadow:none;
  1027. -webkit-box-shadow:none;
  1028. box-shadow:none;
  1029. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1030. font-weight:700;
  1031. font-style:normal;
  1032. font-size:16px;
  1033. color:#FF0000;
  1034. }
  1035. #u1819 {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:1227px;
  1039. top:1540px;
  1040. width:131px;
  1041. height:19px;
  1042. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1043. font-weight:700;
  1044. font-style:normal;
  1045. font-size:16px;
  1046. color:#FF0000;
  1047. }
  1048. #u1819_text {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:131px;
  1054. word-wrap:break-word;
  1055. }
  1056. #u1820_div {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:352px;
  1062. height:88px;
  1063. background:inherit;
  1064. background-color:rgba(255, 255, 255, 0);
  1065. border:none;
  1066. border-radius:0px;
  1067. -moz-box-shadow:none;
  1068. -webkit-box-shadow:none;
  1069. box-shadow:none;
  1070. line-height:22px;
  1071. }
  1072. #u1820 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1227px;
  1076. top:1578px;
  1077. width:352px;
  1078. height:88px;
  1079. line-height:22px;
  1080. }
  1081. #u1820_text {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:0px;
  1085. top:0px;
  1086. width:352px;
  1087. word-wrap:break-word;
  1088. }
  1089. #u1821_img {
  1090. =======
  1091. #u1818_img {
  1092. >>>>>>> 0601optimize
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:-4px;
  1096. top:-4px;
  1097. <<<<<<< HEAD
  1098. width:40px;
  1099. height:40px;
  1100. }
  1101. #u1821 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:1187px;
  1105. top:1533px;
  1106. width:30px;
  1107. height:30px;
  1108. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1109. font-weight:700;
  1110. font-style:normal;
  1111. font-size:26px;
  1112. color:#333333;
  1113. }
  1114. #u1821_text {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:2px;
  1118. top:-1px;
  1119. width:26px;
  1120. word-wrap:break-word;
  1121. }
  1122. #u1822 {
  1123. =======
  1124. width:30px;
  1125. height:30px;
  1126. }
  1127. #u1818 {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:1059px;
  1131. top:1973px;
  1132. width:20px;
  1133. height:20px;
  1134. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1135. font-weight:700;
  1136. font-style:normal;
  1137. font-size:14px;
  1138. color:#1E1E1E;
  1139. }
  1140. #u1818_text {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:2px;
  1144. top:2px;
  1145. width:16px;
  1146. word-wrap:break-word;
  1147. }
  1148. #u1819 {
  1149. >>>>>>> 0601optimize
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:0px;
  1155. height:0px;
  1156. }
  1157. <<<<<<< HEAD
  1158. #u1823_img {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:-4px;
  1162. top:-4px;
  1163. width:40px;
  1164. height:40px;
  1165. }
  1166. #u1823 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:1187px;
  1170. top:1670px;
  1171. width:30px;
  1172. height:30px;
  1173. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1174. font-weight:700;
  1175. font-style:normal;
  1176. font-size:18px;
  1177. color:#333333;
  1178. }
  1179. #u1823_text {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:2px;
  1183. top:4px;
  1184. width:26px;
  1185. word-wrap:break-word;
  1186. }
  1187. #u1824_div {
  1188. =======
  1189. #u1820_div {
  1190. >>>>>>> 0601optimize
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:131px;
  1196. height:19px;
  1197. background:inherit;
  1198. background-color:rgba(255, 255, 255, 0);
  1199. border:none;
  1200. border-radius:0px;
  1201. -moz-box-shadow:none;
  1202. -webkit-box-shadow:none;
  1203. box-shadow:none;
  1204. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1205. font-weight:700;
  1206. font-style:normal;
  1207. font-size:16px;
  1208. color:#FF0000;
  1209. }
  1210. <<<<<<< HEAD
  1211. #u1824 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:1227px;
  1215. top:1677px;
  1216. =======
  1217. #u1820 {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:1227px;
  1221. top:1540px;
  1222. >>>>>>> 0601optimize
  1223. width:131px;
  1224. height:19px;
  1225. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1226. font-weight:700;
  1227. font-style:normal;
  1228. font-size:16px;
  1229. color:#FF0000;
  1230. }
  1231. <<<<<<< HEAD
  1232. #u1824_text {
  1233. =======
  1234. #u1820_text {
  1235. >>>>>>> 0601optimize
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:0px;
  1239. top:0px;
  1240. width:131px;
  1241. word-wrap:break-word;
  1242. }
  1243. <<<<<<< HEAD
  1244. #u1825_div {
  1245. =======
  1246. #u1821_div {
  1247. >>>>>>> 0601optimize
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:352px;
  1253. <<<<<<< HEAD
  1254. height:66px;
  1255. =======
  1256. height:88px;
  1257. >>>>>>> 0601optimize
  1258. background:inherit;
  1259. background-color:rgba(255, 255, 255, 0);
  1260. border:none;
  1261. border-radius:0px;
  1262. -moz-box-shadow:none;
  1263. -webkit-box-shadow:none;
  1264. box-shadow:none;
  1265. line-height:22px;
  1266. }
  1267. <<<<<<< HEAD
  1268. #u1825 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:1227px;
  1272. top:1715px;
  1273. width:352px;
  1274. height:66px;
  1275. line-height:22px;
  1276. }
  1277. #u1825_text {
  1278. =======
  1279. #u1821 {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:1227px;
  1283. top:1578px;
  1284. width:352px;
  1285. height:88px;
  1286. line-height:22px;
  1287. }
  1288. #u1821_text {
  1289. >>>>>>> 0601optimize
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:352px;
  1295. word-wrap:break-word;
  1296. }
  1297. <<<<<<< HEAD
  1298. #u1826 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1227px;
  1302. top:1677px;
  1303. width:63px;
  1304. height:23px;
  1305. overflow:hidden;
  1306. background-image:url('../../resources/images/transparent.gif');
  1307. }
  1308. #u1827_div {
  1309. =======
  1310. #u1822_img {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:-4px;
  1314. top:-4px;
  1315. width:40px;
  1316. height:40px;
  1317. }
  1318. #u1822 {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:1187px;
  1322. top:1533px;
  1323. width:30px;
  1324. height:30px;
  1325. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1326. font-weight:700;
  1327. font-style:normal;
  1328. font-size:26px;
  1329. color:#333333;
  1330. }
  1331. #u1822_text {
  1332. border-width:0px;
  1333. position:absolute;
  1334. left:2px;
  1335. top:-1px;
  1336. width:26px;
  1337. word-wrap:break-word;
  1338. }
  1339. #u1823 {
  1340. >>>>>>> 0601optimize
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. <<<<<<< HEAD
  1346. width:326px;
  1347. height:88px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 0, 1);
  1350. box-sizing:border-box;
  1351. border-width:1px;
  1352. border-style:solid;
  1353. border-color:rgba(0, 0, 0, 1);
  1354. border-radius:10px;
  1355. -moz-box-shadow:none;
  1356. -webkit-box-shadow:none;
  1357. box-shadow:none;
  1358. text-align:left;
  1359. line-height:18px;
  1360. }
  1361. #u1827 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:1227px;
  1365. top:1582px;
  1366. width:326px;
  1367. height:88px;
  1368. text-align:left;
  1369. line-height:18px;
  1370. }
  1371. #u1827_text {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:2px;
  1375. top:17px;
  1376. width:322px;
  1377. word-wrap:break-word;
  1378. }
  1379. #u1828 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:1231px;
  1383. top:1538px;
  1384. width:95px;
  1385. height:23px;
  1386. overflow:hidden;
  1387. background-image:url('../../resources/images/transparent.gif');
  1388. }
  1389. #u1829_div {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:288px;
  1395. height:103px;
  1396. background:inherit;
  1397. background-color:rgba(255, 255, 0, 1);
  1398. box-sizing:border-box;
  1399. border-width:1px;
  1400. border-style:solid;
  1401. border-color:rgba(0, 0, 0, 1);
  1402. border-radius:10px;
  1403. -moz-box-shadow:none;
  1404. -webkit-box-shadow:none;
  1405. box-shadow:none;
  1406. text-align:left;
  1407. line-height:18px;
  1408. }
  1409. #u1829 {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:1232px;
  1413. top:1425px;
  1414. width:288px;
  1415. height:103px;
  1416. text-align:left;
  1417. line-height:18px;
  1418. }
  1419. #u1829_text {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:2px;
  1423. top:6px;
  1424. width:284px;
  1425. word-wrap:break-word;
  1426. }
  1427. #u1830 {
  1428. position:fixed;
  1429. left:1382px;
  1430. top:68px;
  1431. }
  1432. #u1830_state0 {
  1433. position:relative;
  1434. left:0px;
  1435. top:0px;
  1436. width:140px;
  1437. height:40px;
  1438. background-image:none;
  1439. }
  1440. #u1830_state0_content {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:1px;
  1446. height:1px;
  1447. }
  1448. #u1831_div {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:140px;
  1454. =======
  1455. width:0px;
  1456. height:0px;
  1457. }
  1458. #u1824_img {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:-4px;
  1462. top:-4px;
  1463. width:40px;
  1464. >>>>>>> 0601optimize
  1465. height:40px;
  1466. }
  1467. #u1824 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:1187px;
  1471. top:1670px;
  1472. width:30px;
  1473. height:30px;
  1474. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1475. font-weight:700;
  1476. font-style:normal;
  1477. font-size:18px;
  1478. color:#333333;
  1479. }
  1480. #u1824_text {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:2px;
  1484. top:4px;
  1485. width:26px;
  1486. word-wrap:break-word;
  1487. }
  1488. #u1825_div {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:131px;
  1494. height:19px;
  1495. background:inherit;
  1496. <<<<<<< HEAD
  1497. =======
  1498. background-color:rgba(255, 255, 255, 0);
  1499. border:none;
  1500. border-radius:0px;
  1501. -moz-box-shadow:none;
  1502. -webkit-box-shadow:none;
  1503. box-shadow:none;
  1504. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1505. font-weight:700;
  1506. font-style:normal;
  1507. font-size:16px;
  1508. color:#FF0000;
  1509. }
  1510. #u1825 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:1227px;
  1514. top:1677px;
  1515. width:131px;
  1516. height:19px;
  1517. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1518. font-weight:700;
  1519. font-style:normal;
  1520. font-size:16px;
  1521. color:#FF0000;
  1522. }
  1523. #u1825_text {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:131px;
  1529. word-wrap:break-word;
  1530. }
  1531. #u1826_div {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:0px;
  1535. top:0px;
  1536. width:352px;
  1537. height:66px;
  1538. background:inherit;
  1539. background-color:rgba(255, 255, 255, 0);
  1540. border:none;
  1541. border-radius:0px;
  1542. -moz-box-shadow:none;
  1543. -webkit-box-shadow:none;
  1544. box-shadow:none;
  1545. line-height:22px;
  1546. }
  1547. #u1826 {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:1227px;
  1551. top:1715px;
  1552. width:352px;
  1553. height:66px;
  1554. line-height:22px;
  1555. }
  1556. #u1826_text {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:352px;
  1562. word-wrap:break-word;
  1563. }
  1564. #u1827 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:1227px;
  1568. top:1677px;
  1569. width:63px;
  1570. height:23px;
  1571. overflow:hidden;
  1572. background-image:url('../../resources/images/transparent.gif');
  1573. }
  1574. #u1828_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:326px;
  1580. height:88px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 0, 1);
  1583. box-sizing:border-box;
  1584. border-width:1px;
  1585. border-style:solid;
  1586. border-color:rgba(0, 0, 0, 1);
  1587. border-radius:10px;
  1588. -moz-box-shadow:none;
  1589. -webkit-box-shadow:none;
  1590. box-shadow:none;
  1591. text-align:left;
  1592. line-height:18px;
  1593. }
  1594. #u1828 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:1227px;
  1598. top:1582px;
  1599. width:326px;
  1600. height:88px;
  1601. text-align:left;
  1602. line-height:18px;
  1603. }
  1604. #u1828_text {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:2px;
  1608. top:17px;
  1609. width:322px;
  1610. word-wrap:break-word;
  1611. }
  1612. #u1829 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:1231px;
  1616. top:1538px;
  1617. width:95px;
  1618. height:23px;
  1619. overflow:hidden;
  1620. background-image:url('../../resources/images/transparent.gif');
  1621. }
  1622. #u1830_div {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:288px;
  1628. height:103px;
  1629. background:inherit;
  1630. background-color:rgba(255, 255, 0, 1);
  1631. box-sizing:border-box;
  1632. border-width:1px;
  1633. border-style:solid;
  1634. border-color:rgba(0, 0, 0, 1);
  1635. border-radius:10px;
  1636. -moz-box-shadow:none;
  1637. -webkit-box-shadow:none;
  1638. box-shadow:none;
  1639. text-align:left;
  1640. line-height:18px;
  1641. }
  1642. #u1830 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:1232px;
  1646. top:1425px;
  1647. width:288px;
  1648. height:103px;
  1649. text-align:left;
  1650. line-height:18px;
  1651. }
  1652. #u1830_text {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:2px;
  1656. top:6px;
  1657. width:284px;
  1658. word-wrap:break-word;
  1659. }
  1660. #u1831 {
  1661. position:fixed;
  1662. left:1382px;
  1663. top:68px;
  1664. }
  1665. #u1831_state0 {
  1666. position:relative;
  1667. left:0px;
  1668. top:0px;
  1669. width:140px;
  1670. height:40px;
  1671. background-image:none;
  1672. }
  1673. #u1831_state0_content {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:1px;
  1679. height:1px;
  1680. }
  1681. #u1832_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:140px;
  1687. height:40px;
  1688. background:inherit;
  1689. >>>>>>> 0601optimize
  1690. background-color:rgba(51, 160, 154, 1);
  1691. border:none;
  1692. border-radius:5px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1697. font-weight:700;
  1698. font-style:normal;
  1699. font-size:16px;
  1700. }
  1701. <<<<<<< HEAD
  1702. #u1831 {
  1703. =======
  1704. #u1832 {
  1705. >>>>>>> 0601optimize
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:140px;
  1711. height:40px;
  1712. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1713. font-weight:700;
  1714. font-style:normal;
  1715. font-size:16px;
  1716. }
  1717. <<<<<<< HEAD
  1718. #u1831_text {
  1719. =======
  1720. #u1832_text {
  1721. >>>>>>> 0601optimize
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:2px;
  1725. top:10px;
  1726. width:136px;
  1727. word-wrap:break-word;
  1728. }