styles.css 101 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1000px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u1 {
  16. position:absolute;
  17. left:0px;
  18. top:0px;
  19. width:1000px;
  20. height:80px;
  21. }
  22. #u1_img {
  23. position:absolute;
  24. left:0px;
  25. top:0px;
  26. width:1000px;
  27. height:80px;
  28. }
  29. #u2 {
  30. position:absolute;
  31. left:2px;
  32. top:32px;
  33. width:996px;
  34. visibility:hidden;
  35. word-wrap:break-word;
  36. }
  37. #u3 {
  38. position:absolute;
  39. left:710px;
  40. top:32px;
  41. width:66px;
  42. height:16px;
  43. }
  44. #u3_img {
  45. position:absolute;
  46. left:0px;
  47. top:0px;
  48. width:66px;
  49. height:16px;
  50. }
  51. #u4 {
  52. position:absolute;
  53. left:0px;
  54. top:0px;
  55. width:66px;
  56. white-space:nowrap;
  57. }
  58. #u5 {
  59. position:absolute;
  60. left:877px;
  61. top:32px;
  62. width:53px;
  63. height:16px;
  64. }
  65. #u5_img {
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:53px;
  70. height:16px;
  71. }
  72. #u6 {
  73. position:absolute;
  74. left:0px;
  75. top:0px;
  76. width:53px;
  77. white-space:nowrap;
  78. }
  79. #u7 {
  80. position:absolute;
  81. left:784px;
  82. top:32px;
  83. width:53px;
  84. height:16px;
  85. }
  86. #u7_img {
  87. position:absolute;
  88. left:0px;
  89. top:0px;
  90. width:53px;
  91. height:16px;
  92. }
  93. #u8 {
  94. position:absolute;
  95. left:0px;
  96. top:0px;
  97. width:53px;
  98. white-space:nowrap;
  99. }
  100. #u9 {
  101. position:absolute;
  102. left:20px;
  103. top:15px;
  104. width:140px;
  105. height:50px;
  106. }
  107. #u9_img {
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:140px;
  112. height:50px;
  113. }
  114. #u10 {
  115. position:absolute;
  116. left:2px;
  117. top:17px;
  118. width:136px;
  119. visibility:hidden;
  120. word-wrap:break-word;
  121. }
  122. #u11 {
  123. position:absolute;
  124. left:237px;
  125. top:22px;
  126. width:169px;
  127. height:34px;
  128. font-family:'新細明體-ExtB Regular', '新細明體-ExtB';
  129. font-weight:400;
  130. font-style:normal;
  131. font-size:28px;
  132. }
  133. #u11_img {
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:169px;
  138. height:34px;
  139. }
  140. #u12 {
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:169px;
  145. white-space:nowrap;
  146. }
  147. #u13 {
  148. position:absolute;
  149. left:594px;
  150. top:32px;
  151. width:40px;
  152. height:16px;
  153. }
  154. #u13_img {
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:40px;
  159. height:16px;
  160. }
  161. #u14 {
  162. position:absolute;
  163. left:0px;
  164. top:0px;
  165. width:40px;
  166. white-space:nowrap;
  167. }
  168. #u15 {
  169. position:absolute;
  170. left:636px;
  171. top:32px;
  172. width:40px;
  173. height:16px;
  174. }
  175. #u15_img {
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:40px;
  180. height:16px;
  181. }
  182. #u16 {
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:40px;
  187. white-space:nowrap;
  188. }
  189. #u17 {
  190. position:absolute;
  191. left:10px;
  192. top:1032px;
  193. visibility:hidden;
  194. }
  195. #u17_state0 {
  196. position:relative;
  197. left:0px;
  198. top:0px;
  199. background-image:none;
  200. }
  201. #u17_state0_content {
  202. position:absolute;
  203. left:0px;
  204. top:0px;
  205. width:1px;
  206. height:1px;
  207. }
  208. #u18 {
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:310px;
  213. height:160px;
  214. }
  215. #u18_img {
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:310px;
  220. height:160px;
  221. }
  222. #u19 {
  223. position:absolute;
  224. left:2px;
  225. top:72px;
  226. width:306px;
  227. visibility:hidden;
  228. word-wrap:break-word;
  229. }
  230. #u20 {
  231. position:absolute;
  232. left:98px;
  233. top:44px;
  234. width:118px;
  235. height:16px;
  236. }
  237. #u20_img {
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:118px;
  242. height:16px;
  243. }
  244. #u21 {
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:118px;
  249. white-space:nowrap;
  250. }
  251. #u22 {
  252. position:absolute;
  253. left:110px;
  254. top:110px;
  255. width:70px;
  256. height:30px;
  257. }
  258. #u22_img {
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:70px;
  263. height:30px;
  264. }
  265. #u23 {
  266. position:absolute;
  267. left:2px;
  268. top:7px;
  269. width:66px;
  270. word-wrap:break-word;
  271. }
  272. #u24 {
  273. position:absolute;
  274. left:54px;
  275. top:70px;
  276. width:206px;
  277. height:16px;
  278. }
  279. #u24_img {
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:206px;
  284. height:16px;
  285. }
  286. #u25 {
  287. position:absolute;
  288. left:0px;
  289. top:0px;
  290. width:206px;
  291. white-space:nowrap;
  292. }
  293. #u17_state1 {
  294. position:relative;
  295. left:0px;
  296. top:0px;
  297. visibility:hidden;
  298. background-image:none;
  299. }
  300. #u17_state1_content {
  301. position:absolute;
  302. left:0px;
  303. top:0px;
  304. width:1px;
  305. height:1px;
  306. }
  307. #u26 {
  308. position:absolute;
  309. left:0px;
  310. top:-20px;
  311. width:400px;
  312. height:330px;
  313. }
  314. #u26_img {
  315. position:absolute;
  316. left:0px;
  317. top:0px;
  318. width:400px;
  319. height:330px;
  320. }
  321. #u27 {
  322. position:absolute;
  323. left:2px;
  324. top:157px;
  325. width:396px;
  326. visibility:hidden;
  327. word-wrap:break-word;
  328. }
  329. #u28 {
  330. position:absolute;
  331. left:48px;
  332. top:244px;
  333. width:104px;
  334. height:45px;
  335. }
  336. #u28_img {
  337. position:absolute;
  338. left:0px;
  339. top:0px;
  340. width:104px;
  341. height:45px;
  342. }
  343. #u29 {
  344. position:absolute;
  345. left:2px;
  346. top:14px;
  347. width:100px;
  348. word-wrap:break-word;
  349. }
  350. #u30 {
  351. position:absolute;
  352. left:176px;
  353. top:244px;
  354. width:104px;
  355. height:45px;
  356. }
  357. #u30_img {
  358. position:absolute;
  359. left:0px;
  360. top:0px;
  361. width:104px;
  362. height:45px;
  363. }
  364. #u31 {
  365. position:absolute;
  366. left:2px;
  367. top:14px;
  368. width:100px;
  369. word-wrap:break-word;
  370. }
  371. #u32 {
  372. position:absolute;
  373. left:51px;
  374. top:18px;
  375. width:71px;
  376. height:20px;
  377. font-family:'微软雅黑 Bold', '微软雅黑';
  378. font-weight:700;
  379. font-style:normal;
  380. font-size:14px;
  381. }
  382. #u32_img {
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:71px;
  387. height:20px;
  388. }
  389. #u33 {
  390. position:absolute;
  391. left:0px;
  392. top:0px;
  393. width:71px;
  394. white-space:nowrap;
  395. }
  396. #u34 {
  397. position:absolute;
  398. left:51px;
  399. top:48px;
  400. width:71px;
  401. height:20px;
  402. font-family:'微软雅黑 Bold', '微软雅黑';
  403. font-weight:700;
  404. font-style:normal;
  405. font-size:14px;
  406. }
  407. #u34_img {
  408. position:absolute;
  409. left:0px;
  410. top:0px;
  411. width:71px;
  412. height:20px;
  413. }
  414. #u35 {
  415. position:absolute;
  416. left:0px;
  417. top:0px;
  418. width:71px;
  419. white-space:nowrap;
  420. }
  421. #u36 {
  422. position:absolute;
  423. left:120px;
  424. top:18px;
  425. width:230px;
  426. height:22px;
  427. }
  428. #u36_input {
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:230px;
  433. height:22px;
  434. font-family:'Arial Normal', 'Arial';
  435. font-weight:400;
  436. font-style:normal;
  437. font-size:13px;
  438. text-decoration:none;
  439. color:#000000;
  440. }
  441. #u36_input:disabled {
  442. color:grayText;
  443. }
  444. #u37 {
  445. position:absolute;
  446. left:120px;
  447. top:48px;
  448. width:230px;
  449. height:22px;
  450. }
  451. #u37_input {
  452. position:absolute;
  453. left:0px;
  454. top:0px;
  455. width:230px;
  456. height:22px;
  457. font-family:'Arial Normal', 'Arial';
  458. font-weight:400;
  459. font-style:normal;
  460. font-size:13px;
  461. text-decoration:none;
  462. color:#000000;
  463. }
  464. #u37_input:disabled {
  465. color:grayText;
  466. }
  467. #u38 {
  468. position:absolute;
  469. left:51px;
  470. top:80px;
  471. width:71px;
  472. height:20px;
  473. font-family:'微软雅黑 Bold', '微软雅黑';
  474. font-weight:700;
  475. font-style:normal;
  476. font-size:14px;
  477. }
  478. #u38_img {
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:71px;
  483. height:20px;
  484. }
  485. #u39 {
  486. position:absolute;
  487. left:0px;
  488. top:0px;
  489. width:71px;
  490. white-space:nowrap;
  491. }
  492. #u40 {
  493. position:absolute;
  494. left:120px;
  495. top:80px;
  496. width:230px;
  497. height:22px;
  498. }
  499. #u40_input {
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:230px;
  504. height:22px;
  505. font-family:'Arial Normal', 'Arial';
  506. font-weight:400;
  507. font-style:normal;
  508. font-size:13px;
  509. text-decoration:none;
  510. color:#000000;
  511. }
  512. #u40_input:disabled {
  513. color:grayText;
  514. }
  515. #u41 {
  516. position:absolute;
  517. left:51px;
  518. top:112px;
  519. width:71px;
  520. height:20px;
  521. font-family:'微软雅黑 Bold', '微软雅黑';
  522. font-weight:700;
  523. font-style:normal;
  524. font-size:14px;
  525. }
  526. #u41_img {
  527. position:absolute;
  528. left:0px;
  529. top:0px;
  530. width:71px;
  531. height:20px;
  532. }
  533. #u42 {
  534. position:absolute;
  535. left:0px;
  536. top:0px;
  537. width:71px;
  538. white-space:nowrap;
  539. }
  540. #u43 {
  541. position:absolute;
  542. left:127px;
  543. top:112px;
  544. width:109px;
  545. height:20px;
  546. font-family:'微软雅黑 Regular', '微软雅黑';
  547. font-weight:400;
  548. font-style:normal;
  549. font-size:14px;
  550. }
  551. #u43_img {
  552. position:absolute;
  553. left:0px;
  554. top:0px;
  555. width:109px;
  556. height:20px;
  557. }
  558. #u44 {
  559. position:absolute;
  560. left:0px;
  561. top:0px;
  562. width:109px;
  563. word-wrap:break-word;
  564. }
  565. #u45 {
  566. position:absolute;
  567. left:51px;
  568. top:135px;
  569. width:71px;
  570. height:20px;
  571. font-family:'微软雅黑 Bold', '微软雅黑';
  572. font-weight:700;
  573. font-style:normal;
  574. font-size:14px;
  575. }
  576. #u45_img {
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:71px;
  581. height:20px;
  582. }
  583. #u46 {
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:71px;
  588. white-space:nowrap;
  589. }
  590. #u47 {
  591. position:absolute;
  592. left:127px;
  593. top:134px;
  594. width:109px;
  595. height:20px;
  596. font-family:'微软雅黑 Regular', '微软雅黑';
  597. font-weight:400;
  598. font-style:normal;
  599. font-size:14px;
  600. }
  601. #u47_img {
  602. position:absolute;
  603. left:0px;
  604. top:0px;
  605. width:109px;
  606. height:20px;
  607. }
  608. #u48 {
  609. position:absolute;
  610. left:0px;
  611. top:0px;
  612. width:109px;
  613. word-wrap:break-word;
  614. }
  615. #u49 {
  616. position:absolute;
  617. left:51px;
  618. top:158px;
  619. width:71px;
  620. height:20px;
  621. font-family:'微软雅黑 Bold', '微软雅黑';
  622. font-weight:700;
  623. font-style:normal;
  624. font-size:14px;
  625. }
  626. #u49_img {
  627. position:absolute;
  628. left:0px;
  629. top:0px;
  630. width:71px;
  631. height:20px;
  632. }
  633. #u50 {
  634. position:absolute;
  635. left:0px;
  636. top:0px;
  637. width:71px;
  638. white-space:nowrap;
  639. }
  640. #u51 {
  641. position:absolute;
  642. left:126px;
  643. top:157px;
  644. width:100px;
  645. height:20px;
  646. font-family:'微软雅黑 Regular', '微软雅黑';
  647. font-weight:400;
  648. font-style:normal;
  649. font-size:14px;
  650. }
  651. #u51_img {
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:100px;
  656. height:20px;
  657. }
  658. #u52 {
  659. position:absolute;
  660. left:0px;
  661. top:0px;
  662. width:100px;
  663. word-wrap:break-word;
  664. }
  665. #u53 {
  666. position:absolute;
  667. left:51px;
  668. top:181px;
  669. width:99px;
  670. height:20px;
  671. font-family:'微软雅黑 Bold', '微软雅黑';
  672. font-weight:700;
  673. font-style:normal;
  674. font-size:14px;
  675. }
  676. #u53_img {
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:99px;
  681. height:20px;
  682. }
  683. #u54 {
  684. position:absolute;
  685. left:0px;
  686. top:0px;
  687. width:99px;
  688. white-space:nowrap;
  689. }
  690. #u55 {
  691. position:absolute;
  692. left:153px;
  693. top:180px;
  694. width:108px;
  695. height:20px;
  696. font-family:'微软雅黑 Regular', '微软雅黑';
  697. font-weight:400;
  698. font-style:normal;
  699. font-size:14px;
  700. }
  701. #u55_img {
  702. position:absolute;
  703. left:0px;
  704. top:0px;
  705. width:108px;
  706. height:20px;
  707. }
  708. #u56 {
  709. position:absolute;
  710. left:0px;
  711. top:0px;
  712. width:108px;
  713. word-wrap:break-word;
  714. }
  715. #u57 {
  716. position:absolute;
  717. left:51px;
  718. top:210px;
  719. width:57px;
  720. height:20px;
  721. font-family:'微软雅黑 Bold', '微软雅黑';
  722. font-weight:700;
  723. font-style:normal;
  724. font-size:14px;
  725. }
  726. #u57_img {
  727. position:absolute;
  728. left:0px;
  729. top:0px;
  730. width:57px;
  731. height:20px;
  732. }
  733. #u58 {
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:57px;
  738. white-space:nowrap;
  739. }
  740. #u59 {
  741. position:absolute;
  742. left:108px;
  743. top:210px;
  744. width:53px;
  745. height:20px;
  746. font-family:'微软雅黑 Regular', '微软雅黑';
  747. font-weight:400;
  748. font-style:normal;
  749. font-size:14px;
  750. }
  751. #u59_img {
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:53px;
  756. height:20px;
  757. }
  758. #u60 {
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:53px;
  763. word-wrap:break-word;
  764. }
  765. #u61 {
  766. position:absolute;
  767. left:190px;
  768. top:210px;
  769. width:71px;
  770. height:20px;
  771. font-family:'微软雅黑 Bold', '微软雅黑';
  772. font-weight:700;
  773. font-style:normal;
  774. font-size:14px;
  775. }
  776. #u61_img {
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:71px;
  781. height:20px;
  782. }
  783. #u62 {
  784. position:absolute;
  785. left:0px;
  786. top:0px;
  787. width:71px;
  788. white-space:nowrap;
  789. }
  790. #u63 {
  791. position:absolute;
  792. left:271px;
  793. top:210px;
  794. width:89px;
  795. height:20px;
  796. font-family:'微软雅黑 Regular', '微软雅黑';
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:14px;
  800. }
  801. #u63_img {
  802. position:absolute;
  803. left:0px;
  804. top:0px;
  805. width:89px;
  806. height:20px;
  807. }
  808. #u64 {
  809. position:absolute;
  810. left:0px;
  811. top:0px;
  812. width:89px;
  813. word-wrap:break-word;
  814. }
  815. #u17_state2 {
  816. position:relative;
  817. left:0px;
  818. top:0px;
  819. visibility:hidden;
  820. background-image:none;
  821. }
  822. #u17_state2_content {
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:1px;
  827. height:1px;
  828. }
  829. #u65 {
  830. position:absolute;
  831. left:0px;
  832. top:-2px;
  833. width:350px;
  834. height:160px;
  835. }
  836. #u65_img {
  837. position:absolute;
  838. left:0px;
  839. top:0px;
  840. width:350px;
  841. height:160px;
  842. }
  843. #u66 {
  844. position:absolute;
  845. left:2px;
  846. top:72px;
  847. width:346px;
  848. visibility:hidden;
  849. word-wrap:break-word;
  850. }
  851. #u67 {
  852. position:absolute;
  853. left:40px;
  854. top:20px;
  855. width:257px;
  856. height:63px;
  857. font-family:'微软雅黑 Regular', '微软雅黑';
  858. font-weight:400;
  859. font-style:normal;
  860. font-size:16px;
  861. color:#FFFFFF;
  862. }
  863. #u67_img {
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:257px;
  868. height:63px;
  869. }
  870. #u68 {
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:257px;
  875. white-space:nowrap;
  876. }
  877. #u69 {
  878. position:absolute;
  879. left:60px;
  880. top:110px;
  881. width:70px;
  882. height:30px;
  883. }
  884. #u69_img {
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:70px;
  889. height:30px;
  890. }
  891. #u70 {
  892. position:absolute;
  893. left:2px;
  894. top:7px;
  895. width:66px;
  896. word-wrap:break-word;
  897. }
  898. #u71 {
  899. position:absolute;
  900. left:200px;
  901. top:110px;
  902. width:70px;
  903. height:30px;
  904. }
  905. #u71_img {
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:70px;
  910. height:30px;
  911. }
  912. #u72 {
  913. position:absolute;
  914. left:2px;
  915. top:7px;
  916. width:66px;
  917. word-wrap:break-word;
  918. }
  919. #u17_state3 {
  920. position:relative;
  921. left:0px;
  922. top:0px;
  923. visibility:hidden;
  924. background-image:none;
  925. }
  926. #u17_state3_content {
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:1px;
  931. height:1px;
  932. }
  933. #u73 {
  934. position:absolute;
  935. left:0px;
  936. top:20px;
  937. width:700px;
  938. height:400px;
  939. }
  940. #u73_img {
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:700px;
  945. height:400px;
  946. }
  947. #u74 {
  948. position:absolute;
  949. left:2px;
  950. top:192px;
  951. width:696px;
  952. visibility:hidden;
  953. word-wrap:break-word;
  954. }
  955. #u75 {
  956. position:absolute;
  957. left:30px;
  958. top:8px;
  959. width:97px;
  960. height:21px;
  961. font-family:'微软雅黑 Bold', '微软雅黑';
  962. font-weight:700;
  963. font-style:normal;
  964. font-size:16px;
  965. }
  966. #u75_img {
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:97px;
  971. height:21px;
  972. }
  973. #u76 {
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:97px;
  978. white-space:nowrap;
  979. }
  980. #u77 {
  981. position:absolute;
  982. left:52px;
  983. top:44px;
  984. width:66px;
  985. height:16px;
  986. }
  987. #u77_img {
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:66px;
  992. height:16px;
  993. }
  994. #u78 {
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:66px;
  999. white-space:nowrap;
  1000. }
  1001. #u79 {
  1002. position:absolute;
  1003. left:128px;
  1004. top:44px;
  1005. width:200px;
  1006. height:16px;
  1007. }
  1008. #u79_img {
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:200px;
  1013. height:16px;
  1014. }
  1015. #u80 {
  1016. position:absolute;
  1017. left:0px;
  1018. top:0px;
  1019. width:200px;
  1020. word-wrap:break-word;
  1021. }
  1022. #u81 {
  1023. position:absolute;
  1024. left:52px;
  1025. top:126px;
  1026. width:66px;
  1027. height:16px;
  1028. }
  1029. #u81_img {
  1030. position:absolute;
  1031. left:0px;
  1032. top:0px;
  1033. width:66px;
  1034. height:16px;
  1035. }
  1036. #u82 {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:66px;
  1041. white-space:nowrap;
  1042. }
  1043. #u83 {
  1044. position:absolute;
  1045. left:128px;
  1046. top:122px;
  1047. width:122px;
  1048. height:25px;
  1049. }
  1050. #u83_input {
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:122px;
  1055. height:25px;
  1056. font-family:'微软雅黑 Regular', '微软雅黑';
  1057. font-weight:400;
  1058. font-style:normal;
  1059. font-size:13px;
  1060. text-decoration:none;
  1061. color:#000000;
  1062. text-align:left;
  1063. }
  1064. #u84 {
  1065. position:absolute;
  1066. left:260px;
  1067. top:122px;
  1068. width:70px;
  1069. height:25px;
  1070. }
  1071. #u84_input {
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:70px;
  1076. height:25px;
  1077. font-family:'微软雅黑 Regular', '微软雅黑';
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:13px;
  1081. text-decoration:none;
  1082. color:#000000;
  1083. text-align:left;
  1084. }
  1085. #u85 {
  1086. position:absolute;
  1087. left:52px;
  1088. top:156px;
  1089. width:66px;
  1090. height:16px;
  1091. }
  1092. #u85_img {
  1093. position:absolute;
  1094. left:0px;
  1095. top:0px;
  1096. width:66px;
  1097. height:16px;
  1098. }
  1099. #u86 {
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:66px;
  1104. white-space:nowrap;
  1105. }
  1106. #u87 {
  1107. position:absolute;
  1108. left:128px;
  1109. top:157px;
  1110. width:200px;
  1111. height:22px;
  1112. }
  1113. #u87_input {
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:200px;
  1118. height:22px;
  1119. font-family:'Arial Normal', 'Arial';
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:13px;
  1123. text-decoration:none;
  1124. color:#000000;
  1125. }
  1126. #u87_input:disabled {
  1127. color:grayText;
  1128. }
  1129. #u88 {
  1130. position:absolute;
  1131. left:52px;
  1132. top:72px;
  1133. width:66px;
  1134. height:10px;
  1135. }
  1136. #u88_img {
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:66px;
  1141. height:10px;
  1142. }
  1143. #u89 {
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:66px;
  1148. white-space:nowrap;
  1149. }
  1150. #u90 {
  1151. position:absolute;
  1152. left:52px;
  1153. top:229px;
  1154. width:53px;
  1155. height:16px;
  1156. }
  1157. #u90_img {
  1158. position:absolute;
  1159. left:0px;
  1160. top:0px;
  1161. width:53px;
  1162. height:16px;
  1163. }
  1164. #u91 {
  1165. position:absolute;
  1166. left:0px;
  1167. top:0px;
  1168. width:53px;
  1169. white-space:nowrap;
  1170. }
  1171. #u92 {
  1172. position:absolute;
  1173. left:128px;
  1174. top:192px;
  1175. width:200px;
  1176. height:22px;
  1177. }
  1178. #u92_input {
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:200px;
  1183. height:22px;
  1184. font-family:'Arial Normal', 'Arial';
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:13px;
  1188. text-decoration:none;
  1189. color:#000000;
  1190. }
  1191. #u92_input:disabled {
  1192. color:grayText;
  1193. }
  1194. #u93 {
  1195. position:absolute;
  1196. left:52px;
  1197. top:98px;
  1198. width:66px;
  1199. height:16px;
  1200. }
  1201. #u93_img {
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:66px;
  1206. height:16px;
  1207. }
  1208. #u94 {
  1209. position:absolute;
  1210. left:0px;
  1211. top:0px;
  1212. width:66px;
  1213. white-space:nowrap;
  1214. }
  1215. #u95 {
  1216. position:absolute;
  1217. left:128px;
  1218. top:98px;
  1219. width:66px;
  1220. height:16px;
  1221. }
  1222. #u95_img {
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:66px;
  1227. height:16px;
  1228. }
  1229. #u96 {
  1230. position:absolute;
  1231. left:0px;
  1232. top:0px;
  1233. width:66px;
  1234. white-space:nowrap;
  1235. }
  1236. #u97 {
  1237. position:absolute;
  1238. left:389px;
  1239. top:98px;
  1240. width:66px;
  1241. height:16px;
  1242. }
  1243. #u97_img {
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:66px;
  1248. height:16px;
  1249. }
  1250. #u98 {
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:66px;
  1255. white-space:nowrap;
  1256. }
  1257. #u99 {
  1258. position:absolute;
  1259. left:465px;
  1260. top:98px;
  1261. width:32px;
  1262. height:16px;
  1263. }
  1264. #u99_img {
  1265. position:absolute;
  1266. left:0px;
  1267. top:0px;
  1268. width:32px;
  1269. height:16px;
  1270. }
  1271. #u100 {
  1272. position:absolute;
  1273. left:0px;
  1274. top:0px;
  1275. width:32px;
  1276. white-space:nowrap;
  1277. }
  1278. #u101 {
  1279. position:absolute;
  1280. left:52px;
  1281. top:264px;
  1282. width:66px;
  1283. height:16px;
  1284. }
  1285. #u101_img {
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:66px;
  1290. height:16px;
  1291. }
  1292. #u102 {
  1293. position:absolute;
  1294. left:0px;
  1295. top:0px;
  1296. width:66px;
  1297. white-space:nowrap;
  1298. }
  1299. #u103 {
  1300. position:absolute;
  1301. left:52px;
  1302. top:289px;
  1303. width:40px;
  1304. height:16px;
  1305. }
  1306. #u103_img {
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:40px;
  1311. height:16px;
  1312. }
  1313. #u104 {
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:40px;
  1318. white-space:nowrap;
  1319. }
  1320. #u105 {
  1321. position:absolute;
  1322. left:52px;
  1323. top:189px;
  1324. width:66px;
  1325. height:16px;
  1326. }
  1327. #u105_img {
  1328. position:absolute;
  1329. left:0px;
  1330. top:0px;
  1331. width:66px;
  1332. height:16px;
  1333. }
  1334. #u106 {
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:66px;
  1339. white-space:nowrap;
  1340. }
  1341. #u107 {
  1342. position:absolute;
  1343. left:128px;
  1344. top:229px;
  1345. width:200px;
  1346. height:22px;
  1347. }
  1348. #u107_input {
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:200px;
  1353. height:22px;
  1354. font-family:'Arial Normal', 'Arial';
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:13px;
  1358. text-decoration:none;
  1359. color:#000000;
  1360. }
  1361. #u107_input:disabled {
  1362. color:grayText;
  1363. }
  1364. #u108 {
  1365. position:absolute;
  1366. left:340px;
  1367. top:126px;
  1368. width:53px;
  1369. height:16px;
  1370. }
  1371. #u108_img {
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:53px;
  1376. height:16px;
  1377. }
  1378. #u109 {
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:53px;
  1383. word-wrap:break-word;
  1384. }
  1385. #u110 {
  1386. position:absolute;
  1387. left:52px;
  1388. top:315px;
  1389. width:53px;
  1390. height:16px;
  1391. }
  1392. #u110_img {
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:53px;
  1397. height:16px;
  1398. }
  1399. #u111 {
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:53px;
  1404. white-space:nowrap;
  1405. }
  1406. #u112 {
  1407. position:absolute;
  1408. left:297px;
  1409. top:315px;
  1410. width:66px;
  1411. height:16px;
  1412. }
  1413. #u112_img {
  1414. position:absolute;
  1415. left:0px;
  1416. top:0px;
  1417. width:66px;
  1418. height:16px;
  1419. }
  1420. #u113 {
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:66px;
  1425. white-space:nowrap;
  1426. }
  1427. #u114 {
  1428. position:absolute;
  1429. left:534px;
  1430. top:315px;
  1431. width:66px;
  1432. height:16px;
  1433. }
  1434. #u114_img {
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:66px;
  1439. height:16px;
  1440. }
  1441. #u115 {
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:66px;
  1446. white-space:nowrap;
  1447. }
  1448. #u116 {
  1449. position:absolute;
  1450. left:130px;
  1451. top:315px;
  1452. width:31px;
  1453. height:16px;
  1454. }
  1455. #u116_img {
  1456. position:absolute;
  1457. left:0px;
  1458. top:0px;
  1459. width:31px;
  1460. height:16px;
  1461. }
  1462. #u117 {
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:31px;
  1467. white-space:nowrap;
  1468. }
  1469. #u118 {
  1470. position:absolute;
  1471. left:373px;
  1472. top:315px;
  1473. width:48px;
  1474. height:16px;
  1475. }
  1476. #u118_img {
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:48px;
  1481. height:16px;
  1482. }
  1483. #u119 {
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:48px;
  1488. white-space:nowrap;
  1489. }
  1490. #u120 {
  1491. position:absolute;
  1492. left:600px;
  1493. top:315px;
  1494. width:65px;
  1495. height:16px;
  1496. }
  1497. #u120_img {
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:65px;
  1502. height:16px;
  1503. }
  1504. #u121 {
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:65px;
  1509. white-space:nowrap;
  1510. }
  1511. #u122 {
  1512. position:absolute;
  1513. left:240px;
  1514. top:361px;
  1515. width:100px;
  1516. height:30px;
  1517. }
  1518. #u122_img {
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:100px;
  1523. height:30px;
  1524. }
  1525. #u123 {
  1526. position:absolute;
  1527. left:2px;
  1528. top:7px;
  1529. width:96px;
  1530. word-wrap:break-word;
  1531. }
  1532. #u124 {
  1533. position:absolute;
  1534. left:373px;
  1535. top:361px;
  1536. width:100px;
  1537. height:30px;
  1538. }
  1539. #u124_img {
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:100px;
  1544. height:30px;
  1545. }
  1546. #u125 {
  1547. position:absolute;
  1548. left:2px;
  1549. top:7px;
  1550. width:96px;
  1551. word-wrap:break-word;
  1552. }
  1553. #u126 {
  1554. position:absolute;
  1555. left:128px;
  1556. top:264px;
  1557. width:197px;
  1558. height:16px;
  1559. }
  1560. #u126_img {
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:197px;
  1565. height:16px;
  1566. }
  1567. #u127 {
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:197px;
  1572. word-wrap:break-word;
  1573. }
  1574. #u128 {
  1575. position:absolute;
  1576. left:128px;
  1577. top:290px;
  1578. width:197px;
  1579. height:16px;
  1580. }
  1581. #u128_img {
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:197px;
  1586. height:16px;
  1587. }
  1588. #u129 {
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:197px;
  1593. word-wrap:break-word;
  1594. }
  1595. #u130 {
  1596. position:absolute;
  1597. left:389px;
  1598. top:72px;
  1599. width:66px;
  1600. height:10px;
  1601. font-family:'微软雅黑 Regular', '微软雅黑';
  1602. font-weight:400;
  1603. font-style:normal;
  1604. }
  1605. #u130_img {
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:66px;
  1610. height:10px;
  1611. }
  1612. #u131 {
  1613. position:absolute;
  1614. left:0px;
  1615. top:0px;
  1616. width:66px;
  1617. white-space:nowrap;
  1618. }
  1619. #u132 {
  1620. position:absolute;
  1621. left:465px;
  1622. top:72px;
  1623. width:185px;
  1624. height:19px;
  1625. font-family:'微软雅黑 Regular', '微软雅黑';
  1626. font-weight:400;
  1627. font-style:normal;
  1628. color:#000000;
  1629. }
  1630. #u132_img {
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:185px;
  1635. height:19px;
  1636. }
  1637. #u133 {
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:185px;
  1642. white-space:nowrap;
  1643. }
  1644. #u134 {
  1645. position:absolute;
  1646. left:128px;
  1647. top:68px;
  1648. width:202px;
  1649. height:22px;
  1650. }
  1651. #u134_input {
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:202px;
  1656. height:22px;
  1657. font-family:'Arial Normal', 'Arial';
  1658. font-weight:400;
  1659. font-style:normal;
  1660. font-size:13px;
  1661. text-decoration:none;
  1662. color:#000000;
  1663. }
  1664. #u134_input:disabled {
  1665. color:grayText;
  1666. }
  1667. #u17_state4 {
  1668. position:relative;
  1669. left:0px;
  1670. top:0px;
  1671. visibility:hidden;
  1672. background-image:none;
  1673. }
  1674. #u17_state4_content {
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:1px;
  1679. height:1px;
  1680. }
  1681. #u135 {
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:310px;
  1686. height:160px;
  1687. }
  1688. #u135_img {
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:310px;
  1693. height:160px;
  1694. }
  1695. #u136 {
  1696. position:absolute;
  1697. left:2px;
  1698. top:72px;
  1699. width:306px;
  1700. visibility:hidden;
  1701. word-wrap:break-word;
  1702. }
  1703. #u137 {
  1704. position:absolute;
  1705. left:64px;
  1706. top:44px;
  1707. width:183px;
  1708. height:16px;
  1709. }
  1710. #u137_img {
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:183px;
  1715. height:16px;
  1716. }
  1717. #u138 {
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:183px;
  1722. white-space:nowrap;
  1723. }
  1724. #u139 {
  1725. position:absolute;
  1726. left:50px;
  1727. top:110px;
  1728. width:70px;
  1729. height:30px;
  1730. }
  1731. #u139_img {
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:70px;
  1736. height:30px;
  1737. }
  1738. #u140 {
  1739. position:absolute;
  1740. left:2px;
  1741. top:7px;
  1742. width:66px;
  1743. word-wrap:break-word;
  1744. }
  1745. #u141 {
  1746. position:absolute;
  1747. left:180px;
  1748. top:110px;
  1749. width:70px;
  1750. height:30px;
  1751. }
  1752. #u141_img {
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:70px;
  1757. height:30px;
  1758. }
  1759. #u142 {
  1760. position:absolute;
  1761. left:2px;
  1762. top:7px;
  1763. width:66px;
  1764. word-wrap:break-word;
  1765. }
  1766. #u17_state5 {
  1767. position:relative;
  1768. left:0px;
  1769. top:0px;
  1770. visibility:hidden;
  1771. background-image:none;
  1772. }
  1773. #u17_state5_content {
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:1px;
  1778. height:1px;
  1779. }
  1780. #u143 {
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:310px;
  1785. height:160px;
  1786. }
  1787. #u143_img {
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:310px;
  1792. height:160px;
  1793. }
  1794. #u144 {
  1795. position:absolute;
  1796. left:2px;
  1797. top:72px;
  1798. width:306px;
  1799. visibility:hidden;
  1800. word-wrap:break-word;
  1801. }
  1802. #u145 {
  1803. position:absolute;
  1804. left:120px;
  1805. top:110px;
  1806. width:70px;
  1807. height:30px;
  1808. }
  1809. #u145_img {
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:70px;
  1814. height:30px;
  1815. }
  1816. #u146 {
  1817. position:absolute;
  1818. left:2px;
  1819. top:7px;
  1820. width:66px;
  1821. word-wrap:break-word;
  1822. }
  1823. #u147 {
  1824. position:absolute;
  1825. left:38px;
  1826. top:51px;
  1827. width:235px;
  1828. height:19px;
  1829. font-family:'微软雅黑 Regular', '微软雅黑';
  1830. font-weight:400;
  1831. font-style:normal;
  1832. color:#000000;
  1833. }
  1834. #u147_img {
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:235px;
  1839. height:19px;
  1840. }
  1841. #u148 {
  1842. position:absolute;
  1843. left:0px;
  1844. top:0px;
  1845. width:235px;
  1846. white-space:nowrap;
  1847. }
  1848. #u17_state6 {
  1849. position:relative;
  1850. left:0px;
  1851. top:0px;
  1852. visibility:hidden;
  1853. background-image:none;
  1854. }
  1855. #u17_state6_content {
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:1px;
  1860. height:1px;
  1861. }
  1862. #u149 {
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:310px;
  1867. height:160px;
  1868. }
  1869. #u149_img {
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:310px;
  1874. height:160px;
  1875. }
  1876. #u150 {
  1877. position:absolute;
  1878. left:2px;
  1879. top:72px;
  1880. width:306px;
  1881. visibility:hidden;
  1882. word-wrap:break-word;
  1883. }
  1884. #u151 {
  1885. position:absolute;
  1886. left:120px;
  1887. top:110px;
  1888. width:70px;
  1889. height:30px;
  1890. }
  1891. #u151_img {
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:70px;
  1896. height:30px;
  1897. }
  1898. #u152 {
  1899. position:absolute;
  1900. left:2px;
  1901. top:7px;
  1902. width:66px;
  1903. word-wrap:break-word;
  1904. }
  1905. #u153 {
  1906. position:absolute;
  1907. left:43px;
  1908. top:41px;
  1909. width:241px;
  1910. height:21px;
  1911. font-family:'微软雅黑 Regular', '微软雅黑';
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:16px;
  1915. color:#000000;
  1916. }
  1917. #u153_img {
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:241px;
  1922. height:21px;
  1923. }
  1924. #u154 {
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:241px;
  1929. white-space:nowrap;
  1930. }
  1931. #u17_state7 {
  1932. position:relative;
  1933. left:0px;
  1934. top:0px;
  1935. visibility:hidden;
  1936. background-image:none;
  1937. }
  1938. #u17_state7_content {
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:1px;
  1943. height:1px;
  1944. }
  1945. #u155 {
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:310px;
  1950. height:160px;
  1951. }
  1952. #u155_img {
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:310px;
  1957. height:160px;
  1958. }
  1959. #u156 {
  1960. position:absolute;
  1961. left:2px;
  1962. top:72px;
  1963. width:306px;
  1964. visibility:hidden;
  1965. word-wrap:break-word;
  1966. }
  1967. #u157 {
  1968. position:absolute;
  1969. left:120px;
  1970. top:110px;
  1971. width:70px;
  1972. height:30px;
  1973. }
  1974. #u157_img {
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:70px;
  1979. height:30px;
  1980. }
  1981. #u158 {
  1982. position:absolute;
  1983. left:2px;
  1984. top:7px;
  1985. width:66px;
  1986. word-wrap:break-word;
  1987. }
  1988. #u159 {
  1989. position:absolute;
  1990. left:60px;
  1991. top:30px;
  1992. width:209px;
  1993. height:42px;
  1994. font-family:'微软雅黑 Regular', '微软雅黑';
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:16px;
  1998. color:#000000;
  1999. }
  2000. #u159_img {
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:209px;
  2005. height:42px;
  2006. }
  2007. #u160 {
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:209px;
  2012. white-space:nowrap;
  2013. }
  2014. #u161 {
  2015. position:absolute;
  2016. left:35px;
  2017. top:93px;
  2018. width:90px;
  2019. height:40px;
  2020. font-family:'微软雅黑 Bold', '微软雅黑';
  2021. font-weight:700;
  2022. font-style:normal;
  2023. }
  2024. #u161_img {
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:90px;
  2029. height:40px;
  2030. }
  2031. #u162 {
  2032. position:absolute;
  2033. left:2px;
  2034. top:10px;
  2035. width:86px;
  2036. word-wrap:break-word;
  2037. }
  2038. #u163 {
  2039. position:absolute;
  2040. left:155px;
  2041. top:93px;
  2042. width:90px;
  2043. height:40px;
  2044. font-family:'微软雅黑 Bold', '微软雅黑';
  2045. font-weight:700;
  2046. font-style:normal;
  2047. }
  2048. #u163_img {
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:90px;
  2053. height:40px;
  2054. }
  2055. #u164 {
  2056. position:absolute;
  2057. left:2px;
  2058. top:10px;
  2059. width:86px;
  2060. word-wrap:break-word;
  2061. }
  2062. #u165 {
  2063. position:absolute;
  2064. left:275px;
  2065. top:93px;
  2066. width:90px;
  2067. height:40px;
  2068. font-family:'微软雅黑 Bold', '微软雅黑';
  2069. font-weight:700;
  2070. font-style:normal;
  2071. }
  2072. #u165_img {
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:90px;
  2077. height:40px;
  2078. }
  2079. #u166 {
  2080. position:absolute;
  2081. left:2px;
  2082. top:10px;
  2083. width:86px;
  2084. word-wrap:break-word;
  2085. }
  2086. #u167 {
  2087. position:absolute;
  2088. left:395px;
  2089. top:93px;
  2090. width:90px;
  2091. height:40px;
  2092. font-family:'微软雅黑 Bold', '微软雅黑';
  2093. font-weight:700;
  2094. font-style:normal;
  2095. }
  2096. #u167_img {
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:90px;
  2101. height:40px;
  2102. }
  2103. #u168 {
  2104. position:absolute;
  2105. left:2px;
  2106. top:10px;
  2107. width:86px;
  2108. word-wrap:break-word;
  2109. }
  2110. #u169 {
  2111. position:absolute;
  2112. left:515px;
  2113. top:93px;
  2114. width:90px;
  2115. height:40px;
  2116. font-family:'微软雅黑 Bold', '微软雅黑';
  2117. font-weight:700;
  2118. font-style:normal;
  2119. }
  2120. #u169_img {
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:90px;
  2125. height:40px;
  2126. }
  2127. #u170 {
  2128. position:absolute;
  2129. left:2px;
  2130. top:10px;
  2131. width:86px;
  2132. word-wrap:break-word;
  2133. }
  2134. #u171 {
  2135. position:absolute;
  2136. left:0px;
  2137. top:145px;
  2138. }
  2139. #u171_state0 {
  2140. position:relative;
  2141. left:0px;
  2142. top:0px;
  2143. background-image:none;
  2144. }
  2145. #u171_state0_content {
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:1px;
  2150. height:1px;
  2151. }
  2152. #u172 {
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:1000px;
  2157. height:50px;
  2158. }
  2159. #u172_img {
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:1000px;
  2164. height:50px;
  2165. }
  2166. #u173 {
  2167. position:absolute;
  2168. left:2px;
  2169. top:17px;
  2170. width:996px;
  2171. visibility:hidden;
  2172. word-wrap:break-word;
  2173. }
  2174. #u174 {
  2175. position:absolute;
  2176. left:0px;
  2177. top:50px;
  2178. width:1000px;
  2179. height:790px;
  2180. }
  2181. #u174_img {
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:1000px;
  2186. height:790px;
  2187. }
  2188. #u175 {
  2189. position:absolute;
  2190. left:2px;
  2191. top:387px;
  2192. width:996px;
  2193. visibility:hidden;
  2194. word-wrap:break-word;
  2195. }
  2196. #u176 {
  2197. position:absolute;
  2198. left:20px;
  2199. top:18px;
  2200. width:105px;
  2201. height:16px;
  2202. color:#FF0000;
  2203. }
  2204. #u176_img {
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:105px;
  2209. height:16px;
  2210. }
  2211. #u177 {
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:105px;
  2216. white-space:nowrap;
  2217. }
  2218. #u178 {
  2219. position:absolute;
  2220. left:135px;
  2221. top:18px;
  2222. width:92px;
  2223. height:16px;
  2224. color:#FF0000;
  2225. }
  2226. #u178_img {
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:92px;
  2231. height:16px;
  2232. }
  2233. #u179 {
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:92px;
  2238. white-space:nowrap;
  2239. }
  2240. #u180 {
  2241. position:absolute;
  2242. left:830px;
  2243. top:13px;
  2244. width:70px;
  2245. height:25px;
  2246. }
  2247. #u180_input {
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:70px;
  2252. height:25px;
  2253. font-family:'Arial Normal', 'Arial';
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:13px;
  2257. text-decoration:none;
  2258. color:#000000;
  2259. text-align:center;
  2260. }
  2261. #u181 {
  2262. position:absolute;
  2263. left:920px;
  2264. top:13px;
  2265. width:70px;
  2266. height:25px;
  2267. }
  2268. #u181_input {
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:70px;
  2273. height:25px;
  2274. font-family:'Arial Normal', 'Arial';
  2275. font-weight:400;
  2276. font-style:normal;
  2277. font-size:13px;
  2278. text-decoration:none;
  2279. color:#000000;
  2280. text-align:center;
  2281. }
  2282. #u171_state1 {
  2283. position:relative;
  2284. left:0px;
  2285. top:0px;
  2286. visibility:hidden;
  2287. background-image:none;
  2288. }
  2289. #u171_state1_content {
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:1px;
  2294. height:1px;
  2295. }
  2296. #u182 {
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:1000px;
  2301. height:50px;
  2302. }
  2303. #u182_img {
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:1000px;
  2308. height:50px;
  2309. }
  2310. #u183 {
  2311. position:absolute;
  2312. left:2px;
  2313. top:17px;
  2314. width:996px;
  2315. visibility:hidden;
  2316. word-wrap:break-word;
  2317. }
  2318. #u184 {
  2319. position:absolute;
  2320. left:0px;
  2321. top:121px;
  2322. width:1000px;
  2323. height:90px;
  2324. }
  2325. .u185 {
  2326. position:absolute;
  2327. left:60px;
  2328. top:0px;
  2329. width:80px;
  2330. height:30px;
  2331. font-family:'微软雅黑 Regular', '微软雅黑';
  2332. font-weight:400;
  2333. font-style:normal;
  2334. }
  2335. .u185_img {
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:80px;
  2340. height:30px;
  2341. }
  2342. .u186 {
  2343. position:absolute;
  2344. left:2px;
  2345. top:7px;
  2346. width:76px;
  2347. visibility:hidden;
  2348. word-wrap:break-word;
  2349. }
  2350. .u187 {
  2351. position:absolute;
  2352. left:140px;
  2353. top:0px;
  2354. width:208px;
  2355. height:30px;
  2356. font-family:'微软雅黑 Regular', '微软雅黑';
  2357. font-weight:400;
  2358. font-style:normal;
  2359. }
  2360. .u187_img {
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:208px;
  2365. height:30px;
  2366. }
  2367. .u188 {
  2368. position:absolute;
  2369. left:2px;
  2370. top:7px;
  2371. width:204px;
  2372. visibility:hidden;
  2373. word-wrap:break-word;
  2374. }
  2375. .u189 {
  2376. position:absolute;
  2377. left:668px;
  2378. top:0px;
  2379. width:52px;
  2380. height:30px;
  2381. font-family:'微软雅黑 Regular', '微软雅黑';
  2382. font-weight:400;
  2383. font-style:normal;
  2384. }
  2385. .u189_img {
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:52px;
  2390. height:30px;
  2391. }
  2392. .u190 {
  2393. position:absolute;
  2394. left:2px;
  2395. top:7px;
  2396. width:48px;
  2397. visibility:hidden;
  2398. word-wrap:break-word;
  2399. }
  2400. .u191 {
  2401. position:absolute;
  2402. left:475px;
  2403. top:0px;
  2404. width:101px;
  2405. height:30px;
  2406. font-family:'微软雅黑 Regular', '微软雅黑';
  2407. font-weight:400;
  2408. font-style:normal;
  2409. }
  2410. .u191_img {
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:101px;
  2415. height:30px;
  2416. }
  2417. .u192 {
  2418. position:absolute;
  2419. left:2px;
  2420. top:7px;
  2421. width:97px;
  2422. visibility:hidden;
  2423. word-wrap:break-word;
  2424. }
  2425. .u193 {
  2426. position:absolute;
  2427. left:10px;
  2428. top:7px;
  2429. width:20px;
  2430. height:16px;
  2431. }
  2432. .u194 {
  2433. position:absolute;
  2434. left:16px;
  2435. top:0px;
  2436. width:2px;
  2437. visibility:hidden;
  2438. word-wrap:break-word;
  2439. }
  2440. .u193_input {
  2441. position:absolute;
  2442. left:-3px;
  2443. top:-2px;
  2444. }
  2445. .u195 {
  2446. position:absolute;
  2447. left:900px;
  2448. top:0px;
  2449. width:100px;
  2450. height:30px;
  2451. font-family:'微软雅黑 Regular', '微软雅黑';
  2452. font-weight:400;
  2453. font-style:normal;
  2454. }
  2455. .u195_img {
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:100px;
  2460. height:30px;
  2461. }
  2462. .u196 {
  2463. position:absolute;
  2464. left:2px;
  2465. top:7px;
  2466. width:96px;
  2467. visibility:hidden;
  2468. word-wrap:break-word;
  2469. }
  2470. .u197 {
  2471. position:absolute;
  2472. left:348px;
  2473. top:0px;
  2474. width:127px;
  2475. height:30px;
  2476. font-family:'微软雅黑 Regular', '微软雅黑';
  2477. font-weight:400;
  2478. font-style:normal;
  2479. }
  2480. .u197_img {
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:127px;
  2485. height:30px;
  2486. }
  2487. .u198 {
  2488. position:absolute;
  2489. left:2px;
  2490. top:7px;
  2491. width:123px;
  2492. visibility:hidden;
  2493. word-wrap:break-word;
  2494. }
  2495. .u199 {
  2496. position:absolute;
  2497. left:30px;
  2498. top:0px;
  2499. width:30px;
  2500. height:30px;
  2501. font-family:'微软雅黑 Regular', '微软雅黑';
  2502. font-weight:400;
  2503. font-style:normal;
  2504. }
  2505. .u199_img {
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:30px;
  2510. height:30px;
  2511. }
  2512. .u200 {
  2513. position:absolute;
  2514. left:2px;
  2515. top:7px;
  2516. width:26px;
  2517. visibility:hidden;
  2518. word-wrap:break-word;
  2519. }
  2520. .u201 {
  2521. position:absolute;
  2522. left:576px;
  2523. top:0px;
  2524. width:92px;
  2525. height:30px;
  2526. font-family:'微软雅黑 Regular', '微软雅黑';
  2527. font-weight:400;
  2528. font-style:normal;
  2529. }
  2530. .u201_img {
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:92px;
  2535. height:30px;
  2536. }
  2537. .u202 {
  2538. position:absolute;
  2539. left:2px;
  2540. top:7px;
  2541. width:88px;
  2542. visibility:hidden;
  2543. word-wrap:break-word;
  2544. }
  2545. .u203 {
  2546. position:absolute;
  2547. left:810px;
  2548. top:0px;
  2549. width:90px;
  2550. height:30px;
  2551. font-family:'微软雅黑 Regular', '微软雅黑';
  2552. font-weight:400;
  2553. font-style:normal;
  2554. }
  2555. .u203_img {
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:90px;
  2560. height:30px;
  2561. }
  2562. .u204 {
  2563. position:absolute;
  2564. left:2px;
  2565. top:7px;
  2566. width:86px;
  2567. visibility:hidden;
  2568. word-wrap:break-word;
  2569. }
  2570. .u205 {
  2571. position:absolute;
  2572. left:720px;
  2573. top:0px;
  2574. width:90px;
  2575. height:30px;
  2576. font-family:'微软雅黑 Regular', '微软雅黑';
  2577. font-weight:400;
  2578. font-style:normal;
  2579. }
  2580. .u205_img {
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:90px;
  2585. height:30px;
  2586. }
  2587. .u206 {
  2588. position:absolute;
  2589. left:2px;
  2590. top:7px;
  2591. width:86px;
  2592. visibility:hidden;
  2593. word-wrap:break-word;
  2594. }
  2595. #u207 {
  2596. position:absolute;
  2597. left:0px;
  2598. top:50px;
  2599. width:1000px;
  2600. height:40px;
  2601. }
  2602. #u207_img {
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:1000px;
  2607. height:40px;
  2608. }
  2609. #u208 {
  2610. position:absolute;
  2611. left:2px;
  2612. top:12px;
  2613. width:996px;
  2614. visibility:hidden;
  2615. word-wrap:break-word;
  2616. }
  2617. #u209 {
  2618. position:absolute;
  2619. left:15px;
  2620. top:55px;
  2621. width:119px;
  2622. height:27px;
  2623. font-family:'微软雅黑 Bold', '微软雅黑';
  2624. font-style:normal;
  2625. }
  2626. #u209_img {
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:119px;
  2631. height:27px;
  2632. }
  2633. #u210 {
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:119px;
  2638. word-wrap:break-word;
  2639. }
  2640. #u211 {
  2641. position:absolute;
  2642. left:673px;
  2643. top:56px;
  2644. width:49px;
  2645. height:30px;
  2646. }
  2647. #u211_img {
  2648. position:absolute;
  2649. left:0px;
  2650. top:0px;
  2651. width:49px;
  2652. height:30px;
  2653. }
  2654. #u212 {
  2655. position:absolute;
  2656. left:2px;
  2657. top:7px;
  2658. width:45px;
  2659. word-wrap:break-word;
  2660. }
  2661. #u213 {
  2662. position:absolute;
  2663. left:733px;
  2664. top:56px;
  2665. width:49px;
  2666. height:30px;
  2667. }
  2668. #u213_img {
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:49px;
  2673. height:30px;
  2674. }
  2675. #u214 {
  2676. position:absolute;
  2677. left:2px;
  2678. top:7px;
  2679. width:45px;
  2680. word-wrap:break-word;
  2681. }
  2682. #u215 {
  2683. position:absolute;
  2684. left:931px;
  2685. top:56px;
  2686. width:60px;
  2687. height:30px;
  2688. font-family:'Arial Negreta', 'Arial';
  2689. font-weight:700;
  2690. font-style:normal;
  2691. color:#666666;
  2692. }
  2693. #u215_img {
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:60px;
  2698. height:30px;
  2699. }
  2700. #u216 {
  2701. position:absolute;
  2702. left:2px;
  2703. top:7px;
  2704. width:56px;
  2705. word-wrap:break-word;
  2706. }
  2707. #u217 {
  2708. position:absolute;
  2709. left:791px;
  2710. top:56px;
  2711. width:30px;
  2712. height:30px;
  2713. font-size:20px;
  2714. color:#FFFFFF;
  2715. }
  2716. #u217_img {
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:30px;
  2721. height:30px;
  2722. }
  2723. #u218 {
  2724. position:absolute;
  2725. left:2px;
  2726. top:3px;
  2727. width:26px;
  2728. word-wrap:break-word;
  2729. }
  2730. #u219 {
  2731. position:absolute;
  2732. left:831px;
  2733. top:56px;
  2734. width:90px;
  2735. height:30px;
  2736. color:#1E1E1E;
  2737. text-align:right;
  2738. }
  2739. #u219_img {
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:90px;
  2744. height:30px;
  2745. }
  2746. #u220 {
  2747. position:absolute;
  2748. left:2px;
  2749. top:7px;
  2750. width:86px;
  2751. visibility:hidden;
  2752. word-wrap:break-word;
  2753. }
  2754. #u221 {
  2755. position:absolute;
  2756. left:837px;
  2757. top:60px;
  2758. width:30px;
  2759. height:20px;
  2760. }
  2761. #u221_input {
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:30px;
  2766. height:20px;
  2767. font-family:'Arial Normal', 'Arial';
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:13px;
  2771. text-decoration:none;
  2772. color:#000000;
  2773. text-align:left;
  2774. }
  2775. #u222 {
  2776. position:absolute;
  2777. left:0px;
  2778. top:89px;
  2779. width:1000px;
  2780. height:32px;
  2781. }
  2782. #u222_img {
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:1000px;
  2787. height:32px;
  2788. }
  2789. #u223 {
  2790. position:absolute;
  2791. left:2px;
  2792. top:8px;
  2793. width:996px;
  2794. visibility:hidden;
  2795. word-wrap:break-word;
  2796. }
  2797. #u224 {
  2798. position:absolute;
  2799. left:136px;
  2800. top:56px;
  2801. width:29px;
  2802. height:27px;
  2803. font-family:'微软雅黑 Bold', '微软雅黑';
  2804. font-weight:700;
  2805. font-style:normal;
  2806. font-size:20px;
  2807. color:#FF0000;
  2808. text-align:center;
  2809. }
  2810. #u224_img {
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:29px;
  2815. height:27px;
  2816. }
  2817. #u225 {
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:29px;
  2822. word-wrap:break-word;
  2823. }
  2824. #u226 {
  2825. position:absolute;
  2826. left:220px;
  2827. top:96px;
  2828. width:53px;
  2829. height:19px;
  2830. font-family:'微软雅黑 Bold', '微软雅黑';
  2831. font-weight:700;
  2832. font-style:normal;
  2833. color:#FFFFFF;
  2834. }
  2835. #u226_img {
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:53px;
  2840. height:19px;
  2841. }
  2842. #u227 {
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:53px;
  2847. white-space:nowrap;
  2848. }
  2849. #u228 {
  2850. position:absolute;
  2851. left:500px;
  2852. top:96px;
  2853. width:41px;
  2854. height:16px;
  2855. font-family:'微软雅黑 Bold', '微软雅黑';
  2856. font-weight:700;
  2857. font-style:normal;
  2858. color:#FFFFFF;
  2859. }
  2860. #u228_img {
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:41px;
  2865. height:16px;
  2866. }
  2867. #u229 {
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:41px;
  2872. word-wrap:break-word;
  2873. }
  2874. #u230 {
  2875. position:absolute;
  2876. left:400px;
  2877. top:96px;
  2878. width:42px;
  2879. height:16px;
  2880. font-family:'微软雅黑 Bold', '微软雅黑';
  2881. font-weight:700;
  2882. font-style:normal;
  2883. color:#FFFFFF;
  2884. }
  2885. #u230_img {
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:42px;
  2890. height:16px;
  2891. }
  2892. #u231 {
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:42px;
  2897. word-wrap:break-word;
  2898. }
  2899. #u232 {
  2900. position:absolute;
  2901. left:673px;
  2902. top:96px;
  2903. width:40px;
  2904. height:16px;
  2905. font-family:'微软雅黑 Bold', '微软雅黑';
  2906. font-weight:700;
  2907. font-style:normal;
  2908. color:#FFFFFF;
  2909. }
  2910. #u232_img {
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:40px;
  2915. height:16px;
  2916. }
  2917. #u233 {
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:40px;
  2922. white-space:nowrap;
  2923. }
  2924. #u234 {
  2925. position:absolute;
  2926. left:706px;
  2927. top:95px;
  2928. width:66px;
  2929. height:1px;
  2930. font-family:'微软雅黑 Bold', '微软雅黑';
  2931. font-weight:700;
  2932. font-style:normal;
  2933. color:#FFFFFF;
  2934. }
  2935. #u234_img {
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:66px;
  2940. height:1px;
  2941. }
  2942. #u235 {
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:66px;
  2947. white-space:nowrap;
  2948. }
  2949. #u236 {
  2950. position:absolute;
  2951. left:923px;
  2952. top:95px;
  2953. width:66px;
  2954. height:1px;
  2955. font-family:'微软雅黑 Bold', '微软雅黑';
  2956. font-weight:700;
  2957. font-style:normal;
  2958. color:#FFFFFF;
  2959. }
  2960. #u236_img {
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:66px;
  2965. height:1px;
  2966. }
  2967. #u237 {
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:66px;
  2972. white-space:nowrap;
  2973. }
  2974. #u238 {
  2975. position:absolute;
  2976. left:88px;
  2977. top:96px;
  2978. width:27px;
  2979. height:19px;
  2980. font-family:'微软雅黑 Bold', '微软雅黑';
  2981. font-weight:700;
  2982. font-style:normal;
  2983. color:#FFFFFF;
  2984. }
  2985. #u238_img {
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:27px;
  2990. height:19px;
  2991. }
  2992. #u239 {
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:27px;
  2997. white-space:nowrap;
  2998. }
  2999. #u240 {
  3000. position:absolute;
  3001. left:164px;
  3002. top:63px;
  3003. width:66px;
  3004. height:16px;
  3005. }
  3006. #u240_img {
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:66px;
  3011. height:16px;
  3012. }
  3013. #u241 {
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:66px;
  3018. white-space:nowrap;
  3019. }
  3020. #u242 {
  3021. position:absolute;
  3022. left:600px;
  3023. top:96px;
  3024. width:40px;
  3025. height:16px;
  3026. font-family:'微软雅黑 Bold', '微软雅黑';
  3027. font-weight:700;
  3028. font-style:normal;
  3029. color:#FFFFFF;
  3030. }
  3031. #u242_img {
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:40px;
  3036. height:16px;
  3037. }
  3038. #u243 {
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:40px;
  3043. white-space:nowrap;
  3044. }
  3045. #u244 {
  3046. position:absolute;
  3047. left:825px;
  3048. top:96px;
  3049. width:66px;
  3050. height:19px;
  3051. font-family:'微软雅黑 Bold', '微软雅黑';
  3052. font-weight:700;
  3053. font-style:normal;
  3054. color:#FFFFFF;
  3055. }
  3056. #u244_img {
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:66px;
  3061. height:19px;
  3062. }
  3063. #u245 {
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:66px;
  3068. white-space:nowrap;
  3069. }
  3070. #u246 {
  3071. position:absolute;
  3072. left:742px;
  3073. top:96px;
  3074. width:53px;
  3075. height:16px;
  3076. font-family:'微软雅黑 Bold', '微软雅黑';
  3077. font-weight:700;
  3078. font-style:normal;
  3079. color:#FFFFFF;
  3080. }
  3081. #u246_img {
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:53px;
  3086. height:16px;
  3087. }
  3088. #u247 {
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:53px;
  3093. white-space:nowrap;
  3094. }
  3095. #u248 {
  3096. position:absolute;
  3097. left:825px;
  3098. top:97px;
  3099. width:66px;
  3100. height:19px;
  3101. font-family:'微软雅黑 Bold', '微软雅黑';
  3102. font-weight:700;
  3103. font-style:normal;
  3104. color:#FFFFFF;
  3105. }
  3106. #u248_img {
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:66px;
  3111. height:19px;
  3112. }
  3113. #u249 {
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:66px;
  3118. white-space:nowrap;
  3119. }
  3120. #u250 {
  3121. position:absolute;
  3122. left:538px;
  3123. top:56px;
  3124. width:63px;
  3125. height:30px;
  3126. }
  3127. #u250_img {
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:63px;
  3132. height:30px;
  3133. }
  3134. #u251 {
  3135. position:absolute;
  3136. left:2px;
  3137. top:7px;
  3138. width:59px;
  3139. word-wrap:break-word;
  3140. }
  3141. #u252 {
  3142. position:absolute;
  3143. left:606px;
  3144. top:56px;
  3145. width:63px;
  3146. height:30px;
  3147. }
  3148. #u252_img {
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:63px;
  3153. height:30px;
  3154. }
  3155. #u253 {
  3156. position:absolute;
  3157. left:2px;
  3158. top:7px;
  3159. width:59px;
  3160. word-wrap:break-word;
  3161. }
  3162. #u254 {
  3163. position:absolute;
  3164. left:830px;
  3165. top:13px;
  3166. width:70px;
  3167. height:25px;
  3168. }
  3169. #u254_input {
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:70px;
  3174. height:25px;
  3175. font-family:'Arial Normal', 'Arial';
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:13px;
  3179. text-decoration:none;
  3180. color:#000000;
  3181. text-align:center;
  3182. }
  3183. #u255 {
  3184. position:absolute;
  3185. left:920px;
  3186. top:13px;
  3187. width:70px;
  3188. height:25px;
  3189. }
  3190. #u255_input {
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:70px;
  3195. height:25px;
  3196. font-family:'Arial Normal', 'Arial';
  3197. font-weight:400;
  3198. font-style:normal;
  3199. font-size:13px;
  3200. text-decoration:none;
  3201. color:#000000;
  3202. text-align:center;
  3203. }
  3204. #u171_state2 {
  3205. position:relative;
  3206. left:0px;
  3207. top:0px;
  3208. visibility:hidden;
  3209. background-image:none;
  3210. }
  3211. #u171_state2_content {
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:1px;
  3216. height:1px;
  3217. }
  3218. #u256 {
  3219. position:absolute;
  3220. left:98px;
  3221. top:70px;
  3222. width:90px;
  3223. height:40px;
  3224. font-family:'微软雅黑 Bold', '微软雅黑';
  3225. font-weight:700;
  3226. font-style:normal;
  3227. }
  3228. #u256_img {
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:90px;
  3233. height:40px;
  3234. }
  3235. #u257 {
  3236. position:absolute;
  3237. left:2px;
  3238. top:10px;
  3239. width:86px;
  3240. word-wrap:break-word;
  3241. }
  3242. #u258 {
  3243. position:absolute;
  3244. left:213px;
  3245. top:70px;
  3246. width:90px;
  3247. height:40px;
  3248. font-family:'微软雅黑 Bold', '微软雅黑';
  3249. font-weight:700;
  3250. font-style:normal;
  3251. }
  3252. #u258_img {
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:90px;
  3257. height:40px;
  3258. }
  3259. #u259 {
  3260. position:absolute;
  3261. left:2px;
  3262. top:10px;
  3263. width:86px;
  3264. word-wrap:break-word;
  3265. }
  3266. #u260 {
  3267. position:absolute;
  3268. left:0px;
  3269. top:110px;
  3270. width:1000px;
  3271. height:10px;
  3272. }
  3273. #u260_start {
  3274. position:absolute;
  3275. left:0px;
  3276. top:-5px;
  3277. width:18px;
  3278. height:20px;
  3279. }
  3280. #u260_end {
  3281. position:absolute;
  3282. left:983px;
  3283. top:-5px;
  3284. width:18px;
  3285. height:20px;
  3286. }
  3287. #u260_line {
  3288. position:absolute;
  3289. left:0px;
  3290. top:5px;
  3291. width:1000px;
  3292. height:1px;
  3293. }
  3294. #u261 {
  3295. position:absolute;
  3296. left:213px;
  3297. top:69px;
  3298. width:90px;
  3299. height:47px;
  3300. font-family:'微软雅黑 Bold', '微软雅黑';
  3301. font-weight:700;
  3302. font-style:normal;
  3303. font-size:14px;
  3304. color:#6699CC;
  3305. }
  3306. #u261_img {
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:90px;
  3311. height:47px;
  3312. }
  3313. #u261_img.selected {
  3314. }
  3315. #u261.selected {
  3316. }
  3317. #u262 {
  3318. position:absolute;
  3319. left:2px;
  3320. top:14px;
  3321. width:86px;
  3322. word-wrap:break-word;
  3323. }
  3324. #u263 {
  3325. position:absolute;
  3326. left:0px;
  3327. top:130px;
  3328. width:680px;
  3329. height:399px;
  3330. overflow:hidden;
  3331. }
  3332. #u263_state0 {
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:680px;
  3337. height:399px;
  3338. -ms-overflow-x:hidden;
  3339. overflow-x:hidden;
  3340. -ms-overflow-y:hidden;
  3341. overflow-y:hidden;
  3342. background-image:none;
  3343. }
  3344. #u263_state0_content {
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:1px;
  3349. height:1px;
  3350. }
  3351. #u264 {
  3352. position:absolute;
  3353. left:0px;
  3354. top:15px;
  3355. width:680px;
  3356. height:340px;
  3357. }
  3358. #u264_img {
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:680px;
  3363. height:340px;
  3364. }
  3365. #u265 {
  3366. position:absolute;
  3367. left:2px;
  3368. top:162px;
  3369. width:676px;
  3370. visibility:hidden;
  3371. word-wrap:break-word;
  3372. }
  3373. #u266 {
  3374. position:absolute;
  3375. left:30px;
  3376. top:4px;
  3377. width:97px;
  3378. height:21px;
  3379. font-family:'微软雅黑 Bold', '微软雅黑';
  3380. font-weight:700;
  3381. font-style:normal;
  3382. font-size:16px;
  3383. }
  3384. #u266_img {
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:97px;
  3389. height:21px;
  3390. }
  3391. #u267 {
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:97px;
  3396. white-space:nowrap;
  3397. }
  3398. #u268 {
  3399. position:absolute;
  3400. left:52px;
  3401. top:40px;
  3402. width:66px;
  3403. height:19px;
  3404. font-family:'微软雅黑 Regular', '微软雅黑';
  3405. font-weight:400;
  3406. font-style:normal;
  3407. }
  3408. #u268_img {
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:66px;
  3413. height:19px;
  3414. }
  3415. #u269 {
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:66px;
  3420. white-space:nowrap;
  3421. }
  3422. #u270 {
  3423. position:absolute;
  3424. left:128px;
  3425. top:40px;
  3426. width:102px;
  3427. height:16px;
  3428. }
  3429. #u270_img {
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:102px;
  3434. height:16px;
  3435. }
  3436. #u271 {
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:102px;
  3441. word-wrap:break-word;
  3442. }
  3443. #u272 {
  3444. position:absolute;
  3445. left:52px;
  3446. top:130px;
  3447. width:66px;
  3448. height:19px;
  3449. font-family:'微软雅黑 Regular', '微软雅黑';
  3450. font-weight:400;
  3451. font-style:normal;
  3452. }
  3453. #u272_img {
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:66px;
  3458. height:19px;
  3459. }
  3460. #u273 {
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:66px;
  3465. white-space:nowrap;
  3466. }
  3467. #u274 {
  3468. position:absolute;
  3469. left:52px;
  3470. top:160px;
  3471. width:66px;
  3472. height:19px;
  3473. font-family:'微软雅黑 Regular', '微软雅黑';
  3474. font-weight:400;
  3475. font-style:normal;
  3476. }
  3477. #u274_img {
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:66px;
  3482. height:19px;
  3483. }
  3484. #u275 {
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:66px;
  3489. white-space:nowrap;
  3490. }
  3491. #u276 {
  3492. position:absolute;
  3493. left:52px;
  3494. top:70px;
  3495. width:66px;
  3496. height:10px;
  3497. font-family:'微软雅黑 Regular', '微软雅黑';
  3498. font-weight:400;
  3499. font-style:normal;
  3500. }
  3501. #u276_img {
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:66px;
  3506. height:10px;
  3507. }
  3508. #u277 {
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:66px;
  3513. white-space:nowrap;
  3514. }
  3515. #u278 {
  3516. position:absolute;
  3517. left:52px;
  3518. top:221px;
  3519. width:53px;
  3520. height:19px;
  3521. font-family:'微软雅黑 Regular', '微软雅黑';
  3522. font-weight:400;
  3523. font-style:normal;
  3524. }
  3525. #u278_img {
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:53px;
  3530. height:19px;
  3531. }
  3532. #u279 {
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:53px;
  3537. white-space:nowrap;
  3538. }
  3539. #u280 {
  3540. position:absolute;
  3541. left:52px;
  3542. top:100px;
  3543. width:66px;
  3544. height:19px;
  3545. font-family:'微软雅黑 Regular', '微软雅黑';
  3546. font-weight:400;
  3547. font-style:normal;
  3548. }
  3549. #u280_img {
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:66px;
  3554. height:19px;
  3555. }
  3556. #u281 {
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:66px;
  3561. white-space:nowrap;
  3562. }
  3563. #u282 {
  3564. position:absolute;
  3565. left:128px;
  3566. top:100px;
  3567. width:66px;
  3568. height:16px;
  3569. }
  3570. #u282_img {
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:66px;
  3575. height:16px;
  3576. }
  3577. #u283 {
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:66px;
  3582. white-space:nowrap;
  3583. }
  3584. #u284 {
  3585. position:absolute;
  3586. left:389px;
  3587. top:100px;
  3588. width:66px;
  3589. height:16px;
  3590. }
  3591. #u284_img {
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:66px;
  3596. height:16px;
  3597. }
  3598. #u285 {
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:66px;
  3603. white-space:nowrap;
  3604. }
  3605. #u286 {
  3606. position:absolute;
  3607. left:465px;
  3608. top:100px;
  3609. width:32px;
  3610. height:16px;
  3611. }
  3612. #u286_img {
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:32px;
  3617. height:16px;
  3618. }
  3619. #u287 {
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:32px;
  3624. white-space:nowrap;
  3625. }
  3626. #u288 {
  3627. position:absolute;
  3628. left:52px;
  3629. top:251px;
  3630. width:66px;
  3631. height:16px;
  3632. font-family:'微软雅黑 Regular', '微软雅黑';
  3633. font-weight:400;
  3634. font-style:normal;
  3635. }
  3636. #u288_img {
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:66px;
  3641. height:16px;
  3642. }
  3643. #u289 {
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:66px;
  3648. white-space:nowrap;
  3649. }
  3650. #u290 {
  3651. position:absolute;
  3652. left:52px;
  3653. top:281px;
  3654. width:40px;
  3655. height:19px;
  3656. font-family:'微软雅黑 Regular', '微软雅黑';
  3657. font-weight:400;
  3658. font-style:normal;
  3659. }
  3660. #u290_img {
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:40px;
  3665. height:19px;
  3666. }
  3667. #u291 {
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:40px;
  3672. white-space:nowrap;
  3673. }
  3674. #u292 {
  3675. position:absolute;
  3676. left:52px;
  3677. top:191px;
  3678. width:66px;
  3679. height:19px;
  3680. font-family:'微软雅黑 Regular', '微软雅黑';
  3681. font-weight:400;
  3682. font-style:normal;
  3683. }
  3684. #u292_img {
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:66px;
  3689. height:19px;
  3690. }
  3691. #u293 {
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:66px;
  3696. white-space:nowrap;
  3697. }
  3698. #u294 {
  3699. position:absolute;
  3700. left:275px;
  3701. top:130px;
  3702. width:53px;
  3703. height:16px;
  3704. }
  3705. #u294_img {
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:53px;
  3710. height:16px;
  3711. }
  3712. #u295 {
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:53px;
  3717. word-wrap:break-word;
  3718. }
  3719. #u296 {
  3720. position:absolute;
  3721. left:52px;
  3722. top:311px;
  3723. width:53px;
  3724. height:19px;
  3725. font-family:'微软雅黑 Regular', '微软雅黑';
  3726. font-weight:400;
  3727. font-style:normal;
  3728. }
  3729. #u296_img {
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:53px;
  3734. height:19px;
  3735. }
  3736. #u297 {
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:53px;
  3741. white-space:nowrap;
  3742. }
  3743. #u298 {
  3744. position:absolute;
  3745. left:297px;
  3746. top:311px;
  3747. width:66px;
  3748. height:16px;
  3749. }
  3750. #u298_img {
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:66px;
  3755. height:16px;
  3756. }
  3757. #u299 {
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:66px;
  3762. white-space:nowrap;
  3763. }
  3764. #u300 {
  3765. position:absolute;
  3766. left:534px;
  3767. top:311px;
  3768. width:66px;
  3769. height:16px;
  3770. }
  3771. #u300_img {
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:66px;
  3776. height:16px;
  3777. }
  3778. #u301 {
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:66px;
  3783. white-space:nowrap;
  3784. }
  3785. #u302 {
  3786. position:absolute;
  3787. left:128px;
  3788. top:311px;
  3789. width:31px;
  3790. height:16px;
  3791. }
  3792. #u302_img {
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:31px;
  3797. height:16px;
  3798. }
  3799. #u303 {
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:31px;
  3804. white-space:nowrap;
  3805. }
  3806. #u304 {
  3807. position:absolute;
  3808. left:373px;
  3809. top:311px;
  3810. width:48px;
  3811. height:16px;
  3812. }
  3813. #u304_img {
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:48px;
  3818. height:16px;
  3819. }
  3820. #u305 {
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:48px;
  3825. white-space:nowrap;
  3826. }
  3827. #u306 {
  3828. position:absolute;
  3829. left:600px;
  3830. top:311px;
  3831. width:65px;
  3832. height:16px;
  3833. }
  3834. #u306_img {
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:65px;
  3839. height:16px;
  3840. }
  3841. #u307 {
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:65px;
  3846. white-space:nowrap;
  3847. }
  3848. #u308 {
  3849. position:absolute;
  3850. left:128px;
  3851. top:250px;
  3852. width:197px;
  3853. height:16px;
  3854. }
  3855. #u308_img {
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:197px;
  3860. height:16px;
  3861. }
  3862. #u309 {
  3863. position:absolute;
  3864. left:0px;
  3865. top:0px;
  3866. width:197px;
  3867. word-wrap:break-word;
  3868. }
  3869. #u310 {
  3870. position:absolute;
  3871. left:128px;
  3872. top:281px;
  3873. width:197px;
  3874. height:16px;
  3875. }
  3876. #u310_img {
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:197px;
  3881. height:16px;
  3882. }
  3883. #u311 {
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:197px;
  3888. word-wrap:break-word;
  3889. }
  3890. #u312 {
  3891. position:absolute;
  3892. left:389px;
  3893. top:70px;
  3894. width:66px;
  3895. height:10px;
  3896. font-family:'微软雅黑 Regular', '微软雅黑';
  3897. font-weight:400;
  3898. font-style:normal;
  3899. }
  3900. #u312_img {
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:66px;
  3905. height:10px;
  3906. }
  3907. #u313 {
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:66px;
  3912. white-space:nowrap;
  3913. }
  3914. #u314 {
  3915. position:absolute;
  3916. left:465px;
  3917. top:70px;
  3918. width:185px;
  3919. height:19px;
  3920. font-family:'微软雅黑 Regular', '微软雅黑';
  3921. font-weight:400;
  3922. font-style:normal;
  3923. color:#000000;
  3924. }
  3925. #u314_img {
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:185px;
  3930. height:19px;
  3931. }
  3932. #u315 {
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:185px;
  3937. white-space:nowrap;
  3938. }
  3939. #u316 {
  3940. position:absolute;
  3941. left:128px;
  3942. top:70px;
  3943. width:49px;
  3944. height:15px;
  3945. font-size:12px;
  3946. color:#000000;
  3947. }
  3948. #u316_img {
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:49px;
  3953. height:15px;
  3954. }
  3955. #u317 {
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:49px;
  3960. white-space:nowrap;
  3961. }
  3962. #u318 {
  3963. position:absolute;
  3964. left:128px;
  3965. top:130px;
  3966. width:65px;
  3967. height:16px;
  3968. }
  3969. #u318_img {
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:65px;
  3974. height:16px;
  3975. }
  3976. #u319 {
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:65px;
  3981. white-space:nowrap;
  3982. }
  3983. #u320 {
  3984. position:absolute;
  3985. left:217px;
  3986. top:130px;
  3987. width:33px;
  3988. height:16px;
  3989. }
  3990. #u320_img {
  3991. position:absolute;
  3992. left:0px;
  3993. top:0px;
  3994. width:33px;
  3995. height:16px;
  3996. }
  3997. #u321 {
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:33px;
  4002. white-space:nowrap;
  4003. }
  4004. #u322 {
  4005. position:absolute;
  4006. left:128px;
  4007. top:160px;
  4008. width:58px;
  4009. height:15px;
  4010. font-size:12px;
  4011. color:#000000;
  4012. }
  4013. #u322_img {
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:58px;
  4018. height:15px;
  4019. }
  4020. #u323 {
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:58px;
  4025. white-space:nowrap;
  4026. }
  4027. #u324 {
  4028. position:absolute;
  4029. left:128px;
  4030. top:190px;
  4031. width:29px;
  4032. height:16px;
  4033. }
  4034. #u324_img {
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:29px;
  4039. height:16px;
  4040. }
  4041. #u325 {
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:29px;
  4046. white-space:nowrap;
  4047. }
  4048. #u326 {
  4049. position:absolute;
  4050. left:128px;
  4051. top:220px;
  4052. width:28px;
  4053. height:16px;
  4054. }
  4055. #u326_img {
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:28px;
  4060. height:16px;
  4061. }
  4062. #u327 {
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:28px;
  4067. white-space:nowrap;
  4068. }
  4069. #u263_state1 {
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:680px;
  4074. height:399px;
  4075. visibility:hidden;
  4076. -ms-overflow-x:hidden;
  4077. overflow-x:hidden;
  4078. -ms-overflow-y:hidden;
  4079. overflow-y:hidden;
  4080. background-image:none;
  4081. }
  4082. #u263_state1_content {
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:1px;
  4087. height:1px;
  4088. }
  4089. #u328 {
  4090. position:absolute;
  4091. left:0px;
  4092. top:16px;
  4093. width:680px;
  4094. height:340px;
  4095. }
  4096. #u328_img {
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:680px;
  4101. height:340px;
  4102. }
  4103. #u329 {
  4104. position:absolute;
  4105. left:2px;
  4106. top:162px;
  4107. width:676px;
  4108. visibility:hidden;
  4109. word-wrap:break-word;
  4110. }
  4111. #u330 {
  4112. position:absolute;
  4113. left:50px;
  4114. top:4px;
  4115. width:97px;
  4116. height:21px;
  4117. font-family:'微软雅黑 Bold', '微软雅黑';
  4118. font-weight:700;
  4119. font-style:normal;
  4120. font-size:16px;
  4121. }
  4122. #u330_img {
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:97px;
  4127. height:21px;
  4128. }
  4129. #u331 {
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:97px;
  4134. white-space:nowrap;
  4135. }
  4136. #u332 {
  4137. position:absolute;
  4138. left:89px;
  4139. top:90px;
  4140. width:541px;
  4141. height:36px;
  4142. font-family:'微软雅黑 Regular', '微软雅黑';
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:18px;
  4146. color:#6699FF;
  4147. }
  4148. #u332_img {
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:541px;
  4153. height:36px;
  4154. }
  4155. #u333 {
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:541px;
  4160. white-space:nowrap;
  4161. }
  4162. #u334 {
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:1000px;
  4167. height:50px;
  4168. }
  4169. #u334_img {
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:1000px;
  4174. height:50px;
  4175. }
  4176. #u335 {
  4177. position:absolute;
  4178. left:2px;
  4179. top:17px;
  4180. width:996px;
  4181. visibility:hidden;
  4182. word-wrap:break-word;
  4183. }
  4184. #u336 {
  4185. position:absolute;
  4186. left:98px;
  4187. top:69px;
  4188. width:90px;
  4189. height:47px;
  4190. font-family:'微软雅黑 Bold', '微软雅黑';
  4191. font-weight:700;
  4192. font-style:normal;
  4193. font-size:14px;
  4194. color:#6699CC;
  4195. }
  4196. #u336_img {
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:90px;
  4201. height:47px;
  4202. }
  4203. #u336_img.selected {
  4204. }
  4205. #u336.selected {
  4206. }
  4207. #u337 {
  4208. position:absolute;
  4209. left:2px;
  4210. top:14px;
  4211. width:86px;
  4212. word-wrap:break-word;
  4213. }
  4214. #u338 {
  4215. position:absolute;
  4216. left:830px;
  4217. top:13px;
  4218. width:70px;
  4219. height:25px;
  4220. }
  4221. #u338_input {
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:70px;
  4226. height:25px;
  4227. font-family:'Arial Normal', 'Arial';
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:13px;
  4231. text-decoration:none;
  4232. color:#000000;
  4233. text-align:center;
  4234. }
  4235. #u339 {
  4236. position:absolute;
  4237. left:920px;
  4238. top:13px;
  4239. width:70px;
  4240. height:25px;
  4241. }
  4242. #u339_input {
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:70px;
  4247. height:25px;
  4248. font-family:'Arial Normal', 'Arial';
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:13px;
  4252. text-decoration:none;
  4253. color:#000000;
  4254. text-align:center;
  4255. }
  4256. #u171_state3 {
  4257. position:relative;
  4258. left:0px;
  4259. top:0px;
  4260. visibility:hidden;
  4261. background-image:none;
  4262. }
  4263. #u171_state3_content {
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:1px;
  4268. height:1px;
  4269. }
  4270. #u340 {
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:1000px;
  4275. height:50px;
  4276. }
  4277. #u340_img {
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:1000px;
  4282. height:50px;
  4283. }
  4284. #u341 {
  4285. position:absolute;
  4286. left:2px;
  4287. top:17px;
  4288. width:996px;
  4289. visibility:hidden;
  4290. word-wrap:break-word;
  4291. }
  4292. #u342 {
  4293. position:absolute;
  4294. left:0px;
  4295. top:2090px;
  4296. width:1000px;
  4297. height:50px;
  4298. color:#FFFFFF;
  4299. }
  4300. #u342_img {
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:1000px;
  4305. height:50px;
  4306. }
  4307. #u343 {
  4308. position:absolute;
  4309. left:2px;
  4310. top:17px;
  4311. width:996px;
  4312. word-wrap:break-word;
  4313. }
  4314. #u344 {
  4315. position:absolute;
  4316. left:0px;
  4317. top:139px;
  4318. }
  4319. #u344_state0 {
  4320. position:relative;
  4321. left:0px;
  4322. top:0px;
  4323. background-image:none;
  4324. }
  4325. #u344_state0_content {
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:1px;
  4330. height:1px;
  4331. }
  4332. #u345 {
  4333. position:absolute;
  4334. left:60px;
  4335. top:1690px;
  4336. width:710px;
  4337. height:178px;
  4338. }
  4339. #u345_img {
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:710px;
  4344. height:178px;
  4345. }
  4346. #u346 {
  4347. position:absolute;
  4348. left:2px;
  4349. top:81px;
  4350. width:706px;
  4351. visibility:hidden;
  4352. word-wrap:break-word;
  4353. }
  4354. #u347 {
  4355. position:absolute;
  4356. left:60px;
  4357. top:417px;
  4358. width:710px;
  4359. height:1230px;
  4360. }
  4361. #u347_img {
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:710px;
  4366. height:1230px;
  4367. }
  4368. #u348 {
  4369. position:absolute;
  4370. left:2px;
  4371. top:607px;
  4372. width:706px;
  4373. visibility:hidden;
  4374. word-wrap:break-word;
  4375. }
  4376. #u349 {
  4377. position:absolute;
  4378. left:76px;
  4379. top:1157px;
  4380. width:396px;
  4381. height:210px;
  4382. }
  4383. #u349_img {
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:396px;
  4388. height:210px;
  4389. }
  4390. #u350 {
  4391. position:absolute;
  4392. left:2px;
  4393. top:97px;
  4394. width:392px;
  4395. visibility:hidden;
  4396. word-wrap:break-word;
  4397. }
  4398. #u351 {
  4399. position:absolute;
  4400. left:81px;
  4401. top:807px;
  4402. width:396px;
  4403. height:285px;
  4404. }
  4405. #u351_img {
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:396px;
  4410. height:285px;
  4411. }
  4412. #u352 {
  4413. position:absolute;
  4414. left:2px;
  4415. top:134px;
  4416. width:392px;
  4417. visibility:hidden;
  4418. word-wrap:break-word;
  4419. }
  4420. #u353 {
  4421. position:absolute;
  4422. left:81px;
  4423. top:452px;
  4424. width:396px;
  4425. height:285px;
  4426. }
  4427. #u353_img {
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:396px;
  4432. height:285px;
  4433. }
  4434. #u354 {
  4435. position:absolute;
  4436. left:2px;
  4437. top:134px;
  4438. width:392px;
  4439. visibility:hidden;
  4440. word-wrap:break-word;
  4441. }
  4442. #u355 {
  4443. position:absolute;
  4444. left:60px;
  4445. top:227px;
  4446. width:710px;
  4447. height:120px;
  4448. }
  4449. #u355_img {
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:710px;
  4454. height:120px;
  4455. }
  4456. #u356 {
  4457. position:absolute;
  4458. left:2px;
  4459. top:52px;
  4460. width:706px;
  4461. visibility:hidden;
  4462. word-wrap:break-word;
  4463. }
  4464. #u357 {
  4465. position:absolute;
  4466. left:60px;
  4467. top:66px;
  4468. width:710px;
  4469. height:120px;
  4470. }
  4471. #u357_img {
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:710px;
  4476. height:120px;
  4477. }
  4478. #u358 {
  4479. position:absolute;
  4480. left:2px;
  4481. top:52px;
  4482. width:706px;
  4483. visibility:hidden;
  4484. word-wrap:break-word;
  4485. }
  4486. #u359 {
  4487. position:absolute;
  4488. left:330px;
  4489. top:6px;
  4490. width:147px;
  4491. height:21px;
  4492. font-family:'微软雅黑 Bold', '微软雅黑';
  4493. font-weight:700;
  4494. font-style:normal;
  4495. font-size:16px;
  4496. }
  4497. #u359_img {
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:147px;
  4502. height:21px;
  4503. }
  4504. #u360 {
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:147px;
  4509. white-space:nowrap;
  4510. }
  4511. #u361 {
  4512. position:absolute;
  4513. left:97px;
  4514. top:94px;
  4515. width:53px;
  4516. height:16px;
  4517. }
  4518. #u361_img {
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:53px;
  4523. height:16px;
  4524. }
  4525. #u362 {
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:53px;
  4530. white-space:nowrap;
  4531. }
  4532. #u363 {
  4533. position:absolute;
  4534. left:160px;
  4535. top:94px;
  4536. width:28px;
  4537. height:16px;
  4538. }
  4539. #u363_img {
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:28px;
  4544. height:16px;
  4545. }
  4546. #u364 {
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:28px;
  4551. white-space:nowrap;
  4552. }
  4553. #u365 {
  4554. position:absolute;
  4555. left:287px;
  4556. top:94px;
  4557. width:40px;
  4558. height:16px;
  4559. }
  4560. #u365_img {
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:40px;
  4565. height:16px;
  4566. }
  4567. #u366 {
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:40px;
  4572. white-space:nowrap;
  4573. }
  4574. #u367 {
  4575. position:absolute;
  4576. left:337px;
  4577. top:94px;
  4578. width:53px;
  4579. height:16px;
  4580. }
  4581. #u367_img {
  4582. position:absolute;
  4583. left:0px;
  4584. top:0px;
  4585. width:53px;
  4586. height:16px;
  4587. }
  4588. #u368 {
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:53px;
  4593. white-space:nowrap;
  4594. }
  4595. #u369 {
  4596. position:absolute;
  4597. left:512px;
  4598. top:94px;
  4599. width:40px;
  4600. height:16px;
  4601. }
  4602. #u369_img {
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:40px;
  4607. height:16px;
  4608. }
  4609. #u370 {
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:40px;
  4614. white-space:nowrap;
  4615. }
  4616. #u371 {
  4617. position:absolute;
  4618. left:555px;
  4619. top:94px;
  4620. width:31px;
  4621. height:16px;
  4622. }
  4623. #u371_img {
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:31px;
  4628. height:16px;
  4629. }
  4630. #u372 {
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:31px;
  4635. white-space:nowrap;
  4636. }
  4637. #u373 {
  4638. position:absolute;
  4639. left:81px;
  4640. top:134px;
  4641. width:66px;
  4642. height:16px;
  4643. }
  4644. #u373_img {
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:66px;
  4649. height:16px;
  4650. }
  4651. #u374 {
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:66px;
  4656. white-space:nowrap;
  4657. }
  4658. #u375 {
  4659. position:absolute;
  4660. left:155px;
  4661. top:134px;
  4662. width:65px;
  4663. height:16px;
  4664. }
  4665. #u375_img {
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:65px;
  4670. height:16px;
  4671. }
  4672. #u376 {
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:65px;
  4677. white-space:nowrap;
  4678. }
  4679. #u377 {
  4680. position:absolute;
  4681. left:287px;
  4682. top:134px;
  4683. width:40px;
  4684. height:16px;
  4685. }
  4686. #u377_img {
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:40px;
  4691. height:16px;
  4692. }
  4693. #u378 {
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:40px;
  4698. white-space:nowrap;
  4699. }
  4700. #u379 {
  4701. position:absolute;
  4702. left:337px;
  4703. top:134px;
  4704. width:92px;
  4705. height:16px;
  4706. }
  4707. #u379_img {
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:92px;
  4712. height:16px;
  4713. }
  4714. #u380 {
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:92px;
  4719. white-space:nowrap;
  4720. }
  4721. #u381 {
  4722. position:absolute;
  4723. left:487px;
  4724. top:134px;
  4725. width:66px;
  4726. height:16px;
  4727. }
  4728. #u381_img {
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:66px;
  4733. height:16px;
  4734. }
  4735. #u382 {
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:66px;
  4740. white-space:nowrap;
  4741. }
  4742. #u383 {
  4743. position:absolute;
  4744. left:555px;
  4745. top:134px;
  4746. width:72px;
  4747. height:16px;
  4748. }
  4749. #u383_img {
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:72px;
  4754. height:16px;
  4755. }
  4756. #u384 {
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:72px;
  4761. white-space:nowrap;
  4762. }
  4763. #u385 {
  4764. position:absolute;
  4765. left:90px;
  4766. top:54px;
  4767. width:81px;
  4768. height:21px;
  4769. font-family:'微软雅黑 Bold', '微软雅黑';
  4770. font-weight:700;
  4771. font-style:normal;
  4772. font-size:16px;
  4773. }
  4774. #u385_img {
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:81px;
  4779. height:21px;
  4780. }
  4781. #u386 {
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:81px;
  4786. white-space:nowrap;
  4787. }
  4788. #u387 {
  4789. position:absolute;
  4790. left:97px;
  4791. top:267px;
  4792. width:79px;
  4793. height:16px;
  4794. }
  4795. #u387_img {
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:79px;
  4800. height:16px;
  4801. }
  4802. #u388 {
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:79px;
  4807. white-space:nowrap;
  4808. }
  4809. #u389 {
  4810. position:absolute;
  4811. left:191px;
  4812. top:267px;
  4813. width:27px;
  4814. height:16px;
  4815. }
  4816. #u389_img {
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:27px;
  4821. height:16px;
  4822. }
  4823. #u390 {
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:27px;
  4828. white-space:nowrap;
  4829. }
  4830. #u391 {
  4831. position:absolute;
  4832. left:287px;
  4833. top:267px;
  4834. width:40px;
  4835. height:16px;
  4836. }
  4837. #u391_img {
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:40px;
  4842. height:16px;
  4843. }
  4844. #u392 {
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:40px;
  4849. white-space:nowrap;
  4850. }
  4851. #u393 {
  4852. position:absolute;
  4853. left:337px;
  4854. top:267px;
  4855. width:14px;
  4856. height:16px;
  4857. }
  4858. #u393_img {
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:14px;
  4863. height:16px;
  4864. }
  4865. #u394 {
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:14px;
  4870. white-space:nowrap;
  4871. }
  4872. #u395 {
  4873. position:absolute;
  4874. left:487px;
  4875. top:261px;
  4876. width:40px;
  4877. height:16px;
  4878. }
  4879. #u395_img {
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:40px;
  4884. height:16px;
  4885. }
  4886. #u396 {
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:40px;
  4891. white-space:nowrap;
  4892. }
  4893. #u397 {
  4894. position:absolute;
  4895. left:537px;
  4896. top:261px;
  4897. width:153px;
  4898. height:16px;
  4899. }
  4900. #u397_img {
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:153px;
  4905. height:16px;
  4906. }
  4907. #u398 {
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:153px;
  4912. word-wrap:break-word;
  4913. }
  4914. #u399 {
  4915. position:absolute;
  4916. left:109px;
  4917. top:296px;
  4918. width:66px;
  4919. height:16px;
  4920. }
  4921. #u399_img {
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:66px;
  4926. height:16px;
  4927. }
  4928. #u400 {
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:66px;
  4933. white-space:nowrap;
  4934. }
  4935. #u401 {
  4936. position:absolute;
  4937. left:191px;
  4938. top:296px;
  4939. width:68px;
  4940. height:16px;
  4941. }
  4942. #u401_img {
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:68px;
  4947. height:16px;
  4948. }
  4949. #u402 {
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:68px;
  4954. word-wrap:break-word;
  4955. }
  4956. #u403 {
  4957. position:absolute;
  4958. left:285px;
  4959. top:296px;
  4960. width:40px;
  4961. height:16px;
  4962. }
  4963. #u403_img {
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:40px;
  4968. height:16px;
  4969. }
  4970. #u404 {
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:40px;
  4975. white-space:nowrap;
  4976. }
  4977. #u405 {
  4978. position:absolute;
  4979. left:335px;
  4980. top:296px;
  4981. width:27px;
  4982. height:16px;
  4983. }
  4984. #u405_img {
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:27px;
  4989. height:16px;
  4990. }
  4991. #u406 {
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:27px;
  4996. white-space:nowrap;
  4997. }
  4998. #u407 {
  4999. position:absolute;
  5000. left:458px;
  5001. top:296px;
  5002. width:66px;
  5003. height:16px;
  5004. }
  5005. #u407_img {
  5006. position:absolute;
  5007. left:0px;
  5008. top:0px;
  5009. width:66px;
  5010. height:16px;
  5011. }
  5012. #u408 {
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:66px;
  5017. white-space:nowrap;
  5018. }
  5019. #u409 {
  5020. position:absolute;
  5021. left:537px;
  5022. top:296px;
  5023. width:68px;
  5024. height:16px;
  5025. }
  5026. #u409_img {
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:68px;
  5031. height:16px;
  5032. }
  5033. #u410 {
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:68px;
  5038. word-wrap:break-word;
  5039. }
  5040. #u411 {
  5041. position:absolute;
  5042. left:90px;
  5043. top:216px;
  5044. width:81px;
  5045. height:21px;
  5046. font-family:'微软雅黑 Bold', '微软雅黑';
  5047. font-weight:700;
  5048. font-style:normal;
  5049. font-size:16px;
  5050. }
  5051. #u411_img {
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:81px;
  5056. height:21px;
  5057. }
  5058. #u412 {
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:81px;
  5063. white-space:nowrap;
  5064. }
  5065. #u413 {
  5066. position:absolute;
  5067. left:90px;
  5068. top:407px;
  5069. width:129px;
  5070. height:21px;
  5071. font-family:'微软雅黑 Bold', '微软雅黑';
  5072. font-weight:700;
  5073. font-style:normal;
  5074. font-size:16px;
  5075. }
  5076. #u413_img {
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:129px;
  5081. height:21px;
  5082. }
  5083. #u414 {
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:129px;
  5088. white-space:nowrap;
  5089. }
  5090. #u415 {
  5091. position:absolute;
  5092. left:373px;
  5093. top:467px;
  5094. width:86px;
  5095. height:16px;
  5096. text-align:right;
  5097. }
  5098. #u415_img {
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:86px;
  5103. height:16px;
  5104. }
  5105. #u416 {
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:86px;
  5110. white-space:nowrap;
  5111. }
  5112. #u417 {
  5113. position:absolute;
  5114. left:334px;
  5115. top:501px;
  5116. width:125px;
  5117. height:16px;
  5118. text-align:right;
  5119. }
  5120. #u417_img {
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:125px;
  5125. height:16px;
  5126. }
  5127. #u418 {
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:125px;
  5132. white-space:nowrap;
  5133. }
  5134. #u419 {
  5135. position:absolute;
  5136. left:152px;
  5137. top:536px;
  5138. width:307px;
  5139. height:16px;
  5140. text-align:right;
  5141. }
  5142. #u419_img {
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:307px;
  5147. height:16px;
  5148. }
  5149. #u420 {
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:307px;
  5154. white-space:nowrap;
  5155. }
  5156. #u421 {
  5157. position:absolute;
  5158. left:90px;
  5159. top:570px;
  5160. width:369px;
  5161. height:16px;
  5162. text-align:right;
  5163. }
  5164. #u421_img {
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:369px;
  5169. height:16px;
  5170. }
  5171. #u422 {
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:369px;
  5176. white-space:nowrap;
  5177. }
  5178. #u423 {
  5179. position:absolute;
  5180. left:321px;
  5181. top:604px;
  5182. width:138px;
  5183. height:16px;
  5184. text-align:right;
  5185. }
  5186. #u423_img {
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:138px;
  5191. height:16px;
  5192. }
  5193. #u424 {
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:138px;
  5198. white-space:nowrap;
  5199. }
  5200. #u425 {
  5201. position:absolute;
  5202. left:217px;
  5203. top:638px;
  5204. width:242px;
  5205. height:16px;
  5206. text-align:right;
  5207. }
  5208. #u425_img {
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:242px;
  5213. height:16px;
  5214. }
  5215. #u426 {
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:242px;
  5220. white-space:nowrap;
  5221. }
  5222. #u427 {
  5223. position:absolute;
  5224. left:321px;
  5225. top:673px;
  5226. width:138px;
  5227. height:16px;
  5228. text-align:right;
  5229. }
  5230. #u427_img {
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:138px;
  5235. height:16px;
  5236. }
  5237. #u428 {
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:138px;
  5242. white-space:nowrap;
  5243. }
  5244. #u429 {
  5245. position:absolute;
  5246. left:360px;
  5247. top:707px;
  5248. width:99px;
  5249. height:16px;
  5250. text-align:right;
  5251. }
  5252. #u429_img {
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:99px;
  5257. height:16px;
  5258. }
  5259. #u430 {
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:99px;
  5264. white-space:nowrap;
  5265. }
  5266. #u431 {
  5267. position:absolute;
  5268. left:606px;
  5269. top:467px;
  5270. width:60px;
  5271. height:16px;
  5272. }
  5273. #u431_img {
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:60px;
  5278. height:16px;
  5279. }
  5280. #u432 {
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:60px;
  5285. white-space:nowrap;
  5286. }
  5287. #u433 {
  5288. position:absolute;
  5289. left:606px;
  5290. top:501px;
  5291. width:60px;
  5292. height:16px;
  5293. }
  5294. #u433_img {
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:60px;
  5299. height:16px;
  5300. }
  5301. #u434 {
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:60px;
  5306. white-space:nowrap;
  5307. }
  5308. #u435 {
  5309. position:absolute;
  5310. left:606px;
  5311. top:707px;
  5312. width:60px;
  5313. height:16px;
  5314. }
  5315. #u435_img {
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:60px;
  5320. height:16px;
  5321. }
  5322. #u436 {
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:60px;
  5327. white-space:nowrap;
  5328. }
  5329. #u437 {
  5330. position:absolute;
  5331. left:606px;
  5332. top:536px;
  5333. width:60px;
  5334. height:16px;
  5335. }
  5336. #u437_img {
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:60px;
  5341. height:16px;
  5342. }
  5343. #u438 {
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:60px;
  5348. white-space:nowrap;
  5349. }
  5350. #u439 {
  5351. position:absolute;
  5352. left:606px;
  5353. top:570px;
  5354. width:60px;
  5355. height:16px;
  5356. }
  5357. #u439_img {
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:60px;
  5362. height:16px;
  5363. }
  5364. #u440 {
  5365. position:absolute;
  5366. left:0px;
  5367. top:0px;
  5368. width:60px;
  5369. white-space:nowrap;
  5370. }
  5371. #u441 {
  5372. position:absolute;
  5373. left:606px;
  5374. top:604px;
  5375. width:60px;
  5376. height:16px;
  5377. }
  5378. #u441_img {
  5379. position:absolute;
  5380. left:0px;
  5381. top:0px;
  5382. width:60px;
  5383. height:16px;
  5384. }
  5385. #u442 {
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:60px;
  5390. white-space:nowrap;
  5391. }
  5392. #u443 {
  5393. position:absolute;
  5394. left:606px;
  5395. top:638px;
  5396. width:60px;
  5397. height:16px;
  5398. }
  5399. #u443_img {
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:60px;
  5404. height:16px;
  5405. }
  5406. #u444 {
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:60px;
  5411. white-space:nowrap;
  5412. }
  5413. #u445 {
  5414. position:absolute;
  5415. left:606px;
  5416. top:673px;
  5417. width:60px;
  5418. height:16px;
  5419. }
  5420. #u445_img {
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:60px;
  5425. height:16px;
  5426. }
  5427. #u446 {
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:60px;
  5432. white-space:nowrap;
  5433. }
  5434. #u447 {
  5435. position:absolute;
  5436. left:537px;
  5437. top:467px;
  5438. width:10px;
  5439. height:256px;
  5440. }
  5441. #u447_start {
  5442. position:absolute;
  5443. left:-5px;
  5444. top:0px;
  5445. width:20px;
  5446. height:18px;
  5447. }
  5448. #u447_end {
  5449. position:absolute;
  5450. left:-5px;
  5451. top:239px;
  5452. width:20px;
  5453. height:18px;
  5454. }
  5455. #u447_line {
  5456. position:absolute;
  5457. left:5px;
  5458. top:0px;
  5459. width:1px;
  5460. height:256px;
  5461. }
  5462. #u448 {
  5463. position:absolute;
  5464. left:126px;
  5465. top:439px;
  5466. width:57px;
  5467. height:20px;
  5468. font-family:'微软雅黑 Bold', '微软雅黑';
  5469. font-weight:700;
  5470. font-style:normal;
  5471. font-size:14px;
  5472. }
  5473. #u448_img {
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:57px;
  5478. height:20px;
  5479. }
  5480. #u449 {
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:57px;
  5485. white-space:nowrap;
  5486. }
  5487. #u450 {
  5488. position:absolute;
  5489. left:607px;
  5490. top:441px;
  5491. width:53px;
  5492. height:19px;
  5493. font-family:'微软雅黑 Bold', '微软雅黑';
  5494. font-weight:700;
  5495. font-style:normal;
  5496. }
  5497. #u450_img {
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:53px;
  5502. height:19px;
  5503. }
  5504. #u451 {
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:53px;
  5509. white-space:nowrap;
  5510. }
  5511. #u452 {
  5512. position:absolute;
  5513. left:126px;
  5514. top:797px;
  5515. width:175px;
  5516. height:20px;
  5517. font-family:'微软雅黑 Bold', '微软雅黑';
  5518. font-weight:700;
  5519. font-style:normal;
  5520. font-size:14px;
  5521. }
  5522. #u452_img {
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:175px;
  5527. height:20px;
  5528. }
  5529. #u453 {
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:175px;
  5534. word-wrap:break-word;
  5535. }
  5536. #u454 {
  5537. position:absolute;
  5538. left:360px;
  5539. top:838px;
  5540. width:99px;
  5541. height:16px;
  5542. }
  5543. #u454_img {
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:99px;
  5548. height:16px;
  5549. }
  5550. #u455 {
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:99px;
  5555. white-space:nowrap;
  5556. }
  5557. #u456 {
  5558. position:absolute;
  5559. left:249px;
  5560. top:878px;
  5561. width:210px;
  5562. height:16px;
  5563. }
  5564. #u456_img {
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:210px;
  5569. height:16px;
  5570. }
  5571. #u457 {
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:210px;
  5576. white-space:nowrap;
  5577. }
  5578. #u458 {
  5579. position:absolute;
  5580. left:224px;
  5581. top:918px;
  5582. width:235px;
  5583. height:16px;
  5584. }
  5585. #u458_img {
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:235px;
  5590. height:16px;
  5591. }
  5592. #u459 {
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:235px;
  5597. white-space:nowrap;
  5598. }
  5599. #u460 {
  5600. position:absolute;
  5601. left:145px;
  5602. top:954px;
  5603. width:314px;
  5604. height:16px;
  5605. }
  5606. #u460_img {
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:314px;
  5611. height:16px;
  5612. }
  5613. #u461 {
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:314px;
  5618. white-space:nowrap;
  5619. }
  5620. #u462 {
  5621. position:absolute;
  5622. left:314px;
  5623. top:988px;
  5624. width:145px;
  5625. height:16px;
  5626. }
  5627. #u462_img {
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:145px;
  5632. height:16px;
  5633. }
  5634. #u463 {
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:145px;
  5639. white-space:nowrap;
  5640. }
  5641. #u464 {
  5642. position:absolute;
  5643. left:171px;
  5644. top:1024px;
  5645. width:288px;
  5646. height:16px;
  5647. }
  5648. #u464_img {
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:288px;
  5653. height:16px;
  5654. }
  5655. #u465 {
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:288px;
  5660. white-space:nowrap;
  5661. }
  5662. #u466 {
  5663. position:absolute;
  5664. left:119px;
  5665. top:1058px;
  5666. width:340px;
  5667. height:16px;
  5668. }
  5669. #u466_img {
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:340px;
  5674. height:16px;
  5675. }
  5676. #u467 {
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:340px;
  5681. white-space:nowrap;
  5682. }
  5683. #u468 {
  5684. position:absolute;
  5685. left:606px;
  5686. top:838px;
  5687. width:60px;
  5688. height:16px;
  5689. }
  5690. #u468_img {
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:60px;
  5695. height:16px;
  5696. }
  5697. #u469 {
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:60px;
  5702. white-space:nowrap;
  5703. }
  5704. #u470 {
  5705. position:absolute;
  5706. left:606px;
  5707. top:875px;
  5708. width:60px;
  5709. height:16px;
  5710. }
  5711. #u470_img {
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:60px;
  5716. height:16px;
  5717. }
  5718. #u471 {
  5719. position:absolute;
  5720. left:0px;
  5721. top:0px;
  5722. width:60px;
  5723. white-space:nowrap;
  5724. }
  5725. #u472 {
  5726. position:absolute;
  5727. left:606px;
  5728. top:1058px;
  5729. width:60px;
  5730. height:16px;
  5731. }
  5732. #u472_img {
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:60px;
  5737. height:16px;
  5738. }
  5739. #u473 {
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:60px;
  5744. white-space:nowrap;
  5745. }
  5746. #u474 {
  5747. position:absolute;
  5748. left:606px;
  5749. top:911px;
  5750. width:60px;
  5751. height:16px;
  5752. }
  5753. #u474_img {
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:60px;
  5758. height:16px;
  5759. }
  5760. #u475 {
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:60px;
  5765. white-space:nowrap;
  5766. }
  5767. #u476 {
  5768. position:absolute;
  5769. left:606px;
  5770. top:948px;
  5771. width:60px;
  5772. height:16px;
  5773. }
  5774. #u476_img {
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:60px;
  5779. height:16px;
  5780. }
  5781. #u477 {
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:60px;
  5786. white-space:nowrap;
  5787. }
  5788. #u478 {
  5789. position:absolute;
  5790. left:606px;
  5791. top:985px;
  5792. width:60px;
  5793. height:16px;
  5794. }
  5795. #u478_img {
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:60px;
  5800. height:16px;
  5801. }
  5802. #u479 {
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:60px;
  5807. white-space:nowrap;
  5808. }
  5809. #u480 {
  5810. position:absolute;
  5811. left:606px;
  5812. top:1021px;
  5813. width:60px;
  5814. height:16px;
  5815. }
  5816. #u480_img {
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:60px;
  5821. height:16px;
  5822. }
  5823. #u481 {
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:60px;
  5828. white-space:nowrap;
  5829. }
  5830. #u482 {
  5831. position:absolute;
  5832. left:606px;
  5833. top:797px;
  5834. width:53px;
  5835. height:19px;
  5836. font-family:'微软雅黑 Bold', '微软雅黑';
  5837. font-weight:700;
  5838. font-style:normal;
  5839. }
  5840. #u482_img {
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:53px;
  5845. height:19px;
  5846. }
  5847. #u483 {
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:53px;
  5852. white-space:nowrap;
  5853. }
  5854. #u484 {
  5855. position:absolute;
  5856. left:543px;
  5857. top:831px;
  5858. width:10px;
  5859. height:243px;
  5860. }
  5861. #u484_start {
  5862. position:absolute;
  5863. left:-5px;
  5864. top:0px;
  5865. width:20px;
  5866. height:18px;
  5867. }
  5868. #u484_end {
  5869. position:absolute;
  5870. left:-5px;
  5871. top:226px;
  5872. width:20px;
  5873. height:18px;
  5874. }
  5875. #u484_line {
  5876. position:absolute;
  5877. left:5px;
  5878. top:0px;
  5879. width:1px;
  5880. height:243px;
  5881. }
  5882. #u485 {
  5883. position:absolute;
  5884. left:126px;
  5885. top:1147px;
  5886. width:100px;
  5887. height:20px;
  5888. font-family:'微软雅黑 Bold', '微软雅黑';
  5889. font-weight:700;
  5890. font-style:normal;
  5891. font-size:14px;
  5892. }
  5893. #u485_img {
  5894. position:absolute;
  5895. left:0px;
  5896. top:0px;
  5897. width:100px;
  5898. height:20px;
  5899. }
  5900. #u486 {
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:100px;
  5905. word-wrap:break-word;
  5906. }
  5907. #u487 {
  5908. position:absolute;
  5909. left:392px;
  5910. top:1191px;
  5911. width:67px;
  5912. height:16px;
  5913. }
  5914. #u487_img {
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:67px;
  5919. height:16px;
  5920. }
  5921. #u488 {
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:67px;
  5926. white-space:nowrap;
  5927. }
  5928. #u489 {
  5929. position:absolute;
  5930. left:353px;
  5931. top:1220px;
  5932. width:106px;
  5933. height:16px;
  5934. }
  5935. #u489_img {
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:106px;
  5940. height:16px;
  5941. }
  5942. #u490 {
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:106px;
  5947. white-space:nowrap;
  5948. }
  5949. #u491 {
  5950. position:absolute;
  5951. left:340px;
  5952. top:1249px;
  5953. width:119px;
  5954. height:16px;
  5955. }
  5956. #u491_img {
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:119px;
  5961. height:16px;
  5962. }
  5963. #u492 {
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:119px;
  5968. white-space:nowrap;
  5969. }
  5970. #u493 {
  5971. position:absolute;
  5972. left:262px;
  5973. top:1277px;
  5974. width:197px;
  5975. height:16px;
  5976. }
  5977. #u493_img {
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:197px;
  5982. height:16px;
  5983. }
  5984. #u494 {
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:197px;
  5989. white-space:nowrap;
  5990. }
  5991. #u495 {
  5992. position:absolute;
  5993. left:327px;
  5994. top:1306px;
  5995. width:132px;
  5996. height:16px;
  5997. }
  5998. #u495_img {
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:132px;
  6003. height:16px;
  6004. }
  6005. #u496 {
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:132px;
  6010. white-space:nowrap;
  6011. }
  6012. #u497 {
  6013. position:absolute;
  6014. left:353px;
  6015. top:1335px;
  6016. width:106px;
  6017. height:16px;
  6018. }
  6019. #u497_img {
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:106px;
  6024. height:16px;
  6025. }
  6026. #u498 {
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:106px;
  6031. white-space:nowrap;
  6032. }
  6033. #u499 {
  6034. position:absolute;
  6035. left:606px;
  6036. top:1191px;
  6037. width:60px;
  6038. height:16px;
  6039. }
  6040. #u499_img {
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:60px;
  6045. height:16px;
  6046. }
  6047. #u500 {
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:60px;
  6052. white-space:nowrap;
  6053. }
  6054. #u501 {
  6055. position:absolute;
  6056. left:606px;
  6057. top:1227px;
  6058. width:60px;
  6059. height:16px;
  6060. }
  6061. #u501_img {
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:60px;
  6066. height:16px;
  6067. }
  6068. #u502 {
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:60px;
  6073. white-space:nowrap;
  6074. }
  6075. #u503 {
  6076. position:absolute;
  6077. left:606px;
  6078. top:1263px;
  6079. width:60px;
  6080. height:16px;
  6081. }
  6082. #u503_img {
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:60px;
  6087. height:16px;
  6088. }
  6089. #u504 {
  6090. position:absolute;
  6091. left:0px;
  6092. top:0px;
  6093. width:60px;
  6094. white-space:nowrap;
  6095. }
  6096. #u505 {
  6097. position:absolute;
  6098. left:606px;
  6099. top:1299px;
  6100. width:60px;
  6101. height:16px;
  6102. }
  6103. #u505_img {
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:60px;
  6108. height:16px;
  6109. }
  6110. #u506 {
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:60px;
  6115. white-space:nowrap;
  6116. }
  6117. #u507 {
  6118. position:absolute;
  6119. left:606px;
  6120. top:1335px;
  6121. width:60px;
  6122. height:16px;
  6123. }
  6124. #u507_img {
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:60px;
  6129. height:16px;
  6130. }
  6131. #u508 {
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:60px;
  6136. white-space:nowrap;
  6137. }
  6138. #u509 {
  6139. position:absolute;
  6140. left:606px;
  6141. top:1147px;
  6142. width:53px;
  6143. height:19px;
  6144. font-family:'微软雅黑 Bold', '微软雅黑';
  6145. font-weight:700;
  6146. font-style:normal;
  6147. }
  6148. #u509_img {
  6149. position:absolute;
  6150. left:0px;
  6151. top:0px;
  6152. width:53px;
  6153. height:19px;
  6154. }
  6155. #u510 {
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:53px;
  6160. white-space:nowrap;
  6161. }
  6162. #u511 {
  6163. position:absolute;
  6164. left:543px;
  6165. top:1187px;
  6166. width:10px;
  6167. height:170px;
  6168. }
  6169. #u511_start {
  6170. position:absolute;
  6171. left:-5px;
  6172. top:0px;
  6173. width:20px;
  6174. height:18px;
  6175. }
  6176. #u511_end {
  6177. position:absolute;
  6178. left:-5px;
  6179. top:153px;
  6180. width:20px;
  6181. height:18px;
  6182. }
  6183. #u511_line {
  6184. position:absolute;
  6185. left:5px;
  6186. top:0px;
  6187. width:1px;
  6188. height:170px;
  6189. }
  6190. #u512 {
  6191. position:absolute;
  6192. left:76px;
  6193. top:1377px;
  6194. width:664px;
  6195. height:10px;
  6196. }
  6197. #u512_start {
  6198. position:absolute;
  6199. left:0px;
  6200. top:-5px;
  6201. width:18px;
  6202. height:20px;
  6203. }
  6204. #u512_end {
  6205. position:absolute;
  6206. left:647px;
  6207. top:-5px;
  6208. width:18px;
  6209. height:20px;
  6210. }
  6211. #u512_line {
  6212. position:absolute;
  6213. left:0px;
  6214. top:5px;
  6215. width:664px;
  6216. height:1px;
  6217. }
  6218. #u513 {
  6219. position:absolute;
  6220. left:224px;
  6221. top:1391px;
  6222. width:86px;
  6223. height:30px;
  6224. font-family:'微软雅黑 Bold', '微软雅黑';
  6225. font-weight:700;
  6226. font-style:normal;
  6227. font-size:18px;
  6228. color:#FF0000;
  6229. text-align:center;
  6230. }
  6231. #u513_img {
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:86px;
  6236. height:30px;
  6237. }
  6238. #u514 {
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:86px;
  6243. word-wrap:break-word;
  6244. }
  6245. #u515 {
  6246. position:absolute;
  6247. left:613px;
  6248. top:1391px;
  6249. width:45px;
  6250. height:27px;
  6251. font-family:'微软雅黑 Bold', '微软雅黑';
  6252. font-weight:700;
  6253. font-style:normal;
  6254. font-size:20px;
  6255. color:#FF0000;
  6256. }
  6257. #u515_img {
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:45px;
  6262. height:27px;
  6263. }
  6264. #u516 {
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:45px;
  6269. white-space:nowrap;
  6270. }
  6271. #u517 {
  6272. position:absolute;
  6273. left:543px;
  6274. top:1387px;
  6275. width:10px;
  6276. height:34px;
  6277. }
  6278. #u517_start {
  6279. position:absolute;
  6280. left:-5px;
  6281. top:0px;
  6282. width:20px;
  6283. height:18px;
  6284. }
  6285. #u517_end {
  6286. position:absolute;
  6287. left:-5px;
  6288. top:17px;
  6289. width:20px;
  6290. height:18px;
  6291. }
  6292. #u517_line {
  6293. position:absolute;
  6294. left:5px;
  6295. top:0px;
  6296. width:1px;
  6297. height:34px;
  6298. }
  6299. #u518 {
  6300. position:absolute;
  6301. left:76px;
  6302. top:1447px;
  6303. width:286px;
  6304. height:190px;
  6305. }
  6306. #u518_img {
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:286px;
  6311. height:190px;
  6312. }
  6313. #u519 {
  6314. position:absolute;
  6315. left:2px;
  6316. top:87px;
  6317. width:282px;
  6318. visibility:hidden;
  6319. word-wrap:break-word;
  6320. }
  6321. #u520 {
  6322. position:absolute;
  6323. left:109px;
  6324. top:1437px;
  6325. width:100px;
  6326. height:20px;
  6327. font-family:'微软雅黑 Bold', '微软雅黑';
  6328. font-weight:700;
  6329. font-style:normal;
  6330. font-size:14px;
  6331. }
  6332. #u520_img {
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:100px;
  6337. height:20px;
  6338. }
  6339. #u521 {
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:100px;
  6344. word-wrap:break-word;
  6345. }
  6346. #u522 {
  6347. position:absolute;
  6348. left:454px;
  6349. top:1445px;
  6350. width:286px;
  6351. height:190px;
  6352. }
  6353. #u522_img {
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:286px;
  6358. height:190px;
  6359. }
  6360. #u523 {
  6361. position:absolute;
  6362. left:2px;
  6363. top:87px;
  6364. width:282px;
  6365. visibility:hidden;
  6366. word-wrap:break-word;
  6367. }
  6368. #u524 {
  6369. position:absolute;
  6370. left:482px;
  6371. top:1437px;
  6372. width:100px;
  6373. height:20px;
  6374. font-family:'微软雅黑 Bold', '微软雅黑';
  6375. font-weight:700;
  6376. font-style:normal;
  6377. font-size:14px;
  6378. }
  6379. #u524_img {
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:100px;
  6384. height:20px;
  6385. }
  6386. #u525 {
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:100px;
  6391. word-wrap:break-word;
  6392. }
  6393. #u526 {
  6394. position:absolute;
  6395. left:109px;
  6396. top:1487px;
  6397. width:241px;
  6398. height:64px;
  6399. }
  6400. #u526_img {
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:241px;
  6405. height:64px;
  6406. }
  6407. #u527 {
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:241px;
  6412. white-space:nowrap;
  6413. }
  6414. #u528 {
  6415. position:absolute;
  6416. left:482px;
  6417. top:1487px;
  6418. width:241px;
  6419. height:64px;
  6420. }
  6421. #u528_img {
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:241px;
  6426. height:64px;
  6427. }
  6428. #u529 {
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:241px;
  6433. white-space:nowrap;
  6434. }
  6435. #u530 {
  6436. position:absolute;
  6437. left:77px;
  6438. top:1423px;
  6439. width:664px;
  6440. height:10px;
  6441. }
  6442. #u530_start {
  6443. position:absolute;
  6444. left:0px;
  6445. top:-5px;
  6446. width:18px;
  6447. height:20px;
  6448. }
  6449. #u530_end {
  6450. position:absolute;
  6451. left:647px;
  6452. top:-5px;
  6453. width:18px;
  6454. height:20px;
  6455. }
  6456. #u530_line {
  6457. position:absolute;
  6458. left:0px;
  6459. top:5px;
  6460. width:664px;
  6461. height:1px;
  6462. }
  6463. #u531 {
  6464. position:absolute;
  6465. left:107px;
  6466. top:1678px;
  6467. width:67px;
  6468. height:20px;
  6469. font-family:'微软雅黑 Bold', '微软雅黑';
  6470. font-weight:700;
  6471. font-style:normal;
  6472. font-size:14px;
  6473. }
  6474. #u531_img {
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:67px;
  6479. height:20px;
  6480. }
  6481. #u532 {
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:67px;
  6486. word-wrap:break-word;
  6487. }
  6488. #u533 {
  6489. position:absolute;
  6490. left:121px;
  6491. top:1732px;
  6492. width:107px;
  6493. height:16px;
  6494. }
  6495. #u533_img {
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:107px;
  6500. height:16px;
  6501. }
  6502. #u534 {
  6503. position:absolute;
  6504. left:0px;
  6505. top:0px;
  6506. width:107px;
  6507. word-wrap:break-word;
  6508. }
  6509. #u535 {
  6510. position:absolute;
  6511. left:187px;
  6512. top:1732px;
  6513. width:14px;
  6514. height:16px;
  6515. }
  6516. #u535_img {
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:14px;
  6521. height:16px;
  6522. }
  6523. #u536 {
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:14px;
  6528. white-space:nowrap;
  6529. }
  6530. #u537 {
  6531. position:absolute;
  6532. left:284px;
  6533. top:1732px;
  6534. width:134px;
  6535. height:16px;
  6536. }
  6537. #u537_img {
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:134px;
  6542. height:16px;
  6543. }
  6544. #u538 {
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:134px;
  6549. word-wrap:break-word;
  6550. }
  6551. #u539 {
  6552. position:absolute;
  6553. left:377px;
  6554. top:1732px;
  6555. width:14px;
  6556. height:16px;
  6557. }
  6558. #u539_img {
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:14px;
  6563. height:16px;
  6564. }
  6565. #u540 {
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:14px;
  6570. white-space:nowrap;
  6571. }
  6572. #u541 {
  6573. position:absolute;
  6574. left:480px;
  6575. top:1732px;
  6576. width:100px;
  6577. height:16px;
  6578. }
  6579. #u541_img {
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:100px;
  6584. height:16px;
  6585. }
  6586. #u542 {
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:100px;
  6591. word-wrap:break-word;
  6592. }
  6593. #u543 {
  6594. position:absolute;
  6595. left:523px;
  6596. top:1732px;
  6597. width:14px;
  6598. height:16px;
  6599. }
  6600. #u543_img {
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:14px;
  6605. height:16px;
  6606. }
  6607. #u544 {
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:14px;
  6612. white-space:nowrap;
  6613. }
  6614. #u545 {
  6615. position:absolute;
  6616. left:628px;
  6617. top:1732px;
  6618. width:100px;
  6619. height:16px;
  6620. }
  6621. #u545_img {
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:100px;
  6626. height:16px;
  6627. }
  6628. #u546 {
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:100px;
  6633. word-wrap:break-word;
  6634. }
  6635. #u547 {
  6636. position:absolute;
  6637. left:694px;
  6638. top:1732px;
  6639. width:14px;
  6640. height:16px;
  6641. }
  6642. #u547_img {
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:14px;
  6647. height:16px;
  6648. }
  6649. #u548 {
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:14px;
  6654. white-space:nowrap;
  6655. }
  6656. #u549 {
  6657. position:absolute;
  6658. left:121px;
  6659. top:1782px;
  6660. width:56px;
  6661. height:16px;
  6662. }
  6663. #u549_img {
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:56px;
  6668. height:16px;
  6669. }
  6670. #u550 {
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:56px;
  6675. white-space:nowrap;
  6676. }
  6677. #u551 {
  6678. position:absolute;
  6679. left:187px;
  6680. top:1782px;
  6681. width:66px;
  6682. height:16px;
  6683. }
  6684. #u551_img {
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:66px;
  6689. height:16px;
  6690. }
  6691. #u552 {
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:66px;
  6696. white-space:nowrap;
  6697. }
  6698. #u553 {
  6699. position:absolute;
  6700. left:310px;
  6701. top:1782px;
  6702. width:66px;
  6703. height:16px;
  6704. }
  6705. #u553_img {
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:66px;
  6710. height:16px;
  6711. }
  6712. #u554 {
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:66px;
  6717. white-space:nowrap;
  6718. }
  6719. #u555 {
  6720. position:absolute;
  6721. left:399px;
  6722. top:1782px;
  6723. width:35px;
  6724. height:16px;
  6725. }
  6726. #u555_img {
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:35px;
  6731. height:16px;
  6732. }
  6733. #u556 {
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:35px;
  6738. white-space:nowrap;
  6739. }
  6740. #u557 {
  6741. position:absolute;
  6742. left:504px;
  6743. top:1782px;
  6744. width:66px;
  6745. height:16px;
  6746. }
  6747. #u557_img {
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:66px;
  6752. height:16px;
  6753. }
  6754. #u558 {
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:66px;
  6759. white-space:nowrap;
  6760. }
  6761. #u559 {
  6762. position:absolute;
  6763. left:580px;
  6764. top:1782px;
  6765. width:65px;
  6766. height:16px;
  6767. }
  6768. #u559_img {
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:65px;
  6773. height:16px;
  6774. }
  6775. #u560 {
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:65px;
  6780. white-space:nowrap;
  6781. }
  6782. #u561 {
  6783. position:absolute;
  6784. left:323px;
  6785. top:1822px;
  6786. width:53px;
  6787. height:16px;
  6788. }
  6789. #u561_img {
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:53px;
  6794. height:16px;
  6795. }
  6796. #u562 {
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:53px;
  6801. white-space:nowrap;
  6802. }
  6803. #u563 {
  6804. position:absolute;
  6805. left:399px;
  6806. top:1822px;
  6807. width:31px;
  6808. height:16px;
  6809. }
  6810. #u563_img {
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:31px;
  6815. height:16px;
  6816. }
  6817. #u564 {
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:31px;
  6822. white-space:nowrap;
  6823. }
  6824. #u565 {
  6825. position:absolute;
  6826. left:504px;
  6827. top:1822px;
  6828. width:66px;
  6829. height:16px;
  6830. }
  6831. #u565_img {
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:66px;
  6836. height:16px;
  6837. }
  6838. #u566 {
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:66px;
  6843. white-space:nowrap;
  6844. }
  6845. #u567 {
  6846. position:absolute;
  6847. left:580px;
  6848. top:1822px;
  6849. width:65px;
  6850. height:16px;
  6851. }
  6852. #u567_img {
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:65px;
  6857. height:16px;
  6858. }
  6859. #u568 {
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:65px;
  6864. white-space:nowrap;
  6865. }
  6866. #u344_state1 {
  6867. position:relative;
  6868. left:0px;
  6869. top:0px;
  6870. visibility:hidden;
  6871. background-image:none;
  6872. }
  6873. #u344_state1_content {
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:1px;
  6878. height:1px;
  6879. }
  6880. #u569 {
  6881. position:absolute;
  6882. left:0px;
  6883. top:20px;
  6884. width:680px;
  6885. height:340px;
  6886. }
  6887. #u569_img {
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:680px;
  6892. height:340px;
  6893. }
  6894. #u570 {
  6895. position:absolute;
  6896. left:2px;
  6897. top:162px;
  6898. width:676px;
  6899. visibility:hidden;
  6900. word-wrap:break-word;
  6901. }
  6902. #u571 {
  6903. position:absolute;
  6904. left:30px;
  6905. top:8px;
  6906. width:97px;
  6907. height:21px;
  6908. font-family:'微软雅黑 Bold', '微软雅黑';
  6909. font-weight:700;
  6910. font-style:normal;
  6911. font-size:16px;
  6912. }
  6913. #u571_img {
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:97px;
  6918. height:21px;
  6919. }
  6920. #u572 {
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:97px;
  6925. white-space:nowrap;
  6926. }
  6927. #u573 {
  6928. position:absolute;
  6929. left:69px;
  6930. top:94px;
  6931. width:469px;
  6932. height:36px;
  6933. font-family:'微软雅黑 Regular', '微软雅黑';
  6934. font-weight:400;
  6935. font-style:normal;
  6936. font-size:18px;
  6937. color:#6699FF;
  6938. }
  6939. #u573_img {
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:469px;
  6944. height:36px;
  6945. }
  6946. #u574 {
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:469px;
  6951. white-space:nowrap;
  6952. }
  6953. #u575 {
  6954. position:absolute;
  6955. left:98px;
  6956. top:70px;
  6957. width:90px;
  6958. height:40px;
  6959. font-family:'微软雅黑 Bold', '微软雅黑';
  6960. font-weight:700;
  6961. font-style:normal;
  6962. }
  6963. #u575_img {
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:90px;
  6968. height:40px;
  6969. }
  6970. #u576 {
  6971. position:absolute;
  6972. left:2px;
  6973. top:10px;
  6974. width:86px;
  6975. word-wrap:break-word;
  6976. }
  6977. #u577 {
  6978. position:absolute;
  6979. left:213px;
  6980. top:70px;
  6981. width:90px;
  6982. height:40px;
  6983. font-family:'微软雅黑 Bold', '微软雅黑';
  6984. font-weight:700;
  6985. font-style:normal;
  6986. }
  6987. #u577_img {
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:90px;
  6992. height:40px;
  6993. }
  6994. #u578 {
  6995. position:absolute;
  6996. left:2px;
  6997. top:10px;
  6998. width:86px;
  6999. word-wrap:break-word;
  7000. }
  7001. #u579 {
  7002. position:absolute;
  7003. left:0px;
  7004. top:110px;
  7005. width:1000px;
  7006. height:10px;
  7007. }
  7008. #u579_start {
  7009. position:absolute;
  7010. left:0px;
  7011. top:-5px;
  7012. width:18px;
  7013. height:20px;
  7014. }
  7015. #u579_end {
  7016. position:absolute;
  7017. left:983px;
  7018. top:-5px;
  7019. width:18px;
  7020. height:20px;
  7021. }
  7022. #u579_line {
  7023. position:absolute;
  7024. left:0px;
  7025. top:5px;
  7026. width:1000px;
  7027. height:1px;
  7028. }
  7029. #u580 {
  7030. position:absolute;
  7031. left:213px;
  7032. top:69px;
  7033. width:90px;
  7034. height:47px;
  7035. font-family:'微软雅黑 Bold', '微软雅黑';
  7036. font-weight:700;
  7037. font-style:normal;
  7038. font-size:14px;
  7039. color:#6699CC;
  7040. }
  7041. #u580_img {
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:90px;
  7046. height:47px;
  7047. }
  7048. #u580_img.selected {
  7049. }
  7050. #u580.selected {
  7051. }
  7052. #u581 {
  7053. position:absolute;
  7054. left:2px;
  7055. top:14px;
  7056. width:86px;
  7057. word-wrap:break-word;
  7058. }
  7059. #u582 {
  7060. position:absolute;
  7061. left:99px;
  7062. top:69px;
  7063. width:90px;
  7064. height:47px;
  7065. font-family:'微软雅黑 Bold', '微软雅黑';
  7066. font-weight:700;
  7067. font-style:normal;
  7068. font-size:14px;
  7069. color:#6699CC;
  7070. }
  7071. #u582_img {
  7072. position:absolute;
  7073. left:0px;
  7074. top:0px;
  7075. width:90px;
  7076. height:47px;
  7077. }
  7078. #u582_img.selected {
  7079. }
  7080. #u582.selected {
  7081. }
  7082. #u583 {
  7083. position:absolute;
  7084. left:2px;
  7085. top:14px;
  7086. width:86px;
  7087. word-wrap:break-word;
  7088. }
  7089. #u584 {
  7090. position:absolute;
  7091. left:830px;
  7092. top:13px;
  7093. width:70px;
  7094. height:25px;
  7095. }
  7096. #u584_input {
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:70px;
  7101. height:25px;
  7102. font-family:'Arial Normal', 'Arial';
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:13px;
  7106. text-decoration:none;
  7107. color:#000000;
  7108. text-align:center;
  7109. }
  7110. #u585 {
  7111. position:absolute;
  7112. left:920px;
  7113. top:13px;
  7114. width:70px;
  7115. height:25px;
  7116. }
  7117. #u585_input {
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:70px;
  7122. height:25px;
  7123. font-family:'Arial Normal', 'Arial';
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:13px;
  7127. text-decoration:none;
  7128. color:#000000;
  7129. text-align:center;
  7130. }
  7131. #u171_state4 {
  7132. position:relative;
  7133. left:0px;
  7134. top:0px;
  7135. visibility:hidden;
  7136. background-image:none;
  7137. }
  7138. #u171_state4_content {
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:1px;
  7143. height:1px;
  7144. }
  7145. #u586 {
  7146. position:absolute;
  7147. left:0px;
  7148. top:50px;
  7149. }
  7150. #u586_state0 {
  7151. position:relative;
  7152. left:0px;
  7153. top:0px;
  7154. background-image:none;
  7155. }
  7156. #u586_state0_content {
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:1px;
  7161. height:1px;
  7162. }
  7163. #u587 {
  7164. position:absolute;
  7165. left:0px;
  7166. top:20px;
  7167. width:680px;
  7168. height:340px;
  7169. }
  7170. #u587_img {
  7171. position:absolute;
  7172. left:0px;
  7173. top:0px;
  7174. width:680px;
  7175. height:340px;
  7176. }
  7177. #u588 {
  7178. position:absolute;
  7179. left:2px;
  7180. top:162px;
  7181. width:676px;
  7182. visibility:hidden;
  7183. word-wrap:break-word;
  7184. }
  7185. #u589 {
  7186. position:absolute;
  7187. left:30px;
  7188. top:8px;
  7189. width:97px;
  7190. height:21px;
  7191. font-family:'微软雅黑 Bold', '微软雅黑';
  7192. font-weight:700;
  7193. font-style:normal;
  7194. font-size:16px;
  7195. }
  7196. #u589_img {
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:97px;
  7201. height:21px;
  7202. }
  7203. #u590 {
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:97px;
  7208. white-space:nowrap;
  7209. }
  7210. #u591 {
  7211. position:absolute;
  7212. left:69px;
  7213. top:94px;
  7214. width:397px;
  7215. height:36px;
  7216. font-family:'微软雅黑 Regular', '微软雅黑';
  7217. font-weight:400;
  7218. font-style:normal;
  7219. font-size:18px;
  7220. color:#6699FF;
  7221. }
  7222. #u591_img {
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:397px;
  7227. height:36px;
  7228. }
  7229. #u592 {
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:397px;
  7234. white-space:nowrap;
  7235. }
  7236. #u586_state1 {
  7237. position:relative;
  7238. left:0px;
  7239. top:0px;
  7240. visibility:hidden;
  7241. background-image:none;
  7242. }
  7243. #u586_state1_content {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:1px;
  7248. height:1px;
  7249. }
  7250. #u593 {
  7251. position:absolute;
  7252. left:0px;
  7253. top:20px;
  7254. width:680px;
  7255. height:340px;
  7256. }
  7257. #u593_img {
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:680px;
  7262. height:340px;
  7263. }
  7264. #u594 {
  7265. position:absolute;
  7266. left:2px;
  7267. top:162px;
  7268. width:676px;
  7269. visibility:hidden;
  7270. word-wrap:break-word;
  7271. }
  7272. #u595 {
  7273. position:absolute;
  7274. left:30px;
  7275. top:8px;
  7276. width:97px;
  7277. height:21px;
  7278. font-family:'微软雅黑 Bold', '微软雅黑';
  7279. font-weight:700;
  7280. font-style:normal;
  7281. font-size:16px;
  7282. }
  7283. #u595_img {
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:97px;
  7288. height:21px;
  7289. }
  7290. #u596 {
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:97px;
  7295. white-space:nowrap;
  7296. }
  7297. #u597 {
  7298. position:absolute;
  7299. left:69px;
  7300. top:94px;
  7301. width:487px;
  7302. height:36px;
  7303. font-family:'微软雅黑 Regular', '微软雅黑';
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:18px;
  7307. color:#6699FF;
  7308. }
  7309. #u597_img {
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:487px;
  7314. height:36px;
  7315. }
  7316. #u598 {
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:487px;
  7321. white-space:nowrap;
  7322. }
  7323. #u599 {
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:1000px;
  7328. height:50px;
  7329. }
  7330. #u599_img {
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:1000px;
  7335. height:50px;
  7336. }
  7337. #u600 {
  7338. position:absolute;
  7339. left:2px;
  7340. top:17px;
  7341. width:996px;
  7342. visibility:hidden;
  7343. word-wrap:break-word;
  7344. }
  7345. #u601 {
  7346. position:absolute;
  7347. left:830px;
  7348. top:13px;
  7349. width:70px;
  7350. height:25px;
  7351. }
  7352. #u601_input {
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:70px;
  7357. height:25px;
  7358. font-family:'Arial Normal', 'Arial';
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:13px;
  7362. text-decoration:none;
  7363. color:#000000;
  7364. text-align:center;
  7365. }
  7366. #u602 {
  7367. position:absolute;
  7368. left:920px;
  7369. top:13px;
  7370. width:70px;
  7371. height:25px;
  7372. }
  7373. #u602_input {
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:70px;
  7378. height:25px;
  7379. font-family:'Arial Normal', 'Arial';
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:13px;
  7383. text-decoration:none;
  7384. color:#000000;
  7385. text-align:center;
  7386. }
  7387. #u603 {
  7388. position:absolute;
  7389. left:155px;
  7390. top:94px;
  7391. width:90px;
  7392. height:47px;
  7393. font-family:'微软雅黑 Bold', '微软雅黑';
  7394. font-weight:700;
  7395. font-style:normal;
  7396. font-size:14px;
  7397. color:#6699CC;
  7398. }
  7399. #u603_img {
  7400. position:absolute;
  7401. left:0px;
  7402. top:0px;
  7403. width:90px;
  7404. height:47px;
  7405. }
  7406. #u603_img.selected {
  7407. }
  7408. #u603.selected {
  7409. }
  7410. #u604 {
  7411. position:absolute;
  7412. left:2px;
  7413. top:14px;
  7414. width:86px;
  7415. word-wrap:break-word;
  7416. }
  7417. #u605 {
  7418. position:absolute;
  7419. left:275px;
  7420. top:94px;
  7421. width:90px;
  7422. height:47px;
  7423. font-family:'微软雅黑 Bold', '微软雅黑';
  7424. font-weight:700;
  7425. font-style:normal;
  7426. font-size:14px;
  7427. color:#6699CC;
  7428. }
  7429. #u605_img {
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:90px;
  7434. height:47px;
  7435. }
  7436. #u605_img.selected {
  7437. }
  7438. #u605.selected {
  7439. }
  7440. #u606 {
  7441. position:absolute;
  7442. left:2px;
  7443. top:14px;
  7444. width:86px;
  7445. word-wrap:break-word;
  7446. }
  7447. #u607 {
  7448. position:absolute;
  7449. left:395px;
  7450. top:94px;
  7451. width:90px;
  7452. height:47px;
  7453. font-family:'微软雅黑 Bold', '微软雅黑';
  7454. font-weight:700;
  7455. font-style:normal;
  7456. font-size:14px;
  7457. color:#6699CC;
  7458. }
  7459. #u607_img {
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:90px;
  7464. height:47px;
  7465. }
  7466. #u607_img.selected {
  7467. }
  7468. #u607.selected {
  7469. }
  7470. #u608 {
  7471. position:absolute;
  7472. left:2px;
  7473. top:14px;
  7474. width:86px;
  7475. word-wrap:break-word;
  7476. }
  7477. #u609 {
  7478. position:absolute;
  7479. left:515px;
  7480. top:94px;
  7481. width:90px;
  7482. height:47px;
  7483. font-family:'微软雅黑 Bold', '微软雅黑';
  7484. font-weight:700;
  7485. font-style:normal;
  7486. font-size:14px;
  7487. color:#6699CC;
  7488. }
  7489. #u609_img {
  7490. position:absolute;
  7491. left:0px;
  7492. top:0px;
  7493. width:90px;
  7494. height:47px;
  7495. }
  7496. #u609_img.selected {
  7497. }
  7498. #u609.selected {
  7499. }
  7500. #u610 {
  7501. position:absolute;
  7502. left:2px;
  7503. top:14px;
  7504. width:86px;
  7505. word-wrap:break-word;
  7506. }
  7507. #u611 {
  7508. position:absolute;
  7509. left:0px;
  7510. top:135px;
  7511. width:1000px;
  7512. height:10px;
  7513. }
  7514. #u611_start {
  7515. position:absolute;
  7516. left:0px;
  7517. top:-5px;
  7518. width:18px;
  7519. height:20px;
  7520. }
  7521. #u611_end {
  7522. position:absolute;
  7523. left:983px;
  7524. top:-5px;
  7525. width:18px;
  7526. height:20px;
  7527. }
  7528. #u611_line {
  7529. position:absolute;
  7530. left:0px;
  7531. top:5px;
  7532. width:1000px;
  7533. height:1px;
  7534. }
  7535. #u612 {
  7536. position:absolute;
  7537. left:35px;
  7538. top:94px;
  7539. width:90px;
  7540. height:47px;
  7541. font-family:'微软雅黑 Bold', '微软雅黑';
  7542. font-weight:700;
  7543. font-style:normal;
  7544. font-size:14px;
  7545. color:#6699CC;
  7546. }
  7547. #u612_img {
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:90px;
  7552. height:47px;
  7553. }
  7554. #u612_img.selected {
  7555. }
  7556. #u612.selected {
  7557. }
  7558. #u613 {
  7559. position:absolute;
  7560. left:2px;
  7561. top:14px;
  7562. width:86px;
  7563. word-wrap:break-word;
  7564. }