styles.css 119 KB

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