styles.css 116 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1980px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u58_div {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:140px;
  21. height:55px;
  22. background:inherit;
  23. background-color:rgba(255, 255, 255, 0);
  24. border:none;
  25. border-radius:0px;
  26. -moz-box-shadow:none;
  27. -webkit-box-shadow:none;
  28. box-shadow:none;
  29. font-family:'Arial Normal', 'Arial';
  30. font-weight:400;
  31. font-style:normal;
  32. font-size:48px;
  33. color:#666666;
  34. }
  35. #u58 {
  36. border-width:0px;
  37. position:absolute;
  38. left:729px;
  39. top:26px;
  40. width:140px;
  41. height:55px;
  42. font-family:'Arial Normal', 'Arial';
  43. font-weight:400;
  44. font-style:normal;
  45. font-size:48px;
  46. color:#666666;
  47. }
  48. #u58_text {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:140px;
  54. white-space:nowrap;
  55. }
  56. #u59_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:1598px;
  62. height:65px;
  63. background:inherit;
  64. background-color:rgba(215, 215, 215, 1);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. }
  71. #u59 {
  72. border-width:0px;
  73. position:absolute;
  74. left:0px;
  75. top:104px;
  76. width:1598px;
  77. height:65px;
  78. }
  79. #u59_text {
  80. border-width:0px;
  81. position:absolute;
  82. left:0px;
  83. top:0px;
  84. width:0px;
  85. visibility:hidden;
  86. word-wrap:break-word;
  87. }
  88. #u60_div {
  89. border-width:0px;
  90. position:absolute;
  91. left:0px;
  92. top:0px;
  93. width:49px;
  94. height:29px;
  95. background:inherit;
  96. background-color:rgba(255, 255, 255, 0);
  97. border:none;
  98. border-radius:0px;
  99. -moz-box-shadow:none;
  100. -webkit-box-shadow:none;
  101. box-shadow:none;
  102. font-size:24px;
  103. color:#666666;
  104. }
  105. #u60 {
  106. border-width:0px;
  107. position:absolute;
  108. left:203px;
  109. top:123px;
  110. width:49px;
  111. height:29px;
  112. font-size:24px;
  113. color:#666666;
  114. }
  115. #u60_text {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:49px;
  121. white-space:nowrap;
  122. }
  123. #u61_div {
  124. border-width:0px;
  125. position:absolute;
  126. left:0px;
  127. top:0px;
  128. width:49px;
  129. height:29px;
  130. background:inherit;
  131. background-color:rgba(255, 255, 255, 0);
  132. border:none;
  133. border-radius:0px;
  134. -moz-box-shadow:none;
  135. -webkit-box-shadow:none;
  136. box-shadow:none;
  137. font-size:24px;
  138. color:#666666;
  139. }
  140. #u61 {
  141. border-width:0px;
  142. position:absolute;
  143. left:296px;
  144. top:123px;
  145. width:49px;
  146. height:29px;
  147. font-size:24px;
  148. color:#666666;
  149. }
  150. #u61_text {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:49px;
  156. white-space:nowrap;
  157. }
  158. #u62_div {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:49px;
  164. height:29px;
  165. background:inherit;
  166. background-color:rgba(255, 255, 255, 0);
  167. border:none;
  168. border-radius:0px;
  169. -moz-box-shadow:none;
  170. -webkit-box-shadow:none;
  171. box-shadow:none;
  172. font-size:24px;
  173. color:#666666;
  174. }
  175. #u62 {
  176. border-width:0px;
  177. position:absolute;
  178. left:397px;
  179. top:123px;
  180. width:49px;
  181. height:29px;
  182. font-size:24px;
  183. color:#666666;
  184. }
  185. #u62_text {
  186. border-width:0px;
  187. position:absolute;
  188. left:0px;
  189. top:0px;
  190. width:49px;
  191. white-space:nowrap;
  192. }
  193. #u63_div {
  194. border-width:0px;
  195. position:absolute;
  196. left:0px;
  197. top:0px;
  198. width:49px;
  199. height:29px;
  200. background:inherit;
  201. background-color:rgba(255, 255, 255, 0);
  202. border:none;
  203. border-radius:0px;
  204. -moz-box-shadow:none;
  205. -webkit-box-shadow:none;
  206. box-shadow:none;
  207. font-size:24px;
  208. color:#666666;
  209. }
  210. #u63 {
  211. border-width:0px;
  212. position:absolute;
  213. left:605px;
  214. top:123px;
  215. width:49px;
  216. height:29px;
  217. font-size:24px;
  218. color:#666666;
  219. }
  220. #u63_text {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:49px;
  226. white-space:nowrap;
  227. }
  228. #u64_div {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:49px;
  234. height:29px;
  235. background:inherit;
  236. background-color:rgba(255, 255, 255, 0);
  237. border:none;
  238. border-radius:0px;
  239. -moz-box-shadow:none;
  240. -webkit-box-shadow:none;
  241. box-shadow:none;
  242. font-size:24px;
  243. color:#666666;
  244. }
  245. #u64 {
  246. border-width:0px;
  247. position:absolute;
  248. left:718px;
  249. top:123px;
  250. width:49px;
  251. height:29px;
  252. font-size:24px;
  253. color:#666666;
  254. }
  255. #u64_text {
  256. border-width:0px;
  257. position:absolute;
  258. left:0px;
  259. top:0px;
  260. width:49px;
  261. white-space:nowrap;
  262. }
  263. #u65_div {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:97px;
  269. height:29px;
  270. background:inherit;
  271. background-color:rgba(255, 255, 255, 0);
  272. border:none;
  273. border-radius:0px;
  274. -moz-box-shadow:none;
  275. -webkit-box-shadow:none;
  276. box-shadow:none;
  277. font-size:24px;
  278. color:#666666;
  279. }
  280. #u65 {
  281. border-width:0px;
  282. position:absolute;
  283. left:830px;
  284. top:123px;
  285. width:97px;
  286. height:29px;
  287. font-size:24px;
  288. color:#666666;
  289. }
  290. #u65_text {
  291. border-width:0px;
  292. position:absolute;
  293. left:0px;
  294. top:0px;
  295. width:97px;
  296. white-space:nowrap;
  297. }
  298. #u66_div {
  299. border-width:0px;
  300. position:absolute;
  301. left:0px;
  302. top:0px;
  303. width:49px;
  304. height:29px;
  305. background:inherit;
  306. background-color:rgba(255, 255, 255, 0);
  307. border:none;
  308. border-radius:0px;
  309. -moz-box-shadow:none;
  310. -webkit-box-shadow:none;
  311. box-shadow:none;
  312. font-size:24px;
  313. color:#666666;
  314. }
  315. #u66 {
  316. border-width:0px;
  317. position:absolute;
  318. left:496px;
  319. top:123px;
  320. width:49px;
  321. height:29px;
  322. font-size:24px;
  323. color:#666666;
  324. }
  325. #u66_text {
  326. border-width:0px;
  327. position:absolute;
  328. left:0px;
  329. top:0px;
  330. width:49px;
  331. white-space:nowrap;
  332. }
  333. #u67_div {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:33px;
  339. height:19px;
  340. background:inherit;
  341. background-color:rgba(255, 255, 255, 0);
  342. border:none;
  343. border-radius:0px;
  344. -moz-box-shadow:none;
  345. -webkit-box-shadow:none;
  346. box-shadow:none;
  347. font-size:16px;
  348. }
  349. #u67 {
  350. border-width:0px;
  351. position:absolute;
  352. left:1315px;
  353. top:78px;
  354. width:33px;
  355. height:19px;
  356. font-size:16px;
  357. }
  358. #u67_text {
  359. border-width:0px;
  360. position:absolute;
  361. left:0px;
  362. top:0px;
  363. width:33px;
  364. white-space:nowrap;
  365. }
  366. #u68_div {
  367. border-width:0px;
  368. position:absolute;
  369. left:0px;
  370. top:0px;
  371. width:33px;
  372. height:19px;
  373. background:inherit;
  374. background-color:rgba(255, 255, 255, 0);
  375. border:none;
  376. border-radius:0px;
  377. -moz-box-shadow:none;
  378. -webkit-box-shadow:none;
  379. box-shadow:none;
  380. font-size:16px;
  381. }
  382. #u68 {
  383. border-width:0px;
  384. position:absolute;
  385. left:1365px;
  386. top:78px;
  387. width:33px;
  388. height:19px;
  389. font-size:16px;
  390. }
  391. #u68_text {
  392. border-width:0px;
  393. position:absolute;
  394. left:0px;
  395. top:0px;
  396. width:33px;
  397. white-space:nowrap;
  398. }
  399. #u69_div {
  400. border-width:0px;
  401. position:absolute;
  402. left:0px;
  403. top:0px;
  404. width:16px;
  405. height:18px;
  406. background:inherit;
  407. background-color:rgba(255, 255, 255, 0);
  408. border:none;
  409. border-radius:0px;
  410. -moz-box-shadow:none;
  411. -webkit-box-shadow:none;
  412. box-shadow:none;
  413. }
  414. #u69 {
  415. border-width:0px;
  416. position:absolute;
  417. left:1354px;
  418. top:78px;
  419. width:16px;
  420. height:18px;
  421. }
  422. #u69_text {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:16px;
  428. word-wrap:break-word;
  429. }
  430. #u70_img {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:1192px;
  436. height:462px;
  437. }
  438. #u70 {
  439. border-width:0px;
  440. position:absolute;
  441. left:203px;
  442. top:177px;
  443. width:1192px;
  444. height:462px;
  445. font-family:'PingFang SC Regular', 'PingFang SC';
  446. font-weight:400;
  447. font-style:normal;
  448. font-size:30px;
  449. color:#868686;
  450. }
  451. #u70_text {
  452. border-width:0px;
  453. position:absolute;
  454. left:2px;
  455. top:213px;
  456. width:1188px;
  457. word-wrap:break-word;
  458. }
  459. #u71_div {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:202px;
  465. height:462px;
  466. background:inherit;
  467. background-color:rgba(0, 0, 0, 1);
  468. border:none;
  469. border-radius:0px;
  470. -moz-box-shadow:none;
  471. -webkit-box-shadow:none;
  472. box-shadow:none;
  473. }
  474. #u71 {
  475. border-width:0px;
  476. position:absolute;
  477. left:0px;
  478. top:177px;
  479. width:202px;
  480. height:462px;
  481. }
  482. #u71_text {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. visibility:hidden;
  489. word-wrap:break-word;
  490. }
  491. #u72_div {
  492. border-width:0px;
  493. position:absolute;
  494. left:0px;
  495. top:0px;
  496. width:202px;
  497. height:462px;
  498. background:inherit;
  499. background-color:rgba(0, 0, 0, 1);
  500. border:none;
  501. border-radius:0px;
  502. -moz-box-shadow:none;
  503. -webkit-box-shadow:none;
  504. box-shadow:none;
  505. }
  506. #u72 {
  507. border-width:0px;
  508. position:absolute;
  509. left:1396px;
  510. top:177px;
  511. width:202px;
  512. height:462px;
  513. }
  514. #u72_text {
  515. border-width:0px;
  516. position:absolute;
  517. left:0px;
  518. top:0px;
  519. width:0px;
  520. visibility:hidden;
  521. word-wrap:break-word;
  522. }
  523. #u73_img {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:70px;
  529. height:70px;
  530. }
  531. #u73 {
  532. border-width:0px;
  533. position:absolute;
  534. left:123px;
  535. top:373px;
  536. width:70px;
  537. height:70px;
  538. }
  539. #u73_text {
  540. border-width:0px;
  541. position:absolute;
  542. left:0px;
  543. top:0px;
  544. width:0px;
  545. visibility:hidden;
  546. word-wrap:break-word;
  547. }
  548. #u74_img {
  549. border-width:0px;
  550. position:absolute;
  551. left:0px;
  552. top:0px;
  553. width:70px;
  554. height:70px;
  555. }
  556. #u74 {
  557. border-width:0px;
  558. position:absolute;
  559. left:1406px;
  560. top:373px;
  561. width:70px;
  562. height:70px;
  563. }
  564. #u74_text {
  565. border-width:0px;
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:0px;
  570. visibility:hidden;
  571. word-wrap:break-word;
  572. }
  573. #u75_div {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:73px;
  579. height:41px;
  580. background:inherit;
  581. background-color:rgba(255, 255, 255, 0);
  582. border:none;
  583. border-radius:0px;
  584. -moz-box-shadow:none;
  585. -webkit-box-shadow:none;
  586. box-shadow:none;
  587. font-size:36px;
  588. color:#666666;
  589. }
  590. #u75 {
  591. border-width:0px;
  592. position:absolute;
  593. left:203px;
  594. top:667px;
  595. width:73px;
  596. height:41px;
  597. font-size:36px;
  598. color:#666666;
  599. }
  600. #u75_text {
  601. border-width:0px;
  602. position:absolute;
  603. left:0px;
  604. top:0px;
  605. width:73px;
  606. white-space:nowrap;
  607. }
  608. #u76_div {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:370px;
  614. height:254px;
  615. background:inherit;
  616. background-color:rgba(215, 215, 215, 1);
  617. border:none;
  618. border-radius:0px;
  619. -moz-box-shadow:none;
  620. -webkit-box-shadow:none;
  621. box-shadow:none;
  622. }
  623. #u76 {
  624. border-width:0px;
  625. position:absolute;
  626. left:203px;
  627. top:733px;
  628. width:370px;
  629. height:254px;
  630. }
  631. #u76_text {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:0px;
  637. visibility:hidden;
  638. word-wrap:break-word;
  639. }
  640. #u77_div {
  641. border-width:0px;
  642. position:absolute;
  643. left:0px;
  644. top:0px;
  645. width:370px;
  646. height:57px;
  647. background:inherit;
  648. background-color:rgba(242, 242, 242, 1);
  649. box-sizing:border-box;
  650. border-width:1px;
  651. border-style:solid;
  652. border-color:rgba(242, 242, 242, 1);
  653. border-radius:0px;
  654. -moz-box-shadow:none;
  655. -webkit-box-shadow:none;
  656. box-shadow:none;
  657. font-size:22px;
  658. color:#666666;
  659. }
  660. #u77 {
  661. border-width:0px;
  662. position:absolute;
  663. left:203px;
  664. top:987px;
  665. width:370px;
  666. height:57px;
  667. font-size:22px;
  668. color:#666666;
  669. }
  670. #u77_text {
  671. border-width:0px;
  672. position:absolute;
  673. left:2px;
  674. top:16px;
  675. width:366px;
  676. word-wrap:break-word;
  677. }
  678. #u78_div {
  679. border-width:0px;
  680. position:absolute;
  681. left:0px;
  682. top:0px;
  683. width:370px;
  684. height:254px;
  685. background:inherit;
  686. background-color:rgba(215, 215, 215, 1);
  687. border:none;
  688. border-radius:0px;
  689. -moz-box-shadow:none;
  690. -webkit-box-shadow:none;
  691. box-shadow:none;
  692. }
  693. #u78 {
  694. border-width:0px;
  695. position:absolute;
  696. left:618px;
  697. top:733px;
  698. width:370px;
  699. height:254px;
  700. }
  701. #u78_text {
  702. border-width:0px;
  703. position:absolute;
  704. left:0px;
  705. top:0px;
  706. width:0px;
  707. visibility:hidden;
  708. word-wrap:break-word;
  709. }
  710. #u79_div {
  711. border-width:0px;
  712. position:absolute;
  713. left:0px;
  714. top:0px;
  715. width:370px;
  716. height:57px;
  717. background:inherit;
  718. background-color:rgba(242, 242, 242, 1);
  719. box-sizing:border-box;
  720. border-width:1px;
  721. border-style:solid;
  722. border-color:rgba(242, 242, 242, 1);
  723. border-radius:0px;
  724. -moz-box-shadow:none;
  725. -webkit-box-shadow:none;
  726. box-shadow:none;
  727. font-size:22px;
  728. color:#666666;
  729. }
  730. #u79 {
  731. border-width:0px;
  732. position:absolute;
  733. left:618px;
  734. top:987px;
  735. width:370px;
  736. height:57px;
  737. font-size:22px;
  738. color:#666666;
  739. }
  740. #u79_text {
  741. border-width:0px;
  742. position:absolute;
  743. left:2px;
  744. top:16px;
  745. width:366px;
  746. word-wrap:break-word;
  747. }
  748. #u80_div {
  749. border-width:0px;
  750. position:absolute;
  751. left:0px;
  752. top:0px;
  753. width:370px;
  754. height:254px;
  755. background:inherit;
  756. background-color:rgba(215, 215, 215, 1);
  757. border:none;
  758. border-radius:0px;
  759. -moz-box-shadow:none;
  760. -webkit-box-shadow:none;
  761. box-shadow:none;
  762. }
  763. #u80 {
  764. border-width:0px;
  765. position:absolute;
  766. left:203px;
  767. top:1082px;
  768. width:370px;
  769. height:254px;
  770. }
  771. #u80_text {
  772. border-width:0px;
  773. position:absolute;
  774. left:0px;
  775. top:0px;
  776. width:0px;
  777. visibility:hidden;
  778. word-wrap:break-word;
  779. }
  780. #u81_img {
  781. border-width:0px;
  782. position:absolute;
  783. left:0px;
  784. top:0px;
  785. width:40px;
  786. height:40px;
  787. }
  788. #u81 {
  789. border-width:0px;
  790. position:absolute;
  791. left:220px;
  792. top:1130px;
  793. width:40px;
  794. height:40px;
  795. }
  796. #u81_text {
  797. border-width:0px;
  798. position:absolute;
  799. left:0px;
  800. top:0px;
  801. width:0px;
  802. visibility:hidden;
  803. word-wrap:break-word;
  804. }
  805. #u82_div {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:298px;
  811. height:26px;
  812. background:inherit;
  813. background-color:rgba(255, 255, 255, 0);
  814. border:none;
  815. border-radius:0px;
  816. -moz-box-shadow:none;
  817. -webkit-box-shadow:none;
  818. box-shadow:none;
  819. font-size:22px;
  820. color:#FFFFFF;
  821. }
  822. #u82 {
  823. border-width:0px;
  824. position:absolute;
  825. left:239px;
  826. top:1290px;
  827. width:298px;
  828. height:26px;
  829. font-size:22px;
  830. color:#FFFFFF;
  831. }
  832. #u82_text {
  833. border-width:0px;
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:298px;
  838. white-space:nowrap;
  839. }
  840. #u83_div {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:371px;
  846. height:254px;
  847. background:inherit;
  848. background-color:rgba(215, 215, 215, 1);
  849. border:none;
  850. border-radius:0px;
  851. -moz-box-shadow:none;
  852. -webkit-box-shadow:none;
  853. box-shadow:none;
  854. }
  855. #u83 {
  856. border-width:0px;
  857. position:absolute;
  858. left:618px;
  859. top:1082px;
  860. width:371px;
  861. height:254px;
  862. }
  863. #u83_text {
  864. border-width:0px;
  865. position:absolute;
  866. left:0px;
  867. top:0px;
  868. width:0px;
  869. visibility:hidden;
  870. word-wrap:break-word;
  871. }
  872. #u84_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:40px;
  878. height:40px;
  879. }
  880. #u84 {
  881. border-width:0px;
  882. position:absolute;
  883. left:635px;
  884. top:1097px;
  885. width:40px;
  886. height:40px;
  887. }
  888. #u84_text {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:0px;
  894. visibility:hidden;
  895. word-wrap:break-word;
  896. }
  897. #u85_div {
  898. border-width:0px;
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:303px;
  903. height:26px;
  904. background:inherit;
  905. background-color:rgba(255, 255, 255, 0);
  906. border:none;
  907. border-radius:0px;
  908. -moz-box-shadow:none;
  909. -webkit-box-shadow:none;
  910. box-shadow:none;
  911. font-size:22px;
  912. color:#FFFFFF;
  913. }
  914. #u85 {
  915. border-width:0px;
  916. position:absolute;
  917. left:652px;
  918. top:1289px;
  919. width:303px;
  920. height:26px;
  921. font-size:22px;
  922. color:#FFFFFF;
  923. }
  924. #u85_text {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:303px;
  930. white-space:nowrap;
  931. }
  932. #u86_div {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:370px;
  938. height:254px;
  939. background:inherit;
  940. background-color:rgba(215, 215, 215, 1);
  941. border:none;
  942. border-radius:0px;
  943. -moz-box-shadow:none;
  944. -webkit-box-shadow:none;
  945. box-shadow:none;
  946. }
  947. #u86 {
  948. border-width:0px;
  949. position:absolute;
  950. left:1025px;
  951. top:1082px;
  952. width:370px;
  953. height:254px;
  954. }
  955. #u86_text {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. visibility:hidden;
  962. word-wrap:break-word;
  963. }
  964. #u87_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:40px;
  970. height:40px;
  971. }
  972. #u87 {
  973. border-width:0px;
  974. position:absolute;
  975. left:1047px;
  976. top:1097px;
  977. width:40px;
  978. height:40px;
  979. }
  980. #u87_text {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:0px;
  986. visibility:hidden;
  987. word-wrap:break-word;
  988. }
  989. #u88_div {
  990. border-width:0px;
  991. position:absolute;
  992. left:0px;
  993. top:0px;
  994. width:298px;
  995. height:26px;
  996. background:inherit;
  997. background-color:rgba(255, 255, 255, 0);
  998. border:none;
  999. border-radius:0px;
  1000. -moz-box-shadow:none;
  1001. -webkit-box-shadow:none;
  1002. box-shadow:none;
  1003. font-size:22px;
  1004. color:#FFFFFF;
  1005. }
  1006. #u88 {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:1064px;
  1010. top:1289px;
  1011. width:298px;
  1012. height:26px;
  1013. font-size:22px;
  1014. color:#FFFFFF;
  1015. }
  1016. #u88_text {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:298px;
  1022. white-space:nowrap;
  1023. }
  1024. #u89_div {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:145px;
  1030. height:41px;
  1031. background:inherit;
  1032. background-color:rgba(255, 255, 255, 0);
  1033. border:none;
  1034. border-radius:0px;
  1035. -moz-box-shadow:none;
  1036. -webkit-box-shadow:none;
  1037. box-shadow:none;
  1038. font-size:36px;
  1039. color:#666666;
  1040. }
  1041. #u89 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:203px;
  1045. top:1637px;
  1046. width:145px;
  1047. height:41px;
  1048. font-size:36px;
  1049. color:#666666;
  1050. }
  1051. #u89_text {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:145px;
  1057. white-space:nowrap;
  1058. }
  1059. #u90_div {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:785px;
  1065. height:440px;
  1066. background:inherit;
  1067. background-color:rgba(215, 215, 215, 1);
  1068. border:none;
  1069. border-radius:0px;
  1070. -moz-box-shadow:none;
  1071. -webkit-box-shadow:none;
  1072. box-shadow:none;
  1073. }
  1074. #u90 {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:203px;
  1078. top:1700px;
  1079. width:785px;
  1080. height:440px;
  1081. }
  1082. #u90_text {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:0px;
  1088. visibility:hidden;
  1089. word-wrap:break-word;
  1090. }
  1091. #u91_div {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:0px;
  1095. top:0px;
  1096. width:263px;
  1097. height:440px;
  1098. background:inherit;
  1099. background-color:rgba(51, 51, 51, 1);
  1100. border:none;
  1101. border-radius:0px;
  1102. -moz-box-shadow:none;
  1103. -webkit-box-shadow:none;
  1104. box-shadow:none;
  1105. }
  1106. #u91 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:203px;
  1110. top:1700px;
  1111. width:263px;
  1112. height:440px;
  1113. }
  1114. #u91_text {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:0px;
  1118. top:0px;
  1119. width:0px;
  1120. visibility:hidden;
  1121. word-wrap:break-word;
  1122. }
  1123. #u92_div {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:263px;
  1129. height:43px;
  1130. background:inherit;
  1131. background-color:rgba(186, 158, 102, 1);
  1132. border:none;
  1133. border-radius:0px;
  1134. -moz-box-shadow:none;
  1135. -webkit-box-shadow:none;
  1136. box-shadow:none;
  1137. font-size:18px;
  1138. color:#FFFFFF;
  1139. }
  1140. #u92 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:203px;
  1144. top:1779px;
  1145. width:263px;
  1146. height:43px;
  1147. font-size:18px;
  1148. color:#FFFFFF;
  1149. }
  1150. #u92_text {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:0px;
  1156. visibility:hidden;
  1157. word-wrap:break-word;
  1158. }
  1159. #u93_div {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:240px;
  1165. height:22px;
  1166. background:inherit;
  1167. background-color:rgba(255, 255, 255, 0);
  1168. border:none;
  1169. border-radius:0px;
  1170. -moz-box-shadow:none;
  1171. -webkit-box-shadow:none;
  1172. box-shadow:none;
  1173. font-size:18px;
  1174. color:#FFFFFF;
  1175. }
  1176. #u93 {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:215px;
  1180. top:1790px;
  1181. width:240px;
  1182. height:22px;
  1183. font-size:18px;
  1184. color:#FFFFFF;
  1185. }
  1186. #u93_text {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:240px;
  1192. white-space:nowrap;
  1193. }
  1194. #u94_div {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:0px;
  1198. top:0px;
  1199. width:171px;
  1200. height:22px;
  1201. background:inherit;
  1202. background-color:rgba(255, 255, 255, 0);
  1203. border:none;
  1204. border-radius:0px;
  1205. -moz-box-shadow:none;
  1206. -webkit-box-shadow:none;
  1207. box-shadow:none;
  1208. font-size:18px;
  1209. color:#FFFFFF;
  1210. }
  1211. #u94 {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:215px;
  1215. top:1833px;
  1216. width:171px;
  1217. height:22px;
  1218. font-size:18px;
  1219. color:#FFFFFF;
  1220. }
  1221. #u94_text {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:171px;
  1227. white-space:nowrap;
  1228. }
  1229. #u95_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:243px;
  1235. height:22px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 0);
  1238. border:none;
  1239. border-radius:0px;
  1240. -moz-box-shadow:none;
  1241. -webkit-box-shadow:none;
  1242. box-shadow:none;
  1243. font-size:18px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u95 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:215px;
  1250. top:1876px;
  1251. width:243px;
  1252. height:22px;
  1253. font-size:18px;
  1254. color:#FFFFFF;
  1255. }
  1256. #u95_text {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:0px;
  1260. top:0px;
  1261. width:243px;
  1262. white-space:nowrap;
  1263. }
  1264. #u96_div {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:240px;
  1270. height:22px;
  1271. background:inherit;
  1272. background-color:rgba(255, 255, 255, 0);
  1273. border:none;
  1274. border-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-size:18px;
  1279. color:#FFFFFF;
  1280. }
  1281. #u96 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:216px;
  1285. top:1919px;
  1286. width:240px;
  1287. height:22px;
  1288. font-size:18px;
  1289. color:#FFFFFF;
  1290. }
  1291. #u96_text {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:0px;
  1295. top:0px;
  1296. width:240px;
  1297. white-space:nowrap;
  1298. }
  1299. #u97_div {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:203px;
  1305. height:22px;
  1306. background:inherit;
  1307. background-color:rgba(255, 255, 255, 0);
  1308. border:none;
  1309. border-radius:0px;
  1310. -moz-box-shadow:none;
  1311. -webkit-box-shadow:none;
  1312. box-shadow:none;
  1313. font-size:18px;
  1314. color:#FFFFFF;
  1315. }
  1316. #u97 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:215px;
  1320. top:1962px;
  1321. width:203px;
  1322. height:22px;
  1323. font-size:18px;
  1324. color:#FFFFFF;
  1325. }
  1326. #u97_text {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:0px;
  1330. top:0px;
  1331. width:203px;
  1332. white-space:nowrap;
  1333. }
  1334. #u98_div {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:0px;
  1338. top:0px;
  1339. width:240px;
  1340. height:22px;
  1341. background:inherit;
  1342. background-color:rgba(255, 255, 255, 0);
  1343. border:none;
  1344. border-radius:0px;
  1345. -moz-box-shadow:none;
  1346. -webkit-box-shadow:none;
  1347. box-shadow:none;
  1348. font-size:18px;
  1349. color:#FFFFFF;
  1350. }
  1351. #u98 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:215px;
  1355. top:2005px;
  1356. width:240px;
  1357. height:22px;
  1358. font-size:18px;
  1359. color:#FFFFFF;
  1360. }
  1361. #u98_text {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:0px;
  1365. top:0px;
  1366. width:240px;
  1367. white-space:nowrap;
  1368. }
  1369. #u99 {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:0px;
  1375. height:0px;
  1376. }
  1377. #u100_img {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:121px;
  1383. height:2px;
  1384. }
  1385. #u100 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:492px;
  1389. top:2221px;
  1390. width:120px;
  1391. height:1px;
  1392. }
  1393. #u100_text {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:0px;
  1399. visibility:hidden;
  1400. word-wrap:break-word;
  1401. }
  1402. #u101_img {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:0px;
  1406. top:0px;
  1407. width:121px;
  1408. height:2px;
  1409. }
  1410. #u101 {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:987px;
  1414. top:2221px;
  1415. width:120px;
  1416. height:1px;
  1417. }
  1418. #u101_text {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:0px;
  1422. top:0px;
  1423. width:0px;
  1424. visibility:hidden;
  1425. word-wrap:break-word;
  1426. }
  1427. #u102_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:20px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. box-sizing:border-box;
  1437. border-width:1px;
  1438. border-style:solid;
  1439. border-color:rgba(188, 188, 188, 1);
  1440. border-radius:0px;
  1441. -moz-box-shadow:none;
  1442. -webkit-box-shadow:none;
  1443. box-shadow:none;
  1444. color:transparent;
  1445. }
  1446. #u102 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:616px;
  1450. top:2211px;
  1451. width:20px;
  1452. height:20px;
  1453. -webkit-transform:rotate(45deg);
  1454. -moz-transform:rotate(45deg);
  1455. -ms-transform:rotate(45deg);
  1456. transform:rotate(45deg);
  1457. color:transparent;
  1458. }
  1459. #u102_text {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:0px;
  1465. visibility:hidden;
  1466. white-space:nowrap;
  1467. }
  1468. #u103_div {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:20px;
  1474. height:20px;
  1475. background:inherit;
  1476. background-color:rgba(255, 255, 255, 0);
  1477. box-sizing:border-box;
  1478. border-width:1px;
  1479. border-style:solid;
  1480. border-color:rgba(188, 188, 188, 1);
  1481. border-radius:0px;
  1482. -moz-box-shadow:none;
  1483. -webkit-box-shadow:none;
  1484. box-shadow:none;
  1485. color:transparent;
  1486. }
  1487. #u103 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:962px;
  1491. top:2212px;
  1492. width:20px;
  1493. height:20px;
  1494. -webkit-transform:rotate(45deg);
  1495. -moz-transform:rotate(45deg);
  1496. -ms-transform:rotate(45deg);
  1497. transform:rotate(45deg);
  1498. color:transparent;
  1499. }
  1500. #u103_text {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:0px;
  1506. visibility:hidden;
  1507. white-space:nowrap;
  1508. }
  1509. #u104_div {
  1510. border-width:0px;
  1511. position:absolute;
  1512. left:0px;
  1513. top:0px;
  1514. width:199px;
  1515. height:68px;
  1516. background:inherit;
  1517. background-color:rgba(255, 255, 255, 0);
  1518. border:none;
  1519. border-radius:0px;
  1520. -moz-box-shadow:none;
  1521. -webkit-box-shadow:none;
  1522. box-shadow:none;
  1523. }
  1524. #u104 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:659px;
  1528. top:2188px;
  1529. width:199px;
  1530. height:68px;
  1531. }
  1532. #u104_text {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:199px;
  1538. white-space:nowrap;
  1539. }
  1540. #u105_div {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:0px;
  1544. top:0px;
  1545. width:73px;
  1546. height:41px;
  1547. background:inherit;
  1548. background-color:rgba(255, 255, 255, 0);
  1549. border:none;
  1550. border-radius:0px;
  1551. -moz-box-shadow:none;
  1552. -webkit-box-shadow:none;
  1553. box-shadow:none;
  1554. font-size:36px;
  1555. }
  1556. #u105 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:868px;
  1560. top:2202px;
  1561. width:73px;
  1562. height:41px;
  1563. font-size:36px;
  1564. }
  1565. #u105_text {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:0px;
  1569. top:0px;
  1570. width:73px;
  1571. white-space:nowrap;
  1572. }
  1573. #u106_div {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:0px;
  1577. top:0px;
  1578. width:370px;
  1579. height:254px;
  1580. background:inherit;
  1581. background-color:rgba(215, 215, 215, 1);
  1582. border:none;
  1583. border-radius:0px;
  1584. -moz-box-shadow:none;
  1585. -webkit-box-shadow:none;
  1586. box-shadow:none;
  1587. }
  1588. #u106 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:203px;
  1592. top:2323px;
  1593. width:370px;
  1594. height:254px;
  1595. }
  1596. #u106_text {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:0px;
  1602. visibility:hidden;
  1603. word-wrap:break-word;
  1604. }
  1605. #u107_div {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:370px;
  1611. height:254px;
  1612. background:inherit;
  1613. background-color:rgba(215, 215, 215, 1);
  1614. border:none;
  1615. border-radius:0px;
  1616. -moz-box-shadow:none;
  1617. -webkit-box-shadow:none;
  1618. box-shadow:none;
  1619. }
  1620. #u107 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:615px;
  1624. top:2323px;
  1625. width:370px;
  1626. height:254px;
  1627. }
  1628. #u107_text {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:0px;
  1634. visibility:hidden;
  1635. word-wrap:break-word;
  1636. }
  1637. #u108_div {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:370px;
  1643. height:440px;
  1644. background:inherit;
  1645. background-color:rgba(215, 215, 215, 1);
  1646. border:none;
  1647. border-radius:0px;
  1648. -moz-box-shadow:none;
  1649. -webkit-box-shadow:none;
  1650. box-shadow:none;
  1651. }
  1652. #u108 {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:1021px;
  1656. top:1700px;
  1657. width:370px;
  1658. height:440px;
  1659. }
  1660. #u108_text {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:0px;
  1664. top:0px;
  1665. width:0px;
  1666. visibility:hidden;
  1667. word-wrap:break-word;
  1668. }
  1669. #u109_div {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:370px;
  1675. height:254px;
  1676. background:inherit;
  1677. background-color:rgba(215, 215, 215, 1);
  1678. border:none;
  1679. border-radius:0px;
  1680. -moz-box-shadow:none;
  1681. -webkit-box-shadow:none;
  1682. box-shadow:none;
  1683. }
  1684. #u109 {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:203px;
  1688. top:2611px;
  1689. width:370px;
  1690. height:254px;
  1691. }
  1692. #u109_text {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:0px;
  1698. visibility:hidden;
  1699. word-wrap:break-word;
  1700. }
  1701. #u110_div {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:370px;
  1707. height:254px;
  1708. background:inherit;
  1709. background-color:rgba(215, 215, 215, 1);
  1710. border:none;
  1711. border-radius:0px;
  1712. -moz-box-shadow:none;
  1713. -webkit-box-shadow:none;
  1714. box-shadow:none;
  1715. }
  1716. #u110 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:615px;
  1720. top:2611px;
  1721. width:370px;
  1722. height:254px;
  1723. }
  1724. #u110_text {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:0px;
  1730. visibility:hidden;
  1731. word-wrap:break-word;
  1732. }
  1733. #u111_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:247px;
  1739. height:26px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 0);
  1742. border:none;
  1743. border-radius:0px;
  1744. -moz-box-shadow:none;
  1745. -webkit-box-shadow:none;
  1746. box-shadow:none;
  1747. font-size:22px;
  1748. color:#FFFFFF;
  1749. }
  1750. #u111 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:265px;
  1754. top:2535px;
  1755. width:247px;
  1756. height:26px;
  1757. font-size:22px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u111_text {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:247px;
  1766. white-space:nowrap;
  1767. }
  1768. #u112_div {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:311px;
  1774. height:26px;
  1775. background:inherit;
  1776. background-color:rgba(255, 255, 255, 0);
  1777. border:none;
  1778. border-radius:0px;
  1779. -moz-box-shadow:none;
  1780. -webkit-box-shadow:none;
  1781. box-shadow:none;
  1782. font-size:22px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u112 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:645px;
  1789. top:2535px;
  1790. width:311px;
  1791. height:26px;
  1792. font-size:22px;
  1793. color:#FFFFFF;
  1794. }
  1795. #u112_text {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:311px;
  1801. white-space:nowrap;
  1802. }
  1803. #u113_div {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:262px;
  1809. height:26px;
  1810. background:inherit;
  1811. background-color:rgba(255, 255, 255, 0);
  1812. border:none;
  1813. border-radius:0px;
  1814. -moz-box-shadow:none;
  1815. -webkit-box-shadow:none;
  1816. box-shadow:none;
  1817. font-size:22px;
  1818. color:#FFFFFF;
  1819. }
  1820. #u113 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:265px;
  1824. top:2825px;
  1825. width:262px;
  1826. height:26px;
  1827. font-size:22px;
  1828. color:#FFFFFF;
  1829. }
  1830. #u113_text {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:262px;
  1836. white-space:nowrap;
  1837. }
  1838. #u114_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:254px;
  1844. height:26px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 0);
  1847. border:none;
  1848. border-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-size:22px;
  1853. color:#FFFFFF;
  1854. }
  1855. #u114 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:673px;
  1859. top:2825px;
  1860. width:254px;
  1861. height:26px;
  1862. font-size:22px;
  1863. color:#FFFFFF;
  1864. }
  1865. #u114_text {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:254px;
  1871. white-space:nowrap;
  1872. }
  1873. #u115_img {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:90px;
  1879. height:2px;
  1880. }
  1881. #u115 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:1040px;
  1885. top:1733px;
  1886. width:89px;
  1887. height:1px;
  1888. }
  1889. #u115_text {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:0px;
  1895. visibility:hidden;
  1896. word-wrap:break-word;
  1897. }
  1898. #u116_div {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:123px;
  1904. height:40px;
  1905. background:inherit;
  1906. background-color:rgba(255, 255, 255, 0);
  1907. border:none;
  1908. border-radius:0px;
  1909. -moz-box-shadow:none;
  1910. -webkit-box-shadow:none;
  1911. box-shadow:none;
  1912. font-size:30px;
  1913. }
  1914. #u116 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:1149px;
  1918. top:1713px;
  1919. width:123px;
  1920. height:40px;
  1921. font-size:30px;
  1922. }
  1923. #u116_text {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:123px;
  1929. white-space:nowrap;
  1930. }
  1931. #u117_img {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:90px;
  1937. height:2px;
  1938. }
  1939. #u117 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:1282px;
  1943. top:1733px;
  1944. width:89px;
  1945. height:1px;
  1946. }
  1947. #u117_text {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:0px;
  1953. visibility:hidden;
  1954. word-wrap:break-word;
  1955. }
  1956. #u118_div {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:27px;
  1962. height:35px;
  1963. background:inherit;
  1964. background-color:rgba(255, 255, 255, 0);
  1965. border:none;
  1966. border-radius:0px;
  1967. -moz-box-shadow:none;
  1968. -webkit-box-shadow:none;
  1969. box-shadow:none;
  1970. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1971. font-weight:700;
  1972. font-style:normal;
  1973. font-size:30px;
  1974. }
  1975. #u118 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:1041px;
  1979. top:1764px;
  1980. width:27px;
  1981. height:35px;
  1982. -webkit-transform:rotate(8deg);
  1983. -moz-transform:rotate(8deg);
  1984. -ms-transform:rotate(8deg);
  1985. transform:rotate(8deg);
  1986. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1987. font-weight:700;
  1988. font-style:normal;
  1989. font-size:30px;
  1990. }
  1991. #u118_text {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:27px;
  1997. white-space:nowrap;
  1998. }
  1999. #u119_div {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:311px;
  2005. height:23px;
  2006. background:inherit;
  2007. background-color:rgba(255, 255, 255, 0);
  2008. border:none;
  2009. border-radius:0px;
  2010. -moz-box-shadow:none;
  2011. -webkit-box-shadow:none;
  2012. box-shadow:none;
  2013. font-size:20px;
  2014. }
  2015. #u119 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:1084px;
  2019. top:1770px;
  2020. width:311px;
  2021. height:23px;
  2022. font-size:20px;
  2023. }
  2024. #u119_text {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:311px;
  2030. word-wrap:break-word;
  2031. }
  2032. #u120_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:27px;
  2038. height:35px;
  2039. background:inherit;
  2040. background-color:rgba(255, 255, 255, 0);
  2041. border:none;
  2042. border-radius:0px;
  2043. -moz-box-shadow:none;
  2044. -webkit-box-shadow:none;
  2045. box-shadow:none;
  2046. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2047. font-weight:700;
  2048. font-style:normal;
  2049. font-size:30px;
  2050. }
  2051. #u120 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:1041px;
  2055. top:1818px;
  2056. width:27px;
  2057. height:35px;
  2058. -webkit-transform:rotate(8deg);
  2059. -moz-transform:rotate(8deg);
  2060. -ms-transform:rotate(8deg);
  2061. transform:rotate(8deg);
  2062. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2063. font-weight:700;
  2064. font-style:normal;
  2065. font-size:30px;
  2066. }
  2067. #u120_text {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:27px;
  2073. white-space:nowrap;
  2074. }
  2075. #u121_div {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:311px;
  2081. height:23px;
  2082. background:inherit;
  2083. background-color:rgba(255, 255, 255, 0);
  2084. border:none;
  2085. border-radius:0px;
  2086. -moz-box-shadow:none;
  2087. -webkit-box-shadow:none;
  2088. box-shadow:none;
  2089. font-size:20px;
  2090. }
  2091. #u121 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:1084px;
  2095. top:1824px;
  2096. width:311px;
  2097. height:23px;
  2098. font-size:20px;
  2099. }
  2100. #u121_text {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:311px;
  2106. word-wrap:break-word;
  2107. }
  2108. #u122_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:27px;
  2114. height:35px;
  2115. background:inherit;
  2116. background-color:rgba(255, 255, 255, 0);
  2117. border:none;
  2118. border-radius:0px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2123. font-weight:700;
  2124. font-style:normal;
  2125. font-size:30px;
  2126. }
  2127. #u122 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:1041px;
  2131. top:1870px;
  2132. width:27px;
  2133. height:35px;
  2134. -webkit-transform:rotate(8deg);
  2135. -moz-transform:rotate(8deg);
  2136. -ms-transform:rotate(8deg);
  2137. transform:rotate(8deg);
  2138. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2139. font-weight:700;
  2140. font-style:normal;
  2141. font-size:30px;
  2142. }
  2143. #u122_text {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:27px;
  2149. white-space:nowrap;
  2150. }
  2151. #u123_div {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:27px;
  2157. height:35px;
  2158. background:inherit;
  2159. background-color:rgba(255, 255, 255, 0);
  2160. border:none;
  2161. border-radius:0px;
  2162. -moz-box-shadow:none;
  2163. -webkit-box-shadow:none;
  2164. box-shadow:none;
  2165. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2166. font-weight:700;
  2167. font-style:normal;
  2168. font-size:30px;
  2169. }
  2170. #u123 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:1041px;
  2174. top:1928px;
  2175. width:27px;
  2176. height:35px;
  2177. -webkit-transform:rotate(8deg);
  2178. -moz-transform:rotate(8deg);
  2179. -ms-transform:rotate(8deg);
  2180. transform:rotate(8deg);
  2181. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2182. font-weight:700;
  2183. font-style:normal;
  2184. font-size:30px;
  2185. }
  2186. #u123_text {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:27px;
  2192. white-space:nowrap;
  2193. }
  2194. #u124_div {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:27px;
  2200. height:35px;
  2201. background:inherit;
  2202. background-color:rgba(255, 255, 255, 0);
  2203. border:none;
  2204. border-radius:0px;
  2205. -moz-box-shadow:none;
  2206. -webkit-box-shadow:none;
  2207. box-shadow:none;
  2208. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2209. font-weight:700;
  2210. font-style:normal;
  2211. font-size:30px;
  2212. }
  2213. #u124 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:1041px;
  2217. top:1976px;
  2218. width:27px;
  2219. height:35px;
  2220. -webkit-transform:rotate(8deg);
  2221. -moz-transform:rotate(8deg);
  2222. -ms-transform:rotate(8deg);
  2223. transform:rotate(8deg);
  2224. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2225. font-weight:700;
  2226. font-style:normal;
  2227. font-size:30px;
  2228. }
  2229. #u124_text {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:27px;
  2235. white-space:nowrap;
  2236. }
  2237. #u125_div {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:27px;
  2243. height:35px;
  2244. background:inherit;
  2245. background-color:rgba(255, 255, 255, 0);
  2246. border:none;
  2247. border-radius:0px;
  2248. -moz-box-shadow:none;
  2249. -webkit-box-shadow:none;
  2250. box-shadow:none;
  2251. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2252. font-weight:700;
  2253. font-style:normal;
  2254. font-size:30px;
  2255. }
  2256. #u125 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:1041px;
  2260. top:2031px;
  2261. width:27px;
  2262. height:35px;
  2263. -webkit-transform:rotate(8deg);
  2264. -moz-transform:rotate(8deg);
  2265. -ms-transform:rotate(8deg);
  2266. transform:rotate(8deg);
  2267. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2268. font-weight:700;
  2269. font-style:normal;
  2270. font-size:30px;
  2271. }
  2272. #u125_text {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:27px;
  2278. white-space:nowrap;
  2279. }
  2280. #u126_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:27px;
  2286. height:35px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 0);
  2289. border:none;
  2290. border-radius:0px;
  2291. -moz-box-shadow:none;
  2292. -webkit-box-shadow:none;
  2293. box-shadow:none;
  2294. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2295. font-weight:700;
  2296. font-style:normal;
  2297. font-size:30px;
  2298. }
  2299. #u126 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:1041px;
  2303. top:2086px;
  2304. width:27px;
  2305. height:35px;
  2306. -webkit-transform:rotate(8deg);
  2307. -moz-transform:rotate(8deg);
  2308. -ms-transform:rotate(8deg);
  2309. transform:rotate(8deg);
  2310. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2311. font-weight:700;
  2312. font-style:normal;
  2313. font-size:30px;
  2314. }
  2315. #u126_text {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:27px;
  2321. white-space:nowrap;
  2322. }
  2323. #u127_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:311px;
  2329. height:23px;
  2330. background:inherit;
  2331. background-color:rgba(255, 255, 255, 0);
  2332. border:none;
  2333. border-radius:0px;
  2334. -moz-box-shadow:none;
  2335. -webkit-box-shadow:none;
  2336. box-shadow:none;
  2337. font-size:20px;
  2338. }
  2339. #u127 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:1084px;
  2343. top:1876px;
  2344. width:311px;
  2345. height:23px;
  2346. font-size:20px;
  2347. }
  2348. #u127_text {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:311px;
  2354. word-wrap:break-word;
  2355. }
  2356. #u128_div {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:311px;
  2362. height:23px;
  2363. background:inherit;
  2364. background-color:rgba(255, 255, 255, 0);
  2365. border:none;
  2366. border-radius:0px;
  2367. -moz-box-shadow:none;
  2368. -webkit-box-shadow:none;
  2369. box-shadow:none;
  2370. font-size:20px;
  2371. }
  2372. #u128 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:1084px;
  2376. top:1934px;
  2377. width:311px;
  2378. height:23px;
  2379. font-size:20px;
  2380. }
  2381. #u128_text {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:311px;
  2387. word-wrap:break-word;
  2388. }
  2389. #u129_div {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:311px;
  2395. height:23px;
  2396. background:inherit;
  2397. background-color:rgba(255, 255, 255, 0);
  2398. border:none;
  2399. border-radius:0px;
  2400. -moz-box-shadow:none;
  2401. -webkit-box-shadow:none;
  2402. box-shadow:none;
  2403. font-size:20px;
  2404. }
  2405. #u129 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:1084px;
  2409. top:1982px;
  2410. width:311px;
  2411. height:23px;
  2412. font-size:20px;
  2413. }
  2414. #u129_text {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:311px;
  2420. word-wrap:break-word;
  2421. }
  2422. #u130_div {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:311px;
  2428. height:23px;
  2429. background:inherit;
  2430. background-color:rgba(255, 255, 255, 0);
  2431. border:none;
  2432. border-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-size:20px;
  2437. }
  2438. #u130 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:1084px;
  2442. top:2037px;
  2443. width:311px;
  2444. height:23px;
  2445. font-size:20px;
  2446. }
  2447. #u130_text {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:311px;
  2453. word-wrap:break-word;
  2454. }
  2455. #u131_div {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:311px;
  2461. height:23px;
  2462. background:inherit;
  2463. background-color:rgba(255, 255, 255, 0);
  2464. border:none;
  2465. border-radius:0px;
  2466. -moz-box-shadow:none;
  2467. -webkit-box-shadow:none;
  2468. box-shadow:none;
  2469. font-size:20px;
  2470. }
  2471. #u131 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:1084px;
  2475. top:2092px;
  2476. width:311px;
  2477. height:23px;
  2478. font-size:20px;
  2479. }
  2480. #u131_text {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:311px;
  2486. word-wrap:break-word;
  2487. }
  2488. #u132 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:0px;
  2494. height:0px;
  2495. }
  2496. #u133_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:121px;
  2502. height:2px;
  2503. }
  2504. #u133 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:495px;
  2508. top:2945px;
  2509. width:120px;
  2510. height:1px;
  2511. }
  2512. #u133_text {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:0px;
  2518. visibility:hidden;
  2519. word-wrap:break-word;
  2520. }
  2521. #u134_img {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:121px;
  2527. height:2px;
  2528. }
  2529. #u134 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:990px;
  2533. top:2945px;
  2534. width:120px;
  2535. height:1px;
  2536. }
  2537. #u134_text {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:0px;
  2543. visibility:hidden;
  2544. word-wrap:break-word;
  2545. }
  2546. #u135_div {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:20px;
  2552. height:20px;
  2553. background:inherit;
  2554. background-color:rgba(255, 255, 255, 0);
  2555. box-sizing:border-box;
  2556. border-width:1px;
  2557. border-style:solid;
  2558. border-color:rgba(188, 188, 188, 1);
  2559. border-radius:0px;
  2560. -moz-box-shadow:none;
  2561. -webkit-box-shadow:none;
  2562. box-shadow:none;
  2563. color:transparent;
  2564. }
  2565. #u135 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:619px;
  2569. top:2935px;
  2570. width:20px;
  2571. height:20px;
  2572. -webkit-transform:rotate(45deg);
  2573. -moz-transform:rotate(45deg);
  2574. -ms-transform:rotate(45deg);
  2575. transform:rotate(45deg);
  2576. color:transparent;
  2577. }
  2578. #u135_text {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:0px;
  2584. visibility:hidden;
  2585. white-space:nowrap;
  2586. }
  2587. #u136_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:20px;
  2593. height:20px;
  2594. background:inherit;
  2595. background-color:rgba(255, 255, 255, 0);
  2596. box-sizing:border-box;
  2597. border-width:1px;
  2598. border-style:solid;
  2599. border-color:rgba(188, 188, 188, 1);
  2600. border-radius:0px;
  2601. -moz-box-shadow:none;
  2602. -webkit-box-shadow:none;
  2603. box-shadow:none;
  2604. color:transparent;
  2605. }
  2606. #u136 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:965px;
  2610. top:2936px;
  2611. width:20px;
  2612. height:20px;
  2613. -webkit-transform:rotate(45deg);
  2614. -moz-transform:rotate(45deg);
  2615. -ms-transform:rotate(45deg);
  2616. transform:rotate(45deg);
  2617. color:transparent;
  2618. }
  2619. #u136_text {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:0px;
  2623. top:0px;
  2624. width:0px;
  2625. visibility:hidden;
  2626. white-space:nowrap;
  2627. }
  2628. #u137_div {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:182px;
  2634. height:68px;
  2635. background:inherit;
  2636. background-color:rgba(255, 255, 255, 0);
  2637. border:none;
  2638. border-radius:0px;
  2639. -moz-box-shadow:none;
  2640. -webkit-box-shadow:none;
  2641. box-shadow:none;
  2642. }
  2643. #u137 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:670px;
  2647. top:2912px;
  2648. width:182px;
  2649. height:68px;
  2650. }
  2651. #u137_text {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:182px;
  2657. white-space:nowrap;
  2658. }
  2659. #u138_div {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:73px;
  2665. height:41px;
  2666. background:inherit;
  2667. background-color:rgba(255, 255, 255, 0);
  2668. border:none;
  2669. border-radius:0px;
  2670. -moz-box-shadow:none;
  2671. -webkit-box-shadow:none;
  2672. box-shadow:none;
  2673. font-size:36px;
  2674. }
  2675. #u138 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:862px;
  2679. top:2926px;
  2680. width:73px;
  2681. height:41px;
  2682. font-size:36px;
  2683. }
  2684. #u138_text {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:73px;
  2690. white-space:nowrap;
  2691. }
  2692. #u139 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:0px;
  2698. height:0px;
  2699. }
  2700. #u140_img {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:121px;
  2706. height:2px;
  2707. }
  2708. #u140 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:495px;
  2712. top:3691px;
  2713. width:120px;
  2714. height:1px;
  2715. }
  2716. #u140_text {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:0px;
  2722. visibility:hidden;
  2723. word-wrap:break-word;
  2724. }
  2725. #u141_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:121px;
  2731. height:2px;
  2732. }
  2733. #u141 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:990px;
  2737. top:3691px;
  2738. width:120px;
  2739. height:1px;
  2740. }
  2741. #u141_text {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:0px;
  2747. visibility:hidden;
  2748. word-wrap:break-word;
  2749. }
  2750. #u142_div {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:20px;
  2756. height:20px;
  2757. background:inherit;
  2758. background-color:rgba(255, 255, 255, 0);
  2759. box-sizing:border-box;
  2760. border-width:1px;
  2761. border-style:solid;
  2762. border-color:rgba(188, 188, 188, 1);
  2763. border-radius:0px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. color:transparent;
  2768. }
  2769. #u142 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:619px;
  2773. top:3681px;
  2774. width:20px;
  2775. height:20px;
  2776. -webkit-transform:rotate(45deg);
  2777. -moz-transform:rotate(45deg);
  2778. -ms-transform:rotate(45deg);
  2779. transform:rotate(45deg);
  2780. color:transparent;
  2781. }
  2782. #u142_text {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:0px;
  2788. visibility:hidden;
  2789. white-space:nowrap;
  2790. }
  2791. #u143_div {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:20px;
  2797. height:20px;
  2798. background:inherit;
  2799. background-color:rgba(255, 255, 255, 0);
  2800. box-sizing:border-box;
  2801. border-width:1px;
  2802. border-style:solid;
  2803. border-color:rgba(188, 188, 188, 1);
  2804. border-radius:0px;
  2805. -moz-box-shadow:none;
  2806. -webkit-box-shadow:none;
  2807. box-shadow:none;
  2808. color:transparent;
  2809. }
  2810. #u143 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:965px;
  2814. top:3682px;
  2815. width:20px;
  2816. height:20px;
  2817. -webkit-transform:rotate(45deg);
  2818. -moz-transform:rotate(45deg);
  2819. -ms-transform:rotate(45deg);
  2820. transform:rotate(45deg);
  2821. color:transparent;
  2822. }
  2823. #u143_text {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:0px;
  2829. visibility:hidden;
  2830. white-space:nowrap;
  2831. }
  2832. #u144_div {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:178px;
  2838. height:68px;
  2839. background:inherit;
  2840. background-color:rgba(255, 255, 255, 0);
  2841. border:none;
  2842. border-radius:0px;
  2843. -moz-box-shadow:none;
  2844. -webkit-box-shadow:none;
  2845. box-shadow:none;
  2846. }
  2847. #u144 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:670px;
  2851. top:3658px;
  2852. width:178px;
  2853. height:68px;
  2854. }
  2855. #u144_text {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:178px;
  2861. white-space:nowrap;
  2862. }
  2863. #u145_div {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:73px;
  2869. height:41px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 0);
  2872. border:none;
  2873. border-radius:0px;
  2874. -moz-box-shadow:none;
  2875. -webkit-box-shadow:none;
  2876. box-shadow:none;
  2877. font-size:36px;
  2878. }
  2879. #u145 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:862px;
  2883. top:3672px;
  2884. width:73px;
  2885. height:41px;
  2886. font-size:36px;
  2887. }
  2888. #u145_text {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:73px;
  2894. white-space:nowrap;
  2895. }
  2896. #u146_div {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:484px;
  2902. height:690px;
  2903. background:inherit;
  2904. background-color:rgba(102, 102, 102, 1);
  2905. border:none;
  2906. border-radius:0px;
  2907. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2908. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2909. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  2910. }
  2911. #u146 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:557px;
  2915. top:3775px;
  2916. width:484px;
  2917. height:690px;
  2918. }
  2919. #u146_text {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:0px;
  2925. visibility:hidden;
  2926. word-wrap:break-word;
  2927. }
  2928. #u147_div {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:353px;
  2934. height:536px;
  2935. background:inherit;
  2936. background-color:rgba(215, 215, 215, 1);
  2937. border:none;
  2938. border-radius:0px;
  2939. -moz-box-shadow:none;
  2940. -webkit-box-shadow:none;
  2941. box-shadow:none;
  2942. }
  2943. #u147 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:1042px;
  2947. top:3862px;
  2948. width:353px;
  2949. height:536px;
  2950. }
  2951. #u147_text {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:0px;
  2957. visibility:hidden;
  2958. word-wrap:break-word;
  2959. }
  2960. #u148_div {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:354px;
  2966. height:536px;
  2967. background:inherit;
  2968. background-color:rgba(215, 215, 215, 1);
  2969. border:none;
  2970. border-radius:0px;
  2971. -moz-box-shadow:none;
  2972. -webkit-box-shadow:none;
  2973. box-shadow:none;
  2974. }
  2975. #u148 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:203px;
  2979. top:3862px;
  2980. width:354px;
  2981. height:536px;
  2982. }
  2983. #u148_text {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:0px;
  2989. visibility:hidden;
  2990. word-wrap:break-word;
  2991. }
  2992. #u149_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:386px;
  2998. height:88px;
  2999. background:inherit;
  3000. background-color:rgba(153, 153, 153, 1);
  3001. border:none;
  3002. border-radius:0px;
  3003. -moz-box-shadow:none;
  3004. -webkit-box-shadow:none;
  3005. box-shadow:none;
  3006. }
  3007. #u149 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:610px;
  3011. top:4377px;
  3012. width:386px;
  3013. height:88px;
  3014. }
  3015. #u149_text {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:0px;
  3021. visibility:hidden;
  3022. word-wrap:break-word;
  3023. }
  3024. #u150_div {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:298px;
  3030. height:26px;
  3031. background:inherit;
  3032. background-color:rgba(255, 255, 255, 0);
  3033. border:none;
  3034. border-radius:0px;
  3035. -moz-box-shadow:none;
  3036. -webkit-box-shadow:none;
  3037. box-shadow:none;
  3038. font-size:22px;
  3039. color:#FFFFFF;
  3040. }
  3041. #u150 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:654px;
  3045. top:4410px;
  3046. width:298px;
  3047. height:26px;
  3048. font-size:22px;
  3049. color:#FFFFFF;
  3050. }
  3051. #u150_text {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:298px;
  3057. white-space:nowrap;
  3058. }
  3059. #u151 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:0px;
  3065. height:0px;
  3066. }
  3067. #u152_img {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:121px;
  3073. height:2px;
  3074. }
  3075. #u152 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:496px;
  3079. top:4580px;
  3080. width:120px;
  3081. height:1px;
  3082. }
  3083. #u152_text {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:0px;
  3089. visibility:hidden;
  3090. word-wrap:break-word;
  3091. }
  3092. #u153_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:121px;
  3098. height:2px;
  3099. }
  3100. #u153 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:991px;
  3104. top:4580px;
  3105. width:120px;
  3106. height:1px;
  3107. }
  3108. #u153_text {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:0px;
  3114. visibility:hidden;
  3115. word-wrap:break-word;
  3116. }
  3117. #u154_div {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:20px;
  3123. height:20px;
  3124. background:inherit;
  3125. background-color:rgba(255, 255, 255, 0);
  3126. box-sizing:border-box;
  3127. border-width:1px;
  3128. border-style:solid;
  3129. border-color:rgba(188, 188, 188, 1);
  3130. border-radius:0px;
  3131. -moz-box-shadow:none;
  3132. -webkit-box-shadow:none;
  3133. box-shadow:none;
  3134. color:transparent;
  3135. }
  3136. #u154 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:620px;
  3140. top:4570px;
  3141. width:20px;
  3142. height:20px;
  3143. -webkit-transform:rotate(45deg);
  3144. -moz-transform:rotate(45deg);
  3145. -ms-transform:rotate(45deg);
  3146. transform:rotate(45deg);
  3147. color:transparent;
  3148. }
  3149. #u154_text {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:0px;
  3153. top:0px;
  3154. width:0px;
  3155. visibility:hidden;
  3156. white-space:nowrap;
  3157. }
  3158. #u155_div {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:20px;
  3164. height:20px;
  3165. background:inherit;
  3166. background-color:rgba(255, 255, 255, 0);
  3167. box-sizing:border-box;
  3168. border-width:1px;
  3169. border-style:solid;
  3170. border-color:rgba(188, 188, 188, 1);
  3171. border-radius:0px;
  3172. -moz-box-shadow:none;
  3173. -webkit-box-shadow:none;
  3174. box-shadow:none;
  3175. color:transparent;
  3176. }
  3177. #u155 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:966px;
  3181. top:4571px;
  3182. width:20px;
  3183. height:20px;
  3184. -webkit-transform:rotate(45deg);
  3185. -moz-transform:rotate(45deg);
  3186. -ms-transform:rotate(45deg);
  3187. transform:rotate(45deg);
  3188. color:transparent;
  3189. }
  3190. #u155_text {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:0px;
  3196. visibility:hidden;
  3197. white-space:nowrap;
  3198. }
  3199. #u156_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:123px;
  3205. height:68px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 0);
  3208. border:none;
  3209. border-radius:0px;
  3210. -moz-box-shadow:none;
  3211. -webkit-box-shadow:none;
  3212. box-shadow:none;
  3213. }
  3214. #u156 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:694px;
  3218. top:4547px;
  3219. width:123px;
  3220. height:68px;
  3221. }
  3222. #u156_text {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:123px;
  3228. white-space:nowrap;
  3229. }
  3230. #u157_div {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:73px;
  3236. height:41px;
  3237. background:inherit;
  3238. background-color:rgba(255, 255, 255, 0);
  3239. border:none;
  3240. border-radius:0px;
  3241. -moz-box-shadow:none;
  3242. -webkit-box-shadow:none;
  3243. box-shadow:none;
  3244. font-size:36px;
  3245. }
  3246. #u157 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:840px;
  3250. top:4560px;
  3251. width:73px;
  3252. height:41px;
  3253. font-size:36px;
  3254. }
  3255. #u157_text {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:73px;
  3261. white-space:nowrap;
  3262. }
  3263. #u158_div {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:370px;
  3269. height:346px;
  3270. background:inherit;
  3271. background-color:rgba(215, 215, 215, 1);
  3272. border:none;
  3273. border-radius:0px;
  3274. -moz-box-shadow:none;
  3275. -webkit-box-shadow:none;
  3276. box-shadow:none;
  3277. }
  3278. #u158 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:203px;
  3282. top:4679px;
  3283. width:370px;
  3284. height:346px;
  3285. }
  3286. #u158_text {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:0px;
  3291. width:0px;
  3292. visibility:hidden;
  3293. word-wrap:break-word;
  3294. }
  3295. #u159_div {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:370px;
  3301. height:66px;
  3302. background:inherit;
  3303. background-color:rgba(255, 255, 255, 0);
  3304. border:none;
  3305. border-radius:0px;
  3306. -moz-box-shadow:none;
  3307. -webkit-box-shadow:none;
  3308. box-shadow:none;
  3309. font-size:28px;
  3310. }
  3311. #u159 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:203px;
  3315. top:5035px;
  3316. width:370px;
  3317. height:66px;
  3318. font-size:28px;
  3319. }
  3320. #u159_text {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:0px;
  3325. width:370px;
  3326. word-wrap:break-word;
  3327. }
  3328. #u160_div {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:370px;
  3334. height:96px;
  3335. background:inherit;
  3336. background-color:rgba(255, 255, 255, 0);
  3337. border:none;
  3338. border-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. font-size:16px;
  3343. }
  3344. #u160 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:203px;
  3348. top:5111px;
  3349. width:370px;
  3350. height:96px;
  3351. font-size:16px;
  3352. }
  3353. #u160_text {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:370px;
  3359. word-wrap:break-word;
  3360. }
  3361. #u161_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:213px;
  3367. height:264px;
  3368. background:inherit;
  3369. background-color:rgba(215, 215, 215, 1);
  3370. border:none;
  3371. border-radius:0px;
  3372. -moz-box-shadow:none;
  3373. -webkit-box-shadow:none;
  3374. box-shadow:none;
  3375. }
  3376. #u161 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:203px;
  3380. top:5368px;
  3381. width:213px;
  3382. height:264px;
  3383. }
  3384. #u161_text {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:0px;
  3390. visibility:hidden;
  3391. word-wrap:break-word;
  3392. }
  3393. #u162_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:121px;
  3399. height:23px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 0);
  3402. border:none;
  3403. border-radius:0px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-size:20px;
  3408. }
  3409. #u162 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:227px;
  3413. top:5392px;
  3414. width:121px;
  3415. height:23px;
  3416. font-size:20px;
  3417. }
  3418. #u162_text {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:121px;
  3424. white-space:nowrap;
  3425. }
  3426. #u163_div {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:213px;
  3432. height:264px;
  3433. background:inherit;
  3434. background-color:rgba(215, 215, 215, 1);
  3435. border:none;
  3436. border-radius:0px;
  3437. -moz-box-shadow:none;
  3438. -webkit-box-shadow:none;
  3439. box-shadow:none;
  3440. }
  3441. #u163 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:531px;
  3445. top:5368px;
  3446. width:213px;
  3447. height:264px;
  3448. }
  3449. #u163_text {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:0px;
  3455. visibility:hidden;
  3456. word-wrap:break-word;
  3457. }
  3458. #u164_div {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:121px;
  3464. height:23px;
  3465. background:inherit;
  3466. background-color:rgba(255, 255, 255, 0);
  3467. border:none;
  3468. border-radius:0px;
  3469. -moz-box-shadow:none;
  3470. -webkit-box-shadow:none;
  3471. box-shadow:none;
  3472. font-size:20px;
  3473. }
  3474. #u164 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:548px;
  3478. top:5392px;
  3479. width:121px;
  3480. height:23px;
  3481. font-size:20px;
  3482. }
  3483. #u164_text {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:121px;
  3489. white-space:nowrap;
  3490. }
  3491. #u165_div {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:213px;
  3497. height:264px;
  3498. background:inherit;
  3499. background-color:rgba(215, 215, 215, 1);
  3500. border:none;
  3501. border-radius:0px;
  3502. -moz-box-shadow:none;
  3503. -webkit-box-shadow:none;
  3504. box-shadow:none;
  3505. }
  3506. #u165 {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:859px;
  3510. top:5368px;
  3511. width:213px;
  3512. height:264px;
  3513. }
  3514. #u165_text {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:0px;
  3520. visibility:hidden;
  3521. word-wrap:break-word;
  3522. }
  3523. #u166_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:81px;
  3529. height:23px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 0);
  3532. border:none;
  3533. border-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. font-size:20px;
  3538. }
  3539. #u166 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:875px;
  3543. top:5392px;
  3544. width:81px;
  3545. height:23px;
  3546. font-size:20px;
  3547. }
  3548. #u166_text {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:81px;
  3554. white-space:nowrap;
  3555. }
  3556. #u167_div {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:213px;
  3562. height:264px;
  3563. background:inherit;
  3564. background-color:rgba(215, 215, 215, 1);
  3565. border:none;
  3566. border-radius:0px;
  3567. -moz-box-shadow:none;
  3568. -webkit-box-shadow:none;
  3569. box-shadow:none;
  3570. }
  3571. #u167 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:1182px;
  3575. top:5368px;
  3576. width:213px;
  3577. height:264px;
  3578. }
  3579. #u167_text {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:0px;
  3585. visibility:hidden;
  3586. word-wrap:break-word;
  3587. }
  3588. #u168_div {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:83px;
  3594. height:23px;
  3595. background:inherit;
  3596. background-color:rgba(255, 255, 255, 0);
  3597. border:none;
  3598. border-radius:0px;
  3599. -moz-box-shadow:none;
  3600. -webkit-box-shadow:none;
  3601. box-shadow:none;
  3602. font-size:20px;
  3603. }
  3604. #u168 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:1202px;
  3608. top:5392px;
  3609. width:83px;
  3610. height:23px;
  3611. font-size:20px;
  3612. }
  3613. #u168_text {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:83px;
  3619. white-space:nowrap;
  3620. }
  3621. #u169_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:1638px;
  3627. height:2px;
  3628. }
  3629. #u169 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:-39px;
  3633. top:5278px;
  3634. width:1637px;
  3635. height:1px;
  3636. }
  3637. #u169_text {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:0px;
  3643. visibility:hidden;
  3644. word-wrap:break-word;
  3645. }
  3646. #u170_img {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:1638px;
  3652. height:2px;
  3653. }
  3654. #u170 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:-22px;
  3658. top:5661px;
  3659. width:1637px;
  3660. height:1px;
  3661. }
  3662. #u170_text {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:0px;
  3668. visibility:hidden;
  3669. word-wrap:break-word;
  3670. }
  3671. #u171_img {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:64px;
  3677. height:64px;
  3678. }
  3679. #u171 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:1293px;
  3683. top:4098px;
  3684. width:64px;
  3685. height:64px;
  3686. }
  3687. #u171_text {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:0px;
  3693. visibility:hidden;
  3694. word-wrap:break-word;
  3695. }
  3696. #u172_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:64px;
  3702. height:64px;
  3703. }
  3704. #u172 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:237px;
  3708. top:4098px;
  3709. width:64px;
  3710. height:64px;
  3711. }
  3712. #u172_text {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:0px;
  3718. visibility:hidden;
  3719. word-wrap:break-word;
  3720. }
  3721. #u173_div {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:65px;
  3727. height:19px;
  3728. background:inherit;
  3729. background-color:rgba(255, 255, 255, 0);
  3730. border:none;
  3731. border-radius:0px;
  3732. -moz-box-shadow:none;
  3733. -webkit-box-shadow:none;
  3734. box-shadow:none;
  3735. font-size:16px;
  3736. }
  3737. #u173 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:1408px;
  3741. top:78px;
  3742. width:65px;
  3743. height:19px;
  3744. font-size:16px;
  3745. }
  3746. #u173_text {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:65px;
  3752. white-space:nowrap;
  3753. }
  3754. #u174_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:370px;
  3760. height:254px;
  3761. background:inherit;
  3762. background-color:rgba(215, 215, 215, 1);
  3763. border:none;
  3764. border-radius:0px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. }
  3769. #u174 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:1023px;
  3773. top:733px;
  3774. width:370px;
  3775. height:254px;
  3776. }
  3777. #u174_text {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:0px;
  3783. visibility:hidden;
  3784. word-wrap:break-word;
  3785. }
  3786. #u175_div {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:370px;
  3792. height:57px;
  3793. background:inherit;
  3794. background-color:rgba(242, 242, 242, 1);
  3795. box-sizing:border-box;
  3796. border-width:1px;
  3797. border-style:solid;
  3798. border-color:rgba(242, 242, 242, 1);
  3799. border-radius:0px;
  3800. -moz-box-shadow:none;
  3801. -webkit-box-shadow:none;
  3802. box-shadow:none;
  3803. font-size:22px;
  3804. color:#666666;
  3805. }
  3806. #u175 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:1025px;
  3810. top:987px;
  3811. width:370px;
  3812. height:57px;
  3813. font-size:22px;
  3814. color:#666666;
  3815. }
  3816. #u175_text {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:2px;
  3820. top:16px;
  3821. width:366px;
  3822. word-wrap:break-word;
  3823. }
  3824. #u176_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:1191px;
  3830. height:223px;
  3831. }
  3832. #u176 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:203px;
  3836. top:1380px;
  3837. width:1191px;
  3838. height:223px;
  3839. }
  3840. #u176_text {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:2px;
  3844. top:104px;
  3845. width:1187px;
  3846. word-wrap:break-word;
  3847. }
  3848. #u177_div {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:150px;
  3854. height:150px;
  3855. background:inherit;
  3856. background-color:rgba(215, 215, 215, 1);
  3857. border:none;
  3858. border-radius:0px;
  3859. -moz-box-shadow:none;
  3860. -webkit-box-shadow:none;
  3861. box-shadow:none;
  3862. }
  3863. #u177 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:343px;
  3867. top:5692px;
  3868. width:150px;
  3869. height:150px;
  3870. }
  3871. #u177_text {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:2px;
  3875. top:68px;
  3876. width:146px;
  3877. word-wrap:break-word;
  3878. }
  3879. #u178_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:150px;
  3885. height:150px;
  3886. background:inherit;
  3887. background-color:rgba(215, 215, 215, 1);
  3888. border:none;
  3889. border-radius:0px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. }
  3894. #u178 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:632px;
  3898. top:5692px;
  3899. width:150px;
  3900. height:150px;
  3901. }
  3902. #u178_text {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:2px;
  3906. top:68px;
  3907. width:146px;
  3908. word-wrap:break-word;
  3909. }
  3910. #u179_div {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:111px;
  3916. height:22px;
  3917. background:inherit;
  3918. background-color:rgba(255, 255, 255, 0);
  3919. border:none;
  3920. border-radius:0px;
  3921. -moz-box-shadow:none;
  3922. -webkit-box-shadow:none;
  3923. box-shadow:none;
  3924. font-size:18px;
  3925. }
  3926. #u179 {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:203px;
  3930. top:5692px;
  3931. width:111px;
  3932. height:22px;
  3933. font-size:18px;
  3934. }
  3935. #u179_text {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:111px;
  3941. white-space:nowrap;
  3942. }
  3943. #u180_div {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:150px;
  3949. height:150px;
  3950. background:inherit;
  3951. background-color:rgba(215, 215, 215, 1);
  3952. border:none;
  3953. border-radius:0px;
  3954. -moz-box-shadow:none;
  3955. -webkit-box-shadow:none;
  3956. box-shadow:none;
  3957. }
  3958. #u180 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:936px;
  3962. top:5692px;
  3963. width:150px;
  3964. height:150px;
  3965. }
  3966. #u180_text {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:2px;
  3970. top:68px;
  3971. width:146px;
  3972. word-wrap:break-word;
  3973. }
  3974. #u181_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:150px;
  3980. height:150px;
  3981. background:inherit;
  3982. background-color:rgba(215, 215, 215, 1);
  3983. border:none;
  3984. border-radius:0px;
  3985. -moz-box-shadow:none;
  3986. -webkit-box-shadow:none;
  3987. box-shadow:none;
  3988. }
  3989. #u181 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:1245px;
  3993. top:5692px;
  3994. width:150px;
  3995. height:150px;
  3996. }
  3997. #u181_text {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:2px;
  4001. top:68px;
  4002. width:146px;
  4003. word-wrap:break-word;
  4004. }
  4005. #u182_div {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:0px;
  4009. top:0px;
  4010. width:56px;
  4011. height:22px;
  4012. background:inherit;
  4013. background-color:rgba(255, 255, 255, 0);
  4014. border:none;
  4015. border-radius:0px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-size:18px;
  4020. }
  4021. #u182 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:511px;
  4025. top:5692px;
  4026. width:56px;
  4027. height:22px;
  4028. font-size:18px;
  4029. }
  4030. #u182_text {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:56px;
  4036. white-space:nowrap;
  4037. }
  4038. #u183_div {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:69px;
  4044. height:22px;
  4045. background:inherit;
  4046. background-color:rgba(255, 255, 255, 0);
  4047. border:none;
  4048. border-radius:0px;
  4049. -moz-box-shadow:none;
  4050. -webkit-box-shadow:none;
  4051. box-shadow:none;
  4052. font-size:18px;
  4053. }
  4054. #u183 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:815px;
  4058. top:5692px;
  4059. width:69px;
  4060. height:22px;
  4061. font-size:18px;
  4062. }
  4063. #u183_text {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:69px;
  4069. white-space:nowrap;
  4070. }
  4071. #u184_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:111px;
  4077. height:22px;
  4078. background:inherit;
  4079. background-color:rgba(255, 255, 255, 0);
  4080. border:none;
  4081. border-radius:0px;
  4082. -moz-box-shadow:none;
  4083. -webkit-box-shadow:none;
  4084. box-shadow:none;
  4085. font-size:18px;
  4086. }
  4087. #u184 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:1119px;
  4091. top:5692px;
  4092. width:111px;
  4093. height:22px;
  4094. font-size:18px;
  4095. }
  4096. #u184_text {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:111px;
  4102. word-wrap:break-word;
  4103. }
  4104. #u185_div {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:1615px;
  4110. height:55px;
  4111. background:inherit;
  4112. background-color:rgba(174, 174, 174, 1);
  4113. border:none;
  4114. border-radius:0px;
  4115. -moz-box-shadow:none;
  4116. -webkit-box-shadow:none;
  4117. box-shadow:none;
  4118. }
  4119. #u185 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:5921px;
  4124. width:1615px;
  4125. height:55px;
  4126. }
  4127. #u185_text {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:0px;
  4133. visibility:hidden;
  4134. word-wrap:break-word;
  4135. }
  4136. #u186_div {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:65px;
  4142. height:19px;
  4143. background:inherit;
  4144. background-color:rgba(255, 255, 255, 0);
  4145. border:none;
  4146. border-radius:0px;
  4147. -moz-box-shadow:none;
  4148. -webkit-box-shadow:none;
  4149. box-shadow:none;
  4150. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4151. font-weight:700;
  4152. font-style:normal;
  4153. font-size:16px;
  4154. color:#F2F2F2;
  4155. }
  4156. #u186 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:203px;
  4160. top:5939px;
  4161. width:65px;
  4162. height:19px;
  4163. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4164. font-weight:700;
  4165. font-style:normal;
  4166. font-size:16px;
  4167. color:#F2F2F2;
  4168. }
  4169. #u186_text {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:65px;
  4175. white-space:nowrap;
  4176. }
  4177. #u187_div {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:65px;
  4183. height:19px;
  4184. background:inherit;
  4185. background-color:rgba(255, 255, 255, 0);
  4186. border:none;
  4187. border-radius:0px;
  4188. -moz-box-shadow:none;
  4189. -webkit-box-shadow:none;
  4190. box-shadow:none;
  4191. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4192. font-weight:700;
  4193. font-style:normal;
  4194. font-size:16px;
  4195. color:#F2F2F2;
  4196. }
  4197. #u187 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:548px;
  4201. top:5939px;
  4202. width:65px;
  4203. height:19px;
  4204. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4205. font-weight:700;
  4206. font-style:normal;
  4207. font-size:16px;
  4208. color:#F2F2F2;
  4209. }
  4210. #u187_text {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:65px;
  4216. white-space:nowrap;
  4217. }
  4218. #u188_div {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:65px;
  4224. height:19px;
  4225. background:inherit;
  4226. background-color:rgba(255, 255, 255, 0);
  4227. border:none;
  4228. border-radius:0px;
  4229. -moz-box-shadow:none;
  4230. -webkit-box-shadow:none;
  4231. box-shadow:none;
  4232. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4233. font-weight:700;
  4234. font-style:normal;
  4235. font-size:16px;
  4236. color:#F2F2F2;
  4237. }
  4238. #u188 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:912px;
  4242. top:5939px;
  4243. width:65px;
  4244. height:19px;
  4245. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4246. font-weight:700;
  4247. font-style:normal;
  4248. font-size:16px;
  4249. color:#F2F2F2;
  4250. }
  4251. #u188_text {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:65px;
  4257. white-space:nowrap;
  4258. }
  4259. #u189_div {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:65px;
  4265. height:19px;
  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. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4274. font-weight:700;
  4275. font-style:normal;
  4276. font-size:16px;
  4277. color:#F2F2F2;
  4278. }
  4279. #u189 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:1314px;
  4283. top:5939px;
  4284. width:65px;
  4285. height:19px;
  4286. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4287. font-weight:700;
  4288. font-style:normal;
  4289. font-size:16px;
  4290. color:#F2F2F2;
  4291. }
  4292. #u189_text {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:65px;
  4298. white-space:nowrap;
  4299. }
  4300. #u190_div {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:1637px;
  4306. height:179px;
  4307. background:inherit;
  4308. background-color:rgba(51, 51, 51, 1);
  4309. border:none;
  4310. border-radius:0px;
  4311. -moz-box-shadow:none;
  4312. -webkit-box-shadow:none;
  4313. box-shadow:none;
  4314. }
  4315. #u190 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:-22px;
  4319. top:5976px;
  4320. width:1637px;
  4321. height:179px;
  4322. }
  4323. #u190_text {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:0px;
  4329. visibility:hidden;
  4330. word-wrap:break-word;
  4331. }
  4332. #u191_img {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:64px;
  4338. height:64px;
  4339. }
  4340. #u191 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:1551px;
  4344. top:5810px;
  4345. width:64px;
  4346. height:64px;
  4347. }
  4348. #u191_text {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:0px;
  4352. top:0px;
  4353. width:0px;
  4354. visibility:hidden;
  4355. word-wrap:break-word;
  4356. }
  4357. #u192_div {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:454px;
  4363. height:19px;
  4364. background:inherit;
  4365. background-color:rgba(255, 255, 255, 0);
  4366. border:none;
  4367. border-radius:0px;
  4368. -moz-box-shadow:none;
  4369. -webkit-box-shadow:none;
  4370. box-shadow:none;
  4371. font-size:16px;
  4372. color:#F2F2F2;
  4373. }
  4374. #u192 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:215px;
  4378. top:6041px;
  4379. width:454px;
  4380. height:19px;
  4381. font-size:16px;
  4382. color:#F2F2F2;
  4383. }
  4384. #u192_text {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:454px;
  4390. white-space:nowrap;
  4391. }
  4392. #u193_div {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:102px;
  4398. height:19px;
  4399. background:inherit;
  4400. background-color:rgba(255, 255, 255, 0);
  4401. border:none;
  4402. border-radius:0px;
  4403. -moz-box-shadow:none;
  4404. -webkit-box-shadow:none;
  4405. box-shadow:none;
  4406. font-size:16px;
  4407. color:#F2F2F2;
  4408. }
  4409. #u193 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:215px;
  4413. top:6076px;
  4414. width:102px;
  4415. height:19px;
  4416. font-size:16px;
  4417. color:#F2F2F2;
  4418. }
  4419. #u193_text {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:102px;
  4425. white-space:nowrap;
  4426. }
  4427. #u194_div {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:178px;
  4433. height:19px;
  4434. background:inherit;
  4435. background-color:rgba(255, 255, 255, 0);
  4436. border:none;
  4437. border-radius:0px;
  4438. -moz-box-shadow:none;
  4439. -webkit-box-shadow:none;
  4440. box-shadow:none;
  4441. font-size:16px;
  4442. color:#F2F2F2;
  4443. }
  4444. #u194 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:215px;
  4448. top:6109px;
  4449. width:178px;
  4450. height:19px;
  4451. font-size:16px;
  4452. color:#F2F2F2;
  4453. }
  4454. #u194_text {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:178px;
  4460. white-space:nowrap;
  4461. }
  4462. #u195_div {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:534px;
  4468. height:19px;
  4469. background:inherit;
  4470. background-color:rgba(255, 255, 255, 0);
  4471. border:none;
  4472. border-radius:0px;
  4473. -moz-box-shadow:none;
  4474. -webkit-box-shadow:none;
  4475. box-shadow:none;
  4476. font-size:16px;
  4477. color:#F2F2F2;
  4478. }
  4479. #u195 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:868px;
  4483. top:6037px;
  4484. width:534px;
  4485. height:19px;
  4486. font-size:16px;
  4487. color:#F2F2F2;
  4488. }
  4489. #u195_text {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:534px;
  4495. white-space:nowrap;
  4496. }
  4497. #u196_div {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:597px;
  4503. height:19px;
  4504. background:inherit;
  4505. background-color:rgba(255, 255, 255, 0);
  4506. border:none;
  4507. border-radius:0px;
  4508. -moz-box-shadow:none;
  4509. -webkit-box-shadow:none;
  4510. box-shadow:none;
  4511. font-size:16px;
  4512. color:#F2F2F2;
  4513. }
  4514. #u196 {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:868px;
  4518. top:6075px;
  4519. width:597px;
  4520. height:19px;
  4521. font-size:16px;
  4522. color:#F2F2F2;
  4523. }
  4524. #u196_text {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:597px;
  4530. white-space:nowrap;
  4531. }
  4532. #u197_div {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:317px;
  4538. height:19px;
  4539. background:inherit;
  4540. background-color:rgba(255, 255, 255, 0);
  4541. border:none;
  4542. border-radius:0px;
  4543. -moz-box-shadow:none;
  4544. -webkit-box-shadow:none;
  4545. box-shadow:none;
  4546. font-size:16px;
  4547. color:#F2F2F2;
  4548. }
  4549. #u197 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:868px;
  4553. top:6116px;
  4554. width:317px;
  4555. height:19px;
  4556. font-size:16px;
  4557. color:#F2F2F2;
  4558. }
  4559. #u197_text {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:317px;
  4565. white-space:nowrap;
  4566. }
  4567. #u198_div {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:97px;
  4573. height:29px;
  4574. background:inherit;
  4575. background-color:rgba(255, 255, 255, 0);
  4576. border:none;
  4577. border-radius:0px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. font-size:24px;
  4582. color:#666666;
  4583. }
  4584. #u198 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:999px;
  4588. top:123px;
  4589. width:97px;
  4590. height:29px;
  4591. font-size:24px;
  4592. color:#666666;
  4593. }
  4594. #u198_text {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:97px;
  4600. white-space:nowrap;
  4601. }
  4602. #u199 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:1048px;
  4606. top:123px;
  4607. width:0px;
  4608. height:0px;
  4609. color:#FFCC66;
  4610. }
  4611. #u199_seg0 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:-4px;
  4615. top:-17px;
  4616. width:8px;
  4617. height:17px;
  4618. }
  4619. #u199_seg1 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:-4px;
  4623. top:-17px;
  4624. width:610px;
  4625. height:8px;
  4626. }
  4627. #u199_seg2 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:598px;
  4631. top:-50px;
  4632. width:8px;
  4633. height:41px;
  4634. }
  4635. #u199_seg3 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:598px;
  4639. top:-50px;
  4640. width:19px;
  4641. height:8px;
  4642. }
  4643. #u199_text {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:268px;
  4647. top:-21px;
  4648. width:100px;
  4649. visibility:hidden;
  4650. word-wrap:break-word;
  4651. }
  4652. #u200_div {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:354px;
  4658. height:101px;
  4659. background:inherit;
  4660. background-color:rgba(255, 204, 102, 1);
  4661. border:none;
  4662. border-radius:10px;
  4663. -moz-box-shadow:none;
  4664. -webkit-box-shadow:none;
  4665. box-shadow:none;
  4666. font-size:16px;
  4667. text-align:left;
  4668. }
  4669. #u200 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:1665px;
  4673. top:26px;
  4674. width:354px;
  4675. height:101px;
  4676. font-size:16px;
  4677. text-align:left;
  4678. }
  4679. #u200_text {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:2px;
  4683. top:32px;
  4684. width:350px;
  4685. word-wrap:break-word;
  4686. }
  4687. #u201_div {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:354px;
  4693. height:101px;
  4694. background:inherit;
  4695. background-color:rgba(255, 204, 102, 1);
  4696. border:none;
  4697. border-radius:10px;
  4698. -moz-box-shadow:none;
  4699. -webkit-box-shadow:none;
  4700. box-shadow:none;
  4701. font-size:16px;
  4702. text-align:left;
  4703. }
  4704. #u201 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:1551px;
  4708. top:706px;
  4709. width:354px;
  4710. height:101px;
  4711. font-size:16px;
  4712. text-align:left;
  4713. }
  4714. #u201_text {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:2px;
  4718. top:32px;
  4719. width:350px;
  4720. word-wrap:break-word;
  4721. }
  4722. #u202 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:276px;
  4726. top:688px;
  4727. width:0px;
  4728. height:0px;
  4729. color:#FFCC66;
  4730. }
  4731. #u202_seg0 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:-4px;
  4736. width:1268px;
  4737. height:8px;
  4738. }
  4739. #u202_seg1 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:1260px;
  4743. top:-4px;
  4744. width:8px;
  4745. height:77px;
  4746. }
  4747. #u202_seg2 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:1260px;
  4751. top:65px;
  4752. width:15px;
  4753. height:8px;
  4754. }
  4755. #u202_text {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:622px;
  4759. top:-8px;
  4760. width:100px;
  4761. visibility:hidden;
  4762. word-wrap:break-word;
  4763. }
  4764. #u203_div {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:354px;
  4770. height:101px;
  4771. background:inherit;
  4772. background-color:rgba(255, 204, 102, 1);
  4773. border:none;
  4774. border-radius:10px;
  4775. -moz-box-shadow:none;
  4776. -webkit-box-shadow:none;
  4777. box-shadow:none;
  4778. font-size:16px;
  4779. text-align:left;
  4780. }
  4781. #u203 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:1551px;
  4785. top:978px;
  4786. width:354px;
  4787. height:101px;
  4788. font-size:16px;
  4789. text-align:left;
  4790. }
  4791. #u203_text {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:2px;
  4795. top:41px;
  4796. width:350px;
  4797. word-wrap:break-word;
  4798. }
  4799. #u204 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:1393px;
  4803. top:860px;
  4804. width:0px;
  4805. height:0px;
  4806. color:#FFCC66;
  4807. }
  4808. #u204_seg0 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:-4px;
  4813. width:121px;
  4814. height:8px;
  4815. }
  4816. #u204_seg1 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:113px;
  4820. top:-4px;
  4821. width:8px;
  4822. height:177px;
  4823. }
  4824. #u204_seg2 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:113px;
  4828. top:165px;
  4829. width:45px;
  4830. height:8px;
  4831. }
  4832. #u204_text {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:67px;
  4836. top:39px;
  4837. width:100px;
  4838. visibility:hidden;
  4839. word-wrap:break-word;
  4840. }
  4841. #u205_div {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:354px;
  4847. height:101px;
  4848. background:inherit;
  4849. background-color:rgba(255, 204, 102, 1);
  4850. border:none;
  4851. border-radius:10px;
  4852. -moz-box-shadow:none;
  4853. -webkit-box-shadow:none;
  4854. box-shadow:none;
  4855. font-size:16px;
  4856. text-align:left;
  4857. }
  4858. #u205 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:1551px;
  4862. top:1157px;
  4863. width:354px;
  4864. height:101px;
  4865. font-size:16px;
  4866. text-align:left;
  4867. }
  4868. #u205_text {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:2px;
  4872. top:41px;
  4873. width:350px;
  4874. word-wrap:break-word;
  4875. }
  4876. #u206 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:1395px;
  4880. top:1016px;
  4881. width:0px;
  4882. height:0px;
  4883. color:#FFCC66;
  4884. }
  4885. #u206_seg0 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:-4px;
  4890. width:14px;
  4891. height:8px;
  4892. }
  4893. #u206_seg1 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:6px;
  4897. top:-4px;
  4898. width:8px;
  4899. height:60px;
  4900. }
  4901. #u206_seg2 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:6px;
  4905. top:48px;
  4906. width:143px;
  4907. height:8px;
  4908. }
  4909. #u206_seg3 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:141px;
  4913. top:48px;
  4914. width:8px;
  4915. height:148px;
  4916. }
  4917. #u206_seg4 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:141px;
  4921. top:188px;
  4922. width:15px;
  4923. height:8px;
  4924. }
  4925. #u206_text {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:72px;
  4929. top:44px;
  4930. width:100px;
  4931. visibility:hidden;
  4932. word-wrap:break-word;
  4933. }
  4934. #u207_div {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:354px;
  4940. height:101px;
  4941. background:inherit;
  4942. background-color:rgba(255, 204, 102, 1);
  4943. border:none;
  4944. border-radius:10px;
  4945. -moz-box-shadow:none;
  4946. -webkit-box-shadow:none;
  4947. box-shadow:none;
  4948. font-size:16px;
  4949. text-align:left;
  4950. }
  4951. #u207 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:1551px;
  4955. top:1297px;
  4956. width:354px;
  4957. height:101px;
  4958. font-size:16px;
  4959. text-align:left;
  4960. }
  4961. #u207_text {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:2px;
  4965. top:41px;
  4966. width:350px;
  4967. word-wrap:break-word;
  4968. }
  4969. #u208 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:1395px;
  4973. top:1209px;
  4974. width:0px;
  4975. height:0px;
  4976. color:#FFCC66;
  4977. }
  4978. #u208_seg0 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:-4px;
  4983. width:100px;
  4984. height:8px;
  4985. }
  4986. #u208_seg1 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:92px;
  4990. top:-4px;
  4991. width:8px;
  4992. height:147px;
  4993. }
  4994. #u208_seg2 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:92px;
  4998. top:135px;
  4999. width:64px;
  5000. height:8px;
  5001. }
  5002. #u208_text {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:46px;
  5006. top:43px;
  5007. width:100px;
  5008. visibility:hidden;
  5009. word-wrap:break-word;
  5010. }
  5011. #u209_div {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:354px;
  5017. height:101px;
  5018. background:inherit;
  5019. background-color:rgba(255, 204, 102, 1);
  5020. border:none;
  5021. border-radius:10px;
  5022. -moz-box-shadow:none;
  5023. -webkit-box-shadow:none;
  5024. box-shadow:none;
  5025. font-size:16px;
  5026. text-align:left;
  5027. }
  5028. #u209 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:1551px;
  5032. top:1441px;
  5033. width:354px;
  5034. height:101px;
  5035. font-size:16px;
  5036. text-align:left;
  5037. }
  5038. #u209_text {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:2px;
  5042. top:32px;
  5043. width:350px;
  5044. word-wrap:break-word;
  5045. }
  5046. #u210 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:1394px;
  5050. top:1492px;
  5051. width:0px;
  5052. height:0px;
  5053. color:#FFCC66;
  5054. }
  5055. #u210_seg0 {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:-4px;
  5060. width:161px;
  5061. height:8px;
  5062. }
  5063. #u210_text {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:28px;
  5067. top:-8px;
  5068. width:100px;
  5069. visibility:hidden;
  5070. word-wrap:break-word;
  5071. }
  5072. #u211 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:596px;
  5076. top:1700px;
  5077. width:0px;
  5078. height:0px;
  5079. color:#FFCC66;
  5080. }
  5081. #u211_seg0 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:-4px;
  5085. top:-64px;
  5086. width:8px;
  5087. height:64px;
  5088. }
  5089. #u211_seg1 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:-4px;
  5093. top:-64px;
  5094. width:962px;
  5095. height:8px;
  5096. }
  5097. #u211_text {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:399px;
  5101. top:-68px;
  5102. width:100px;
  5103. visibility:hidden;
  5104. word-wrap:break-word;
  5105. }
  5106. #u212_div {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:354px;
  5112. height:101px;
  5113. background:inherit;
  5114. background-color:rgba(0, 153, 204, 1);
  5115. border:none;
  5116. border-radius:10px;
  5117. -moz-box-shadow:none;
  5118. -webkit-box-shadow:none;
  5119. box-shadow:none;
  5120. font-size:16px;
  5121. color:#FFFFFF;
  5122. text-align:left;
  5123. }
  5124. #u212 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:1551px;
  5128. top:1599px;
  5129. width:354px;
  5130. height:101px;
  5131. font-size:16px;
  5132. color:#FFFFFF;
  5133. text-align:left;
  5134. }
  5135. #u212_text {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:2px;
  5139. top:22px;
  5140. width:350px;
  5141. word-wrap:break-word;
  5142. }
  5143. #u213_div {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:354px;
  5149. height:101px;
  5150. background:inherit;
  5151. background-color:rgba(0, 153, 204, 1);
  5152. border:none;
  5153. border-radius:10px;
  5154. -moz-box-shadow:none;
  5155. -webkit-box-shadow:none;
  5156. box-shadow:none;
  5157. font-size:16px;
  5158. color:#FFFFFF;
  5159. text-align:left;
  5160. }
  5161. #u213 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1551px;
  5165. top:857px;
  5166. width:354px;
  5167. height:101px;
  5168. font-size:16px;
  5169. color:#FFFFFF;
  5170. text-align:left;
  5171. }
  5172. #u213_text {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:2px;
  5176. top:41px;
  5177. width:350px;
  5178. word-wrap:break-word;
  5179. }
  5180. #u214 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:1389px;
  5184. top:908px;
  5185. width:0px;
  5186. height:0px;
  5187. color:#FFCC66;
  5188. }
  5189. #u214_seg0 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:-4px;
  5194. width:166px;
  5195. height:8px;
  5196. }
  5197. #u214_text {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:31px;
  5201. top:-8px;
  5202. width:100px;
  5203. visibility:hidden;
  5204. word-wrap:break-word;
  5205. }
  5206. #u215 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:800px;
  5210. top:2323px;
  5211. width:0px;
  5212. height:0px;
  5213. color:#FFCC66;
  5214. }
  5215. #u215_seg0 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:-4px;
  5219. top:-55px;
  5220. width:8px;
  5221. height:55px;
  5222. }
  5223. #u215_seg1 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:-4px;
  5227. top:-55px;
  5228. width:755px;
  5229. height:8px;
  5230. }
  5231. #u215_text {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:300px;
  5235. top:-59px;
  5236. width:100px;
  5237. visibility:hidden;
  5238. word-wrap:break-word;
  5239. }
  5240. #u216 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:989px;
  5244. top:1209px;
  5245. width:0px;
  5246. height:0px;
  5247. color:#FFCC66;
  5248. }
  5249. #u216_seg0 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:-4px;
  5254. width:25px;
  5255. height:8px;
  5256. }
  5257. #u216_seg1 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:17px;
  5261. top:-489px;
  5262. width:8px;
  5263. height:493px;
  5264. }
  5265. #u216_seg2 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:17px;
  5269. top:-489px;
  5270. width:464px;
  5271. height:8px;
  5272. }
  5273. #u216_seg3 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:473px;
  5277. top:-489px;
  5278. width:8px;
  5279. height:192px;
  5280. }
  5281. #u216_seg4 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:473px;
  5285. top:-305px;
  5286. width:89px;
  5287. height:8px;
  5288. }
  5289. #u216_text {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:80px;
  5293. top:-493px;
  5294. width:100px;
  5295. visibility:hidden;
  5296. word-wrap:break-word;
  5297. }
  5298. #u217_div {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:354px;
  5304. height:101px;
  5305. background:inherit;
  5306. background-color:rgba(0, 153, 204, 1);
  5307. border:none;
  5308. border-radius:10px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-size:16px;
  5313. color:#FFFFFF;
  5314. text-align:left;
  5315. }
  5316. #u217 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:1551px;
  5320. top:2221px;
  5321. width:354px;
  5322. height:101px;
  5323. font-size:16px;
  5324. color:#FFFFFF;
  5325. text-align:left;
  5326. }
  5327. #u217_text {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:2px;
  5331. top:41px;
  5332. width:350px;
  5333. word-wrap:break-word;
  5334. }
  5335. #u218_div {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:354px;
  5341. height:101px;
  5342. background:inherit;
  5343. background-color:rgba(255, 204, 102, 1);
  5344. border:none;
  5345. border-radius:10px;
  5346. -moz-box-shadow:none;
  5347. -webkit-box-shadow:none;
  5348. box-shadow:none;
  5349. font-size:16px;
  5350. text-align:left;
  5351. }
  5352. #u218 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:1551px;
  5356. top:1895px;
  5357. width:354px;
  5358. height:101px;
  5359. font-size:16px;
  5360. text-align:left;
  5361. }
  5362. #u218_text {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:2px;
  5366. top:41px;
  5367. width:350px;
  5368. word-wrap:break-word;
  5369. }
  5370. #u219_div {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:0px;
  5375. width:354px;
  5376. height:101px;
  5377. background:inherit;
  5378. background-color:rgba(0, 153, 204, 1);
  5379. border:none;
  5380. border-radius:10px;
  5381. -moz-box-shadow:none;
  5382. -webkit-box-shadow:none;
  5383. box-shadow:none;
  5384. font-size:16px;
  5385. color:#FFFFFF;
  5386. text-align:left;
  5387. }
  5388. #u219 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:1541px;
  5392. top:4079px;
  5393. width:354px;
  5394. height:101px;
  5395. font-size:16px;
  5396. color:#FFFFFF;
  5397. text-align:left;
  5398. }
  5399. #u219_text {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:2px;
  5403. top:32px;
  5404. width:350px;
  5405. word-wrap:break-word;
  5406. }
  5407. #u220 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:1395px;
  5411. top:4130px;
  5412. width:0px;
  5413. height:0px;
  5414. color:#FFCC66;
  5415. }
  5416. #u220_seg0 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:-4px;
  5421. width:150px;
  5422. height:8px;
  5423. }
  5424. #u220_text {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:23px;
  5428. top:-8px;
  5429. width:100px;
  5430. visibility:hidden;
  5431. word-wrap:break-word;
  5432. }
  5433. #u221_div {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:354px;
  5439. height:101px;
  5440. background:inherit;
  5441. background-color:rgba(0, 153, 204, 1);
  5442. border:none;
  5443. border-radius:10px;
  5444. -moz-box-shadow:none;
  5445. -webkit-box-shadow:none;
  5446. box-shadow:none;
  5447. font-size:16px;
  5448. color:#FFFFFF;
  5449. text-align:left;
  5450. }
  5451. #u221 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:1665px;
  5455. top:358px;
  5456. width:354px;
  5457. height:101px;
  5458. font-size:16px;
  5459. color:#FFFFFF;
  5460. text-align:left;
  5461. }
  5462. #u221_text {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:2px;
  5466. top:32px;
  5467. width:350px;
  5468. word-wrap:break-word;
  5469. }
  5470. #u222 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:842px;
  5474. top:409px;
  5475. width:0px;
  5476. height:0px;
  5477. color:#FFCC66;
  5478. }
  5479. #u222_seg0 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:-4px;
  5484. width:827px;
  5485. height:8px;
  5486. }
  5487. #u222_text {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:362px;
  5491. top:-8px;
  5492. width:100px;
  5493. visibility:hidden;
  5494. word-wrap:break-word;
  5495. }
  5496. #u223_div {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:75px;
  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';
  5511. font-weight:700;
  5512. font-style:normal;
  5513. font-size:18px;
  5514. }
  5515. #u223 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:203px;
  5519. top:5724px;
  5520. width:75px;
  5521. height:22px;
  5522. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5523. font-weight:700;
  5524. font-style:normal;
  5525. font-size:18px;
  5526. }
  5527. #u223_text {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:75px;
  5533. white-space:nowrap;
  5534. }
  5535. #u224_div {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:119px;
  5541. height:19px;
  5542. background:inherit;
  5543. background-color:rgba(255, 255, 255, 0);
  5544. border:none;
  5545. border-radius:0px;
  5546. -moz-box-shadow:none;
  5547. -webkit-box-shadow:none;
  5548. box-shadow:none;
  5549. font-size:16px;
  5550. color:#F2F2F2;
  5551. }
  5552. #u224 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:703px;
  5556. top:5996px;
  5557. width:119px;
  5558. height:19px;
  5559. font-size:16px;
  5560. color:#F2F2F2;
  5561. }
  5562. #u224_text {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:119px;
  5568. white-space:nowrap;
  5569. }
  5570. #u225_div {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:113px;
  5576. height:19px;
  5577. background:inherit;
  5578. background-color:rgba(255, 255, 255, 0);
  5579. border:none;
  5580. border-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. font-size:16px;
  5585. color:#F2F2F2;
  5586. }
  5587. #u225 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:835px;
  5591. top:5996px;
  5592. width:113px;
  5593. height:19px;
  5594. font-size:16px;
  5595. color:#F2F2F2;
  5596. }
  5597. #u225_text {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:113px;
  5603. white-space:nowrap;
  5604. }
  5605. #u226_div {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:75px;
  5611. height:22px;
  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';
  5620. font-weight:700;
  5621. font-style:normal;
  5622. font-size:18px;
  5623. }
  5624. #u226 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:511px;
  5628. top:5724px;
  5629. width:75px;
  5630. height:22px;
  5631. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5632. font-weight:700;
  5633. font-style:normal;
  5634. font-size:18px;
  5635. }
  5636. #u226_text {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:75px;
  5642. white-space:nowrap;
  5643. }
  5644. #u227_div {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:75px;
  5650. height:22px;
  5651. background:inherit;
  5652. background-color:rgba(255, 255, 255, 0);
  5653. border:none;
  5654. border-radius:0px;
  5655. -moz-box-shadow:none;
  5656. -webkit-box-shadow:none;
  5657. box-shadow:none;
  5658. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5659. font-weight:700;
  5660. font-style:normal;
  5661. font-size:18px;
  5662. }
  5663. #u227 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:815px;
  5667. top:5724px;
  5668. width:75px;
  5669. height:22px;
  5670. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5671. font-weight:700;
  5672. font-style:normal;
  5673. font-size:18px;
  5674. }
  5675. #u227_text {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:75px;
  5681. white-space:nowrap;
  5682. }
  5683. #u228_div {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:75px;
  5689. height:22px;
  5690. background:inherit;
  5691. background-color:rgba(255, 255, 255, 0);
  5692. border:none;
  5693. border-radius:0px;
  5694. -moz-box-shadow:none;
  5695. -webkit-box-shadow:none;
  5696. box-shadow:none;
  5697. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5698. font-weight:700;
  5699. font-style:normal;
  5700. font-size:18px;
  5701. }
  5702. #u228 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:1119px;
  5706. top:5724px;
  5707. width:75px;
  5708. height:22px;
  5709. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  5710. font-weight:700;
  5711. font-style:normal;
  5712. font-size:18px;
  5713. }
  5714. #u228_text {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:75px;
  5720. white-space:nowrap;
  5721. }
  5722. #u229_div {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:111px;
  5728. height:22px;
  5729. background:inherit;
  5730. background-color:rgba(255, 255, 255, 0);
  5731. border:none;
  5732. border-radius:0px;
  5733. -moz-box-shadow:none;
  5734. -webkit-box-shadow:none;
  5735. box-shadow:none;
  5736. font-size:18px;
  5737. }
  5738. #u229 {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:203px;
  5742. top:5820px;
  5743. width:111px;
  5744. height:22px;
  5745. font-size:18px;
  5746. }
  5747. #u229_text {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:111px;
  5753. white-space:nowrap;
  5754. }
  5755. #u230_div {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:0px;
  5759. top:0px;
  5760. width:111px;
  5761. height:22px;
  5762. background:inherit;
  5763. background-color:rgba(255, 255, 255, 0);
  5764. border:none;
  5765. border-radius:0px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-size:18px;
  5770. }
  5771. #u230 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:511px;
  5775. top:5820px;
  5776. width:111px;
  5777. height:22px;
  5778. font-size:18px;
  5779. }
  5780. #u230_text {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:111px;
  5786. white-space:nowrap;
  5787. }
  5788. #u231_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:111px;
  5794. height:22px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 0);
  5797. border:none;
  5798. border-radius:0px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. font-size:18px;
  5803. }
  5804. #u231 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:815px;
  5808. top:5820px;
  5809. width:111px;
  5810. height:22px;
  5811. font-size:18px;
  5812. }
  5813. #u231_text {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:111px;
  5819. white-space:nowrap;
  5820. }
  5821. #u232_div {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:111px;
  5827. height:22px;
  5828. background:inherit;
  5829. background-color:rgba(255, 255, 255, 0);
  5830. border:none;
  5831. border-radius:0px;
  5832. -moz-box-shadow:none;
  5833. -webkit-box-shadow:none;
  5834. box-shadow:none;
  5835. font-size:18px;
  5836. }
  5837. #u232 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:1119px;
  5841. top:5820px;
  5842. width:111px;
  5843. height:22px;
  5844. font-size:18px;
  5845. }
  5846. #u232_text {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:111px;
  5852. white-space:nowrap;
  5853. }
  5854. #u233_img {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:370px;
  5860. height:542px;
  5861. }
  5862. #u233 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:1021px;
  5866. top:2323px;
  5867. width:370px;
  5868. height:542px;
  5869. }
  5870. #u233_text {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:2px;
  5874. top:264px;
  5875. width:366px;
  5876. word-wrap:break-word;
  5877. }
  5878. #u234_div {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:370px;
  5884. height:254px;
  5885. background:inherit;
  5886. background-color:rgba(215, 215, 215, 1);
  5887. border:none;
  5888. border-radius:0px;
  5889. -moz-box-shadow:none;
  5890. -webkit-box-shadow:none;
  5891. box-shadow:none;
  5892. }
  5893. #u234 {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:203px;
  5897. top:3036px;
  5898. width:370px;
  5899. height:254px;
  5900. }
  5901. #u234_text {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:0px;
  5907. visibility:hidden;
  5908. word-wrap:break-word;
  5909. }
  5910. #u235_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:370px;
  5916. height:254px;
  5917. background:inherit;
  5918. background-color:rgba(215, 215, 215, 1);
  5919. border:none;
  5920. border-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. }
  5925. #u235 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:615px;
  5929. top:3036px;
  5930. width:370px;
  5931. height:254px;
  5932. }
  5933. #u235_text {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:0px;
  5939. visibility:hidden;
  5940. word-wrap:break-word;
  5941. }
  5942. #u236_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:370px;
  5948. height:254px;
  5949. background:inherit;
  5950. background-color:rgba(215, 215, 215, 1);
  5951. border:none;
  5952. border-radius:0px;
  5953. -moz-box-shadow:none;
  5954. -webkit-box-shadow:none;
  5955. box-shadow:none;
  5956. }
  5957. #u236 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:203px;
  5961. top:3324px;
  5962. width:370px;
  5963. height:254px;
  5964. }
  5965. #u236_text {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:0px;
  5971. visibility:hidden;
  5972. word-wrap:break-word;
  5973. }
  5974. #u237_div {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:0px;
  5978. top:0px;
  5979. width:370px;
  5980. height:254px;
  5981. background:inherit;
  5982. background-color:rgba(215, 215, 215, 1);
  5983. border:none;
  5984. border-radius:0px;
  5985. -moz-box-shadow:none;
  5986. -webkit-box-shadow:none;
  5987. box-shadow:none;
  5988. }
  5989. #u237 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:615px;
  5993. top:3324px;
  5994. width:370px;
  5995. height:254px;
  5996. }
  5997. #u237_text {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:0px;
  6003. visibility:hidden;
  6004. word-wrap:break-word;
  6005. }
  6006. #u238_div {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:0px;
  6011. width:247px;
  6012. height:26px;
  6013. background:inherit;
  6014. background-color:rgba(255, 255, 255, 0);
  6015. border:none;
  6016. border-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-size:22px;
  6021. color:#FFFFFF;
  6022. }
  6023. #u238 {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:265px;
  6027. top:3248px;
  6028. width:247px;
  6029. height:26px;
  6030. font-size:22px;
  6031. color:#FFFFFF;
  6032. }
  6033. #u238_text {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:247px;
  6039. white-space:nowrap;
  6040. }
  6041. #u239_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:311px;
  6047. height:26px;
  6048. background:inherit;
  6049. background-color:rgba(255, 255, 255, 0);
  6050. border:none;
  6051. border-radius:0px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. font-size:22px;
  6056. color:#FFFFFF;
  6057. }
  6058. #u239 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:645px;
  6062. top:3248px;
  6063. width:311px;
  6064. height:26px;
  6065. font-size:22px;
  6066. color:#FFFFFF;
  6067. }
  6068. #u239_text {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:311px;
  6074. white-space:nowrap;
  6075. }
  6076. #u240_div {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:262px;
  6082. height:26px;
  6083. background:inherit;
  6084. background-color:rgba(255, 255, 255, 0);
  6085. border:none;
  6086. border-radius:0px;
  6087. -moz-box-shadow:none;
  6088. -webkit-box-shadow:none;
  6089. box-shadow:none;
  6090. font-size:22px;
  6091. color:#FFFFFF;
  6092. }
  6093. #u240 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:265px;
  6097. top:3538px;
  6098. width:262px;
  6099. height:26px;
  6100. font-size:22px;
  6101. color:#FFFFFF;
  6102. }
  6103. #u240_text {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:262px;
  6109. white-space:nowrap;
  6110. }
  6111. #u241_div {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:254px;
  6117. height:26px;
  6118. background:inherit;
  6119. background-color:rgba(255, 255, 255, 0);
  6120. border:none;
  6121. border-radius:0px;
  6122. -moz-box-shadow:none;
  6123. -webkit-box-shadow:none;
  6124. box-shadow:none;
  6125. font-size:22px;
  6126. color:#FFFFFF;
  6127. }
  6128. #u241 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:673px;
  6132. top:3538px;
  6133. width:254px;
  6134. height:26px;
  6135. font-size:22px;
  6136. color:#FFFFFF;
  6137. }
  6138. #u241_text {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:254px;
  6144. white-space:nowrap;
  6145. }
  6146. #u242_div {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:370px;
  6152. height:254px;
  6153. background:inherit;
  6154. background-color:rgba(215, 215, 215, 1);
  6155. border:none;
  6156. border-radius:0px;
  6157. -moz-box-shadow:none;
  6158. -webkit-box-shadow:none;
  6159. box-shadow:none;
  6160. }
  6161. #u242 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:1025px;
  6165. top:3036px;
  6166. width:370px;
  6167. height:254px;
  6168. }
  6169. #u242_text {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:0px;
  6175. visibility:hidden;
  6176. word-wrap:break-word;
  6177. }
  6178. #u243_div {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:370px;
  6184. height:254px;
  6185. background:inherit;
  6186. background-color:rgba(215, 215, 215, 1);
  6187. border:none;
  6188. border-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. }
  6193. #u243 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:1025px;
  6197. top:3324px;
  6198. width:370px;
  6199. height:254px;
  6200. }
  6201. #u243_text {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:0px;
  6207. visibility:hidden;
  6208. word-wrap:break-word;
  6209. }
  6210. #u244_div {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:311px;
  6216. height:26px;
  6217. background:inherit;
  6218. background-color:rgba(255, 255, 255, 0);
  6219. border:none;
  6220. border-radius:0px;
  6221. -moz-box-shadow:none;
  6222. -webkit-box-shadow:none;
  6223. box-shadow:none;
  6224. font-size:22px;
  6225. color:#FFFFFF;
  6226. }
  6227. #u244 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:1055px;
  6231. top:3248px;
  6232. width:311px;
  6233. height:26px;
  6234. font-size:22px;
  6235. color:#FFFFFF;
  6236. }
  6237. #u244_text {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:311px;
  6243. white-space:nowrap;
  6244. }
  6245. #u245_div {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:254px;
  6251. height:26px;
  6252. background:inherit;
  6253. background-color:rgba(255, 255, 255, 0);
  6254. border:none;
  6255. border-radius:0px;
  6256. -moz-box-shadow:none;
  6257. -webkit-box-shadow:none;
  6258. box-shadow:none;
  6259. font-size:22px;
  6260. color:#FFFFFF;
  6261. }
  6262. #u245 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:1083px;
  6266. top:3538px;
  6267. width:254px;
  6268. height:26px;
  6269. font-size:22px;
  6270. color:#FFFFFF;
  6271. }
  6272. #u245_text {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:254px;
  6278. white-space:nowrap;
  6279. }
  6280. #u246_div {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:354px;
  6286. height:101px;
  6287. background:inherit;
  6288. background-color:rgba(0, 153, 204, 1);
  6289. border:none;
  6290. border-radius:10px;
  6291. -moz-box-shadow:none;
  6292. -webkit-box-shadow:none;
  6293. box-shadow:none;
  6294. font-size:16px;
  6295. color:#FFFFFF;
  6296. text-align:left;
  6297. }
  6298. #u246 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:1551px;
  6302. top:3113px;
  6303. width:354px;
  6304. height:101px;
  6305. font-size:16px;
  6306. color:#FFFFFF;
  6307. text-align:left;
  6308. }
  6309. #u246_text {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:2px;
  6313. top:41px;
  6314. width:350px;
  6315. word-wrap:break-word;
  6316. }
  6317. #u247 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:1395px;
  6321. top:3163px;
  6322. width:0px;
  6323. height:0px;
  6324. color:#FFCC66;
  6325. }
  6326. #u247_seg0 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:-4px;
  6331. width:149px;
  6332. height:8px;
  6333. }
  6334. #u247_seg1 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:141px;
  6338. top:-4px;
  6339. width:8px;
  6340. height:9px;
  6341. }
  6342. #u247_seg2 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:141px;
  6346. top:-3px;
  6347. width:15px;
  6348. height:8px;
  6349. }
  6350. #u247_text {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:28px;
  6354. top:-8px;
  6355. width:100px;
  6356. visibility:hidden;
  6357. word-wrap:break-word;
  6358. }
  6359. #u248_div {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:370px;
  6365. height:346px;
  6366. background:inherit;
  6367. background-color:rgba(215, 215, 215, 1);
  6368. border:none;
  6369. border-radius:0px;
  6370. -moz-box-shadow:none;
  6371. -webkit-box-shadow:none;
  6372. box-shadow:none;
  6373. }
  6374. #u248 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:614px;
  6378. top:4679px;
  6379. width:370px;
  6380. height:346px;
  6381. }
  6382. #u248_text {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:0px;
  6387. width:0px;
  6388. visibility:hidden;
  6389. word-wrap:break-word;
  6390. }
  6391. #u249_div {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:370px;
  6397. height:346px;
  6398. background:inherit;
  6399. background-color:rgba(215, 215, 215, 1);
  6400. border:none;
  6401. border-radius:0px;
  6402. -moz-box-shadow:none;
  6403. -webkit-box-shadow:none;
  6404. box-shadow:none;
  6405. }
  6406. #u249 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:1025px;
  6410. top:4679px;
  6411. width:370px;
  6412. height:346px;
  6413. }
  6414. #u249_text {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:0px;
  6420. visibility:hidden;
  6421. word-wrap:break-word;
  6422. }
  6423. #u250_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:370px;
  6429. height:66px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 0);
  6432. border:none;
  6433. border-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-size:28px;
  6438. }
  6439. #u250 {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:614px;
  6443. top:5035px;
  6444. width:370px;
  6445. height:66px;
  6446. font-size:28px;
  6447. }
  6448. #u250_text {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:0px;
  6452. top:0px;
  6453. width:370px;
  6454. word-wrap:break-word;
  6455. }
  6456. #u251_div {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:370px;
  6462. height:96px;
  6463. background:inherit;
  6464. background-color:rgba(255, 255, 255, 0);
  6465. border:none;
  6466. border-radius:0px;
  6467. -moz-box-shadow:none;
  6468. -webkit-box-shadow:none;
  6469. box-shadow:none;
  6470. font-size:16px;
  6471. }
  6472. #u251 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:614px;
  6476. top:5111px;
  6477. width:370px;
  6478. height:96px;
  6479. font-size:16px;
  6480. }
  6481. #u251_text {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:370px;
  6487. word-wrap:break-word;
  6488. }
  6489. #u252_div {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:370px;
  6495. height:66px;
  6496. background:inherit;
  6497. background-color:rgba(255, 255, 255, 0);
  6498. border:none;
  6499. border-radius:0px;
  6500. -moz-box-shadow:none;
  6501. -webkit-box-shadow:none;
  6502. box-shadow:none;
  6503. font-size:28px;
  6504. }
  6505. #u252 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:1025px;
  6509. top:5035px;
  6510. width:370px;
  6511. height:66px;
  6512. font-size:28px;
  6513. }
  6514. #u252_text {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:370px;
  6520. word-wrap:break-word;
  6521. }
  6522. #u253_div {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:370px;
  6528. height:96px;
  6529. background:inherit;
  6530. background-color:rgba(255, 255, 255, 0);
  6531. border:none;
  6532. border-radius:0px;
  6533. -moz-box-shadow:none;
  6534. -webkit-box-shadow:none;
  6535. box-shadow:none;
  6536. font-size:16px;
  6537. }
  6538. #u253 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:1025px;
  6542. top:5111px;
  6543. width:370px;
  6544. height:96px;
  6545. font-size:16px;
  6546. }
  6547. #u253_text {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:370px;
  6553. word-wrap:break-word;
  6554. }
  6555. #u254_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:354px;
  6561. height:101px;
  6562. background:inherit;
  6563. background-color:rgba(255, 204, 102, 1);
  6564. border:none;
  6565. border-radius:10px;
  6566. -moz-box-shadow:none;
  6567. -webkit-box-shadow:none;
  6568. box-shadow:none;
  6569. font-size:16px;
  6570. text-align:left;
  6571. }
  6572. #u254 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:1551px;
  6576. top:1754px;
  6577. width:354px;
  6578. height:101px;
  6579. font-size:16px;
  6580. text-align:left;
  6581. }
  6582. #u254_text {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:2px;
  6586. top:32px;
  6587. width:350px;
  6588. word-wrap:break-word;
  6589. }
  6590. #u255_div {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:354px;
  6596. height:101px;
  6597. background:inherit;
  6598. background-color:rgba(255, 204, 102, 1);
  6599. border:none;
  6600. border-radius:10px;
  6601. -moz-box-shadow:none;
  6602. -webkit-box-shadow:none;
  6603. box-shadow:none;
  6604. font-size:16px;
  6605. text-align:left;
  6606. }
  6607. #u255 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:1551px;
  6611. top:2365px;
  6612. width:354px;
  6613. height:101px;
  6614. font-size:16px;
  6615. text-align:left;
  6616. }
  6617. #u255_text {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:2px;
  6621. top:32px;
  6622. width:350px;
  6623. word-wrap:break-word;
  6624. }
  6625. #u256_div {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:354px;
  6631. height:101px;
  6632. background:inherit;
  6633. background-color:rgba(255, 204, 102, 1);
  6634. border:none;
  6635. border-radius:10px;
  6636. -moz-box-shadow:none;
  6637. -webkit-box-shadow:none;
  6638. box-shadow:none;
  6639. font-size:16px;
  6640. text-align:left;
  6641. }
  6642. #u256 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:1551px;
  6646. top:2506px;
  6647. width:354px;
  6648. height:101px;
  6649. font-size:16px;
  6650. text-align:left;
  6651. }
  6652. #u256_text {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:2px;
  6656. top:22px;
  6657. width:350px;
  6658. word-wrap:break-word;
  6659. }
  6660. #u257_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:354px;
  6666. height:101px;
  6667. background:inherit;
  6668. background-color:rgba(255, 204, 102, 1);
  6669. border:none;
  6670. border-radius:10px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-size:16px;
  6675. text-align:left;
  6676. }
  6677. #u257 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:1551px;
  6681. top:3273px;
  6682. width:354px;
  6683. height:101px;
  6684. font-size:16px;
  6685. text-align:left;
  6686. }
  6687. #u257_text {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:2px;
  6691. top:22px;
  6692. width:350px;
  6693. word-wrap:break-word;
  6694. }
  6695. #u258_div {
  6696. border-width:0px;
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:354px;
  6701. height:101px;
  6702. background:inherit;
  6703. background-color:rgba(255, 204, 102, 1);
  6704. border:none;
  6705. border-radius:10px;
  6706. -moz-box-shadow:none;
  6707. -webkit-box-shadow:none;
  6708. box-shadow:none;
  6709. font-size:16px;
  6710. text-align:left;
  6711. }
  6712. #u258 {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:1541px;
  6716. top:4199px;
  6717. width:354px;
  6718. height:101px;
  6719. font-size:16px;
  6720. text-align:left;
  6721. }
  6722. #u258_text {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:2px;
  6726. top:22px;
  6727. width:350px;
  6728. word-wrap:break-word;
  6729. }
  6730. #u259_div {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:0px;
  6734. top:0px;
  6735. width:354px;
  6736. height:101px;
  6737. background:inherit;
  6738. background-color:rgba(255, 204, 102, 1);
  6739. border:none;
  6740. border-radius:10px;
  6741. -moz-box-shadow:none;
  6742. -webkit-box-shadow:none;
  6743. box-shadow:none;
  6744. font-size:16px;
  6745. text-align:left;
  6746. }
  6747. #u259 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:1541px;
  6751. top:4745px;
  6752. width:354px;
  6753. height:101px;
  6754. font-size:16px;
  6755. text-align:left;
  6756. }
  6757. #u259_text {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:2px;
  6761. top:22px;
  6762. width:350px;
  6763. word-wrap:break-word;
  6764. }
  6765. #u260_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:354px;
  6771. height:101px;
  6772. background:inherit;
  6773. background-color:rgba(255, 204, 102, 1);
  6774. border:none;
  6775. border-radius:10px;
  6776. -moz-box-shadow:none;
  6777. -webkit-box-shadow:none;
  6778. box-shadow:none;
  6779. font-size:16px;
  6780. text-align:left;
  6781. }
  6782. #u260 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:1665px;
  6786. top:238px;
  6787. width:354px;
  6788. height:101px;
  6789. font-size:16px;
  6790. text-align:left;
  6791. }
  6792. #u260_text {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:2px;
  6796. top:32px;
  6797. width:350px;
  6798. word-wrap:break-word;
  6799. }