styles.css 46 KB

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