styles.css 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1579px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. <<<<<<< HEAD
  16. #u596_img {
  17. =======
  18. #u597_img {
  19. >>>>>>> 0601optimize
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1155px;
  25. height:583px;
  26. }
  27. <<<<<<< HEAD
  28. #u596 {
  29. =======
  30. #u597 {
  31. >>>>>>> 0601optimize
  32. border-width:0px;
  33. position:absolute;
  34. left:22px;
  35. top:276px;
  36. width:1155px;
  37. height:583px;
  38. }
  39. <<<<<<< HEAD
  40. #u596_text {
  41. =======
  42. #u597_text {
  43. >>>>>>> 0601optimize
  44. border-width:0px;
  45. position:absolute;
  46. left:0px;
  47. top:0px;
  48. width:0px;
  49. visibility:hidden;
  50. word-wrap:break-word;
  51. }
  52. <<<<<<< HEAD
  53. #u597 {
  54. =======
  55. #u598 {
  56. >>>>>>> 0601optimize
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:0px;
  62. height:0px;
  63. }
  64. <<<<<<< HEAD
  65. #u598_img {
  66. =======
  67. #u599_img {
  68. >>>>>>> 0601optimize
  69. border-width:0px;
  70. position:absolute;
  71. left:0px;
  72. top:0px;
  73. width:8px;
  74. height:28px;
  75. }
  76. <<<<<<< HEAD
  77. #u598 {
  78. =======
  79. #u599 {
  80. >>>>>>> 0601optimize
  81. border-width:0px;
  82. position:absolute;
  83. left:8px;
  84. top:15px;
  85. width:8px;
  86. height:28px;
  87. }
  88. <<<<<<< HEAD
  89. #u598_text {
  90. =======
  91. #u599_text {
  92. >>>>>>> 0601optimize
  93. border-width:0px;
  94. position:absolute;
  95. left:0px;
  96. top:0px;
  97. width:0px;
  98. visibility:hidden;
  99. word-wrap:break-word;
  100. }
  101. <<<<<<< HEAD
  102. #u599_div {
  103. =======
  104. #u600_div {
  105. >>>>>>> 0601optimize
  106. border-width:0px;
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:97px;
  111. height:28px;
  112. background:inherit;
  113. background-color:rgba(255, 255, 255, 0);
  114. border:none;
  115. border-radius:0px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  120. font-weight:700;
  121. font-style:normal;
  122. }
  123. <<<<<<< HEAD
  124. #u599 {
  125. =======
  126. #u600 {
  127. >>>>>>> 0601optimize
  128. border-width:0px;
  129. position:absolute;
  130. left:22px;
  131. top:15px;
  132. width:97px;
  133. height:28px;
  134. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  135. font-weight:700;
  136. font-style:normal;
  137. }
  138. <<<<<<< HEAD
  139. #u599_text {
  140. =======
  141. #u600_text {
  142. >>>>>>> 0601optimize
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:97px;
  148. white-space:nowrap;
  149. }
  150. <<<<<<< HEAD
  151. #u600_div {
  152. =======
  153. #u601_div {
  154. >>>>>>> 0601optimize
  155. border-width:0px;
  156. position:absolute;
  157. left:0px;
  158. top:0px;
  159. width:109px;
  160. height:22px;
  161. background:inherit;
  162. background-color:rgba(255, 255, 255, 0);
  163. border:none;
  164. border-radius:0px;
  165. -moz-box-shadow:none;
  166. -webkit-box-shadow:none;
  167. box-shadow:none;
  168. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  169. font-weight:700;
  170. font-style:normal;
  171. font-size:18px;
  172. }
  173. <<<<<<< HEAD
  174. #u600 {
  175. =======
  176. #u601 {
  177. >>>>>>> 0601optimize
  178. border-width:0px;
  179. position:absolute;
  180. left:22px;
  181. top:71px;
  182. width:109px;
  183. height:22px;
  184. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  185. font-weight:700;
  186. font-style:normal;
  187. font-size:18px;
  188. }
  189. <<<<<<< HEAD
  190. #u600_text {
  191. =======
  192. #u601_text {
  193. >>>>>>> 0601optimize
  194. border-width:0px;
  195. position:absolute;
  196. left:0px;
  197. top:0px;
  198. width:109px;
  199. white-space:nowrap;
  200. }
  201. <<<<<<< HEAD
  202. #u601_div {
  203. =======
  204. #u602_div {
  205. >>>>>>> 0601optimize
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:0px;
  210. width:192px;
  211. height:22px;
  212. background:inherit;
  213. background-color:rgba(255, 255, 255, 0);
  214. border:none;
  215. border-radius:0px;
  216. -moz-box-shadow:none;
  217. -webkit-box-shadow:none;
  218. box-shadow:none;
  219. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  220. font-weight:700;
  221. font-style:normal;
  222. font-size:18px;
  223. }
  224. <<<<<<< HEAD
  225. #u601 {
  226. =======
  227. #u602 {
  228. >>>>>>> 0601optimize
  229. border-width:0px;
  230. position:absolute;
  231. left:22px;
  232. top:198px;
  233. width:192px;
  234. height:22px;
  235. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  236. font-weight:700;
  237. font-style:normal;
  238. font-size:18px;
  239. }
  240. <<<<<<< HEAD
  241. #u601_text {
  242. =======
  243. #u602_text {
  244. >>>>>>> 0601optimize
  245. border-width:0px;
  246. position:absolute;
  247. left:0px;
  248. top:0px;
  249. width:192px;
  250. white-space:nowrap;
  251. }
  252. <<<<<<< HEAD
  253. #u602 {
  254. =======
  255. #u603 {
  256. >>>>>>> 0601optimize
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:0px;
  262. height:0px;
  263. }
  264. <<<<<<< HEAD
  265. #u603_img {
  266. =======
  267. #u604_img {
  268. >>>>>>> 0601optimize
  269. border-width:0px;
  270. position:absolute;
  271. left:-4px;
  272. top:-4px;
  273. width:40px;
  274. height:40px;
  275. }
  276. <<<<<<< HEAD
  277. #u603 {
  278. =======
  279. #u604 {
  280. >>>>>>> 0601optimize
  281. border-width:0px;
  282. position:absolute;
  283. left:1187px;
  284. top:277px;
  285. width:30px;
  286. height:30px;
  287. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  288. font-weight:700;
  289. font-style:normal;
  290. font-size:18px;
  291. color:#1E1E1E;
  292. }
  293. <<<<<<< HEAD
  294. #u603_text {
  295. =======
  296. #u604_text {
  297. >>>>>>> 0601optimize
  298. border-width:0px;
  299. position:absolute;
  300. left:2px;
  301. top:4px;
  302. width:26px;
  303. word-wrap:break-word;
  304. }
  305. <<<<<<< HEAD
  306. #u604_div {
  307. =======
  308. #u605_div {
  309. >>>>>>> 0601optimize
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:131px;
  315. height:19px;
  316. background:inherit;
  317. background-color:rgba(255, 255, 255, 0);
  318. border:none;
  319. border-radius:0px;
  320. -moz-box-shadow:none;
  321. -webkit-box-shadow:none;
  322. box-shadow:none;
  323. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  324. font-weight:700;
  325. font-style:normal;
  326. font-size:16px;
  327. }
  328. <<<<<<< HEAD
  329. #u604 {
  330. =======
  331. #u605 {
  332. >>>>>>> 0601optimize
  333. border-width:0px;
  334. position:absolute;
  335. left:1227px;
  336. top:284px;
  337. width:131px;
  338. height:19px;
  339. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  340. font-weight:700;
  341. font-style:normal;
  342. font-size:16px;
  343. }
  344. <<<<<<< HEAD
  345. #u604_text {
  346. =======
  347. #u605_text {
  348. >>>>>>> 0601optimize
  349. border-width:0px;
  350. position:absolute;
  351. left:0px;
  352. top:0px;
  353. width:131px;
  354. word-wrap:break-word;
  355. }
  356. <<<<<<< HEAD
  357. #u605_div {
  358. =======
  359. #u606_div {
  360. >>>>>>> 0601optimize
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:352px;
  366. height:44px;
  367. background:inherit;
  368. background-color:rgba(255, 255, 255, 0);
  369. border:none;
  370. border-radius:0px;
  371. -moz-box-shadow:none;
  372. -webkit-box-shadow:none;
  373. box-shadow:none;
  374. line-height:22px;
  375. }
  376. <<<<<<< HEAD
  377. #u605 {
  378. =======
  379. #u606 {
  380. >>>>>>> 0601optimize
  381. border-width:0px;
  382. position:absolute;
  383. left:1227px;
  384. top:322px;
  385. width:352px;
  386. height:44px;
  387. line-height:22px;
  388. }
  389. <<<<<<< HEAD
  390. #u605_text {
  391. =======
  392. #u606_text {
  393. >>>>>>> 0601optimize
  394. border-width:0px;
  395. position:absolute;
  396. left:0px;
  397. top:0px;
  398. width:352px;
  399. word-wrap:break-word;
  400. }
  401. <<<<<<< HEAD
  402. #u606 {
  403. =======
  404. #u607 {
  405. >>>>>>> 0601optimize
  406. border-width:0px;
  407. position:absolute;
  408. left:0px;
  409. top:0px;
  410. width:0px;
  411. height:0px;
  412. }
  413. <<<<<<< HEAD
  414. #u607_img {
  415. =======
  416. #u608_img {
  417. >>>>>>> 0601optimize
  418. border-width:0px;
  419. position:absolute;
  420. left:-4px;
  421. top:-4px;
  422. width:44px;
  423. height:44px;
  424. }
  425. <<<<<<< HEAD
  426. #u607 {
  427. =======
  428. #u608 {
  429. >>>>>>> 0601optimize
  430. border-width:0px;
  431. position:absolute;
  432. left:1187px;
  433. top:580px;
  434. width:34px;
  435. height:34px;
  436. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  437. font-weight:700;
  438. font-style:normal;
  439. font-size:26px;
  440. }
  441. <<<<<<< HEAD
  442. #u607_text {
  443. =======
  444. #u608_text {
  445. >>>>>>> 0601optimize
  446. border-width:0px;
  447. position:absolute;
  448. left:2px;
  449. top:1px;
  450. width:30px;
  451. word-wrap:break-word;
  452. }
  453. <<<<<<< HEAD
  454. #u608_div {
  455. =======
  456. #u609_div {
  457. >>>>>>> 0601optimize
  458. border-width:0px;
  459. position:absolute;
  460. left:0px;
  461. top:0px;
  462. width:131px;
  463. height:19px;
  464. background:inherit;
  465. background-color:rgba(255, 255, 255, 0);
  466. border:none;
  467. border-radius:0px;
  468. -moz-box-shadow:none;
  469. -webkit-box-shadow:none;
  470. box-shadow:none;
  471. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  472. font-weight:700;
  473. font-style:normal;
  474. font-size:16px;
  475. }
  476. <<<<<<< HEAD
  477. #u608 {
  478. =======
  479. #u609 {
  480. >>>>>>> 0601optimize
  481. border-width:0px;
  482. position:absolute;
  483. left:1227px;
  484. top:587px;
  485. width:131px;
  486. height:19px;
  487. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  488. font-weight:700;
  489. font-style:normal;
  490. font-size:16px;
  491. }
  492. <<<<<<< HEAD
  493. #u608_text {
  494. =======
  495. #u609_text {
  496. >>>>>>> 0601optimize
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:131px;
  502. word-wrap:break-word;
  503. }
  504. <<<<<<< HEAD
  505. #u609_div {
  506. =======
  507. #u610_div {
  508. >>>>>>> 0601optimize
  509. border-width:0px;
  510. position:absolute;
  511. left:0px;
  512. top:0px;
  513. width:352px;
  514. height:22px;
  515. background:inherit;
  516. background-color:rgba(255, 255, 255, 0);
  517. border:none;
  518. border-radius:0px;
  519. -moz-box-shadow:none;
  520. -webkit-box-shadow:none;
  521. box-shadow:none;
  522. color:#000000;
  523. line-height:22px;
  524. }
  525. <<<<<<< HEAD
  526. #u609 {
  527. =======
  528. #u610 {
  529. >>>>>>> 0601optimize
  530. border-width:0px;
  531. position:absolute;
  532. left:1227px;
  533. top:625px;
  534. width:352px;
  535. height:22px;
  536. color:#000000;
  537. line-height:22px;
  538. }
  539. <<<<<<< HEAD
  540. #u609_text {
  541. =======
  542. #u610_text {
  543. >>>>>>> 0601optimize
  544. border-width:0px;
  545. position:absolute;
  546. left:0px;
  547. top:0px;
  548. width:352px;
  549. word-wrap:break-word;
  550. }
  551. <<<<<<< HEAD
  552. #u610 {
  553. =======
  554. #u611 {
  555. >>>>>>> 0601optimize
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:0px;
  561. height:0px;
  562. }
  563. <<<<<<< HEAD
  564. #u611_img {
  565. =======
  566. #u612_img {
  567. >>>>>>> 0601optimize
  568. border-width:0px;
  569. position:absolute;
  570. left:-4px;
  571. top:-4px;
  572. width:40px;
  573. height:40px;
  574. }
  575. <<<<<<< HEAD
  576. #u611 {
  577. =======
  578. #u612 {
  579. >>>>>>> 0601optimize
  580. border-width:0px;
  581. position:absolute;
  582. left:1187px;
  583. top:1040px;
  584. width:30px;
  585. height:30px;
  586. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  587. font-weight:700;
  588. font-style:normal;
  589. font-size:18px;
  590. color:#1E1E1E;
  591. }
  592. <<<<<<< HEAD
  593. #u611_text {
  594. =======
  595. #u612_text {
  596. >>>>>>> 0601optimize
  597. border-width:0px;
  598. position:absolute;
  599. left:2px;
  600. top:4px;
  601. width:26px;
  602. word-wrap:break-word;
  603. }
  604. <<<<<<< HEAD
  605. #u612_div {
  606. =======
  607. #u613_div {
  608. >>>>>>> 0601optimize
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:131px;
  614. height:19px;
  615. background:inherit;
  616. background-color:rgba(255, 255, 255, 0);
  617. border:none;
  618. border-radius:0px;
  619. -moz-box-shadow:none;
  620. -webkit-box-shadow:none;
  621. box-shadow:none;
  622. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  623. font-weight:700;
  624. font-style:normal;
  625. font-size:16px;
  626. }
  627. <<<<<<< HEAD
  628. #u612 {
  629. =======
  630. #u613 {
  631. >>>>>>> 0601optimize
  632. border-width:0px;
  633. position:absolute;
  634. left:1227px;
  635. top:1047px;
  636. width:131px;
  637. height:19px;
  638. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  639. font-weight:700;
  640. font-style:normal;
  641. font-size:16px;
  642. }
  643. <<<<<<< HEAD
  644. #u612_text {
  645. =======
  646. #u613_text {
  647. >>>>>>> 0601optimize
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:131px;
  653. word-wrap:break-word;
  654. }
  655. <<<<<<< HEAD
  656. #u613_div {
  657. =======
  658. #u614_div {
  659. >>>>>>> 0601optimize
  660. border-width:0px;
  661. position:absolute;
  662. left:0px;
  663. top:0px;
  664. width:352px;
  665. height:110px;
  666. background:inherit;
  667. background-color:rgba(255, 255, 255, 0);
  668. border:none;
  669. border-radius:0px;
  670. -moz-box-shadow:none;
  671. -webkit-box-shadow:none;
  672. box-shadow:none;
  673. line-height:22px;
  674. }
  675. <<<<<<< HEAD
  676. #u613 {
  677. =======
  678. #u614 {
  679. >>>>>>> 0601optimize
  680. border-width:0px;
  681. position:absolute;
  682. left:1227px;
  683. top:1085px;
  684. width:352px;
  685. height:110px;
  686. line-height:22px;
  687. }
  688. <<<<<<< HEAD
  689. #u613_text {
  690. =======
  691. #u614_text {
  692. >>>>>>> 0601optimize
  693. border-width:0px;
  694. position:absolute;
  695. left:0px;
  696. top:0px;
  697. width:352px;
  698. word-wrap:break-word;
  699. }
  700. <<<<<<< HEAD
  701. #u614 {
  702. =======
  703. #u615 {
  704. >>>>>>> 0601optimize
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:0px;
  710. height:0px;
  711. }
  712. <<<<<<< HEAD
  713. #u615_div {
  714. =======
  715. #u616_div {
  716. >>>>>>> 0601optimize
  717. border-width:0px;
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:131px;
  722. height:19px;
  723. background:inherit;
  724. background-color:rgba(255, 255, 255, 0);
  725. border:none;
  726. border-radius:0px;
  727. -moz-box-shadow:none;
  728. -webkit-box-shadow:none;
  729. box-shadow:none;
  730. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  731. font-weight:700;
  732. font-style:normal;
  733. font-size:16px;
  734. color:#FF0000;
  735. }
  736. <<<<<<< HEAD
  737. #u615 {
  738. =======
  739. #u616 {
  740. >>>>>>> 0601optimize
  741. border-width:0px;
  742. position:absolute;
  743. left:1227px;
  744. top:1210px;
  745. width:131px;
  746. height:19px;
  747. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  748. font-weight:700;
  749. font-style:normal;
  750. font-size:16px;
  751. color:#FF0000;
  752. }
  753. <<<<<<< HEAD
  754. #u615_text {
  755. =======
  756. #u616_text {
  757. >>>>>>> 0601optimize
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:131px;
  763. word-wrap:break-word;
  764. }
  765. <<<<<<< HEAD
  766. #u616_div {
  767. =======
  768. #u617_div {
  769. >>>>>>> 0601optimize
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:352px;
  775. height:88px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. line-height:22px;
  784. }
  785. <<<<<<< HEAD
  786. #u616 {
  787. =======
  788. #u617 {
  789. >>>>>>> 0601optimize
  790. border-width:0px;
  791. position:absolute;
  792. left:1227px;
  793. top:1248px;
  794. width:352px;
  795. height:88px;
  796. line-height:22px;
  797. }
  798. <<<<<<< HEAD
  799. #u616_text {
  800. =======
  801. #u617_text {
  802. >>>>>>> 0601optimize
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:352px;
  808. word-wrap:break-word;
  809. }
  810. <<<<<<< HEAD
  811. #u617_img {
  812. =======
  813. #u618_img {
  814. >>>>>>> 0601optimize
  815. border-width:0px;
  816. position:absolute;
  817. left:-4px;
  818. top:-4px;
  819. width:44px;
  820. height:44px;
  821. }
  822. <<<<<<< HEAD
  823. #u617 {
  824. =======
  825. #u618 {
  826. >>>>>>> 0601optimize
  827. border-width:0px;
  828. position:absolute;
  829. left:1187px;
  830. top:1203px;
  831. width:34px;
  832. height:34px;
  833. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  834. font-weight:700;
  835. font-style:normal;
  836. font-size:26px;
  837. }
  838. <<<<<<< HEAD
  839. #u617_text {
  840. =======
  841. #u618_text {
  842. >>>>>>> 0601optimize
  843. border-width:0px;
  844. position:absolute;
  845. left:2px;
  846. top:1px;
  847. width:30px;
  848. word-wrap:break-word;
  849. }
  850. <<<<<<< HEAD
  851. #u618 {
  852. =======
  853. #u619 {
  854. >>>>>>> 0601optimize
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. <<<<<<< HEAD
  863. #u619_img {
  864. =======
  865. #u620_img {
  866. >>>>>>> 0601optimize
  867. border-width:0px;
  868. position:absolute;
  869. left:-4px;
  870. top:-4px;
  871. width:44px;
  872. height:44px;
  873. }
  874. <<<<<<< HEAD
  875. #u619 {
  876. =======
  877. #u620 {
  878. >>>>>>> 0601optimize
  879. border-width:0px;
  880. position:absolute;
  881. left:1187px;
  882. top:1340px;
  883. width:34px;
  884. height:34px;
  885. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  886. font-weight:700;
  887. font-style:normal;
  888. font-size:26px;
  889. }
  890. <<<<<<< HEAD
  891. #u619_text {
  892. =======
  893. #u620_text {
  894. >>>>>>> 0601optimize
  895. border-width:0px;
  896. position:absolute;
  897. left:2px;
  898. top:1px;
  899. width:30px;
  900. word-wrap:break-word;
  901. }
  902. <<<<<<< HEAD
  903. #u620_div {
  904. =======
  905. #u621_div {
  906. >>>>>>> 0601optimize
  907. border-width:0px;
  908. position:absolute;
  909. left:0px;
  910. top:0px;
  911. width:131px;
  912. height:19px;
  913. background:inherit;
  914. background-color:rgba(255, 255, 255, 0);
  915. border:none;
  916. border-radius:0px;
  917. -moz-box-shadow:none;
  918. -webkit-box-shadow:none;
  919. box-shadow:none;
  920. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  921. font-weight:700;
  922. font-style:normal;
  923. font-size:16px;
  924. color:#FF0000;
  925. }
  926. <<<<<<< HEAD
  927. #u620 {
  928. =======
  929. #u621 {
  930. >>>>>>> 0601optimize
  931. border-width:0px;
  932. position:absolute;
  933. left:1227px;
  934. top:1347px;
  935. width:131px;
  936. height:19px;
  937. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  938. font-weight:700;
  939. font-style:normal;
  940. font-size:16px;
  941. color:#FF0000;
  942. }
  943. <<<<<<< HEAD
  944. #u620_text {
  945. =======
  946. #u621_text {
  947. >>>>>>> 0601optimize
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:131px;
  953. word-wrap:break-word;
  954. }
  955. <<<<<<< HEAD
  956. #u621_div {
  957. =======
  958. #u622_div {
  959. >>>>>>> 0601optimize
  960. border-width:0px;
  961. position:absolute;
  962. left:0px;
  963. top:0px;
  964. width:352px;
  965. height:66px;
  966. background:inherit;
  967. background-color:rgba(255, 255, 255, 0);
  968. border:none;
  969. border-radius:0px;
  970. -moz-box-shadow:none;
  971. -webkit-box-shadow:none;
  972. box-shadow:none;
  973. line-height:22px;
  974. }
  975. <<<<<<< HEAD
  976. #u621 {
  977. =======
  978. #u622 {
  979. >>>>>>> 0601optimize
  980. border-width:0px;
  981. position:absolute;
  982. left:1227px;
  983. top:1385px;
  984. width:352px;
  985. height:66px;
  986. line-height:22px;
  987. }
  988. <<<<<<< HEAD
  989. #u621_text {
  990. =======
  991. #u622_text {
  992. >>>>>>> 0601optimize
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:352px;
  998. word-wrap:break-word;
  999. }
  1000. <<<<<<< HEAD
  1001. #u622 {
  1002. =======
  1003. #u623 {
  1004. >>>>>>> 0601optimize
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:0px;
  1008. top:0px;
  1009. width:0px;
  1010. height:0px;
  1011. }
  1012. <<<<<<< HEAD
  1013. #u623_img {
  1014. =======
  1015. #u624_img {
  1016. >>>>>>> 0601optimize
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:-4px;
  1020. top:-4px;
  1021. width:44px;
  1022. height:44px;
  1023. }
  1024. <<<<<<< HEAD
  1025. #u623 {
  1026. =======
  1027. #u624 {
  1028. >>>>>>> 0601optimize
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:1187px;
  1032. top:1461px;
  1033. width:34px;
  1034. height:34px;
  1035. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1036. font-weight:700;
  1037. font-style:normal;
  1038. font-size:26px;
  1039. }
  1040. <<<<<<< HEAD
  1041. #u623_text {
  1042. =======
  1043. #u624_text {
  1044. >>>>>>> 0601optimize
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:2px;
  1048. top:1px;
  1049. width:30px;
  1050. word-wrap:break-word;
  1051. }
  1052. <<<<<<< HEAD
  1053. #u624_div {
  1054. =======
  1055. #u625_div {
  1056. >>>>>>> 0601optimize
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:131px;
  1062. height:19px;
  1063. background:inherit;
  1064. background-color:rgba(255, 255, 255, 0);
  1065. border:none;
  1066. border-radius:0px;
  1067. -moz-box-shadow:none;
  1068. -webkit-box-shadow:none;
  1069. box-shadow:none;
  1070. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1071. font-weight:700;
  1072. font-style:normal;
  1073. font-size:16px;
  1074. color:#FF0000;
  1075. }
  1076. <<<<<<< HEAD
  1077. #u624 {
  1078. =======
  1079. #u625 {
  1080. >>>>>>> 0601optimize
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:1227px;
  1084. top:1468px;
  1085. width:131px;
  1086. height:19px;
  1087. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1088. font-weight:700;
  1089. font-style:normal;
  1090. font-size:16px;
  1091. color:#FF0000;
  1092. }
  1093. <<<<<<< HEAD
  1094. #u624_text {
  1095. =======
  1096. #u625_text {
  1097. >>>>>>> 0601optimize
  1098. border-width:0px;
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:131px;
  1103. word-wrap:break-word;
  1104. }
  1105. <<<<<<< HEAD
  1106. #u625_div {
  1107. =======
  1108. #u626_div {
  1109. >>>>>>> 0601optimize
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:352px;
  1115. height:88px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border:none;
  1119. border-radius:0px;
  1120. -moz-box-shadow:none;
  1121. -webkit-box-shadow:none;
  1122. box-shadow:none;
  1123. line-height:22px;
  1124. }
  1125. <<<<<<< HEAD
  1126. #u625 {
  1127. =======
  1128. #u626 {
  1129. >>>>>>> 0601optimize
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:1227px;
  1133. top:1506px;
  1134. width:352px;
  1135. height:88px;
  1136. line-height:22px;
  1137. }
  1138. <<<<<<< HEAD
  1139. #u625_text {
  1140. =======
  1141. #u626_text {
  1142. >>>>>>> 0601optimize
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:352px;
  1148. word-wrap:break-word;
  1149. }
  1150. <<<<<<< HEAD
  1151. #u626_div {
  1152. =======
  1153. #u627_div {
  1154. >>>>>>> 0601optimize
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:1121px;
  1160. height:74px;
  1161. background:inherit;
  1162. background-color:rgba(255, 255, 255, 0);
  1163. border:none;
  1164. border-radius:0px;
  1165. -moz-box-shadow:none;
  1166. -webkit-box-shadow:none;
  1167. box-shadow:none;
  1168. font-size:16px;
  1169. line-height:24px;
  1170. }
  1171. <<<<<<< HEAD
  1172. #u626 {
  1173. =======
  1174. #u627 {
  1175. >>>>>>> 0601optimize
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:57px;
  1179. top:103px;
  1180. width:1121px;
  1181. height:74px;
  1182. font-size:16px;
  1183. line-height:24px;
  1184. }
  1185. <<<<<<< HEAD
  1186. #u626_text {
  1187. =======
  1188. #u627_text {
  1189. >>>>>>> 0601optimize
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:1121px;
  1195. word-wrap:break-word;
  1196. }
  1197. <<<<<<< HEAD
  1198. #u627 {
  1199. =======
  1200. #u628 {
  1201. >>>>>>> 0601optimize
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:1227px;
  1205. top:1347px;
  1206. width:63px;
  1207. height:23px;
  1208. overflow:hidden;
  1209. background-image:url('../../resources/images/transparent.gif');
  1210. }
  1211. <<<<<<< HEAD
  1212. #u628_div {
  1213. =======
  1214. #u629_div {
  1215. >>>>>>> 0601optimize
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:326px;
  1221. height:88px;
  1222. background:inherit;
  1223. background-color:rgba(255, 255, 0, 1);
  1224. box-sizing:border-box;
  1225. border-width:1px;
  1226. border-style:solid;
  1227. border-color:rgba(0, 0, 0, 1);
  1228. border-radius:10px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. text-align:left;
  1233. line-height:18px;
  1234. }
  1235. <<<<<<< HEAD
  1236. #u628 {
  1237. =======
  1238. #u629 {
  1239. >>>>>>> 0601optimize
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:1227px;
  1243. top:1252px;
  1244. width:326px;
  1245. height:88px;
  1246. text-align:left;
  1247. line-height:18px;
  1248. }
  1249. <<<<<<< HEAD
  1250. #u628_text {
  1251. =======
  1252. #u629_text {
  1253. >>>>>>> 0601optimize
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:2px;
  1257. top:17px;
  1258. width:322px;
  1259. word-wrap:break-word;
  1260. }
  1261. <<<<<<< HEAD
  1262. #u629_img {
  1263. =======
  1264. #u630_img {
  1265. >>>>>>> 0601optimize
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:-4px;
  1269. top:-4px;
  1270. width:30px;
  1271. height:30px;
  1272. }
  1273. <<<<<<< HEAD
  1274. #u629 {
  1275. =======
  1276. #u630 {
  1277. >>>>>>> 0601optimize
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:217px;
  1281. top:437px;
  1282. width:20px;
  1283. height:20px;
  1284. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1285. font-weight:700;
  1286. font-style:normal;
  1287. font-size:14px;
  1288. color:#1E1E1E;
  1289. }
  1290. <<<<<<< HEAD
  1291. #u629_text {
  1292. =======
  1293. #u630_text {
  1294. >>>>>>> 0601optimize
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:2px;
  1298. top:2px;
  1299. width:16px;
  1300. word-wrap:break-word;
  1301. }
  1302. <<<<<<< HEAD
  1303. #u630_img {
  1304. =======
  1305. #u631_img {
  1306. >>>>>>> 0601optimize
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:-4px;
  1310. top:-4px;
  1311. width:30px;
  1312. height:30px;
  1313. }
  1314. <<<<<<< HEAD
  1315. #u630 {
  1316. =======
  1317. #u631 {
  1318. >>>>>>> 0601optimize
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:1015px;
  1322. top:579px;
  1323. width:20px;
  1324. height:20px;
  1325. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1326. font-weight:700;
  1327. font-style:normal;
  1328. font-size:14px;
  1329. color:#1E1E1E;
  1330. }
  1331. <<<<<<< HEAD
  1332. #u630_text {
  1333. =======
  1334. #u631_text {
  1335. >>>>>>> 0601optimize
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:2px;
  1339. top:2px;
  1340. width:16px;
  1341. word-wrap:break-word;
  1342. }
  1343. <<<<<<< HEAD
  1344. #u631_img {
  1345. =======
  1346. #u632_img {
  1347. >>>>>>> 0601optimize
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:-4px;
  1351. top:-4px;
  1352. width:30px;
  1353. height:30px;
  1354. }
  1355. <<<<<<< HEAD
  1356. #u631 {
  1357. =======
  1358. #u632 {
  1359. >>>>>>> 0601optimize
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:1081px;
  1363. top:579px;
  1364. width:20px;
  1365. height:20px;
  1366. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1367. font-weight:700;
  1368. font-style:normal;
  1369. font-size:14px;
  1370. color:#1E1E1E;
  1371. }
  1372. <<<<<<< HEAD
  1373. #u631_text {
  1374. =======
  1375. #u632_text {
  1376. >>>>>>> 0601optimize
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:2px;
  1380. top:2px;
  1381. width:16px;
  1382. word-wrap:break-word;
  1383. }
  1384. <<<<<<< HEAD
  1385. #u632_img {
  1386. =======
  1387. #u633_img {
  1388. >>>>>>> 0601optimize
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:-4px;
  1392. top:-4px;
  1393. width:30px;
  1394. height:30px;
  1395. }
  1396. <<<<<<< HEAD
  1397. #u632 {
  1398. =======
  1399. #u633 {
  1400. >>>>>>> 0601optimize
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:1051px;
  1404. top:579px;
  1405. width:20px;
  1406. height:20px;
  1407. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1408. font-weight:700;
  1409. font-style:normal;
  1410. font-size:14px;
  1411. color:#1E1E1E;
  1412. }
  1413. <<<<<<< HEAD
  1414. #u632_text {
  1415. =======
  1416. #u633_text {
  1417. >>>>>>> 0601optimize
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:2px;
  1421. top:2px;
  1422. width:16px;
  1423. word-wrap:break-word;
  1424. }
  1425. <<<<<<< HEAD
  1426. #u633_img {
  1427. =======
  1428. #u634_img {
  1429. >>>>>>> 0601optimize
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:-4px;
  1433. top:-4px;
  1434. width:30px;
  1435. height:30px;
  1436. }
  1437. <<<<<<< HEAD
  1438. #u633 {
  1439. =======
  1440. #u634 {
  1441. >>>>>>> 0601optimize
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:1121px;
  1445. top:579px;
  1446. width:20px;
  1447. height:20px;
  1448. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1449. font-weight:700;
  1450. font-style:normal;
  1451. font-size:14px;
  1452. color:#1E1E1E;
  1453. }
  1454. <<<<<<< HEAD
  1455. #u633_text {
  1456. =======
  1457. #u634_text {
  1458. >>>>>>> 0601optimize
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:2px;
  1462. top:2px;
  1463. width:16px;
  1464. word-wrap:break-word;
  1465. }
  1466. <<<<<<< HEAD
  1467. #u634_img {
  1468. =======
  1469. #u635_img {
  1470. >>>>>>> 0601optimize
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:-4px;
  1474. top:-4px;
  1475. width:30px;
  1476. height:30px;
  1477. }
  1478. <<<<<<< HEAD
  1479. #u634 {
  1480. =======
  1481. #u635 {
  1482. >>>>>>> 0601optimize
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1121px;
  1486. top:615px;
  1487. width:20px;
  1488. height:20px;
  1489. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1490. font-weight:700;
  1491. font-style:normal;
  1492. font-size:14px;
  1493. color:#1E1E1E;
  1494. }
  1495. <<<<<<< HEAD
  1496. #u634_text {
  1497. =======
  1498. #u635_text {
  1499. >>>>>>> 0601optimize
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:2px;
  1503. top:2px;
  1504. width:16px;
  1505. word-wrap:break-word;
  1506. }
  1507. <<<<<<< HEAD
  1508. #u635 {
  1509. =======
  1510. #u636 {
  1511. >>>>>>> 0601optimize
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:0px;
  1517. height:0px;
  1518. }
  1519. <<<<<<< HEAD
  1520. #u636_img {
  1521. =======
  1522. #u637_img {
  1523. >>>>>>> 0601optimize
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:-4px;
  1527. top:-4px;
  1528. width:44px;
  1529. height:44px;
  1530. }
  1531. <<<<<<< HEAD
  1532. #u636 {
  1533. =======
  1534. #u637 {
  1535. >>>>>>> 0601optimize
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:1187px;
  1539. top:1603px;
  1540. width:34px;
  1541. height:34px;
  1542. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1543. font-weight:700;
  1544. font-style:normal;
  1545. font-size:26px;
  1546. }
  1547. <<<<<<< HEAD
  1548. #u636_text {
  1549. =======
  1550. #u637_text {
  1551. >>>>>>> 0601optimize
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:2px;
  1555. top:1px;
  1556. width:30px;
  1557. word-wrap:break-word;
  1558. }
  1559. <<<<<<< HEAD
  1560. #u637_div {
  1561. =======
  1562. #u638_div {
  1563. >>>>>>> 0601optimize
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:0px;
  1567. top:0px;
  1568. width:180px;
  1569. height:19px;
  1570. background:inherit;
  1571. background-color:rgba(255, 255, 255, 0);
  1572. border:none;
  1573. border-radius:0px;
  1574. -moz-box-shadow:none;
  1575. -webkit-box-shadow:none;
  1576. box-shadow:none;
  1577. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1578. font-weight:700;
  1579. font-style:normal;
  1580. font-size:16px;
  1581. color:#FF0000;
  1582. }
  1583. <<<<<<< HEAD
  1584. #u637 {
  1585. =======
  1586. #u638 {
  1587. >>>>>>> 0601optimize
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:1227px;
  1591. top:1610px;
  1592. width:180px;
  1593. height:19px;
  1594. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1595. font-weight:700;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FF0000;
  1599. }
  1600. <<<<<<< HEAD
  1601. #u637_text {
  1602. =======
  1603. #u638_text {
  1604. >>>>>>> 0601optimize
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:180px;
  1610. word-wrap:break-word;
  1611. }
  1612. <<<<<<< HEAD
  1613. #u638_div {
  1614. =======
  1615. #u639_div {
  1616. >>>>>>> 0601optimize
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:352px;
  1622. height:34px;
  1623. background:inherit;
  1624. background-color:rgba(255, 255, 255, 0);
  1625. border:none;
  1626. border-radius:0px;
  1627. -moz-box-shadow:none;
  1628. -webkit-box-shadow:none;
  1629. box-shadow:none;
  1630. line-height:22px;
  1631. }
  1632. <<<<<<< HEAD
  1633. #u638 {
  1634. =======
  1635. #u639 {
  1636. >>>>>>> 0601optimize
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:1227px;
  1640. top:1648px;
  1641. width:352px;
  1642. height:34px;
  1643. line-height:22px;
  1644. }
  1645. <<<<<<< HEAD
  1646. #u638_text {
  1647. =======
  1648. #u639_text {
  1649. >>>>>>> 0601optimize
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:352px;
  1655. word-wrap:break-word;
  1656. }
  1657. <<<<<<< HEAD
  1658. #u639_img {
  1659. =======
  1660. #u640_img {
  1661. >>>>>>> 0601optimize
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:-4px;
  1665. top:-4px;
  1666. width:30px;
  1667. height:30px;
  1668. }
  1669. <<<<<<< HEAD
  1670. #u639 {
  1671. =======
  1672. #u640 {
  1673. >>>>>>> 0601optimize
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:1039px;
  1677. top:352px;
  1678. width:20px;
  1679. height:20px;
  1680. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1681. font-weight:700;
  1682. font-style:normal;
  1683. font-size:14px;
  1684. color:#1E1E1E;
  1685. }
  1686. <<<<<<< HEAD
  1687. #u639_text {
  1688. =======
  1689. #u640_text {
  1690. >>>>>>> 0601optimize
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:2px;
  1694. top:2px;
  1695. width:16px;
  1696. word-wrap:break-word;
  1697. }
  1698. <<<<<<< HEAD
  1699. #u640 {
  1700. =======
  1701. #u641 {
  1702. >>>>>>> 0601optimize
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:1232px;
  1706. top:1464px;
  1707. width:90px;
  1708. height:23px;
  1709. overflow:hidden;
  1710. background-image:url('../../resources/images/transparent.gif');
  1711. }
  1712. <<<<<<< HEAD
  1713. #u641_div {
  1714. =======
  1715. #u642_div {
  1716. >>>>>>> 0601optimize
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:329px;
  1722. height:88px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 0, 1);
  1725. box-sizing:border-box;
  1726. border-width:1px;
  1727. border-style:solid;
  1728. border-color:rgba(0, 0, 0, 1);
  1729. border-radius:10px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. text-align:left;
  1734. line-height:18px;
  1735. }
  1736. <<<<<<< HEAD
  1737. #u641 {
  1738. =======
  1739. #u642 {
  1740. >>>>>>> 0601optimize
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:1232px;
  1744. top:1370px;
  1745. width:329px;
  1746. height:88px;
  1747. text-align:left;
  1748. line-height:18px;
  1749. }
  1750. <<<<<<< HEAD
  1751. #u641_text {
  1752. =======
  1753. #u642_text {
  1754. >>>>>>> 0601optimize
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:2px;
  1758. top:-1px;
  1759. width:325px;
  1760. word-wrap:break-word;
  1761. }
  1762. <<<<<<< HEAD
  1763. #u642_img {
  1764. =======
  1765. #u643_img {
  1766. >>>>>>> 0601optimize
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:-4px;
  1770. top:-4px;
  1771. width:30px;
  1772. height:30px;
  1773. }
  1774. <<<<<<< HEAD
  1775. #u642 {
  1776. =======
  1777. #u643 {
  1778. >>>>>>> 0601optimize
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:153px;
  1782. top:437px;
  1783. width:20px;
  1784. height:20px;
  1785. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1786. font-weight:700;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. color:#1E1E1E;
  1790. }
  1791. <<<<<<< HEAD
  1792. #u642_text {
  1793. =======
  1794. #u643_text {
  1795. >>>>>>> 0601optimize
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:2px;
  1799. top:2px;
  1800. width:16px;
  1801. word-wrap:break-word;
  1802. }
  1803. <<<<<<< HEAD
  1804. #u643 {
  1805. =======
  1806. #u644 {
  1807. >>>>>>> 0601optimize
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:0px;
  1813. height:0px;
  1814. }
  1815. <<<<<<< HEAD
  1816. #u644_img {
  1817. =======
  1818. #u645_img {
  1819. >>>>>>> 0601optimize
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:-4px;
  1823. top:-4px;
  1824. width:44px;
  1825. height:44px;
  1826. }
  1827. <<<<<<< HEAD
  1828. #u644 {
  1829. =======
  1830. #u645 {
  1831. >>>>>>> 0601optimize
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:1187px;
  1835. top:1689px;
  1836. width:34px;
  1837. height:34px;
  1838. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1839. font-weight:700;
  1840. font-style:normal;
  1841. font-size:26px;
  1842. }
  1843. <<<<<<< HEAD
  1844. #u644_text {
  1845. =======
  1846. #u645_text {
  1847. >>>>>>> 0601optimize
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:2px;
  1851. top:1px;
  1852. width:30px;
  1853. word-wrap:break-word;
  1854. }
  1855. <<<<<<< HEAD
  1856. #u645_div {
  1857. =======
  1858. #u646_div {
  1859. >>>>>>> 0601optimize
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:131px;
  1865. height:19px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border:none;
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1874. font-weight:700;
  1875. font-style:normal;
  1876. font-size:16px;
  1877. color:#FF0000;
  1878. }
  1879. <<<<<<< HEAD
  1880. #u645 {
  1881. =======
  1882. #u646 {
  1883. >>>>>>> 0601optimize
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:1227px;
  1887. top:1696px;
  1888. width:131px;
  1889. height:19px;
  1890. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1891. font-weight:700;
  1892. font-style:normal;
  1893. font-size:16px;
  1894. color:#FF0000;
  1895. }
  1896. <<<<<<< HEAD
  1897. #u645_text {
  1898. =======
  1899. #u646_text {
  1900. >>>>>>> 0601optimize
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:131px;
  1906. word-wrap:break-word;
  1907. }
  1908. <<<<<<< HEAD
  1909. #u646_div {
  1910. =======
  1911. #u647_div {
  1912. >>>>>>> 0601optimize
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:352px;
  1918. height:66px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 0);
  1921. border:none;
  1922. border-radius:0px;
  1923. -moz-box-shadow:none;
  1924. -webkit-box-shadow:none;
  1925. box-shadow:none;
  1926. line-height:22px;
  1927. }
  1928. <<<<<<< HEAD
  1929. #u646 {
  1930. =======
  1931. #u647 {
  1932. >>>>>>> 0601optimize
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:1227px;
  1936. top:1734px;
  1937. width:352px;
  1938. height:66px;
  1939. line-height:22px;
  1940. }
  1941. <<<<<<< HEAD
  1942. #u646_text {
  1943. =======
  1944. #u647_text {
  1945. >>>>>>> 0601optimize
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:352px;
  1951. word-wrap:break-word;
  1952. }
  1953. <<<<<<< HEAD
  1954. #u647 {
  1955. =======
  1956. #u648 {
  1957. >>>>>>> 0601optimize
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:1227px;
  1961. top:1696px;
  1962. width:99px;
  1963. height:23px;
  1964. overflow:hidden;
  1965. background-image:url('../../resources/images/transparent.gif');
  1966. }
  1967. <<<<<<< HEAD
  1968. #u648_div {
  1969. =======
  1970. #u649_div {
  1971. >>>>>>> 0601optimize
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:276px;
  1977. height:67px;
  1978. background:inherit;
  1979. background-color:rgba(255, 255, 0, 1);
  1980. box-sizing:border-box;
  1981. border-width:1px;
  1982. border-style:solid;
  1983. border-color:rgba(0, 0, 0, 1);
  1984. border-radius:10px;
  1985. -moz-box-shadow:none;
  1986. -webkit-box-shadow:none;
  1987. box-shadow:none;
  1988. text-align:left;
  1989. line-height:18px;
  1990. }
  1991. <<<<<<< HEAD
  1992. #u648 {
  1993. =======
  1994. #u649 {
  1995. >>>>>>> 0601optimize
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1227px;
  1999. top:1622px;
  2000. width:276px;
  2001. height:67px;
  2002. text-align:left;
  2003. line-height:18px;
  2004. }
  2005. <<<<<<< HEAD
  2006. #u648_text {
  2007. =======
  2008. #u649_text {
  2009. >>>>>>> 0601optimize
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:2px;
  2013. top:6px;
  2014. width:272px;
  2015. word-wrap:break-word;
  2016. }
  2017. <<<<<<< HEAD
  2018. #u649_img {
  2019. =======
  2020. #u650_img {
  2021. >>>>>>> 0601optimize
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:-4px;
  2025. top:-4px;
  2026. width:30px;
  2027. height:30px;
  2028. }
  2029. <<<<<<< HEAD
  2030. #u649 {
  2031. =======
  2032. #u650 {
  2033. >>>>>>> 0601optimize
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:343px;
  2037. top:437px;
  2038. width:20px;
  2039. height:20px;
  2040. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2041. font-weight:700;
  2042. font-style:normal;
  2043. font-size:14px;
  2044. color:#1E1E1E;
  2045. }
  2046. <<<<<<< HEAD
  2047. #u649_text {
  2048. =======
  2049. #u650_text {
  2050. >>>>>>> 0601optimize
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:2px;
  2054. top:2px;
  2055. width:16px;
  2056. word-wrap:break-word;
  2057. }
  2058. <<<<<<< HEAD
  2059. #u650 {
  2060. =======
  2061. #u651 {
  2062. >>>>>>> 0601optimize
  2063. position:fixed;
  2064. left:1382px;
  2065. top:68px;
  2066. }
  2067. <<<<<<< HEAD
  2068. #u650_state0 {
  2069. =======
  2070. #u651_state0 {
  2071. >>>>>>> 0601optimize
  2072. position:relative;
  2073. left:0px;
  2074. top:0px;
  2075. width:140px;
  2076. height:40px;
  2077. background-image:none;
  2078. }
  2079. <<<<<<< HEAD
  2080. #u650_state0_content {
  2081. =======
  2082. #u651_state0_content {
  2083. >>>>>>> 0601optimize
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:1px;
  2089. height:1px;
  2090. }
  2091. <<<<<<< HEAD
  2092. #u651_div {
  2093. =======
  2094. #u652_div {
  2095. >>>>>>> 0601optimize
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:140px;
  2101. height:40px;
  2102. background:inherit;
  2103. background-color:rgba(20, 146, 138, 1);
  2104. border:none;
  2105. border-radius:5px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2110. font-weight:700;
  2111. font-style:normal;
  2112. font-size:16px;
  2113. }
  2114. <<<<<<< HEAD
  2115. #u651 {
  2116. =======
  2117. #u652 {
  2118. >>>>>>> 0601optimize
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:140px;
  2124. height:40px;
  2125. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2126. font-weight:700;
  2127. font-style:normal;
  2128. font-size:16px;
  2129. }
  2130. <<<<<<< HEAD
  2131. #u651_text {
  2132. =======
  2133. #u652_text {
  2134. >>>>>>> 0601optimize
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:2px;
  2138. top:10px;
  2139. width:136px;
  2140. word-wrap:break-word;
  2141. }
  2142. <<<<<<< HEAD
  2143. #u652 {
  2144. =======
  2145. #u653 {
  2146. >>>>>>> 0601optimize
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:0px;
  2152. height:0px;
  2153. }
  2154. <<<<<<< HEAD
  2155. #u653_img {
  2156. =======
  2157. #u654_img {
  2158. >>>>>>> 0601optimize
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:-4px;
  2162. top:-4px;
  2163. width:44px;
  2164. height:44px;
  2165. }
  2166. <<<<<<< HEAD
  2167. #u653 {
  2168. =======
  2169. #u654 {
  2170. >>>>>>> 0601optimize
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:1187px;
  2174. top:500px;
  2175. width:34px;
  2176. height:34px;
  2177. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2178. font-weight:700;
  2179. font-style:normal;
  2180. font-size:26px;
  2181. }
  2182. <<<<<<< HEAD
  2183. #u653_text {
  2184. =======
  2185. #u654_text {
  2186. >>>>>>> 0601optimize
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:2px;
  2190. top:1px;
  2191. width:30px;
  2192. word-wrap:break-word;
  2193. }
  2194. <<<<<<< HEAD
  2195. #u654_div {
  2196. =======
  2197. #u655_div {
  2198. >>>>>>> 0601optimize
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:146px;
  2204. height:19px;
  2205. background:inherit;
  2206. background-color:rgba(255, 255, 255, 0);
  2207. border:none;
  2208. border-radius:0px;
  2209. -moz-box-shadow:none;
  2210. -webkit-box-shadow:none;
  2211. box-shadow:none;
  2212. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2213. font-weight:700;
  2214. font-style:normal;
  2215. font-size:16px;
  2216. }
  2217. <<<<<<< HEAD
  2218. #u654 {
  2219. =======
  2220. #u655 {
  2221. >>>>>>> 0601optimize
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:1227px;
  2225. top:507px;
  2226. width:146px;
  2227. height:19px;
  2228. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2229. font-weight:700;
  2230. font-style:normal;
  2231. font-size:16px;
  2232. }
  2233. <<<<<<< HEAD
  2234. #u654_text {
  2235. =======
  2236. #u655_text {
  2237. >>>>>>> 0601optimize
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:146px;
  2243. word-wrap:break-word;
  2244. }
  2245. <<<<<<< HEAD
  2246. #u655_div {
  2247. =======
  2248. #u656_div {
  2249. >>>>>>> 0601optimize
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:352px;
  2255. height:25px;
  2256. background:inherit;
  2257. background-color:rgba(255, 255, 255, 0);
  2258. border:none;
  2259. border-radius:0px;
  2260. -moz-box-shadow:none;
  2261. -webkit-box-shadow:none;
  2262. box-shadow:none;
  2263. line-height:22px;
  2264. }
  2265. <<<<<<< HEAD
  2266. #u655 {
  2267. =======
  2268. #u656 {
  2269. >>>>>>> 0601optimize
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:1227px;
  2273. top:545px;
  2274. width:352px;
  2275. height:25px;
  2276. line-height:22px;
  2277. }
  2278. <<<<<<< HEAD
  2279. #u655_text {
  2280. =======
  2281. #u656_text {
  2282. >>>>>>> 0601optimize
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:352px;
  2288. word-wrap:break-word;
  2289. }
  2290. <<<<<<< HEAD
  2291. #u656_img {
  2292. =======
  2293. #u657_img {
  2294. >>>>>>> 0601optimize
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:-4px;
  2298. top:-4px;
  2299. width:30px;
  2300. height:30px;
  2301. }
  2302. <<<<<<< HEAD
  2303. #u656 {
  2304. =======
  2305. #u657 {
  2306. >>>>>>> 0601optimize
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:282px;
  2310. top:437px;
  2311. width:20px;
  2312. height:20px;
  2313. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2314. font-weight:700;
  2315. font-style:normal;
  2316. font-size:14px;
  2317. color:#1E1E1E;
  2318. }
  2319. <<<<<<< HEAD
  2320. #u656_text {
  2321. =======
  2322. #u657_text {
  2323. >>>>>>> 0601optimize
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:2px;
  2327. top:2px;
  2328. width:16px;
  2329. word-wrap:break-word;
  2330. }
  2331. <<<<<<< HEAD
  2332. #u657 {
  2333. =======
  2334. #u658 {
  2335. >>>>>>> 0601optimize
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:0px;
  2341. height:0px;
  2342. }
  2343. <<<<<<< HEAD
  2344. #u658_img {
  2345. =======
  2346. #u659_img {
  2347. >>>>>>> 0601optimize
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:-4px;
  2351. top:-4px;
  2352. width:40px;
  2353. height:40px;
  2354. }
  2355. <<<<<<< HEAD
  2356. #u658 {
  2357. =======
  2358. #u659 {
  2359. >>>>>>> 0601optimize
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:1187px;
  2363. top:390px;
  2364. width:30px;
  2365. height:30px;
  2366. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2367. font-weight:700;
  2368. font-style:normal;
  2369. font-size:18px;
  2370. color:#000000;
  2371. }
  2372. <<<<<<< HEAD
  2373. #u658_text {
  2374. =======
  2375. #u659_text {
  2376. >>>>>>> 0601optimize
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:2px;
  2380. top:4px;
  2381. width:26px;
  2382. word-wrap:break-word;
  2383. }
  2384. <<<<<<< HEAD
  2385. #u659_div {
  2386. =======
  2387. #u660_div {
  2388. >>>>>>> 0601optimize
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:131px;
  2394. height:19px;
  2395. background:inherit;
  2396. background-color:rgba(255, 255, 255, 0);
  2397. border:none;
  2398. border-radius:0px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2403. font-weight:700;
  2404. font-style:normal;
  2405. font-size:16px;
  2406. color:#FF0000;
  2407. }
  2408. <<<<<<< HEAD
  2409. #u659 {
  2410. =======
  2411. #u660 {
  2412. >>>>>>> 0601optimize
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:1227px;
  2416. top:397px;
  2417. width:131px;
  2418. height:19px;
  2419. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2420. font-weight:700;
  2421. font-style:normal;
  2422. font-size:16px;
  2423. color:#FF0000;
  2424. }
  2425. <<<<<<< HEAD
  2426. #u659_text {
  2427. =======
  2428. #u660_text {
  2429. >>>>>>> 0601optimize
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:131px;
  2435. word-wrap:break-word;
  2436. }
  2437. <<<<<<< HEAD
  2438. #u660_div {
  2439. =======
  2440. #u661_div {
  2441. >>>>>>> 0601optimize
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:352px;
  2447. height:44px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. line-height:22px;
  2456. }
  2457. <<<<<<< HEAD
  2458. #u660 {
  2459. =======
  2460. #u661 {
  2461. >>>>>>> 0601optimize
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:1227px;
  2465. top:435px;
  2466. width:352px;
  2467. height:44px;
  2468. line-height:22px;
  2469. }
  2470. <<<<<<< HEAD
  2471. #u660_text {
  2472. =======
  2473. #u661_text {
  2474. >>>>>>> 0601optimize
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:352px;
  2480. word-wrap:break-word;
  2481. }
  2482. <<<<<<< HEAD
  2483. #u661 {
  2484. =======
  2485. #u662 {
  2486. >>>>>>> 0601optimize
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:1233px;
  2490. top:397px;
  2491. width:88px;
  2492. height:23px;
  2493. overflow:hidden;
  2494. background-image:url('../../resources/images/transparent.gif');
  2495. }
  2496. <<<<<<< HEAD
  2497. #u662_div {
  2498. =======
  2499. #u663_div {
  2500. >>>>>>> 0601optimize
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:0px;
  2505. width:276px;
  2506. height:67px;
  2507. background:inherit;
  2508. background-color:rgba(255, 255, 0, 1);
  2509. box-sizing:border-box;
  2510. border-width:1px;
  2511. border-style:solid;
  2512. border-color:rgba(0, 0, 0, 1);
  2513. border-radius:10px;
  2514. -moz-box-shadow:none;
  2515. -webkit-box-shadow:none;
  2516. box-shadow:none;
  2517. text-align:left;
  2518. line-height:18px;
  2519. }
  2520. <<<<<<< HEAD
  2521. #u662 {
  2522. =======
  2523. #u663 {
  2524. >>>>>>> 0601optimize
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:1227px;
  2528. top:313px;
  2529. width:276px;
  2530. height:67px;
  2531. text-align:left;
  2532. line-height:18px;
  2533. }
  2534. <<<<<<< HEAD
  2535. #u662_text {
  2536. =======
  2537. #u663_text {
  2538. >>>>>>> 0601optimize
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:2px;
  2542. top:16px;
  2543. width:272px;
  2544. word-wrap:break-word;
  2545. }
  2546. <<<<<<< HEAD
  2547. #u663_img {
  2548. =======
  2549. #u664_img {
  2550. >>>>>>> 0601optimize
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:-4px;
  2554. top:-4px;
  2555. width:30px;
  2556. height:30px;
  2557. }
  2558. <<<<<<< HEAD
  2559. #u663 {
  2560. =======
  2561. #u664 {
  2562. >>>>>>> 0601optimize
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:408px;
  2566. top:437px;
  2567. width:20px;
  2568. height:20px;
  2569. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2570. font-weight:700;
  2571. font-style:normal;
  2572. font-size:14px;
  2573. color:#1E1E1E;
  2574. }
  2575. <<<<<<< HEAD
  2576. #u663_text {
  2577. =======
  2578. #u664_text {
  2579. >>>>>>> 0601optimize
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:2px;
  2583. top:2px;
  2584. width:16px;
  2585. word-wrap:break-word;
  2586. }
  2587. <<<<<<< HEAD
  2588. #u664 {
  2589. =======
  2590. #u665 {
  2591. >>>>>>> 0601optimize
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:0px;
  2597. height:0px;
  2598. }
  2599. <<<<<<< HEAD
  2600. #u665_img {
  2601. =======
  2602. #u666_img {
  2603. >>>>>>> 0601optimize
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:-4px;
  2607. top:-4px;
  2608. width:40px;
  2609. height:40px;
  2610. }
  2611. <<<<<<< HEAD
  2612. #u665 {
  2613. =======
  2614. #u666 {
  2615. >>>>>>> 0601optimize
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:1187px;
  2619. top:664px;
  2620. width:30px;
  2621. height:30px;
  2622. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2623. font-weight:700;
  2624. font-style:normal;
  2625. font-size:18px;
  2626. color:#1E1E1E;
  2627. }
  2628. <<<<<<< HEAD
  2629. #u665_text {
  2630. =======
  2631. #u666_text {
  2632. >>>>>>> 0601optimize
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:2px;
  2636. top:4px;
  2637. width:26px;
  2638. word-wrap:break-word;
  2639. }
  2640. <<<<<<< HEAD
  2641. #u666_div {
  2642. =======
  2643. #u667_div {
  2644. >>>>>>> 0601optimize
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:107px;
  2650. height:19px;
  2651. background:inherit;
  2652. background-color:rgba(255, 255, 255, 0);
  2653. border:none;
  2654. border-radius:0px;
  2655. -moz-box-shadow:none;
  2656. -webkit-box-shadow:none;
  2657. box-shadow:none;
  2658. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2659. font-weight:700;
  2660. font-style:normal;
  2661. font-size:16px;
  2662. }
  2663. <<<<<<< HEAD
  2664. #u666 {
  2665. =======
  2666. #u667 {
  2667. >>>>>>> 0601optimize
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:1227px;
  2671. top:671px;
  2672. width:107px;
  2673. height:19px;
  2674. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2675. font-weight:700;
  2676. font-style:normal;
  2677. font-size:16px;
  2678. }
  2679. <<<<<<< HEAD
  2680. #u666_text {
  2681. =======
  2682. #u667_text {
  2683. >>>>>>> 0601optimize
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:107px;
  2689. word-wrap:break-word;
  2690. }
  2691. <<<<<<< HEAD
  2692. #u667_div {
  2693. =======
  2694. #u668_div {
  2695. >>>>>>> 0601optimize
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:352px;
  2701. height:28px;
  2702. background:inherit;
  2703. background-color:rgba(255, 255, 255, 0);
  2704. border:none;
  2705. border-radius:0px;
  2706. -moz-box-shadow:none;
  2707. -webkit-box-shadow:none;
  2708. box-shadow:none;
  2709. line-height:22px;
  2710. }
  2711. <<<<<<< HEAD
  2712. #u667 {
  2713. =======
  2714. #u668 {
  2715. >>>>>>> 0601optimize
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:1227px;
  2719. top:709px;
  2720. width:352px;
  2721. height:28px;
  2722. line-height:22px;
  2723. }
  2724. <<<<<<< HEAD
  2725. #u667_text {
  2726. =======
  2727. #u668_text {
  2728. >>>>>>> 0601optimize
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:352px;
  2734. word-wrap:break-word;
  2735. }
  2736. <<<<<<< HEAD
  2737. #u668_img {
  2738. =======
  2739. #u669_img {
  2740. >>>>>>> 0601optimize
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:-4px;
  2744. top:-4px;
  2745. width:30px;
  2746. height:30px;
  2747. }
  2748. <<<<<<< HEAD
  2749. #u668 {
  2750. =======
  2751. #u669 {
  2752. >>>>>>> 0601optimize
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:466px;
  2756. top:437px;
  2757. width:20px;
  2758. height:20px;
  2759. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2760. font-weight:700;
  2761. font-style:normal;
  2762. font-size:14px;
  2763. color:#1E1E1E;
  2764. }
  2765. <<<<<<< HEAD
  2766. #u668_text {
  2767. =======
  2768. #u669_text {
  2769. >>>>>>> 0601optimize
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:2px;
  2773. top:2px;
  2774. width:16px;
  2775. word-wrap:break-word;
  2776. }
  2777. <<<<<<< HEAD
  2778. #u669_img {
  2779. =======
  2780. #u670_img {
  2781. >>>>>>> 0601optimize
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:-4px;
  2785. top:-4px;
  2786. width:30px;
  2787. height:30px;
  2788. }
  2789. <<<<<<< HEAD
  2790. #u669 {
  2791. =======
  2792. #u670 {
  2793. >>>>>>> 0601optimize
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:529px;
  2797. top:437px;
  2798. width:20px;
  2799. height:20px;
  2800. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2801. font-weight:700;
  2802. font-style:normal;
  2803. font-size:14px;
  2804. color:#1E1E1E;
  2805. }
  2806. <<<<<<< HEAD
  2807. #u669_text {
  2808. =======
  2809. #u670_text {
  2810. >>>>>>> 0601optimize
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:2px;
  2814. top:2px;
  2815. width:16px;
  2816. word-wrap:break-word;
  2817. }
  2818. <<<<<<< HEAD
  2819. #u670_img {
  2820. =======
  2821. #u671_img {
  2822. >>>>>>> 0601optimize
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:-4px;
  2826. top:-4px;
  2827. width:30px;
  2828. height:30px;
  2829. }
  2830. <<<<<<< HEAD
  2831. #u670 {
  2832. =======
  2833. #u671 {
  2834. >>>>>>> 0601optimize
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:590px;
  2838. top:437px;
  2839. width:20px;
  2840. height:20px;
  2841. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2842. font-weight:700;
  2843. font-style:normal;
  2844. font-size:14px;
  2845. color:#1E1E1E;
  2846. }
  2847. <<<<<<< HEAD
  2848. #u670_text {
  2849. =======
  2850. #u671_text {
  2851. >>>>>>> 0601optimize
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:2px;
  2855. top:2px;
  2856. width:16px;
  2857. word-wrap:break-word;
  2858. }
  2859. <<<<<<< HEAD
  2860. #u671 {
  2861. =======
  2862. #u672 {
  2863. >>>>>>> 0601optimize
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:0px;
  2869. height:0px;
  2870. }
  2871. <<<<<<< HEAD
  2872. #u672_img {
  2873. =======
  2874. #u673_img {
  2875. >>>>>>> 0601optimize
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:-4px;
  2879. top:-4px;
  2880. width:40px;
  2881. height:40px;
  2882. }
  2883. <<<<<<< HEAD
  2884. #u672 {
  2885. =======
  2886. #u673 {
  2887. >>>>>>> 0601optimize
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:1187px;
  2891. top:747px;
  2892. width:30px;
  2893. height:30px;
  2894. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2895. font-weight:700;
  2896. font-style:normal;
  2897. font-size:18px;
  2898. color:#1E1E1E;
  2899. }
  2900. <<<<<<< HEAD
  2901. #u672_text {
  2902. =======
  2903. #u673_text {
  2904. >>>>>>> 0601optimize
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:2px;
  2908. top:4px;
  2909. width:26px;
  2910. word-wrap:break-word;
  2911. }
  2912. <<<<<<< HEAD
  2913. #u673_div {
  2914. =======
  2915. #u674_div {
  2916. >>>>>>> 0601optimize
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:121px;
  2922. height:19px;
  2923. background:inherit;
  2924. background-color:rgba(255, 255, 255, 0);
  2925. border:none;
  2926. border-radius:0px;
  2927. -moz-box-shadow:none;
  2928. -webkit-box-shadow:none;
  2929. box-shadow:none;
  2930. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2931. font-weight:700;
  2932. font-style:normal;
  2933. font-size:16px;
  2934. }
  2935. <<<<<<< HEAD
  2936. #u673 {
  2937. =======
  2938. #u674 {
  2939. >>>>>>> 0601optimize
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:1227px;
  2943. top:754px;
  2944. width:121px;
  2945. height:19px;
  2946. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2947. font-weight:700;
  2948. font-style:normal;
  2949. font-size:16px;
  2950. }
  2951. <<<<<<< HEAD
  2952. #u673_text {
  2953. =======
  2954. #u674_text {
  2955. >>>>>>> 0601optimize
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:121px;
  2961. word-wrap:break-word;
  2962. }
  2963. <<<<<<< HEAD
  2964. #u674_div {
  2965. =======
  2966. #u675_div {
  2967. >>>>>>> 0601optimize
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:352px;
  2973. height:30px;
  2974. background:inherit;
  2975. background-color:rgba(255, 255, 255, 0);
  2976. border:none;
  2977. border-radius:0px;
  2978. -moz-box-shadow:none;
  2979. -webkit-box-shadow:none;
  2980. box-shadow:none;
  2981. line-height:22px;
  2982. }
  2983. <<<<<<< HEAD
  2984. #u674 {
  2985. =======
  2986. #u675 {
  2987. >>>>>>> 0601optimize
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:1227px;
  2991. top:792px;
  2992. width:352px;
  2993. height:30px;
  2994. line-height:22px;
  2995. }
  2996. <<<<<<< HEAD
  2997. #u674_text {
  2998. =======
  2999. #u675_text {
  3000. >>>>>>> 0601optimize
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:352px;
  3006. word-wrap:break-word;
  3007. }
  3008. <<<<<<< HEAD
  3009. #u675 {
  3010. =======
  3011. #u676 {
  3012. >>>>>>> 0601optimize
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:0px;
  3018. height:0px;
  3019. }
  3020. <<<<<<< HEAD
  3021. #u676_img {
  3022. =======
  3023. #u677_img {
  3024. >>>>>>> 0601optimize
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:-4px;
  3028. top:-4px;
  3029. width:44px;
  3030. height:44px;
  3031. }
  3032. <<<<<<< HEAD
  3033. #u676 {
  3034. =======
  3035. #u677 {
  3036. >>>>>>> 0601optimize
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:1187px;
  3040. top:822px;
  3041. width:34px;
  3042. height:34px;
  3043. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3044. font-weight:700;
  3045. font-style:normal;
  3046. font-size:26px;
  3047. }
  3048. <<<<<<< HEAD
  3049. #u676_text {
  3050. =======
  3051. #u677_text {
  3052. >>>>>>> 0601optimize
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:2px;
  3056. top:1px;
  3057. width:30px;
  3058. word-wrap:break-word;
  3059. }
  3060. <<<<<<< HEAD
  3061. #u677_div {
  3062. =======
  3063. #u678_div {
  3064. >>>>>>> 0601optimize
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:107px;
  3070. height:19px;
  3071. background:inherit;
  3072. background-color:rgba(255, 255, 255, 0);
  3073. border:none;
  3074. border-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3079. font-weight:700;
  3080. font-style:normal;
  3081. font-size:16px;
  3082. color:#1E1E1E;
  3083. }
  3084. <<<<<<< HEAD
  3085. #u677 {
  3086. =======
  3087. #u678 {
  3088. >>>>>>> 0601optimize
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:1227px;
  3092. top:829px;
  3093. width:107px;
  3094. height:19px;
  3095. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3096. font-weight:700;
  3097. font-style:normal;
  3098. font-size:16px;
  3099. color:#1E1E1E;
  3100. }
  3101. <<<<<<< HEAD
  3102. #u677_text {
  3103. =======
  3104. #u678_text {
  3105. >>>>>>> 0601optimize
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:107px;
  3111. word-wrap:break-word;
  3112. }
  3113. <<<<<<< HEAD
  3114. #u678_div {
  3115. =======
  3116. #u679_div {
  3117. >>>>>>> 0601optimize
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:352px;
  3123. height:66px;
  3124. background:inherit;
  3125. background-color:rgba(255, 255, 255, 0);
  3126. border:none;
  3127. border-radius:0px;
  3128. -moz-box-shadow:none;
  3129. -webkit-box-shadow:none;
  3130. box-shadow:none;
  3131. color:#000000;
  3132. line-height:22px;
  3133. }
  3134. <<<<<<< HEAD
  3135. #u678 {
  3136. =======
  3137. #u679 {
  3138. >>>>>>> 0601optimize
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:1227px;
  3142. top:867px;
  3143. width:352px;
  3144. height:66px;
  3145. color:#000000;
  3146. line-height:22px;
  3147. }
  3148. <<<<<<< HEAD
  3149. #u678_text {
  3150. =======
  3151. #u679_text {
  3152. >>>>>>> 0601optimize
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:352px;
  3158. word-wrap:break-word;
  3159. }
  3160. <<<<<<< HEAD
  3161. #u679 {
  3162. =======
  3163. #u680 {
  3164. >>>>>>> 0601optimize
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:0px;
  3170. height:0px;
  3171. }
  3172. <<<<<<< HEAD
  3173. #u680_img {
  3174. =======
  3175. #u681_img {
  3176. >>>>>>> 0601optimize
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:-4px;
  3180. top:-4px;
  3181. width:40px;
  3182. height:40px;
  3183. }
  3184. <<<<<<< HEAD
  3185. #u680 {
  3186. =======
  3187. #u681 {
  3188. >>>>>>> 0601optimize
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:1187px;
  3192. top:938px;
  3193. width:30px;
  3194. height:30px;
  3195. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3196. font-weight:700;
  3197. font-style:normal;
  3198. font-size:18px;
  3199. color:#1E1E1E;
  3200. }
  3201. <<<<<<< HEAD
  3202. #u680_text {
  3203. =======
  3204. #u681_text {
  3205. >>>>>>> 0601optimize
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:2px;
  3209. top:4px;
  3210. width:26px;
  3211. word-wrap:break-word;
  3212. }
  3213. <<<<<<< HEAD
  3214. #u681_div {
  3215. =======
  3216. #u682_div {
  3217. >>>>>>> 0601optimize
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:180px;
  3223. height:19px;
  3224. background:inherit;
  3225. background-color:rgba(255, 255, 255, 0);
  3226. border:none;
  3227. border-radius:0px;
  3228. -moz-box-shadow:none;
  3229. -webkit-box-shadow:none;
  3230. box-shadow:none;
  3231. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3232. font-weight:700;
  3233. font-style:normal;
  3234. font-size:16px;
  3235. color:#1E1E1E;
  3236. }
  3237. <<<<<<< HEAD
  3238. #u681 {
  3239. =======
  3240. #u682 {
  3241. >>>>>>> 0601optimize
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:1227px;
  3245. top:945px;
  3246. width:180px;
  3247. height:19px;
  3248. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3249. font-weight:700;
  3250. font-style:normal;
  3251. font-size:16px;
  3252. color:#1E1E1E;
  3253. }
  3254. <<<<<<< HEAD
  3255. #u681_text {
  3256. =======
  3257. #u682_text {
  3258. >>>>>>> 0601optimize
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:180px;
  3264. word-wrap:break-word;
  3265. }
  3266. <<<<<<< HEAD
  3267. #u682_div {
  3268. =======
  3269. #u683_div {
  3270. >>>>>>> 0601optimize
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:352px;
  3276. height:47px;
  3277. background:inherit;
  3278. background-color:rgba(255, 255, 255, 0);
  3279. border:none;
  3280. border-radius:0px;
  3281. -moz-box-shadow:none;
  3282. -webkit-box-shadow:none;
  3283. box-shadow:none;
  3284. line-height:22px;
  3285. }
  3286. <<<<<<< HEAD
  3287. #u682 {
  3288. =======
  3289. #u683 {
  3290. >>>>>>> 0601optimize
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:1227px;
  3294. top:983px;
  3295. width:352px;
  3296. height:47px;
  3297. line-height:22px;
  3298. }
  3299. <<<<<<< HEAD
  3300. #u682_text {
  3301. =======
  3302. #u683_text {
  3303. >>>>>>> 0601optimize
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:352px;
  3309. word-wrap:break-word;
  3310. }
  3311. <<<<<<< HEAD
  3312. #u683_img {
  3313. =======
  3314. #u684_img {
  3315. >>>>>>> 0601optimize
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:1155px;
  3321. height:583px;
  3322. }
  3323. <<<<<<< HEAD
  3324. #u683 {
  3325. =======
  3326. #u684 {
  3327. >>>>>>> 0601optimize
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:22px;
  3331. top:928px;
  3332. width:1155px;
  3333. height:583px;
  3334. }
  3335. <<<<<<< HEAD
  3336. #u683_text {
  3337. =======
  3338. #u684_text {
  3339. >>>>>>> 0601optimize
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:0px;
  3345. visibility:hidden;
  3346. word-wrap:break-word;
  3347. }
  3348. <<<<<<< HEAD
  3349. #u684_div {
  3350. =======
  3351. #u685_div {
  3352. >>>>>>> 0601optimize
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:91px;
  3358. height:22px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 0);
  3361. border:none;
  3362. border-radius:0px;
  3363. -moz-box-shadow:none;
  3364. -webkit-box-shadow:none;
  3365. box-shadow:none;
  3366. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3367. font-weight:700;
  3368. font-style:normal;
  3369. font-size:18px;
  3370. }
  3371. <<<<<<< HEAD
  3372. #u684 {
  3373. =======
  3374. #u685 {
  3375. >>>>>>> 0601optimize
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:22px;
  3379. top:901px;
  3380. width:91px;
  3381. height:22px;
  3382. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3383. font-weight:700;
  3384. font-style:normal;
  3385. font-size:18px;
  3386. }
  3387. <<<<<<< HEAD
  3388. #u684_text {
  3389. =======
  3390. #u685_text {
  3391. >>>>>>> 0601optimize
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:91px;
  3397. white-space:nowrap;
  3398. }
  3399. <<<<<<< HEAD
  3400. #u685_img {
  3401. =======
  3402. #u686_img {
  3403. >>>>>>> 0601optimize
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:1155px;
  3409. height:583px;
  3410. }
  3411. <<<<<<< HEAD
  3412. #u685 {
  3413. =======
  3414. #u686 {
  3415. >>>>>>> 0601optimize
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:22px;
  3419. top:1575px;
  3420. width:1155px;
  3421. height:583px;
  3422. }
  3423. <<<<<<< HEAD
  3424. #u685_text {
  3425. =======
  3426. #u686_text {
  3427. >>>>>>> 0601optimize
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:0px;
  3433. visibility:hidden;
  3434. word-wrap:break-word;
  3435. }
  3436. <<<<<<< HEAD
  3437. #u686_div {
  3438. =======
  3439. #u687_div {
  3440. >>>>>>> 0601optimize
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:91px;
  3446. height:22px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 0);
  3449. border:none;
  3450. border-radius:0px;
  3451. -moz-box-shadow:none;
  3452. -webkit-box-shadow:none;
  3453. box-shadow:none;
  3454. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3455. font-weight:700;
  3456. font-style:normal;
  3457. font-size:18px;
  3458. }
  3459. <<<<<<< HEAD
  3460. #u686 {
  3461. =======
  3462. #u687 {
  3463. >>>>>>> 0601optimize
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:22px;
  3467. top:1543px;
  3468. width:91px;
  3469. height:22px;
  3470. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3471. font-weight:700;
  3472. font-style:normal;
  3473. font-size:18px;
  3474. }
  3475. <<<<<<< HEAD
  3476. #u686_text {
  3477. =======
  3478. #u687_text {
  3479. >>>>>>> 0601optimize
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:91px;
  3485. white-space:nowrap;
  3486. }
  3487. <<<<<<< HEAD
  3488. #u687_img {
  3489. =======
  3490. #u688_img {
  3491. >>>>>>> 0601optimize
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:1155px;
  3497. height:583px;
  3498. }
  3499. <<<<<<< HEAD
  3500. #u687 {
  3501. =======
  3502. #u688 {
  3503. >>>>>>> 0601optimize
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:22px;
  3507. top:2232px;
  3508. width:1155px;
  3509. height:583px;
  3510. }
  3511. <<<<<<< HEAD
  3512. #u687_text {
  3513. =======
  3514. #u688_text {
  3515. >>>>>>> 0601optimize
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:0px;
  3521. visibility:hidden;
  3522. word-wrap:break-word;
  3523. }
  3524. <<<<<<< HEAD
  3525. #u688_div {
  3526. =======
  3527. #u689_div {
  3528. >>>>>>> 0601optimize
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:91px;
  3534. height:22px;
  3535. background:inherit;
  3536. background-color:rgba(255, 255, 255, 0);
  3537. border:none;
  3538. border-radius:0px;
  3539. -moz-box-shadow:none;
  3540. -webkit-box-shadow:none;
  3541. box-shadow:none;
  3542. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3543. font-weight:700;
  3544. font-style:normal;
  3545. font-size:18px;
  3546. }
  3547. <<<<<<< HEAD
  3548. #u688 {
  3549. =======
  3550. #u689 {
  3551. >>>>>>> 0601optimize
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:22px;
  3555. top:2205px;
  3556. width:91px;
  3557. height:22px;
  3558. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3559. font-weight:700;
  3560. font-style:normal;
  3561. font-size:18px;
  3562. }
  3563. <<<<<<< HEAD
  3564. #u688_text {
  3565. =======
  3566. #u689_text {
  3567. >>>>>>> 0601optimize
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:91px;
  3573. white-space:nowrap;
  3574. }
  3575. <<<<<<< HEAD
  3576. #u689_img {
  3577. =======
  3578. #u690_img {
  3579. >>>>>>> 0601optimize
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:1155px;
  3585. height:583px;
  3586. }
  3587. <<<<<<< HEAD
  3588. #u689 {
  3589. =======
  3590. #u690 {
  3591. >>>>>>> 0601optimize
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:22px;
  3595. top:2888px;
  3596. width:1155px;
  3597. height:583px;
  3598. }
  3599. <<<<<<< HEAD
  3600. #u689_text {
  3601. =======
  3602. #u690_text {
  3603. >>>>>>> 0601optimize
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:0px;
  3609. visibility:hidden;
  3610. word-wrap:break-word;
  3611. }
  3612. <<<<<<< HEAD
  3613. #u690_div {
  3614. =======
  3615. #u691_div {
  3616. >>>>>>> 0601optimize
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:91px;
  3622. height:22px;
  3623. background:inherit;
  3624. background-color:rgba(255, 255, 255, 0);
  3625. border:none;
  3626. border-radius:0px;
  3627. -moz-box-shadow:none;
  3628. -webkit-box-shadow:none;
  3629. box-shadow:none;
  3630. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3631. font-weight:700;
  3632. font-style:normal;
  3633. font-size:18px;
  3634. }
  3635. <<<<<<< HEAD
  3636. #u690 {
  3637. =======
  3638. #u691 {
  3639. >>>>>>> 0601optimize
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:22px;
  3643. top:2860px;
  3644. width:91px;
  3645. height:22px;
  3646. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3647. font-weight:700;
  3648. font-style:normal;
  3649. font-size:18px;
  3650. }
  3651. <<<<<<< HEAD
  3652. #u690_text {
  3653. =======
  3654. #u691_text {
  3655. >>>>>>> 0601optimize
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:91px;
  3661. white-space:nowrap;
  3662. }
  3663. <<<<<<< HEAD
  3664. #u691_img {
  3665. =======
  3666. #u692_img {
  3667. >>>>>>> 0601optimize
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:1155px;
  3673. height:583px;
  3674. }
  3675. <<<<<<< HEAD
  3676. #u691 {
  3677. =======
  3678. #u692 {
  3679. >>>>>>> 0601optimize
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:22px;
  3683. top:3536px;
  3684. width:1155px;
  3685. height:583px;
  3686. }
  3687. <<<<<<< HEAD
  3688. #u691_text {
  3689. =======
  3690. #u692_text {
  3691. >>>>>>> 0601optimize
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:0px;
  3697. visibility:hidden;
  3698. word-wrap:break-word;
  3699. }
  3700. <<<<<<< HEAD
  3701. #u692_div {
  3702. =======
  3703. #u693_div {
  3704. >>>>>>> 0601optimize
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:55px;
  3710. height:22px;
  3711. background:inherit;
  3712. background-color:rgba(255, 255, 255, 0);
  3713. border:none;
  3714. border-radius:0px;
  3715. -moz-box-shadow:none;
  3716. -webkit-box-shadow:none;
  3717. box-shadow:none;
  3718. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3719. font-weight:700;
  3720. font-style:normal;
  3721. font-size:18px;
  3722. }
  3723. <<<<<<< HEAD
  3724. #u692 {
  3725. =======
  3726. #u693 {
  3727. >>>>>>> 0601optimize
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:22px;
  3731. top:3510px;
  3732. width:55px;
  3733. height:22px;
  3734. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3735. font-weight:700;
  3736. font-style:normal;
  3737. font-size:18px;
  3738. }
  3739. <<<<<<< HEAD
  3740. #u692_text {
  3741. =======
  3742. #u693_text {
  3743. >>>>>>> 0601optimize
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:55px;
  3749. white-space:nowrap;
  3750. }
  3751. <<<<<<< HEAD
  3752. #u693_img {
  3753. =======
  3754. #u694_img {
  3755. >>>>>>> 0601optimize
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:1155px;
  3761. height:583px;
  3762. }
  3763. <<<<<<< HEAD
  3764. #u693 {
  3765. =======
  3766. #u694 {
  3767. >>>>>>> 0601optimize
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:22px;
  3771. top:4190px;
  3772. width:1155px;
  3773. height:583px;
  3774. }
  3775. <<<<<<< HEAD
  3776. #u693_text {
  3777. =======
  3778. #u694_text {
  3779. >>>>>>> 0601optimize
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:0px;
  3785. visibility:hidden;
  3786. word-wrap:break-word;
  3787. }
  3788. <<<<<<< HEAD
  3789. #u694_div {
  3790. =======
  3791. #u695_div {
  3792. >>>>>>> 0601optimize
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:91px;
  3798. height:22px;
  3799. background:inherit;
  3800. background-color:rgba(255, 255, 255, 0);
  3801. border:none;
  3802. border-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3807. font-weight:700;
  3808. font-style:normal;
  3809. font-size:18px;
  3810. }
  3811. <<<<<<< HEAD
  3812. #u694 {
  3813. =======
  3814. #u695 {
  3815. >>>>>>> 0601optimize
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:22px;
  3819. top:4163px;
  3820. width:91px;
  3821. height:22px;
  3822. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3823. font-weight:700;
  3824. font-style:normal;
  3825. font-size:18px;
  3826. }
  3827. <<<<<<< HEAD
  3828. #u694_text {
  3829. =======
  3830. #u695_text {
  3831. >>>>>>> 0601optimize
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:91px;
  3837. white-space:nowrap;
  3838. }
  3839. <<<<<<< HEAD
  3840. #u695_img {
  3841. =======
  3842. #u696_img {
  3843. >>>>>>> 0601optimize
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:1155px;
  3849. height:583px;
  3850. }
  3851. <<<<<<< HEAD
  3852. #u695 {
  3853. =======
  3854. #u696 {
  3855. >>>>>>> 0601optimize
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:22px;
  3859. top:4871px;
  3860. width:1155px;
  3861. height:583px;
  3862. }
  3863. <<<<<<< HEAD
  3864. #u695_text {
  3865. =======
  3866. #u696_text {
  3867. >>>>>>> 0601optimize
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:0px;
  3873. visibility:hidden;
  3874. word-wrap:break-word;
  3875. }
  3876. <<<<<<< HEAD
  3877. #u696_div {
  3878. =======
  3879. #u697_div {
  3880. >>>>>>> 0601optimize
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:91px;
  3886. height:22px;
  3887. background:inherit;
  3888. background-color:rgba(255, 255, 255, 0);
  3889. border:none;
  3890. border-radius:0px;
  3891. -moz-box-shadow:none;
  3892. -webkit-box-shadow:none;
  3893. box-shadow:none;
  3894. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3895. font-weight:700;
  3896. font-style:normal;
  3897. font-size:18px;
  3898. }
  3899. <<<<<<< HEAD
  3900. #u696 {
  3901. =======
  3902. #u697 {
  3903. >>>>>>> 0601optimize
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:22px;
  3907. top:4845px;
  3908. width:91px;
  3909. height:22px;
  3910. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3911. font-weight:700;
  3912. font-style:normal;
  3913. font-size:18px;
  3914. }
  3915. <<<<<<< HEAD
  3916. #u696_text {
  3917. =======
  3918. #u697_text {
  3919. >>>>>>> 0601optimize
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:91px;
  3925. white-space:nowrap;
  3926. }
  3927. <<<<<<< HEAD
  3928. #u697_img {
  3929. =======
  3930. #u698_img {
  3931. >>>>>>> 0601optimize
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:1155px;
  3937. height:583px;
  3938. }
  3939. <<<<<<< HEAD
  3940. #u697 {
  3941. =======
  3942. #u698 {
  3943. >>>>>>> 0601optimize
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:22px;
  3947. top:5538px;
  3948. width:1155px;
  3949. height:583px;
  3950. }
  3951. <<<<<<< HEAD
  3952. #u697_text {
  3953. =======
  3954. #u698_text {
  3955. >>>>>>> 0601optimize
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:0px;
  3961. visibility:hidden;
  3962. word-wrap:break-word;
  3963. }
  3964. <<<<<<< HEAD
  3965. #u698_div {
  3966. =======
  3967. #u699_div {
  3968. >>>>>>> 0601optimize
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:91px;
  3974. height:22px;
  3975. background:inherit;
  3976. background-color:rgba(255, 255, 255, 0);
  3977. border:none;
  3978. border-radius:0px;
  3979. -moz-box-shadow:none;
  3980. -webkit-box-shadow:none;
  3981. box-shadow:none;
  3982. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3983. font-weight:700;
  3984. font-style:normal;
  3985. font-size:18px;
  3986. }
  3987. <<<<<<< HEAD
  3988. #u698 {
  3989. =======
  3990. #u699 {
  3991. >>>>>>> 0601optimize
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:22px;
  3995. top:5511px;
  3996. width:91px;
  3997. height:22px;
  3998. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3999. font-weight:700;
  4000. font-style:normal;
  4001. font-size:18px;
  4002. }
  4003. <<<<<<< HEAD
  4004. #u698_text {
  4005. =======
  4006. #u699_text {
  4007. >>>>>>> 0601optimize
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:91px;
  4013. white-space:nowrap;
  4014. }
  4015. <<<<<<< HEAD
  4016. #u699_img {
  4017. =======
  4018. #u700_img {
  4019. >>>>>>> 0601optimize
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:-4px;
  4023. top:-4px;
  4024. width:30px;
  4025. height:30px;
  4026. }
  4027. <<<<<<< HEAD
  4028. #u699 {
  4029. =======
  4030. #u700 {
  4031. >>>>>>> 0601optimize
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:953px;
  4035. top:5827px;
  4036. width:20px;
  4037. height:20px;
  4038. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4039. font-weight:700;
  4040. font-style:normal;
  4041. font-size:14px;
  4042. color:#1E1E1E;
  4043. }
  4044. <<<<<<< HEAD
  4045. #u699_text {
  4046. =======
  4047. #u700_text {
  4048. >>>>>>> 0601optimize
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:2px;
  4052. top:2px;
  4053. width:16px;
  4054. word-wrap:break-word;
  4055. }
  4056. <<<<<<< HEAD
  4057. #u700_img {
  4058. =======
  4059. #u701_img {
  4060. >>>>>>> 0601optimize
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:-4px;
  4064. top:-4px;
  4065. width:30px;
  4066. height:30px;
  4067. }
  4068. <<<<<<< HEAD
  4069. #u700 {
  4070. =======
  4071. #u701 {
  4072. >>>>>>> 0601optimize
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:1102px;
  4076. top:5827px;
  4077. width:20px;
  4078. height:20px;
  4079. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4080. font-weight:700;
  4081. font-style:normal;
  4082. font-size:14px;
  4083. color:#1E1E1E;
  4084. }
  4085. <<<<<<< HEAD
  4086. #u700_text {
  4087. =======
  4088. #u701_text {
  4089. >>>>>>> 0601optimize
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:2px;
  4093. top:2px;
  4094. width:16px;
  4095. word-wrap:break-word;
  4096. }
  4097. <<<<<<< HEAD
  4098. #u701_img {
  4099. =======
  4100. #u702_img {
  4101. >>>>>>> 0601optimize
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:-4px;
  4105. top:-4px;
  4106. width:30px;
  4107. height:30px;
  4108. }
  4109. <<<<<<< HEAD
  4110. #u701 {
  4111. =======
  4112. #u702 {
  4113. >>>>>>> 0601optimize
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:1008px;
  4117. top:5827px;
  4118. width:20px;
  4119. height:20px;
  4120. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4121. font-weight:700;
  4122. font-style:normal;
  4123. font-size:14px;
  4124. color:#1E1E1E;
  4125. }
  4126. <<<<<<< HEAD
  4127. #u701_text {
  4128. =======
  4129. #u702_text {
  4130. >>>>>>> 0601optimize
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:2px;
  4134. top:2px;
  4135. width:16px;
  4136. word-wrap:break-word;
  4137. }
  4138. <<<<<<< HEAD
  4139. #u702_img {
  4140. =======
  4141. #u703_img {
  4142. >>>>>>> 0601optimize
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:-4px;
  4146. top:-4px;
  4147. width:30px;
  4148. height:30px;
  4149. }
  4150. <<<<<<< HEAD
  4151. #u702 {
  4152. =======
  4153. #u703 {
  4154. >>>>>>> 0601optimize
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:1051px;
  4158. top:5827px;
  4159. width:20px;
  4160. height:20px;
  4161. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4162. font-weight:700;
  4163. font-style:normal;
  4164. font-size:14px;
  4165. color:#1E1E1E;
  4166. }
  4167. <<<<<<< HEAD
  4168. #u702_text {
  4169. =======
  4170. #u703_text {
  4171. >>>>>>> 0601optimize
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:2px;
  4175. top:2px;
  4176. width:16px;
  4177. word-wrap:break-word;
  4178. }
  4179. <<<<<<< HEAD
  4180. #u703 {
  4181. =======
  4182. #u704 {
  4183. >>>>>>> 0601optimize
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:0px;
  4189. height:0px;
  4190. }
  4191. <<<<<<< HEAD
  4192. #u704_img {
  4193. =======
  4194. #u705_img {
  4195. >>>>>>> 0601optimize
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:-4px;
  4199. top:-4px;
  4200. width:40px;
  4201. height:40px;
  4202. }
  4203. <<<<<<< HEAD
  4204. #u704 {
  4205. =======
  4206. #u705 {
  4207. >>>>>>> 0601optimize
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:1187px;
  4211. top:5538px;
  4212. width:30px;
  4213. height:30px;
  4214. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4215. font-weight:700;
  4216. font-style:normal;
  4217. font-size:18px;
  4218. color:#1E1E1E;
  4219. }
  4220. <<<<<<< HEAD
  4221. #u704_text {
  4222. =======
  4223. #u705_text {
  4224. >>>>>>> 0601optimize
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:2px;
  4228. top:4px;
  4229. width:26px;
  4230. word-wrap:break-word;
  4231. }
  4232. <<<<<<< HEAD
  4233. #u705_div {
  4234. =======
  4235. #u706_div {
  4236. >>>>>>> 0601optimize
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:131px;
  4242. height:19px;
  4243. background:inherit;
  4244. background-color:rgba(255, 255, 255, 0);
  4245. border:none;
  4246. border-radius:0px;
  4247. -moz-box-shadow:none;
  4248. -webkit-box-shadow:none;
  4249. box-shadow:none;
  4250. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4251. font-weight:700;
  4252. font-style:normal;
  4253. font-size:16px;
  4254. }
  4255. <<<<<<< HEAD
  4256. #u705 {
  4257. =======
  4258. #u706 {
  4259. >>>>>>> 0601optimize
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:1227px;
  4263. top:5545px;
  4264. width:131px;
  4265. height:19px;
  4266. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4267. font-weight:700;
  4268. font-style:normal;
  4269. font-size:16px;
  4270. }
  4271. <<<<<<< HEAD
  4272. #u705_text {
  4273. =======
  4274. #u706_text {
  4275. >>>>>>> 0601optimize
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:0px;
  4279. top:0px;
  4280. width:131px;
  4281. word-wrap:break-word;
  4282. }
  4283. <<<<<<< HEAD
  4284. #u706_div {
  4285. =======
  4286. #u707_div {
  4287. >>>>>>> 0601optimize
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:352px;
  4293. height:22px;
  4294. background:inherit;
  4295. background-color:rgba(255, 255, 255, 0);
  4296. border:none;
  4297. border-radius:0px;
  4298. -moz-box-shadow:none;
  4299. -webkit-box-shadow:none;
  4300. box-shadow:none;
  4301. line-height:22px;
  4302. }
  4303. <<<<<<< HEAD
  4304. #u706 {
  4305. =======
  4306. #u707 {
  4307. >>>>>>> 0601optimize
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:1227px;
  4311. top:5583px;
  4312. width:352px;
  4313. height:22px;
  4314. line-height:22px;
  4315. }
  4316. <<<<<<< HEAD
  4317. #u706_text {
  4318. =======
  4319. #u707_text {
  4320. >>>>>>> 0601optimize
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:352px;
  4326. word-wrap:break-word;
  4327. }
  4328. <<<<<<< HEAD
  4329. #u707 {
  4330. =======
  4331. #u708 {
  4332. >>>>>>> 0601optimize
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:0px;
  4338. height:0px;
  4339. }
  4340. <<<<<<< HEAD
  4341. #u708_div {
  4342. =======
  4343. #u709_div {
  4344. >>>>>>> 0601optimize
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:131px;
  4350. height:19px;
  4351. background:inherit;
  4352. background-color:rgba(255, 255, 255, 0);
  4353. border:none;
  4354. border-radius:0px;
  4355. -moz-box-shadow:none;
  4356. -webkit-box-shadow:none;
  4357. box-shadow:none;
  4358. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4359. font-weight:700;
  4360. font-style:normal;
  4361. font-size:16px;
  4362. color:#FF0000;
  4363. }
  4364. <<<<<<< HEAD
  4365. #u708 {
  4366. =======
  4367. #u709 {
  4368. >>>>>>> 0601optimize
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1227px;
  4372. top:5636px;
  4373. width:131px;
  4374. height:19px;
  4375. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4376. font-weight:700;
  4377. font-style:normal;
  4378. font-size:16px;
  4379. color:#FF0000;
  4380. }
  4381. <<<<<<< HEAD
  4382. #u708_text {
  4383. =======
  4384. #u709_text {
  4385. >>>>>>> 0601optimize
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:131px;
  4391. word-wrap:break-word;
  4392. }
  4393. <<<<<<< HEAD
  4394. #u709_div {
  4395. =======
  4396. #u710_div {
  4397. >>>>>>> 0601optimize
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:352px;
  4403. height:88px;
  4404. background:inherit;
  4405. background-color:rgba(255, 255, 255, 0);
  4406. border:none;
  4407. border-radius:0px;
  4408. -moz-box-shadow:none;
  4409. -webkit-box-shadow:none;
  4410. box-shadow:none;
  4411. line-height:22px;
  4412. }
  4413. <<<<<<< HEAD
  4414. #u709 {
  4415. =======
  4416. #u710 {
  4417. >>>>>>> 0601optimize
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:1227px;
  4421. top:5674px;
  4422. width:352px;
  4423. height:88px;
  4424. line-height:22px;
  4425. }
  4426. <<<<<<< HEAD
  4427. #u709_text {
  4428. =======
  4429. #u710_text {
  4430. >>>>>>> 0601optimize
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:352px;
  4436. word-wrap:break-word;
  4437. }
  4438. <<<<<<< HEAD
  4439. #u710_img {
  4440. =======
  4441. #u711_img {
  4442. >>>>>>> 0601optimize
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:-4px;
  4446. top:-4px;
  4447. width:44px;
  4448. height:44px;
  4449. }
  4450. <<<<<<< HEAD
  4451. #u710 {
  4452. =======
  4453. #u711 {
  4454. >>>>>>> 0601optimize
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:1187px;
  4458. top:5629px;
  4459. width:34px;
  4460. height:34px;
  4461. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4462. font-weight:700;
  4463. font-style:normal;
  4464. font-size:26px;
  4465. }
  4466. <<<<<<< HEAD
  4467. #u710_text {
  4468. =======
  4469. #u711_text {
  4470. >>>>>>> 0601optimize
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:2px;
  4474. top:1px;
  4475. width:30px;
  4476. word-wrap:break-word;
  4477. }
  4478. <<<<<<< HEAD
  4479. #u711 {
  4480. =======
  4481. #u712 {
  4482. >>>>>>> 0601optimize
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:0px;
  4488. height:0px;
  4489. }
  4490. <<<<<<< HEAD
  4491. #u712_img {
  4492. =======
  4493. #u713_img {
  4494. >>>>>>> 0601optimize
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:-4px;
  4498. top:-4px;
  4499. width:44px;
  4500. height:44px;
  4501. }
  4502. <<<<<<< HEAD
  4503. #u712 {
  4504. =======
  4505. #u713 {
  4506. >>>>>>> 0601optimize
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:1187px;
  4510. top:5766px;
  4511. width:34px;
  4512. height:34px;
  4513. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4514. font-weight:700;
  4515. font-style:normal;
  4516. font-size:26px;
  4517. }
  4518. <<<<<<< HEAD
  4519. #u712_text {
  4520. =======
  4521. #u713_text {
  4522. >>>>>>> 0601optimize
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:2px;
  4526. top:1px;
  4527. width:30px;
  4528. word-wrap:break-word;
  4529. }
  4530. <<<<<<< HEAD
  4531. #u713_div {
  4532. =======
  4533. #u714_div {
  4534. >>>>>>> 0601optimize
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:131px;
  4540. height:19px;
  4541. background:inherit;
  4542. background-color:rgba(255, 255, 255, 0);
  4543. border:none;
  4544. border-radius:0px;
  4545. -moz-box-shadow:none;
  4546. -webkit-box-shadow:none;
  4547. box-shadow:none;
  4548. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4549. font-weight:700;
  4550. font-style:normal;
  4551. font-size:16px;
  4552. color:#FF0000;
  4553. }
  4554. <<<<<<< HEAD
  4555. #u713 {
  4556. =======
  4557. #u714 {
  4558. >>>>>>> 0601optimize
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:1227px;
  4562. top:5773px;
  4563. width:131px;
  4564. height:19px;
  4565. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4566. font-weight:700;
  4567. font-style:normal;
  4568. font-size:16px;
  4569. color:#FF0000;
  4570. }
  4571. <<<<<<< HEAD
  4572. #u713_text {
  4573. =======
  4574. #u714_text {
  4575. >>>>>>> 0601optimize
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:131px;
  4581. word-wrap:break-word;
  4582. }
  4583. <<<<<<< HEAD
  4584. #u714_div {
  4585. =======
  4586. #u715_div {
  4587. >>>>>>> 0601optimize
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:352px;
  4593. height:66px;
  4594. background:inherit;
  4595. background-color:rgba(255, 255, 255, 0);
  4596. border:none;
  4597. border-radius:0px;
  4598. -moz-box-shadow:none;
  4599. -webkit-box-shadow:none;
  4600. box-shadow:none;
  4601. line-height:22px;
  4602. }
  4603. <<<<<<< HEAD
  4604. #u714 {
  4605. =======
  4606. #u715 {
  4607. >>>>>>> 0601optimize
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:1227px;
  4611. top:5811px;
  4612. width:352px;
  4613. height:66px;
  4614. line-height:22px;
  4615. }
  4616. <<<<<<< HEAD
  4617. #u714_text {
  4618. =======
  4619. #u715_text {
  4620. >>>>>>> 0601optimize
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:352px;
  4626. word-wrap:break-word;
  4627. }
  4628. <<<<<<< HEAD
  4629. #u715 {
  4630. =======
  4631. #u716 {
  4632. >>>>>>> 0601optimize
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:1227px;
  4636. top:5632px;
  4637. width:95px;
  4638. height:31px;
  4639. overflow:hidden;
  4640. background-image:url('../../resources/images/transparent.gif');
  4641. }
  4642. <<<<<<< HEAD
  4643. #u716_div {
  4644. =======
  4645. #u717_div {
  4646. >>>>>>> 0601optimize
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:288px;
  4652. height:103px;
  4653. background:inherit;
  4654. background-color:rgba(255, 255, 0, 1);
  4655. box-sizing:border-box;
  4656. border-width:1px;
  4657. border-style:solid;
  4658. border-color:rgba(0, 0, 0, 1);
  4659. border-radius:10px;
  4660. -moz-box-shadow:none;
  4661. -webkit-box-shadow:none;
  4662. box-shadow:none;
  4663. text-align:left;
  4664. line-height:18px;
  4665. }
  4666. <<<<<<< HEAD
  4667. #u716 {
  4668. =======
  4669. #u717 {
  4670. >>>>>>> 0601optimize
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:1227px;
  4674. top:5516px;
  4675. width:288px;
  4676. height:103px;
  4677. text-align:left;
  4678. line-height:18px;
  4679. }
  4680. <<<<<<< HEAD
  4681. #u716_text {
  4682. =======
  4683. #u717_text {
  4684. >>>>>>> 0601optimize
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:2px;
  4688. top:6px;
  4689. width:284px;
  4690. word-wrap:break-word;
  4691. }
  4692. <<<<<<< HEAD
  4693. #u717 {
  4694. =======
  4695. #u718 {
  4696. >>>>>>> 0601optimize
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:1227px;
  4700. top:5773px;
  4701. width:63px;
  4702. height:23px;
  4703. overflow:hidden;
  4704. background-image:url('../../resources/images/transparent.gif');
  4705. }
  4706. <<<<<<< HEAD
  4707. #u718_div {
  4708. =======
  4709. #u719_div {
  4710. >>>>>>> 0601optimize
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:326px;
  4716. height:88px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 0, 1);
  4719. box-sizing:border-box;
  4720. border-width:1px;
  4721. border-style:solid;
  4722. border-color:rgba(0, 0, 0, 1);
  4723. border-radius:10px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. text-align:left;
  4728. line-height:18px;
  4729. }
  4730. <<<<<<< HEAD
  4731. #u718 {
  4732. =======
  4733. #u719 {
  4734. >>>>>>> 0601optimize
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:1227px;
  4738. top:5678px;
  4739. width:326px;
  4740. height:88px;
  4741. text-align:left;
  4742. line-height:18px;
  4743. }
  4744. <<<<<<< HEAD
  4745. #u718_text {
  4746. =======
  4747. #u719_text {
  4748. >>>>>>> 0601optimize
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:2px;
  4752. top:17px;
  4753. width:322px;
  4754. word-wrap:break-word;
  4755. }
  4756. <<<<<<< HEAD
  4757. #u719 {
  4758. =======
  4759. #u720 {
  4760. >>>>>>> 0601optimize
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:0px;
  4766. height:0px;
  4767. }
  4768. <<<<<<< HEAD
  4769. #u720_img {
  4770. =======
  4771. #u721_img {
  4772. >>>>>>> 0601optimize
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:-4px;
  4776. top:-4px;
  4777. width:44px;
  4778. height:44px;
  4779. }
  4780. <<<<<<< HEAD
  4781. #u720 {
  4782. =======
  4783. #u721 {
  4784. >>>>>>> 0601optimize
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:1187px;
  4788. top:5883px;
  4789. width:34px;
  4790. height:34px;
  4791. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4792. font-weight:700;
  4793. font-style:normal;
  4794. font-size:26px;
  4795. }
  4796. <<<<<<< HEAD
  4797. #u720_text {
  4798. =======
  4799. #u721_text {
  4800. >>>>>>> 0601optimize
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:2px;
  4804. top:1px;
  4805. width:30px;
  4806. word-wrap:break-word;
  4807. }
  4808. <<<<<<< HEAD
  4809. #u721_div {
  4810. =======
  4811. #u722_div {
  4812. >>>>>>> 0601optimize
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:180px;
  4818. height:19px;
  4819. background:inherit;
  4820. background-color:rgba(255, 255, 255, 0);
  4821. border:none;
  4822. border-radius:0px;
  4823. -moz-box-shadow:none;
  4824. -webkit-box-shadow:none;
  4825. box-shadow:none;
  4826. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4827. font-weight:700;
  4828. font-style:normal;
  4829. font-size:16px;
  4830. color:#FF0000;
  4831. }
  4832. <<<<<<< HEAD
  4833. #u721 {
  4834. =======
  4835. #u722 {
  4836. >>>>>>> 0601optimize
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:1227px;
  4840. top:5890px;
  4841. width:180px;
  4842. height:19px;
  4843. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4844. font-weight:700;
  4845. font-style:normal;
  4846. font-size:16px;
  4847. color:#FF0000;
  4848. }
  4849. <<<<<<< HEAD
  4850. #u721_text {
  4851. =======
  4852. #u722_text {
  4853. >>>>>>> 0601optimize
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:0px;
  4857. top:0px;
  4858. width:180px;
  4859. word-wrap:break-word;
  4860. }
  4861. <<<<<<< HEAD
  4862. #u722_div {
  4863. =======
  4864. #u723_div {
  4865. >>>>>>> 0601optimize
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:352px;
  4871. height:34px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 0);
  4874. border:none;
  4875. border-radius:0px;
  4876. -moz-box-shadow:none;
  4877. -webkit-box-shadow:none;
  4878. box-shadow:none;
  4879. line-height:22px;
  4880. }
  4881. <<<<<<< HEAD
  4882. #u722 {
  4883. =======
  4884. #u723 {
  4885. >>>>>>> 0601optimize
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:1227px;
  4889. top:5928px;
  4890. width:352px;
  4891. height:34px;
  4892. line-height:22px;
  4893. }
  4894. <<<<<<< HEAD
  4895. #u722_text {
  4896. =======
  4897. #u723_text {
  4898. >>>>>>> 0601optimize
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:352px;
  4904. word-wrap:break-word;
  4905. }
  4906. <<<<<<< HEAD
  4907. #u723 {
  4908. =======
  4909. #u724 {
  4910. >>>>>>> 0601optimize
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:1227px;
  4914. top:5890px;
  4915. width:95px;
  4916. height:23px;
  4917. overflow:hidden;
  4918. background-image:url('../../resources/images/transparent.gif');
  4919. }
  4920. <<<<<<< HEAD
  4921. #u724_div {
  4922. =======
  4923. #u725_div {
  4924. >>>>>>> 0601optimize
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:232px;
  4930. height:198px;
  4931. background:inherit;
  4932. background-color:rgba(255, 255, 0, 1);
  4933. box-sizing:border-box;
  4934. border-width:1px;
  4935. border-style:solid;
  4936. border-color:rgba(0, 0, 0, 1);
  4937. border-radius:10px;
  4938. -moz-box-shadow:none;
  4939. -webkit-box-shadow:none;
  4940. box-shadow:none;
  4941. text-align:left;
  4942. line-height:18px;
  4943. }
  4944. <<<<<<< HEAD
  4945. #u724 {
  4946. =======
  4947. #u725 {
  4948. >>>>>>> 0601optimize
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:1227px;
  4952. top:5682px;
  4953. width:232px;
  4954. height:198px;
  4955. text-align:left;
  4956. line-height:18px;
  4957. }
  4958. <<<<<<< HEAD
  4959. #u724_text {
  4960. =======
  4961. #u725_text {
  4962. >>>>>>> 0601optimize
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:2px;
  4966. top:9px;
  4967. width:228px;
  4968. word-wrap:break-word;
  4969. }
  4970. <<<<<<< HEAD
  4971. #u725 {
  4972. =======
  4973. #u726 {
  4974. >>>>>>> 0601optimize
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:1227px;
  4978. top:1208px;
  4979. width:95px;
  4980. height:23px;
  4981. overflow:hidden;
  4982. background-image:url('../../resources/images/transparent.gif');
  4983. }
  4984. <<<<<<< HEAD
  4985. #u726_div {
  4986. =======
  4987. #u727_div {
  4988. >>>>>>> 0601optimize
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:288px;
  4994. height:103px;
  4995. background:inherit;
  4996. background-color:rgba(255, 255, 0, 1);
  4997. box-sizing:border-box;
  4998. border-width:1px;
  4999. border-style:solid;
  5000. border-color:rgba(0, 0, 0, 1);
  5001. border-radius:10px;
  5002. -moz-box-shadow:none;
  5003. -webkit-box-shadow:none;
  5004. box-shadow:none;
  5005. text-align:left;
  5006. line-height:18px;
  5007. }
  5008. <<<<<<< HEAD
  5009. #u726 {
  5010. =======
  5011. #u727 {
  5012. >>>>>>> 0601optimize
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:1227px;
  5016. top:1085px;
  5017. width:288px;
  5018. height:103px;
  5019. text-align:left;
  5020. line-height:18px;
  5021. }
  5022. <<<<<<< HEAD
  5023. #u726_text {
  5024. =======
  5025. #u727_text {
  5026. >>>>>>> 0601optimize
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:2px;
  5030. top:6px;
  5031. width:284px;
  5032. word-wrap:break-word;
  5033. }
  5034. <<<<<<< HEAD
  5035. #u727 {
  5036. =======
  5037. #u728 {
  5038. >>>>>>> 0601optimize
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:1231px;
  5042. top:1610px;
  5043. width:95px;
  5044. height:23px;
  5045. overflow:hidden;
  5046. background-image:url('../../resources/images/transparent.gif');
  5047. }
  5048. <<<<<<< HEAD
  5049. #u728_div {
  5050. =======
  5051. #u729_div {
  5052. >>>>>>> 0601optimize
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:246px;
  5058. height:225px;
  5059. background:inherit;
  5060. background-color:rgba(255, 255, 0, 1);
  5061. box-sizing:border-box;
  5062. border-width:1px;
  5063. border-style:solid;
  5064. border-color:rgba(0, 0, 0, 1);
  5065. border-radius:10px;
  5066. -moz-box-shadow:none;
  5067. -webkit-box-shadow:none;
  5068. box-shadow:none;
  5069. text-align:left;
  5070. line-height:18px;
  5071. }
  5072. <<<<<<< HEAD
  5073. #u728 {
  5074. =======
  5075. #u729 {
  5076. >>>>>>> 0601optimize
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:1232px;
  5080. top:1375px;
  5081. width:246px;
  5082. height:225px;
  5083. text-align:left;
  5084. line-height:18px;
  5085. }
  5086. <<<<<<< HEAD
  5087. #u728_text {
  5088. =======
  5089. #u729_text {
  5090. >>>>>>> 0601optimize
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:2px;
  5094. top:4px;
  5095. width:242px;
  5096. word-wrap:break-word;
  5097. }