styles.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618
  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. #u2305 {
  17. =======
  18. #u2306 {
  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. #u2306_img {
  29. =======
  30. #u2307_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. #u2306 {
  41. =======
  42. #u2307 {
  43. >>>>>>> 0601optimize
  44. border-width:0px;
  45. position:absolute;
  46. left:7px;
  47. top:13px;
  48. width:8px;
  49. height:28px;
  50. }
  51. <<<<<<< HEAD
  52. #u2306_text {
  53. =======
  54. #u2307_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. #u2307_div {
  66. =======
  67. #u2308_div {
  68. >>>>>>> 0601optimize
  69. border-width:0px;
  70. position:absolute;
  71. left:0px;
  72. top:0px;
  73. width:191px;
  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. #u2307 {
  88. =======
  89. #u2308 {
  90. >>>>>>> 0601optimize
  91. border-width:0px;
  92. position:absolute;
  93. left:21px;
  94. top:13px;
  95. width:191px;
  96. height:28px;
  97. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  98. font-weight:700;
  99. font-style:normal;
  100. }
  101. <<<<<<< HEAD
  102. #u2307_text {
  103. =======
  104. #u2308_text {
  105. >>>>>>> 0601optimize
  106. border-width:0px;
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:191px;
  111. white-space:nowrap;
  112. }
  113. <<<<<<< HEAD
  114. #u2308_div {
  115. =======
  116. #u2309_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. #u2308 {
  138. =======
  139. #u2309 {
  140. >>>>>>> 0601optimize
  141. border-width:0px;
  142. position:absolute;
  143. left:21px;
  144. top:59px;
  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. #u2308_text {
  154. =======
  155. #u2309_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. #u2309_div {
  166. =======
  167. #u2310_div {
  168. >>>>>>> 0601optimize
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:821px;
  174. height:120px;
  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-size:16px;
  183. line-height:24px;
  184. }
  185. <<<<<<< HEAD
  186. #u2309 {
  187. =======
  188. #u2310 {
  189. >>>>>>> 0601optimize
  190. border-width:0px;
  191. position:absolute;
  192. left:57px;
  193. top:65px;
  194. width:821px;
  195. height:120px;
  196. font-size:16px;
  197. line-height:24px;
  198. }
  199. <<<<<<< HEAD
  200. #u2309_text {
  201. =======
  202. #u2310_text {
  203. >>>>>>> 0601optimize
  204. border-width:0px;
  205. position:absolute;
  206. left:0px;
  207. top:0px;
  208. width:821px;
  209. word-wrap:break-word;
  210. }
  211. <<<<<<< HEAD
  212. #u2310_div {
  213. =======
  214. #u2311_div {
  215. >>>>>>> 0601optimize
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:263px;
  221. height:22px;
  222. background:inherit;
  223. background-color:rgba(255, 255, 255, 0);
  224. border:none;
  225. border-radius:0px;
  226. -moz-box-shadow:none;
  227. -webkit-box-shadow:none;
  228. box-shadow:none;
  229. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  230. font-weight:700;
  231. font-style:normal;
  232. font-size:18px;
  233. }
  234. <<<<<<< HEAD
  235. #u2310 {
  236. =======
  237. #u2311 {
  238. >>>>>>> 0601optimize
  239. border-width:0px;
  240. position:absolute;
  241. left:21px;
  242. top:195px;
  243. width:263px;
  244. height:22px;
  245. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  246. font-weight:700;
  247. font-style:normal;
  248. font-size:18px;
  249. }
  250. <<<<<<< HEAD
  251. #u2310_text {
  252. =======
  253. #u2311_text {
  254. >>>>>>> 0601optimize
  255. border-width:0px;
  256. position:absolute;
  257. left:0px;
  258. top:0px;
  259. width:263px;
  260. white-space:nowrap;
  261. }
  262. <<<<<<< HEAD
  263. #u2311_img {
  264. =======
  265. #u2312_img {
  266. >>>>>>> 0601optimize
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:1155px;
  272. height:583px;
  273. }
  274. <<<<<<< HEAD
  275. #u2311 {
  276. =======
  277. #u2312 {
  278. >>>>>>> 0601optimize
  279. border-width:0px;
  280. position:absolute;
  281. left:21px;
  282. top:897px;
  283. width:1155px;
  284. height:583px;
  285. }
  286. <<<<<<< HEAD
  287. #u2311_text {
  288. =======
  289. #u2312_text {
  290. >>>>>>> 0601optimize
  291. border-width:0px;
  292. position:absolute;
  293. left:0px;
  294. top:0px;
  295. width:0px;
  296. visibility:hidden;
  297. word-wrap:break-word;
  298. }
  299. <<<<<<< HEAD
  300. #u2312_img {
  301. =======
  302. #u2313_img {
  303. >>>>>>> 0601optimize
  304. border-width:0px;
  305. position:absolute;
  306. left:-4px;
  307. top:-4px;
  308. width:30px;
  309. height:30px;
  310. }
  311. <<<<<<< HEAD
  312. #u2312 {
  313. =======
  314. #u2313 {
  315. >>>>>>> 0601optimize
  316. border-width:0px;
  317. position:absolute;
  318. left:973px;
  319. top:1278px;
  320. width:20px;
  321. height:20px;
  322. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  323. font-weight:700;
  324. font-style:normal;
  325. font-size:14px;
  326. color:#1E1E1E;
  327. }
  328. <<<<<<< HEAD
  329. #u2312_text {
  330. =======
  331. #u2313_text {
  332. >>>>>>> 0601optimize
  333. border-width:0px;
  334. position:absolute;
  335. left:2px;
  336. top:2px;
  337. width:16px;
  338. word-wrap:break-word;
  339. }
  340. <<<<<<< HEAD
  341. #u2313_img {
  342. =======
  343. #u2314_img {
  344. >>>>>>> 0601optimize
  345. border-width:0px;
  346. position:absolute;
  347. left:-4px;
  348. top:-4px;
  349. width:30px;
  350. height:30px;
  351. }
  352. <<<<<<< HEAD
  353. #u2313 {
  354. =======
  355. #u2314 {
  356. >>>>>>> 0601optimize
  357. border-width:0px;
  358. position:absolute;
  359. left:1047px;
  360. top:1278px;
  361. width:20px;
  362. height:20px;
  363. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  364. font-weight:700;
  365. font-style:normal;
  366. font-size:14px;
  367. color:#1E1E1E;
  368. }
  369. <<<<<<< HEAD
  370. #u2313_text {
  371. =======
  372. #u2314_text {
  373. >>>>>>> 0601optimize
  374. border-width:0px;
  375. position:absolute;
  376. left:2px;
  377. top:2px;
  378. width:16px;
  379. word-wrap:break-word;
  380. }
  381. <<<<<<< HEAD
  382. #u2314_img {
  383. =======
  384. #u2315_img {
  385. >>>>>>> 0601optimize
  386. border-width:0px;
  387. position:absolute;
  388. left:-4px;
  389. top:-4px;
  390. width:30px;
  391. height:30px;
  392. }
  393. <<<<<<< HEAD
  394. #u2314 {
  395. =======
  396. #u2315 {
  397. >>>>>>> 0601optimize
  398. border-width:0px;
  399. position:absolute;
  400. left:1112px;
  401. top:1278px;
  402. width:20px;
  403. height:20px;
  404. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  405. font-weight:700;
  406. font-style:normal;
  407. font-size:14px;
  408. color:#1E1E1E;
  409. }
  410. <<<<<<< HEAD
  411. #u2314_text {
  412. =======
  413. #u2315_text {
  414. >>>>>>> 0601optimize
  415. border-width:0px;
  416. position:absolute;
  417. left:2px;
  418. top:2px;
  419. width:16px;
  420. word-wrap:break-word;
  421. }
  422. <<<<<<< HEAD
  423. #u2315 {
  424. =======
  425. #u2316 {
  426. >>>>>>> 0601optimize
  427. border-width:0px;
  428. position:absolute;
  429. left:0px;
  430. top:0px;
  431. width:0px;
  432. height:0px;
  433. }
  434. <<<<<<< HEAD
  435. #u2316_img {
  436. =======
  437. #u2317_img {
  438. >>>>>>> 0601optimize
  439. border-width:0px;
  440. position:absolute;
  441. left:-4px;
  442. top:-4px;
  443. width:40px;
  444. height:40px;
  445. }
  446. <<<<<<< HEAD
  447. #u2316 {
  448. =======
  449. #u2317 {
  450. >>>>>>> 0601optimize
  451. border-width:0px;
  452. position:absolute;
  453. left:1186px;
  454. top:1095px;
  455. width:30px;
  456. height:30px;
  457. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  458. font-weight:700;
  459. font-style:normal;
  460. font-size:18px;
  461. color:#1E1E1E;
  462. }
  463. <<<<<<< HEAD
  464. #u2316_text {
  465. =======
  466. #u2317_text {
  467. >>>>>>> 0601optimize
  468. border-width:0px;
  469. position:absolute;
  470. left:2px;
  471. top:4px;
  472. width:26px;
  473. word-wrap:break-word;
  474. }
  475. <<<<<<< HEAD
  476. #u2317_div {
  477. =======
  478. #u2318_div {
  479. >>>>>>> 0601optimize
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:143px;
  485. height:19px;
  486. background:inherit;
  487. background-color:rgba(255, 255, 255, 0);
  488. border:none;
  489. border-radius:0px;
  490. -moz-box-shadow:none;
  491. -webkit-box-shadow:none;
  492. box-shadow:none;
  493. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  494. font-weight:700;
  495. font-style:normal;
  496. font-size:16px;
  497. }
  498. <<<<<<< HEAD
  499. #u2317 {
  500. =======
  501. #u2318 {
  502. >>>>>>> 0601optimize
  503. border-width:0px;
  504. position:absolute;
  505. left:1226px;
  506. top:1102px;
  507. width:143px;
  508. height:19px;
  509. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  510. font-weight:700;
  511. font-style:normal;
  512. font-size:16px;
  513. }
  514. <<<<<<< HEAD
  515. #u2317_text {
  516. =======
  517. #u2318_text {
  518. >>>>>>> 0601optimize
  519. border-width:0px;
  520. position:absolute;
  521. left:0px;
  522. top:0px;
  523. width:143px;
  524. word-wrap:break-word;
  525. }
  526. <<<<<<< HEAD
  527. #u2318_div {
  528. =======
  529. #u2319_div {
  530. >>>>>>> 0601optimize
  531. border-width:0px;
  532. position:absolute;
  533. left:0px;
  534. top:0px;
  535. width:352px;
  536. height:22px;
  537. background:inherit;
  538. background-color:rgba(255, 255, 255, 0);
  539. border:none;
  540. border-radius:0px;
  541. -moz-box-shadow:none;
  542. -webkit-box-shadow:none;
  543. box-shadow:none;
  544. line-height:22px;
  545. }
  546. <<<<<<< HEAD
  547. #u2318 {
  548. =======
  549. #u2319 {
  550. >>>>>>> 0601optimize
  551. border-width:0px;
  552. position:absolute;
  553. left:1226px;
  554. top:1140px;
  555. width:352px;
  556. height:22px;
  557. line-height:22px;
  558. }
  559. <<<<<<< HEAD
  560. #u2318_text {
  561. =======
  562. #u2319_text {
  563. >>>>>>> 0601optimize
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:352px;
  569. word-wrap:break-word;
  570. }
  571. <<<<<<< HEAD
  572. #u2319 {
  573. =======
  574. #u2320 {
  575. >>>>>>> 0601optimize
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:0px;
  581. height:0px;
  582. }
  583. <<<<<<< HEAD
  584. #u2320_img {
  585. =======
  586. #u2321_img {
  587. >>>>>>> 0601optimize
  588. border-width:0px;
  589. position:absolute;
  590. left:-4px;
  591. top:-4px;
  592. width:40px;
  593. height:40px;
  594. }
  595. <<<<<<< HEAD
  596. #u2320 {
  597. =======
  598. #u2321 {
  599. >>>>>>> 0601optimize
  600. border-width:0px;
  601. position:absolute;
  602. left:1186px;
  603. top:996px;
  604. width:30px;
  605. height:30px;
  606. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  607. font-weight:700;
  608. font-style:normal;
  609. font-size:18px;
  610. color:#1E1E1E;
  611. }
  612. <<<<<<< HEAD
  613. #u2320_text {
  614. =======
  615. #u2321_text {
  616. >>>>>>> 0601optimize
  617. border-width:0px;
  618. position:absolute;
  619. left:2px;
  620. top:4px;
  621. width:26px;
  622. word-wrap:break-word;
  623. }
  624. <<<<<<< HEAD
  625. #u2321_div {
  626. =======
  627. #u2322_div {
  628. >>>>>>> 0601optimize
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:143px;
  634. height:19px;
  635. background:inherit;
  636. background-color:rgba(255, 255, 255, 0);
  637. border:none;
  638. border-radius:0px;
  639. -moz-box-shadow:none;
  640. -webkit-box-shadow:none;
  641. box-shadow:none;
  642. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  643. font-weight:700;
  644. font-style:normal;
  645. font-size:16px;
  646. }
  647. <<<<<<< HEAD
  648. #u2321 {
  649. =======
  650. #u2322 {
  651. >>>>>>> 0601optimize
  652. border-width:0px;
  653. position:absolute;
  654. left:1226px;
  655. top:1003px;
  656. width:143px;
  657. height:19px;
  658. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  659. font-weight:700;
  660. font-style:normal;
  661. font-size:16px;
  662. }
  663. <<<<<<< HEAD
  664. #u2321_text {
  665. =======
  666. #u2322_text {
  667. >>>>>>> 0601optimize
  668. border-width:0px;
  669. position:absolute;
  670. left:0px;
  671. top:0px;
  672. width:143px;
  673. word-wrap:break-word;
  674. }
  675. <<<<<<< HEAD
  676. #u2322_div {
  677. =======
  678. #u2323_div {
  679. >>>>>>> 0601optimize
  680. border-width:0px;
  681. position:absolute;
  682. left:0px;
  683. top:0px;
  684. width:352px;
  685. height:44px;
  686. background:inherit;
  687. background-color:rgba(255, 255, 255, 0);
  688. border:none;
  689. border-radius:0px;
  690. -moz-box-shadow:none;
  691. -webkit-box-shadow:none;
  692. box-shadow:none;
  693. line-height:22px;
  694. }
  695. <<<<<<< HEAD
  696. #u2322 {
  697. =======
  698. #u2323 {
  699. >>>>>>> 0601optimize
  700. border-width:0px;
  701. position:absolute;
  702. left:1226px;
  703. top:1041px;
  704. width:352px;
  705. height:44px;
  706. line-height:22px;
  707. }
  708. <<<<<<< HEAD
  709. #u2322_text {
  710. =======
  711. #u2323_text {
  712. >>>>>>> 0601optimize
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:0px;
  717. width:352px;
  718. word-wrap:break-word;
  719. }
  720. <<<<<<< HEAD
  721. #u2323 {
  722. =======
  723. #u2324 {
  724. >>>>>>> 0601optimize
  725. border-width:0px;
  726. position:absolute;
  727. left:0px;
  728. top:0px;
  729. width:0px;
  730. height:0px;
  731. }
  732. <<<<<<< HEAD
  733. #u2324_img {
  734. =======
  735. #u2325_img {
  736. >>>>>>> 0601optimize
  737. border-width:0px;
  738. position:absolute;
  739. left:-4px;
  740. top:-4px;
  741. width:40px;
  742. height:40px;
  743. }
  744. <<<<<<< HEAD
  745. #u2324 {
  746. =======
  747. #u2325 {
  748. >>>>>>> 0601optimize
  749. border-width:0px;
  750. position:absolute;
  751. left:1186px;
  752. top:897px;
  753. width:30px;
  754. height:30px;
  755. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  756. font-weight:700;
  757. font-style:normal;
  758. font-size:18px;
  759. color:#1E1E1E;
  760. }
  761. <<<<<<< HEAD
  762. #u2324_text {
  763. =======
  764. #u2325_text {
  765. >>>>>>> 0601optimize
  766. border-width:0px;
  767. position:absolute;
  768. left:2px;
  769. top:4px;
  770. width:26px;
  771. word-wrap:break-word;
  772. }
  773. <<<<<<< HEAD
  774. #u2325_div {
  775. =======
  776. #u2326_div {
  777. >>>>>>> 0601optimize
  778. border-width:0px;
  779. position:absolute;
  780. left:0px;
  781. top:0px;
  782. width:143px;
  783. height:19px;
  784. background:inherit;
  785. background-color:rgba(255, 255, 255, 0);
  786. border:none;
  787. border-radius:0px;
  788. -moz-box-shadow:none;
  789. -webkit-box-shadow:none;
  790. box-shadow:none;
  791. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  792. font-weight:700;
  793. font-style:normal;
  794. font-size:16px;
  795. }
  796. <<<<<<< HEAD
  797. #u2325 {
  798. =======
  799. #u2326 {
  800. >>>>>>> 0601optimize
  801. border-width:0px;
  802. position:absolute;
  803. left:1226px;
  804. top:904px;
  805. width:143px;
  806. height:19px;
  807. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  808. font-weight:700;
  809. font-style:normal;
  810. font-size:16px;
  811. }
  812. <<<<<<< HEAD
  813. #u2325_text {
  814. =======
  815. #u2326_text {
  816. >>>>>>> 0601optimize
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:143px;
  822. word-wrap:break-word;
  823. }
  824. <<<<<<< HEAD
  825. #u2326_div {
  826. =======
  827. #u2327_div {
  828. >>>>>>> 0601optimize
  829. border-width:0px;
  830. position:absolute;
  831. left:0px;
  832. top:0px;
  833. width:352px;
  834. height:44px;
  835. background:inherit;
  836. background-color:rgba(255, 255, 255, 0);
  837. border:none;
  838. border-radius:0px;
  839. -moz-box-shadow:none;
  840. -webkit-box-shadow:none;
  841. box-shadow:none;
  842. line-height:22px;
  843. }
  844. <<<<<<< HEAD
  845. #u2326 {
  846. =======
  847. #u2327 {
  848. >>>>>>> 0601optimize
  849. border-width:0px;
  850. position:absolute;
  851. left:1226px;
  852. top:942px;
  853. width:352px;
  854. height:44px;
  855. line-height:22px;
  856. }
  857. <<<<<<< HEAD
  858. #u2326_text {
  859. =======
  860. #u2327_text {
  861. >>>>>>> 0601optimize
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:352px;
  867. word-wrap:break-word;
  868. }
  869. <<<<<<< HEAD
  870. #u2327 {
  871. =======
  872. #u2328 {
  873. >>>>>>> 0601optimize
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:0px;
  879. height:0px;
  880. }
  881. <<<<<<< HEAD
  882. #u2328_img {
  883. =======
  884. #u2329_img {
  885. >>>>>>> 0601optimize
  886. border-width:0px;
  887. position:absolute;
  888. left:-4px;
  889. top:-4px;
  890. width:40px;
  891. height:40px;
  892. }
  893. <<<<<<< HEAD
  894. #u2328 {
  895. =======
  896. #u2329 {
  897. >>>>>>> 0601optimize
  898. border-width:0px;
  899. position:absolute;
  900. left:1186px;
  901. top:1550px;
  902. width:30px;
  903. height:30px;
  904. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  905. font-weight:700;
  906. font-style:normal;
  907. font-size:18px;
  908. color:#1E1E1E;
  909. }
  910. <<<<<<< HEAD
  911. #u2328_text {
  912. =======
  913. #u2329_text {
  914. >>>>>>> 0601optimize
  915. border-width:0px;
  916. position:absolute;
  917. left:2px;
  918. top:4px;
  919. width:26px;
  920. word-wrap:break-word;
  921. }
  922. <<<<<<< HEAD
  923. #u2329_div {
  924. =======
  925. #u2330_div {
  926. >>>>>>> 0601optimize
  927. border-width:0px;
  928. position:absolute;
  929. left:0px;
  930. top:0px;
  931. width:143px;
  932. height:19px;
  933. background:inherit;
  934. background-color:rgba(255, 255, 255, 0);
  935. border:none;
  936. border-radius:0px;
  937. -moz-box-shadow:none;
  938. -webkit-box-shadow:none;
  939. box-shadow:none;
  940. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  941. font-weight:700;
  942. font-style:normal;
  943. font-size:16px;
  944. }
  945. <<<<<<< HEAD
  946. #u2329 {
  947. =======
  948. #u2330 {
  949. >>>>>>> 0601optimize
  950. border-width:0px;
  951. position:absolute;
  952. left:1226px;
  953. top:1557px;
  954. width:143px;
  955. height:19px;
  956. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  957. font-weight:700;
  958. font-style:normal;
  959. font-size:16px;
  960. }
  961. <<<<<<< HEAD
  962. #u2329_text {
  963. =======
  964. #u2330_text {
  965. >>>>>>> 0601optimize
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:143px;
  971. word-wrap:break-word;
  972. }
  973. <<<<<<< HEAD
  974. #u2330_div {
  975. =======
  976. #u2331_div {
  977. >>>>>>> 0601optimize
  978. border-width:0px;
  979. position:absolute;
  980. left:0px;
  981. top:0px;
  982. width:352px;
  983. height:22px;
  984. background:inherit;
  985. background-color:rgba(255, 255, 255, 0);
  986. border:none;
  987. border-radius:0px;
  988. -moz-box-shadow:none;
  989. -webkit-box-shadow:none;
  990. box-shadow:none;
  991. line-height:22px;
  992. }
  993. <<<<<<< HEAD
  994. #u2330 {
  995. =======
  996. #u2331 {
  997. >>>>>>> 0601optimize
  998. border-width:0px;
  999. position:absolute;
  1000. left:1226px;
  1001. top:1595px;
  1002. width:352px;
  1003. height:22px;
  1004. line-height:22px;
  1005. }
  1006. <<<<<<< HEAD
  1007. #u2330_text {
  1008. =======
  1009. #u2331_text {
  1010. >>>>>>> 0601optimize
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:352px;
  1016. word-wrap:break-word;
  1017. }
  1018. <<<<<<< HEAD
  1019. #u2331 {
  1020. =======
  1021. #u2332 {
  1022. >>>>>>> 0601optimize
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:0px;
  1028. height:0px;
  1029. }
  1030. <<<<<<< HEAD
  1031. #u2332_img {
  1032. =======
  1033. #u2333_img {
  1034. >>>>>>> 0601optimize
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:-4px;
  1038. top:-4px;
  1039. width:40px;
  1040. height:40px;
  1041. }
  1042. <<<<<<< HEAD
  1043. #u2332 {
  1044. =======
  1045. #u2333 {
  1046. >>>>>>> 0601optimize
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:1186px;
  1050. top:1639px;
  1051. width:30px;
  1052. height:30px;
  1053. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1054. font-weight:700;
  1055. font-style:normal;
  1056. font-size:18px;
  1057. color:#1E1E1E;
  1058. }
  1059. <<<<<<< HEAD
  1060. #u2332_text {
  1061. =======
  1062. #u2333_text {
  1063. >>>>>>> 0601optimize
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:2px;
  1067. top:4px;
  1068. width:26px;
  1069. word-wrap:break-word;
  1070. }
  1071. <<<<<<< HEAD
  1072. #u2333_div {
  1073. =======
  1074. #u2334_div {
  1075. >>>>>>> 0601optimize
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:143px;
  1081. height:19px;
  1082. background:inherit;
  1083. background-color:rgba(255, 255, 255, 0);
  1084. border:none;
  1085. border-radius:0px;
  1086. -moz-box-shadow:none;
  1087. -webkit-box-shadow:none;
  1088. box-shadow:none;
  1089. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1090. font-weight:700;
  1091. font-style:normal;
  1092. font-size:16px;
  1093. color:#FF0000;
  1094. }
  1095. <<<<<<< HEAD
  1096. #u2333 {
  1097. =======
  1098. #u2334 {
  1099. >>>>>>> 0601optimize
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:1226px;
  1103. top:1646px;
  1104. width:143px;
  1105. height:19px;
  1106. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1107. font-weight:700;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FF0000;
  1111. }
  1112. <<<<<<< HEAD
  1113. #u2333_text {
  1114. =======
  1115. #u2334_text {
  1116. >>>>>>> 0601optimize
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:143px;
  1122. word-wrap:break-word;
  1123. }
  1124. <<<<<<< HEAD
  1125. #u2334_div {
  1126. =======
  1127. #u2335_div {
  1128. >>>>>>> 0601optimize
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:352px;
  1134. height:44px;
  1135. background:inherit;
  1136. background-color:rgba(255, 255, 255, 0);
  1137. border:none;
  1138. border-radius:0px;
  1139. -moz-box-shadow:none;
  1140. -webkit-box-shadow:none;
  1141. box-shadow:none;
  1142. line-height:22px;
  1143. }
  1144. <<<<<<< HEAD
  1145. #u2334 {
  1146. =======
  1147. #u2335 {
  1148. >>>>>>> 0601optimize
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1226px;
  1152. top:1684px;
  1153. width:352px;
  1154. height:44px;
  1155. line-height:22px;
  1156. }
  1157. <<<<<<< HEAD
  1158. #u2334_text {
  1159. =======
  1160. #u2335_text {
  1161. >>>>>>> 0601optimize
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:352px;
  1167. word-wrap:break-word;
  1168. }
  1169. <<<<<<< HEAD
  1170. #u2335 {
  1171. =======
  1172. #u2336 {
  1173. >>>>>>> 0601optimize
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:0px;
  1177. top:0px;
  1178. width:0px;
  1179. height:0px;
  1180. }
  1181. <<<<<<< HEAD
  1182. #u2336_img {
  1183. =======
  1184. #u2337_img {
  1185. >>>>>>> 0601optimize
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:-4px;
  1189. top:-4px;
  1190. width:40px;
  1191. height:40px;
  1192. }
  1193. <<<<<<< HEAD
  1194. #u2336 {
  1195. =======
  1196. #u2337 {
  1197. >>>>>>> 0601optimize
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:1186px;
  1201. top:1730px;
  1202. width:30px;
  1203. height:30px;
  1204. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1205. font-weight:700;
  1206. font-style:normal;
  1207. font-size:18px;
  1208. color:#1E1E1E;
  1209. }
  1210. <<<<<<< HEAD
  1211. #u2336_text {
  1212. =======
  1213. #u2337_text {
  1214. >>>>>>> 0601optimize
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:2px;
  1218. top:4px;
  1219. width:26px;
  1220. word-wrap:break-word;
  1221. }
  1222. <<<<<<< HEAD
  1223. #u2337_div {
  1224. =======
  1225. #u2338_div {
  1226. >>>>>>> 0601optimize
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:119px;
  1232. height:19px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1241. font-weight:700;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FF0000;
  1245. }
  1246. <<<<<<< HEAD
  1247. #u2337 {
  1248. =======
  1249. #u2338 {
  1250. >>>>>>> 0601optimize
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:1226px;
  1254. top:1737px;
  1255. width:119px;
  1256. height:19px;
  1257. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1258. font-weight:700;
  1259. font-style:normal;
  1260. font-size:16px;
  1261. color:#FF0000;
  1262. }
  1263. <<<<<<< HEAD
  1264. #u2337_text {
  1265. =======
  1266. #u2338_text {
  1267. >>>>>>> 0601optimize
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:119px;
  1273. word-wrap:break-word;
  1274. }
  1275. <<<<<<< HEAD
  1276. #u2338_div {
  1277. =======
  1278. #u2339_div {
  1279. >>>>>>> 0601optimize
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:352px;
  1285. height:88px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 0);
  1288. border:none;
  1289. border-radius:0px;
  1290. -moz-box-shadow:none;
  1291. -webkit-box-shadow:none;
  1292. box-shadow:none;
  1293. line-height:22px;
  1294. }
  1295. <<<<<<< HEAD
  1296. #u2338 {
  1297. =======
  1298. #u2339 {
  1299. >>>>>>> 0601optimize
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:1226px;
  1303. top:1775px;
  1304. width:352px;
  1305. height:88px;
  1306. line-height:22px;
  1307. }
  1308. <<<<<<< HEAD
  1309. #u2338_text {
  1310. =======
  1311. #u2339_text {
  1312. >>>>>>> 0601optimize
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:352px;
  1318. word-wrap:break-word;
  1319. }
  1320. <<<<<<< HEAD
  1321. #u2339 {
  1322. =======
  1323. #u2340 {
  1324. >>>>>>> 0601optimize
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:0px;
  1330. height:0px;
  1331. }
  1332. <<<<<<< HEAD
  1333. #u2340_img {
  1334. =======
  1335. #u2341_img {
  1336. >>>>>>> 0601optimize
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:-4px;
  1340. top:-4px;
  1341. width:40px;
  1342. height:40px;
  1343. }
  1344. <<<<<<< HEAD
  1345. #u2340 {
  1346. =======
  1347. #u2341 {
  1348. >>>>>>> 0601optimize
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:1186px;
  1352. top:1873px;
  1353. width:30px;
  1354. height:30px;
  1355. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1356. font-weight:700;
  1357. font-style:normal;
  1358. font-size:18px;
  1359. color:#1E1E1E;
  1360. }
  1361. <<<<<<< HEAD
  1362. #u2340_text {
  1363. =======
  1364. #u2341_text {
  1365. >>>>>>> 0601optimize
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:2px;
  1369. top:4px;
  1370. width:26px;
  1371. word-wrap:break-word;
  1372. }
  1373. <<<<<<< HEAD
  1374. #u2341_div {
  1375. =======
  1376. #u2342_div {
  1377. >>>>>>> 0601optimize
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:119px;
  1383. height:19px;
  1384. background:inherit;
  1385. background-color:rgba(255, 255, 255, 0);
  1386. border:none;
  1387. border-radius:0px;
  1388. -moz-box-shadow:none;
  1389. -webkit-box-shadow:none;
  1390. box-shadow:none;
  1391. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1392. font-weight:700;
  1393. font-style:normal;
  1394. font-size:16px;
  1395. }
  1396. <<<<<<< HEAD
  1397. #u2341 {
  1398. =======
  1399. #u2342 {
  1400. >>>>>>> 0601optimize
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:1226px;
  1404. top:1880px;
  1405. width:119px;
  1406. height:19px;
  1407. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1408. font-weight:700;
  1409. font-style:normal;
  1410. font-size:16px;
  1411. }
  1412. <<<<<<< HEAD
  1413. #u2341_text {
  1414. =======
  1415. #u2342_text {
  1416. >>>>>>> 0601optimize
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:0px;
  1420. top:0px;
  1421. width:119px;
  1422. word-wrap:break-word;
  1423. }
  1424. <<<<<<< HEAD
  1425. #u2342_div {
  1426. =======
  1427. #u2343_div {
  1428. >>>>>>> 0601optimize
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:352px;
  1434. height:22px;
  1435. background:inherit;
  1436. background-color:rgba(255, 255, 255, 0);
  1437. border:none;
  1438. border-radius:0px;
  1439. -moz-box-shadow:none;
  1440. -webkit-box-shadow:none;
  1441. box-shadow:none;
  1442. line-height:22px;
  1443. }
  1444. <<<<<<< HEAD
  1445. #u2342 {
  1446. =======
  1447. #u2343 {
  1448. >>>>>>> 0601optimize
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:1226px;
  1452. top:1918px;
  1453. width:352px;
  1454. height:22px;
  1455. line-height:22px;
  1456. }
  1457. <<<<<<< HEAD
  1458. #u2342_text {
  1459. =======
  1460. #u2343_text {
  1461. >>>>>>> 0601optimize
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:352px;
  1467. word-wrap:break-word;
  1468. }
  1469. <<<<<<< HEAD
  1470. #u2343 {
  1471. =======
  1472. #u2344 {
  1473. >>>>>>> 0601optimize
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:1226px;
  1477. top:1735px;
  1478. width:64px;
  1479. height:23px;
  1480. overflow:hidden;
  1481. background-image:url('../../resources/images/transparent.gif');
  1482. }
  1483. <<<<<<< HEAD
  1484. #u2344_img {
  1485. =======
  1486. #u2345_img {
  1487. >>>>>>> 0601optimize
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:245px;
  1493. height:88px;
  1494. }
  1495. <<<<<<< HEAD
  1496. #u2344 {
  1497. =======
  1498. #u2345 {
  1499. >>>>>>> 0601optimize
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:1226px;
  1503. top:1632px;
  1504. width:245px;
  1505. height:88px;
  1506. text-align:left;
  1507. }
  1508. <<<<<<< HEAD
  1509. #u2344_text {
  1510. =======
  1511. #u2345_text {
  1512. >>>>>>> 0601optimize
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:2px;
  1516. top:13px;
  1517. width:241px;
  1518. word-wrap:break-word;
  1519. }
  1520. <<<<<<< HEAD
  1521. #u2345_img {
  1522. =======
  1523. #u2346_img {
  1524. >>>>>>> 0601optimize
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:1155px;
  1530. height:583px;
  1531. }
  1532. <<<<<<< HEAD
  1533. #u2345 {
  1534. =======
  1535. #u2346 {
  1536. >>>>>>> 0601optimize
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:21px;
  1540. top:1550px;
  1541. width:1155px;
  1542. height:583px;
  1543. }
  1544. <<<<<<< HEAD
  1545. #u2345_text {
  1546. =======
  1547. #u2346_text {
  1548. >>>>>>> 0601optimize
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:0px;
  1554. visibility:hidden;
  1555. word-wrap:break-word;
  1556. }
  1557. <<<<<<< HEAD
  1558. #u2346_img {
  1559. =======
  1560. #u2347_img {
  1561. >>>>>>> 0601optimize
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:-4px;
  1565. top:-4px;
  1566. width:30px;
  1567. height:30px;
  1568. }
  1569. <<<<<<< HEAD
  1570. #u2346 {
  1571. =======
  1572. #u2347 {
  1573. >>>>>>> 0601optimize
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:204px;
  1577. top:1750px;
  1578. width:20px;
  1579. height:20px;
  1580. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1581. font-weight:700;
  1582. font-style:normal;
  1583. font-size:14px;
  1584. color:#1E1E1E;
  1585. }
  1586. <<<<<<< HEAD
  1587. #u2346_text {
  1588. =======
  1589. #u2347_text {
  1590. >>>>>>> 0601optimize
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:2px;
  1594. top:2px;
  1595. width:16px;
  1596. word-wrap:break-word;
  1597. }
  1598. <<<<<<< HEAD
  1599. #u2347_img {
  1600. =======
  1601. #u2348_img {
  1602. >>>>>>> 0601optimize
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:-4px;
  1606. top:-4px;
  1607. width:30px;
  1608. height:30px;
  1609. }
  1610. <<<<<<< HEAD
  1611. #u2347 {
  1612. =======
  1613. #u2348 {
  1614. >>>>>>> 0601optimize
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:297px;
  1618. top:1750px;
  1619. width:20px;
  1620. height:20px;
  1621. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1622. font-weight:700;
  1623. font-style:normal;
  1624. font-size:14px;
  1625. color:#1E1E1E;
  1626. }
  1627. <<<<<<< HEAD
  1628. #u2347_text {
  1629. =======
  1630. #u2348_text {
  1631. >>>>>>> 0601optimize
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:2px;
  1635. top:2px;
  1636. width:16px;
  1637. word-wrap:break-word;
  1638. }
  1639. <<<<<<< HEAD
  1640. #u2348_img {
  1641. =======
  1642. #u2349_img {
  1643. >>>>>>> 0601optimize
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:-4px;
  1647. top:-4px;
  1648. width:30px;
  1649. height:30px;
  1650. }
  1651. <<<<<<< HEAD
  1652. #u2348 {
  1653. =======
  1654. #u2349 {
  1655. >>>>>>> 0601optimize
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:1034px;
  1659. top:1841px;
  1660. width:20px;
  1661. height:20px;
  1662. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1663. font-weight:700;
  1664. font-style:normal;
  1665. font-size:14px;
  1666. color:#1E1E1E;
  1667. }
  1668. <<<<<<< HEAD
  1669. #u2348_text {
  1670. =======
  1671. #u2349_text {
  1672. >>>>>>> 0601optimize
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:2px;
  1676. top:2px;
  1677. width:16px;
  1678. word-wrap:break-word;
  1679. }
  1680. <<<<<<< HEAD
  1681. #u2349_img {
  1682. =======
  1683. #u2350_img {
  1684. >>>>>>> 0601optimize
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:-4px;
  1688. top:-4px;
  1689. width:30px;
  1690. height:30px;
  1691. }
  1692. <<<<<<< HEAD
  1693. #u2349 {
  1694. =======
  1695. #u2350 {
  1696. >>>>>>> 0601optimize
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:1095px;
  1700. top:1841px;
  1701. width:20px;
  1702. height:20px;
  1703. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1704. font-weight:700;
  1705. font-style:normal;
  1706. font-size:14px;
  1707. color:#1E1E1E;
  1708. }
  1709. <<<<<<< HEAD
  1710. #u2349_text {
  1711. =======
  1712. #u2350_text {
  1713. >>>>>>> 0601optimize
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:2px;
  1717. top:2px;
  1718. width:16px;
  1719. word-wrap:break-word;
  1720. }
  1721. <<<<<<< HEAD
  1722. #u2350_img {
  1723. =======
  1724. #u2351_img {
  1725. >>>>>>> 0601optimize
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:0px;
  1729. top:0px;
  1730. width:1155px;
  1731. height:583px;
  1732. }
  1733. <<<<<<< HEAD
  1734. #u2350 {
  1735. =======
  1736. #u2351 {
  1737. >>>>>>> 0601optimize
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:21px;
  1741. top:236px;
  1742. width:1155px;
  1743. height:583px;
  1744. }
  1745. <<<<<<< HEAD
  1746. #u2350_text {
  1747. =======
  1748. #u2351_text {
  1749. >>>>>>> 0601optimize
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:0px;
  1753. top:0px;
  1754. width:0px;
  1755. visibility:hidden;
  1756. word-wrap:break-word;
  1757. }
  1758. <<<<<<< HEAD
  1759. #u2351_img {
  1760. =======
  1761. #u2352_img {
  1762. >>>>>>> 0601optimize
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:-4px;
  1766. top:-4px;
  1767. width:30px;
  1768. height:30px;
  1769. }
  1770. <<<<<<< HEAD
  1771. #u2351 {
  1772. =======
  1773. #u2352 {
  1774. >>>>>>> 0601optimize
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:1034px;
  1778. top:592px;
  1779. width:20px;
  1780. height:20px;
  1781. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1782. font-weight:700;
  1783. font-style:normal;
  1784. font-size:14px;
  1785. color:#1E1E1E;
  1786. }
  1787. <<<<<<< HEAD
  1788. #u2351_text {
  1789. =======
  1790. #u2352_text {
  1791. >>>>>>> 0601optimize
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:2px;
  1795. top:2px;
  1796. width:16px;
  1797. word-wrap:break-word;
  1798. }
  1799. <<<<<<< HEAD
  1800. #u2352_img {
  1801. =======
  1802. #u2353_img {
  1803. >>>>>>> 0601optimize
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:-4px;
  1807. top:-4px;
  1808. width:30px;
  1809. height:30px;
  1810. }
  1811. <<<<<<< HEAD
  1812. #u2352 {
  1813. =======
  1814. #u2353 {
  1815. >>>>>>> 0601optimize
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:1095px;
  1819. top:592px;
  1820. width:20px;
  1821. height:20px;
  1822. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1823. font-weight:700;
  1824. font-style:normal;
  1825. font-size:14px;
  1826. color:#1E1E1E;
  1827. }
  1828. <<<<<<< HEAD
  1829. #u2352_text {
  1830. =======
  1831. #u2353_text {
  1832. >>>>>>> 0601optimize
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:2px;
  1836. top:2px;
  1837. width:16px;
  1838. word-wrap:break-word;
  1839. }
  1840. <<<<<<< HEAD
  1841. #u2353 {
  1842. =======
  1843. #u2354 {
  1844. >>>>>>> 0601optimize
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:0px;
  1850. height:0px;
  1851. }
  1852. <<<<<<< HEAD
  1853. #u2354_img {
  1854. =======
  1855. #u2355_img {
  1856. >>>>>>> 0601optimize
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:-4px;
  1860. top:-4px;
  1861. width:40px;
  1862. height:40px;
  1863. }
  1864. <<<<<<< HEAD
  1865. #u2354 {
  1866. =======
  1867. #u2355 {
  1868. >>>>>>> 0601optimize
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:1186px;
  1872. top:236px;
  1873. width:30px;
  1874. height:30px;
  1875. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1876. font-weight:700;
  1877. font-style:normal;
  1878. font-size:18px;
  1879. color:#1E1E1E;
  1880. }
  1881. <<<<<<< HEAD
  1882. #u2354_text {
  1883. =======
  1884. #u2355_text {
  1885. >>>>>>> 0601optimize
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:2px;
  1889. top:4px;
  1890. width:26px;
  1891. word-wrap:break-word;
  1892. }
  1893. <<<<<<< HEAD
  1894. #u2355_div {
  1895. =======
  1896. #u2356_div {
  1897. >>>>>>> 0601optimize
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:74px;
  1903. height:19px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border:none;
  1907. border-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1912. font-weight:700;
  1913. font-style:normal;
  1914. font-size:16px;
  1915. }
  1916. <<<<<<< HEAD
  1917. #u2355 {
  1918. =======
  1919. #u2356 {
  1920. >>>>>>> 0601optimize
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:1226px;
  1924. top:243px;
  1925. width:74px;
  1926. height:19px;
  1927. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1928. font-weight:700;
  1929. font-style:normal;
  1930. font-size:16px;
  1931. }
  1932. <<<<<<< HEAD
  1933. #u2355_text {
  1934. =======
  1935. #u2356_text {
  1936. >>>>>>> 0601optimize
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:74px;
  1942. word-wrap:break-word;
  1943. }
  1944. <<<<<<< HEAD
  1945. #u2356_div {
  1946. =======
  1947. #u2357_div {
  1948. >>>>>>> 0601optimize
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:352px;
  1954. height:264px;
  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. #u2356 {
  1966. =======
  1967. #u2357 {
  1968. >>>>>>> 0601optimize
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:1226px;
  1972. top:281px;
  1973. width:352px;
  1974. height:264px;
  1975. line-height:22px;
  1976. }
  1977. <<<<<<< HEAD
  1978. #u2356_text {
  1979. =======
  1980. #u2357_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. #u2357 {
  1991. =======
  1992. #u2358 {
  1993. >>>>>>> 0601optimize
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:1402px;
  1997. top:413px;
  1998. width:52px;
  1999. height:23px;
  2000. overflow:hidden;
  2001. background-image:url('../../resources/images/transparent.gif');
  2002. }
  2003. <<<<<<< HEAD
  2004. #u2358_img {
  2005. =======
  2006. #u2359_img {
  2007. >>>>>>> 0601optimize
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:182px;
  2013. height:70px;
  2014. }
  2015. <<<<<<< HEAD
  2016. #u2358 {
  2017. =======
  2018. #u2359 {
  2019. >>>>>>> 0601optimize
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:1330px;
  2023. top:333px;
  2024. width:182px;
  2025. height:70px;
  2026. color:#000000;
  2027. text-align:left;
  2028. line-height:18px;
  2029. }
  2030. <<<<<<< HEAD
  2031. #u2358_text {
  2032. =======
  2033. #u2359_text {
  2034. >>>>>>> 0601optimize
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:2px;
  2038. top:17px;
  2039. width:178px;
  2040. word-wrap:break-word;
  2041. }
  2042. <<<<<<< HEAD
  2043. #u2359 {
  2044. =======
  2045. #u2360 {
  2046. >>>>>>> 0601optimize
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:1464px;
  2050. top:413px;
  2051. width:59px;
  2052. height:23px;
  2053. overflow:hidden;
  2054. background-image:url('../../resources/images/transparent.gif');
  2055. }
  2056. <<<<<<< HEAD
  2057. #u2360_img {
  2058. =======
  2059. #u2361_img {
  2060. >>>>>>> 0601optimize
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:208px;
  2066. height:70px;
  2067. }
  2068. <<<<<<< HEAD
  2069. #u2360 {
  2070. =======
  2071. #u2361 {
  2072. >>>>>>> 0601optimize
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:1370px;
  2076. top:333px;
  2077. width:208px;
  2078. height:70px;
  2079. color:#000000;
  2080. text-align:left;
  2081. line-height:18px;
  2082. }
  2083. <<<<<<< HEAD
  2084. #u2360_text {
  2085. =======
  2086. #u2361_text {
  2087. >>>>>>> 0601optimize
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:2px;
  2091. top:17px;
  2092. width:204px;
  2093. word-wrap:break-word;
  2094. }
  2095. <<<<<<< HEAD
  2096. #u2361 {
  2097. =======
  2098. #u2362 {
  2099. >>>>>>> 0601optimize
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:1249px;
  2103. top:433px;
  2104. width:59px;
  2105. height:23px;
  2106. overflow:hidden;
  2107. background-image:url('../../resources/images/transparent.gif');
  2108. }
  2109. <<<<<<< HEAD
  2110. #u2362_img {
  2111. =======
  2112. #u2363_img {
  2113. >>>>>>> 0601optimize
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:208px;
  2119. height:57px;
  2120. }
  2121. <<<<<<< HEAD
  2122. #u2362 {
  2123. =======
  2124. #u2363 {
  2125. >>>>>>> 0601optimize
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:1233px;
  2129. top:366px;
  2130. width:208px;
  2131. height:57px;
  2132. color:#000000;
  2133. text-align:left;
  2134. line-height:18px;
  2135. }
  2136. <<<<<<< HEAD
  2137. #u2362_text {
  2138. =======
  2139. #u2363_text {
  2140. >>>>>>> 0601optimize
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:2px;
  2144. top:10px;
  2145. width:204px;
  2146. word-wrap:break-word;
  2147. }
  2148. <<<<<<< HEAD
  2149. #u2363 {
  2150. =======
  2151. #u2364 {
  2152. >>>>>>> 0601optimize
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:0px;
  2158. height:0px;
  2159. }
  2160. <<<<<<< HEAD
  2161. #u2364_img {
  2162. =======
  2163. #u2365_img {
  2164. >>>>>>> 0601optimize
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:-4px;
  2168. top:-4px;
  2169. width:40px;
  2170. height:40px;
  2171. }
  2172. <<<<<<< HEAD
  2173. #u2364 {
  2174. =======
  2175. #u2365 {
  2176. >>>>>>> 0601optimize
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:1186px;
  2180. top:555px;
  2181. width:30px;
  2182. height:30px;
  2183. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2184. font-weight:700;
  2185. font-style:normal;
  2186. font-size:18px;
  2187. color:#1E1E1E;
  2188. }
  2189. <<<<<<< HEAD
  2190. #u2364_text {
  2191. =======
  2192. #u2365_text {
  2193. >>>>>>> 0601optimize
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:2px;
  2197. top:4px;
  2198. width:26px;
  2199. word-wrap:break-word;
  2200. }
  2201. <<<<<<< HEAD
  2202. #u2365_div {
  2203. =======
  2204. #u2366_div {
  2205. >>>>>>> 0601optimize
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:74px;
  2211. height:19px;
  2212. background:inherit;
  2213. background-color:rgba(255, 255, 255, 0);
  2214. border:none;
  2215. border-radius:0px;
  2216. -moz-box-shadow:none;
  2217. -webkit-box-shadow:none;
  2218. box-shadow:none;
  2219. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2220. font-weight:700;
  2221. font-style:normal;
  2222. font-size:16px;
  2223. }
  2224. <<<<<<< HEAD
  2225. #u2365 {
  2226. =======
  2227. #u2366 {
  2228. >>>>>>> 0601optimize
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:1226px;
  2232. top:562px;
  2233. width:74px;
  2234. height:19px;
  2235. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2236. font-weight:700;
  2237. font-style:normal;
  2238. font-size:16px;
  2239. }
  2240. <<<<<<< HEAD
  2241. #u2365_text {
  2242. =======
  2243. #u2366_text {
  2244. >>>>>>> 0601optimize
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:74px;
  2250. word-wrap:break-word;
  2251. }
  2252. <<<<<<< HEAD
  2253. #u2366_div {
  2254. =======
  2255. #u2367_div {
  2256. >>>>>>> 0601optimize
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:352px;
  2262. height:22px;
  2263. background:inherit;
  2264. background-color:rgba(255, 255, 255, 0);
  2265. border:none;
  2266. border-radius:0px;
  2267. -moz-box-shadow:none;
  2268. -webkit-box-shadow:none;
  2269. box-shadow:none;
  2270. line-height:22px;
  2271. }
  2272. <<<<<<< HEAD
  2273. #u2366 {
  2274. =======
  2275. #u2367 {
  2276. >>>>>>> 0601optimize
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:1226px;
  2280. top:600px;
  2281. width:352px;
  2282. height:22px;
  2283. line-height:22px;
  2284. }
  2285. <<<<<<< HEAD
  2286. #u2366_text {
  2287. =======
  2288. #u2367_text {
  2289. >>>>>>> 0601optimize
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:352px;
  2295. word-wrap:break-word;
  2296. }
  2297. <<<<<<< HEAD
  2298. #u2367_img {
  2299. =======
  2300. #u2368_img {
  2301. >>>>>>> 0601optimize
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:1155px;
  2307. height:583px;
  2308. }
  2309. <<<<<<< HEAD
  2310. #u2367 {
  2311. =======
  2312. #u2368 {
  2313. >>>>>>> 0601optimize
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:21px;
  2317. top:2191px;
  2318. width:1155px;
  2319. height:583px;
  2320. }
  2321. <<<<<<< HEAD
  2322. #u2367_text {
  2323. =======
  2324. #u2368_text {
  2325. >>>>>>> 0601optimize
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:0px;
  2331. visibility:hidden;
  2332. word-wrap:break-word;
  2333. }
  2334. <<<<<<< HEAD
  2335. #u2368_img {
  2336. =======
  2337. #u2369_img {
  2338. >>>>>>> 0601optimize
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:-4px;
  2342. top:-4px;
  2343. width:30px;
  2344. height:30px;
  2345. }
  2346. <<<<<<< HEAD
  2347. #u2368 {
  2348. =======
  2349. #u2369 {
  2350. >>>>>>> 0601optimize
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:1011px;
  2354. top:2437px;
  2355. width:20px;
  2356. height:20px;
  2357. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2358. font-weight:700;
  2359. font-style:normal;
  2360. font-size:14px;
  2361. color:#1E1E1E;
  2362. }
  2363. <<<<<<< HEAD
  2364. #u2368_text {
  2365. =======
  2366. #u2369_text {
  2367. >>>>>>> 0601optimize
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:2px;
  2371. top:2px;
  2372. width:16px;
  2373. word-wrap:break-word;
  2374. }
  2375. <<<<<<< HEAD
  2376. #u2369_img {
  2377. =======
  2378. #u2370_img {
  2379. >>>>>>> 0601optimize
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:-4px;
  2383. top:-4px;
  2384. width:30px;
  2385. height:30px;
  2386. }
  2387. <<<<<<< HEAD
  2388. #u2369 {
  2389. =======
  2390. #u2370 {
  2391. >>>>>>> 0601optimize
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:1084px;
  2395. top:2437px;
  2396. width:20px;
  2397. height:20px;
  2398. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2399. font-weight:700;
  2400. font-style:normal;
  2401. font-size:14px;
  2402. color:#1E1E1E;
  2403. }
  2404. <<<<<<< HEAD
  2405. #u2369_text {
  2406. =======
  2407. #u2370_text {
  2408. >>>>>>> 0601optimize
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:2px;
  2412. top:2px;
  2413. width:16px;
  2414. word-wrap:break-word;
  2415. }
  2416. <<<<<<< HEAD
  2417. #u2370 {
  2418. =======
  2419. #u2371 {
  2420. >>>>>>> 0601optimize
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:0px;
  2426. height:0px;
  2427. }
  2428. <<<<<<< HEAD
  2429. #u2371_img {
  2430. =======
  2431. #u2372_img {
  2432. >>>>>>> 0601optimize
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:-4px;
  2436. top:-4px;
  2437. width:40px;
  2438. height:40px;
  2439. }
  2440. <<<<<<< HEAD
  2441. #u2371 {
  2442. =======
  2443. #u2372 {
  2444. >>>>>>> 0601optimize
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:1186px;
  2448. top:2561px;
  2449. width:30px;
  2450. height:30px;
  2451. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2452. font-weight:700;
  2453. font-style:normal;
  2454. font-size:18px;
  2455. color:#1E1E1E;
  2456. }
  2457. <<<<<<< HEAD
  2458. #u2371_text {
  2459. =======
  2460. #u2372_text {
  2461. >>>>>>> 0601optimize
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:2px;
  2465. top:4px;
  2466. width:26px;
  2467. word-wrap:break-word;
  2468. }
  2469. <<<<<<< HEAD
  2470. #u2372_div {
  2471. =======
  2472. #u2373_div {
  2473. >>>>>>> 0601optimize
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:158px;
  2479. height:19px;
  2480. background:inherit;
  2481. background-color:rgba(255, 255, 255, 0);
  2482. border:none;
  2483. border-radius:0px;
  2484. -moz-box-shadow:none;
  2485. -webkit-box-shadow:none;
  2486. box-shadow:none;
  2487. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2488. font-weight:700;
  2489. font-style:normal;
  2490. font-size:16px;
  2491. color:#FF0000;
  2492. }
  2493. <<<<<<< HEAD
  2494. #u2372 {
  2495. =======
  2496. #u2373 {
  2497. >>>>>>> 0601optimize
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:1226px;
  2501. top:2568px;
  2502. width:158px;
  2503. height:19px;
  2504. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2505. font-weight:700;
  2506. font-style:normal;
  2507. font-size:16px;
  2508. color:#FF0000;
  2509. }
  2510. <<<<<<< HEAD
  2511. #u2372_text {
  2512. =======
  2513. #u2373_text {
  2514. >>>>>>> 0601optimize
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:158px;
  2520. word-wrap:break-word;
  2521. }
  2522. <<<<<<< HEAD
  2523. #u2373_div {
  2524. =======
  2525. #u2374_div {
  2526. >>>>>>> 0601optimize
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:352px;
  2532. height:22px;
  2533. background:inherit;
  2534. background-color:rgba(255, 255, 255, 0);
  2535. border:none;
  2536. border-radius:0px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. line-height:22px;
  2541. }
  2542. <<<<<<< HEAD
  2543. #u2373 {
  2544. =======
  2545. #u2374 {
  2546. >>>>>>> 0601optimize
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:1226px;
  2550. top:2606px;
  2551. width:352px;
  2552. height:22px;
  2553. line-height:22px;
  2554. }
  2555. <<<<<<< HEAD
  2556. #u2373_text {
  2557. =======
  2558. #u2374_text {
  2559. >>>>>>> 0601optimize
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:352px;
  2565. word-wrap:break-word;
  2566. }
  2567. <<<<<<< HEAD
  2568. #u2374 {
  2569. =======
  2570. #u2375 {
  2571. >>>>>>> 0601optimize
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:1235px;
  2575. top:2566px;
  2576. width:87px;
  2577. height:23px;
  2578. overflow:hidden;
  2579. background-image:url('../../resources/images/transparent.gif');
  2580. }
  2581. <<<<<<< HEAD
  2582. #u2375_img {
  2583. =======
  2584. #u2376_img {
  2585. >>>>>>> 0601optimize
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:245px;
  2591. height:91px;
  2592. }
  2593. <<<<<<< HEAD
  2594. #u2375 {
  2595. =======
  2596. #u2376 {
  2597. >>>>>>> 0601optimize
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:1235px;
  2601. top:2470px;
  2602. width:245px;
  2603. height:91px;
  2604. color:#000000;
  2605. text-align:left;
  2606. line-height:18px;
  2607. }
  2608. <<<<<<< HEAD
  2609. #u2375_text {
  2610. =======
  2611. #u2376_text {
  2612. >>>>>>> 0601optimize
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:2px;
  2616. top:18px;
  2617. width:241px;
  2618. word-wrap:break-word;
  2619. }
  2620. <<<<<<< HEAD
  2621. #u2376 {
  2622. =======
  2623. #u2377 {
  2624. >>>>>>> 0601optimize
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:0px;
  2630. height:0px;
  2631. }
  2632. <<<<<<< HEAD
  2633. #u2377_img {
  2634. =======
  2635. #u2378_img {
  2636. >>>>>>> 0601optimize
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:-4px;
  2640. top:-4px;
  2641. width:40px;
  2642. height:40px;
  2643. }
  2644. <<<<<<< HEAD
  2645. #u2377 {
  2646. =======
  2647. #u2378 {
  2648. >>>>>>> 0601optimize
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:1186px;
  2652. top:2190px;
  2653. width:30px;
  2654. height:30px;
  2655. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2656. font-weight:700;
  2657. font-style:normal;
  2658. font-size:18px;
  2659. color:#1E1E1E;
  2660. }
  2661. <<<<<<< HEAD
  2662. #u2377_text {
  2663. =======
  2664. #u2378_text {
  2665. >>>>>>> 0601optimize
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:2px;
  2669. top:4px;
  2670. width:26px;
  2671. word-wrap:break-word;
  2672. }
  2673. <<<<<<< HEAD
  2674. #u2378_div {
  2675. =======
  2676. #u2379_div {
  2677. >>>>>>> 0601optimize
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:104px;
  2683. height:19px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border:none;
  2687. border-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2692. font-weight:700;
  2693. font-style:normal;
  2694. font-size:16px;
  2695. color:#FF0000;
  2696. }
  2697. <<<<<<< HEAD
  2698. #u2378 {
  2699. =======
  2700. #u2379 {
  2701. >>>>>>> 0601optimize
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:1226px;
  2705. top:2197px;
  2706. width:104px;
  2707. height:19px;
  2708. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2709. font-weight:700;
  2710. font-style:normal;
  2711. font-size:16px;
  2712. color:#FF0000;
  2713. }
  2714. <<<<<<< HEAD
  2715. #u2378_text {
  2716. =======
  2717. #u2379_text {
  2718. >>>>>>> 0601optimize
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:104px;
  2724. word-wrap:break-word;
  2725. }
  2726. <<<<<<< HEAD
  2727. #u2379_div {
  2728. =======
  2729. #u2380_div {
  2730. >>>>>>> 0601optimize
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:352px;
  2736. height:110px;
  2737. background:inherit;
  2738. background-color:rgba(255, 255, 255, 0);
  2739. border:none;
  2740. border-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. line-height:22px;
  2745. }
  2746. <<<<<<< HEAD
  2747. #u2379 {
  2748. =======
  2749. #u2380 {
  2750. >>>>>>> 0601optimize
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:1226px;
  2754. top:2235px;
  2755. width:352px;
  2756. height:110px;
  2757. line-height:22px;
  2758. }
  2759. <<<<<<< HEAD
  2760. #u2379_text {
  2761. =======
  2762. #u2380_text {
  2763. >>>>>>> 0601optimize
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:352px;
  2769. word-wrap:break-word;
  2770. }
  2771. <<<<<<< HEAD
  2772. #u2380_img {
  2773. =======
  2774. #u2381_img {
  2775. >>>>>>> 0601optimize
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:182px;
  2781. height:70px;
  2782. }
  2783. <<<<<<< HEAD
  2784. #u2380 {
  2785. =======
  2786. #u2381 {
  2787. >>>>>>> 0601optimize
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:1371px;
  2791. top:2158px;
  2792. width:182px;
  2793. height:70px;
  2794. color:#000000;
  2795. text-align:left;
  2796. line-height:18px;
  2797. }
  2798. <<<<<<< HEAD
  2799. #u2380_text {
  2800. =======
  2801. #u2381_text {
  2802. >>>>>>> 0601optimize
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:2px;
  2806. top:17px;
  2807. width:178px;
  2808. word-wrap:break-word;
  2809. }
  2810. <<<<<<< HEAD
  2811. #u2381 {
  2812. =======
  2813. #u2382 {
  2814. >>>>>>> 0601optimize
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:1226px;
  2818. top:2257px;
  2819. width:15px;
  2820. height:23px;
  2821. overflow:hidden;
  2822. background-image:url('../../resources/images/transparent.gif');
  2823. }
  2824. <<<<<<< HEAD
  2825. #u2382 {
  2826. =======
  2827. #u2383 {
  2828. >>>>>>> 0601optimize
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:0px;
  2834. height:0px;
  2835. }
  2836. <<<<<<< HEAD
  2837. #u2383_img {
  2838. =======
  2839. #u2384_img {
  2840. >>>>>>> 0601optimize
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:-4px;
  2844. top:-4px;
  2845. width:40px;
  2846. height:40px;
  2847. }
  2848. <<<<<<< HEAD
  2849. #u2383 {
  2850. =======
  2851. #u2384 {
  2852. >>>>>>> 0601optimize
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:1186px;
  2856. top:2341px;
  2857. width:30px;
  2858. height:30px;
  2859. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2860. font-weight:700;
  2861. font-style:normal;
  2862. font-size:18px;
  2863. color:#1E1E1E;
  2864. }
  2865. <<<<<<< HEAD
  2866. #u2383_text {
  2867. =======
  2868. #u2384_text {
  2869. >>>>>>> 0601optimize
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:2px;
  2873. top:4px;
  2874. width:26px;
  2875. word-wrap:break-word;
  2876. }
  2877. <<<<<<< HEAD
  2878. #u2384_div {
  2879. =======
  2880. #u2385_div {
  2881. >>>>>>> 0601optimize
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:119px;
  2887. height:19px;
  2888. background:inherit;
  2889. background-color:rgba(255, 255, 255, 0);
  2890. border:none;
  2891. border-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2896. font-weight:700;
  2897. font-style:normal;
  2898. font-size:16px;
  2899. }
  2900. <<<<<<< HEAD
  2901. #u2384 {
  2902. =======
  2903. #u2385 {
  2904. >>>>>>> 0601optimize
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:1226px;
  2908. top:2348px;
  2909. width:119px;
  2910. height:19px;
  2911. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2912. font-weight:700;
  2913. font-style:normal;
  2914. font-size:16px;
  2915. }
  2916. <<<<<<< HEAD
  2917. #u2384_text {
  2918. =======
  2919. #u2385_text {
  2920. >>>>>>> 0601optimize
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:119px;
  2926. word-wrap:break-word;
  2927. }
  2928. <<<<<<< HEAD
  2929. #u2385_div {
  2930. =======
  2931. #u2386_div {
  2932. >>>>>>> 0601optimize
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:352px;
  2938. height:22px;
  2939. background:inherit;
  2940. background-color:rgba(255, 255, 255, 0);
  2941. border:none;
  2942. border-radius:0px;
  2943. -moz-box-shadow:none;
  2944. -webkit-box-shadow:none;
  2945. box-shadow:none;
  2946. line-height:22px;
  2947. }
  2948. <<<<<<< HEAD
  2949. #u2385 {
  2950. =======
  2951. #u2386 {
  2952. >>>>>>> 0601optimize
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:1226px;
  2956. top:2386px;
  2957. width:352px;
  2958. height:22px;
  2959. line-height:22px;
  2960. }
  2961. <<<<<<< HEAD
  2962. #u2385_text {
  2963. =======
  2964. #u2386_text {
  2965. >>>>>>> 0601optimize
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:352px;
  2971. word-wrap:break-word;
  2972. }
  2973. <<<<<<< HEAD
  2974. #u2386 {
  2975. =======
  2976. #u2387 {
  2977. >>>>>>> 0601optimize
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:0px;
  2983. height:0px;
  2984. }
  2985. <<<<<<< HEAD
  2986. #u2387_img {
  2987. =======
  2988. #u2388_img {
  2989. >>>>>>> 0601optimize
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:-4px;
  2993. top:-4px;
  2994. width:40px;
  2995. height:40px;
  2996. }
  2997. <<<<<<< HEAD
  2998. #u2387 {
  2999. =======
  3000. #u2388 {
  3001. >>>>>>> 0601optimize
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:1186px;
  3005. top:2408px;
  3006. width:30px;
  3007. height:30px;
  3008. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3009. font-weight:700;
  3010. font-style:normal;
  3011. font-size:18px;
  3012. color:#1E1E1E;
  3013. }
  3014. <<<<<<< HEAD
  3015. #u2387_text {
  3016. =======
  3017. #u2388_text {
  3018. >>>>>>> 0601optimize
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:2px;
  3022. top:4px;
  3023. width:26px;
  3024. word-wrap:break-word;
  3025. }
  3026. <<<<<<< HEAD
  3027. #u2388_div {
  3028. =======
  3029. #u2389_div {
  3030. >>>>>>> 0601optimize
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:158px;
  3036. height:19px;
  3037. background:inherit;
  3038. background-color:rgba(255, 255, 255, 0);
  3039. border:none;
  3040. border-radius:0px;
  3041. -moz-box-shadow:none;
  3042. -webkit-box-shadow:none;
  3043. box-shadow:none;
  3044. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3045. font-weight:700;
  3046. font-style:normal;
  3047. font-size:16px;
  3048. }
  3049. <<<<<<< HEAD
  3050. #u2388 {
  3051. =======
  3052. #u2389 {
  3053. >>>>>>> 0601optimize
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:1226px;
  3057. top:2415px;
  3058. width:158px;
  3059. height:19px;
  3060. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3061. font-weight:700;
  3062. font-style:normal;
  3063. font-size:16px;
  3064. }
  3065. <<<<<<< HEAD
  3066. #u2388_text {
  3067. =======
  3068. #u2389_text {
  3069. >>>>>>> 0601optimize
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:158px;
  3075. word-wrap:break-word;
  3076. }
  3077. <<<<<<< HEAD
  3078. #u2389_div {
  3079. =======
  3080. #u2390_div {
  3081. >>>>>>> 0601optimize
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:352px;
  3087. height:22px;
  3088. background:inherit;
  3089. background-color:rgba(255, 255, 255, 0);
  3090. border:none;
  3091. border-radius:0px;
  3092. -moz-box-shadow:none;
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none;
  3095. line-height:22px;
  3096. }
  3097. <<<<<<< HEAD
  3098. #u2389 {
  3099. =======
  3100. #u2390 {
  3101. >>>>>>> 0601optimize
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:1226px;
  3105. top:2453px;
  3106. width:352px;
  3107. height:22px;
  3108. line-height:22px;
  3109. }
  3110. <<<<<<< HEAD
  3111. #u2389_text {
  3112. =======
  3113. #u2390_text {
  3114. >>>>>>> 0601optimize
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:352px;
  3120. word-wrap:break-word;
  3121. }
  3122. <<<<<<< HEAD
  3123. #u2390_img {
  3124. =======
  3125. #u2391_img {
  3126. >>>>>>> 0601optimize
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:-4px;
  3130. top:-4px;
  3131. width:30px;
  3132. height:30px;
  3133. }
  3134. <<<<<<< HEAD
  3135. #u2390 {
  3136. =======
  3137. #u2391 {
  3138. >>>>>>> 0601optimize
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:263px;
  3142. top:2345px;
  3143. width:20px;
  3144. height:20px;
  3145. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3146. font-weight:700;
  3147. font-style:normal;
  3148. font-size:14px;
  3149. color:#1E1E1E;
  3150. }
  3151. <<<<<<< HEAD
  3152. #u2390_text {
  3153. =======
  3154. #u2391_text {
  3155. >>>>>>> 0601optimize
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:2px;
  3159. top:2px;
  3160. width:16px;
  3161. word-wrap:break-word;
  3162. }
  3163. <<<<<<< HEAD
  3164. #u2391_img {
  3165. =======
  3166. #u2392_img {
  3167. >>>>>>> 0601optimize
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:-4px;
  3171. top:-4px;
  3172. width:30px;
  3173. height:30px;
  3174. }
  3175. <<<<<<< HEAD
  3176. #u2391 {
  3177. =======
  3178. #u2392 {
  3179. >>>>>>> 0601optimize
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:336px;
  3183. top:2345px;
  3184. width:20px;
  3185. height:20px;
  3186. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3187. font-weight:700;
  3188. font-style:normal;
  3189. font-size:14px;
  3190. color:#1E1E1E;
  3191. }
  3192. <<<<<<< HEAD
  3193. #u2391_text {
  3194. =======
  3195. #u2392_text {
  3196. >>>>>>> 0601optimize
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:2px;
  3200. top:2px;
  3201. width:16px;
  3202. word-wrap:break-word;
  3203. }
  3204. <<<<<<< HEAD
  3205. #u2392_img {
  3206. =======
  3207. #u2393_img {
  3208. >>>>>>> 0601optimize
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:-4px;
  3212. top:-4px;
  3213. width:30px;
  3214. height:30px;
  3215. }
  3216. <<<<<<< HEAD
  3217. #u2392 {
  3218. =======
  3219. #u2393 {
  3220. >>>>>>> 0601optimize
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:409px;
  3224. top:2345px;
  3225. width:20px;
  3226. height:20px;
  3227. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3228. font-weight:700;
  3229. font-style:normal;
  3230. font-size:14px;
  3231. color:#1E1E1E;
  3232. }
  3233. <<<<<<< HEAD
  3234. #u2392_text {
  3235. =======
  3236. #u2393_text {
  3237. >>>>>>> 0601optimize
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:2px;
  3241. top:2px;
  3242. width:16px;
  3243. word-wrap:break-word;
  3244. }
  3245. <<<<<<< HEAD
  3246. #u2393 {
  3247. =======
  3248. #u2394 {
  3249. >>>>>>> 0601optimize
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:1538px;
  3253. top:2234px;
  3254. width:40px;
  3255. height:23px;
  3256. overflow:hidden;
  3257. background-image:url('../../resources/images/transparent.gif');
  3258. }
  3259. <<<<<<< HEAD
  3260. #u2394 {
  3261. =======
  3262. #u2395 {
  3263. >>>>>>> 0601optimize
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:0px;
  3269. height:0px;
  3270. }
  3271. <<<<<<< HEAD
  3272. #u2395_img {
  3273. =======
  3274. #u2396_img {
  3275. >>>>>>> 0601optimize
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:-4px;
  3279. top:-4px;
  3280. width:40px;
  3281. height:40px;
  3282. }
  3283. <<<<<<< HEAD
  3284. #u2395 {
  3285. =======
  3286. #u2396 {
  3287. >>>>>>> 0601optimize
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:1186px;
  3291. top:2472px;
  3292. width:30px;
  3293. height:30px;
  3294. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3295. font-weight:700;
  3296. font-style:normal;
  3297. font-size:18px;
  3298. color:#1E1E1E;
  3299. }
  3300. <<<<<<< HEAD
  3301. #u2395_text {
  3302. =======
  3303. #u2396_text {
  3304. >>>>>>> 0601optimize
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:2px;
  3308. top:4px;
  3309. width:26px;
  3310. word-wrap:break-word;
  3311. }
  3312. <<<<<<< HEAD
  3313. #u2396_div {
  3314. =======
  3315. #u2397_div {
  3316. >>>>>>> 0601optimize
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:68px;
  3322. height:19px;
  3323. background:inherit;
  3324. background-color:rgba(255, 255, 255, 0);
  3325. border:none;
  3326. border-radius:0px;
  3327. -moz-box-shadow:none;
  3328. -webkit-box-shadow:none;
  3329. box-shadow:none;
  3330. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3331. font-weight:700;
  3332. font-style:normal;
  3333. font-size:16px;
  3334. color:#FF0000;
  3335. }
  3336. <<<<<<< HEAD
  3337. #u2396 {
  3338. =======
  3339. #u2397 {
  3340. >>>>>>> 0601optimize
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:1226px;
  3344. top:2479px;
  3345. width:68px;
  3346. height:19px;
  3347. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3348. font-weight:700;
  3349. font-style:normal;
  3350. font-size:16px;
  3351. color:#FF0000;
  3352. }
  3353. <<<<<<< HEAD
  3354. #u2396_text {
  3355. =======
  3356. #u2397_text {
  3357. >>>>>>> 0601optimize
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:68px;
  3363. word-wrap:break-word;
  3364. }
  3365. <<<<<<< HEAD
  3366. #u2397_div {
  3367. =======
  3368. #u2398_div {
  3369. >>>>>>> 0601optimize
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:352px;
  3375. height:44px;
  3376. background:inherit;
  3377. background-color:rgba(255, 255, 255, 0);
  3378. border:none;
  3379. border-radius:0px;
  3380. -moz-box-shadow:none;
  3381. -webkit-box-shadow:none;
  3382. box-shadow:none;
  3383. line-height:22px;
  3384. }
  3385. <<<<<<< HEAD
  3386. #u2397 {
  3387. =======
  3388. #u2398 {
  3389. >>>>>>> 0601optimize
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:1226px;
  3393. top:2517px;
  3394. width:352px;
  3395. height:44px;
  3396. line-height:22px;
  3397. }
  3398. <<<<<<< HEAD
  3399. #u2397_text {
  3400. =======
  3401. #u2398_text {
  3402. >>>>>>> 0601optimize
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:352px;
  3408. word-wrap:break-word;
  3409. }
  3410. <<<<<<< HEAD
  3411. #u2398 {
  3412. =======
  3413. #u2399 {
  3414. >>>>>>> 0601optimize
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:1233px;
  3418. top:2475px;
  3419. width:63px;
  3420. height:23px;
  3421. overflow:hidden;
  3422. background-image:url('../../resources/images/transparent.gif');
  3423. }
  3424. <<<<<<< HEAD
  3425. #u2399_img {
  3426. =======
  3427. #u2400_img {
  3428. >>>>>>> 0601optimize
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:182px;
  3434. height:70px;
  3435. }
  3436. <<<<<<< HEAD
  3437. #u2399 {
  3438. =======
  3439. #u2400 {
  3440. >>>>>>> 0601optimize
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:1233px;
  3444. top:2398px;
  3445. width:182px;
  3446. height:70px;
  3447. color:#000000;
  3448. text-align:left;
  3449. line-height:18px;
  3450. }
  3451. <<<<<<< HEAD
  3452. #u2399_text {
  3453. =======
  3454. #u2400_text {
  3455. >>>>>>> 0601optimize
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:2px;
  3459. top:17px;
  3460. width:178px;
  3461. word-wrap:break-word;
  3462. }
  3463. <<<<<<< HEAD
  3464. #u2400 {
  3465. =======
  3466. #u2401 {
  3467. >>>>>>> 0601optimize
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:1233px;
  3471. top:2193px;
  3472. width:87px;
  3473. height:23px;
  3474. overflow:hidden;
  3475. background-image:url('../../resources/images/transparent.gif');
  3476. }
  3477. <<<<<<< HEAD
  3478. #u2401_img {
  3479. =======
  3480. #u2402_img {
  3481. >>>>>>> 0601optimize
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:182px;
  3487. height:70px;
  3488. }
  3489. <<<<<<< HEAD
  3490. #u2401 {
  3491. =======
  3492. #u2402 {
  3493. >>>>>>> 0601optimize
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:1233px;
  3497. top:2116px;
  3498. width:182px;
  3499. height:70px;
  3500. color:#000000;
  3501. text-align:left;
  3502. line-height:18px;
  3503. }
  3504. <<<<<<< HEAD
  3505. #u2401_text {
  3506. =======
  3507. #u2402_text {
  3508. >>>>>>> 0601optimize
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:2px;
  3512. top:17px;
  3513. width:178px;
  3514. word-wrap:break-word;
  3515. }
  3516. <<<<<<< HEAD
  3517. #u2402 {
  3518. =======
  3519. #u2403 {
  3520. >>>>>>> 0601optimize
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:1231px;
  3524. top:1642px;
  3525. width:102px;
  3526. height:23px;
  3527. overflow:hidden;
  3528. background-image:url('../../resources/images/transparent.gif');
  3529. }
  3530. <<<<<<< HEAD
  3531. #u2403_img {
  3532. =======
  3533. #u2404_img {
  3534. >>>>>>> 0601optimize
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:245px;
  3540. height:88px;
  3541. }
  3542. <<<<<<< HEAD
  3543. #u2403 {
  3544. =======
  3545. #u2404 {
  3546. >>>>>>> 0601optimize
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:1226px;
  3550. top:1534px;
  3551. width:245px;
  3552. height:88px;
  3553. text-align:left;
  3554. }
  3555. <<<<<<< HEAD
  3556. #u2403_text {
  3557. =======
  3558. #u2404_text {
  3559. >>>>>>> 0601optimize
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:2px;
  3563. top:24px;
  3564. width:241px;
  3565. word-wrap:break-word;
  3566. }
  3567. <<<<<<< HEAD
  3568. #u2404_div {
  3569. =======
  3570. #u2405_div {
  3571. >>>>>>> 0601optimize
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:1px;
  3577. height:22px;
  3578. background:inherit;
  3579. background-color:rgba(255, 255, 255, 0);
  3580. border:none;
  3581. border-radius:0px;
  3582. -moz-box-shadow:none;
  3583. -webkit-box-shadow:none;
  3584. box-shadow:none;
  3585. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3586. font-weight:700;
  3587. font-style:normal;
  3588. font-size:18px;
  3589. }
  3590. <<<<<<< HEAD
  3591. #u2404 {
  3592. =======
  3593. #u2405 {
  3594. >>>>>>> 0601optimize
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:21px;
  3598. top:2159px;
  3599. width:1px;
  3600. height:22px;
  3601. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3602. font-weight:700;
  3603. font-style:normal;
  3604. font-size:18px;
  3605. }
  3606. <<<<<<< HEAD
  3607. #u2404_text {
  3608. =======
  3609. #u2405_text {
  3610. >>>>>>> 0601optimize
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:0px;
  3616. visibility:hidden;
  3617. white-space:nowrap;
  3618. }