styles.css 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1323px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u911_div {
  16. position:absolute;
  17. left:0px;
  18. top:0px;
  19. width:320px;
  20. height:1033px;
  21. background:inherit;
  22. background-color:rgba(242, 242, 242, 1);
  23. box-sizing:border-box;
  24. border-width:1px;
  25. border-style:solid;
  26. border-color:rgba(0, 0, 0, 1);
  27. border-radius:0px;
  28. -moz-box-shadow:none;
  29. -webkit-box-shadow:none;
  30. box-shadow:none;
  31. }
  32. #u911 {
  33. position:absolute;
  34. left:19px;
  35. top:19px;
  36. width:320px;
  37. height:1033px;
  38. }
  39. #u912 {
  40. position:absolute;
  41. left:2px;
  42. top:508px;
  43. width:316px;
  44. visibility:hidden;
  45. word-wrap:break-word;
  46. }
  47. #u913_div {
  48. position:absolute;
  49. left:0px;
  50. top:0px;
  51. width:159px;
  52. height:19px;
  53. background:inherit;
  54. background-color:rgba(255, 255, 255, 0);
  55. border:none;
  56. border-radius:0px;
  57. -moz-box-shadow:none;
  58. -webkit-box-shadow:none;
  59. box-shadow:none;
  60. font-family:'MicrosoftYaHei', '微软雅黑';
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. text-align:center;
  65. }
  66. #u913 {
  67. position:absolute;
  68. left:89px;
  69. top:92px;
  70. width:159px;
  71. height:19px;
  72. font-family:'MicrosoftYaHei', '微软雅黑';
  73. font-weight:400;
  74. font-style:normal;
  75. font-size:14px;
  76. text-align:center;
  77. }
  78. #u914 {
  79. position:absolute;
  80. left:0px;
  81. top:0px;
  82. width:155px;
  83. white-space:nowrap;
  84. }
  85. #u915_div {
  86. position:absolute;
  87. left:0px;
  88. top:0px;
  89. width:300px;
  90. height:112px;
  91. background:inherit;
  92. background-color:rgba(255, 255, 255, 0);
  93. border:none;
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'MicrosoftYaHei', '微软雅黑';
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:12px;
  102. line-height:28px;
  103. }
  104. #u915 {
  105. position:absolute;
  106. left:29px;
  107. top:155px;
  108. width:300px;
  109. height:112px;
  110. font-family:'MicrosoftYaHei', '微软雅黑';
  111. font-weight:400;
  112. font-style:normal;
  113. font-size:12px;
  114. line-height:28px;
  115. }
  116. #u916 {
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:300px;
  121. word-wrap:break-word;
  122. }
  123. #u917 {
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:0px;
  128. height:0px;
  129. }
  130. #u918_div {
  131. position:absolute;
  132. left:0px;
  133. top:0px;
  134. width:209px;
  135. height:17px;
  136. background:inherit;
  137. background-color:rgba(255, 255, 255, 0);
  138. border:none;
  139. border-radius:0px;
  140. -moz-box-shadow:none;
  141. -webkit-box-shadow:none;
  142. box-shadow:none;
  143. font-family:'PingFangSC-Regular', 'PingFang SC';
  144. font-weight:400;
  145. font-style:normal;
  146. text-align:center;
  147. }
  148. #u918 {
  149. position:absolute;
  150. left:75px;
  151. top:871px;
  152. width:209px;
  153. height:17px;
  154. font-family:'PingFangSC-Regular', 'PingFang SC';
  155. font-weight:400;
  156. font-style:normal;
  157. text-align:center;
  158. }
  159. #u919 {
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:209px;
  164. word-wrap:break-word;
  165. }
  166. #u920_img {
  167. position:absolute;
  168. left:-1px;
  169. top:-1px;
  170. width:123px;
  171. height:5px;
  172. }
  173. #u920 {
  174. position:absolute;
  175. left:120px;
  176. top:896px;
  177. width:120px;
  178. height:2px;
  179. }
  180. #u921 {
  181. position:absolute;
  182. left:2px;
  183. top:-7px;
  184. width:116px;
  185. visibility:hidden;
  186. word-wrap:break-word;
  187. }
  188. #u922 {
  189. position:absolute;
  190. left:0px;
  191. top:0px;
  192. width:0px;
  193. height:0px;
  194. }
  195. #u923_div {
  196. position:absolute;
  197. left:0px;
  198. top:0px;
  199. width:209px;
  200. height:17px;
  201. background:inherit;
  202. background-color:rgba(255, 255, 255, 0);
  203. border:none;
  204. border-radius:0px;
  205. -moz-box-shadow:none;
  206. -webkit-box-shadow:none;
  207. box-shadow:none;
  208. font-family:'PingFangSC-Regular', 'PingFang SC';
  209. font-weight:400;
  210. font-style:normal;
  211. text-align:center;
  212. }
  213. #u923 {
  214. position:absolute;
  215. left:75px;
  216. top:284px;
  217. width:209px;
  218. height:17px;
  219. font-family:'PingFangSC-Regular', 'PingFang SC';
  220. font-weight:400;
  221. font-style:normal;
  222. text-align:center;
  223. }
  224. #u924 {
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:209px;
  229. word-wrap:break-word;
  230. }
  231. #u925_img {
  232. position:absolute;
  233. left:-1px;
  234. top:-1px;
  235. width:123px;
  236. height:5px;
  237. }
  238. #u925 {
  239. position:absolute;
  240. left:120px;
  241. top:309px;
  242. width:120px;
  243. height:2px;
  244. }
  245. #u926 {
  246. position:absolute;
  247. left:2px;
  248. top:-7px;
  249. width:116px;
  250. visibility:hidden;
  251. word-wrap:break-word;
  252. }
  253. #u927 {
  254. position:absolute;
  255. left:0px;
  256. top:0px;
  257. width:0px;
  258. height:0px;
  259. }
  260. #u928_div {
  261. position:absolute;
  262. left:0px;
  263. top:0px;
  264. width:221px;
  265. height:15px;
  266. background:inherit;
  267. background-color:rgba(255, 255, 255, 0);
  268. border:none;
  269. border-radius:0px;
  270. -moz-box-shadow:none;
  271. -webkit-box-shadow:none;
  272. box-shadow:none;
  273. }
  274. #u928 {
  275. position:absolute;
  276. left:75px;
  277. top:129px;
  278. width:221px;
  279. height:15px;
  280. }
  281. #u929 {
  282. position:absolute;
  283. left:0px;
  284. top:0px;
  285. width:226px;
  286. white-space:nowrap;
  287. }
  288. #u930_img {
  289. position:absolute;
  290. left:0px;
  291. top:0px;
  292. width:18px;
  293. height:18px;
  294. }
  295. #u930 {
  296. position:absolute;
  297. left:57px;
  298. top:127px;
  299. width:18px;
  300. height:18px;
  301. }
  302. #u931 {
  303. position:absolute;
  304. left:2px;
  305. top:1px;
  306. width:14px;
  307. visibility:hidden;
  308. word-wrap:break-word;
  309. }
  310. #u932 {
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:0px;
  315. height:0px;
  316. }
  317. #u933_div {
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:138px;
  322. height:189px;
  323. background:inherit;
  324. background-color:rgba(255, 255, 255, 1);
  325. box-sizing:border-box;
  326. border-width:1px;
  327. border-style:solid;
  328. border-color:rgba(215, 215, 215, 1);
  329. border-radius:0px;
  330. -moz-box-shadow:none;
  331. -webkit-box-shadow:none;
  332. box-shadow:none;
  333. }
  334. #u933 {
  335. position:absolute;
  336. left:36px;
  337. top:350px;
  338. width:138px;
  339. height:189px;
  340. }
  341. #u934 {
  342. position:absolute;
  343. left:2px;
  344. top:86px;
  345. width:134px;
  346. visibility:hidden;
  347. word-wrap:break-word;
  348. }
  349. #u935_div {
  350. position:absolute;
  351. left:0px;
  352. top:0px;
  353. width:136px;
  354. height:30px;
  355. background:inherit;
  356. background-color:rgba(255, 255, 255, 1);
  357. box-sizing:border-box;
  358. border-width:1px;
  359. border-style:solid;
  360. border-color:rgba(215, 215, 215, 1);
  361. border-radius:20px;
  362. -moz-box-shadow:none;
  363. -webkit-box-shadow:none;
  364. box-shadow:none;
  365. }
  366. #u935 {
  367. position:absolute;
  368. left:37px;
  369. top:544px;
  370. width:136px;
  371. height:30px;
  372. }
  373. #u936 {
  374. position:absolute;
  375. left:2px;
  376. top:6px;
  377. width:132px;
  378. word-wrap:break-word;
  379. }
  380. #u937_div {
  381. position:absolute;
  382. left:0px;
  383. top:0px;
  384. width:136px;
  385. height:42px;
  386. background:inherit;
  387. background-color:rgba(242, 242, 242, 0.498039215686275);
  388. border:none;
  389. border-radius:0px;
  390. -moz-box-shadow:none;
  391. -webkit-box-shadow:none;
  392. box-shadow:none;
  393. }
  394. #u937 {
  395. position:absolute;
  396. left:37px;
  397. top:497px;
  398. width:136px;
  399. height:42px;
  400. }
  401. #u938 {
  402. position:absolute;
  403. left:2px;
  404. top:13px;
  405. width:132px;
  406. visibility:hidden;
  407. word-wrap:break-word;
  408. }
  409. #u939_div {
  410. position:absolute;
  411. left:0px;
  412. top:0px;
  413. width:138px;
  414. height:14px;
  415. background:inherit;
  416. background-color:rgba(255, 255, 255, 0);
  417. border:none;
  418. border-radius:0px;
  419. -moz-box-shadow:none;
  420. -webkit-box-shadow:none;
  421. box-shadow:none;
  422. font-size:12px;
  423. color:#1E1E1E;
  424. text-align:center;
  425. }
  426. #u939 {
  427. position:absolute;
  428. left:35px;
  429. top:504px;
  430. width:138px;
  431. height:14px;
  432. font-size:12px;
  433. color:#1E1E1E;
  434. text-align:center;
  435. }
  436. #u940 {
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:138px;
  441. word-wrap:break-word;
  442. }
  443. #u941_div {
  444. position:absolute;
  445. left:0px;
  446. top:0px;
  447. width:57px;
  448. height:15px;
  449. background:inherit;
  450. background-color:rgba(255, 255, 255, 0);
  451. border:none;
  452. border-radius:0px;
  453. -moz-box-shadow:none;
  454. -webkit-box-shadow:none;
  455. box-shadow:none;
  456. font-family:'CenturyGothic', 'Century Gothic';
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:11px;
  460. color:#999999;
  461. }
  462. #u941 {
  463. position:absolute;
  464. left:77px;
  465. top:520px;
  466. width:57px;
  467. height:15px;
  468. font-family:'CenturyGothic', 'Century Gothic';
  469. font-weight:400;
  470. font-style:normal;
  471. font-size:11px;
  472. color:#999999;
  473. }
  474. #u942 {
  475. position:absolute;
  476. left:0px;
  477. top:0px;
  478. width:54px;
  479. white-space:nowrap;
  480. }
  481. #u943_div {
  482. position:absolute;
  483. left:0px;
  484. top:0px;
  485. width:136px;
  486. height:42px;
  487. background:inherit;
  488. background-color:rgba(242, 242, 242, 0.498039215686275);
  489. border:none;
  490. border-radius:0px;
  491. -moz-box-shadow:none;
  492. -webkit-box-shadow:none;
  493. box-shadow:none;
  494. }
  495. #u943 {
  496. position:absolute;
  497. left:185px;
  498. top:478px;
  499. width:136px;
  500. height:42px;
  501. }
  502. #u944 {
  503. position:absolute;
  504. left:2px;
  505. top:13px;
  506. width:132px;
  507. visibility:hidden;
  508. word-wrap:break-word;
  509. }
  510. #u945 {
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u946_div {
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:138px;
  522. height:189px;
  523. background:inherit;
  524. background-color:rgba(255, 255, 255, 1);
  525. box-sizing:border-box;
  526. border-width:1px;
  527. border-style:solid;
  528. border-color:rgba(215, 215, 215, 1);
  529. border-radius:0px;
  530. -moz-box-shadow:none;
  531. -webkit-box-shadow:none;
  532. box-shadow:none;
  533. }
  534. #u946 {
  535. position:absolute;
  536. left:185px;
  537. top:350px;
  538. width:138px;
  539. height:189px;
  540. }
  541. #u947 {
  542. position:absolute;
  543. left:2px;
  544. top:86px;
  545. width:134px;
  546. visibility:hidden;
  547. word-wrap:break-word;
  548. }
  549. #u948_div {
  550. position:absolute;
  551. left:0px;
  552. top:0px;
  553. width:136px;
  554. height:30px;
  555. background:inherit;
  556. background-color:rgba(201, 201, 201, 1);
  557. box-sizing:border-box;
  558. border-width:1px;
  559. border-style:solid;
  560. border-color:rgba(215, 215, 215, 1);
  561. border-radius:20px;
  562. -moz-box-shadow:none;
  563. -webkit-box-shadow:none;
  564. box-shadow:none;
  565. }
  566. #u948 {
  567. position:absolute;
  568. left:186px;
  569. top:544px;
  570. width:136px;
  571. height:30px;
  572. }
  573. #u949 {
  574. position:absolute;
  575. left:2px;
  576. top:6px;
  577. width:132px;
  578. word-wrap:break-word;
  579. }
  580. #u950_div {
  581. position:absolute;
  582. left:0px;
  583. top:0px;
  584. width:136px;
  585. height:42px;
  586. background:inherit;
  587. background-color:rgba(242, 242, 242, 0.498039215686275);
  588. border:none;
  589. border-radius:0px;
  590. -moz-box-shadow:none;
  591. -webkit-box-shadow:none;
  592. box-shadow:none;
  593. }
  594. #u950 {
  595. position:absolute;
  596. left:186px;
  597. top:497px;
  598. width:136px;
  599. height:42px;
  600. }
  601. #u951 {
  602. position:absolute;
  603. left:2px;
  604. top:13px;
  605. width:132px;
  606. visibility:hidden;
  607. word-wrap:break-word;
  608. }
  609. #u952_div {
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:138px;
  614. height:14px;
  615. background:inherit;
  616. background-color:rgba(255, 255, 255, 0);
  617. border:none;
  618. border-radius:0px;
  619. -moz-box-shadow:none;
  620. -webkit-box-shadow:none;
  621. box-shadow:none;
  622. font-size:12px;
  623. color:#1E1E1E;
  624. text-align:center;
  625. }
  626. #u952 {
  627. position:absolute;
  628. left:184px;
  629. top:504px;
  630. width:138px;
  631. height:14px;
  632. font-size:12px;
  633. color:#1E1E1E;
  634. text-align:center;
  635. }
  636. #u953 {
  637. position:absolute;
  638. left:0px;
  639. top:0px;
  640. width:138px;
  641. word-wrap:break-word;
  642. }
  643. #u954_img {
  644. position:absolute;
  645. left:-1px;
  646. top:-1px;
  647. width:35px;
  648. height:5px;
  649. }
  650. #u954 {
  651. position:absolute;
  652. left:219px;
  653. top:527px;
  654. width:32px;
  655. height:2px;
  656. }
  657. #u955 {
  658. position:absolute;
  659. left:2px;
  660. top:-7px;
  661. width:28px;
  662. visibility:hidden;
  663. word-wrap:break-word;
  664. }
  665. #u956_div {
  666. position:absolute;
  667. left:0px;
  668. top:0px;
  669. width:26px;
  670. height:15px;
  671. background:inherit;
  672. background-color:rgba(255, 255, 255, 0);
  673. border:none;
  674. border-radius:0px;
  675. -moz-box-shadow:none;
  676. -webkit-box-shadow:none;
  677. box-shadow:none;
  678. font-family:'CenturyGothic', 'Century Gothic';
  679. font-weight:400;
  680. font-style:normal;
  681. font-size:11px;
  682. }
  683. #u956 {
  684. position:absolute;
  685. left:261px;
  686. top:520px;
  687. width:26px;
  688. height:15px;
  689. font-family:'CenturyGothic', 'Century Gothic';
  690. font-weight:400;
  691. font-style:normal;
  692. font-size:11px;
  693. }
  694. #u957 {
  695. position:absolute;
  696. left:0px;
  697. top:0px;
  698. width:25px;
  699. white-space:nowrap;
  700. }
  701. #u958 {
  702. position:absolute;
  703. left:0px;
  704. top:0px;
  705. width:0px;
  706. height:0px;
  707. }
  708. #u959_div {
  709. position:absolute;
  710. left:0px;
  711. top:0px;
  712. width:138px;
  713. height:189px;
  714. background:inherit;
  715. background-color:rgba(255, 255, 255, 1);
  716. box-sizing:border-box;
  717. border-width:1px;
  718. border-style:solid;
  719. border-color:rgba(215, 215, 215, 1);
  720. border-radius:0px;
  721. -moz-box-shadow:none;
  722. -webkit-box-shadow:none;
  723. box-shadow:none;
  724. }
  725. #u959 {
  726. position:absolute;
  727. left:35px;
  728. top:604px;
  729. width:138px;
  730. height:189px;
  731. }
  732. #u960 {
  733. position:absolute;
  734. left:2px;
  735. top:86px;
  736. width:134px;
  737. visibility:hidden;
  738. word-wrap:break-word;
  739. }
  740. #u961_div {
  741. position:absolute;
  742. left:0px;
  743. top:0px;
  744. width:136px;
  745. height:30px;
  746. background:inherit;
  747. background-color:rgba(255, 255, 255, 1);
  748. box-sizing:border-box;
  749. border-width:1px;
  750. border-style:solid;
  751. border-color:rgba(215, 215, 215, 1);
  752. border-radius:20px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. }
  757. #u961 {
  758. position:absolute;
  759. left:36px;
  760. top:798px;
  761. width:136px;
  762. height:30px;
  763. }
  764. #u962 {
  765. position:absolute;
  766. left:2px;
  767. top:6px;
  768. width:132px;
  769. word-wrap:break-word;
  770. }
  771. #u963_div {
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:136px;
  776. height:42px;
  777. background:inherit;
  778. background-color:rgba(242, 242, 242, 0.498039215686275);
  779. border:none;
  780. border-radius:0px;
  781. -moz-box-shadow:none;
  782. -webkit-box-shadow:none;
  783. box-shadow:none;
  784. }
  785. #u963 {
  786. position:absolute;
  787. left:36px;
  788. top:751px;
  789. width:136px;
  790. height:42px;
  791. }
  792. #u964 {
  793. position:absolute;
  794. left:2px;
  795. top:13px;
  796. width:132px;
  797. visibility:hidden;
  798. word-wrap:break-word;
  799. }
  800. #u965_div {
  801. position:absolute;
  802. left:0px;
  803. top:0px;
  804. width:138px;
  805. height:14px;
  806. background:inherit;
  807. background-color:rgba(255, 255, 255, 0);
  808. border:none;
  809. border-radius:0px;
  810. -moz-box-shadow:none;
  811. -webkit-box-shadow:none;
  812. box-shadow:none;
  813. font-size:12px;
  814. color:#1E1E1E;
  815. text-align:center;
  816. }
  817. #u965 {
  818. position:absolute;
  819. left:34px;
  820. top:758px;
  821. width:138px;
  822. height:14px;
  823. font-size:12px;
  824. color:#1E1E1E;
  825. text-align:center;
  826. }
  827. #u966 {
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:138px;
  832. word-wrap:break-word;
  833. }
  834. #u967_div {
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:57px;
  839. height:15px;
  840. background:inherit;
  841. background-color:rgba(255, 255, 255, 0);
  842. border:none;
  843. border-radius:0px;
  844. -moz-box-shadow:none;
  845. -webkit-box-shadow:none;
  846. box-shadow:none;
  847. font-family:'CenturyGothic', 'Century Gothic';
  848. font-weight:400;
  849. font-style:normal;
  850. font-size:11px;
  851. color:#999999;
  852. }
  853. #u967 {
  854. position:absolute;
  855. left:76px;
  856. top:774px;
  857. width:57px;
  858. height:15px;
  859. font-family:'CenturyGothic', 'Century Gothic';
  860. font-weight:400;
  861. font-style:normal;
  862. font-size:11px;
  863. color:#999999;
  864. }
  865. #u968 {
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:54px;
  870. white-space:nowrap;
  871. }
  872. #u969 {
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:0px;
  877. height:0px;
  878. }
  879. #u970_div {
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:138px;
  884. height:189px;
  885. background:inherit;
  886. background-color:rgba(255, 255, 255, 1);
  887. box-sizing:border-box;
  888. border-width:1px;
  889. border-style:solid;
  890. border-color:rgba(215, 215, 215, 1);
  891. border-radius:0px;
  892. -moz-box-shadow:none;
  893. -webkit-box-shadow:none;
  894. box-shadow:none;
  895. }
  896. #u970 {
  897. position:absolute;
  898. left:184px;
  899. top:604px;
  900. width:138px;
  901. height:189px;
  902. }
  903. #u971 {
  904. position:absolute;
  905. left:2px;
  906. top:86px;
  907. width:134px;
  908. visibility:hidden;
  909. word-wrap:break-word;
  910. }
  911. #u972_div {
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:136px;
  916. height:30px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 1);
  919. box-sizing:border-box;
  920. border-width:1px;
  921. border-style:solid;
  922. border-color:rgba(215, 215, 215, 1);
  923. border-radius:20px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u972 {
  929. position:absolute;
  930. left:185px;
  931. top:798px;
  932. width:136px;
  933. height:30px;
  934. }
  935. #u973 {
  936. position:absolute;
  937. left:2px;
  938. top:6px;
  939. width:132px;
  940. word-wrap:break-word;
  941. }
  942. #u974_div {
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:136px;
  947. height:42px;
  948. background:inherit;
  949. background-color:rgba(242, 242, 242, 0.498039215686275);
  950. border:none;
  951. border-radius:0px;
  952. -moz-box-shadow:none;
  953. -webkit-box-shadow:none;
  954. box-shadow:none;
  955. }
  956. #u974 {
  957. position:absolute;
  958. left:185px;
  959. top:751px;
  960. width:136px;
  961. height:42px;
  962. }
  963. #u975 {
  964. position:absolute;
  965. left:2px;
  966. top:13px;
  967. width:132px;
  968. visibility:hidden;
  969. word-wrap:break-word;
  970. }
  971. #u976_div {
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:138px;
  976. height:14px;
  977. background:inherit;
  978. background-color:rgba(255, 255, 255, 0);
  979. border:none;
  980. border-radius:0px;
  981. -moz-box-shadow:none;
  982. -webkit-box-shadow:none;
  983. box-shadow:none;
  984. font-size:12px;
  985. color:#1E1E1E;
  986. text-align:center;
  987. }
  988. #u976 {
  989. position:absolute;
  990. left:183px;
  991. top:758px;
  992. width:138px;
  993. height:14px;
  994. font-size:12px;
  995. color:#1E1E1E;
  996. text-align:center;
  997. }
  998. #u977 {
  999. position:absolute;
  1000. left:0px;
  1001. top:0px;
  1002. width:138px;
  1003. word-wrap:break-word;
  1004. }
  1005. #u978_img {
  1006. position:absolute;
  1007. left:-1px;
  1008. top:-1px;
  1009. width:35px;
  1010. height:5px;
  1011. }
  1012. #u978 {
  1013. position:absolute;
  1014. left:218px;
  1015. top:781px;
  1016. width:32px;
  1017. height:2px;
  1018. }
  1019. #u979 {
  1020. position:absolute;
  1021. left:2px;
  1022. top:-7px;
  1023. width:28px;
  1024. visibility:hidden;
  1025. word-wrap:break-word;
  1026. }
  1027. #u980_div {
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:26px;
  1032. height:15px;
  1033. background:inherit;
  1034. background-color:rgba(255, 255, 255, 0);
  1035. border:none;
  1036. border-radius:0px;
  1037. -moz-box-shadow:none;
  1038. -webkit-box-shadow:none;
  1039. box-shadow:none;
  1040. font-family:'CenturyGothic', 'Century Gothic';
  1041. font-weight:400;
  1042. font-style:normal;
  1043. font-size:11px;
  1044. }
  1045. #u980 {
  1046. position:absolute;
  1047. left:260px;
  1048. top:774px;
  1049. width:26px;
  1050. height:15px;
  1051. font-family:'CenturyGothic', 'Century Gothic';
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:11px;
  1055. }
  1056. #u981 {
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:25px;
  1061. white-space:nowrap;
  1062. }
  1063. #u982_div {
  1064. position:absolute;
  1065. left:0px;
  1066. top:0px;
  1067. width:320px;
  1068. height:789px;
  1069. background:inherit;
  1070. background-color:rgba(242, 242, 242, 1);
  1071. box-sizing:border-box;
  1072. border-width:1px;
  1073. border-style:solid;
  1074. border-color:rgba(0, 0, 0, 1);
  1075. border-radius:0px;
  1076. -moz-box-shadow:none;
  1077. -webkit-box-shadow:none;
  1078. box-shadow:none;
  1079. }
  1080. #u982 {
  1081. position:absolute;
  1082. left:692px;
  1083. top:20px;
  1084. width:320px;
  1085. height:789px;
  1086. }
  1087. #u983 {
  1088. position:absolute;
  1089. left:2px;
  1090. top:386px;
  1091. width:316px;
  1092. visibility:hidden;
  1093. word-wrap:break-word;
  1094. }
  1095. #u984_div {
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:159px;
  1100. height:19px;
  1101. background:inherit;
  1102. background-color:rgba(255, 255, 255, 0);
  1103. border:none;
  1104. border-radius:0px;
  1105. -moz-box-shadow:none;
  1106. -webkit-box-shadow:none;
  1107. box-shadow:none;
  1108. font-family:'MicrosoftYaHei', '微软雅黑';
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:14px;
  1112. text-align:center;
  1113. }
  1114. #u984 {
  1115. position:absolute;
  1116. left:762px;
  1117. top:93px;
  1118. width:159px;
  1119. height:19px;
  1120. font-family:'MicrosoftYaHei', '微软雅黑';
  1121. font-weight:400;
  1122. font-style:normal;
  1123. font-size:14px;
  1124. text-align:center;
  1125. }
  1126. #u985 {
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:155px;
  1131. white-space:nowrap;
  1132. }
  1133. #u986_div {
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:300px;
  1138. height:112px;
  1139. background:inherit;
  1140. background-color:rgba(255, 255, 255, 0);
  1141. border:none;
  1142. border-radius:0px;
  1143. -moz-box-shadow:none;
  1144. -webkit-box-shadow:none;
  1145. box-shadow:none;
  1146. font-family:'MicrosoftYaHei', '微软雅黑';
  1147. font-weight:400;
  1148. font-style:normal;
  1149. font-size:12px;
  1150. line-height:28px;
  1151. }
  1152. #u986 {
  1153. position:absolute;
  1154. left:702px;
  1155. top:156px;
  1156. width:300px;
  1157. height:112px;
  1158. font-family:'MicrosoftYaHei', '微软雅黑';
  1159. font-weight:400;
  1160. font-style:normal;
  1161. font-size:12px;
  1162. line-height:28px;
  1163. }
  1164. #u987 {
  1165. position:absolute;
  1166. left:0px;
  1167. top:0px;
  1168. width:300px;
  1169. word-wrap:break-word;
  1170. }
  1171. #u988_div {
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:300px;
  1176. height:84px;
  1177. background:inherit;
  1178. background-color:rgba(255, 255, 255, 0);
  1179. border:none;
  1180. border-radius:0px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. font-family:'MicrosoftYaHei', '微软雅黑';
  1185. font-weight:400;
  1186. font-style:normal;
  1187. line-height:28px;
  1188. }
  1189. #u988 {
  1190. position:absolute;
  1191. left:703px;
  1192. top:668px;
  1193. width:300px;
  1194. height:84px;
  1195. font-family:'MicrosoftYaHei', '微软雅黑';
  1196. font-weight:400;
  1197. font-style:normal;
  1198. line-height:28px;
  1199. }
  1200. #u989 {
  1201. position:absolute;
  1202. left:0px;
  1203. top:0px;
  1204. width:300px;
  1205. word-wrap:break-word;
  1206. }
  1207. #u990 {
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:0px;
  1212. height:0px;
  1213. }
  1214. #u991_div {
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:209px;
  1219. height:17px;
  1220. background:inherit;
  1221. background-color:rgba(255, 255, 255, 0);
  1222. border:none;
  1223. border-radius:0px;
  1224. -moz-box-shadow:none;
  1225. -webkit-box-shadow:none;
  1226. box-shadow:none;
  1227. font-family:'PingFangSC-Regular', 'PingFang SC';
  1228. font-weight:400;
  1229. font-style:normal;
  1230. text-align:center;
  1231. }
  1232. #u991 {
  1233. position:absolute;
  1234. left:749px;
  1235. top:618px;
  1236. width:209px;
  1237. height:17px;
  1238. font-family:'PingFangSC-Regular', 'PingFang SC';
  1239. font-weight:400;
  1240. font-style:normal;
  1241. text-align:center;
  1242. }
  1243. #u992 {
  1244. position:absolute;
  1245. left:0px;
  1246. top:0px;
  1247. width:209px;
  1248. word-wrap:break-word;
  1249. }
  1250. #u993_img {
  1251. position:absolute;
  1252. left:-1px;
  1253. top:-1px;
  1254. width:123px;
  1255. height:5px;
  1256. }
  1257. #u993 {
  1258. position:absolute;
  1259. left:794px;
  1260. top:643px;
  1261. width:120px;
  1262. height:2px;
  1263. }
  1264. #u994 {
  1265. position:absolute;
  1266. left:2px;
  1267. top:-7px;
  1268. width:116px;
  1269. visibility:hidden;
  1270. word-wrap:break-word;
  1271. }
  1272. #u995 {
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:0px;
  1277. height:0px;
  1278. }
  1279. #u996_div {
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:209px;
  1284. height:17px;
  1285. background:inherit;
  1286. background-color:rgba(255, 255, 255, 0);
  1287. border:none;
  1288. border-radius:0px;
  1289. -moz-box-shadow:none;
  1290. -webkit-box-shadow:none;
  1291. box-shadow:none;
  1292. font-family:'PingFangSC-Regular', 'PingFang SC';
  1293. font-weight:400;
  1294. font-style:normal;
  1295. text-align:center;
  1296. }
  1297. #u996 {
  1298. position:absolute;
  1299. left:748px;
  1300. top:285px;
  1301. width:209px;
  1302. height:17px;
  1303. font-family:'PingFangSC-Regular', 'PingFang SC';
  1304. font-weight:400;
  1305. font-style:normal;
  1306. text-align:center;
  1307. }
  1308. #u997 {
  1309. position:absolute;
  1310. left:0px;
  1311. top:0px;
  1312. width:209px;
  1313. word-wrap:break-word;
  1314. }
  1315. #u998_img {
  1316. position:absolute;
  1317. left:-1px;
  1318. top:-1px;
  1319. width:123px;
  1320. height:5px;
  1321. }
  1322. #u998 {
  1323. position:absolute;
  1324. left:793px;
  1325. top:310px;
  1326. width:120px;
  1327. height:2px;
  1328. }
  1329. #u999 {
  1330. position:absolute;
  1331. left:2px;
  1332. top:-7px;
  1333. width:116px;
  1334. visibility:hidden;
  1335. word-wrap:break-word;
  1336. }
  1337. #u1000 {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:0px;
  1342. height:0px;
  1343. }
  1344. #u1001_div {
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:221px;
  1349. height:15px;
  1350. background:inherit;
  1351. background-color:rgba(255, 255, 255, 0);
  1352. border:none;
  1353. border-radius:0px;
  1354. -moz-box-shadow:none;
  1355. -webkit-box-shadow:none;
  1356. box-shadow:none;
  1357. }
  1358. #u1001 {
  1359. position:absolute;
  1360. left:748px;
  1361. top:130px;
  1362. width:221px;
  1363. height:15px;
  1364. }
  1365. #u1002 {
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:226px;
  1370. white-space:nowrap;
  1371. }
  1372. #u1003_img {
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:18px;
  1377. height:18px;
  1378. }
  1379. #u1003 {
  1380. position:absolute;
  1381. left:730px;
  1382. top:128px;
  1383. width:18px;
  1384. height:18px;
  1385. }
  1386. #u1004 {
  1387. position:absolute;
  1388. left:2px;
  1389. top:1px;
  1390. width:14px;
  1391. visibility:hidden;
  1392. word-wrap:break-word;
  1393. }
  1394. #u1005_div {
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:136px;
  1399. height:42px;
  1400. background:inherit;
  1401. background-color:rgba(242, 242, 242, 0.498039215686275);
  1402. border:none;
  1403. border-radius:0px;
  1404. -moz-box-shadow:none;
  1405. -webkit-box-shadow:none;
  1406. box-shadow:none;
  1407. }
  1408. #u1005 {
  1409. position:absolute;
  1410. left:858px;
  1411. top:479px;
  1412. width:136px;
  1413. height:42px;
  1414. }
  1415. #u1006 {
  1416. position:absolute;
  1417. left:2px;
  1418. top:13px;
  1419. width:132px;
  1420. visibility:hidden;
  1421. word-wrap:break-word;
  1422. }
  1423. #u1007_div {
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:300px;
  1428. height:73px;
  1429. background:inherit;
  1430. background-color:rgba(255, 255, 255, 1);
  1431. box-sizing:border-box;
  1432. border-width:1px;
  1433. border-style:solid;
  1434. border-color:rgba(215, 215, 215, 1);
  1435. border-radius:0px;
  1436. -moz-box-shadow:none;
  1437. -webkit-box-shadow:none;
  1438. box-shadow:none;
  1439. text-align:left;
  1440. }
  1441. #u1007 {
  1442. position:absolute;
  1443. left:702px;
  1444. top:350px;
  1445. width:300px;
  1446. height:73px;
  1447. text-align:left;
  1448. }
  1449. #u1008 {
  1450. position:absolute;
  1451. left:2px;
  1452. top:2px;
  1453. width:296px;
  1454. word-wrap:break-word;
  1455. }
  1456. #u1009_div {
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:300px;
  1461. height:73px;
  1462. background:inherit;
  1463. background-color:rgba(255, 255, 255, 1);
  1464. box-sizing:border-box;
  1465. border-width:1px;
  1466. border-style:solid;
  1467. border-color:rgba(215, 215, 215, 1);
  1468. border-radius:0px;
  1469. -moz-box-shadow:none;
  1470. -webkit-box-shadow:none;
  1471. box-shadow:none;
  1472. text-align:left;
  1473. }
  1474. #u1009 {
  1475. position:absolute;
  1476. left:702px;
  1477. top:433px;
  1478. width:300px;
  1479. height:73px;
  1480. text-align:left;
  1481. }
  1482. #u1010 {
  1483. position:absolute;
  1484. left:2px;
  1485. top:2px;
  1486. width:296px;
  1487. word-wrap:break-word;
  1488. }
  1489. #u1011_div {
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:300px;
  1494. height:73px;
  1495. background:inherit;
  1496. background-color:rgba(255, 255, 255, 1);
  1497. box-sizing:border-box;
  1498. border-width:1px;
  1499. border-style:solid;
  1500. border-color:rgba(215, 215, 215, 1);
  1501. border-radius:0px;
  1502. -moz-box-shadow:none;
  1503. -webkit-box-shadow:none;
  1504. box-shadow:none;
  1505. text-align:left;
  1506. }
  1507. #u1011 {
  1508. position:absolute;
  1509. left:702px;
  1510. top:516px;
  1511. width:300px;
  1512. height:73px;
  1513. text-align:left;
  1514. }
  1515. #u1012 {
  1516. position:absolute;
  1517. left:2px;
  1518. top:2px;
  1519. width:296px;
  1520. word-wrap:break-word;
  1521. }
  1522. #u1013_img {
  1523. position:absolute;
  1524. left:-1px;
  1525. top:-1px;
  1526. width:35px;
  1527. height:5px;
  1528. }
  1529. #u1013 {
  1530. position:absolute;
  1531. left:730px;
  1532. top:404px;
  1533. width:32px;
  1534. height:2px;
  1535. }
  1536. #u1014 {
  1537. position:absolute;
  1538. left:2px;
  1539. top:-7px;
  1540. width:28px;
  1541. visibility:hidden;
  1542. word-wrap:break-word;
  1543. }
  1544. #u1015_div {
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:28px;
  1549. height:18px;
  1550. background:inherit;
  1551. background-color:rgba(255, 255, 255, 0);
  1552. border:none;
  1553. border-radius:0px;
  1554. -moz-box-shadow:none;
  1555. -webkit-box-shadow:none;
  1556. box-shadow:none;
  1557. font-family:'CenturyGothic', 'Century Gothic';
  1558. font-weight:400;
  1559. font-style:normal;
  1560. }
  1561. #u1015 {
  1562. position:absolute;
  1563. left:772px;
  1564. top:397px;
  1565. width:28px;
  1566. height:18px;
  1567. font-family:'CenturyGothic', 'Century Gothic';
  1568. font-weight:400;
  1569. font-style:normal;
  1570. }
  1571. #u1016 {
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:29px;
  1576. white-space:nowrap;
  1577. }
  1578. #u1017_img {
  1579. position:absolute;
  1580. left:-1px;
  1581. top:-1px;
  1582. width:60px;
  1583. height:5px;
  1584. }
  1585. #u1017 {
  1586. position:absolute;
  1587. left:730px;
  1588. top:484px;
  1589. width:57px;
  1590. height:2px;
  1591. }
  1592. #u1018 {
  1593. position:absolute;
  1594. left:2px;
  1595. top:-7px;
  1596. width:53px;
  1597. visibility:hidden;
  1598. word-wrap:break-word;
  1599. }
  1600. #u1019_div {
  1601. position:absolute;
  1602. left:0px;
  1603. top:0px;
  1604. width:28px;
  1605. height:18px;
  1606. background:inherit;
  1607. background-color:rgba(255, 255, 255, 0);
  1608. border:none;
  1609. border-radius:0px;
  1610. -moz-box-shadow:none;
  1611. -webkit-box-shadow:none;
  1612. box-shadow:none;
  1613. font-family:'CenturyGothic', 'Century Gothic';
  1614. font-weight:400;
  1615. font-style:normal;
  1616. }
  1617. #u1019 {
  1618. position:absolute;
  1619. left:797px;
  1620. top:477px;
  1621. width:28px;
  1622. height:18px;
  1623. font-family:'CenturyGothic', 'Century Gothic';
  1624. font-weight:400;
  1625. font-style:normal;
  1626. }
  1627. #u1020 {
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:29px;
  1632. white-space:nowrap;
  1633. }
  1634. #u1021_div {
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:75px;
  1639. height:25px;
  1640. background:inherit;
  1641. background-color:rgba(201, 201, 201, 1);
  1642. box-sizing:border-box;
  1643. border-width:1px;
  1644. border-style:solid;
  1645. border-color:rgba(215, 215, 215, 1);
  1646. border-radius:20px;
  1647. -moz-box-shadow:none;
  1648. -webkit-box-shadow:none;
  1649. box-shadow:none;
  1650. }
  1651. #u1021 {
  1652. position:absolute;
  1653. left:915px;
  1654. top:376px;
  1655. width:75px;
  1656. height:25px;
  1657. }
  1658. #u1022 {
  1659. position:absolute;
  1660. left:2px;
  1661. top:4px;
  1662. width:71px;
  1663. word-wrap:break-word;
  1664. }
  1665. #u1023_div {
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:57px;
  1670. height:15px;
  1671. background:inherit;
  1672. background-color:rgba(255, 255, 255, 0);
  1673. border:none;
  1674. border-radius:0px;
  1675. -moz-box-shadow:none;
  1676. -webkit-box-shadow:none;
  1677. box-shadow:none;
  1678. font-family:'CenturyGothic', 'Century Gothic';
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:11px;
  1682. color:#999999;
  1683. }
  1684. #u1023 {
  1685. position:absolute;
  1686. left:730px;
  1687. top:559px;
  1688. width:57px;
  1689. height:15px;
  1690. font-family:'CenturyGothic', 'Century Gothic';
  1691. font-weight:400;
  1692. font-style:normal;
  1693. font-size:11px;
  1694. color:#999999;
  1695. }
  1696. #u1024 {
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:54px;
  1701. white-space:nowrap;
  1702. }
  1703. #u1025_div {
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:75px;
  1708. height:25px;
  1709. background:inherit;
  1710. background-color:rgba(255, 255, 255, 1);
  1711. box-sizing:border-box;
  1712. border-width:1px;
  1713. border-style:solid;
  1714. border-color:rgba(215, 215, 215, 1);
  1715. border-radius:20px;
  1716. -moz-box-shadow:none;
  1717. -webkit-box-shadow:none;
  1718. box-shadow:none;
  1719. }
  1720. #u1025 {
  1721. position:absolute;
  1722. left:915px;
  1723. top:457px;
  1724. width:75px;
  1725. height:25px;
  1726. }
  1727. #u1026 {
  1728. position:absolute;
  1729. left:2px;
  1730. top:4px;
  1731. width:71px;
  1732. word-wrap:break-word;
  1733. }
  1734. #u1027_div {
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:75px;
  1739. height:25px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 1);
  1742. box-sizing:border-box;
  1743. border-width:1px;
  1744. border-style:solid;
  1745. border-color:rgba(215, 215, 215, 1);
  1746. border-radius:20px;
  1747. -moz-box-shadow:none;
  1748. -webkit-box-shadow:none;
  1749. box-shadow:none;
  1750. }
  1751. #u1027 {
  1752. position:absolute;
  1753. left:915px;
  1754. top:539px;
  1755. width:75px;
  1756. height:25px;
  1757. }
  1758. #u1028 {
  1759. position:absolute;
  1760. left:2px;
  1761. top:4px;
  1762. width:71px;
  1763. word-wrap:break-word;
  1764. }
  1765. #u1029_div {
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:317px;
  1770. height:50px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 1);
  1773. border:none;
  1774. border-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. color:#000000;
  1779. }
  1780. #u1029 {
  1781. position:absolute;
  1782. left:20px;
  1783. top:21px;
  1784. width:317px;
  1785. height:50px;
  1786. color:#000000;
  1787. }
  1788. #u1030 {
  1789. position:absolute;
  1790. left:2px;
  1791. top:17px;
  1792. width:313px;
  1793. visibility:hidden;
  1794. word-wrap:break-word;
  1795. }
  1796. #u1031 {
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:0px;
  1801. height:0px;
  1802. }
  1803. #u1032 {
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:0px;
  1808. height:0px;
  1809. }
  1810. #u1033_img {
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:9px;
  1815. height:10px;
  1816. }
  1817. #u1033 {
  1818. position:absolute;
  1819. left:20px;
  1820. top:25px;
  1821. width:9px;
  1822. height:10px;
  1823. }
  1824. #u1034 {
  1825. position:absolute;
  1826. left:2px;
  1827. top:-3px;
  1828. width:5px;
  1829. visibility:hidden;
  1830. word-wrap:break-word;
  1831. }
  1832. #u1035_img {
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:9px;
  1837. height:10px;
  1838. }
  1839. #u1035 {
  1840. position:absolute;
  1841. left:29px;
  1842. top:25px;
  1843. width:9px;
  1844. height:10px;
  1845. }
  1846. #u1036 {
  1847. position:absolute;
  1848. left:2px;
  1849. top:-3px;
  1850. width:5px;
  1851. visibility:hidden;
  1852. word-wrap:break-word;
  1853. }
  1854. #u1037_img {
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:9px;
  1859. height:10px;
  1860. }
  1861. #u1037 {
  1862. position:absolute;
  1863. left:37px;
  1864. top:25px;
  1865. width:9px;
  1866. height:10px;
  1867. }
  1868. #u1038 {
  1869. position:absolute;
  1870. left:2px;
  1871. top:-3px;
  1872. width:5px;
  1873. visibility:hidden;
  1874. word-wrap:break-word;
  1875. }
  1876. #u1039_img {
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:9px;
  1881. height:10px;
  1882. }
  1883. #u1039 {
  1884. position:absolute;
  1885. left:46px;
  1886. top:25px;
  1887. width:9px;
  1888. height:10px;
  1889. }
  1890. #u1040 {
  1891. position:absolute;
  1892. left:2px;
  1893. top:-3px;
  1894. width:5px;
  1895. visibility:hidden;
  1896. word-wrap:break-word;
  1897. }
  1898. #u1041_img {
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:9px;
  1903. height:10px;
  1904. }
  1905. #u1041 {
  1906. position:absolute;
  1907. left:55px;
  1908. top:25px;
  1909. width:9px;
  1910. height:10px;
  1911. }
  1912. #u1042 {
  1913. position:absolute;
  1914. left:2px;
  1915. top:-3px;
  1916. width:5px;
  1917. visibility:hidden;
  1918. word-wrap:break-word;
  1919. }
  1920. #u1043_div {
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:33px;
  1925. height:15px;
  1926. background:inherit;
  1927. background-color:rgba(255, 255, 255, 0);
  1928. border:none;
  1929. border-radius:0px;
  1930. -moz-box-shadow:none;
  1931. -webkit-box-shadow:none;
  1932. box-shadow:none;
  1933. font-size:13px;
  1934. color:#666666;
  1935. }
  1936. #u1043 {
  1937. position:absolute;
  1938. left:72px;
  1939. top:23px;
  1940. width:33px;
  1941. height:15px;
  1942. font-size:13px;
  1943. color:#666666;
  1944. }
  1945. #u1044 {
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:33px;
  1950. white-space:nowrap;
  1951. }
  1952. #u1045_img {
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:26px;
  1957. height:13px;
  1958. }
  1959. #u1045 {
  1960. position:absolute;
  1961. left:312px;
  1962. top:22px;
  1963. width:26px;
  1964. height:13px;
  1965. }
  1966. #u1046 {
  1967. position:absolute;
  1968. left:2px;
  1969. top:-2px;
  1970. width:22px;
  1971. visibility:hidden;
  1972. word-wrap:break-word;
  1973. }
  1974. #u1047_div {
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:34px;
  1979. height:15px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 0);
  1982. border:none;
  1983. border-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-size:13px;
  1988. color:#666666;
  1989. }
  1990. #u1047 {
  1991. position:absolute;
  1992. left:278px;
  1993. top:22px;
  1994. width:34px;
  1995. height:15px;
  1996. font-size:13px;
  1997. color:#666666;
  1998. }
  1999. #u1048 {
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:34px;
  2004. white-space:nowrap;
  2005. }
  2006. #u1049_div {
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:48px;
  2011. height:15px;
  2012. background:inherit;
  2013. background-color:rgba(255, 255, 255, 0);
  2014. border:none;
  2015. border-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-size:13px;
  2020. color:#666666;
  2021. }
  2022. #u1049 {
  2023. position:absolute;
  2024. left:156px;
  2025. top:23px;
  2026. width:48px;
  2027. height:15px;
  2028. font-size:13px;
  2029. color:#666666;
  2030. }
  2031. #u1050 {
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:50px;
  2036. white-space:nowrap;
  2037. }
  2038. #u1051_div {
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:73px;
  2043. height:18px;
  2044. background:inherit;
  2045. background-color:rgba(255, 255, 255, 0);
  2046. border:none;
  2047. border-radius:0px;
  2048. -moz-box-shadow:none;
  2049. -webkit-box-shadow:none;
  2050. box-shadow:none;
  2051. }
  2052. #u1051 {
  2053. position:absolute;
  2054. left:145px;
  2055. top:45px;
  2056. width:73px;
  2057. height:18px;
  2058. }
  2059. #u1052 {
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:71px;
  2064. white-space:nowrap;
  2065. }
  2066. #u1053_img {
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:20px;
  2071. height:20px;
  2072. }
  2073. #u1053 {
  2074. position:absolute;
  2075. left:25px;
  2076. top:44px;
  2077. width:20px;
  2078. height:20px;
  2079. }
  2080. #u1054 {
  2081. position:absolute;
  2082. left:2px;
  2083. top:2px;
  2084. width:16px;
  2085. visibility:hidden;
  2086. word-wrap:break-word;
  2087. }
  2088. #u1055_div {
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:317px;
  2093. height:50px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 1);
  2096. border:none;
  2097. border-radius:0px;
  2098. -moz-box-shadow:none;
  2099. -webkit-box-shadow:none;
  2100. box-shadow:none;
  2101. color:#000000;
  2102. }
  2103. #u1055 {
  2104. position:absolute;
  2105. left:693px;
  2106. top:21px;
  2107. width:317px;
  2108. height:50px;
  2109. color:#000000;
  2110. }
  2111. #u1056 {
  2112. position:absolute;
  2113. left:2px;
  2114. top:17px;
  2115. width:313px;
  2116. visibility:hidden;
  2117. word-wrap:break-word;
  2118. }
  2119. #u1057 {
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:0px;
  2124. height:0px;
  2125. }
  2126. #u1058 {
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:0px;
  2131. height:0px;
  2132. }
  2133. #u1059_img {
  2134. position:absolute;
  2135. left:0px;
  2136. top:0px;
  2137. width:9px;
  2138. height:10px;
  2139. }
  2140. #u1059 {
  2141. position:absolute;
  2142. left:693px;
  2143. top:25px;
  2144. width:9px;
  2145. height:10px;
  2146. }
  2147. #u1060 {
  2148. position:absolute;
  2149. left:2px;
  2150. top:-3px;
  2151. width:5px;
  2152. visibility:hidden;
  2153. word-wrap:break-word;
  2154. }
  2155. #u1061_img {
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:9px;
  2160. height:10px;
  2161. }
  2162. #u1061 {
  2163. position:absolute;
  2164. left:702px;
  2165. top:25px;
  2166. width:9px;
  2167. height:10px;
  2168. }
  2169. #u1062 {
  2170. position:absolute;
  2171. left:2px;
  2172. top:-3px;
  2173. width:5px;
  2174. visibility:hidden;
  2175. word-wrap:break-word;
  2176. }
  2177. #u1063_img {
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:9px;
  2182. height:10px;
  2183. }
  2184. #u1063 {
  2185. position:absolute;
  2186. left:710px;
  2187. top:25px;
  2188. width:9px;
  2189. height:10px;
  2190. }
  2191. #u1064 {
  2192. position:absolute;
  2193. left:2px;
  2194. top:-3px;
  2195. width:5px;
  2196. visibility:hidden;
  2197. word-wrap:break-word;
  2198. }
  2199. #u1065_img {
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:9px;
  2204. height:10px;
  2205. }
  2206. #u1065 {
  2207. position:absolute;
  2208. left:719px;
  2209. top:25px;
  2210. width:9px;
  2211. height:10px;
  2212. }
  2213. #u1066 {
  2214. position:absolute;
  2215. left:2px;
  2216. top:-3px;
  2217. width:5px;
  2218. visibility:hidden;
  2219. word-wrap:break-word;
  2220. }
  2221. #u1067_img {
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:9px;
  2226. height:10px;
  2227. }
  2228. #u1067 {
  2229. position:absolute;
  2230. left:728px;
  2231. top:25px;
  2232. width:9px;
  2233. height:10px;
  2234. }
  2235. #u1068 {
  2236. position:absolute;
  2237. left:2px;
  2238. top:-3px;
  2239. width:5px;
  2240. visibility:hidden;
  2241. word-wrap:break-word;
  2242. }
  2243. #u1069_div {
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:33px;
  2248. height:15px;
  2249. background:inherit;
  2250. background-color:rgba(255, 255, 255, 0);
  2251. border:none;
  2252. border-radius:0px;
  2253. -moz-box-shadow:none;
  2254. -webkit-box-shadow:none;
  2255. box-shadow:none;
  2256. font-size:13px;
  2257. color:#666666;
  2258. }
  2259. #u1069 {
  2260. position:absolute;
  2261. left:745px;
  2262. top:23px;
  2263. width:33px;
  2264. height:15px;
  2265. font-size:13px;
  2266. color:#666666;
  2267. }
  2268. #u1070 {
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:33px;
  2273. white-space:nowrap;
  2274. }
  2275. #u1071_img {
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:26px;
  2280. height:13px;
  2281. }
  2282. #u1071 {
  2283. position:absolute;
  2284. left:985px;
  2285. top:22px;
  2286. width:26px;
  2287. height:13px;
  2288. }
  2289. #u1072 {
  2290. position:absolute;
  2291. left:2px;
  2292. top:-2px;
  2293. width:22px;
  2294. visibility:hidden;
  2295. word-wrap:break-word;
  2296. }
  2297. #u1073_div {
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:34px;
  2302. height:15px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-size:13px;
  2311. color:#666666;
  2312. }
  2313. #u1073 {
  2314. position:absolute;
  2315. left:951px;
  2316. top:22px;
  2317. width:34px;
  2318. height:15px;
  2319. font-size:13px;
  2320. color:#666666;
  2321. }
  2322. #u1074 {
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:34px;
  2327. white-space:nowrap;
  2328. }
  2329. #u1075_div {
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:48px;
  2334. height:15px;
  2335. background:inherit;
  2336. background-color:rgba(255, 255, 255, 0);
  2337. border:none;
  2338. border-radius:0px;
  2339. -moz-box-shadow:none;
  2340. -webkit-box-shadow:none;
  2341. box-shadow:none;
  2342. font-size:13px;
  2343. color:#666666;
  2344. }
  2345. #u1075 {
  2346. position:absolute;
  2347. left:829px;
  2348. top:23px;
  2349. width:48px;
  2350. height:15px;
  2351. font-size:13px;
  2352. color:#666666;
  2353. }
  2354. #u1076 {
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:50px;
  2359. white-space:nowrap;
  2360. }
  2361. #u1077_div {
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:73px;
  2366. height:18px;
  2367. background:inherit;
  2368. background-color:rgba(255, 255, 255, 0);
  2369. border:none;
  2370. border-radius:0px;
  2371. -moz-box-shadow:none;
  2372. -webkit-box-shadow:none;
  2373. box-shadow:none;
  2374. }
  2375. #u1077 {
  2376. position:absolute;
  2377. left:818px;
  2378. top:45px;
  2379. width:73px;
  2380. height:18px;
  2381. }
  2382. #u1078 {
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:71px;
  2387. white-space:nowrap;
  2388. }
  2389. #u1079_img {
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:20px;
  2394. height:20px;
  2395. }
  2396. #u1079 {
  2397. position:absolute;
  2398. left:698px;
  2399. top:44px;
  2400. width:20px;
  2401. height:20px;
  2402. }
  2403. #u1080 {
  2404. position:absolute;
  2405. left:2px;
  2406. top:2px;
  2407. width:16px;
  2408. visibility:hidden;
  2409. word-wrap:break-word;
  2410. }
  2411. #u1081_img {
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:30px;
  2416. height:30px;
  2417. }
  2418. #u1081 {
  2419. position:absolute;
  2420. left:300px;
  2421. top:1010px;
  2422. width:30px;
  2423. height:30px;
  2424. font-size:12px;
  2425. color:#FFFFFF;
  2426. }
  2427. #u1082 {
  2428. position:absolute;
  2429. left:2px;
  2430. top:8px;
  2431. width:26px;
  2432. word-wrap:break-word;
  2433. }
  2434. #u1083_img {
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:30px;
  2439. height:30px;
  2440. }
  2441. #u1083 {
  2442. position:absolute;
  2443. left:973px;
  2444. top:768px;
  2445. width:30px;
  2446. height:30px;
  2447. font-size:12px;
  2448. color:#FFFFFF;
  2449. }
  2450. #u1084 {
  2451. position:absolute;
  2452. left:2px;
  2453. top:8px;
  2454. width:26px;
  2455. word-wrap:break-word;
  2456. }
  2457. #u1085_div {
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:300px;
  2462. height:84px;
  2463. background:inherit;
  2464. background-color:rgba(255, 255, 255, 0);
  2465. border:none;
  2466. border-radius:0px;
  2467. -moz-box-shadow:none;
  2468. -webkit-box-shadow:none;
  2469. box-shadow:none;
  2470. font-family:'MicrosoftYaHei', '微软雅黑';
  2471. font-weight:400;
  2472. font-style:normal;
  2473. line-height:28px;
  2474. }
  2475. #u1085 {
  2476. position:absolute;
  2477. left:30px;
  2478. top:921px;
  2479. width:300px;
  2480. height:84px;
  2481. font-family:'MicrosoftYaHei', '微软雅黑';
  2482. font-weight:400;
  2483. font-style:normal;
  2484. line-height:28px;
  2485. }
  2486. #u1086 {
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:300px;
  2491. word-wrap:break-word;
  2492. }
  2493. #u1087_div {
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:660px;
  2498. height:296px;
  2499. background:inherit;
  2500. background-color:rgba(208, 225, 125, 1);
  2501. border:none;
  2502. border-radius:0px;
  2503. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2504. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2505. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2506. }
  2507. #u1087 {
  2508. position:absolute;
  2509. left:19px;
  2510. top:1069px;
  2511. width:660px;
  2512. height:296px;
  2513. }
  2514. #u1088 {
  2515. position:absolute;
  2516. left:10px;
  2517. top:10px;
  2518. width:640px;
  2519. word-wrap:break-word;
  2520. }
  2521. #u1089_div {
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:320px;
  2526. height:1033px;
  2527. background:inherit;
  2528. background-color:rgba(242, 242, 242, 1);
  2529. box-sizing:border-box;
  2530. border-width:1px;
  2531. border-style:solid;
  2532. border-color:rgba(0, 0, 0, 1);
  2533. border-radius:0px;
  2534. -moz-box-shadow:none;
  2535. -webkit-box-shadow:none;
  2536. box-shadow:none;
  2537. }
  2538. #u1089 {
  2539. position:absolute;
  2540. left:359px;
  2541. top:19px;
  2542. width:320px;
  2543. height:1033px;
  2544. }
  2545. #u1090 {
  2546. position:absolute;
  2547. left:2px;
  2548. top:508px;
  2549. width:316px;
  2550. visibility:hidden;
  2551. word-wrap:break-word;
  2552. }
  2553. #u1091_div {
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:159px;
  2558. height:19px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 0);
  2561. border:none;
  2562. border-radius:0px;
  2563. -moz-box-shadow:none;
  2564. -webkit-box-shadow:none;
  2565. box-shadow:none;
  2566. font-family:'MicrosoftYaHei', '微软雅黑';
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:14px;
  2570. text-align:center;
  2571. }
  2572. #u1091 {
  2573. position:absolute;
  2574. left:429px;
  2575. top:92px;
  2576. width:159px;
  2577. height:19px;
  2578. font-family:'MicrosoftYaHei', '微软雅黑';
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:14px;
  2582. text-align:center;
  2583. }
  2584. #u1092 {
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:155px;
  2589. white-space:nowrap;
  2590. }
  2591. #u1093_div {
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:300px;
  2596. height:112px;
  2597. background:inherit;
  2598. background-color:rgba(255, 255, 255, 0);
  2599. border:none;
  2600. border-radius:0px;
  2601. -moz-box-shadow:none;
  2602. -webkit-box-shadow:none;
  2603. box-shadow:none;
  2604. font-family:'MicrosoftYaHei', '微软雅黑';
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. line-height:28px;
  2609. }
  2610. #u1093 {
  2611. position:absolute;
  2612. left:369px;
  2613. top:155px;
  2614. width:300px;
  2615. height:112px;
  2616. font-family:'MicrosoftYaHei', '微软雅黑';
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:12px;
  2620. line-height:28px;
  2621. }
  2622. #u1094 {
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:300px;
  2627. word-wrap:break-word;
  2628. }
  2629. #u1095 {
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:0px;
  2634. height:0px;
  2635. }
  2636. #u1096_div {
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:209px;
  2641. height:17px;
  2642. background:inherit;
  2643. background-color:rgba(255, 255, 255, 0);
  2644. border:none;
  2645. border-radius:0px;
  2646. -moz-box-shadow:none;
  2647. -webkit-box-shadow:none;
  2648. box-shadow:none;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC';
  2650. font-weight:400;
  2651. font-style:normal;
  2652. text-align:center;
  2653. }
  2654. #u1096 {
  2655. position:absolute;
  2656. left:415px;
  2657. top:871px;
  2658. width:209px;
  2659. height:17px;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC';
  2661. font-weight:400;
  2662. font-style:normal;
  2663. text-align:center;
  2664. }
  2665. #u1097 {
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:209px;
  2670. word-wrap:break-word;
  2671. }
  2672. #u1098_img {
  2673. position:absolute;
  2674. left:-1px;
  2675. top:-1px;
  2676. width:123px;
  2677. height:5px;
  2678. }
  2679. #u1098 {
  2680. position:absolute;
  2681. left:460px;
  2682. top:896px;
  2683. width:120px;
  2684. height:2px;
  2685. }
  2686. #u1099 {
  2687. position:absolute;
  2688. left:2px;
  2689. top:-7px;
  2690. width:116px;
  2691. visibility:hidden;
  2692. word-wrap:break-word;
  2693. }
  2694. #u1100 {
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:0px;
  2699. height:0px;
  2700. }
  2701. #u1101_div {
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:209px;
  2706. height:17px;
  2707. background:inherit;
  2708. background-color:rgba(255, 255, 255, 0);
  2709. border:none;
  2710. border-radius:0px;
  2711. -moz-box-shadow:none;
  2712. -webkit-box-shadow:none;
  2713. box-shadow:none;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC';
  2715. font-weight:400;
  2716. font-style:normal;
  2717. text-align:center;
  2718. }
  2719. #u1101 {
  2720. position:absolute;
  2721. left:415px;
  2722. top:284px;
  2723. width:209px;
  2724. height:17px;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC';
  2726. font-weight:400;
  2727. font-style:normal;
  2728. text-align:center;
  2729. }
  2730. #u1102 {
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:209px;
  2735. word-wrap:break-word;
  2736. }
  2737. #u1103_img {
  2738. position:absolute;
  2739. left:-1px;
  2740. top:-1px;
  2741. width:123px;
  2742. height:5px;
  2743. }
  2744. #u1103 {
  2745. position:absolute;
  2746. left:460px;
  2747. top:309px;
  2748. width:120px;
  2749. height:2px;
  2750. }
  2751. #u1104 {
  2752. position:absolute;
  2753. left:2px;
  2754. top:-7px;
  2755. width:116px;
  2756. visibility:hidden;
  2757. word-wrap:break-word;
  2758. }
  2759. #u1105 {
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:0px;
  2764. height:0px;
  2765. }
  2766. #u1106_div {
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:221px;
  2771. height:15px;
  2772. background:inherit;
  2773. background-color:rgba(255, 255, 255, 0);
  2774. border:none;
  2775. border-radius:0px;
  2776. -moz-box-shadow:none;
  2777. -webkit-box-shadow:none;
  2778. box-shadow:none;
  2779. }
  2780. #u1106 {
  2781. position:absolute;
  2782. left:415px;
  2783. top:129px;
  2784. width:221px;
  2785. height:15px;
  2786. }
  2787. #u1107 {
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:226px;
  2792. white-space:nowrap;
  2793. }
  2794. #u1108_img {
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:18px;
  2799. height:18px;
  2800. }
  2801. #u1108 {
  2802. position:absolute;
  2803. left:397px;
  2804. top:127px;
  2805. width:18px;
  2806. height:18px;
  2807. }
  2808. #u1109 {
  2809. position:absolute;
  2810. left:2px;
  2811. top:1px;
  2812. width:14px;
  2813. visibility:hidden;
  2814. word-wrap:break-word;
  2815. }
  2816. #u1110 {
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:0px;
  2821. height:0px;
  2822. }
  2823. #u1111_div {
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:138px;
  2828. height:189px;
  2829. background:inherit;
  2830. background-color:rgba(255, 255, 255, 1);
  2831. box-sizing:border-box;
  2832. border-width:1px;
  2833. border-style:solid;
  2834. border-color:rgba(215, 215, 215, 1);
  2835. border-radius:0px;
  2836. -moz-box-shadow:none;
  2837. -webkit-box-shadow:none;
  2838. box-shadow:none;
  2839. }
  2840. #u1111 {
  2841. position:absolute;
  2842. left:376px;
  2843. top:350px;
  2844. width:138px;
  2845. height:189px;
  2846. }
  2847. #u1112 {
  2848. position:absolute;
  2849. left:2px;
  2850. top:86px;
  2851. width:134px;
  2852. visibility:hidden;
  2853. word-wrap:break-word;
  2854. }
  2855. #u1113_div {
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:136px;
  2860. height:30px;
  2861. background:inherit;
  2862. background-color:rgba(255, 255, 255, 1);
  2863. box-sizing:border-box;
  2864. border-width:1px;
  2865. border-style:solid;
  2866. border-color:rgba(215, 215, 215, 1);
  2867. border-radius:20px;
  2868. -moz-box-shadow:none;
  2869. -webkit-box-shadow:none;
  2870. box-shadow:none;
  2871. }
  2872. #u1113 {
  2873. position:absolute;
  2874. left:377px;
  2875. top:544px;
  2876. width:136px;
  2877. height:30px;
  2878. }
  2879. #u1114 {
  2880. position:absolute;
  2881. left:2px;
  2882. top:6px;
  2883. width:132px;
  2884. word-wrap:break-word;
  2885. }
  2886. #u1115_div {
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:136px;
  2891. height:42px;
  2892. background:inherit;
  2893. background-color:rgba(242, 242, 242, 0.498039215686275);
  2894. border:none;
  2895. border-radius:0px;
  2896. -moz-box-shadow:none;
  2897. -webkit-box-shadow:none;
  2898. box-shadow:none;
  2899. }
  2900. #u1115 {
  2901. position:absolute;
  2902. left:377px;
  2903. top:497px;
  2904. width:136px;
  2905. height:42px;
  2906. }
  2907. #u1116 {
  2908. position:absolute;
  2909. left:2px;
  2910. top:13px;
  2911. width:132px;
  2912. visibility:hidden;
  2913. word-wrap:break-word;
  2914. }
  2915. #u1117_div {
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:138px;
  2920. height:14px;
  2921. background:inherit;
  2922. background-color:rgba(255, 255, 255, 0);
  2923. border:none;
  2924. border-radius:0px;
  2925. -moz-box-shadow:none;
  2926. -webkit-box-shadow:none;
  2927. box-shadow:none;
  2928. font-size:12px;
  2929. color:#1E1E1E;
  2930. text-align:center;
  2931. }
  2932. #u1117 {
  2933. position:absolute;
  2934. left:375px;
  2935. top:504px;
  2936. width:138px;
  2937. height:14px;
  2938. font-size:12px;
  2939. color:#1E1E1E;
  2940. text-align:center;
  2941. }
  2942. #u1118 {
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:138px;
  2947. word-wrap:break-word;
  2948. }
  2949. #u1119_div {
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:57px;
  2954. height:15px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border:none;
  2958. border-radius:0px;
  2959. -moz-box-shadow:none;
  2960. -webkit-box-shadow:none;
  2961. box-shadow:none;
  2962. font-family:'CenturyGothic', 'Century Gothic';
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:11px;
  2966. color:#999999;
  2967. }
  2968. #u1119 {
  2969. position:absolute;
  2970. left:417px;
  2971. top:520px;
  2972. width:57px;
  2973. height:15px;
  2974. font-family:'CenturyGothic', 'Century Gothic';
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:11px;
  2978. color:#999999;
  2979. }
  2980. #u1120 {
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:54px;
  2985. white-space:nowrap;
  2986. }
  2987. #u1121_div {
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:136px;
  2992. height:42px;
  2993. background:inherit;
  2994. background-color:rgba(242, 242, 242, 0.498039215686275);
  2995. border:none;
  2996. border-radius:0px;
  2997. -moz-box-shadow:none;
  2998. -webkit-box-shadow:none;
  2999. box-shadow:none;
  3000. }
  3001. #u1121 {
  3002. position:absolute;
  3003. left:525px;
  3004. top:478px;
  3005. width:136px;
  3006. height:42px;
  3007. }
  3008. #u1122 {
  3009. position:absolute;
  3010. left:2px;
  3011. top:13px;
  3012. width:132px;
  3013. visibility:hidden;
  3014. word-wrap:break-word;
  3015. }
  3016. #u1123 {
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:0px;
  3021. height:0px;
  3022. }
  3023. #u1124_div {
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:138px;
  3028. height:189px;
  3029. background:inherit;
  3030. background-color:rgba(255, 255, 255, 1);
  3031. box-sizing:border-box;
  3032. border-width:1px;
  3033. border-style:solid;
  3034. border-color:rgba(215, 215, 215, 1);
  3035. border-radius:0px;
  3036. -moz-box-shadow:none;
  3037. -webkit-box-shadow:none;
  3038. box-shadow:none;
  3039. }
  3040. #u1124 {
  3041. position:absolute;
  3042. left:525px;
  3043. top:350px;
  3044. width:138px;
  3045. height:189px;
  3046. }
  3047. #u1125 {
  3048. position:absolute;
  3049. left:2px;
  3050. top:86px;
  3051. width:134px;
  3052. visibility:hidden;
  3053. word-wrap:break-word;
  3054. }
  3055. #u1126_div {
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:136px;
  3060. height:30px;
  3061. background:inherit;
  3062. background-color:rgba(201, 201, 201, 1);
  3063. box-sizing:border-box;
  3064. border-width:1px;
  3065. border-style:solid;
  3066. border-color:rgba(215, 215, 215, 1);
  3067. border-radius:20px;
  3068. -moz-box-shadow:none;
  3069. -webkit-box-shadow:none;
  3070. box-shadow:none;
  3071. }
  3072. #u1126 {
  3073. position:absolute;
  3074. left:526px;
  3075. top:544px;
  3076. width:136px;
  3077. height:30px;
  3078. }
  3079. #u1127 {
  3080. position:absolute;
  3081. left:2px;
  3082. top:6px;
  3083. width:132px;
  3084. word-wrap:break-word;
  3085. }
  3086. #u1128_div {
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:136px;
  3091. height:42px;
  3092. background:inherit;
  3093. background-color:rgba(242, 242, 242, 0.498039215686275);
  3094. border:none;
  3095. border-radius:0px;
  3096. -moz-box-shadow:none;
  3097. -webkit-box-shadow:none;
  3098. box-shadow:none;
  3099. }
  3100. #u1128 {
  3101. position:absolute;
  3102. left:526px;
  3103. top:497px;
  3104. width:136px;
  3105. height:42px;
  3106. }
  3107. #u1129 {
  3108. position:absolute;
  3109. left:2px;
  3110. top:13px;
  3111. width:132px;
  3112. visibility:hidden;
  3113. word-wrap:break-word;
  3114. }
  3115. #u1130_div {
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:138px;
  3120. height:14px;
  3121. background:inherit;
  3122. background-color:rgba(255, 255, 255, 0);
  3123. border:none;
  3124. border-radius:0px;
  3125. -moz-box-shadow:none;
  3126. -webkit-box-shadow:none;
  3127. box-shadow:none;
  3128. font-size:12px;
  3129. color:#1E1E1E;
  3130. text-align:center;
  3131. }
  3132. #u1130 {
  3133. position:absolute;
  3134. left:524px;
  3135. top:504px;
  3136. width:138px;
  3137. height:14px;
  3138. font-size:12px;
  3139. color:#1E1E1E;
  3140. text-align:center;
  3141. }
  3142. #u1131 {
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:138px;
  3147. word-wrap:break-word;
  3148. }
  3149. #u1132_img {
  3150. position:absolute;
  3151. left:-1px;
  3152. top:-1px;
  3153. width:35px;
  3154. height:5px;
  3155. }
  3156. #u1132 {
  3157. position:absolute;
  3158. left:559px;
  3159. top:527px;
  3160. width:32px;
  3161. height:2px;
  3162. }
  3163. #u1133 {
  3164. position:absolute;
  3165. left:2px;
  3166. top:-7px;
  3167. width:28px;
  3168. visibility:hidden;
  3169. word-wrap:break-word;
  3170. }
  3171. #u1134_div {
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:26px;
  3176. height:15px;
  3177. background:inherit;
  3178. background-color:rgba(255, 255, 255, 0);
  3179. border:none;
  3180. border-radius:0px;
  3181. -moz-box-shadow:none;
  3182. -webkit-box-shadow:none;
  3183. box-shadow:none;
  3184. font-family:'CenturyGothic', 'Century Gothic';
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:11px;
  3188. }
  3189. #u1134 {
  3190. position:absolute;
  3191. left:601px;
  3192. top:520px;
  3193. width:26px;
  3194. height:15px;
  3195. font-family:'CenturyGothic', 'Century Gothic';
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:11px;
  3199. }
  3200. #u1135 {
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:25px;
  3205. white-space:nowrap;
  3206. }
  3207. #u1136 {
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:0px;
  3212. height:0px;
  3213. }
  3214. #u1137_div {
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:138px;
  3219. height:189px;
  3220. background:inherit;
  3221. background-color:rgba(255, 255, 255, 1);
  3222. box-sizing:border-box;
  3223. border-width:1px;
  3224. border-style:solid;
  3225. border-color:rgba(215, 215, 215, 1);
  3226. border-radius:0px;
  3227. -moz-box-shadow:none;
  3228. -webkit-box-shadow:none;
  3229. box-shadow:none;
  3230. }
  3231. #u1137 {
  3232. position:absolute;
  3233. left:375px;
  3234. top:604px;
  3235. width:138px;
  3236. height:189px;
  3237. }
  3238. #u1138 {
  3239. position:absolute;
  3240. left:2px;
  3241. top:86px;
  3242. width:134px;
  3243. visibility:hidden;
  3244. word-wrap:break-word;
  3245. }
  3246. #u1139_div {
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:136px;
  3251. height:30px;
  3252. background:inherit;
  3253. background-color:rgba(255, 255, 255, 1);
  3254. box-sizing:border-box;
  3255. border-width:1px;
  3256. border-style:solid;
  3257. border-color:rgba(215, 215, 215, 1);
  3258. border-radius:20px;
  3259. -moz-box-shadow:none;
  3260. -webkit-box-shadow:none;
  3261. box-shadow:none;
  3262. }
  3263. #u1139 {
  3264. position:absolute;
  3265. left:376px;
  3266. top:798px;
  3267. width:136px;
  3268. height:30px;
  3269. }
  3270. #u1140 {
  3271. position:absolute;
  3272. left:2px;
  3273. top:6px;
  3274. width:132px;
  3275. word-wrap:break-word;
  3276. }
  3277. #u1141_div {
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:136px;
  3282. height:42px;
  3283. background:inherit;
  3284. background-color:rgba(242, 242, 242, 0.498039215686275);
  3285. border:none;
  3286. border-radius:0px;
  3287. -moz-box-shadow:none;
  3288. -webkit-box-shadow:none;
  3289. box-shadow:none;
  3290. }
  3291. #u1141 {
  3292. position:absolute;
  3293. left:376px;
  3294. top:751px;
  3295. width:136px;
  3296. height:42px;
  3297. }
  3298. #u1142 {
  3299. position:absolute;
  3300. left:2px;
  3301. top:13px;
  3302. width:132px;
  3303. visibility:hidden;
  3304. word-wrap:break-word;
  3305. }
  3306. #u1143_div {
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:138px;
  3311. height:14px;
  3312. background:inherit;
  3313. background-color:rgba(255, 255, 255, 0);
  3314. border:none;
  3315. border-radius:0px;
  3316. -moz-box-shadow:none;
  3317. -webkit-box-shadow:none;
  3318. box-shadow:none;
  3319. font-size:12px;
  3320. color:#1E1E1E;
  3321. text-align:center;
  3322. }
  3323. #u1143 {
  3324. position:absolute;
  3325. left:374px;
  3326. top:758px;
  3327. width:138px;
  3328. height:14px;
  3329. font-size:12px;
  3330. color:#1E1E1E;
  3331. text-align:center;
  3332. }
  3333. #u1144 {
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:138px;
  3338. word-wrap:break-word;
  3339. }
  3340. #u1145_div {
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:57px;
  3345. height:15px;
  3346. background:inherit;
  3347. background-color:rgba(255, 255, 255, 0);
  3348. border:none;
  3349. border-radius:0px;
  3350. -moz-box-shadow:none;
  3351. -webkit-box-shadow:none;
  3352. box-shadow:none;
  3353. font-family:'CenturyGothic', 'Century Gothic';
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:11px;
  3357. color:#999999;
  3358. }
  3359. #u1145 {
  3360. position:absolute;
  3361. left:416px;
  3362. top:774px;
  3363. width:57px;
  3364. height:15px;
  3365. font-family:'CenturyGothic', 'Century Gothic';
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:11px;
  3369. color:#999999;
  3370. }
  3371. #u1146 {
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:54px;
  3376. white-space:nowrap;
  3377. }
  3378. #u1147 {
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:0px;
  3383. height:0px;
  3384. }
  3385. #u1148_div {
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:138px;
  3390. height:189px;
  3391. background:inherit;
  3392. background-color:rgba(255, 255, 255, 1);
  3393. box-sizing:border-box;
  3394. border-width:1px;
  3395. border-style:solid;
  3396. border-color:rgba(215, 215, 215, 1);
  3397. border-radius:0px;
  3398. -moz-box-shadow:none;
  3399. -webkit-box-shadow:none;
  3400. box-shadow:none;
  3401. }
  3402. #u1148 {
  3403. position:absolute;
  3404. left:524px;
  3405. top:604px;
  3406. width:138px;
  3407. height:189px;
  3408. }
  3409. #u1149 {
  3410. position:absolute;
  3411. left:2px;
  3412. top:86px;
  3413. width:134px;
  3414. visibility:hidden;
  3415. word-wrap:break-word;
  3416. }
  3417. #u1150_div {
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:136px;
  3422. height:30px;
  3423. background:inherit;
  3424. background-color:rgba(255, 255, 255, 1);
  3425. box-sizing:border-box;
  3426. border-width:1px;
  3427. border-style:solid;
  3428. border-color:rgba(215, 215, 215, 1);
  3429. border-radius:20px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. }
  3434. #u1150 {
  3435. position:absolute;
  3436. left:525px;
  3437. top:798px;
  3438. width:136px;
  3439. height:30px;
  3440. }
  3441. #u1151 {
  3442. position:absolute;
  3443. left:2px;
  3444. top:6px;
  3445. width:132px;
  3446. word-wrap:break-word;
  3447. }
  3448. #u1152_div {
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:136px;
  3453. height:42px;
  3454. background:inherit;
  3455. background-color:rgba(242, 242, 242, 0.498039215686275);
  3456. border:none;
  3457. border-radius:0px;
  3458. -moz-box-shadow:none;
  3459. -webkit-box-shadow:none;
  3460. box-shadow:none;
  3461. }
  3462. #u1152 {
  3463. position:absolute;
  3464. left:525px;
  3465. top:751px;
  3466. width:136px;
  3467. height:42px;
  3468. }
  3469. #u1153 {
  3470. position:absolute;
  3471. left:2px;
  3472. top:13px;
  3473. width:132px;
  3474. visibility:hidden;
  3475. word-wrap:break-word;
  3476. }
  3477. #u1154_div {
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:138px;
  3482. height:14px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 0);
  3485. border:none;
  3486. border-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. font-size:12px;
  3491. color:#1E1E1E;
  3492. text-align:center;
  3493. }
  3494. #u1154 {
  3495. position:absolute;
  3496. left:523px;
  3497. top:758px;
  3498. width:138px;
  3499. height:14px;
  3500. font-size:12px;
  3501. color:#1E1E1E;
  3502. text-align:center;
  3503. }
  3504. #u1155 {
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:138px;
  3509. word-wrap:break-word;
  3510. }
  3511. #u1156_img {
  3512. position:absolute;
  3513. left:-1px;
  3514. top:-1px;
  3515. width:35px;
  3516. height:5px;
  3517. }
  3518. #u1156 {
  3519. position:absolute;
  3520. left:558px;
  3521. top:781px;
  3522. width:32px;
  3523. height:2px;
  3524. }
  3525. #u1157 {
  3526. position:absolute;
  3527. left:2px;
  3528. top:-7px;
  3529. width:28px;
  3530. visibility:hidden;
  3531. word-wrap:break-word;
  3532. }
  3533. #u1158_div {
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:26px;
  3538. height:15px;
  3539. background:inherit;
  3540. background-color:rgba(255, 255, 255, 0);
  3541. border:none;
  3542. border-radius:0px;
  3543. -moz-box-shadow:none;
  3544. -webkit-box-shadow:none;
  3545. box-shadow:none;
  3546. font-family:'CenturyGothic', 'Century Gothic';
  3547. font-weight:400;
  3548. font-style:normal;
  3549. font-size:11px;
  3550. }
  3551. #u1158 {
  3552. position:absolute;
  3553. left:600px;
  3554. top:774px;
  3555. width:26px;
  3556. height:15px;
  3557. font-family:'CenturyGothic', 'Century Gothic';
  3558. font-weight:400;
  3559. font-style:normal;
  3560. font-size:11px;
  3561. }
  3562. #u1159 {
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:25px;
  3567. white-space:nowrap;
  3568. }
  3569. #u1160_div {
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:317px;
  3574. height:50px;
  3575. background:inherit;
  3576. background-color:rgba(255, 255, 255, 1);
  3577. border:none;
  3578. border-radius:0px;
  3579. -moz-box-shadow:none;
  3580. -webkit-box-shadow:none;
  3581. box-shadow:none;
  3582. color:#000000;
  3583. }
  3584. #u1160 {
  3585. position:absolute;
  3586. left:360px;
  3587. top:21px;
  3588. width:317px;
  3589. height:50px;
  3590. color:#000000;
  3591. }
  3592. #u1161 {
  3593. position:absolute;
  3594. left:2px;
  3595. top:17px;
  3596. width:313px;
  3597. visibility:hidden;
  3598. word-wrap:break-word;
  3599. }
  3600. #u1162 {
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:0px;
  3605. height:0px;
  3606. }
  3607. #u1163 {
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:0px;
  3612. height:0px;
  3613. }
  3614. #u1164_img {
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:9px;
  3619. height:10px;
  3620. }
  3621. #u1164 {
  3622. position:absolute;
  3623. left:360px;
  3624. top:25px;
  3625. width:9px;
  3626. height:10px;
  3627. }
  3628. #u1165 {
  3629. position:absolute;
  3630. left:2px;
  3631. top:-3px;
  3632. width:5px;
  3633. visibility:hidden;
  3634. word-wrap:break-word;
  3635. }
  3636. #u1166_img {
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:9px;
  3641. height:10px;
  3642. }
  3643. #u1166 {
  3644. position:absolute;
  3645. left:369px;
  3646. top:25px;
  3647. width:9px;
  3648. height:10px;
  3649. }
  3650. #u1167 {
  3651. position:absolute;
  3652. left:2px;
  3653. top:-3px;
  3654. width:5px;
  3655. visibility:hidden;
  3656. word-wrap:break-word;
  3657. }
  3658. #u1168_img {
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:9px;
  3663. height:10px;
  3664. }
  3665. #u1168 {
  3666. position:absolute;
  3667. left:377px;
  3668. top:25px;
  3669. width:9px;
  3670. height:10px;
  3671. }
  3672. #u1169 {
  3673. position:absolute;
  3674. left:2px;
  3675. top:-3px;
  3676. width:5px;
  3677. visibility:hidden;
  3678. word-wrap:break-word;
  3679. }
  3680. #u1170_img {
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:9px;
  3685. height:10px;
  3686. }
  3687. #u1170 {
  3688. position:absolute;
  3689. left:386px;
  3690. top:25px;
  3691. width:9px;
  3692. height:10px;
  3693. }
  3694. #u1171 {
  3695. position:absolute;
  3696. left:2px;
  3697. top:-3px;
  3698. width:5px;
  3699. visibility:hidden;
  3700. word-wrap:break-word;
  3701. }
  3702. #u1172_img {
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:9px;
  3707. height:10px;
  3708. }
  3709. #u1172 {
  3710. position:absolute;
  3711. left:395px;
  3712. top:25px;
  3713. width:9px;
  3714. height:10px;
  3715. }
  3716. #u1173 {
  3717. position:absolute;
  3718. left:2px;
  3719. top:-3px;
  3720. width:5px;
  3721. visibility:hidden;
  3722. word-wrap:break-word;
  3723. }
  3724. #u1174_div {
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:33px;
  3729. height:15px;
  3730. background:inherit;
  3731. background-color:rgba(255, 255, 255, 0);
  3732. border:none;
  3733. border-radius:0px;
  3734. -moz-box-shadow:none;
  3735. -webkit-box-shadow:none;
  3736. box-shadow:none;
  3737. font-size:13px;
  3738. color:#666666;
  3739. }
  3740. #u1174 {
  3741. position:absolute;
  3742. left:412px;
  3743. top:23px;
  3744. width:33px;
  3745. height:15px;
  3746. font-size:13px;
  3747. color:#666666;
  3748. }
  3749. #u1175 {
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:33px;
  3754. white-space:nowrap;
  3755. }
  3756. #u1176_img {
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:26px;
  3761. height:13px;
  3762. }
  3763. #u1176 {
  3764. position:absolute;
  3765. left:652px;
  3766. top:22px;
  3767. width:26px;
  3768. height:13px;
  3769. }
  3770. #u1177 {
  3771. position:absolute;
  3772. left:2px;
  3773. top:-2px;
  3774. width:22px;
  3775. visibility:hidden;
  3776. word-wrap:break-word;
  3777. }
  3778. #u1178_div {
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:34px;
  3783. height:15px;
  3784. background:inherit;
  3785. background-color:rgba(255, 255, 255, 0);
  3786. border:none;
  3787. border-radius:0px;
  3788. -moz-box-shadow:none;
  3789. -webkit-box-shadow:none;
  3790. box-shadow:none;
  3791. font-size:13px;
  3792. color:#666666;
  3793. }
  3794. #u1178 {
  3795. position:absolute;
  3796. left:618px;
  3797. top:22px;
  3798. width:34px;
  3799. height:15px;
  3800. font-size:13px;
  3801. color:#666666;
  3802. }
  3803. #u1179 {
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:34px;
  3808. white-space:nowrap;
  3809. }
  3810. #u1180_div {
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:48px;
  3815. height:15px;
  3816. background:inherit;
  3817. background-color:rgba(255, 255, 255, 0);
  3818. border:none;
  3819. border-radius:0px;
  3820. -moz-box-shadow:none;
  3821. -webkit-box-shadow:none;
  3822. box-shadow:none;
  3823. font-size:13px;
  3824. color:#666666;
  3825. }
  3826. #u1180 {
  3827. position:absolute;
  3828. left:496px;
  3829. top:23px;
  3830. width:48px;
  3831. height:15px;
  3832. font-size:13px;
  3833. color:#666666;
  3834. }
  3835. #u1181 {
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:50px;
  3840. white-space:nowrap;
  3841. }
  3842. #u1182_div {
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:73px;
  3847. height:18px;
  3848. background:inherit;
  3849. background-color:rgba(255, 255, 255, 0);
  3850. border:none;
  3851. border-radius:0px;
  3852. -moz-box-shadow:none;
  3853. -webkit-box-shadow:none;
  3854. box-shadow:none;
  3855. }
  3856. #u1182 {
  3857. position:absolute;
  3858. left:485px;
  3859. top:45px;
  3860. width:73px;
  3861. height:18px;
  3862. }
  3863. #u1183 {
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:71px;
  3868. white-space:nowrap;
  3869. }
  3870. #u1184_img {
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:20px;
  3875. height:20px;
  3876. }
  3877. #u1184 {
  3878. position:absolute;
  3879. left:365px;
  3880. top:44px;
  3881. width:20px;
  3882. height:20px;
  3883. }
  3884. #u1185 {
  3885. position:absolute;
  3886. left:2px;
  3887. top:2px;
  3888. width:16px;
  3889. visibility:hidden;
  3890. word-wrap:break-word;
  3891. }
  3892. #u1186_img {
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:30px;
  3897. height:30px;
  3898. }
  3899. #u1186 {
  3900. position:absolute;
  3901. left:640px;
  3902. top:1010px;
  3903. width:30px;
  3904. height:30px;
  3905. font-size:12px;
  3906. color:#FFFFFF;
  3907. }
  3908. #u1187 {
  3909. position:absolute;
  3910. left:2px;
  3911. top:8px;
  3912. width:26px;
  3913. word-wrap:break-word;
  3914. }
  3915. #u1188_div {
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:300px;
  3920. height:84px;
  3921. background:inherit;
  3922. background-color:rgba(255, 255, 255, 0);
  3923. border:none;
  3924. border-radius:0px;
  3925. -moz-box-shadow:none;
  3926. -webkit-box-shadow:none;
  3927. box-shadow:none;
  3928. font-family:'MicrosoftYaHei', '微软雅黑';
  3929. font-weight:400;
  3930. font-style:normal;
  3931. line-height:28px;
  3932. }
  3933. #u1188 {
  3934. position:absolute;
  3935. left:370px;
  3936. top:921px;
  3937. width:300px;
  3938. height:84px;
  3939. font-family:'MicrosoftYaHei', '微软雅黑';
  3940. font-weight:400;
  3941. font-style:normal;
  3942. line-height:28px;
  3943. }
  3944. #u1189 {
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:300px;
  3949. word-wrap:break-word;
  3950. }
  3951. #u1190_div {
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:319px;
  3956. height:1031px;
  3957. background:inherit;
  3958. background-color:rgba(0, 0, 0, 0.6);
  3959. border:none;
  3960. border-radius:0px;
  3961. -moz-box-shadow:none;
  3962. -webkit-box-shadow:none;
  3963. box-shadow:none;
  3964. }
  3965. #u1190 {
  3966. position:absolute;
  3967. left:360px;
  3968. top:21px;
  3969. width:319px;
  3970. height:1031px;
  3971. }
  3972. #u1191 {
  3973. position:absolute;
  3974. left:2px;
  3975. top:508px;
  3976. width:315px;
  3977. visibility:hidden;
  3978. word-wrap:break-word;
  3979. }
  3980. #u1192_div {
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:272px;
  3985. height:359px;
  3986. background:inherit;
  3987. background-color:rgba(242, 242, 242, 1);
  3988. border:none;
  3989. border-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. }
  3994. #u1192 {
  3995. position:absolute;
  3996. left:383px;
  3997. top:197px;
  3998. width:272px;
  3999. height:359px;
  4000. }
  4001. #u1193 {
  4002. position:absolute;
  4003. left:2px;
  4004. top:170px;
  4005. width:268px;
  4006. word-wrap:break-word;
  4007. }
  4008. #u1194_img {
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:32px;
  4013. height:32px;
  4014. }
  4015. #u1194 {
  4016. position:absolute;
  4017. left:702px;
  4018. top:768px;
  4019. width:32px;
  4020. height:32px;
  4021. }
  4022. #u1195 {
  4023. position:absolute;
  4024. left:2px;
  4025. top:8px;
  4026. width:28px;
  4027. visibility:hidden;
  4028. word-wrap:break-word;
  4029. }
  4030. #u1196_img {
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:32px;
  4035. height:32px;
  4036. }
  4037. #u1196 {
  4038. position:absolute;
  4039. left:30px;
  4040. top:1010px;
  4041. width:32px;
  4042. height:32px;
  4043. }
  4044. #u1197 {
  4045. position:absolute;
  4046. left:2px;
  4047. top:8px;
  4048. width:28px;
  4049. visibility:hidden;
  4050. word-wrap:break-word;
  4051. }
  4052. #u1198_img {
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:32px;
  4057. height:32px;
  4058. }
  4059. #u1198 {
  4060. position:absolute;
  4061. left:374px;
  4062. top:1010px;
  4063. width:32px;
  4064. height:32px;
  4065. }
  4066. #u1199 {
  4067. position:absolute;
  4068. left:2px;
  4069. top:8px;
  4070. width:28px;
  4071. visibility:hidden;
  4072. word-wrap:break-word;
  4073. }
  4074. #u1200_div {
  4075. position:absolute;
  4076. left:0px;
  4077. top:0px;
  4078. width:260px;
  4079. height:125px;
  4080. background:inherit;
  4081. background-color:rgba(255, 255, 255, 1);
  4082. box-sizing:border-box;
  4083. border-width:1px;
  4084. border-style:solid;
  4085. border-color:rgba(204, 204, 204, 1);
  4086. border-radius:4px;
  4087. -moz-box-shadow:none;
  4088. -webkit-box-shadow:none;
  4089. box-shadow:none;
  4090. }
  4091. #u1200 {
  4092. position:absolute;
  4093. left:1059px;
  4094. top:667px;
  4095. width:260px;
  4096. height:125px;
  4097. }
  4098. #u1201 {
  4099. position:absolute;
  4100. left:2px;
  4101. top:54px;
  4102. width:256px;
  4103. visibility:hidden;
  4104. word-wrap:break-word;
  4105. }
  4106. #u1202_div {
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:260px;
  4111. height:40px;
  4112. background:inherit;
  4113. background-color:rgba(255, 255, 255, 0);
  4114. box-sizing:border-box;
  4115. border-width:1px;
  4116. border-style:solid;
  4117. border-color:rgba(246, 241, 232, 1);
  4118. border-left:0px;
  4119. border-right:0px;
  4120. border-bottom:0px;
  4121. border-radius:0px;
  4122. border-top-left-radius:0px;
  4123. border-top-right-radius:0px;
  4124. border-bottom-right-radius:0px;
  4125. border-bottom-left-radius:0px;
  4126. -moz-box-shadow:none;
  4127. -webkit-box-shadow:none;
  4128. box-shadow:none;
  4129. font-size:14px;
  4130. color:#09BB07;
  4131. }
  4132. #u1202 {
  4133. position:absolute;
  4134. left:1059px;
  4135. top:752px;
  4136. width:260px;
  4137. height:40px;
  4138. font-size:14px;
  4139. color:#09BB07;
  4140. }
  4141. #u1202_div.selected {
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:260px;
  4146. height:40px;
  4147. background:inherit;
  4148. background-color:rgba(255, 255, 255, 0);
  4149. box-sizing:border-box;
  4150. border-width:1px;
  4151. border-style:solid;
  4152. border-color:rgba(45, 183, 245, 1);
  4153. border-left:0px;
  4154. border-right:0px;
  4155. border-bottom:0px;
  4156. border-radius:0px;
  4157. border-top-left-radius:0px;
  4158. border-top-right-radius:0px;
  4159. border-bottom-right-radius:0px;
  4160. border-bottom-left-radius:0px;
  4161. -moz-box-shadow:none;
  4162. -webkit-box-shadow:none;
  4163. box-shadow:none;
  4164. font-size:14px;
  4165. color:#09BB07;
  4166. }
  4167. #u1202.selected {
  4168. }
  4169. #u1203 {
  4170. position:absolute;
  4171. left:0px;
  4172. top:10px;
  4173. width:260px;
  4174. word-wrap:break-word;
  4175. }
  4176. #u1204_div {
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:240px;
  4181. height:20px;
  4182. background:inherit;
  4183. background-color:rgba(255, 255, 255, 0);
  4184. border:none;
  4185. border-radius:0px;
  4186. -moz-box-shadow:none;
  4187. -webkit-box-shadow:none;
  4188. box-shadow:none;
  4189. color:#000000;
  4190. text-align:center;
  4191. line-height:20px;
  4192. }
  4193. #u1204 {
  4194. position:absolute;
  4195. left:1069px;
  4196. top:702px;
  4197. width:240px;
  4198. height:20px;
  4199. color:#000000;
  4200. text-align:center;
  4201. line-height:20px;
  4202. }
  4203. #u1205 {
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:240px;
  4208. word-wrap:break-word;
  4209. }
  4210. #u1206_div {
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:87px;
  4215. height:18px;
  4216. background:inherit;
  4217. background-color:rgba(255, 255, 255, 0);
  4218. border:none;
  4219. border-radius:0px;
  4220. -moz-box-shadow:none;
  4221. -webkit-box-shadow:none;
  4222. box-shadow:none;
  4223. }
  4224. #u1206 {
  4225. position:absolute;
  4226. left:1055px;
  4227. top:630px;
  4228. width:87px;
  4229. height:18px;
  4230. }
  4231. #u1207 {
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:85px;
  4236. white-space:nowrap;
  4237. }
  4238. #u1208_div {
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:73px;
  4243. height:18px;
  4244. background:inherit;
  4245. background-color:rgba(255, 255, 255, 0);
  4246. border:none;
  4247. border-radius:0px;
  4248. -moz-box-shadow:none;
  4249. -webkit-box-shadow:none;
  4250. box-shadow:none;
  4251. }
  4252. #u1208 {
  4253. position:absolute;
  4254. left:1055px;
  4255. top:114px;
  4256. width:73px;
  4257. height:18px;
  4258. }
  4259. #u1209 {
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:71px;
  4264. white-space:nowrap;
  4265. }
  4266. #u1210_div {
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:260px;
  4271. height:125px;
  4272. background:inherit;
  4273. background-color:rgba(255, 255, 255, 1);
  4274. box-sizing:border-box;
  4275. border-width:1px;
  4276. border-style:solid;
  4277. border-color:rgba(204, 204, 204, 1);
  4278. border-radius:4px;
  4279. -moz-box-shadow:none;
  4280. -webkit-box-shadow:none;
  4281. box-shadow:none;
  4282. }
  4283. #u1210 {
  4284. position:absolute;
  4285. left:1055px;
  4286. top:142px;
  4287. width:260px;
  4288. height:125px;
  4289. }
  4290. #u1211 {
  4291. position:absolute;
  4292. left:2px;
  4293. top:54px;
  4294. width:256px;
  4295. visibility:hidden;
  4296. word-wrap:break-word;
  4297. }
  4298. #u1212_div {
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:113px;
  4303. height:19px;
  4304. background:inherit;
  4305. background-color:rgba(255, 255, 255, 0);
  4306. border:none;
  4307. border-radius:0px;
  4308. -moz-box-shadow:none;
  4309. -webkit-box-shadow:none;
  4310. box-shadow:none;
  4311. font-family:'ArialMT', 'Arial';
  4312. font-weight:400;
  4313. font-style:normal;
  4314. font-size:16px;
  4315. }
  4316. #u1212 {
  4317. position:absolute;
  4318. left:1129px;
  4319. top:176px;
  4320. width:113px;
  4321. height:19px;
  4322. font-family:'ArialMT', 'Arial';
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:16px;
  4326. }
  4327. #u1213 {
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:113px;
  4332. white-space:nowrap;
  4333. }
  4334. #u1214_div {
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:81px;
  4339. height:28px;
  4340. background:inherit;
  4341. background-color:rgba(255, 255, 255, 1);
  4342. box-sizing:border-box;
  4343. border-width:1px;
  4344. border-style:solid;
  4345. border-color:rgba(204, 204, 204, 1);
  4346. border-radius:5px;
  4347. -moz-box-shadow:none;
  4348. -webkit-box-shadow:none;
  4349. box-shadow:none;
  4350. }
  4351. #u1214 {
  4352. position:absolute;
  4353. left:1099px;
  4354. top:229px;
  4355. width:81px;
  4356. height:28px;
  4357. }
  4358. #u1215 {
  4359. position:absolute;
  4360. left:2px;
  4361. top:5px;
  4362. width:77px;
  4363. word-wrap:break-word;
  4364. }
  4365. #u1216_div {
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:81px;
  4370. height:28px;
  4371. background:inherit;
  4372. background-color:rgba(255, 255, 255, 1);
  4373. box-sizing:border-box;
  4374. border-width:1px;
  4375. border-style:solid;
  4376. border-color:rgba(204, 204, 204, 1);
  4377. border-radius:5px;
  4378. -moz-box-shadow:none;
  4379. -webkit-box-shadow:none;
  4380. box-shadow:none;
  4381. }
  4382. #u1216 {
  4383. position:absolute;
  4384. left:1190px;
  4385. top:229px;
  4386. width:81px;
  4387. height:28px;
  4388. }
  4389. #u1217 {
  4390. position:absolute;
  4391. left:2px;
  4392. top:5px;
  4393. width:77px;
  4394. word-wrap:break-word;
  4395. }
  4396. #u1218_div {
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:260px;
  4401. height:125px;
  4402. background:inherit;
  4403. background-color:rgba(255, 255, 255, 1);
  4404. box-sizing:border-box;
  4405. border-width:1px;
  4406. border-style:solid;
  4407. border-color:rgba(204, 204, 204, 1);
  4408. border-radius:4px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. }
  4413. #u1218 {
  4414. position:absolute;
  4415. left:1059px;
  4416. top:339px;
  4417. width:260px;
  4418. height:125px;
  4419. }
  4420. #u1219 {
  4421. position:absolute;
  4422. left:2px;
  4423. top:54px;
  4424. width:256px;
  4425. visibility:hidden;
  4426. word-wrap:break-word;
  4427. }
  4428. #u1220_div {
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:260px;
  4433. height:40px;
  4434. background:inherit;
  4435. background-color:rgba(255, 255, 255, 0);
  4436. box-sizing:border-box;
  4437. border-width:1px;
  4438. border-style:solid;
  4439. border-color:rgba(246, 241, 232, 1);
  4440. border-left:0px;
  4441. border-right:0px;
  4442. border-bottom:0px;
  4443. border-radius:0px;
  4444. border-top-left-radius:0px;
  4445. border-top-right-radius:0px;
  4446. border-bottom-right-radius:0px;
  4447. border-bottom-left-radius:0px;
  4448. -moz-box-shadow:none;
  4449. -webkit-box-shadow:none;
  4450. box-shadow:none;
  4451. font-size:14px;
  4452. color:#09BB07;
  4453. }
  4454. #u1220 {
  4455. position:absolute;
  4456. left:1059px;
  4457. top:424px;
  4458. width:260px;
  4459. height:40px;
  4460. font-size:14px;
  4461. color:#09BB07;
  4462. }
  4463. #u1220_div.selected {
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:260px;
  4468. height:40px;
  4469. background:inherit;
  4470. background-color:rgba(255, 255, 255, 0);
  4471. box-sizing:border-box;
  4472. border-width:1px;
  4473. border-style:solid;
  4474. border-color:rgba(45, 183, 245, 1);
  4475. border-left:0px;
  4476. border-right:0px;
  4477. border-bottom:0px;
  4478. border-radius:0px;
  4479. border-top-left-radius:0px;
  4480. border-top-right-radius:0px;
  4481. border-bottom-right-radius:0px;
  4482. border-bottom-left-radius:0px;
  4483. -moz-box-shadow:none;
  4484. -webkit-box-shadow:none;
  4485. box-shadow:none;
  4486. font-size:14px;
  4487. color:#09BB07;
  4488. }
  4489. #u1220.selected {
  4490. }
  4491. #u1221 {
  4492. position:absolute;
  4493. left:0px;
  4494. top:10px;
  4495. width:260px;
  4496. word-wrap:break-word;
  4497. }
  4498. #u1222_div {
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:240px;
  4503. height:20px;
  4504. background:inherit;
  4505. background-color:rgba(255, 255, 255, 0);
  4506. border:none;
  4507. border-radius:0px;
  4508. -moz-box-shadow:none;
  4509. -webkit-box-shadow:none;
  4510. box-shadow:none;
  4511. color:#000000;
  4512. text-align:center;
  4513. line-height:20px;
  4514. }
  4515. #u1222 {
  4516. position:absolute;
  4517. left:1069px;
  4518. top:375px;
  4519. width:240px;
  4520. height:20px;
  4521. color:#000000;
  4522. text-align:center;
  4523. line-height:20px;
  4524. }
  4525. #u1223 {
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:240px;
  4530. word-wrap:break-word;
  4531. }
  4532. #u1224_div {
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:102px;
  4537. height:18px;
  4538. background:inherit;
  4539. background-color:rgba(255, 255, 255, 0);
  4540. border:none;
  4541. border-radius:0px;
  4542. -moz-box-shadow:none;
  4543. -webkit-box-shadow:none;
  4544. box-shadow:none;
  4545. }
  4546. #u1224 {
  4547. position:absolute;
  4548. left:1055px;
  4549. top:306px;
  4550. width:102px;
  4551. height:18px;
  4552. }
  4553. #u1225 {
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:99px;
  4558. white-space:nowrap;
  4559. }
  4560. #u1226_div {
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:260px;
  4565. height:125px;
  4566. background:inherit;
  4567. background-color:rgba(255, 255, 255, 1);
  4568. box-sizing:border-box;
  4569. border-width:1px;
  4570. border-style:solid;
  4571. border-color:rgba(204, 204, 204, 1);
  4572. border-radius:4px;
  4573. -moz-box-shadow:none;
  4574. -webkit-box-shadow:none;
  4575. box-shadow:none;
  4576. }
  4577. #u1226 {
  4578. position:absolute;
  4579. left:1063px;
  4580. top:851px;
  4581. width:260px;
  4582. height:125px;
  4583. }
  4584. #u1227 {
  4585. position:absolute;
  4586. left:2px;
  4587. top:54px;
  4588. width:256px;
  4589. visibility:hidden;
  4590. word-wrap:break-word;
  4591. }
  4592. #u1228_div {
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:260px;
  4597. height:40px;
  4598. background:inherit;
  4599. background-color:rgba(255, 255, 255, 0);
  4600. box-sizing:border-box;
  4601. border-width:1px;
  4602. border-style:solid;
  4603. border-color:rgba(246, 241, 232, 1);
  4604. border-left:0px;
  4605. border-right:0px;
  4606. border-bottom:0px;
  4607. border-radius:0px;
  4608. border-top-left-radius:0px;
  4609. border-top-right-radius:0px;
  4610. border-bottom-right-radius:0px;
  4611. border-bottom-left-radius:0px;
  4612. -moz-box-shadow:none;
  4613. -webkit-box-shadow:none;
  4614. box-shadow:none;
  4615. font-size:14px;
  4616. color:#09BB07;
  4617. }
  4618. #u1228 {
  4619. position:absolute;
  4620. left:1063px;
  4621. top:936px;
  4622. width:260px;
  4623. height:40px;
  4624. font-size:14px;
  4625. color:#09BB07;
  4626. }
  4627. #u1228_div.selected {
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:260px;
  4632. height:40px;
  4633. background:inherit;
  4634. background-color:rgba(255, 255, 255, 0);
  4635. box-sizing:border-box;
  4636. border-width:1px;
  4637. border-style:solid;
  4638. border-color:rgba(45, 183, 245, 1);
  4639. border-left:0px;
  4640. border-right:0px;
  4641. border-bottom:0px;
  4642. border-radius:0px;
  4643. border-top-left-radius:0px;
  4644. border-top-right-radius:0px;
  4645. border-bottom-right-radius:0px;
  4646. border-bottom-left-radius:0px;
  4647. -moz-box-shadow:none;
  4648. -webkit-box-shadow:none;
  4649. box-shadow:none;
  4650. font-size:14px;
  4651. color:#09BB07;
  4652. }
  4653. #u1228.selected {
  4654. }
  4655. #u1229 {
  4656. position:absolute;
  4657. left:0px;
  4658. top:10px;
  4659. width:260px;
  4660. word-wrap:break-word;
  4661. }
  4662. #u1230_div {
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:240px;
  4667. height:20px;
  4668. background:inherit;
  4669. background-color:rgba(255, 255, 255, 0);
  4670. border:none;
  4671. border-radius:0px;
  4672. -moz-box-shadow:none;
  4673. -webkit-box-shadow:none;
  4674. box-shadow:none;
  4675. color:#000000;
  4676. text-align:center;
  4677. line-height:20px;
  4678. }
  4679. #u1230 {
  4680. position:absolute;
  4681. left:1073px;
  4682. top:890px;
  4683. width:240px;
  4684. height:20px;
  4685. color:#000000;
  4686. text-align:center;
  4687. line-height:20px;
  4688. }
  4689. #u1231 {
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:240px;
  4694. word-wrap:break-word;
  4695. }
  4696. #u1232_div {
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:116px;
  4701. height:18px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 0);
  4704. border:none;
  4705. border-radius:0px;
  4706. -moz-box-shadow:none;
  4707. -webkit-box-shadow:none;
  4708. box-shadow:none;
  4709. }
  4710. #u1232 {
  4711. position:absolute;
  4712. left:1059px;
  4713. top:814px;
  4714. width:116px;
  4715. height:18px;
  4716. }
  4717. #u1233 {
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:113px;
  4722. white-space:nowrap;
  4723. }
  4724. #u1234_div {
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:260px;
  4729. height:125px;
  4730. background:inherit;
  4731. background-color:rgba(255, 255, 255, 1);
  4732. box-sizing:border-box;
  4733. border-width:1px;
  4734. border-style:solid;
  4735. border-color:rgba(204, 204, 204, 1);
  4736. border-radius:4px;
  4737. -moz-box-shadow:none;
  4738. -webkit-box-shadow:none;
  4739. box-shadow:none;
  4740. }
  4741. #u1234 {
  4742. position:absolute;
  4743. left:1059px;
  4744. top:474px;
  4745. width:260px;
  4746. height:125px;
  4747. }
  4748. #u1235 {
  4749. position:absolute;
  4750. left:2px;
  4751. top:54px;
  4752. width:256px;
  4753. visibility:hidden;
  4754. word-wrap:break-word;
  4755. }
  4756. #u1236_div {
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:260px;
  4761. height:40px;
  4762. background:inherit;
  4763. background-color:rgba(255, 255, 255, 0);
  4764. box-sizing:border-box;
  4765. border-width:1px;
  4766. border-style:solid;
  4767. border-color:rgba(246, 241, 232, 1);
  4768. border-left:0px;
  4769. border-right:0px;
  4770. border-bottom:0px;
  4771. border-radius:0px;
  4772. border-top-left-radius:0px;
  4773. border-top-right-radius:0px;
  4774. border-bottom-right-radius:0px;
  4775. border-bottom-left-radius:0px;
  4776. -moz-box-shadow:none;
  4777. -webkit-box-shadow:none;
  4778. box-shadow:none;
  4779. font-size:14px;
  4780. color:#09BB07;
  4781. }
  4782. #u1236 {
  4783. position:absolute;
  4784. left:1059px;
  4785. top:559px;
  4786. width:260px;
  4787. height:40px;
  4788. font-size:14px;
  4789. color:#09BB07;
  4790. }
  4791. #u1236_div.selected {
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:260px;
  4796. height:40px;
  4797. background:inherit;
  4798. background-color:rgba(255, 255, 255, 0);
  4799. box-sizing:border-box;
  4800. border-width:1px;
  4801. border-style:solid;
  4802. border-color:rgba(45, 183, 245, 1);
  4803. border-left:0px;
  4804. border-right:0px;
  4805. border-bottom:0px;
  4806. border-radius:0px;
  4807. border-top-left-radius:0px;
  4808. border-top-right-radius:0px;
  4809. border-bottom-right-radius:0px;
  4810. border-bottom-left-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-size:14px;
  4815. color:#09BB07;
  4816. }
  4817. #u1236.selected {
  4818. }
  4819. #u1237 {
  4820. position:absolute;
  4821. left:0px;
  4822. top:10px;
  4823. width:260px;
  4824. word-wrap:break-word;
  4825. }
  4826. #u1238_div {
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:181px;
  4831. height:20px;
  4832. background:inherit;
  4833. background-color:rgba(255, 255, 255, 0);
  4834. border:none;
  4835. border-radius:0px;
  4836. -moz-box-shadow:none;
  4837. -webkit-box-shadow:none;
  4838. box-shadow:none;
  4839. color:#000000;
  4840. line-height:20px;
  4841. }
  4842. #u1238 {
  4843. position:absolute;
  4844. left:1099px;
  4845. top:515px;
  4846. width:181px;
  4847. height:20px;
  4848. color:#000000;
  4849. line-height:20px;
  4850. }
  4851. #u1239 {
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:181px;
  4856. word-wrap:break-word;
  4857. }