styles.css 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170
  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. #u1184_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1155px;
  21. height:583px;
  22. }
  23. #u1184 {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:394px;
  28. width:1155px;
  29. height:583px;
  30. }
  31. #u1184_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u1185 {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:0px;
  46. height:0px;
  47. }
  48. #u1186_img {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:8px;
  54. height:28px;
  55. }
  56. #u1186 {
  57. border-width:0px;
  58. position:absolute;
  59. left:8px;
  60. top:15px;
  61. width:8px;
  62. height:28px;
  63. }
  64. #u1186_text {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:0px;
  70. visibility:hidden;
  71. word-wrap:break-word;
  72. }
  73. #u1187_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:121px;
  79. height:28px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 0);
  82. border:none;
  83. border-radius:0px;
  84. -moz-box-shadow:none;
  85. -webkit-box-shadow:none;
  86. box-shadow:none;
  87. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  88. font-weight:700;
  89. font-style:normal;
  90. }
  91. #u1187 {
  92. border-width:0px;
  93. position:absolute;
  94. left:22px;
  95. top:15px;
  96. width:121px;
  97. height:28px;
  98. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  99. font-weight:700;
  100. font-style:normal;
  101. }
  102. #u1187_text {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:121px;
  108. white-space:nowrap;
  109. }
  110. #u1188_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:109px;
  116. height:22px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 0);
  119. border:none;
  120. border-radius:0px;
  121. -moz-box-shadow:none;
  122. -webkit-box-shadow:none;
  123. box-shadow:none;
  124. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  125. font-weight:700;
  126. font-style:normal;
  127. font-size:18px;
  128. }
  129. #u1188 {
  130. border-width:0px;
  131. position:absolute;
  132. left:22px;
  133. top:71px;
  134. width:109px;
  135. height:22px;
  136. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  137. font-weight:700;
  138. font-style:normal;
  139. font-size:18px;
  140. }
  141. #u1188_text {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:109px;
  147. white-space:nowrap;
  148. }
  149. #u1189_div {
  150. border-width:0px;
  151. position:absolute;
  152. left:0px;
  153. top:0px;
  154. width:210px;
  155. height:22px;
  156. background:inherit;
  157. background-color:rgba(255, 255, 255, 0);
  158. border:none;
  159. border-radius:0px;
  160. -moz-box-shadow:none;
  161. -webkit-box-shadow:none;
  162. box-shadow:none;
  163. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  164. font-weight:700;
  165. font-style:normal;
  166. font-size:18px;
  167. }
  168. #u1189 {
  169. border-width:0px;
  170. position:absolute;
  171. left:22px;
  172. top:352px;
  173. width:210px;
  174. height:22px;
  175. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  176. font-weight:700;
  177. font-style:normal;
  178. font-size:18px;
  179. }
  180. #u1189_text {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:210px;
  186. white-space:nowrap;
  187. }
  188. #u1190_div {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:1104px;
  194. height:200px;
  195. background:inherit;
  196. background-color:rgba(255, 255, 255, 0);
  197. border:none;
  198. border-radius:0px;
  199. -moz-box-shadow:none;
  200. -webkit-box-shadow:none;
  201. box-shadow:none;
  202. font-size:16px;
  203. line-height:28px;
  204. }
  205. #u1190 {
  206. border-width:0px;
  207. position:absolute;
  208. left:59px;
  209. top:111px;
  210. width:1104px;
  211. height:200px;
  212. font-size:16px;
  213. line-height:28px;
  214. }
  215. #u1190_text {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:1104px;
  221. word-wrap:break-word;
  222. }
  223. #u1191 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u1192_img {
  232. border-width:0px;
  233. position:absolute;
  234. left:-4px;
  235. top:-4px;
  236. width:40px;
  237. height:40px;
  238. }
  239. #u1192 {
  240. border-width:0px;
  241. position:absolute;
  242. left:1173px;
  243. top:269px;
  244. width:30px;
  245. height:30px;
  246. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  247. font-weight:700;
  248. font-style:normal;
  249. font-size:18px;
  250. color:#1E1E1E;
  251. }
  252. #u1192_text {
  253. border-width:0px;
  254. position:absolute;
  255. left:2px;
  256. top:4px;
  257. width:26px;
  258. word-wrap:break-word;
  259. }
  260. #u1193_div {
  261. border-width:0px;
  262. position:absolute;
  263. left:0px;
  264. top:0px;
  265. width:131px;
  266. height:19px;
  267. background:inherit;
  268. background-color:rgba(255, 255, 255, 0);
  269. border:none;
  270. border-radius:0px;
  271. -moz-box-shadow:none;
  272. -webkit-box-shadow:none;
  273. box-shadow:none;
  274. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  275. font-weight:700;
  276. font-style:normal;
  277. font-size:16px;
  278. }
  279. #u1193 {
  280. border-width:0px;
  281. position:absolute;
  282. left:1213px;
  283. top:276px;
  284. width:131px;
  285. height:19px;
  286. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  287. font-weight:700;
  288. font-style:normal;
  289. font-size:16px;
  290. }
  291. #u1193_text {
  292. border-width:0px;
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:131px;
  297. word-wrap:break-word;
  298. }
  299. #u1194_div {
  300. border-width:0px;
  301. position:absolute;
  302. left:0px;
  303. top:0px;
  304. width:352px;
  305. height:22px;
  306. background:inherit;
  307. background-color:rgba(255, 255, 255, 0);
  308. border:none;
  309. border-radius:0px;
  310. -moz-box-shadow:none;
  311. -webkit-box-shadow:none;
  312. box-shadow:none;
  313. line-height:22px;
  314. }
  315. #u1194 {
  316. border-width:0px;
  317. position:absolute;
  318. left:1213px;
  319. top:314px;
  320. width:352px;
  321. height:22px;
  322. line-height:22px;
  323. }
  324. #u1194_text {
  325. border-width:0px;
  326. position:absolute;
  327. left:0px;
  328. top:0px;
  329. width:352px;
  330. word-wrap:break-word;
  331. }
  332. #u1195_img {
  333. border-width:0px;
  334. position:absolute;
  335. left:-4px;
  336. top:-4px;
  337. width:30px;
  338. height:30px;
  339. }
  340. #u1195 {
  341. border-width:0px;
  342. position:absolute;
  343. left:778px;
  344. top:503px;
  345. width:20px;
  346. height:20px;
  347. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  348. font-weight:700;
  349. font-style:normal;
  350. font-size:14px;
  351. color:#1E1E1E;
  352. }
  353. #u1195_text {
  354. border-width:0px;
  355. position:absolute;
  356. left:2px;
  357. top:2px;
  358. width:16px;
  359. word-wrap:break-word;
  360. }
  361. #u1196_img {
  362. border-width:0px;
  363. position:absolute;
  364. left:-4px;
  365. top:-4px;
  366. width:30px;
  367. height:30px;
  368. }
  369. #u1196 {
  370. border-width:0px;
  371. position:absolute;
  372. left:784px;
  373. top:761px;
  374. width:20px;
  375. height:20px;
  376. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  377. font-weight:700;
  378. font-style:normal;
  379. font-size:14px;
  380. color:#1E1E1E;
  381. }
  382. #u1196_text {
  383. border-width:0px;
  384. position:absolute;
  385. left:2px;
  386. top:2px;
  387. width:16px;
  388. word-wrap:break-word;
  389. }
  390. #u1197 {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:0px;
  396. height:0px;
  397. }
  398. #u1198_img {
  399. border-width:0px;
  400. position:absolute;
  401. left:-4px;
  402. top:-4px;
  403. width:40px;
  404. height:40px;
  405. }
  406. #u1198 {
  407. border-width:0px;
  408. position:absolute;
  409. left:1173px;
  410. top:363px;
  411. width:30px;
  412. height:30px;
  413. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  414. font-weight:700;
  415. font-style:normal;
  416. font-size:18px;
  417. color:#1E1E1E;
  418. }
  419. #u1198_text {
  420. border-width:0px;
  421. position:absolute;
  422. left:2px;
  423. top:4px;
  424. width:26px;
  425. word-wrap:break-word;
  426. }
  427. #u1199_div {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:198px;
  433. height:19px;
  434. background:inherit;
  435. background-color:rgba(255, 255, 255, 0);
  436. border:none;
  437. border-radius:0px;
  438. -moz-box-shadow:none;
  439. -webkit-box-shadow:none;
  440. box-shadow:none;
  441. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  442. font-weight:700;
  443. font-style:normal;
  444. font-size:16px;
  445. color:#FF0000;
  446. }
  447. #u1199 {
  448. border-width:0px;
  449. position:absolute;
  450. left:1213px;
  451. top:370px;
  452. width:198px;
  453. height:19px;
  454. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  455. font-weight:700;
  456. font-style:normal;
  457. font-size:16px;
  458. color:#FF0000;
  459. }
  460. #u1199_text {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:198px;
  466. word-wrap:break-word;
  467. }
  468. #u1200_div {
  469. border-width:0px;
  470. position:absolute;
  471. left:0px;
  472. top:0px;
  473. width:352px;
  474. height:88px;
  475. background:inherit;
  476. background-color:rgba(255, 255, 255, 0);
  477. border:none;
  478. border-radius:0px;
  479. -moz-box-shadow:none;
  480. -webkit-box-shadow:none;
  481. box-shadow:none;
  482. line-height:22px;
  483. }
  484. #u1200 {
  485. border-width:0px;
  486. position:absolute;
  487. left:1213px;
  488. top:408px;
  489. width:352px;
  490. height:88px;
  491. line-height:22px;
  492. }
  493. #u1200_text {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:352px;
  499. word-wrap:break-word;
  500. }
  501. #u1201_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:-4px;
  505. top:-4px;
  506. width:30px;
  507. height:30px;
  508. }
  509. #u1201 {
  510. border-width:0px;
  511. position:absolute;
  512. left:992px;
  513. top:764px;
  514. width:20px;
  515. height:20px;
  516. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  517. font-weight:700;
  518. font-style:normal;
  519. font-size:14px;
  520. color:#1E1E1E;
  521. }
  522. #u1201_text {
  523. border-width:0px;
  524. position:absolute;
  525. left:2px;
  526. top:2px;
  527. width:16px;
  528. word-wrap:break-word;
  529. }
  530. #u1202_img {
  531. border-width:0px;
  532. position:absolute;
  533. left:-4px;
  534. top:-4px;
  535. width:30px;
  536. height:30px;
  537. }
  538. #u1202 {
  539. border-width:0px;
  540. position:absolute;
  541. left:1060px;
  542. top:764px;
  543. width:20px;
  544. height:20px;
  545. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  546. font-weight:700;
  547. font-style:normal;
  548. font-size:14px;
  549. color:#1E1E1E;
  550. }
  551. #u1202_text {
  552. border-width:0px;
  553. position:absolute;
  554. left:2px;
  555. top:2px;
  556. width:16px;
  557. word-wrap:break-word;
  558. }
  559. #u1203 {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:0px;
  565. height:0px;
  566. }
  567. #u1204_img {
  568. border-width:0px;
  569. position:absolute;
  570. left:-4px;
  571. top:-4px;
  572. width:40px;
  573. height:40px;
  574. }
  575. #u1204 {
  576. border-width:0px;
  577. position:absolute;
  578. left:1173px;
  579. top:505px;
  580. width:30px;
  581. height:30px;
  582. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  583. font-weight:700;
  584. font-style:normal;
  585. font-size:18px;
  586. color:#1E1E1E;
  587. }
  588. #u1204_text {
  589. border-width:0px;
  590. position:absolute;
  591. left:2px;
  592. top:4px;
  593. width:26px;
  594. word-wrap:break-word;
  595. }
  596. #u1205_div {
  597. border-width:0px;
  598. position:absolute;
  599. left:0px;
  600. top:0px;
  601. width:198px;
  602. height:19px;
  603. background:inherit;
  604. background-color:rgba(255, 255, 255, 0);
  605. border:none;
  606. border-radius:0px;
  607. -moz-box-shadow:none;
  608. -webkit-box-shadow:none;
  609. box-shadow:none;
  610. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  611. font-weight:700;
  612. font-style:normal;
  613. font-size:16px;
  614. }
  615. #u1205 {
  616. border-width:0px;
  617. position:absolute;
  618. left:1213px;
  619. top:512px;
  620. width:198px;
  621. height:19px;
  622. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  623. font-weight:700;
  624. font-style:normal;
  625. font-size:16px;
  626. }
  627. #u1205_text {
  628. border-width:0px;
  629. position:absolute;
  630. left:0px;
  631. top:0px;
  632. width:198px;
  633. word-wrap:break-word;
  634. }
  635. #u1206_div {
  636. border-width:0px;
  637. position:absolute;
  638. left:0px;
  639. top:0px;
  640. width:352px;
  641. height:154px;
  642. background:inherit;
  643. background-color:rgba(255, 255, 255, 0);
  644. border:none;
  645. border-radius:0px;
  646. -moz-box-shadow:none;
  647. -webkit-box-shadow:none;
  648. box-shadow:none;
  649. line-height:22px;
  650. }
  651. #u1206 {
  652. border-width:0px;
  653. position:absolute;
  654. left:1213px;
  655. top:550px;
  656. width:352px;
  657. height:154px;
  658. line-height:22px;
  659. }
  660. #u1206_text {
  661. border-width:0px;
  662. position:absolute;
  663. left:0px;
  664. top:0px;
  665. width:352px;
  666. word-wrap:break-word;
  667. }
  668. #u1207 {
  669. border-width:0px;
  670. position:absolute;
  671. left:1320px;
  672. top:571px;
  673. width:71px;
  674. height:23px;
  675. overflow:hidden;
  676. background-image:url('../../resources/images/transparent.gif');
  677. }
  678. #u1208_div {
  679. border-width:0px;
  680. position:absolute;
  681. left:0px;
  682. top:0px;
  683. width:276px;
  684. height:89px;
  685. background:inherit;
  686. background-color:rgba(255, 255, 0, 1);
  687. box-sizing:border-box;
  688. border-width:1px;
  689. border-style:solid;
  690. border-color:rgba(0, 0, 0, 1);
  691. border-radius:10px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. color:#000000;
  696. text-align:left;
  697. line-height:18px;
  698. }
  699. #u1208 {
  700. border-width:0px;
  701. position:absolute;
  702. left:1247px;
  703. top:472px;
  704. width:276px;
  705. height:89px;
  706. color:#000000;
  707. text-align:left;
  708. line-height:18px;
  709. }
  710. #u1208_text {
  711. border-width:0px;
  712. position:absolute;
  713. left:2px;
  714. top:8px;
  715. width:272px;
  716. word-wrap:break-word;
  717. }
  718. #u1209 {
  719. border-width:0px;
  720. position:absolute;
  721. left:0px;
  722. top:0px;
  723. width:0px;
  724. height:0px;
  725. }
  726. #u1210_img {
  727. border-width:0px;
  728. position:absolute;
  729. left:-4px;
  730. top:-4px;
  731. width:40px;
  732. height:40px;
  733. }
  734. #u1210 {
  735. border-width:0px;
  736. position:absolute;
  737. left:1173px;
  738. top:714px;
  739. width:30px;
  740. height:30px;
  741. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  742. font-weight:700;
  743. font-style:normal;
  744. font-size:18px;
  745. color:#1E1E1E;
  746. }
  747. #u1210_text {
  748. border-width:0px;
  749. position:absolute;
  750. left:2px;
  751. top:4px;
  752. width:26px;
  753. word-wrap:break-word;
  754. }
  755. #u1211_div {
  756. border-width:0px;
  757. position:absolute;
  758. left:0px;
  759. top:0px;
  760. width:198px;
  761. height:19px;
  762. background:inherit;
  763. background-color:rgba(255, 255, 255, 0);
  764. border:none;
  765. border-radius:0px;
  766. -moz-box-shadow:none;
  767. -webkit-box-shadow:none;
  768. box-shadow:none;
  769. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  770. font-weight:700;
  771. font-style:normal;
  772. font-size:16px;
  773. }
  774. #u1211 {
  775. border-width:0px;
  776. position:absolute;
  777. left:1213px;
  778. top:721px;
  779. width:198px;
  780. height:19px;
  781. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  782. font-weight:700;
  783. font-style:normal;
  784. font-size:16px;
  785. }
  786. #u1211_text {
  787. border-width:0px;
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:198px;
  792. word-wrap:break-word;
  793. }
  794. #u1212_div {
  795. border-width:0px;
  796. position:absolute;
  797. left:0px;
  798. top:0px;
  799. width:352px;
  800. height:110px;
  801. background:inherit;
  802. background-color:rgba(255, 255, 255, 0);
  803. border:none;
  804. border-radius:0px;
  805. -moz-box-shadow:none;
  806. -webkit-box-shadow:none;
  807. box-shadow:none;
  808. line-height:22px;
  809. }
  810. #u1212 {
  811. border-width:0px;
  812. position:absolute;
  813. left:1213px;
  814. top:759px;
  815. width:352px;
  816. height:110px;
  817. line-height:22px;
  818. }
  819. #u1212_text {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:352px;
  825. word-wrap:break-word;
  826. }
  827. #u1213_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:293px;
  833. height:123px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 0, 1);
  836. box-sizing:border-box;
  837. border-width:1px;
  838. border-style:solid;
  839. border-color:rgba(0, 0, 0, 1);
  840. border-radius:10px;
  841. -moz-box-shadow:none;
  842. -webkit-box-shadow:none;
  843. box-shadow:none;
  844. color:#000000;
  845. text-align:left;
  846. line-height:18px;
  847. }
  848. #u1213 {
  849. border-width:0px;
  850. position:absolute;
  851. left:1230px;
  852. top:653px;
  853. width:293px;
  854. height:123px;
  855. color:#000000;
  856. text-align:left;
  857. line-height:18px;
  858. }
  859. #u1213_text {
  860. border-width:0px;
  861. position:absolute;
  862. left:2px;
  863. top:8px;
  864. width:289px;
  865. word-wrap:break-word;
  866. }
  867. #u1214 {
  868. border-width:0px;
  869. position:absolute;
  870. left:1300px;
  871. top:803px;
  872. width:119px;
  873. height:23px;
  874. overflow:hidden;
  875. background-image:url('../../resources/images/transparent.gif');
  876. }
  877. #u1215_img {
  878. border-width:0px;
  879. position:absolute;
  880. left:-4px;
  881. top:-4px;
  882. width:30px;
  883. height:30px;
  884. }
  885. #u1215 {
  886. border-width:0px;
  887. position:absolute;
  888. left:1016px;
  889. top:472px;
  890. width:20px;
  891. height:20px;
  892. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  893. font-weight:700;
  894. font-style:normal;
  895. font-size:14px;
  896. color:#1E1E1E;
  897. }
  898. #u1215_text {
  899. border-width:0px;
  900. position:absolute;
  901. left:2px;
  902. top:2px;
  903. width:16px;
  904. word-wrap:break-word;
  905. }
  906. #u1216_img {
  907. border-width:0px;
  908. position:absolute;
  909. left:-4px;
  910. top:-4px;
  911. width:30px;
  912. height:30px;
  913. }
  914. #u1216 {
  915. border-width:0px;
  916. position:absolute;
  917. left:204px;
  918. top:757px;
  919. width:20px;
  920. height:20px;
  921. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  922. font-weight:700;
  923. font-style:normal;
  924. font-size:14px;
  925. color:#1E1E1E;
  926. }
  927. #u1216_text {
  928. border-width:0px;
  929. position:absolute;
  930. left:2px;
  931. top:2px;
  932. width:16px;
  933. word-wrap:break-word;
  934. }
  935. #u1217 {
  936. border-width:0px;
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:0px;
  941. height:0px;
  942. }
  943. #u1218_img {
  944. border-width:0px;
  945. position:absolute;
  946. left:-4px;
  947. top:-4px;
  948. width:40px;
  949. height:40px;
  950. }
  951. #u1218 {
  952. border-width:0px;
  953. position:absolute;
  954. left:1173px;
  955. top:2024px;
  956. width:30px;
  957. height:30px;
  958. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  959. font-weight:700;
  960. font-style:normal;
  961. font-size:18px;
  962. color:#1E1E1E;
  963. }
  964. #u1218_text {
  965. border-width:0px;
  966. position:absolute;
  967. left:2px;
  968. top:4px;
  969. width:26px;
  970. word-wrap:break-word;
  971. }
  972. #u1219_div {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:131px;
  978. height:19px;
  979. background:inherit;
  980. background-color:rgba(255, 255, 255, 0);
  981. border:none;
  982. border-radius:0px;
  983. -moz-box-shadow:none;
  984. -webkit-box-shadow:none;
  985. box-shadow:none;
  986. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  987. font-weight:700;
  988. font-style:normal;
  989. font-size:16px;
  990. }
  991. #u1219 {
  992. border-width:0px;
  993. position:absolute;
  994. left:1213px;
  995. top:2031px;
  996. width:131px;
  997. height:19px;
  998. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  999. font-weight:700;
  1000. font-style:normal;
  1001. font-size:16px;
  1002. }
  1003. #u1219_text {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:131px;
  1009. word-wrap:break-word;
  1010. }
  1011. #u1220_div {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:352px;
  1017. height:44px;
  1018. background:inherit;
  1019. background-color:rgba(255, 255, 255, 0);
  1020. border:none;
  1021. border-radius:0px;
  1022. -moz-box-shadow:none;
  1023. -webkit-box-shadow:none;
  1024. box-shadow:none;
  1025. line-height:22px;
  1026. }
  1027. #u1220 {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:1213px;
  1031. top:2069px;
  1032. width:352px;
  1033. height:44px;
  1034. line-height:22px;
  1035. }
  1036. #u1220_text {
  1037. border-width:0px;
  1038. position:absolute;
  1039. left:0px;
  1040. top:0px;
  1041. width:352px;
  1042. word-wrap:break-word;
  1043. }
  1044. #u1221 {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:0px;
  1048. top:0px;
  1049. width:0px;
  1050. height:0px;
  1051. }
  1052. #u1222_img {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:-4px;
  1056. top:-4px;
  1057. width:44px;
  1058. height:44px;
  1059. }
  1060. #u1222 {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:1173px;
  1064. top:1773px;
  1065. width:34px;
  1066. height:34px;
  1067. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1068. font-weight:700;
  1069. font-style:normal;
  1070. font-size:26px;
  1071. }
  1072. #u1222_text {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:2px;
  1076. top:1px;
  1077. width:30px;
  1078. word-wrap:break-word;
  1079. }
  1080. #u1223_div {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:131px;
  1086. height:19px;
  1087. background:inherit;
  1088. background-color:rgba(255, 255, 255, 0);
  1089. border:none;
  1090. border-radius:0px;
  1091. -moz-box-shadow:none;
  1092. -webkit-box-shadow:none;
  1093. box-shadow:none;
  1094. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1095. font-weight:700;
  1096. font-style:normal;
  1097. font-size:16px;
  1098. }
  1099. #u1223 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:1213px;
  1103. top:1780px;
  1104. width:131px;
  1105. height:19px;
  1106. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1107. font-weight:700;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. }
  1111. #u1223_text {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:131px;
  1117. word-wrap:break-word;
  1118. }
  1119. #u1224_div {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:352px;
  1125. height:66px;
  1126. background:inherit;
  1127. background-color:rgba(255, 255, 255, 0);
  1128. border:none;
  1129. border-radius:0px;
  1130. -moz-box-shadow:none;
  1131. -webkit-box-shadow:none;
  1132. box-shadow:none;
  1133. line-height:22px;
  1134. }
  1135. #u1224 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:1213px;
  1139. top:1818px;
  1140. width:352px;
  1141. height:66px;
  1142. line-height:22px;
  1143. }
  1144. #u1224_text {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:0px;
  1148. top:0px;
  1149. width:352px;
  1150. word-wrap:break-word;
  1151. }
  1152. #u1225_img {
  1153. border-width:0px;
  1154. position:absolute;
  1155. left:-4px;
  1156. top:-4px;
  1157. width:30px;
  1158. height:30px;
  1159. }
  1160. #u1225 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:981px;
  1164. top:653px;
  1165. width:20px;
  1166. height:20px;
  1167. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1168. font-weight:700;
  1169. font-style:normal;
  1170. font-size:14px;
  1171. color:#1E1E1E;
  1172. }
  1173. #u1225_text {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:2px;
  1177. top:2px;
  1178. width:16px;
  1179. word-wrap:break-word;
  1180. }
  1181. #u1226_img {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:-4px;
  1185. top:-4px;
  1186. width:30px;
  1187. height:30px;
  1188. }
  1189. #u1226 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:1023px;
  1193. top:653px;
  1194. width:20px;
  1195. height:20px;
  1196. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1197. font-weight:700;
  1198. font-style:normal;
  1199. font-size:14px;
  1200. color:#1E1E1E;
  1201. }
  1202. #u1226_text {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:2px;
  1206. top:2px;
  1207. width:16px;
  1208. word-wrap:break-word;
  1209. }
  1210. #u1227_img {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:-4px;
  1214. top:-4px;
  1215. width:30px;
  1216. height:30px;
  1217. }
  1218. #u1227 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:1068px;
  1222. top:653px;
  1223. width:20px;
  1224. height:20px;
  1225. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1226. font-weight:700;
  1227. font-style:normal;
  1228. font-size:14px;
  1229. color:#1E1E1E;
  1230. }
  1231. #u1227_text {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:2px;
  1235. top:2px;
  1236. width:16px;
  1237. word-wrap:break-word;
  1238. }
  1239. #u1228 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:0px;
  1245. height:0px;
  1246. }
  1247. #u1229_img {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:-4px;
  1251. top:-4px;
  1252. width:40px;
  1253. height:40px;
  1254. }
  1255. #u1229 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:1173px;
  1259. top:1028px;
  1260. width:30px;
  1261. height:30px;
  1262. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1263. font-weight:700;
  1264. font-style:normal;
  1265. font-size:18px;
  1266. color:#1E1E1E;
  1267. }
  1268. #u1229_text {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:2px;
  1272. top:4px;
  1273. width:26px;
  1274. word-wrap:break-word;
  1275. }
  1276. #u1230_div {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:131px;
  1282. height:19px;
  1283. background:inherit;
  1284. background-color:rgba(255, 255, 255, 0);
  1285. border:none;
  1286. border-radius:0px;
  1287. -moz-box-shadow:none;
  1288. -webkit-box-shadow:none;
  1289. box-shadow:none;
  1290. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1291. font-weight:700;
  1292. font-style:normal;
  1293. font-size:16px;
  1294. color:#FF0000;
  1295. }
  1296. #u1230 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:1213px;
  1300. top:1035px;
  1301. width:131px;
  1302. height:19px;
  1303. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1304. font-weight:700;
  1305. font-style:normal;
  1306. font-size:16px;
  1307. color:#FF0000;
  1308. }
  1309. #u1230_text {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:131px;
  1315. word-wrap:break-word;
  1316. }
  1317. #u1231_div {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:352px;
  1323. height:198px;
  1324. background:inherit;
  1325. background-color:rgba(255, 255, 255, 0);
  1326. border:none;
  1327. border-radius:0px;
  1328. -moz-box-shadow:none;
  1329. -webkit-box-shadow:none;
  1330. box-shadow:none;
  1331. line-height:22px;
  1332. }
  1333. #u1231 {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:1213px;
  1337. top:1073px;
  1338. width:352px;
  1339. height:198px;
  1340. line-height:22px;
  1341. }
  1342. #u1231_text {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:352px;
  1348. word-wrap:break-word;
  1349. }
  1350. #u1232 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:1218px;
  1354. top:1035px;
  1355. width:86px;
  1356. height:23px;
  1357. overflow:hidden;
  1358. background-image:url('../../resources/images/transparent.gif');
  1359. }
  1360. #u1233_img {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:0px;
  1364. top:0px;
  1365. width:276px;
  1366. height:89px;
  1367. }
  1368. #u1233 {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:1213px;
  1372. top:939px;
  1373. width:276px;
  1374. height:89px;
  1375. color:#000000;
  1376. text-align:left;
  1377. line-height:18px;
  1378. }
  1379. #u1233_text {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:2px;
  1383. top:8px;
  1384. width:272px;
  1385. word-wrap:break-word;
  1386. }
  1387. #u1234_img {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:-4px;
  1391. top:-4px;
  1392. width:30px;
  1393. height:30px;
  1394. }
  1395. #u1234 {
  1396. border-width:0px;
  1397. position:absolute;
  1398. left:1108px;
  1399. top:653px;
  1400. width:20px;
  1401. height:20px;
  1402. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1403. font-weight:700;
  1404. font-style:normal;
  1405. font-size:14px;
  1406. color:#1E1E1E;
  1407. }
  1408. #u1234_text {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:2px;
  1412. top:2px;
  1413. width:16px;
  1414. word-wrap:break-word;
  1415. }
  1416. #u1235 {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:0px;
  1420. top:0px;
  1421. width:0px;
  1422. height:0px;
  1423. }
  1424. #u1236_img {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:-4px;
  1428. top:-4px;
  1429. width:40px;
  1430. height:40px;
  1431. }
  1432. #u1236 {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:1173px;
  1436. top:1613px;
  1437. width:30px;
  1438. height:30px;
  1439. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1440. font-weight:700;
  1441. font-style:normal;
  1442. font-size:18px;
  1443. color:#1E1E1E;
  1444. }
  1445. #u1236_text {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:2px;
  1449. top:4px;
  1450. width:26px;
  1451. word-wrap:break-word;
  1452. }
  1453. #u1237_div {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:0px;
  1457. top:0px;
  1458. width:131px;
  1459. height:19px;
  1460. background:inherit;
  1461. background-color:rgba(255, 255, 255, 0);
  1462. border:none;
  1463. border-radius:0px;
  1464. -moz-box-shadow:none;
  1465. -webkit-box-shadow:none;
  1466. box-shadow:none;
  1467. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1468. font-weight:700;
  1469. font-style:normal;
  1470. font-size:16px;
  1471. }
  1472. #u1237 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:1213px;
  1476. top:1620px;
  1477. width:131px;
  1478. height:19px;
  1479. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1480. font-weight:700;
  1481. font-style:normal;
  1482. font-size:16px;
  1483. }
  1484. #u1237_text {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:131px;
  1490. word-wrap:break-word;
  1491. }
  1492. #u1238_div {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:352px;
  1498. height:88px;
  1499. background:inherit;
  1500. background-color:rgba(255, 255, 255, 0);
  1501. border:none;
  1502. border-radius:0px;
  1503. -moz-box-shadow:none;
  1504. -webkit-box-shadow:none;
  1505. box-shadow:none;
  1506. line-height:22px;
  1507. }
  1508. #u1238 {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:1213px;
  1512. top:1658px;
  1513. width:352px;
  1514. height:88px;
  1515. line-height:22px;
  1516. }
  1517. #u1238_text {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:352px;
  1523. word-wrap:break-word;
  1524. }
  1525. #u1239 {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:0px;
  1531. height:0px;
  1532. }
  1533. #u1240_img {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:-4px;
  1537. top:-4px;
  1538. width:40px;
  1539. height:40px;
  1540. }
  1541. #u1240 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:1173px;
  1545. top:1360px;
  1546. width:30px;
  1547. height:30px;
  1548. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1549. font-weight:700;
  1550. font-style:normal;
  1551. font-size:18px;
  1552. color:#1E1E1E;
  1553. }
  1554. #u1240_text {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:2px;
  1558. top:4px;
  1559. width:26px;
  1560. word-wrap:break-word;
  1561. }
  1562. #u1241_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:77px;
  1568. height:19px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1577. font-weight:700;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FF0000;
  1581. }
  1582. #u1241 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:1213px;
  1586. top:1367px;
  1587. width:77px;
  1588. height:19px;
  1589. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1590. font-weight:700;
  1591. font-style:normal;
  1592. font-size:16px;
  1593. color:#FF0000;
  1594. }
  1595. #u1241_text {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:77px;
  1601. word-wrap:break-word;
  1602. }
  1603. #u1242_div {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:352px;
  1609. height:198px;
  1610. background:inherit;
  1611. background-color:rgba(255, 255, 255, 0);
  1612. border:none;
  1613. border-radius:0px;
  1614. -moz-box-shadow:none;
  1615. -webkit-box-shadow:none;
  1616. box-shadow:none;
  1617. line-height:22px;
  1618. }
  1619. #u1242 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:1213px;
  1623. top:1405px;
  1624. width:352px;
  1625. height:198px;
  1626. line-height:22px;
  1627. }
  1628. #u1242_text {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:352px;
  1634. word-wrap:break-word;
  1635. }
  1636. #u1243_img {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:1155px;
  1642. height:583px;
  1643. }
  1644. #u1243 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:8px;
  1648. top:1028px;
  1649. width:1155px;
  1650. height:583px;
  1651. }
  1652. #u1243_text {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:0px;
  1658. visibility:hidden;
  1659. word-wrap:break-word;
  1660. }
  1661. #u1244 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:0px;
  1667. height:0px;
  1668. }
  1669. #u1245_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:-4px;
  1673. top:-4px;
  1674. width:40px;
  1675. height:40px;
  1676. }
  1677. #u1245 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:1173px;
  1681. top:1903px;
  1682. width:30px;
  1683. height:30px;
  1684. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1685. font-weight:700;
  1686. font-style:normal;
  1687. font-size:18px;
  1688. color:#1E1E1E;
  1689. }
  1690. #u1245_text {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:2px;
  1694. top:4px;
  1695. width:26px;
  1696. word-wrap:break-word;
  1697. }
  1698. #u1246_div {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:131px;
  1704. height:19px;
  1705. background:inherit;
  1706. background-color:rgba(255, 255, 255, 0);
  1707. border:none;
  1708. border-radius:0px;
  1709. -moz-box-shadow:none;
  1710. -webkit-box-shadow:none;
  1711. box-shadow:none;
  1712. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1713. font-weight:700;
  1714. font-style:normal;
  1715. font-size:16px;
  1716. }
  1717. #u1246 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:1213px;
  1721. top:1910px;
  1722. width:131px;
  1723. height:19px;
  1724. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1725. font-weight:700;
  1726. font-style:normal;
  1727. font-size:16px;
  1728. }
  1729. #u1246_text {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:131px;
  1735. word-wrap:break-word;
  1736. }
  1737. #u1247_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:352px;
  1743. height:66px;
  1744. background:inherit;
  1745. background-color:rgba(255, 255, 255, 0);
  1746. border:none;
  1747. border-radius:0px;
  1748. -moz-box-shadow:none;
  1749. -webkit-box-shadow:none;
  1750. box-shadow:none;
  1751. line-height:22px;
  1752. }
  1753. #u1247 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:1213px;
  1757. top:1948px;
  1758. width:352px;
  1759. height:66px;
  1760. line-height:22px;
  1761. }
  1762. #u1247_text {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:352px;
  1768. word-wrap:break-word;
  1769. }
  1770. #u1248_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:1155px;
  1776. height:583px;
  1777. }
  1778. #u1248 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:8px;
  1782. top:1668px;
  1783. width:1155px;
  1784. height:583px;
  1785. }
  1786. #u1248_text {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:0px;
  1792. visibility:hidden;
  1793. word-wrap:break-word;
  1794. }
  1795. #u1249_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:210px;
  1801. height:22px;
  1802. background:inherit;
  1803. background-color:rgba(255, 255, 255, 0);
  1804. border:none;
  1805. border-radius:0px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1810. font-weight:700;
  1811. font-style:normal;
  1812. font-size:18px;
  1813. }
  1814. #u1249 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:8px;
  1818. top:1640px;
  1819. width:210px;
  1820. height:22px;
  1821. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1822. font-weight:700;
  1823. font-style:normal;
  1824. font-size:18px;
  1825. }
  1826. #u1249_text {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:210px;
  1832. white-space:nowrap;
  1833. }
  1834. #u1250 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:1218px;
  1838. top:1365px;
  1839. width:59px;
  1840. height:23px;
  1841. overflow:hidden;
  1842. background-image:url('../../resources/images/transparent.gif');
  1843. }
  1844. #u1251_div {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:270px;
  1850. height:224px;
  1851. background:inherit;
  1852. background-color:rgba(255, 255, 0, 1);
  1853. box-sizing:border-box;
  1854. border-width:1px;
  1855. border-style:solid;
  1856. border-color:rgba(0, 0, 0, 1);
  1857. border-radius:10px;
  1858. -moz-box-shadow:none;
  1859. -webkit-box-shadow:none;
  1860. box-shadow:none;
  1861. color:#000000;
  1862. text-align:left;
  1863. line-height:18px;
  1864. }
  1865. #u1251 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:1213px;
  1869. top:1133px;
  1870. width:270px;
  1871. height:224px;
  1872. color:#000000;
  1873. text-align:left;
  1874. line-height:18px;
  1875. }
  1876. #u1251_text {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:2px;
  1880. top:22px;
  1881. width:266px;
  1882. word-wrap:break-word;
  1883. }
  1884. #u1252 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:1218px;
  1888. top:367px;
  1889. width:178px;
  1890. height:23px;
  1891. overflow:hidden;
  1892. background-image:url('../../resources/images/transparent.gif');
  1893. }
  1894. #u1253_div {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:291px;
  1900. height:96px;
  1901. background:inherit;
  1902. background-color:rgba(255, 255, 0, 1);
  1903. box-sizing:border-box;
  1904. border-width:1px;
  1905. border-style:solid;
  1906. border-color:rgba(0, 0, 0, 1);
  1907. border-radius:10px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. color:#000000;
  1912. text-align:left;
  1913. line-height:18px;
  1914. }
  1915. #u1253 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:1218px;
  1919. top:262px;
  1920. width:291px;
  1921. height:96px;
  1922. color:#000000;
  1923. text-align:left;
  1924. line-height:18px;
  1925. }
  1926. #u1253_text {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:2px;
  1930. top:12px;
  1931. width:287px;
  1932. word-wrap:break-word;
  1933. }
  1934. #u1254_div {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:0px;
  1938. top:0px;
  1939. width:210px;
  1940. height:22px;
  1941. background:inherit;
  1942. background-color:rgba(255, 255, 255, 0);
  1943. border:none;
  1944. border-radius:0px;
  1945. -moz-box-shadow:none;
  1946. -webkit-box-shadow:none;
  1947. box-shadow:none;
  1948. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1949. font-weight:700;
  1950. font-style:normal;
  1951. font-size:18px;
  1952. }
  1953. #u1254 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:8px;
  1957. top:990px;
  1958. width:210px;
  1959. height:22px;
  1960. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1961. font-weight:700;
  1962. font-style:normal;
  1963. font-size:18px;
  1964. }
  1965. #u1254_text {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:210px;
  1971. white-space:nowrap;
  1972. }
  1973. #u1255_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:246px;
  1979. height:22px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 0);
  1982. border:none;
  1983. border-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1988. font-weight:700;
  1989. font-style:normal;
  1990. font-size:18px;
  1991. }
  1992. #u1255 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:8px;
  1996. top:2289px;
  1997. width:246px;
  1998. height:22px;
  1999. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2000. font-weight:700;
  2001. font-style:normal;
  2002. font-size:18px;
  2003. }
  2004. #u1255_text {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:246px;
  2010. white-space:nowrap;
  2011. }
  2012. #u1256_div {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:163px;
  2018. height:22px;
  2019. background:inherit;
  2020. background-color:rgba(255, 255, 255, 0);
  2021. border:none;
  2022. border-radius:0px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2027. font-weight:700;
  2028. font-style:normal;
  2029. font-size:18px;
  2030. }
  2031. #u1256 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:8px;
  2035. top:2367px;
  2036. width:163px;
  2037. height:22px;
  2038. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2039. font-weight:700;
  2040. font-style:normal;
  2041. font-size:18px;
  2042. }
  2043. #u1256_text {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:163px;
  2049. white-space:nowrap;
  2050. }
  2051. #u1257_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:1155px;
  2057. height:583px;
  2058. }
  2059. #u1257 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:8px;
  2063. top:2399px;
  2064. width:1155px;
  2065. height:583px;
  2066. }
  2067. #u1257_text {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:0px;
  2073. visibility:hidden;
  2074. word-wrap:break-word;
  2075. }
  2076. #u1258_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:-4px;
  2080. top:-4px;
  2081. width:30px;
  2082. height:30px;
  2083. }
  2084. #u1258 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:212px;
  2088. top:2597px;
  2089. width:20px;
  2090. height:20px;
  2091. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2092. font-weight:700;
  2093. font-style:normal;
  2094. font-size:14px;
  2095. color:#1E1E1E;
  2096. }
  2097. #u1258_text {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:2px;
  2101. top:2px;
  2102. width:16px;
  2103. word-wrap:break-word;
  2104. }
  2105. #u1259_div {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:163px;
  2111. height:22px;
  2112. background:inherit;
  2113. background-color:rgba(255, 255, 255, 0);
  2114. border:none;
  2115. border-radius:0px;
  2116. -moz-box-shadow:none;
  2117. -webkit-box-shadow:none;
  2118. box-shadow:none;
  2119. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2120. font-weight:700;
  2121. font-style:normal;
  2122. font-size:18px;
  2123. }
  2124. #u1259 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:8px;
  2128. top:5738px;
  2129. width:163px;
  2130. height:22px;
  2131. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2132. font-weight:700;
  2133. font-style:normal;
  2134. font-size:18px;
  2135. }
  2136. #u1259_text {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:163px;
  2142. white-space:nowrap;
  2143. }
  2144. #u1260_img {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:1155px;
  2150. height:583px;
  2151. }
  2152. #u1260 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:8px;
  2156. top:5779px;
  2157. width:1155px;
  2158. height:583px;
  2159. }
  2160. #u1260_text {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:0px;
  2166. visibility:hidden;
  2167. word-wrap:break-word;
  2168. }
  2169. #u1261_img {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:-4px;
  2173. top:-4px;
  2174. width:30px;
  2175. height:30px;
  2176. }
  2177. #u1261 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:212px;
  2181. top:5971px;
  2182. width:20px;
  2183. height:20px;
  2184. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2185. font-weight:700;
  2186. font-style:normal;
  2187. font-size:14px;
  2188. color:#1E1E1E;
  2189. }
  2190. #u1261_text {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:2px;
  2194. top:2px;
  2195. width:16px;
  2196. word-wrap:break-word;
  2197. }
  2198. #u1262 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:0px;
  2204. height:0px;
  2205. }
  2206. #u1263_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:-4px;
  2210. top:-4px;
  2211. width:40px;
  2212. height:40px;
  2213. }
  2214. #u1263 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:1172px;
  2218. top:2400px;
  2219. width:30px;
  2220. height:30px;
  2221. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2222. font-weight:700;
  2223. font-style:normal;
  2224. font-size:18px;
  2225. color:#1E1E1E;
  2226. }
  2227. #u1263_text {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:2px;
  2231. top:4px;
  2232. width:26px;
  2233. word-wrap:break-word;
  2234. }
  2235. #u1264_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:131px;
  2241. height:19px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 0);
  2244. border:none;
  2245. border-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2250. font-weight:700;
  2251. font-style:normal;
  2252. font-size:16px;
  2253. }
  2254. #u1264 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:1212px;
  2258. top:2407px;
  2259. width:131px;
  2260. height:19px;
  2261. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2262. font-weight:700;
  2263. font-style:normal;
  2264. font-size:16px;
  2265. }
  2266. #u1264_text {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:131px;
  2272. word-wrap:break-word;
  2273. }
  2274. #u1265_div {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:352px;
  2280. height:154px;
  2281. background:inherit;
  2282. background-color:rgba(255, 255, 255, 0);
  2283. border:none;
  2284. border-radius:0px;
  2285. -moz-box-shadow:none;
  2286. -webkit-box-shadow:none;
  2287. box-shadow:none;
  2288. line-height:22px;
  2289. }
  2290. #u1265 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:1212px;
  2294. top:2445px;
  2295. width:352px;
  2296. height:154px;
  2297. line-height:22px;
  2298. }
  2299. #u1265_text {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:352px;
  2305. word-wrap:break-word;
  2306. }
  2307. #u1266 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:1355px;
  2311. top:2554px;
  2312. width:93px;
  2313. height:25px;
  2314. overflow:hidden;
  2315. background-image:url('../../resources/images/transparent.gif');
  2316. }
  2317. #u1267_div {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:279px;
  2323. height:105px;
  2324. background:inherit;
  2325. background-color:rgba(255, 255, 0, 1);
  2326. box-sizing:border-box;
  2327. border-width:1px;
  2328. border-style:solid;
  2329. border-color:rgba(0, 0, 0, 1);
  2330. border-radius:10px;
  2331. -moz-box-shadow:none;
  2332. -webkit-box-shadow:none;
  2333. box-shadow:none;
  2334. text-align:left;
  2335. line-height:18px;
  2336. }
  2337. #u1267 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:1249px;
  2341. top:2439px;
  2342. width:279px;
  2343. height:105px;
  2344. text-align:left;
  2345. line-height:18px;
  2346. }
  2347. #u1267_text {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:2px;
  2351. top:13px;
  2352. width:275px;
  2353. word-wrap:break-word;
  2354. }
  2355. #u1268 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:1374px;
  2359. top:2490px;
  2360. width:54px;
  2361. height:20px;
  2362. overflow:hidden;
  2363. background-image:url('../../resources/images/transparent.gif');
  2364. }
  2365. #u1269 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:1285px;
  2369. top:2574px;
  2370. width:70px;
  2371. height:25px;
  2372. overflow:hidden;
  2373. background-image:url('../../resources/images/transparent.gif');
  2374. }
  2375. #u1270_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:1155px;
  2381. height:583px;
  2382. }
  2383. #u1270 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:8px;
  2387. top:6430px;
  2388. width:1155px;
  2389. height:583px;
  2390. }
  2391. #u1270_text {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:0px;
  2397. visibility:hidden;
  2398. word-wrap:break-word;
  2399. }
  2400. #u1271_div {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:234px;
  2406. height:22px;
  2407. background:inherit;
  2408. background-color:rgba(255, 255, 255, 0);
  2409. border:none;
  2410. border-radius:0px;
  2411. -moz-box-shadow:none;
  2412. -webkit-box-shadow:none;
  2413. box-shadow:none;
  2414. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2415. font-weight:700;
  2416. font-style:normal;
  2417. font-size:18px;
  2418. }
  2419. #u1271 {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:8px;
  2423. top:6398px;
  2424. width:234px;
  2425. height:22px;
  2426. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2427. font-weight:700;
  2428. font-style:normal;
  2429. font-size:18px;
  2430. }
  2431. #u1271_text {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:234px;
  2437. word-wrap:break-word;
  2438. }
  2439. #u1272_img {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:1155px;
  2445. height:583px;
  2446. }
  2447. #u1272 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:8px;
  2451. top:7104px;
  2452. width:1155px;
  2453. height:583px;
  2454. }
  2455. #u1272_text {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:0px;
  2461. visibility:hidden;
  2462. word-wrap:break-word;
  2463. }
  2464. #u1273_div {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:234px;
  2470. height:22px;
  2471. background:inherit;
  2472. background-color:rgba(255, 255, 255, 0);
  2473. border:none;
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2479. font-weight:700;
  2480. font-style:normal;
  2481. font-size:18px;
  2482. }
  2483. #u1273 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:8px;
  2487. top:7072px;
  2488. width:234px;
  2489. height:22px;
  2490. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2491. font-weight:700;
  2492. font-style:normal;
  2493. font-size:18px;
  2494. }
  2495. #u1273_text {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:234px;
  2501. word-wrap:break-word;
  2502. }
  2503. #u1274 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:0px;
  2509. height:0px;
  2510. }
  2511. #u1275_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:-4px;
  2515. top:-4px;
  2516. width:44px;
  2517. height:44px;
  2518. }
  2519. #u1275 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:1173px;
  2523. top:6008px;
  2524. width:34px;
  2525. height:34px;
  2526. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2527. font-weight:700;
  2528. font-style:normal;
  2529. font-size:26px;
  2530. }
  2531. #u1275_text {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:2px;
  2535. top:1px;
  2536. width:30px;
  2537. word-wrap:break-word;
  2538. }
  2539. #u1276_div {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:131px;
  2545. height:19px;
  2546. background:inherit;
  2547. background-color:rgba(255, 255, 255, 0);
  2548. border:none;
  2549. border-radius:0px;
  2550. -moz-box-shadow:none;
  2551. -webkit-box-shadow:none;
  2552. box-shadow:none;
  2553. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2554. font-weight:700;
  2555. font-style:normal;
  2556. font-size:16px;
  2557. }
  2558. #u1276 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:1213px;
  2562. top:6015px;
  2563. width:131px;
  2564. height:19px;
  2565. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2566. font-weight:700;
  2567. font-style:normal;
  2568. font-size:16px;
  2569. }
  2570. #u1276_text {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:131px;
  2576. word-wrap:break-word;
  2577. }
  2578. #u1277_div {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:352px;
  2584. height:66px;
  2585. background:inherit;
  2586. background-color:rgba(255, 255, 255, 0);
  2587. border:none;
  2588. border-radius:0px;
  2589. -moz-box-shadow:none;
  2590. -webkit-box-shadow:none;
  2591. box-shadow:none;
  2592. line-height:22px;
  2593. }
  2594. #u1277 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:1213px;
  2598. top:6053px;
  2599. width:352px;
  2600. height:66px;
  2601. line-height:22px;
  2602. }
  2603. #u1277_text {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:352px;
  2609. word-wrap:break-word;
  2610. }
  2611. #u1278 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:0px;
  2617. height:0px;
  2618. }
  2619. #u1279_img {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:-4px;
  2623. top:-4px;
  2624. width:44px;
  2625. height:44px;
  2626. }
  2627. #u1279 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:1173px;
  2631. top:6134px;
  2632. width:34px;
  2633. height:34px;
  2634. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2635. font-weight:700;
  2636. font-style:normal;
  2637. font-size:26px;
  2638. }
  2639. #u1279_text {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:2px;
  2643. top:1px;
  2644. width:30px;
  2645. word-wrap:break-word;
  2646. }
  2647. #u1280_div {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:131px;
  2653. height:19px;
  2654. background:inherit;
  2655. background-color:rgba(255, 255, 255, 0);
  2656. border:none;
  2657. border-radius:0px;
  2658. -moz-box-shadow:none;
  2659. -webkit-box-shadow:none;
  2660. box-shadow:none;
  2661. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2662. font-weight:700;
  2663. font-style:normal;
  2664. font-size:16px;
  2665. }
  2666. #u1280 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:1213px;
  2670. top:6141px;
  2671. width:131px;
  2672. height:19px;
  2673. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2674. font-weight:700;
  2675. font-style:normal;
  2676. font-size:16px;
  2677. }
  2678. #u1280_text {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:131px;
  2684. word-wrap:break-word;
  2685. }
  2686. #u1281_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:352px;
  2692. height:88px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 0);
  2695. border:none;
  2696. border-radius:0px;
  2697. -moz-box-shadow:none;
  2698. -webkit-box-shadow:none;
  2699. box-shadow:none;
  2700. line-height:22px;
  2701. }
  2702. #u1281 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:1213px;
  2706. top:6179px;
  2707. width:352px;
  2708. height:88px;
  2709. line-height:22px;
  2710. }
  2711. #u1281_text {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:352px;
  2717. word-wrap:break-word;
  2718. }
  2719. #u1282_img {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:-4px;
  2723. top:-4px;
  2724. width:30px;
  2725. height:30px;
  2726. }
  2727. #u1282 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:916px;
  2731. top:2657px;
  2732. width:20px;
  2733. height:20px;
  2734. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2735. font-weight:700;
  2736. font-style:normal;
  2737. font-size:14px;
  2738. color:#1E1E1E;
  2739. }
  2740. #u1282_text {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:2px;
  2744. top:2px;
  2745. width:16px;
  2746. word-wrap:break-word;
  2747. }
  2748. #u1283 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:0px;
  2754. height:0px;
  2755. }
  2756. #u1284_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:-4px;
  2760. top:-4px;
  2761. width:40px;
  2762. height:40px;
  2763. }
  2764. #u1284 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:1173px;
  2768. top:2624px;
  2769. width:30px;
  2770. height:30px;
  2771. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2772. font-weight:700;
  2773. font-style:normal;
  2774. font-size:18px;
  2775. color:#1E1E1E;
  2776. }
  2777. #u1284_text {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:2px;
  2781. top:4px;
  2782. width:26px;
  2783. word-wrap:break-word;
  2784. }
  2785. #u1285_div {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:131px;
  2791. height:19px;
  2792. background:inherit;
  2793. background-color:rgba(255, 255, 255, 0);
  2794. border:none;
  2795. border-radius:0px;
  2796. -moz-box-shadow:none;
  2797. -webkit-box-shadow:none;
  2798. box-shadow:none;
  2799. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2800. font-weight:700;
  2801. font-style:normal;
  2802. font-size:16px;
  2803. }
  2804. #u1285 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:1213px;
  2808. top:2631px;
  2809. width:131px;
  2810. height:19px;
  2811. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2812. font-weight:700;
  2813. font-style:normal;
  2814. font-size:16px;
  2815. }
  2816. #u1285_text {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:131px;
  2822. word-wrap:break-word;
  2823. }
  2824. #u1286_div {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:352px;
  2830. height:22px;
  2831. background:inherit;
  2832. background-color:rgba(255, 255, 255, 0);
  2833. border:none;
  2834. border-radius:0px;
  2835. -moz-box-shadow:none;
  2836. -webkit-box-shadow:none;
  2837. box-shadow:none;
  2838. line-height:22px;
  2839. }
  2840. #u1286 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:1213px;
  2844. top:2669px;
  2845. width:352px;
  2846. height:22px;
  2847. line-height:22px;
  2848. }
  2849. #u1286_text {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:352px;
  2855. word-wrap:break-word;
  2856. }
  2857. #u1287_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:-4px;
  2861. top:-4px;
  2862. width:30px;
  2863. height:30px;
  2864. }
  2865. #u1287 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:850px;
  2869. top:2657px;
  2870. width:20px;
  2871. height:20px;
  2872. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2873. font-weight:700;
  2874. font-style:normal;
  2875. font-size:14px;
  2876. color:#1E1E1E;
  2877. }
  2878. #u1287_text {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:2px;
  2882. top:2px;
  2883. width:16px;
  2884. word-wrap:break-word;
  2885. }
  2886. #u1288 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:0px;
  2890. top:0px;
  2891. width:0px;
  2892. height:0px;
  2893. }
  2894. #u1289_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:-4px;
  2898. top:-4px;
  2899. width:40px;
  2900. height:40px;
  2901. }
  2902. #u1289 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:1173px;
  2906. top:2711px;
  2907. width:30px;
  2908. height:30px;
  2909. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2910. font-weight:700;
  2911. font-style:normal;
  2912. font-size:18px;
  2913. color:#1E1E1E;
  2914. }
  2915. #u1289_text {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:2px;
  2919. top:4px;
  2920. width:26px;
  2921. word-wrap:break-word;
  2922. }
  2923. #u1290_div {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:131px;
  2929. height:19px;
  2930. background:inherit;
  2931. background-color:rgba(255, 255, 255, 0);
  2932. border:none;
  2933. border-radius:0px;
  2934. -moz-box-shadow:none;
  2935. -webkit-box-shadow:none;
  2936. box-shadow:none;
  2937. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2938. font-weight:700;
  2939. font-style:normal;
  2940. font-size:16px;
  2941. }
  2942. #u1290 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:1213px;
  2946. top:2718px;
  2947. width:131px;
  2948. height:19px;
  2949. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2950. font-weight:700;
  2951. font-style:normal;
  2952. font-size:16px;
  2953. }
  2954. #u1290_text {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:131px;
  2960. word-wrap:break-word;
  2961. }
  2962. #u1291_div {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:352px;
  2968. height:44px;
  2969. background:inherit;
  2970. background-color:rgba(255, 255, 255, 0);
  2971. border:none;
  2972. border-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. line-height:22px;
  2977. }
  2978. #u1291 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:1213px;
  2982. top:2756px;
  2983. width:352px;
  2984. height:44px;
  2985. line-height:22px;
  2986. }
  2987. #u1291_text {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:352px;
  2993. word-wrap:break-word;
  2994. }
  2995. #u1292_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:1155px;
  3001. height:583px;
  3002. }
  3003. #u1292 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:8px;
  3007. top:4404px;
  3008. width:1155px;
  3009. height:583px;
  3010. }
  3011. #u1292_text {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:0px;
  3017. visibility:hidden;
  3018. word-wrap:break-word;
  3019. }
  3020. #u1293_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:1155px;
  3026. height:583px;
  3027. }
  3028. #u1293 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:8px;
  3032. top:5045px;
  3033. width:1155px;
  3034. height:583px;
  3035. }
  3036. #u1293_text {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:0px;
  3042. visibility:hidden;
  3043. word-wrap:break-word;
  3044. }
  3045. #u1294_img {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:-4px;
  3049. top:-4px;
  3050. width:30px;
  3051. height:30px;
  3052. }
  3053. #u1294 {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:224px;
  3057. top:5245px;
  3058. width:20px;
  3059. height:20px;
  3060. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3061. font-weight:700;
  3062. font-style:normal;
  3063. font-size:14px;
  3064. color:#1E1E1E;
  3065. }
  3066. #u1294_text {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:2px;
  3070. top:2px;
  3071. width:16px;
  3072. word-wrap:break-word;
  3073. }
  3074. #u1295 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:0px;
  3080. height:0px;
  3081. }
  3082. #u1296_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:-4px;
  3086. top:-4px;
  3087. width:40px;
  3088. height:40px;
  3089. }
  3090. #u1296 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:1173px;
  3094. top:5045px;
  3095. width:30px;
  3096. height:30px;
  3097. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3098. font-weight:700;
  3099. font-style:normal;
  3100. font-size:18px;
  3101. color:#1E1E1E;
  3102. }
  3103. #u1296_text {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:2px;
  3107. top:4px;
  3108. width:26px;
  3109. word-wrap:break-word;
  3110. }
  3111. #u1297_div {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:131px;
  3117. height:19px;
  3118. background:inherit;
  3119. background-color:rgba(255, 255, 255, 0);
  3120. border:none;
  3121. border-radius:0px;
  3122. -moz-box-shadow:none;
  3123. -webkit-box-shadow:none;
  3124. box-shadow:none;
  3125. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3126. font-weight:700;
  3127. font-style:normal;
  3128. font-size:16px;
  3129. }
  3130. #u1297 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:1213px;
  3134. top:5052px;
  3135. width:131px;
  3136. height:19px;
  3137. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3138. font-weight:700;
  3139. font-style:normal;
  3140. font-size:16px;
  3141. }
  3142. #u1297_text {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:131px;
  3148. word-wrap:break-word;
  3149. }
  3150. #u1298_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:352px;
  3156. height:22px;
  3157. background:inherit;
  3158. background-color:rgba(255, 255, 255, 0);
  3159. border:none;
  3160. border-radius:0px;
  3161. -moz-box-shadow:none;
  3162. -webkit-box-shadow:none;
  3163. box-shadow:none;
  3164. line-height:22px;
  3165. }
  3166. #u1298 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:1213px;
  3170. top:5090px;
  3171. width:352px;
  3172. height:22px;
  3173. line-height:22px;
  3174. }
  3175. #u1298_text {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:352px;
  3181. word-wrap:break-word;
  3182. }
  3183. #u1299 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:0px;
  3189. height:0px;
  3190. }
  3191. #u1300_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:-4px;
  3195. top:-4px;
  3196. width:44px;
  3197. height:44px;
  3198. }
  3199. #u1300 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:1173px;
  3203. top:5122px;
  3204. width:34px;
  3205. height:34px;
  3206. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3207. font-weight:700;
  3208. font-style:normal;
  3209. font-size:26px;
  3210. }
  3211. #u1300_text {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:2px;
  3215. top:1px;
  3216. width:30px;
  3217. word-wrap:break-word;
  3218. }
  3219. #u1301_div {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:131px;
  3225. height:19px;
  3226. background:inherit;
  3227. background-color:rgba(255, 255, 255, 0);
  3228. border:none;
  3229. border-radius:0px;
  3230. -moz-box-shadow:none;
  3231. -webkit-box-shadow:none;
  3232. box-shadow:none;
  3233. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3234. font-weight:700;
  3235. font-style:normal;
  3236. font-size:16px;
  3237. }
  3238. #u1301 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1213px;
  3242. top:5129px;
  3243. width:131px;
  3244. height:19px;
  3245. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3246. font-weight:700;
  3247. font-style:normal;
  3248. font-size:16px;
  3249. }
  3250. #u1301_text {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:131px;
  3256. word-wrap:break-word;
  3257. }
  3258. #u1302_div {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:352px;
  3264. height:44px;
  3265. background:inherit;
  3266. background-color:rgba(255, 255, 255, 0);
  3267. border:none;
  3268. border-radius:0px;
  3269. -moz-box-shadow:none;
  3270. -webkit-box-shadow:none;
  3271. box-shadow:none;
  3272. line-height:22px;
  3273. }
  3274. #u1302 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:1213px;
  3278. top:5167px;
  3279. width:352px;
  3280. height:44px;
  3281. line-height:22px;
  3282. }
  3283. #u1302_text {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:0px;
  3287. top:0px;
  3288. width:352px;
  3289. word-wrap:break-word;
  3290. }
  3291. #u1303 {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:0px;
  3297. height:0px;
  3298. }
  3299. #u1304_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:-4px;
  3303. top:-4px;
  3304. width:40px;
  3305. height:40px;
  3306. }
  3307. #u1304 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:1173px;
  3311. top:5235px;
  3312. width:30px;
  3313. height:30px;
  3314. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3315. font-weight:700;
  3316. font-style:normal;
  3317. font-size:18px;
  3318. color:#1E1E1E;
  3319. }
  3320. #u1304_text {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:2px;
  3324. top:4px;
  3325. width:26px;
  3326. word-wrap:break-word;
  3327. }
  3328. #u1305_div {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:107px;
  3334. height:19px;
  3335. background:inherit;
  3336. background-color:rgba(255, 255, 255, 0);
  3337. border:none;
  3338. border-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3343. font-weight:700;
  3344. font-style:normal;
  3345. font-size:16px;
  3346. }
  3347. #u1305 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:1213px;
  3351. top:5242px;
  3352. width:107px;
  3353. height:19px;
  3354. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3355. font-weight:700;
  3356. font-style:normal;
  3357. font-size:16px;
  3358. }
  3359. #u1305_text {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:107px;
  3365. word-wrap:break-word;
  3366. }
  3367. #u1306_div {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:352px;
  3373. height:33px;
  3374. background:inherit;
  3375. background-color:rgba(255, 255, 255, 0);
  3376. border:none;
  3377. border-radius:0px;
  3378. -moz-box-shadow:none;
  3379. -webkit-box-shadow:none;
  3380. box-shadow:none;
  3381. line-height:22px;
  3382. }
  3383. #u1306 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:1213px;
  3387. top:5280px;
  3388. width:352px;
  3389. height:33px;
  3390. line-height:22px;
  3391. }
  3392. #u1306_text {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:352px;
  3398. word-wrap:break-word;
  3399. }
  3400. #u1307 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:0px;
  3406. height:0px;
  3407. }
  3408. #u1308_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:-4px;
  3412. top:-4px;
  3413. width:40px;
  3414. height:40px;
  3415. }
  3416. #u1308 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:1173px;
  3420. top:5327px;
  3421. width:30px;
  3422. height:30px;
  3423. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3424. font-weight:700;
  3425. font-style:normal;
  3426. font-size:18px;
  3427. color:#1E1E1E;
  3428. }
  3429. #u1308_text {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:2px;
  3433. top:4px;
  3434. width:26px;
  3435. word-wrap:break-word;
  3436. }
  3437. #u1309_div {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:107px;
  3443. height:19px;
  3444. background:inherit;
  3445. background-color:rgba(255, 255, 255, 0);
  3446. border:none;
  3447. border-radius:0px;
  3448. -moz-box-shadow:none;
  3449. -webkit-box-shadow:none;
  3450. box-shadow:none;
  3451. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3452. font-weight:700;
  3453. font-style:normal;
  3454. font-size:16px;
  3455. }
  3456. #u1309 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:1213px;
  3460. top:5334px;
  3461. width:107px;
  3462. height:19px;
  3463. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3464. font-weight:700;
  3465. font-style:normal;
  3466. font-size:16px;
  3467. }
  3468. #u1309_text {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:107px;
  3474. word-wrap:break-word;
  3475. }
  3476. #u1310_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:352px;
  3482. height:44px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 0);
  3485. border:none;
  3486. border-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. line-height:22px;
  3491. }
  3492. #u1310 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:1213px;
  3496. top:5376px;
  3497. width:352px;
  3498. height:44px;
  3499. line-height:22px;
  3500. }
  3501. #u1310_text {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:352px;
  3507. word-wrap:break-word;
  3508. }
  3509. #u1311_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:-4px;
  3513. top:-4px;
  3514. width:30px;
  3515. height:30px;
  3516. }
  3517. #u1311 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:151px;
  3521. top:5245px;
  3522. width:20px;
  3523. height:20px;
  3524. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3525. font-weight:700;
  3526. font-style:normal;
  3527. font-size:14px;
  3528. color:#1E1E1E;
  3529. }
  3530. #u1311_text {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:2px;
  3534. top:2px;
  3535. width:16px;
  3536. word-wrap:break-word;
  3537. }
  3538. #u1312_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:-4px;
  3542. top:-4px;
  3543. width:30px;
  3544. height:30px;
  3545. }
  3546. #u1312 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:304px;
  3550. top:5245px;
  3551. width:20px;
  3552. height:20px;
  3553. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3554. font-weight:700;
  3555. font-style:normal;
  3556. font-size:14px;
  3557. color:#1E1E1E;
  3558. }
  3559. #u1312_text {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:2px;
  3563. top:2px;
  3564. width:16px;
  3565. word-wrap:break-word;
  3566. }
  3567. #u1313_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:-4px;
  3571. top:-4px;
  3572. width:30px;
  3573. height:30px;
  3574. }
  3575. #u1313 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:375px;
  3579. top:5245px;
  3580. width:20px;
  3581. height:20px;
  3582. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3583. font-weight:700;
  3584. font-style:normal;
  3585. font-size:14px;
  3586. color:#1E1E1E;
  3587. }
  3588. #u1313_text {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:2px;
  3592. top:2px;
  3593. width:16px;
  3594. word-wrap:break-word;
  3595. }
  3596. #u1314_img {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:1155px;
  3602. height:583px;
  3603. }
  3604. #u1314 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:8px;
  3608. top:7773px;
  3609. width:1155px;
  3610. height:583px;
  3611. }
  3612. #u1314_text {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:0px;
  3616. top:0px;
  3617. width:0px;
  3618. visibility:hidden;
  3619. word-wrap:break-word;
  3620. }
  3621. #u1315_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:-4px;
  3625. top:-4px;
  3626. width:30px;
  3627. height:30px;
  3628. }
  3629. #u1315 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:202px;
  3633. top:7955px;
  3634. width:20px;
  3635. height:20px;
  3636. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3637. font-weight:700;
  3638. font-style:normal;
  3639. font-size:14px;
  3640. color:#1E1E1E;
  3641. }
  3642. #u1315_text {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:2px;
  3646. top:2px;
  3647. width:16px;
  3648. word-wrap:break-word;
  3649. }
  3650. #u1316 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:0px;
  3656. height:0px;
  3657. }
  3658. #u1317_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:-4px;
  3662. top:-4px;
  3663. width:44px;
  3664. height:44px;
  3665. }
  3666. #u1317 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:1173px;
  3670. top:7773px;
  3671. width:34px;
  3672. height:34px;
  3673. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3674. font-weight:700;
  3675. font-style:normal;
  3676. font-size:26px;
  3677. }
  3678. #u1317_text {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:2px;
  3682. top:1px;
  3683. width:30px;
  3684. word-wrap:break-word;
  3685. }
  3686. #u1318_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:131px;
  3692. height:19px;
  3693. background:inherit;
  3694. background-color:rgba(255, 255, 255, 0);
  3695. border:none;
  3696. border-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3701. font-weight:700;
  3702. font-style:normal;
  3703. font-size:16px;
  3704. }
  3705. #u1318 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:1213px;
  3709. top:7780px;
  3710. width:131px;
  3711. height:19px;
  3712. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3713. font-weight:700;
  3714. font-style:normal;
  3715. font-size:16px;
  3716. }
  3717. #u1318_text {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:131px;
  3723. word-wrap:break-word;
  3724. }
  3725. #u1319_div {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:352px;
  3731. height:44px;
  3732. background:inherit;
  3733. background-color:rgba(255, 255, 255, 0);
  3734. border:none;
  3735. border-radius:0px;
  3736. -moz-box-shadow:none;
  3737. -webkit-box-shadow:none;
  3738. box-shadow:none;
  3739. line-height:22px;
  3740. }
  3741. #u1319 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:1213px;
  3745. top:7818px;
  3746. width:352px;
  3747. height:44px;
  3748. line-height:22px;
  3749. }
  3750. #u1319_text {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:352px;
  3756. word-wrap:break-word;
  3757. }
  3758. #u1320_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:210px;
  3764. height:22px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 0);
  3767. border:none;
  3768. border-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3773. font-weight:700;
  3774. font-style:normal;
  3775. font-size:18px;
  3776. }
  3777. #u1320 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:8px;
  3781. top:7741px;
  3782. width:210px;
  3783. height:22px;
  3784. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3785. font-weight:700;
  3786. font-style:normal;
  3787. font-size:18px;
  3788. }
  3789. #u1320_text {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:210px;
  3795. white-space:nowrap;
  3796. }
  3797. #u1321_img {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:1155px;
  3803. height:583px;
  3804. }
  3805. #u1321 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:8px;
  3809. top:8472px;
  3810. width:1155px;
  3811. height:583px;
  3812. }
  3813. #u1321_text {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:0px;
  3818. width:0px;
  3819. visibility:hidden;
  3820. word-wrap:break-word;
  3821. }
  3822. #u1322_img {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:-4px;
  3826. top:-4px;
  3827. width:30px;
  3828. height:30px;
  3829. }
  3830. #u1322 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:220px;
  3834. top:8671px;
  3835. width:20px;
  3836. height:20px;
  3837. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3838. font-weight:700;
  3839. font-style:normal;
  3840. font-size:14px;
  3841. color:#1E1E1E;
  3842. }
  3843. #u1322_text {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:2px;
  3847. top:2px;
  3848. width:16px;
  3849. word-wrap:break-word;
  3850. }
  3851. #u1323 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:0px;
  3857. height:0px;
  3858. }
  3859. #u1324_img {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:-4px;
  3863. top:-4px;
  3864. width:44px;
  3865. height:44px;
  3866. }
  3867. #u1324 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:1173px;
  3871. top:8469px;
  3872. width:34px;
  3873. height:34px;
  3874. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3875. font-weight:700;
  3876. font-style:normal;
  3877. font-size:26px;
  3878. }
  3879. #u1324_text {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:2px;
  3883. top:1px;
  3884. width:30px;
  3885. word-wrap:break-word;
  3886. }
  3887. #u1325_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:169px;
  3893. height:19px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 0);
  3896. border:none;
  3897. border-radius:0px;
  3898. -moz-box-shadow:none;
  3899. -webkit-box-shadow:none;
  3900. box-shadow:none;
  3901. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3902. font-weight:700;
  3903. font-style:normal;
  3904. font-size:16px;
  3905. color:#FF0000;
  3906. }
  3907. #u1325 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:1213px;
  3911. top:8476px;
  3912. width:169px;
  3913. height:19px;
  3914. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3915. font-weight:700;
  3916. font-style:normal;
  3917. font-size:16px;
  3918. color:#FF0000;
  3919. }
  3920. #u1325_text {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:169px;
  3926. word-wrap:break-word;
  3927. }
  3928. #u1326_div {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:352px;
  3934. height:110px;
  3935. background:inherit;
  3936. background-color:rgba(255, 255, 255, 0);
  3937. border:none;
  3938. border-radius:0px;
  3939. -moz-box-shadow:none;
  3940. -webkit-box-shadow:none;
  3941. box-shadow:none;
  3942. line-height:22px;
  3943. }
  3944. #u1326 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:1213px;
  3948. top:8514px;
  3949. width:352px;
  3950. height:110px;
  3951. line-height:22px;
  3952. }
  3953. #u1326_text {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:352px;
  3959. word-wrap:break-word;
  3960. }
  3961. #u1327 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:1218px;
  3965. top:8476px;
  3966. width:158px;
  3967. height:23px;
  3968. overflow:hidden;
  3969. background-image:url('../../resources/images/transparent.gif');
  3970. }
  3971. #u1328_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:270px;
  3977. height:80px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 0, 1);
  3980. box-sizing:border-box;
  3981. border-width:1px;
  3982. border-style:solid;
  3983. border-color:rgba(0, 0, 0, 1);
  3984. border-radius:10px;
  3985. -moz-box-shadow:none;
  3986. -webkit-box-shadow:none;
  3987. box-shadow:none;
  3988. color:#000000;
  3989. text-align:left;
  3990. line-height:18px;
  3991. }
  3992. #u1328 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:1218px;
  3996. top:8389px;
  3997. width:270px;
  3998. height:80px;
  3999. color:#000000;
  4000. text-align:left;
  4001. line-height:18px;
  4002. }
  4003. #u1328_text {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:2px;
  4007. top:13px;
  4008. width:266px;
  4009. word-wrap:break-word;
  4010. }
  4011. #u1329_div {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:210px;
  4017. height:22px;
  4018. background:inherit;
  4019. background-color:rgba(255, 255, 255, 0);
  4020. border:none;
  4021. border-radius:0px;
  4022. -moz-box-shadow:none;
  4023. -webkit-box-shadow:none;
  4024. box-shadow:none;
  4025. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4026. font-weight:700;
  4027. font-style:normal;
  4028. font-size:18px;
  4029. }
  4030. #u1329 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:8px;
  4034. top:8429px;
  4035. width:210px;
  4036. height:22px;
  4037. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4038. font-weight:700;
  4039. font-style:normal;
  4040. font-size:18px;
  4041. }
  4042. #u1329_text {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:210px;
  4048. white-space:nowrap;
  4049. }
  4050. #u1330_div {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:210px;
  4056. height:22px;
  4057. background:inherit;
  4058. background-color:rgba(255, 255, 255, 0);
  4059. border:none;
  4060. border-radius:0px;
  4061. -moz-box-shadow:none;
  4062. -webkit-box-shadow:none;
  4063. box-shadow:none;
  4064. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4065. font-weight:700;
  4066. font-style:normal;
  4067. font-size:18px;
  4068. }
  4069. #u1330 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:8px;
  4073. top:9129px;
  4074. width:210px;
  4075. height:22px;
  4076. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4077. font-weight:700;
  4078. font-style:normal;
  4079. font-size:18px;
  4080. }
  4081. #u1330_text {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:210px;
  4087. white-space:nowrap;
  4088. }
  4089. #u1331_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:1155px;
  4095. height:583px;
  4096. }
  4097. #u1331 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:8px;
  4101. top:9161px;
  4102. width:1155px;
  4103. height:583px;
  4104. }
  4105. #u1331_text {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:0px;
  4111. visibility:hidden;
  4112. word-wrap:break-word;
  4113. }
  4114. #u1332_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:-4px;
  4118. top:-4px;
  4119. width:30px;
  4120. height:30px;
  4121. }
  4122. #u1332 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:1043px;
  4126. top:9648px;
  4127. width:20px;
  4128. height:20px;
  4129. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4130. font-weight:700;
  4131. font-style:normal;
  4132. font-size:14px;
  4133. color:#1E1E1E;
  4134. }
  4135. #u1332_text {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:2px;
  4139. top:2px;
  4140. width:16px;
  4141. word-wrap:break-word;
  4142. }
  4143. #u1333_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:210px;
  4149. height:22px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 0);
  4152. border:none;
  4153. border-radius:0px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4158. font-weight:700;
  4159. font-style:normal;
  4160. font-size:18px;
  4161. }
  4162. #u1333 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:16px;
  4166. top:11725px;
  4167. width:210px;
  4168. height:22px;
  4169. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4170. font-weight:700;
  4171. font-style:normal;
  4172. font-size:18px;
  4173. }
  4174. #u1333_text {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:210px;
  4180. white-space:nowrap;
  4181. }
  4182. #u1334_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:1155px;
  4188. height:583px;
  4189. }
  4190. #u1334 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:16px;
  4194. top:11779px;
  4195. width:1155px;
  4196. height:583px;
  4197. }
  4198. #u1334_text {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:0px;
  4204. visibility:hidden;
  4205. word-wrap:break-word;
  4206. }
  4207. #u1335 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:0px;
  4213. height:0px;
  4214. }
  4215. #u1336_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:-4px;
  4219. top:-4px;
  4220. width:44px;
  4221. height:44px;
  4222. }
  4223. #u1336 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:1181px;
  4227. top:11787px;
  4228. width:34px;
  4229. height:34px;
  4230. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4231. font-weight:700;
  4232. font-style:normal;
  4233. font-size:26px;
  4234. }
  4235. #u1336_text {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:2px;
  4239. top:1px;
  4240. width:30px;
  4241. word-wrap:break-word;
  4242. }
  4243. #u1337_div {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:198px;
  4249. height:19px;
  4250. background:inherit;
  4251. background-color:rgba(255, 255, 255, 0);
  4252. border:none;
  4253. border-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4258. font-weight:700;
  4259. font-style:normal;
  4260. font-size:16px;
  4261. }
  4262. #u1337 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:1221px;
  4266. top:11794px;
  4267. width:198px;
  4268. height:19px;
  4269. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4270. font-weight:700;
  4271. font-style:normal;
  4272. font-size:16px;
  4273. }
  4274. #u1337_text {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:198px;
  4280. word-wrap:break-word;
  4281. }
  4282. #u1338_div {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:352px;
  4288. height:66px;
  4289. background:inherit;
  4290. background-color:rgba(255, 255, 255, 0);
  4291. border:none;
  4292. border-radius:0px;
  4293. -moz-box-shadow:none;
  4294. -webkit-box-shadow:none;
  4295. box-shadow:none;
  4296. line-height:22px;
  4297. }
  4298. #u1338 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:1221px;
  4302. top:11832px;
  4303. width:352px;
  4304. height:66px;
  4305. line-height:22px;
  4306. }
  4307. #u1338_text {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:352px;
  4313. word-wrap:break-word;
  4314. }
  4315. #u1339_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:-4px;
  4319. top:-4px;
  4320. width:30px;
  4321. height:30px;
  4322. }
  4323. #u1339 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:976px;
  4327. top:12001px;
  4328. width:20px;
  4329. height:20px;
  4330. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4331. font-weight:700;
  4332. font-style:normal;
  4333. font-size:14px;
  4334. color:#1E1E1E;
  4335. }
  4336. #u1339_text {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:2px;
  4340. top:2px;
  4341. width:16px;
  4342. word-wrap:break-word;
  4343. }
  4344. #u1340_img {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:-4px;
  4348. top:-4px;
  4349. width:30px;
  4350. height:30px;
  4351. }
  4352. #u1340 {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:1022px;
  4356. top:12001px;
  4357. width:20px;
  4358. height:20px;
  4359. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4360. font-weight:700;
  4361. font-style:normal;
  4362. font-size:14px;
  4363. color:#1E1E1E;
  4364. }
  4365. #u1340_text {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:2px;
  4369. top:2px;
  4370. width:16px;
  4371. word-wrap:break-word;
  4372. }
  4373. #u1341_img {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:-4px;
  4377. top:-4px;
  4378. width:30px;
  4379. height:30px;
  4380. }
  4381. #u1341 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:1060px;
  4385. top:12001px;
  4386. width:20px;
  4387. height:20px;
  4388. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4389. font-weight:700;
  4390. font-style:normal;
  4391. font-size:14px;
  4392. color:#1E1E1E;
  4393. }
  4394. #u1341_text {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:2px;
  4398. top:2px;
  4399. width:16px;
  4400. word-wrap:break-word;
  4401. }
  4402. #u1342_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:-4px;
  4406. top:-4px;
  4407. width:30px;
  4408. height:30px;
  4409. }
  4410. #u1342 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:1107px;
  4414. top:12001px;
  4415. width:20px;
  4416. height:20px;
  4417. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4418. font-weight:700;
  4419. font-style:normal;
  4420. font-size:14px;
  4421. color:#1E1E1E;
  4422. }
  4423. #u1342_text {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:2px;
  4427. top:2px;
  4428. width:16px;
  4429. word-wrap:break-word;
  4430. }
  4431. #u1343 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:0px;
  4437. height:0px;
  4438. }
  4439. #u1344_img {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:-4px;
  4443. top:-4px;
  4444. width:40px;
  4445. height:40px;
  4446. }
  4447. #u1344 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:1181px;
  4451. top:11925px;
  4452. width:30px;
  4453. height:30px;
  4454. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4455. font-weight:700;
  4456. font-style:normal;
  4457. font-size:18px;
  4458. color:#1E1E1E;
  4459. }
  4460. #u1344_text {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:2px;
  4464. top:4px;
  4465. width:26px;
  4466. word-wrap:break-word;
  4467. }
  4468. #u1345_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:198px;
  4474. height:19px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 0);
  4477. border:none;
  4478. border-radius:0px;
  4479. -moz-box-shadow:none;
  4480. -webkit-box-shadow:none;
  4481. box-shadow:none;
  4482. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4483. font-weight:700;
  4484. font-style:normal;
  4485. font-size:16px;
  4486. }
  4487. #u1345 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:1221px;
  4491. top:11932px;
  4492. width:198px;
  4493. height:19px;
  4494. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4495. font-weight:700;
  4496. font-style:normal;
  4497. font-size:16px;
  4498. }
  4499. #u1345_text {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:198px;
  4505. word-wrap:break-word;
  4506. }
  4507. #u1346_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:352px;
  4513. height:44px;
  4514. background:inherit;
  4515. background-color:rgba(255, 255, 255, 0);
  4516. border:none;
  4517. border-radius:0px;
  4518. -moz-box-shadow:none;
  4519. -webkit-box-shadow:none;
  4520. box-shadow:none;
  4521. line-height:22px;
  4522. }
  4523. #u1346 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:1221px;
  4527. top:11970px;
  4528. width:352px;
  4529. height:44px;
  4530. line-height:22px;
  4531. }
  4532. #u1346_text {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:352px;
  4538. word-wrap:break-word;
  4539. }
  4540. #u1347 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:0px;
  4546. height:0px;
  4547. }
  4548. #u1348_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:-4px;
  4552. top:-4px;
  4553. width:40px;
  4554. height:40px;
  4555. }
  4556. #u1348 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:1181px;
  4560. top:12058px;
  4561. width:30px;
  4562. height:30px;
  4563. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4564. font-weight:700;
  4565. font-style:normal;
  4566. font-size:18px;
  4567. color:#1E1E1E;
  4568. }
  4569. #u1348_text {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:2px;
  4573. top:4px;
  4574. width:26px;
  4575. word-wrap:break-word;
  4576. }
  4577. #u1349_div {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:198px;
  4583. height:19px;
  4584. background:inherit;
  4585. background-color:rgba(255, 255, 255, 0);
  4586. border:none;
  4587. border-radius:0px;
  4588. -moz-box-shadow:none;
  4589. -webkit-box-shadow:none;
  4590. box-shadow:none;
  4591. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4592. font-weight:700;
  4593. font-style:normal;
  4594. font-size:16px;
  4595. }
  4596. #u1349 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1221px;
  4600. top:12065px;
  4601. width:198px;
  4602. height:19px;
  4603. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4604. font-weight:700;
  4605. font-style:normal;
  4606. font-size:16px;
  4607. }
  4608. #u1349_text {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:198px;
  4614. word-wrap:break-word;
  4615. }
  4616. #u1350_div {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:352px;
  4622. height:66px;
  4623. background:inherit;
  4624. background-color:rgba(255, 255, 255, 0);
  4625. border:none;
  4626. border-radius:0px;
  4627. -moz-box-shadow:none;
  4628. -webkit-box-shadow:none;
  4629. box-shadow:none;
  4630. line-height:22px;
  4631. }
  4632. #u1350 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:1221px;
  4636. top:12103px;
  4637. width:352px;
  4638. height:66px;
  4639. line-height:22px;
  4640. }
  4641. #u1350_text {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:352px;
  4647. word-wrap:break-word;
  4648. }
  4649. #u1351_div {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:185px;
  4655. height:71px;
  4656. background:inherit;
  4657. background-color:rgba(255, 255, 0, 1);
  4658. box-sizing:border-box;
  4659. border-width:1px;
  4660. border-style:solid;
  4661. border-color:rgba(0, 0, 0, 1);
  4662. border-radius:10px;
  4663. -moz-box-shadow:none;
  4664. -webkit-box-shadow:none;
  4665. box-shadow:none;
  4666. color:#000000;
  4667. text-align:left;
  4668. line-height:18px;
  4669. }
  4670. #u1351 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:1322px;
  4674. top:12044px;
  4675. width:185px;
  4676. height:71px;
  4677. color:#000000;
  4678. text-align:left;
  4679. line-height:18px;
  4680. }
  4681. #u1351_text {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:2px;
  4685. top:18px;
  4686. width:181px;
  4687. word-wrap:break-word;
  4688. }
  4689. #u1352 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:1374px;
  4693. top:12125px;
  4694. width:57px;
  4695. height:23px;
  4696. overflow:hidden;
  4697. background-image:url('../../resources/images/transparent.gif');
  4698. }
  4699. #u1353 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:0px;
  4705. height:0px;
  4706. }
  4707. #u1354_img {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:-4px;
  4711. top:-4px;
  4712. width:44px;
  4713. height:44px;
  4714. }
  4715. #u1354 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:1181px;
  4719. top:12179px;
  4720. width:34px;
  4721. height:34px;
  4722. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4723. font-weight:700;
  4724. font-style:normal;
  4725. font-size:26px;
  4726. }
  4727. #u1354_text {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:2px;
  4731. top:1px;
  4732. width:30px;
  4733. word-wrap:break-word;
  4734. }
  4735. #u1355_div {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:198px;
  4741. height:19px;
  4742. background:inherit;
  4743. background-color:rgba(255, 255, 255, 0);
  4744. border:none;
  4745. border-radius:0px;
  4746. -moz-box-shadow:none;
  4747. -webkit-box-shadow:none;
  4748. box-shadow:none;
  4749. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4750. font-weight:700;
  4751. font-style:normal;
  4752. font-size:16px;
  4753. }
  4754. #u1355 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:1221px;
  4758. top:12186px;
  4759. width:198px;
  4760. height:19px;
  4761. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4762. font-weight:700;
  4763. font-style:normal;
  4764. font-size:16px;
  4765. }
  4766. #u1355_text {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:198px;
  4772. word-wrap:break-word;
  4773. }
  4774. #u1356_div {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:352px;
  4780. height:22px;
  4781. background:inherit;
  4782. background-color:rgba(255, 255, 255, 0);
  4783. border:none;
  4784. border-radius:0px;
  4785. -moz-box-shadow:none;
  4786. -webkit-box-shadow:none;
  4787. box-shadow:none;
  4788. line-height:22px;
  4789. }
  4790. #u1356 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:1221px;
  4794. top:12224px;
  4795. width:352px;
  4796. height:22px;
  4797. line-height:22px;
  4798. }
  4799. #u1356_text {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:352px;
  4805. word-wrap:break-word;
  4806. }
  4807. #u1357_div {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:1px;
  4813. height:22px;
  4814. background:inherit;
  4815. background-color:rgba(255, 255, 255, 0);
  4816. border:none;
  4817. border-radius:0px;
  4818. -moz-box-shadow:none;
  4819. -webkit-box-shadow:none;
  4820. box-shadow:none;
  4821. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4822. font-weight:700;
  4823. font-style:normal;
  4824. font-size:18px;
  4825. }
  4826. #u1357 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:8px;
  4830. top:10477px;
  4831. width:1px;
  4832. height:22px;
  4833. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4834. font-weight:700;
  4835. font-style:normal;
  4836. font-size:18px;
  4837. }
  4838. #u1357_text {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:0px;
  4844. visibility:hidden;
  4845. white-space:nowrap;
  4846. }
  4847. #u1358_img {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:1155px;
  4853. height:583px;
  4854. }
  4855. #u1358 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:16px;
  4859. top:12469px;
  4860. width:1155px;
  4861. height:583px;
  4862. }
  4863. #u1358_text {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:0px;
  4869. visibility:hidden;
  4870. word-wrap:break-word;
  4871. }
  4872. #u1359_img {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:-4px;
  4876. top:-4px;
  4877. width:30px;
  4878. height:30px;
  4879. }
  4880. #u1359 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:1035px;
  4884. top:13023px;
  4885. width:20px;
  4886. height:20px;
  4887. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4888. font-weight:700;
  4889. font-style:normal;
  4890. font-size:14px;
  4891. color:#1E1E1E;
  4892. }
  4893. #u1359_text {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:2px;
  4897. top:2px;
  4898. width:16px;
  4899. word-wrap:break-word;
  4900. }
  4901. #u1360_div {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:210px;
  4907. height:22px;
  4908. background:inherit;
  4909. background-color:rgba(255, 255, 255, 0);
  4910. border:none;
  4911. border-radius:0px;
  4912. -moz-box-shadow:none;
  4913. -webkit-box-shadow:none;
  4914. box-shadow:none;
  4915. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4916. font-weight:700;
  4917. font-style:normal;
  4918. font-size:18px;
  4919. }
  4920. #u1360 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:16px;
  4924. top:12437px;
  4925. width:210px;
  4926. height:22px;
  4927. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4928. font-weight:700;
  4929. font-style:normal;
  4930. font-size:18px;
  4931. }
  4932. #u1360_text {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:210px;
  4938. white-space:nowrap;
  4939. }
  4940. #u1361 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:0px;
  4946. height:0px;
  4947. }
  4948. #u1362_img {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:-4px;
  4952. top:-4px;
  4953. width:44px;
  4954. height:44px;
  4955. }
  4956. #u1362 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:1177px;
  4960. top:12472px;
  4961. width:34px;
  4962. height:34px;
  4963. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4964. font-weight:700;
  4965. font-style:normal;
  4966. font-size:26px;
  4967. }
  4968. #u1362_text {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:2px;
  4972. top:1px;
  4973. width:30px;
  4974. word-wrap:break-word;
  4975. }
  4976. #u1363_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:198px;
  4982. height:19px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 0);
  4985. border:none;
  4986. border-radius:0px;
  4987. -moz-box-shadow:none;
  4988. -webkit-box-shadow:none;
  4989. box-shadow:none;
  4990. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4991. font-weight:700;
  4992. font-style:normal;
  4993. font-size:16px;
  4994. color:#FF0000;
  4995. }
  4996. #u1363 {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:1217px;
  5000. top:12479px;
  5001. width:198px;
  5002. height:19px;
  5003. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5004. font-weight:700;
  5005. font-style:normal;
  5006. font-size:16px;
  5007. color:#FF0000;
  5008. }
  5009. #u1363_text {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:198px;
  5015. word-wrap:break-word;
  5016. }
  5017. #u1364_div {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:352px;
  5023. height:198px;
  5024. background:inherit;
  5025. background-color:rgba(255, 255, 255, 0);
  5026. border:none;
  5027. border-radius:0px;
  5028. -moz-box-shadow:none;
  5029. -webkit-box-shadow:none;
  5030. box-shadow:none;
  5031. line-height:22px;
  5032. }
  5033. #u1364 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:1217px;
  5037. top:12517px;
  5038. width:352px;
  5039. height:198px;
  5040. line-height:22px;
  5041. }
  5042. #u1364_text {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:0px;
  5046. top:0px;
  5047. width:352px;
  5048. word-wrap:break-word;
  5049. }
  5050. #u1365_div {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:286px;
  5056. height:173px;
  5057. background:inherit;
  5058. background-color:rgba(255, 255, 0, 1);
  5059. box-sizing:border-box;
  5060. border-width:1px;
  5061. border-style:solid;
  5062. border-color:rgba(0, 0, 0, 1);
  5063. border-radius:10px;
  5064. -moz-box-shadow:none;
  5065. -webkit-box-shadow:none;
  5066. box-shadow:none;
  5067. color:#000000;
  5068. text-align:left;
  5069. line-height:18px;
  5070. }
  5071. #u1365 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:1221px;
  5075. top:12299px;
  5076. width:286px;
  5077. height:173px;
  5078. color:#000000;
  5079. text-align:left;
  5080. line-height:18px;
  5081. }
  5082. #u1365_text {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:2px;
  5086. top:24px;
  5087. width:282px;
  5088. word-wrap:break-word;
  5089. }
  5090. #u1366 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:1222px;
  5094. top:12477px;
  5095. width:90px;
  5096. height:23px;
  5097. overflow:hidden;
  5098. background-image:url('../../resources/images/transparent.gif');
  5099. }
  5100. #u1367_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:167px;
  5106. height:67px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 0, 1);
  5109. box-sizing:border-box;
  5110. border-width:1px;
  5111. border-style:solid;
  5112. border-color:rgba(0, 0, 0, 1);
  5113. border-radius:10px;
  5114. -moz-box-shadow:none;
  5115. -webkit-box-shadow:none;
  5116. box-shadow:none;
  5117. color:#000000;
  5118. text-align:left;
  5119. line-height:18px;
  5120. }
  5121. #u1367 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:1383px;
  5125. top:12537px;
  5126. width:167px;
  5127. height:67px;
  5128. color:#000000;
  5129. text-align:left;
  5130. line-height:18px;
  5131. }
  5132. #u1367_text {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:2px;
  5136. top:16px;
  5137. width:163px;
  5138. word-wrap:break-word;
  5139. }
  5140. #u1368 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:1390px;
  5144. top:12604px;
  5145. width:73px;
  5146. height:23px;
  5147. overflow:hidden;
  5148. background-image:url('../../resources/images/transparent.gif');
  5149. }
  5150. #u1369_div {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:167px;
  5156. height:67px;
  5157. background:inherit;
  5158. background-color:rgba(255, 255, 0, 1);
  5159. box-sizing:border-box;
  5160. border-width:1px;
  5161. border-style:solid;
  5162. border-color:rgba(0, 0, 0, 1);
  5163. border-radius:10px;
  5164. -moz-box-shadow:none;
  5165. -webkit-box-shadow:none;
  5166. box-shadow:none;
  5167. color:#000000;
  5168. text-align:left;
  5169. line-height:18px;
  5170. }
  5171. #u1369 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:1233px;
  5175. top:12508px;
  5176. width:167px;
  5177. height:67px;
  5178. color:#000000;
  5179. text-align:left;
  5180. line-height:18px;
  5181. }
  5182. #u1369_text {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:2px;
  5186. top:16px;
  5187. width:163px;
  5188. word-wrap:break-word;
  5189. }
  5190. #u1370 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:1292px;
  5194. top:12581px;
  5195. width:32px;
  5196. height:23px;
  5197. overflow:hidden;
  5198. background-image:url('../../resources/images/transparent.gif');
  5199. }
  5200. #u1371 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:1211px;
  5204. top:12651px;
  5205. width:32px;
  5206. height:22px;
  5207. overflow:hidden;
  5208. background-image:url('../../resources/images/transparent.gif');
  5209. }
  5210. #u1372_div {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:0px;
  5214. top:0px;
  5215. width:223px;
  5216. height:79px;
  5217. background:inherit;
  5218. background-color:rgba(255, 255, 0, 1);
  5219. box-sizing:border-box;
  5220. border-width:1px;
  5221. border-style:solid;
  5222. border-color:rgba(0, 0, 0, 1);
  5223. border-radius:10px;
  5224. -moz-box-shadow:none;
  5225. -webkit-box-shadow:none;
  5226. box-shadow:none;
  5227. text-align:left;
  5228. line-height:18px;
  5229. }
  5230. #u1372 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:1211px;
  5234. top:12679px;
  5235. width:223px;
  5236. height:79px;
  5237. text-align:left;
  5238. line-height:18px;
  5239. }
  5240. #u1372_text {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:2px;
  5244. top:23px;
  5245. width:219px;
  5246. word-wrap:break-word;
  5247. }
  5248. #u1373 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:1541px;
  5252. top:12627px;
  5253. width:32px;
  5254. height:22px;
  5255. overflow:hidden;
  5256. background-image:url('../../resources/images/transparent.gif');
  5257. }
  5258. #u1374 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:1317px;
  5262. top:12648px;
  5263. width:70px;
  5264. height:21px;
  5265. overflow:hidden;
  5266. background-image:url('../../resources/images/transparent.gif');
  5267. }
  5268. #u1375_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:232px;
  5274. height:136px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 0, 1);
  5277. box-sizing:border-box;
  5278. border-width:1px;
  5279. border-style:solid;
  5280. border-color:rgba(0, 0, 0, 1);
  5281. border-radius:10px;
  5282. -moz-box-shadow:none;
  5283. -webkit-box-shadow:none;
  5284. box-shadow:none;
  5285. text-align:left;
  5286. line-height:18px;
  5287. }
  5288. #u1375 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:1281px;
  5292. top:12674px;
  5293. width:232px;
  5294. height:136px;
  5295. text-align:left;
  5296. line-height:18px;
  5297. }
  5298. #u1375_text {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:2px;
  5302. top:8px;
  5303. width:228px;
  5304. word-wrap:break-word;
  5305. }
  5306. #u1376_div {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:264px;
  5312. height:22px;
  5313. background:inherit;
  5314. background-color:rgba(255, 255, 255, 0);
  5315. border:none;
  5316. border-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5321. font-weight:700;
  5322. font-style:normal;
  5323. font-size:18px;
  5324. }
  5325. #u1376 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:16px;
  5329. top:13798px;
  5330. width:264px;
  5331. height:22px;
  5332. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5333. font-weight:700;
  5334. font-style:normal;
  5335. font-size:18px;
  5336. }
  5337. #u1376_text {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:264px;
  5343. white-space:nowrap;
  5344. }
  5345. #u1377_img {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:1155px;
  5351. height:583px;
  5352. }
  5353. #u1377 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:16px;
  5357. top:13830px;
  5358. width:1155px;
  5359. height:583px;
  5360. }
  5361. #u1377_text {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:0px;
  5367. visibility:hidden;
  5368. word-wrap:break-word;
  5369. }
  5370. #u1378_img {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:-4px;
  5374. top:-4px;
  5375. width:30px;
  5376. height:30px;
  5377. }
  5378. #u1378 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:1051px;
  5382. top:14317px;
  5383. width:20px;
  5384. height:20px;
  5385. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5386. font-weight:700;
  5387. font-style:normal;
  5388. font-size:14px;
  5389. color:#1E1E1E;
  5390. }
  5391. #u1378_text {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:2px;
  5395. top:2px;
  5396. width:16px;
  5397. word-wrap:break-word;
  5398. }
  5399. #u1379_img {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:-4px;
  5403. top:-4px;
  5404. width:30px;
  5405. height:30px;
  5406. }
  5407. #u1379 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:1138px;
  5411. top:14317px;
  5412. width:20px;
  5413. height:20px;
  5414. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5415. font-weight:700;
  5416. font-style:normal;
  5417. font-size:14px;
  5418. color:#1E1E1E;
  5419. }
  5420. #u1379_text {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:2px;
  5424. top:2px;
  5425. width:16px;
  5426. word-wrap:break-word;
  5427. }
  5428. #u1380 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:0px;
  5434. height:0px;
  5435. }
  5436. #u1381_img {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:-4px;
  5440. top:-4px;
  5441. width:40px;
  5442. height:40px;
  5443. }
  5444. #u1381 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:1176px;
  5448. top:14093px;
  5449. width:30px;
  5450. height:30px;
  5451. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5452. font-weight:700;
  5453. font-style:normal;
  5454. font-size:18px;
  5455. color:#1E1E1E;
  5456. }
  5457. #u1381_text {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:2px;
  5461. top:4px;
  5462. width:26px;
  5463. word-wrap:break-word;
  5464. }
  5465. #u1382_div {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:198px;
  5471. height:19px;
  5472. background:inherit;
  5473. background-color:rgba(255, 255, 255, 0);
  5474. border:none;
  5475. border-radius:0px;
  5476. -moz-box-shadow:none;
  5477. -webkit-box-shadow:none;
  5478. box-shadow:none;
  5479. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5480. font-weight:700;
  5481. font-style:normal;
  5482. font-size:16px;
  5483. color:#FF0000;
  5484. }
  5485. #u1382 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:1216px;
  5489. top:14100px;
  5490. width:198px;
  5491. height:19px;
  5492. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5493. font-weight:700;
  5494. font-style:normal;
  5495. font-size:16px;
  5496. color:#FF0000;
  5497. }
  5498. #u1382_text {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:198px;
  5504. word-wrap:break-word;
  5505. }
  5506. #u1383_div {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:352px;
  5512. height:88px;
  5513. background:inherit;
  5514. background-color:rgba(255, 255, 255, 0);
  5515. border:none;
  5516. border-radius:0px;
  5517. -moz-box-shadow:none;
  5518. -webkit-box-shadow:none;
  5519. box-shadow:none;
  5520. line-height:22px;
  5521. }
  5522. #u1383 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:1216px;
  5526. top:14138px;
  5527. width:352px;
  5528. height:88px;
  5529. line-height:22px;
  5530. }
  5531. #u1383_text {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:352px;
  5537. word-wrap:break-word;
  5538. }
  5539. #u1384 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:1221px;
  5543. top:14097px;
  5544. width:90px;
  5545. height:23px;
  5546. overflow:hidden;
  5547. background-image:url('../../resources/images/transparent.gif');
  5548. }
  5549. #u1385 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:0px;
  5555. height:0px;
  5556. }
  5557. #u1386_div {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:352px;
  5563. height:176px;
  5564. background:inherit;
  5565. background-color:rgba(255, 255, 255, 0);
  5566. border:none;
  5567. border-radius:0px;
  5568. -moz-box-shadow:none;
  5569. -webkit-box-shadow:none;
  5570. box-shadow:none;
  5571. line-height:22px;
  5572. }
  5573. #u1386 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:1221px;
  5577. top:13870px;
  5578. width:352px;
  5579. height:176px;
  5580. line-height:22px;
  5581. }
  5582. #u1386_text {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:352px;
  5588. word-wrap:break-word;
  5589. }
  5590. #u1387_img {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:-4px;
  5594. top:-4px;
  5595. width:40px;
  5596. height:40px;
  5597. }
  5598. #u1387 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:1176px;
  5602. top:13832px;
  5603. width:30px;
  5604. height:30px;
  5605. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5606. font-weight:700;
  5607. font-style:normal;
  5608. font-size:18px;
  5609. color:#1E1E1E;
  5610. }
  5611. #u1387_text {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:2px;
  5615. top:4px;
  5616. width:26px;
  5617. word-wrap:break-word;
  5618. }
  5619. #u1388_div {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:198px;
  5625. height:19px;
  5626. background:inherit;
  5627. background-color:rgba(255, 255, 255, 0);
  5628. border:none;
  5629. border-radius:0px;
  5630. -moz-box-shadow:none;
  5631. -webkit-box-shadow:none;
  5632. box-shadow:none;
  5633. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5634. font-weight:700;
  5635. font-style:normal;
  5636. font-size:16px;
  5637. color:#FF0000;
  5638. }
  5639. #u1388 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:1216px;
  5643. top:13839px;
  5644. width:198px;
  5645. height:19px;
  5646. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5647. font-weight:700;
  5648. font-style:normal;
  5649. font-size:16px;
  5650. color:#FF0000;
  5651. }
  5652. #u1388_text {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:198px;
  5658. word-wrap:break-word;
  5659. }
  5660. #u1389_div {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:296px;
  5666. height:102px;
  5667. background:inherit;
  5668. background-color:rgba(255, 255, 0, 1);
  5669. box-sizing:border-box;
  5670. border-width:1px;
  5671. border-style:solid;
  5672. border-color:rgba(0, 0, 0, 1);
  5673. border-radius:10px;
  5674. -moz-box-shadow:none;
  5675. -webkit-box-shadow:none;
  5676. box-shadow:none;
  5677. color:#000000;
  5678. text-align:left;
  5679. line-height:18px;
  5680. }
  5681. #u1389 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:1216px;
  5685. top:13720px;
  5686. width:296px;
  5687. height:102px;
  5688. color:#000000;
  5689. text-align:left;
  5690. line-height:18px;
  5691. }
  5692. #u1389_text {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:2px;
  5696. top:15px;
  5697. width:292px;
  5698. word-wrap:break-word;
  5699. }
  5700. #u1390 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:1221px;
  5704. top:13837px;
  5705. width:86px;
  5706. height:23px;
  5707. overflow:hidden;
  5708. background-image:url('../../resources/images/transparent.gif');
  5709. }
  5710. #u1391_div {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:305px;
  5716. height:129px;
  5717. background:inherit;
  5718. background-color:rgba(255, 255, 0, 1);
  5719. box-sizing:border-box;
  5720. border-width:1px;
  5721. border-style:solid;
  5722. border-color:rgba(0, 0, 0, 1);
  5723. border-radius:10px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. color:#000000;
  5728. text-align:left;
  5729. line-height:18px;
  5730. }
  5731. #u1391 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:1222px;
  5735. top:13958px;
  5736. width:305px;
  5737. height:129px;
  5738. color:#000000;
  5739. text-align:left;
  5740. line-height:18px;
  5741. }
  5742. #u1391_text {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:2px;
  5746. top:10px;
  5747. width:301px;
  5748. word-wrap:break-word;
  5749. }
  5750. #u1392_img {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:1155px;
  5756. height:583px;
  5757. }
  5758. #u1392 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:8px;
  5762. top:13099px;
  5763. width:1155px;
  5764. height:583px;
  5765. }
  5766. #u1392_text {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:0px;
  5772. visibility:hidden;
  5773. word-wrap:break-word;
  5774. }
  5775. #u1393 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:1490px;
  5779. top:12671px;
  5780. width:27px;
  5781. height:21px;
  5782. overflow:hidden;
  5783. background-image:url('../../resources/images/transparent.gif');
  5784. }
  5785. #u1394_div {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:232px;
  5791. height:104px;
  5792. background:inherit;
  5793. background-color:rgba(255, 255, 0, 1);
  5794. box-sizing:border-box;
  5795. border-width:1px;
  5796. border-style:solid;
  5797. border-color:rgba(0, 0, 0, 1);
  5798. border-radius:10px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. text-align:left;
  5803. line-height:18px;
  5804. }
  5805. #u1394 {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:1324px;
  5809. top:12560px;
  5810. width:232px;
  5811. height:104px;
  5812. text-align:left;
  5813. line-height:18px;
  5814. }
  5815. #u1394_text {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:2px;
  5819. top:12px;
  5820. width:228px;
  5821. word-wrap:break-word;
  5822. }
  5823. #u1395 {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:0px;
  5829. height:0px;
  5830. }
  5831. #u1396_img {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:-4px;
  5835. top:-4px;
  5836. width:44px;
  5837. height:44px;
  5838. }
  5839. #u1396 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:1181px;
  5843. top:14566px;
  5844. width:34px;
  5845. height:34px;
  5846. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5847. font-weight:700;
  5848. font-style:normal;
  5849. font-size:26px;
  5850. }
  5851. #u1396_text {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:2px;
  5855. top:1px;
  5856. width:30px;
  5857. word-wrap:break-word;
  5858. }
  5859. #u1397_div {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:101px;
  5865. height:19px;
  5866. background:inherit;
  5867. background-color:rgba(255, 255, 255, 0);
  5868. border:none;
  5869. border-radius:0px;
  5870. -moz-box-shadow:none;
  5871. -webkit-box-shadow:none;
  5872. box-shadow:none;
  5873. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5874. font-weight:700;
  5875. font-style:normal;
  5876. font-size:16px;
  5877. }
  5878. #u1397 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:1221px;
  5882. top:14573px;
  5883. width:101px;
  5884. height:19px;
  5885. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5886. font-weight:700;
  5887. font-style:normal;
  5888. font-size:16px;
  5889. }
  5890. #u1397_text {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:101px;
  5896. word-wrap:break-word;
  5897. }
  5898. #u1398_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:352px;
  5904. height:110px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 0);
  5907. border:none;
  5908. border-radius:0px;
  5909. -moz-box-shadow:none;
  5910. -webkit-box-shadow:none;
  5911. box-shadow:none;
  5912. line-height:22px;
  5913. }
  5914. #u1398 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1221px;
  5918. top:14611px;
  5919. width:352px;
  5920. height:110px;
  5921. line-height:22px;
  5922. }
  5923. #u1398_text {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:352px;
  5929. word-wrap:break-word;
  5930. }
  5931. #u1399_img {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:1155px;
  5937. height:583px;
  5938. }
  5939. #u1399 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:16px;
  5943. top:14566px;
  5944. width:1155px;
  5945. height:583px;
  5946. }
  5947. #u1399_text {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:0px;
  5953. visibility:hidden;
  5954. word-wrap:break-word;
  5955. }
  5956. #u1400_img {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:-4px;
  5960. top:-4px;
  5961. width:30px;
  5962. height:30px;
  5963. }
  5964. #u1400 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:215px;
  5968. top:14718px;
  5969. width:20px;
  5970. height:20px;
  5971. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5972. font-weight:700;
  5973. font-style:normal;
  5974. font-size:14px;
  5975. color:#1E1E1E;
  5976. }
  5977. #u1400_text {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:2px;
  5981. top:2px;
  5982. width:16px;
  5983. word-wrap:break-word;
  5984. }
  5985. #u1401_img {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:1155px;
  5991. height:583px;
  5992. }
  5993. #u1401 {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:16px;
  5997. top:15188px;
  5998. width:1155px;
  5999. height:583px;
  6000. }
  6001. #u1401_text {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:0px;
  6007. visibility:hidden;
  6008. word-wrap:break-word;
  6009. }
  6010. #u1402_div {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:228px;
  6016. height:22px;
  6017. background:inherit;
  6018. background-color:rgba(255, 255, 255, 0);
  6019. border:none;
  6020. border-radius:0px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6025. font-weight:700;
  6026. font-style:normal;
  6027. font-size:18px;
  6028. }
  6029. #u1402 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:16px;
  6033. top:14515px;
  6034. width:228px;
  6035. height:22px;
  6036. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6037. font-weight:700;
  6038. font-style:normal;
  6039. font-size:18px;
  6040. }
  6041. #u1402_text {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:228px;
  6047. white-space:nowrap;
  6048. }
  6049. #u1403_div {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:223px;
  6055. height:105px;
  6056. background:inherit;
  6057. background-color:rgba(255, 255, 0, 1);
  6058. box-sizing:border-box;
  6059. border-width:1px;
  6060. border-style:solid;
  6061. border-color:rgba(0, 0, 0, 1);
  6062. border-radius:10px;
  6063. -moz-box-shadow:none;
  6064. -webkit-box-shadow:none;
  6065. box-shadow:none;
  6066. text-align:left;
  6067. line-height:18px;
  6068. }
  6069. #u1403 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:1278px;
  6073. top:2375px;
  6074. width:223px;
  6075. height:105px;
  6076. text-align:left;
  6077. line-height:18px;
  6078. }
  6079. #u1403_text {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:2px;
  6083. top:13px;
  6084. width:219px;
  6085. word-wrap:break-word;
  6086. }
  6087. #u1404 {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:1484px;
  6091. top:2556px;
  6092. width:58px;
  6093. height:22px;
  6094. overflow:hidden;
  6095. background-image:url('../../resources/images/transparent.gif');
  6096. }
  6097. #u1405_div {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:223px;
  6103. height:79px;
  6104. background:inherit;
  6105. background-color:rgba(255, 255, 0, 1);
  6106. box-sizing:border-box;
  6107. border-width:1px;
  6108. border-style:solid;
  6109. border-color:rgba(0, 0, 0, 1);
  6110. border-radius:10px;
  6111. -moz-box-shadow:none;
  6112. -webkit-box-shadow:none;
  6113. box-shadow:none;
  6114. text-align:left;
  6115. line-height:18px;
  6116. }
  6117. #u1405 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:1331px;
  6121. top:2588px;
  6122. width:223px;
  6123. height:79px;
  6124. text-align:left;
  6125. line-height:18px;
  6126. }
  6127. #u1405_text {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:2px;
  6131. top:23px;
  6132. width:219px;
  6133. word-wrap:break-word;
  6134. }
  6135. #u1406 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:0px;
  6141. height:0px;
  6142. }
  6143. #u1407_img {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:-4px;
  6147. top:-4px;
  6148. width:40px;
  6149. height:40px;
  6150. }
  6151. #u1407 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:1173px;
  6155. top:5779px;
  6156. width:30px;
  6157. height:30px;
  6158. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6159. font-weight:700;
  6160. font-style:normal;
  6161. font-size:18px;
  6162. color:#1E1E1E;
  6163. }
  6164. #u1407_text {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:2px;
  6168. top:4px;
  6169. width:26px;
  6170. word-wrap:break-word;
  6171. }
  6172. #u1408_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:131px;
  6178. height:19px;
  6179. background:inherit;
  6180. background-color:rgba(255, 255, 255, 0);
  6181. border:none;
  6182. border-radius:0px;
  6183. -moz-box-shadow:none;
  6184. -webkit-box-shadow:none;
  6185. box-shadow:none;
  6186. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6187. font-weight:700;
  6188. font-style:normal;
  6189. font-size:16px;
  6190. }
  6191. #u1408 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:1213px;
  6195. top:5786px;
  6196. width:131px;
  6197. height:19px;
  6198. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6199. font-weight:700;
  6200. font-style:normal;
  6201. font-size:16px;
  6202. }
  6203. #u1408_text {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:131px;
  6209. word-wrap:break-word;
  6210. }
  6211. #u1409_div {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:352px;
  6217. height:154px;
  6218. background:inherit;
  6219. background-color:rgba(255, 255, 255, 0);
  6220. border:none;
  6221. border-radius:0px;
  6222. -moz-box-shadow:none;
  6223. -webkit-box-shadow:none;
  6224. box-shadow:none;
  6225. line-height:22px;
  6226. }
  6227. #u1409 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:1213px;
  6231. top:5824px;
  6232. width:352px;
  6233. height:154px;
  6234. line-height:22px;
  6235. }
  6236. #u1409_text {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:352px;
  6242. word-wrap:break-word;
  6243. }
  6244. #u1410 {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:1356px;
  6248. top:5933px;
  6249. width:93px;
  6250. height:25px;
  6251. overflow:hidden;
  6252. background-image:url('../../resources/images/transparent.gif');
  6253. }
  6254. #u1411_div {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:0px;
  6258. top:0px;
  6259. width:279px;
  6260. height:105px;
  6261. background:inherit;
  6262. background-color:rgba(255, 255, 0, 1);
  6263. box-sizing:border-box;
  6264. border-width:1px;
  6265. border-style:solid;
  6266. border-color:rgba(0, 0, 0, 1);
  6267. border-radius:10px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. text-align:left;
  6272. line-height:18px;
  6273. }
  6274. #u1411 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:1250px;
  6278. top:5818px;
  6279. width:279px;
  6280. height:105px;
  6281. text-align:left;
  6282. line-height:18px;
  6283. }
  6284. #u1411_text {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:2px;
  6288. top:13px;
  6289. width:275px;
  6290. word-wrap:break-word;
  6291. }
  6292. #u1412 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:1286px;
  6296. top:5953px;
  6297. width:70px;
  6298. height:25px;
  6299. overflow:hidden;
  6300. background-image:url('../../resources/images/transparent.gif');
  6301. }
  6302. #u1413 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:1485px;
  6306. top:5933px;
  6307. width:54px;
  6308. height:22px;
  6309. overflow:hidden;
  6310. background-image:url('../../resources/images/transparent.gif');
  6311. }
  6312. #u1414_div {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:223px;
  6318. height:79px;
  6319. background:inherit;
  6320. background-color:rgba(255, 255, 0, 1);
  6321. box-sizing:border-box;
  6322. border-width:1px;
  6323. border-style:solid;
  6324. border-color:rgba(0, 0, 0, 1);
  6325. border-radius:10px;
  6326. -moz-box-shadow:none;
  6327. -webkit-box-shadow:none;
  6328. box-shadow:none;
  6329. text-align:left;
  6330. line-height:18px;
  6331. }
  6332. #u1414 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:1331px;
  6336. top:5958px;
  6337. width:223px;
  6338. height:79px;
  6339. text-align:left;
  6340. line-height:18px;
  6341. }
  6342. #u1414_text {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:2px;
  6346. top:23px;
  6347. width:219px;
  6348. word-wrap:break-word;
  6349. }
  6350. #u1415_div {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:0px;
  6354. top:0px;
  6355. width:232px;
  6356. height:146px;
  6357. background:inherit;
  6358. background-color:rgba(255, 255, 0, 1);
  6359. box-sizing:border-box;
  6360. border-width:1px;
  6361. border-style:solid;
  6362. border-color:rgba(0, 0, 0, 1);
  6363. border-radius:10px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. text-align:left;
  6368. line-height:18px;
  6369. }
  6370. #u1415 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:1213px;
  6374. top:5978px;
  6375. width:232px;
  6376. height:146px;
  6377. text-align:left;
  6378. line-height:18px;
  6379. }
  6380. #u1415_text {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:2px;
  6384. top:18px;
  6385. width:228px;
  6386. word-wrap:break-word;
  6387. }
  6388. #u1416 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:1376px;
  6392. top:5869px;
  6393. width:54px;
  6394. height:20px;
  6395. overflow:hidden;
  6396. background-image:url('../../resources/images/transparent.gif');
  6397. }
  6398. #u1417_div {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:223px;
  6404. height:105px;
  6405. background:inherit;
  6406. background-color:rgba(255, 255, 0, 1);
  6407. box-sizing:border-box;
  6408. border-width:1px;
  6409. border-style:solid;
  6410. border-color:rgba(0, 0, 0, 1);
  6411. border-radius:10px;
  6412. -moz-box-shadow:none;
  6413. -webkit-box-shadow:none;
  6414. box-shadow:none;
  6415. text-align:left;
  6416. line-height:18px;
  6417. }
  6418. #u1417 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:1286px;
  6422. top:5759px;
  6423. width:223px;
  6424. height:105px;
  6425. text-align:left;
  6426. line-height:18px;
  6427. }
  6428. #u1417_text {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:2px;
  6432. top:13px;
  6433. width:219px;
  6434. word-wrap:break-word;
  6435. }
  6436. #u1418_div {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:232px;
  6442. height:136px;
  6443. background:inherit;
  6444. background-color:rgba(255, 255, 0, 1);
  6445. box-sizing:border-box;
  6446. border-width:1px;
  6447. border-style:solid;
  6448. border-color:rgba(0, 0, 0, 1);
  6449. border-radius:10px;
  6450. -moz-box-shadow:none;
  6451. -webkit-box-shadow:none;
  6452. box-shadow:none;
  6453. text-align:left;
  6454. line-height:18px;
  6455. }
  6456. #u1418 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:1212px;
  6460. top:2599px;
  6461. width:232px;
  6462. height:136px;
  6463. text-align:left;
  6464. line-height:18px;
  6465. }
  6466. #u1418_text {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:2px;
  6470. top:8px;
  6471. width:228px;
  6472. word-wrap:break-word;
  6473. }
  6474. #u1419_img {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:1155px;
  6480. height:583px;
  6481. }
  6482. #u1419 {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:8px;
  6486. top:3061px;
  6487. width:1155px;
  6488. height:583px;
  6489. }
  6490. #u1419_text {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:0px;
  6496. visibility:hidden;
  6497. word-wrap:break-word;
  6498. }
  6499. #u1420_div {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:234px;
  6505. height:22px;
  6506. background:inherit;
  6507. background-color:rgba(255, 255, 255, 0);
  6508. border:none;
  6509. border-radius:0px;
  6510. -moz-box-shadow:none;
  6511. -webkit-box-shadow:none;
  6512. box-shadow:none;
  6513. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6514. font-weight:700;
  6515. font-style:normal;
  6516. font-size:18px;
  6517. }
  6518. #u1420 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:8px;
  6522. top:3023px;
  6523. width:234px;
  6524. height:22px;
  6525. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6526. font-weight:700;
  6527. font-style:normal;
  6528. font-size:18px;
  6529. }
  6530. #u1420_text {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:234px;
  6536. word-wrap:break-word;
  6537. }
  6538. #u1421 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:0px;
  6542. top:0px;
  6543. width:0px;
  6544. height:0px;
  6545. }
  6546. #u1422_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:-4px;
  6550. top:-4px;
  6551. width:44px;
  6552. height:44px;
  6553. }
  6554. #u1422 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:1173px;
  6558. top:3061px;
  6559. width:34px;
  6560. height:34px;
  6561. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6562. font-weight:700;
  6563. font-style:normal;
  6564. font-size:26px;
  6565. }
  6566. #u1422_text {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:2px;
  6570. top:1px;
  6571. width:30px;
  6572. word-wrap:break-word;
  6573. }
  6574. #u1423_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:131px;
  6580. height:19px;
  6581. background:inherit;
  6582. background-color:rgba(255, 255, 255, 0);
  6583. border:none;
  6584. border-radius:0px;
  6585. -moz-box-shadow:none;
  6586. -webkit-box-shadow:none;
  6587. box-shadow:none;
  6588. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6589. font-weight:700;
  6590. font-style:normal;
  6591. font-size:16px;
  6592. }
  6593. #u1423 {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:1213px;
  6597. top:3068px;
  6598. width:131px;
  6599. height:19px;
  6600. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6601. font-weight:700;
  6602. font-style:normal;
  6603. font-size:16px;
  6604. }
  6605. #u1423_text {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:131px;
  6611. word-wrap:break-word;
  6612. }
  6613. #u1424_div {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:352px;
  6619. height:66px;
  6620. background:inherit;
  6621. background-color:rgba(255, 255, 255, 0);
  6622. border:none;
  6623. border-radius:0px;
  6624. -moz-box-shadow:none;
  6625. -webkit-box-shadow:none;
  6626. box-shadow:none;
  6627. line-height:22px;
  6628. }
  6629. #u1424 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:1213px;
  6633. top:3106px;
  6634. width:352px;
  6635. height:66px;
  6636. line-height:22px;
  6637. }
  6638. #u1424_text {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:352px;
  6644. word-wrap:break-word;
  6645. }
  6646. #u1425 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:0px;
  6652. height:0px;
  6653. }
  6654. #u1426_img {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:-4px;
  6658. top:-4px;
  6659. width:44px;
  6660. height:44px;
  6661. }
  6662. #u1426 {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:1173px;
  6666. top:3187px;
  6667. width:34px;
  6668. height:34px;
  6669. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6670. font-weight:700;
  6671. font-style:normal;
  6672. font-size:26px;
  6673. }
  6674. #u1426_text {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:2px;
  6678. top:1px;
  6679. width:30px;
  6680. word-wrap:break-word;
  6681. }
  6682. #u1427_div {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:131px;
  6688. height:19px;
  6689. background:inherit;
  6690. background-color:rgba(255, 255, 255, 0);
  6691. border:none;
  6692. border-radius:0px;
  6693. -moz-box-shadow:none;
  6694. -webkit-box-shadow:none;
  6695. box-shadow:none;
  6696. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6697. font-weight:700;
  6698. font-style:normal;
  6699. font-size:16px;
  6700. }
  6701. #u1427 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:1213px;
  6705. top:3194px;
  6706. width:131px;
  6707. height:19px;
  6708. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6709. font-weight:700;
  6710. font-style:normal;
  6711. font-size:16px;
  6712. }
  6713. #u1427_text {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:131px;
  6719. word-wrap:break-word;
  6720. }
  6721. #u1428_div {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:352px;
  6727. height:88px;
  6728. background:inherit;
  6729. background-color:rgba(255, 255, 255, 0);
  6730. border:none;
  6731. border-radius:0px;
  6732. -moz-box-shadow:none;
  6733. -webkit-box-shadow:none;
  6734. box-shadow:none;
  6735. line-height:22px;
  6736. }
  6737. #u1428 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:1213px;
  6741. top:3232px;
  6742. width:352px;
  6743. height:88px;
  6744. line-height:22px;
  6745. }
  6746. #u1428_text {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:352px;
  6752. word-wrap:break-word;
  6753. }
  6754. #u1429_img {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:1155px;
  6760. height:583px;
  6761. }
  6762. #u1429 {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:8px;
  6766. top:3741px;
  6767. width:1155px;
  6768. height:583px;
  6769. }
  6770. #u1429_text {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:0px;
  6776. visibility:hidden;
  6777. word-wrap:break-word;
  6778. }
  6779. #u1430_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:234px;
  6785. height:22px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border:none;
  6789. border-radius:0px;
  6790. -moz-box-shadow:none;
  6791. -webkit-box-shadow:none;
  6792. box-shadow:none;
  6793. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6794. font-weight:700;
  6795. font-style:normal;
  6796. font-size:18px;
  6797. }
  6798. #u1430 {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:8px;
  6802. top:3709px;
  6803. width:234px;
  6804. height:22px;
  6805. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6806. font-weight:700;
  6807. font-style:normal;
  6808. font-size:18px;
  6809. }
  6810. #u1430_text {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:234px;
  6816. word-wrap:break-word;
  6817. }
  6818. #u1431_img {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:-4px;
  6822. top:-4px;
  6823. width:30px;
  6824. height:30px;
  6825. }
  6826. #u1431 {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:454px;
  6830. top:3171px;
  6831. width:20px;
  6832. height:20px;
  6833. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6834. font-weight:700;
  6835. font-style:normal;
  6836. font-size:14px;
  6837. color:#1E1E1E;
  6838. }
  6839. #u1431_text {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:2px;
  6843. top:2px;
  6844. width:16px;
  6845. word-wrap:break-word;
  6846. }
  6847. #u1432_img {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:-4px;
  6851. top:-4px;
  6852. width:30px;
  6853. height:30px;
  6854. }
  6855. #u1432 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:525px;
  6859. top:3171px;
  6860. width:20px;
  6861. height:20px;
  6862. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6863. font-weight:700;
  6864. font-style:normal;
  6865. font-size:14px;
  6866. color:#1E1E1E;
  6867. }
  6868. #u1432_text {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:2px;
  6872. top:2px;
  6873. width:16px;
  6874. word-wrap:break-word;
  6875. }
  6876. #u1433_img {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:1155px;
  6882. height:583px;
  6883. }
  6884. #u1433 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:8px;
  6888. top:9807px;
  6889. width:1155px;
  6890. height:583px;
  6891. }
  6892. #u1433_text {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:0px;
  6898. visibility:hidden;
  6899. word-wrap:break-word;
  6900. }
  6901. #u1434 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:0px;
  6907. height:0px;
  6908. }
  6909. #u1435_div {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:352px;
  6915. height:176px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 0);
  6918. border:none;
  6919. border-radius:0px;
  6920. -moz-box-shadow:none;
  6921. -webkit-box-shadow:none;
  6922. box-shadow:none;
  6923. line-height:22px;
  6924. }
  6925. #u1435 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:1218px;
  6929. top:9199px;
  6930. width:352px;
  6931. height:176px;
  6932. line-height:22px;
  6933. }
  6934. #u1435_text {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:352px;
  6940. word-wrap:break-word;
  6941. }
  6942. #u1436_img {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:-4px;
  6946. top:-4px;
  6947. width:44px;
  6948. height:44px;
  6949. }
  6950. #u1436 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:1173px;
  6954. top:9161px;
  6955. width:34px;
  6956. height:34px;
  6957. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6958. font-weight:700;
  6959. font-style:normal;
  6960. font-size:26px;
  6961. }
  6962. #u1436_text {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:2px;
  6966. top:1px;
  6967. width:30px;
  6968. word-wrap:break-word;
  6969. }
  6970. #u1437_div {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:198px;
  6976. height:19px;
  6977. background:inherit;
  6978. background-color:rgba(255, 255, 255, 0);
  6979. border:none;
  6980. border-radius:0px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6985. font-weight:700;
  6986. font-style:normal;
  6987. font-size:16px;
  6988. color:#FF0000;
  6989. }
  6990. #u1437 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:1213px;
  6994. top:9168px;
  6995. width:198px;
  6996. height:19px;
  6997. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6998. font-weight:700;
  6999. font-style:normal;
  7000. font-size:16px;
  7001. color:#FF0000;
  7002. }
  7003. #u1437_text {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:198px;
  7009. word-wrap:break-word;
  7010. }
  7011. #u1438 {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:1213px;
  7015. top:9166px;
  7016. width:95px;
  7017. height:23px;
  7018. overflow:hidden;
  7019. background-image:url('../../resources/images/transparent.gif');
  7020. }
  7021. #u1439_div {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:270px;
  7027. height:115px;
  7028. background:inherit;
  7029. background-color:rgba(255, 255, 0, 1);
  7030. box-sizing:border-box;
  7031. border-width:1px;
  7032. border-style:solid;
  7033. border-color:rgba(0, 0, 0, 1);
  7034. border-radius:10px;
  7035. -moz-box-shadow:none;
  7036. -webkit-box-shadow:none;
  7037. box-shadow:none;
  7038. color:#000000;
  7039. text-align:left;
  7040. line-height:18px;
  7041. }
  7042. #u1439 {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:1213px;
  7046. top:9044px;
  7047. width:270px;
  7048. height:115px;
  7049. color:#000000;
  7050. text-align:left;
  7051. line-height:18px;
  7052. }
  7053. #u1439_text {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:2px;
  7057. top:22px;
  7058. width:266px;
  7059. word-wrap:break-word;
  7060. }
  7061. #u1440_img {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:0px;
  7066. width:1155px;
  7067. height:583px;
  7068. }
  7069. #u1440 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:8px;
  7073. top:10436px;
  7074. width:1155px;
  7075. height:583px;
  7076. }
  7077. #u1440_text {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:0px;
  7083. visibility:hidden;
  7084. word-wrap:break-word;
  7085. }
  7086. #u1441_img {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:1155px;
  7092. height:583px;
  7093. }
  7094. #u1441 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:8px;
  7098. top:11082px;
  7099. width:1155px;
  7100. height:583px;
  7101. }
  7102. #u1441_text {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:0px;
  7108. visibility:hidden;
  7109. word-wrap:break-word;
  7110. }
  7111. #u1442 {
  7112. position:fixed;
  7113. left:1382px;
  7114. top:68px;
  7115. }
  7116. #u1442_state0 {
  7117. position:relative;
  7118. left:0px;
  7119. top:0px;
  7120. width:140px;
  7121. height:40px;
  7122. background-image:none;
  7123. }
  7124. #u1442_state0_content {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:1px;
  7130. height:1px;
  7131. }
  7132. #u1443_div {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:140px;
  7138. height:40px;
  7139. background:inherit;
  7140. background-color:rgba(51, 160, 154, 1);
  7141. border:none;
  7142. border-radius:5px;
  7143. -moz-box-shadow:none;
  7144. -webkit-box-shadow:none;
  7145. box-shadow:none;
  7146. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7147. font-weight:700;
  7148. font-style:normal;
  7149. font-size:16px;
  7150. }
  7151. #u1443 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:140px;
  7157. height:40px;
  7158. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7159. font-weight:700;
  7160. font-style:normal;
  7161. font-size:16px;
  7162. }
  7163. #u1443_text {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:2px;
  7167. top:10px;
  7168. width:136px;
  7169. word-wrap:break-word;
  7170. }