styles.css 101 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1446px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u1851_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1400px;
  21. height:920px;
  22. }
  23. #u1851 {
  24. border-width:0px;
  25. position:absolute;
  26. left:49px;
  27. top:0px;
  28. width:1400px;
  29. height:920px;
  30. }
  31. #u1851_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u1852_img {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:242px;
  46. height:974px;
  47. }
  48. #u1852 {
  49. border-width:0px;
  50. position:absolute;
  51. left:-1px;
  52. top:0px;
  53. width:242px;
  54. height:974px;
  55. }
  56. #u1852_text {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:0px;
  62. visibility:hidden;
  63. word-wrap:break-word;
  64. }
  65. #u1853 {
  66. position:absolute;
  67. left:0px;
  68. top:175px;
  69. visibility:hidden;
  70. }
  71. #u1853_state0 {
  72. position:relative;
  73. left:0px;
  74. top:0px;
  75. width:240px;
  76. height:118px;
  77. background-image:none;
  78. }
  79. #u1853_state0_content {
  80. border-width:0px;
  81. position:absolute;
  82. left:0px;
  83. top:0px;
  84. width:1px;
  85. height:1px;
  86. }
  87. #u1854_div {
  88. border-width:0px;
  89. position:absolute;
  90. left:0px;
  91. top:0px;
  92. width:240px;
  93. height:40px;
  94. background:inherit;
  95. background-color:rgba(204, 204, 204, 1);
  96. border:none;
  97. border-radius:0px;
  98. -moz-box-shadow:none;
  99. -webkit-box-shadow:none;
  100. box-shadow:none;
  101. font-size:15px;
  102. color:#FFFFFF;
  103. }
  104. #u1854 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:39px;
  109. width:240px;
  110. height:40px;
  111. font-size:15px;
  112. color:#FFFFFF;
  113. }
  114. #u1854_div.mouseOver {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:240px;
  120. height:40px;
  121. background:inherit;
  122. background-color:rgba(3, 157, 97, 1);
  123. border:none;
  124. border-radius:0px;
  125. -moz-box-shadow:none;
  126. -webkit-box-shadow:none;
  127. box-shadow:none;
  128. font-size:15px;
  129. color:#FFFFFF;
  130. }
  131. #u1854.mouseOver {
  132. opacity:0.8;
  133. }
  134. #u1854_text {
  135. border-width:0px;
  136. position:absolute;
  137. left:2px;
  138. top:11px;
  139. width:236px;
  140. word-wrap:break-word;
  141. }
  142. #u1855_div {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:240px;
  148. height:40px;
  149. background:inherit;
  150. background-color:rgba(204, 204, 204, 1);
  151. border:none;
  152. border-radius:0px;
  153. -moz-box-shadow:none;
  154. -webkit-box-shadow:none;
  155. box-shadow:none;
  156. font-size:15px;
  157. color:#FFFFFF;
  158. }
  159. #u1855 {
  160. border-width:0px;
  161. position:absolute;
  162. left:0px;
  163. top:0px;
  164. width:240px;
  165. height:40px;
  166. font-size:15px;
  167. color:#FFFFFF;
  168. }
  169. #u1855_div.mouseOver {
  170. border-width:0px;
  171. position:absolute;
  172. left:0px;
  173. top:0px;
  174. width:240px;
  175. height:40px;
  176. background:inherit;
  177. background-color:rgba(3, 157, 97, 1);
  178. border:none;
  179. border-radius:0px;
  180. -moz-box-shadow:none;
  181. -webkit-box-shadow:none;
  182. box-shadow:none;
  183. font-size:15px;
  184. color:#FFFFFF;
  185. }
  186. #u1855.mouseOver {
  187. opacity:0.8;
  188. }
  189. #u1855_text {
  190. border-width:0px;
  191. position:absolute;
  192. left:2px;
  193. top:11px;
  194. width:236px;
  195. word-wrap:break-word;
  196. }
  197. #u1856_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:240px;
  203. height:40px;
  204. background:inherit;
  205. background-color:rgba(204, 204, 204, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-size:15px;
  212. color:#FFFFFF;
  213. }
  214. #u1856 {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:78px;
  219. width:240px;
  220. height:40px;
  221. font-size:15px;
  222. color:#FFFFFF;
  223. }
  224. #u1856_div.mouseOver {
  225. border-width:0px;
  226. position:absolute;
  227. left:0px;
  228. top:0px;
  229. width:240px;
  230. height:40px;
  231. background:inherit;
  232. background-color:rgba(3, 157, 97, 1);
  233. border:none;
  234. border-radius:0px;
  235. -moz-box-shadow:none;
  236. -webkit-box-shadow:none;
  237. box-shadow:none;
  238. font-size:15px;
  239. color:#FFFFFF;
  240. }
  241. #u1856.mouseOver {
  242. opacity:0.8;
  243. }
  244. #u1856_text {
  245. border-width:0px;
  246. position:absolute;
  247. left:2px;
  248. top:11px;
  249. width:236px;
  250. word-wrap:break-word;
  251. }
  252. #u1857_div {
  253. border-width:0px;
  254. position:absolute;
  255. left:0px;
  256. top:0px;
  257. width:240px;
  258. height:40px;
  259. background:inherit;
  260. background-color:rgba(255, 255, 255, 1);
  261. border:none;
  262. border-radius:0px;
  263. -moz-box-shadow:none;
  264. -webkit-box-shadow:none;
  265. box-shadow:none;
  266. font-size:20px;
  267. }
  268. #u1857 {
  269. border-width:0px;
  270. position:absolute;
  271. left:0px;
  272. top:55px;
  273. width:240px;
  274. height:40px;
  275. font-size:20px;
  276. }
  277. #u1857_div.mouseOver {
  278. border-width:0px;
  279. position:absolute;
  280. left:0px;
  281. top:0px;
  282. width:240px;
  283. height:40px;
  284. background:inherit;
  285. background-color:rgba(3, 157, 97, 1);
  286. border:none;
  287. border-radius:0px;
  288. -moz-box-shadow:none;
  289. -webkit-box-shadow:none;
  290. box-shadow:none;
  291. font-size:20px;
  292. }
  293. #u1857.mouseOver {
  294. }
  295. #u1857_text {
  296. border-width:0px;
  297. position:absolute;
  298. left:2px;
  299. top:8px;
  300. width:236px;
  301. word-wrap:break-word;
  302. }
  303. #u1858 {
  304. position:absolute;
  305. left:0px;
  306. top:135px;
  307. visibility:hidden;
  308. }
  309. #u1858_state0 {
  310. position:relative;
  311. left:0px;
  312. top:0px;
  313. width:240px;
  314. height:158px;
  315. background-image:none;
  316. }
  317. #u1858_state0_content {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:1px;
  323. height:1px;
  324. }
  325. #u1859_div {
  326. border-width:0px;
  327. position:absolute;
  328. left:0px;
  329. top:0px;
  330. width:240px;
  331. height:40px;
  332. background:inherit;
  333. background-color:rgba(204, 204, 204, 1);
  334. border:none;
  335. border-radius:0px;
  336. -moz-box-shadow:none;
  337. -webkit-box-shadow:none;
  338. box-shadow:none;
  339. font-size:15px;
  340. color:#FFFFFF;
  341. }
  342. #u1859 {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:78px;
  347. width:240px;
  348. height:40px;
  349. font-size:15px;
  350. color:#FFFFFF;
  351. }
  352. #u1859_div.mouseOver {
  353. border-width:0px;
  354. position:absolute;
  355. left:0px;
  356. top:0px;
  357. width:240px;
  358. height:40px;
  359. background:inherit;
  360. background-color:rgba(204, 204, 204, 1);
  361. border:none;
  362. border-radius:0px;
  363. -moz-box-shadow:none;
  364. -webkit-box-shadow:none;
  365. box-shadow:none;
  366. font-size:15px;
  367. color:#FFFFFF;
  368. }
  369. #u1859.mouseOver {
  370. opacity:0.8;
  371. }
  372. #u1859_text {
  373. border-width:0px;
  374. position:absolute;
  375. left:2px;
  376. top:11px;
  377. width:236px;
  378. word-wrap:break-word;
  379. }
  380. #u1860_div {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:240px;
  386. height:40px;
  387. background:inherit;
  388. background-color:rgba(204, 204, 204, 1);
  389. border:none;
  390. border-radius:0px;
  391. -moz-box-shadow:none;
  392. -webkit-box-shadow:none;
  393. box-shadow:none;
  394. font-size:15px;
  395. color:#FFFFFF;
  396. }
  397. #u1860 {
  398. border-width:0px;
  399. position:absolute;
  400. left:0px;
  401. top:118px;
  402. width:240px;
  403. height:40px;
  404. font-size:15px;
  405. color:#FFFFFF;
  406. }
  407. #u1860_div.mouseOver {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:240px;
  413. height:40px;
  414. background:inherit;
  415. background-color:rgba(204, 204, 204, 1);
  416. border:none;
  417. border-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. font-size:15px;
  422. color:#FFFFFF;
  423. }
  424. #u1860.mouseOver {
  425. opacity:0.8;
  426. }
  427. #u1860_text {
  428. border-width:0px;
  429. position:absolute;
  430. left:2px;
  431. top:11px;
  432. width:236px;
  433. word-wrap:break-word;
  434. }
  435. #u1861_div {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:240px;
  441. height:40px;
  442. background:inherit;
  443. background-color:rgba(204, 204, 204, 1);
  444. border:none;
  445. border-radius:0px;
  446. -moz-box-shadow:none;
  447. -webkit-box-shadow:none;
  448. box-shadow:none;
  449. font-size:15px;
  450. color:#FFFFFF;
  451. }
  452. #u1861 {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:240px;
  458. height:40px;
  459. font-size:15px;
  460. color:#FFFFFF;
  461. }
  462. #u1861_div.mouseOver {
  463. border-width:0px;
  464. position:absolute;
  465. left:0px;
  466. top:0px;
  467. width:240px;
  468. height:40px;
  469. background:inherit;
  470. background-color:rgba(204, 204, 204, 1);
  471. border:none;
  472. border-radius:0px;
  473. -moz-box-shadow:none;
  474. -webkit-box-shadow:none;
  475. box-shadow:none;
  476. font-size:15px;
  477. color:#FFFFFF;
  478. }
  479. #u1861.mouseOver {
  480. opacity:0.8;
  481. }
  482. #u1861_text {
  483. border-width:0px;
  484. position:absolute;
  485. left:2px;
  486. top:11px;
  487. width:236px;
  488. word-wrap:break-word;
  489. }
  490. #u1862_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:240px;
  496. height:40px;
  497. background:inherit;
  498. background-color:rgba(204, 204, 204, 1);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-size:15px;
  505. color:#FFFFFF;
  506. }
  507. #u1862 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:39px;
  512. width:240px;
  513. height:40px;
  514. font-size:15px;
  515. color:#FFFFFF;
  516. }
  517. #u1862_div.mouseOver {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:240px;
  523. height:40px;
  524. background:inherit;
  525. background-color:rgba(204, 204, 204, 1);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-size:15px;
  532. color:#FFFFFF;
  533. }
  534. #u1862.mouseOver {
  535. opacity:0.8;
  536. }
  537. #u1862_text {
  538. border-width:0px;
  539. position:absolute;
  540. left:2px;
  541. top:11px;
  542. width:236px;
  543. word-wrap:break-word;
  544. }
  545. #u1863 {
  546. position:absolute;
  547. left:0px;
  548. top:215px;
  549. visibility:hidden;
  550. }
  551. #u1863_state0 {
  552. position:relative;
  553. left:0px;
  554. top:0px;
  555. width:240px;
  556. height:79px;
  557. background-image:none;
  558. }
  559. #u1863_state0_content {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:1px;
  565. height:1px;
  566. }
  567. #u1864_div {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:240px;
  573. height:40px;
  574. background:inherit;
  575. background-color:rgba(204, 204, 204, 1);
  576. border:none;
  577. border-radius:0px;
  578. -moz-box-shadow:none;
  579. -webkit-box-shadow:none;
  580. box-shadow:none;
  581. font-size:15px;
  582. color:#FFFFFF;
  583. }
  584. #u1864 {
  585. border-width:0px;
  586. position:absolute;
  587. left:0px;
  588. top:0px;
  589. width:240px;
  590. height:40px;
  591. font-size:15px;
  592. color:#FFFFFF;
  593. }
  594. #u1864_div.mouseOver {
  595. border-width:0px;
  596. position:absolute;
  597. left:0px;
  598. top:0px;
  599. width:240px;
  600. height:40px;
  601. background:inherit;
  602. background-color:rgba(204, 204, 204, 1);
  603. border:none;
  604. border-radius:0px;
  605. -moz-box-shadow:none;
  606. -webkit-box-shadow:none;
  607. box-shadow:none;
  608. font-size:15px;
  609. color:#FFFFFF;
  610. }
  611. #u1864.mouseOver {
  612. opacity:0.8;
  613. }
  614. #u1864_text {
  615. border-width:0px;
  616. position:absolute;
  617. left:2px;
  618. top:11px;
  619. width:236px;
  620. word-wrap:break-word;
  621. }
  622. #u1865_div {
  623. border-width:0px;
  624. position:absolute;
  625. left:0px;
  626. top:0px;
  627. width:240px;
  628. height:40px;
  629. background:inherit;
  630. background-color:rgba(204, 204, 204, 1);
  631. border:none;
  632. border-radius:0px;
  633. -moz-box-shadow:none;
  634. -webkit-box-shadow:none;
  635. box-shadow:none;
  636. font-size:15px;
  637. color:#FFFFFF;
  638. }
  639. #u1865 {
  640. border-width:0px;
  641. position:absolute;
  642. left:0px;
  643. top:39px;
  644. width:240px;
  645. height:40px;
  646. font-size:15px;
  647. color:#FFFFFF;
  648. }
  649. #u1865_div.mouseOver {
  650. border-width:0px;
  651. position:absolute;
  652. left:0px;
  653. top:0px;
  654. width:240px;
  655. height:40px;
  656. background:inherit;
  657. background-color:rgba(204, 204, 204, 1);
  658. border:none;
  659. border-radius:0px;
  660. -moz-box-shadow:none;
  661. -webkit-box-shadow:none;
  662. box-shadow:none;
  663. font-size:15px;
  664. color:#FFFFFF;
  665. }
  666. #u1865.mouseOver {
  667. opacity:0.8;
  668. }
  669. #u1865_text {
  670. border-width:0px;
  671. position:absolute;
  672. left:2px;
  673. top:11px;
  674. width:236px;
  675. word-wrap:break-word;
  676. }
  677. #u1866 {
  678. position:absolute;
  679. left:0px;
  680. top:295px;
  681. visibility:hidden;
  682. }
  683. #u1866_state0 {
  684. position:relative;
  685. left:0px;
  686. top:0px;
  687. width:240px;
  688. height:197px;
  689. background-image:none;
  690. }
  691. #u1866_state0_content {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:1px;
  697. height:1px;
  698. }
  699. #u1867_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:240px;
  705. height:40px;
  706. background:inherit;
  707. background-color:rgba(204, 204, 204, 1);
  708. border:none;
  709. border-radius:0px;
  710. -moz-box-shadow:none;
  711. -webkit-box-shadow:none;
  712. box-shadow:none;
  713. font-size:15px;
  714. color:#FFFFFF;
  715. }
  716. #u1867 {
  717. border-width:0px;
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:240px;
  722. height:40px;
  723. font-size:15px;
  724. color:#FFFFFF;
  725. }
  726. #u1867_div.mouseOver {
  727. border-width:0px;
  728. position:absolute;
  729. left:0px;
  730. top:0px;
  731. width:240px;
  732. height:40px;
  733. background:inherit;
  734. background-color:rgba(3, 157, 97, 1);
  735. border:none;
  736. border-radius:0px;
  737. -moz-box-shadow:none;
  738. -webkit-box-shadow:none;
  739. box-shadow:none;
  740. font-size:15px;
  741. color:#FFFFFF;
  742. }
  743. #u1867.mouseOver {
  744. opacity:0.8;
  745. }
  746. #u1867_text {
  747. border-width:0px;
  748. position:absolute;
  749. left:2px;
  750. top:11px;
  751. width:236px;
  752. word-wrap:break-word;
  753. }
  754. #u1868_div {
  755. border-width:0px;
  756. position:absolute;
  757. left:0px;
  758. top:0px;
  759. width:240px;
  760. height:40px;
  761. background:inherit;
  762. background-color:rgba(204, 204, 204, 1);
  763. border:none;
  764. border-radius:0px;
  765. -moz-box-shadow:none;
  766. -webkit-box-shadow:none;
  767. box-shadow:none;
  768. font-size:15px;
  769. color:#FFFFFF;
  770. }
  771. #u1868 {
  772. border-width:0px;
  773. position:absolute;
  774. left:0px;
  775. top:39px;
  776. width:240px;
  777. height:40px;
  778. font-size:15px;
  779. color:#FFFFFF;
  780. }
  781. #u1868_div.mouseOver {
  782. border-width:0px;
  783. position:absolute;
  784. left:0px;
  785. top:0px;
  786. width:240px;
  787. height:40px;
  788. background:inherit;
  789. background-color:rgba(3, 157, 97, 1);
  790. border:none;
  791. border-radius:0px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. font-size:15px;
  796. color:#FFFFFF;
  797. }
  798. #u1868.mouseOver {
  799. opacity:0.8;
  800. }
  801. #u1868_text {
  802. border-width:0px;
  803. position:absolute;
  804. left:2px;
  805. top:11px;
  806. width:236px;
  807. word-wrap:break-word;
  808. }
  809. #u1869_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:240px;
  815. height:40px;
  816. background:inherit;
  817. background-color:rgba(204, 204, 204, 1);
  818. border:none;
  819. border-radius:0px;
  820. -moz-box-shadow:none;
  821. -webkit-box-shadow:none;
  822. box-shadow:none;
  823. font-size:15px;
  824. color:#FFFFFF;
  825. }
  826. #u1869 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:78px;
  831. width:240px;
  832. height:40px;
  833. font-size:15px;
  834. color:#FFFFFF;
  835. }
  836. #u1869_div.mouseOver {
  837. border-width:0px;
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:240px;
  842. height:40px;
  843. background:inherit;
  844. background-color:rgba(3, 157, 97, 1);
  845. border:none;
  846. border-radius:0px;
  847. -moz-box-shadow:none;
  848. -webkit-box-shadow:none;
  849. box-shadow:none;
  850. font-size:15px;
  851. color:#FFFFFF;
  852. }
  853. #u1869.mouseOver {
  854. opacity:0.8;
  855. }
  856. #u1869_text {
  857. border-width:0px;
  858. position:absolute;
  859. left:2px;
  860. top:11px;
  861. width:236px;
  862. word-wrap:break-word;
  863. }
  864. #u1870_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:240px;
  870. height:40px;
  871. background:inherit;
  872. background-color:rgba(204, 204, 204, 1);
  873. border:none;
  874. border-radius:0px;
  875. -moz-box-shadow:none;
  876. -webkit-box-shadow:none;
  877. box-shadow:none;
  878. font-size:15px;
  879. color:#FFFFFF;
  880. }
  881. #u1870 {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:118px;
  886. width:240px;
  887. height:40px;
  888. font-size:15px;
  889. color:#FFFFFF;
  890. }
  891. #u1870_div.mouseOver {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:240px;
  897. height:40px;
  898. background:inherit;
  899. background-color:rgba(3, 157, 97, 1);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. font-size:15px;
  906. color:#FFFFFF;
  907. }
  908. #u1870.mouseOver {
  909. opacity:0.8;
  910. }
  911. #u1870_text {
  912. border-width:0px;
  913. position:absolute;
  914. left:2px;
  915. top:11px;
  916. width:236px;
  917. word-wrap:break-word;
  918. }
  919. #u1871_div {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:240px;
  925. height:40px;
  926. background:inherit;
  927. background-color:rgba(204, 204, 204, 1);
  928. border:none;
  929. border-radius:0px;
  930. -moz-box-shadow:none;
  931. -webkit-box-shadow:none;
  932. box-shadow:none;
  933. font-size:15px;
  934. color:#FFFFFF;
  935. }
  936. #u1871 {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:157px;
  941. width:240px;
  942. height:40px;
  943. font-size:15px;
  944. color:#FFFFFF;
  945. }
  946. #u1871_div.mouseOver {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:240px;
  952. height:40px;
  953. background:inherit;
  954. background-color:rgba(3, 157, 97, 1);
  955. border:none;
  956. border-radius:0px;
  957. -moz-box-shadow:none;
  958. -webkit-box-shadow:none;
  959. box-shadow:none;
  960. font-size:15px;
  961. color:#FFFFFF;
  962. }
  963. #u1871.mouseOver {
  964. opacity:0.8;
  965. }
  966. #u1871_text {
  967. border-width:0px;
  968. position:absolute;
  969. left:2px;
  970. top:11px;
  971. width:236px;
  972. word-wrap:break-word;
  973. }
  974. #u1872_div {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:240px;
  980. height:40px;
  981. background:inherit;
  982. background-color:rgba(255, 255, 255, 1);
  983. border:none;
  984. border-radius:0px;
  985. -moz-box-shadow:none;
  986. -webkit-box-shadow:none;
  987. box-shadow:none;
  988. font-size:20px;
  989. }
  990. #u1872 {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:215px;
  995. width:240px;
  996. height:40px;
  997. font-size:20px;
  998. }
  999. #u1872_div.mouseOver {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:0px;
  1003. top:0px;
  1004. width:240px;
  1005. height:40px;
  1006. background:inherit;
  1007. background-color:rgba(3, 157, 97, 1);
  1008. border:none;
  1009. border-radius:0px;
  1010. -moz-box-shadow:none;
  1011. -webkit-box-shadow:none;
  1012. box-shadow:none;
  1013. font-size:20px;
  1014. }
  1015. #u1872.mouseOver {
  1016. }
  1017. #u1872_text {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:2px;
  1021. top:8px;
  1022. width:236px;
  1023. word-wrap:break-word;
  1024. }
  1025. #u1873_img {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:25px;
  1031. height:25px;
  1032. }
  1033. #u1873 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:46px;
  1037. top:225px;
  1038. width:25px;
  1039. height:25px;
  1040. }
  1041. #u1873_text {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:0px;
  1045. top:0px;
  1046. width:0px;
  1047. visibility:hidden;
  1048. word-wrap:break-word;
  1049. }
  1050. #u1874 {
  1051. position:absolute;
  1052. left:0px;
  1053. top:255px;
  1054. visibility:hidden;
  1055. }
  1056. #u1874_state0 {
  1057. position:relative;
  1058. left:0px;
  1059. top:0px;
  1060. width:240px;
  1061. height:158px;
  1062. background-image:none;
  1063. }
  1064. #u1874_state0_content {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:0px;
  1068. top:0px;
  1069. width:1px;
  1070. height:1px;
  1071. }
  1072. #u1875_div {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:240px;
  1078. height:40px;
  1079. background:inherit;
  1080. background-color:rgba(204, 204, 204, 1);
  1081. border:none;
  1082. border-radius:0px;
  1083. -moz-box-shadow:none;
  1084. -webkit-box-shadow:none;
  1085. box-shadow:none;
  1086. font-size:15px;
  1087. color:#FFFFFF;
  1088. }
  1089. #u1875 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:118px;
  1094. width:240px;
  1095. height:40px;
  1096. font-size:15px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u1875_div.mouseOver {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:240px;
  1105. height:40px;
  1106. background:inherit;
  1107. background-color:rgba(204, 204, 204, 1);
  1108. border:none;
  1109. border-radius:0px;
  1110. -moz-box-shadow:none;
  1111. -webkit-box-shadow:none;
  1112. box-shadow:none;
  1113. font-size:15px;
  1114. color:#FFFFFF;
  1115. }
  1116. #u1875.mouseOver {
  1117. opacity:0.8;
  1118. }
  1119. #u1875_text {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:2px;
  1123. top:11px;
  1124. width:236px;
  1125. word-wrap:break-word;
  1126. }
  1127. #u1876_div {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:0px;
  1131. top:0px;
  1132. width:240px;
  1133. height:40px;
  1134. background:inherit;
  1135. background-color:rgba(204, 204, 204, 1);
  1136. border:none;
  1137. border-radius:0px;
  1138. -moz-box-shadow:none;
  1139. -webkit-box-shadow:none;
  1140. box-shadow:none;
  1141. font-size:15px;
  1142. color:#FFFFFF;
  1143. }
  1144. #u1876 {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:0px;
  1148. top:78px;
  1149. width:240px;
  1150. height:40px;
  1151. font-size:15px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u1876_div.mouseOver {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:240px;
  1160. height:40px;
  1161. background:inherit;
  1162. background-color:rgba(204, 204, 204, 1);
  1163. border:none;
  1164. border-radius:0px;
  1165. -moz-box-shadow:none;
  1166. -webkit-box-shadow:none;
  1167. box-shadow:none;
  1168. font-size:15px;
  1169. color:#FFFFFF;
  1170. }
  1171. #u1876.mouseOver {
  1172. opacity:0.8;
  1173. }
  1174. #u1876_text {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:2px;
  1178. top:11px;
  1179. width:236px;
  1180. word-wrap:break-word;
  1181. }
  1182. #u1877_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:240px;
  1188. height:40px;
  1189. background:inherit;
  1190. background-color:rgba(204, 204, 204, 1);
  1191. border:none;
  1192. border-radius:0px;
  1193. -moz-box-shadow:none;
  1194. -webkit-box-shadow:none;
  1195. box-shadow:none;
  1196. font-size:15px;
  1197. color:#FFFFFF;
  1198. }
  1199. #u1877 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:0px;
  1203. top:39px;
  1204. width:240px;
  1205. height:40px;
  1206. font-size:15px;
  1207. color:#FFFFFF;
  1208. }
  1209. #u1877_div.mouseOver {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:240px;
  1215. height:40px;
  1216. background:inherit;
  1217. background-color:rgba(204, 204, 204, 1);
  1218. border:none;
  1219. border-radius:0px;
  1220. -moz-box-shadow:none;
  1221. -webkit-box-shadow:none;
  1222. box-shadow:none;
  1223. font-size:15px;
  1224. color:#FFFFFF;
  1225. }
  1226. #u1877.mouseOver {
  1227. opacity:0.8;
  1228. }
  1229. #u1877_text {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:2px;
  1233. top:11px;
  1234. width:236px;
  1235. word-wrap:break-word;
  1236. }
  1237. #u1878_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:240px;
  1243. height:40px;
  1244. background:inherit;
  1245. background-color:rgba(204, 204, 204, 1);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. font-size:15px;
  1252. color:#FFFFFF;
  1253. }
  1254. #u1878 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:240px;
  1260. height:40px;
  1261. font-size:15px;
  1262. color:#FFFFFF;
  1263. }
  1264. #u1878_div.mouseOver {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:240px;
  1270. height:40px;
  1271. background:inherit;
  1272. background-color:rgba(204, 204, 204, 1);
  1273. border:none;
  1274. border-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-size:15px;
  1279. color:#FFFFFF;
  1280. }
  1281. #u1878.mouseOver {
  1282. opacity:0.8;
  1283. }
  1284. #u1878_text {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:2px;
  1288. top:11px;
  1289. width:236px;
  1290. word-wrap:break-word;
  1291. }
  1292. #u1879_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:16px;
  1298. height:16px;
  1299. }
  1300. #u1879 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:210px;
  1304. top:68px;
  1305. width:15px;
  1306. height:15px;
  1307. -webkit-transform:rotate(225deg);
  1308. -moz-transform:rotate(225deg);
  1309. -ms-transform:rotate(225deg);
  1310. transform:rotate(225deg);
  1311. }
  1312. #u1879_text {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:0px;
  1318. visibility:hidden;
  1319. word-wrap:break-word;
  1320. }
  1321. #u1880_img {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:16px;
  1327. height:16px;
  1328. }
  1329. #u1880 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:210px;
  1333. top:228px;
  1334. width:15px;
  1335. height:15px;
  1336. -webkit-transform:rotate(135deg);
  1337. -moz-transform:rotate(135deg);
  1338. -ms-transform:rotate(135deg);
  1339. transform:rotate(135deg);
  1340. }
  1341. #u1880_text {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:0px;
  1347. visibility:hidden;
  1348. word-wrap:break-word;
  1349. }
  1350. #u1881 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:0px;
  1354. top:0px;
  1355. width:0px;
  1356. height:0px;
  1357. }
  1358. #u1882_img {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:31px;
  1364. height:25px;
  1365. }
  1366. #u1882 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:199px;
  1370. top:143px;
  1371. width:31px;
  1372. height:25px;
  1373. }
  1374. #u1882_text {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:0px;
  1380. visibility:hidden;
  1381. word-wrap:break-word;
  1382. }
  1383. #u1883_img {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:16px;
  1389. height:16px;
  1390. }
  1391. #u1883 {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:207px;
  1395. top:146px;
  1396. width:15px;
  1397. height:15px;
  1398. -webkit-transform:rotate(45deg);
  1399. -moz-transform:rotate(45deg);
  1400. -ms-transform:rotate(45deg);
  1401. transform:rotate(45deg);
  1402. }
  1403. #u1883_text {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:0px;
  1409. visibility:hidden;
  1410. word-wrap:break-word;
  1411. }
  1412. #u1884 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:0px;
  1416. top:0px;
  1417. width:0px;
  1418. height:0px;
  1419. }
  1420. #u1885_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:31px;
  1426. height:25px;
  1427. }
  1428. #u1885 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:199px;
  1432. top:181px;
  1433. width:31px;
  1434. height:25px;
  1435. }
  1436. #u1885_text {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:0px;
  1442. visibility:hidden;
  1443. word-wrap:break-word;
  1444. }
  1445. #u1886_img {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:0px;
  1449. top:0px;
  1450. width:16px;
  1451. height:16px;
  1452. }
  1453. #u1886 {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:207px;
  1457. top:184px;
  1458. width:15px;
  1459. height:15px;
  1460. -webkit-transform:rotate(45deg);
  1461. -moz-transform:rotate(45deg);
  1462. -ms-transform:rotate(45deg);
  1463. transform:rotate(45deg);
  1464. }
  1465. #u1886_text {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:0px;
  1471. visibility:hidden;
  1472. word-wrap:break-word;
  1473. }
  1474. #u1887 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:0px;
  1480. height:0px;
  1481. }
  1482. #u1888_img {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:31px;
  1488. height:25px;
  1489. }
  1490. #u1888 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:199px;
  1494. top:221px;
  1495. width:31px;
  1496. height:25px;
  1497. }
  1498. #u1888_text {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:0px;
  1504. visibility:hidden;
  1505. word-wrap:break-word;
  1506. }
  1507. #u1889_img {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:16px;
  1513. height:16px;
  1514. }
  1515. #u1889 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:207px;
  1519. top:224px;
  1520. width:15px;
  1521. height:15px;
  1522. -webkit-transform:rotate(45deg);
  1523. -moz-transform:rotate(45deg);
  1524. -ms-transform:rotate(45deg);
  1525. transform:rotate(45deg);
  1526. }
  1527. #u1889_text {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:0px;
  1531. top:0px;
  1532. width:0px;
  1533. visibility:hidden;
  1534. word-wrap:break-word;
  1535. }
  1536. #u1890_img {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:0px;
  1540. top:0px;
  1541. width:243px;
  1542. height:57px;
  1543. }
  1544. #u1890 {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:-3px;
  1548. top:0px;
  1549. width:243px;
  1550. height:57px;
  1551. font-size:36px;
  1552. text-align:left;
  1553. }
  1554. #u1890_text {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:2px;
  1558. top:8px;
  1559. width:239px;
  1560. word-wrap:break-word;
  1561. }
  1562. #u1891_img {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:25px;
  1568. height:25px;
  1569. }
  1570. #u1891 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:49px;
  1574. top:66px;
  1575. width:25px;
  1576. height:25px;
  1577. }
  1578. #u1891_text {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:0px;
  1584. visibility:hidden;
  1585. word-wrap:break-word;
  1586. }
  1587. #u1892_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:240px;
  1593. height:40px;
  1594. background:inherit;
  1595. background-color:rgba(255, 255, 255, 1);
  1596. border:none;
  1597. border-radius:0px;
  1598. -moz-box-shadow:none;
  1599. -webkit-box-shadow:none;
  1600. box-shadow:none;
  1601. font-size:20px;
  1602. }
  1603. #u1892 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:95px;
  1608. width:240px;
  1609. height:40px;
  1610. font-size:20px;
  1611. }
  1612. #u1892_div.mouseOver {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:240px;
  1618. height:40px;
  1619. background:inherit;
  1620. background-color:rgba(3, 157, 97, 1);
  1621. border:none;
  1622. border-radius:0px;
  1623. -moz-box-shadow:none;
  1624. -webkit-box-shadow:none;
  1625. box-shadow:none;
  1626. font-size:20px;
  1627. }
  1628. #u1892.mouseOver {
  1629. }
  1630. #u1892_text {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:2px;
  1634. top:8px;
  1635. width:236px;
  1636. word-wrap:break-word;
  1637. }
  1638. #u1893_img {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:25px;
  1644. height:25px;
  1645. }
  1646. #u1893 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:46px;
  1650. top:101px;
  1651. width:25px;
  1652. height:25px;
  1653. }
  1654. #u1893_text {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:0px;
  1660. visibility:hidden;
  1661. word-wrap:break-word;
  1662. }
  1663. #u1894_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:240px;
  1669. height:40px;
  1670. background:inherit;
  1671. background-color:rgba(255, 255, 255, 1);
  1672. border:none;
  1673. border-radius:0px;
  1674. -moz-box-shadow:none;
  1675. -webkit-box-shadow:none;
  1676. box-shadow:none;
  1677. font-size:20px;
  1678. }
  1679. #u1894 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:135px;
  1684. width:240px;
  1685. height:40px;
  1686. font-size:20px;
  1687. }
  1688. #u1894_div.mouseOver {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:240px;
  1694. height:40px;
  1695. background:inherit;
  1696. background-color:rgba(3, 157, 97, 1);
  1697. border:none;
  1698. border-radius:0px;
  1699. -moz-box-shadow:none;
  1700. -webkit-box-shadow:none;
  1701. box-shadow:none;
  1702. font-size:20px;
  1703. }
  1704. #u1894.mouseOver {
  1705. }
  1706. #u1894_text {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:2px;
  1710. top:8px;
  1711. width:236px;
  1712. word-wrap:break-word;
  1713. }
  1714. #u1895_img {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:25px;
  1720. height:25px;
  1721. }
  1722. #u1895 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:46px;
  1726. top:140px;
  1727. width:25px;
  1728. height:25px;
  1729. }
  1730. #u1895_text {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:0px;
  1736. visibility:hidden;
  1737. word-wrap:break-word;
  1738. }
  1739. #u1896_div {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:240px;
  1745. height:40px;
  1746. background:inherit;
  1747. background-color:rgba(255, 255, 255, 1);
  1748. border:none;
  1749. border-radius:0px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. font-size:20px;
  1754. }
  1755. #u1896 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:175px;
  1760. width:240px;
  1761. height:40px;
  1762. font-size:20px;
  1763. }
  1764. #u1896_div.mouseOver {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:240px;
  1770. height:40px;
  1771. background:inherit;
  1772. background-color:rgba(3, 157, 97, 1);
  1773. border:none;
  1774. border-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-size:20px;
  1779. }
  1780. #u1896.mouseOver {
  1781. }
  1782. #u1896_text {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:2px;
  1786. top:8px;
  1787. width:236px;
  1788. word-wrap:break-word;
  1789. }
  1790. #u1897_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:25px;
  1796. height:25px;
  1797. }
  1798. #u1897 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:46px;
  1802. top:183px;
  1803. width:25px;
  1804. height:25px;
  1805. }
  1806. #u1897_text {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:0px;
  1812. visibility:hidden;
  1813. word-wrap:break-word;
  1814. }
  1815. #u1898 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:0px;
  1821. height:0px;
  1822. }
  1823. #u1899_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:31px;
  1829. height:25px;
  1830. }
  1831. #u1899 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:199px;
  1835. top:104px;
  1836. width:31px;
  1837. height:25px;
  1838. }
  1839. #u1899_text {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:0px;
  1845. visibility:hidden;
  1846. word-wrap:break-word;
  1847. }
  1848. #u1900_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:16px;
  1854. height:16px;
  1855. }
  1856. #u1900 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:207px;
  1860. top:107px;
  1861. width:15px;
  1862. height:15px;
  1863. -webkit-transform:rotate(45deg);
  1864. -moz-transform:rotate(45deg);
  1865. -ms-transform:rotate(45deg);
  1866. transform:rotate(45deg);
  1867. }
  1868. #u1900_text {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:0px;
  1874. visibility:hidden;
  1875. word-wrap:break-word;
  1876. }
  1877. #u1901_img {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:16px;
  1883. height:16px;
  1884. }
  1885. #u1901 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:210px;
  1889. top:188px;
  1890. width:15px;
  1891. height:15px;
  1892. -webkit-transform:rotate(135deg);
  1893. -moz-transform:rotate(135deg);
  1894. -ms-transform:rotate(135deg);
  1895. transform:rotate(135deg);
  1896. }
  1897. #u1901_text {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:0px;
  1903. visibility:hidden;
  1904. word-wrap:break-word;
  1905. }
  1906. #u1902_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:16px;
  1912. height:16px;
  1913. }
  1914. #u1902 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:210px;
  1918. top:148px;
  1919. width:15px;
  1920. height:15px;
  1921. -webkit-transform:rotate(135deg);
  1922. -moz-transform:rotate(135deg);
  1923. -ms-transform:rotate(135deg);
  1924. transform:rotate(135deg);
  1925. }
  1926. #u1902_text {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:0px;
  1932. visibility:hidden;
  1933. word-wrap:break-word;
  1934. }
  1935. #u1903_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:240px;
  1941. height:40px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 1);
  1944. border:none;
  1945. border-radius:0px;
  1946. -moz-box-shadow:none;
  1947. -webkit-box-shadow:none;
  1948. box-shadow:none;
  1949. font-size:20px;
  1950. }
  1951. #u1903 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:255px;
  1956. width:240px;
  1957. height:40px;
  1958. font-size:20px;
  1959. }
  1960. #u1903_div.mouseOver {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:240px;
  1966. height:40px;
  1967. background:inherit;
  1968. background-color:rgba(3, 157, 97, 1);
  1969. border:none;
  1970. border-radius:0px;
  1971. -moz-box-shadow:none;
  1972. -webkit-box-shadow:none;
  1973. box-shadow:none;
  1974. font-size:20px;
  1975. }
  1976. #u1903.mouseOver {
  1977. }
  1978. #u1903_text {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:2px;
  1982. top:8px;
  1983. width:236px;
  1984. word-wrap:break-word;
  1985. }
  1986. #u1904_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:25px;
  1992. height:25px;
  1993. }
  1994. #u1904 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:46px;
  1998. top:264px;
  1999. width:25px;
  2000. height:25px;
  2001. }
  2002. #u1904_text {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:0px;
  2008. visibility:hidden;
  2009. word-wrap:break-word;
  2010. }
  2011. #u1905_img {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:16px;
  2017. height:16px;
  2018. }
  2019. #u1905 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:210px;
  2023. top:108px;
  2024. width:15px;
  2025. height:15px;
  2026. -webkit-transform:rotate(135deg);
  2027. -moz-transform:rotate(135deg);
  2028. -ms-transform:rotate(135deg);
  2029. transform:rotate(135deg);
  2030. }
  2031. #u1905_text {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:0px;
  2037. visibility:hidden;
  2038. word-wrap:break-word;
  2039. }
  2040. #u1906_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:16px;
  2046. height:16px;
  2047. }
  2048. #u1906 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:210px;
  2052. top:267px;
  2053. width:15px;
  2054. height:15px;
  2055. -webkit-transform:rotate(135deg);
  2056. -moz-transform:rotate(135deg);
  2057. -ms-transform:rotate(135deg);
  2058. transform:rotate(135deg);
  2059. }
  2060. #u1906_text {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:0px;
  2066. visibility:hidden;
  2067. word-wrap:break-word;
  2068. }
  2069. #u1907 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:0px;
  2075. height:0px;
  2076. }
  2077. #u1908_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:31px;
  2083. height:25px;
  2084. }
  2085. #u1908 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:199px;
  2089. top:264px;
  2090. width:31px;
  2091. height:25px;
  2092. }
  2093. #u1908_text {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:0px;
  2099. visibility:hidden;
  2100. word-wrap:break-word;
  2101. }
  2102. #u1909_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:16px;
  2108. height:16px;
  2109. }
  2110. #u1909 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:207px;
  2114. top:267px;
  2115. width:15px;
  2116. height:15px;
  2117. -webkit-transform:rotate(45deg);
  2118. -moz-transform:rotate(45deg);
  2119. -ms-transform:rotate(45deg);
  2120. transform:rotate(45deg);
  2121. }
  2122. #u1909_text {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:0px;
  2128. visibility:hidden;
  2129. word-wrap:break-word;
  2130. }
  2131. #u1910_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:1134px;
  2137. height:872px;
  2138. }
  2139. #u1910 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:263px;
  2143. top:49px;
  2144. width:1134px;
  2145. height:872px;
  2146. }
  2147. #u1910_text {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:0px;
  2153. visibility:hidden;
  2154. word-wrap:break-word;
  2155. }
  2156. #u1911_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:1157px;
  2162. height:61px;
  2163. }
  2164. #u1911 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:240px;
  2168. top:0px;
  2169. width:1157px;
  2170. height:61px;
  2171. }
  2172. #u1911_text {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:2px;
  2176. top:23px;
  2177. width:1153px;
  2178. word-wrap:break-word;
  2179. }
  2180. #u1912_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:61px;
  2186. height:61px;
  2187. }
  2188. #u1912 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:1241px;
  2192. top:-3px;
  2193. width:61px;
  2194. height:61px;
  2195. }
  2196. #u1912_img.mouseOver {
  2197. }
  2198. #u1912.mouseOver {
  2199. }
  2200. #u1912_text {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:2px;
  2204. top:23px;
  2205. width:57px;
  2206. word-wrap:break-word;
  2207. }
  2208. #u1913_img {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:1134px;
  2214. height:54px;
  2215. }
  2216. #u1913 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:263px;
  2220. top:49px;
  2221. width:1134px;
  2222. height:54px;
  2223. font-size:20px;
  2224. }
  2225. #u1913_text {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. visibility:hidden;
  2232. word-wrap:break-word;
  2233. }
  2234. #u1914_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:30px;
  2240. height:30px;
  2241. background:inherit;
  2242. background-color:rgba(255, 255, 255, 0);
  2243. border:none;
  2244. border-radius:50px;
  2245. -moz-box-shadow:none;
  2246. -webkit-box-shadow:none;
  2247. box-shadow:none;
  2248. font-family:'FontAwesome';
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:28px;
  2252. color:#CCCCCC;
  2253. line-height:20px;
  2254. }
  2255. #u1914 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:1042px;
  2259. top:16px;
  2260. width:30px;
  2261. height:30px;
  2262. font-family:'FontAwesome';
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:28px;
  2266. color:#CCCCCC;
  2267. line-height:20px;
  2268. }
  2269. #u1914_text {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:5px;
  2274. width:30px;
  2275. word-wrap:break-word;
  2276. }
  2277. #u1915_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:210px;
  2283. height:57px;
  2284. }
  2285. #u1915 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:678px;
  2289. top:48px;
  2290. width:210px;
  2291. height:57px;
  2292. font-size:20px;
  2293. }
  2294. #u1915_text {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:2px;
  2298. top:17px;
  2299. width:206px;
  2300. word-wrap:break-word;
  2301. }
  2302. #u1916 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:0px;
  2308. height:0px;
  2309. }
  2310. #u1917 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:0px;
  2314. top:0px;
  2315. width:0px;
  2316. height:0px;
  2317. }
  2318. #u1918_div {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:270px;
  2324. height:102px;
  2325. background:inherit;
  2326. background-color:rgba(255, 255, 255, 1);
  2327. box-sizing:border-box;
  2328. border-width:1px;
  2329. border-style:solid;
  2330. border-color:rgba(233, 233, 233, 1);
  2331. border-radius:2px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'微软雅黑';
  2336. font-weight:400;
  2337. font-style:normal;
  2338. text-align:left;
  2339. }
  2340. #u1918 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:323px;
  2344. top:1145px;
  2345. width:270px;
  2346. height:102px;
  2347. font-family:'微软雅黑';
  2348. font-weight:400;
  2349. font-style:normal;
  2350. text-align:left;
  2351. }
  2352. #u1918_text {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:100px;
  2356. top:20px;
  2357. width:154px;
  2358. word-wrap:break-word;
  2359. }
  2360. #u1919_img {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:56px;
  2366. height:56px;
  2367. }
  2368. #u1919 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:347px;
  2372. top:1163px;
  2373. width:56px;
  2374. height:56px;
  2375. font-family:'微软雅黑';
  2376. font-weight:400;
  2377. font-style:normal;
  2378. }
  2379. #u1919_text {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:0px;
  2385. visibility:hidden;
  2386. word-wrap:break-word;
  2387. }
  2388. #u1920_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:57px;
  2394. height:57px;
  2395. background:inherit;
  2396. background-color:rgba(255, 255, 255, 0);
  2397. border:none;
  2398. border-radius:0px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. font-family:'FontAwesome';
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:16px;
  2406. color:rgba(153, 153, 153, 0.647058823529412);
  2407. line-height:22px;
  2408. }
  2409. #u1920 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:536px;
  2413. top:1145px;
  2414. width:57px;
  2415. height:57px;
  2416. font-family:'FontAwesome';
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:16px;
  2420. color:rgba(153, 153, 153, 0.647058823529412);
  2421. line-height:22px;
  2422. }
  2423. #u1920_text {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:2px;
  2427. top:18px;
  2428. width:53px;
  2429. word-wrap:break-word;
  2430. }
  2431. #u1921 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:0px;
  2437. height:0px;
  2438. }
  2439. #u1922_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:270px;
  2445. height:146px;
  2446. background:inherit;
  2447. background-color:rgba(255, 255, 255, 1);
  2448. box-sizing:border-box;
  2449. border-width:1px;
  2450. border-style:solid;
  2451. border-color:rgba(233, 233, 233, 1);
  2452. border-radius:2px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:'微软雅黑';
  2457. font-weight:400;
  2458. font-style:normal;
  2459. text-align:left;
  2460. }
  2461. #u1922 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:304px;
  2465. top:121px;
  2466. width:270px;
  2467. height:146px;
  2468. font-family:'微软雅黑';
  2469. font-weight:400;
  2470. font-style:normal;
  2471. text-align:left;
  2472. }
  2473. #u1922_text {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:100px;
  2477. top:24px;
  2478. width:154px;
  2479. word-wrap:break-word;
  2480. }
  2481. #u1923_div {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:216px;
  2487. height:43px;
  2488. background:inherit;
  2489. background-color:rgba(255, 255, 255, 0);
  2490. box-sizing:border-box;
  2491. border-width:1px;
  2492. border-style:solid;
  2493. border-color:rgba(233, 233, 233, 1);
  2494. border-left:0px;
  2495. border-right:0px;
  2496. border-bottom:0px;
  2497. border-radius:0px;
  2498. border-top-left-radius:0px;
  2499. border-top-right-radius:0px;
  2500. border-bottom-right-radius:0px;
  2501. border-bottom-left-radius:0px;
  2502. -moz-box-shadow:none;
  2503. -webkit-box-shadow:none;
  2504. box-shadow:none;
  2505. font-family:'微软雅黑';
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:14px;
  2509. color:rgba(0, 0, 0, 0.647058823529412);
  2510. text-align:left;
  2511. }
  2512. #u1923 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:329px;
  2516. top:224px;
  2517. width:216px;
  2518. height:43px;
  2519. font-family:'微软雅黑';
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:14px;
  2523. color:rgba(0, 0, 0, 0.647058823529412);
  2524. text-align:left;
  2525. }
  2526. #u1923_text {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:0px;
  2532. visibility:hidden;
  2533. word-wrap:break-word;
  2534. }
  2535. #u1924 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:0px;
  2541. height:0px;
  2542. }
  2543. #u1925_div {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:49px;
  2549. height:26px;
  2550. background:inherit;
  2551. background-color:rgba(255, 255, 255, 0);
  2552. border:none;
  2553. border-radius:0px;
  2554. -moz-box-shadow:none;
  2555. -webkit-box-shadow:none;
  2556. box-shadow:none;
  2557. font-family:'微软雅黑';
  2558. font-weight:400;
  2559. font-style:normal;
  2560. color:rgba(0, 0, 0, 0.427450980392157);
  2561. line-height:22px;
  2562. }
  2563. #u1925 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:335px;
  2567. top:233px;
  2568. width:49px;
  2569. height:26px;
  2570. font-family:'微软雅黑';
  2571. font-weight:400;
  2572. font-style:normal;
  2573. color:rgba(0, 0, 0, 0.427450980392157);
  2574. line-height:22px;
  2575. }
  2576. #u1925_text {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:2px;
  2580. top:2px;
  2581. width:39px;
  2582. white-space:nowrap;
  2583. }
  2584. #u1926_div {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:38px;
  2590. height:26px;
  2591. background:inherit;
  2592. background-color:rgba(255, 255, 255, 0);
  2593. border:none;
  2594. border-radius:0px;
  2595. -moz-box-shadow:none;
  2596. -webkit-box-shadow:none;
  2597. box-shadow:none;
  2598. font-family:'微软雅黑';
  2599. font-weight:400;
  2600. font-style:normal;
  2601. color:rgba(0, 0, 0, 0.647058823529412);
  2602. line-height:22px;
  2603. }
  2604. #u1926 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:392px;
  2608. top:233px;
  2609. width:38px;
  2610. height:26px;
  2611. font-family:'微软雅黑';
  2612. font-weight:400;
  2613. font-style:normal;
  2614. color:rgba(0, 0, 0, 0.647058823529412);
  2615. line-height:22px;
  2616. }
  2617. #u1926_text {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:4px;
  2621. top:2px;
  2622. width:32px;
  2623. white-space:nowrap;
  2624. }
  2625. #u1927_img {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:10px;
  2631. height:11px;
  2632. }
  2633. #u1927 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:380px;
  2637. top:241px;
  2638. width:10px;
  2639. height:11px;
  2640. font-family:'微软雅黑';
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:28px;
  2644. color:rgba(82, 196, 26, 0.647058823529412);
  2645. }
  2646. #u1927_text {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:0px;
  2652. visibility:hidden;
  2653. word-wrap:break-word;
  2654. }
  2655. #u1928 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:0px;
  2661. height:0px;
  2662. }
  2663. #u1929_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:49px;
  2669. height:26px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 0);
  2672. border:none;
  2673. border-radius:0px;
  2674. -moz-box-shadow:none;
  2675. -webkit-box-shadow:none;
  2676. box-shadow:none;
  2677. font-family:'微软雅黑';
  2678. font-weight:400;
  2679. font-style:normal;
  2680. color:rgba(0, 0, 0, 0.427450980392157);
  2681. line-height:22px;
  2682. }
  2683. #u1929 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:445px;
  2687. top:233px;
  2688. width:49px;
  2689. height:26px;
  2690. font-family:'微软雅黑';
  2691. font-weight:400;
  2692. font-style:normal;
  2693. color:rgba(0, 0, 0, 0.427450980392157);
  2694. line-height:22px;
  2695. }
  2696. #u1929_text {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:2px;
  2700. top:2px;
  2701. width:39px;
  2702. white-space:nowrap;
  2703. }
  2704. #u1930_div {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:38px;
  2710. height:26px;
  2711. background:inherit;
  2712. background-color:rgba(255, 255, 255, 0);
  2713. border:none;
  2714. border-radius:0px;
  2715. -moz-box-shadow:none;
  2716. -webkit-box-shadow:none;
  2717. box-shadow:none;
  2718. font-family:'微软雅黑';
  2719. font-weight:400;
  2720. font-style:normal;
  2721. color:rgba(0, 0, 0, 0.647058823529412);
  2722. line-height:22px;
  2723. }
  2724. #u1930 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:506px;
  2728. top:233px;
  2729. width:38px;
  2730. height:26px;
  2731. font-family:'微软雅黑';
  2732. font-weight:400;
  2733. font-style:normal;
  2734. color:rgba(0, 0, 0, 0.647058823529412);
  2735. line-height:22px;
  2736. }
  2737. #u1930_text {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:4px;
  2741. top:2px;
  2742. width:32px;
  2743. white-space:nowrap;
  2744. }
  2745. #u1931_img {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:10px;
  2751. height:11px;
  2752. }
  2753. #u1931 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:494px;
  2757. top:241px;
  2758. width:10px;
  2759. height:11px;
  2760. -webkit-transform:rotate(180deg);
  2761. -moz-transform:rotate(180deg);
  2762. -ms-transform:rotate(180deg);
  2763. transform:rotate(180deg);
  2764. font-family:'微软雅黑';
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:28px;
  2768. color:#F5222D;
  2769. }
  2770. #u1931_text {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:0px;
  2776. visibility:hidden;
  2777. word-wrap:break-word;
  2778. }
  2779. #u1932_div {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:57px;
  2785. height:57px;
  2786. background:inherit;
  2787. background-color:rgba(255, 255, 255, 0);
  2788. border:none;
  2789. border-radius:0px;
  2790. -moz-box-shadow:none;
  2791. -webkit-box-shadow:none;
  2792. box-shadow:none;
  2793. font-family:'FontAwesome';
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:16px;
  2797. color:rgba(153, 153, 153, 0.647058823529412);
  2798. line-height:22px;
  2799. }
  2800. #u1932 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:517px;
  2804. top:121px;
  2805. width:57px;
  2806. height:57px;
  2807. font-family:'FontAwesome';
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:16px;
  2811. color:rgba(153, 153, 153, 0.647058823529412);
  2812. line-height:22px;
  2813. }
  2814. #u1932_text {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:2px;
  2818. top:18px;
  2819. width:53px;
  2820. word-wrap:break-word;
  2821. }
  2822. #u1933 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:0px;
  2828. height:0px;
  2829. }
  2830. #u1934_div {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:270px;
  2836. height:146px;
  2837. background:inherit;
  2838. background-color:rgba(255, 255, 255, 1);
  2839. box-sizing:border-box;
  2840. border-width:1px;
  2841. border-style:solid;
  2842. border-color:rgba(233, 233, 233, 1);
  2843. border-radius:2px;
  2844. -moz-box-shadow:none;
  2845. -webkit-box-shadow:none;
  2846. box-shadow:none;
  2847. font-family:'微软雅黑';
  2848. font-weight:400;
  2849. font-style:normal;
  2850. }
  2851. #u1934 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:646px;
  2855. top:121px;
  2856. width:270px;
  2857. height:146px;
  2858. font-family:'微软雅黑';
  2859. font-weight:400;
  2860. font-style:normal;
  2861. }
  2862. #u1934_text {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:0px;
  2868. visibility:hidden;
  2869. word-wrap:break-word;
  2870. }
  2871. #u1935 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:0px;
  2877. height:0px;
  2878. }
  2879. #u1936_div {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:270px;
  2885. height:68px;
  2886. background:inherit;
  2887. background-color:rgba(255, 255, 255, 0);
  2888. border:none;
  2889. border-radius:0px;
  2890. -moz-box-shadow:none;
  2891. -webkit-box-shadow:none;
  2892. box-shadow:none;
  2893. font-family:'微软雅黑';
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:30px;
  2897. color:rgba(0, 0, 0, 0.847058823529412);
  2898. text-align:left;
  2899. line-height:38px;
  2900. }
  2901. #u1936 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:646px;
  2905. top:167px;
  2906. width:270px;
  2907. height:68px;
  2908. font-family:'微软雅黑';
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:30px;
  2912. color:rgba(0, 0, 0, 0.847058823529412);
  2913. text-align:left;
  2914. line-height:38px;
  2915. }
  2916. #u1936_text {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:24px;
  2920. top:2px;
  2921. width:244px;
  2922. word-wrap:break-word;
  2923. }
  2924. #u1937_div {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:270px;
  2930. height:46px;
  2931. background:inherit;
  2932. background-color:rgba(255, 255, 255, 0);
  2933. border:none;
  2934. border-radius:0px;
  2935. -moz-box-shadow:none;
  2936. -webkit-box-shadow:none;
  2937. box-shadow:none;
  2938. font-family:'微软雅黑';
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:18px;
  2942. color:rgba(0, 0, 0, 0.427450980392157);
  2943. text-align:left;
  2944. line-height:22px;
  2945. }
  2946. #u1937 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:646px;
  2950. top:123px;
  2951. width:270px;
  2952. height:46px;
  2953. font-family:'微软雅黑';
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:18px;
  2957. color:rgba(0, 0, 0, 0.427450980392157);
  2958. text-align:left;
  2959. line-height:22px;
  2960. }
  2961. #u1937_text {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:24px;
  2965. top:20px;
  2966. width:244px;
  2967. word-wrap:break-word;
  2968. }
  2969. #u1938_div {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:57px;
  2975. height:54px;
  2976. background:inherit;
  2977. background-color:rgba(255, 255, 255, 0);
  2978. border:none;
  2979. border-radius:0px;
  2980. -moz-box-shadow:none;
  2981. -webkit-box-shadow:none;
  2982. box-shadow:none;
  2983. font-family:'FontAwesome';
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:16px;
  2987. color:rgba(153, 153, 153, 0.647058823529412);
  2988. line-height:22px;
  2989. }
  2990. #u1938 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:858px;
  2994. top:121px;
  2995. width:57px;
  2996. height:54px;
  2997. font-family:'FontAwesome';
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:16px;
  3001. color:rgba(153, 153, 153, 0.647058823529412);
  3002. line-height:22px;
  3003. }
  3004. #u1938_text {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:2px;
  3008. top:16px;
  3009. width:53px;
  3010. word-wrap:break-word;
  3011. }
  3012. #u1939 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:0px;
  3018. height:0px;
  3019. }
  3020. #u1940_div {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:49px;
  3026. height:26px;
  3027. background:inherit;
  3028. background-color:rgba(255, 255, 255, 0);
  3029. border:none;
  3030. border-radius:0px;
  3031. -moz-box-shadow:none;
  3032. -webkit-box-shadow:none;
  3033. box-shadow:none;
  3034. font-family:'微软雅黑';
  3035. font-weight:400;
  3036. font-style:normal;
  3037. color:rgba(0, 0, 0, 0.427450980392157);
  3038. line-height:22px;
  3039. }
  3040. #u1940 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:678px;
  3044. top:225px;
  3045. width:49px;
  3046. height:26px;
  3047. font-family:'微软雅黑';
  3048. font-weight:400;
  3049. font-style:normal;
  3050. color:rgba(0, 0, 0, 0.427450980392157);
  3051. line-height:22px;
  3052. }
  3053. #u1940_text {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:2px;
  3057. top:2px;
  3058. width:39px;
  3059. white-space:nowrap;
  3060. }
  3061. #u1941_div {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:38px;
  3067. height:26px;
  3068. background:inherit;
  3069. background-color:rgba(255, 255, 255, 0);
  3070. border:none;
  3071. border-radius:0px;
  3072. -moz-box-shadow:none;
  3073. -webkit-box-shadow:none;
  3074. box-shadow:none;
  3075. font-family:'微软雅黑';
  3076. font-weight:400;
  3077. font-style:normal;
  3078. color:rgba(0, 0, 0, 0.647058823529412);
  3079. line-height:22px;
  3080. }
  3081. #u1941 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:738px;
  3085. top:225px;
  3086. width:38px;
  3087. height:26px;
  3088. font-family:'微软雅黑';
  3089. font-weight:400;
  3090. font-style:normal;
  3091. color:rgba(0, 0, 0, 0.647058823529412);
  3092. line-height:22px;
  3093. }
  3094. #u1941_text {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:4px;
  3098. top:2px;
  3099. width:32px;
  3100. white-space:nowrap;
  3101. }
  3102. #u1942_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:10px;
  3108. height:10px;
  3109. }
  3110. #u1942 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:726px;
  3114. top:233px;
  3115. width:10px;
  3116. height:10px;
  3117. font-family:'微软雅黑';
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:28px;
  3121. color:rgba(82, 196, 26, 0.647058823529412);
  3122. }
  3123. #u1942_text {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:0px;
  3129. visibility:hidden;
  3130. word-wrap:break-word;
  3131. }
  3132. #u1943 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:0px;
  3138. height:0px;
  3139. }
  3140. #u1944_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:49px;
  3146. height:26px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 0);
  3149. border:none;
  3150. border-radius:0px;
  3151. -moz-box-shadow:none;
  3152. -webkit-box-shadow:none;
  3153. box-shadow:none;
  3154. font-family:'微软雅黑';
  3155. font-weight:400;
  3156. font-style:normal;
  3157. color:rgba(0, 0, 0, 0.427450980392157);
  3158. line-height:22px;
  3159. }
  3160. #u1944 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:791px;
  3164. top:225px;
  3165. width:49px;
  3166. height:26px;
  3167. font-family:'微软雅黑';
  3168. font-weight:400;
  3169. font-style:normal;
  3170. color:rgba(0, 0, 0, 0.427450980392157);
  3171. line-height:22px;
  3172. }
  3173. #u1944_text {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:2px;
  3177. top:2px;
  3178. width:39px;
  3179. white-space:nowrap;
  3180. }
  3181. #u1945_div {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:38px;
  3187. height:26px;
  3188. background:inherit;
  3189. background-color:rgba(255, 255, 255, 0);
  3190. border:none;
  3191. border-radius:0px;
  3192. -moz-box-shadow:none;
  3193. -webkit-box-shadow:none;
  3194. box-shadow:none;
  3195. font-family:'微软雅黑';
  3196. font-weight:400;
  3197. font-style:normal;
  3198. color:rgba(0, 0, 0, 0.647058823529412);
  3199. line-height:22px;
  3200. }
  3201. #u1945 {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:852px;
  3205. top:225px;
  3206. width:38px;
  3207. height:26px;
  3208. font-family:'微软雅黑';
  3209. font-weight:400;
  3210. font-style:normal;
  3211. color:rgba(0, 0, 0, 0.647058823529412);
  3212. line-height:22px;
  3213. }
  3214. #u1945_text {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:4px;
  3218. top:2px;
  3219. width:32px;
  3220. white-space:nowrap;
  3221. }
  3222. #u1946_img {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:10px;
  3228. height:10px;
  3229. }
  3230. #u1946 {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:840px;
  3234. top:233px;
  3235. width:10px;
  3236. height:10px;
  3237. -webkit-transform:rotate(180deg);
  3238. -moz-transform:rotate(180deg);
  3239. -ms-transform:rotate(180deg);
  3240. transform:rotate(180deg);
  3241. font-family:'微软雅黑';
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:28px;
  3245. color:#F5222D;
  3246. }
  3247. #u1946_text {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:0px;
  3253. visibility:hidden;
  3254. word-wrap:break-word;
  3255. }
  3256. #u1947 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:0px;
  3262. height:0px;
  3263. }
  3264. #u1948_div {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:270px;
  3270. height:154px;
  3271. background:inherit;
  3272. background-color:rgba(255, 255, 255, 1);
  3273. box-sizing:border-box;
  3274. border-width:1px;
  3275. border-style:solid;
  3276. border-color:rgba(233, 233, 233, 1);
  3277. border-radius:2px;
  3278. -moz-box-shadow:none;
  3279. -webkit-box-shadow:none;
  3280. box-shadow:none;
  3281. font-family:'微软雅黑';
  3282. font-weight:400;
  3283. font-style:normal;
  3284. }
  3285. #u1948 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:467px;
  3289. top:1274px;
  3290. width:270px;
  3291. height:154px;
  3292. font-family:'微软雅黑';
  3293. font-weight:400;
  3294. font-style:normal;
  3295. }
  3296. #u1948_text {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:0px;
  3302. visibility:hidden;
  3303. word-wrap:break-word;
  3304. }
  3305. #u1949_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:216px;
  3311. height:25px;
  3312. }
  3313. #u1949 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:491px;
  3317. top:1385px;
  3318. width:216px;
  3319. height:25px;
  3320. font-family:'微软雅黑';
  3321. font-weight:400;
  3322. font-style:normal;
  3323. }
  3324. #u1949_text {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:0px;
  3330. visibility:hidden;
  3331. word-wrap:break-word;
  3332. }
  3333. #u1950 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:0px;
  3339. height:0px;
  3340. }
  3341. #u1951_div {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:270px;
  3347. height:60px;
  3348. background:inherit;
  3349. background-color:rgba(255, 255, 255, 0);
  3350. border:none;
  3351. border-radius:0px;
  3352. -moz-box-shadow:none;
  3353. -webkit-box-shadow:none;
  3354. box-shadow:none;
  3355. font-family:'微软雅黑';
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:30px;
  3359. color:rgba(0, 0, 0, 0.847058823529412);
  3360. text-align:left;
  3361. line-height:38px;
  3362. }
  3363. #u1951 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:467px;
  3367. top:1319px;
  3368. width:270px;
  3369. height:60px;
  3370. font-family:'微软雅黑';
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:30px;
  3374. color:rgba(0, 0, 0, 0.847058823529412);
  3375. text-align:left;
  3376. line-height:38px;
  3377. }
  3378. #u1951_text {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:24px;
  3382. top:2px;
  3383. width:244px;
  3384. word-wrap:break-word;
  3385. }
  3386. #u1952_div {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:270px;
  3392. height:46px;
  3393. background:inherit;
  3394. background-color:rgba(255, 255, 255, 0);
  3395. border:none;
  3396. border-radius:0px;
  3397. -moz-box-shadow:none;
  3398. -webkit-box-shadow:none;
  3399. box-shadow:none;
  3400. font-family:'微软雅黑';
  3401. font-weight:400;
  3402. font-style:normal;
  3403. color:rgba(0, 0, 0, 0.427450980392157);
  3404. text-align:left;
  3405. line-height:22px;
  3406. }
  3407. #u1952 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:467px;
  3411. top:1274px;
  3412. width:270px;
  3413. height:46px;
  3414. font-family:'微软雅黑';
  3415. font-weight:400;
  3416. font-style:normal;
  3417. color:rgba(0, 0, 0, 0.427450980392157);
  3418. text-align:left;
  3419. line-height:22px;
  3420. }
  3421. #u1952_text {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:24px;
  3425. top:20px;
  3426. width:244px;
  3427. word-wrap:break-word;
  3428. }
  3429. #u1953_div {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:57px;
  3435. height:57px;
  3436. background:inherit;
  3437. background-color:rgba(255, 255, 255, 0);
  3438. border:none;
  3439. border-radius:0px;
  3440. -moz-box-shadow:none;
  3441. -webkit-box-shadow:none;
  3442. box-shadow:none;
  3443. font-family:'FontAwesome';
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:16px;
  3447. color:rgba(153, 153, 153, 0.647058823529412);
  3448. line-height:22px;
  3449. }
  3450. #u1953 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:680px;
  3454. top:1274px;
  3455. width:57px;
  3456. height:57px;
  3457. font-family:'FontAwesome';
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:16px;
  3461. color:rgba(153, 153, 153, 0.647058823529412);
  3462. line-height:22px;
  3463. }
  3464. #u1953_text {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:2px;
  3468. top:18px;
  3469. width:53px;
  3470. word-wrap:break-word;
  3471. }
  3472. #u1954 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:0px;
  3478. height:0px;
  3479. }
  3480. #u1955_div {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:270px;
  3486. height:154px;
  3487. background:inherit;
  3488. background-color:rgba(255, 255, 255, 1);
  3489. box-sizing:border-box;
  3490. border-width:1px;
  3491. border-style:solid;
  3492. border-color:rgba(233, 233, 233, 1);
  3493. border-radius:2px;
  3494. -moz-box-shadow:none;
  3495. -webkit-box-shadow:none;
  3496. box-shadow:none;
  3497. font-family:'微软雅黑';
  3498. font-weight:400;
  3499. font-style:normal;
  3500. }
  3501. #u1955 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:756px;
  3505. top:1274px;
  3506. width:270px;
  3507. height:154px;
  3508. font-family:'微软雅黑';
  3509. font-weight:400;
  3510. font-style:normal;
  3511. }
  3512. #u1955_text {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:0px;
  3518. visibility:hidden;
  3519. word-wrap:break-word;
  3520. }
  3521. #u1956_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:216px;
  3527. height:25px;
  3528. }
  3529. #u1956 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:780px;
  3533. top:1384px;
  3534. width:216px;
  3535. height:25px;
  3536. font-family:'微软雅黑';
  3537. font-weight:400;
  3538. font-style:normal;
  3539. }
  3540. #u1956_text {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:0px;
  3546. visibility:hidden;
  3547. word-wrap:break-word;
  3548. }
  3549. #u1957 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:0px;
  3555. height:0px;
  3556. }
  3557. #u1958_div {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:270px;
  3563. height:60px;
  3564. background:inherit;
  3565. background-color:rgba(255, 255, 255, 0);
  3566. border:none;
  3567. border-radius:0px;
  3568. -moz-box-shadow:none;
  3569. -webkit-box-shadow:none;
  3570. box-shadow:none;
  3571. font-family:'微软雅黑';
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:30px;
  3575. color:rgba(0, 0, 0, 0.847058823529412);
  3576. text-align:left;
  3577. line-height:38px;
  3578. }
  3579. #u1958 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:756px;
  3583. top:1319px;
  3584. width:270px;
  3585. height:60px;
  3586. font-family:'微软雅黑';
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:30px;
  3590. color:rgba(0, 0, 0, 0.847058823529412);
  3591. text-align:left;
  3592. line-height:38px;
  3593. }
  3594. #u1958_text {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:24px;
  3598. top:2px;
  3599. width:244px;
  3600. word-wrap:break-word;
  3601. }
  3602. #u1959_div {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:270px;
  3608. height:46px;
  3609. background:inherit;
  3610. background-color:rgba(255, 255, 255, 0);
  3611. border:none;
  3612. border-radius:0px;
  3613. -moz-box-shadow:none;
  3614. -webkit-box-shadow:none;
  3615. box-shadow:none;
  3616. font-family:'微软雅黑';
  3617. font-weight:400;
  3618. font-style:normal;
  3619. color:rgba(0, 0, 0, 0.427450980392157);
  3620. text-align:left;
  3621. line-height:22px;
  3622. }
  3623. #u1959 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:756px;
  3627. top:1274px;
  3628. width:270px;
  3629. height:46px;
  3630. font-family:'微软雅黑';
  3631. font-weight:400;
  3632. font-style:normal;
  3633. color:rgba(0, 0, 0, 0.427450980392157);
  3634. text-align:left;
  3635. line-height:22px;
  3636. }
  3637. #u1959_text {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:24px;
  3641. top:20px;
  3642. width:244px;
  3643. word-wrap:break-word;
  3644. }
  3645. #u1960_div {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:57px;
  3651. height:57px;
  3652. background:inherit;
  3653. background-color:rgba(255, 255, 255, 0);
  3654. border:none;
  3655. border-radius:0px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'FontAwesome';
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:16px;
  3663. color:rgba(153, 153, 153, 0.647058823529412);
  3664. line-height:22px;
  3665. }
  3666. #u1960 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:968px;
  3670. top:1274px;
  3671. width:57px;
  3672. height:57px;
  3673. font-family:'FontAwesome';
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:16px;
  3677. color:rgba(153, 153, 153, 0.647058823529412);
  3678. line-height:22px;
  3679. }
  3680. #u1960_text {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:2px;
  3684. top:18px;
  3685. width:53px;
  3686. word-wrap:break-word;
  3687. }
  3688. #u1961 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:0px;
  3694. height:0px;
  3695. }
  3696. #u1962_div {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:270px;
  3702. height:154px;
  3703. background:inherit;
  3704. background-color:rgba(255, 255, 255, 1);
  3705. box-sizing:border-box;
  3706. border-width:1px;
  3707. border-style:solid;
  3708. border-color:rgba(233, 233, 233, 1);
  3709. border-radius:2px;
  3710. -moz-box-shadow:none;
  3711. -webkit-box-shadow:none;
  3712. box-shadow:none;
  3713. font-family:'微软雅黑';
  3714. font-weight:400;
  3715. font-style:normal;
  3716. }
  3717. #u1962 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:1042px;
  3721. top:1274px;
  3722. width:270px;
  3723. height:154px;
  3724. font-family:'微软雅黑';
  3725. font-weight:400;
  3726. font-style:normal;
  3727. }
  3728. #u1962_text {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:0px;
  3734. visibility:hidden;
  3735. word-wrap:break-word;
  3736. }
  3737. #u1963 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:0px;
  3743. height:0px;
  3744. }
  3745. #u1964_div {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:270px;
  3751. height:60px;
  3752. background:inherit;
  3753. background-color:rgba(255, 255, 255, 0);
  3754. border:none;
  3755. border-radius:0px;
  3756. -moz-box-shadow:none;
  3757. -webkit-box-shadow:none;
  3758. box-shadow:none;
  3759. font-family:'微软雅黑';
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:30px;
  3763. color:rgba(0, 0, 0, 0.847058823529412);
  3764. text-align:left;
  3765. line-height:38px;
  3766. }
  3767. #u1964 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:1042px;
  3771. top:1319px;
  3772. width:270px;
  3773. height:60px;
  3774. font-family:'微软雅黑';
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:30px;
  3778. color:rgba(0, 0, 0, 0.847058823529412);
  3779. text-align:left;
  3780. line-height:38px;
  3781. }
  3782. #u1964_text {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:24px;
  3786. top:2px;
  3787. width:244px;
  3788. word-wrap:break-word;
  3789. }
  3790. #u1965_div {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:270px;
  3796. height:46px;
  3797. background:inherit;
  3798. background-color:rgba(255, 255, 255, 0);
  3799. border:none;
  3800. border-radius:0px;
  3801. -moz-box-shadow:none;
  3802. -webkit-box-shadow:none;
  3803. box-shadow:none;
  3804. font-family:'微软雅黑';
  3805. font-weight:400;
  3806. font-style:normal;
  3807. color:rgba(0, 0, 0, 0.427450980392157);
  3808. text-align:left;
  3809. line-height:22px;
  3810. }
  3811. #u1965 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:1042px;
  3815. top:1274px;
  3816. width:270px;
  3817. height:46px;
  3818. font-family:'微软雅黑';
  3819. font-weight:400;
  3820. font-style:normal;
  3821. color:rgba(0, 0, 0, 0.427450980392157);
  3822. text-align:left;
  3823. line-height:22px;
  3824. }
  3825. #u1965_text {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:24px;
  3829. top:20px;
  3830. width:244px;
  3831. word-wrap:break-word;
  3832. }
  3833. #u1966_div {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:57px;
  3839. height:57px;
  3840. background:inherit;
  3841. background-color:rgba(255, 255, 255, 0);
  3842. border:none;
  3843. border-radius:0px;
  3844. -moz-box-shadow:none;
  3845. -webkit-box-shadow:none;
  3846. box-shadow:none;
  3847. font-family:'FontAwesome';
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:16px;
  3851. color:rgba(153, 153, 153, 0.647058823529412);
  3852. line-height:22px;
  3853. }
  3854. #u1966 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:1255px;
  3858. top:1274px;
  3859. width:57px;
  3860. height:57px;
  3861. font-family:'FontAwesome';
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:16px;
  3865. color:rgba(153, 153, 153, 0.647058823529412);
  3866. line-height:22px;
  3867. }
  3868. #u1966_text {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:2px;
  3872. top:18px;
  3873. width:53px;
  3874. word-wrap:break-word;
  3875. }
  3876. #u1967 {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:0px;
  3882. height:0px;
  3883. }
  3884. #u1968_img {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:72px;
  3890. height:72px;
  3891. }
  3892. #u1968 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:1200px;
  3896. top:1330px;
  3897. width:72px;
  3898. height:72px;
  3899. font-family:'微软雅黑';
  3900. font-weight:400;
  3901. font-style:normal;
  3902. }
  3903. #u1968_text {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:0px;
  3909. visibility:hidden;
  3910. word-wrap:break-word;
  3911. }
  3912. #u1969_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:72px;
  3918. height:72px;
  3919. }
  3920. #u1969 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:1200px;
  3924. top:1330px;
  3925. width:72px;
  3926. height:72px;
  3927. font-family:'微软雅黑';
  3928. font-weight:400;
  3929. font-style:normal;
  3930. }
  3931. #u1969_text {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:0px;
  3937. visibility:hidden;
  3938. word-wrap:break-word;
  3939. }
  3940. #u1970_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:44px;
  3946. height:44px;
  3947. }
  3948. #u1970 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:1214px;
  3952. top:1344px;
  3953. width:44px;
  3954. height:44px;
  3955. font-family:'微软雅黑';
  3956. font-weight:400;
  3957. font-style:normal;
  3958. }
  3959. #u1970_text {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:0px;
  3965. visibility:hidden;
  3966. word-wrap:break-word;
  3967. }
  3968. #u1971 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:0px;
  3974. height:0px;
  3975. }
  3976. #u1972_div {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:270px;
  3982. height:188px;
  3983. background:inherit;
  3984. background-color:rgba(255, 255, 255, 1);
  3985. box-sizing:border-box;
  3986. border-width:1px;
  3987. border-style:solid;
  3988. border-color:rgba(233, 233, 233, 1);
  3989. border-radius:2px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. font-family:'微软雅黑';
  3994. font-weight:400;
  3995. font-style:normal;
  3996. }
  3997. #u1972 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:178px;
  4001. top:1448px;
  4002. width:270px;
  4003. height:188px;
  4004. font-family:'微软雅黑';
  4005. font-weight:400;
  4006. font-style:normal;
  4007. }
  4008. #u1972_text {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:0px;
  4014. visibility:hidden;
  4015. word-wrap:break-word;
  4016. }
  4017. #u1973 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:0px;
  4023. height:0px;
  4024. }
  4025. #u1974_div {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:270px;
  4031. height:60px;
  4032. background:inherit;
  4033. background-color:rgba(255, 255, 255, 0);
  4034. border:none;
  4035. border-radius:0px;
  4036. -moz-box-shadow:none;
  4037. -webkit-box-shadow:none;
  4038. box-shadow:none;
  4039. font-family:'微软雅黑';
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:30px;
  4043. color:rgba(0, 0, 0, 0.847058823529412);
  4044. text-align:left;
  4045. line-height:38px;
  4046. }
  4047. #u1974 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:178px;
  4051. top:1493px;
  4052. width:270px;
  4053. height:60px;
  4054. font-family:'微软雅黑';
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:30px;
  4058. color:rgba(0, 0, 0, 0.847058823529412);
  4059. text-align:left;
  4060. line-height:38px;
  4061. }
  4062. #u1974_text {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:24px;
  4066. top:2px;
  4067. width:244px;
  4068. word-wrap:break-word;
  4069. }
  4070. #u1975_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:270px;
  4076. height:46px;
  4077. background:inherit;
  4078. background-color:rgba(255, 255, 255, 0);
  4079. border:none;
  4080. border-radius:0px;
  4081. -moz-box-shadow:none;
  4082. -webkit-box-shadow:none;
  4083. box-shadow:none;
  4084. font-family:'微软雅黑';
  4085. font-weight:400;
  4086. font-style:normal;
  4087. color:rgba(0, 0, 0, 0.427450980392157);
  4088. text-align:left;
  4089. line-height:22px;
  4090. }
  4091. #u1975 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:178px;
  4095. top:1448px;
  4096. width:270px;
  4097. height:46px;
  4098. font-family:'微软雅黑';
  4099. font-weight:400;
  4100. font-style:normal;
  4101. color:rgba(0, 0, 0, 0.427450980392157);
  4102. text-align:left;
  4103. line-height:22px;
  4104. }
  4105. #u1975_text {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:24px;
  4109. top:20px;
  4110. width:244px;
  4111. word-wrap:break-word;
  4112. }
  4113. #u1976_div {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:57px;
  4119. height:57px;
  4120. background:inherit;
  4121. background-color:rgba(255, 255, 255, 0);
  4122. border:none;
  4123. border-radius:0px;
  4124. -moz-box-shadow:none;
  4125. -webkit-box-shadow:none;
  4126. box-shadow:none;
  4127. font-family:'FontAwesome';
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:16px;
  4131. color:rgba(153, 153, 153, 0.647058823529412);
  4132. line-height:22px;
  4133. }
  4134. #u1976 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:390px;
  4138. top:1448px;
  4139. width:57px;
  4140. height:57px;
  4141. font-family:'FontAwesome';
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:16px;
  4145. color:rgba(153, 153, 153, 0.647058823529412);
  4146. line-height:22px;
  4147. }
  4148. #u1976_text {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:2px;
  4152. top:18px;
  4153. width:53px;
  4154. word-wrap:break-word;
  4155. }
  4156. #u1977_div {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:216px;
  4162. height:38px;
  4163. background:inherit;
  4164. background-color:rgba(255, 255, 255, 0);
  4165. box-sizing:border-box;
  4166. border-width:1px;
  4167. border-style:solid;
  4168. border-color:rgba(233, 233, 233, 1);
  4169. border-left:0px;
  4170. border-right:0px;
  4171. border-bottom:0px;
  4172. border-radius:0px;
  4173. border-top-left-radius:0px;
  4174. border-top-right-radius:0px;
  4175. border-bottom-right-radius:0px;
  4176. border-bottom-left-radius:0px;
  4177. -moz-box-shadow:none;
  4178. -webkit-box-shadow:none;
  4179. box-shadow:none;
  4180. font-family:'微软雅黑';
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:14px;
  4184. color:rgba(0, 0, 0, 0.647058823529412);
  4185. text-align:left;
  4186. }
  4187. #u1977 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:202px;
  4191. top:1599px;
  4192. width:216px;
  4193. height:38px;
  4194. font-family:'微软雅黑';
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:14px;
  4198. color:rgba(0, 0, 0, 0.647058823529412);
  4199. text-align:left;
  4200. }
  4201. #u1977_text {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:2px;
  4205. top:9px;
  4206. width:212px;
  4207. word-wrap:break-word;
  4208. }
  4209. #u1978 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u1979_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:49px;
  4223. height:26px;
  4224. background:inherit;
  4225. background-color:rgba(255, 255, 255, 0);
  4226. border:none;
  4227. border-radius:0px;
  4228. -moz-box-shadow:none;
  4229. -webkit-box-shadow:none;
  4230. box-shadow:none;
  4231. font-family:'微软雅黑';
  4232. font-weight:400;
  4233. font-style:normal;
  4234. color:rgba(0, 0, 0, 0.427450980392157);
  4235. line-height:22px;
  4236. }
  4237. #u1979 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:209px;
  4241. top:1553px;
  4242. width:49px;
  4243. height:26px;
  4244. font-family:'微软雅黑';
  4245. font-weight:400;
  4246. font-style:normal;
  4247. color:rgba(0, 0, 0, 0.427450980392157);
  4248. line-height:22px;
  4249. }
  4250. #u1979_text {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:2px;
  4254. top:2px;
  4255. width:39px;
  4256. white-space:nowrap;
  4257. }
  4258. #u1980_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:38px;
  4264. height:26px;
  4265. background:inherit;
  4266. background-color:rgba(255, 255, 255, 0);
  4267. border:none;
  4268. border-radius:0px;
  4269. -moz-box-shadow:none;
  4270. -webkit-box-shadow:none;
  4271. box-shadow:none;
  4272. font-family:'微软雅黑';
  4273. font-weight:400;
  4274. font-style:normal;
  4275. color:rgba(0, 0, 0, 0.647058823529412);
  4276. line-height:22px;
  4277. }
  4278. #u1980 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:270px;
  4282. top:1553px;
  4283. width:38px;
  4284. height:26px;
  4285. font-family:'微软雅黑';
  4286. font-weight:400;
  4287. font-style:normal;
  4288. color:rgba(0, 0, 0, 0.647058823529412);
  4289. line-height:22px;
  4290. }
  4291. #u1980_text {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:4px;
  4295. top:2px;
  4296. width:32px;
  4297. white-space:nowrap;
  4298. }
  4299. #u1981_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:10px;
  4305. height:11px;
  4306. }
  4307. #u1981 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:258px;
  4311. top:1561px;
  4312. width:10px;
  4313. height:11px;
  4314. font-family:'微软雅黑';
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:28px;
  4318. color:rgba(82, 196, 26, 0.647058823529412);
  4319. }
  4320. #u1981_text {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:0px;
  4326. visibility:hidden;
  4327. word-wrap:break-word;
  4328. }
  4329. #u1982 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:0px;
  4335. height:0px;
  4336. }
  4337. #u1983_div {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:49px;
  4343. height:26px;
  4344. background:inherit;
  4345. background-color:rgba(255, 255, 255, 0);
  4346. border:none;
  4347. border-radius:0px;
  4348. -moz-box-shadow:none;
  4349. -webkit-box-shadow:none;
  4350. box-shadow:none;
  4351. font-family:'微软雅黑';
  4352. font-weight:400;
  4353. font-style:normal;
  4354. color:rgba(0, 0, 0, 0.427450980392157);
  4355. line-height:22px;
  4356. }
  4357. #u1983 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:323px;
  4361. top:1553px;
  4362. width:49px;
  4363. height:26px;
  4364. font-family:'微软雅黑';
  4365. font-weight:400;
  4366. font-style:normal;
  4367. color:rgba(0, 0, 0, 0.427450980392157);
  4368. line-height:22px;
  4369. }
  4370. #u1983_text {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:2px;
  4374. top:2px;
  4375. width:39px;
  4376. white-space:nowrap;
  4377. }
  4378. #u1984_div {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:38px;
  4384. height:26px;
  4385. background:inherit;
  4386. background-color:rgba(255, 255, 255, 0);
  4387. border:none;
  4388. border-radius:0px;
  4389. -moz-box-shadow:none;
  4390. -webkit-box-shadow:none;
  4391. box-shadow:none;
  4392. font-family:'微软雅黑';
  4393. font-weight:400;
  4394. font-style:normal;
  4395. color:rgba(0, 0, 0, 0.647058823529412);
  4396. line-height:22px;
  4397. }
  4398. #u1984 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:384px;
  4402. top:1553px;
  4403. width:38px;
  4404. height:26px;
  4405. font-family:'微软雅黑';
  4406. font-weight:400;
  4407. font-style:normal;
  4408. color:rgba(0, 0, 0, 0.647058823529412);
  4409. line-height:22px;
  4410. }
  4411. #u1984_text {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:4px;
  4415. top:2px;
  4416. width:32px;
  4417. white-space:nowrap;
  4418. }
  4419. #u1985_img {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:10px;
  4425. height:11px;
  4426. }
  4427. #u1985 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:372px;
  4431. top:1561px;
  4432. width:10px;
  4433. height:11px;
  4434. -webkit-transform:rotate(180deg);
  4435. -moz-transform:rotate(180deg);
  4436. -ms-transform:rotate(180deg);
  4437. transform:rotate(180deg);
  4438. font-family:'微软雅黑';
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:28px;
  4442. color:#F5222D;
  4443. }
  4444. #u1985_text {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:0px;
  4450. visibility:hidden;
  4451. word-wrap:break-word;
  4452. }
  4453. #u1986 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:0px;
  4459. height:0px;
  4460. }
  4461. #u1987_div {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:270px;
  4467. height:188px;
  4468. background:inherit;
  4469. background-color:rgba(255, 255, 255, 1);
  4470. box-sizing:border-box;
  4471. border-width:1px;
  4472. border-style:solid;
  4473. border-color:rgba(233, 233, 233, 1);
  4474. border-radius:2px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'微软雅黑';
  4479. font-weight:400;
  4480. font-style:normal;
  4481. }
  4482. #u1987 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:467px;
  4486. top:1448px;
  4487. width:270px;
  4488. height:188px;
  4489. font-family:'微软雅黑';
  4490. font-weight:400;
  4491. font-style:normal;
  4492. }
  4493. #u1987_text {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:0px;
  4499. visibility:hidden;
  4500. word-wrap:break-word;
  4501. }
  4502. #u1988_img {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:216px;
  4508. height:25px;
  4509. }
  4510. #u1988 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:491px;
  4514. top:1553px;
  4515. width:216px;
  4516. height:25px;
  4517. font-family:'微软雅黑';
  4518. font-weight:400;
  4519. font-style:normal;
  4520. }
  4521. #u1988_text {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:0px;
  4527. visibility:hidden;
  4528. word-wrap:break-word;
  4529. }
  4530. #u1989_div {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:216px;
  4536. height:38px;
  4537. background:inherit;
  4538. background-color:rgba(255, 255, 255, 0);
  4539. box-sizing:border-box;
  4540. border-width:1px;
  4541. border-style:solid;
  4542. border-color:rgba(233, 233, 233, 1);
  4543. border-left:0px;
  4544. border-right:0px;
  4545. border-bottom:0px;
  4546. border-radius:0px;
  4547. border-top-left-radius:0px;
  4548. border-top-right-radius:0px;
  4549. border-bottom-right-radius:0px;
  4550. border-bottom-left-radius:0px;
  4551. -moz-box-shadow:none;
  4552. -webkit-box-shadow:none;
  4553. box-shadow:none;
  4554. font-family:'微软雅黑';
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:14px;
  4558. color:rgba(0, 0, 0, 0.647058823529412);
  4559. text-align:left;
  4560. }
  4561. #u1989 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:491px;
  4565. top:1598px;
  4566. width:216px;
  4567. height:38px;
  4568. font-family:'微软雅黑';
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. color:rgba(0, 0, 0, 0.647058823529412);
  4573. text-align:left;
  4574. }
  4575. #u1989_text {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:2px;
  4579. top:9px;
  4580. width:212px;
  4581. word-wrap:break-word;
  4582. }
  4583. #u1990 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:0px;
  4589. height:0px;
  4590. }
  4591. #u1991_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:270px;
  4597. height:60px;
  4598. background:inherit;
  4599. background-color:rgba(255, 255, 255, 0);
  4600. border:none;
  4601. border-radius:0px;
  4602. -moz-box-shadow:none;
  4603. -webkit-box-shadow:none;
  4604. box-shadow:none;
  4605. font-family:'微软雅黑';
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:30px;
  4609. color:rgba(0, 0, 0, 0.847058823529412);
  4610. text-align:left;
  4611. line-height:38px;
  4612. }
  4613. #u1991 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:467px;
  4617. top:1493px;
  4618. width:270px;
  4619. height:60px;
  4620. font-family:'微软雅黑';
  4621. font-weight:400;
  4622. font-style:normal;
  4623. font-size:30px;
  4624. color:rgba(0, 0, 0, 0.847058823529412);
  4625. text-align:left;
  4626. line-height:38px;
  4627. }
  4628. #u1991_text {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:24px;
  4632. top:2px;
  4633. width:244px;
  4634. word-wrap:break-word;
  4635. }
  4636. #u1992_div {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:270px;
  4642. height:46px;
  4643. background:inherit;
  4644. background-color:rgba(255, 255, 255, 0);
  4645. border:none;
  4646. border-radius:0px;
  4647. -moz-box-shadow:none;
  4648. -webkit-box-shadow:none;
  4649. box-shadow:none;
  4650. font-family:'微软雅黑';
  4651. font-weight:400;
  4652. font-style:normal;
  4653. color:rgba(0, 0, 0, 0.427450980392157);
  4654. text-align:left;
  4655. line-height:22px;
  4656. }
  4657. #u1992 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:467px;
  4661. top:1448px;
  4662. width:270px;
  4663. height:46px;
  4664. font-family:'微软雅黑';
  4665. font-weight:400;
  4666. font-style:normal;
  4667. color:rgba(0, 0, 0, 0.427450980392157);
  4668. text-align:left;
  4669. line-height:22px;
  4670. }
  4671. #u1992_text {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:24px;
  4675. top:20px;
  4676. width:244px;
  4677. word-wrap:break-word;
  4678. }
  4679. #u1993_div {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:57px;
  4685. height:57px;
  4686. background:inherit;
  4687. background-color:rgba(255, 255, 255, 0);
  4688. border:none;
  4689. border-radius:0px;
  4690. -moz-box-shadow:none;
  4691. -webkit-box-shadow:none;
  4692. box-shadow:none;
  4693. font-family:'FontAwesome';
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:16px;
  4697. color:rgba(153, 153, 153, 0.647058823529412);
  4698. line-height:22px;
  4699. }
  4700. #u1993 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:680px;
  4704. top:1448px;
  4705. width:57px;
  4706. height:57px;
  4707. font-family:'FontAwesome';
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:16px;
  4711. color:rgba(153, 153, 153, 0.647058823529412);
  4712. line-height:22px;
  4713. }
  4714. #u1993_text {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:2px;
  4718. top:18px;
  4719. width:53px;
  4720. word-wrap:break-word;
  4721. }
  4722. #u1994 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:0px;
  4728. height:0px;
  4729. }
  4730. #u1995_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:270px;
  4736. height:188px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 1);
  4739. box-sizing:border-box;
  4740. border-width:1px;
  4741. border-style:solid;
  4742. border-color:rgba(233, 233, 233, 1);
  4743. border-radius:2px;
  4744. -moz-box-shadow:none;
  4745. -webkit-box-shadow:none;
  4746. box-shadow:none;
  4747. font-family:'微软雅黑';
  4748. font-weight:400;
  4749. font-style:normal;
  4750. }
  4751. #u1995 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:756px;
  4755. top:1448px;
  4756. width:270px;
  4757. height:188px;
  4758. font-family:'微软雅黑';
  4759. font-weight:400;
  4760. font-style:normal;
  4761. }
  4762. #u1995_text {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:0px;
  4768. visibility:hidden;
  4769. word-wrap:break-word;
  4770. }
  4771. #u1996_img {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:216px;
  4777. height:25px;
  4778. }
  4779. #u1996 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:780px;
  4783. top:1552px;
  4784. width:216px;
  4785. height:25px;
  4786. font-family:'微软雅黑';
  4787. font-weight:400;
  4788. font-style:normal;
  4789. }
  4790. #u1996_text {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:0px;
  4796. visibility:hidden;
  4797. word-wrap:break-word;
  4798. }
  4799. #u1997_div {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:216px;
  4805. height:38px;
  4806. background:inherit;
  4807. background-color:rgba(255, 255, 255, 0);
  4808. box-sizing:border-box;
  4809. border-width:1px;
  4810. border-style:solid;
  4811. border-color:rgba(233, 233, 233, 1);
  4812. border-left:0px;
  4813. border-right:0px;
  4814. border-bottom:0px;
  4815. border-radius:0px;
  4816. border-top-left-radius:0px;
  4817. border-top-right-radius:0px;
  4818. border-bottom-right-radius:0px;
  4819. border-bottom-left-radius:0px;
  4820. -moz-box-shadow:none;
  4821. -webkit-box-shadow:none;
  4822. box-shadow:none;
  4823. font-family:'微软雅黑';
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:14px;
  4827. color:rgba(0, 0, 0, 0.647058823529412);
  4828. text-align:left;
  4829. }
  4830. #u1997 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:780px;
  4834. top:1599px;
  4835. width:216px;
  4836. height:38px;
  4837. font-family:'微软雅黑';
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:14px;
  4841. color:rgba(0, 0, 0, 0.647058823529412);
  4842. text-align:left;
  4843. }
  4844. #u1997_text {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:2px;
  4848. top:9px;
  4849. width:212px;
  4850. word-wrap:break-word;
  4851. }
  4852. #u1998 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:0px;
  4858. height:0px;
  4859. }
  4860. #u1999_div {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:270px;
  4866. height:60px;
  4867. background:inherit;
  4868. background-color:rgba(255, 255, 255, 0);
  4869. border:none;
  4870. border-radius:0px;
  4871. -moz-box-shadow:none;
  4872. -webkit-box-shadow:none;
  4873. box-shadow:none;
  4874. font-family:'微软雅黑';
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:30px;
  4878. color:rgba(0, 0, 0, 0.847058823529412);
  4879. text-align:left;
  4880. line-height:38px;
  4881. }
  4882. #u1999 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:756px;
  4886. top:1493px;
  4887. width:270px;
  4888. height:60px;
  4889. font-family:'微软雅黑';
  4890. font-weight:400;
  4891. font-style:normal;
  4892. font-size:30px;
  4893. color:rgba(0, 0, 0, 0.847058823529412);
  4894. text-align:left;
  4895. line-height:38px;
  4896. }
  4897. #u1999_text {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:24px;
  4901. top:2px;
  4902. width:244px;
  4903. word-wrap:break-word;
  4904. }
  4905. #u2000_div {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:270px;
  4911. height:46px;
  4912. background:inherit;
  4913. background-color:rgba(255, 255, 255, 0);
  4914. border:none;
  4915. border-radius:0px;
  4916. -moz-box-shadow:none;
  4917. -webkit-box-shadow:none;
  4918. box-shadow:none;
  4919. font-family:'微软雅黑';
  4920. font-weight:400;
  4921. font-style:normal;
  4922. color:rgba(0, 0, 0, 0.427450980392157);
  4923. text-align:left;
  4924. line-height:22px;
  4925. }
  4926. #u2000 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:756px;
  4930. top:1448px;
  4931. width:270px;
  4932. height:46px;
  4933. font-family:'微软雅黑';
  4934. font-weight:400;
  4935. font-style:normal;
  4936. color:rgba(0, 0, 0, 0.427450980392157);
  4937. text-align:left;
  4938. line-height:22px;
  4939. }
  4940. #u2000_text {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:24px;
  4944. top:20px;
  4945. width:244px;
  4946. word-wrap:break-word;
  4947. }
  4948. #u2001_div {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:57px;
  4954. height:57px;
  4955. background:inherit;
  4956. background-color:rgba(255, 255, 255, 0);
  4957. border:none;
  4958. border-radius:0px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. font-family:'FontAwesome';
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:16px;
  4966. color:rgba(153, 153, 153, 0.647058823529412);
  4967. line-height:22px;
  4968. }
  4969. #u2001 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:963px;
  4973. top:1448px;
  4974. width:57px;
  4975. height:57px;
  4976. font-family:'FontAwesome';
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:16px;
  4980. color:rgba(153, 153, 153, 0.647058823529412);
  4981. line-height:22px;
  4982. }
  4983. #u2001_text {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:2px;
  4987. top:18px;
  4988. width:53px;
  4989. word-wrap:break-word;
  4990. }
  4991. #u2002 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:0px;
  4997. height:0px;
  4998. }
  4999. #u2003_div {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:270px;
  5005. height:188px;
  5006. background:inherit;
  5007. background-color:rgba(255, 255, 255, 1);
  5008. box-sizing:border-box;
  5009. border-width:1px;
  5010. border-style:solid;
  5011. border-color:rgba(233, 233, 233, 1);
  5012. border-radius:2px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-family:'微软雅黑';
  5017. font-weight:400;
  5018. font-style:normal;
  5019. }
  5020. #u2003 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:1036px;
  5024. top:1449px;
  5025. width:270px;
  5026. height:188px;
  5027. font-family:'微软雅黑';
  5028. font-weight:400;
  5029. font-style:normal;
  5030. }
  5031. #u2003_text {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:0px;
  5037. visibility:hidden;
  5038. word-wrap:break-word;
  5039. }
  5040. #u2004_img {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:216px;
  5046. height:25px;
  5047. }
  5048. #u2004 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:1060px;
  5052. top:1552px;
  5053. width:216px;
  5054. height:25px;
  5055. font-family:'微软雅黑';
  5056. font-weight:400;
  5057. font-style:normal;
  5058. }
  5059. #u2004_text {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:0px;
  5065. visibility:hidden;
  5066. word-wrap:break-word;
  5067. }
  5068. #u2005_div {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:216px;
  5074. height:39px;
  5075. background:inherit;
  5076. background-color:rgba(255, 255, 255, 0);
  5077. box-sizing:border-box;
  5078. border-width:1px;
  5079. border-style:solid;
  5080. border-color:rgba(233, 233, 233, 1);
  5081. border-left:0px;
  5082. border-right:0px;
  5083. border-bottom:0px;
  5084. border-radius:0px;
  5085. border-top-left-radius:0px;
  5086. border-top-right-radius:0px;
  5087. border-bottom-right-radius:0px;
  5088. border-bottom-left-radius:0px;
  5089. -moz-box-shadow:none;
  5090. -webkit-box-shadow:none;
  5091. box-shadow:none;
  5092. font-family:'微软雅黑';
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:14px;
  5096. color:rgba(0, 0, 0, 0.647058823529412);
  5097. text-align:left;
  5098. }
  5099. #u2005 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:1060px;
  5103. top:1597px;
  5104. width:216px;
  5105. height:39px;
  5106. font-family:'微软雅黑';
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:14px;
  5110. color:rgba(0, 0, 0, 0.647058823529412);
  5111. text-align:left;
  5112. }
  5113. #u2005_text {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:0px;
  5119. visibility:hidden;
  5120. word-wrap:break-word;
  5121. }
  5122. #u2006 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:0px;
  5128. height:0px;
  5129. }
  5130. #u2007 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:0px;
  5136. height:0px;
  5137. }
  5138. #u2008_div {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:49px;
  5144. height:26px;
  5145. background:inherit;
  5146. background-color:rgba(255, 255, 255, 0);
  5147. border:none;
  5148. border-radius:0px;
  5149. -moz-box-shadow:none;
  5150. -webkit-box-shadow:none;
  5151. box-shadow:none;
  5152. font-family:'微软雅黑';
  5153. font-weight:400;
  5154. font-style:normal;
  5155. color:rgba(0, 0, 0, 0.427450980392157);
  5156. line-height:22px;
  5157. }
  5158. #u2008 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:1062px;
  5162. top:1604px;
  5163. width:49px;
  5164. height:26px;
  5165. font-family:'微软雅黑';
  5166. font-weight:400;
  5167. font-style:normal;
  5168. color:rgba(0, 0, 0, 0.427450980392157);
  5169. line-height:22px;
  5170. }
  5171. #u2008_text {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:2px;
  5175. top:2px;
  5176. width:39px;
  5177. white-space:nowrap;
  5178. }
  5179. #u2009_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:38px;
  5185. height:26px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. font-family:'微软雅黑';
  5194. font-weight:400;
  5195. font-style:normal;
  5196. color:rgba(0, 0, 0, 0.647058823529412);
  5197. line-height:22px;
  5198. }
  5199. #u2009 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:1123px;
  5203. top:1604px;
  5204. width:38px;
  5205. height:26px;
  5206. font-family:'微软雅黑';
  5207. font-weight:400;
  5208. font-style:normal;
  5209. color:rgba(0, 0, 0, 0.647058823529412);
  5210. line-height:22px;
  5211. }
  5212. #u2009_text {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:4px;
  5216. top:2px;
  5217. width:32px;
  5218. white-space:nowrap;
  5219. }
  5220. #u2010_img {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:14px;
  5226. height:15px;
  5227. }
  5228. #u2010 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:1109px;
  5232. top:1609px;
  5233. width:14px;
  5234. height:15px;
  5235. font-family:'微软雅黑';
  5236. font-weight:400;
  5237. font-style:normal;
  5238. font-size:28px;
  5239. color:#00A854;
  5240. }
  5241. #u2010_text {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:0px;
  5247. visibility:hidden;
  5248. word-wrap:break-word;
  5249. }
  5250. #u2011 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:0px;
  5256. height:0px;
  5257. }
  5258. #u2012_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:49px;
  5264. height:26px;
  5265. background:inherit;
  5266. background-color:rgba(255, 255, 255, 0);
  5267. border:none;
  5268. border-radius:0px;
  5269. -moz-box-shadow:none;
  5270. -webkit-box-shadow:none;
  5271. box-shadow:none;
  5272. font-family:'微软雅黑';
  5273. font-weight:400;
  5274. font-style:normal;
  5275. color:rgba(0, 0, 0, 0.427450980392157);
  5276. line-height:22px;
  5277. }
  5278. #u2012 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:1176px;
  5282. top:1604px;
  5283. width:49px;
  5284. height:26px;
  5285. font-family:'微软雅黑';
  5286. font-weight:400;
  5287. font-style:normal;
  5288. color:rgba(0, 0, 0, 0.427450980392157);
  5289. line-height:22px;
  5290. }
  5291. #u2012_text {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:2px;
  5295. top:2px;
  5296. width:39px;
  5297. white-space:nowrap;
  5298. }
  5299. #u2013_div {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:38px;
  5305. height:26px;
  5306. background:inherit;
  5307. background-color:rgba(255, 255, 255, 0);
  5308. border:none;
  5309. border-radius:0px;
  5310. -moz-box-shadow:none;
  5311. -webkit-box-shadow:none;
  5312. box-shadow:none;
  5313. font-family:'微软雅黑';
  5314. font-weight:400;
  5315. font-style:normal;
  5316. color:rgba(0, 0, 0, 0.647058823529412);
  5317. line-height:22px;
  5318. }
  5319. #u2013 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:1239px;
  5323. top:1604px;
  5324. width:38px;
  5325. height:26px;
  5326. font-family:'微软雅黑';
  5327. font-weight:400;
  5328. font-style:normal;
  5329. color:rgba(0, 0, 0, 0.647058823529412);
  5330. line-height:22px;
  5331. }
  5332. #u2013_text {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:4px;
  5336. top:2px;
  5337. width:32px;
  5338. white-space:nowrap;
  5339. }
  5340. #u2014_img {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:14px;
  5346. height:15px;
  5347. }
  5348. #u2014 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:1224px;
  5352. top:1610px;
  5353. width:14px;
  5354. height:15px;
  5355. -webkit-transform:rotate(180deg);
  5356. -moz-transform:rotate(180deg);
  5357. -ms-transform:rotate(180deg);
  5358. transform:rotate(180deg);
  5359. font-family:'微软雅黑';
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:28px;
  5363. color:#F04134;
  5364. }
  5365. #u2014_text {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:0px;
  5371. visibility:hidden;
  5372. word-wrap:break-word;
  5373. }
  5374. #u2015 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:0px;
  5380. height:0px;
  5381. }
  5382. #u2016_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:270px;
  5388. height:60px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 0);
  5391. border:none;
  5392. border-radius:0px;
  5393. -moz-box-shadow:none;
  5394. -webkit-box-shadow:none;
  5395. box-shadow:none;
  5396. font-family:'微软雅黑';
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:30px;
  5400. color:rgba(0, 0, 0, 0.847058823529412);
  5401. text-align:left;
  5402. line-height:38px;
  5403. }
  5404. #u2016 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:1036px;
  5408. top:1494px;
  5409. width:270px;
  5410. height:60px;
  5411. font-family:'微软雅黑';
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:30px;
  5415. color:rgba(0, 0, 0, 0.847058823529412);
  5416. text-align:left;
  5417. line-height:38px;
  5418. }
  5419. #u2016_text {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:24px;
  5423. top:2px;
  5424. width:244px;
  5425. word-wrap:break-word;
  5426. }
  5427. #u2017_div {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:270px;
  5433. height:46px;
  5434. background:inherit;
  5435. background-color:rgba(255, 255, 255, 0);
  5436. border:none;
  5437. border-radius:0px;
  5438. -moz-box-shadow:none;
  5439. -webkit-box-shadow:none;
  5440. box-shadow:none;
  5441. font-family:'微软雅黑';
  5442. font-weight:400;
  5443. font-style:normal;
  5444. color:rgba(0, 0, 0, 0.427450980392157);
  5445. text-align:left;
  5446. line-height:22px;
  5447. }
  5448. #u2017 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:1036px;
  5452. top:1449px;
  5453. width:270px;
  5454. height:46px;
  5455. font-family:'微软雅黑';
  5456. font-weight:400;
  5457. font-style:normal;
  5458. color:rgba(0, 0, 0, 0.427450980392157);
  5459. text-align:left;
  5460. line-height:22px;
  5461. }
  5462. #u2017_text {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:24px;
  5466. top:20px;
  5467. width:244px;
  5468. word-wrap:break-word;
  5469. }
  5470. #u2018_div {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:57px;
  5476. height:57px;
  5477. background:inherit;
  5478. background-color:rgba(255, 255, 255, 0);
  5479. border:none;
  5480. border-radius:0px;
  5481. -moz-box-shadow:none;
  5482. -webkit-box-shadow:none;
  5483. box-shadow:none;
  5484. font-family:'FontAwesome';
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:16px;
  5488. color:rgba(153, 153, 153, 0.647058823529412);
  5489. line-height:22px;
  5490. }
  5491. #u2018 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:1249px;
  5495. top:1449px;
  5496. width:57px;
  5497. height:57px;
  5498. font-family:'FontAwesome';
  5499. font-weight:400;
  5500. font-style:normal;
  5501. font-size:16px;
  5502. color:rgba(153, 153, 153, 0.647058823529412);
  5503. line-height:22px;
  5504. }
  5505. #u2018_text {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:2px;
  5509. top:18px;
  5510. width:53px;
  5511. word-wrap:break-word;
  5512. }
  5513. #u2019 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:0px;
  5519. height:0px;
  5520. }
  5521. #u2020_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:270px;
  5527. height:146px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 1);
  5530. box-sizing:border-box;
  5531. border-width:1px;
  5532. border-style:solid;
  5533. border-color:rgba(233, 233, 233, 1);
  5534. border-radius:2px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-family:'微软雅黑';
  5539. font-weight:400;
  5540. font-style:normal;
  5541. text-align:left;
  5542. }
  5543. #u2020 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:988px;
  5547. top:121px;
  5548. width:270px;
  5549. height:146px;
  5550. font-family:'微软雅黑';
  5551. font-weight:400;
  5552. font-style:normal;
  5553. text-align:left;
  5554. }
  5555. #u2020_text {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:100px;
  5559. top:24px;
  5560. width:154px;
  5561. word-wrap:break-word;
  5562. }
  5563. #u2021_div {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:216px;
  5569. height:43px;
  5570. background:inherit;
  5571. background-color:rgba(255, 255, 255, 0);
  5572. box-sizing:border-box;
  5573. border-width:1px;
  5574. border-style:solid;
  5575. border-color:rgba(233, 233, 233, 1);
  5576. border-left:0px;
  5577. border-right:0px;
  5578. border-bottom:0px;
  5579. border-radius:0px;
  5580. border-top-left-radius:0px;
  5581. border-top-right-radius:0px;
  5582. border-bottom-right-radius:0px;
  5583. border-bottom-left-radius:0px;
  5584. -moz-box-shadow:none;
  5585. -webkit-box-shadow:none;
  5586. box-shadow:none;
  5587. font-family:'微软雅黑';
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:14px;
  5591. color:rgba(0, 0, 0, 0.647058823529412);
  5592. text-align:left;
  5593. }
  5594. #u2021 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:1013px;
  5598. top:224px;
  5599. width:216px;
  5600. height:43px;
  5601. font-family:'微软雅黑';
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:14px;
  5605. color:rgba(0, 0, 0, 0.647058823529412);
  5606. text-align:left;
  5607. }
  5608. #u2021_text {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:0px;
  5614. visibility:hidden;
  5615. word-wrap:break-word;
  5616. }
  5617. #u2022 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:0px;
  5621. top:0px;
  5622. width:0px;
  5623. height:0px;
  5624. }
  5625. #u2023_div {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:49px;
  5631. height:26px;
  5632. background:inherit;
  5633. background-color:rgba(255, 255, 255, 0);
  5634. border:none;
  5635. border-radius:0px;
  5636. -moz-box-shadow:none;
  5637. -webkit-box-shadow:none;
  5638. box-shadow:none;
  5639. font-family:'微软雅黑';
  5640. font-weight:400;
  5641. font-style:normal;
  5642. color:rgba(0, 0, 0, 0.427450980392157);
  5643. line-height:22px;
  5644. }
  5645. #u2023 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:1078px;
  5649. top:233px;
  5650. width:49px;
  5651. height:26px;
  5652. font-family:'微软雅黑';
  5653. font-weight:400;
  5654. font-style:normal;
  5655. color:rgba(0, 0, 0, 0.427450980392157);
  5656. line-height:22px;
  5657. }
  5658. #u2023_text {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:2px;
  5662. top:2px;
  5663. width:39px;
  5664. white-space:nowrap;
  5665. }
  5666. #u2024_div {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:38px;
  5672. height:26px;
  5673. background:inherit;
  5674. background-color:rgba(255, 255, 255, 0);
  5675. border:none;
  5676. border-radius:0px;
  5677. -moz-box-shadow:none;
  5678. -webkit-box-shadow:none;
  5679. box-shadow:none;
  5680. font-family:'微软雅黑';
  5681. font-weight:400;
  5682. font-style:normal;
  5683. color:rgba(0, 0, 0, 0.647058823529412);
  5684. line-height:22px;
  5685. }
  5686. #u2024 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:1135px;
  5690. top:233px;
  5691. width:38px;
  5692. height:26px;
  5693. font-family:'微软雅黑';
  5694. font-weight:400;
  5695. font-style:normal;
  5696. color:rgba(0, 0, 0, 0.647058823529412);
  5697. line-height:22px;
  5698. }
  5699. #u2024_text {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:4px;
  5703. top:2px;
  5704. width:32px;
  5705. white-space:nowrap;
  5706. }
  5707. #u2025_img {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:10px;
  5713. height:11px;
  5714. }
  5715. #u2025 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:1123px;
  5719. top:241px;
  5720. width:10px;
  5721. height:11px;
  5722. font-family:'微软雅黑';
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:28px;
  5726. color:rgba(82, 196, 26, 0.647058823529412);
  5727. }
  5728. #u2025_text {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:0px;
  5734. visibility:hidden;
  5735. word-wrap:break-word;
  5736. }
  5737. #u2026_div {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:57px;
  5743. height:57px;
  5744. background:inherit;
  5745. background-color:rgba(255, 255, 255, 0);
  5746. border:none;
  5747. border-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. font-family:'FontAwesome';
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:16px;
  5755. color:rgba(153, 153, 153, 0.647058823529412);
  5756. line-height:22px;
  5757. }
  5758. #u2026 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:1201px;
  5762. top:121px;
  5763. width:57px;
  5764. height:57px;
  5765. font-family:'FontAwesome';
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:16px;
  5769. color:rgba(153, 153, 153, 0.647058823529412);
  5770. line-height:22px;
  5771. }
  5772. #u2026_text {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:2px;
  5776. top:18px;
  5777. width:53px;
  5778. word-wrap:break-word;
  5779. }
  5780. #u2027 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:0px;
  5786. height:0px;
  5787. }
  5788. #u2028-1 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:0px;
  5794. height:0px;
  5795. }
  5796. #u2028-2 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:0px;
  5802. height:0px;
  5803. }
  5804. #u2028-3 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:0px;
  5810. height:0px;
  5811. }
  5812. #u2028-4 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:0px;
  5818. height:0px;
  5819. }
  5820. #u2028-5 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:0px;
  5826. height:0px;
  5827. }
  5828. #u2028-6 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:0px;
  5834. height:0px;
  5835. }
  5836. #u2028-7 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:0px;
  5842. height:0px;
  5843. }
  5844. #u2028-8 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:0px;
  5850. height:0px;
  5851. }
  5852. #u2028 {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:923px;
  5856. top:775px;
  5857. width:0px;
  5858. height:0px;
  5859. background:inherit;
  5860. background-color:rgba(255, 255, 255, 0);
  5861. border:none;
  5862. border-radius:0px;
  5863. }
  5864. #u2029-1 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:0px;
  5870. height:0px;
  5871. }
  5872. #u2029-2 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:0px;
  5878. height:0px;
  5879. }
  5880. #u2029-3 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:0px;
  5886. height:0px;
  5887. }
  5888. #u2029-4 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:0px;
  5894. height:0px;
  5895. }
  5896. #u2029-5 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:0px;
  5902. height:0px;
  5903. }
  5904. #u2029-6 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:0px;
  5910. height:0px;
  5911. }
  5912. #u2029-7 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:0px;
  5918. height:0px;
  5919. }
  5920. #u2029-8 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:0px;
  5926. height:0px;
  5927. }
  5928. #u2029-9 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:0px;
  5934. height:0px;
  5935. }
  5936. #u2029-10 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:0px;
  5942. height:0px;
  5943. }
  5944. #u2029-11 {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:0px;
  5950. height:0px;
  5951. }
  5952. #u2029-12 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:0px;
  5958. height:0px;
  5959. }
  5960. #u2029 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:1227px;
  5964. top:322px;
  5965. width:0px;
  5966. height:0px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 0);
  5969. border:none;
  5970. border-radius:0px;
  5971. }
  5972. #u2030_img {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:755px;
  5978. height:428px;
  5979. }
  5980. #u2030 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:434px;
  5984. top:322px;
  5985. width:755px;
  5986. height:428px;
  5987. font-family:'微软雅黑';
  5988. font-weight:400;
  5989. font-style:normal;
  5990. }
  5991. #u2030_text {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:2px;
  5995. top:151px;
  5996. width:751px;
  5997. word-wrap:break-word;
  5998. }
  5999. #u2031_img {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:300px;
  6005. height:66px;
  6006. }
  6007. #u2031 {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:680px;
  6011. top:750px;
  6012. width:300px;
  6013. height:66px;
  6014. font-size:20px;
  6015. }
  6016. #u2031_text {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:2px;
  6020. top:22px;
  6021. width:296px;
  6022. word-wrap:break-word;
  6023. }
  6024. #u2032_img {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:1100px;
  6030. height:50px;
  6031. }
  6032. #u2032 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:263px;
  6036. top:61px;
  6037. width:1100px;
  6038. height:50px;
  6039. font-family:'微软雅黑 Regular', '微软雅黑';
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:14px;
  6043. text-align:left;
  6044. }
  6045. #u2032_text {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:20px;
  6049. top:16px;
  6050. width:1078px;
  6051. word-wrap:break-word;
  6052. }