styles.css 143 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179
  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. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u1423_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1155px;
  25. height:583px;
  26. }
  27. #u1423 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:394px;
  32. width:1155px;
  33. height:583px;
  34. display:flex;
  35. }
  36. #u1423 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u1423_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u1424 {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:0px;
  55. height:0px;
  56. }
  57. #u1425_img {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:8px;
  63. height:28px;
  64. }
  65. #u1425 {
  66. border-width:0px;
  67. position:absolute;
  68. left:8px;
  69. top:15px;
  70. width:8px;
  71. height:28px;
  72. display:flex;
  73. }
  74. #u1425 .text {
  75. position:absolute;
  76. align-self:center;
  77. padding:2px 2px 2px 2px;
  78. box-sizing:border-box;
  79. width:100%;
  80. }
  81. #u1425_text {
  82. border-width:0px;
  83. word-wrap:break-word;
  84. text-transform:none;
  85. visibility:hidden;
  86. }
  87. #u1426_div {
  88. border-width:0px;
  89. position:absolute;
  90. left:0px;
  91. top:0px;
  92. width:120px;
  93. height:28px;
  94. background:inherit;
  95. background-color:rgba(255, 255, 255, 0);
  96. border:none;
  97. border-radius:0px;
  98. -moz-box-shadow:none;
  99. -webkit-box-shadow:none;
  100. box-shadow:none;
  101. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  102. font-weight:700;
  103. font-style:normal;
  104. }
  105. #u1426 {
  106. border-width:0px;
  107. position:absolute;
  108. left:22px;
  109. top:15px;
  110. width:120px;
  111. height:28px;
  112. display:flex;
  113. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  114. font-weight:700;
  115. font-style:normal;
  116. }
  117. #u1426 .text {
  118. position:absolute;
  119. align-self:flex-start;
  120. padding:0px 0px 0px 0px;
  121. box-sizing:border-box;
  122. width:100%;
  123. }
  124. #u1426_text {
  125. border-width:0px;
  126. white-space:nowrap;
  127. text-transform:none;
  128. }
  129. #u1427_div {
  130. border-width:0px;
  131. position:absolute;
  132. left:0px;
  133. top:0px;
  134. width:108px;
  135. height:21px;
  136. background:inherit;
  137. background-color:rgba(255, 255, 255, 0);
  138. border:none;
  139. border-radius:0px;
  140. -moz-box-shadow:none;
  141. -webkit-box-shadow:none;
  142. box-shadow:none;
  143. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  144. font-weight:700;
  145. font-style:normal;
  146. font-size:18px;
  147. }
  148. #u1427 {
  149. border-width:0px;
  150. position:absolute;
  151. left:22px;
  152. top:71px;
  153. width:108px;
  154. height:21px;
  155. display:flex;
  156. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  157. font-weight:700;
  158. font-style:normal;
  159. font-size:18px;
  160. }
  161. #u1427 .text {
  162. position:absolute;
  163. align-self:flex-start;
  164. padding:0px 0px 0px 0px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u1427_text {
  169. border-width:0px;
  170. white-space:nowrap;
  171. text-transform:none;
  172. }
  173. #u1428_div {
  174. border-width:0px;
  175. position:absolute;
  176. left:0px;
  177. top:0px;
  178. width:209px;
  179. height:21px;
  180. background:inherit;
  181. background-color:rgba(255, 255, 255, 0);
  182. border:none;
  183. border-radius:0px;
  184. -moz-box-shadow:none;
  185. -webkit-box-shadow:none;
  186. box-shadow:none;
  187. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  188. font-weight:700;
  189. font-style:normal;
  190. font-size:18px;
  191. }
  192. #u1428 {
  193. border-width:0px;
  194. position:absolute;
  195. left:22px;
  196. top:352px;
  197. width:209px;
  198. height:21px;
  199. display:flex;
  200. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  201. font-weight:700;
  202. font-style:normal;
  203. font-size:18px;
  204. }
  205. #u1428 .text {
  206. position:absolute;
  207. align-self:flex-start;
  208. padding:0px 0px 0px 0px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u1428_text {
  213. border-width:0px;
  214. white-space:nowrap;
  215. text-transform:none;
  216. }
  217. #u1429_div {
  218. border-width:0px;
  219. position:absolute;
  220. left:0px;
  221. top:0px;
  222. width:1104px;
  223. height:200px;
  224. background:inherit;
  225. background-color:rgba(255, 255, 255, 0);
  226. border:none;
  227. border-radius:0px;
  228. -moz-box-shadow:none;
  229. -webkit-box-shadow:none;
  230. box-shadow:none;
  231. font-size:16px;
  232. line-height:28px;
  233. }
  234. #u1429 {
  235. border-width:0px;
  236. position:absolute;
  237. left:59px;
  238. top:111px;
  239. width:1104px;
  240. height:200px;
  241. display:flex;
  242. font-size:16px;
  243. line-height:28px;
  244. }
  245. #u1429 .text {
  246. position:absolute;
  247. align-self:flex-start;
  248. padding:0px 0px 0px 0px;
  249. box-sizing:border-box;
  250. width:100%;
  251. }
  252. #u1429_text {
  253. border-width:0px;
  254. word-wrap:break-word;
  255. text-transform:none;
  256. }
  257. #u1430 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u1431_img {
  266. border-width:0px;
  267. position:absolute;
  268. left:-4px;
  269. top:-4px;
  270. width:40px;
  271. height:40px;
  272. }
  273. #u1431 {
  274. border-width:0px;
  275. position:absolute;
  276. left:1173px;
  277. top:269px;
  278. width:30px;
  279. height:30px;
  280. display:flex;
  281. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  282. font-weight:700;
  283. font-style:normal;
  284. font-size:18px;
  285. color:#1E1E1E;
  286. }
  287. #u1431 .text {
  288. position:absolute;
  289. align-self:center;
  290. padding:2px 2px 2px 2px;
  291. box-sizing:border-box;
  292. width:100%;
  293. }
  294. #u1431_text {
  295. border-width:0px;
  296. word-wrap:break-word;
  297. text-transform:none;
  298. }
  299. #u1432_div {
  300. border-width:0px;
  301. position:absolute;
  302. left:0px;
  303. top:0px;
  304. width:131px;
  305. height:18px;
  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. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  314. font-weight:700;
  315. font-style:normal;
  316. font-size:16px;
  317. }
  318. #u1432 {
  319. border-width:0px;
  320. position:absolute;
  321. left:1213px;
  322. top:276px;
  323. width:131px;
  324. height:18px;
  325. display:flex;
  326. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  327. font-weight:700;
  328. font-style:normal;
  329. font-size:16px;
  330. }
  331. #u1432 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:0px 0px 0px 0px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u1432_text {
  339. border-width:0px;
  340. word-wrap:break-word;
  341. text-transform:none;
  342. }
  343. #u1433_div {
  344. border-width:0px;
  345. position:absolute;
  346. left:0px;
  347. top:0px;
  348. width:352px;
  349. height:22px;
  350. background:inherit;
  351. background-color:rgba(255, 255, 255, 0);
  352. border:none;
  353. border-radius:0px;
  354. -moz-box-shadow:none;
  355. -webkit-box-shadow:none;
  356. box-shadow:none;
  357. line-height:22px;
  358. }
  359. #u1433 {
  360. border-width:0px;
  361. position:absolute;
  362. left:1213px;
  363. top:314px;
  364. width:352px;
  365. height:22px;
  366. display:flex;
  367. line-height:22px;
  368. }
  369. #u1433 .text {
  370. position:absolute;
  371. align-self:flex-start;
  372. padding:0px 0px 0px 0px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u1433_text {
  377. border-width:0px;
  378. word-wrap:break-word;
  379. text-transform:none;
  380. }
  381. #u1434_img {
  382. border-width:0px;
  383. position:absolute;
  384. left:-4px;
  385. top:-4px;
  386. width:30px;
  387. height:30px;
  388. }
  389. #u1434 {
  390. border-width:0px;
  391. position:absolute;
  392. left:778px;
  393. top:503px;
  394. width:20px;
  395. height:20px;
  396. display:flex;
  397. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  398. font-weight:700;
  399. font-style:normal;
  400. font-size:14px;
  401. color:#1E1E1E;
  402. }
  403. #u1434 .text {
  404. position:absolute;
  405. align-self:center;
  406. padding:2px 2px 2px 2px;
  407. box-sizing:border-box;
  408. width:100%;
  409. }
  410. #u1434_text {
  411. border-width:0px;
  412. word-wrap:break-word;
  413. text-transform:none;
  414. }
  415. #u1435_img {
  416. border-width:0px;
  417. position:absolute;
  418. left:-4px;
  419. top:-4px;
  420. width:30px;
  421. height:30px;
  422. }
  423. #u1435 {
  424. border-width:0px;
  425. position:absolute;
  426. left:784px;
  427. top:761px;
  428. width:20px;
  429. height:20px;
  430. display:flex;
  431. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  432. font-weight:700;
  433. font-style:normal;
  434. font-size:14px;
  435. color:#1E1E1E;
  436. }
  437. #u1435 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 2px 2px 2px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u1435_text {
  445. border-width:0px;
  446. word-wrap:break-word;
  447. text-transform:none;
  448. }
  449. #u1436 {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:0px;
  455. height:0px;
  456. }
  457. #u1437_img {
  458. border-width:0px;
  459. position:absolute;
  460. left:-4px;
  461. top:-4px;
  462. width:40px;
  463. height:40px;
  464. }
  465. #u1437 {
  466. border-width:0px;
  467. position:absolute;
  468. left:1173px;
  469. top:363px;
  470. width:30px;
  471. height:30px;
  472. display:flex;
  473. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  474. font-weight:700;
  475. font-style:normal;
  476. font-size:18px;
  477. color:#1E1E1E;
  478. }
  479. #u1437 .text {
  480. position:absolute;
  481. align-self:center;
  482. padding:2px 2px 2px 2px;
  483. box-sizing:border-box;
  484. width:100%;
  485. }
  486. #u1437_text {
  487. border-width:0px;
  488. word-wrap:break-word;
  489. text-transform:none;
  490. }
  491. #u1438_div {
  492. border-width:0px;
  493. position:absolute;
  494. left:0px;
  495. top:0px;
  496. width:198px;
  497. height:18px;
  498. background:inherit;
  499. background-color:rgba(255, 255, 255, 0);
  500. border:none;
  501. border-radius:0px;
  502. -moz-box-shadow:none;
  503. -webkit-box-shadow:none;
  504. box-shadow:none;
  505. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  506. font-weight:700;
  507. font-style:normal;
  508. font-size:16px;
  509. color:#FF0000;
  510. }
  511. #u1438 {
  512. border-width:0px;
  513. position:absolute;
  514. left:1213px;
  515. top:370px;
  516. width:198px;
  517. height:18px;
  518. display:flex;
  519. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  520. font-weight:700;
  521. font-style:normal;
  522. font-size:16px;
  523. color:#FF0000;
  524. }
  525. #u1438 .text {
  526. position:absolute;
  527. align-self:flex-start;
  528. padding:0px 0px 0px 0px;
  529. box-sizing:border-box;
  530. width:100%;
  531. }
  532. #u1438_text {
  533. border-width:0px;
  534. word-wrap:break-word;
  535. text-transform:none;
  536. }
  537. #u1439_div {
  538. border-width:0px;
  539. position:absolute;
  540. left:0px;
  541. top:0px;
  542. width:352px;
  543. height:88px;
  544. background:inherit;
  545. background-color:rgba(255, 255, 255, 0);
  546. border:none;
  547. border-radius:0px;
  548. -moz-box-shadow:none;
  549. -webkit-box-shadow:none;
  550. box-shadow:none;
  551. line-height:22px;
  552. }
  553. #u1439 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1213px;
  557. top:408px;
  558. width:352px;
  559. height:88px;
  560. display:flex;
  561. line-height:22px;
  562. }
  563. #u1439 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u1439_text {
  571. border-width:0px;
  572. word-wrap:break-word;
  573. text-transform:none;
  574. }
  575. #u1440_img {
  576. border-width:0px;
  577. position:absolute;
  578. left:-4px;
  579. top:-4px;
  580. width:30px;
  581. height:30px;
  582. }
  583. #u1440 {
  584. border-width:0px;
  585. position:absolute;
  586. left:992px;
  587. top:764px;
  588. width:20px;
  589. height:20px;
  590. display:flex;
  591. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  592. font-weight:700;
  593. font-style:normal;
  594. font-size:14px;
  595. color:#1E1E1E;
  596. }
  597. #u1440 .text {
  598. position:absolute;
  599. align-self:center;
  600. padding:2px 2px 2px 2px;
  601. box-sizing:border-box;
  602. width:100%;
  603. }
  604. #u1440_text {
  605. border-width:0px;
  606. word-wrap:break-word;
  607. text-transform:none;
  608. }
  609. #u1441_img {
  610. border-width:0px;
  611. position:absolute;
  612. left:-4px;
  613. top:-4px;
  614. width:30px;
  615. height:30px;
  616. }
  617. #u1441 {
  618. border-width:0px;
  619. position:absolute;
  620. left:1060px;
  621. top:764px;
  622. width:20px;
  623. height:20px;
  624. display:flex;
  625. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  626. font-weight:700;
  627. font-style:normal;
  628. font-size:14px;
  629. color:#1E1E1E;
  630. }
  631. #u1441 .text {
  632. position:absolute;
  633. align-self:center;
  634. padding:2px 2px 2px 2px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u1441_text {
  639. border-width:0px;
  640. word-wrap:break-word;
  641. text-transform:none;
  642. }
  643. #u1442 {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:0px;
  649. height:0px;
  650. }
  651. #u1443_img {
  652. border-width:0px;
  653. position:absolute;
  654. left:-4px;
  655. top:-4px;
  656. width:40px;
  657. height:40px;
  658. }
  659. #u1443 {
  660. border-width:0px;
  661. position:absolute;
  662. left:1173px;
  663. top:505px;
  664. width:30px;
  665. height:30px;
  666. display:flex;
  667. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  668. font-weight:700;
  669. font-style:normal;
  670. font-size:18px;
  671. color:#1E1E1E;
  672. }
  673. #u1443 .text {
  674. position:absolute;
  675. align-self:center;
  676. padding:2px 2px 2px 2px;
  677. box-sizing:border-box;
  678. width:100%;
  679. }
  680. #u1443_text {
  681. border-width:0px;
  682. word-wrap:break-word;
  683. text-transform:none;
  684. }
  685. #u1444_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:198px;
  691. height:18px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  700. font-weight:700;
  701. font-style:normal;
  702. font-size:16px;
  703. }
  704. #u1444 {
  705. border-width:0px;
  706. position:absolute;
  707. left:1213px;
  708. top:512px;
  709. width:198px;
  710. height:18px;
  711. display:flex;
  712. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  713. font-weight:700;
  714. font-style:normal;
  715. font-size:16px;
  716. }
  717. #u1444 .text {
  718. position:absolute;
  719. align-self:flex-start;
  720. padding:0px 0px 0px 0px;
  721. box-sizing:border-box;
  722. width:100%;
  723. }
  724. #u1444_text {
  725. border-width:0px;
  726. word-wrap:break-word;
  727. text-transform:none;
  728. }
  729. #u1445_div {
  730. border-width:0px;
  731. position:absolute;
  732. left:0px;
  733. top:0px;
  734. width:352px;
  735. height:154px;
  736. background:inherit;
  737. background-color:rgba(255, 255, 255, 0);
  738. border:none;
  739. border-radius:0px;
  740. -moz-box-shadow:none;
  741. -webkit-box-shadow:none;
  742. box-shadow:none;
  743. line-height:22px;
  744. }
  745. #u1445 {
  746. border-width:0px;
  747. position:absolute;
  748. left:1213px;
  749. top:550px;
  750. width:352px;
  751. height:154px;
  752. display:flex;
  753. line-height:22px;
  754. }
  755. #u1445 .text {
  756. position:absolute;
  757. align-self:flex-start;
  758. padding:0px 0px 0px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u1445_text {
  763. border-width:0px;
  764. word-wrap:break-word;
  765. text-transform:none;
  766. }
  767. #u1446 {
  768. border-width:0px;
  769. position:absolute;
  770. left:1320px;
  771. top:571px;
  772. width:71px;
  773. height:23px;
  774. overflow:hidden;
  775. background-image:url('../../resources/images/transparent.gif');
  776. }
  777. #u1447_div {
  778. border-width:0px;
  779. position:absolute;
  780. left:0px;
  781. top:0px;
  782. width:276px;
  783. height:89px;
  784. background:inherit;
  785. background-color:rgba(255, 255, 0, 1);
  786. box-sizing:border-box;
  787. border-width:1px;
  788. border-style:solid;
  789. border-color:rgba(0, 0, 0, 1);
  790. border-radius:10px;
  791. -moz-box-shadow:none;
  792. -webkit-box-shadow:none;
  793. box-shadow:none;
  794. color:#000000;
  795. text-align:left;
  796. line-height:18px;
  797. }
  798. #u1447 {
  799. border-width:0px;
  800. position:absolute;
  801. left:1247px;
  802. top:472px;
  803. width:276px;
  804. height:89px;
  805. display:flex;
  806. color:#000000;
  807. text-align:left;
  808. line-height:18px;
  809. }
  810. #u1447 .text {
  811. position:absolute;
  812. align-self:center;
  813. padding:2px 2px 2px 2px;
  814. box-sizing:border-box;
  815. width:100%;
  816. }
  817. #u1447_text {
  818. border-width:0px;
  819. word-wrap:break-word;
  820. text-transform:none;
  821. }
  822. #u1448 {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:0px;
  828. height:0px;
  829. }
  830. #u1449_img {
  831. border-width:0px;
  832. position:absolute;
  833. left:-4px;
  834. top:-4px;
  835. width:40px;
  836. height:40px;
  837. }
  838. #u1449 {
  839. border-width:0px;
  840. position:absolute;
  841. left:1173px;
  842. top:714px;
  843. width:30px;
  844. height:30px;
  845. display:flex;
  846. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  847. font-weight:700;
  848. font-style:normal;
  849. font-size:18px;
  850. color:#1E1E1E;
  851. }
  852. #u1449 .text {
  853. position:absolute;
  854. align-self:center;
  855. padding:2px 2px 2px 2px;
  856. box-sizing:border-box;
  857. width:100%;
  858. }
  859. #u1449_text {
  860. border-width:0px;
  861. word-wrap:break-word;
  862. text-transform:none;
  863. }
  864. #u1450_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:198px;
  870. height:18px;
  871. background:inherit;
  872. background-color:rgba(255, 255, 255, 0);
  873. border:none;
  874. border-radius:0px;
  875. -moz-box-shadow:none;
  876. -webkit-box-shadow:none;
  877. box-shadow:none;
  878. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  879. font-weight:700;
  880. font-style:normal;
  881. font-size:16px;
  882. }
  883. #u1450 {
  884. border-width:0px;
  885. position:absolute;
  886. left:1213px;
  887. top:721px;
  888. width:198px;
  889. height:18px;
  890. display:flex;
  891. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  892. font-weight:700;
  893. font-style:normal;
  894. font-size:16px;
  895. }
  896. #u1450 .text {
  897. position:absolute;
  898. align-self:flex-start;
  899. padding:0px 0px 0px 0px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u1450_text {
  904. border-width:0px;
  905. word-wrap:break-word;
  906. text-transform:none;
  907. }
  908. #u1451_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:352px;
  914. height:110px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 0);
  917. border:none;
  918. border-radius:0px;
  919. -moz-box-shadow:none;
  920. -webkit-box-shadow:none;
  921. box-shadow:none;
  922. line-height:22px;
  923. }
  924. #u1451 {
  925. border-width:0px;
  926. position:absolute;
  927. left:1213px;
  928. top:759px;
  929. width:352px;
  930. height:110px;
  931. display:flex;
  932. line-height:22px;
  933. }
  934. #u1451 .text {
  935. position:absolute;
  936. align-self:flex-start;
  937. padding:0px 0px 0px 0px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u1451_text {
  942. border-width:0px;
  943. word-wrap:break-word;
  944. text-transform:none;
  945. }
  946. #u1452_div {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:293px;
  952. height:123px;
  953. background:inherit;
  954. background-color:rgba(255, 255, 0, 1);
  955. box-sizing:border-box;
  956. border-width:1px;
  957. border-style:solid;
  958. border-color:rgba(0, 0, 0, 1);
  959. border-radius:10px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. color:#000000;
  964. text-align:left;
  965. line-height:18px;
  966. }
  967. #u1452 {
  968. border-width:0px;
  969. position:absolute;
  970. left:1230px;
  971. top:653px;
  972. width:293px;
  973. height:123px;
  974. display:flex;
  975. color:#000000;
  976. text-align:left;
  977. line-height:18px;
  978. }
  979. #u1452 .text {
  980. position:absolute;
  981. align-self:center;
  982. padding:2px 2px 2px 2px;
  983. box-sizing:border-box;
  984. width:100%;
  985. }
  986. #u1452_text {
  987. border-width:0px;
  988. word-wrap:break-word;
  989. text-transform:none;
  990. }
  991. #u1453 {
  992. border-width:0px;
  993. position:absolute;
  994. left:1300px;
  995. top:803px;
  996. width:119px;
  997. height:23px;
  998. overflow:hidden;
  999. background-image:url('../../resources/images/transparent.gif');
  1000. }
  1001. #u1454_img {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:-4px;
  1005. top:-4px;
  1006. width:30px;
  1007. height:30px;
  1008. }
  1009. #u1454 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:1016px;
  1013. top:472px;
  1014. width:20px;
  1015. height:20px;
  1016. display:flex;
  1017. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1018. font-weight:700;
  1019. font-style:normal;
  1020. font-size:14px;
  1021. color:#1E1E1E;
  1022. }
  1023. #u1454 .text {
  1024. position:absolute;
  1025. align-self:center;
  1026. padding:2px 2px 2px 2px;
  1027. box-sizing:border-box;
  1028. width:100%;
  1029. }
  1030. #u1454_text {
  1031. border-width:0px;
  1032. word-wrap:break-word;
  1033. text-transform:none;
  1034. }
  1035. #u1455_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:-4px;
  1039. top:-4px;
  1040. width:30px;
  1041. height:30px;
  1042. }
  1043. #u1455 {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:204px;
  1047. top:757px;
  1048. width:20px;
  1049. height:20px;
  1050. display:flex;
  1051. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1052. font-weight:700;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. color:#1E1E1E;
  1056. }
  1057. #u1455 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u1455_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. }
  1069. #u1456 {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:0px;
  1075. height:0px;
  1076. }
  1077. #u1457_img {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:-4px;
  1081. top:-4px;
  1082. width:40px;
  1083. height:40px;
  1084. }
  1085. #u1457 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:1173px;
  1089. top:2024px;
  1090. width:30px;
  1091. height:30px;
  1092. display:flex;
  1093. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1094. font-weight:700;
  1095. font-style:normal;
  1096. font-size:18px;
  1097. color:#1E1E1E;
  1098. }
  1099. #u1457 .text {
  1100. position:absolute;
  1101. align-self:center;
  1102. padding:2px 2px 2px 2px;
  1103. box-sizing:border-box;
  1104. width:100%;
  1105. }
  1106. #u1457_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. }
  1111. #u1458_div {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:131px;
  1117. height:18px;
  1118. background:inherit;
  1119. background-color:rgba(255, 255, 255, 0);
  1120. border:none;
  1121. border-radius:0px;
  1122. -moz-box-shadow:none;
  1123. -webkit-box-shadow:none;
  1124. box-shadow:none;
  1125. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1126. font-weight:700;
  1127. font-style:normal;
  1128. font-size:16px;
  1129. }
  1130. #u1458 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:1213px;
  1134. top:2031px;
  1135. width:131px;
  1136. height:18px;
  1137. display:flex;
  1138. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1139. font-weight:700;
  1140. font-style:normal;
  1141. font-size:16px;
  1142. }
  1143. #u1458 .text {
  1144. position:absolute;
  1145. align-self:flex-start;
  1146. padding:0px 0px 0px 0px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u1458_text {
  1151. border-width:0px;
  1152. word-wrap:break-word;
  1153. text-transform:none;
  1154. }
  1155. #u1459_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:352px;
  1161. height:44px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 0);
  1164. border:none;
  1165. border-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. line-height:22px;
  1170. }
  1171. #u1459 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:1213px;
  1175. top:2069px;
  1176. width:352px;
  1177. height:44px;
  1178. display:flex;
  1179. line-height:22px;
  1180. }
  1181. #u1459 .text {
  1182. position:absolute;
  1183. align-self:flex-start;
  1184. padding:0px 0px 0px 0px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u1459_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u1460 {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:0px;
  1199. height:0px;
  1200. }
  1201. #u1461_img {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:-4px;
  1205. top:-4px;
  1206. width:44px;
  1207. height:44px;
  1208. }
  1209. #u1461 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:1173px;
  1213. top:1773px;
  1214. width:34px;
  1215. height:34px;
  1216. display:flex;
  1217. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1218. font-weight:700;
  1219. font-style:normal;
  1220. font-size:26px;
  1221. }
  1222. #u1461 .text {
  1223. position:absolute;
  1224. align-self:center;
  1225. padding:2px 2px 2px 2px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u1461_text {
  1230. border-width:0px;
  1231. word-wrap:break-word;
  1232. text-transform:none;
  1233. }
  1234. #u1462_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:131px;
  1240. height:18px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 0);
  1243. border:none;
  1244. border-radius:0px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1249. font-weight:700;
  1250. font-style:normal;
  1251. font-size:16px;
  1252. }
  1253. #u1462 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:1213px;
  1257. top:1780px;
  1258. width:131px;
  1259. height:18px;
  1260. display:flex;
  1261. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1262. font-weight:700;
  1263. font-style:normal;
  1264. font-size:16px;
  1265. }
  1266. #u1462 .text {
  1267. position:absolute;
  1268. align-self:flex-start;
  1269. padding:0px 0px 0px 0px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u1462_text {
  1274. border-width:0px;
  1275. word-wrap:break-word;
  1276. text-transform:none;
  1277. }
  1278. #u1463_div {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:352px;
  1284. height:66px;
  1285. background:inherit;
  1286. background-color:rgba(255, 255, 255, 0);
  1287. border:none;
  1288. border-radius:0px;
  1289. -moz-box-shadow:none;
  1290. -webkit-box-shadow:none;
  1291. box-shadow:none;
  1292. line-height:22px;
  1293. }
  1294. #u1463 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:1213px;
  1298. top:1818px;
  1299. width:352px;
  1300. height:66px;
  1301. display:flex;
  1302. line-height:22px;
  1303. }
  1304. #u1463 .text {
  1305. position:absolute;
  1306. align-self:flex-start;
  1307. padding:0px 0px 0px 0px;
  1308. box-sizing:border-box;
  1309. width:100%;
  1310. }
  1311. #u1463_text {
  1312. border-width:0px;
  1313. word-wrap:break-word;
  1314. text-transform:none;
  1315. }
  1316. #u1464_img {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:-4px;
  1320. top:-4px;
  1321. width:30px;
  1322. height:30px;
  1323. }
  1324. #u1464 {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:981px;
  1328. top:653px;
  1329. width:20px;
  1330. height:20px;
  1331. display:flex;
  1332. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1333. font-weight:700;
  1334. font-style:normal;
  1335. font-size:14px;
  1336. color:#1E1E1E;
  1337. }
  1338. #u1464 .text {
  1339. position:absolute;
  1340. align-self:center;
  1341. padding:2px 2px 2px 2px;
  1342. box-sizing:border-box;
  1343. width:100%;
  1344. }
  1345. #u1464_text {
  1346. border-width:0px;
  1347. word-wrap:break-word;
  1348. text-transform:none;
  1349. }
  1350. #u1465_img {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:-4px;
  1354. top:-4px;
  1355. width:30px;
  1356. height:30px;
  1357. }
  1358. #u1465 {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:1023px;
  1362. top:653px;
  1363. width:20px;
  1364. height:20px;
  1365. display:flex;
  1366. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1367. font-weight:700;
  1368. font-style:normal;
  1369. font-size:14px;
  1370. color:#1E1E1E;
  1371. }
  1372. #u1465 .text {
  1373. position:absolute;
  1374. align-self:center;
  1375. padding:2px 2px 2px 2px;
  1376. box-sizing:border-box;
  1377. width:100%;
  1378. }
  1379. #u1465_text {
  1380. border-width:0px;
  1381. word-wrap:break-word;
  1382. text-transform:none;
  1383. }
  1384. #u1466_img {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:-4px;
  1388. top:-4px;
  1389. width:30px;
  1390. height:30px;
  1391. }
  1392. #u1466 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1068px;
  1396. top:653px;
  1397. width:20px;
  1398. height:20px;
  1399. display:flex;
  1400. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1401. font-weight:700;
  1402. font-style:normal;
  1403. font-size:14px;
  1404. color:#1E1E1E;
  1405. }
  1406. #u1466 .text {
  1407. position:absolute;
  1408. align-self:center;
  1409. padding:2px 2px 2px 2px;
  1410. box-sizing:border-box;
  1411. width:100%;
  1412. }
  1413. #u1466_text {
  1414. border-width:0px;
  1415. word-wrap:break-word;
  1416. text-transform:none;
  1417. }
  1418. #u1467 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:0px;
  1423. width:0px;
  1424. height:0px;
  1425. }
  1426. #u1468_img {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:-4px;
  1430. top:-4px;
  1431. width:40px;
  1432. height:40px;
  1433. }
  1434. #u1468 {
  1435. border-width:0px;
  1436. position:absolute;
  1437. left:1173px;
  1438. top:1028px;
  1439. width:30px;
  1440. height:30px;
  1441. display:flex;
  1442. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1443. font-weight:700;
  1444. font-style:normal;
  1445. font-size:18px;
  1446. color:#1E1E1E;
  1447. }
  1448. #u1468 .text {
  1449. position:absolute;
  1450. align-self:center;
  1451. padding:2px 2px 2px 2px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u1468_text {
  1456. border-width:0px;
  1457. word-wrap:break-word;
  1458. text-transform:none;
  1459. }
  1460. #u1469_div {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:131px;
  1466. height:18px;
  1467. background:inherit;
  1468. background-color:rgba(255, 255, 255, 0);
  1469. border:none;
  1470. border-radius:0px;
  1471. -moz-box-shadow:none;
  1472. -webkit-box-shadow:none;
  1473. box-shadow:none;
  1474. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1475. font-weight:700;
  1476. font-style:normal;
  1477. font-size:16px;
  1478. color:#FF0000;
  1479. }
  1480. #u1469 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:1213px;
  1484. top:1035px;
  1485. width:131px;
  1486. height:18px;
  1487. display:flex;
  1488. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1489. font-weight:700;
  1490. font-style:normal;
  1491. font-size:16px;
  1492. color:#FF0000;
  1493. }
  1494. #u1469 .text {
  1495. position:absolute;
  1496. align-self:flex-start;
  1497. padding:0px 0px 0px 0px;
  1498. box-sizing:border-box;
  1499. width:100%;
  1500. }
  1501. #u1469_text {
  1502. border-width:0px;
  1503. word-wrap:break-word;
  1504. text-transform:none;
  1505. }
  1506. #u1470_div {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:352px;
  1512. height:198px;
  1513. background:inherit;
  1514. background-color:rgba(255, 255, 255, 0);
  1515. border:none;
  1516. border-radius:0px;
  1517. -moz-box-shadow:none;
  1518. -webkit-box-shadow:none;
  1519. box-shadow:none;
  1520. line-height:22px;
  1521. }
  1522. #u1470 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:1213px;
  1526. top:1073px;
  1527. width:352px;
  1528. height:198px;
  1529. display:flex;
  1530. line-height:22px;
  1531. }
  1532. #u1470 .text {
  1533. position:absolute;
  1534. align-self:flex-start;
  1535. padding:0px 0px 0px 0px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u1470_text {
  1540. border-width:0px;
  1541. word-wrap:break-word;
  1542. text-transform:none;
  1543. }
  1544. #u1471 {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:1218px;
  1548. top:1035px;
  1549. width:86px;
  1550. height:23px;
  1551. overflow:hidden;
  1552. background-image:url('../../resources/images/transparent.gif');
  1553. }
  1554. #u1472_img {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:276px;
  1560. height:89px;
  1561. }
  1562. #u1472 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:1213px;
  1566. top:939px;
  1567. width:276px;
  1568. height:89px;
  1569. display:flex;
  1570. color:#000000;
  1571. text-align:left;
  1572. line-height:18px;
  1573. }
  1574. #u1472 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 2px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u1472_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. }
  1586. #u1473_img {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:-4px;
  1590. top:-4px;
  1591. width:30px;
  1592. height:30px;
  1593. }
  1594. #u1473 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:1108px;
  1598. top:653px;
  1599. width:20px;
  1600. height:20px;
  1601. display:flex;
  1602. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1603. font-weight:700;
  1604. font-style:normal;
  1605. font-size:14px;
  1606. color:#1E1E1E;
  1607. }
  1608. #u1473 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:2px 2px 2px 2px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u1473_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. }
  1620. #u1474 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:0px;
  1626. height:0px;
  1627. }
  1628. #u1475_img {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:-4px;
  1632. top:-4px;
  1633. width:40px;
  1634. height:40px;
  1635. }
  1636. #u1475 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:1173px;
  1640. top:1613px;
  1641. width:30px;
  1642. height:30px;
  1643. display:flex;
  1644. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1645. font-weight:700;
  1646. font-style:normal;
  1647. font-size:18px;
  1648. color:#1E1E1E;
  1649. }
  1650. #u1475 .text {
  1651. position:absolute;
  1652. align-self:center;
  1653. padding:2px 2px 2px 2px;
  1654. box-sizing:border-box;
  1655. width:100%;
  1656. }
  1657. #u1475_text {
  1658. border-width:0px;
  1659. word-wrap:break-word;
  1660. text-transform:none;
  1661. }
  1662. #u1476_div {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:0px;
  1666. top:0px;
  1667. width:131px;
  1668. height:18px;
  1669. background:inherit;
  1670. background-color:rgba(255, 255, 255, 0);
  1671. border:none;
  1672. border-radius:0px;
  1673. -moz-box-shadow:none;
  1674. -webkit-box-shadow:none;
  1675. box-shadow:none;
  1676. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1677. font-weight:700;
  1678. font-style:normal;
  1679. font-size:16px;
  1680. }
  1681. #u1476 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:1213px;
  1685. top:1620px;
  1686. width:131px;
  1687. height:18px;
  1688. display:flex;
  1689. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1690. font-weight:700;
  1691. font-style:normal;
  1692. font-size:16px;
  1693. }
  1694. #u1476 .text {
  1695. position:absolute;
  1696. align-self:flex-start;
  1697. padding:0px 0px 0px 0px;
  1698. box-sizing:border-box;
  1699. width:100%;
  1700. }
  1701. #u1476_text {
  1702. border-width:0px;
  1703. word-wrap:break-word;
  1704. text-transform:none;
  1705. }
  1706. #u1477_div {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:0px;
  1710. top:0px;
  1711. width:352px;
  1712. height:88px;
  1713. background:inherit;
  1714. background-color:rgba(255, 255, 255, 0);
  1715. border:none;
  1716. border-radius:0px;
  1717. -moz-box-shadow:none;
  1718. -webkit-box-shadow:none;
  1719. box-shadow:none;
  1720. line-height:22px;
  1721. }
  1722. #u1477 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:1213px;
  1726. top:1658px;
  1727. width:352px;
  1728. height:88px;
  1729. display:flex;
  1730. line-height:22px;
  1731. }
  1732. #u1477 .text {
  1733. position:absolute;
  1734. align-self:flex-start;
  1735. padding:0px 0px 0px 0px;
  1736. box-sizing:border-box;
  1737. width:100%;
  1738. }
  1739. #u1477_text {
  1740. border-width:0px;
  1741. word-wrap:break-word;
  1742. text-transform:none;
  1743. }
  1744. #u1478 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:0px;
  1750. height:0px;
  1751. }
  1752. #u1479_img {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:-4px;
  1756. top:-4px;
  1757. width:40px;
  1758. height:40px;
  1759. }
  1760. #u1479 {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:1173px;
  1764. top:1360px;
  1765. width:30px;
  1766. height:30px;
  1767. display:flex;
  1768. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1769. font-weight:700;
  1770. font-style:normal;
  1771. font-size:18px;
  1772. color:#1E1E1E;
  1773. }
  1774. #u1479 .text {
  1775. position:absolute;
  1776. align-self:center;
  1777. padding:2px 2px 2px 2px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u1479_text {
  1782. border-width:0px;
  1783. word-wrap:break-word;
  1784. text-transform:none;
  1785. }
  1786. #u1480_div {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:77px;
  1792. height:18px;
  1793. background:inherit;
  1794. background-color:rgba(255, 255, 255, 0);
  1795. border:none;
  1796. border-radius:0px;
  1797. -moz-box-shadow:none;
  1798. -webkit-box-shadow:none;
  1799. box-shadow:none;
  1800. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1801. font-weight:700;
  1802. font-style:normal;
  1803. font-size:16px;
  1804. color:#FF0000;
  1805. }
  1806. #u1480 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:1213px;
  1810. top:1367px;
  1811. width:77px;
  1812. height:18px;
  1813. display:flex;
  1814. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1815. font-weight:700;
  1816. font-style:normal;
  1817. font-size:16px;
  1818. color:#FF0000;
  1819. }
  1820. #u1480 .text {
  1821. position:absolute;
  1822. align-self:flex-start;
  1823. padding:0px 0px 0px 0px;
  1824. box-sizing:border-box;
  1825. width:100%;
  1826. }
  1827. #u1480_text {
  1828. border-width:0px;
  1829. word-wrap:break-word;
  1830. text-transform:none;
  1831. }
  1832. #u1481_div {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:352px;
  1838. height:198px;
  1839. background:inherit;
  1840. background-color:rgba(255, 255, 255, 0);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. line-height:22px;
  1847. }
  1848. #u1481 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:1213px;
  1852. top:1405px;
  1853. width:352px;
  1854. height:198px;
  1855. display:flex;
  1856. line-height:22px;
  1857. }
  1858. #u1481 .text {
  1859. position:absolute;
  1860. align-self:flex-start;
  1861. padding:0px 0px 0px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u1481_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. }
  1870. #u1482_img {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:1155px;
  1876. height:583px;
  1877. }
  1878. #u1482 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:8px;
  1882. top:1028px;
  1883. width:1155px;
  1884. height:583px;
  1885. display:flex;
  1886. }
  1887. #u1482 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 2px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u1482_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. visibility:hidden;
  1899. }
  1900. #u1483 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:0px;
  1906. height:0px;
  1907. }
  1908. #u1484_img {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:-4px;
  1912. top:-4px;
  1913. width:40px;
  1914. height:40px;
  1915. }
  1916. #u1484 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:1173px;
  1920. top:1903px;
  1921. width:30px;
  1922. height:30px;
  1923. display:flex;
  1924. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1925. font-weight:700;
  1926. font-style:normal;
  1927. font-size:18px;
  1928. color:#1E1E1E;
  1929. }
  1930. #u1484 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 2px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u1484_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. }
  1942. #u1485_div {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:131px;
  1948. height:18px;
  1949. background:inherit;
  1950. background-color:rgba(255, 255, 255, 0);
  1951. border:none;
  1952. border-radius:0px;
  1953. -moz-box-shadow:none;
  1954. -webkit-box-shadow:none;
  1955. box-shadow:none;
  1956. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1957. font-weight:700;
  1958. font-style:normal;
  1959. font-size:16px;
  1960. }
  1961. #u1485 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:1213px;
  1965. top:1910px;
  1966. width:131px;
  1967. height:18px;
  1968. display:flex;
  1969. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  1970. font-weight:700;
  1971. font-style:normal;
  1972. font-size:16px;
  1973. }
  1974. #u1485 .text {
  1975. position:absolute;
  1976. align-self:flex-start;
  1977. padding:0px 0px 0px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u1485_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u1486_div {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:352px;
  1992. height:66px;
  1993. background:inherit;
  1994. background-color:rgba(255, 255, 255, 0);
  1995. border:none;
  1996. border-radius:0px;
  1997. -moz-box-shadow:none;
  1998. -webkit-box-shadow:none;
  1999. box-shadow:none;
  2000. line-height:22px;
  2001. }
  2002. #u1486 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:1213px;
  2006. top:1948px;
  2007. width:352px;
  2008. height:66px;
  2009. display:flex;
  2010. line-height:22px;
  2011. }
  2012. #u1486 .text {
  2013. position:absolute;
  2014. align-self:flex-start;
  2015. padding:0px 0px 0px 0px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u1486_text {
  2020. border-width:0px;
  2021. word-wrap:break-word;
  2022. text-transform:none;
  2023. }
  2024. #u1487_img {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:1155px;
  2030. height:583px;
  2031. }
  2032. #u1487 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:8px;
  2036. top:1668px;
  2037. width:1155px;
  2038. height:583px;
  2039. display:flex;
  2040. }
  2041. #u1487 .text {
  2042. position:absolute;
  2043. align-self:center;
  2044. padding:2px 2px 2px 2px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u1487_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. visibility:hidden;
  2053. }
  2054. #u1488_div {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:209px;
  2060. height:21px;
  2061. background:inherit;
  2062. background-color:rgba(255, 255, 255, 0);
  2063. border:none;
  2064. border-radius:0px;
  2065. -moz-box-shadow:none;
  2066. -webkit-box-shadow:none;
  2067. box-shadow:none;
  2068. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2069. font-weight:700;
  2070. font-style:normal;
  2071. font-size:18px;
  2072. }
  2073. #u1488 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:8px;
  2077. top:1640px;
  2078. width:209px;
  2079. height:21px;
  2080. display:flex;
  2081. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2082. font-weight:700;
  2083. font-style:normal;
  2084. font-size:18px;
  2085. }
  2086. #u1488 .text {
  2087. position:absolute;
  2088. align-self:flex-start;
  2089. padding:0px 0px 0px 0px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u1488_text {
  2094. border-width:0px;
  2095. white-space:nowrap;
  2096. text-transform:none;
  2097. }
  2098. #u1489 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:1218px;
  2102. top:1365px;
  2103. width:59px;
  2104. height:23px;
  2105. overflow:hidden;
  2106. background-image:url('../../resources/images/transparent.gif');
  2107. }
  2108. #u1490_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:270px;
  2114. height:224px;
  2115. background:inherit;
  2116. background-color:rgba(255, 255, 0, 1);
  2117. box-sizing:border-box;
  2118. border-width:1px;
  2119. border-style:solid;
  2120. border-color:rgba(0, 0, 0, 1);
  2121. border-radius:10px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. color:#000000;
  2126. text-align:left;
  2127. line-height:18px;
  2128. }
  2129. #u1490 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:1213px;
  2133. top:1133px;
  2134. width:270px;
  2135. height:224px;
  2136. display:flex;
  2137. color:#000000;
  2138. text-align:left;
  2139. line-height:18px;
  2140. }
  2141. #u1490 .text {
  2142. position:absolute;
  2143. align-self:center;
  2144. padding:2px 2px 2px 2px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u1490_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. }
  2153. #u1491 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:1218px;
  2157. top:367px;
  2158. width:178px;
  2159. height:23px;
  2160. overflow:hidden;
  2161. background-image:url('../../resources/images/transparent.gif');
  2162. }
  2163. #u1492_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:291px;
  2169. height:96px;
  2170. background:inherit;
  2171. background-color:rgba(255, 255, 0, 1);
  2172. box-sizing:border-box;
  2173. border-width:1px;
  2174. border-style:solid;
  2175. border-color:rgba(0, 0, 0, 1);
  2176. border-radius:10px;
  2177. -moz-box-shadow:none;
  2178. -webkit-box-shadow:none;
  2179. box-shadow:none;
  2180. color:#000000;
  2181. text-align:left;
  2182. line-height:18px;
  2183. }
  2184. #u1492 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:1218px;
  2188. top:262px;
  2189. width:291px;
  2190. height:96px;
  2191. display:flex;
  2192. color:#000000;
  2193. text-align:left;
  2194. line-height:18px;
  2195. }
  2196. #u1492 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u1492_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u1493_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:209px;
  2214. height:21px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2223. font-weight:700;
  2224. font-style:normal;
  2225. font-size:18px;
  2226. }
  2227. #u1493 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:8px;
  2231. top:990px;
  2232. width:209px;
  2233. height:21px;
  2234. display:flex;
  2235. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2236. font-weight:700;
  2237. font-style:normal;
  2238. font-size:18px;
  2239. }
  2240. #u1493 .text {
  2241. position:absolute;
  2242. align-self:flex-start;
  2243. padding:0px 0px 0px 0px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u1493_text {
  2248. border-width:0px;
  2249. white-space:nowrap;
  2250. text-transform:none;
  2251. }
  2252. #u1494_div {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:245px;
  2258. height:21px;
  2259. background:inherit;
  2260. background-color:rgba(255, 255, 255, 0);
  2261. border:none;
  2262. border-radius:0px;
  2263. -moz-box-shadow:none;
  2264. -webkit-box-shadow:none;
  2265. box-shadow:none;
  2266. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2267. font-weight:700;
  2268. font-style:normal;
  2269. font-size:18px;
  2270. }
  2271. #u1494 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:8px;
  2275. top:2289px;
  2276. width:245px;
  2277. height:21px;
  2278. display:flex;
  2279. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2280. font-weight:700;
  2281. font-style:normal;
  2282. font-size:18px;
  2283. }
  2284. #u1494 .text {
  2285. position:absolute;
  2286. align-self:flex-start;
  2287. padding:0px 0px 0px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u1494_text {
  2292. border-width:0px;
  2293. white-space:nowrap;
  2294. text-transform:none;
  2295. }
  2296. #u1495_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:162px;
  2302. height:21px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2311. font-weight:700;
  2312. font-style:normal;
  2313. font-size:18px;
  2314. }
  2315. #u1495 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:8px;
  2319. top:2367px;
  2320. width:162px;
  2321. height:21px;
  2322. display:flex;
  2323. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2324. font-weight:700;
  2325. font-style:normal;
  2326. font-size:18px;
  2327. }
  2328. #u1495 .text {
  2329. position:absolute;
  2330. align-self:flex-start;
  2331. padding:0px 0px 0px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u1495_text {
  2336. border-width:0px;
  2337. white-space:nowrap;
  2338. text-transform:none;
  2339. }
  2340. #u1496_img {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:1155px;
  2346. height:583px;
  2347. }
  2348. #u1496 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:8px;
  2352. top:2399px;
  2353. width:1155px;
  2354. height:583px;
  2355. display:flex;
  2356. }
  2357. #u1496 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 2px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u1496_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. visibility:hidden;
  2369. }
  2370. #u1497_img {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:-4px;
  2374. top:-4px;
  2375. width:30px;
  2376. height:30px;
  2377. }
  2378. #u1497 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:212px;
  2382. top:2597px;
  2383. width:20px;
  2384. height:20px;
  2385. display:flex;
  2386. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2387. font-weight:700;
  2388. font-style:normal;
  2389. font-size:14px;
  2390. color:#1E1E1E;
  2391. }
  2392. #u1497 .text {
  2393. position:absolute;
  2394. align-self:center;
  2395. padding:2px 2px 2px 2px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u1497_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. }
  2404. #u1498_div {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:162px;
  2410. height:21px;
  2411. background:inherit;
  2412. background-color:rgba(255, 255, 255, 0);
  2413. border:none;
  2414. border-radius:0px;
  2415. -moz-box-shadow:none;
  2416. -webkit-box-shadow:none;
  2417. box-shadow:none;
  2418. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2419. font-weight:700;
  2420. font-style:normal;
  2421. font-size:18px;
  2422. }
  2423. #u1498 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:8px;
  2427. top:5738px;
  2428. width:162px;
  2429. height:21px;
  2430. display:flex;
  2431. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2432. font-weight:700;
  2433. font-style:normal;
  2434. font-size:18px;
  2435. }
  2436. #u1498 .text {
  2437. position:absolute;
  2438. align-self:flex-start;
  2439. padding:0px 0px 0px 0px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u1498_text {
  2444. border-width:0px;
  2445. white-space:nowrap;
  2446. text-transform:none;
  2447. }
  2448. #u1499_img {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:1155px;
  2454. height:583px;
  2455. }
  2456. #u1499 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:8px;
  2460. top:5779px;
  2461. width:1155px;
  2462. height:583px;
  2463. display:flex;
  2464. }
  2465. #u1499 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u1499_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u1500_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:-4px;
  2482. top:-4px;
  2483. width:30px;
  2484. height:30px;
  2485. }
  2486. #u1500 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:212px;
  2490. top:5971px;
  2491. width:20px;
  2492. height:20px;
  2493. display:flex;
  2494. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2495. font-weight:700;
  2496. font-style:normal;
  2497. font-size:14px;
  2498. color:#1E1E1E;
  2499. }
  2500. #u1500 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u1500_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. }
  2512. #u1501 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:0px;
  2518. height:0px;
  2519. }
  2520. #u1502_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:-4px;
  2524. top:-4px;
  2525. width:40px;
  2526. height:40px;
  2527. }
  2528. #u1502 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:1172px;
  2532. top:2400px;
  2533. width:30px;
  2534. height:30px;
  2535. display:flex;
  2536. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2537. font-weight:700;
  2538. font-style:normal;
  2539. font-size:18px;
  2540. color:#1E1E1E;
  2541. }
  2542. #u1502 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 2px 2px 2px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u1502_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u1503_div {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:131px;
  2560. height:18px;
  2561. background:inherit;
  2562. background-color:rgba(255, 255, 255, 0);
  2563. border:none;
  2564. border-radius:0px;
  2565. -moz-box-shadow:none;
  2566. -webkit-box-shadow:none;
  2567. box-shadow:none;
  2568. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2569. font-weight:700;
  2570. font-style:normal;
  2571. font-size:16px;
  2572. }
  2573. #u1503 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:1212px;
  2577. top:2407px;
  2578. width:131px;
  2579. height:18px;
  2580. display:flex;
  2581. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2582. font-weight:700;
  2583. font-style:normal;
  2584. font-size:16px;
  2585. }
  2586. #u1503 .text {
  2587. position:absolute;
  2588. align-self:flex-start;
  2589. padding:0px 0px 0px 0px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u1503_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. }
  2598. #u1504_div {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:352px;
  2604. height:154px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 255, 0);
  2607. border:none;
  2608. border-radius:0px;
  2609. -moz-box-shadow:none;
  2610. -webkit-box-shadow:none;
  2611. box-shadow:none;
  2612. line-height:22px;
  2613. }
  2614. #u1504 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:1212px;
  2618. top:2445px;
  2619. width:352px;
  2620. height:154px;
  2621. display:flex;
  2622. line-height:22px;
  2623. }
  2624. #u1504 .text {
  2625. position:absolute;
  2626. align-self:flex-start;
  2627. padding:0px 0px 0px 0px;
  2628. box-sizing:border-box;
  2629. width:100%;
  2630. }
  2631. #u1504_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. }
  2636. #u1505 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:1355px;
  2640. top:2554px;
  2641. width:93px;
  2642. height:25px;
  2643. overflow:hidden;
  2644. background-image:url('../../resources/images/transparent.gif');
  2645. }
  2646. #u1506_div {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:279px;
  2652. height:105px;
  2653. background:inherit;
  2654. background-color:rgba(255, 255, 0, 1);
  2655. box-sizing:border-box;
  2656. border-width:1px;
  2657. border-style:solid;
  2658. border-color:rgba(0, 0, 0, 1);
  2659. border-radius:10px;
  2660. -moz-box-shadow:none;
  2661. -webkit-box-shadow:none;
  2662. box-shadow:none;
  2663. text-align:left;
  2664. line-height:18px;
  2665. }
  2666. #u1506 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:1249px;
  2670. top:2439px;
  2671. width:279px;
  2672. height:105px;
  2673. display:flex;
  2674. text-align:left;
  2675. line-height:18px;
  2676. }
  2677. #u1506 .text {
  2678. position:absolute;
  2679. align-self:flex-end;
  2680. padding:2px 2px 2px 2px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u1506_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. }
  2689. #u1507 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:1374px;
  2693. top:2490px;
  2694. width:54px;
  2695. height:20px;
  2696. overflow:hidden;
  2697. background-image:url('../../resources/images/transparent.gif');
  2698. }
  2699. #u1508 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:1285px;
  2703. top:2574px;
  2704. width:70px;
  2705. height:25px;
  2706. overflow:hidden;
  2707. background-image:url('../../resources/images/transparent.gif');
  2708. }
  2709. #u1509_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:1155px;
  2715. height:583px;
  2716. }
  2717. #u1509 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:8px;
  2721. top:6430px;
  2722. width:1155px;
  2723. height:583px;
  2724. display:flex;
  2725. }
  2726. #u1509 .text {
  2727. position:absolute;
  2728. align-self:center;
  2729. padding:2px 2px 2px 2px;
  2730. box-sizing:border-box;
  2731. width:100%;
  2732. }
  2733. #u1509_text {
  2734. border-width:0px;
  2735. word-wrap:break-word;
  2736. text-transform:none;
  2737. visibility:hidden;
  2738. }
  2739. #u1510_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:234px;
  2745. height:21px;
  2746. background:inherit;
  2747. background-color:rgba(255, 255, 255, 0);
  2748. border:none;
  2749. border-radius:0px;
  2750. -moz-box-shadow:none;
  2751. -webkit-box-shadow:none;
  2752. box-shadow:none;
  2753. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2754. font-weight:700;
  2755. font-style:normal;
  2756. font-size:18px;
  2757. }
  2758. #u1510 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:8px;
  2762. top:6398px;
  2763. width:234px;
  2764. height:21px;
  2765. display:flex;
  2766. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2767. font-weight:700;
  2768. font-style:normal;
  2769. font-size:18px;
  2770. }
  2771. #u1510 .text {
  2772. position:absolute;
  2773. align-self:flex-start;
  2774. padding:0px 0px 0px 0px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u1510_text {
  2779. border-width:0px;
  2780. word-wrap:break-word;
  2781. text-transform:none;
  2782. }
  2783. #u1511_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:1155px;
  2789. height:583px;
  2790. }
  2791. #u1511 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:8px;
  2795. top:7104px;
  2796. width:1155px;
  2797. height:583px;
  2798. display:flex;
  2799. }
  2800. #u1511 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u1511_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u1512_div {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:234px;
  2819. height:21px;
  2820. background:inherit;
  2821. background-color:rgba(255, 255, 255, 0);
  2822. border:none;
  2823. border-radius:0px;
  2824. -moz-box-shadow:none;
  2825. -webkit-box-shadow:none;
  2826. box-shadow:none;
  2827. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2828. font-weight:700;
  2829. font-style:normal;
  2830. font-size:18px;
  2831. }
  2832. #u1512 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:8px;
  2836. top:7072px;
  2837. width:234px;
  2838. height:21px;
  2839. display:flex;
  2840. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2841. font-weight:700;
  2842. font-style:normal;
  2843. font-size:18px;
  2844. }
  2845. #u1512 .text {
  2846. position:absolute;
  2847. align-self:flex-start;
  2848. padding:0px 0px 0px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u1512_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. }
  2857. #u1513 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:0px;
  2863. height:0px;
  2864. }
  2865. #u1514_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:-4px;
  2869. top:-4px;
  2870. width:44px;
  2871. height:44px;
  2872. }
  2873. #u1514 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:1173px;
  2877. top:6008px;
  2878. width:34px;
  2879. height:34px;
  2880. display:flex;
  2881. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2882. font-weight:700;
  2883. font-style:normal;
  2884. font-size:26px;
  2885. }
  2886. #u1514 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 2px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u1514_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. }
  2898. #u1515_div {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:131px;
  2904. height:18px;
  2905. background:inherit;
  2906. background-color:rgba(255, 255, 255, 0);
  2907. border:none;
  2908. border-radius:0px;
  2909. -moz-box-shadow:none;
  2910. -webkit-box-shadow:none;
  2911. box-shadow:none;
  2912. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2913. font-weight:700;
  2914. font-style:normal;
  2915. font-size:16px;
  2916. }
  2917. #u1515 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:1213px;
  2921. top:6015px;
  2922. width:131px;
  2923. height:18px;
  2924. display:flex;
  2925. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  2926. font-weight:700;
  2927. font-style:normal;
  2928. font-size:16px;
  2929. }
  2930. #u1515 .text {
  2931. position:absolute;
  2932. align-self:flex-start;
  2933. padding:0px 0px 0px 0px;
  2934. box-sizing:border-box;
  2935. width:100%;
  2936. }
  2937. #u1515_text {
  2938. border-width:0px;
  2939. word-wrap:break-word;
  2940. text-transform:none;
  2941. }
  2942. #u1516_div {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:352px;
  2948. height:66px;
  2949. background:inherit;
  2950. background-color:rgba(255, 255, 255, 0);
  2951. border:none;
  2952. border-radius:0px;
  2953. -moz-box-shadow:none;
  2954. -webkit-box-shadow:none;
  2955. box-shadow:none;
  2956. line-height:22px;
  2957. }
  2958. #u1516 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:1213px;
  2962. top:6053px;
  2963. width:352px;
  2964. height:66px;
  2965. display:flex;
  2966. line-height:22px;
  2967. }
  2968. #u1516 .text {
  2969. position:absolute;
  2970. align-self:flex-start;
  2971. padding:0px 0px 0px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u1516_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. }
  2980. #u1517 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:0px;
  2986. height:0px;
  2987. }
  2988. #u1518_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:-4px;
  2992. top:-4px;
  2993. width:44px;
  2994. height:44px;
  2995. }
  2996. #u1518 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:1173px;
  3000. top:6134px;
  3001. width:34px;
  3002. height:34px;
  3003. display:flex;
  3004. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3005. font-weight:700;
  3006. font-style:normal;
  3007. font-size:26px;
  3008. }
  3009. #u1518 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:2px 2px 2px 2px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u1518_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. }
  3021. #u1519_div {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:131px;
  3027. height:18px;
  3028. background:inherit;
  3029. background-color:rgba(255, 255, 255, 0);
  3030. border:none;
  3031. border-radius:0px;
  3032. -moz-box-shadow:none;
  3033. -webkit-box-shadow:none;
  3034. box-shadow:none;
  3035. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3036. font-weight:700;
  3037. font-style:normal;
  3038. font-size:16px;
  3039. }
  3040. #u1519 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:1213px;
  3044. top:6141px;
  3045. width:131px;
  3046. height:18px;
  3047. display:flex;
  3048. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3049. font-weight:700;
  3050. font-style:normal;
  3051. font-size:16px;
  3052. }
  3053. #u1519 .text {
  3054. position:absolute;
  3055. align-self:flex-start;
  3056. padding:0px 0px 0px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u1519_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. }
  3065. #u1520_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:352px;
  3071. height:88px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 0);
  3074. border:none;
  3075. border-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. line-height:22px;
  3080. }
  3081. #u1520 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:1213px;
  3085. top:6179px;
  3086. width:352px;
  3087. height:88px;
  3088. display:flex;
  3089. line-height:22px;
  3090. }
  3091. #u1520 .text {
  3092. position:absolute;
  3093. align-self:flex-start;
  3094. padding:0px 0px 0px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u1520_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. }
  3103. #u1521_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:-4px;
  3107. top:-4px;
  3108. width:30px;
  3109. height:30px;
  3110. }
  3111. #u1521 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:916px;
  3115. top:2657px;
  3116. width:20px;
  3117. height:20px;
  3118. display:flex;
  3119. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3120. font-weight:700;
  3121. font-style:normal;
  3122. font-size:14px;
  3123. color:#1E1E1E;
  3124. }
  3125. #u1521 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 2px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u1521_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. }
  3137. #u1522 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:0px;
  3143. height:0px;
  3144. }
  3145. #u1523_img {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:-4px;
  3149. top:-4px;
  3150. width:40px;
  3151. height:40px;
  3152. }
  3153. #u1523 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:1173px;
  3157. top:2624px;
  3158. width:30px;
  3159. height:30px;
  3160. display:flex;
  3161. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3162. font-weight:700;
  3163. font-style:normal;
  3164. font-size:18px;
  3165. color:#1E1E1E;
  3166. }
  3167. #u1523 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:2px 2px 2px 2px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u1523_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. }
  3179. #u1524_div {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:131px;
  3185. height:18px;
  3186. background:inherit;
  3187. background-color:rgba(255, 255, 255, 0);
  3188. border:none;
  3189. border-radius:0px;
  3190. -moz-box-shadow:none;
  3191. -webkit-box-shadow:none;
  3192. box-shadow:none;
  3193. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3194. font-weight:700;
  3195. font-style:normal;
  3196. font-size:16px;
  3197. }
  3198. #u1524 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1213px;
  3202. top:2631px;
  3203. width:131px;
  3204. height:18px;
  3205. display:flex;
  3206. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3207. font-weight:700;
  3208. font-style:normal;
  3209. font-size:16px;
  3210. }
  3211. #u1524 .text {
  3212. position:absolute;
  3213. align-self:flex-start;
  3214. padding:0px 0px 0px 0px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u1524_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. }
  3223. #u1525_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:352px;
  3229. height:22px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border:none;
  3233. border-radius:0px;
  3234. -moz-box-shadow:none;
  3235. -webkit-box-shadow:none;
  3236. box-shadow:none;
  3237. line-height:22px;
  3238. }
  3239. #u1525 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:1213px;
  3243. top:2669px;
  3244. width:352px;
  3245. height:22px;
  3246. display:flex;
  3247. line-height:22px;
  3248. }
  3249. #u1525 .text {
  3250. position:absolute;
  3251. align-self:flex-start;
  3252. padding:0px 0px 0px 0px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u1525_text {
  3257. border-width:0px;
  3258. word-wrap:break-word;
  3259. text-transform:none;
  3260. }
  3261. #u1526_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:-4px;
  3265. top:-4px;
  3266. width:30px;
  3267. height:30px;
  3268. }
  3269. #u1526 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:850px;
  3273. top:2657px;
  3274. width:20px;
  3275. height:20px;
  3276. display:flex;
  3277. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3278. font-weight:700;
  3279. font-style:normal;
  3280. font-size:14px;
  3281. color:#1E1E1E;
  3282. }
  3283. #u1526 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 2px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u1526_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. }
  3295. #u1527 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:0px;
  3301. height:0px;
  3302. }
  3303. #u1528_img {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:-4px;
  3307. top:-4px;
  3308. width:40px;
  3309. height:40px;
  3310. }
  3311. #u1528 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:1173px;
  3315. top:2711px;
  3316. width:30px;
  3317. height:30px;
  3318. display:flex;
  3319. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3320. font-weight:700;
  3321. font-style:normal;
  3322. font-size:18px;
  3323. color:#1E1E1E;
  3324. }
  3325. #u1528 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 2px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u1528_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. }
  3337. #u1529_div {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:131px;
  3343. height:18px;
  3344. background:inherit;
  3345. background-color:rgba(255, 255, 255, 0);
  3346. border:none;
  3347. border-radius:0px;
  3348. -moz-box-shadow:none;
  3349. -webkit-box-shadow:none;
  3350. box-shadow:none;
  3351. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3352. font-weight:700;
  3353. font-style:normal;
  3354. font-size:16px;
  3355. }
  3356. #u1529 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:1213px;
  3360. top:2718px;
  3361. width:131px;
  3362. height:18px;
  3363. display:flex;
  3364. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3365. font-weight:700;
  3366. font-style:normal;
  3367. font-size:16px;
  3368. }
  3369. #u1529 .text {
  3370. position:absolute;
  3371. align-self:flex-start;
  3372. padding:0px 0px 0px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u1529_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. }
  3381. #u1530_div {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:352px;
  3387. height:44px;
  3388. background:inherit;
  3389. background-color:rgba(255, 255, 255, 0);
  3390. border:none;
  3391. border-radius:0px;
  3392. -moz-box-shadow:none;
  3393. -webkit-box-shadow:none;
  3394. box-shadow:none;
  3395. line-height:22px;
  3396. }
  3397. #u1530 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:1213px;
  3401. top:2756px;
  3402. width:352px;
  3403. height:44px;
  3404. display:flex;
  3405. line-height:22px;
  3406. }
  3407. #u1530 .text {
  3408. position:absolute;
  3409. align-self:flex-start;
  3410. padding:0px 0px 0px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u1530_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. }
  3419. #u1531_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:1155px;
  3425. height:583px;
  3426. }
  3427. #u1531 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:8px;
  3431. top:4404px;
  3432. width:1155px;
  3433. height:583px;
  3434. display:flex;
  3435. }
  3436. #u1531 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 2px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u1531_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u1532_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:1155px;
  3455. height:583px;
  3456. }
  3457. #u1532 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:8px;
  3461. top:5045px;
  3462. width:1155px;
  3463. height:583px;
  3464. display:flex;
  3465. }
  3466. #u1532 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 2px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u1532_text {
  3474. border-width:0px;
  3475. word-wrap:break-word;
  3476. text-transform:none;
  3477. visibility:hidden;
  3478. }
  3479. #u1533_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:-4px;
  3483. top:-4px;
  3484. width:30px;
  3485. height:30px;
  3486. }
  3487. #u1533 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:224px;
  3491. top:5245px;
  3492. width:20px;
  3493. height:20px;
  3494. display:flex;
  3495. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3496. font-weight:700;
  3497. font-style:normal;
  3498. font-size:14px;
  3499. color:#1E1E1E;
  3500. }
  3501. #u1533 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 2px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u1533_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. }
  3513. #u1534 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:0px;
  3519. height:0px;
  3520. }
  3521. #u1535_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:-4px;
  3525. top:-4px;
  3526. width:40px;
  3527. height:40px;
  3528. }
  3529. #u1535 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:1173px;
  3533. top:5045px;
  3534. width:30px;
  3535. height:30px;
  3536. display:flex;
  3537. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3538. font-weight:700;
  3539. font-style:normal;
  3540. font-size:18px;
  3541. color:#1E1E1E;
  3542. }
  3543. #u1535 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 2px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u1535_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. }
  3555. #u1536_div {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:131px;
  3561. height:18px;
  3562. background:inherit;
  3563. background-color:rgba(255, 255, 255, 0);
  3564. border:none;
  3565. border-radius:0px;
  3566. -moz-box-shadow:none;
  3567. -webkit-box-shadow:none;
  3568. box-shadow:none;
  3569. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3570. font-weight:700;
  3571. font-style:normal;
  3572. font-size:16px;
  3573. }
  3574. #u1536 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:1213px;
  3578. top:5052px;
  3579. width:131px;
  3580. height:18px;
  3581. display:flex;
  3582. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3583. font-weight:700;
  3584. font-style:normal;
  3585. font-size:16px;
  3586. }
  3587. #u1536 .text {
  3588. position:absolute;
  3589. align-self:flex-start;
  3590. padding:0px 0px 0px 0px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u1536_text {
  3595. border-width:0px;
  3596. word-wrap:break-word;
  3597. text-transform:none;
  3598. }
  3599. #u1537_div {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:352px;
  3605. height:22px;
  3606. background:inherit;
  3607. background-color:rgba(255, 255, 255, 0);
  3608. border:none;
  3609. border-radius:0px;
  3610. -moz-box-shadow:none;
  3611. -webkit-box-shadow:none;
  3612. box-shadow:none;
  3613. line-height:22px;
  3614. }
  3615. #u1537 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:1213px;
  3619. top:5090px;
  3620. width:352px;
  3621. height:22px;
  3622. display:flex;
  3623. line-height:22px;
  3624. }
  3625. #u1537 .text {
  3626. position:absolute;
  3627. align-self:flex-start;
  3628. padding:0px 0px 0px 0px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u1537_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. }
  3637. #u1538 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:0px;
  3643. height:0px;
  3644. }
  3645. #u1539_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:-4px;
  3649. top:-4px;
  3650. width:44px;
  3651. height:44px;
  3652. }
  3653. #u1539 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:1173px;
  3657. top:5122px;
  3658. width:34px;
  3659. height:34px;
  3660. display:flex;
  3661. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3662. font-weight:700;
  3663. font-style:normal;
  3664. font-size:26px;
  3665. }
  3666. #u1539 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 2px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u1539_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. }
  3678. #u1540_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:131px;
  3684. height:18px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 0);
  3687. border:none;
  3688. border-radius:0px;
  3689. -moz-box-shadow:none;
  3690. -webkit-box-shadow:none;
  3691. box-shadow:none;
  3692. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3693. font-weight:700;
  3694. font-style:normal;
  3695. font-size:16px;
  3696. }
  3697. #u1540 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:1213px;
  3701. top:5129px;
  3702. width:131px;
  3703. height:18px;
  3704. display:flex;
  3705. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3706. font-weight:700;
  3707. font-style:normal;
  3708. font-size:16px;
  3709. }
  3710. #u1540 .text {
  3711. position:absolute;
  3712. align-self:flex-start;
  3713. padding:0px 0px 0px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u1540_text {
  3718. border-width:0px;
  3719. word-wrap:break-word;
  3720. text-transform:none;
  3721. }
  3722. #u1541_div {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:352px;
  3728. height:44px;
  3729. background:inherit;
  3730. background-color:rgba(255, 255, 255, 0);
  3731. border:none;
  3732. border-radius:0px;
  3733. -moz-box-shadow:none;
  3734. -webkit-box-shadow:none;
  3735. box-shadow:none;
  3736. line-height:22px;
  3737. }
  3738. #u1541 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:1213px;
  3742. top:5167px;
  3743. width:352px;
  3744. height:44px;
  3745. display:flex;
  3746. line-height:22px;
  3747. }
  3748. #u1541 .text {
  3749. position:absolute;
  3750. align-self:flex-start;
  3751. padding:0px 0px 0px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u1541_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. }
  3760. #u1542 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:0px;
  3766. height:0px;
  3767. }
  3768. #u1543_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:-4px;
  3772. top:-4px;
  3773. width:40px;
  3774. height:40px;
  3775. }
  3776. #u1543 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:1173px;
  3780. top:5235px;
  3781. width:30px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3785. font-weight:700;
  3786. font-style:normal;
  3787. font-size:18px;
  3788. color:#1E1E1E;
  3789. }
  3790. #u1543 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 2px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u1543_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. }
  3802. #u1544_div {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:107px;
  3808. height:18px;
  3809. background:inherit;
  3810. background-color:rgba(255, 255, 255, 0);
  3811. border:none;
  3812. border-radius:0px;
  3813. -moz-box-shadow:none;
  3814. -webkit-box-shadow:none;
  3815. box-shadow:none;
  3816. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3817. font-weight:700;
  3818. font-style:normal;
  3819. font-size:16px;
  3820. }
  3821. #u1544 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:1213px;
  3825. top:5242px;
  3826. width:107px;
  3827. height:18px;
  3828. display:flex;
  3829. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3830. font-weight:700;
  3831. font-style:normal;
  3832. font-size:16px;
  3833. }
  3834. #u1544 .text {
  3835. position:absolute;
  3836. align-self:flex-start;
  3837. padding:0px 0px 0px 0px;
  3838. box-sizing:border-box;
  3839. width:100%;
  3840. }
  3841. #u1544_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. }
  3846. #u1545_div {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:0px;
  3851. width:352px;
  3852. height:33px;
  3853. background:inherit;
  3854. background-color:rgba(255, 255, 255, 0);
  3855. border:none;
  3856. border-radius:0px;
  3857. -moz-box-shadow:none;
  3858. -webkit-box-shadow:none;
  3859. box-shadow:none;
  3860. line-height:22px;
  3861. }
  3862. #u1545 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:1213px;
  3866. top:5280px;
  3867. width:352px;
  3868. height:33px;
  3869. display:flex;
  3870. line-height:22px;
  3871. }
  3872. #u1545 .text {
  3873. position:absolute;
  3874. align-self:flex-start;
  3875. padding:0px 0px 0px 0px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u1545_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. }
  3884. #u1546 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:0px;
  3890. height:0px;
  3891. }
  3892. #u1547_img {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:-4px;
  3896. top:-4px;
  3897. width:40px;
  3898. height:40px;
  3899. }
  3900. #u1547 {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:1173px;
  3904. top:5327px;
  3905. width:30px;
  3906. height:30px;
  3907. display:flex;
  3908. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3909. font-weight:700;
  3910. font-style:normal;
  3911. font-size:18px;
  3912. color:#1E1E1E;
  3913. }
  3914. #u1547 .text {
  3915. position:absolute;
  3916. align-self:center;
  3917. padding:2px 2px 2px 2px;
  3918. box-sizing:border-box;
  3919. width:100%;
  3920. }
  3921. #u1547_text {
  3922. border-width:0px;
  3923. word-wrap:break-word;
  3924. text-transform:none;
  3925. }
  3926. #u1548_div {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:107px;
  3932. height:18px;
  3933. background:inherit;
  3934. background-color:rgba(255, 255, 255, 0);
  3935. border:none;
  3936. border-radius:0px;
  3937. -moz-box-shadow:none;
  3938. -webkit-box-shadow:none;
  3939. box-shadow:none;
  3940. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3941. font-weight:700;
  3942. font-style:normal;
  3943. font-size:16px;
  3944. }
  3945. #u1548 {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:1213px;
  3949. top:5334px;
  3950. width:107px;
  3951. height:18px;
  3952. display:flex;
  3953. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  3954. font-weight:700;
  3955. font-style:normal;
  3956. font-size:16px;
  3957. }
  3958. #u1548 .text {
  3959. position:absolute;
  3960. align-self:flex-start;
  3961. padding:0px 0px 0px 0px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u1548_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. }
  3970. #u1549_div {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:352px;
  3976. height:44px;
  3977. background:inherit;
  3978. background-color:rgba(255, 255, 255, 0);
  3979. border:none;
  3980. border-radius:0px;
  3981. -moz-box-shadow:none;
  3982. -webkit-box-shadow:none;
  3983. box-shadow:none;
  3984. line-height:22px;
  3985. }
  3986. #u1549 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:1213px;
  3990. top:5376px;
  3991. width:352px;
  3992. height:44px;
  3993. display:flex;
  3994. line-height:22px;
  3995. }
  3996. #u1549 .text {
  3997. position:absolute;
  3998. align-self:flex-start;
  3999. padding:0px 0px 0px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u1549_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. }
  4008. #u1550_img {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:-4px;
  4012. top:-4px;
  4013. width:30px;
  4014. height:30px;
  4015. }
  4016. #u1550 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:151px;
  4020. top:5245px;
  4021. width:20px;
  4022. height:20px;
  4023. display:flex;
  4024. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4025. font-weight:700;
  4026. font-style:normal;
  4027. font-size:14px;
  4028. color:#1E1E1E;
  4029. }
  4030. #u1550 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 2px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u1550_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. }
  4042. #u1551_img {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:-4px;
  4046. top:-4px;
  4047. width:30px;
  4048. height:30px;
  4049. }
  4050. #u1551 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:304px;
  4054. top:5245px;
  4055. width:20px;
  4056. height:20px;
  4057. display:flex;
  4058. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4059. font-weight:700;
  4060. font-style:normal;
  4061. font-size:14px;
  4062. color:#1E1E1E;
  4063. }
  4064. #u1551 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 2px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u1551_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. }
  4076. #u1552_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:-4px;
  4080. top:-4px;
  4081. width:30px;
  4082. height:30px;
  4083. }
  4084. #u1552 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:375px;
  4088. top:5245px;
  4089. width:20px;
  4090. height:20px;
  4091. display:flex;
  4092. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4093. font-weight:700;
  4094. font-style:normal;
  4095. font-size:14px;
  4096. color:#1E1E1E;
  4097. }
  4098. #u1552 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 2px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u1552_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. }
  4110. #u1553_img {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:1155px;
  4116. height:583px;
  4117. }
  4118. #u1553 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:8px;
  4122. top:7773px;
  4123. width:1155px;
  4124. height:583px;
  4125. display:flex;
  4126. }
  4127. #u1553 .text {
  4128. position:absolute;
  4129. align-self:center;
  4130. padding:2px 2px 2px 2px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u1553_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. visibility:hidden;
  4139. }
  4140. #u1554_img {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:-4px;
  4144. top:-4px;
  4145. width:30px;
  4146. height:30px;
  4147. }
  4148. #u1554 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:202px;
  4152. top:7955px;
  4153. width:20px;
  4154. height:20px;
  4155. display:flex;
  4156. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4157. font-weight:700;
  4158. font-style:normal;
  4159. font-size:14px;
  4160. color:#1E1E1E;
  4161. }
  4162. #u1554 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 2px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u1554_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. }
  4174. #u1555 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:0px;
  4180. height:0px;
  4181. }
  4182. #u1556_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:-4px;
  4186. top:-4px;
  4187. width:44px;
  4188. height:44px;
  4189. }
  4190. #u1556 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:1173px;
  4194. top:7773px;
  4195. width:34px;
  4196. height:34px;
  4197. display:flex;
  4198. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4199. font-weight:700;
  4200. font-style:normal;
  4201. font-size:26px;
  4202. }
  4203. #u1556 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u1556_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. }
  4215. #u1557_div {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:131px;
  4221. height:18px;
  4222. background:inherit;
  4223. background-color:rgba(255, 255, 255, 0);
  4224. border:none;
  4225. border-radius:0px;
  4226. -moz-box-shadow:none;
  4227. -webkit-box-shadow:none;
  4228. box-shadow:none;
  4229. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4230. font-weight:700;
  4231. font-style:normal;
  4232. font-size:16px;
  4233. }
  4234. #u1557 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:1213px;
  4238. top:7780px;
  4239. width:131px;
  4240. height:18px;
  4241. display:flex;
  4242. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4243. font-weight:700;
  4244. font-style:normal;
  4245. font-size:16px;
  4246. }
  4247. #u1557 .text {
  4248. position:absolute;
  4249. align-self:flex-start;
  4250. padding:0px 0px 0px 0px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u1557_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. }
  4259. #u1558_div {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:352px;
  4265. height:44px;
  4266. background:inherit;
  4267. background-color:rgba(255, 255, 255, 0);
  4268. border:none;
  4269. border-radius:0px;
  4270. -moz-box-shadow:none;
  4271. -webkit-box-shadow:none;
  4272. box-shadow:none;
  4273. line-height:22px;
  4274. }
  4275. #u1558 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:1213px;
  4279. top:7818px;
  4280. width:352px;
  4281. height:44px;
  4282. display:flex;
  4283. line-height:22px;
  4284. }
  4285. #u1558 .text {
  4286. position:absolute;
  4287. align-self:flex-start;
  4288. padding:0px 0px 0px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u1558_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. }
  4297. #u1559_div {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:209px;
  4303. height:21px;
  4304. background:inherit;
  4305. background-color:rgba(255, 255, 255, 0);
  4306. border:none;
  4307. border-radius:0px;
  4308. -moz-box-shadow:none;
  4309. -webkit-box-shadow:none;
  4310. box-shadow:none;
  4311. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4312. font-weight:700;
  4313. font-style:normal;
  4314. font-size:18px;
  4315. }
  4316. #u1559 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:8px;
  4320. top:7741px;
  4321. width:209px;
  4322. height:21px;
  4323. display:flex;
  4324. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4325. font-weight:700;
  4326. font-style:normal;
  4327. font-size:18px;
  4328. }
  4329. #u1559 .text {
  4330. position:absolute;
  4331. align-self:flex-start;
  4332. padding:0px 0px 0px 0px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u1559_text {
  4337. border-width:0px;
  4338. white-space:nowrap;
  4339. text-transform:none;
  4340. }
  4341. #u1560_img {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:1155px;
  4347. height:583px;
  4348. }
  4349. #u1560 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:8px;
  4353. top:8472px;
  4354. width:1155px;
  4355. height:583px;
  4356. display:flex;
  4357. }
  4358. #u1560 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 2px 2px 2px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u1560_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. visibility:hidden;
  4370. }
  4371. #u1561_img {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:-4px;
  4375. top:-4px;
  4376. width:30px;
  4377. height:30px;
  4378. }
  4379. #u1561 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:220px;
  4383. top:8671px;
  4384. width:20px;
  4385. height:20px;
  4386. display:flex;
  4387. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4388. font-weight:700;
  4389. font-style:normal;
  4390. font-size:14px;
  4391. color:#1E1E1E;
  4392. }
  4393. #u1561 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 2px 2px 2px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u1561_text {
  4401. border-width:0px;
  4402. word-wrap:break-word;
  4403. text-transform:none;
  4404. }
  4405. #u1562 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:0px;
  4411. height:0px;
  4412. }
  4413. #u1563_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:-4px;
  4417. top:-4px;
  4418. width:44px;
  4419. height:44px;
  4420. }
  4421. #u1563 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:1173px;
  4425. top:8469px;
  4426. width:34px;
  4427. height:34px;
  4428. display:flex;
  4429. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4430. font-weight:700;
  4431. font-style:normal;
  4432. font-size:26px;
  4433. }
  4434. #u1563 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 2px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u1563_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. }
  4446. #u1564_div {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:169px;
  4452. height:18px;
  4453. background:inherit;
  4454. background-color:rgba(255, 255, 255, 0);
  4455. border:none;
  4456. border-radius:0px;
  4457. -moz-box-shadow:none;
  4458. -webkit-box-shadow:none;
  4459. box-shadow:none;
  4460. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4461. font-weight:700;
  4462. font-style:normal;
  4463. font-size:16px;
  4464. color:#FF0000;
  4465. }
  4466. #u1564 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:1213px;
  4470. top:8476px;
  4471. width:169px;
  4472. height:18px;
  4473. display:flex;
  4474. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4475. font-weight:700;
  4476. font-style:normal;
  4477. font-size:16px;
  4478. color:#FF0000;
  4479. }
  4480. #u1564 .text {
  4481. position:absolute;
  4482. align-self:flex-start;
  4483. padding:0px 0px 0px 0px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u1564_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. }
  4492. #u1565_div {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:352px;
  4498. height:110px;
  4499. background:inherit;
  4500. background-color:rgba(255, 255, 255, 0);
  4501. border:none;
  4502. border-radius:0px;
  4503. -moz-box-shadow:none;
  4504. -webkit-box-shadow:none;
  4505. box-shadow:none;
  4506. line-height:22px;
  4507. }
  4508. #u1565 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:1213px;
  4512. top:8514px;
  4513. width:352px;
  4514. height:110px;
  4515. display:flex;
  4516. line-height:22px;
  4517. }
  4518. #u1565 .text {
  4519. position:absolute;
  4520. align-self:flex-start;
  4521. padding:0px 0px 0px 0px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u1565_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. }
  4530. #u1566 {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:1218px;
  4534. top:8476px;
  4535. width:158px;
  4536. height:23px;
  4537. overflow:hidden;
  4538. background-image:url('../../resources/images/transparent.gif');
  4539. }
  4540. #u1567_div {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:270px;
  4546. height:80px;
  4547. background:inherit;
  4548. background-color:rgba(255, 255, 0, 1);
  4549. box-sizing:border-box;
  4550. border-width:1px;
  4551. border-style:solid;
  4552. border-color:rgba(0, 0, 0, 1);
  4553. border-radius:10px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. color:#000000;
  4558. text-align:left;
  4559. line-height:18px;
  4560. }
  4561. #u1567 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:1218px;
  4565. top:8389px;
  4566. width:270px;
  4567. height:80px;
  4568. display:flex;
  4569. color:#000000;
  4570. text-align:left;
  4571. line-height:18px;
  4572. }
  4573. #u1567 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u1567_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. }
  4585. #u1568_div {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:209px;
  4591. height:21px;
  4592. background:inherit;
  4593. background-color:rgba(255, 255, 255, 0);
  4594. border:none;
  4595. border-radius:0px;
  4596. -moz-box-shadow:none;
  4597. -webkit-box-shadow:none;
  4598. box-shadow:none;
  4599. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4600. font-weight:700;
  4601. font-style:normal;
  4602. font-size:18px;
  4603. }
  4604. #u1568 {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:8px;
  4608. top:8429px;
  4609. width:209px;
  4610. height:21px;
  4611. display:flex;
  4612. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4613. font-weight:700;
  4614. font-style:normal;
  4615. font-size:18px;
  4616. }
  4617. #u1568 .text {
  4618. position:absolute;
  4619. align-self:flex-start;
  4620. padding:0px 0px 0px 0px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u1568_text {
  4625. border-width:0px;
  4626. white-space:nowrap;
  4627. text-transform:none;
  4628. }
  4629. #u1569_div {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:209px;
  4635. height:21px;
  4636. background:inherit;
  4637. background-color:rgba(255, 255, 255, 0);
  4638. border:none;
  4639. border-radius:0px;
  4640. -moz-box-shadow:none;
  4641. -webkit-box-shadow:none;
  4642. box-shadow:none;
  4643. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4644. font-weight:700;
  4645. font-style:normal;
  4646. font-size:18px;
  4647. }
  4648. #u1569 {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:8px;
  4652. top:9129px;
  4653. width:209px;
  4654. height:21px;
  4655. display:flex;
  4656. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4657. font-weight:700;
  4658. font-style:normal;
  4659. font-size:18px;
  4660. }
  4661. #u1569 .text {
  4662. position:absolute;
  4663. align-self:flex-start;
  4664. padding:0px 0px 0px 0px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u1569_text {
  4669. border-width:0px;
  4670. white-space:nowrap;
  4671. text-transform:none;
  4672. }
  4673. #u1570_img {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:1155px;
  4679. height:583px;
  4680. }
  4681. #u1570 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:8px;
  4685. top:9161px;
  4686. width:1155px;
  4687. height:583px;
  4688. display:flex;
  4689. }
  4690. #u1570 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 2px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u1570_text {
  4698. border-width:0px;
  4699. word-wrap:break-word;
  4700. text-transform:none;
  4701. visibility:hidden;
  4702. }
  4703. #u1571_img {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:-4px;
  4707. top:-4px;
  4708. width:30px;
  4709. height:30px;
  4710. }
  4711. #u1571 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:1043px;
  4715. top:9648px;
  4716. width:20px;
  4717. height:20px;
  4718. display:flex;
  4719. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4720. font-weight:700;
  4721. font-style:normal;
  4722. font-size:14px;
  4723. color:#1E1E1E;
  4724. }
  4725. #u1571 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 2px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u1571_text {
  4733. border-width:0px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. }
  4737. #u1572_div {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:209px;
  4743. height:21px;
  4744. background:inherit;
  4745. background-color:rgba(255, 255, 255, 0);
  4746. border:none;
  4747. border-radius:0px;
  4748. -moz-box-shadow:none;
  4749. -webkit-box-shadow:none;
  4750. box-shadow:none;
  4751. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4752. font-weight:700;
  4753. font-style:normal;
  4754. font-size:18px;
  4755. }
  4756. #u1572 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:16px;
  4760. top:11725px;
  4761. width:209px;
  4762. height:21px;
  4763. display:flex;
  4764. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4765. font-weight:700;
  4766. font-style:normal;
  4767. font-size:18px;
  4768. }
  4769. #u1572 .text {
  4770. position:absolute;
  4771. align-self:flex-start;
  4772. padding:0px 0px 0px 0px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u1572_text {
  4777. border-width:0px;
  4778. white-space:nowrap;
  4779. text-transform:none;
  4780. }
  4781. #u1573_img {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:1155px;
  4787. height:583px;
  4788. }
  4789. #u1573 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:16px;
  4793. top:11779px;
  4794. width:1155px;
  4795. height:583px;
  4796. display:flex;
  4797. }
  4798. #u1573 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 2px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u1573_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. visibility:hidden;
  4810. }
  4811. #u1574 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:0px;
  4817. height:0px;
  4818. }
  4819. #u1575_img {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:-4px;
  4823. top:-4px;
  4824. width:44px;
  4825. height:44px;
  4826. }
  4827. #u1575 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:1181px;
  4831. top:11787px;
  4832. width:34px;
  4833. height:34px;
  4834. display:flex;
  4835. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4836. font-weight:700;
  4837. font-style:normal;
  4838. font-size:26px;
  4839. }
  4840. #u1575 .text {
  4841. position:absolute;
  4842. align-self:center;
  4843. padding:2px 2px 2px 2px;
  4844. box-sizing:border-box;
  4845. width:100%;
  4846. }
  4847. #u1575_text {
  4848. border-width:0px;
  4849. word-wrap:break-word;
  4850. text-transform:none;
  4851. }
  4852. #u1576_div {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:198px;
  4858. height:18px;
  4859. background:inherit;
  4860. background-color:rgba(255, 255, 255, 0);
  4861. border:none;
  4862. border-radius:0px;
  4863. -moz-box-shadow:none;
  4864. -webkit-box-shadow:none;
  4865. box-shadow:none;
  4866. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4867. font-weight:700;
  4868. font-style:normal;
  4869. font-size:16px;
  4870. }
  4871. #u1576 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:1221px;
  4875. top:11794px;
  4876. width:198px;
  4877. height:18px;
  4878. display:flex;
  4879. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4880. font-weight:700;
  4881. font-style:normal;
  4882. font-size:16px;
  4883. }
  4884. #u1576 .text {
  4885. position:absolute;
  4886. align-self:flex-start;
  4887. padding:0px 0px 0px 0px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u1576_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. }
  4896. #u1577_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:352px;
  4902. height:66px;
  4903. background:inherit;
  4904. background-color:rgba(255, 255, 255, 0);
  4905. border:none;
  4906. border-radius:0px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. line-height:22px;
  4911. }
  4912. #u1577 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:1221px;
  4916. top:11832px;
  4917. width:352px;
  4918. height:66px;
  4919. display:flex;
  4920. line-height:22px;
  4921. }
  4922. #u1577 .text {
  4923. position:absolute;
  4924. align-self:flex-start;
  4925. padding:0px 0px 0px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u1577_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. }
  4934. #u1578_img {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:-4px;
  4938. top:-4px;
  4939. width:30px;
  4940. height:30px;
  4941. }
  4942. #u1578 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:976px;
  4946. top:12001px;
  4947. width:20px;
  4948. height:20px;
  4949. display:flex;
  4950. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4951. font-weight:700;
  4952. font-style:normal;
  4953. font-size:14px;
  4954. color:#1E1E1E;
  4955. }
  4956. #u1578 .text {
  4957. position:absolute;
  4958. align-self:center;
  4959. padding:2px 2px 2px 2px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u1578_text {
  4964. border-width:0px;
  4965. word-wrap:break-word;
  4966. text-transform:none;
  4967. }
  4968. #u1579_img {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:-4px;
  4972. top:-4px;
  4973. width:30px;
  4974. height:30px;
  4975. }
  4976. #u1579 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:1022px;
  4980. top:12001px;
  4981. width:20px;
  4982. height:20px;
  4983. display:flex;
  4984. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  4985. font-weight:700;
  4986. font-style:normal;
  4987. font-size:14px;
  4988. color:#1E1E1E;
  4989. }
  4990. #u1579 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:2px 2px 2px 2px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u1579_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. }
  5002. #u1580_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:-4px;
  5006. top:-4px;
  5007. width:30px;
  5008. height:30px;
  5009. }
  5010. #u1580 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:1060px;
  5014. top:12001px;
  5015. width:20px;
  5016. height:20px;
  5017. display:flex;
  5018. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5019. font-weight:700;
  5020. font-style:normal;
  5021. font-size:14px;
  5022. color:#1E1E1E;
  5023. }
  5024. #u1580 .text {
  5025. position:absolute;
  5026. align-self:center;
  5027. padding:2px 2px 2px 2px;
  5028. box-sizing:border-box;
  5029. width:100%;
  5030. }
  5031. #u1580_text {
  5032. border-width:0px;
  5033. word-wrap:break-word;
  5034. text-transform:none;
  5035. }
  5036. #u1581_img {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:-4px;
  5040. top:-4px;
  5041. width:30px;
  5042. height:30px;
  5043. }
  5044. #u1581 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:1107px;
  5048. top:12001px;
  5049. width:20px;
  5050. height:20px;
  5051. display:flex;
  5052. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5053. font-weight:700;
  5054. font-style:normal;
  5055. font-size:14px;
  5056. color:#1E1E1E;
  5057. }
  5058. #u1581 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 2px 2px 2px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u1581_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. }
  5070. #u1582 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:0px;
  5076. height:0px;
  5077. }
  5078. #u1583_img {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:-4px;
  5082. top:-4px;
  5083. width:40px;
  5084. height:40px;
  5085. }
  5086. #u1583 {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:1181px;
  5090. top:11925px;
  5091. width:30px;
  5092. height:30px;
  5093. display:flex;
  5094. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5095. font-weight:700;
  5096. font-style:normal;
  5097. font-size:18px;
  5098. color:#1E1E1E;
  5099. }
  5100. #u1583 .text {
  5101. position:absolute;
  5102. align-self:center;
  5103. padding:2px 2px 2px 2px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u1583_text {
  5108. border-width:0px;
  5109. word-wrap:break-word;
  5110. text-transform:none;
  5111. }
  5112. #u1584_div {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:198px;
  5118. height:18px;
  5119. background:inherit;
  5120. background-color:rgba(255, 255, 255, 0);
  5121. border:none;
  5122. border-radius:0px;
  5123. -moz-box-shadow:none;
  5124. -webkit-box-shadow:none;
  5125. box-shadow:none;
  5126. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5127. font-weight:700;
  5128. font-style:normal;
  5129. font-size:16px;
  5130. }
  5131. #u1584 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:1221px;
  5135. top:11932px;
  5136. width:198px;
  5137. height:18px;
  5138. display:flex;
  5139. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5140. font-weight:700;
  5141. font-style:normal;
  5142. font-size:16px;
  5143. }
  5144. #u1584 .text {
  5145. position:absolute;
  5146. align-self:flex-start;
  5147. padding:0px 0px 0px 0px;
  5148. box-sizing:border-box;
  5149. width:100%;
  5150. }
  5151. #u1584_text {
  5152. border-width:0px;
  5153. word-wrap:break-word;
  5154. text-transform:none;
  5155. }
  5156. #u1585_div {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:352px;
  5162. height:44px;
  5163. background:inherit;
  5164. background-color:rgba(255, 255, 255, 0);
  5165. border:none;
  5166. border-radius:0px;
  5167. -moz-box-shadow:none;
  5168. -webkit-box-shadow:none;
  5169. box-shadow:none;
  5170. line-height:22px;
  5171. }
  5172. #u1585 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:1221px;
  5176. top:11970px;
  5177. width:352px;
  5178. height:44px;
  5179. display:flex;
  5180. line-height:22px;
  5181. }
  5182. #u1585 .text {
  5183. position:absolute;
  5184. align-self:flex-start;
  5185. padding:0px 0px 0px 0px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u1585_text {
  5190. border-width:0px;
  5191. word-wrap:break-word;
  5192. text-transform:none;
  5193. }
  5194. #u1586 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:0px;
  5200. height:0px;
  5201. }
  5202. #u1587_img {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:-4px;
  5206. top:-4px;
  5207. width:40px;
  5208. height:40px;
  5209. }
  5210. #u1587 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:1181px;
  5214. top:12058px;
  5215. width:30px;
  5216. height:30px;
  5217. display:flex;
  5218. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5219. font-weight:700;
  5220. font-style:normal;
  5221. font-size:18px;
  5222. color:#1E1E1E;
  5223. }
  5224. #u1587 .text {
  5225. position:absolute;
  5226. align-self:center;
  5227. padding:2px 2px 2px 2px;
  5228. box-sizing:border-box;
  5229. width:100%;
  5230. }
  5231. #u1587_text {
  5232. border-width:0px;
  5233. word-wrap:break-word;
  5234. text-transform:none;
  5235. }
  5236. #u1588_div {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:198px;
  5242. height:18px;
  5243. background:inherit;
  5244. background-color:rgba(255, 255, 255, 0);
  5245. border:none;
  5246. border-radius:0px;
  5247. -moz-box-shadow:none;
  5248. -webkit-box-shadow:none;
  5249. box-shadow:none;
  5250. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5251. font-weight:700;
  5252. font-style:normal;
  5253. font-size:16px;
  5254. }
  5255. #u1588 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:1221px;
  5259. top:12065px;
  5260. width:198px;
  5261. height:18px;
  5262. display:flex;
  5263. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5264. font-weight:700;
  5265. font-style:normal;
  5266. font-size:16px;
  5267. }
  5268. #u1588 .text {
  5269. position:absolute;
  5270. align-self:flex-start;
  5271. padding:0px 0px 0px 0px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u1588_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. }
  5280. #u1589_div {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:352px;
  5286. height:66px;
  5287. background:inherit;
  5288. background-color:rgba(255, 255, 255, 0);
  5289. border:none;
  5290. border-radius:0px;
  5291. -moz-box-shadow:none;
  5292. -webkit-box-shadow:none;
  5293. box-shadow:none;
  5294. line-height:22px;
  5295. }
  5296. #u1589 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:1221px;
  5300. top:12103px;
  5301. width:352px;
  5302. height:66px;
  5303. display:flex;
  5304. line-height:22px;
  5305. }
  5306. #u1589 .text {
  5307. position:absolute;
  5308. align-self:flex-start;
  5309. padding:0px 0px 0px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u1589_text {
  5314. border-width:0px;
  5315. word-wrap:break-word;
  5316. text-transform:none;
  5317. }
  5318. #u1590_div {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:185px;
  5324. height:71px;
  5325. background:inherit;
  5326. background-color:rgba(255, 255, 0, 1);
  5327. box-sizing:border-box;
  5328. border-width:1px;
  5329. border-style:solid;
  5330. border-color:rgba(0, 0, 0, 1);
  5331. border-radius:10px;
  5332. -moz-box-shadow:none;
  5333. -webkit-box-shadow:none;
  5334. box-shadow:none;
  5335. color:#000000;
  5336. text-align:left;
  5337. line-height:18px;
  5338. }
  5339. #u1590 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:1322px;
  5343. top:12044px;
  5344. width:185px;
  5345. height:71px;
  5346. display:flex;
  5347. color:#000000;
  5348. text-align:left;
  5349. line-height:18px;
  5350. }
  5351. #u1590 .text {
  5352. position:absolute;
  5353. align-self:center;
  5354. padding:2px 2px 2px 2px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u1590_text {
  5359. border-width:0px;
  5360. word-wrap:break-word;
  5361. text-transform:none;
  5362. }
  5363. #u1591 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:1374px;
  5367. top:12125px;
  5368. width:57px;
  5369. height:23px;
  5370. overflow:hidden;
  5371. background-image:url('../../resources/images/transparent.gif');
  5372. }
  5373. #u1592 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:0px;
  5379. height:0px;
  5380. }
  5381. #u1593_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:-4px;
  5385. top:-4px;
  5386. width:44px;
  5387. height:44px;
  5388. }
  5389. #u1593 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:1181px;
  5393. top:12179px;
  5394. width:34px;
  5395. height:34px;
  5396. display:flex;
  5397. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5398. font-weight:700;
  5399. font-style:normal;
  5400. font-size:26px;
  5401. }
  5402. #u1593 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 2px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u1593_text {
  5410. border-width:0px;
  5411. word-wrap:break-word;
  5412. text-transform:none;
  5413. }
  5414. #u1594_div {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:198px;
  5420. height:18px;
  5421. background:inherit;
  5422. background-color:rgba(255, 255, 255, 0);
  5423. border:none;
  5424. border-radius:0px;
  5425. -moz-box-shadow:none;
  5426. -webkit-box-shadow:none;
  5427. box-shadow:none;
  5428. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5429. font-weight:700;
  5430. font-style:normal;
  5431. font-size:16px;
  5432. }
  5433. #u1594 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:1221px;
  5437. top:12186px;
  5438. width:198px;
  5439. height:18px;
  5440. display:flex;
  5441. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5442. font-weight:700;
  5443. font-style:normal;
  5444. font-size:16px;
  5445. }
  5446. #u1594 .text {
  5447. position:absolute;
  5448. align-self:flex-start;
  5449. padding:0px 0px 0px 0px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u1594_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. }
  5458. #u1595_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:352px;
  5464. height:22px;
  5465. background:inherit;
  5466. background-color:rgba(255, 255, 255, 0);
  5467. border:none;
  5468. border-radius:0px;
  5469. -moz-box-shadow:none;
  5470. -webkit-box-shadow:none;
  5471. box-shadow:none;
  5472. line-height:22px;
  5473. }
  5474. #u1595 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:1221px;
  5478. top:12224px;
  5479. width:352px;
  5480. height:22px;
  5481. display:flex;
  5482. line-height:22px;
  5483. }
  5484. #u1595 .text {
  5485. position:absolute;
  5486. align-self:flex-start;
  5487. padding:0px 0px 0px 0px;
  5488. box-sizing:border-box;
  5489. width:100%;
  5490. }
  5491. #u1595_text {
  5492. border-width:0px;
  5493. word-wrap:break-word;
  5494. text-transform:none;
  5495. }
  5496. #u1596_div {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:1px;
  5502. height:22px;
  5503. background:inherit;
  5504. background-color:rgba(255, 255, 255, 0);
  5505. border:none;
  5506. border-radius:0px;
  5507. -moz-box-shadow:none;
  5508. -webkit-box-shadow:none;
  5509. box-shadow:none;
  5510. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5511. font-weight:700;
  5512. font-style:normal;
  5513. font-size:18px;
  5514. }
  5515. #u1596 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:8px;
  5519. top:10477px;
  5520. width:1px;
  5521. height:22px;
  5522. display:flex;
  5523. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5524. font-weight:700;
  5525. font-style:normal;
  5526. font-size:18px;
  5527. }
  5528. #u1596 .text {
  5529. position:absolute;
  5530. align-self:flex-start;
  5531. padding:0px 0px 0px 0px;
  5532. box-sizing:border-box;
  5533. width:100%;
  5534. }
  5535. #u1596_text {
  5536. border-width:0px;
  5537. white-space:nowrap;
  5538. text-transform:none;
  5539. visibility:hidden;
  5540. }
  5541. #u1597_img {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:1155px;
  5547. height:583px;
  5548. }
  5549. #u1597 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:16px;
  5553. top:12469px;
  5554. width:1155px;
  5555. height:583px;
  5556. display:flex;
  5557. }
  5558. #u1597 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 2px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u1597_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. visibility:hidden;
  5570. }
  5571. #u1598_img {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:-4px;
  5575. top:-4px;
  5576. width:30px;
  5577. height:30px;
  5578. }
  5579. #u1598 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:1035px;
  5583. top:13023px;
  5584. width:20px;
  5585. height:20px;
  5586. display:flex;
  5587. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5588. font-weight:700;
  5589. font-style:normal;
  5590. font-size:14px;
  5591. color:#1E1E1E;
  5592. }
  5593. #u1598 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 2px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u1598_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. }
  5605. #u1599_div {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:209px;
  5611. height:21px;
  5612. background:inherit;
  5613. background-color:rgba(255, 255, 255, 0);
  5614. border:none;
  5615. border-radius:0px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5620. font-weight:700;
  5621. font-style:normal;
  5622. font-size:18px;
  5623. }
  5624. #u1599 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:16px;
  5628. top:12437px;
  5629. width:209px;
  5630. height:21px;
  5631. display:flex;
  5632. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5633. font-weight:700;
  5634. font-style:normal;
  5635. font-size:18px;
  5636. }
  5637. #u1599 .text {
  5638. position:absolute;
  5639. align-self:flex-start;
  5640. padding:0px 0px 0px 0px;
  5641. box-sizing:border-box;
  5642. width:100%;
  5643. }
  5644. #u1599_text {
  5645. border-width:0px;
  5646. white-space:nowrap;
  5647. text-transform:none;
  5648. }
  5649. #u1600 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:0px;
  5655. height:0px;
  5656. }
  5657. #u1601_img {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:-4px;
  5661. top:-4px;
  5662. width:44px;
  5663. height:44px;
  5664. }
  5665. #u1601 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:1177px;
  5669. top:12472px;
  5670. width:34px;
  5671. height:34px;
  5672. display:flex;
  5673. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5674. font-weight:700;
  5675. font-style:normal;
  5676. font-size:26px;
  5677. }
  5678. #u1601 .text {
  5679. position:absolute;
  5680. align-self:center;
  5681. padding:2px 2px 2px 2px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u1601_text {
  5686. border-width:0px;
  5687. word-wrap:break-word;
  5688. text-transform:none;
  5689. }
  5690. #u1602_div {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:198px;
  5696. height:18px;
  5697. background:inherit;
  5698. background-color:rgba(255, 255, 255, 0);
  5699. border:none;
  5700. border-radius:0px;
  5701. -moz-box-shadow:none;
  5702. -webkit-box-shadow:none;
  5703. box-shadow:none;
  5704. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5705. font-weight:700;
  5706. font-style:normal;
  5707. font-size:16px;
  5708. color:#FF0000;
  5709. }
  5710. #u1602 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:1217px;
  5714. top:12479px;
  5715. width:198px;
  5716. height:18px;
  5717. display:flex;
  5718. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  5719. font-weight:700;
  5720. font-style:normal;
  5721. font-size:16px;
  5722. color:#FF0000;
  5723. }
  5724. #u1602 .text {
  5725. position:absolute;
  5726. align-self:flex-start;
  5727. padding:0px 0px 0px 0px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u1602_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. }
  5736. #u1603_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:352px;
  5742. height:198px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. border:none;
  5746. border-radius:0px;
  5747. -moz-box-shadow:none;
  5748. -webkit-box-shadow:none;
  5749. box-shadow:none;
  5750. line-height:22px;
  5751. }
  5752. #u1603 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:1217px;
  5756. top:12517px;
  5757. width:352px;
  5758. height:198px;
  5759. display:flex;
  5760. line-height:22px;
  5761. }
  5762. #u1603 .text {
  5763. position:absolute;
  5764. align-self:flex-start;
  5765. padding:0px 0px 0px 0px;
  5766. box-sizing:border-box;
  5767. width:100%;
  5768. }
  5769. #u1603_text {
  5770. border-width:0px;
  5771. word-wrap:break-word;
  5772. text-transform:none;
  5773. }
  5774. #u1604_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:286px;
  5780. height:173px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 0, 1);
  5783. box-sizing:border-box;
  5784. border-width:1px;
  5785. border-style:solid;
  5786. border-color:rgba(0, 0, 0, 1);
  5787. border-radius:10px;
  5788. -moz-box-shadow:none;
  5789. -webkit-box-shadow:none;
  5790. box-shadow:none;
  5791. color:#000000;
  5792. text-align:left;
  5793. line-height:18px;
  5794. }
  5795. #u1604 {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:1221px;
  5799. top:12299px;
  5800. width:286px;
  5801. height:173px;
  5802. display:flex;
  5803. color:#000000;
  5804. text-align:left;
  5805. line-height:18px;
  5806. }
  5807. #u1604 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:2px 2px 2px 2px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u1604_text {
  5815. border-width:0px;
  5816. word-wrap:break-word;
  5817. text-transform:none;
  5818. }
  5819. #u1605 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:1222px;
  5823. top:12477px;
  5824. width:90px;
  5825. height:23px;
  5826. overflow:hidden;
  5827. background-image:url('../../resources/images/transparent.gif');
  5828. }
  5829. #u1606_div {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:167px;
  5835. height:67px;
  5836. background:inherit;
  5837. background-color:rgba(255, 255, 0, 1);
  5838. box-sizing:border-box;
  5839. border-width:1px;
  5840. border-style:solid;
  5841. border-color:rgba(0, 0, 0, 1);
  5842. border-radius:10px;
  5843. -moz-box-shadow:none;
  5844. -webkit-box-shadow:none;
  5845. box-shadow:none;
  5846. color:#000000;
  5847. text-align:left;
  5848. line-height:18px;
  5849. }
  5850. #u1606 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:1383px;
  5854. top:12537px;
  5855. width:167px;
  5856. height:67px;
  5857. display:flex;
  5858. color:#000000;
  5859. text-align:left;
  5860. line-height:18px;
  5861. }
  5862. #u1606 .text {
  5863. position:absolute;
  5864. align-self:center;
  5865. padding:2px 2px 2px 2px;
  5866. box-sizing:border-box;
  5867. width:100%;
  5868. }
  5869. #u1606_text {
  5870. border-width:0px;
  5871. word-wrap:break-word;
  5872. text-transform:none;
  5873. }
  5874. #u1607 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:1390px;
  5878. top:12604px;
  5879. width:73px;
  5880. height:23px;
  5881. overflow:hidden;
  5882. background-image:url('../../resources/images/transparent.gif');
  5883. }
  5884. #u1608_div {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:167px;
  5890. height:67px;
  5891. background:inherit;
  5892. background-color:rgba(255, 255, 0, 1);
  5893. box-sizing:border-box;
  5894. border-width:1px;
  5895. border-style:solid;
  5896. border-color:rgba(0, 0, 0, 1);
  5897. border-radius:10px;
  5898. -moz-box-shadow:none;
  5899. -webkit-box-shadow:none;
  5900. box-shadow:none;
  5901. color:#000000;
  5902. text-align:left;
  5903. line-height:18px;
  5904. }
  5905. #u1608 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:1233px;
  5909. top:12508px;
  5910. width:167px;
  5911. height:67px;
  5912. display:flex;
  5913. color:#000000;
  5914. text-align:left;
  5915. line-height:18px;
  5916. }
  5917. #u1608 .text {
  5918. position:absolute;
  5919. align-self:center;
  5920. padding:2px 2px 2px 2px;
  5921. box-sizing:border-box;
  5922. width:100%;
  5923. }
  5924. #u1608_text {
  5925. border-width:0px;
  5926. word-wrap:break-word;
  5927. text-transform:none;
  5928. }
  5929. #u1609 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:1292px;
  5933. top:12581px;
  5934. width:32px;
  5935. height:23px;
  5936. overflow:hidden;
  5937. background-image:url('../../resources/images/transparent.gif');
  5938. }
  5939. #u1610 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:1211px;
  5943. top:12651px;
  5944. width:32px;
  5945. height:22px;
  5946. overflow:hidden;
  5947. background-image:url('../../resources/images/transparent.gif');
  5948. }
  5949. #u1611_div {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:223px;
  5955. height:79px;
  5956. background:inherit;
  5957. background-color:rgba(255, 255, 0, 1);
  5958. box-sizing:border-box;
  5959. border-width:1px;
  5960. border-style:solid;
  5961. border-color:rgba(0, 0, 0, 1);
  5962. border-radius:10px;
  5963. -moz-box-shadow:none;
  5964. -webkit-box-shadow:none;
  5965. box-shadow:none;
  5966. text-align:left;
  5967. line-height:18px;
  5968. }
  5969. #u1611 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:1211px;
  5973. top:12679px;
  5974. width:223px;
  5975. height:79px;
  5976. display:flex;
  5977. text-align:left;
  5978. line-height:18px;
  5979. }
  5980. #u1611 .text {
  5981. position:absolute;
  5982. align-self:flex-end;
  5983. padding:2px 2px 2px 2px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u1611_text {
  5988. border-width:0px;
  5989. word-wrap:break-word;
  5990. text-transform:none;
  5991. }
  5992. #u1612 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:1541px;
  5996. top:12627px;
  5997. width:32px;
  5998. height:22px;
  5999. overflow:hidden;
  6000. background-image:url('../../resources/images/transparent.gif');
  6001. }
  6002. #u1613 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:1317px;
  6006. top:12648px;
  6007. width:70px;
  6008. height:21px;
  6009. overflow:hidden;
  6010. background-image:url('../../resources/images/transparent.gif');
  6011. }
  6012. #u1614_div {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:232px;
  6018. height:136px;
  6019. background:inherit;
  6020. background-color:rgba(255, 255, 0, 1);
  6021. box-sizing:border-box;
  6022. border-width:1px;
  6023. border-style:solid;
  6024. border-color:rgba(0, 0, 0, 1);
  6025. border-radius:10px;
  6026. -moz-box-shadow:none;
  6027. -webkit-box-shadow:none;
  6028. box-shadow:none;
  6029. text-align:left;
  6030. line-height:18px;
  6031. }
  6032. #u1614 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:1281px;
  6036. top:12674px;
  6037. width:232px;
  6038. height:136px;
  6039. display:flex;
  6040. text-align:left;
  6041. line-height:18px;
  6042. }
  6043. #u1614 .text {
  6044. position:absolute;
  6045. align-self:flex-end;
  6046. padding:2px 2px 2px 2px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u1614_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. }
  6055. #u1615_div {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:263px;
  6061. height:21px;
  6062. background:inherit;
  6063. background-color:rgba(255, 255, 255, 0);
  6064. border:none;
  6065. border-radius:0px;
  6066. -moz-box-shadow:none;
  6067. -webkit-box-shadow:none;
  6068. box-shadow:none;
  6069. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6070. font-weight:700;
  6071. font-style:normal;
  6072. font-size:18px;
  6073. }
  6074. #u1615 {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:16px;
  6078. top:13798px;
  6079. width:263px;
  6080. height:21px;
  6081. display:flex;
  6082. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6083. font-weight:700;
  6084. font-style:normal;
  6085. font-size:18px;
  6086. }
  6087. #u1615 .text {
  6088. position:absolute;
  6089. align-self:flex-start;
  6090. padding:0px 0px 0px 0px;
  6091. box-sizing:border-box;
  6092. width:100%;
  6093. }
  6094. #u1615_text {
  6095. border-width:0px;
  6096. white-space:nowrap;
  6097. text-transform:none;
  6098. }
  6099. #u1616_img {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:0px;
  6103. top:0px;
  6104. width:1155px;
  6105. height:583px;
  6106. }
  6107. #u1616 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:16px;
  6111. top:13830px;
  6112. width:1155px;
  6113. height:583px;
  6114. display:flex;
  6115. }
  6116. #u1616 .text {
  6117. position:absolute;
  6118. align-self:center;
  6119. padding:2px 2px 2px 2px;
  6120. box-sizing:border-box;
  6121. width:100%;
  6122. }
  6123. #u1616_text {
  6124. border-width:0px;
  6125. word-wrap:break-word;
  6126. text-transform:none;
  6127. visibility:hidden;
  6128. }
  6129. #u1617_img {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:-4px;
  6133. top:-4px;
  6134. width:30px;
  6135. height:30px;
  6136. }
  6137. #u1617 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:1051px;
  6141. top:14317px;
  6142. width:20px;
  6143. height:20px;
  6144. display:flex;
  6145. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6146. font-weight:700;
  6147. font-style:normal;
  6148. font-size:14px;
  6149. color:#1E1E1E;
  6150. }
  6151. #u1617 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:2px 2px 2px 2px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u1617_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. }
  6163. #u1618_img {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:-4px;
  6167. top:-4px;
  6168. width:30px;
  6169. height:30px;
  6170. }
  6171. #u1618 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:1138px;
  6175. top:14317px;
  6176. width:20px;
  6177. height:20px;
  6178. display:flex;
  6179. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6180. font-weight:700;
  6181. font-style:normal;
  6182. font-size:14px;
  6183. color:#1E1E1E;
  6184. }
  6185. #u1618 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 2px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u1618_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. }
  6197. #u1619 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:0px;
  6203. height:0px;
  6204. }
  6205. #u1620_img {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:-4px;
  6209. top:-4px;
  6210. width:40px;
  6211. height:40px;
  6212. }
  6213. #u1620 {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:1176px;
  6217. top:14093px;
  6218. width:30px;
  6219. height:30px;
  6220. display:flex;
  6221. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6222. font-weight:700;
  6223. font-style:normal;
  6224. font-size:18px;
  6225. color:#1E1E1E;
  6226. }
  6227. #u1620 .text {
  6228. position:absolute;
  6229. align-self:center;
  6230. padding:2px 2px 2px 2px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u1620_text {
  6235. border-width:0px;
  6236. word-wrap:break-word;
  6237. text-transform:none;
  6238. }
  6239. #u1621_div {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:198px;
  6245. height:18px;
  6246. background:inherit;
  6247. background-color:rgba(255, 255, 255, 0);
  6248. border:none;
  6249. border-radius:0px;
  6250. -moz-box-shadow:none;
  6251. -webkit-box-shadow:none;
  6252. box-shadow:none;
  6253. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6254. font-weight:700;
  6255. font-style:normal;
  6256. font-size:16px;
  6257. color:#FF0000;
  6258. }
  6259. #u1621 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:1216px;
  6263. top:14100px;
  6264. width:198px;
  6265. height:18px;
  6266. display:flex;
  6267. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6268. font-weight:700;
  6269. font-style:normal;
  6270. font-size:16px;
  6271. color:#FF0000;
  6272. }
  6273. #u1621 .text {
  6274. position:absolute;
  6275. align-self:flex-start;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u1621_text {
  6281. border-width:0px;
  6282. word-wrap:break-word;
  6283. text-transform:none;
  6284. }
  6285. #u1622_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:352px;
  6291. height:88px;
  6292. background:inherit;
  6293. background-color:rgba(255, 255, 255, 0);
  6294. border:none;
  6295. border-radius:0px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. line-height:22px;
  6300. }
  6301. #u1622 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:1216px;
  6305. top:14138px;
  6306. width:352px;
  6307. height:88px;
  6308. display:flex;
  6309. line-height:22px;
  6310. }
  6311. #u1622 .text {
  6312. position:absolute;
  6313. align-self:flex-start;
  6314. padding:0px 0px 0px 0px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u1622_text {
  6319. border-width:0px;
  6320. word-wrap:break-word;
  6321. text-transform:none;
  6322. }
  6323. #u1623 {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:1221px;
  6327. top:14097px;
  6328. width:90px;
  6329. height:23px;
  6330. overflow:hidden;
  6331. background-image:url('../../resources/images/transparent.gif');
  6332. }
  6333. #u1624 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:0px;
  6339. height:0px;
  6340. }
  6341. #u1625_div {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:352px;
  6347. height:176px;
  6348. background:inherit;
  6349. background-color:rgba(255, 255, 255, 0);
  6350. border:none;
  6351. border-radius:0px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. line-height:22px;
  6356. }
  6357. #u1625 {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:1221px;
  6361. top:13870px;
  6362. width:352px;
  6363. height:176px;
  6364. display:flex;
  6365. line-height:22px;
  6366. }
  6367. #u1625 .text {
  6368. position:absolute;
  6369. align-self:flex-start;
  6370. padding:0px 0px 0px 0px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u1625_text {
  6375. border-width:0px;
  6376. word-wrap:break-word;
  6377. text-transform:none;
  6378. }
  6379. #u1626_img {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:-4px;
  6383. top:-4px;
  6384. width:40px;
  6385. height:40px;
  6386. }
  6387. #u1626 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:1176px;
  6391. top:13832px;
  6392. width:30px;
  6393. height:30px;
  6394. display:flex;
  6395. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6396. font-weight:700;
  6397. font-style:normal;
  6398. font-size:18px;
  6399. color:#1E1E1E;
  6400. }
  6401. #u1626 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 2px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u1626_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. }
  6413. #u1627_div {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:198px;
  6419. height:18px;
  6420. background:inherit;
  6421. background-color:rgba(255, 255, 255, 0);
  6422. border:none;
  6423. border-radius:0px;
  6424. -moz-box-shadow:none;
  6425. -webkit-box-shadow:none;
  6426. box-shadow:none;
  6427. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6428. font-weight:700;
  6429. font-style:normal;
  6430. font-size:16px;
  6431. color:#FF0000;
  6432. }
  6433. #u1627 {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:1216px;
  6437. top:13839px;
  6438. width:198px;
  6439. height:18px;
  6440. display:flex;
  6441. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6442. font-weight:700;
  6443. font-style:normal;
  6444. font-size:16px;
  6445. color:#FF0000;
  6446. }
  6447. #u1627 .text {
  6448. position:absolute;
  6449. align-self:flex-start;
  6450. padding:0px 0px 0px 0px;
  6451. box-sizing:border-box;
  6452. width:100%;
  6453. }
  6454. #u1627_text {
  6455. border-width:0px;
  6456. word-wrap:break-word;
  6457. text-transform:none;
  6458. }
  6459. #u1628_div {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:0px;
  6463. top:0px;
  6464. width:296px;
  6465. height:102px;
  6466. background:inherit;
  6467. background-color:rgba(255, 255, 0, 1);
  6468. box-sizing:border-box;
  6469. border-width:1px;
  6470. border-style:solid;
  6471. border-color:rgba(0, 0, 0, 1);
  6472. border-radius:10px;
  6473. -moz-box-shadow:none;
  6474. -webkit-box-shadow:none;
  6475. box-shadow:none;
  6476. color:#000000;
  6477. text-align:left;
  6478. line-height:18px;
  6479. }
  6480. #u1628 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:1216px;
  6484. top:13720px;
  6485. width:296px;
  6486. height:102px;
  6487. display:flex;
  6488. color:#000000;
  6489. text-align:left;
  6490. line-height:18px;
  6491. }
  6492. #u1628 .text {
  6493. position:absolute;
  6494. align-self:center;
  6495. padding:2px 2px 2px 2px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u1628_text {
  6500. border-width:0px;
  6501. word-wrap:break-word;
  6502. text-transform:none;
  6503. }
  6504. #u1629 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:1221px;
  6508. top:13837px;
  6509. width:86px;
  6510. height:23px;
  6511. overflow:hidden;
  6512. background-image:url('../../resources/images/transparent.gif');
  6513. }
  6514. #u1630_div {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:305px;
  6520. height:129px;
  6521. background:inherit;
  6522. background-color:rgba(255, 255, 0, 1);
  6523. box-sizing:border-box;
  6524. border-width:1px;
  6525. border-style:solid;
  6526. border-color:rgba(0, 0, 0, 1);
  6527. border-radius:10px;
  6528. -moz-box-shadow:none;
  6529. -webkit-box-shadow:none;
  6530. box-shadow:none;
  6531. color:#000000;
  6532. text-align:left;
  6533. line-height:18px;
  6534. }
  6535. #u1630 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:1222px;
  6539. top:13958px;
  6540. width:305px;
  6541. height:129px;
  6542. display:flex;
  6543. color:#000000;
  6544. text-align:left;
  6545. line-height:18px;
  6546. }
  6547. #u1630 .text {
  6548. position:absolute;
  6549. align-self:center;
  6550. padding:2px 2px 2px 2px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u1630_text {
  6555. border-width:0px;
  6556. word-wrap:break-word;
  6557. text-transform:none;
  6558. }
  6559. #u1631_img {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:1155px;
  6565. height:583px;
  6566. }
  6567. #u1631 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:8px;
  6571. top:13099px;
  6572. width:1155px;
  6573. height:583px;
  6574. display:flex;
  6575. }
  6576. #u1631 .text {
  6577. position:absolute;
  6578. align-self:center;
  6579. padding:2px 2px 2px 2px;
  6580. box-sizing:border-box;
  6581. width:100%;
  6582. }
  6583. #u1631_text {
  6584. border-width:0px;
  6585. word-wrap:break-word;
  6586. text-transform:none;
  6587. visibility:hidden;
  6588. }
  6589. #u1632 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:1490px;
  6593. top:12671px;
  6594. width:27px;
  6595. height:21px;
  6596. overflow:hidden;
  6597. background-image:url('../../resources/images/transparent.gif');
  6598. }
  6599. #u1633_div {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:232px;
  6605. height:104px;
  6606. background:inherit;
  6607. background-color:rgba(255, 255, 0, 1);
  6608. box-sizing:border-box;
  6609. border-width:1px;
  6610. border-style:solid;
  6611. border-color:rgba(0, 0, 0, 1);
  6612. border-radius:10px;
  6613. -moz-box-shadow:none;
  6614. -webkit-box-shadow:none;
  6615. box-shadow:none;
  6616. text-align:left;
  6617. line-height:18px;
  6618. }
  6619. #u1633 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:1324px;
  6623. top:12560px;
  6624. width:232px;
  6625. height:104px;
  6626. display:flex;
  6627. text-align:left;
  6628. line-height:18px;
  6629. }
  6630. #u1633 .text {
  6631. position:absolute;
  6632. align-self:flex-end;
  6633. padding:2px 2px 2px 2px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u1633_text {
  6638. border-width:0px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. }
  6642. #u1634 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:0px;
  6648. height:0px;
  6649. }
  6650. #u1635_img {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:-4px;
  6654. top:-4px;
  6655. width:44px;
  6656. height:44px;
  6657. }
  6658. #u1635 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:1181px;
  6662. top:14566px;
  6663. width:34px;
  6664. height:34px;
  6665. display:flex;
  6666. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6667. font-weight:700;
  6668. font-style:normal;
  6669. font-size:26px;
  6670. }
  6671. #u1635 .text {
  6672. position:absolute;
  6673. align-self:center;
  6674. padding:2px 2px 2px 2px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u1635_text {
  6679. border-width:0px;
  6680. word-wrap:break-word;
  6681. text-transform:none;
  6682. }
  6683. #u1636_div {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:101px;
  6689. height:18px;
  6690. background:inherit;
  6691. background-color:rgba(255, 255, 255, 0);
  6692. border:none;
  6693. border-radius:0px;
  6694. -moz-box-shadow:none;
  6695. -webkit-box-shadow:none;
  6696. box-shadow:none;
  6697. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6698. font-weight:700;
  6699. font-style:normal;
  6700. font-size:16px;
  6701. }
  6702. #u1636 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:1221px;
  6706. top:14573px;
  6707. width:101px;
  6708. height:18px;
  6709. display:flex;
  6710. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6711. font-weight:700;
  6712. font-style:normal;
  6713. font-size:16px;
  6714. }
  6715. #u1636 .text {
  6716. position:absolute;
  6717. align-self:flex-start;
  6718. padding:0px 0px 0px 0px;
  6719. box-sizing:border-box;
  6720. width:100%;
  6721. }
  6722. #u1636_text {
  6723. border-width:0px;
  6724. word-wrap:break-word;
  6725. text-transform:none;
  6726. }
  6727. #u1637_div {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:352px;
  6733. height:110px;
  6734. background:inherit;
  6735. background-color:rgba(255, 255, 255, 0);
  6736. border:none;
  6737. border-radius:0px;
  6738. -moz-box-shadow:none;
  6739. -webkit-box-shadow:none;
  6740. box-shadow:none;
  6741. line-height:22px;
  6742. }
  6743. #u1637 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:1221px;
  6747. top:14611px;
  6748. width:352px;
  6749. height:110px;
  6750. display:flex;
  6751. line-height:22px;
  6752. }
  6753. #u1637 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:0px 0px 0px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u1637_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. }
  6765. #u1638_img {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:1155px;
  6771. height:583px;
  6772. }
  6773. #u1638 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:16px;
  6777. top:14566px;
  6778. width:1155px;
  6779. height:583px;
  6780. display:flex;
  6781. }
  6782. #u1638 .text {
  6783. position:absolute;
  6784. align-self:center;
  6785. padding:2px 2px 2px 2px;
  6786. box-sizing:border-box;
  6787. width:100%;
  6788. }
  6789. #u1638_text {
  6790. border-width:0px;
  6791. word-wrap:break-word;
  6792. text-transform:none;
  6793. visibility:hidden;
  6794. }
  6795. #u1639_img {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:-4px;
  6799. top:-4px;
  6800. width:30px;
  6801. height:30px;
  6802. }
  6803. #u1639 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:215px;
  6807. top:14718px;
  6808. width:20px;
  6809. height:20px;
  6810. display:flex;
  6811. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6812. font-weight:700;
  6813. font-style:normal;
  6814. font-size:14px;
  6815. color:#1E1E1E;
  6816. }
  6817. #u1639 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 2px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u1639_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. }
  6829. #u1640_img {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:1155px;
  6835. height:583px;
  6836. }
  6837. #u1640 {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:16px;
  6841. top:15188px;
  6842. width:1155px;
  6843. height:583px;
  6844. display:flex;
  6845. }
  6846. #u1640 .text {
  6847. position:absolute;
  6848. align-self:center;
  6849. padding:2px 2px 2px 2px;
  6850. box-sizing:border-box;
  6851. width:100%;
  6852. }
  6853. #u1640_text {
  6854. border-width:0px;
  6855. word-wrap:break-word;
  6856. text-transform:none;
  6857. visibility:hidden;
  6858. }
  6859. #u1641_div {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:227px;
  6865. height:21px;
  6866. background:inherit;
  6867. background-color:rgba(255, 255, 255, 0);
  6868. border:none;
  6869. border-radius:0px;
  6870. -moz-box-shadow:none;
  6871. -webkit-box-shadow:none;
  6872. box-shadow:none;
  6873. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6874. font-weight:700;
  6875. font-style:normal;
  6876. font-size:18px;
  6877. }
  6878. #u1641 {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:16px;
  6882. top:14515px;
  6883. width:227px;
  6884. height:21px;
  6885. display:flex;
  6886. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  6887. font-weight:700;
  6888. font-style:normal;
  6889. font-size:18px;
  6890. }
  6891. #u1641 .text {
  6892. position:absolute;
  6893. align-self:flex-start;
  6894. padding:0px 0px 0px 0px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u1641_text {
  6899. border-width:0px;
  6900. white-space:nowrap;
  6901. text-transform:none;
  6902. }
  6903. #u1642_div {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:223px;
  6909. height:105px;
  6910. background:inherit;
  6911. background-color:rgba(255, 255, 0, 1);
  6912. box-sizing:border-box;
  6913. border-width:1px;
  6914. border-style:solid;
  6915. border-color:rgba(0, 0, 0, 1);
  6916. border-radius:10px;
  6917. -moz-box-shadow:none;
  6918. -webkit-box-shadow:none;
  6919. box-shadow:none;
  6920. text-align:left;
  6921. line-height:18px;
  6922. }
  6923. #u1642 {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:1278px;
  6927. top:2375px;
  6928. width:223px;
  6929. height:105px;
  6930. display:flex;
  6931. text-align:left;
  6932. line-height:18px;
  6933. }
  6934. #u1642 .text {
  6935. position:absolute;
  6936. align-self:flex-end;
  6937. padding:2px 2px 2px 2px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u1642_text {
  6942. border-width:0px;
  6943. word-wrap:break-word;
  6944. text-transform:none;
  6945. }
  6946. #u1643 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:1484px;
  6950. top:2556px;
  6951. width:58px;
  6952. height:22px;
  6953. overflow:hidden;
  6954. background-image:url('../../resources/images/transparent.gif');
  6955. }
  6956. #u1644_div {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:223px;
  6962. height:79px;
  6963. background:inherit;
  6964. background-color:rgba(255, 255, 0, 1);
  6965. box-sizing:border-box;
  6966. border-width:1px;
  6967. border-style:solid;
  6968. border-color:rgba(0, 0, 0, 1);
  6969. border-radius:10px;
  6970. -moz-box-shadow:none;
  6971. -webkit-box-shadow:none;
  6972. box-shadow:none;
  6973. text-align:left;
  6974. line-height:18px;
  6975. }
  6976. #u1644 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:1331px;
  6980. top:2588px;
  6981. width:223px;
  6982. height:79px;
  6983. display:flex;
  6984. text-align:left;
  6985. line-height:18px;
  6986. }
  6987. #u1644 .text {
  6988. position:absolute;
  6989. align-self:flex-end;
  6990. padding:2px 2px 2px 2px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u1644_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. }
  6999. #u1645 {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:0px;
  7005. height:0px;
  7006. }
  7007. #u1646_img {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:-4px;
  7011. top:-4px;
  7012. width:40px;
  7013. height:40px;
  7014. }
  7015. #u1646 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:1173px;
  7019. top:5779px;
  7020. width:30px;
  7021. height:30px;
  7022. display:flex;
  7023. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7024. font-weight:700;
  7025. font-style:normal;
  7026. font-size:18px;
  7027. color:#1E1E1E;
  7028. }
  7029. #u1646 .text {
  7030. position:absolute;
  7031. align-self:center;
  7032. padding:2px 2px 2px 2px;
  7033. box-sizing:border-box;
  7034. width:100%;
  7035. }
  7036. #u1646_text {
  7037. border-width:0px;
  7038. word-wrap:break-word;
  7039. text-transform:none;
  7040. }
  7041. #u1647_div {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:131px;
  7047. height:18px;
  7048. background:inherit;
  7049. background-color:rgba(255, 255, 255, 0);
  7050. border:none;
  7051. border-radius:0px;
  7052. -moz-box-shadow:none;
  7053. -webkit-box-shadow:none;
  7054. box-shadow:none;
  7055. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7056. font-weight:700;
  7057. font-style:normal;
  7058. font-size:16px;
  7059. }
  7060. #u1647 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:1213px;
  7064. top:5786px;
  7065. width:131px;
  7066. height:18px;
  7067. display:flex;
  7068. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7069. font-weight:700;
  7070. font-style:normal;
  7071. font-size:16px;
  7072. }
  7073. #u1647 .text {
  7074. position:absolute;
  7075. align-self:flex-start;
  7076. padding:0px 0px 0px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u1647_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. }
  7085. #u1648_div {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:352px;
  7091. height:154px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 0);
  7094. border:none;
  7095. border-radius:0px;
  7096. -moz-box-shadow:none;
  7097. -webkit-box-shadow:none;
  7098. box-shadow:none;
  7099. line-height:22px;
  7100. }
  7101. #u1648 {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:1213px;
  7105. top:5824px;
  7106. width:352px;
  7107. height:154px;
  7108. display:flex;
  7109. line-height:22px;
  7110. }
  7111. #u1648 .text {
  7112. position:absolute;
  7113. align-self:flex-start;
  7114. padding:0px 0px 0px 0px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u1648_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. }
  7123. #u1649 {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:1356px;
  7127. top:5933px;
  7128. width:93px;
  7129. height:25px;
  7130. overflow:hidden;
  7131. background-image:url('../../resources/images/transparent.gif');
  7132. }
  7133. #u1650_div {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:0px;
  7137. top:0px;
  7138. width:279px;
  7139. height:105px;
  7140. background:inherit;
  7141. background-color:rgba(255, 255, 0, 1);
  7142. box-sizing:border-box;
  7143. border-width:1px;
  7144. border-style:solid;
  7145. border-color:rgba(0, 0, 0, 1);
  7146. border-radius:10px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. text-align:left;
  7151. line-height:18px;
  7152. }
  7153. #u1650 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:1250px;
  7157. top:5818px;
  7158. width:279px;
  7159. height:105px;
  7160. display:flex;
  7161. text-align:left;
  7162. line-height:18px;
  7163. }
  7164. #u1650 .text {
  7165. position:absolute;
  7166. align-self:flex-end;
  7167. padding:2px 2px 2px 2px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u1650_text {
  7172. border-width:0px;
  7173. word-wrap:break-word;
  7174. text-transform:none;
  7175. }
  7176. #u1651 {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:1286px;
  7180. top:5953px;
  7181. width:70px;
  7182. height:25px;
  7183. overflow:hidden;
  7184. background-image:url('../../resources/images/transparent.gif');
  7185. }
  7186. #u1652 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:1485px;
  7190. top:5933px;
  7191. width:54px;
  7192. height:22px;
  7193. overflow:hidden;
  7194. background-image:url('../../resources/images/transparent.gif');
  7195. }
  7196. #u1653_div {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:223px;
  7202. height:79px;
  7203. background:inherit;
  7204. background-color:rgba(255, 255, 0, 1);
  7205. box-sizing:border-box;
  7206. border-width:1px;
  7207. border-style:solid;
  7208. border-color:rgba(0, 0, 0, 1);
  7209. border-radius:10px;
  7210. -moz-box-shadow:none;
  7211. -webkit-box-shadow:none;
  7212. box-shadow:none;
  7213. text-align:left;
  7214. line-height:18px;
  7215. }
  7216. #u1653 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:1331px;
  7220. top:5958px;
  7221. width:223px;
  7222. height:79px;
  7223. display:flex;
  7224. text-align:left;
  7225. line-height:18px;
  7226. }
  7227. #u1653 .text {
  7228. position:absolute;
  7229. align-self:flex-end;
  7230. padding:2px 2px 2px 2px;
  7231. box-sizing:border-box;
  7232. width:100%;
  7233. }
  7234. #u1653_text {
  7235. border-width:0px;
  7236. word-wrap:break-word;
  7237. text-transform:none;
  7238. }
  7239. #u1654_div {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:232px;
  7245. height:146px;
  7246. background:inherit;
  7247. background-color:rgba(255, 255, 0, 1);
  7248. box-sizing:border-box;
  7249. border-width:1px;
  7250. border-style:solid;
  7251. border-color:rgba(0, 0, 0, 1);
  7252. border-radius:10px;
  7253. -moz-box-shadow:none;
  7254. -webkit-box-shadow:none;
  7255. box-shadow:none;
  7256. text-align:left;
  7257. line-height:18px;
  7258. }
  7259. #u1654 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:1213px;
  7263. top:5978px;
  7264. width:232px;
  7265. height:146px;
  7266. display:flex;
  7267. text-align:left;
  7268. line-height:18px;
  7269. }
  7270. #u1654 .text {
  7271. position:absolute;
  7272. align-self:flex-end;
  7273. padding:2px 2px 2px 2px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u1654_text {
  7278. border-width:0px;
  7279. word-wrap:break-word;
  7280. text-transform:none;
  7281. }
  7282. #u1655 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:1376px;
  7286. top:5869px;
  7287. width:54px;
  7288. height:20px;
  7289. overflow:hidden;
  7290. background-image:url('../../resources/images/transparent.gif');
  7291. }
  7292. #u1656_div {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:223px;
  7298. height:105px;
  7299. background:inherit;
  7300. background-color:rgba(255, 255, 0, 1);
  7301. box-sizing:border-box;
  7302. border-width:1px;
  7303. border-style:solid;
  7304. border-color:rgba(0, 0, 0, 1);
  7305. border-radius:10px;
  7306. -moz-box-shadow:none;
  7307. -webkit-box-shadow:none;
  7308. box-shadow:none;
  7309. text-align:left;
  7310. line-height:18px;
  7311. }
  7312. #u1656 {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:1286px;
  7316. top:5759px;
  7317. width:223px;
  7318. height:105px;
  7319. display:flex;
  7320. text-align:left;
  7321. line-height:18px;
  7322. }
  7323. #u1656 .text {
  7324. position:absolute;
  7325. align-self:flex-end;
  7326. padding:2px 2px 2px 2px;
  7327. box-sizing:border-box;
  7328. width:100%;
  7329. }
  7330. #u1656_text {
  7331. border-width:0px;
  7332. word-wrap:break-word;
  7333. text-transform:none;
  7334. }
  7335. #u1657_div {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:232px;
  7341. height:136px;
  7342. background:inherit;
  7343. background-color:rgba(255, 255, 0, 1);
  7344. box-sizing:border-box;
  7345. border-width:1px;
  7346. border-style:solid;
  7347. border-color:rgba(0, 0, 0, 1);
  7348. border-radius:10px;
  7349. -moz-box-shadow:none;
  7350. -webkit-box-shadow:none;
  7351. box-shadow:none;
  7352. text-align:left;
  7353. line-height:18px;
  7354. }
  7355. #u1657 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:1212px;
  7359. top:2599px;
  7360. width:232px;
  7361. height:136px;
  7362. display:flex;
  7363. text-align:left;
  7364. line-height:18px;
  7365. }
  7366. #u1657 .text {
  7367. position:absolute;
  7368. align-self:flex-end;
  7369. padding:2px 2px 2px 2px;
  7370. box-sizing:border-box;
  7371. width:100%;
  7372. }
  7373. #u1657_text {
  7374. border-width:0px;
  7375. word-wrap:break-word;
  7376. text-transform:none;
  7377. }
  7378. #u1658_img {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:1155px;
  7384. height:583px;
  7385. }
  7386. #u1658 {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:8px;
  7390. top:3061px;
  7391. width:1155px;
  7392. height:583px;
  7393. display:flex;
  7394. }
  7395. #u1658 .text {
  7396. position:absolute;
  7397. align-self:center;
  7398. padding:2px 2px 2px 2px;
  7399. box-sizing:border-box;
  7400. width:100%;
  7401. }
  7402. #u1658_text {
  7403. border-width:0px;
  7404. word-wrap:break-word;
  7405. text-transform:none;
  7406. visibility:hidden;
  7407. }
  7408. #u1659_div {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:234px;
  7414. height:21px;
  7415. background:inherit;
  7416. background-color:rgba(255, 255, 255, 0);
  7417. border:none;
  7418. border-radius:0px;
  7419. -moz-box-shadow:none;
  7420. -webkit-box-shadow:none;
  7421. box-shadow:none;
  7422. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7423. font-weight:700;
  7424. font-style:normal;
  7425. font-size:18px;
  7426. }
  7427. #u1659 {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:8px;
  7431. top:3023px;
  7432. width:234px;
  7433. height:21px;
  7434. display:flex;
  7435. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7436. font-weight:700;
  7437. font-style:normal;
  7438. font-size:18px;
  7439. }
  7440. #u1659 .text {
  7441. position:absolute;
  7442. align-self:flex-start;
  7443. padding:0px 0px 0px 0px;
  7444. box-sizing:border-box;
  7445. width:100%;
  7446. }
  7447. #u1659_text {
  7448. border-width:0px;
  7449. word-wrap:break-word;
  7450. text-transform:none;
  7451. }
  7452. #u1660 {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:0px;
  7456. top:0px;
  7457. width:0px;
  7458. height:0px;
  7459. }
  7460. #u1661_img {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:-4px;
  7464. top:-4px;
  7465. width:44px;
  7466. height:44px;
  7467. }
  7468. #u1661 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:1173px;
  7472. top:3061px;
  7473. width:34px;
  7474. height:34px;
  7475. display:flex;
  7476. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7477. font-weight:700;
  7478. font-style:normal;
  7479. font-size:26px;
  7480. }
  7481. #u1661 .text {
  7482. position:absolute;
  7483. align-self:center;
  7484. padding:2px 2px 2px 2px;
  7485. box-sizing:border-box;
  7486. width:100%;
  7487. }
  7488. #u1661_text {
  7489. border-width:0px;
  7490. word-wrap:break-word;
  7491. text-transform:none;
  7492. }
  7493. #u1662_div {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:131px;
  7499. height:18px;
  7500. background:inherit;
  7501. background-color:rgba(255, 255, 255, 0);
  7502. border:none;
  7503. border-radius:0px;
  7504. -moz-box-shadow:none;
  7505. -webkit-box-shadow:none;
  7506. box-shadow:none;
  7507. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7508. font-weight:700;
  7509. font-style:normal;
  7510. font-size:16px;
  7511. }
  7512. #u1662 {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:1213px;
  7516. top:3068px;
  7517. width:131px;
  7518. height:18px;
  7519. display:flex;
  7520. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7521. font-weight:700;
  7522. font-style:normal;
  7523. font-size:16px;
  7524. }
  7525. #u1662 .text {
  7526. position:absolute;
  7527. align-self:flex-start;
  7528. padding:0px 0px 0px 0px;
  7529. box-sizing:border-box;
  7530. width:100%;
  7531. }
  7532. #u1662_text {
  7533. border-width:0px;
  7534. word-wrap:break-word;
  7535. text-transform:none;
  7536. }
  7537. #u1663_div {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:0px;
  7541. top:0px;
  7542. width:352px;
  7543. height:66px;
  7544. background:inherit;
  7545. background-color:rgba(255, 255, 255, 0);
  7546. border:none;
  7547. border-radius:0px;
  7548. -moz-box-shadow:none;
  7549. -webkit-box-shadow:none;
  7550. box-shadow:none;
  7551. line-height:22px;
  7552. }
  7553. #u1663 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:1213px;
  7557. top:3106px;
  7558. width:352px;
  7559. height:66px;
  7560. display:flex;
  7561. line-height:22px;
  7562. }
  7563. #u1663 .text {
  7564. position:absolute;
  7565. align-self:flex-start;
  7566. padding:0px 0px 0px 0px;
  7567. box-sizing:border-box;
  7568. width:100%;
  7569. }
  7570. #u1663_text {
  7571. border-width:0px;
  7572. word-wrap:break-word;
  7573. text-transform:none;
  7574. }
  7575. #u1664 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:0px;
  7581. height:0px;
  7582. }
  7583. #u1665_img {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:-4px;
  7587. top:-4px;
  7588. width:44px;
  7589. height:44px;
  7590. }
  7591. #u1665 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:1173px;
  7595. top:3187px;
  7596. width:34px;
  7597. height:34px;
  7598. display:flex;
  7599. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7600. font-weight:700;
  7601. font-style:normal;
  7602. font-size:26px;
  7603. }
  7604. #u1665 .text {
  7605. position:absolute;
  7606. align-self:center;
  7607. padding:2px 2px 2px 2px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u1665_text {
  7612. border-width:0px;
  7613. word-wrap:break-word;
  7614. text-transform:none;
  7615. }
  7616. #u1666_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:131px;
  7622. height:18px;
  7623. background:inherit;
  7624. background-color:rgba(255, 255, 255, 0);
  7625. border:none;
  7626. border-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7631. font-weight:700;
  7632. font-style:normal;
  7633. font-size:16px;
  7634. }
  7635. #u1666 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:1213px;
  7639. top:3194px;
  7640. width:131px;
  7641. height:18px;
  7642. display:flex;
  7643. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7644. font-weight:700;
  7645. font-style:normal;
  7646. font-size:16px;
  7647. }
  7648. #u1666 .text {
  7649. position:absolute;
  7650. align-self:flex-start;
  7651. padding:0px 0px 0px 0px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u1666_text {
  7656. border-width:0px;
  7657. word-wrap:break-word;
  7658. text-transform:none;
  7659. }
  7660. #u1667_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:352px;
  7666. height:88px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 0);
  7669. border:none;
  7670. border-radius:0px;
  7671. -moz-box-shadow:none;
  7672. -webkit-box-shadow:none;
  7673. box-shadow:none;
  7674. line-height:22px;
  7675. }
  7676. #u1667 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:1213px;
  7680. top:3232px;
  7681. width:352px;
  7682. height:88px;
  7683. display:flex;
  7684. line-height:22px;
  7685. }
  7686. #u1667 .text {
  7687. position:absolute;
  7688. align-self:flex-start;
  7689. padding:0px 0px 0px 0px;
  7690. box-sizing:border-box;
  7691. width:100%;
  7692. }
  7693. #u1667_text {
  7694. border-width:0px;
  7695. word-wrap:break-word;
  7696. text-transform:none;
  7697. }
  7698. #u1668_img {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:0px;
  7702. top:0px;
  7703. width:1155px;
  7704. height:583px;
  7705. }
  7706. #u1668 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:8px;
  7710. top:3741px;
  7711. width:1155px;
  7712. height:583px;
  7713. display:flex;
  7714. }
  7715. #u1668 .text {
  7716. position:absolute;
  7717. align-self:center;
  7718. padding:2px 2px 2px 2px;
  7719. box-sizing:border-box;
  7720. width:100%;
  7721. }
  7722. #u1668_text {
  7723. border-width:0px;
  7724. word-wrap:break-word;
  7725. text-transform:none;
  7726. visibility:hidden;
  7727. }
  7728. #u1669_div {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:234px;
  7734. height:21px;
  7735. background:inherit;
  7736. background-color:rgba(255, 255, 255, 0);
  7737. border:none;
  7738. border-radius:0px;
  7739. -moz-box-shadow:none;
  7740. -webkit-box-shadow:none;
  7741. box-shadow:none;
  7742. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7743. font-weight:700;
  7744. font-style:normal;
  7745. font-size:18px;
  7746. }
  7747. #u1669 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:8px;
  7751. top:3709px;
  7752. width:234px;
  7753. height:21px;
  7754. display:flex;
  7755. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7756. font-weight:700;
  7757. font-style:normal;
  7758. font-size:18px;
  7759. }
  7760. #u1669 .text {
  7761. position:absolute;
  7762. align-self:flex-start;
  7763. padding:0px 0px 0px 0px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u1669_text {
  7768. border-width:0px;
  7769. word-wrap:break-word;
  7770. text-transform:none;
  7771. }
  7772. #u1670_img {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:-4px;
  7776. top:-4px;
  7777. width:30px;
  7778. height:30px;
  7779. }
  7780. #u1670 {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:454px;
  7784. top:3171px;
  7785. width:20px;
  7786. height:20px;
  7787. display:flex;
  7788. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7789. font-weight:700;
  7790. font-style:normal;
  7791. font-size:14px;
  7792. color:#1E1E1E;
  7793. }
  7794. #u1670 .text {
  7795. position:absolute;
  7796. align-self:center;
  7797. padding:2px 2px 2px 2px;
  7798. box-sizing:border-box;
  7799. width:100%;
  7800. }
  7801. #u1670_text {
  7802. border-width:0px;
  7803. word-wrap:break-word;
  7804. text-transform:none;
  7805. }
  7806. #u1671_img {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:-4px;
  7810. top:-4px;
  7811. width:30px;
  7812. height:30px;
  7813. }
  7814. #u1671 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:525px;
  7818. top:3171px;
  7819. width:20px;
  7820. height:20px;
  7821. display:flex;
  7822. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7823. font-weight:700;
  7824. font-style:normal;
  7825. font-size:14px;
  7826. color:#1E1E1E;
  7827. }
  7828. #u1671 .text {
  7829. position:absolute;
  7830. align-self:center;
  7831. padding:2px 2px 2px 2px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u1671_text {
  7836. border-width:0px;
  7837. word-wrap:break-word;
  7838. text-transform:none;
  7839. }
  7840. #u1672_img {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:1155px;
  7846. height:583px;
  7847. }
  7848. #u1672 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:8px;
  7852. top:9807px;
  7853. width:1155px;
  7854. height:583px;
  7855. display:flex;
  7856. }
  7857. #u1672 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 2px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u1672_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. visibility:hidden;
  7869. }
  7870. #u1673 {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:0px;
  7876. height:0px;
  7877. }
  7878. #u1674_div {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:352px;
  7884. height:176px;
  7885. background:inherit;
  7886. background-color:rgba(255, 255, 255, 0);
  7887. border:none;
  7888. border-radius:0px;
  7889. -moz-box-shadow:none;
  7890. -webkit-box-shadow:none;
  7891. box-shadow:none;
  7892. line-height:22px;
  7893. }
  7894. #u1674 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:1218px;
  7898. top:9199px;
  7899. width:352px;
  7900. height:176px;
  7901. display:flex;
  7902. line-height:22px;
  7903. }
  7904. #u1674 .text {
  7905. position:absolute;
  7906. align-self:flex-start;
  7907. padding:0px 0px 0px 0px;
  7908. box-sizing:border-box;
  7909. width:100%;
  7910. }
  7911. #u1674_text {
  7912. border-width:0px;
  7913. word-wrap:break-word;
  7914. text-transform:none;
  7915. }
  7916. #u1675_img {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:-4px;
  7920. top:-4px;
  7921. width:44px;
  7922. height:44px;
  7923. }
  7924. #u1675 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:1173px;
  7928. top:9161px;
  7929. width:34px;
  7930. height:34px;
  7931. display:flex;
  7932. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7933. font-weight:700;
  7934. font-style:normal;
  7935. font-size:26px;
  7936. }
  7937. #u1675 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:2px 2px 2px 2px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u1675_text {
  7945. border-width:0px;
  7946. word-wrap:break-word;
  7947. text-transform:none;
  7948. }
  7949. #u1676_div {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:0px;
  7953. top:0px;
  7954. width:198px;
  7955. height:18px;
  7956. background:inherit;
  7957. background-color:rgba(255, 255, 255, 0);
  7958. border:none;
  7959. border-radius:0px;
  7960. -moz-box-shadow:none;
  7961. -webkit-box-shadow:none;
  7962. box-shadow:none;
  7963. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7964. font-weight:700;
  7965. font-style:normal;
  7966. font-size:16px;
  7967. color:#FF0000;
  7968. }
  7969. #u1676 {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:1213px;
  7973. top:9168px;
  7974. width:198px;
  7975. height:18px;
  7976. display:flex;
  7977. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  7978. font-weight:700;
  7979. font-style:normal;
  7980. font-size:16px;
  7981. color:#FF0000;
  7982. }
  7983. #u1676 .text {
  7984. position:absolute;
  7985. align-self:flex-start;
  7986. padding:0px 0px 0px 0px;
  7987. box-sizing:border-box;
  7988. width:100%;
  7989. }
  7990. #u1676_text {
  7991. border-width:0px;
  7992. word-wrap:break-word;
  7993. text-transform:none;
  7994. }
  7995. #u1677 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:1213px;
  7999. top:9166px;
  8000. width:95px;
  8001. height:23px;
  8002. overflow:hidden;
  8003. background-image:url('../../resources/images/transparent.gif');
  8004. }
  8005. #u1678_div {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:270px;
  8011. height:115px;
  8012. background:inherit;
  8013. background-color:rgba(255, 255, 0, 1);
  8014. box-sizing:border-box;
  8015. border-width:1px;
  8016. border-style:solid;
  8017. border-color:rgba(0, 0, 0, 1);
  8018. border-radius:10px;
  8019. -moz-box-shadow:none;
  8020. -webkit-box-shadow:none;
  8021. box-shadow:none;
  8022. color:#000000;
  8023. text-align:left;
  8024. line-height:18px;
  8025. }
  8026. #u1678 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:1213px;
  8030. top:9044px;
  8031. width:270px;
  8032. height:115px;
  8033. display:flex;
  8034. color:#000000;
  8035. text-align:left;
  8036. line-height:18px;
  8037. }
  8038. #u1678 .text {
  8039. position:absolute;
  8040. align-self:center;
  8041. padding:2px 2px 2px 2px;
  8042. box-sizing:border-box;
  8043. width:100%;
  8044. }
  8045. #u1678_text {
  8046. border-width:0px;
  8047. word-wrap:break-word;
  8048. text-transform:none;
  8049. }
  8050. #u1679_img {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:0px;
  8054. top:0px;
  8055. width:1155px;
  8056. height:583px;
  8057. }
  8058. #u1679 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:8px;
  8062. top:10436px;
  8063. width:1155px;
  8064. height:583px;
  8065. display:flex;
  8066. }
  8067. #u1679 .text {
  8068. position:absolute;
  8069. align-self:center;
  8070. padding:2px 2px 2px 2px;
  8071. box-sizing:border-box;
  8072. width:100%;
  8073. }
  8074. #u1679_text {
  8075. border-width:0px;
  8076. word-wrap:break-word;
  8077. text-transform:none;
  8078. visibility:hidden;
  8079. }
  8080. #u1680_img {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:1155px;
  8086. height:583px;
  8087. }
  8088. #u1680 {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:8px;
  8092. top:11082px;
  8093. width:1155px;
  8094. height:583px;
  8095. display:flex;
  8096. }
  8097. #u1680 .text {
  8098. position:absolute;
  8099. align-self:center;
  8100. padding:2px 2px 2px 2px;
  8101. box-sizing:border-box;
  8102. width:100%;
  8103. }
  8104. #u1680_text {
  8105. border-width:0px;
  8106. word-wrap:break-word;
  8107. text-transform:none;
  8108. visibility:hidden;
  8109. }
  8110. #u1681 {
  8111. position:fixed;
  8112. left:1382px;
  8113. top:68px;
  8114. }
  8115. #u1681_state0 {
  8116. position:relative;
  8117. left:0px;
  8118. top:0px;
  8119. width:140px;
  8120. height:40px;
  8121. background-image:none;
  8122. border:none;
  8123. border-radius:0px;
  8124. -moz-box-shadow:none;
  8125. -webkit-box-shadow:none;
  8126. box-shadow:none;
  8127. }
  8128. #u1681_state0_content {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:1px;
  8134. height:1px;
  8135. }
  8136. #u1682_div {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:140px;
  8142. height:40px;
  8143. background:inherit;
  8144. background-color:rgba(51, 160, 154, 1);
  8145. border:none;
  8146. border-radius:5px;
  8147. -moz-box-shadow:none;
  8148. -webkit-box-shadow:none;
  8149. box-shadow:none;
  8150. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  8151. font-weight:700;
  8152. font-style:normal;
  8153. font-size:16px;
  8154. }
  8155. #u1682 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:140px;
  8161. height:40px;
  8162. display:flex;
  8163. font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
  8164. font-weight:700;
  8165. font-style:normal;
  8166. font-size:16px;
  8167. }
  8168. #u1682 .text {
  8169. position:absolute;
  8170. align-self:center;
  8171. padding:2px 2px 2px 2px;
  8172. box-sizing:border-box;
  8173. width:100%;
  8174. }
  8175. #u1682_text {
  8176. border-width:0px;
  8177. word-wrap:break-word;
  8178. text-transform:none;
  8179. }