styles.css 101 KB

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