styles.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1578px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. <<<<<<< HEAD
  16. #u2813 {
  17. =======
  18. #u2814 {
  19. >>>>>>> 0601optimize
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. <<<<<<< HEAD
  28. #u2814_img {
  29. =======
  30. #u2815_img {
  31. >>>>>>> 0601optimize
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:8px;
  37. height:28px;
  38. }
  39. <<<<<<< HEAD
  40. #u2814 {
  41. =======
  42. #u2815 {
  43. >>>>>>> 0601optimize
  44. border-width:0px;
  45. position:absolute;
  46. left:7px;
  47. top:21px;
  48. width:8px;
  49. height:28px;
  50. }
  51. <<<<<<< HEAD
  52. #u2814_text {
  53. =======
  54. #u2815_text {
  55. >>>>>>> 0601optimize
  56. border-width:0px;
  57. position:absolute;
  58. left:0px;
  59. top:0px;
  60. width:0px;
  61. visibility:hidden;
  62. word-wrap:break-word;
  63. }
  64. <<<<<<< HEAD
  65. #u2815_div {
  66. =======
  67. #u2816_div {
  68. >>>>>>> 0601optimize
  69. border-width:0px;
  70. position:absolute;
  71. left:0px;
  72. top:0px;
  73. width:121px;
  74. height:28px;
  75. background:inherit;
  76. background-color:rgba(255, 255, 255, 0);
  77. border:none;
  78. border-radius:0px;
  79. -moz-box-shadow:none;
  80. -webkit-box-shadow:none;
  81. box-shadow:none;
  82. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  83. font-weight:700;
  84. font-style:normal;
  85. }
  86. <<<<<<< HEAD
  87. #u2815 {
  88. =======
  89. #u2816 {
  90. >>>>>>> 0601optimize
  91. border-width:0px;
  92. position:absolute;
  93. left:21px;
  94. top:21px;
  95. width:121px;
  96. height:28px;
  97. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  98. font-weight:700;
  99. font-style:normal;
  100. }
  101. <<<<<<< HEAD
  102. #u2815_text {
  103. =======
  104. #u2816_text {
  105. >>>>>>> 0601optimize
  106. border-width:0px;
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:121px;
  111. white-space:nowrap;
  112. }
  113. <<<<<<< HEAD
  114. #u2816_div {
  115. =======
  116. #u2817_div {
  117. >>>>>>> 0601optimize
  118. border-width:0px;
  119. position:absolute;
  120. left:0px;
  121. top:0px;
  122. width:109px;
  123. height:22px;
  124. background:inherit;
  125. background-color:rgba(255, 255, 255, 0);
  126. border:none;
  127. border-radius:0px;
  128. -moz-box-shadow:none;
  129. -webkit-box-shadow:none;
  130. box-shadow:none;
  131. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  132. font-weight:700;
  133. font-style:normal;
  134. font-size:18px;
  135. }
  136. <<<<<<< HEAD
  137. #u2816 {
  138. =======
  139. #u2817 {
  140. >>>>>>> 0601optimize
  141. border-width:0px;
  142. position:absolute;
  143. left:21px;
  144. top:77px;
  145. width:109px;
  146. height:22px;
  147. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  148. font-weight:700;
  149. font-style:normal;
  150. font-size:18px;
  151. }
  152. <<<<<<< HEAD
  153. #u2816_text {
  154. =======
  155. #u2817_text {
  156. >>>>>>> 0601optimize
  157. border-width:0px;
  158. position:absolute;
  159. left:0px;
  160. top:0px;
  161. width:109px;
  162. white-space:nowrap;
  163. }
  164. <<<<<<< HEAD
  165. #u2817_div {
  166. =======
  167. #u2818_div {
  168. >>>>>>> 0601optimize
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:215px;
  174. height:22px;
  175. background:inherit;
  176. background-color:rgba(255, 255, 255, 0);
  177. border:none;
  178. border-radius:0px;
  179. -moz-box-shadow:none;
  180. -webkit-box-shadow:none;
  181. box-shadow:none;
  182. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  183. font-weight:700;
  184. font-style:normal;
  185. font-size:18px;
  186. }
  187. <<<<<<< HEAD
  188. #u2817 {
  189. =======
  190. #u2818 {
  191. >>>>>>> 0601optimize
  192. border-width:0px;
  193. position:absolute;
  194. left:21px;
  195. top:222px;
  196. width:215px;
  197. height:22px;
  198. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  199. font-weight:700;
  200. font-style:normal;
  201. font-size:18px;
  202. }
  203. <<<<<<< HEAD
  204. #u2817_text {
  205. =======
  206. #u2818_text {
  207. >>>>>>> 0601optimize
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:215px;
  213. white-space:nowrap;
  214. }
  215. <<<<<<< HEAD
  216. #u2818_img {
  217. =======
  218. #u2819_img {
  219. >>>>>>> 0601optimize
  220. border-width:0px;
  221. position:absolute;
  222. left:0px;
  223. top:0px;
  224. width:1155px;
  225. height:583px;
  226. }
  227. <<<<<<< HEAD
  228. #u2818 {
  229. =======
  230. #u2819 {
  231. >>>>>>> 0601optimize
  232. border-width:0px;
  233. position:absolute;
  234. left:21px;
  235. top:281px;
  236. width:1155px;
  237. height:583px;
  238. }
  239. <<<<<<< HEAD
  240. #u2818_text {
  241. =======
  242. #u2819_text {
  243. >>>>>>> 0601optimize
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:0px;
  249. visibility:hidden;
  250. word-wrap:break-word;
  251. }
  252. <<<<<<< HEAD
  253. #u2819_img {
  254. =======
  255. #u2820_img {
  256. >>>>>>> 0601optimize
  257. border-width:0px;
  258. position:absolute;
  259. left:-4px;
  260. top:-4px;
  261. width:30px;
  262. height:30px;
  263. }
  264. <<<<<<< HEAD
  265. #u2819 {
  266. =======
  267. #u2820 {
  268. >>>>>>> 0601optimize
  269. border-width:0px;
  270. position:absolute;
  271. left:157px;
  272. top:394px;
  273. width:20px;
  274. height:20px;
  275. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  276. font-weight:700;
  277. font-style:normal;
  278. font-size:14px;
  279. color:#1E1E1E;
  280. }
  281. <<<<<<< HEAD
  282. #u2819_text {
  283. =======
  284. #u2820_text {
  285. >>>>>>> 0601optimize
  286. border-width:0px;
  287. position:absolute;
  288. left:2px;
  289. top:2px;
  290. width:16px;
  291. word-wrap:break-word;
  292. }
  293. <<<<<<< HEAD
  294. #u2820_img {
  295. =======
  296. #u2821_img {
  297. >>>>>>> 0601optimize
  298. border-width:0px;
  299. position:absolute;
  300. left:-4px;
  301. top:-4px;
  302. width:30px;
  303. height:30px;
  304. }
  305. <<<<<<< HEAD
  306. #u2820 {
  307. =======
  308. #u2821 {
  309. >>>>>>> 0601optimize
  310. border-width:0px;
  311. position:absolute;
  312. left:346px;
  313. top:394px;
  314. width:20px;
  315. height:20px;
  316. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  317. font-weight:700;
  318. font-style:normal;
  319. font-size:14px;
  320. color:#1E1E1E;
  321. }
  322. <<<<<<< HEAD
  323. #u2820_text {
  324. =======
  325. #u2821_text {
  326. >>>>>>> 0601optimize
  327. border-width:0px;
  328. position:absolute;
  329. left:2px;
  330. top:2px;
  331. width:16px;
  332. word-wrap:break-word;
  333. }
  334. <<<<<<< HEAD
  335. #u2821_img {
  336. =======
  337. #u2822_img {
  338. >>>>>>> 0601optimize
  339. border-width:0px;
  340. position:absolute;
  341. left:-4px;
  342. top:-4px;
  343. width:30px;
  344. height:30px;
  345. }
  346. <<<<<<< HEAD
  347. #u2821 {
  348. =======
  349. #u2822 {
  350. >>>>>>> 0601optimize
  351. border-width:0px;
  352. position:absolute;
  353. left:438px;
  354. top:394px;
  355. width:20px;
  356. height:20px;
  357. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  358. font-weight:700;
  359. font-style:normal;
  360. font-size:14px;
  361. color:#1E1E1E;
  362. }
  363. <<<<<<< HEAD
  364. #u2821_text {
  365. =======
  366. #u2822_text {
  367. >>>>>>> 0601optimize
  368. border-width:0px;
  369. position:absolute;
  370. left:2px;
  371. top:2px;
  372. width:16px;
  373. word-wrap:break-word;
  374. }
  375. <<<<<<< HEAD
  376. #u2822_img {
  377. =======
  378. #u2823_img {
  379. >>>>>>> 0601optimize
  380. border-width:0px;
  381. position:absolute;
  382. left:-4px;
  383. top:-4px;
  384. width:30px;
  385. height:30px;
  386. }
  387. <<<<<<< HEAD
  388. #u2822 {
  389. =======
  390. #u2823 {
  391. >>>>>>> 0601optimize
  392. border-width:0px;
  393. position:absolute;
  394. left:530px;
  395. top:394px;
  396. width:20px;
  397. height:20px;
  398. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  399. font-weight:700;
  400. font-style:normal;
  401. font-size:14px;
  402. color:#1E1E1E;
  403. }
  404. <<<<<<< HEAD
  405. #u2822_text {
  406. =======
  407. #u2823_text {
  408. >>>>>>> 0601optimize
  409. border-width:0px;
  410. position:absolute;
  411. left:2px;
  412. top:2px;
  413. width:16px;
  414. word-wrap:break-word;
  415. }
  416. <<<<<<< HEAD
  417. #u2823_img {
  418. =======
  419. #u2824_img {
  420. >>>>>>> 0601optimize
  421. border-width:0px;
  422. position:absolute;
  423. left:-4px;
  424. top:-4px;
  425. width:30px;
  426. height:30px;
  427. }
  428. <<<<<<< HEAD
  429. #u2823 {
  430. =======
  431. #u2824 {
  432. >>>>>>> 0601optimize
  433. border-width:0px;
  434. position:absolute;
  435. left:258px;
  436. top:394px;
  437. width:20px;
  438. height:20px;
  439. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  440. font-weight:700;
  441. font-style:normal;
  442. font-size:14px;
  443. color:#1E1E1E;
  444. }
  445. <<<<<<< HEAD
  446. #u2823_text {
  447. =======
  448. #u2824_text {
  449. >>>>>>> 0601optimize
  450. border-width:0px;
  451. position:absolute;
  452. left:2px;
  453. top:2px;
  454. width:16px;
  455. word-wrap:break-word;
  456. }
  457. <<<<<<< HEAD
  458. #u2824_img {
  459. =======
  460. #u2825_img {
  461. >>>>>>> 0601optimize
  462. border-width:0px;
  463. position:absolute;
  464. left:-4px;
  465. top:-4px;
  466. width:30px;
  467. height:30px;
  468. }
  469. <<<<<<< HEAD
  470. #u2824 {
  471. =======
  472. #u2825 {
  473. >>>>>>> 0601optimize
  474. border-width:0px;
  475. position:absolute;
  476. left:991px;
  477. top:465px;
  478. width:20px;
  479. height:20px;
  480. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  481. font-weight:700;
  482. font-style:normal;
  483. font-size:14px;
  484. color:#1E1E1E;
  485. }
  486. <<<<<<< HEAD
  487. #u2824_text {
  488. =======
  489. #u2825_text {
  490. >>>>>>> 0601optimize
  491. border-width:0px;
  492. position:absolute;
  493. left:2px;
  494. top:2px;
  495. width:16px;
  496. word-wrap:break-word;
  497. }
  498. <<<<<<< HEAD
  499. #u2825_img {
  500. =======
  501. #u2826_img {
  502. >>>>>>> 0601optimize
  503. border-width:0px;
  504. position:absolute;
  505. left:-4px;
  506. top:-4px;
  507. width:30px;
  508. height:30px;
  509. }
  510. <<<<<<< HEAD
  511. #u2825 {
  512. =======
  513. #u2826 {
  514. >>>>>>> 0601optimize
  515. border-width:0px;
  516. position:absolute;
  517. left:1031px;
  518. top:465px;
  519. width:20px;
  520. height:20px;
  521. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  522. font-weight:700;
  523. font-style:normal;
  524. font-size:14px;
  525. color:#1E1E1E;
  526. }
  527. <<<<<<< HEAD
  528. #u2825_text {
  529. =======
  530. #u2826_text {
  531. >>>>>>> 0601optimize
  532. border-width:0px;
  533. position:absolute;
  534. left:2px;
  535. top:2px;
  536. width:16px;
  537. word-wrap:break-word;
  538. }
  539. <<<<<<< HEAD
  540. #u2826_img {
  541. =======
  542. #u2827_img {
  543. >>>>>>> 0601optimize
  544. border-width:0px;
  545. position:absolute;
  546. left:-4px;
  547. top:-4px;
  548. width:30px;
  549. height:30px;
  550. }
  551. <<<<<<< HEAD
  552. #u2826 {
  553. =======
  554. #u2827 {
  555. >>>>>>> 0601optimize
  556. border-width:0px;
  557. position:absolute;
  558. left:1077px;
  559. top:465px;
  560. width:20px;
  561. height:20px;
  562. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  563. font-weight:700;
  564. font-style:normal;
  565. font-size:14px;
  566. color:#1E1E1E;
  567. }
  568. <<<<<<< HEAD
  569. #u2826_text {
  570. =======
  571. #u2827_text {
  572. >>>>>>> 0601optimize
  573. border-width:0px;
  574. position:absolute;
  575. left:2px;
  576. top:2px;
  577. width:16px;
  578. word-wrap:break-word;
  579. }
  580. <<<<<<< HEAD
  581. #u2827_img {
  582. =======
  583. #u2828_img {
  584. >>>>>>> 0601optimize
  585. border-width:0px;
  586. position:absolute;
  587. left:-4px;
  588. top:-4px;
  589. width:30px;
  590. height:30px;
  591. }
  592. <<<<<<< HEAD
  593. #u2827 {
  594. =======
  595. #u2828 {
  596. >>>>>>> 0601optimize
  597. border-width:0px;
  598. position:absolute;
  599. left:1125px;
  600. top:465px;
  601. width:20px;
  602. height:20px;
  603. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  604. font-weight:700;
  605. font-style:normal;
  606. font-size:14px;
  607. color:#1E1E1E;
  608. }
  609. <<<<<<< HEAD
  610. #u2827_text {
  611. =======
  612. #u2828_text {
  613. >>>>>>> 0601optimize
  614. border-width:0px;
  615. position:absolute;
  616. left:2px;
  617. top:2px;
  618. width:16px;
  619. word-wrap:break-word;
  620. }
  621. <<<<<<< HEAD
  622. #u2828_div {
  623. =======
  624. #u2829_div {
  625. >>>>>>> 0601optimize
  626. border-width:0px;
  627. position:absolute;
  628. left:0px;
  629. top:0px;
  630. width:109px;
  631. height:22px;
  632. background:inherit;
  633. background-color:rgba(255, 255, 255, 0);
  634. border:none;
  635. border-radius:0px;
  636. -moz-box-shadow:none;
  637. -webkit-box-shadow:none;
  638. box-shadow:none;
  639. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  640. font-weight:700;
  641. font-style:normal;
  642. font-size:18px;
  643. }
  644. <<<<<<< HEAD
  645. #u2828 {
  646. =======
  647. #u2829 {
  648. >>>>>>> 0601optimize
  649. border-width:0px;
  650. position:absolute;
  651. left:21px;
  652. top:918px;
  653. width:109px;
  654. height:22px;
  655. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  656. font-weight:700;
  657. font-style:normal;
  658. font-size:18px;
  659. }
  660. <<<<<<< HEAD
  661. #u2828_text {
  662. =======
  663. #u2829_text {
  664. >>>>>>> 0601optimize
  665. border-width:0px;
  666. position:absolute;
  667. left:0px;
  668. top:0px;
  669. width:109px;
  670. white-space:nowrap;
  671. }
  672. <<<<<<< HEAD
  673. #u2829_img {
  674. =======
  675. #u2830_img {
  676. >>>>>>> 0601optimize
  677. border-width:0px;
  678. position:absolute;
  679. left:0px;
  680. top:0px;
  681. width:1155px;
  682. height:583px;
  683. }
  684. <<<<<<< HEAD
  685. #u2829 {
  686. =======
  687. #u2830 {
  688. >>>>>>> 0601optimize
  689. border-width:0px;
  690. position:absolute;
  691. left:21px;
  692. top:950px;
  693. width:1155px;
  694. height:583px;
  695. }
  696. <<<<<<< HEAD
  697. #u2829_text {
  698. =======
  699. #u2830_text {
  700. >>>>>>> 0601optimize
  701. border-width:0px;
  702. position:absolute;
  703. left:0px;
  704. top:0px;
  705. width:0px;
  706. visibility:hidden;
  707. word-wrap:break-word;
  708. }
  709. <<<<<<< HEAD
  710. #u2830_img {
  711. =======
  712. #u2831_img {
  713. >>>>>>> 0601optimize
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:1155px;
  719. height:583px;
  720. }
  721. <<<<<<< HEAD
  722. #u2830 {
  723. =======
  724. #u2831 {
  725. >>>>>>> 0601optimize
  726. border-width:0px;
  727. position:absolute;
  728. left:21px;
  729. top:1592px;
  730. width:1155px;
  731. height:583px;
  732. }
  733. <<<<<<< HEAD
  734. #u2830_text {
  735. =======
  736. #u2831_text {
  737. >>>>>>> 0601optimize
  738. border-width:0px;
  739. position:absolute;
  740. left:0px;
  741. top:0px;
  742. width:0px;
  743. visibility:hidden;
  744. word-wrap:break-word;
  745. }
  746. <<<<<<< HEAD
  747. #u2831_img {
  748. =======
  749. #u2832_img {
  750. >>>>>>> 0601optimize
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:1155px;
  756. height:583px;
  757. }
  758. <<<<<<< HEAD
  759. #u2831 {
  760. =======
  761. #u2832 {
  762. >>>>>>> 0601optimize
  763. border-width:0px;
  764. position:absolute;
  765. left:21px;
  766. top:2253px;
  767. width:1155px;
  768. height:583px;
  769. }
  770. <<<<<<< HEAD
  771. #u2831_text {
  772. =======
  773. #u2832_text {
  774. >>>>>>> 0601optimize
  775. border-width:0px;
  776. position:absolute;
  777. left:0px;
  778. top:0px;
  779. width:0px;
  780. visibility:hidden;
  781. word-wrap:break-word;
  782. }
  783. <<<<<<< HEAD
  784. #u2832_div {
  785. =======
  786. #u2833_div {
  787. >>>>>>> 0601optimize
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:91px;
  793. height:22px;
  794. background:inherit;
  795. background-color:rgba(255, 255, 255, 0);
  796. border:none;
  797. border-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  802. font-weight:700;
  803. font-style:normal;
  804. font-size:18px;
  805. }
  806. <<<<<<< HEAD
  807. #u2832 {
  808. =======
  809. #u2833 {
  810. >>>>>>> 0601optimize
  811. border-width:0px;
  812. position:absolute;
  813. left:21px;
  814. top:1560px;
  815. width:91px;
  816. height:22px;
  817. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  818. font-weight:700;
  819. font-style:normal;
  820. font-size:18px;
  821. }
  822. <<<<<<< HEAD
  823. #u2832_text {
  824. =======
  825. #u2833_text {
  826. >>>>>>> 0601optimize
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:91px;
  832. white-space:nowrap;
  833. }
  834. <<<<<<< HEAD
  835. #u2833_div {
  836. =======
  837. #u2834_div {
  838. >>>>>>> 0601optimize
  839. border-width:0px;
  840. position:absolute;
  841. left:0px;
  842. top:0px;
  843. width:109px;
  844. height:22px;
  845. background:inherit;
  846. background-color:rgba(255, 255, 255, 0);
  847. border:none;
  848. border-radius:0px;
  849. -moz-box-shadow:none;
  850. -webkit-box-shadow:none;
  851. box-shadow:none;
  852. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  853. font-weight:700;
  854. font-style:normal;
  855. font-size:18px;
  856. }
  857. <<<<<<< HEAD
  858. #u2833 {
  859. =======
  860. #u2834 {
  861. >>>>>>> 0601optimize
  862. border-width:0px;
  863. position:absolute;
  864. left:21px;
  865. top:2221px;
  866. width:109px;
  867. height:22px;
  868. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  869. font-weight:700;
  870. font-style:normal;
  871. font-size:18px;
  872. }
  873. <<<<<<< HEAD
  874. #u2833_text {
  875. =======
  876. #u2834_text {
  877. >>>>>>> 0601optimize
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:109px;
  883. white-space:nowrap;
  884. }
  885. <<<<<<< HEAD
  886. #u2834 {
  887. =======
  888. #u2835 {
  889. >>>>>>> 0601optimize
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:0px;
  895. height:0px;
  896. }
  897. <<<<<<< HEAD
  898. #u2835_img {
  899. =======
  900. #u2836_img {
  901. >>>>>>> 0601optimize
  902. border-width:0px;
  903. position:absolute;
  904. left:-4px;
  905. top:-4px;
  906. width:44px;
  907. height:44px;
  908. }
  909. <<<<<<< HEAD
  910. #u2835 {
  911. =======
  912. #u2836 {
  913. >>>>>>> 0601optimize
  914. border-width:0px;
  915. position:absolute;
  916. left:1186px;
  917. top:950px;
  918. width:34px;
  919. height:34px;
  920. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  921. font-weight:700;
  922. font-style:normal;
  923. font-size:26px;
  924. }
  925. <<<<<<< HEAD
  926. #u2835_text {
  927. =======
  928. #u2836_text {
  929. >>>>>>> 0601optimize
  930. border-width:0px;
  931. position:absolute;
  932. left:2px;
  933. top:1px;
  934. width:30px;
  935. word-wrap:break-word;
  936. }
  937. <<<<<<< HEAD
  938. #u2836_div {
  939. =======
  940. #u2837_div {
  941. >>>>>>> 0601optimize
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:198px;
  947. height:19px;
  948. background:inherit;
  949. background-color:rgba(255, 255, 255, 0);
  950. border:none;
  951. border-radius:0px;
  952. -moz-box-shadow:none;
  953. -webkit-box-shadow:none;
  954. box-shadow:none;
  955. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  956. font-weight:700;
  957. font-style:normal;
  958. font-size:16px;
  959. }
  960. <<<<<<< HEAD
  961. #u2836 {
  962. =======
  963. #u2837 {
  964. >>>>>>> 0601optimize
  965. border-width:0px;
  966. position:absolute;
  967. left:1226px;
  968. top:957px;
  969. width:198px;
  970. height:19px;
  971. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  972. font-weight:700;
  973. font-style:normal;
  974. font-size:16px;
  975. }
  976. <<<<<<< HEAD
  977. #u2836_text {
  978. =======
  979. #u2837_text {
  980. >>>>>>> 0601optimize
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:198px;
  986. word-wrap:break-word;
  987. }
  988. <<<<<<< HEAD
  989. #u2837_div {
  990. =======
  991. #u2838_div {
  992. >>>>>>> 0601optimize
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:352px;
  998. height:44px;
  999. background:inherit;
  1000. background-color:rgba(255, 255, 255, 0);
  1001. border:none;
  1002. border-radius:0px;
  1003. -moz-box-shadow:none;
  1004. -webkit-box-shadow:none;
  1005. box-shadow:none;
  1006. line-height:22px;
  1007. }
  1008. <<<<<<< HEAD
  1009. #u2837 {
  1010. =======
  1011. #u2838 {
  1012. >>>>>>> 0601optimize
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:1226px;
  1016. top:995px;
  1017. width:352px;
  1018. height:44px;
  1019. line-height:22px;
  1020. }
  1021. <<<<<<< HEAD
  1022. #u2837_text {
  1023. =======
  1024. #u2838_text {
  1025. >>>>>>> 0601optimize
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:352px;
  1031. word-wrap:break-word;
  1032. }
  1033. <<<<<<< HEAD
  1034. #u2838 {
  1035. =======
  1036. #u2839 {
  1037. >>>>>>> 0601optimize
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:0px;
  1043. height:0px;
  1044. }
  1045. <<<<<<< HEAD
  1046. #u2839_img {
  1047. =======
  1048. #u2840_img {
  1049. >>>>>>> 0601optimize
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:-4px;
  1053. top:-4px;
  1054. width:40px;
  1055. height:40px;
  1056. }
  1057. <<<<<<< HEAD
  1058. #u2839 {
  1059. =======
  1060. #u2840 {
  1061. >>>>>>> 0601optimize
  1062. border-width:0px;
  1063. position:absolute;
  1064. left:1186px;
  1065. top:1049px;
  1066. width:30px;
  1067. height:30px;
  1068. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1069. font-weight:700;
  1070. font-style:normal;
  1071. font-size:18px;
  1072. color:#1E1E1E;
  1073. }
  1074. <<<<<<< HEAD
  1075. #u2839_text {
  1076. =======
  1077. #u2840_text {
  1078. >>>>>>> 0601optimize
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:2px;
  1082. top:4px;
  1083. width:26px;
  1084. word-wrap:break-word;
  1085. }
  1086. <<<<<<< HEAD
  1087. #u2840_div {
  1088. =======
  1089. #u2841_div {
  1090. >>>>>>> 0601optimize
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:198px;
  1096. height:19px;
  1097. background:inherit;
  1098. background-color:rgba(255, 255, 255, 0);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1105. font-weight:700;
  1106. font-style:normal;
  1107. font-size:16px;
  1108. }
  1109. <<<<<<< HEAD
  1110. #u2840 {
  1111. =======
  1112. #u2841 {
  1113. >>>>>>> 0601optimize
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:1226px;
  1117. top:1056px;
  1118. width:198px;
  1119. height:19px;
  1120. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1121. font-weight:700;
  1122. font-style:normal;
  1123. font-size:16px;
  1124. }
  1125. <<<<<<< HEAD
  1126. #u2840_text {
  1127. =======
  1128. #u2841_text {
  1129. >>>>>>> 0601optimize
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:198px;
  1135. word-wrap:break-word;
  1136. }
  1137. <<<<<<< HEAD
  1138. #u2841_div {
  1139. =======
  1140. #u2842_div {
  1141. >>>>>>> 0601optimize
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:352px;
  1147. height:44px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 0);
  1150. border:none;
  1151. border-radius:0px;
  1152. -moz-box-shadow:none;
  1153. -webkit-box-shadow:none;
  1154. box-shadow:none;
  1155. line-height:22px;
  1156. }
  1157. <<<<<<< HEAD
  1158. #u2841 {
  1159. =======
  1160. #u2842 {
  1161. >>>>>>> 0601optimize
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:1226px;
  1165. top:1094px;
  1166. width:352px;
  1167. height:44px;
  1168. line-height:22px;
  1169. }
  1170. <<<<<<< HEAD
  1171. #u2841_text {
  1172. =======
  1173. #u2842_text {
  1174. >>>>>>> 0601optimize
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:352px;
  1180. word-wrap:break-word;
  1181. }
  1182. <<<<<<< HEAD
  1183. #u2842 {
  1184. =======
  1185. #u2843 {
  1186. >>>>>>> 0601optimize
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:0px;
  1192. height:0px;
  1193. }
  1194. <<<<<<< HEAD
  1195. #u2843_img {
  1196. =======
  1197. #u2844_img {
  1198. >>>>>>> 0601optimize
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:-4px;
  1202. top:-4px;
  1203. width:40px;
  1204. height:40px;
  1205. }
  1206. <<<<<<< HEAD
  1207. #u2843 {
  1208. =======
  1209. #u2844 {
  1210. >>>>>>> 0601optimize
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:1186px;
  1214. top:1148px;
  1215. width:30px;
  1216. height:30px;
  1217. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1218. font-weight:700;
  1219. font-style:normal;
  1220. font-size:18px;
  1221. color:#333333;
  1222. }
  1223. <<<<<<< HEAD
  1224. #u2843_text {
  1225. =======
  1226. #u2844_text {
  1227. >>>>>>> 0601optimize
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:2px;
  1231. top:4px;
  1232. width:26px;
  1233. word-wrap:break-word;
  1234. }
  1235. <<<<<<< HEAD
  1236. #u2844_div {
  1237. =======
  1238. #u2845_div {
  1239. >>>>>>> 0601optimize
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:198px;
  1245. height:19px;
  1246. background:inherit;
  1247. background-color:rgba(255, 255, 255, 0);
  1248. border:none;
  1249. border-radius:0px;
  1250. -moz-box-shadow:none;
  1251. -webkit-box-shadow:none;
  1252. box-shadow:none;
  1253. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1254. font-weight:700;
  1255. font-style:normal;
  1256. font-size:16px;
  1257. }
  1258. <<<<<<< HEAD
  1259. #u2844 {
  1260. =======
  1261. #u2845 {
  1262. >>>>>>> 0601optimize
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:1226px;
  1266. top:1155px;
  1267. width:198px;
  1268. height:19px;
  1269. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1270. font-weight:700;
  1271. font-style:normal;
  1272. font-size:16px;
  1273. }
  1274. <<<<<<< HEAD
  1275. #u2844_text {
  1276. =======
  1277. #u2845_text {
  1278. >>>>>>> 0601optimize
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:198px;
  1284. word-wrap:break-word;
  1285. }
  1286. <<<<<<< HEAD
  1287. #u2845_div {
  1288. =======
  1289. #u2846_div {
  1290. >>>>>>> 0601optimize
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:352px;
  1296. height:22px;
  1297. background:inherit;
  1298. background-color:rgba(255, 255, 255, 0);
  1299. border:none;
  1300. border-radius:0px;
  1301. -moz-box-shadow:none;
  1302. -webkit-box-shadow:none;
  1303. box-shadow:none;
  1304. line-height:22px;
  1305. }
  1306. <<<<<<< HEAD
  1307. #u2845 {
  1308. =======
  1309. #u2846 {
  1310. >>>>>>> 0601optimize
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:1226px;
  1314. top:1193px;
  1315. width:352px;
  1316. height:22px;
  1317. line-height:22px;
  1318. }
  1319. <<<<<<< HEAD
  1320. #u2845_text {
  1321. =======
  1322. #u2846_text {
  1323. >>>>>>> 0601optimize
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:0px;
  1327. top:0px;
  1328. width:352px;
  1329. word-wrap:break-word;
  1330. }
  1331. <<<<<<< HEAD
  1332. #u2846 {
  1333. =======
  1334. #u2847 {
  1335. >>>>>>> 0601optimize
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:0px;
  1341. height:0px;
  1342. }
  1343. <<<<<<< HEAD
  1344. #u2847_img {
  1345. =======
  1346. #u2848_img {
  1347. >>>>>>> 0601optimize
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:-4px;
  1351. top:-4px;
  1352. width:44px;
  1353. height:44px;
  1354. }
  1355. <<<<<<< HEAD
  1356. #u2847 {
  1357. =======
  1358. #u2848 {
  1359. >>>>>>> 0601optimize
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:1186px;
  1363. top:289px;
  1364. width:34px;
  1365. height:34px;
  1366. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1367. font-weight:700;
  1368. font-style:normal;
  1369. font-size:26px;
  1370. }
  1371. <<<<<<< HEAD
  1372. #u2847_text {
  1373. =======
  1374. #u2848_text {
  1375. >>>>>>> 0601optimize
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:2px;
  1379. top:1px;
  1380. width:30px;
  1381. word-wrap:break-word;
  1382. }
  1383. <<<<<<< HEAD
  1384. #u2848_div {
  1385. =======
  1386. #u2849_div {
  1387. >>>>>>> 0601optimize
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:0px;
  1391. top:0px;
  1392. width:143px;
  1393. height:19px;
  1394. background:inherit;
  1395. background-color:rgba(255, 255, 255, 0);
  1396. border:none;
  1397. border-radius:0px;
  1398. -moz-box-shadow:none;
  1399. -webkit-box-shadow:none;
  1400. box-shadow:none;
  1401. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1402. font-weight:700;
  1403. font-style:normal;
  1404. font-size:16px;
  1405. }
  1406. <<<<<<< HEAD
  1407. #u2848 {
  1408. =======
  1409. #u2849 {
  1410. >>>>>>> 0601optimize
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:1226px;
  1414. top:296px;
  1415. width:143px;
  1416. height:19px;
  1417. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1418. font-weight:700;
  1419. font-style:normal;
  1420. font-size:16px;
  1421. }
  1422. <<<<<<< HEAD
  1423. #u2848_text {
  1424. =======
  1425. #u2849_text {
  1426. >>>>>>> 0601optimize
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:143px;
  1432. word-wrap:break-word;
  1433. }
  1434. <<<<<<< HEAD
  1435. #u2849_div {
  1436. =======
  1437. #u2850_div {
  1438. >>>>>>> 0601optimize
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:352px;
  1444. height:44px;
  1445. background:inherit;
  1446. background-color:rgba(255, 255, 255, 0);
  1447. border:none;
  1448. border-radius:0px;
  1449. -moz-box-shadow:none;
  1450. -webkit-box-shadow:none;
  1451. box-shadow:none;
  1452. line-height:22px;
  1453. }
  1454. <<<<<<< HEAD
  1455. #u2849 {
  1456. =======
  1457. #u2850 {
  1458. >>>>>>> 0601optimize
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:1226px;
  1462. top:334px;
  1463. width:352px;
  1464. height:44px;
  1465. line-height:22px;
  1466. }
  1467. <<<<<<< HEAD
  1468. #u2849_text {
  1469. =======
  1470. #u2850_text {
  1471. >>>>>>> 0601optimize
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:352px;
  1477. word-wrap:break-word;
  1478. }
  1479. <<<<<<< HEAD
  1480. #u2850 {
  1481. =======
  1482. #u2851 {
  1483. >>>>>>> 0601optimize
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:1468px;
  1487. top:329px;
  1488. width:72px;
  1489. height:23px;
  1490. overflow:hidden;
  1491. background-image:url('../../resources/images/transparent.gif');
  1492. }
  1493. <<<<<<< HEAD
  1494. #u2851_div {
  1495. =======
  1496. #u2852_div {
  1497. >>>>>>> 0601optimize
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:242px;
  1503. height:80px;
  1504. background:inherit;
  1505. background-color:rgba(255, 255, 0, 1);
  1506. box-sizing:border-box;
  1507. border-width:1px;
  1508. border-style:solid;
  1509. border-color:rgba(0, 0, 0, 1);
  1510. border-radius:10px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. text-align:left;
  1515. }
  1516. <<<<<<< HEAD
  1517. #u2851 {
  1518. =======
  1519. #u2852 {
  1520. >>>>>>> 0601optimize
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:1312px;
  1524. top:244px;
  1525. width:242px;
  1526. height:80px;
  1527. text-align:left;
  1528. }
  1529. <<<<<<< HEAD
  1530. #u2851_text {
  1531. =======
  1532. #u2852_text {
  1533. >>>>>>> 0601optimize
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:2px;
  1537. top:11px;
  1538. width:238px;
  1539. word-wrap:break-word;
  1540. }
  1541. <<<<<<< HEAD
  1542. #u2852 {
  1543. =======
  1544. #u2853 {
  1545. >>>>>>> 0601optimize
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:0px;
  1551. height:0px;
  1552. }
  1553. <<<<<<< HEAD
  1554. #u2853_img {
  1555. =======
  1556. #u2854_img {
  1557. >>>>>>> 0601optimize
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:-4px;
  1561. top:-4px;
  1562. width:40px;
  1563. height:40px;
  1564. }
  1565. <<<<<<< HEAD
  1566. #u2853 {
  1567. =======
  1568. #u2854 {
  1569. >>>>>>> 0601optimize
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:1186px;
  1573. top:472px;
  1574. width:30px;
  1575. height:30px;
  1576. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1577. font-weight:700;
  1578. font-style:normal;
  1579. font-size:18px;
  1580. color:#1E1E1E;
  1581. }
  1582. <<<<<<< HEAD
  1583. #u2853_text {
  1584. =======
  1585. #u2854_text {
  1586. >>>>>>> 0601optimize
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:2px;
  1590. top:4px;
  1591. width:26px;
  1592. word-wrap:break-word;
  1593. }
  1594. <<<<<<< HEAD
  1595. #u2854_div {
  1596. =======
  1597. #u2855_div {
  1598. >>>>>>> 0601optimize
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:143px;
  1604. height:19px;
  1605. background:inherit;
  1606. background-color:rgba(255, 255, 255, 0);
  1607. border:none;
  1608. border-radius:0px;
  1609. -moz-box-shadow:none;
  1610. -webkit-box-shadow:none;
  1611. box-shadow:none;
  1612. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1613. font-weight:700;
  1614. font-style:normal;
  1615. font-size:16px;
  1616. }
  1617. <<<<<<< HEAD
  1618. #u2854 {
  1619. =======
  1620. #u2855 {
  1621. >>>>>>> 0601optimize
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:1226px;
  1625. top:479px;
  1626. width:143px;
  1627. height:19px;
  1628. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1629. font-weight:700;
  1630. font-style:normal;
  1631. font-size:16px;
  1632. }
  1633. <<<<<<< HEAD
  1634. #u2854_text {
  1635. =======
  1636. #u2855_text {
  1637. >>>>>>> 0601optimize
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:143px;
  1643. word-wrap:break-word;
  1644. }
  1645. <<<<<<< HEAD
  1646. #u2855_div {
  1647. =======
  1648. #u2856_div {
  1649. >>>>>>> 0601optimize
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:352px;
  1655. height:88px;
  1656. background:inherit;
  1657. background-color:rgba(255, 255, 255, 0);
  1658. border:none;
  1659. border-radius:0px;
  1660. -moz-box-shadow:none;
  1661. -webkit-box-shadow:none;
  1662. box-shadow:none;
  1663. line-height:22px;
  1664. }
  1665. <<<<<<< HEAD
  1666. #u2855 {
  1667. =======
  1668. #u2856 {
  1669. >>>>>>> 0601optimize
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:1226px;
  1673. top:517px;
  1674. width:352px;
  1675. height:88px;
  1676. line-height:22px;
  1677. }
  1678. <<<<<<< HEAD
  1679. #u2855_text {
  1680. =======
  1681. #u2856_text {
  1682. >>>>>>> 0601optimize
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:352px;
  1688. word-wrap:break-word;
  1689. }
  1690. <<<<<<< HEAD
  1691. #u2856 {
  1692. =======
  1693. #u2857 {
  1694. >>>>>>> 0601optimize
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:0px;
  1700. height:0px;
  1701. }
  1702. <<<<<<< HEAD
  1703. #u2857_img {
  1704. =======
  1705. #u2858_img {
  1706. >>>>>>> 0601optimize
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:-4px;
  1710. top:-4px;
  1711. width:40px;
  1712. height:40px;
  1713. }
  1714. <<<<<<< HEAD
  1715. #u2857 {
  1716. =======
  1717. #u2858 {
  1718. >>>>>>> 0601optimize
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:1186px;
  1722. top:395px;
  1723. width:30px;
  1724. height:30px;
  1725. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1726. font-weight:700;
  1727. font-style:normal;
  1728. font-size:18px;
  1729. color:#1E1E1E;
  1730. }
  1731. <<<<<<< HEAD
  1732. #u2857_text {
  1733. =======
  1734. #u2858_text {
  1735. >>>>>>> 0601optimize
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:2px;
  1739. top:4px;
  1740. width:26px;
  1741. word-wrap:break-word;
  1742. }
  1743. <<<<<<< HEAD
  1744. #u2858_div {
  1745. =======
  1746. #u2859_div {
  1747. >>>>>>> 0601optimize
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:143px;
  1753. height:19px;
  1754. background:inherit;
  1755. background-color:rgba(255, 255, 255, 0);
  1756. border:none;
  1757. border-radius:0px;
  1758. -moz-box-shadow:none;
  1759. -webkit-box-shadow:none;
  1760. box-shadow:none;
  1761. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1762. font-weight:700;
  1763. font-style:normal;
  1764. font-size:16px;
  1765. }
  1766. <<<<<<< HEAD
  1767. #u2858 {
  1768. =======
  1769. #u2859 {
  1770. >>>>>>> 0601optimize
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:1226px;
  1774. top:402px;
  1775. width:143px;
  1776. height:19px;
  1777. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1778. font-weight:700;
  1779. font-style:normal;
  1780. font-size:16px;
  1781. }
  1782. <<<<<<< HEAD
  1783. #u2858_text {
  1784. =======
  1785. #u2859_text {
  1786. >>>>>>> 0601optimize
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:143px;
  1792. word-wrap:break-word;
  1793. }
  1794. <<<<<<< HEAD
  1795. #u2859_div {
  1796. =======
  1797. #u2860_div {
  1798. >>>>>>> 0601optimize
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:352px;
  1804. height:22px;
  1805. background:inherit;
  1806. background-color:rgba(255, 255, 255, 0);
  1807. border:none;
  1808. border-radius:0px;
  1809. -moz-box-shadow:none;
  1810. -webkit-box-shadow:none;
  1811. box-shadow:none;
  1812. line-height:22px;
  1813. }
  1814. <<<<<<< HEAD
  1815. #u2859 {
  1816. =======
  1817. #u2860 {
  1818. >>>>>>> 0601optimize
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:1226px;
  1822. top:440px;
  1823. width:352px;
  1824. height:22px;
  1825. line-height:22px;
  1826. }
  1827. <<<<<<< HEAD
  1828. #u2859_text {
  1829. =======
  1830. #u2860_text {
  1831. >>>>>>> 0601optimize
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:352px;
  1837. word-wrap:break-word;
  1838. }
  1839. <<<<<<< HEAD
  1840. #u2860 {
  1841. =======
  1842. #u2861 {
  1843. >>>>>>> 0601optimize
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:0px;
  1849. height:0px;
  1850. }
  1851. <<<<<<< HEAD
  1852. #u2861_img {
  1853. =======
  1854. #u2862_img {
  1855. >>>>>>> 0601optimize
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:-4px;
  1859. top:-4px;
  1860. width:44px;
  1861. height:44px;
  1862. }
  1863. <<<<<<< HEAD
  1864. #u2861 {
  1865. =======
  1866. #u2862 {
  1867. >>>>>>> 0601optimize
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:1186px;
  1871. top:622px;
  1872. width:34px;
  1873. height:34px;
  1874. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1875. font-weight:700;
  1876. font-style:normal;
  1877. font-size:26px;
  1878. }
  1879. <<<<<<< HEAD
  1880. #u2861_text {
  1881. =======
  1882. #u2862_text {
  1883. >>>>>>> 0601optimize
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:2px;
  1887. top:1px;
  1888. width:30px;
  1889. word-wrap:break-word;
  1890. }
  1891. <<<<<<< HEAD
  1892. #u2862_div {
  1893. =======
  1894. #u2863_div {
  1895. >>>>>>> 0601optimize
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:196px;
  1901. height:19px;
  1902. background:inherit;
  1903. background-color:rgba(255, 255, 255, 0);
  1904. border:none;
  1905. border-radius:0px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1910. font-weight:700;
  1911. font-style:normal;
  1912. font-size:16px;
  1913. color:#FF0000;
  1914. }
  1915. <<<<<<< HEAD
  1916. #u2862 {
  1917. =======
  1918. #u2863 {
  1919. >>>>>>> 0601optimize
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:1226px;
  1923. top:629px;
  1924. width:196px;
  1925. height:19px;
  1926. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1927. font-weight:700;
  1928. font-style:normal;
  1929. font-size:16px;
  1930. color:#FF0000;
  1931. }
  1932. <<<<<<< HEAD
  1933. #u2862_text {
  1934. =======
  1935. #u2863_text {
  1936. >>>>>>> 0601optimize
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:196px;
  1942. word-wrap:break-word;
  1943. }
  1944. <<<<<<< HEAD
  1945. #u2863_div {
  1946. =======
  1947. #u2864_div {
  1948. >>>>>>> 0601optimize
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:352px;
  1954. height:22px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 255, 0);
  1957. border:none;
  1958. border-radius:0px;
  1959. -moz-box-shadow:none;
  1960. -webkit-box-shadow:none;
  1961. box-shadow:none;
  1962. line-height:22px;
  1963. }
  1964. <<<<<<< HEAD
  1965. #u2863 {
  1966. =======
  1967. #u2864 {
  1968. >>>>>>> 0601optimize
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:1226px;
  1972. top:667px;
  1973. width:352px;
  1974. height:22px;
  1975. line-height:22px;
  1976. }
  1977. <<<<<<< HEAD
  1978. #u2863_text {
  1979. =======
  1980. #u2864_text {
  1981. >>>>>>> 0601optimize
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:352px;
  1987. word-wrap:break-word;
  1988. }
  1989. <<<<<<< HEAD
  1990. #u2864 {
  1991. =======
  1992. #u2865 {
  1993. >>>>>>> 0601optimize
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:0px;
  1999. height:0px;
  2000. }
  2001. <<<<<<< HEAD
  2002. #u2865_img {
  2003. =======
  2004. #u2866_img {
  2005. >>>>>>> 0601optimize
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:-4px;
  2009. top:-4px;
  2010. width:44px;
  2011. height:44px;
  2012. }
  2013. <<<<<<< HEAD
  2014. #u2865 {
  2015. =======
  2016. #u2866 {
  2017. >>>>>>> 0601optimize
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:1186px;
  2021. top:699px;
  2022. width:34px;
  2023. height:34px;
  2024. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2025. font-weight:700;
  2026. font-style:normal;
  2027. font-size:26px;
  2028. }
  2029. <<<<<<< HEAD
  2030. #u2865_text {
  2031. =======
  2032. #u2866_text {
  2033. >>>>>>> 0601optimize
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:2px;
  2037. top:1px;
  2038. width:30px;
  2039. word-wrap:break-word;
  2040. }
  2041. <<<<<<< HEAD
  2042. #u2866_div {
  2043. =======
  2044. #u2867_div {
  2045. >>>>>>> 0601optimize
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:196px;
  2051. height:19px;
  2052. background:inherit;
  2053. background-color:rgba(255, 255, 255, 0);
  2054. border:none;
  2055. border-radius:0px;
  2056. -moz-box-shadow:none;
  2057. -webkit-box-shadow:none;
  2058. box-shadow:none;
  2059. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2060. font-weight:700;
  2061. font-style:normal;
  2062. font-size:16px;
  2063. color:#FF0000;
  2064. }
  2065. <<<<<<< HEAD
  2066. #u2866 {
  2067. =======
  2068. #u2867 {
  2069. >>>>>>> 0601optimize
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:1226px;
  2073. top:706px;
  2074. width:196px;
  2075. height:19px;
  2076. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2077. font-weight:700;
  2078. font-style:normal;
  2079. font-size:16px;
  2080. color:#FF0000;
  2081. }
  2082. <<<<<<< HEAD
  2083. #u2866_text {
  2084. =======
  2085. #u2867_text {
  2086. >>>>>>> 0601optimize
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:196px;
  2092. word-wrap:break-word;
  2093. }
  2094. <<<<<<< HEAD
  2095. #u2867_div {
  2096. =======
  2097. #u2868_div {
  2098. >>>>>>> 0601optimize
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:352px;
  2104. height:44px;
  2105. background:inherit;
  2106. background-color:rgba(255, 255, 255, 0);
  2107. border:none;
  2108. border-radius:0px;
  2109. -moz-box-shadow:none;
  2110. -webkit-box-shadow:none;
  2111. box-shadow:none;
  2112. line-height:22px;
  2113. }
  2114. <<<<<<< HEAD
  2115. #u2867 {
  2116. =======
  2117. #u2868 {
  2118. >>>>>>> 0601optimize
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:1226px;
  2122. top:744px;
  2123. width:352px;
  2124. height:44px;
  2125. line-height:22px;
  2126. }
  2127. <<<<<<< HEAD
  2128. #u2867_text {
  2129. =======
  2130. #u2868_text {
  2131. >>>>>>> 0601optimize
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:352px;
  2137. word-wrap:break-word;
  2138. }
  2139. <<<<<<< HEAD
  2140. #u2868 {
  2141. =======
  2142. #u2869 {
  2143. >>>>>>> 0601optimize
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:1231px;
  2147. top:706px;
  2148. width:106px;
  2149. height:23px;
  2150. overflow:hidden;
  2151. background-image:url('../../resources/images/transparent.gif');
  2152. }
  2153. <<<<<<< HEAD
  2154. #u2869 {
  2155. =======
  2156. #u2870 {
  2157. >>>>>>> 0601optimize
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:1231px;
  2161. top:625px;
  2162. width:184px;
  2163. height:23px;
  2164. overflow:hidden;
  2165. background-image:url('../../resources/images/transparent.gif');
  2166. }
  2167. <<<<<<< HEAD
  2168. #u2870_div {
  2169. =======
  2170. #u2871_div {
  2171. >>>>>>> 0601optimize
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:263px;
  2177. height:146px;
  2178. background:inherit;
  2179. background-color:rgba(255, 255, 0, 1);
  2180. box-sizing:border-box;
  2181. border-width:1px;
  2182. border-style:solid;
  2183. border-color:rgba(0, 0, 0, 1);
  2184. border-radius:10px;
  2185. -moz-box-shadow:none;
  2186. -webkit-box-shadow:none;
  2187. box-shadow:none;
  2188. text-align:left;
  2189. }
  2190. <<<<<<< HEAD
  2191. #u2870 {
  2192. =======
  2193. #u2871 {
  2194. >>>>>>> 0601optimize
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:1231px;
  2198. top:469px;
  2199. width:263px;
  2200. height:146px;
  2201. text-align:left;
  2202. }
  2203. <<<<<<< HEAD
  2204. #u2870_text {
  2205. =======
  2206. #u2871_text {
  2207. >>>>>>> 0601optimize
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:2px;
  2211. top:11px;
  2212. width:259px;
  2213. word-wrap:break-word;
  2214. }
  2215. <<<<<<< HEAD
  2216. #u2871_div {
  2217. =======
  2218. #u2872_div {
  2219. >>>>>>> 0601optimize
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:263px;
  2225. height:145px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 0, 1);
  2228. box-sizing:border-box;
  2229. border-width:1px;
  2230. border-style:solid;
  2231. border-color:rgba(0, 0, 0, 1);
  2232. border-radius:10px;
  2233. -moz-box-shadow:none;
  2234. -webkit-box-shadow:none;
  2235. box-shadow:none;
  2236. text-align:left;
  2237. }
  2238. <<<<<<< HEAD
  2239. #u2871 {
  2240. =======
  2241. #u2872 {
  2242. >>>>>>> 0601optimize
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:1231px;
  2246. top:551px;
  2247. width:263px;
  2248. height:145px;
  2249. text-align:left;
  2250. }
  2251. <<<<<<< HEAD
  2252. #u2871_text {
  2253. =======
  2254. #u2872_text {
  2255. >>>>>>> 0601optimize
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:2px;
  2259. top:20px;
  2260. width:259px;
  2261. word-wrap:break-word;
  2262. }
  2263. <<<<<<< HEAD
  2264. #u2872 {
  2265. =======
  2266. #u2873 {
  2267. >>>>>>> 0601optimize
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:0px;
  2273. height:0px;
  2274. }
  2275. <<<<<<< HEAD
  2276. #u2873_img {
  2277. =======
  2278. #u2874_img {
  2279. >>>>>>> 0601optimize
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:-4px;
  2283. top:-4px;
  2284. width:40px;
  2285. height:40px;
  2286. }
  2287. <<<<<<< HEAD
  2288. #u2873 {
  2289. =======
  2290. #u2874 {
  2291. >>>>>>> 0601optimize
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:1186px;
  2295. top:801px;
  2296. width:30px;
  2297. height:30px;
  2298. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2299. font-weight:700;
  2300. font-style:normal;
  2301. font-size:18px;
  2302. color:#1E1E1E;
  2303. }
  2304. <<<<<<< HEAD
  2305. #u2873_text {
  2306. =======
  2307. #u2874_text {
  2308. >>>>>>> 0601optimize
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:2px;
  2312. top:4px;
  2313. width:26px;
  2314. word-wrap:break-word;
  2315. }
  2316. <<<<<<< HEAD
  2317. #u2874_div {
  2318. =======
  2319. #u2875_div {
  2320. >>>>>>> 0601optimize
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:0px;
  2324. top:0px;
  2325. width:198px;
  2326. height:19px;
  2327. background:inherit;
  2328. background-color:rgba(255, 255, 255, 0);
  2329. border:none;
  2330. border-radius:0px;
  2331. -moz-box-shadow:none;
  2332. -webkit-box-shadow:none;
  2333. box-shadow:none;
  2334. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2335. font-weight:700;
  2336. font-style:normal;
  2337. font-size:16px;
  2338. }
  2339. <<<<<<< HEAD
  2340. #u2874 {
  2341. =======
  2342. #u2875 {
  2343. >>>>>>> 0601optimize
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:1226px;
  2347. top:808px;
  2348. width:198px;
  2349. height:19px;
  2350. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2351. font-weight:700;
  2352. font-style:normal;
  2353. font-size:16px;
  2354. }
  2355. <<<<<<< HEAD
  2356. #u2874_text {
  2357. =======
  2358. #u2875_text {
  2359. >>>>>>> 0601optimize
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:198px;
  2365. word-wrap:break-word;
  2366. }
  2367. <<<<<<< HEAD
  2368. #u2875_div {
  2369. =======
  2370. #u2876_div {
  2371. >>>>>>> 0601optimize
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:352px;
  2377. height:44px;
  2378. background:inherit;
  2379. background-color:rgba(255, 255, 255, 0);
  2380. border:none;
  2381. border-radius:0px;
  2382. -moz-box-shadow:none;
  2383. -webkit-box-shadow:none;
  2384. box-shadow:none;
  2385. line-height:22px;
  2386. }
  2387. <<<<<<< HEAD
  2388. #u2875 {
  2389. =======
  2390. #u2876 {
  2391. >>>>>>> 0601optimize
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:1226px;
  2395. top:846px;
  2396. width:352px;
  2397. height:44px;
  2398. line-height:22px;
  2399. }
  2400. <<<<<<< HEAD
  2401. #u2875_text {
  2402. =======
  2403. #u2876_text {
  2404. >>>>>>> 0601optimize
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:352px;
  2410. word-wrap:break-word;
  2411. }
  2412. <<<<<<< HEAD
  2413. #u2876_div {
  2414. =======
  2415. #u2877_div {
  2416. >>>>>>> 0601optimize
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:185px;
  2422. height:71px;
  2423. background:inherit;
  2424. background-color:rgba(255, 255, 0, 1);
  2425. box-sizing:border-box;
  2426. border-width:1px;
  2427. border-style:solid;
  2428. border-color:rgba(0, 0, 0, 1);
  2429. border-radius:10px;
  2430. -moz-box-shadow:none;
  2431. -webkit-box-shadow:none;
  2432. box-shadow:none;
  2433. color:#000000;
  2434. text-align:left;
  2435. line-height:18px;
  2436. }
  2437. <<<<<<< HEAD
  2438. #u2876 {
  2439. =======
  2440. #u2877 {
  2441. >>>>>>> 0601optimize
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:1326px;
  2445. top:765px;
  2446. width:185px;
  2447. height:71px;
  2448. color:#000000;
  2449. text-align:left;
  2450. line-height:18px;
  2451. }
  2452. <<<<<<< HEAD
  2453. #u2876_text {
  2454. =======
  2455. #u2877_text {
  2456. >>>>>>> 0601optimize
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:2px;
  2460. top:18px;
  2461. width:181px;
  2462. word-wrap:break-word;
  2463. }
  2464. <<<<<<< HEAD
  2465. #u2877 {
  2466. =======
  2467. #u2878 {
  2468. >>>>>>> 0601optimize
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:1407px;
  2472. top:846px;
  2473. width:57px;
  2474. height:23px;
  2475. overflow:hidden;
  2476. background-image:url('../../resources/images/transparent.gif');
  2477. }
  2478. <<<<<<< HEAD
  2479. #u2878_img {
  2480. =======
  2481. #u2879_img {
  2482. >>>>>>> 0601optimize
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:1155px;
  2488. height:583px;
  2489. }
  2490. <<<<<<< HEAD
  2491. #u2878 {
  2492. =======
  2493. #u2879 {
  2494. >>>>>>> 0601optimize
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:21px;
  2498. top:2901px;
  2499. width:1155px;
  2500. height:583px;
  2501. }
  2502. <<<<<<< HEAD
  2503. #u2878_text {
  2504. =======
  2505. #u2879_text {
  2506. >>>>>>> 0601optimize
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:0px;
  2512. visibility:hidden;
  2513. word-wrap:break-word;
  2514. }
  2515. <<<<<<< HEAD
  2516. #u2879_div {
  2517. =======
  2518. #u2880_div {
  2519. >>>>>>> 0601optimize
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:181px;
  2525. height:22px;
  2526. background:inherit;
  2527. background-color:rgba(255, 255, 255, 0);
  2528. border:none;
  2529. border-radius:0px;
  2530. -moz-box-shadow:none;
  2531. -webkit-box-shadow:none;
  2532. box-shadow:none;
  2533. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2534. font-weight:700;
  2535. font-style:normal;
  2536. font-size:18px;
  2537. }
  2538. <<<<<<< HEAD
  2539. #u2879 {
  2540. =======
  2541. #u2880 {
  2542. >>>>>>> 0601optimize
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:21px;
  2546. top:2873px;
  2547. width:181px;
  2548. height:22px;
  2549. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2550. font-weight:700;
  2551. font-style:normal;
  2552. font-size:18px;
  2553. }
  2554. <<<<<<< HEAD
  2555. #u2879_text {
  2556. =======
  2557. #u2880_text {
  2558. >>>>>>> 0601optimize
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:181px;
  2564. white-space:nowrap;
  2565. }
  2566. <<<<<<< HEAD
  2567. #u2880_img {
  2568. =======
  2569. #u2881_img {
  2570. >>>>>>> 0601optimize
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:-4px;
  2574. top:-4px;
  2575. width:30px;
  2576. height:30px;
  2577. }
  2578. <<<<<<< HEAD
  2579. #u2880 {
  2580. =======
  2581. #u2881 {
  2582. >>>>>>> 0601optimize
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:1050px;
  2586. top:3153px;
  2587. width:20px;
  2588. height:20px;
  2589. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2590. font-weight:700;
  2591. font-style:normal;
  2592. font-size:14px;
  2593. color:#1E1E1E;
  2594. }
  2595. <<<<<<< HEAD
  2596. #u2880_text {
  2597. =======
  2598. #u2881_text {
  2599. >>>>>>> 0601optimize
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:2px;
  2603. top:2px;
  2604. width:16px;
  2605. word-wrap:break-word;
  2606. }
  2607. <<<<<<< HEAD
  2608. #u2881 {
  2609. =======
  2610. #u2882 {
  2611. >>>>>>> 0601optimize
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:0px;
  2617. height:0px;
  2618. }
  2619. <<<<<<< HEAD
  2620. #u2882_img {
  2621. =======
  2622. #u2883_img {
  2623. >>>>>>> 0601optimize
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:-4px;
  2627. top:-4px;
  2628. width:40px;
  2629. height:40px;
  2630. }
  2631. <<<<<<< HEAD
  2632. #u2882 {
  2633. =======
  2634. #u2883 {
  2635. >>>>>>> 0601optimize
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:1186px;
  2639. top:2901px;
  2640. width:30px;
  2641. height:30px;
  2642. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2643. font-weight:700;
  2644. font-style:normal;
  2645. font-size:18px;
  2646. color:#1E1E1E;
  2647. }
  2648. <<<<<<< HEAD
  2649. #u2882_text {
  2650. =======
  2651. #u2883_text {
  2652. >>>>>>> 0601optimize
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:2px;
  2656. top:4px;
  2657. width:26px;
  2658. word-wrap:break-word;
  2659. }
  2660. <<<<<<< HEAD
  2661. #u2883_div {
  2662. =======
  2663. #u2884_div {
  2664. >>>>>>> 0601optimize
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:198px;
  2670. height:19px;
  2671. background:inherit;
  2672. background-color:rgba(255, 255, 255, 0);
  2673. border:none;
  2674. border-radius:0px;
  2675. -moz-box-shadow:none;
  2676. -webkit-box-shadow:none;
  2677. box-shadow:none;
  2678. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2679. font-weight:700;
  2680. font-style:normal;
  2681. font-size:16px;
  2682. }
  2683. <<<<<<< HEAD
  2684. #u2883 {
  2685. =======
  2686. #u2884 {
  2687. >>>>>>> 0601optimize
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:1226px;
  2691. top:2908px;
  2692. width:198px;
  2693. height:19px;
  2694. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2695. font-weight:700;
  2696. font-style:normal;
  2697. font-size:16px;
  2698. }
  2699. <<<<<<< HEAD
  2700. #u2883_text {
  2701. =======
  2702. #u2884_text {
  2703. >>>>>>> 0601optimize
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:198px;
  2709. word-wrap:break-word;
  2710. }
  2711. <<<<<<< HEAD
  2712. #u2884_div {
  2713. =======
  2714. #u2885_div {
  2715. >>>>>>> 0601optimize
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:352px;
  2721. height:44px;
  2722. background:inherit;
  2723. background-color:rgba(255, 255, 255, 0);
  2724. border:none;
  2725. border-radius:0px;
  2726. -moz-box-shadow:none;
  2727. -webkit-box-shadow:none;
  2728. box-shadow:none;
  2729. line-height:22px;
  2730. }
  2731. <<<<<<< HEAD
  2732. #u2884 {
  2733. =======
  2734. #u2885 {
  2735. >>>>>>> 0601optimize
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:1226px;
  2739. top:2946px;
  2740. width:352px;
  2741. height:44px;
  2742. line-height:22px;
  2743. }
  2744. <<<<<<< HEAD
  2745. #u2884_text {
  2746. =======
  2747. #u2885_text {
  2748. >>>>>>> 0601optimize
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:352px;
  2754. word-wrap:break-word;
  2755. }
  2756. <<<<<<< HEAD
  2757. #u2885_div {
  2758. =======
  2759. #u2886_div {
  2760. >>>>>>> 0601optimize
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:865px;
  2766. height:81px;
  2767. background:inherit;
  2768. background-color:rgba(255, 255, 255, 0);
  2769. border:none;
  2770. border-radius:0px;
  2771. -moz-box-shadow:none;
  2772. -webkit-box-shadow:none;
  2773. box-shadow:none;
  2774. font-size:16px;
  2775. line-height:24px;
  2776. }
  2777. <<<<<<< HEAD
  2778. #u2885 {
  2779. =======
  2780. #u2886 {
  2781. >>>>>>> 0601optimize
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:55px;
  2785. top:115px;
  2786. width:865px;
  2787. height:81px;
  2788. font-size:16px;
  2789. line-height:24px;
  2790. }
  2791. <<<<<<< HEAD
  2792. #u2885_text {
  2793. =======
  2794. #u2886_text {
  2795. >>>>>>> 0601optimize
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:865px;
  2801. word-wrap:break-word;
  2802. }
  2803. <<<<<<< HEAD
  2804. #u2886 {
  2805. =======
  2806. #u2887 {
  2807. >>>>>>> 0601optimize
  2808. position:fixed;
  2809. left:1382px;
  2810. top:68px;
  2811. }
  2812. <<<<<<< HEAD
  2813. #u2886_state0 {
  2814. =======
  2815. #u2887_state0 {
  2816. >>>>>>> 0601optimize
  2817. position:relative;
  2818. left:0px;
  2819. top:0px;
  2820. width:140px;
  2821. height:40px;
  2822. background-image:none;
  2823. }
  2824. <<<<<<< HEAD
  2825. #u2886_state0_content {
  2826. =======
  2827. #u2887_state0_content {
  2828. >>>>>>> 0601optimize
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:1px;
  2834. height:1px;
  2835. }
  2836. <<<<<<< HEAD
  2837. #u2887_div {
  2838. =======
  2839. #u2888_div {
  2840. >>>>>>> 0601optimize
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:140px;
  2846. height:40px;
  2847. background:inherit;
  2848. background-color:rgba(51, 160, 154, 1);
  2849. border:none;
  2850. border-radius:5px;
  2851. -moz-box-shadow:none;
  2852. -webkit-box-shadow:none;
  2853. box-shadow:none;
  2854. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2855. font-weight:700;
  2856. font-style:normal;
  2857. font-size:16px;
  2858. }
  2859. <<<<<<< HEAD
  2860. #u2887 {
  2861. =======
  2862. #u2888 {
  2863. >>>>>>> 0601optimize
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:140px;
  2869. height:40px;
  2870. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2871. font-weight:700;
  2872. font-style:normal;
  2873. font-size:16px;
  2874. }
  2875. <<<<<<< HEAD
  2876. #u2887_text {
  2877. =======
  2878. #u2888_text {
  2879. >>>>>>> 0601optimize
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:2px;
  2883. top:10px;
  2884. width:136px;
  2885. word-wrap:break-word;
  2886. }