styles.css 122 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1565px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u913_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1155px;
  21. height:583px;
  22. }
  23. #u913 {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:394px;
  28. width:1155px;
  29. height:583px;
  30. }
  31. #u913_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. #u914 {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:0px;
  46. height:0px;
  47. }
  48. #u915_img {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:8px;
  54. height:28px;
  55. }
  56. #u915 {
  57. border-width:0px;
  58. position:absolute;
  59. left:8px;
  60. top:15px;
  61. width:8px;
  62. height:28px;
  63. }
  64. #u915_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. #u916_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. #u916 {
  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. #u916_text {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:121px;
  108. white-space:nowrap;
  109. }
  110. #u917_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. #u917 {
  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. #u917_text {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:109px;
  147. white-space:nowrap;
  148. }
  149. #u918_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. #u918 {
  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. #u918_text {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:210px;
  186. white-space:nowrap;
  187. }
  188. #u919_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. #u919 {
  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. #u919_text {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:1104px;
  221. word-wrap:break-word;
  222. }
  223. #u920 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u921_img {
  232. border-width:0px;
  233. position:absolute;
  234. left:-4px;
  235. top:-4px;
  236. width:40px;
  237. height:40px;
  238. }
  239. #u921 {
  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. #u921_text {
  253. border-width:0px;
  254. position:absolute;
  255. left:2px;
  256. top:4px;
  257. width:26px;
  258. word-wrap:break-word;
  259. }
  260. #u922_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. #u922 {
  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. #u922_text {
  292. border-width:0px;
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:131px;
  297. word-wrap:break-word;
  298. }
  299. #u923_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. #u923 {
  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. #u923_text {
  325. border-width:0px;
  326. position:absolute;
  327. left:0px;
  328. top:0px;
  329. width:352px;
  330. word-wrap:break-word;
  331. }
  332. #u924_img {
  333. border-width:0px;
  334. position:absolute;
  335. left:-4px;
  336. top:-4px;
  337. width:30px;
  338. height:30px;
  339. }
  340. #u924 {
  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. #u924_text {
  354. border-width:0px;
  355. position:absolute;
  356. left:2px;
  357. top:2px;
  358. width:16px;
  359. word-wrap:break-word;
  360. }
  361. #u925_img {
  362. border-width:0px;
  363. position:absolute;
  364. left:-4px;
  365. top:-4px;
  366. width:30px;
  367. height:30px;
  368. }
  369. #u925 {
  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. #u925_text {
  383. border-width:0px;
  384. position:absolute;
  385. left:2px;
  386. top:2px;
  387. width:16px;
  388. word-wrap:break-word;
  389. }
  390. #u926 {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:0px;
  396. height:0px;
  397. }
  398. #u927_img {
  399. border-width:0px;
  400. position:absolute;
  401. left:-4px;
  402. top:-4px;
  403. width:40px;
  404. height:40px;
  405. }
  406. #u927 {
  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. #u927_text {
  420. border-width:0px;
  421. position:absolute;
  422. left:2px;
  423. top:4px;
  424. width:26px;
  425. word-wrap:break-word;
  426. }
  427. #u928_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. #u928 {
  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. #u928_text {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:198px;
  466. word-wrap:break-word;
  467. }
  468. #u929_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. #u929 {
  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. #u929_text {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:352px;
  499. word-wrap:break-word;
  500. }
  501. #u930_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:-4px;
  505. top:-4px;
  506. width:30px;
  507. height:30px;
  508. }
  509. #u930 {
  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. #u930_text {
  523. border-width:0px;
  524. position:absolute;
  525. left:2px;
  526. top:2px;
  527. width:16px;
  528. word-wrap:break-word;
  529. }
  530. #u931_img {
  531. border-width:0px;
  532. position:absolute;
  533. left:-4px;
  534. top:-4px;
  535. width:30px;
  536. height:30px;
  537. }
  538. #u931 {
  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. #u931_text {
  552. border-width:0px;
  553. position:absolute;
  554. left:2px;
  555. top:2px;
  556. width:16px;
  557. word-wrap:break-word;
  558. }
  559. #u932 {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:0px;
  565. height:0px;
  566. }
  567. #u933_img {
  568. border-width:0px;
  569. position:absolute;
  570. left:-4px;
  571. top:-4px;
  572. width:40px;
  573. height:40px;
  574. }
  575. #u933 {
  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. #u933_text {
  589. border-width:0px;
  590. position:absolute;
  591. left:2px;
  592. top:4px;
  593. width:26px;
  594. word-wrap:break-word;
  595. }
  596. #u934_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. #u934 {
  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. #u934_text {
  628. border-width:0px;
  629. position:absolute;
  630. left:0px;
  631. top:0px;
  632. width:198px;
  633. word-wrap:break-word;
  634. }
  635. #u935_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. #u935 {
  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. #u935_text {
  661. border-width:0px;
  662. position:absolute;
  663. left:0px;
  664. top:0px;
  665. width:352px;
  666. word-wrap:break-word;
  667. }
  668. #u936 {
  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. #u937_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. #u937 {
  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. #u937_text {
  711. border-width:0px;
  712. position:absolute;
  713. left:2px;
  714. top:8px;
  715. width:272px;
  716. word-wrap:break-word;
  717. }
  718. #u938 {
  719. border-width:0px;
  720. position:absolute;
  721. left:0px;
  722. top:0px;
  723. width:0px;
  724. height:0px;
  725. }
  726. #u939_img {
  727. border-width:0px;
  728. position:absolute;
  729. left:-4px;
  730. top:-4px;
  731. width:40px;
  732. height:40px;
  733. }
  734. #u939 {
  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. #u939_text {
  748. border-width:0px;
  749. position:absolute;
  750. left:2px;
  751. top:4px;
  752. width:26px;
  753. word-wrap:break-word;
  754. }
  755. #u940_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. #u940 {
  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. #u940_text {
  787. border-width:0px;
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:198px;
  792. word-wrap:break-word;
  793. }
  794. #u941_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. #u941 {
  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. #u941_text {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:352px;
  825. word-wrap:break-word;
  826. }
  827. #u942_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. #u942 {
  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. #u942_text {
  860. border-width:0px;
  861. position:absolute;
  862. left:2px;
  863. top:8px;
  864. width:289px;
  865. word-wrap:break-word;
  866. }
  867. #u943 {
  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. #u944_img {
  878. border-width:0px;
  879. position:absolute;
  880. left:-4px;
  881. top:-4px;
  882. width:30px;
  883. height:30px;
  884. }
  885. #u944 {
  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. #u944_text {
  899. border-width:0px;
  900. position:absolute;
  901. left:2px;
  902. top:2px;
  903. width:16px;
  904. word-wrap:break-word;
  905. }
  906. #u945_img {
  907. border-width:0px;
  908. position:absolute;
  909. left:-4px;
  910. top:-4px;
  911. width:30px;
  912. height:30px;
  913. }
  914. #u945 {
  915. border-width:0px;
  916. position:absolute;
  917. left:220px;
  918. top:592px;
  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. #u945_text {
  928. border-width:0px;
  929. position:absolute;
  930. left:2px;
  931. top:2px;
  932. width:16px;
  933. word-wrap:break-word;
  934. }
  935. #u946_img {
  936. border-width:0px;
  937. position:absolute;
  938. left:-4px;
  939. top:-4px;
  940. width:30px;
  941. height:30px;
  942. }
  943. #u946 {
  944. border-width:0px;
  945. position:absolute;
  946. left:204px;
  947. top:757px;
  948. width:20px;
  949. height:20px;
  950. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  951. font-weight:700;
  952. font-style:normal;
  953. font-size:14px;
  954. color:#1E1E1E;
  955. }
  956. #u946_text {
  957. border-width:0px;
  958. position:absolute;
  959. left:2px;
  960. top:2px;
  961. width:16px;
  962. word-wrap:break-word;
  963. }
  964. #u947 {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:0px;
  970. height:0px;
  971. }
  972. #u948_img {
  973. border-width:0px;
  974. position:absolute;
  975. left:-4px;
  976. top:-4px;
  977. width:40px;
  978. height:40px;
  979. }
  980. #u948 {
  981. border-width:0px;
  982. position:absolute;
  983. left:1173px;
  984. top:2166px;
  985. width:30px;
  986. height:30px;
  987. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  988. font-weight:700;
  989. font-style:normal;
  990. font-size:18px;
  991. color:#1E1E1E;
  992. }
  993. #u948_text {
  994. border-width:0px;
  995. position:absolute;
  996. left:2px;
  997. top:4px;
  998. width:26px;
  999. word-wrap:break-word;
  1000. }
  1001. #u949_div {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:131px;
  1007. height:19px;
  1008. background:inherit;
  1009. background-color:rgba(255, 255, 255, 0);
  1010. border:none;
  1011. border-radius:0px;
  1012. -moz-box-shadow:none;
  1013. -webkit-box-shadow:none;
  1014. box-shadow:none;
  1015. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1016. font-weight:700;
  1017. font-style:normal;
  1018. font-size:16px;
  1019. }
  1020. #u949 {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:1213px;
  1024. top:2173px;
  1025. width:131px;
  1026. height:19px;
  1027. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1028. font-weight:700;
  1029. font-style:normal;
  1030. font-size:16px;
  1031. }
  1032. #u949_text {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:131px;
  1038. word-wrap:break-word;
  1039. }
  1040. #u950_div {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:352px;
  1046. height:44px;
  1047. background:inherit;
  1048. background-color:rgba(255, 255, 255, 0);
  1049. border:none;
  1050. border-radius:0px;
  1051. -moz-box-shadow:none;
  1052. -webkit-box-shadow:none;
  1053. box-shadow:none;
  1054. line-height:22px;
  1055. }
  1056. #u950 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:1213px;
  1060. top:2211px;
  1061. width:352px;
  1062. height:44px;
  1063. line-height:22px;
  1064. }
  1065. #u950_text {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:0px;
  1069. top:0px;
  1070. width:352px;
  1071. word-wrap:break-word;
  1072. }
  1073. #u951 {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:0px;
  1077. top:0px;
  1078. width:0px;
  1079. height:0px;
  1080. }
  1081. #u952_img {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:-4px;
  1085. top:-4px;
  1086. width:40px;
  1087. height:40px;
  1088. }
  1089. #u952 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:1173px;
  1093. top:1781px;
  1094. width:30px;
  1095. height:30px;
  1096. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1097. font-weight:700;
  1098. font-style:normal;
  1099. font-size:18px;
  1100. color:#1E1E1E;
  1101. }
  1102. #u952_text {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:2px;
  1106. top:4px;
  1107. width:26px;
  1108. word-wrap:break-word;
  1109. }
  1110. #u953_div {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:169px;
  1116. height:19px;
  1117. background:inherit;
  1118. background-color:rgba(255, 255, 255, 0);
  1119. border:none;
  1120. border-radius:0px;
  1121. -moz-box-shadow:none;
  1122. -webkit-box-shadow:none;
  1123. box-shadow:none;
  1124. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1125. font-weight:700;
  1126. font-style:normal;
  1127. font-size:16px;
  1128. color:#FF0000;
  1129. }
  1130. #u953 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:1213px;
  1134. top:1788px;
  1135. width:169px;
  1136. height:19px;
  1137. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1138. font-weight:700;
  1139. font-style:normal;
  1140. font-size:16px;
  1141. color:#FF0000;
  1142. }
  1143. #u953_text {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:169px;
  1149. word-wrap:break-word;
  1150. }
  1151. #u954_div {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:352px;
  1157. height:66px;
  1158. background:inherit;
  1159. background-color:rgba(255, 255, 255, 0);
  1160. border:none;
  1161. border-radius:0px;
  1162. -moz-box-shadow:none;
  1163. -webkit-box-shadow:none;
  1164. box-shadow:none;
  1165. line-height:22px;
  1166. }
  1167. #u954 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:1213px;
  1171. top:1826px;
  1172. width:352px;
  1173. height:66px;
  1174. line-height:22px;
  1175. }
  1176. #u954_text {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:352px;
  1182. word-wrap:break-word;
  1183. }
  1184. #u955 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:0px;
  1190. height:0px;
  1191. }
  1192. #u956_img {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:-4px;
  1196. top:-4px;
  1197. width:40px;
  1198. height:40px;
  1199. }
  1200. #u956 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:1173px;
  1204. top:1915px;
  1205. width:30px;
  1206. height:30px;
  1207. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1208. font-weight:700;
  1209. font-style:normal;
  1210. font-size:18px;
  1211. color:#1E1E1E;
  1212. }
  1213. #u956_text {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:2px;
  1217. top:4px;
  1218. width:26px;
  1219. word-wrap:break-word;
  1220. }
  1221. #u957_div {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:131px;
  1227. height:19px;
  1228. background:inherit;
  1229. background-color:rgba(255, 255, 255, 0);
  1230. border:none;
  1231. border-radius:0px;
  1232. -moz-box-shadow:none;
  1233. -webkit-box-shadow:none;
  1234. box-shadow:none;
  1235. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1236. font-weight:700;
  1237. font-style:normal;
  1238. font-size:16px;
  1239. }
  1240. #u957 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1213px;
  1244. top:1922px;
  1245. width:131px;
  1246. height:19px;
  1247. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1248. font-weight:700;
  1249. font-style:normal;
  1250. font-size:16px;
  1251. }
  1252. #u957_text {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:131px;
  1258. word-wrap:break-word;
  1259. }
  1260. #u958_div {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:352px;
  1266. height:66px;
  1267. background:inherit;
  1268. background-color:rgba(255, 255, 255, 0);
  1269. border:none;
  1270. border-radius:0px;
  1271. -moz-box-shadow:none;
  1272. -webkit-box-shadow:none;
  1273. box-shadow:none;
  1274. line-height:22px;
  1275. }
  1276. #u958 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:1213px;
  1280. top:1960px;
  1281. width:352px;
  1282. height:66px;
  1283. line-height:22px;
  1284. }
  1285. #u958_text {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:352px;
  1291. word-wrap:break-word;
  1292. }
  1293. #u959_img {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:-4px;
  1297. top:-4px;
  1298. width:30px;
  1299. height:30px;
  1300. }
  1301. #u959 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:981px;
  1305. top:653px;
  1306. width:20px;
  1307. height:20px;
  1308. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1309. font-weight:700;
  1310. font-style:normal;
  1311. font-size:14px;
  1312. color:#1E1E1E;
  1313. }
  1314. #u959_text {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:2px;
  1318. top:2px;
  1319. width:16px;
  1320. word-wrap:break-word;
  1321. }
  1322. #u960_img {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:-4px;
  1326. top:-4px;
  1327. width:30px;
  1328. height:30px;
  1329. }
  1330. #u960 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1023px;
  1334. top:653px;
  1335. width:20px;
  1336. height:20px;
  1337. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1338. font-weight:700;
  1339. font-style:normal;
  1340. font-size:14px;
  1341. color:#1E1E1E;
  1342. }
  1343. #u960_text {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:2px;
  1347. top:2px;
  1348. width:16px;
  1349. word-wrap:break-word;
  1350. }
  1351. #u961_img {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:-4px;
  1355. top:-4px;
  1356. width:30px;
  1357. height:30px;
  1358. }
  1359. #u961 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:1068px;
  1363. top:653px;
  1364. width:20px;
  1365. height:20px;
  1366. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1367. font-weight:700;
  1368. font-style:normal;
  1369. font-size:14px;
  1370. color:#1E1E1E;
  1371. }
  1372. #u961_text {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:2px;
  1376. top:2px;
  1377. width:16px;
  1378. word-wrap:break-word;
  1379. }
  1380. #u962 {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:0px;
  1386. height:0px;
  1387. }
  1388. #u963_img {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:-4px;
  1392. top:-4px;
  1393. width:40px;
  1394. height:40px;
  1395. }
  1396. #u963 {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:1173px;
  1400. top:1028px;
  1401. width:30px;
  1402. height:30px;
  1403. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1404. font-weight:700;
  1405. font-style:normal;
  1406. font-size:18px;
  1407. color:#1E1E1E;
  1408. }
  1409. #u963_text {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:2px;
  1413. top:4px;
  1414. width:26px;
  1415. word-wrap:break-word;
  1416. }
  1417. #u964_div {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:0px;
  1421. top:0px;
  1422. width:131px;
  1423. height:19px;
  1424. background:inherit;
  1425. background-color:rgba(255, 255, 255, 0);
  1426. border:none;
  1427. border-radius:0px;
  1428. -moz-box-shadow:none;
  1429. -webkit-box-shadow:none;
  1430. box-shadow:none;
  1431. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1432. font-weight:700;
  1433. font-style:normal;
  1434. font-size:16px;
  1435. color:#FF0000;
  1436. }
  1437. #u964 {
  1438. border-width:0px;
  1439. position:absolute;
  1440. left:1213px;
  1441. top:1035px;
  1442. width:131px;
  1443. height:19px;
  1444. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1445. font-weight:700;
  1446. font-style:normal;
  1447. font-size:16px;
  1448. color:#FF0000;
  1449. }
  1450. #u964_text {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:131px;
  1456. word-wrap:break-word;
  1457. }
  1458. #u965_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:352px;
  1464. height:198px;
  1465. background:inherit;
  1466. background-color:rgba(255, 255, 255, 0);
  1467. border:none;
  1468. border-radius:0px;
  1469. -moz-box-shadow:none;
  1470. -webkit-box-shadow:none;
  1471. box-shadow:none;
  1472. line-height:22px;
  1473. }
  1474. #u965 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:1213px;
  1478. top:1073px;
  1479. width:352px;
  1480. height:198px;
  1481. line-height:22px;
  1482. }
  1483. #u965_text {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:352px;
  1489. word-wrap:break-word;
  1490. }
  1491. #u966 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:1218px;
  1495. top:1035px;
  1496. width:86px;
  1497. height:23px;
  1498. overflow:hidden;
  1499. background-image:url('../../resources/images/transparent.gif');
  1500. }
  1501. #u967_img {
  1502. border-width:0px;
  1503. position:absolute;
  1504. left:0px;
  1505. top:0px;
  1506. width:276px;
  1507. height:89px;
  1508. }
  1509. #u967 {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:1213px;
  1513. top:939px;
  1514. width:276px;
  1515. height:89px;
  1516. color:#000000;
  1517. text-align:left;
  1518. line-height:18px;
  1519. }
  1520. #u967_text {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:2px;
  1524. top:8px;
  1525. width:272px;
  1526. word-wrap:break-word;
  1527. }
  1528. #u968_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:-4px;
  1532. top:-4px;
  1533. width:30px;
  1534. height:30px;
  1535. }
  1536. #u968 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:1108px;
  1540. top:653px;
  1541. width:20px;
  1542. height:20px;
  1543. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1544. font-weight:700;
  1545. font-style:normal;
  1546. font-size:14px;
  1547. color:#1E1E1E;
  1548. }
  1549. #u968_text {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:2px;
  1553. top:2px;
  1554. width:16px;
  1555. word-wrap:break-word;
  1556. }
  1557. #u969 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:0px;
  1561. top:0px;
  1562. width:0px;
  1563. height:0px;
  1564. }
  1565. #u970_img {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:-4px;
  1569. top:-4px;
  1570. width:40px;
  1571. height:40px;
  1572. }
  1573. #u970 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:1173px;
  1577. top:1613px;
  1578. width:30px;
  1579. height:30px;
  1580. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1581. font-weight:700;
  1582. font-style:normal;
  1583. font-size:18px;
  1584. color:#1E1E1E;
  1585. }
  1586. #u970_text {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:2px;
  1590. top:4px;
  1591. width:26px;
  1592. word-wrap:break-word;
  1593. }
  1594. #u971_div {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:131px;
  1600. height:19px;
  1601. background:inherit;
  1602. background-color:rgba(255, 255, 255, 0);
  1603. border:none;
  1604. border-radius:0px;
  1605. -moz-box-shadow:none;
  1606. -webkit-box-shadow:none;
  1607. box-shadow:none;
  1608. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1609. font-weight:700;
  1610. font-style:normal;
  1611. font-size:16px;
  1612. }
  1613. #u971 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:1213px;
  1617. top:1620px;
  1618. width:131px;
  1619. height:19px;
  1620. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1621. font-weight:700;
  1622. font-style:normal;
  1623. font-size:16px;
  1624. }
  1625. #u971_text {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:131px;
  1631. word-wrap:break-word;
  1632. }
  1633. #u972_div {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:352px;
  1639. height:88px;
  1640. background:inherit;
  1641. background-color:rgba(255, 255, 255, 0);
  1642. border:none;
  1643. border-radius:0px;
  1644. -moz-box-shadow:none;
  1645. -webkit-box-shadow:none;
  1646. box-shadow:none;
  1647. line-height:22px;
  1648. }
  1649. #u972 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:1213px;
  1653. top:1658px;
  1654. width:352px;
  1655. height:88px;
  1656. line-height:22px;
  1657. }
  1658. #u972_text {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:352px;
  1664. word-wrap:break-word;
  1665. }
  1666. #u973 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:1218px;
  1670. top:1788px;
  1671. width:158px;
  1672. height:23px;
  1673. overflow:hidden;
  1674. background-image:url('../../resources/images/transparent.gif');
  1675. }
  1676. #u974_div {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:0px;
  1680. top:0px;
  1681. width:270px;
  1682. height:80px;
  1683. background:inherit;
  1684. background-color:rgba(255, 255, 0, 1);
  1685. box-sizing:border-box;
  1686. border-width:1px;
  1687. border-style:solid;
  1688. border-color:rgba(0, 0, 0, 1);
  1689. border-radius:10px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. color:#000000;
  1694. text-align:left;
  1695. line-height:18px;
  1696. }
  1697. #u974 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:1218px;
  1701. top:1701px;
  1702. width:270px;
  1703. height:80px;
  1704. color:#000000;
  1705. text-align:left;
  1706. line-height:18px;
  1707. }
  1708. #u974_text {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:2px;
  1712. top:13px;
  1713. width:266px;
  1714. word-wrap:break-word;
  1715. }
  1716. #u975 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:0px;
  1722. height:0px;
  1723. }
  1724. #u976_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:-4px;
  1728. top:-4px;
  1729. width:40px;
  1730. height:40px;
  1731. }
  1732. #u976 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:1173px;
  1736. top:1360px;
  1737. width:30px;
  1738. height:30px;
  1739. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1740. font-weight:700;
  1741. font-style:normal;
  1742. font-size:18px;
  1743. color:#1E1E1E;
  1744. }
  1745. #u976_text {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:2px;
  1749. top:4px;
  1750. width:26px;
  1751. word-wrap:break-word;
  1752. }
  1753. #u977_div {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:77px;
  1759. height:19px;
  1760. background:inherit;
  1761. background-color:rgba(255, 255, 255, 0);
  1762. border:none;
  1763. border-radius:0px;
  1764. -moz-box-shadow:none;
  1765. -webkit-box-shadow:none;
  1766. box-shadow:none;
  1767. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1768. font-weight:700;
  1769. font-style:normal;
  1770. font-size:16px;
  1771. color:#FF0000;
  1772. }
  1773. #u977 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:1213px;
  1777. top:1367px;
  1778. width:77px;
  1779. height:19px;
  1780. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1781. font-weight:700;
  1782. font-style:normal;
  1783. font-size:16px;
  1784. color:#FF0000;
  1785. }
  1786. #u977_text {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:77px;
  1792. word-wrap:break-word;
  1793. }
  1794. #u978_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:352px;
  1800. height:198px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 0);
  1803. border:none;
  1804. border-radius:0px;
  1805. -moz-box-shadow:none;
  1806. -webkit-box-shadow:none;
  1807. box-shadow:none;
  1808. line-height:22px;
  1809. }
  1810. #u978 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:1213px;
  1814. top:1405px;
  1815. width:352px;
  1816. height:198px;
  1817. line-height:22px;
  1818. }
  1819. #u978_text {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:352px;
  1825. word-wrap:break-word;
  1826. }
  1827. #u979_img {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:1155px;
  1833. height:583px;
  1834. }
  1835. #u979 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:8px;
  1839. top:1028px;
  1840. width:1155px;
  1841. height:583px;
  1842. }
  1843. #u979_text {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:0px;
  1849. visibility:hidden;
  1850. word-wrap:break-word;
  1851. }
  1852. #u980 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:0px;
  1858. height:0px;
  1859. }
  1860. #u981_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:-4px;
  1864. top:-4px;
  1865. width:40px;
  1866. height:40px;
  1867. }
  1868. #u981 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:1173px;
  1872. top:2045px;
  1873. width:30px;
  1874. height:30px;
  1875. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1876. font-weight:700;
  1877. font-style:normal;
  1878. font-size:18px;
  1879. color:#1E1E1E;
  1880. }
  1881. #u981_text {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:2px;
  1885. top:4px;
  1886. width:26px;
  1887. word-wrap:break-word;
  1888. }
  1889. #u982_div {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:131px;
  1895. height:19px;
  1896. background:inherit;
  1897. background-color:rgba(255, 255, 255, 0);
  1898. border:none;
  1899. border-radius:0px;
  1900. -moz-box-shadow:none;
  1901. -webkit-box-shadow:none;
  1902. box-shadow:none;
  1903. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1904. font-weight:700;
  1905. font-style:normal;
  1906. font-size:16px;
  1907. }
  1908. #u982 {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:1213px;
  1912. top:2052px;
  1913. width:131px;
  1914. height:19px;
  1915. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1916. font-weight:700;
  1917. font-style:normal;
  1918. font-size:16px;
  1919. }
  1920. #u982_text {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:131px;
  1926. word-wrap:break-word;
  1927. }
  1928. #u983_div {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:352px;
  1934. height:66px;
  1935. background:inherit;
  1936. background-color:rgba(255, 255, 255, 0);
  1937. border:none;
  1938. border-radius:0px;
  1939. -moz-box-shadow:none;
  1940. -webkit-box-shadow:none;
  1941. box-shadow:none;
  1942. line-height:22px;
  1943. }
  1944. #u983 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:1213px;
  1948. top:2090px;
  1949. width:352px;
  1950. height:66px;
  1951. line-height:22px;
  1952. }
  1953. #u983_text {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:352px;
  1959. word-wrap:break-word;
  1960. }
  1961. #u984_img {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:1155px;
  1967. height:583px;
  1968. }
  1969. #u984 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:8px;
  1973. top:1668px;
  1974. width:1155px;
  1975. height:583px;
  1976. }
  1977. #u984_text {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:0px;
  1983. visibility:hidden;
  1984. word-wrap:break-word;
  1985. }
  1986. #u985_div {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:210px;
  1992. height:22px;
  1993. background:inherit;
  1994. background-color:rgba(255, 255, 255, 0);
  1995. border:none;
  1996. border-radius:0px;
  1997. -moz-box-shadow:none;
  1998. -webkit-box-shadow:none;
  1999. box-shadow:none;
  2000. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2001. font-weight:700;
  2002. font-style:normal;
  2003. font-size:18px;
  2004. }
  2005. #u985 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:8px;
  2009. top:1640px;
  2010. width:210px;
  2011. height:22px;
  2012. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2013. font-weight:700;
  2014. font-style:normal;
  2015. font-size:18px;
  2016. }
  2017. #u985_text {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:210px;
  2023. white-space:nowrap;
  2024. }
  2025. #u986 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:1218px;
  2029. top:1365px;
  2030. width:59px;
  2031. height:23px;
  2032. overflow:hidden;
  2033. background-image:url('../../resources/images/transparent.gif');
  2034. }
  2035. #u987_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:270px;
  2041. height:224px;
  2042. background:inherit;
  2043. background-color:rgba(255, 255, 0, 1);
  2044. box-sizing:border-box;
  2045. border-width:1px;
  2046. border-style:solid;
  2047. border-color:rgba(0, 0, 0, 1);
  2048. border-radius:10px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. color:#000000;
  2053. text-align:left;
  2054. line-height:18px;
  2055. }
  2056. #u987 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:1213px;
  2060. top:1133px;
  2061. width:270px;
  2062. height:224px;
  2063. color:#000000;
  2064. text-align:left;
  2065. line-height:18px;
  2066. }
  2067. #u987_text {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:2px;
  2071. top:22px;
  2072. width:266px;
  2073. word-wrap:break-word;
  2074. }
  2075. #u988 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:1218px;
  2079. top:367px;
  2080. width:178px;
  2081. height:23px;
  2082. overflow:hidden;
  2083. background-image:url('../../resources/images/transparent.gif');
  2084. }
  2085. #u989_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:291px;
  2091. height:96px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 0, 1);
  2094. box-sizing:border-box;
  2095. border-width:1px;
  2096. border-style:solid;
  2097. border-color:rgba(0, 0, 0, 1);
  2098. border-radius:10px;
  2099. -moz-box-shadow:none;
  2100. -webkit-box-shadow:none;
  2101. box-shadow:none;
  2102. color:#000000;
  2103. text-align:left;
  2104. line-height:18px;
  2105. }
  2106. #u989 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:1218px;
  2110. top:262px;
  2111. width:291px;
  2112. height:96px;
  2113. color:#000000;
  2114. text-align:left;
  2115. line-height:18px;
  2116. }
  2117. #u989_text {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:2px;
  2121. top:12px;
  2122. width:287px;
  2123. word-wrap:break-word;
  2124. }
  2125. #u990_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:210px;
  2131. height:22px;
  2132. background:inherit;
  2133. background-color:rgba(255, 255, 255, 0);
  2134. border:none;
  2135. border-radius:0px;
  2136. -moz-box-shadow:none;
  2137. -webkit-box-shadow:none;
  2138. box-shadow:none;
  2139. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2140. font-weight:700;
  2141. font-style:normal;
  2142. font-size:18px;
  2143. }
  2144. #u990 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:8px;
  2148. top:990px;
  2149. width:210px;
  2150. height:22px;
  2151. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2152. font-weight:700;
  2153. font-style:normal;
  2154. font-size:18px;
  2155. }
  2156. #u990_text {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:210px;
  2162. white-space:nowrap;
  2163. }
  2164. #u991_div {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:246px;
  2170. height:22px;
  2171. background:inherit;
  2172. background-color:rgba(255, 255, 255, 0);
  2173. border:none;
  2174. border-radius:0px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2179. font-weight:700;
  2180. font-style:normal;
  2181. font-size:18px;
  2182. }
  2183. #u991 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:8px;
  2187. top:2289px;
  2188. width:246px;
  2189. height:22px;
  2190. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2191. font-weight:700;
  2192. font-style:normal;
  2193. font-size:18px;
  2194. }
  2195. #u991_text {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:246px;
  2201. white-space:nowrap;
  2202. }
  2203. #u992_div {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:163px;
  2209. height:22px;
  2210. background:inherit;
  2211. background-color:rgba(255, 255, 255, 0);
  2212. border:none;
  2213. border-radius:0px;
  2214. -moz-box-shadow:none;
  2215. -webkit-box-shadow:none;
  2216. box-shadow:none;
  2217. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2218. font-weight:700;
  2219. font-style:normal;
  2220. font-size:18px;
  2221. }
  2222. #u992 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:8px;
  2226. top:2347px;
  2227. width:163px;
  2228. height:22px;
  2229. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2230. font-weight:700;
  2231. font-style:normal;
  2232. font-size:18px;
  2233. }
  2234. #u992_text {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:163px;
  2240. white-space:nowrap;
  2241. }
  2242. #u993_img {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:1155px;
  2248. height:583px;
  2249. }
  2250. #u993 {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:8px;
  2254. top:4356px;
  2255. width:1155px;
  2256. height:583px;
  2257. }
  2258. #u993_text {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:0px;
  2264. visibility:hidden;
  2265. word-wrap:break-word;
  2266. }
  2267. #u994_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:1155px;
  2273. height:583px;
  2274. }
  2275. #u994 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:8px;
  2279. top:2399px;
  2280. width:1155px;
  2281. height:583px;
  2282. }
  2283. #u994_text {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:0px;
  2289. visibility:hidden;
  2290. word-wrap:break-word;
  2291. }
  2292. #u995_img {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:-4px;
  2296. top:-4px;
  2297. width:30px;
  2298. height:30px;
  2299. }
  2300. #u995 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:212px;
  2304. top:2597px;
  2305. width:20px;
  2306. height:20px;
  2307. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2308. font-weight:700;
  2309. font-style:normal;
  2310. font-size:14px;
  2311. color:#1E1E1E;
  2312. }
  2313. #u995_text {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:2px;
  2317. top:2px;
  2318. width:16px;
  2319. word-wrap:break-word;
  2320. }
  2321. #u996_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:163px;
  2327. height:22px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 0);
  2330. border:none;
  2331. border-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2336. font-weight:700;
  2337. font-style:normal;
  2338. font-size:18px;
  2339. }
  2340. #u996 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:8px;
  2344. top:5738px;
  2345. width:163px;
  2346. height:22px;
  2347. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2348. font-weight:700;
  2349. font-style:normal;
  2350. font-size:18px;
  2351. }
  2352. #u996_text {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:163px;
  2358. white-space:nowrap;
  2359. }
  2360. #u997_img {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:1155px;
  2366. height:583px;
  2367. }
  2368. #u997 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:8px;
  2372. top:5779px;
  2373. width:1155px;
  2374. height:583px;
  2375. }
  2376. #u997_text {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:0px;
  2382. visibility:hidden;
  2383. word-wrap:break-word;
  2384. }
  2385. #u998_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:-4px;
  2389. top:-4px;
  2390. width:30px;
  2391. height:30px;
  2392. }
  2393. #u998 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:212px;
  2397. top:5971px;
  2398. width:20px;
  2399. height:20px;
  2400. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2401. font-weight:700;
  2402. font-style:normal;
  2403. font-size:14px;
  2404. color:#1E1E1E;
  2405. }
  2406. #u998_text {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:2px;
  2410. top:2px;
  2411. width:16px;
  2412. word-wrap:break-word;
  2413. }
  2414. #u999 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:0px;
  2420. height:0px;
  2421. }
  2422. #u1000_img {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:-4px;
  2426. top:-4px;
  2427. width:40px;
  2428. height:40px;
  2429. }
  2430. #u1000 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:1172px;
  2434. top:2400px;
  2435. width:30px;
  2436. height:30px;
  2437. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2438. font-weight:700;
  2439. font-style:normal;
  2440. font-size:18px;
  2441. color:#1E1E1E;
  2442. }
  2443. #u1000_text {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:2px;
  2447. top:4px;
  2448. width:26px;
  2449. word-wrap:break-word;
  2450. }
  2451. #u1001_div {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:131px;
  2457. height:19px;
  2458. background:inherit;
  2459. background-color:rgba(255, 255, 255, 0);
  2460. border:none;
  2461. border-radius:0px;
  2462. -moz-box-shadow:none;
  2463. -webkit-box-shadow:none;
  2464. box-shadow:none;
  2465. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2466. font-weight:700;
  2467. font-style:normal;
  2468. font-size:16px;
  2469. }
  2470. #u1001 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:1212px;
  2474. top:2407px;
  2475. width:131px;
  2476. height:19px;
  2477. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2478. font-weight:700;
  2479. font-style:normal;
  2480. font-size:16px;
  2481. }
  2482. #u1001_text {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:131px;
  2488. word-wrap:break-word;
  2489. }
  2490. #u1002_div {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:352px;
  2496. height:154px;
  2497. background:inherit;
  2498. background-color:rgba(255, 255, 255, 0);
  2499. border:none;
  2500. border-radius:0px;
  2501. -moz-box-shadow:none;
  2502. -webkit-box-shadow:none;
  2503. box-shadow:none;
  2504. line-height:22px;
  2505. }
  2506. #u1002 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:1212px;
  2510. top:2445px;
  2511. width:352px;
  2512. height:154px;
  2513. line-height:22px;
  2514. }
  2515. #u1002_text {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:352px;
  2521. word-wrap:break-word;
  2522. }
  2523. #u1003 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:1355px;
  2527. top:2554px;
  2528. width:93px;
  2529. height:25px;
  2530. overflow:hidden;
  2531. background-image:url('../../resources/images/transparent.gif');
  2532. }
  2533. #u1004_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:279px;
  2539. height:105px;
  2540. background:inherit;
  2541. background-color:rgba(255, 255, 0, 1);
  2542. box-sizing:border-box;
  2543. border-width:1px;
  2544. border-style:solid;
  2545. border-color:rgba(0, 0, 0, 1);
  2546. border-radius:10px;
  2547. -moz-box-shadow:none;
  2548. -webkit-box-shadow:none;
  2549. box-shadow:none;
  2550. text-align:left;
  2551. line-height:18px;
  2552. }
  2553. #u1004 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:1249px;
  2557. top:2439px;
  2558. width:279px;
  2559. height:105px;
  2560. text-align:left;
  2561. line-height:18px;
  2562. }
  2563. #u1004_text {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:2px;
  2567. top:13px;
  2568. width:275px;
  2569. word-wrap:break-word;
  2570. }
  2571. #u1005 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:1374px;
  2575. top:2490px;
  2576. width:54px;
  2577. height:20px;
  2578. overflow:hidden;
  2579. background-image:url('../../resources/images/transparent.gif');
  2580. }
  2581. #u1006 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:1285px;
  2585. top:2574px;
  2586. width:70px;
  2587. height:25px;
  2588. overflow:hidden;
  2589. background-image:url('../../resources/images/transparent.gif');
  2590. }
  2591. #u1007_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:232px;
  2597. height:136px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 0, 1);
  2600. box-sizing:border-box;
  2601. border-width:1px;
  2602. border-style:solid;
  2603. border-color:rgba(0, 0, 0, 1);
  2604. border-radius:10px;
  2605. -moz-box-shadow:none;
  2606. -webkit-box-shadow:none;
  2607. box-shadow:none;
  2608. text-align:left;
  2609. line-height:18px;
  2610. }
  2611. #u1007 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:1212px;
  2615. top:2599px;
  2616. width:232px;
  2617. height:136px;
  2618. text-align:left;
  2619. line-height:18px;
  2620. }
  2621. #u1007_text {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:2px;
  2625. top:8px;
  2626. width:228px;
  2627. word-wrap:break-word;
  2628. }
  2629. #u1008_div {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:223px;
  2635. height:79px;
  2636. background:inherit;
  2637. background-color:rgba(255, 255, 0, 1);
  2638. box-sizing:border-box;
  2639. border-width:1px;
  2640. border-style:solid;
  2641. border-color:rgba(0, 0, 0, 1);
  2642. border-radius:10px;
  2643. -moz-box-shadow:none;
  2644. -webkit-box-shadow:none;
  2645. box-shadow:none;
  2646. text-align:left;
  2647. line-height:18px;
  2648. }
  2649. #u1008 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:1330px;
  2653. top:2579px;
  2654. width:223px;
  2655. height:79px;
  2656. text-align:left;
  2657. line-height:18px;
  2658. }
  2659. #u1008_text {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:2px;
  2663. top:23px;
  2664. width:219px;
  2665. word-wrap:break-word;
  2666. }
  2667. #u1009_div {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:234px;
  2673. height:22px;
  2674. background:inherit;
  2675. background-color:rgba(255, 255, 255, 0);
  2676. border:none;
  2677. border-radius:0px;
  2678. -moz-box-shadow:none;
  2679. -webkit-box-shadow:none;
  2680. box-shadow:none;
  2681. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2682. font-weight:700;
  2683. font-style:normal;
  2684. font-size:18px;
  2685. }
  2686. #u1009 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:8px;
  2690. top:4318px;
  2691. width:234px;
  2692. height:22px;
  2693. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2694. font-weight:700;
  2695. font-style:normal;
  2696. font-size:18px;
  2697. }
  2698. #u1009_text {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:234px;
  2704. word-wrap:break-word;
  2705. }
  2706. #u1010 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:0px;
  2712. height:0px;
  2713. }
  2714. #u1011_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:-4px;
  2718. top:-4px;
  2719. width:44px;
  2720. height:44px;
  2721. }
  2722. #u1011 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:1173px;
  2726. top:4356px;
  2727. width:34px;
  2728. height:34px;
  2729. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2730. font-weight:700;
  2731. font-style:normal;
  2732. font-size:26px;
  2733. }
  2734. #u1011_text {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:2px;
  2738. top:1px;
  2739. width:30px;
  2740. word-wrap:break-word;
  2741. }
  2742. #u1012_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:131px;
  2748. height:19px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 0);
  2751. border:none;
  2752. border-radius:0px;
  2753. -moz-box-shadow:none;
  2754. -webkit-box-shadow:none;
  2755. box-shadow:none;
  2756. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2757. font-weight:700;
  2758. font-style:normal;
  2759. font-size:16px;
  2760. }
  2761. #u1012 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:1213px;
  2765. top:4363px;
  2766. width:131px;
  2767. height:19px;
  2768. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2769. font-weight:700;
  2770. font-style:normal;
  2771. font-size:16px;
  2772. }
  2773. #u1012_text {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:131px;
  2779. word-wrap:break-word;
  2780. }
  2781. #u1013_div {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:352px;
  2787. height:66px;
  2788. background:inherit;
  2789. background-color:rgba(255, 255, 255, 0);
  2790. border:none;
  2791. border-radius:0px;
  2792. -moz-box-shadow:none;
  2793. -webkit-box-shadow:none;
  2794. box-shadow:none;
  2795. line-height:22px;
  2796. }
  2797. #u1013 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:1213px;
  2801. top:4401px;
  2802. width:352px;
  2803. height:66px;
  2804. line-height:22px;
  2805. }
  2806. #u1013_text {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:352px;
  2812. word-wrap:break-word;
  2813. }
  2814. #u1014 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:0px;
  2820. height:0px;
  2821. }
  2822. #u1015_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:-4px;
  2826. top:-4px;
  2827. width:44px;
  2828. height:44px;
  2829. }
  2830. #u1015 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:1173px;
  2834. top:4482px;
  2835. width:34px;
  2836. height:34px;
  2837. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2838. font-weight:700;
  2839. font-style:normal;
  2840. font-size:26px;
  2841. }
  2842. #u1015_text {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:2px;
  2846. top:1px;
  2847. width:30px;
  2848. word-wrap:break-word;
  2849. }
  2850. #u1016_div {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:131px;
  2856. height:19px;
  2857. background:inherit;
  2858. background-color:rgba(255, 255, 255, 0);
  2859. border:none;
  2860. border-radius:0px;
  2861. -moz-box-shadow:none;
  2862. -webkit-box-shadow:none;
  2863. box-shadow:none;
  2864. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2865. font-weight:700;
  2866. font-style:normal;
  2867. font-size:16px;
  2868. }
  2869. #u1016 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:1213px;
  2873. top:4489px;
  2874. width:131px;
  2875. height:19px;
  2876. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2877. font-weight:700;
  2878. font-style:normal;
  2879. font-size:16px;
  2880. }
  2881. #u1016_text {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:131px;
  2887. word-wrap:break-word;
  2888. }
  2889. #u1017_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:352px;
  2895. height:88px;
  2896. background:inherit;
  2897. background-color:rgba(255, 255, 255, 0);
  2898. border:none;
  2899. border-radius:0px;
  2900. -moz-box-shadow:none;
  2901. -webkit-box-shadow:none;
  2902. box-shadow:none;
  2903. line-height:22px;
  2904. }
  2905. #u1017 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:1213px;
  2909. top:4527px;
  2910. width:352px;
  2911. height:88px;
  2912. line-height:22px;
  2913. }
  2914. #u1017_text {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:352px;
  2920. word-wrap:break-word;
  2921. }
  2922. #u1018_img {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:1155px;
  2928. height:583px;
  2929. }
  2930. #u1018 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:8px;
  2934. top:5036px;
  2935. width:1155px;
  2936. height:583px;
  2937. }
  2938. #u1018_text {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:0px;
  2944. visibility:hidden;
  2945. word-wrap:break-word;
  2946. }
  2947. #u1019_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:234px;
  2953. height:22px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 0);
  2956. border:none;
  2957. border-radius:0px;
  2958. -moz-box-shadow:none;
  2959. -webkit-box-shadow:none;
  2960. box-shadow:none;
  2961. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2962. font-weight:700;
  2963. font-style:normal;
  2964. font-size:18px;
  2965. }
  2966. #u1019 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:8px;
  2970. top:5004px;
  2971. width:234px;
  2972. height:22px;
  2973. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2974. font-weight:700;
  2975. font-style:normal;
  2976. font-size:18px;
  2977. }
  2978. #u1019_text {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:0px;
  2982. top:0px;
  2983. width:234px;
  2984. word-wrap:break-word;
  2985. }
  2986. #u1020_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:1155px;
  2992. height:583px;
  2993. }
  2994. #u1020 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:8px;
  2998. top:6430px;
  2999. width:1155px;
  3000. height:583px;
  3001. }
  3002. #u1020_text {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:0px;
  3008. visibility:hidden;
  3009. word-wrap:break-word;
  3010. }
  3011. #u1021_div {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:234px;
  3017. height:22px;
  3018. background:inherit;
  3019. background-color:rgba(255, 255, 255, 0);
  3020. border:none;
  3021. border-radius:0px;
  3022. -moz-box-shadow:none;
  3023. -webkit-box-shadow:none;
  3024. box-shadow:none;
  3025. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3026. font-weight:700;
  3027. font-style:normal;
  3028. font-size:18px;
  3029. }
  3030. #u1021 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:8px;
  3034. top:6398px;
  3035. width:234px;
  3036. height:22px;
  3037. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3038. font-weight:700;
  3039. font-style:normal;
  3040. font-size:18px;
  3041. }
  3042. #u1021_text {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:234px;
  3048. word-wrap:break-word;
  3049. }
  3050. #u1022_img {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:1155px;
  3056. height:583px;
  3057. }
  3058. #u1022 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:8px;
  3062. top:7104px;
  3063. width:1155px;
  3064. height:583px;
  3065. }
  3066. #u1022_text {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:0px;
  3072. visibility:hidden;
  3073. word-wrap:break-word;
  3074. }
  3075. #u1023_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:234px;
  3081. height:22px;
  3082. background:inherit;
  3083. background-color:rgba(255, 255, 255, 0);
  3084. border:none;
  3085. border-radius:0px;
  3086. -moz-box-shadow:none;
  3087. -webkit-box-shadow:none;
  3088. box-shadow:none;
  3089. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3090. font-weight:700;
  3091. font-style:normal;
  3092. font-size:18px;
  3093. }
  3094. #u1023 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:8px;
  3098. top:7072px;
  3099. width:234px;
  3100. height:22px;
  3101. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3102. font-weight:700;
  3103. font-style:normal;
  3104. font-size:18px;
  3105. }
  3106. #u1023_text {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:234px;
  3112. word-wrap:break-word;
  3113. }
  3114. #u1024 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:0px;
  3120. height:0px;
  3121. }
  3122. #u1025_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:-4px;
  3126. top:-4px;
  3127. width:44px;
  3128. height:44px;
  3129. }
  3130. #u1025 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:1173px;
  3134. top:6008px;
  3135. width:34px;
  3136. height:34px;
  3137. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3138. font-weight:700;
  3139. font-style:normal;
  3140. font-size:26px;
  3141. }
  3142. #u1025_text {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:2px;
  3146. top:1px;
  3147. width:30px;
  3148. word-wrap:break-word;
  3149. }
  3150. #u1026_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:131px;
  3156. height:19px;
  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. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3165. font-weight:700;
  3166. font-style:normal;
  3167. font-size:16px;
  3168. }
  3169. #u1026 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:1213px;
  3173. top:6015px;
  3174. width:131px;
  3175. height:19px;
  3176. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3177. font-weight:700;
  3178. font-style:normal;
  3179. font-size:16px;
  3180. }
  3181. #u1026_text {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:131px;
  3187. word-wrap:break-word;
  3188. }
  3189. #u1027_div {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:352px;
  3195. height:66px;
  3196. background:inherit;
  3197. background-color:rgba(255, 255, 255, 0);
  3198. border:none;
  3199. border-radius:0px;
  3200. -moz-box-shadow:none;
  3201. -webkit-box-shadow:none;
  3202. box-shadow:none;
  3203. line-height:22px;
  3204. }
  3205. #u1027 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:1213px;
  3209. top:6053px;
  3210. width:352px;
  3211. height:66px;
  3212. line-height:22px;
  3213. }
  3214. #u1027_text {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:352px;
  3220. word-wrap:break-word;
  3221. }
  3222. #u1028 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:0px;
  3228. height:0px;
  3229. }
  3230. #u1029_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:-4px;
  3234. top:-4px;
  3235. width:44px;
  3236. height:44px;
  3237. }
  3238. #u1029 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1173px;
  3242. top:6134px;
  3243. width:34px;
  3244. height:34px;
  3245. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3246. font-weight:700;
  3247. font-style:normal;
  3248. font-size:26px;
  3249. }
  3250. #u1029_text {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:2px;
  3254. top:1px;
  3255. width:30px;
  3256. word-wrap:break-word;
  3257. }
  3258. #u1030_div {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:131px;
  3264. height:19px;
  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. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3273. font-weight:700;
  3274. font-style:normal;
  3275. font-size:16px;
  3276. }
  3277. #u1030 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:1213px;
  3281. top:6141px;
  3282. width:131px;
  3283. height:19px;
  3284. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3285. font-weight:700;
  3286. font-style:normal;
  3287. font-size:16px;
  3288. }
  3289. #u1030_text {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:131px;
  3295. word-wrap:break-word;
  3296. }
  3297. #u1031_div {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:352px;
  3303. height:88px;
  3304. background:inherit;
  3305. background-color:rgba(255, 255, 255, 0);
  3306. border:none;
  3307. border-radius:0px;
  3308. -moz-box-shadow:none;
  3309. -webkit-box-shadow:none;
  3310. box-shadow:none;
  3311. line-height:22px;
  3312. }
  3313. #u1031 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:1213px;
  3317. top:6179px;
  3318. width:352px;
  3319. height:88px;
  3320. line-height:22px;
  3321. }
  3322. #u1031_text {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:352px;
  3328. word-wrap:break-word;
  3329. }
  3330. #u1032_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:-4px;
  3334. top:-4px;
  3335. width:30px;
  3336. height:30px;
  3337. }
  3338. #u1032 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:916px;
  3342. top:2657px;
  3343. width:20px;
  3344. height:20px;
  3345. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3346. font-weight:700;
  3347. font-style:normal;
  3348. font-size:14px;
  3349. color:#1E1E1E;
  3350. }
  3351. #u1032_text {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:2px;
  3355. top:2px;
  3356. width:16px;
  3357. word-wrap:break-word;
  3358. }
  3359. #u1033 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:0px;
  3365. height:0px;
  3366. }
  3367. #u1034_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:-4px;
  3371. top:-4px;
  3372. width:40px;
  3373. height:40px;
  3374. }
  3375. #u1034 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:1173px;
  3379. top:2624px;
  3380. width:30px;
  3381. height:30px;
  3382. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3383. font-weight:700;
  3384. font-style:normal;
  3385. font-size:18px;
  3386. color:#1E1E1E;
  3387. }
  3388. #u1034_text {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:2px;
  3392. top:4px;
  3393. width:26px;
  3394. word-wrap:break-word;
  3395. }
  3396. #u1035_div {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:131px;
  3402. height:19px;
  3403. background:inherit;
  3404. background-color:rgba(255, 255, 255, 0);
  3405. border:none;
  3406. border-radius:0px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3411. font-weight:700;
  3412. font-style:normal;
  3413. font-size:16px;
  3414. }
  3415. #u1035 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:1213px;
  3419. top:2631px;
  3420. width:131px;
  3421. height:19px;
  3422. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3423. font-weight:700;
  3424. font-style:normal;
  3425. font-size:16px;
  3426. }
  3427. #u1035_text {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:131px;
  3433. word-wrap:break-word;
  3434. }
  3435. #u1036_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:352px;
  3441. height:22px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border:none;
  3445. border-radius:0px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. line-height:22px;
  3450. }
  3451. #u1036 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:1213px;
  3455. top:2669px;
  3456. width:352px;
  3457. height:22px;
  3458. line-height:22px;
  3459. }
  3460. #u1036_text {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:352px;
  3466. word-wrap:break-word;
  3467. }
  3468. #u1037_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:-4px;
  3472. top:-4px;
  3473. width:30px;
  3474. height:30px;
  3475. }
  3476. #u1037 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:850px;
  3480. top:2657px;
  3481. width:20px;
  3482. height:20px;
  3483. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3484. font-weight:700;
  3485. font-style:normal;
  3486. font-size:14px;
  3487. color:#1E1E1E;
  3488. }
  3489. #u1037_text {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:2px;
  3493. top:2px;
  3494. width:16px;
  3495. word-wrap:break-word;
  3496. }
  3497. #u1038 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:0px;
  3503. height:0px;
  3504. }
  3505. #u1039_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:-4px;
  3509. top:-4px;
  3510. width:40px;
  3511. height:40px;
  3512. }
  3513. #u1039 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:1173px;
  3517. top:2711px;
  3518. width:30px;
  3519. height:30px;
  3520. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3521. font-weight:700;
  3522. font-style:normal;
  3523. font-size:18px;
  3524. color:#1E1E1E;
  3525. }
  3526. #u1039_text {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:2px;
  3530. top:4px;
  3531. width:26px;
  3532. word-wrap:break-word;
  3533. }
  3534. #u1040_div {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:131px;
  3540. height:19px;
  3541. background:inherit;
  3542. background-color:rgba(255, 255, 255, 0);
  3543. border:none;
  3544. border-radius:0px;
  3545. -moz-box-shadow:none;
  3546. -webkit-box-shadow:none;
  3547. box-shadow:none;
  3548. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3549. font-weight:700;
  3550. font-style:normal;
  3551. font-size:16px;
  3552. }
  3553. #u1040 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:1213px;
  3557. top:2718px;
  3558. width:131px;
  3559. height:19px;
  3560. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3561. font-weight:700;
  3562. font-style:normal;
  3563. font-size:16px;
  3564. }
  3565. #u1040_text {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:131px;
  3571. word-wrap:break-word;
  3572. }
  3573. #u1041_div {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:352px;
  3579. height:44px;
  3580. background:inherit;
  3581. background-color:rgba(255, 255, 255, 0);
  3582. border:none;
  3583. border-radius:0px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. line-height:22px;
  3588. }
  3589. #u1041 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:1213px;
  3593. top:2756px;
  3594. width:352px;
  3595. height:44px;
  3596. line-height:22px;
  3597. }
  3598. #u1041_text {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:352px;
  3604. word-wrap:break-word;
  3605. }
  3606. #u1042_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:1155px;
  3612. height:583px;
  3613. }
  3614. #u1042 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:8px;
  3618. top:3028px;
  3619. width:1155px;
  3620. height:583px;
  3621. }
  3622. #u1042_text {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:0px;
  3628. visibility:hidden;
  3629. word-wrap:break-word;
  3630. }
  3631. #u1043_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:1155px;
  3637. height:583px;
  3638. }
  3639. #u1043 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:8px;
  3643. top:3669px;
  3644. width:1155px;
  3645. height:583px;
  3646. }
  3647. #u1043_text {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:0px;
  3653. visibility:hidden;
  3654. word-wrap:break-word;
  3655. }
  3656. #u1044_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:-4px;
  3660. top:-4px;
  3661. width:30px;
  3662. height:30px;
  3663. }
  3664. #u1044 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:224px;
  3668. top:3869px;
  3669. width:20px;
  3670. height:20px;
  3671. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3672. font-weight:700;
  3673. font-style:normal;
  3674. font-size:14px;
  3675. color:#1E1E1E;
  3676. }
  3677. #u1044_text {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:2px;
  3681. top:2px;
  3682. width:16px;
  3683. word-wrap:break-word;
  3684. }
  3685. #u1045 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:0px;
  3691. height:0px;
  3692. }
  3693. #u1046_img {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:-4px;
  3697. top:-4px;
  3698. width:40px;
  3699. height:40px;
  3700. }
  3701. #u1046 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:1173px;
  3705. top:3669px;
  3706. width:30px;
  3707. height:30px;
  3708. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3709. font-weight:700;
  3710. font-style:normal;
  3711. font-size:18px;
  3712. color:#1E1E1E;
  3713. }
  3714. #u1046_text {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:2px;
  3718. top:4px;
  3719. width:26px;
  3720. word-wrap:break-word;
  3721. }
  3722. #u1047_div {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:131px;
  3728. height:19px;
  3729. background:inherit;
  3730. background-color:rgba(255, 255, 255, 0);
  3731. border:none;
  3732. border-radius:0px;
  3733. -moz-box-shadow:none;
  3734. -webkit-box-shadow:none;
  3735. box-shadow:none;
  3736. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3737. font-weight:700;
  3738. font-style:normal;
  3739. font-size:16px;
  3740. }
  3741. #u1047 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:1213px;
  3745. top:3676px;
  3746. width:131px;
  3747. height:19px;
  3748. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3749. font-weight:700;
  3750. font-style:normal;
  3751. font-size:16px;
  3752. }
  3753. #u1047_text {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:131px;
  3759. word-wrap:break-word;
  3760. }
  3761. #u1048_div {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:352px;
  3767. height:22px;
  3768. background:inherit;
  3769. background-color:rgba(255, 255, 255, 0);
  3770. border:none;
  3771. border-radius:0px;
  3772. -moz-box-shadow:none;
  3773. -webkit-box-shadow:none;
  3774. box-shadow:none;
  3775. line-height:22px;
  3776. }
  3777. #u1048 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:1213px;
  3781. top:3714px;
  3782. width:352px;
  3783. height:22px;
  3784. line-height:22px;
  3785. }
  3786. #u1048_text {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:352px;
  3792. word-wrap:break-word;
  3793. }
  3794. #u1049 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:0px;
  3800. height:0px;
  3801. }
  3802. #u1050_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:-4px;
  3806. top:-4px;
  3807. width:44px;
  3808. height:44px;
  3809. }
  3810. #u1050 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:1173px;
  3814. top:3746px;
  3815. width:34px;
  3816. height:34px;
  3817. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3818. font-weight:700;
  3819. font-style:normal;
  3820. font-size:26px;
  3821. }
  3822. #u1050_text {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:2px;
  3826. top:1px;
  3827. width:30px;
  3828. word-wrap:break-word;
  3829. }
  3830. #u1051_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:131px;
  3836. height:19px;
  3837. background:inherit;
  3838. background-color:rgba(255, 255, 255, 0);
  3839. border:none;
  3840. border-radius:0px;
  3841. -moz-box-shadow:none;
  3842. -webkit-box-shadow:none;
  3843. box-shadow:none;
  3844. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3845. font-weight:700;
  3846. font-style:normal;
  3847. font-size:16px;
  3848. }
  3849. #u1051 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:1213px;
  3853. top:3753px;
  3854. width:131px;
  3855. height:19px;
  3856. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3857. font-weight:700;
  3858. font-style:normal;
  3859. font-size:16px;
  3860. }
  3861. #u1051_text {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:131px;
  3867. word-wrap:break-word;
  3868. }
  3869. #u1052_div {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:352px;
  3875. height:44px;
  3876. background:inherit;
  3877. background-color:rgba(255, 255, 255, 0);
  3878. border:none;
  3879. border-radius:0px;
  3880. -moz-box-shadow:none;
  3881. -webkit-box-shadow:none;
  3882. box-shadow:none;
  3883. line-height:22px;
  3884. }
  3885. #u1052 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:1213px;
  3889. top:3791px;
  3890. width:352px;
  3891. height:44px;
  3892. line-height:22px;
  3893. }
  3894. #u1052_text {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:352px;
  3900. word-wrap:break-word;
  3901. }
  3902. #u1053 {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:0px;
  3908. height:0px;
  3909. }
  3910. #u1054_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:-4px;
  3914. top:-4px;
  3915. width:40px;
  3916. height:40px;
  3917. }
  3918. #u1054 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1173px;
  3922. top:3859px;
  3923. width:30px;
  3924. height:30px;
  3925. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3926. font-weight:700;
  3927. font-style:normal;
  3928. font-size:18px;
  3929. color:#1E1E1E;
  3930. }
  3931. #u1054_text {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:2px;
  3935. top:4px;
  3936. width:26px;
  3937. word-wrap:break-word;
  3938. }
  3939. #u1055_div {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:107px;
  3945. height:19px;
  3946. background:inherit;
  3947. background-color:rgba(255, 255, 255, 0);
  3948. border:none;
  3949. border-radius:0px;
  3950. -moz-box-shadow:none;
  3951. -webkit-box-shadow:none;
  3952. box-shadow:none;
  3953. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3954. font-weight:700;
  3955. font-style:normal;
  3956. font-size:16px;
  3957. }
  3958. #u1055 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:1213px;
  3962. top:3866px;
  3963. width:107px;
  3964. height:19px;
  3965. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3966. font-weight:700;
  3967. font-style:normal;
  3968. font-size:16px;
  3969. }
  3970. #u1055_text {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:107px;
  3976. word-wrap:break-word;
  3977. }
  3978. #u1056_div {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:352px;
  3984. height:33px;
  3985. background:inherit;
  3986. background-color:rgba(255, 255, 255, 0);
  3987. border:none;
  3988. border-radius:0px;
  3989. -moz-box-shadow:none;
  3990. -webkit-box-shadow:none;
  3991. box-shadow:none;
  3992. line-height:22px;
  3993. }
  3994. #u1056 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:1213px;
  3998. top:3904px;
  3999. width:352px;
  4000. height:33px;
  4001. line-height:22px;
  4002. }
  4003. #u1056_text {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:352px;
  4009. word-wrap:break-word;
  4010. }
  4011. #u1057 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:0px;
  4017. height:0px;
  4018. }
  4019. #u1058_img {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:-4px;
  4023. top:-4px;
  4024. width:40px;
  4025. height:40px;
  4026. }
  4027. #u1058 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:1173px;
  4031. top:3951px;
  4032. width:30px;
  4033. height:30px;
  4034. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4035. font-weight:700;
  4036. font-style:normal;
  4037. font-size:18px;
  4038. color:#1E1E1E;
  4039. }
  4040. #u1058_text {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:2px;
  4044. top:4px;
  4045. width:26px;
  4046. word-wrap:break-word;
  4047. }
  4048. #u1059_div {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:107px;
  4054. height:19px;
  4055. background:inherit;
  4056. background-color:rgba(255, 255, 255, 0);
  4057. border:none;
  4058. border-radius:0px;
  4059. -moz-box-shadow:none;
  4060. -webkit-box-shadow:none;
  4061. box-shadow:none;
  4062. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4063. font-weight:700;
  4064. font-style:normal;
  4065. font-size:16px;
  4066. }
  4067. #u1059 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:1213px;
  4071. top:3958px;
  4072. width:107px;
  4073. height:19px;
  4074. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4075. font-weight:700;
  4076. font-style:normal;
  4077. font-size:16px;
  4078. }
  4079. #u1059_text {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:107px;
  4085. word-wrap:break-word;
  4086. }
  4087. #u1060_div {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:352px;
  4093. height:44px;
  4094. background:inherit;
  4095. background-color:rgba(255, 255, 255, 0);
  4096. border:none;
  4097. border-radius:0px;
  4098. -moz-box-shadow:none;
  4099. -webkit-box-shadow:none;
  4100. box-shadow:none;
  4101. line-height:22px;
  4102. }
  4103. #u1060 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:1213px;
  4107. top:4000px;
  4108. width:352px;
  4109. height:44px;
  4110. line-height:22px;
  4111. }
  4112. #u1060_text {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:352px;
  4118. word-wrap:break-word;
  4119. }
  4120. #u1061_img {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:-4px;
  4124. top:-4px;
  4125. width:30px;
  4126. height:30px;
  4127. }
  4128. #u1061 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:151px;
  4132. top:3869px;
  4133. width:20px;
  4134. height:20px;
  4135. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4136. font-weight:700;
  4137. font-style:normal;
  4138. font-size:14px;
  4139. color:#1E1E1E;
  4140. }
  4141. #u1061_text {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:2px;
  4145. top:2px;
  4146. width:16px;
  4147. word-wrap:break-word;
  4148. }
  4149. #u1062_img {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:-4px;
  4153. top:-4px;
  4154. width:30px;
  4155. height:30px;
  4156. }
  4157. #u1062 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:304px;
  4161. top:3869px;
  4162. width:20px;
  4163. height:20px;
  4164. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4165. font-weight:700;
  4166. font-style:normal;
  4167. font-size:14px;
  4168. color:#1E1E1E;
  4169. }
  4170. #u1062_text {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:2px;
  4174. top:2px;
  4175. width:16px;
  4176. word-wrap:break-word;
  4177. }
  4178. #u1063_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:-4px;
  4182. top:-4px;
  4183. width:30px;
  4184. height:30px;
  4185. }
  4186. #u1063 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:375px;
  4190. top:3869px;
  4191. width:20px;
  4192. height:20px;
  4193. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4194. font-weight:700;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. color:#1E1E1E;
  4198. }
  4199. #u1063_text {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:2px;
  4203. top:2px;
  4204. width:16px;
  4205. word-wrap:break-word;
  4206. }
  4207. #u1064_img {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:-4px;
  4211. top:-4px;
  4212. width:30px;
  4213. height:30px;
  4214. }
  4215. #u1064 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:454px;
  4219. top:4466px;
  4220. width:20px;
  4221. height:20px;
  4222. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4223. font-weight:700;
  4224. font-style:normal;
  4225. font-size:14px;
  4226. color:#1E1E1E;
  4227. }
  4228. #u1064_text {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:2px;
  4232. top:2px;
  4233. width:16px;
  4234. word-wrap:break-word;
  4235. }
  4236. #u1065_img {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:-4px;
  4240. top:-4px;
  4241. width:30px;
  4242. height:30px;
  4243. }
  4244. #u1065 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:525px;
  4248. top:4466px;
  4249. width:20px;
  4250. height:20px;
  4251. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4252. font-weight:700;
  4253. font-style:normal;
  4254. font-size:14px;
  4255. color:#1E1E1E;
  4256. }
  4257. #u1065_text {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:2px;
  4261. top:2px;
  4262. width:16px;
  4263. word-wrap:break-word;
  4264. }
  4265. #u1066_img {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:1155px;
  4271. height:583px;
  4272. }
  4273. #u1066 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:8px;
  4277. top:7773px;
  4278. width:1155px;
  4279. height:583px;
  4280. }
  4281. #u1066_text {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:0px;
  4287. visibility:hidden;
  4288. word-wrap:break-word;
  4289. }
  4290. #u1067_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:-4px;
  4294. top:-4px;
  4295. width:30px;
  4296. height:30px;
  4297. }
  4298. #u1067 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:202px;
  4302. top:7955px;
  4303. width:20px;
  4304. height:20px;
  4305. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4306. font-weight:700;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. color:#1E1E1E;
  4310. }
  4311. #u1067_text {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:2px;
  4315. top:2px;
  4316. width:16px;
  4317. word-wrap:break-word;
  4318. }
  4319. #u1068 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:0px;
  4325. height:0px;
  4326. }
  4327. #u1069_img {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:-4px;
  4331. top:-4px;
  4332. width:44px;
  4333. height:44px;
  4334. }
  4335. #u1069 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:1173px;
  4339. top:7773px;
  4340. width:34px;
  4341. height:34px;
  4342. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4343. font-weight:700;
  4344. font-style:normal;
  4345. font-size:26px;
  4346. }
  4347. #u1069_text {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:2px;
  4351. top:1px;
  4352. width:30px;
  4353. word-wrap:break-word;
  4354. }
  4355. #u1070_div {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:131px;
  4361. height:19px;
  4362. background:inherit;
  4363. background-color:rgba(255, 255, 255, 0);
  4364. border:none;
  4365. border-radius:0px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4370. font-weight:700;
  4371. font-style:normal;
  4372. font-size:16px;
  4373. }
  4374. #u1070 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:1213px;
  4378. top:7780px;
  4379. width:131px;
  4380. height:19px;
  4381. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4382. font-weight:700;
  4383. font-style:normal;
  4384. font-size:16px;
  4385. }
  4386. #u1070_text {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:131px;
  4392. word-wrap:break-word;
  4393. }
  4394. #u1071_div {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:352px;
  4400. height:44px;
  4401. background:inherit;
  4402. background-color:rgba(255, 255, 255, 0);
  4403. border:none;
  4404. border-radius:0px;
  4405. -moz-box-shadow:none;
  4406. -webkit-box-shadow:none;
  4407. box-shadow:none;
  4408. line-height:22px;
  4409. }
  4410. #u1071 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:1213px;
  4414. top:7818px;
  4415. width:352px;
  4416. height:44px;
  4417. line-height:22px;
  4418. }
  4419. #u1071_text {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:352px;
  4425. word-wrap:break-word;
  4426. }
  4427. #u1072_div {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:210px;
  4433. height:22px;
  4434. background:inherit;
  4435. background-color:rgba(255, 255, 255, 0);
  4436. border:none;
  4437. border-radius:0px;
  4438. -moz-box-shadow:none;
  4439. -webkit-box-shadow:none;
  4440. box-shadow:none;
  4441. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4442. font-weight:700;
  4443. font-style:normal;
  4444. font-size:18px;
  4445. }
  4446. #u1072 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:8px;
  4450. top:7741px;
  4451. width:210px;
  4452. height:22px;
  4453. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4454. font-weight:700;
  4455. font-style:normal;
  4456. font-size:18px;
  4457. }
  4458. #u1072_text {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:210px;
  4464. white-space:nowrap;
  4465. }
  4466. #u1073_img {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:1155px;
  4472. height:583px;
  4473. }
  4474. #u1073 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:8px;
  4478. top:8472px;
  4479. width:1155px;
  4480. height:583px;
  4481. }
  4482. #u1073_text {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:0px;
  4488. visibility:hidden;
  4489. word-wrap:break-word;
  4490. }
  4491. #u1074_img {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:-4px;
  4495. top:-4px;
  4496. width:30px;
  4497. height:30px;
  4498. }
  4499. #u1074 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:220px;
  4503. top:8671px;
  4504. width:20px;
  4505. height:20px;
  4506. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4507. font-weight:700;
  4508. font-style:normal;
  4509. font-size:14px;
  4510. color:#1E1E1E;
  4511. }
  4512. #u1074_text {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:2px;
  4516. top:2px;
  4517. width:16px;
  4518. word-wrap:break-word;
  4519. }
  4520. #u1075 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:0px;
  4526. height:0px;
  4527. }
  4528. #u1076_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:-4px;
  4532. top:-4px;
  4533. width:44px;
  4534. height:44px;
  4535. }
  4536. #u1076 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:1173px;
  4540. top:8469px;
  4541. width:34px;
  4542. height:34px;
  4543. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4544. font-weight:700;
  4545. font-style:normal;
  4546. font-size:26px;
  4547. }
  4548. #u1076_text {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:2px;
  4552. top:1px;
  4553. width:30px;
  4554. word-wrap:break-word;
  4555. }
  4556. #u1077_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:169px;
  4562. height:19px;
  4563. background:inherit;
  4564. background-color:rgba(255, 255, 255, 0);
  4565. border:none;
  4566. border-radius:0px;
  4567. -moz-box-shadow:none;
  4568. -webkit-box-shadow:none;
  4569. box-shadow:none;
  4570. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4571. font-weight:700;
  4572. font-style:normal;
  4573. font-size:16px;
  4574. color:#FF0000;
  4575. }
  4576. #u1077 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:1213px;
  4580. top:8476px;
  4581. width:169px;
  4582. height:19px;
  4583. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4584. font-weight:700;
  4585. font-style:normal;
  4586. font-size:16px;
  4587. color:#FF0000;
  4588. }
  4589. #u1077_text {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:169px;
  4595. word-wrap:break-word;
  4596. }
  4597. #u1078_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:352px;
  4603. height:110px;
  4604. background:inherit;
  4605. background-color:rgba(255, 255, 255, 0);
  4606. border:none;
  4607. border-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. line-height:22px;
  4612. }
  4613. #u1078 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:1213px;
  4617. top:8514px;
  4618. width:352px;
  4619. height:110px;
  4620. line-height:22px;
  4621. }
  4622. #u1078_text {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:352px;
  4628. word-wrap:break-word;
  4629. }
  4630. #u1079 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:1218px;
  4634. top:8476px;
  4635. width:158px;
  4636. height:23px;
  4637. overflow:hidden;
  4638. background-image:url('../../resources/images/transparent.gif');
  4639. }
  4640. #u1080_div {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:270px;
  4646. height:80px;
  4647. background:inherit;
  4648. background-color:rgba(255, 255, 0, 1);
  4649. box-sizing:border-box;
  4650. border-width:1px;
  4651. border-style:solid;
  4652. border-color:rgba(0, 0, 0, 1);
  4653. border-radius:10px;
  4654. -moz-box-shadow:none;
  4655. -webkit-box-shadow:none;
  4656. box-shadow:none;
  4657. color:#000000;
  4658. text-align:left;
  4659. line-height:18px;
  4660. }
  4661. #u1080 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:1218px;
  4665. top:8389px;
  4666. width:270px;
  4667. height:80px;
  4668. color:#000000;
  4669. text-align:left;
  4670. line-height:18px;
  4671. }
  4672. #u1080_text {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:2px;
  4676. top:13px;
  4677. width:266px;
  4678. word-wrap:break-word;
  4679. }
  4680. #u1081_div {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:210px;
  4686. height:22px;
  4687. background:inherit;
  4688. background-color:rgba(255, 255, 255, 0);
  4689. border:none;
  4690. border-radius:0px;
  4691. -moz-box-shadow:none;
  4692. -webkit-box-shadow:none;
  4693. box-shadow:none;
  4694. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4695. font-weight:700;
  4696. font-style:normal;
  4697. font-size:18px;
  4698. }
  4699. #u1081 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:8px;
  4703. top:8429px;
  4704. width:210px;
  4705. height:22px;
  4706. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4707. font-weight:700;
  4708. font-style:normal;
  4709. font-size:18px;
  4710. }
  4711. #u1081_text {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:210px;
  4717. white-space:nowrap;
  4718. }
  4719. #u1082_div {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:210px;
  4725. height:22px;
  4726. background:inherit;
  4727. background-color:rgba(255, 255, 255, 0);
  4728. border:none;
  4729. border-radius:0px;
  4730. -moz-box-shadow:none;
  4731. -webkit-box-shadow:none;
  4732. box-shadow:none;
  4733. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4734. font-weight:700;
  4735. font-style:normal;
  4736. font-size:18px;
  4737. }
  4738. #u1082 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:8px;
  4742. top:9129px;
  4743. width:210px;
  4744. height:22px;
  4745. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4746. font-weight:700;
  4747. font-style:normal;
  4748. font-size:18px;
  4749. }
  4750. #u1082_text {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:210px;
  4756. white-space:nowrap;
  4757. }
  4758. #u1083_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:1155px;
  4764. height:583px;
  4765. }
  4766. #u1083 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:8px;
  4770. top:9161px;
  4771. width:1155px;
  4772. height:583px;
  4773. }
  4774. #u1083_text {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:0px;
  4780. visibility:hidden;
  4781. word-wrap:break-word;
  4782. }
  4783. #u1084_img {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:-4px;
  4787. top:-4px;
  4788. width:30px;
  4789. height:30px;
  4790. }
  4791. #u1084 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:1043px;
  4795. top:9648px;
  4796. width:20px;
  4797. height:20px;
  4798. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4799. font-weight:700;
  4800. font-style:normal;
  4801. font-size:14px;
  4802. color:#1E1E1E;
  4803. }
  4804. #u1084_text {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:2px;
  4808. top:2px;
  4809. width:16px;
  4810. word-wrap:break-word;
  4811. }
  4812. #u1085 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:0px;
  4818. height:0px;
  4819. }
  4820. #u1086_div {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:352px;
  4826. height:66px;
  4827. background:inherit;
  4828. background-color:rgba(255, 255, 255, 0);
  4829. border:none;
  4830. border-radius:0px;
  4831. -moz-box-shadow:none;
  4832. -webkit-box-shadow:none;
  4833. box-shadow:none;
  4834. line-height:22px;
  4835. }
  4836. #u1086 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:1213px;
  4840. top:9201px;
  4841. width:352px;
  4842. height:66px;
  4843. line-height:22px;
  4844. }
  4845. #u1086_text {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:352px;
  4851. word-wrap:break-word;
  4852. }
  4853. #u1087_img {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:-4px;
  4857. top:-4px;
  4858. width:44px;
  4859. height:44px;
  4860. }
  4861. #u1087 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:1168px;
  4865. top:9163px;
  4866. width:34px;
  4867. height:34px;
  4868. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4869. font-weight:700;
  4870. font-style:normal;
  4871. font-size:26px;
  4872. }
  4873. #u1087_text {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:2px;
  4877. top:1px;
  4878. width:30px;
  4879. word-wrap:break-word;
  4880. }
  4881. #u1088_div {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:198px;
  4887. height:19px;
  4888. background:inherit;
  4889. background-color:rgba(255, 255, 255, 0);
  4890. border:none;
  4891. border-radius:0px;
  4892. -moz-box-shadow:none;
  4893. -webkit-box-shadow:none;
  4894. box-shadow:none;
  4895. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4896. font-weight:700;
  4897. font-style:normal;
  4898. font-size:16px;
  4899. color:#FF0000;
  4900. }
  4901. #u1088 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:1208px;
  4905. top:9170px;
  4906. width:198px;
  4907. height:19px;
  4908. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4909. font-weight:700;
  4910. font-style:normal;
  4911. font-size:16px;
  4912. color:#FF0000;
  4913. }
  4914. #u1088_text {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:198px;
  4920. word-wrap:break-word;
  4921. }
  4922. #u1089_div {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:296px;
  4928. height:158px;
  4929. background:inherit;
  4930. background-color:rgba(255, 255, 0, 1);
  4931. box-sizing:border-box;
  4932. border-width:1px;
  4933. border-style:solid;
  4934. border-color:rgba(0, 0, 0, 1);
  4935. border-radius:10px;
  4936. -moz-box-shadow:none;
  4937. -webkit-box-shadow:none;
  4938. box-shadow:none;
  4939. color:#000000;
  4940. text-align:left;
  4941. line-height:18px;
  4942. }
  4943. #u1089 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:1208px;
  4947. top:8994px;
  4948. width:296px;
  4949. height:158px;
  4950. color:#000000;
  4951. text-align:left;
  4952. line-height:18px;
  4953. }
  4954. #u1089_text {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:2px;
  4958. top:7px;
  4959. width:292px;
  4960. word-wrap:break-word;
  4961. }
  4962. #u1090 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:1213px;
  4966. top:9168px;
  4967. width:86px;
  4968. height:23px;
  4969. overflow:hidden;
  4970. background-image:url('../../resources/images/transparent.gif');
  4971. }
  4972. #u1091_div {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:210px;
  4978. height:22px;
  4979. background:inherit;
  4980. background-color:rgba(255, 255, 255, 0);
  4981. border:none;
  4982. border-radius:0px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4987. font-weight:700;
  4988. font-style:normal;
  4989. font-size:18px;
  4990. }
  4991. #u1091 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:8px;
  4995. top:9779px;
  4996. width:210px;
  4997. height:22px;
  4998. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4999. font-weight:700;
  5000. font-style:normal;
  5001. font-size:18px;
  5002. }
  5003. #u1091_text {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:210px;
  5009. white-space:nowrap;
  5010. }
  5011. #u1092_img {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:1155px;
  5017. height:583px;
  5018. }
  5019. #u1092 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:8px;
  5023. top:9833px;
  5024. width:1155px;
  5025. height:583px;
  5026. }
  5027. #u1092_text {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:0px;
  5033. visibility:hidden;
  5034. word-wrap:break-word;
  5035. }
  5036. #u1093 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:0px;
  5042. height:0px;
  5043. }
  5044. #u1094_img {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:-4px;
  5048. top:-4px;
  5049. width:44px;
  5050. height:44px;
  5051. }
  5052. #u1094 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:1173px;
  5056. top:9841px;
  5057. width:34px;
  5058. height:34px;
  5059. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5060. font-weight:700;
  5061. font-style:normal;
  5062. font-size:26px;
  5063. }
  5064. #u1094_text {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:2px;
  5068. top:1px;
  5069. width:30px;
  5070. word-wrap:break-word;
  5071. }
  5072. #u1095_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:198px;
  5078. height:19px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 0);
  5081. border:none;
  5082. border-radius:0px;
  5083. -moz-box-shadow:none;
  5084. -webkit-box-shadow:none;
  5085. box-shadow:none;
  5086. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5087. font-weight:700;
  5088. font-style:normal;
  5089. font-size:16px;
  5090. }
  5091. #u1095 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:1213px;
  5095. top:9848px;
  5096. width:198px;
  5097. height:19px;
  5098. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5099. font-weight:700;
  5100. font-style:normal;
  5101. font-size:16px;
  5102. }
  5103. #u1095_text {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:198px;
  5109. word-wrap:break-word;
  5110. }
  5111. #u1096_div {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:352px;
  5117. height:66px;
  5118. background:inherit;
  5119. background-color:rgba(255, 255, 255, 0);
  5120. border:none;
  5121. border-radius:0px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. line-height:22px;
  5126. }
  5127. #u1096 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:1213px;
  5131. top:9886px;
  5132. width:352px;
  5133. height:66px;
  5134. line-height:22px;
  5135. }
  5136. #u1096_text {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:352px;
  5142. word-wrap:break-word;
  5143. }
  5144. #u1097_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:-4px;
  5148. top:-4px;
  5149. width:30px;
  5150. height:30px;
  5151. }
  5152. #u1097 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:968px;
  5156. top:10055px;
  5157. width:20px;
  5158. height:20px;
  5159. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5160. font-weight:700;
  5161. font-style:normal;
  5162. font-size:14px;
  5163. color:#1E1E1E;
  5164. }
  5165. #u1097_text {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:2px;
  5169. top:2px;
  5170. width:16px;
  5171. word-wrap:break-word;
  5172. }
  5173. #u1098_img {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:-4px;
  5177. top:-4px;
  5178. width:30px;
  5179. height:30px;
  5180. }
  5181. #u1098 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:1014px;
  5185. top:10055px;
  5186. width:20px;
  5187. height:20px;
  5188. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5189. font-weight:700;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. color:#1E1E1E;
  5193. }
  5194. #u1098_text {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:2px;
  5198. top:2px;
  5199. width:16px;
  5200. word-wrap:break-word;
  5201. }
  5202. #u1099_img {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:-4px;
  5206. top:-4px;
  5207. width:30px;
  5208. height:30px;
  5209. }
  5210. #u1099 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:1052px;
  5214. top:10055px;
  5215. width:20px;
  5216. height:20px;
  5217. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5218. font-weight:700;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. color:#1E1E1E;
  5222. }
  5223. #u1099_text {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:2px;
  5227. top:2px;
  5228. width:16px;
  5229. word-wrap:break-word;
  5230. }
  5231. #u1100_img {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:-4px;
  5235. top:-4px;
  5236. width:30px;
  5237. height:30px;
  5238. }
  5239. #u1100 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:1099px;
  5243. top:10055px;
  5244. width:20px;
  5245. height:20px;
  5246. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5247. font-weight:700;
  5248. font-style:normal;
  5249. font-size:14px;
  5250. color:#1E1E1E;
  5251. }
  5252. #u1100_text {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:2px;
  5256. top:2px;
  5257. width:16px;
  5258. word-wrap:break-word;
  5259. }
  5260. #u1101 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:0px;
  5266. height:0px;
  5267. }
  5268. #u1102_img {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:-4px;
  5272. top:-4px;
  5273. width:40px;
  5274. height:40px;
  5275. }
  5276. #u1102 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:1173px;
  5280. top:9979px;
  5281. width:30px;
  5282. height:30px;
  5283. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5284. font-weight:700;
  5285. font-style:normal;
  5286. font-size:18px;
  5287. color:#1E1E1E;
  5288. }
  5289. #u1102_text {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:2px;
  5293. top:4px;
  5294. width:26px;
  5295. word-wrap:break-word;
  5296. }
  5297. #u1103_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:198px;
  5303. height:19px;
  5304. background:inherit;
  5305. background-color:rgba(255, 255, 255, 0);
  5306. border:none;
  5307. border-radius:0px;
  5308. -moz-box-shadow:none;
  5309. -webkit-box-shadow:none;
  5310. box-shadow:none;
  5311. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5312. font-weight:700;
  5313. font-style:normal;
  5314. font-size:16px;
  5315. }
  5316. #u1103 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:1213px;
  5320. top:9986px;
  5321. width:198px;
  5322. height:19px;
  5323. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5324. font-weight:700;
  5325. font-style:normal;
  5326. font-size:16px;
  5327. }
  5328. #u1103_text {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:0px;
  5332. top:0px;
  5333. width:198px;
  5334. word-wrap:break-word;
  5335. }
  5336. #u1104_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:352px;
  5342. height:66px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border:none;
  5346. border-radius:0px;
  5347. -moz-box-shadow:none;
  5348. -webkit-box-shadow:none;
  5349. box-shadow:none;
  5350. line-height:22px;
  5351. }
  5352. #u1104 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:1213px;
  5356. top:10024px;
  5357. width:352px;
  5358. height:66px;
  5359. line-height:22px;
  5360. }
  5361. #u1104_text {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:352px;
  5367. word-wrap:break-word;
  5368. }
  5369. #u1105 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:0px;
  5375. height:0px;
  5376. }
  5377. #u1106_img {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:-4px;
  5381. top:-4px;
  5382. width:40px;
  5383. height:40px;
  5384. }
  5385. #u1106 {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:1173px;
  5389. top:10134px;
  5390. width:30px;
  5391. height:30px;
  5392. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5393. font-weight:700;
  5394. font-style:normal;
  5395. font-size:18px;
  5396. color:#1E1E1E;
  5397. }
  5398. #u1106_text {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:2px;
  5402. top:4px;
  5403. width:26px;
  5404. word-wrap:break-word;
  5405. }
  5406. #u1107_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:198px;
  5412. height:19px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 0);
  5415. border:none;
  5416. border-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5421. font-weight:700;
  5422. font-style:normal;
  5423. font-size:16px;
  5424. color:#FF0000;
  5425. }
  5426. #u1107 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:1213px;
  5430. top:10141px;
  5431. width:198px;
  5432. height:19px;
  5433. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5434. font-weight:700;
  5435. font-style:normal;
  5436. font-size:16px;
  5437. color:#FF0000;
  5438. }
  5439. #u1107_text {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:198px;
  5445. word-wrap:break-word;
  5446. }
  5447. #u1108_div {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:352px;
  5453. height:66px;
  5454. background:inherit;
  5455. background-color:rgba(255, 255, 255, 0);
  5456. border:none;
  5457. border-radius:0px;
  5458. -moz-box-shadow:none;
  5459. -webkit-box-shadow:none;
  5460. box-shadow:none;
  5461. line-height:22px;
  5462. }
  5463. #u1108 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:1213px;
  5467. top:10179px;
  5468. width:352px;
  5469. height:66px;
  5470. line-height:22px;
  5471. }
  5472. #u1108_text {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:352px;
  5478. word-wrap:break-word;
  5479. }
  5480. #u1109_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:185px;
  5486. height:71px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 0, 1);
  5489. box-sizing:border-box;
  5490. border-width:1px;
  5491. border-style:solid;
  5492. border-color:rgba(0, 0, 0, 1);
  5493. border-radius:10px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. color:#000000;
  5498. text-align:left;
  5499. line-height:18px;
  5500. }
  5501. #u1109 {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:1314px;
  5505. top:10120px;
  5506. width:185px;
  5507. height:71px;
  5508. color:#000000;
  5509. text-align:left;
  5510. line-height:18px;
  5511. }
  5512. #u1109_text {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:2px;
  5516. top:18px;
  5517. width:181px;
  5518. word-wrap:break-word;
  5519. }
  5520. #u1110 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:1366px;
  5524. top:10201px;
  5525. width:57px;
  5526. height:23px;
  5527. overflow:hidden;
  5528. background-image:url('../../resources/images/transparent.gif');
  5529. }
  5530. #u1111_div {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:296px;
  5536. height:145px;
  5537. background:inherit;
  5538. background-color:rgba(255, 255, 0, 1);
  5539. box-sizing:border-box;
  5540. border-width:1px;
  5541. border-style:solid;
  5542. border-color:rgba(0, 0, 0, 1);
  5543. border-radius:10px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. color:#000000;
  5548. text-align:left;
  5549. line-height:18px;
  5550. }
  5551. #u1111 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:1213px;
  5555. top:9986px;
  5556. width:296px;
  5557. height:145px;
  5558. color:#000000;
  5559. text-align:left;
  5560. line-height:18px;
  5561. }
  5562. #u1111_text {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:2px;
  5566. top:10px;
  5567. width:292px;
  5568. word-wrap:break-word;
  5569. }
  5570. #u1112 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:1218px;
  5574. top:10139px;
  5575. width:57px;
  5576. height:23px;
  5577. overflow:hidden;
  5578. background-image:url('../../resources/images/transparent.gif');
  5579. }
  5580. #u1113 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:0px;
  5586. height:0px;
  5587. }
  5588. #u1114_img {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:-4px;
  5592. top:-4px;
  5593. width:44px;
  5594. height:44px;
  5595. }
  5596. #u1114 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:1173px;
  5600. top:10255px;
  5601. width:34px;
  5602. height:34px;
  5603. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5604. font-weight:700;
  5605. font-style:normal;
  5606. font-size:26px;
  5607. }
  5608. #u1114_text {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:2px;
  5612. top:1px;
  5613. width:30px;
  5614. word-wrap:break-word;
  5615. }
  5616. #u1115_div {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:198px;
  5622. height:19px;
  5623. background:inherit;
  5624. background-color:rgba(255, 255, 255, 0);
  5625. border:none;
  5626. border-radius:0px;
  5627. -moz-box-shadow:none;
  5628. -webkit-box-shadow:none;
  5629. box-shadow:none;
  5630. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5631. font-weight:700;
  5632. font-style:normal;
  5633. font-size:16px;
  5634. }
  5635. #u1115 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:1213px;
  5639. top:10262px;
  5640. width:198px;
  5641. height:19px;
  5642. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5643. font-weight:700;
  5644. font-style:normal;
  5645. font-size:16px;
  5646. }
  5647. #u1115_text {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:198px;
  5653. word-wrap:break-word;
  5654. }
  5655. #u1116_div {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:352px;
  5661. height:22px;
  5662. background:inherit;
  5663. background-color:rgba(255, 255, 255, 0);
  5664. border:none;
  5665. border-radius:0px;
  5666. -moz-box-shadow:none;
  5667. -webkit-box-shadow:none;
  5668. box-shadow:none;
  5669. line-height:22px;
  5670. }
  5671. #u1116 {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:1213px;
  5675. top:10300px;
  5676. width:352px;
  5677. height:22px;
  5678. line-height:22px;
  5679. }
  5680. #u1116_text {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:352px;
  5686. word-wrap:break-word;
  5687. }
  5688. #u1117_div {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:1px;
  5694. height:22px;
  5695. background:inherit;
  5696. background-color:rgba(255, 255, 255, 0);
  5697. border:none;
  5698. border-radius:0px;
  5699. -moz-box-shadow:none;
  5700. -webkit-box-shadow:none;
  5701. box-shadow:none;
  5702. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5703. font-weight:700;
  5704. font-style:normal;
  5705. font-size:18px;
  5706. }
  5707. #u1117 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:8px;
  5711. top:10477px;
  5712. width:1px;
  5713. height:22px;
  5714. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5715. font-weight:700;
  5716. font-style:normal;
  5717. font-size:18px;
  5718. }
  5719. #u1117_text {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:0px;
  5725. visibility:hidden;
  5726. white-space:nowrap;
  5727. }
  5728. #u1118_img {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:1155px;
  5734. height:583px;
  5735. }
  5736. #u1118 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:8px;
  5740. top:10523px;
  5741. width:1155px;
  5742. height:583px;
  5743. }
  5744. #u1118_text {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. visibility:hidden;
  5751. word-wrap:break-word;
  5752. }
  5753. #u1119_img {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:-4px;
  5757. top:-4px;
  5758. width:30px;
  5759. height:30px;
  5760. }
  5761. #u1119 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:1027px;
  5765. top:11077px;
  5766. width:20px;
  5767. height:20px;
  5768. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5769. font-weight:700;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. color:#1E1E1E;
  5773. }
  5774. #u1119_text {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:2px;
  5778. top:2px;
  5779. width:16px;
  5780. word-wrap:break-word;
  5781. }
  5782. #u1120_div {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:210px;
  5788. height:22px;
  5789. background:inherit;
  5790. background-color:rgba(255, 255, 255, 0);
  5791. border:none;
  5792. border-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5797. font-weight:700;
  5798. font-style:normal;
  5799. font-size:18px;
  5800. }
  5801. #u1120 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:8px;
  5805. top:10491px;
  5806. width:210px;
  5807. height:22px;
  5808. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5809. font-weight:700;
  5810. font-style:normal;
  5811. font-size:18px;
  5812. }
  5813. #u1120_text {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:210px;
  5819. white-space:nowrap;
  5820. }
  5821. #u1121 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:0px;
  5827. height:0px;
  5828. }
  5829. #u1122_img {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:-4px;
  5833. top:-4px;
  5834. width:44px;
  5835. height:44px;
  5836. }
  5837. #u1122 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:1169px;
  5841. top:10526px;
  5842. width:34px;
  5843. height:34px;
  5844. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5845. font-weight:700;
  5846. font-style:normal;
  5847. font-size:26px;
  5848. }
  5849. #u1122_text {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:2px;
  5853. top:1px;
  5854. width:30px;
  5855. word-wrap:break-word;
  5856. }
  5857. #u1123_div {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:198px;
  5863. height:19px;
  5864. background:inherit;
  5865. background-color:rgba(255, 255, 255, 0);
  5866. border:none;
  5867. border-radius:0px;
  5868. -moz-box-shadow:none;
  5869. -webkit-box-shadow:none;
  5870. box-shadow:none;
  5871. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5872. font-weight:700;
  5873. font-style:normal;
  5874. font-size:16px;
  5875. color:#FF0000;
  5876. }
  5877. #u1123 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:1209px;
  5881. top:10533px;
  5882. width:198px;
  5883. height:19px;
  5884. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5885. font-weight:700;
  5886. font-style:normal;
  5887. font-size:16px;
  5888. color:#FF0000;
  5889. }
  5890. #u1123_text {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:198px;
  5896. word-wrap:break-word;
  5897. }
  5898. #u1124_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:352px;
  5904. height:198px;
  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. #u1124 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1209px;
  5918. top:10571px;
  5919. width:352px;
  5920. height:198px;
  5921. line-height:22px;
  5922. }
  5923. #u1124_text {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:352px;
  5929. word-wrap:break-word;
  5930. }
  5931. #u1125_div {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:286px;
  5937. height:173px;
  5938. background:inherit;
  5939. background-color:rgba(255, 255, 0, 1);
  5940. box-sizing:border-box;
  5941. border-width:1px;
  5942. border-style:solid;
  5943. border-color:rgba(0, 0, 0, 1);
  5944. border-radius:10px;
  5945. -moz-box-shadow:none;
  5946. -webkit-box-shadow:none;
  5947. box-shadow:none;
  5948. color:#000000;
  5949. text-align:left;
  5950. line-height:18px;
  5951. }
  5952. #u1125 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:1213px;
  5956. top:10353px;
  5957. width:286px;
  5958. height:173px;
  5959. color:#000000;
  5960. text-align:left;
  5961. line-height:18px;
  5962. }
  5963. #u1125_text {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:2px;
  5967. top:24px;
  5968. width:282px;
  5969. word-wrap:break-word;
  5970. }
  5971. #u1126 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:1214px;
  5975. top:10531px;
  5976. width:90px;
  5977. height:23px;
  5978. overflow:hidden;
  5979. background-image:url('../../resources/images/transparent.gif');
  5980. }
  5981. #u1127_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:167px;
  5987. height:67px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 0, 1);
  5990. box-sizing:border-box;
  5991. border-width:1px;
  5992. border-style:solid;
  5993. border-color:rgba(0, 0, 0, 1);
  5994. border-radius:10px;
  5995. -moz-box-shadow:none;
  5996. -webkit-box-shadow:none;
  5997. box-shadow:none;
  5998. color:#000000;
  5999. text-align:left;
  6000. line-height:18px;
  6001. }
  6002. #u1127 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:1375px;
  6006. top:10591px;
  6007. width:167px;
  6008. height:67px;
  6009. color:#000000;
  6010. text-align:left;
  6011. line-height:18px;
  6012. }
  6013. #u1127_text {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:2px;
  6017. top:16px;
  6018. width:163px;
  6019. word-wrap:break-word;
  6020. }
  6021. #u1128 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:1382px;
  6025. top:10658px;
  6026. width:73px;
  6027. height:23px;
  6028. overflow:hidden;
  6029. background-image:url('../../resources/images/transparent.gif');
  6030. }
  6031. #u1129_div {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:167px;
  6037. height:67px;
  6038. background:inherit;
  6039. background-color:rgba(255, 255, 0, 1);
  6040. box-sizing:border-box;
  6041. border-width:1px;
  6042. border-style:solid;
  6043. border-color:rgba(0, 0, 0, 1);
  6044. border-radius:10px;
  6045. -moz-box-shadow:none;
  6046. -webkit-box-shadow:none;
  6047. box-shadow:none;
  6048. color:#000000;
  6049. text-align:left;
  6050. line-height:18px;
  6051. }
  6052. #u1129 {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:1225px;
  6056. top:10562px;
  6057. width:167px;
  6058. height:67px;
  6059. color:#000000;
  6060. text-align:left;
  6061. line-height:18px;
  6062. }
  6063. #u1129_text {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:2px;
  6067. top:16px;
  6068. width:163px;
  6069. word-wrap:break-word;
  6070. }
  6071. #u1130 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:1284px;
  6075. top:10635px;
  6076. width:32px;
  6077. height:23px;
  6078. overflow:hidden;
  6079. background-image:url('../../resources/images/transparent.gif');
  6080. }
  6081. #u1131 {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:1203px;
  6085. top:10705px;
  6086. width:32px;
  6087. height:22px;
  6088. overflow:hidden;
  6089. background-image:url('../../resources/images/transparent.gif');
  6090. }
  6091. #u1132_div {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:223px;
  6097. height:79px;
  6098. background:inherit;
  6099. background-color:rgba(255, 255, 0, 1);
  6100. box-sizing:border-box;
  6101. border-width:1px;
  6102. border-style:solid;
  6103. border-color:rgba(0, 0, 0, 1);
  6104. border-radius:10px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. text-align:left;
  6109. line-height:18px;
  6110. }
  6111. #u1132 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:1203px;
  6115. top:10733px;
  6116. width:223px;
  6117. height:79px;
  6118. text-align:left;
  6119. line-height:18px;
  6120. }
  6121. #u1132_text {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:2px;
  6125. top:23px;
  6126. width:219px;
  6127. word-wrap:break-word;
  6128. }
  6129. #u1133 {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:1533px;
  6133. top:10681px;
  6134. width:32px;
  6135. height:22px;
  6136. overflow:hidden;
  6137. background-image:url('../../resources/images/transparent.gif');
  6138. }
  6139. #u1134 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:1309px;
  6143. top:10702px;
  6144. width:70px;
  6145. height:21px;
  6146. overflow:hidden;
  6147. background-image:url('../../resources/images/transparent.gif');
  6148. }
  6149. #u1135_div {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:232px;
  6155. height:136px;
  6156. background:inherit;
  6157. background-color:rgba(255, 255, 0, 1);
  6158. box-sizing:border-box;
  6159. border-width:1px;
  6160. border-style:solid;
  6161. border-color:rgba(0, 0, 0, 1);
  6162. border-radius:10px;
  6163. -moz-box-shadow:none;
  6164. -webkit-box-shadow:none;
  6165. box-shadow:none;
  6166. text-align:left;
  6167. line-height:18px;
  6168. }
  6169. #u1135 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:1273px;
  6173. top:10728px;
  6174. width:232px;
  6175. height:136px;
  6176. text-align:left;
  6177. line-height:18px;
  6178. }
  6179. #u1135_text {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:2px;
  6183. top:8px;
  6184. width:228px;
  6185. word-wrap:break-word;
  6186. }
  6187. #u1136_div {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:264px;
  6193. height:22px;
  6194. background:inherit;
  6195. background-color:rgba(255, 255, 255, 0);
  6196. border:none;
  6197. border-radius:0px;
  6198. -moz-box-shadow:none;
  6199. -webkit-box-shadow:none;
  6200. box-shadow:none;
  6201. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6202. font-weight:700;
  6203. font-style:normal;
  6204. font-size:18px;
  6205. }
  6206. #u1136 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:8px;
  6210. top:11852px;
  6211. width:264px;
  6212. height:22px;
  6213. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6214. font-weight:700;
  6215. font-style:normal;
  6216. font-size:18px;
  6217. }
  6218. #u1136_text {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:264px;
  6224. white-space:nowrap;
  6225. }
  6226. #u1137_img {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:1155px;
  6232. height:583px;
  6233. }
  6234. #u1137 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:8px;
  6238. top:11884px;
  6239. width:1155px;
  6240. height:583px;
  6241. }
  6242. #u1137_text {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:0px;
  6248. visibility:hidden;
  6249. word-wrap:break-word;
  6250. }
  6251. #u1138_img {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:-4px;
  6255. top:-4px;
  6256. width:30px;
  6257. height:30px;
  6258. }
  6259. #u1138 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:1043px;
  6263. top:12371px;
  6264. width:20px;
  6265. height:20px;
  6266. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6267. font-weight:700;
  6268. font-style:normal;
  6269. font-size:14px;
  6270. color:#1E1E1E;
  6271. }
  6272. #u1138_text {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:2px;
  6276. top:2px;
  6277. width:16px;
  6278. word-wrap:break-word;
  6279. }
  6280. #u1139_img {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:-4px;
  6284. top:-4px;
  6285. width:30px;
  6286. height:30px;
  6287. }
  6288. #u1139 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:1130px;
  6292. top:12371px;
  6293. width:20px;
  6294. height:20px;
  6295. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6296. font-weight:700;
  6297. font-style:normal;
  6298. font-size:14px;
  6299. color:#1E1E1E;
  6300. }
  6301. #u1139_text {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:2px;
  6305. top:2px;
  6306. width:16px;
  6307. word-wrap:break-word;
  6308. }
  6309. #u1140 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:0px;
  6315. height:0px;
  6316. }
  6317. #u1141_img {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:-4px;
  6321. top:-4px;
  6322. width:40px;
  6323. height:40px;
  6324. }
  6325. #u1141 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:1168px;
  6329. top:12021px;
  6330. width:30px;
  6331. height:30px;
  6332. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6333. font-weight:700;
  6334. font-style:normal;
  6335. font-size:18px;
  6336. color:#1E1E1E;
  6337. }
  6338. #u1141_text {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:2px;
  6342. top:4px;
  6343. width:26px;
  6344. word-wrap:break-word;
  6345. }
  6346. #u1142_div {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:198px;
  6352. height:19px;
  6353. background:inherit;
  6354. background-color:rgba(255, 255, 255, 0);
  6355. border:none;
  6356. border-radius:0px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6361. font-weight:700;
  6362. font-style:normal;
  6363. font-size:16px;
  6364. color:#FF0000;
  6365. }
  6366. #u1142 {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:1208px;
  6370. top:12028px;
  6371. width:198px;
  6372. height:19px;
  6373. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6374. font-weight:700;
  6375. font-style:normal;
  6376. font-size:16px;
  6377. color:#FF0000;
  6378. }
  6379. #u1142_text {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:198px;
  6385. word-wrap:break-word;
  6386. }
  6387. #u1143_div {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:352px;
  6393. height:88px;
  6394. background:inherit;
  6395. background-color:rgba(255, 255, 255, 0);
  6396. border:none;
  6397. border-radius:0px;
  6398. -moz-box-shadow:none;
  6399. -webkit-box-shadow:none;
  6400. box-shadow:none;
  6401. line-height:22px;
  6402. }
  6403. #u1143 {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:1208px;
  6407. top:12066px;
  6408. width:352px;
  6409. height:88px;
  6410. line-height:22px;
  6411. }
  6412. #u1143_text {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:352px;
  6418. word-wrap:break-word;
  6419. }
  6420. #u1144 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:1213px;
  6424. top:12025px;
  6425. width:90px;
  6426. height:23px;
  6427. overflow:hidden;
  6428. background-image:url('../../resources/images/transparent.gif');
  6429. }
  6430. #u1145 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:0px;
  6436. height:0px;
  6437. }
  6438. #u1146_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:352px;
  6444. height:88px;
  6445. background:inherit;
  6446. background-color:rgba(255, 255, 255, 0);
  6447. border:none;
  6448. border-radius:0px;
  6449. -moz-box-shadow:none;
  6450. -webkit-box-shadow:none;
  6451. box-shadow:none;
  6452. line-height:22px;
  6453. }
  6454. #u1146 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:1213px;
  6458. top:11924px;
  6459. width:352px;
  6460. height:88px;
  6461. line-height:22px;
  6462. }
  6463. #u1146_text {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:0px;
  6467. top:0px;
  6468. width:352px;
  6469. word-wrap:break-word;
  6470. }
  6471. #u1147_img {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:-4px;
  6475. top:-4px;
  6476. width:40px;
  6477. height:40px;
  6478. }
  6479. #u1147 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:1168px;
  6483. top:11886px;
  6484. width:30px;
  6485. height:30px;
  6486. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6487. font-weight:700;
  6488. font-style:normal;
  6489. font-size:18px;
  6490. color:#1E1E1E;
  6491. }
  6492. #u1147_text {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:2px;
  6496. top:4px;
  6497. width:26px;
  6498. word-wrap:break-word;
  6499. }
  6500. #u1148_div {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:198px;
  6506. height:19px;
  6507. background:inherit;
  6508. background-color:rgba(255, 255, 255, 0);
  6509. border:none;
  6510. border-radius:0px;
  6511. -moz-box-shadow:none;
  6512. -webkit-box-shadow:none;
  6513. box-shadow:none;
  6514. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6515. font-weight:700;
  6516. font-style:normal;
  6517. font-size:16px;
  6518. color:#FF0000;
  6519. }
  6520. #u1148 {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:1208px;
  6524. top:11893px;
  6525. width:198px;
  6526. height:19px;
  6527. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6528. font-weight:700;
  6529. font-style:normal;
  6530. font-size:16px;
  6531. color:#FF0000;
  6532. }
  6533. #u1148_text {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:0px;
  6537. top:0px;
  6538. width:198px;
  6539. word-wrap:break-word;
  6540. }
  6541. #u1149_div {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:296px;
  6547. height:169px;
  6548. background:inherit;
  6549. background-color:rgba(255, 255, 0, 1);
  6550. box-sizing:border-box;
  6551. border-width:1px;
  6552. border-style:solid;
  6553. border-color:rgba(0, 0, 0, 1);
  6554. border-radius:10px;
  6555. -moz-box-shadow:none;
  6556. -webkit-box-shadow:none;
  6557. box-shadow:none;
  6558. color:#000000;
  6559. text-align:left;
  6560. line-height:18px;
  6561. }
  6562. #u1149 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:1208px;
  6566. top:11707px;
  6567. width:296px;
  6568. height:169px;
  6569. color:#000000;
  6570. text-align:left;
  6571. line-height:18px;
  6572. }
  6573. #u1149_text {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:2px;
  6577. top:22px;
  6578. width:292px;
  6579. word-wrap:break-word;
  6580. }
  6581. #u1150 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:1213px;
  6585. top:11891px;
  6586. width:86px;
  6587. height:23px;
  6588. overflow:hidden;
  6589. background-image:url('../../resources/images/transparent.gif');
  6590. }
  6591. #u1151_div {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:305px;
  6597. height:129px;
  6598. background:inherit;
  6599. background-color:rgba(255, 255, 0, 1);
  6600. box-sizing:border-box;
  6601. border-width:1px;
  6602. border-style:solid;
  6603. border-color:rgba(0, 0, 0, 1);
  6604. border-radius:10px;
  6605. -moz-box-shadow:none;
  6606. -webkit-box-shadow:none;
  6607. box-shadow:none;
  6608. color:#000000;
  6609. text-align:left;
  6610. line-height:18px;
  6611. }
  6612. #u1151 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:1214px;
  6616. top:11886px;
  6617. width:305px;
  6618. height:129px;
  6619. color:#000000;
  6620. text-align:left;
  6621. line-height:18px;
  6622. }
  6623. #u1151_text {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:2px;
  6627. top:10px;
  6628. width:301px;
  6629. word-wrap:break-word;
  6630. }
  6631. #u1152_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:1155px;
  6637. height:583px;
  6638. }
  6639. #u1152 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:11153px;
  6644. width:1155px;
  6645. height:583px;
  6646. }
  6647. #u1152_text {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:0px;
  6653. visibility:hidden;
  6654. word-wrap:break-word;
  6655. }
  6656. #u1153 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:1482px;
  6660. top:10725px;
  6661. width:27px;
  6662. height:21px;
  6663. overflow:hidden;
  6664. background-image:url('../../resources/images/transparent.gif');
  6665. }
  6666. #u1154_div {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:232px;
  6672. height:104px;
  6673. background:inherit;
  6674. background-color:rgba(255, 255, 0, 1);
  6675. box-sizing:border-box;
  6676. border-width:1px;
  6677. border-style:solid;
  6678. border-color:rgba(0, 0, 0, 1);
  6679. border-radius:10px;
  6680. -moz-box-shadow:none;
  6681. -webkit-box-shadow:none;
  6682. box-shadow:none;
  6683. text-align:left;
  6684. line-height:18px;
  6685. }
  6686. #u1154 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:1316px;
  6690. top:10614px;
  6691. width:232px;
  6692. height:104px;
  6693. text-align:left;
  6694. line-height:18px;
  6695. }
  6696. #u1154_text {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:2px;
  6700. top:12px;
  6701. width:228px;
  6702. word-wrap:break-word;
  6703. }
  6704. #u1155 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:0px;
  6710. height:0px;
  6711. }
  6712. #u1156_img {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:-4px;
  6716. top:-4px;
  6717. width:44px;
  6718. height:44px;
  6719. }
  6720. #u1156 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:1173px;
  6724. top:12620px;
  6725. width:34px;
  6726. height:34px;
  6727. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6728. font-weight:700;
  6729. font-style:normal;
  6730. font-size:26px;
  6731. }
  6732. #u1156_text {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:2px;
  6736. top:1px;
  6737. width:30px;
  6738. word-wrap:break-word;
  6739. }
  6740. #u1157_div {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:101px;
  6746. height:19px;
  6747. background:inherit;
  6748. background-color:rgba(255, 255, 255, 0);
  6749. border:none;
  6750. border-radius:0px;
  6751. -moz-box-shadow:none;
  6752. -webkit-box-shadow:none;
  6753. box-shadow:none;
  6754. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6755. font-weight:700;
  6756. font-style:normal;
  6757. font-size:16px;
  6758. }
  6759. #u1157 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:1213px;
  6763. top:12627px;
  6764. width:101px;
  6765. height:19px;
  6766. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6767. font-weight:700;
  6768. font-style:normal;
  6769. font-size:16px;
  6770. }
  6771. #u1157_text {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:101px;
  6777. word-wrap:break-word;
  6778. }
  6779. #u1158_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:352px;
  6785. height:110px;
  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. line-height:22px;
  6794. }
  6795. #u1158 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:1213px;
  6799. top:12665px;
  6800. width:352px;
  6801. height:110px;
  6802. line-height:22px;
  6803. }
  6804. #u1158_text {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:352px;
  6810. word-wrap:break-word;
  6811. }
  6812. #u1159_img {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:1155px;
  6818. height:583px;
  6819. }
  6820. #u1159 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:8px;
  6824. top:12620px;
  6825. width:1155px;
  6826. height:583px;
  6827. }
  6828. #u1159_text {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:0px;
  6833. width:0px;
  6834. visibility:hidden;
  6835. word-wrap:break-word;
  6836. }
  6837. #u1160_img {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:-4px;
  6841. top:-4px;
  6842. width:30px;
  6843. height:30px;
  6844. }
  6845. #u1160 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:207px;
  6849. top:12772px;
  6850. width:20px;
  6851. height:20px;
  6852. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6853. font-weight:700;
  6854. font-style:normal;
  6855. font-size:14px;
  6856. color:#1E1E1E;
  6857. }
  6858. #u1160_text {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:2px;
  6862. top:2px;
  6863. width:16px;
  6864. word-wrap:break-word;
  6865. }
  6866. #u1161_img {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:1155px;
  6872. height:583px;
  6873. }
  6874. #u1161 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:8px;
  6878. top:13242px;
  6879. width:1155px;
  6880. height:583px;
  6881. }
  6882. #u1161_text {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:0px;
  6888. visibility:hidden;
  6889. word-wrap:break-word;
  6890. }
  6891. #u1162_div {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:228px;
  6897. height:22px;
  6898. background:inherit;
  6899. background-color:rgba(255, 255, 255, 0);
  6900. border:none;
  6901. border-radius:0px;
  6902. -moz-box-shadow:none;
  6903. -webkit-box-shadow:none;
  6904. box-shadow:none;
  6905. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6906. font-weight:700;
  6907. font-style:normal;
  6908. font-size:18px;
  6909. }
  6910. #u1162 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:8px;
  6914. top:12569px;
  6915. width:228px;
  6916. height:22px;
  6917. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  6918. font-weight:700;
  6919. font-style:normal;
  6920. font-size:18px;
  6921. }
  6922. #u1162_text {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:228px;
  6928. white-space:nowrap;
  6929. }
  6930. #u1163_div {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:223px;
  6936. height:105px;
  6937. background:inherit;
  6938. background-color:rgba(255, 255, 0, 1);
  6939. box-sizing:border-box;
  6940. border-width:1px;
  6941. border-style:solid;
  6942. border-color:rgba(0, 0, 0, 1);
  6943. border-radius:10px;
  6944. -moz-box-shadow:none;
  6945. -webkit-box-shadow:none;
  6946. box-shadow:none;
  6947. text-align:left;
  6948. line-height:18px;
  6949. }
  6950. #u1163 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:1278px;
  6954. top:2375px;
  6955. width:223px;
  6956. height:105px;
  6957. text-align:left;
  6958. line-height:18px;
  6959. }
  6960. #u1163_text {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:2px;
  6964. top:13px;
  6965. width:219px;
  6966. word-wrap:break-word;
  6967. }
  6968. #u1164 {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:1484px;
  6972. top:2556px;
  6973. width:58px;
  6974. height:22px;
  6975. overflow:hidden;
  6976. background-image:url('../../resources/images/transparent.gif');
  6977. }
  6978. #u1165_div {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:223px;
  6984. height:79px;
  6985. background:inherit;
  6986. background-color:rgba(255, 255, 0, 1);
  6987. box-sizing:border-box;
  6988. border-width:1px;
  6989. border-style:solid;
  6990. border-color:rgba(0, 0, 0, 1);
  6991. border-radius:10px;
  6992. -moz-box-shadow:none;
  6993. -webkit-box-shadow:none;
  6994. box-shadow:none;
  6995. text-align:left;
  6996. line-height:18px;
  6997. }
  6998. #u1165 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:1295px;
  7002. top:2588px;
  7003. width:223px;
  7004. height:79px;
  7005. text-align:left;
  7006. line-height:18px;
  7007. }
  7008. #u1165_text {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:2px;
  7012. top:23px;
  7013. width:219px;
  7014. word-wrap:break-word;
  7015. }
  7016. #u1166 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:0px;
  7022. height:0px;
  7023. }
  7024. #u1167_img {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:-4px;
  7028. top:-4px;
  7029. width:40px;
  7030. height:40px;
  7031. }
  7032. #u1167 {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:1173px;
  7036. top:5779px;
  7037. width:30px;
  7038. height:30px;
  7039. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7040. font-weight:700;
  7041. font-style:normal;
  7042. font-size:18px;
  7043. color:#1E1E1E;
  7044. }
  7045. #u1167_text {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:2px;
  7049. top:4px;
  7050. width:26px;
  7051. word-wrap:break-word;
  7052. }
  7053. #u1168_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:131px;
  7059. height:19px;
  7060. background:inherit;
  7061. background-color:rgba(255, 255, 255, 0);
  7062. border:none;
  7063. border-radius:0px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7068. font-weight:700;
  7069. font-style:normal;
  7070. font-size:16px;
  7071. }
  7072. #u1168 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:1213px;
  7076. top:5786px;
  7077. width:131px;
  7078. height:19px;
  7079. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  7080. font-weight:700;
  7081. font-style:normal;
  7082. font-size:16px;
  7083. }
  7084. #u1168_text {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:131px;
  7090. word-wrap:break-word;
  7091. }
  7092. #u1169_div {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:0px;
  7096. top:0px;
  7097. width:352px;
  7098. height:154px;
  7099. background:inherit;
  7100. background-color:rgba(255, 255, 255, 0);
  7101. border:none;
  7102. border-radius:0px;
  7103. -moz-box-shadow:none;
  7104. -webkit-box-shadow:none;
  7105. box-shadow:none;
  7106. line-height:22px;
  7107. }
  7108. #u1169 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:1213px;
  7112. top:5824px;
  7113. width:352px;
  7114. height:154px;
  7115. line-height:22px;
  7116. }
  7117. #u1169_text {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:352px;
  7123. word-wrap:break-word;
  7124. }
  7125. #u1170 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:1356px;
  7129. top:5933px;
  7130. width:93px;
  7131. height:25px;
  7132. overflow:hidden;
  7133. background-image:url('../../resources/images/transparent.gif');
  7134. }
  7135. #u1171_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:279px;
  7141. height:105px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 0, 1);
  7144. box-sizing:border-box;
  7145. border-width:1px;
  7146. border-style:solid;
  7147. border-color:rgba(0, 0, 0, 1);
  7148. border-radius:10px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. text-align:left;
  7153. line-height:18px;
  7154. }
  7155. #u1171 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:1250px;
  7159. top:5818px;
  7160. width:279px;
  7161. height:105px;
  7162. text-align:left;
  7163. line-height:18px;
  7164. }
  7165. #u1171_text {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:2px;
  7169. top:13px;
  7170. width:275px;
  7171. word-wrap:break-word;
  7172. }
  7173. #u1172 {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:1286px;
  7177. top:5953px;
  7178. width:70px;
  7179. height:25px;
  7180. overflow:hidden;
  7181. background-image:url('../../resources/images/transparent.gif');
  7182. }
  7183. #u1173 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:1485px;
  7187. top:5933px;
  7188. width:54px;
  7189. height:22px;
  7190. overflow:hidden;
  7191. background-image:url('../../resources/images/transparent.gif');
  7192. }
  7193. #u1174_div {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:223px;
  7199. height:79px;
  7200. background:inherit;
  7201. background-color:rgba(255, 255, 0, 1);
  7202. box-sizing:border-box;
  7203. border-width:1px;
  7204. border-style:solid;
  7205. border-color:rgba(0, 0, 0, 1);
  7206. border-radius:10px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. text-align:left;
  7211. line-height:18px;
  7212. }
  7213. #u1174 {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:1331px;
  7217. top:5958px;
  7218. width:223px;
  7219. height:79px;
  7220. text-align:left;
  7221. line-height:18px;
  7222. }
  7223. #u1174_text {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:2px;
  7227. top:23px;
  7228. width:219px;
  7229. word-wrap:break-word;
  7230. }
  7231. #u1175_div {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:232px;
  7237. height:146px;
  7238. background:inherit;
  7239. background-color:rgba(255, 255, 0, 1);
  7240. box-sizing:border-box;
  7241. border-width:1px;
  7242. border-style:solid;
  7243. border-color:rgba(0, 0, 0, 1);
  7244. border-radius:10px;
  7245. -moz-box-shadow:none;
  7246. -webkit-box-shadow:none;
  7247. box-shadow:none;
  7248. text-align:left;
  7249. line-height:18px;
  7250. }
  7251. #u1175 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:1213px;
  7255. top:5978px;
  7256. width:232px;
  7257. height:146px;
  7258. text-align:left;
  7259. line-height:18px;
  7260. }
  7261. #u1175_text {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:2px;
  7265. top:18px;
  7266. width:228px;
  7267. word-wrap:break-word;
  7268. }
  7269. #u1176 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:1376px;
  7273. top:5869px;
  7274. width:54px;
  7275. height:20px;
  7276. overflow:hidden;
  7277. background-image:url('../../resources/images/transparent.gif');
  7278. }
  7279. #u1177_div {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:223px;
  7285. height:105px;
  7286. background:inherit;
  7287. background-color:rgba(255, 255, 0, 1);
  7288. box-sizing:border-box;
  7289. border-width:1px;
  7290. border-style:solid;
  7291. border-color:rgba(0, 0, 0, 1);
  7292. border-radius:10px;
  7293. -moz-box-shadow:none;
  7294. -webkit-box-shadow:none;
  7295. box-shadow:none;
  7296. text-align:left;
  7297. line-height:18px;
  7298. }
  7299. #u1177 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:1286px;
  7303. top:5759px;
  7304. width:223px;
  7305. height:105px;
  7306. text-align:left;
  7307. line-height:18px;
  7308. }
  7309. #u1177_text {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:2px;
  7313. top:13px;
  7314. width:219px;
  7315. word-wrap:break-word;
  7316. }