styles.css 154 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1573px;
  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. #u1183_img {
  17. =======
  18. #u1184_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. #u1183 {
  29. =======
  30. #u1184 {
  31. >>>>>>> 0601optimize
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:394px;
  36. width:1155px;
  37. height:583px;
  38. }
  39. <<<<<<< HEAD
  40. #u1183_text {
  41. =======
  42. #u1184_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. #u1184 {
  54. =======
  55. #u1185 {
  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. #u1185_img {
  66. =======
  67. #u1186_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. #u1185 {
  78. =======
  79. #u1186 {
  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. #u1185_text {
  90. =======
  91. #u1186_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. #u1186_div {
  103. =======
  104. #u1187_div {
  105. >>>>>>> 0601optimize
  106. border-width:0px;
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:121px;
  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. #u1186 {
  125. =======
  126. #u1187 {
  127. >>>>>>> 0601optimize
  128. border-width:0px;
  129. position:absolute;
  130. left:22px;
  131. top:15px;
  132. width:121px;
  133. height:28px;
  134. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  135. font-weight:700;
  136. font-style:normal;
  137. }
  138. <<<<<<< HEAD
  139. #u1186_text {
  140. =======
  141. #u1187_text {
  142. >>>>>>> 0601optimize
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:121px;
  148. white-space:nowrap;
  149. }
  150. <<<<<<< HEAD
  151. #u1187_div {
  152. =======
  153. #u1188_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. #u1187 {
  175. =======
  176. #u1188 {
  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. #u1187_text {
  191. =======
  192. #u1188_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. #u1188_div {
  203. =======
  204. #u1189_div {
  205. >>>>>>> 0601optimize
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:0px;
  210. width:210px;
  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. #u1188 {
  226. =======
  227. #u1189 {
  228. >>>>>>> 0601optimize
  229. border-width:0px;
  230. position:absolute;
  231. left:22px;
  232. top:352px;
  233. width:210px;
  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. #u1188_text {
  242. =======
  243. #u1189_text {
  244. >>>>>>> 0601optimize
  245. border-width:0px;
  246. position:absolute;
  247. left:0px;
  248. top:0px;
  249. width:210px;
  250. white-space:nowrap;
  251. }
  252. <<<<<<< HEAD
  253. #u1189_div {
  254. =======
  255. #u1190_div {
  256. >>>>>>> 0601optimize
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:1104px;
  262. height:200px;
  263. background:inherit;
  264. background-color:rgba(255, 255, 255, 0);
  265. border:none;
  266. border-radius:0px;
  267. -moz-box-shadow:none;
  268. -webkit-box-shadow:none;
  269. box-shadow:none;
  270. font-size:16px;
  271. line-height:28px;
  272. }
  273. <<<<<<< HEAD
  274. #u1189 {
  275. =======
  276. #u1190 {
  277. >>>>>>> 0601optimize
  278. border-width:0px;
  279. position:absolute;
  280. left:59px;
  281. top:111px;
  282. width:1104px;
  283. height:200px;
  284. font-size:16px;
  285. line-height:28px;
  286. }
  287. <<<<<<< HEAD
  288. #u1189_text {
  289. =======
  290. #u1190_text {
  291. >>>>>>> 0601optimize
  292. border-width:0px;
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:1104px;
  297. word-wrap:break-word;
  298. }
  299. <<<<<<< HEAD
  300. #u1190 {
  301. =======
  302. #u1191 {
  303. >>>>>>> 0601optimize
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:0px;
  309. height:0px;
  310. }
  311. <<<<<<< HEAD
  312. #u1191_img {
  313. =======
  314. #u1192_img {
  315. >>>>>>> 0601optimize
  316. border-width:0px;
  317. position:absolute;
  318. left:-4px;
  319. top:-4px;
  320. width:40px;
  321. height:40px;
  322. }
  323. <<<<<<< HEAD
  324. #u1191 {
  325. =======
  326. #u1192 {
  327. >>>>>>> 0601optimize
  328. border-width:0px;
  329. position:absolute;
  330. left:1173px;
  331. top:269px;
  332. width:30px;
  333. height:30px;
  334. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  335. font-weight:700;
  336. font-style:normal;
  337. font-size:18px;
  338. color:#1E1E1E;
  339. }
  340. <<<<<<< HEAD
  341. #u1191_text {
  342. =======
  343. #u1192_text {
  344. >>>>>>> 0601optimize
  345. border-width:0px;
  346. position:absolute;
  347. left:2px;
  348. top:4px;
  349. width:26px;
  350. word-wrap:break-word;
  351. }
  352. <<<<<<< HEAD
  353. #u1192_div {
  354. =======
  355. #u1193_div {
  356. >>>>>>> 0601optimize
  357. border-width:0px;
  358. position:absolute;
  359. left:0px;
  360. top:0px;
  361. width:131px;
  362. height:19px;
  363. background:inherit;
  364. background-color:rgba(255, 255, 255, 0);
  365. border:none;
  366. border-radius:0px;
  367. -moz-box-shadow:none;
  368. -webkit-box-shadow:none;
  369. box-shadow:none;
  370. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  371. font-weight:700;
  372. font-style:normal;
  373. font-size:16px;
  374. }
  375. <<<<<<< HEAD
  376. #u1192 {
  377. =======
  378. #u1193 {
  379. >>>>>>> 0601optimize
  380. border-width:0px;
  381. position:absolute;
  382. left:1213px;
  383. top:276px;
  384. width:131px;
  385. height:19px;
  386. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  387. font-weight:700;
  388. font-style:normal;
  389. font-size:16px;
  390. }
  391. <<<<<<< HEAD
  392. #u1192_text {
  393. =======
  394. #u1193_text {
  395. >>>>>>> 0601optimize
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:131px;
  401. word-wrap:break-word;
  402. }
  403. <<<<<<< HEAD
  404. #u1193_div {
  405. =======
  406. #u1194_div {
  407. >>>>>>> 0601optimize
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:352px;
  413. height:22px;
  414. background:inherit;
  415. background-color:rgba(255, 255, 255, 0);
  416. border:none;
  417. border-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. line-height:22px;
  422. }
  423. <<<<<<< HEAD
  424. #u1193 {
  425. =======
  426. #u1194 {
  427. >>>>>>> 0601optimize
  428. border-width:0px;
  429. position:absolute;
  430. left:1213px;
  431. top:314px;
  432. width:352px;
  433. height:22px;
  434. line-height:22px;
  435. }
  436. <<<<<<< HEAD
  437. #u1193_text {
  438. =======
  439. #u1194_text {
  440. >>>>>>> 0601optimize
  441. border-width:0px;
  442. position:absolute;
  443. left:0px;
  444. top:0px;
  445. width:352px;
  446. word-wrap:break-word;
  447. }
  448. <<<<<<< HEAD
  449. #u1194_img {
  450. =======
  451. #u1195_img {
  452. >>>>>>> 0601optimize
  453. border-width:0px;
  454. position:absolute;
  455. left:-4px;
  456. top:-4px;
  457. width:30px;
  458. height:30px;
  459. }
  460. <<<<<<< HEAD
  461. #u1194 {
  462. =======
  463. #u1195 {
  464. >>>>>>> 0601optimize
  465. border-width:0px;
  466. position:absolute;
  467. left:778px;
  468. top:503px;
  469. width:20px;
  470. height:20px;
  471. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  472. font-weight:700;
  473. font-style:normal;
  474. font-size:14px;
  475. color:#1E1E1E;
  476. }
  477. <<<<<<< HEAD
  478. #u1194_text {
  479. =======
  480. #u1195_text {
  481. >>>>>>> 0601optimize
  482. border-width:0px;
  483. position:absolute;
  484. left:2px;
  485. top:2px;
  486. width:16px;
  487. word-wrap:break-word;
  488. }
  489. <<<<<<< HEAD
  490. #u1195_img {
  491. =======
  492. #u1196_img {
  493. >>>>>>> 0601optimize
  494. border-width:0px;
  495. position:absolute;
  496. left:-4px;
  497. top:-4px;
  498. width:30px;
  499. height:30px;
  500. }
  501. <<<<<<< HEAD
  502. #u1195 {
  503. =======
  504. #u1196 {
  505. >>>>>>> 0601optimize
  506. border-width:0px;
  507. position:absolute;
  508. left:784px;
  509. top:761px;
  510. width:20px;
  511. height:20px;
  512. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  513. font-weight:700;
  514. font-style:normal;
  515. font-size:14px;
  516. color:#1E1E1E;
  517. }
  518. <<<<<<< HEAD
  519. #u1195_text {
  520. =======
  521. #u1196_text {
  522. >>>>>>> 0601optimize
  523. border-width:0px;
  524. position:absolute;
  525. left:2px;
  526. top:2px;
  527. width:16px;
  528. word-wrap:break-word;
  529. }
  530. <<<<<<< HEAD
  531. #u1196 {
  532. =======
  533. #u1197 {
  534. >>>>>>> 0601optimize
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:0px;
  540. height:0px;
  541. }
  542. <<<<<<< HEAD
  543. #u1197_img {
  544. =======
  545. #u1198_img {
  546. >>>>>>> 0601optimize
  547. border-width:0px;
  548. position:absolute;
  549. left:-4px;
  550. top:-4px;
  551. width:40px;
  552. height:40px;
  553. }
  554. <<<<<<< HEAD
  555. #u1197 {
  556. =======
  557. #u1198 {
  558. >>>>>>> 0601optimize
  559. border-width:0px;
  560. position:absolute;
  561. left:1173px;
  562. top:363px;
  563. width:30px;
  564. height:30px;
  565. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  566. font-weight:700;
  567. font-style:normal;
  568. font-size:18px;
  569. color:#1E1E1E;
  570. }
  571. <<<<<<< HEAD
  572. #u1197_text {
  573. =======
  574. #u1198_text {
  575. >>>>>>> 0601optimize
  576. border-width:0px;
  577. position:absolute;
  578. left:2px;
  579. top:4px;
  580. width:26px;
  581. word-wrap:break-word;
  582. }
  583. <<<<<<< HEAD
  584. #u1198_div {
  585. =======
  586. #u1199_div {
  587. >>>>>>> 0601optimize
  588. border-width:0px;
  589. position:absolute;
  590. left:0px;
  591. top:0px;
  592. width:198px;
  593. height:19px;
  594. background:inherit;
  595. background-color:rgba(255, 255, 255, 0);
  596. border:none;
  597. border-radius:0px;
  598. -moz-box-shadow:none;
  599. -webkit-box-shadow:none;
  600. box-shadow:none;
  601. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  602. font-weight:700;
  603. font-style:normal;
  604. font-size:16px;
  605. color:#FF0000;
  606. }
  607. <<<<<<< HEAD
  608. #u1198 {
  609. =======
  610. #u1199 {
  611. >>>>>>> 0601optimize
  612. border-width:0px;
  613. position:absolute;
  614. left:1213px;
  615. top:370px;
  616. width:198px;
  617. height:19px;
  618. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  619. font-weight:700;
  620. font-style:normal;
  621. font-size:16px;
  622. color:#FF0000;
  623. }
  624. <<<<<<< HEAD
  625. #u1198_text {
  626. =======
  627. #u1199_text {
  628. >>>>>>> 0601optimize
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:198px;
  634. word-wrap:break-word;
  635. }
  636. <<<<<<< HEAD
  637. #u1199_div {
  638. =======
  639. #u1200_div {
  640. >>>>>>> 0601optimize
  641. border-width:0px;
  642. position:absolute;
  643. left:0px;
  644. top:0px;
  645. width:352px;
  646. height:88px;
  647. background:inherit;
  648. background-color:rgba(255, 255, 255, 0);
  649. border:none;
  650. border-radius:0px;
  651. -moz-box-shadow:none;
  652. -webkit-box-shadow:none;
  653. box-shadow:none;
  654. line-height:22px;
  655. }
  656. <<<<<<< HEAD
  657. #u1199 {
  658. =======
  659. #u1200 {
  660. >>>>>>> 0601optimize
  661. border-width:0px;
  662. position:absolute;
  663. left:1213px;
  664. top:408px;
  665. width:352px;
  666. height:88px;
  667. line-height:22px;
  668. }
  669. <<<<<<< HEAD
  670. #u1199_text {
  671. =======
  672. #u1200_text {
  673. >>>>>>> 0601optimize
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:352px;
  679. word-wrap:break-word;
  680. }
  681. <<<<<<< HEAD
  682. #u1200_img {
  683. =======
  684. #u1201_img {
  685. >>>>>>> 0601optimize
  686. border-width:0px;
  687. position:absolute;
  688. left:-4px;
  689. top:-4px;
  690. width:30px;
  691. height:30px;
  692. }
  693. <<<<<<< HEAD
  694. #u1200 {
  695. =======
  696. #u1201 {
  697. >>>>>>> 0601optimize
  698. border-width:0px;
  699. position:absolute;
  700. left:992px;
  701. top:764px;
  702. width:20px;
  703. height:20px;
  704. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  705. font-weight:700;
  706. font-style:normal;
  707. font-size:14px;
  708. color:#1E1E1E;
  709. }
  710. <<<<<<< HEAD
  711. #u1200_text {
  712. =======
  713. #u1201_text {
  714. >>>>>>> 0601optimize
  715. border-width:0px;
  716. position:absolute;
  717. left:2px;
  718. top:2px;
  719. width:16px;
  720. word-wrap:break-word;
  721. }
  722. <<<<<<< HEAD
  723. #u1201_img {
  724. =======
  725. #u1202_img {
  726. >>>>>>> 0601optimize
  727. border-width:0px;
  728. position:absolute;
  729. left:-4px;
  730. top:-4px;
  731. width:30px;
  732. height:30px;
  733. }
  734. <<<<<<< HEAD
  735. #u1201 {
  736. =======
  737. #u1202 {
  738. >>>>>>> 0601optimize
  739. border-width:0px;
  740. position:absolute;
  741. left:1060px;
  742. top:764px;
  743. width:20px;
  744. height:20px;
  745. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  746. font-weight:700;
  747. font-style:normal;
  748. font-size:14px;
  749. color:#1E1E1E;
  750. }
  751. <<<<<<< HEAD
  752. #u1201_text {
  753. =======
  754. #u1202_text {
  755. >>>>>>> 0601optimize
  756. border-width:0px;
  757. position:absolute;
  758. left:2px;
  759. top:2px;
  760. width:16px;
  761. word-wrap:break-word;
  762. }
  763. <<<<<<< HEAD
  764. #u1202 {
  765. =======
  766. #u1203 {
  767. >>>>>>> 0601optimize
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. <<<<<<< HEAD
  776. #u1203_img {
  777. =======
  778. #u1204_img {
  779. >>>>>>> 0601optimize
  780. border-width:0px;
  781. position:absolute;
  782. left:-4px;
  783. top:-4px;
  784. width:40px;
  785. height:40px;
  786. }
  787. <<<<<<< HEAD
  788. #u1203 {
  789. =======
  790. #u1204 {
  791. >>>>>>> 0601optimize
  792. border-width:0px;
  793. position:absolute;
  794. left:1173px;
  795. top:505px;
  796. width:30px;
  797. height:30px;
  798. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  799. font-weight:700;
  800. font-style:normal;
  801. font-size:18px;
  802. color:#1E1E1E;
  803. }
  804. <<<<<<< HEAD
  805. #u1203_text {
  806. =======
  807. #u1204_text {
  808. >>>>>>> 0601optimize
  809. border-width:0px;
  810. position:absolute;
  811. left:2px;
  812. top:4px;
  813. width:26px;
  814. word-wrap:break-word;
  815. }
  816. <<<<<<< HEAD
  817. #u1204_div {
  818. =======
  819. #u1205_div {
  820. >>>>>>> 0601optimize
  821. border-width:0px;
  822. position:absolute;
  823. left:0px;
  824. top:0px;
  825. width:198px;
  826. height:19px;
  827. background:inherit;
  828. background-color:rgba(255, 255, 255, 0);
  829. border:none;
  830. border-radius:0px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  835. font-weight:700;
  836. font-style:normal;
  837. font-size:16px;
  838. }
  839. <<<<<<< HEAD
  840. #u1204 {
  841. =======
  842. #u1205 {
  843. >>>>>>> 0601optimize
  844. border-width:0px;
  845. position:absolute;
  846. left:1213px;
  847. top:512px;
  848. width:198px;
  849. height:19px;
  850. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  851. font-weight:700;
  852. font-style:normal;
  853. font-size:16px;
  854. }
  855. <<<<<<< HEAD
  856. #u1204_text {
  857. =======
  858. #u1205_text {
  859. >>>>>>> 0601optimize
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:198px;
  865. word-wrap:break-word;
  866. }
  867. <<<<<<< HEAD
  868. #u1205_div {
  869. =======
  870. #u1206_div {
  871. >>>>>>> 0601optimize
  872. border-width:0px;
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:352px;
  877. height:154px;
  878. background:inherit;
  879. background-color:rgba(255, 255, 255, 0);
  880. border:none;
  881. border-radius:0px;
  882. -moz-box-shadow:none;
  883. -webkit-box-shadow:none;
  884. box-shadow:none;
  885. line-height:22px;
  886. }
  887. <<<<<<< HEAD
  888. #u1205 {
  889. =======
  890. #u1206 {
  891. >>>>>>> 0601optimize
  892. border-width:0px;
  893. position:absolute;
  894. left:1213px;
  895. top:550px;
  896. width:352px;
  897. height:154px;
  898. line-height:22px;
  899. }
  900. <<<<<<< HEAD
  901. #u1205_text {
  902. =======
  903. #u1206_text {
  904. >>>>>>> 0601optimize
  905. border-width:0px;
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:352px;
  910. word-wrap:break-word;
  911. }
  912. <<<<<<< HEAD
  913. #u1206 {
  914. =======
  915. #u1207 {
  916. >>>>>>> 0601optimize
  917. border-width:0px;
  918. position:absolute;
  919. left:1320px;
  920. top:571px;
  921. width:71px;
  922. height:23px;
  923. overflow:hidden;
  924. background-image:url('../../resources/images/transparent.gif');
  925. }
  926. <<<<<<< HEAD
  927. #u1207_div {
  928. =======
  929. #u1208_div {
  930. >>>>>>> 0601optimize
  931. border-width:0px;
  932. position:absolute;
  933. left:0px;
  934. top:0px;
  935. width:276px;
  936. height:89px;
  937. background:inherit;
  938. background-color:rgba(255, 255, 0, 1);
  939. box-sizing:border-box;
  940. border-width:1px;
  941. border-style:solid;
  942. border-color:rgba(0, 0, 0, 1);
  943. border-radius:10px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. color:#000000;
  948. text-align:left;
  949. line-height:18px;
  950. }
  951. <<<<<<< HEAD
  952. #u1207 {
  953. =======
  954. #u1208 {
  955. >>>>>>> 0601optimize
  956. border-width:0px;
  957. position:absolute;
  958. left:1247px;
  959. top:472px;
  960. width:276px;
  961. height:89px;
  962. color:#000000;
  963. text-align:left;
  964. line-height:18px;
  965. }
  966. <<<<<<< HEAD
  967. #u1207_text {
  968. =======
  969. #u1208_text {
  970. >>>>>>> 0601optimize
  971. border-width:0px;
  972. position:absolute;
  973. left:2px;
  974. top:8px;
  975. width:272px;
  976. word-wrap:break-word;
  977. }
  978. <<<<<<< HEAD
  979. #u1208 {
  980. =======
  981. #u1209 {
  982. >>>>>>> 0601optimize
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:0px;
  988. height:0px;
  989. }
  990. <<<<<<< HEAD
  991. #u1209_img {
  992. =======
  993. #u1210_img {
  994. >>>>>>> 0601optimize
  995. border-width:0px;
  996. position:absolute;
  997. left:-4px;
  998. top:-4px;
  999. width:40px;
  1000. height:40px;
  1001. }
  1002. <<<<<<< HEAD
  1003. #u1209 {
  1004. =======
  1005. #u1210 {
  1006. >>>>>>> 0601optimize
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:1173px;
  1010. top:714px;
  1011. width:30px;
  1012. height:30px;
  1013. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1014. font-weight:700;
  1015. font-style:normal;
  1016. font-size:18px;
  1017. color:#1E1E1E;
  1018. }
  1019. <<<<<<< HEAD
  1020. #u1209_text {
  1021. =======
  1022. #u1210_text {
  1023. >>>>>>> 0601optimize
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:2px;
  1027. top:4px;
  1028. width:26px;
  1029. word-wrap:break-word;
  1030. }
  1031. <<<<<<< HEAD
  1032. #u1210_div {
  1033. =======
  1034. #u1211_div {
  1035. >>>>>>> 0601optimize
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:198px;
  1041. height:19px;
  1042. background:inherit;
  1043. background-color:rgba(255, 255, 255, 0);
  1044. border:none;
  1045. border-radius:0px;
  1046. -moz-box-shadow:none;
  1047. -webkit-box-shadow:none;
  1048. box-shadow:none;
  1049. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1050. font-weight:700;
  1051. font-style:normal;
  1052. font-size:16px;
  1053. }
  1054. <<<<<<< HEAD
  1055. #u1210 {
  1056. =======
  1057. #u1211 {
  1058. >>>>>>> 0601optimize
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:1213px;
  1062. top:721px;
  1063. width:198px;
  1064. height:19px;
  1065. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1066. font-weight:700;
  1067. font-style:normal;
  1068. font-size:16px;
  1069. }
  1070. <<<<<<< HEAD
  1071. #u1210_text {
  1072. =======
  1073. #u1211_text {
  1074. >>>>>>> 0601optimize
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:0px;
  1078. top:0px;
  1079. width:198px;
  1080. word-wrap:break-word;
  1081. }
  1082. <<<<<<< HEAD
  1083. #u1211_div {
  1084. =======
  1085. #u1212_div {
  1086. >>>>>>> 0601optimize
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:352px;
  1092. height:110px;
  1093. background:inherit;
  1094. background-color:rgba(255, 255, 255, 0);
  1095. border:none;
  1096. border-radius:0px;
  1097. -moz-box-shadow:none;
  1098. -webkit-box-shadow:none;
  1099. box-shadow:none;
  1100. line-height:22px;
  1101. }
  1102. <<<<<<< HEAD
  1103. #u1211 {
  1104. =======
  1105. #u1212 {
  1106. >>>>>>> 0601optimize
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:1213px;
  1110. top:759px;
  1111. width:352px;
  1112. height:110px;
  1113. line-height:22px;
  1114. }
  1115. <<<<<<< HEAD
  1116. #u1211_text {
  1117. =======
  1118. #u1212_text {
  1119. >>>>>>> 0601optimize
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:352px;
  1125. word-wrap:break-word;
  1126. }
  1127. <<<<<<< HEAD
  1128. #u1212_div {
  1129. =======
  1130. #u1213_div {
  1131. >>>>>>> 0601optimize
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:293px;
  1137. height:123px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 0, 1);
  1140. box-sizing:border-box;
  1141. border-width:1px;
  1142. border-style:solid;
  1143. border-color:rgba(0, 0, 0, 1);
  1144. border-radius:10px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. color:#000000;
  1149. text-align:left;
  1150. line-height:18px;
  1151. }
  1152. <<<<<<< HEAD
  1153. #u1212 {
  1154. =======
  1155. #u1213 {
  1156. >>>>>>> 0601optimize
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:1230px;
  1160. top:653px;
  1161. width:293px;
  1162. height:123px;
  1163. color:#000000;
  1164. text-align:left;
  1165. line-height:18px;
  1166. }
  1167. <<<<<<< HEAD
  1168. #u1212_text {
  1169. =======
  1170. #u1213_text {
  1171. >>>>>>> 0601optimize
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:2px;
  1175. top:8px;
  1176. width:289px;
  1177. word-wrap:break-word;
  1178. }
  1179. <<<<<<< HEAD
  1180. #u1213 {
  1181. =======
  1182. #u1214 {
  1183. >>>>>>> 0601optimize
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:1300px;
  1187. top:803px;
  1188. width:119px;
  1189. height:23px;
  1190. overflow:hidden;
  1191. background-image:url('../../resources/images/transparent.gif');
  1192. }
  1193. <<<<<<< HEAD
  1194. #u1214_img {
  1195. =======
  1196. #u1215_img {
  1197. >>>>>>> 0601optimize
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:-4px;
  1201. top:-4px;
  1202. width:30px;
  1203. height:30px;
  1204. }
  1205. <<<<<<< HEAD
  1206. #u1214 {
  1207. =======
  1208. #u1215 {
  1209. >>>>>>> 0601optimize
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:1016px;
  1213. top:472px;
  1214. width:20px;
  1215. height:20px;
  1216. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1217. font-weight:700;
  1218. font-style:normal;
  1219. font-size:14px;
  1220. color:#1E1E1E;
  1221. }
  1222. <<<<<<< HEAD
  1223. #u1214_text {
  1224. =======
  1225. #u1215_text {
  1226. >>>>>>> 0601optimize
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:2px;
  1230. top:2px;
  1231. width:16px;
  1232. word-wrap:break-word;
  1233. }
  1234. <<<<<<< HEAD
  1235. #u1215_img {
  1236. =======
  1237. #u1216_img {
  1238. >>>>>>> 0601optimize
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:-4px;
  1242. top:-4px;
  1243. width:30px;
  1244. height:30px;
  1245. }
  1246. <<<<<<< HEAD
  1247. #u1215 {
  1248. =======
  1249. #u1216 {
  1250. >>>>>>> 0601optimize
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:204px;
  1254. top:757px;
  1255. width:20px;
  1256. height:20px;
  1257. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1258. font-weight:700;
  1259. font-style:normal;
  1260. font-size:14px;
  1261. color:#1E1E1E;
  1262. }
  1263. <<<<<<< HEAD
  1264. #u1215_text {
  1265. =======
  1266. #u1216_text {
  1267. >>>>>>> 0601optimize
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:2px;
  1271. top:2px;
  1272. width:16px;
  1273. word-wrap:break-word;
  1274. }
  1275. <<<<<<< HEAD
  1276. #u1216 {
  1277. =======
  1278. #u1217 {
  1279. >>>>>>> 0601optimize
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:0px;
  1285. height:0px;
  1286. }
  1287. <<<<<<< HEAD
  1288. #u1217_img {
  1289. =======
  1290. #u1218_img {
  1291. >>>>>>> 0601optimize
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:-4px;
  1295. top:-4px;
  1296. width:40px;
  1297. height:40px;
  1298. }
  1299. <<<<<<< HEAD
  1300. #u1217 {
  1301. =======
  1302. #u1218 {
  1303. >>>>>>> 0601optimize
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:1173px;
  1307. top:2024px;
  1308. width:30px;
  1309. height:30px;
  1310. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1311. font-weight:700;
  1312. font-style:normal;
  1313. font-size:18px;
  1314. color:#1E1E1E;
  1315. }
  1316. <<<<<<< HEAD
  1317. #u1217_text {
  1318. =======
  1319. #u1218_text {
  1320. >>>>>>> 0601optimize
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:2px;
  1324. top:4px;
  1325. width:26px;
  1326. word-wrap:break-word;
  1327. }
  1328. <<<<<<< HEAD
  1329. #u1218_div {
  1330. =======
  1331. #u1219_div {
  1332. >>>>>>> 0601optimize
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:131px;
  1338. height:19px;
  1339. background:inherit;
  1340. background-color:rgba(255, 255, 255, 0);
  1341. border:none;
  1342. border-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1347. font-weight:700;
  1348. font-style:normal;
  1349. font-size:16px;
  1350. }
  1351. <<<<<<< HEAD
  1352. #u1218 {
  1353. =======
  1354. #u1219 {
  1355. >>>>>>> 0601optimize
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:1213px;
  1359. top:2031px;
  1360. width:131px;
  1361. height:19px;
  1362. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1363. font-weight:700;
  1364. font-style:normal;
  1365. font-size:16px;
  1366. }
  1367. <<<<<<< HEAD
  1368. #u1218_text {
  1369. =======
  1370. #u1219_text {
  1371. >>>>>>> 0601optimize
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:131px;
  1377. word-wrap:break-word;
  1378. }
  1379. <<<<<<< HEAD
  1380. #u1219_div {
  1381. =======
  1382. #u1220_div {
  1383. >>>>>>> 0601optimize
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:352px;
  1389. height:44px;
  1390. background:inherit;
  1391. background-color:rgba(255, 255, 255, 0);
  1392. border:none;
  1393. border-radius:0px;
  1394. -moz-box-shadow:none;
  1395. -webkit-box-shadow:none;
  1396. box-shadow:none;
  1397. line-height:22px;
  1398. }
  1399. <<<<<<< HEAD
  1400. #u1219 {
  1401. =======
  1402. #u1220 {
  1403. >>>>>>> 0601optimize
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:1213px;
  1407. top:2069px;
  1408. width:352px;
  1409. height:44px;
  1410. line-height:22px;
  1411. }
  1412. <<<<<<< HEAD
  1413. #u1219_text {
  1414. =======
  1415. #u1220_text {
  1416. >>>>>>> 0601optimize
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:0px;
  1420. top:0px;
  1421. width:352px;
  1422. word-wrap:break-word;
  1423. }
  1424. <<<<<<< HEAD
  1425. #u1220 {
  1426. =======
  1427. #u1221 {
  1428. >>>>>>> 0601optimize
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:0px;
  1434. height:0px;
  1435. }
  1436. <<<<<<< HEAD
  1437. #u1221_img {
  1438. =======
  1439. #u1222_img {
  1440. >>>>>>> 0601optimize
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:-4px;
  1444. top:-4px;
  1445. width:44px;
  1446. height:44px;
  1447. }
  1448. <<<<<<< HEAD
  1449. #u1221 {
  1450. =======
  1451. #u1222 {
  1452. >>>>>>> 0601optimize
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:1173px;
  1456. top:1773px;
  1457. width:34px;
  1458. height:34px;
  1459. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1460. font-weight:700;
  1461. font-style:normal;
  1462. font-size:26px;
  1463. }
  1464. <<<<<<< HEAD
  1465. #u1221_text {
  1466. =======
  1467. #u1222_text {
  1468. >>>>>>> 0601optimize
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:2px;
  1472. top:1px;
  1473. width:30px;
  1474. word-wrap:break-word;
  1475. }
  1476. <<<<<<< HEAD
  1477. #u1222_div {
  1478. =======
  1479. #u1223_div {
  1480. >>>>>>> 0601optimize
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:0px;
  1485. width:131px;
  1486. height:19px;
  1487. background:inherit;
  1488. background-color:rgba(255, 255, 255, 0);
  1489. border:none;
  1490. border-radius:0px;
  1491. -moz-box-shadow:none;
  1492. -webkit-box-shadow:none;
  1493. box-shadow:none;
  1494. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1495. font-weight:700;
  1496. font-style:normal;
  1497. font-size:16px;
  1498. }
  1499. <<<<<<< HEAD
  1500. #u1222 {
  1501. =======
  1502. #u1223 {
  1503. >>>>>>> 0601optimize
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:1213px;
  1507. top:1780px;
  1508. width:131px;
  1509. height:19px;
  1510. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1511. font-weight:700;
  1512. font-style:normal;
  1513. font-size:16px;
  1514. }
  1515. <<<<<<< HEAD
  1516. #u1222_text {
  1517. =======
  1518. #u1223_text {
  1519. >>>>>>> 0601optimize
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:0px;
  1523. top:0px;
  1524. width:131px;
  1525. word-wrap:break-word;
  1526. }
  1527. <<<<<<< HEAD
  1528. #u1223_div {
  1529. =======
  1530. #u1224_div {
  1531. >>>>>>> 0601optimize
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:0px;
  1535. top:0px;
  1536. width:352px;
  1537. height:66px;
  1538. background:inherit;
  1539. background-color:rgba(255, 255, 255, 0);
  1540. border:none;
  1541. border-radius:0px;
  1542. -moz-box-shadow:none;
  1543. -webkit-box-shadow:none;
  1544. box-shadow:none;
  1545. line-height:22px;
  1546. }
  1547. <<<<<<< HEAD
  1548. #u1223 {
  1549. =======
  1550. #u1224 {
  1551. >>>>>>> 0601optimize
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:1213px;
  1555. top:1818px;
  1556. width:352px;
  1557. height:66px;
  1558. line-height:22px;
  1559. }
  1560. <<<<<<< HEAD
  1561. #u1223_text {
  1562. =======
  1563. #u1224_text {
  1564. >>>>>>> 0601optimize
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:0px;
  1568. top:0px;
  1569. width:352px;
  1570. word-wrap:break-word;
  1571. }
  1572. <<<<<<< HEAD
  1573. #u1224_img {
  1574. =======
  1575. #u1225_img {
  1576. >>>>>>> 0601optimize
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:-4px;
  1580. top:-4px;
  1581. width:30px;
  1582. height:30px;
  1583. }
  1584. <<<<<<< HEAD
  1585. #u1224 {
  1586. =======
  1587. #u1225 {
  1588. >>>>>>> 0601optimize
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:981px;
  1592. top:653px;
  1593. width:20px;
  1594. height:20px;
  1595. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1596. font-weight:700;
  1597. font-style:normal;
  1598. font-size:14px;
  1599. color:#1E1E1E;
  1600. }
  1601. <<<<<<< HEAD
  1602. #u1224_text {
  1603. =======
  1604. #u1225_text {
  1605. >>>>>>> 0601optimize
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:2px;
  1609. top:2px;
  1610. width:16px;
  1611. word-wrap:break-word;
  1612. }
  1613. <<<<<<< HEAD
  1614. #u1225_img {
  1615. =======
  1616. #u1226_img {
  1617. >>>>>>> 0601optimize
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:-4px;
  1621. top:-4px;
  1622. width:30px;
  1623. height:30px;
  1624. }
  1625. <<<<<<< HEAD
  1626. #u1225 {
  1627. =======
  1628. #u1226 {
  1629. >>>>>>> 0601optimize
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:1023px;
  1633. top:653px;
  1634. width:20px;
  1635. height:20px;
  1636. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1637. font-weight:700;
  1638. font-style:normal;
  1639. font-size:14px;
  1640. color:#1E1E1E;
  1641. }
  1642. <<<<<<< HEAD
  1643. #u1225_text {
  1644. =======
  1645. #u1226_text {
  1646. >>>>>>> 0601optimize
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:2px;
  1650. top:2px;
  1651. width:16px;
  1652. word-wrap:break-word;
  1653. }
  1654. <<<<<<< HEAD
  1655. #u1226_img {
  1656. =======
  1657. #u1227_img {
  1658. >>>>>>> 0601optimize
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:-4px;
  1662. top:-4px;
  1663. width:30px;
  1664. height:30px;
  1665. }
  1666. <<<<<<< HEAD
  1667. #u1226 {
  1668. =======
  1669. #u1227 {
  1670. >>>>>>> 0601optimize
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:1068px;
  1674. top:653px;
  1675. width:20px;
  1676. height:20px;
  1677. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1678. font-weight:700;
  1679. font-style:normal;
  1680. font-size:14px;
  1681. color:#1E1E1E;
  1682. }
  1683. <<<<<<< HEAD
  1684. #u1226_text {
  1685. =======
  1686. #u1227_text {
  1687. >>>>>>> 0601optimize
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:2px;
  1691. top:2px;
  1692. width:16px;
  1693. word-wrap:break-word;
  1694. }
  1695. <<<<<<< HEAD
  1696. #u1227 {
  1697. =======
  1698. #u1228 {
  1699. >>>>>>> 0601optimize
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:0px;
  1705. height:0px;
  1706. }
  1707. <<<<<<< HEAD
  1708. #u1228_img {
  1709. =======
  1710. #u1229_img {
  1711. >>>>>>> 0601optimize
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:-4px;
  1715. top:-4px;
  1716. width:40px;
  1717. height:40px;
  1718. }
  1719. <<<<<<< HEAD
  1720. #u1228 {
  1721. =======
  1722. #u1229 {
  1723. >>>>>>> 0601optimize
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:1173px;
  1727. top:1028px;
  1728. width:30px;
  1729. height:30px;
  1730. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1731. font-weight:700;
  1732. font-style:normal;
  1733. font-size:18px;
  1734. color:#1E1E1E;
  1735. }
  1736. <<<<<<< HEAD
  1737. #u1228_text {
  1738. =======
  1739. #u1229_text {
  1740. >>>>>>> 0601optimize
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:2px;
  1744. top:4px;
  1745. width:26px;
  1746. word-wrap:break-word;
  1747. }
  1748. <<<<<<< HEAD
  1749. #u1229_div {
  1750. =======
  1751. #u1230_div {
  1752. >>>>>>> 0601optimize
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:131px;
  1758. height:19px;
  1759. background:inherit;
  1760. background-color:rgba(255, 255, 255, 0);
  1761. border:none;
  1762. border-radius:0px;
  1763. -moz-box-shadow:none;
  1764. -webkit-box-shadow:none;
  1765. box-shadow:none;
  1766. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1767. font-weight:700;
  1768. font-style:normal;
  1769. font-size:16px;
  1770. color:#FF0000;
  1771. }
  1772. <<<<<<< HEAD
  1773. #u1229 {
  1774. =======
  1775. #u1230 {
  1776. >>>>>>> 0601optimize
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:1213px;
  1780. top:1035px;
  1781. width:131px;
  1782. height:19px;
  1783. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1784. font-weight:700;
  1785. font-style:normal;
  1786. font-size:16px;
  1787. color:#FF0000;
  1788. }
  1789. <<<<<<< HEAD
  1790. #u1229_text {
  1791. =======
  1792. #u1230_text {
  1793. >>>>>>> 0601optimize
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:131px;
  1799. word-wrap:break-word;
  1800. }
  1801. <<<<<<< HEAD
  1802. #u1230_div {
  1803. =======
  1804. #u1231_div {
  1805. >>>>>>> 0601optimize
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:352px;
  1811. height:198px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 255, 0);
  1814. border:none;
  1815. border-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. line-height:22px;
  1820. }
  1821. <<<<<<< HEAD
  1822. #u1230 {
  1823. =======
  1824. #u1231 {
  1825. >>>>>>> 0601optimize
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:1213px;
  1829. top:1073px;
  1830. width:352px;
  1831. height:198px;
  1832. line-height:22px;
  1833. }
  1834. <<<<<<< HEAD
  1835. #u1230_text {
  1836. =======
  1837. #u1231_text {
  1838. >>>>>>> 0601optimize
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:352px;
  1844. word-wrap:break-word;
  1845. }
  1846. <<<<<<< HEAD
  1847. #u1231 {
  1848. =======
  1849. #u1232 {
  1850. >>>>>>> 0601optimize
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:1218px;
  1854. top:1035px;
  1855. width:86px;
  1856. height:23px;
  1857. overflow:hidden;
  1858. background-image:url('../../resources/images/transparent.gif');
  1859. }
  1860. <<<<<<< HEAD
  1861. #u1232_img {
  1862. =======
  1863. #u1233_img {
  1864. >>>>>>> 0601optimize
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:276px;
  1870. height:89px;
  1871. }
  1872. <<<<<<< HEAD
  1873. #u1232 {
  1874. =======
  1875. #u1233 {
  1876. >>>>>>> 0601optimize
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:1213px;
  1880. top:939px;
  1881. width:276px;
  1882. height:89px;
  1883. color:#000000;
  1884. text-align:left;
  1885. line-height:18px;
  1886. }
  1887. <<<<<<< HEAD
  1888. #u1232_text {
  1889. =======
  1890. #u1233_text {
  1891. >>>>>>> 0601optimize
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:2px;
  1895. top:8px;
  1896. width:272px;
  1897. word-wrap:break-word;
  1898. }
  1899. <<<<<<< HEAD
  1900. #u1233_img {
  1901. =======
  1902. #u1234_img {
  1903. >>>>>>> 0601optimize
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:-4px;
  1907. top:-4px;
  1908. width:30px;
  1909. height:30px;
  1910. }
  1911. <<<<<<< HEAD
  1912. #u1233 {
  1913. =======
  1914. #u1234 {
  1915. >>>>>>> 0601optimize
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:1108px;
  1919. top:653px;
  1920. width:20px;
  1921. height:20px;
  1922. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1923. font-weight:700;
  1924. font-style:normal;
  1925. font-size:14px;
  1926. color:#1E1E1E;
  1927. }
  1928. <<<<<<< HEAD
  1929. #u1233_text {
  1930. =======
  1931. #u1234_text {
  1932. >>>>>>> 0601optimize
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:2px;
  1936. top:2px;
  1937. width:16px;
  1938. word-wrap:break-word;
  1939. }
  1940. <<<<<<< HEAD
  1941. #u1234 {
  1942. =======
  1943. #u1235 {
  1944. >>>>>>> 0601optimize
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:0px;
  1950. height:0px;
  1951. }
  1952. <<<<<<< HEAD
  1953. #u1235_img {
  1954. =======
  1955. #u1236_img {
  1956. >>>>>>> 0601optimize
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:-4px;
  1960. top:-4px;
  1961. width:40px;
  1962. height:40px;
  1963. }
  1964. <<<<<<< HEAD
  1965. #u1235 {
  1966. =======
  1967. #u1236 {
  1968. >>>>>>> 0601optimize
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:1173px;
  1972. top:1613px;
  1973. width:30px;
  1974. height:30px;
  1975. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1976. font-weight:700;
  1977. font-style:normal;
  1978. font-size:18px;
  1979. color:#1E1E1E;
  1980. }
  1981. <<<<<<< HEAD
  1982. #u1235_text {
  1983. =======
  1984. #u1236_text {
  1985. >>>>>>> 0601optimize
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:2px;
  1989. top:4px;
  1990. width:26px;
  1991. word-wrap:break-word;
  1992. }
  1993. <<<<<<< HEAD
  1994. #u1236_div {
  1995. =======
  1996. #u1237_div {
  1997. >>>>>>> 0601optimize
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:131px;
  2003. height:19px;
  2004. background:inherit;
  2005. background-color:rgba(255, 255, 255, 0);
  2006. border:none;
  2007. border-radius:0px;
  2008. -moz-box-shadow:none;
  2009. -webkit-box-shadow:none;
  2010. box-shadow:none;
  2011. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2012. font-weight:700;
  2013. font-style:normal;
  2014. font-size:16px;
  2015. }
  2016. <<<<<<< HEAD
  2017. #u1236 {
  2018. =======
  2019. #u1237 {
  2020. >>>>>>> 0601optimize
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:1213px;
  2024. top:1620px;
  2025. width:131px;
  2026. height:19px;
  2027. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2028. font-weight:700;
  2029. font-style:normal;
  2030. font-size:16px;
  2031. }
  2032. <<<<<<< HEAD
  2033. #u1236_text {
  2034. =======
  2035. #u1237_text {
  2036. >>>>>>> 0601optimize
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:131px;
  2042. word-wrap:break-word;
  2043. }
  2044. <<<<<<< HEAD
  2045. #u1237_div {
  2046. =======
  2047. #u1238_div {
  2048. >>>>>>> 0601optimize
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:352px;
  2054. height:88px;
  2055. background:inherit;
  2056. background-color:rgba(255, 255, 255, 0);
  2057. border:none;
  2058. border-radius:0px;
  2059. -moz-box-shadow:none;
  2060. -webkit-box-shadow:none;
  2061. box-shadow:none;
  2062. line-height:22px;
  2063. }
  2064. <<<<<<< HEAD
  2065. #u1237 {
  2066. =======
  2067. #u1238 {
  2068. >>>>>>> 0601optimize
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:1213px;
  2072. top:1658px;
  2073. width:352px;
  2074. height:88px;
  2075. line-height:22px;
  2076. }
  2077. <<<<<<< HEAD
  2078. #u1237_text {
  2079. =======
  2080. #u1238_text {
  2081. >>>>>>> 0601optimize
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:352px;
  2087. word-wrap:break-word;
  2088. }
  2089. <<<<<<< HEAD
  2090. #u1238 {
  2091. =======
  2092. #u1239 {
  2093. >>>>>>> 0601optimize
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:0px;
  2099. height:0px;
  2100. }
  2101. <<<<<<< HEAD
  2102. #u1239_img {
  2103. =======
  2104. #u1240_img {
  2105. >>>>>>> 0601optimize
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:-4px;
  2109. top:-4px;
  2110. width:40px;
  2111. height:40px;
  2112. }
  2113. <<<<<<< HEAD
  2114. #u1239 {
  2115. =======
  2116. #u1240 {
  2117. >>>>>>> 0601optimize
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:1173px;
  2121. top:1360px;
  2122. width:30px;
  2123. height:30px;
  2124. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2125. font-weight:700;
  2126. font-style:normal;
  2127. font-size:18px;
  2128. color:#1E1E1E;
  2129. }
  2130. <<<<<<< HEAD
  2131. #u1239_text {
  2132. =======
  2133. #u1240_text {
  2134. >>>>>>> 0601optimize
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:2px;
  2138. top:4px;
  2139. width:26px;
  2140. word-wrap:break-word;
  2141. }
  2142. <<<<<<< HEAD
  2143. #u1240_div {
  2144. =======
  2145. #u1241_div {
  2146. >>>>>>> 0601optimize
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:77px;
  2152. height:19px;
  2153. background:inherit;
  2154. background-color:rgba(255, 255, 255, 0);
  2155. border:none;
  2156. border-radius:0px;
  2157. -moz-box-shadow:none;
  2158. -webkit-box-shadow:none;
  2159. box-shadow:none;
  2160. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2161. font-weight:700;
  2162. font-style:normal;
  2163. font-size:16px;
  2164. color:#FF0000;
  2165. }
  2166. <<<<<<< HEAD
  2167. #u1240 {
  2168. =======
  2169. #u1241 {
  2170. >>>>>>> 0601optimize
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:1213px;
  2174. top:1367px;
  2175. width:77px;
  2176. height:19px;
  2177. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2178. font-weight:700;
  2179. font-style:normal;
  2180. font-size:16px;
  2181. color:#FF0000;
  2182. }
  2183. <<<<<<< HEAD
  2184. #u1240_text {
  2185. =======
  2186. #u1241_text {
  2187. >>>>>>> 0601optimize
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:77px;
  2193. word-wrap:break-word;
  2194. }
  2195. <<<<<<< HEAD
  2196. #u1241_div {
  2197. =======
  2198. #u1242_div {
  2199. >>>>>>> 0601optimize
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:352px;
  2205. height:198px;
  2206. background:inherit;
  2207. background-color:rgba(255, 255, 255, 0);
  2208. border:none;
  2209. border-radius:0px;
  2210. -moz-box-shadow:none;
  2211. -webkit-box-shadow:none;
  2212. box-shadow:none;
  2213. line-height:22px;
  2214. }
  2215. <<<<<<< HEAD
  2216. #u1241 {
  2217. =======
  2218. #u1242 {
  2219. >>>>>>> 0601optimize
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:1213px;
  2223. top:1405px;
  2224. width:352px;
  2225. height:198px;
  2226. line-height:22px;
  2227. }
  2228. <<<<<<< HEAD
  2229. #u1241_text {
  2230. =======
  2231. #u1242_text {
  2232. >>>>>>> 0601optimize
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:352px;
  2238. word-wrap:break-word;
  2239. }
  2240. <<<<<<< HEAD
  2241. #u1242_img {
  2242. =======
  2243. #u1243_img {
  2244. >>>>>>> 0601optimize
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:1155px;
  2250. height:583px;
  2251. }
  2252. <<<<<<< HEAD
  2253. #u1242 {
  2254. =======
  2255. #u1243 {
  2256. >>>>>>> 0601optimize
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:8px;
  2260. top:1028px;
  2261. width:1155px;
  2262. height:583px;
  2263. }
  2264. <<<<<<< HEAD
  2265. #u1242_text {
  2266. =======
  2267. #u1243_text {
  2268. >>>>>>> 0601optimize
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:0px;
  2274. visibility:hidden;
  2275. word-wrap:break-word;
  2276. }
  2277. <<<<<<< HEAD
  2278. #u1243 {
  2279. =======
  2280. #u1244 {
  2281. >>>>>>> 0601optimize
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:0px;
  2287. height:0px;
  2288. }
  2289. <<<<<<< HEAD
  2290. #u1244_img {
  2291. =======
  2292. #u1245_img {
  2293. >>>>>>> 0601optimize
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:-4px;
  2297. top:-4px;
  2298. width:40px;
  2299. height:40px;
  2300. }
  2301. <<<<<<< HEAD
  2302. #u1244 {
  2303. =======
  2304. #u1245 {
  2305. >>>>>>> 0601optimize
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:1173px;
  2309. top:1903px;
  2310. width:30px;
  2311. height:30px;
  2312. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2313. font-weight:700;
  2314. font-style:normal;
  2315. font-size:18px;
  2316. color:#1E1E1E;
  2317. }
  2318. <<<<<<< HEAD
  2319. #u1244_text {
  2320. =======
  2321. #u1245_text {
  2322. >>>>>>> 0601optimize
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:2px;
  2326. top:4px;
  2327. width:26px;
  2328. word-wrap:break-word;
  2329. }
  2330. <<<<<<< HEAD
  2331. #u1245_div {
  2332. =======
  2333. #u1246_div {
  2334. >>>>>>> 0601optimize
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:131px;
  2340. height:19px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 0);
  2343. border:none;
  2344. border-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2349. font-weight:700;
  2350. font-style:normal;
  2351. font-size:16px;
  2352. }
  2353. <<<<<<< HEAD
  2354. #u1245 {
  2355. =======
  2356. #u1246 {
  2357. >>>>>>> 0601optimize
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:1213px;
  2361. top:1910px;
  2362. width:131px;
  2363. height:19px;
  2364. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2365. font-weight:700;
  2366. font-style:normal;
  2367. font-size:16px;
  2368. }
  2369. <<<<<<< HEAD
  2370. #u1245_text {
  2371. =======
  2372. #u1246_text {
  2373. >>>>>>> 0601optimize
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:131px;
  2379. word-wrap:break-word;
  2380. }
  2381. <<<<<<< HEAD
  2382. #u1246_div {
  2383. =======
  2384. #u1247_div {
  2385. >>>>>>> 0601optimize
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:352px;
  2391. height:66px;
  2392. background:inherit;
  2393. background-color:rgba(255, 255, 255, 0);
  2394. border:none;
  2395. border-radius:0px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. line-height:22px;
  2400. }
  2401. <<<<<<< HEAD
  2402. #u1246 {
  2403. =======
  2404. #u1247 {
  2405. >>>>>>> 0601optimize
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:1213px;
  2409. top:1948px;
  2410. width:352px;
  2411. height:66px;
  2412. line-height:22px;
  2413. }
  2414. <<<<<<< HEAD
  2415. #u1246_text {
  2416. =======
  2417. #u1247_text {
  2418. >>>>>>> 0601optimize
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:352px;
  2424. word-wrap:break-word;
  2425. }
  2426. <<<<<<< HEAD
  2427. #u1247_img {
  2428. =======
  2429. #u1248_img {
  2430. >>>>>>> 0601optimize
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:1155px;
  2436. height:583px;
  2437. }
  2438. <<<<<<< HEAD
  2439. #u1247 {
  2440. =======
  2441. #u1248 {
  2442. >>>>>>> 0601optimize
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:8px;
  2446. top:1668px;
  2447. width:1155px;
  2448. height:583px;
  2449. }
  2450. <<<<<<< HEAD
  2451. #u1247_text {
  2452. =======
  2453. #u1248_text {
  2454. >>>>>>> 0601optimize
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:0px;
  2460. visibility:hidden;
  2461. word-wrap:break-word;
  2462. }
  2463. <<<<<<< HEAD
  2464. #u1248_div {
  2465. =======
  2466. #u1249_div {
  2467. >>>>>>> 0601optimize
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:210px;
  2473. height:22px;
  2474. background:inherit;
  2475. background-color:rgba(255, 255, 255, 0);
  2476. border:none;
  2477. border-radius:0px;
  2478. -moz-box-shadow:none;
  2479. -webkit-box-shadow:none;
  2480. box-shadow:none;
  2481. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2482. font-weight:700;
  2483. font-style:normal;
  2484. font-size:18px;
  2485. }
  2486. <<<<<<< HEAD
  2487. #u1248 {
  2488. =======
  2489. #u1249 {
  2490. >>>>>>> 0601optimize
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:8px;
  2494. top:1640px;
  2495. width:210px;
  2496. height:22px;
  2497. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2498. font-weight:700;
  2499. font-style:normal;
  2500. font-size:18px;
  2501. }
  2502. <<<<<<< HEAD
  2503. #u1248_text {
  2504. =======
  2505. #u1249_text {
  2506. >>>>>>> 0601optimize
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:210px;
  2512. white-space:nowrap;
  2513. }
  2514. <<<<<<< HEAD
  2515. #u1249 {
  2516. =======
  2517. #u1250 {
  2518. >>>>>>> 0601optimize
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:1218px;
  2522. top:1365px;
  2523. width:59px;
  2524. height:23px;
  2525. overflow:hidden;
  2526. background-image:url('../../resources/images/transparent.gif');
  2527. }
  2528. <<<<<<< HEAD
  2529. #u1250_div {
  2530. =======
  2531. #u1251_div {
  2532. >>>>>>> 0601optimize
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:270px;
  2538. height:224px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 0, 1);
  2541. box-sizing:border-box;
  2542. border-width:1px;
  2543. border-style:solid;
  2544. border-color:rgba(0, 0, 0, 1);
  2545. border-radius:10px;
  2546. -moz-box-shadow:none;
  2547. -webkit-box-shadow:none;
  2548. box-shadow:none;
  2549. color:#000000;
  2550. text-align:left;
  2551. line-height:18px;
  2552. }
  2553. <<<<<<< HEAD
  2554. #u1250 {
  2555. =======
  2556. #u1251 {
  2557. >>>>>>> 0601optimize
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:1213px;
  2561. top:1133px;
  2562. width:270px;
  2563. height:224px;
  2564. color:#000000;
  2565. text-align:left;
  2566. line-height:18px;
  2567. }
  2568. <<<<<<< HEAD
  2569. #u1250_text {
  2570. =======
  2571. #u1251_text {
  2572. >>>>>>> 0601optimize
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:2px;
  2576. top:22px;
  2577. width:266px;
  2578. word-wrap:break-word;
  2579. }
  2580. <<<<<<< HEAD
  2581. #u1251 {
  2582. =======
  2583. #u1252 {
  2584. >>>>>>> 0601optimize
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:1218px;
  2588. top:367px;
  2589. width:178px;
  2590. height:23px;
  2591. overflow:hidden;
  2592. background-image:url('../../resources/images/transparent.gif');
  2593. }
  2594. <<<<<<< HEAD
  2595. #u1252_div {
  2596. =======
  2597. #u1253_div {
  2598. >>>>>>> 0601optimize
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:291px;
  2604. height:96px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 0, 1);
  2607. box-sizing:border-box;
  2608. border-width:1px;
  2609. border-style:solid;
  2610. border-color:rgba(0, 0, 0, 1);
  2611. border-radius:10px;
  2612. -moz-box-shadow:none;
  2613. -webkit-box-shadow:none;
  2614. box-shadow:none;
  2615. color:#000000;
  2616. text-align:left;
  2617. line-height:18px;
  2618. }
  2619. <<<<<<< HEAD
  2620. #u1252 {
  2621. =======
  2622. #u1253 {
  2623. >>>>>>> 0601optimize
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:1218px;
  2627. top:262px;
  2628. width:291px;
  2629. height:96px;
  2630. color:#000000;
  2631. text-align:left;
  2632. line-height:18px;
  2633. }
  2634. <<<<<<< HEAD
  2635. #u1252_text {
  2636. =======
  2637. #u1253_text {
  2638. >>>>>>> 0601optimize
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:2px;
  2642. top:12px;
  2643. width:287px;
  2644. word-wrap:break-word;
  2645. }
  2646. <<<<<<< HEAD
  2647. #u1253_div {
  2648. =======
  2649. #u1254_div {
  2650. >>>>>>> 0601optimize
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:210px;
  2656. height:22px;
  2657. background:inherit;
  2658. background-color:rgba(255, 255, 255, 0);
  2659. border:none;
  2660. border-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2665. font-weight:700;
  2666. font-style:normal;
  2667. font-size:18px;
  2668. }
  2669. <<<<<<< HEAD
  2670. #u1253 {
  2671. =======
  2672. #u1254 {
  2673. >>>>>>> 0601optimize
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:8px;
  2677. top:990px;
  2678. width:210px;
  2679. height:22px;
  2680. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2681. font-weight:700;
  2682. font-style:normal;
  2683. font-size:18px;
  2684. }
  2685. <<<<<<< HEAD
  2686. #u1253_text {
  2687. =======
  2688. #u1254_text {
  2689. >>>>>>> 0601optimize
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:210px;
  2695. white-space:nowrap;
  2696. }
  2697. <<<<<<< HEAD
  2698. #u1254_div {
  2699. =======
  2700. #u1255_div {
  2701. >>>>>>> 0601optimize
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:246px;
  2707. height:22px;
  2708. background:inherit;
  2709. background-color:rgba(255, 255, 255, 0);
  2710. border:none;
  2711. border-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2716. font-weight:700;
  2717. font-style:normal;
  2718. font-size:18px;
  2719. }
  2720. <<<<<<< HEAD
  2721. #u1254 {
  2722. =======
  2723. #u1255 {
  2724. >>>>>>> 0601optimize
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:8px;
  2728. top:2289px;
  2729. width:246px;
  2730. height:22px;
  2731. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2732. font-weight:700;
  2733. font-style:normal;
  2734. font-size:18px;
  2735. }
  2736. <<<<<<< HEAD
  2737. #u1254_text {
  2738. =======
  2739. #u1255_text {
  2740. >>>>>>> 0601optimize
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:246px;
  2746. white-space:nowrap;
  2747. }
  2748. <<<<<<< HEAD
  2749. #u1255_div {
  2750. =======
  2751. #u1256_div {
  2752. >>>>>>> 0601optimize
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:163px;
  2758. height:22px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 0);
  2761. border:none;
  2762. border-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2767. font-weight:700;
  2768. font-style:normal;
  2769. font-size:18px;
  2770. }
  2771. <<<<<<< HEAD
  2772. #u1255 {
  2773. =======
  2774. #u1256 {
  2775. >>>>>>> 0601optimize
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:8px;
  2779. top:2367px;
  2780. width:163px;
  2781. height:22px;
  2782. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2783. font-weight:700;
  2784. font-style:normal;
  2785. font-size:18px;
  2786. }
  2787. <<<<<<< HEAD
  2788. #u1255_text {
  2789. =======
  2790. #u1256_text {
  2791. >>>>>>> 0601optimize
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:163px;
  2797. white-space:nowrap;
  2798. }
  2799. <<<<<<< HEAD
  2800. #u1256_img {
  2801. =======
  2802. #u1257_img {
  2803. >>>>>>> 0601optimize
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:1155px;
  2809. height:583px;
  2810. }
  2811. <<<<<<< HEAD
  2812. #u1256 {
  2813. =======
  2814. #u1257 {
  2815. >>>>>>> 0601optimize
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:8px;
  2819. top:2399px;
  2820. width:1155px;
  2821. height:583px;
  2822. }
  2823. <<<<<<< HEAD
  2824. #u1256_text {
  2825. =======
  2826. #u1257_text {
  2827. >>>>>>> 0601optimize
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:0px;
  2833. visibility:hidden;
  2834. word-wrap:break-word;
  2835. }
  2836. <<<<<<< HEAD
  2837. #u1257_img {
  2838. =======
  2839. #u1258_img {
  2840. >>>>>>> 0601optimize
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:-4px;
  2844. top:-4px;
  2845. width:30px;
  2846. height:30px;
  2847. }
  2848. <<<<<<< HEAD
  2849. #u1257 {
  2850. =======
  2851. #u1258 {
  2852. >>>>>>> 0601optimize
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:212px;
  2856. top:2597px;
  2857. width:20px;
  2858. height:20px;
  2859. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2860. font-weight:700;
  2861. font-style:normal;
  2862. font-size:14px;
  2863. color:#1E1E1E;
  2864. }
  2865. <<<<<<< HEAD
  2866. #u1257_text {
  2867. =======
  2868. #u1258_text {
  2869. >>>>>>> 0601optimize
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:2px;
  2873. top:2px;
  2874. width:16px;
  2875. word-wrap:break-word;
  2876. }
  2877. <<<<<<< HEAD
  2878. #u1258_div {
  2879. =======
  2880. #u1259_div {
  2881. >>>>>>> 0601optimize
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:163px;
  2887. height:22px;
  2888. background:inherit;
  2889. background-color:rgba(255, 255, 255, 0);
  2890. border:none;
  2891. border-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2896. font-weight:700;
  2897. font-style:normal;
  2898. font-size:18px;
  2899. }
  2900. <<<<<<< HEAD
  2901. #u1258 {
  2902. =======
  2903. #u1259 {
  2904. >>>>>>> 0601optimize
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:8px;
  2908. top:5738px;
  2909. width:163px;
  2910. height:22px;
  2911. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2912. font-weight:700;
  2913. font-style:normal;
  2914. font-size:18px;
  2915. }
  2916. <<<<<<< HEAD
  2917. #u1258_text {
  2918. =======
  2919. #u1259_text {
  2920. >>>>>>> 0601optimize
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:163px;
  2926. white-space:nowrap;
  2927. }
  2928. <<<<<<< HEAD
  2929. #u1259_img {
  2930. =======
  2931. #u1260_img {
  2932. >>>>>>> 0601optimize
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:1155px;
  2938. height:583px;
  2939. }
  2940. <<<<<<< HEAD
  2941. #u1259 {
  2942. =======
  2943. #u1260 {
  2944. >>>>>>> 0601optimize
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:8px;
  2948. top:5779px;
  2949. width:1155px;
  2950. height:583px;
  2951. }
  2952. <<<<<<< HEAD
  2953. #u1259_text {
  2954. =======
  2955. #u1260_text {
  2956. >>>>>>> 0601optimize
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:0px;
  2962. visibility:hidden;
  2963. word-wrap:break-word;
  2964. }
  2965. <<<<<<< HEAD
  2966. #u1260_img {
  2967. =======
  2968. #u1261_img {
  2969. >>>>>>> 0601optimize
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:-4px;
  2973. top:-4px;
  2974. width:30px;
  2975. height:30px;
  2976. }
  2977. <<<<<<< HEAD
  2978. #u1260 {
  2979. =======
  2980. #u1261 {
  2981. >>>>>>> 0601optimize
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:212px;
  2985. top:5971px;
  2986. width:20px;
  2987. height:20px;
  2988. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2989. font-weight:700;
  2990. font-style:normal;
  2991. font-size:14px;
  2992. color:#1E1E1E;
  2993. }
  2994. <<<<<<< HEAD
  2995. #u1260_text {
  2996. =======
  2997. #u1261_text {
  2998. >>>>>>> 0601optimize
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:2px;
  3002. top:2px;
  3003. width:16px;
  3004. word-wrap:break-word;
  3005. }
  3006. <<<<<<< HEAD
  3007. #u1261 {
  3008. =======
  3009. #u1262 {
  3010. >>>>>>> 0601optimize
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:0px;
  3016. height:0px;
  3017. }
  3018. <<<<<<< HEAD
  3019. #u1262_img {
  3020. =======
  3021. #u1263_img {
  3022. >>>>>>> 0601optimize
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:-4px;
  3026. top:-4px;
  3027. width:40px;
  3028. height:40px;
  3029. }
  3030. <<<<<<< HEAD
  3031. #u1262 {
  3032. =======
  3033. #u1263 {
  3034. >>>>>>> 0601optimize
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:1172px;
  3038. top:2400px;
  3039. width:30px;
  3040. height:30px;
  3041. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3042. font-weight:700;
  3043. font-style:normal;
  3044. font-size:18px;
  3045. color:#1E1E1E;
  3046. }
  3047. <<<<<<< HEAD
  3048. #u1262_text {
  3049. =======
  3050. #u1263_text {
  3051. >>>>>>> 0601optimize
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:2px;
  3055. top:4px;
  3056. width:26px;
  3057. word-wrap:break-word;
  3058. }
  3059. <<<<<<< HEAD
  3060. #u1263_div {
  3061. =======
  3062. #u1264_div {
  3063. >>>>>>> 0601optimize
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:131px;
  3069. height:19px;
  3070. background:inherit;
  3071. background-color:rgba(255, 255, 255, 0);
  3072. border:none;
  3073. border-radius:0px;
  3074. -moz-box-shadow:none;
  3075. -webkit-box-shadow:none;
  3076. box-shadow:none;
  3077. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3078. font-weight:700;
  3079. font-style:normal;
  3080. font-size:16px;
  3081. }
  3082. <<<<<<< HEAD
  3083. #u1263 {
  3084. =======
  3085. #u1264 {
  3086. >>>>>>> 0601optimize
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:1212px;
  3090. top:2407px;
  3091. width:131px;
  3092. height:19px;
  3093. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3094. font-weight:700;
  3095. font-style:normal;
  3096. font-size:16px;
  3097. }
  3098. <<<<<<< HEAD
  3099. #u1263_text {
  3100. =======
  3101. #u1264_text {
  3102. >>>>>>> 0601optimize
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:131px;
  3108. word-wrap:break-word;
  3109. }
  3110. <<<<<<< HEAD
  3111. #u1264_div {
  3112. =======
  3113. #u1265_div {
  3114. >>>>>>> 0601optimize
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:352px;
  3120. height:154px;
  3121. background:inherit;
  3122. background-color:rgba(255, 255, 255, 0);
  3123. border:none;
  3124. border-radius:0px;
  3125. -moz-box-shadow:none;
  3126. -webkit-box-shadow:none;
  3127. box-shadow:none;
  3128. line-height:22px;
  3129. }
  3130. <<<<<<< HEAD
  3131. #u1264 {
  3132. =======
  3133. #u1265 {
  3134. >>>>>>> 0601optimize
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:1212px;
  3138. top:2445px;
  3139. width:352px;
  3140. height:154px;
  3141. line-height:22px;
  3142. }
  3143. <<<<<<< HEAD
  3144. #u1264_text {
  3145. =======
  3146. #u1265_text {
  3147. >>>>>>> 0601optimize
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:352px;
  3153. word-wrap:break-word;
  3154. }
  3155. <<<<<<< HEAD
  3156. #u1265 {
  3157. =======
  3158. #u1266 {
  3159. >>>>>>> 0601optimize
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:1355px;
  3163. top:2554px;
  3164. width:93px;
  3165. height:25px;
  3166. overflow:hidden;
  3167. background-image:url('../../resources/images/transparent.gif');
  3168. }
  3169. <<<<<<< HEAD
  3170. #u1266_div {
  3171. =======
  3172. #u1267_div {
  3173. >>>>>>> 0601optimize
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:279px;
  3179. height:105px;
  3180. background:inherit;
  3181. background-color:rgba(255, 255, 0, 1);
  3182. box-sizing:border-box;
  3183. border-width:1px;
  3184. border-style:solid;
  3185. border-color:rgba(0, 0, 0, 1);
  3186. border-radius:10px;
  3187. -moz-box-shadow:none;
  3188. -webkit-box-shadow:none;
  3189. box-shadow:none;
  3190. text-align:left;
  3191. line-height:18px;
  3192. }
  3193. <<<<<<< HEAD
  3194. #u1266 {
  3195. =======
  3196. #u1267 {
  3197. >>>>>>> 0601optimize
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:1249px;
  3201. top:2439px;
  3202. width:279px;
  3203. height:105px;
  3204. text-align:left;
  3205. line-height:18px;
  3206. }
  3207. <<<<<<< HEAD
  3208. #u1266_text {
  3209. =======
  3210. #u1267_text {
  3211. >>>>>>> 0601optimize
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:2px;
  3215. top:13px;
  3216. width:275px;
  3217. word-wrap:break-word;
  3218. }
  3219. <<<<<<< HEAD
  3220. #u1267 {
  3221. =======
  3222. #u1268 {
  3223. >>>>>>> 0601optimize
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:1374px;
  3227. top:2490px;
  3228. width:54px;
  3229. height:20px;
  3230. overflow:hidden;
  3231. background-image:url('../../resources/images/transparent.gif');
  3232. }
  3233. <<<<<<< HEAD
  3234. #u1268 {
  3235. =======
  3236. #u1269 {
  3237. >>>>>>> 0601optimize
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:1285px;
  3241. top:2574px;
  3242. width:70px;
  3243. height:25px;
  3244. overflow:hidden;
  3245. background-image:url('../../resources/images/transparent.gif');
  3246. }
  3247. <<<<<<< HEAD
  3248. #u1269_img {
  3249. =======
  3250. #u1270_img {
  3251. >>>>>>> 0601optimize
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:1155px;
  3257. height:583px;
  3258. }
  3259. <<<<<<< HEAD
  3260. #u1269 {
  3261. =======
  3262. #u1270 {
  3263. >>>>>>> 0601optimize
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:8px;
  3267. top:6430px;
  3268. width:1155px;
  3269. height:583px;
  3270. }
  3271. <<<<<<< HEAD
  3272. #u1269_text {
  3273. =======
  3274. #u1270_text {
  3275. >>>>>>> 0601optimize
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:0px;
  3281. visibility:hidden;
  3282. word-wrap:break-word;
  3283. }
  3284. <<<<<<< HEAD
  3285. #u1270_div {
  3286. =======
  3287. #u1271_div {
  3288. >>>>>>> 0601optimize
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:234px;
  3294. height:22px;
  3295. background:inherit;
  3296. background-color:rgba(255, 255, 255, 0);
  3297. border:none;
  3298. border-radius:0px;
  3299. -moz-box-shadow:none;
  3300. -webkit-box-shadow:none;
  3301. box-shadow:none;
  3302. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3303. font-weight:700;
  3304. font-style:normal;
  3305. font-size:18px;
  3306. }
  3307. <<<<<<< HEAD
  3308. #u1270 {
  3309. =======
  3310. #u1271 {
  3311. >>>>>>> 0601optimize
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:8px;
  3315. top:6398px;
  3316. width:234px;
  3317. height:22px;
  3318. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3319. font-weight:700;
  3320. font-style:normal;
  3321. font-size:18px;
  3322. }
  3323. <<<<<<< HEAD
  3324. #u1270_text {
  3325. =======
  3326. #u1271_text {
  3327. >>>>>>> 0601optimize
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:234px;
  3333. word-wrap:break-word;
  3334. }
  3335. <<<<<<< HEAD
  3336. #u1271_img {
  3337. =======
  3338. #u1272_img {
  3339. >>>>>>> 0601optimize
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:1155px;
  3345. height:583px;
  3346. }
  3347. <<<<<<< HEAD
  3348. #u1271 {
  3349. =======
  3350. #u1272 {
  3351. >>>>>>> 0601optimize
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:8px;
  3355. top:7104px;
  3356. width:1155px;
  3357. height:583px;
  3358. }
  3359. <<<<<<< HEAD
  3360. #u1271_text {
  3361. =======
  3362. #u1272_text {
  3363. >>>>>>> 0601optimize
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:0px;
  3369. visibility:hidden;
  3370. word-wrap:break-word;
  3371. }
  3372. <<<<<<< HEAD
  3373. #u1272_div {
  3374. =======
  3375. #u1273_div {
  3376. >>>>>>> 0601optimize
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:0px;
  3380. top:0px;
  3381. width:234px;
  3382. height:22px;
  3383. background:inherit;
  3384. background-color:rgba(255, 255, 255, 0);
  3385. border:none;
  3386. border-radius:0px;
  3387. -moz-box-shadow:none;
  3388. -webkit-box-shadow:none;
  3389. box-shadow:none;
  3390. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3391. font-weight:700;
  3392. font-style:normal;
  3393. font-size:18px;
  3394. }
  3395. <<<<<<< HEAD
  3396. #u1272 {
  3397. =======
  3398. #u1273 {
  3399. >>>>>>> 0601optimize
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:8px;
  3403. top:7072px;
  3404. width:234px;
  3405. height:22px;
  3406. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3407. font-weight:700;
  3408. font-style:normal;
  3409. font-size:18px;
  3410. }
  3411. <<<<<<< HEAD
  3412. #u1272_text {
  3413. =======
  3414. #u1273_text {
  3415. >>>>>>> 0601optimize
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:234px;
  3421. word-wrap:break-word;
  3422. }
  3423. <<<<<<< HEAD
  3424. #u1273 {
  3425. =======
  3426. #u1274 {
  3427. >>>>>>> 0601optimize
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:0px;
  3433. height:0px;
  3434. }
  3435. <<<<<<< HEAD
  3436. #u1274_img {
  3437. =======
  3438. #u1275_img {
  3439. >>>>>>> 0601optimize
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:-4px;
  3443. top:-4px;
  3444. width:44px;
  3445. height:44px;
  3446. }
  3447. <<<<<<< HEAD
  3448. #u1274 {
  3449. =======
  3450. #u1275 {
  3451. >>>>>>> 0601optimize
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:1173px;
  3455. top:6008px;
  3456. width:34px;
  3457. height:34px;
  3458. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3459. font-weight:700;
  3460. font-style:normal;
  3461. font-size:26px;
  3462. }
  3463. <<<<<<< HEAD
  3464. #u1274_text {
  3465. =======
  3466. #u1275_text {
  3467. >>>>>>> 0601optimize
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:2px;
  3471. top:1px;
  3472. width:30px;
  3473. word-wrap:break-word;
  3474. }
  3475. <<<<<<< HEAD
  3476. #u1275_div {
  3477. =======
  3478. #u1276_div {
  3479. >>>>>>> 0601optimize
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:131px;
  3485. height:19px;
  3486. background:inherit;
  3487. background-color:rgba(255, 255, 255, 0);
  3488. border:none;
  3489. border-radius:0px;
  3490. -moz-box-shadow:none;
  3491. -webkit-box-shadow:none;
  3492. box-shadow:none;
  3493. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3494. font-weight:700;
  3495. font-style:normal;
  3496. font-size:16px;
  3497. }
  3498. <<<<<<< HEAD
  3499. #u1275 {
  3500. =======
  3501. #u1276 {
  3502. >>>>>>> 0601optimize
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:1213px;
  3506. top:6015px;
  3507. width:131px;
  3508. height:19px;
  3509. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3510. font-weight:700;
  3511. font-style:normal;
  3512. font-size:16px;
  3513. }
  3514. <<<<<<< HEAD
  3515. #u1275_text {
  3516. =======
  3517. #u1276_text {
  3518. >>>>>>> 0601optimize
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:131px;
  3524. word-wrap:break-word;
  3525. }
  3526. <<<<<<< HEAD
  3527. #u1276_div {
  3528. =======
  3529. #u1277_div {
  3530. >>>>>>> 0601optimize
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:352px;
  3536. height:66px;
  3537. background:inherit;
  3538. background-color:rgba(255, 255, 255, 0);
  3539. border:none;
  3540. border-radius:0px;
  3541. -moz-box-shadow:none;
  3542. -webkit-box-shadow:none;
  3543. box-shadow:none;
  3544. line-height:22px;
  3545. }
  3546. <<<<<<< HEAD
  3547. #u1276 {
  3548. =======
  3549. #u1277 {
  3550. >>>>>>> 0601optimize
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:1213px;
  3554. top:6053px;
  3555. width:352px;
  3556. height:66px;
  3557. line-height:22px;
  3558. }
  3559. <<<<<<< HEAD
  3560. #u1276_text {
  3561. =======
  3562. #u1277_text {
  3563. >>>>>>> 0601optimize
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:352px;
  3569. word-wrap:break-word;
  3570. }
  3571. <<<<<<< HEAD
  3572. #u1277 {
  3573. =======
  3574. #u1278 {
  3575. >>>>>>> 0601optimize
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:0px;
  3581. height:0px;
  3582. }
  3583. <<<<<<< HEAD
  3584. #u1278_img {
  3585. =======
  3586. #u1279_img {
  3587. >>>>>>> 0601optimize
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:-4px;
  3591. top:-4px;
  3592. width:44px;
  3593. height:44px;
  3594. }
  3595. <<<<<<< HEAD
  3596. #u1278 {
  3597. =======
  3598. #u1279 {
  3599. >>>>>>> 0601optimize
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:1173px;
  3603. top:6134px;
  3604. width:34px;
  3605. height:34px;
  3606. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3607. font-weight:700;
  3608. font-style:normal;
  3609. font-size:26px;
  3610. }
  3611. <<<<<<< HEAD
  3612. #u1278_text {
  3613. =======
  3614. #u1279_text {
  3615. >>>>>>> 0601optimize
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:2px;
  3619. top:1px;
  3620. width:30px;
  3621. word-wrap:break-word;
  3622. }
  3623. <<<<<<< HEAD
  3624. #u1279_div {
  3625. =======
  3626. #u1280_div {
  3627. >>>>>>> 0601optimize
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:131px;
  3633. height:19px;
  3634. background:inherit;
  3635. background-color:rgba(255, 255, 255, 0);
  3636. border:none;
  3637. border-radius:0px;
  3638. -moz-box-shadow:none;
  3639. -webkit-box-shadow:none;
  3640. box-shadow:none;
  3641. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3642. font-weight:700;
  3643. font-style:normal;
  3644. font-size:16px;
  3645. }
  3646. <<<<<<< HEAD
  3647. #u1279 {
  3648. =======
  3649. #u1280 {
  3650. >>>>>>> 0601optimize
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:1213px;
  3654. top:6141px;
  3655. width:131px;
  3656. height:19px;
  3657. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3658. font-weight:700;
  3659. font-style:normal;
  3660. font-size:16px;
  3661. }
  3662. <<<<<<< HEAD
  3663. #u1279_text {
  3664. =======
  3665. #u1280_text {
  3666. >>>>>>> 0601optimize
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:131px;
  3672. word-wrap:break-word;
  3673. }
  3674. <<<<<<< HEAD
  3675. #u1280_div {
  3676. =======
  3677. #u1281_div {
  3678. >>>>>>> 0601optimize
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:352px;
  3684. height:88px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 0);
  3687. border:none;
  3688. border-radius:0px;
  3689. -moz-box-shadow:none;
  3690. -webkit-box-shadow:none;
  3691. box-shadow:none;
  3692. line-height:22px;
  3693. }
  3694. <<<<<<< HEAD
  3695. #u1280 {
  3696. =======
  3697. #u1281 {
  3698. >>>>>>> 0601optimize
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:1213px;
  3702. top:6179px;
  3703. width:352px;
  3704. height:88px;
  3705. line-height:22px;
  3706. }
  3707. <<<<<<< HEAD
  3708. #u1280_text {
  3709. =======
  3710. #u1281_text {
  3711. >>>>>>> 0601optimize
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:352px;
  3717. word-wrap:break-word;
  3718. }
  3719. <<<<<<< HEAD
  3720. #u1281_img {
  3721. =======
  3722. #u1282_img {
  3723. >>>>>>> 0601optimize
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:-4px;
  3727. top:-4px;
  3728. width:30px;
  3729. height:30px;
  3730. }
  3731. <<<<<<< HEAD
  3732. #u1281 {
  3733. =======
  3734. #u1282 {
  3735. >>>>>>> 0601optimize
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:916px;
  3739. top:2657px;
  3740. width:20px;
  3741. height:20px;
  3742. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3743. font-weight:700;
  3744. font-style:normal;
  3745. font-size:14px;
  3746. color:#1E1E1E;
  3747. }
  3748. <<<<<<< HEAD
  3749. #u1281_text {
  3750. =======
  3751. #u1282_text {
  3752. >>>>>>> 0601optimize
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:2px;
  3756. top:2px;
  3757. width:16px;
  3758. word-wrap:break-word;
  3759. }
  3760. <<<<<<< HEAD
  3761. #u1282 {
  3762. =======
  3763. #u1283 {
  3764. >>>>>>> 0601optimize
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:0px;
  3770. height:0px;
  3771. }
  3772. <<<<<<< HEAD
  3773. #u1283_img {
  3774. =======
  3775. #u1284_img {
  3776. >>>>>>> 0601optimize
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:-4px;
  3780. top:-4px;
  3781. width:40px;
  3782. height:40px;
  3783. }
  3784. <<<<<<< HEAD
  3785. #u1283 {
  3786. =======
  3787. #u1284 {
  3788. >>>>>>> 0601optimize
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:1173px;
  3792. top:2624px;
  3793. width:30px;
  3794. height:30px;
  3795. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3796. font-weight:700;
  3797. font-style:normal;
  3798. font-size:18px;
  3799. color:#1E1E1E;
  3800. }
  3801. <<<<<<< HEAD
  3802. #u1283_text {
  3803. =======
  3804. #u1284_text {
  3805. >>>>>>> 0601optimize
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:2px;
  3809. top:4px;
  3810. width:26px;
  3811. word-wrap:break-word;
  3812. }
  3813. <<<<<<< HEAD
  3814. #u1284_div {
  3815. =======
  3816. #u1285_div {
  3817. >>>>>>> 0601optimize
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:131px;
  3823. height:19px;
  3824. background:inherit;
  3825. background-color:rgba(255, 255, 255, 0);
  3826. border:none;
  3827. border-radius:0px;
  3828. -moz-box-shadow:none;
  3829. -webkit-box-shadow:none;
  3830. box-shadow:none;
  3831. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3832. font-weight:700;
  3833. font-style:normal;
  3834. font-size:16px;
  3835. }
  3836. <<<<<<< HEAD
  3837. #u1284 {
  3838. =======
  3839. #u1285 {
  3840. >>>>>>> 0601optimize
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:1213px;
  3844. top:2631px;
  3845. width:131px;
  3846. height:19px;
  3847. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3848. font-weight:700;
  3849. font-style:normal;
  3850. font-size:16px;
  3851. }
  3852. <<<<<<< HEAD
  3853. #u1284_text {
  3854. =======
  3855. #u1285_text {
  3856. >>>>>>> 0601optimize
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:131px;
  3862. word-wrap:break-word;
  3863. }
  3864. <<<<<<< HEAD
  3865. #u1285_div {
  3866. =======
  3867. #u1286_div {
  3868. >>>>>>> 0601optimize
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:352px;
  3874. height:22px;
  3875. background:inherit;
  3876. background-color:rgba(255, 255, 255, 0);
  3877. border:none;
  3878. border-radius:0px;
  3879. -moz-box-shadow:none;
  3880. -webkit-box-shadow:none;
  3881. box-shadow:none;
  3882. line-height:22px;
  3883. }
  3884. <<<<<<< HEAD
  3885. #u1285 {
  3886. =======
  3887. #u1286 {
  3888. >>>>>>> 0601optimize
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:1213px;
  3892. top:2669px;
  3893. width:352px;
  3894. height:22px;
  3895. line-height:22px;
  3896. }
  3897. <<<<<<< HEAD
  3898. #u1285_text {
  3899. =======
  3900. #u1286_text {
  3901. >>>>>>> 0601optimize
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:352px;
  3907. word-wrap:break-word;
  3908. }
  3909. <<<<<<< HEAD
  3910. #u1286_img {
  3911. =======
  3912. #u1287_img {
  3913. >>>>>>> 0601optimize
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:-4px;
  3917. top:-4px;
  3918. width:30px;
  3919. height:30px;
  3920. }
  3921. <<<<<<< HEAD
  3922. #u1286 {
  3923. =======
  3924. #u1287 {
  3925. >>>>>>> 0601optimize
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:850px;
  3929. top:2657px;
  3930. width:20px;
  3931. height:20px;
  3932. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3933. font-weight:700;
  3934. font-style:normal;
  3935. font-size:14px;
  3936. color:#1E1E1E;
  3937. }
  3938. <<<<<<< HEAD
  3939. #u1286_text {
  3940. =======
  3941. #u1287_text {
  3942. >>>>>>> 0601optimize
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:2px;
  3946. top:2px;
  3947. width:16px;
  3948. word-wrap:break-word;
  3949. }
  3950. <<<<<<< HEAD
  3951. #u1287 {
  3952. =======
  3953. #u1288 {
  3954. >>>>>>> 0601optimize
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:0px;
  3960. height:0px;
  3961. }
  3962. <<<<<<< HEAD
  3963. #u1288_img {
  3964. =======
  3965. #u1289_img {
  3966. >>>>>>> 0601optimize
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:-4px;
  3970. top:-4px;
  3971. width:40px;
  3972. height:40px;
  3973. }
  3974. <<<<<<< HEAD
  3975. #u1288 {
  3976. =======
  3977. #u1289 {
  3978. >>>>>>> 0601optimize
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:1173px;
  3982. top:2711px;
  3983. width:30px;
  3984. height:30px;
  3985. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3986. font-weight:700;
  3987. font-style:normal;
  3988. font-size:18px;
  3989. color:#1E1E1E;
  3990. }
  3991. <<<<<<< HEAD
  3992. #u1288_text {
  3993. =======
  3994. #u1289_text {
  3995. >>>>>>> 0601optimize
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:2px;
  3999. top:4px;
  4000. width:26px;
  4001. word-wrap:break-word;
  4002. }
  4003. <<<<<<< HEAD
  4004. #u1289_div {
  4005. =======
  4006. #u1290_div {
  4007. >>>>>>> 0601optimize
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:131px;
  4013. height:19px;
  4014. background:inherit;
  4015. background-color:rgba(255, 255, 255, 0);
  4016. border:none;
  4017. border-radius:0px;
  4018. -moz-box-shadow:none;
  4019. -webkit-box-shadow:none;
  4020. box-shadow:none;
  4021. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4022. font-weight:700;
  4023. font-style:normal;
  4024. font-size:16px;
  4025. }
  4026. <<<<<<< HEAD
  4027. #u1289 {
  4028. =======
  4029. #u1290 {
  4030. >>>>>>> 0601optimize
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:1213px;
  4034. top:2718px;
  4035. width:131px;
  4036. height:19px;
  4037. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4038. font-weight:700;
  4039. font-style:normal;
  4040. font-size:16px;
  4041. }
  4042. <<<<<<< HEAD
  4043. #u1289_text {
  4044. =======
  4045. #u1290_text {
  4046. >>>>>>> 0601optimize
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:131px;
  4052. word-wrap:break-word;
  4053. }
  4054. <<<<<<< HEAD
  4055. #u1290_div {
  4056. =======
  4057. #u1291_div {
  4058. >>>>>>> 0601optimize
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:352px;
  4064. height:44px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 0);
  4067. border:none;
  4068. border-radius:0px;
  4069. -moz-box-shadow:none;
  4070. -webkit-box-shadow:none;
  4071. box-shadow:none;
  4072. line-height:22px;
  4073. }
  4074. <<<<<<< HEAD
  4075. #u1290 {
  4076. =======
  4077. #u1291 {
  4078. >>>>>>> 0601optimize
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:1213px;
  4082. top:2756px;
  4083. width:352px;
  4084. height:44px;
  4085. line-height:22px;
  4086. }
  4087. <<<<<<< HEAD
  4088. #u1290_text {
  4089. =======
  4090. #u1291_text {
  4091. >>>>>>> 0601optimize
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:352px;
  4097. word-wrap:break-word;
  4098. }
  4099. <<<<<<< HEAD
  4100. #u1291_img {
  4101. =======
  4102. #u1292_img {
  4103. >>>>>>> 0601optimize
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:1155px;
  4109. height:583px;
  4110. }
  4111. <<<<<<< HEAD
  4112. #u1291 {
  4113. =======
  4114. #u1292 {
  4115. >>>>>>> 0601optimize
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:8px;
  4119. top:4404px;
  4120. width:1155px;
  4121. height:583px;
  4122. }
  4123. <<<<<<< HEAD
  4124. #u1291_text {
  4125. =======
  4126. #u1292_text {
  4127. >>>>>>> 0601optimize
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:0px;
  4133. visibility:hidden;
  4134. word-wrap:break-word;
  4135. }
  4136. <<<<<<< HEAD
  4137. #u1292_img {
  4138. =======
  4139. #u1293_img {
  4140. >>>>>>> 0601optimize
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:1155px;
  4146. height:583px;
  4147. }
  4148. <<<<<<< HEAD
  4149. #u1292 {
  4150. =======
  4151. #u1293 {
  4152. >>>>>>> 0601optimize
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:8px;
  4156. top:5045px;
  4157. width:1155px;
  4158. height:583px;
  4159. }
  4160. <<<<<<< HEAD
  4161. #u1292_text {
  4162. =======
  4163. #u1293_text {
  4164. >>>>>>> 0601optimize
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:0px;
  4170. visibility:hidden;
  4171. word-wrap:break-word;
  4172. }
  4173. <<<<<<< HEAD
  4174. #u1293_img {
  4175. =======
  4176. #u1294_img {
  4177. >>>>>>> 0601optimize
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:-4px;
  4181. top:-4px;
  4182. width:30px;
  4183. height:30px;
  4184. }
  4185. <<<<<<< HEAD
  4186. #u1293 {
  4187. =======
  4188. #u1294 {
  4189. >>>>>>> 0601optimize
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:224px;
  4193. top:5245px;
  4194. width:20px;
  4195. height:20px;
  4196. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4197. font-weight:700;
  4198. font-style:normal;
  4199. font-size:14px;
  4200. color:#1E1E1E;
  4201. }
  4202. <<<<<<< HEAD
  4203. #u1293_text {
  4204. =======
  4205. #u1294_text {
  4206. >>>>>>> 0601optimize
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:2px;
  4210. top:2px;
  4211. width:16px;
  4212. word-wrap:break-word;
  4213. }
  4214. <<<<<<< HEAD
  4215. #u1294 {
  4216. =======
  4217. #u1295 {
  4218. >>>>>>> 0601optimize
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:0px;
  4224. height:0px;
  4225. }
  4226. <<<<<<< HEAD
  4227. #u1295_img {
  4228. =======
  4229. #u1296_img {
  4230. >>>>>>> 0601optimize
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:-4px;
  4234. top:-4px;
  4235. width:40px;
  4236. height:40px;
  4237. }
  4238. <<<<<<< HEAD
  4239. #u1295 {
  4240. =======
  4241. #u1296 {
  4242. >>>>>>> 0601optimize
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:1173px;
  4246. top:5045px;
  4247. width:30px;
  4248. height:30px;
  4249. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4250. font-weight:700;
  4251. font-style:normal;
  4252. font-size:18px;
  4253. color:#1E1E1E;
  4254. }
  4255. <<<<<<< HEAD
  4256. #u1295_text {
  4257. =======
  4258. #u1296_text {
  4259. >>>>>>> 0601optimize
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:2px;
  4263. top:4px;
  4264. width:26px;
  4265. word-wrap:break-word;
  4266. }
  4267. <<<<<<< HEAD
  4268. #u1296_div {
  4269. =======
  4270. #u1297_div {
  4271. >>>>>>> 0601optimize
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:131px;
  4277. height:19px;
  4278. background:inherit;
  4279. background-color:rgba(255, 255, 255, 0);
  4280. border:none;
  4281. border-radius:0px;
  4282. -moz-box-shadow:none;
  4283. -webkit-box-shadow:none;
  4284. box-shadow:none;
  4285. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4286. font-weight:700;
  4287. font-style:normal;
  4288. font-size:16px;
  4289. }
  4290. <<<<<<< HEAD
  4291. #u1296 {
  4292. =======
  4293. #u1297 {
  4294. >>>>>>> 0601optimize
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:1213px;
  4298. top:5052px;
  4299. width:131px;
  4300. height:19px;
  4301. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4302. font-weight:700;
  4303. font-style:normal;
  4304. font-size:16px;
  4305. }
  4306. <<<<<<< HEAD
  4307. #u1296_text {
  4308. =======
  4309. #u1297_text {
  4310. >>>>>>> 0601optimize
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:131px;
  4316. word-wrap:break-word;
  4317. }
  4318. <<<<<<< HEAD
  4319. #u1297_div {
  4320. =======
  4321. #u1298_div {
  4322. >>>>>>> 0601optimize
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:352px;
  4328. height:22px;
  4329. background:inherit;
  4330. background-color:rgba(255, 255, 255, 0);
  4331. border:none;
  4332. border-radius:0px;
  4333. -moz-box-shadow:none;
  4334. -webkit-box-shadow:none;
  4335. box-shadow:none;
  4336. line-height:22px;
  4337. }
  4338. <<<<<<< HEAD
  4339. #u1297 {
  4340. =======
  4341. #u1298 {
  4342. >>>>>>> 0601optimize
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:1213px;
  4346. top:5090px;
  4347. width:352px;
  4348. height:22px;
  4349. line-height:22px;
  4350. }
  4351. <<<<<<< HEAD
  4352. #u1297_text {
  4353. =======
  4354. #u1298_text {
  4355. >>>>>>> 0601optimize
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:352px;
  4361. word-wrap:break-word;
  4362. }
  4363. <<<<<<< HEAD
  4364. #u1298 {
  4365. =======
  4366. #u1299 {
  4367. >>>>>>> 0601optimize
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:0px;
  4373. height:0px;
  4374. }
  4375. <<<<<<< HEAD
  4376. #u1299_img {
  4377. =======
  4378. #u1300_img {
  4379. >>>>>>> 0601optimize
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:-4px;
  4383. top:-4px;
  4384. width:44px;
  4385. height:44px;
  4386. }
  4387. <<<<<<< HEAD
  4388. #u1299 {
  4389. =======
  4390. #u1300 {
  4391. >>>>>>> 0601optimize
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:1173px;
  4395. top:5122px;
  4396. width:34px;
  4397. height:34px;
  4398. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4399. font-weight:700;
  4400. font-style:normal;
  4401. font-size:26px;
  4402. }
  4403. <<<<<<< HEAD
  4404. #u1299_text {
  4405. =======
  4406. #u1300_text {
  4407. >>>>>>> 0601optimize
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:2px;
  4411. top:1px;
  4412. width:30px;
  4413. word-wrap:break-word;
  4414. }
  4415. <<<<<<< HEAD
  4416. #u1300_div {
  4417. =======
  4418. #u1301_div {
  4419. >>>>>>> 0601optimize
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:131px;
  4425. height:19px;
  4426. background:inherit;
  4427. background-color:rgba(255, 255, 255, 0);
  4428. border:none;
  4429. border-radius:0px;
  4430. -moz-box-shadow:none;
  4431. -webkit-box-shadow:none;
  4432. box-shadow:none;
  4433. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4434. font-weight:700;
  4435. font-style:normal;
  4436. font-size:16px;
  4437. }
  4438. <<<<<<< HEAD
  4439. #u1300 {
  4440. =======
  4441. #u1301 {
  4442. >>>>>>> 0601optimize
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:1213px;
  4446. top:5129px;
  4447. width:131px;
  4448. height:19px;
  4449. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4450. font-weight:700;
  4451. font-style:normal;
  4452. font-size:16px;
  4453. }
  4454. <<<<<<< HEAD
  4455. #u1300_text {
  4456. =======
  4457. #u1301_text {
  4458. >>>>>>> 0601optimize
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:131px;
  4464. word-wrap:break-word;
  4465. }
  4466. <<<<<<< HEAD
  4467. #u1301_div {
  4468. =======
  4469. #u1302_div {
  4470. >>>>>>> 0601optimize
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:352px;
  4476. height:44px;
  4477. background:inherit;
  4478. background-color:rgba(255, 255, 255, 0);
  4479. border:none;
  4480. border-radius:0px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. line-height:22px;
  4485. }
  4486. <<<<<<< HEAD
  4487. #u1301 {
  4488. =======
  4489. #u1302 {
  4490. >>>>>>> 0601optimize
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:1213px;
  4494. top:5167px;
  4495. width:352px;
  4496. height:44px;
  4497. line-height:22px;
  4498. }
  4499. <<<<<<< HEAD
  4500. #u1301_text {
  4501. =======
  4502. #u1302_text {
  4503. >>>>>>> 0601optimize
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:352px;
  4509. word-wrap:break-word;
  4510. }
  4511. <<<<<<< HEAD
  4512. #u1302 {
  4513. =======
  4514. #u1303 {
  4515. >>>>>>> 0601optimize
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:0px;
  4521. height:0px;
  4522. }
  4523. <<<<<<< HEAD
  4524. #u1303_img {
  4525. =======
  4526. #u1304_img {
  4527. >>>>>>> 0601optimize
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:-4px;
  4531. top:-4px;
  4532. width:40px;
  4533. height:40px;
  4534. }
  4535. <<<<<<< HEAD
  4536. #u1303 {
  4537. =======
  4538. #u1304 {
  4539. >>>>>>> 0601optimize
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:1173px;
  4543. top:5235px;
  4544. width:30px;
  4545. height:30px;
  4546. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4547. font-weight:700;
  4548. font-style:normal;
  4549. font-size:18px;
  4550. color:#1E1E1E;
  4551. }
  4552. <<<<<<< HEAD
  4553. #u1303_text {
  4554. =======
  4555. #u1304_text {
  4556. >>>>>>> 0601optimize
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:2px;
  4560. top:4px;
  4561. width:26px;
  4562. word-wrap:break-word;
  4563. }
  4564. <<<<<<< HEAD
  4565. #u1304_div {
  4566. =======
  4567. #u1305_div {
  4568. >>>>>>> 0601optimize
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:107px;
  4574. height:19px;
  4575. background:inherit;
  4576. background-color:rgba(255, 255, 255, 0);
  4577. border:none;
  4578. border-radius:0px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4583. font-weight:700;
  4584. font-style:normal;
  4585. font-size:16px;
  4586. }
  4587. <<<<<<< HEAD
  4588. #u1304 {
  4589. =======
  4590. #u1305 {
  4591. >>>>>>> 0601optimize
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:1213px;
  4595. top:5242px;
  4596. width:107px;
  4597. height:19px;
  4598. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4599. font-weight:700;
  4600. font-style:normal;
  4601. font-size:16px;
  4602. }
  4603. <<<<<<< HEAD
  4604. #u1304_text {
  4605. =======
  4606. #u1305_text {
  4607. >>>>>>> 0601optimize
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:107px;
  4613. word-wrap:break-word;
  4614. }
  4615. <<<<<<< HEAD
  4616. #u1305_div {
  4617. =======
  4618. #u1306_div {
  4619. >>>>>>> 0601optimize
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:352px;
  4625. height:33px;
  4626. background:inherit;
  4627. background-color:rgba(255, 255, 255, 0);
  4628. border:none;
  4629. border-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. line-height:22px;
  4634. }
  4635. <<<<<<< HEAD
  4636. #u1305 {
  4637. =======
  4638. #u1306 {
  4639. >>>>>>> 0601optimize
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:1213px;
  4643. top:5280px;
  4644. width:352px;
  4645. height:33px;
  4646. line-height:22px;
  4647. }
  4648. <<<<<<< HEAD
  4649. #u1305_text {
  4650. =======
  4651. #u1306_text {
  4652. >>>>>>> 0601optimize
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:352px;
  4658. word-wrap:break-word;
  4659. }
  4660. <<<<<<< HEAD
  4661. #u1306 {
  4662. =======
  4663. #u1307 {
  4664. >>>>>>> 0601optimize
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:0px;
  4670. height:0px;
  4671. }
  4672. <<<<<<< HEAD
  4673. #u1307_img {
  4674. =======
  4675. #u1308_img {
  4676. >>>>>>> 0601optimize
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:-4px;
  4680. top:-4px;
  4681. width:40px;
  4682. height:40px;
  4683. }
  4684. <<<<<<< HEAD
  4685. #u1307 {
  4686. =======
  4687. #u1308 {
  4688. >>>>>>> 0601optimize
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:1173px;
  4692. top:5327px;
  4693. width:30px;
  4694. height:30px;
  4695. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4696. font-weight:700;
  4697. font-style:normal;
  4698. font-size:18px;
  4699. color:#1E1E1E;
  4700. }
  4701. <<<<<<< HEAD
  4702. #u1307_text {
  4703. =======
  4704. #u1308_text {
  4705. >>>>>>> 0601optimize
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:2px;
  4709. top:4px;
  4710. width:26px;
  4711. word-wrap:break-word;
  4712. }
  4713. <<<<<<< HEAD
  4714. #u1308_div {
  4715. =======
  4716. #u1309_div {
  4717. >>>>>>> 0601optimize
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:107px;
  4723. height:19px;
  4724. background:inherit;
  4725. background-color:rgba(255, 255, 255, 0);
  4726. border:none;
  4727. border-radius:0px;
  4728. -moz-box-shadow:none;
  4729. -webkit-box-shadow:none;
  4730. box-shadow:none;
  4731. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4732. font-weight:700;
  4733. font-style:normal;
  4734. font-size:16px;
  4735. }
  4736. <<<<<<< HEAD
  4737. #u1308 {
  4738. =======
  4739. #u1309 {
  4740. >>>>>>> 0601optimize
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:1213px;
  4744. top:5334px;
  4745. width:107px;
  4746. height:19px;
  4747. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4748. font-weight:700;
  4749. font-style:normal;
  4750. font-size:16px;
  4751. }
  4752. <<<<<<< HEAD
  4753. #u1308_text {
  4754. =======
  4755. #u1309_text {
  4756. >>>>>>> 0601optimize
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:107px;
  4762. word-wrap:break-word;
  4763. }
  4764. <<<<<<< HEAD
  4765. #u1309_div {
  4766. =======
  4767. #u1310_div {
  4768. >>>>>>> 0601optimize
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:352px;
  4774. height:44px;
  4775. background:inherit;
  4776. background-color:rgba(255, 255, 255, 0);
  4777. border:none;
  4778. border-radius:0px;
  4779. -moz-box-shadow:none;
  4780. -webkit-box-shadow:none;
  4781. box-shadow:none;
  4782. line-height:22px;
  4783. }
  4784. <<<<<<< HEAD
  4785. #u1309 {
  4786. =======
  4787. #u1310 {
  4788. >>>>>>> 0601optimize
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:1213px;
  4792. top:5376px;
  4793. width:352px;
  4794. height:44px;
  4795. line-height:22px;
  4796. }
  4797. <<<<<<< HEAD
  4798. #u1309_text {
  4799. =======
  4800. #u1310_text {
  4801. >>>>>>> 0601optimize
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:352px;
  4807. word-wrap:break-word;
  4808. }
  4809. <<<<<<< HEAD
  4810. #u1310_img {
  4811. =======
  4812. #u1311_img {
  4813. >>>>>>> 0601optimize
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:-4px;
  4817. top:-4px;
  4818. width:30px;
  4819. height:30px;
  4820. }
  4821. <<<<<<< HEAD
  4822. #u1310 {
  4823. =======
  4824. #u1311 {
  4825. >>>>>>> 0601optimize
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:151px;
  4829. top:5245px;
  4830. width:20px;
  4831. height:20px;
  4832. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4833. font-weight:700;
  4834. font-style:normal;
  4835. font-size:14px;
  4836. color:#1E1E1E;
  4837. }
  4838. <<<<<<< HEAD
  4839. #u1310_text {
  4840. =======
  4841. #u1311_text {
  4842. >>>>>>> 0601optimize
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:2px;
  4846. top:2px;
  4847. width:16px;
  4848. word-wrap:break-word;
  4849. }
  4850. <<<<<<< HEAD
  4851. #u1311_img {
  4852. =======
  4853. #u1312_img {
  4854. >>>>>>> 0601optimize
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:-4px;
  4858. top:-4px;
  4859. width:30px;
  4860. height:30px;
  4861. }
  4862. <<<<<<< HEAD
  4863. #u1311 {
  4864. =======
  4865. #u1312 {
  4866. >>>>>>> 0601optimize
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:304px;
  4870. top:5245px;
  4871. width:20px;
  4872. height:20px;
  4873. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4874. font-weight:700;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. color:#1E1E1E;
  4878. }
  4879. <<<<<<< HEAD
  4880. #u1311_text {
  4881. =======
  4882. #u1312_text {
  4883. >>>>>>> 0601optimize
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:2px;
  4887. top:2px;
  4888. width:16px;
  4889. word-wrap:break-word;
  4890. }
  4891. <<<<<<< HEAD
  4892. #u1312_img {
  4893. =======
  4894. #u1313_img {
  4895. >>>>>>> 0601optimize
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:-4px;
  4899. top:-4px;
  4900. width:30px;
  4901. height:30px;
  4902. }
  4903. <<<<<<< HEAD
  4904. #u1312 {
  4905. =======
  4906. #u1313 {
  4907. >>>>>>> 0601optimize
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:375px;
  4911. top:5245px;
  4912. width:20px;
  4913. height:20px;
  4914. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4915. font-weight:700;
  4916. font-style:normal;
  4917. font-size:14px;
  4918. color:#1E1E1E;
  4919. }
  4920. <<<<<<< HEAD
  4921. #u1312_text {
  4922. =======
  4923. #u1313_text {
  4924. >>>>>>> 0601optimize
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:2px;
  4928. top:2px;
  4929. width:16px;
  4930. word-wrap:break-word;
  4931. }
  4932. <<<<<<< HEAD
  4933. #u1313_img {
  4934. =======
  4935. #u1314_img {
  4936. >>>>>>> 0601optimize
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:1155px;
  4942. height:583px;
  4943. }
  4944. <<<<<<< HEAD
  4945. #u1313 {
  4946. =======
  4947. #u1314 {
  4948. >>>>>>> 0601optimize
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:8px;
  4952. top:7773px;
  4953. width:1155px;
  4954. height:583px;
  4955. }
  4956. <<<<<<< HEAD
  4957. #u1313_text {
  4958. =======
  4959. #u1314_text {
  4960. >>>>>>> 0601optimize
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:0px;
  4966. visibility:hidden;
  4967. word-wrap:break-word;
  4968. }
  4969. <<<<<<< HEAD
  4970. #u1314_img {
  4971. =======
  4972. #u1315_img {
  4973. >>>>>>> 0601optimize
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:-4px;
  4977. top:-4px;
  4978. width:30px;
  4979. height:30px;
  4980. }
  4981. <<<<<<< HEAD
  4982. #u1314 {
  4983. =======
  4984. #u1315 {
  4985. >>>>>>> 0601optimize
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:202px;
  4989. top:7955px;
  4990. width:20px;
  4991. height:20px;
  4992. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4993. font-weight:700;
  4994. font-style:normal;
  4995. font-size:14px;
  4996. color:#1E1E1E;
  4997. }
  4998. <<<<<<< HEAD
  4999. #u1314_text {
  5000. =======
  5001. #u1315_text {
  5002. >>>>>>> 0601optimize
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:2px;
  5006. top:2px;
  5007. width:16px;
  5008. word-wrap:break-word;
  5009. }
  5010. <<<<<<< HEAD
  5011. #u1315 {
  5012. =======
  5013. #u1316 {
  5014. >>>>>>> 0601optimize
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:0px;
  5020. height:0px;
  5021. }
  5022. <<<<<<< HEAD
  5023. #u1316_img {
  5024. =======
  5025. #u1317_img {
  5026. >>>>>>> 0601optimize
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:-4px;
  5030. top:-4px;
  5031. width:44px;
  5032. height:44px;
  5033. }
  5034. <<<<<<< HEAD
  5035. #u1316 {
  5036. =======
  5037. #u1317 {
  5038. >>>>>>> 0601optimize
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:1173px;
  5042. top:7773px;
  5043. width:34px;
  5044. height:34px;
  5045. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5046. font-weight:700;
  5047. font-style:normal;
  5048. font-size:26px;
  5049. }
  5050. <<<<<<< HEAD
  5051. #u1316_text {
  5052. =======
  5053. #u1317_text {
  5054. >>>>>>> 0601optimize
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:2px;
  5058. top:1px;
  5059. width:30px;
  5060. word-wrap:break-word;
  5061. }
  5062. <<<<<<< HEAD
  5063. #u1317_div {
  5064. =======
  5065. #u1318_div {
  5066. >>>>>>> 0601optimize
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:131px;
  5072. height:19px;
  5073. background:inherit;
  5074. background-color:rgba(255, 255, 255, 0);
  5075. border:none;
  5076. border-radius:0px;
  5077. -moz-box-shadow:none;
  5078. -webkit-box-shadow:none;
  5079. box-shadow:none;
  5080. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5081. font-weight:700;
  5082. font-style:normal;
  5083. font-size:16px;
  5084. }
  5085. <<<<<<< HEAD
  5086. #u1317 {
  5087. =======
  5088. #u1318 {
  5089. >>>>>>> 0601optimize
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:1213px;
  5093. top:7780px;
  5094. width:131px;
  5095. height:19px;
  5096. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5097. font-weight:700;
  5098. font-style:normal;
  5099. font-size:16px;
  5100. }
  5101. <<<<<<< HEAD
  5102. #u1317_text {
  5103. =======
  5104. #u1318_text {
  5105. >>>>>>> 0601optimize
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:131px;
  5111. word-wrap:break-word;
  5112. }
  5113. <<<<<<< HEAD
  5114. #u1318_div {
  5115. =======
  5116. #u1319_div {
  5117. >>>>>>> 0601optimize
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:352px;
  5123. height:44px;
  5124. background:inherit;
  5125. background-color:rgba(255, 255, 255, 0);
  5126. border:none;
  5127. border-radius:0px;
  5128. -moz-box-shadow:none;
  5129. -webkit-box-shadow:none;
  5130. box-shadow:none;
  5131. line-height:22px;
  5132. }
  5133. <<<<<<< HEAD
  5134. #u1318 {
  5135. =======
  5136. #u1319 {
  5137. >>>>>>> 0601optimize
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:1213px;
  5141. top:7818px;
  5142. width:352px;
  5143. height:44px;
  5144. line-height:22px;
  5145. }
  5146. <<<<<<< HEAD
  5147. #u1318_text {
  5148. =======
  5149. #u1319_text {
  5150. >>>>>>> 0601optimize
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:352px;
  5156. word-wrap:break-word;
  5157. }
  5158. <<<<<<< HEAD
  5159. #u1319_div {
  5160. =======
  5161. #u1320_div {
  5162. >>>>>>> 0601optimize
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:210px;
  5168. height:22px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 0);
  5171. border:none;
  5172. border-radius:0px;
  5173. -moz-box-shadow:none;
  5174. -webkit-box-shadow:none;
  5175. box-shadow:none;
  5176. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5177. font-weight:700;
  5178. font-style:normal;
  5179. font-size:18px;
  5180. }
  5181. <<<<<<< HEAD
  5182. #u1319 {
  5183. =======
  5184. #u1320 {
  5185. >>>>>>> 0601optimize
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:8px;
  5189. top:7741px;
  5190. width:210px;
  5191. height:22px;
  5192. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5193. font-weight:700;
  5194. font-style:normal;
  5195. font-size:18px;
  5196. }
  5197. <<<<<<< HEAD
  5198. #u1319_text {
  5199. =======
  5200. #u1320_text {
  5201. >>>>>>> 0601optimize
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:210px;
  5207. white-space:nowrap;
  5208. }
  5209. <<<<<<< HEAD
  5210. #u1320_img {
  5211. =======
  5212. #u1321_img {
  5213. >>>>>>> 0601optimize
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:1155px;
  5219. height:583px;
  5220. }
  5221. <<<<<<< HEAD
  5222. #u1320 {
  5223. =======
  5224. #u1321 {
  5225. >>>>>>> 0601optimize
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:8px;
  5229. top:8472px;
  5230. width:1155px;
  5231. height:583px;
  5232. }
  5233. <<<<<<< HEAD
  5234. #u1320_text {
  5235. =======
  5236. #u1321_text {
  5237. >>>>>>> 0601optimize
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:0px;
  5243. visibility:hidden;
  5244. word-wrap:break-word;
  5245. }
  5246. <<<<<<< HEAD
  5247. #u1321_img {
  5248. =======
  5249. #u1322_img {
  5250. >>>>>>> 0601optimize
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:-4px;
  5254. top:-4px;
  5255. width:30px;
  5256. height:30px;
  5257. }
  5258. <<<<<<< HEAD
  5259. #u1321 {
  5260. =======
  5261. #u1322 {
  5262. >>>>>>> 0601optimize
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:220px;
  5266. top:8671px;
  5267. width:20px;
  5268. height:20px;
  5269. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5270. font-weight:700;
  5271. font-style:normal;
  5272. font-size:14px;
  5273. color:#1E1E1E;
  5274. }
  5275. <<<<<<< HEAD
  5276. #u1321_text {
  5277. =======
  5278. #u1322_text {
  5279. >>>>>>> 0601optimize
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:2px;
  5283. top:2px;
  5284. width:16px;
  5285. word-wrap:break-word;
  5286. }
  5287. <<<<<<< HEAD
  5288. #u1322 {
  5289. =======
  5290. #u1323 {
  5291. >>>>>>> 0601optimize
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:0px;
  5297. height:0px;
  5298. }
  5299. <<<<<<< HEAD
  5300. #u1323_img {
  5301. =======
  5302. #u1324_img {
  5303. >>>>>>> 0601optimize
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:-4px;
  5307. top:-4px;
  5308. width:44px;
  5309. height:44px;
  5310. }
  5311. <<<<<<< HEAD
  5312. #u1323 {
  5313. =======
  5314. #u1324 {
  5315. >>>>>>> 0601optimize
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:1173px;
  5319. top:8469px;
  5320. width:34px;
  5321. height:34px;
  5322. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5323. font-weight:700;
  5324. font-style:normal;
  5325. font-size:26px;
  5326. }
  5327. <<<<<<< HEAD
  5328. #u1323_text {
  5329. =======
  5330. #u1324_text {
  5331. >>>>>>> 0601optimize
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:2px;
  5335. top:1px;
  5336. width:30px;
  5337. word-wrap:break-word;
  5338. }
  5339. <<<<<<< HEAD
  5340. #u1324_div {
  5341. =======
  5342. #u1325_div {
  5343. >>>>>>> 0601optimize
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:169px;
  5349. height:19px;
  5350. background:inherit;
  5351. background-color:rgba(255, 255, 255, 0);
  5352. border:none;
  5353. border-radius:0px;
  5354. -moz-box-shadow:none;
  5355. -webkit-box-shadow:none;
  5356. box-shadow:none;
  5357. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5358. font-weight:700;
  5359. font-style:normal;
  5360. font-size:16px;
  5361. color:#FF0000;
  5362. }
  5363. <<<<<<< HEAD
  5364. #u1324 {
  5365. =======
  5366. #u1325 {
  5367. >>>>>>> 0601optimize
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:1213px;
  5371. top:8476px;
  5372. width:169px;
  5373. height:19px;
  5374. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5375. font-weight:700;
  5376. font-style:normal;
  5377. font-size:16px;
  5378. color:#FF0000;
  5379. }
  5380. <<<<<<< HEAD
  5381. #u1324_text {
  5382. =======
  5383. #u1325_text {
  5384. >>>>>>> 0601optimize
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:169px;
  5390. word-wrap:break-word;
  5391. }
  5392. <<<<<<< HEAD
  5393. #u1325_div {
  5394. =======
  5395. #u1326_div {
  5396. >>>>>>> 0601optimize
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:352px;
  5402. height:110px;
  5403. background:inherit;
  5404. background-color:rgba(255, 255, 255, 0);
  5405. border:none;
  5406. border-radius:0px;
  5407. -moz-box-shadow:none;
  5408. -webkit-box-shadow:none;
  5409. box-shadow:none;
  5410. line-height:22px;
  5411. }
  5412. <<<<<<< HEAD
  5413. #u1325 {
  5414. =======
  5415. #u1326 {
  5416. >>>>>>> 0601optimize
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:1213px;
  5420. top:8514px;
  5421. width:352px;
  5422. height:110px;
  5423. line-height:22px;
  5424. }
  5425. <<<<<<< HEAD
  5426. #u1325_text {
  5427. =======
  5428. #u1326_text {
  5429. >>>>>>> 0601optimize
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:352px;
  5435. word-wrap:break-word;
  5436. }
  5437. <<<<<<< HEAD
  5438. #u1326 {
  5439. =======
  5440. #u1327 {
  5441. >>>>>>> 0601optimize
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:1218px;
  5445. top:8476px;
  5446. width:158px;
  5447. height:23px;
  5448. overflow:hidden;
  5449. background-image:url('../../resources/images/transparent.gif');
  5450. }
  5451. <<<<<<< HEAD
  5452. #u1327_div {
  5453. =======
  5454. #u1328_div {
  5455. >>>>>>> 0601optimize
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:270px;
  5461. height:80px;
  5462. background:inherit;
  5463. background-color:rgba(255, 255, 0, 1);
  5464. box-sizing:border-box;
  5465. border-width:1px;
  5466. border-style:solid;
  5467. border-color:rgba(0, 0, 0, 1);
  5468. border-radius:10px;
  5469. -moz-box-shadow:none;
  5470. -webkit-box-shadow:none;
  5471. box-shadow:none;
  5472. color:#000000;
  5473. text-align:left;
  5474. line-height:18px;
  5475. }
  5476. <<<<<<< HEAD
  5477. #u1327 {
  5478. =======
  5479. #u1328 {
  5480. >>>>>>> 0601optimize
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:1218px;
  5484. top:8389px;
  5485. width:270px;
  5486. height:80px;
  5487. color:#000000;
  5488. text-align:left;
  5489. line-height:18px;
  5490. }
  5491. <<<<<<< HEAD
  5492. #u1327_text {
  5493. =======
  5494. #u1328_text {
  5495. >>>>>>> 0601optimize
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:2px;
  5499. top:13px;
  5500. width:266px;
  5501. word-wrap:break-word;
  5502. }
  5503. <<<<<<< HEAD
  5504. #u1328_div {
  5505. =======
  5506. #u1329_div {
  5507. >>>>>>> 0601optimize
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:210px;
  5513. height:22px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 0);
  5516. border:none;
  5517. border-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5522. font-weight:700;
  5523. font-style:normal;
  5524. font-size:18px;
  5525. }
  5526. <<<<<<< HEAD
  5527. #u1328 {
  5528. =======
  5529. #u1329 {
  5530. >>>>>>> 0601optimize
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:8px;
  5534. top:8429px;
  5535. width:210px;
  5536. height:22px;
  5537. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5538. font-weight:700;
  5539. font-style:normal;
  5540. font-size:18px;
  5541. }
  5542. <<<<<<< HEAD
  5543. #u1328_text {
  5544. =======
  5545. #u1329_text {
  5546. >>>>>>> 0601optimize
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:210px;
  5552. white-space:nowrap;
  5553. }
  5554. <<<<<<< HEAD
  5555. #u1329_div {
  5556. =======
  5557. #u1330_div {
  5558. >>>>>>> 0601optimize
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:210px;
  5564. height:22px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 0);
  5567. border:none;
  5568. border-radius:0px;
  5569. -moz-box-shadow:none;
  5570. -webkit-box-shadow:none;
  5571. box-shadow:none;
  5572. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5573. font-weight:700;
  5574. font-style:normal;
  5575. font-size:18px;
  5576. }
  5577. <<<<<<< HEAD
  5578. #u1329 {
  5579. =======
  5580. #u1330 {
  5581. >>>>>>> 0601optimize
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:8px;
  5585. top:9129px;
  5586. width:210px;
  5587. height:22px;
  5588. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5589. font-weight:700;
  5590. font-style:normal;
  5591. font-size:18px;
  5592. }
  5593. <<<<<<< HEAD
  5594. #u1329_text {
  5595. =======
  5596. #u1330_text {
  5597. >>>>>>> 0601optimize
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:210px;
  5603. white-space:nowrap;
  5604. }
  5605. <<<<<<< HEAD
  5606. #u1330_img {
  5607. =======
  5608. #u1331_img {
  5609. >>>>>>> 0601optimize
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:1155px;
  5615. height:583px;
  5616. }
  5617. <<<<<<< HEAD
  5618. #u1330 {
  5619. =======
  5620. #u1331 {
  5621. >>>>>>> 0601optimize
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:8px;
  5625. top:9161px;
  5626. width:1155px;
  5627. height:583px;
  5628. }
  5629. <<<<<<< HEAD
  5630. #u1330_text {
  5631. =======
  5632. #u1331_text {
  5633. >>>>>>> 0601optimize
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:0px;
  5639. visibility:hidden;
  5640. word-wrap:break-word;
  5641. }
  5642. <<<<<<< HEAD
  5643. #u1331_img {
  5644. =======
  5645. #u1332_img {
  5646. >>>>>>> 0601optimize
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:-4px;
  5650. top:-4px;
  5651. width:30px;
  5652. height:30px;
  5653. }
  5654. <<<<<<< HEAD
  5655. #u1331 {
  5656. =======
  5657. #u1332 {
  5658. >>>>>>> 0601optimize
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:1043px;
  5662. top:9648px;
  5663. width:20px;
  5664. height:20px;
  5665. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5666. font-weight:700;
  5667. font-style:normal;
  5668. font-size:14px;
  5669. color:#1E1E1E;
  5670. }
  5671. <<<<<<< HEAD
  5672. #u1331_text {
  5673. =======
  5674. #u1332_text {
  5675. >>>>>>> 0601optimize
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:2px;
  5679. top:2px;
  5680. width:16px;
  5681. word-wrap:break-word;
  5682. }
  5683. <<<<<<< HEAD
  5684. #u1332_div {
  5685. =======
  5686. #u1333_div {
  5687. >>>>>>> 0601optimize
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:210px;
  5693. height:22px;
  5694. background:inherit;
  5695. background-color:rgba(255, 255, 255, 0);
  5696. border:none;
  5697. border-radius:0px;
  5698. -moz-box-shadow:none;
  5699. -webkit-box-shadow:none;
  5700. box-shadow:none;
  5701. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5702. font-weight:700;
  5703. font-style:normal;
  5704. font-size:18px;
  5705. }
  5706. <<<<<<< HEAD
  5707. #u1332 {
  5708. =======
  5709. #u1333 {
  5710. >>>>>>> 0601optimize
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:16px;
  5714. top:11725px;
  5715. width:210px;
  5716. height:22px;
  5717. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5718. font-weight:700;
  5719. font-style:normal;
  5720. font-size:18px;
  5721. }
  5722. <<<<<<< HEAD
  5723. #u1332_text {
  5724. =======
  5725. #u1333_text {
  5726. >>>>>>> 0601optimize
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:0px;
  5730. top:0px;
  5731. width:210px;
  5732. white-space:nowrap;
  5733. }
  5734. <<<<<<< HEAD
  5735. #u1333_img {
  5736. =======
  5737. #u1334_img {
  5738. >>>>>>> 0601optimize
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:1155px;
  5744. height:583px;
  5745. }
  5746. <<<<<<< HEAD
  5747. #u1333 {
  5748. =======
  5749. #u1334 {
  5750. >>>>>>> 0601optimize
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:16px;
  5754. top:11779px;
  5755. width:1155px;
  5756. height:583px;
  5757. }
  5758. <<<<<<< HEAD
  5759. #u1333_text {
  5760. =======
  5761. #u1334_text {
  5762. >>>>>>> 0601optimize
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:0px;
  5768. visibility:hidden;
  5769. word-wrap:break-word;
  5770. }
  5771. <<<<<<< HEAD
  5772. #u1334 {
  5773. =======
  5774. #u1335 {
  5775. >>>>>>> 0601optimize
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:0px;
  5781. height:0px;
  5782. }
  5783. <<<<<<< HEAD
  5784. #u1335_img {
  5785. =======
  5786. #u1336_img {
  5787. >>>>>>> 0601optimize
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:-4px;
  5791. top:-4px;
  5792. width:44px;
  5793. height:44px;
  5794. }
  5795. <<<<<<< HEAD
  5796. #u1335 {
  5797. =======
  5798. #u1336 {
  5799. >>>>>>> 0601optimize
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:1181px;
  5803. top:11787px;
  5804. width:34px;
  5805. height:34px;
  5806. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5807. font-weight:700;
  5808. font-style:normal;
  5809. font-size:26px;
  5810. }
  5811. <<<<<<< HEAD
  5812. #u1335_text {
  5813. =======
  5814. #u1336_text {
  5815. >>>>>>> 0601optimize
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:2px;
  5819. top:1px;
  5820. width:30px;
  5821. word-wrap:break-word;
  5822. }
  5823. <<<<<<< HEAD
  5824. #u1336_div {
  5825. =======
  5826. #u1337_div {
  5827. >>>>>>> 0601optimize
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:198px;
  5833. height:19px;
  5834. background:inherit;
  5835. background-color:rgba(255, 255, 255, 0);
  5836. border:none;
  5837. border-radius:0px;
  5838. -moz-box-shadow:none;
  5839. -webkit-box-shadow:none;
  5840. box-shadow:none;
  5841. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5842. font-weight:700;
  5843. font-style:normal;
  5844. font-size:16px;
  5845. }
  5846. <<<<<<< HEAD
  5847. #u1336 {
  5848. =======
  5849. #u1337 {
  5850. >>>>>>> 0601optimize
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:1221px;
  5854. top:11794px;
  5855. width:198px;
  5856. height:19px;
  5857. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5858. font-weight:700;
  5859. font-style:normal;
  5860. font-size:16px;
  5861. }
  5862. <<<<<<< HEAD
  5863. #u1336_text {
  5864. =======
  5865. #u1337_text {
  5866. >>>>>>> 0601optimize
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:198px;
  5872. word-wrap:break-word;
  5873. }
  5874. <<<<<<< HEAD
  5875. #u1337_div {
  5876. =======
  5877. #u1338_div {
  5878. >>>>>>> 0601optimize
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:352px;
  5884. height:66px;
  5885. background:inherit;
  5886. background-color:rgba(255, 255, 255, 0);
  5887. border:none;
  5888. border-radius:0px;
  5889. -moz-box-shadow:none;
  5890. -webkit-box-shadow:none;
  5891. box-shadow:none;
  5892. line-height:22px;
  5893. }
  5894. <<<<<<< HEAD
  5895. #u1337 {
  5896. =======
  5897. #u1338 {
  5898. >>>>>>> 0601optimize
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:1221px;
  5902. top:11832px;
  5903. width:352px;
  5904. height:66px;
  5905. line-height:22px;
  5906. }
  5907. <<<<<<< HEAD
  5908. #u1337_text {
  5909. =======
  5910. #u1338_text {
  5911. >>>>>>> 0601optimize
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:352px;
  5917. word-wrap:break-word;
  5918. }
  5919. <<<<<<< HEAD
  5920. #u1338_img {
  5921. =======
  5922. #u1339_img {
  5923. >>>>>>> 0601optimize
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:-4px;
  5927. top:-4px;
  5928. width:30px;
  5929. height:30px;
  5930. }
  5931. <<<<<<< HEAD
  5932. #u1338 {
  5933. =======
  5934. #u1339 {
  5935. >>>>>>> 0601optimize
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:976px;
  5939. top:12001px;
  5940. width:20px;
  5941. height:20px;
  5942. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5943. font-weight:700;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. color:#1E1E1E;
  5947. }
  5948. <<<<<<< HEAD
  5949. #u1338_text {
  5950. =======
  5951. #u1339_text {
  5952. >>>>>>> 0601optimize
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:2px;
  5956. top:2px;
  5957. width:16px;
  5958. word-wrap:break-word;
  5959. }
  5960. <<<<<<< HEAD
  5961. #u1339_img {
  5962. =======
  5963. #u1340_img {
  5964. >>>>>>> 0601optimize
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:-4px;
  5968. top:-4px;
  5969. width:30px;
  5970. height:30px;
  5971. }
  5972. <<<<<<< HEAD
  5973. #u1339 {
  5974. =======
  5975. #u1340 {
  5976. >>>>>>> 0601optimize
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:1022px;
  5980. top:12001px;
  5981. width:20px;
  5982. height:20px;
  5983. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5984. font-weight:700;
  5985. font-style:normal;
  5986. font-size:14px;
  5987. color:#1E1E1E;
  5988. }
  5989. <<<<<<< HEAD
  5990. #u1339_text {
  5991. =======
  5992. #u1340_text {
  5993. >>>>>>> 0601optimize
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:2px;
  5997. top:2px;
  5998. width:16px;
  5999. word-wrap:break-word;
  6000. }
  6001. <<<<<<< HEAD
  6002. #u1340_img {
  6003. =======
  6004. #u1341_img {
  6005. >>>>>>> 0601optimize
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:-4px;
  6009. top:-4px;
  6010. width:30px;
  6011. height:30px;
  6012. }
  6013. <<<<<<< HEAD
  6014. #u1340 {
  6015. =======
  6016. #u1341 {
  6017. >>>>>>> 0601optimize
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:1060px;
  6021. top:12001px;
  6022. width:20px;
  6023. height:20px;
  6024. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6025. font-weight:700;
  6026. font-style:normal;
  6027. font-size:14px;
  6028. color:#1E1E1E;
  6029. }
  6030. <<<<<<< HEAD
  6031. #u1340_text {
  6032. =======
  6033. #u1341_text {
  6034. >>>>>>> 0601optimize
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:2px;
  6038. top:2px;
  6039. width:16px;
  6040. word-wrap:break-word;
  6041. }
  6042. <<<<<<< HEAD
  6043. #u1341_img {
  6044. =======
  6045. #u1342_img {
  6046. >>>>>>> 0601optimize
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:-4px;
  6050. top:-4px;
  6051. width:30px;
  6052. height:30px;
  6053. }
  6054. <<<<<<< HEAD
  6055. #u1341 {
  6056. =======
  6057. #u1342 {
  6058. >>>>>>> 0601optimize
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:1107px;
  6062. top:12001px;
  6063. width:20px;
  6064. height:20px;
  6065. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6066. font-weight:700;
  6067. font-style:normal;
  6068. font-size:14px;
  6069. color:#1E1E1E;
  6070. }
  6071. <<<<<<< HEAD
  6072. #u1341_text {
  6073. =======
  6074. #u1342_text {
  6075. >>>>>>> 0601optimize
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:2px;
  6079. top:2px;
  6080. width:16px;
  6081. word-wrap:break-word;
  6082. }
  6083. <<<<<<< HEAD
  6084. #u1342 {
  6085. =======
  6086. #u1343 {
  6087. >>>>>>> 0601optimize
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:0px;
  6093. height:0px;
  6094. }
  6095. <<<<<<< HEAD
  6096. #u1343_img {
  6097. =======
  6098. #u1344_img {
  6099. >>>>>>> 0601optimize
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:-4px;
  6103. top:-4px;
  6104. width:40px;
  6105. height:40px;
  6106. }
  6107. <<<<<<< HEAD
  6108. #u1343 {
  6109. =======
  6110. #u1344 {
  6111. >>>>>>> 0601optimize
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:1181px;
  6115. top:11925px;
  6116. width:30px;
  6117. height:30px;
  6118. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6119. font-weight:700;
  6120. font-style:normal;
  6121. font-size:18px;
  6122. color:#1E1E1E;
  6123. }
  6124. <<<<<<< HEAD
  6125. #u1343_text {
  6126. =======
  6127. #u1344_text {
  6128. >>>>>>> 0601optimize
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:2px;
  6132. top:4px;
  6133. width:26px;
  6134. word-wrap:break-word;
  6135. }
  6136. <<<<<<< HEAD
  6137. #u1344_div {
  6138. =======
  6139. #u1345_div {
  6140. >>>>>>> 0601optimize
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:198px;
  6146. height:19px;
  6147. background:inherit;
  6148. background-color:rgba(255, 255, 255, 0);
  6149. border:none;
  6150. border-radius:0px;
  6151. -moz-box-shadow:none;
  6152. -webkit-box-shadow:none;
  6153. box-shadow:none;
  6154. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6155. font-weight:700;
  6156. font-style:normal;
  6157. font-size:16px;
  6158. }
  6159. <<<<<<< HEAD
  6160. #u1344 {
  6161. =======
  6162. #u1345 {
  6163. >>>>>>> 0601optimize
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1221px;
  6167. top:11932px;
  6168. width:198px;
  6169. height:19px;
  6170. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6171. font-weight:700;
  6172. font-style:normal;
  6173. font-size:16px;
  6174. }
  6175. <<<<<<< HEAD
  6176. #u1344_text {
  6177. =======
  6178. #u1345_text {
  6179. >>>>>>> 0601optimize
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:198px;
  6185. word-wrap:break-word;
  6186. }
  6187. <<<<<<< HEAD
  6188. #u1345_div {
  6189. =======
  6190. #u1346_div {
  6191. >>>>>>> 0601optimize
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:0px;
  6195. top:0px;
  6196. width:352px;
  6197. height:44px;
  6198. background:inherit;
  6199. background-color:rgba(255, 255, 255, 0);
  6200. border:none;
  6201. border-radius:0px;
  6202. -moz-box-shadow:none;
  6203. -webkit-box-shadow:none;
  6204. box-shadow:none;
  6205. line-height:22px;
  6206. }
  6207. <<<<<<< HEAD
  6208. #u1345 {
  6209. =======
  6210. #u1346 {
  6211. >>>>>>> 0601optimize
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:1221px;
  6215. top:11970px;
  6216. width:352px;
  6217. height:44px;
  6218. line-height:22px;
  6219. }
  6220. <<<<<<< HEAD
  6221. #u1345_text {
  6222. =======
  6223. #u1346_text {
  6224. >>>>>>> 0601optimize
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:352px;
  6230. word-wrap:break-word;
  6231. }
  6232. <<<<<<< HEAD
  6233. #u1346 {
  6234. =======
  6235. #u1347 {
  6236. >>>>>>> 0601optimize
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:0px;
  6242. height:0px;
  6243. }
  6244. <<<<<<< HEAD
  6245. #u1347_img {
  6246. =======
  6247. #u1348_img {
  6248. >>>>>>> 0601optimize
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:-4px;
  6252. top:-4px;
  6253. width:40px;
  6254. height:40px;
  6255. }
  6256. <<<<<<< HEAD
  6257. #u1347 {
  6258. =======
  6259. #u1348 {
  6260. >>>>>>> 0601optimize
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:1181px;
  6264. top:12058px;
  6265. width:30px;
  6266. height:30px;
  6267. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6268. font-weight:700;
  6269. font-style:normal;
  6270. font-size:18px;
  6271. color:#1E1E1E;
  6272. }
  6273. <<<<<<< HEAD
  6274. #u1347_text {
  6275. =======
  6276. #u1348_text {
  6277. >>>>>>> 0601optimize
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:2px;
  6281. top:4px;
  6282. width:26px;
  6283. word-wrap:break-word;
  6284. }
  6285. <<<<<<< HEAD
  6286. #u1348_div {
  6287. =======
  6288. #u1349_div {
  6289. >>>>>>> 0601optimize
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:198px;
  6295. height:19px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 0);
  6298. border:none;
  6299. border-radius:0px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6304. font-weight:700;
  6305. font-style:normal;
  6306. font-size:16px;
  6307. }
  6308. <<<<<<< HEAD
  6309. #u1348 {
  6310. =======
  6311. #u1349 {
  6312. >>>>>>> 0601optimize
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:1221px;
  6316. top:12065px;
  6317. width:198px;
  6318. height:19px;
  6319. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6320. font-weight:700;
  6321. font-style:normal;
  6322. font-size:16px;
  6323. }
  6324. <<<<<<< HEAD
  6325. #u1348_text {
  6326. =======
  6327. #u1349_text {
  6328. >>>>>>> 0601optimize
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:198px;
  6334. word-wrap:break-word;
  6335. }
  6336. <<<<<<< HEAD
  6337. #u1349_div {
  6338. =======
  6339. #u1350_div {
  6340. >>>>>>> 0601optimize
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:352px;
  6346. height:66px;
  6347. background:inherit;
  6348. background-color:rgba(255, 255, 255, 0);
  6349. border:none;
  6350. border-radius:0px;
  6351. -moz-box-shadow:none;
  6352. -webkit-box-shadow:none;
  6353. box-shadow:none;
  6354. line-height:22px;
  6355. }
  6356. <<<<<<< HEAD
  6357. #u1349 {
  6358. =======
  6359. #u1350 {
  6360. >>>>>>> 0601optimize
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:1221px;
  6364. top:12103px;
  6365. width:352px;
  6366. height:66px;
  6367. line-height:22px;
  6368. }
  6369. <<<<<<< HEAD
  6370. #u1349_text {
  6371. =======
  6372. #u1350_text {
  6373. >>>>>>> 0601optimize
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:352px;
  6379. word-wrap:break-word;
  6380. }
  6381. <<<<<<< HEAD
  6382. #u1350_div {
  6383. =======
  6384. #u1351_div {
  6385. >>>>>>> 0601optimize
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:185px;
  6391. height:71px;
  6392. background:inherit;
  6393. background-color:rgba(255, 255, 0, 1);
  6394. box-sizing:border-box;
  6395. border-width:1px;
  6396. border-style:solid;
  6397. border-color:rgba(0, 0, 0, 1);
  6398. border-radius:10px;
  6399. -moz-box-shadow:none;
  6400. -webkit-box-shadow:none;
  6401. box-shadow:none;
  6402. color:#000000;
  6403. text-align:left;
  6404. line-height:18px;
  6405. }
  6406. <<<<<<< HEAD
  6407. #u1350 {
  6408. =======
  6409. #u1351 {
  6410. >>>>>>> 0601optimize
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1322px;
  6414. top:12044px;
  6415. width:185px;
  6416. height:71px;
  6417. color:#000000;
  6418. text-align:left;
  6419. line-height:18px;
  6420. }
  6421. <<<<<<< HEAD
  6422. #u1350_text {
  6423. =======
  6424. #u1351_text {
  6425. >>>>>>> 0601optimize
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:2px;
  6429. top:18px;
  6430. width:181px;
  6431. word-wrap:break-word;
  6432. }
  6433. <<<<<<< HEAD
  6434. #u1351 {
  6435. =======
  6436. #u1352 {
  6437. >>>>>>> 0601optimize
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:1374px;
  6441. top:12125px;
  6442. width:57px;
  6443. height:23px;
  6444. overflow:hidden;
  6445. background-image:url('../../resources/images/transparent.gif');
  6446. }
  6447. <<<<<<< HEAD
  6448. #u1352 {
  6449. =======
  6450. #u1353 {
  6451. >>>>>>> 0601optimize
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:0px;
  6457. height:0px;
  6458. }
  6459. <<<<<<< HEAD
  6460. #u1353_img {
  6461. =======
  6462. #u1354_img {
  6463. >>>>>>> 0601optimize
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:-4px;
  6467. top:-4px;
  6468. width:44px;
  6469. height:44px;
  6470. }
  6471. <<<<<<< HEAD
  6472. #u1353 {
  6473. =======
  6474. #u1354 {
  6475. >>>>>>> 0601optimize
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:1181px;
  6479. top:12179px;
  6480. width:34px;
  6481. height:34px;
  6482. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6483. font-weight:700;
  6484. font-style:normal;
  6485. font-size:26px;
  6486. }
  6487. <<<<<<< HEAD
  6488. #u1353_text {
  6489. =======
  6490. #u1354_text {
  6491. >>>>>>> 0601optimize
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:2px;
  6495. top:1px;
  6496. width:30px;
  6497. word-wrap:break-word;
  6498. }
  6499. <<<<<<< HEAD
  6500. #u1354_div {
  6501. =======
  6502. #u1355_div {
  6503. >>>>>>> 0601optimize
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:198px;
  6509. height:19px;
  6510. background:inherit;
  6511. background-color:rgba(255, 255, 255, 0);
  6512. border:none;
  6513. border-radius:0px;
  6514. -moz-box-shadow:none;
  6515. -webkit-box-shadow:none;
  6516. box-shadow:none;
  6517. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6518. font-weight:700;
  6519. font-style:normal;
  6520. font-size:16px;
  6521. }
  6522. <<<<<<< HEAD
  6523. #u1354 {
  6524. =======
  6525. #u1355 {
  6526. >>>>>>> 0601optimize
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:1221px;
  6530. top:12186px;
  6531. width:198px;
  6532. height:19px;
  6533. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6534. font-weight:700;
  6535. font-style:normal;
  6536. font-size:16px;
  6537. }
  6538. <<<<<<< HEAD
  6539. #u1354_text {
  6540. =======
  6541. #u1355_text {
  6542. >>>>>>> 0601optimize
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:198px;
  6548. word-wrap:break-word;
  6549. }
  6550. <<<<<<< HEAD
  6551. #u1355_div {
  6552. =======
  6553. #u1356_div {
  6554. >>>>>>> 0601optimize
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:352px;
  6560. height:22px;
  6561. background:inherit;
  6562. background-color:rgba(255, 255, 255, 0);
  6563. border:none;
  6564. border-radius:0px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. line-height:22px;
  6569. }
  6570. <<<<<<< HEAD
  6571. #u1355 {
  6572. =======
  6573. #u1356 {
  6574. >>>>>>> 0601optimize
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:1221px;
  6578. top:12224px;
  6579. width:352px;
  6580. height:22px;
  6581. line-height:22px;
  6582. }
  6583. <<<<<<< HEAD
  6584. #u1355_text {
  6585. =======
  6586. #u1356_text {
  6587. >>>>>>> 0601optimize
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:352px;
  6593. word-wrap:break-word;
  6594. }
  6595. <<<<<<< HEAD
  6596. #u1356_div {
  6597. =======
  6598. #u1357_div {
  6599. >>>>>>> 0601optimize
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:1px;
  6605. height:22px;
  6606. background:inherit;
  6607. background-color:rgba(255, 255, 255, 0);
  6608. border:none;
  6609. border-radius:0px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6614. font-weight:700;
  6615. font-style:normal;
  6616. font-size:18px;
  6617. }
  6618. <<<<<<< HEAD
  6619. #u1356 {
  6620. =======
  6621. #u1357 {
  6622. >>>>>>> 0601optimize
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:8px;
  6626. top:10477px;
  6627. width:1px;
  6628. height:22px;
  6629. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6630. font-weight:700;
  6631. font-style:normal;
  6632. font-size:18px;
  6633. }
  6634. <<<<<<< HEAD
  6635. #u1356_text {
  6636. =======
  6637. #u1357_text {
  6638. >>>>>>> 0601optimize
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:0px;
  6644. visibility:hidden;
  6645. white-space:nowrap;
  6646. }
  6647. <<<<<<< HEAD
  6648. #u1357_img {
  6649. =======
  6650. #u1358_img {
  6651. >>>>>>> 0601optimize
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:1155px;
  6657. height:583px;
  6658. }
  6659. <<<<<<< HEAD
  6660. #u1357 {
  6661. =======
  6662. #u1358 {
  6663. >>>>>>> 0601optimize
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:16px;
  6667. top:12469px;
  6668. width:1155px;
  6669. height:583px;
  6670. }
  6671. <<<<<<< HEAD
  6672. #u1357_text {
  6673. =======
  6674. #u1358_text {
  6675. >>>>>>> 0601optimize
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:0px;
  6681. visibility:hidden;
  6682. word-wrap:break-word;
  6683. }
  6684. <<<<<<< HEAD
  6685. #u1358_img {
  6686. =======
  6687. #u1359_img {
  6688. >>>>>>> 0601optimize
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:-4px;
  6692. top:-4px;
  6693. width:30px;
  6694. height:30px;
  6695. }
  6696. <<<<<<< HEAD
  6697. #u1358 {
  6698. =======
  6699. #u1359 {
  6700. >>>>>>> 0601optimize
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:1035px;
  6704. top:13023px;
  6705. width:20px;
  6706. height:20px;
  6707. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6708. font-weight:700;
  6709. font-style:normal;
  6710. font-size:14px;
  6711. color:#1E1E1E;
  6712. }
  6713. <<<<<<< HEAD
  6714. #u1358_text {
  6715. =======
  6716. #u1359_text {
  6717. >>>>>>> 0601optimize
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:2px;
  6721. top:2px;
  6722. width:16px;
  6723. word-wrap:break-word;
  6724. }
  6725. <<<<<<< HEAD
  6726. #u1359_div {
  6727. =======
  6728. #u1360_div {
  6729. >>>>>>> 0601optimize
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:210px;
  6735. height:22px;
  6736. background:inherit;
  6737. background-color:rgba(255, 255, 255, 0);
  6738. border:none;
  6739. border-radius:0px;
  6740. -moz-box-shadow:none;
  6741. -webkit-box-shadow:none;
  6742. box-shadow:none;
  6743. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6744. font-weight:700;
  6745. font-style:normal;
  6746. font-size:18px;
  6747. }
  6748. <<<<<<< HEAD
  6749. #u1359 {
  6750. =======
  6751. #u1360 {
  6752. >>>>>>> 0601optimize
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:16px;
  6756. top:12437px;
  6757. width:210px;
  6758. height:22px;
  6759. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6760. font-weight:700;
  6761. font-style:normal;
  6762. font-size:18px;
  6763. }
  6764. <<<<<<< HEAD
  6765. #u1359_text {
  6766. =======
  6767. #u1360_text {
  6768. >>>>>>> 0601optimize
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:210px;
  6774. white-space:nowrap;
  6775. }
  6776. <<<<<<< HEAD
  6777. #u1360 {
  6778. =======
  6779. #u1361 {
  6780. >>>>>>> 0601optimize
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:0px;
  6784. top:0px;
  6785. width:0px;
  6786. height:0px;
  6787. }
  6788. <<<<<<< HEAD
  6789. #u1361_img {
  6790. =======
  6791. #u1362_img {
  6792. >>>>>>> 0601optimize
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:-4px;
  6796. top:-4px;
  6797. width:44px;
  6798. height:44px;
  6799. }
  6800. <<<<<<< HEAD
  6801. #u1361 {
  6802. =======
  6803. #u1362 {
  6804. >>>>>>> 0601optimize
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:1177px;
  6808. top:12472px;
  6809. width:34px;
  6810. height:34px;
  6811. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6812. font-weight:700;
  6813. font-style:normal;
  6814. font-size:26px;
  6815. }
  6816. <<<<<<< HEAD
  6817. #u1361_text {
  6818. =======
  6819. #u1362_text {
  6820. >>>>>>> 0601optimize
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:2px;
  6824. top:1px;
  6825. width:30px;
  6826. word-wrap:break-word;
  6827. }
  6828. <<<<<<< HEAD
  6829. #u1362_div {
  6830. =======
  6831. #u1363_div {
  6832. >>>>>>> 0601optimize
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:198px;
  6838. height:19px;
  6839. background:inherit;
  6840. background-color:rgba(255, 255, 255, 0);
  6841. border:none;
  6842. border-radius:0px;
  6843. -moz-box-shadow:none;
  6844. -webkit-box-shadow:none;
  6845. box-shadow:none;
  6846. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6847. font-weight:700;
  6848. font-style:normal;
  6849. font-size:16px;
  6850. color:#FF0000;
  6851. }
  6852. <<<<<<< HEAD
  6853. #u1362 {
  6854. =======
  6855. #u1363 {
  6856. >>>>>>> 0601optimize
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:1217px;
  6860. top:12479px;
  6861. width:198px;
  6862. height:19px;
  6863. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6864. font-weight:700;
  6865. font-style:normal;
  6866. font-size:16px;
  6867. color:#FF0000;
  6868. }
  6869. <<<<<<< HEAD
  6870. #u1362_text {
  6871. =======
  6872. #u1363_text {
  6873. >>>>>>> 0601optimize
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:198px;
  6879. word-wrap:break-word;
  6880. }
  6881. <<<<<<< HEAD
  6882. #u1363_div {
  6883. =======
  6884. #u1364_div {
  6885. >>>>>>> 0601optimize
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:352px;
  6891. height:198px;
  6892. background:inherit;
  6893. background-color:rgba(255, 255, 255, 0);
  6894. border:none;
  6895. border-radius:0px;
  6896. -moz-box-shadow:none;
  6897. -webkit-box-shadow:none;
  6898. box-shadow:none;
  6899. line-height:22px;
  6900. }
  6901. <<<<<<< HEAD
  6902. #u1363 {
  6903. =======
  6904. #u1364 {
  6905. >>>>>>> 0601optimize
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:1217px;
  6909. top:12517px;
  6910. width:352px;
  6911. height:198px;
  6912. line-height:22px;
  6913. }
  6914. <<<<<<< HEAD
  6915. #u1363_text {
  6916. =======
  6917. #u1364_text {
  6918. >>>>>>> 0601optimize
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:352px;
  6924. word-wrap:break-word;
  6925. }
  6926. <<<<<<< HEAD
  6927. #u1364_div {
  6928. =======
  6929. #u1365_div {
  6930. >>>>>>> 0601optimize
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:286px;
  6936. height:173px;
  6937. background:inherit;
  6938. background-color:rgba(255, 255, 0, 1);
  6939. box-sizing:border-box;
  6940. border-width:1px;
  6941. border-style:solid;
  6942. border-color:rgba(0, 0, 0, 1);
  6943. border-radius:10px;
  6944. -moz-box-shadow:none;
  6945. -webkit-box-shadow:none;
  6946. box-shadow:none;
  6947. color:#000000;
  6948. text-align:left;
  6949. line-height:18px;
  6950. }
  6951. <<<<<<< HEAD
  6952. #u1364 {
  6953. =======
  6954. #u1365 {
  6955. >>>>>>> 0601optimize
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:1221px;
  6959. top:12299px;
  6960. width:286px;
  6961. height:173px;
  6962. color:#000000;
  6963. text-align:left;
  6964. line-height:18px;
  6965. }
  6966. <<<<<<< HEAD
  6967. #u1364_text {
  6968. =======
  6969. #u1365_text {
  6970. >>>>>>> 0601optimize
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:2px;
  6974. top:24px;
  6975. width:282px;
  6976. word-wrap:break-word;
  6977. }
  6978. <<<<<<< HEAD
  6979. #u1365 {
  6980. =======
  6981. #u1366 {
  6982. >>>>>>> 0601optimize
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:1222px;
  6986. top:12477px;
  6987. width:90px;
  6988. height:23px;
  6989. overflow:hidden;
  6990. background-image:url('../../resources/images/transparent.gif');
  6991. }
  6992. <<<<<<< HEAD
  6993. #u1366_div {
  6994. =======
  6995. #u1367_div {
  6996. >>>>>>> 0601optimize
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:167px;
  7002. height:67px;
  7003. background:inherit;
  7004. background-color:rgba(255, 255, 0, 1);
  7005. box-sizing:border-box;
  7006. border-width:1px;
  7007. border-style:solid;
  7008. border-color:rgba(0, 0, 0, 1);
  7009. border-radius:10px;
  7010. -moz-box-shadow:none;
  7011. -webkit-box-shadow:none;
  7012. box-shadow:none;
  7013. color:#000000;
  7014. text-align:left;
  7015. line-height:18px;
  7016. }
  7017. <<<<<<< HEAD
  7018. #u1366 {
  7019. =======
  7020. #u1367 {
  7021. >>>>>>> 0601optimize
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:1383px;
  7025. top:12537px;
  7026. width:167px;
  7027. height:67px;
  7028. color:#000000;
  7029. text-align:left;
  7030. line-height:18px;
  7031. }
  7032. <<<<<<< HEAD
  7033. #u1366_text {
  7034. =======
  7035. #u1367_text {
  7036. >>>>>>> 0601optimize
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:2px;
  7040. top:16px;
  7041. width:163px;
  7042. word-wrap:break-word;
  7043. }
  7044. <<<<<<< HEAD
  7045. #u1367 {
  7046. =======
  7047. #u1368 {
  7048. >>>>>>> 0601optimize
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:1390px;
  7052. top:12604px;
  7053. width:73px;
  7054. height:23px;
  7055. overflow:hidden;
  7056. background-image:url('../../resources/images/transparent.gif');
  7057. }
  7058. <<<<<<< HEAD
  7059. #u1368_div {
  7060. =======
  7061. #u1369_div {
  7062. >>>>>>> 0601optimize
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:167px;
  7068. height:67px;
  7069. background:inherit;
  7070. background-color:rgba(255, 255, 0, 1);
  7071. box-sizing:border-box;
  7072. border-width:1px;
  7073. border-style:solid;
  7074. border-color:rgba(0, 0, 0, 1);
  7075. border-radius:10px;
  7076. -moz-box-shadow:none;
  7077. -webkit-box-shadow:none;
  7078. box-shadow:none;
  7079. color:#000000;
  7080. text-align:left;
  7081. line-height:18px;
  7082. }
  7083. <<<<<<< HEAD
  7084. #u1368 {
  7085. =======
  7086. #u1369 {
  7087. >>>>>>> 0601optimize
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:1233px;
  7091. top:12508px;
  7092. width:167px;
  7093. height:67px;
  7094. color:#000000;
  7095. text-align:left;
  7096. line-height:18px;
  7097. }
  7098. <<<<<<< HEAD
  7099. #u1368_text {
  7100. =======
  7101. #u1369_text {
  7102. >>>>>>> 0601optimize
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:2px;
  7106. top:16px;
  7107. width:163px;
  7108. word-wrap:break-word;
  7109. }
  7110. <<<<<<< HEAD
  7111. #u1369 {
  7112. =======
  7113. #u1370 {
  7114. >>>>>>> 0601optimize
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:1292px;
  7118. top:12581px;
  7119. width:32px;
  7120. height:23px;
  7121. overflow:hidden;
  7122. background-image:url('../../resources/images/transparent.gif');
  7123. }
  7124. <<<<<<< HEAD
  7125. #u1370 {
  7126. =======
  7127. #u1371 {
  7128. >>>>>>> 0601optimize
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:1211px;
  7132. top:12651px;
  7133. width:32px;
  7134. height:22px;
  7135. overflow:hidden;
  7136. background-image:url('../../resources/images/transparent.gif');
  7137. }
  7138. <<<<<<< HEAD
  7139. #u1371_div {
  7140. =======
  7141. #u1372_div {
  7142. >>>>>>> 0601optimize
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:223px;
  7148. height:79px;
  7149. background:inherit;
  7150. background-color:rgba(255, 255, 0, 1);
  7151. box-sizing:border-box;
  7152. border-width:1px;
  7153. border-style:solid;
  7154. border-color:rgba(0, 0, 0, 1);
  7155. border-radius:10px;
  7156. -moz-box-shadow:none;
  7157. -webkit-box-shadow:none;
  7158. box-shadow:none;
  7159. text-align:left;
  7160. line-height:18px;
  7161. }
  7162. <<<<<<< HEAD
  7163. #u1371 {
  7164. =======
  7165. #u1372 {
  7166. >>>>>>> 0601optimize
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:1211px;
  7170. top:12679px;
  7171. width:223px;
  7172. height:79px;
  7173. text-align:left;
  7174. line-height:18px;
  7175. }
  7176. <<<<<<< HEAD
  7177. #u1371_text {
  7178. =======
  7179. #u1372_text {
  7180. >>>>>>> 0601optimize
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:2px;
  7184. top:23px;
  7185. width:219px;
  7186. word-wrap:break-word;
  7187. }
  7188. <<<<<<< HEAD
  7189. #u1372 {
  7190. =======
  7191. #u1373 {
  7192. >>>>>>> 0601optimize
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:1541px;
  7196. top:12627px;
  7197. width:32px;
  7198. height:22px;
  7199. overflow:hidden;
  7200. background-image:url('../../resources/images/transparent.gif');
  7201. }
  7202. <<<<<<< HEAD
  7203. #u1373 {
  7204. =======
  7205. #u1374 {
  7206. >>>>>>> 0601optimize
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:1317px;
  7210. top:12648px;
  7211. width:70px;
  7212. height:21px;
  7213. overflow:hidden;
  7214. background-image:url('../../resources/images/transparent.gif');
  7215. }
  7216. <<<<<<< HEAD
  7217. #u1374_div {
  7218. =======
  7219. #u1375_div {
  7220. >>>>>>> 0601optimize
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:232px;
  7226. height:136px;
  7227. background:inherit;
  7228. background-color:rgba(255, 255, 0, 1);
  7229. box-sizing:border-box;
  7230. border-width:1px;
  7231. border-style:solid;
  7232. border-color:rgba(0, 0, 0, 1);
  7233. border-radius:10px;
  7234. -moz-box-shadow:none;
  7235. -webkit-box-shadow:none;
  7236. box-shadow:none;
  7237. text-align:left;
  7238. line-height:18px;
  7239. }
  7240. <<<<<<< HEAD
  7241. #u1374 {
  7242. =======
  7243. #u1375 {
  7244. >>>>>>> 0601optimize
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:1281px;
  7248. top:12674px;
  7249. width:232px;
  7250. height:136px;
  7251. text-align:left;
  7252. line-height:18px;
  7253. }
  7254. <<<<<<< HEAD
  7255. #u1374_text {
  7256. =======
  7257. #u1375_text {
  7258. >>>>>>> 0601optimize
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:2px;
  7262. top:8px;
  7263. width:228px;
  7264. word-wrap:break-word;
  7265. }
  7266. <<<<<<< HEAD
  7267. #u1375_div {
  7268. =======
  7269. #u1376_div {
  7270. >>>>>>> 0601optimize
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:0px;
  7274. top:0px;
  7275. width:264px;
  7276. height:22px;
  7277. background:inherit;
  7278. background-color:rgba(255, 255, 255, 0);
  7279. border:none;
  7280. border-radius:0px;
  7281. -moz-box-shadow:none;
  7282. -webkit-box-shadow:none;
  7283. box-shadow:none;
  7284. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7285. font-weight:700;
  7286. font-style:normal;
  7287. font-size:18px;
  7288. }
  7289. <<<<<<< HEAD
  7290. #u1375 {
  7291. =======
  7292. #u1376 {
  7293. >>>>>>> 0601optimize
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:16px;
  7297. top:13798px;
  7298. width:264px;
  7299. height:22px;
  7300. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7301. font-weight:700;
  7302. font-style:normal;
  7303. font-size:18px;
  7304. }
  7305. <<<<<<< HEAD
  7306. #u1375_text {
  7307. =======
  7308. #u1376_text {
  7309. >>>>>>> 0601optimize
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:264px;
  7315. white-space:nowrap;
  7316. }
  7317. <<<<<<< HEAD
  7318. #u1376_img {
  7319. =======
  7320. #u1377_img {
  7321. >>>>>>> 0601optimize
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:1155px;
  7327. height:583px;
  7328. }
  7329. <<<<<<< HEAD
  7330. #u1376 {
  7331. =======
  7332. #u1377 {
  7333. >>>>>>> 0601optimize
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:16px;
  7337. top:13830px;
  7338. width:1155px;
  7339. height:583px;
  7340. }
  7341. <<<<<<< HEAD
  7342. #u1376_text {
  7343. =======
  7344. #u1377_text {
  7345. >>>>>>> 0601optimize
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:0px;
  7351. visibility:hidden;
  7352. word-wrap:break-word;
  7353. }
  7354. <<<<<<< HEAD
  7355. #u1377_img {
  7356. =======
  7357. #u1378_img {
  7358. >>>>>>> 0601optimize
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:-4px;
  7362. top:-4px;
  7363. width:30px;
  7364. height:30px;
  7365. }
  7366. <<<<<<< HEAD
  7367. #u1377 {
  7368. =======
  7369. #u1378 {
  7370. >>>>>>> 0601optimize
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:1051px;
  7374. top:14317px;
  7375. width:20px;
  7376. height:20px;
  7377. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7378. font-weight:700;
  7379. font-style:normal;
  7380. font-size:14px;
  7381. color:#1E1E1E;
  7382. }
  7383. <<<<<<< HEAD
  7384. #u1377_text {
  7385. =======
  7386. #u1378_text {
  7387. >>>>>>> 0601optimize
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:2px;
  7391. top:2px;
  7392. width:16px;
  7393. word-wrap:break-word;
  7394. }
  7395. <<<<<<< HEAD
  7396. #u1378_img {
  7397. =======
  7398. #u1379_img {
  7399. >>>>>>> 0601optimize
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:-4px;
  7403. top:-4px;
  7404. width:30px;
  7405. height:30px;
  7406. }
  7407. <<<<<<< HEAD
  7408. #u1378 {
  7409. =======
  7410. #u1379 {
  7411. >>>>>>> 0601optimize
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:1138px;
  7415. top:14317px;
  7416. width:20px;
  7417. height:20px;
  7418. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7419. font-weight:700;
  7420. font-style:normal;
  7421. font-size:14px;
  7422. color:#1E1E1E;
  7423. }
  7424. <<<<<<< HEAD
  7425. #u1378_text {
  7426. =======
  7427. #u1379_text {
  7428. >>>>>>> 0601optimize
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:2px;
  7432. top:2px;
  7433. width:16px;
  7434. word-wrap:break-word;
  7435. }
  7436. <<<<<<< HEAD
  7437. #u1379 {
  7438. =======
  7439. #u1380 {
  7440. >>>>>>> 0601optimize
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:0px;
  7446. height:0px;
  7447. }
  7448. <<<<<<< HEAD
  7449. #u1380_img {
  7450. =======
  7451. #u1381_img {
  7452. >>>>>>> 0601optimize
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:-4px;
  7456. top:-4px;
  7457. width:40px;
  7458. height:40px;
  7459. }
  7460. <<<<<<< HEAD
  7461. #u1380 {
  7462. =======
  7463. #u1381 {
  7464. >>>>>>> 0601optimize
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:1176px;
  7468. top:14093px;
  7469. width:30px;
  7470. height:30px;
  7471. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7472. font-weight:700;
  7473. font-style:normal;
  7474. font-size:18px;
  7475. color:#1E1E1E;
  7476. }
  7477. <<<<<<< HEAD
  7478. #u1380_text {
  7479. =======
  7480. #u1381_text {
  7481. >>>>>>> 0601optimize
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:2px;
  7485. top:4px;
  7486. width:26px;
  7487. word-wrap:break-word;
  7488. }
  7489. <<<<<<< HEAD
  7490. #u1381_div {
  7491. =======
  7492. #u1382_div {
  7493. >>>>>>> 0601optimize
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:198px;
  7499. height:19px;
  7500. background:inherit;
  7501. background-color:rgba(255, 255, 255, 0);
  7502. border:none;
  7503. border-radius:0px;
  7504. -moz-box-shadow:none;
  7505. -webkit-box-shadow:none;
  7506. box-shadow:none;
  7507. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7508. font-weight:700;
  7509. font-style:normal;
  7510. font-size:16px;
  7511. color:#FF0000;
  7512. }
  7513. <<<<<<< HEAD
  7514. #u1381 {
  7515. =======
  7516. #u1382 {
  7517. >>>>>>> 0601optimize
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:1216px;
  7521. top:14100px;
  7522. width:198px;
  7523. height:19px;
  7524. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7525. font-weight:700;
  7526. font-style:normal;
  7527. font-size:16px;
  7528. color:#FF0000;
  7529. }
  7530. <<<<<<< HEAD
  7531. #u1381_text {
  7532. =======
  7533. #u1382_text {
  7534. >>>>>>> 0601optimize
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:198px;
  7540. word-wrap:break-word;
  7541. }
  7542. <<<<<<< HEAD
  7543. #u1382_div {
  7544. =======
  7545. #u1383_div {
  7546. >>>>>>> 0601optimize
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:352px;
  7552. height:88px;
  7553. background:inherit;
  7554. background-color:rgba(255, 255, 255, 0);
  7555. border:none;
  7556. border-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. line-height:22px;
  7561. }
  7562. <<<<<<< HEAD
  7563. #u1382 {
  7564. =======
  7565. #u1383 {
  7566. >>>>>>> 0601optimize
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:1216px;
  7570. top:14138px;
  7571. width:352px;
  7572. height:88px;
  7573. line-height:22px;
  7574. }
  7575. <<<<<<< HEAD
  7576. #u1382_text {
  7577. =======
  7578. #u1383_text {
  7579. >>>>>>> 0601optimize
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:352px;
  7585. word-wrap:break-word;
  7586. }
  7587. <<<<<<< HEAD
  7588. #u1383 {
  7589. =======
  7590. #u1384 {
  7591. >>>>>>> 0601optimize
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:1221px;
  7595. top:14097px;
  7596. width:90px;
  7597. height:23px;
  7598. overflow:hidden;
  7599. background-image:url('../../resources/images/transparent.gif');
  7600. }
  7601. <<<<<<< HEAD
  7602. #u1384 {
  7603. =======
  7604. #u1385 {
  7605. >>>>>>> 0601optimize
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:0px;
  7611. height:0px;
  7612. }
  7613. <<<<<<< HEAD
  7614. #u1385_div {
  7615. =======
  7616. #u1386_div {
  7617. >>>>>>> 0601optimize
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:352px;
  7623. height:176px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 0);
  7626. border:none;
  7627. border-radius:0px;
  7628. -moz-box-shadow:none;
  7629. -webkit-box-shadow:none;
  7630. box-shadow:none;
  7631. line-height:22px;
  7632. }
  7633. <<<<<<< HEAD
  7634. #u1385 {
  7635. =======
  7636. #u1386 {
  7637. >>>>>>> 0601optimize
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:1221px;
  7641. top:13870px;
  7642. width:352px;
  7643. height:176px;
  7644. line-height:22px;
  7645. }
  7646. <<<<<<< HEAD
  7647. #u1385_text {
  7648. =======
  7649. #u1386_text {
  7650. >>>>>>> 0601optimize
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:352px;
  7656. word-wrap:break-word;
  7657. }
  7658. <<<<<<< HEAD
  7659. #u1386_img {
  7660. =======
  7661. #u1387_img {
  7662. >>>>>>> 0601optimize
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:-4px;
  7666. top:-4px;
  7667. width:40px;
  7668. height:40px;
  7669. }
  7670. <<<<<<< HEAD
  7671. #u1386 {
  7672. =======
  7673. #u1387 {
  7674. >>>>>>> 0601optimize
  7675. border-width:0px;
  7676. position:absolute;
  7677. left:1176px;
  7678. top:13832px;
  7679. width:30px;
  7680. height:30px;
  7681. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7682. font-weight:700;
  7683. font-style:normal;
  7684. font-size:18px;
  7685. color:#1E1E1E;
  7686. }
  7687. <<<<<<< HEAD
  7688. #u1386_text {
  7689. =======
  7690. #u1387_text {
  7691. >>>>>>> 0601optimize
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:2px;
  7695. top:4px;
  7696. width:26px;
  7697. word-wrap:break-word;
  7698. }
  7699. <<<<<<< HEAD
  7700. #u1387_div {
  7701. =======
  7702. #u1388_div {
  7703. >>>>>>> 0601optimize
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:198px;
  7709. height:19px;
  7710. background:inherit;
  7711. background-color:rgba(255, 255, 255, 0);
  7712. border:none;
  7713. border-radius:0px;
  7714. -moz-box-shadow:none;
  7715. -webkit-box-shadow:none;
  7716. box-shadow:none;
  7717. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7718. font-weight:700;
  7719. font-style:normal;
  7720. font-size:16px;
  7721. color:#FF0000;
  7722. }
  7723. <<<<<<< HEAD
  7724. #u1387 {
  7725. =======
  7726. #u1388 {
  7727. >>>>>>> 0601optimize
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:1216px;
  7731. top:13839px;
  7732. width:198px;
  7733. height:19px;
  7734. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7735. font-weight:700;
  7736. font-style:normal;
  7737. font-size:16px;
  7738. color:#FF0000;
  7739. }
  7740. <<<<<<< HEAD
  7741. #u1387_text {
  7742. =======
  7743. #u1388_text {
  7744. >>>>>>> 0601optimize
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:198px;
  7750. word-wrap:break-word;
  7751. }
  7752. <<<<<<< HEAD
  7753. #u1388_div {
  7754. =======
  7755. #u1389_div {
  7756. >>>>>>> 0601optimize
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:296px;
  7762. height:102px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 0, 1);
  7765. box-sizing:border-box;
  7766. border-width:1px;
  7767. border-style:solid;
  7768. border-color:rgba(0, 0, 0, 1);
  7769. border-radius:10px;
  7770. -moz-box-shadow:none;
  7771. -webkit-box-shadow:none;
  7772. box-shadow:none;
  7773. color:#000000;
  7774. text-align:left;
  7775. line-height:18px;
  7776. }
  7777. <<<<<<< HEAD
  7778. #u1388 {
  7779. =======
  7780. #u1389 {
  7781. >>>>>>> 0601optimize
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:1216px;
  7785. top:13720px;
  7786. width:296px;
  7787. height:102px;
  7788. color:#000000;
  7789. text-align:left;
  7790. line-height:18px;
  7791. }
  7792. <<<<<<< HEAD
  7793. #u1388_text {
  7794. =======
  7795. #u1389_text {
  7796. >>>>>>> 0601optimize
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:2px;
  7800. top:15px;
  7801. width:292px;
  7802. word-wrap:break-word;
  7803. }
  7804. <<<<<<< HEAD
  7805. #u1389 {
  7806. =======
  7807. #u1390 {
  7808. >>>>>>> 0601optimize
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:1221px;
  7812. top:13837px;
  7813. width:86px;
  7814. height:23px;
  7815. overflow:hidden;
  7816. background-image:url('../../resources/images/transparent.gif');
  7817. }
  7818. <<<<<<< HEAD
  7819. #u1390_div {
  7820. =======
  7821. #u1391_div {
  7822. >>>>>>> 0601optimize
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:305px;
  7828. height:129px;
  7829. background:inherit;
  7830. background-color:rgba(255, 255, 0, 1);
  7831. box-sizing:border-box;
  7832. border-width:1px;
  7833. border-style:solid;
  7834. border-color:rgba(0, 0, 0, 1);
  7835. border-radius:10px;
  7836. -moz-box-shadow:none;
  7837. -webkit-box-shadow:none;
  7838. box-shadow:none;
  7839. color:#000000;
  7840. text-align:left;
  7841. line-height:18px;
  7842. }
  7843. <<<<<<< HEAD
  7844. #u1390 {
  7845. =======
  7846. #u1391 {
  7847. >>>>>>> 0601optimize
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:1222px;
  7851. top:13958px;
  7852. width:305px;
  7853. height:129px;
  7854. color:#000000;
  7855. text-align:left;
  7856. line-height:18px;
  7857. }
  7858. <<<<<<< HEAD
  7859. #u1390_text {
  7860. =======
  7861. #u1391_text {
  7862. >>>>>>> 0601optimize
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:2px;
  7866. top:10px;
  7867. width:301px;
  7868. word-wrap:break-word;
  7869. }
  7870. <<<<<<< HEAD
  7871. #u1391_img {
  7872. =======
  7873. #u1392_img {
  7874. >>>>>>> 0601optimize
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:0px;
  7878. top:0px;
  7879. width:1155px;
  7880. height:583px;
  7881. }
  7882. <<<<<<< HEAD
  7883. #u1391 {
  7884. =======
  7885. #u1392 {
  7886. >>>>>>> 0601optimize
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:8px;
  7890. top:13099px;
  7891. width:1155px;
  7892. height:583px;
  7893. }
  7894. <<<<<<< HEAD
  7895. #u1391_text {
  7896. =======
  7897. #u1392_text {
  7898. >>>>>>> 0601optimize
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:0px;
  7902. top:0px;
  7903. width:0px;
  7904. visibility:hidden;
  7905. word-wrap:break-word;
  7906. }
  7907. <<<<<<< HEAD
  7908. #u1392 {
  7909. =======
  7910. #u1393 {
  7911. >>>>>>> 0601optimize
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:1490px;
  7915. top:12671px;
  7916. width:27px;
  7917. height:21px;
  7918. overflow:hidden;
  7919. background-image:url('../../resources/images/transparent.gif');
  7920. }
  7921. <<<<<<< HEAD
  7922. #u1393_div {
  7923. =======
  7924. #u1394_div {
  7925. >>>>>>> 0601optimize
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:232px;
  7931. height:104px;
  7932. background:inherit;
  7933. background-color:rgba(255, 255, 0, 1);
  7934. box-sizing:border-box;
  7935. border-width:1px;
  7936. border-style:solid;
  7937. border-color:rgba(0, 0, 0, 1);
  7938. border-radius:10px;
  7939. -moz-box-shadow:none;
  7940. -webkit-box-shadow:none;
  7941. box-shadow:none;
  7942. text-align:left;
  7943. line-height:18px;
  7944. }
  7945. <<<<<<< HEAD
  7946. #u1393 {
  7947. =======
  7948. #u1394 {
  7949. >>>>>>> 0601optimize
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:1324px;
  7953. top:12560px;
  7954. width:232px;
  7955. height:104px;
  7956. text-align:left;
  7957. line-height:18px;
  7958. }
  7959. <<<<<<< HEAD
  7960. #u1393_text {
  7961. =======
  7962. #u1394_text {
  7963. >>>>>>> 0601optimize
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:2px;
  7967. top:12px;
  7968. width:228px;
  7969. word-wrap:break-word;
  7970. }
  7971. <<<<<<< HEAD
  7972. #u1394 {
  7973. =======
  7974. #u1395 {
  7975. >>>>>>> 0601optimize
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:0px;
  7981. height:0px;
  7982. }
  7983. <<<<<<< HEAD
  7984. #u1395_img {
  7985. =======
  7986. #u1396_img {
  7987. >>>>>>> 0601optimize
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:-4px;
  7991. top:-4px;
  7992. width:44px;
  7993. height:44px;
  7994. }
  7995. <<<<<<< HEAD
  7996. #u1395 {
  7997. =======
  7998. #u1396 {
  7999. >>>>>>> 0601optimize
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:1181px;
  8003. top:14566px;
  8004. width:34px;
  8005. height:34px;
  8006. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8007. font-weight:700;
  8008. font-style:normal;
  8009. font-size:26px;
  8010. }
  8011. <<<<<<< HEAD
  8012. #u1395_text {
  8013. =======
  8014. #u1396_text {
  8015. >>>>>>> 0601optimize
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:2px;
  8019. top:1px;
  8020. width:30px;
  8021. word-wrap:break-word;
  8022. }
  8023. <<<<<<< HEAD
  8024. #u1396_div {
  8025. =======
  8026. #u1397_div {
  8027. >>>>>>> 0601optimize
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:101px;
  8033. height:19px;
  8034. background:inherit;
  8035. background-color:rgba(255, 255, 255, 0);
  8036. border:none;
  8037. border-radius:0px;
  8038. -moz-box-shadow:none;
  8039. -webkit-box-shadow:none;
  8040. box-shadow:none;
  8041. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8042. font-weight:700;
  8043. font-style:normal;
  8044. font-size:16px;
  8045. }
  8046. <<<<<<< HEAD
  8047. #u1396 {
  8048. =======
  8049. #u1397 {
  8050. >>>>>>> 0601optimize
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:1221px;
  8054. top:14573px;
  8055. width:101px;
  8056. height:19px;
  8057. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8058. font-weight:700;
  8059. font-style:normal;
  8060. font-size:16px;
  8061. }
  8062. <<<<<<< HEAD
  8063. #u1396_text {
  8064. =======
  8065. #u1397_text {
  8066. >>>>>>> 0601optimize
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:101px;
  8072. word-wrap:break-word;
  8073. }
  8074. <<<<<<< HEAD
  8075. #u1397_div {
  8076. =======
  8077. #u1398_div {
  8078. >>>>>>> 0601optimize
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:0px;
  8082. top:0px;
  8083. width:352px;
  8084. height:110px;
  8085. background:inherit;
  8086. background-color:rgba(255, 255, 255, 0);
  8087. border:none;
  8088. border-radius:0px;
  8089. -moz-box-shadow:none;
  8090. -webkit-box-shadow:none;
  8091. box-shadow:none;
  8092. line-height:22px;
  8093. }
  8094. <<<<<<< HEAD
  8095. #u1397 {
  8096. =======
  8097. #u1398 {
  8098. >>>>>>> 0601optimize
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:1221px;
  8102. top:14611px;
  8103. width:352px;
  8104. height:110px;
  8105. line-height:22px;
  8106. }
  8107. <<<<<<< HEAD
  8108. #u1397_text {
  8109. =======
  8110. #u1398_text {
  8111. >>>>>>> 0601optimize
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:352px;
  8117. word-wrap:break-word;
  8118. }
  8119. <<<<<<< HEAD
  8120. #u1398_img {
  8121. =======
  8122. #u1399_img {
  8123. >>>>>>> 0601optimize
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:0px;
  8127. top:0px;
  8128. width:1155px;
  8129. height:583px;
  8130. }
  8131. <<<<<<< HEAD
  8132. #u1398 {
  8133. =======
  8134. #u1399 {
  8135. >>>>>>> 0601optimize
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:16px;
  8139. top:14566px;
  8140. width:1155px;
  8141. height:583px;
  8142. }
  8143. <<<<<<< HEAD
  8144. #u1398_text {
  8145. =======
  8146. #u1399_text {
  8147. >>>>>>> 0601optimize
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:0px;
  8151. top:0px;
  8152. width:0px;
  8153. visibility:hidden;
  8154. word-wrap:break-word;
  8155. }
  8156. <<<<<<< HEAD
  8157. #u1399_img {
  8158. =======
  8159. #u1400_img {
  8160. >>>>>>> 0601optimize
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:-4px;
  8164. top:-4px;
  8165. width:30px;
  8166. height:30px;
  8167. }
  8168. <<<<<<< HEAD
  8169. #u1399 {
  8170. =======
  8171. #u1400 {
  8172. >>>>>>> 0601optimize
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:215px;
  8176. top:14718px;
  8177. width:20px;
  8178. height:20px;
  8179. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8180. font-weight:700;
  8181. font-style:normal;
  8182. font-size:14px;
  8183. color:#1E1E1E;
  8184. }
  8185. <<<<<<< HEAD
  8186. #u1399_text {
  8187. =======
  8188. #u1400_text {
  8189. >>>>>>> 0601optimize
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:2px;
  8193. top:2px;
  8194. width:16px;
  8195. word-wrap:break-word;
  8196. }
  8197. <<<<<<< HEAD
  8198. #u1400_img {
  8199. =======
  8200. #u1401_img {
  8201. >>>>>>> 0601optimize
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:1155px;
  8207. height:583px;
  8208. }
  8209. <<<<<<< HEAD
  8210. #u1400 {
  8211. =======
  8212. #u1401 {
  8213. >>>>>>> 0601optimize
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:16px;
  8217. top:15188px;
  8218. width:1155px;
  8219. height:583px;
  8220. }
  8221. <<<<<<< HEAD
  8222. #u1400_text {
  8223. =======
  8224. #u1401_text {
  8225. >>>>>>> 0601optimize
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:0px;
  8231. visibility:hidden;
  8232. word-wrap:break-word;
  8233. }
  8234. <<<<<<< HEAD
  8235. #u1401_div {
  8236. =======
  8237. #u1402_div {
  8238. >>>>>>> 0601optimize
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:0px;
  8242. top:0px;
  8243. width:228px;
  8244. height:22px;
  8245. background:inherit;
  8246. background-color:rgba(255, 255, 255, 0);
  8247. border:none;
  8248. border-radius:0px;
  8249. -moz-box-shadow:none;
  8250. -webkit-box-shadow:none;
  8251. box-shadow:none;
  8252. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8253. font-weight:700;
  8254. font-style:normal;
  8255. font-size:18px;
  8256. }
  8257. <<<<<<< HEAD
  8258. #u1401 {
  8259. =======
  8260. #u1402 {
  8261. >>>>>>> 0601optimize
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:16px;
  8265. top:14515px;
  8266. width:228px;
  8267. height:22px;
  8268. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8269. font-weight:700;
  8270. font-style:normal;
  8271. font-size:18px;
  8272. }
  8273. <<<<<<< HEAD
  8274. #u1401_text {
  8275. =======
  8276. #u1402_text {
  8277. >>>>>>> 0601optimize
  8278. border-width:0px;
  8279. position:absolute;
  8280. left:0px;
  8281. top:0px;
  8282. width:228px;
  8283. white-space:nowrap;
  8284. }
  8285. <<<<<<< HEAD
  8286. #u1402_div {
  8287. =======
  8288. #u1403_div {
  8289. >>>>>>> 0601optimize
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:0px;
  8293. top:0px;
  8294. width:223px;
  8295. height:105px;
  8296. background:inherit;
  8297. background-color:rgba(255, 255, 0, 1);
  8298. box-sizing:border-box;
  8299. border-width:1px;
  8300. border-style:solid;
  8301. border-color:rgba(0, 0, 0, 1);
  8302. border-radius:10px;
  8303. -moz-box-shadow:none;
  8304. -webkit-box-shadow:none;
  8305. box-shadow:none;
  8306. text-align:left;
  8307. line-height:18px;
  8308. }
  8309. <<<<<<< HEAD
  8310. #u1402 {
  8311. =======
  8312. #u1403 {
  8313. >>>>>>> 0601optimize
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:1278px;
  8317. top:2375px;
  8318. width:223px;
  8319. height:105px;
  8320. text-align:left;
  8321. line-height:18px;
  8322. }
  8323. <<<<<<< HEAD
  8324. #u1402_text {
  8325. =======
  8326. #u1403_text {
  8327. >>>>>>> 0601optimize
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:2px;
  8331. top:13px;
  8332. width:219px;
  8333. word-wrap:break-word;
  8334. }
  8335. <<<<<<< HEAD
  8336. #u1403 {
  8337. =======
  8338. #u1404 {
  8339. >>>>>>> 0601optimize
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:1484px;
  8343. top:2556px;
  8344. width:58px;
  8345. height:22px;
  8346. overflow:hidden;
  8347. background-image:url('../../resources/images/transparent.gif');
  8348. }
  8349. <<<<<<< HEAD
  8350. #u1404_div {
  8351. =======
  8352. #u1405_div {
  8353. >>>>>>> 0601optimize
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:0px;
  8357. top:0px;
  8358. width:223px;
  8359. height:79px;
  8360. background:inherit;
  8361. background-color:rgba(255, 255, 0, 1);
  8362. box-sizing:border-box;
  8363. border-width:1px;
  8364. border-style:solid;
  8365. border-color:rgba(0, 0, 0, 1);
  8366. border-radius:10px;
  8367. -moz-box-shadow:none;
  8368. -webkit-box-shadow:none;
  8369. box-shadow:none;
  8370. text-align:left;
  8371. line-height:18px;
  8372. }
  8373. <<<<<<< HEAD
  8374. #u1404 {
  8375. =======
  8376. #u1405 {
  8377. >>>>>>> 0601optimize
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:1331px;
  8381. top:2588px;
  8382. width:223px;
  8383. height:79px;
  8384. text-align:left;
  8385. line-height:18px;
  8386. }
  8387. <<<<<<< HEAD
  8388. #u1404_text {
  8389. =======
  8390. #u1405_text {
  8391. >>>>>>> 0601optimize
  8392. border-width:0px;
  8393. position:absolute;
  8394. left:2px;
  8395. top:23px;
  8396. width:219px;
  8397. word-wrap:break-word;
  8398. }
  8399. <<<<<<< HEAD
  8400. #u1405 {
  8401. =======
  8402. #u1406 {
  8403. >>>>>>> 0601optimize
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:0px;
  8409. height:0px;
  8410. }
  8411. <<<<<<< HEAD
  8412. #u1406_img {
  8413. =======
  8414. #u1407_img {
  8415. >>>>>>> 0601optimize
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:-4px;
  8419. top:-4px;
  8420. width:40px;
  8421. height:40px;
  8422. }
  8423. <<<<<<< HEAD
  8424. #u1406 {
  8425. =======
  8426. #u1407 {
  8427. >>>>>>> 0601optimize
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:1173px;
  8431. top:5779px;
  8432. width:30px;
  8433. height:30px;
  8434. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8435. font-weight:700;
  8436. font-style:normal;
  8437. font-size:18px;
  8438. color:#1E1E1E;
  8439. }
  8440. <<<<<<< HEAD
  8441. #u1406_text {
  8442. =======
  8443. #u1407_text {
  8444. >>>>>>> 0601optimize
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:2px;
  8448. top:4px;
  8449. width:26px;
  8450. word-wrap:break-word;
  8451. }
  8452. <<<<<<< HEAD
  8453. #u1407_div {
  8454. =======
  8455. #u1408_div {
  8456. >>>>>>> 0601optimize
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:0px;
  8460. top:0px;
  8461. width:131px;
  8462. height:19px;
  8463. background:inherit;
  8464. background-color:rgba(255, 255, 255, 0);
  8465. border:none;
  8466. border-radius:0px;
  8467. -moz-box-shadow:none;
  8468. -webkit-box-shadow:none;
  8469. box-shadow:none;
  8470. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8471. font-weight:700;
  8472. font-style:normal;
  8473. font-size:16px;
  8474. }
  8475. <<<<<<< HEAD
  8476. #u1407 {
  8477. =======
  8478. #u1408 {
  8479. >>>>>>> 0601optimize
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:1213px;
  8483. top:5786px;
  8484. width:131px;
  8485. height:19px;
  8486. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8487. font-weight:700;
  8488. font-style:normal;
  8489. font-size:16px;
  8490. }
  8491. <<<<<<< HEAD
  8492. #u1407_text {
  8493. =======
  8494. #u1408_text {
  8495. >>>>>>> 0601optimize
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:0px;
  8499. top:0px;
  8500. width:131px;
  8501. word-wrap:break-word;
  8502. }
  8503. <<<<<<< HEAD
  8504. #u1408_div {
  8505. =======
  8506. #u1409_div {
  8507. >>>>>>> 0601optimize
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:0px;
  8511. top:0px;
  8512. width:352px;
  8513. height:154px;
  8514. background:inherit;
  8515. background-color:rgba(255, 255, 255, 0);
  8516. border:none;
  8517. border-radius:0px;
  8518. -moz-box-shadow:none;
  8519. -webkit-box-shadow:none;
  8520. box-shadow:none;
  8521. line-height:22px;
  8522. }
  8523. <<<<<<< HEAD
  8524. #u1408 {
  8525. =======
  8526. #u1409 {
  8527. >>>>>>> 0601optimize
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:1213px;
  8531. top:5824px;
  8532. width:352px;
  8533. height:154px;
  8534. line-height:22px;
  8535. }
  8536. <<<<<<< HEAD
  8537. #u1408_text {
  8538. =======
  8539. #u1409_text {
  8540. >>>>>>> 0601optimize
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:352px;
  8546. word-wrap:break-word;
  8547. }
  8548. <<<<<<< HEAD
  8549. #u1409 {
  8550. =======
  8551. #u1410 {
  8552. >>>>>>> 0601optimize
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:1356px;
  8556. top:5933px;
  8557. width:93px;
  8558. height:25px;
  8559. overflow:hidden;
  8560. background-image:url('../../resources/images/transparent.gif');
  8561. }
  8562. <<<<<<< HEAD
  8563. #u1410_div {
  8564. =======
  8565. #u1411_div {
  8566. >>>>>>> 0601optimize
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:0px;
  8570. top:0px;
  8571. width:279px;
  8572. height:105px;
  8573. background:inherit;
  8574. background-color:rgba(255, 255, 0, 1);
  8575. box-sizing:border-box;
  8576. border-width:1px;
  8577. border-style:solid;
  8578. border-color:rgba(0, 0, 0, 1);
  8579. border-radius:10px;
  8580. -moz-box-shadow:none;
  8581. -webkit-box-shadow:none;
  8582. box-shadow:none;
  8583. text-align:left;
  8584. line-height:18px;
  8585. }
  8586. <<<<<<< HEAD
  8587. #u1410 {
  8588. =======
  8589. #u1411 {
  8590. >>>>>>> 0601optimize
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:1250px;
  8594. top:5818px;
  8595. width:279px;
  8596. height:105px;
  8597. text-align:left;
  8598. line-height:18px;
  8599. }
  8600. <<<<<<< HEAD
  8601. #u1410_text {
  8602. =======
  8603. #u1411_text {
  8604. >>>>>>> 0601optimize
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:2px;
  8608. top:13px;
  8609. width:275px;
  8610. word-wrap:break-word;
  8611. }
  8612. <<<<<<< HEAD
  8613. #u1411 {
  8614. =======
  8615. #u1412 {
  8616. >>>>>>> 0601optimize
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:1286px;
  8620. top:5953px;
  8621. width:70px;
  8622. height:25px;
  8623. overflow:hidden;
  8624. background-image:url('../../resources/images/transparent.gif');
  8625. }
  8626. <<<<<<< HEAD
  8627. #u1412 {
  8628. =======
  8629. #u1413 {
  8630. >>>>>>> 0601optimize
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:1485px;
  8634. top:5933px;
  8635. width:54px;
  8636. height:22px;
  8637. overflow:hidden;
  8638. background-image:url('../../resources/images/transparent.gif');
  8639. }
  8640. <<<<<<< HEAD
  8641. #u1413_div {
  8642. =======
  8643. #u1414_div {
  8644. >>>>>>> 0601optimize
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:223px;
  8650. height:79px;
  8651. background:inherit;
  8652. background-color:rgba(255, 255, 0, 1);
  8653. box-sizing:border-box;
  8654. border-width:1px;
  8655. border-style:solid;
  8656. border-color:rgba(0, 0, 0, 1);
  8657. border-radius:10px;
  8658. -moz-box-shadow:none;
  8659. -webkit-box-shadow:none;
  8660. box-shadow:none;
  8661. text-align:left;
  8662. line-height:18px;
  8663. }
  8664. <<<<<<< HEAD
  8665. #u1413 {
  8666. =======
  8667. #u1414 {
  8668. >>>>>>> 0601optimize
  8669. border-width:0px;
  8670. position:absolute;
  8671. left:1331px;
  8672. top:5958px;
  8673. width:223px;
  8674. height:79px;
  8675. text-align:left;
  8676. line-height:18px;
  8677. }
  8678. <<<<<<< HEAD
  8679. #u1413_text {
  8680. =======
  8681. #u1414_text {
  8682. >>>>>>> 0601optimize
  8683. border-width:0px;
  8684. position:absolute;
  8685. left:2px;
  8686. top:23px;
  8687. width:219px;
  8688. word-wrap:break-word;
  8689. }
  8690. <<<<<<< HEAD
  8691. #u1414_div {
  8692. =======
  8693. #u1415_div {
  8694. >>>>>>> 0601optimize
  8695. border-width:0px;
  8696. position:absolute;
  8697. left:0px;
  8698. top:0px;
  8699. width:232px;
  8700. height:146px;
  8701. background:inherit;
  8702. background-color:rgba(255, 255, 0, 1);
  8703. box-sizing:border-box;
  8704. border-width:1px;
  8705. border-style:solid;
  8706. border-color:rgba(0, 0, 0, 1);
  8707. border-radius:10px;
  8708. -moz-box-shadow:none;
  8709. -webkit-box-shadow:none;
  8710. box-shadow:none;
  8711. text-align:left;
  8712. line-height:18px;
  8713. }
  8714. <<<<<<< HEAD
  8715. #u1414 {
  8716. =======
  8717. #u1415 {
  8718. >>>>>>> 0601optimize
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:1213px;
  8722. top:5978px;
  8723. width:232px;
  8724. height:146px;
  8725. text-align:left;
  8726. line-height:18px;
  8727. }
  8728. <<<<<<< HEAD
  8729. #u1414_text {
  8730. =======
  8731. #u1415_text {
  8732. >>>>>>> 0601optimize
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:2px;
  8736. top:18px;
  8737. width:228px;
  8738. word-wrap:break-word;
  8739. }
  8740. <<<<<<< HEAD
  8741. #u1415 {
  8742. =======
  8743. #u1416 {
  8744. >>>>>>> 0601optimize
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:1376px;
  8748. top:5869px;
  8749. width:54px;
  8750. height:20px;
  8751. overflow:hidden;
  8752. background-image:url('../../resources/images/transparent.gif');
  8753. }
  8754. <<<<<<< HEAD
  8755. #u1416_div {
  8756. =======
  8757. #u1417_div {
  8758. >>>>>>> 0601optimize
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:0px;
  8762. top:0px;
  8763. width:223px;
  8764. height:105px;
  8765. background:inherit;
  8766. background-color:rgba(255, 255, 0, 1);
  8767. box-sizing:border-box;
  8768. border-width:1px;
  8769. border-style:solid;
  8770. border-color:rgba(0, 0, 0, 1);
  8771. border-radius:10px;
  8772. -moz-box-shadow:none;
  8773. -webkit-box-shadow:none;
  8774. box-shadow:none;
  8775. text-align:left;
  8776. line-height:18px;
  8777. }
  8778. <<<<<<< HEAD
  8779. #u1416 {
  8780. =======
  8781. #u1417 {
  8782. >>>>>>> 0601optimize
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:1286px;
  8786. top:5759px;
  8787. width:223px;
  8788. height:105px;
  8789. text-align:left;
  8790. line-height:18px;
  8791. }
  8792. <<<<<<< HEAD
  8793. #u1416_text {
  8794. =======
  8795. #u1417_text {
  8796. >>>>>>> 0601optimize
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:2px;
  8800. top:13px;
  8801. width:219px;
  8802. word-wrap:break-word;
  8803. }
  8804. <<<<<<< HEAD
  8805. #u1417_div {
  8806. =======
  8807. #u1418_div {
  8808. >>>>>>> 0601optimize
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:0px;
  8812. top:0px;
  8813. width:232px;
  8814. height:136px;
  8815. background:inherit;
  8816. background-color:rgba(255, 255, 0, 1);
  8817. box-sizing:border-box;
  8818. border-width:1px;
  8819. border-style:solid;
  8820. border-color:rgba(0, 0, 0, 1);
  8821. border-radius:10px;
  8822. -moz-box-shadow:none;
  8823. -webkit-box-shadow:none;
  8824. box-shadow:none;
  8825. text-align:left;
  8826. line-height:18px;
  8827. }
  8828. <<<<<<< HEAD
  8829. #u1417 {
  8830. =======
  8831. #u1418 {
  8832. >>>>>>> 0601optimize
  8833. border-width:0px;
  8834. position:absolute;
  8835. left:1212px;
  8836. top:2599px;
  8837. width:232px;
  8838. height:136px;
  8839. text-align:left;
  8840. line-height:18px;
  8841. }
  8842. <<<<<<< HEAD
  8843. #u1417_text {
  8844. =======
  8845. #u1418_text {
  8846. >>>>>>> 0601optimize
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:2px;
  8850. top:8px;
  8851. width:228px;
  8852. word-wrap:break-word;
  8853. }
  8854. <<<<<<< HEAD
  8855. #u1418_img {
  8856. =======
  8857. #u1419_img {
  8858. >>>>>>> 0601optimize
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:1155px;
  8864. height:583px;
  8865. }
  8866. <<<<<<< HEAD
  8867. #u1418 {
  8868. =======
  8869. #u1419 {
  8870. >>>>>>> 0601optimize
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:8px;
  8874. top:3061px;
  8875. width:1155px;
  8876. height:583px;
  8877. }
  8878. <<<<<<< HEAD
  8879. #u1418_text {
  8880. =======
  8881. #u1419_text {
  8882. >>>>>>> 0601optimize
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:0px;
  8886. top:0px;
  8887. width:0px;
  8888. visibility:hidden;
  8889. word-wrap:break-word;
  8890. }
  8891. <<<<<<< HEAD
  8892. #u1419_div {
  8893. =======
  8894. #u1420_div {
  8895. >>>>>>> 0601optimize
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:0px;
  8899. top:0px;
  8900. width:234px;
  8901. height:22px;
  8902. background:inherit;
  8903. background-color:rgba(255, 255, 255, 0);
  8904. border:none;
  8905. border-radius:0px;
  8906. -moz-box-shadow:none;
  8907. -webkit-box-shadow:none;
  8908. box-shadow:none;
  8909. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8910. font-weight:700;
  8911. font-style:normal;
  8912. font-size:18px;
  8913. }
  8914. <<<<<<< HEAD
  8915. #u1419 {
  8916. =======
  8917. #u1420 {
  8918. >>>>>>> 0601optimize
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:8px;
  8922. top:3023px;
  8923. width:234px;
  8924. height:22px;
  8925. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8926. font-weight:700;
  8927. font-style:normal;
  8928. font-size:18px;
  8929. }
  8930. <<<<<<< HEAD
  8931. #u1419_text {
  8932. =======
  8933. #u1420_text {
  8934. >>>>>>> 0601optimize
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:234px;
  8940. word-wrap:break-word;
  8941. }
  8942. <<<<<<< HEAD
  8943. #u1420 {
  8944. =======
  8945. #u1421 {
  8946. >>>>>>> 0601optimize
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:0px;
  8950. top:0px;
  8951. width:0px;
  8952. height:0px;
  8953. }
  8954. <<<<<<< HEAD
  8955. #u1421_img {
  8956. =======
  8957. #u1422_img {
  8958. >>>>>>> 0601optimize
  8959. border-width:0px;
  8960. position:absolute;
  8961. left:-4px;
  8962. top:-4px;
  8963. width:44px;
  8964. height:44px;
  8965. }
  8966. <<<<<<< HEAD
  8967. #u1421 {
  8968. =======
  8969. #u1422 {
  8970. >>>>>>> 0601optimize
  8971. border-width:0px;
  8972. position:absolute;
  8973. left:1173px;
  8974. top:3061px;
  8975. width:34px;
  8976. height:34px;
  8977. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  8978. font-weight:700;
  8979. font-style:normal;
  8980. font-size:26px;
  8981. }
  8982. <<<<<<< HEAD
  8983. #u1421_text {
  8984. =======
  8985. #u1422_text {
  8986. >>>>>>> 0601optimize
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:2px;
  8990. top:1px;
  8991. width:30px;
  8992. word-wrap:break-word;
  8993. }
  8994. <<<<<<< HEAD
  8995. #u1422_div {
  8996. =======
  8997. #u1423_div {
  8998. >>>>>>> 0601optimize
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:0px;
  9002. top:0px;
  9003. width:131px;
  9004. height:19px;
  9005. background:inherit;
  9006. background-color:rgba(255, 255, 255, 0);
  9007. border:none;
  9008. border-radius:0px;
  9009. -moz-box-shadow:none;
  9010. -webkit-box-shadow:none;
  9011. box-shadow:none;
  9012. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9013. font-weight:700;
  9014. font-style:normal;
  9015. font-size:16px;
  9016. }
  9017. <<<<<<< HEAD
  9018. #u1422 {
  9019. =======
  9020. #u1423 {
  9021. >>>>>>> 0601optimize
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:1213px;
  9025. top:3068px;
  9026. width:131px;
  9027. height:19px;
  9028. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9029. font-weight:700;
  9030. font-style:normal;
  9031. font-size:16px;
  9032. }
  9033. <<<<<<< HEAD
  9034. #u1422_text {
  9035. =======
  9036. #u1423_text {
  9037. >>>>>>> 0601optimize
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:0px;
  9041. top:0px;
  9042. width:131px;
  9043. word-wrap:break-word;
  9044. }
  9045. <<<<<<< HEAD
  9046. #u1423_div {
  9047. =======
  9048. #u1424_div {
  9049. >>>>>>> 0601optimize
  9050. border-width:0px;
  9051. position:absolute;
  9052. left:0px;
  9053. top:0px;
  9054. width:352px;
  9055. height:66px;
  9056. background:inherit;
  9057. background-color:rgba(255, 255, 255, 0);
  9058. border:none;
  9059. border-radius:0px;
  9060. -moz-box-shadow:none;
  9061. -webkit-box-shadow:none;
  9062. box-shadow:none;
  9063. line-height:22px;
  9064. }
  9065. <<<<<<< HEAD
  9066. #u1423 {
  9067. =======
  9068. #u1424 {
  9069. >>>>>>> 0601optimize
  9070. border-width:0px;
  9071. position:absolute;
  9072. left:1213px;
  9073. top:3106px;
  9074. width:352px;
  9075. height:66px;
  9076. line-height:22px;
  9077. }
  9078. <<<<<<< HEAD
  9079. #u1423_text {
  9080. =======
  9081. #u1424_text {
  9082. >>>>>>> 0601optimize
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:352px;
  9088. word-wrap:break-word;
  9089. }
  9090. <<<<<<< HEAD
  9091. #u1424 {
  9092. =======
  9093. #u1425 {
  9094. >>>>>>> 0601optimize
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:0px;
  9100. height:0px;
  9101. }
  9102. <<<<<<< HEAD
  9103. #u1425_img {
  9104. =======
  9105. #u1426_img {
  9106. >>>>>>> 0601optimize
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:-4px;
  9110. top:-4px;
  9111. width:44px;
  9112. height:44px;
  9113. }
  9114. <<<<<<< HEAD
  9115. #u1425 {
  9116. =======
  9117. #u1426 {
  9118. >>>>>>> 0601optimize
  9119. border-width:0px;
  9120. position:absolute;
  9121. left:1173px;
  9122. top:3187px;
  9123. width:34px;
  9124. height:34px;
  9125. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9126. font-weight:700;
  9127. font-style:normal;
  9128. font-size:26px;
  9129. }
  9130. <<<<<<< HEAD
  9131. #u1425_text {
  9132. =======
  9133. #u1426_text {
  9134. >>>>>>> 0601optimize
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:2px;
  9138. top:1px;
  9139. width:30px;
  9140. word-wrap:break-word;
  9141. }
  9142. <<<<<<< HEAD
  9143. #u1426_div {
  9144. =======
  9145. #u1427_div {
  9146. >>>>>>> 0601optimize
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:0px;
  9150. top:0px;
  9151. width:131px;
  9152. height:19px;
  9153. background:inherit;
  9154. background-color:rgba(255, 255, 255, 0);
  9155. border:none;
  9156. border-radius:0px;
  9157. -moz-box-shadow:none;
  9158. -webkit-box-shadow:none;
  9159. box-shadow:none;
  9160. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9161. font-weight:700;
  9162. font-style:normal;
  9163. font-size:16px;
  9164. }
  9165. <<<<<<< HEAD
  9166. #u1426 {
  9167. =======
  9168. #u1427 {
  9169. >>>>>>> 0601optimize
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:1213px;
  9173. top:3194px;
  9174. width:131px;
  9175. height:19px;
  9176. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9177. font-weight:700;
  9178. font-style:normal;
  9179. font-size:16px;
  9180. }
  9181. <<<<<<< HEAD
  9182. #u1426_text {
  9183. =======
  9184. #u1427_text {
  9185. >>>>>>> 0601optimize
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:131px;
  9191. word-wrap:break-word;
  9192. }
  9193. <<<<<<< HEAD
  9194. #u1427_div {
  9195. =======
  9196. #u1428_div {
  9197. >>>>>>> 0601optimize
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:0px;
  9201. top:0px;
  9202. width:352px;
  9203. height:88px;
  9204. background:inherit;
  9205. background-color:rgba(255, 255, 255, 0);
  9206. border:none;
  9207. border-radius:0px;
  9208. -moz-box-shadow:none;
  9209. -webkit-box-shadow:none;
  9210. box-shadow:none;
  9211. line-height:22px;
  9212. }
  9213. <<<<<<< HEAD
  9214. #u1427 {
  9215. =======
  9216. #u1428 {
  9217. >>>>>>> 0601optimize
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:1213px;
  9221. top:3232px;
  9222. width:352px;
  9223. height:88px;
  9224. line-height:22px;
  9225. }
  9226. <<<<<<< HEAD
  9227. #u1427_text {
  9228. =======
  9229. #u1428_text {
  9230. >>>>>>> 0601optimize
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:0px;
  9234. top:0px;
  9235. width:352px;
  9236. word-wrap:break-word;
  9237. }
  9238. <<<<<<< HEAD
  9239. #u1428_img {
  9240. =======
  9241. #u1429_img {
  9242. >>>>>>> 0601optimize
  9243. border-width:0px;
  9244. position:absolute;
  9245. left:0px;
  9246. top:0px;
  9247. width:1155px;
  9248. height:583px;
  9249. }
  9250. <<<<<<< HEAD
  9251. #u1428 {
  9252. =======
  9253. #u1429 {
  9254. >>>>>>> 0601optimize
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:8px;
  9258. top:3741px;
  9259. width:1155px;
  9260. height:583px;
  9261. }
  9262. <<<<<<< HEAD
  9263. #u1428_text {
  9264. =======
  9265. #u1429_text {
  9266. >>>>>>> 0601optimize
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:0px;
  9270. top:0px;
  9271. width:0px;
  9272. visibility:hidden;
  9273. word-wrap:break-word;
  9274. }
  9275. <<<<<<< HEAD
  9276. #u1429_div {
  9277. =======
  9278. #u1430_div {
  9279. >>>>>>> 0601optimize
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:0px;
  9283. top:0px;
  9284. width:234px;
  9285. height:22px;
  9286. background:inherit;
  9287. background-color:rgba(255, 255, 255, 0);
  9288. border:none;
  9289. border-radius:0px;
  9290. -moz-box-shadow:none;
  9291. -webkit-box-shadow:none;
  9292. box-shadow:none;
  9293. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9294. font-weight:700;
  9295. font-style:normal;
  9296. font-size:18px;
  9297. }
  9298. <<<<<<< HEAD
  9299. #u1429 {
  9300. =======
  9301. #u1430 {
  9302. >>>>>>> 0601optimize
  9303. border-width:0px;
  9304. position:absolute;
  9305. left:8px;
  9306. top:3709px;
  9307. width:234px;
  9308. height:22px;
  9309. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9310. font-weight:700;
  9311. font-style:normal;
  9312. font-size:18px;
  9313. }
  9314. <<<<<<< HEAD
  9315. #u1429_text {
  9316. =======
  9317. #u1430_text {
  9318. >>>>>>> 0601optimize
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:0px;
  9322. top:0px;
  9323. width:234px;
  9324. word-wrap:break-word;
  9325. }
  9326. <<<<<<< HEAD
  9327. #u1430_img {
  9328. =======
  9329. #u1431_img {
  9330. >>>>>>> 0601optimize
  9331. border-width:0px;
  9332. position:absolute;
  9333. left:-4px;
  9334. top:-4px;
  9335. width:30px;
  9336. height:30px;
  9337. }
  9338. <<<<<<< HEAD
  9339. #u1430 {
  9340. =======
  9341. #u1431 {
  9342. >>>>>>> 0601optimize
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:454px;
  9346. top:3171px;
  9347. width:20px;
  9348. height:20px;
  9349. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9350. font-weight:700;
  9351. font-style:normal;
  9352. font-size:14px;
  9353. color:#1E1E1E;
  9354. }
  9355. <<<<<<< HEAD
  9356. #u1430_text {
  9357. =======
  9358. #u1431_text {
  9359. >>>>>>> 0601optimize
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:2px;
  9363. top:2px;
  9364. width:16px;
  9365. word-wrap:break-word;
  9366. }
  9367. <<<<<<< HEAD
  9368. #u1431_img {
  9369. =======
  9370. #u1432_img {
  9371. >>>>>>> 0601optimize
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:-4px;
  9375. top:-4px;
  9376. width:30px;
  9377. height:30px;
  9378. }
  9379. <<<<<<< HEAD
  9380. #u1431 {
  9381. =======
  9382. #u1432 {
  9383. >>>>>>> 0601optimize
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:525px;
  9387. top:3171px;
  9388. width:20px;
  9389. height:20px;
  9390. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9391. font-weight:700;
  9392. font-style:normal;
  9393. font-size:14px;
  9394. color:#1E1E1E;
  9395. }
  9396. <<<<<<< HEAD
  9397. #u1431_text {
  9398. =======
  9399. #u1432_text {
  9400. >>>>>>> 0601optimize
  9401. border-width:0px;
  9402. position:absolute;
  9403. left:2px;
  9404. top:2px;
  9405. width:16px;
  9406. word-wrap:break-word;
  9407. }
  9408. <<<<<<< HEAD
  9409. #u1432_img {
  9410. =======
  9411. #u1433_img {
  9412. >>>>>>> 0601optimize
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:0px;
  9416. top:0px;
  9417. width:1155px;
  9418. height:583px;
  9419. }
  9420. <<<<<<< HEAD
  9421. #u1432 {
  9422. =======
  9423. #u1433 {
  9424. >>>>>>> 0601optimize
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:8px;
  9428. top:9807px;
  9429. width:1155px;
  9430. height:583px;
  9431. }
  9432. <<<<<<< HEAD
  9433. #u1432_text {
  9434. =======
  9435. #u1433_text {
  9436. >>>>>>> 0601optimize
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:0px;
  9440. top:0px;
  9441. width:0px;
  9442. visibility:hidden;
  9443. word-wrap:break-word;
  9444. }
  9445. <<<<<<< HEAD
  9446. #u1433 {
  9447. =======
  9448. #u1434 {
  9449. >>>>>>> 0601optimize
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:0px;
  9453. top:0px;
  9454. width:0px;
  9455. height:0px;
  9456. }
  9457. <<<<<<< HEAD
  9458. #u1434_div {
  9459. =======
  9460. #u1435_div {
  9461. >>>>>>> 0601optimize
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:0px;
  9465. top:0px;
  9466. width:352px;
  9467. height:176px;
  9468. background:inherit;
  9469. background-color:rgba(255, 255, 255, 0);
  9470. border:none;
  9471. border-radius:0px;
  9472. -moz-box-shadow:none;
  9473. -webkit-box-shadow:none;
  9474. box-shadow:none;
  9475. line-height:22px;
  9476. }
  9477. <<<<<<< HEAD
  9478. #u1434 {
  9479. =======
  9480. #u1435 {
  9481. >>>>>>> 0601optimize
  9482. border-width:0px;
  9483. position:absolute;
  9484. left:1218px;
  9485. top:9199px;
  9486. width:352px;
  9487. height:176px;
  9488. line-height:22px;
  9489. }
  9490. <<<<<<< HEAD
  9491. #u1434_text {
  9492. =======
  9493. #u1435_text {
  9494. >>>>>>> 0601optimize
  9495. border-width:0px;
  9496. position:absolute;
  9497. left:0px;
  9498. top:0px;
  9499. width:352px;
  9500. word-wrap:break-word;
  9501. }
  9502. <<<<<<< HEAD
  9503. #u1435_img {
  9504. =======
  9505. #u1436_img {
  9506. >>>>>>> 0601optimize
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:-4px;
  9510. top:-4px;
  9511. width:44px;
  9512. height:44px;
  9513. }
  9514. <<<<<<< HEAD
  9515. #u1435 {
  9516. =======
  9517. #u1436 {
  9518. >>>>>>> 0601optimize
  9519. border-width:0px;
  9520. position:absolute;
  9521. left:1173px;
  9522. top:9161px;
  9523. width:34px;
  9524. height:34px;
  9525. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9526. font-weight:700;
  9527. font-style:normal;
  9528. font-size:26px;
  9529. }
  9530. <<<<<<< HEAD
  9531. #u1435_text {
  9532. =======
  9533. #u1436_text {
  9534. >>>>>>> 0601optimize
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:2px;
  9538. top:1px;
  9539. width:30px;
  9540. word-wrap:break-word;
  9541. }
  9542. <<<<<<< HEAD
  9543. #u1436_div {
  9544. =======
  9545. #u1437_div {
  9546. >>>>>>> 0601optimize
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:0px;
  9550. top:0px;
  9551. width:198px;
  9552. height:19px;
  9553. background:inherit;
  9554. background-color:rgba(255, 255, 255, 0);
  9555. border:none;
  9556. border-radius:0px;
  9557. -moz-box-shadow:none;
  9558. -webkit-box-shadow:none;
  9559. box-shadow:none;
  9560. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9561. font-weight:700;
  9562. font-style:normal;
  9563. font-size:16px;
  9564. color:#FF0000;
  9565. }
  9566. <<<<<<< HEAD
  9567. #u1436 {
  9568. =======
  9569. #u1437 {
  9570. >>>>>>> 0601optimize
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:1213px;
  9574. top:9168px;
  9575. width:198px;
  9576. height:19px;
  9577. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9578. font-weight:700;
  9579. font-style:normal;
  9580. font-size:16px;
  9581. color:#FF0000;
  9582. }
  9583. <<<<<<< HEAD
  9584. #u1436_text {
  9585. =======
  9586. #u1437_text {
  9587. >>>>>>> 0601optimize
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:198px;
  9593. word-wrap:break-word;
  9594. }
  9595. <<<<<<< HEAD
  9596. #u1437 {
  9597. =======
  9598. #u1438 {
  9599. >>>>>>> 0601optimize
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:1213px;
  9603. top:9166px;
  9604. width:95px;
  9605. height:23px;
  9606. overflow:hidden;
  9607. background-image:url('../../resources/images/transparent.gif');
  9608. }
  9609. <<<<<<< HEAD
  9610. #u1438_div {
  9611. =======
  9612. #u1439_div {
  9613. >>>>>>> 0601optimize
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:0px;
  9617. top:0px;
  9618. width:270px;
  9619. height:115px;
  9620. background:inherit;
  9621. background-color:rgba(255, 255, 0, 1);
  9622. box-sizing:border-box;
  9623. border-width:1px;
  9624. border-style:solid;
  9625. border-color:rgba(0, 0, 0, 1);
  9626. border-radius:10px;
  9627. -moz-box-shadow:none;
  9628. -webkit-box-shadow:none;
  9629. box-shadow:none;
  9630. color:#000000;
  9631. text-align:left;
  9632. line-height:18px;
  9633. }
  9634. <<<<<<< HEAD
  9635. #u1438 {
  9636. =======
  9637. #u1439 {
  9638. >>>>>>> 0601optimize
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:1213px;
  9642. top:9044px;
  9643. width:270px;
  9644. height:115px;
  9645. color:#000000;
  9646. text-align:left;
  9647. line-height:18px;
  9648. }
  9649. <<<<<<< HEAD
  9650. #u1438_text {
  9651. =======
  9652. #u1439_text {
  9653. >>>>>>> 0601optimize
  9654. border-width:0px;
  9655. position:absolute;
  9656. left:2px;
  9657. top:22px;
  9658. width:266px;
  9659. word-wrap:break-word;
  9660. }
  9661. <<<<<<< HEAD
  9662. #u1439_img {
  9663. =======
  9664. #u1440_img {
  9665. >>>>>>> 0601optimize
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:1155px;
  9671. height:583px;
  9672. }
  9673. <<<<<<< HEAD
  9674. #u1439 {
  9675. =======
  9676. #u1440 {
  9677. >>>>>>> 0601optimize
  9678. border-width:0px;
  9679. position:absolute;
  9680. left:8px;
  9681. top:10436px;
  9682. width:1155px;
  9683. height:583px;
  9684. }
  9685. <<<<<<< HEAD
  9686. #u1439_text {
  9687. =======
  9688. #u1440_text {
  9689. >>>>>>> 0601optimize
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:0px;
  9693. top:0px;
  9694. width:0px;
  9695. visibility:hidden;
  9696. word-wrap:break-word;
  9697. }
  9698. <<<<<<< HEAD
  9699. #u1440_img {
  9700. =======
  9701. #u1441_img {
  9702. >>>>>>> 0601optimize
  9703. border-width:0px;
  9704. position:absolute;
  9705. left:0px;
  9706. top:0px;
  9707. width:1155px;
  9708. height:583px;
  9709. }
  9710. <<<<<<< HEAD
  9711. #u1440 {
  9712. =======
  9713. #u1441 {
  9714. >>>>>>> 0601optimize
  9715. border-width:0px;
  9716. position:absolute;
  9717. left:8px;
  9718. top:11082px;
  9719. width:1155px;
  9720. height:583px;
  9721. }
  9722. <<<<<<< HEAD
  9723. #u1440_text {
  9724. =======
  9725. #u1441_text {
  9726. >>>>>>> 0601optimize
  9727. border-width:0px;
  9728. position:absolute;
  9729. left:0px;
  9730. top:0px;
  9731. width:0px;
  9732. visibility:hidden;
  9733. word-wrap:break-word;
  9734. }
  9735. <<<<<<< HEAD
  9736. #u1441 {
  9737. =======
  9738. #u1442 {
  9739. >>>>>>> 0601optimize
  9740. position:fixed;
  9741. left:1382px;
  9742. top:68px;
  9743. }
  9744. <<<<<<< HEAD
  9745. #u1441_state0 {
  9746. =======
  9747. #u1442_state0 {
  9748. >>>>>>> 0601optimize
  9749. position:relative;
  9750. left:0px;
  9751. top:0px;
  9752. width:140px;
  9753. height:40px;
  9754. background-image:none;
  9755. }
  9756. <<<<<<< HEAD
  9757. #u1441_state0_content {
  9758. =======
  9759. #u1442_state0_content {
  9760. >>>>>>> 0601optimize
  9761. border-width:0px;
  9762. position:absolute;
  9763. left:0px;
  9764. top:0px;
  9765. width:1px;
  9766. height:1px;
  9767. }
  9768. <<<<<<< HEAD
  9769. #u1442_div {
  9770. =======
  9771. #u1443_div {
  9772. >>>>>>> 0601optimize
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:140px;
  9778. height:40px;
  9779. background:inherit;
  9780. background-color:rgba(51, 160, 154, 1);
  9781. border:none;
  9782. border-radius:5px;
  9783. -moz-box-shadow:none;
  9784. -webkit-box-shadow:none;
  9785. box-shadow:none;
  9786. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9787. font-weight:700;
  9788. font-style:normal;
  9789. font-size:16px;
  9790. }
  9791. <<<<<<< HEAD
  9792. #u1442 {
  9793. =======
  9794. #u1443 {
  9795. >>>>>>> 0601optimize
  9796. border-width:0px;
  9797. position:absolute;
  9798. left:0px;
  9799. top:0px;
  9800. width:140px;
  9801. height:40px;
  9802. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  9803. font-weight:700;
  9804. font-style:normal;
  9805. font-size:16px;
  9806. }
  9807. <<<<<<< HEAD
  9808. #u1442_text {
  9809. =======
  9810. #u1443_text {
  9811. >>>>>>> 0601optimize
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:2px;
  9815. top:10px;
  9816. width:136px;
  9817. word-wrap:break-word;
  9818. }