styles.css 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1394px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u3066_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1400px;
  21. height:920px;
  22. }
  23. #u3066 {
  24. border-width:0px;
  25. position:absolute;
  26. left:-3px;
  27. top:0px;
  28. width:1400px;
  29. height:920px;
  30. }
  31. #u3066_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u3067_img {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:242px;
  46. height:974px;
  47. }
  48. #u3067 {
  49. border-width:0px;
  50. position:absolute;
  51. left:-1px;
  52. top:0px;
  53. width:242px;
  54. height:974px;
  55. }
  56. #u3067_text {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:0px;
  62. visibility:hidden;
  63. word-wrap:break-word;
  64. }
  65. #u3068 {
  66. position:absolute;
  67. left:0px;
  68. top:175px;
  69. visibility:hidden;
  70. }
  71. #u3068_state0 {
  72. position:relative;
  73. left:0px;
  74. top:0px;
  75. width:240px;
  76. height:118px;
  77. background-image:none;
  78. }
  79. #u3068_state0_content {
  80. border-width:0px;
  81. position:absolute;
  82. left:0px;
  83. top:0px;
  84. width:1px;
  85. height:1px;
  86. }
  87. #u3069_div {
  88. border-width:0px;
  89. position:absolute;
  90. left:0px;
  91. top:0px;
  92. width:240px;
  93. height:40px;
  94. background:inherit;
  95. background-color:rgba(204, 204, 204, 1);
  96. border:none;
  97. border-radius:0px;
  98. -moz-box-shadow:none;
  99. -webkit-box-shadow:none;
  100. box-shadow:none;
  101. font-size:15px;
  102. color:#FFFFFF;
  103. }
  104. #u3069 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:39px;
  109. width:240px;
  110. height:40px;
  111. font-size:15px;
  112. color:#FFFFFF;
  113. }
  114. #u3069_div.mouseOver {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:240px;
  120. height:40px;
  121. background:inherit;
  122. background-color:rgba(3, 157, 97, 1);
  123. border:none;
  124. border-radius:0px;
  125. -moz-box-shadow:none;
  126. -webkit-box-shadow:none;
  127. box-shadow:none;
  128. font-size:15px;
  129. color:#FFFFFF;
  130. }
  131. #u3069.mouseOver {
  132. opacity:0.8;
  133. }
  134. #u3069_text {
  135. border-width:0px;
  136. position:absolute;
  137. left:2px;
  138. top:11px;
  139. width:236px;
  140. word-wrap:break-word;
  141. }
  142. #u3070_div {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:240px;
  148. height:40px;
  149. background:inherit;
  150. background-color:rgba(204, 204, 204, 1);
  151. border:none;
  152. border-radius:0px;
  153. -moz-box-shadow:none;
  154. -webkit-box-shadow:none;
  155. box-shadow:none;
  156. font-size:15px;
  157. color:#FFFFFF;
  158. }
  159. #u3070 {
  160. border-width:0px;
  161. position:absolute;
  162. left:0px;
  163. top:0px;
  164. width:240px;
  165. height:40px;
  166. font-size:15px;
  167. color:#FFFFFF;
  168. }
  169. #u3070_div.mouseOver {
  170. border-width:0px;
  171. position:absolute;
  172. left:0px;
  173. top:0px;
  174. width:240px;
  175. height:40px;
  176. background:inherit;
  177. background-color:rgba(3, 157, 97, 1);
  178. border:none;
  179. border-radius:0px;
  180. -moz-box-shadow:none;
  181. -webkit-box-shadow:none;
  182. box-shadow:none;
  183. font-size:15px;
  184. color:#FFFFFF;
  185. }
  186. #u3070.mouseOver {
  187. opacity:0.8;
  188. }
  189. #u3070_text {
  190. border-width:0px;
  191. position:absolute;
  192. left:2px;
  193. top:11px;
  194. width:236px;
  195. word-wrap:break-word;
  196. }
  197. #u3071_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:240px;
  203. height:40px;
  204. background:inherit;
  205. background-color:rgba(204, 204, 204, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-size:15px;
  212. color:#FFFFFF;
  213. }
  214. #u3071 {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:78px;
  219. width:240px;
  220. height:40px;
  221. font-size:15px;
  222. color:#FFFFFF;
  223. }
  224. #u3071_div.mouseOver {
  225. border-width:0px;
  226. position:absolute;
  227. left:0px;
  228. top:0px;
  229. width:240px;
  230. height:40px;
  231. background:inherit;
  232. background-color:rgba(3, 157, 97, 1);
  233. border:none;
  234. border-radius:0px;
  235. -moz-box-shadow:none;
  236. -webkit-box-shadow:none;
  237. box-shadow:none;
  238. font-size:15px;
  239. color:#FFFFFF;
  240. }
  241. #u3071.mouseOver {
  242. opacity:0.8;
  243. }
  244. #u3071_text {
  245. border-width:0px;
  246. position:absolute;
  247. left:2px;
  248. top:11px;
  249. width:236px;
  250. word-wrap:break-word;
  251. }
  252. #u3072_div {
  253. border-width:0px;
  254. position:absolute;
  255. left:0px;
  256. top:0px;
  257. width:240px;
  258. height:40px;
  259. background:inherit;
  260. background-color:rgba(255, 255, 255, 1);
  261. border:none;
  262. border-radius:0px;
  263. -moz-box-shadow:none;
  264. -webkit-box-shadow:none;
  265. box-shadow:none;
  266. font-size:20px;
  267. }
  268. #u3072 {
  269. border-width:0px;
  270. position:absolute;
  271. left:0px;
  272. top:55px;
  273. width:240px;
  274. height:40px;
  275. font-size:20px;
  276. }
  277. #u3072_div.mouseOver {
  278. border-width:0px;
  279. position:absolute;
  280. left:0px;
  281. top:0px;
  282. width:240px;
  283. height:40px;
  284. background:inherit;
  285. background-color:rgba(3, 157, 97, 1);
  286. border:none;
  287. border-radius:0px;
  288. -moz-box-shadow:none;
  289. -webkit-box-shadow:none;
  290. box-shadow:none;
  291. font-size:20px;
  292. }
  293. #u3072.mouseOver {
  294. }
  295. #u3072_text {
  296. border-width:0px;
  297. position:absolute;
  298. left:2px;
  299. top:8px;
  300. width:236px;
  301. word-wrap:break-word;
  302. }
  303. #u3073 {
  304. position:absolute;
  305. left:0px;
  306. top:135px;
  307. visibility:hidden;
  308. }
  309. #u3073_state0 {
  310. position:relative;
  311. left:0px;
  312. top:0px;
  313. width:240px;
  314. height:158px;
  315. background-image:none;
  316. }
  317. #u3073_state0_content {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:1px;
  323. height:1px;
  324. }
  325. #u3074_div {
  326. border-width:0px;
  327. position:absolute;
  328. left:0px;
  329. top:0px;
  330. width:240px;
  331. height:40px;
  332. background:inherit;
  333. background-color:rgba(204, 204, 204, 1);
  334. border:none;
  335. border-radius:0px;
  336. -moz-box-shadow:none;
  337. -webkit-box-shadow:none;
  338. box-shadow:none;
  339. font-size:15px;
  340. color:#FFFFFF;
  341. }
  342. #u3074 {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:78px;
  347. width:240px;
  348. height:40px;
  349. font-size:15px;
  350. color:#FFFFFF;
  351. }
  352. #u3074_div.mouseOver {
  353. border-width:0px;
  354. position:absolute;
  355. left:0px;
  356. top:0px;
  357. width:240px;
  358. height:40px;
  359. background:inherit;
  360. background-color:rgba(204, 204, 204, 1);
  361. border:none;
  362. border-radius:0px;
  363. -moz-box-shadow:none;
  364. -webkit-box-shadow:none;
  365. box-shadow:none;
  366. font-size:15px;
  367. color:#FFFFFF;
  368. }
  369. #u3074.mouseOver {
  370. opacity:0.8;
  371. }
  372. #u3074_text {
  373. border-width:0px;
  374. position:absolute;
  375. left:2px;
  376. top:11px;
  377. width:236px;
  378. word-wrap:break-word;
  379. }
  380. #u3075_div {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:240px;
  386. height:40px;
  387. background:inherit;
  388. background-color:rgba(204, 204, 204, 1);
  389. border:none;
  390. border-radius:0px;
  391. -moz-box-shadow:none;
  392. -webkit-box-shadow:none;
  393. box-shadow:none;
  394. font-size:15px;
  395. color:#FFFFFF;
  396. }
  397. #u3075 {
  398. border-width:0px;
  399. position:absolute;
  400. left:0px;
  401. top:118px;
  402. width:240px;
  403. height:40px;
  404. font-size:15px;
  405. color:#FFFFFF;
  406. }
  407. #u3075_div.mouseOver {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:240px;
  413. height:40px;
  414. background:inherit;
  415. background-color:rgba(204, 204, 204, 1);
  416. border:none;
  417. border-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. font-size:15px;
  422. color:#FFFFFF;
  423. }
  424. #u3075.mouseOver {
  425. opacity:0.8;
  426. }
  427. #u3075_text {
  428. border-width:0px;
  429. position:absolute;
  430. left:2px;
  431. top:11px;
  432. width:236px;
  433. word-wrap:break-word;
  434. }
  435. #u3076_div {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:240px;
  441. height:40px;
  442. background:inherit;
  443. background-color:rgba(204, 204, 204, 1);
  444. border:none;
  445. border-radius:0px;
  446. -moz-box-shadow:none;
  447. -webkit-box-shadow:none;
  448. box-shadow:none;
  449. font-size:15px;
  450. color:#FFFFFF;
  451. }
  452. #u3076 {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:240px;
  458. height:40px;
  459. font-size:15px;
  460. color:#FFFFFF;
  461. }
  462. #u3076_div.mouseOver {
  463. border-width:0px;
  464. position:absolute;
  465. left:0px;
  466. top:0px;
  467. width:240px;
  468. height:40px;
  469. background:inherit;
  470. background-color:rgba(204, 204, 204, 1);
  471. border:none;
  472. border-radius:0px;
  473. -moz-box-shadow:none;
  474. -webkit-box-shadow:none;
  475. box-shadow:none;
  476. font-size:15px;
  477. color:#FFFFFF;
  478. }
  479. #u3076.mouseOver {
  480. opacity:0.8;
  481. }
  482. #u3076_text {
  483. border-width:0px;
  484. position:absolute;
  485. left:2px;
  486. top:11px;
  487. width:236px;
  488. word-wrap:break-word;
  489. }
  490. #u3077_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:240px;
  496. height:40px;
  497. background:inherit;
  498. background-color:rgba(204, 204, 204, 1);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-size:15px;
  505. color:#FFFFFF;
  506. }
  507. #u3077 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:39px;
  512. width:240px;
  513. height:40px;
  514. font-size:15px;
  515. color:#FFFFFF;
  516. }
  517. #u3077_div.mouseOver {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:240px;
  523. height:40px;
  524. background:inherit;
  525. background-color:rgba(204, 204, 204, 1);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-size:15px;
  532. color:#FFFFFF;
  533. }
  534. #u3077.mouseOver {
  535. opacity:0.8;
  536. }
  537. #u3077_text {
  538. border-width:0px;
  539. position:absolute;
  540. left:2px;
  541. top:11px;
  542. width:236px;
  543. word-wrap:break-word;
  544. }
  545. #u3078 {
  546. position:absolute;
  547. left:0px;
  548. top:215px;
  549. visibility:hidden;
  550. }
  551. #u3078_state0 {
  552. position:relative;
  553. left:0px;
  554. top:0px;
  555. width:240px;
  556. height:79px;
  557. background-image:none;
  558. }
  559. #u3078_state0_content {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:1px;
  565. height:1px;
  566. }
  567. #u3079_div {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:240px;
  573. height:40px;
  574. background:inherit;
  575. background-color:rgba(204, 204, 204, 1);
  576. border:none;
  577. border-radius:0px;
  578. -moz-box-shadow:none;
  579. -webkit-box-shadow:none;
  580. box-shadow:none;
  581. font-size:15px;
  582. color:#FFFFFF;
  583. }
  584. #u3079 {
  585. border-width:0px;
  586. position:absolute;
  587. left:0px;
  588. top:0px;
  589. width:240px;
  590. height:40px;
  591. font-size:15px;
  592. color:#FFFFFF;
  593. }
  594. #u3079_div.mouseOver {
  595. border-width:0px;
  596. position:absolute;
  597. left:0px;
  598. top:0px;
  599. width:240px;
  600. height:40px;
  601. background:inherit;
  602. background-color:rgba(204, 204, 204, 1);
  603. border:none;
  604. border-radius:0px;
  605. -moz-box-shadow:none;
  606. -webkit-box-shadow:none;
  607. box-shadow:none;
  608. font-size:15px;
  609. color:#FFFFFF;
  610. }
  611. #u3079.mouseOver {
  612. opacity:0.8;
  613. }
  614. #u3079_text {
  615. border-width:0px;
  616. position:absolute;
  617. left:2px;
  618. top:11px;
  619. width:236px;
  620. word-wrap:break-word;
  621. }
  622. #u3080_div {
  623. border-width:0px;
  624. position:absolute;
  625. left:0px;
  626. top:0px;
  627. width:240px;
  628. height:40px;
  629. background:inherit;
  630. background-color:rgba(204, 204, 204, 1);
  631. border:none;
  632. border-radius:0px;
  633. -moz-box-shadow:none;
  634. -webkit-box-shadow:none;
  635. box-shadow:none;
  636. font-size:15px;
  637. color:#FFFFFF;
  638. }
  639. #u3080 {
  640. border-width:0px;
  641. position:absolute;
  642. left:0px;
  643. top:39px;
  644. width:240px;
  645. height:40px;
  646. font-size:15px;
  647. color:#FFFFFF;
  648. }
  649. #u3080_div.mouseOver {
  650. border-width:0px;
  651. position:absolute;
  652. left:0px;
  653. top:0px;
  654. width:240px;
  655. height:40px;
  656. background:inherit;
  657. background-color:rgba(204, 204, 204, 1);
  658. border:none;
  659. border-radius:0px;
  660. -moz-box-shadow:none;
  661. -webkit-box-shadow:none;
  662. box-shadow:none;
  663. font-size:15px;
  664. color:#FFFFFF;
  665. }
  666. #u3080.mouseOver {
  667. opacity:0.8;
  668. }
  669. #u3080_text {
  670. border-width:0px;
  671. position:absolute;
  672. left:2px;
  673. top:11px;
  674. width:236px;
  675. word-wrap:break-word;
  676. }
  677. #u3081 {
  678. position:absolute;
  679. left:0px;
  680. top:295px;
  681. visibility:hidden;
  682. }
  683. #u3081_state0 {
  684. position:relative;
  685. left:0px;
  686. top:0px;
  687. width:240px;
  688. height:197px;
  689. background-image:none;
  690. }
  691. #u3081_state0_content {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:1px;
  697. height:1px;
  698. }
  699. #u3082_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:240px;
  705. height:40px;
  706. background:inherit;
  707. background-color:rgba(204, 204, 204, 1);
  708. border:none;
  709. border-radius:0px;
  710. -moz-box-shadow:none;
  711. -webkit-box-shadow:none;
  712. box-shadow:none;
  713. font-size:15px;
  714. color:#FFFFFF;
  715. }
  716. #u3082 {
  717. border-width:0px;
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:240px;
  722. height:40px;
  723. font-size:15px;
  724. color:#FFFFFF;
  725. }
  726. #u3082_div.mouseOver {
  727. border-width:0px;
  728. position:absolute;
  729. left:0px;
  730. top:0px;
  731. width:240px;
  732. height:40px;
  733. background:inherit;
  734. background-color:rgba(3, 157, 97, 1);
  735. border:none;
  736. border-radius:0px;
  737. -moz-box-shadow:none;
  738. -webkit-box-shadow:none;
  739. box-shadow:none;
  740. font-size:15px;
  741. color:#FFFFFF;
  742. }
  743. #u3082.mouseOver {
  744. opacity:0.8;
  745. }
  746. #u3082_text {
  747. border-width:0px;
  748. position:absolute;
  749. left:2px;
  750. top:11px;
  751. width:236px;
  752. word-wrap:break-word;
  753. }
  754. #u3083_div {
  755. border-width:0px;
  756. position:absolute;
  757. left:0px;
  758. top:0px;
  759. width:240px;
  760. height:40px;
  761. background:inherit;
  762. background-color:rgba(204, 204, 204, 1);
  763. border:none;
  764. border-radius:0px;
  765. -moz-box-shadow:none;
  766. -webkit-box-shadow:none;
  767. box-shadow:none;
  768. font-size:15px;
  769. color:#FFFFFF;
  770. }
  771. #u3083 {
  772. border-width:0px;
  773. position:absolute;
  774. left:0px;
  775. top:39px;
  776. width:240px;
  777. height:40px;
  778. font-size:15px;
  779. color:#FFFFFF;
  780. }
  781. #u3083_div.mouseOver {
  782. border-width:0px;
  783. position:absolute;
  784. left:0px;
  785. top:0px;
  786. width:240px;
  787. height:40px;
  788. background:inherit;
  789. background-color:rgba(3, 157, 97, 1);
  790. border:none;
  791. border-radius:0px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. font-size:15px;
  796. color:#FFFFFF;
  797. }
  798. #u3083.mouseOver {
  799. opacity:0.8;
  800. }
  801. #u3083_text {
  802. border-width:0px;
  803. position:absolute;
  804. left:2px;
  805. top:11px;
  806. width:236px;
  807. word-wrap:break-word;
  808. }
  809. #u3084_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:240px;
  815. height:40px;
  816. background:inherit;
  817. background-color:rgba(204, 204, 204, 1);
  818. border:none;
  819. border-radius:0px;
  820. -moz-box-shadow:none;
  821. -webkit-box-shadow:none;
  822. box-shadow:none;
  823. font-size:15px;
  824. color:#FFFFFF;
  825. }
  826. #u3084 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:78px;
  831. width:240px;
  832. height:40px;
  833. font-size:15px;
  834. color:#FFFFFF;
  835. }
  836. #u3084_div.mouseOver {
  837. border-width:0px;
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:240px;
  842. height:40px;
  843. background:inherit;
  844. background-color:rgba(3, 157, 97, 1);
  845. border:none;
  846. border-radius:0px;
  847. -moz-box-shadow:none;
  848. -webkit-box-shadow:none;
  849. box-shadow:none;
  850. font-size:15px;
  851. color:#FFFFFF;
  852. }
  853. #u3084.mouseOver {
  854. opacity:0.8;
  855. }
  856. #u3084_text {
  857. border-width:0px;
  858. position:absolute;
  859. left:2px;
  860. top:11px;
  861. width:236px;
  862. word-wrap:break-word;
  863. }
  864. #u3085_div {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:240px;
  870. height:40px;
  871. background:inherit;
  872. background-color:rgba(204, 204, 204, 1);
  873. border:none;
  874. border-radius:0px;
  875. -moz-box-shadow:none;
  876. -webkit-box-shadow:none;
  877. box-shadow:none;
  878. font-size:15px;
  879. color:#FFFFFF;
  880. }
  881. #u3085 {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:118px;
  886. width:240px;
  887. height:40px;
  888. font-size:15px;
  889. color:#FFFFFF;
  890. }
  891. #u3085_div.mouseOver {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:240px;
  897. height:40px;
  898. background:inherit;
  899. background-color:rgba(3, 157, 97, 1);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. font-size:15px;
  906. color:#FFFFFF;
  907. }
  908. #u3085.mouseOver {
  909. opacity:0.8;
  910. }
  911. #u3085_text {
  912. border-width:0px;
  913. position:absolute;
  914. left:2px;
  915. top:11px;
  916. width:236px;
  917. word-wrap:break-word;
  918. }
  919. #u3086_div {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:240px;
  925. height:40px;
  926. background:inherit;
  927. background-color:rgba(204, 204, 204, 1);
  928. border:none;
  929. border-radius:0px;
  930. -moz-box-shadow:none;
  931. -webkit-box-shadow:none;
  932. box-shadow:none;
  933. font-size:15px;
  934. color:#FFFFFF;
  935. }
  936. #u3086 {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:157px;
  941. width:240px;
  942. height:40px;
  943. font-size:15px;
  944. color:#FFFFFF;
  945. }
  946. #u3086_div.mouseOver {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:240px;
  952. height:40px;
  953. background:inherit;
  954. background-color:rgba(3, 157, 97, 1);
  955. border:none;
  956. border-radius:0px;
  957. -moz-box-shadow:none;
  958. -webkit-box-shadow:none;
  959. box-shadow:none;
  960. font-size:15px;
  961. color:#FFFFFF;
  962. }
  963. #u3086.mouseOver {
  964. opacity:0.8;
  965. }
  966. #u3086_text {
  967. border-width:0px;
  968. position:absolute;
  969. left:2px;
  970. top:11px;
  971. width:236px;
  972. word-wrap:break-word;
  973. }
  974. #u3087_div {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:240px;
  980. height:40px;
  981. background:inherit;
  982. background-color:rgba(255, 255, 255, 1);
  983. border:none;
  984. border-radius:0px;
  985. -moz-box-shadow:none;
  986. -webkit-box-shadow:none;
  987. box-shadow:none;
  988. font-size:20px;
  989. }
  990. #u3087 {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:215px;
  995. width:240px;
  996. height:40px;
  997. font-size:20px;
  998. }
  999. #u3087_div.mouseOver {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:0px;
  1003. top:0px;
  1004. width:240px;
  1005. height:40px;
  1006. background:inherit;
  1007. background-color:rgba(3, 157, 97, 1);
  1008. border:none;
  1009. border-radius:0px;
  1010. -moz-box-shadow:none;
  1011. -webkit-box-shadow:none;
  1012. box-shadow:none;
  1013. font-size:20px;
  1014. }
  1015. #u3087.mouseOver {
  1016. }
  1017. #u3087_text {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:2px;
  1021. top:8px;
  1022. width:236px;
  1023. word-wrap:break-word;
  1024. }
  1025. #u3088_img {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:25px;
  1031. height:25px;
  1032. }
  1033. #u3088 {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:46px;
  1037. top:225px;
  1038. width:25px;
  1039. height:25px;
  1040. }
  1041. #u3088_text {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:0px;
  1045. top:0px;
  1046. width:0px;
  1047. visibility:hidden;
  1048. word-wrap:break-word;
  1049. }
  1050. #u3089 {
  1051. position:absolute;
  1052. left:0px;
  1053. top:255px;
  1054. visibility:hidden;
  1055. }
  1056. #u3089_state0 {
  1057. position:relative;
  1058. left:0px;
  1059. top:0px;
  1060. width:240px;
  1061. height:158px;
  1062. background-image:none;
  1063. }
  1064. #u3089_state0_content {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:0px;
  1068. top:0px;
  1069. width:1px;
  1070. height:1px;
  1071. }
  1072. #u3090_div {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:240px;
  1078. height:40px;
  1079. background:inherit;
  1080. background-color:rgba(204, 204, 204, 1);
  1081. border:none;
  1082. border-radius:0px;
  1083. -moz-box-shadow:none;
  1084. -webkit-box-shadow:none;
  1085. box-shadow:none;
  1086. font-size:15px;
  1087. color:#FFFFFF;
  1088. }
  1089. #u3090 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:118px;
  1094. width:240px;
  1095. height:40px;
  1096. font-size:15px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u3090_div.mouseOver {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:240px;
  1105. height:40px;
  1106. background:inherit;
  1107. background-color:rgba(204, 204, 204, 1);
  1108. border:none;
  1109. border-radius:0px;
  1110. -moz-box-shadow:none;
  1111. -webkit-box-shadow:none;
  1112. box-shadow:none;
  1113. font-size:15px;
  1114. color:#FFFFFF;
  1115. }
  1116. #u3090.mouseOver {
  1117. opacity:0.8;
  1118. }
  1119. #u3090_text {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:2px;
  1123. top:11px;
  1124. width:236px;
  1125. word-wrap:break-word;
  1126. }
  1127. #u3091_div {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:0px;
  1131. top:0px;
  1132. width:240px;
  1133. height:40px;
  1134. background:inherit;
  1135. background-color:rgba(204, 204, 204, 1);
  1136. border:none;
  1137. border-radius:0px;
  1138. -moz-box-shadow:none;
  1139. -webkit-box-shadow:none;
  1140. box-shadow:none;
  1141. font-size:15px;
  1142. color:#FFFFFF;
  1143. }
  1144. #u3091 {
  1145. border-width:0px;
  1146. position:absolute;
  1147. left:0px;
  1148. top:78px;
  1149. width:240px;
  1150. height:40px;
  1151. font-size:15px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u3091_div.mouseOver {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:240px;
  1160. height:40px;
  1161. background:inherit;
  1162. background-color:rgba(204, 204, 204, 1);
  1163. border:none;
  1164. border-radius:0px;
  1165. -moz-box-shadow:none;
  1166. -webkit-box-shadow:none;
  1167. box-shadow:none;
  1168. font-size:15px;
  1169. color:#FFFFFF;
  1170. }
  1171. #u3091.mouseOver {
  1172. opacity:0.8;
  1173. }
  1174. #u3091_text {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:2px;
  1178. top:11px;
  1179. width:236px;
  1180. word-wrap:break-word;
  1181. }
  1182. #u3092_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:240px;
  1188. height:40px;
  1189. background:inherit;
  1190. background-color:rgba(204, 204, 204, 1);
  1191. border:none;
  1192. border-radius:0px;
  1193. -moz-box-shadow:none;
  1194. -webkit-box-shadow:none;
  1195. box-shadow:none;
  1196. font-size:15px;
  1197. color:#FFFFFF;
  1198. }
  1199. #u3092 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:0px;
  1203. top:39px;
  1204. width:240px;
  1205. height:40px;
  1206. font-size:15px;
  1207. color:#FFFFFF;
  1208. }
  1209. #u3092_div.mouseOver {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:0px;
  1213. top:0px;
  1214. width:240px;
  1215. height:40px;
  1216. background:inherit;
  1217. background-color:rgba(204, 204, 204, 1);
  1218. border:none;
  1219. border-radius:0px;
  1220. -moz-box-shadow:none;
  1221. -webkit-box-shadow:none;
  1222. box-shadow:none;
  1223. font-size:15px;
  1224. color:#FFFFFF;
  1225. }
  1226. #u3092.mouseOver {
  1227. opacity:0.8;
  1228. }
  1229. #u3092_text {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:2px;
  1233. top:11px;
  1234. width:236px;
  1235. word-wrap:break-word;
  1236. }
  1237. #u3093_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:240px;
  1243. height:40px;
  1244. background:inherit;
  1245. background-color:rgba(204, 204, 204, 1);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. font-size:15px;
  1252. color:#FFFFFF;
  1253. }
  1254. #u3093 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:240px;
  1260. height:40px;
  1261. font-size:15px;
  1262. color:#FFFFFF;
  1263. }
  1264. #u3093_div.mouseOver {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:240px;
  1270. height:40px;
  1271. background:inherit;
  1272. background-color:rgba(204, 204, 204, 1);
  1273. border:none;
  1274. border-radius:0px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-size:15px;
  1279. color:#FFFFFF;
  1280. }
  1281. #u3093.mouseOver {
  1282. opacity:0.8;
  1283. }
  1284. #u3093_text {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:2px;
  1288. top:11px;
  1289. width:236px;
  1290. word-wrap:break-word;
  1291. }
  1292. #u3094_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:16px;
  1298. height:16px;
  1299. }
  1300. #u3094 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:210px;
  1304. top:68px;
  1305. width:15px;
  1306. height:15px;
  1307. -webkit-transform:rotate(225deg);
  1308. -moz-transform:rotate(225deg);
  1309. -ms-transform:rotate(225deg);
  1310. transform:rotate(225deg);
  1311. }
  1312. #u3094_text {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:0px;
  1318. visibility:hidden;
  1319. word-wrap:break-word;
  1320. }
  1321. #u3095_img {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:16px;
  1327. height:16px;
  1328. }
  1329. #u3095 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:210px;
  1333. top:228px;
  1334. width:15px;
  1335. height:15px;
  1336. -webkit-transform:rotate(135deg);
  1337. -moz-transform:rotate(135deg);
  1338. -ms-transform:rotate(135deg);
  1339. transform:rotate(135deg);
  1340. }
  1341. #u3095_text {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:0px;
  1347. visibility:hidden;
  1348. word-wrap:break-word;
  1349. }
  1350. #u3096 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:0px;
  1354. top:0px;
  1355. width:0px;
  1356. height:0px;
  1357. }
  1358. #u3097_img {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:31px;
  1364. height:25px;
  1365. }
  1366. #u3097 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:199px;
  1370. top:143px;
  1371. width:31px;
  1372. height:25px;
  1373. }
  1374. #u3097_text {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:0px;
  1380. visibility:hidden;
  1381. word-wrap:break-word;
  1382. }
  1383. #u3098_img {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:16px;
  1389. height:16px;
  1390. }
  1391. #u3098 {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:207px;
  1395. top:146px;
  1396. width:15px;
  1397. height:15px;
  1398. -webkit-transform:rotate(45deg);
  1399. -moz-transform:rotate(45deg);
  1400. -ms-transform:rotate(45deg);
  1401. transform:rotate(45deg);
  1402. }
  1403. #u3098_text {
  1404. border-width:0px;
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:0px;
  1409. visibility:hidden;
  1410. word-wrap:break-word;
  1411. }
  1412. #u3099 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:0px;
  1416. top:0px;
  1417. width:0px;
  1418. height:0px;
  1419. }
  1420. #u3100_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:31px;
  1426. height:25px;
  1427. }
  1428. #u3100 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:199px;
  1432. top:181px;
  1433. width:31px;
  1434. height:25px;
  1435. }
  1436. #u3100_text {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:0px;
  1442. visibility:hidden;
  1443. word-wrap:break-word;
  1444. }
  1445. #u3101_img {
  1446. border-width:0px;
  1447. position:absolute;
  1448. left:0px;
  1449. top:0px;
  1450. width:16px;
  1451. height:16px;
  1452. }
  1453. #u3101 {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:207px;
  1457. top:184px;
  1458. width:15px;
  1459. height:15px;
  1460. -webkit-transform:rotate(45deg);
  1461. -moz-transform:rotate(45deg);
  1462. -ms-transform:rotate(45deg);
  1463. transform:rotate(45deg);
  1464. }
  1465. #u3101_text {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:0px;
  1471. visibility:hidden;
  1472. word-wrap:break-word;
  1473. }
  1474. #u3102 {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:0px;
  1480. height:0px;
  1481. }
  1482. #u3103_img {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:31px;
  1488. height:25px;
  1489. }
  1490. #u3103 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:199px;
  1494. top:221px;
  1495. width:31px;
  1496. height:25px;
  1497. }
  1498. #u3103_text {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:0px;
  1504. visibility:hidden;
  1505. word-wrap:break-word;
  1506. }
  1507. #u3104_img {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:16px;
  1513. height:16px;
  1514. }
  1515. #u3104 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:207px;
  1519. top:224px;
  1520. width:15px;
  1521. height:15px;
  1522. -webkit-transform:rotate(45deg);
  1523. -moz-transform:rotate(45deg);
  1524. -ms-transform:rotate(45deg);
  1525. transform:rotate(45deg);
  1526. }
  1527. #u3104_text {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:0px;
  1531. top:0px;
  1532. width:0px;
  1533. visibility:hidden;
  1534. word-wrap:break-word;
  1535. }
  1536. #u3105_img {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:0px;
  1540. top:0px;
  1541. width:243px;
  1542. height:57px;
  1543. }
  1544. #u3105 {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:-3px;
  1548. top:0px;
  1549. width:243px;
  1550. height:57px;
  1551. font-size:36px;
  1552. text-align:left;
  1553. }
  1554. #u3105_text {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:2px;
  1558. top:8px;
  1559. width:239px;
  1560. word-wrap:break-word;
  1561. }
  1562. #u3106_img {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:25px;
  1568. height:25px;
  1569. }
  1570. #u3106 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:49px;
  1574. top:66px;
  1575. width:25px;
  1576. height:25px;
  1577. }
  1578. #u3106_text {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:0px;
  1584. visibility:hidden;
  1585. word-wrap:break-word;
  1586. }
  1587. #u3107_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:240px;
  1593. height:40px;
  1594. background:inherit;
  1595. background-color:rgba(255, 255, 255, 1);
  1596. border:none;
  1597. border-radius:0px;
  1598. -moz-box-shadow:none;
  1599. -webkit-box-shadow:none;
  1600. box-shadow:none;
  1601. font-size:20px;
  1602. }
  1603. #u3107 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:95px;
  1608. width:240px;
  1609. height:40px;
  1610. font-size:20px;
  1611. }
  1612. #u3107_div.mouseOver {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:240px;
  1618. height:40px;
  1619. background:inherit;
  1620. background-color:rgba(3, 157, 97, 1);
  1621. border:none;
  1622. border-radius:0px;
  1623. -moz-box-shadow:none;
  1624. -webkit-box-shadow:none;
  1625. box-shadow:none;
  1626. font-size:20px;
  1627. }
  1628. #u3107.mouseOver {
  1629. }
  1630. #u3107_text {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:2px;
  1634. top:8px;
  1635. width:236px;
  1636. word-wrap:break-word;
  1637. }
  1638. #u3108_img {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:25px;
  1644. height:25px;
  1645. }
  1646. #u3108 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:46px;
  1650. top:101px;
  1651. width:25px;
  1652. height:25px;
  1653. }
  1654. #u3108_text {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:0px;
  1660. visibility:hidden;
  1661. word-wrap:break-word;
  1662. }
  1663. #u3109_div {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:240px;
  1669. height:40px;
  1670. background:inherit;
  1671. background-color:rgba(255, 255, 255, 1);
  1672. border:none;
  1673. border-radius:0px;
  1674. -moz-box-shadow:none;
  1675. -webkit-box-shadow:none;
  1676. box-shadow:none;
  1677. font-size:20px;
  1678. }
  1679. #u3109 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:135px;
  1684. width:240px;
  1685. height:40px;
  1686. font-size:20px;
  1687. }
  1688. #u3109_div.mouseOver {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:240px;
  1694. height:40px;
  1695. background:inherit;
  1696. background-color:rgba(3, 157, 97, 1);
  1697. border:none;
  1698. border-radius:0px;
  1699. -moz-box-shadow:none;
  1700. -webkit-box-shadow:none;
  1701. box-shadow:none;
  1702. font-size:20px;
  1703. }
  1704. #u3109.mouseOver {
  1705. }
  1706. #u3109_text {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:2px;
  1710. top:8px;
  1711. width:236px;
  1712. word-wrap:break-word;
  1713. }
  1714. #u3110_img {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:25px;
  1720. height:25px;
  1721. }
  1722. #u3110 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:46px;
  1726. top:140px;
  1727. width:25px;
  1728. height:25px;
  1729. }
  1730. #u3110_text {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:0px;
  1736. visibility:hidden;
  1737. word-wrap:break-word;
  1738. }
  1739. #u3111_div {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:0px;
  1743. top:0px;
  1744. width:240px;
  1745. height:40px;
  1746. background:inherit;
  1747. background-color:rgba(255, 255, 255, 1);
  1748. border:none;
  1749. border-radius:0px;
  1750. -moz-box-shadow:none;
  1751. -webkit-box-shadow:none;
  1752. box-shadow:none;
  1753. font-size:20px;
  1754. }
  1755. #u3111 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:175px;
  1760. width:240px;
  1761. height:40px;
  1762. font-size:20px;
  1763. }
  1764. #u3111_div.mouseOver {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:240px;
  1770. height:40px;
  1771. background:inherit;
  1772. background-color:rgba(3, 157, 97, 1);
  1773. border:none;
  1774. border-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-size:20px;
  1779. }
  1780. #u3111.mouseOver {
  1781. }
  1782. #u3111_text {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:2px;
  1786. top:8px;
  1787. width:236px;
  1788. word-wrap:break-word;
  1789. }
  1790. #u3112_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:25px;
  1796. height:25px;
  1797. }
  1798. #u3112 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:46px;
  1802. top:183px;
  1803. width:25px;
  1804. height:25px;
  1805. }
  1806. #u3112_text {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:0px;
  1812. visibility:hidden;
  1813. word-wrap:break-word;
  1814. }
  1815. #u3113 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:0px;
  1821. height:0px;
  1822. }
  1823. #u3114_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:31px;
  1829. height:25px;
  1830. }
  1831. #u3114 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:199px;
  1835. top:104px;
  1836. width:31px;
  1837. height:25px;
  1838. }
  1839. #u3114_text {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:0px;
  1845. visibility:hidden;
  1846. word-wrap:break-word;
  1847. }
  1848. #u3115_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:16px;
  1854. height:16px;
  1855. }
  1856. #u3115 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:207px;
  1860. top:107px;
  1861. width:15px;
  1862. height:15px;
  1863. -webkit-transform:rotate(45deg);
  1864. -moz-transform:rotate(45deg);
  1865. -ms-transform:rotate(45deg);
  1866. transform:rotate(45deg);
  1867. }
  1868. #u3115_text {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:0px;
  1874. visibility:hidden;
  1875. word-wrap:break-word;
  1876. }
  1877. #u3116_img {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:16px;
  1883. height:16px;
  1884. }
  1885. #u3116 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:210px;
  1889. top:188px;
  1890. width:15px;
  1891. height:15px;
  1892. -webkit-transform:rotate(135deg);
  1893. -moz-transform:rotate(135deg);
  1894. -ms-transform:rotate(135deg);
  1895. transform:rotate(135deg);
  1896. }
  1897. #u3116_text {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:0px;
  1903. visibility:hidden;
  1904. word-wrap:break-word;
  1905. }
  1906. #u3117_img {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:16px;
  1912. height:16px;
  1913. }
  1914. #u3117 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:210px;
  1918. top:148px;
  1919. width:15px;
  1920. height:15px;
  1921. -webkit-transform:rotate(135deg);
  1922. -moz-transform:rotate(135deg);
  1923. -ms-transform:rotate(135deg);
  1924. transform:rotate(135deg);
  1925. }
  1926. #u3117_text {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:0px;
  1932. visibility:hidden;
  1933. word-wrap:break-word;
  1934. }
  1935. #u3118_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:240px;
  1941. height:40px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 1);
  1944. border:none;
  1945. border-radius:0px;
  1946. -moz-box-shadow:none;
  1947. -webkit-box-shadow:none;
  1948. box-shadow:none;
  1949. font-size:20px;
  1950. }
  1951. #u3118 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:255px;
  1956. width:240px;
  1957. height:40px;
  1958. font-size:20px;
  1959. }
  1960. #u3118_div.mouseOver {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:240px;
  1966. height:40px;
  1967. background:inherit;
  1968. background-color:rgba(3, 157, 97, 1);
  1969. border:none;
  1970. border-radius:0px;
  1971. -moz-box-shadow:none;
  1972. -webkit-box-shadow:none;
  1973. box-shadow:none;
  1974. font-size:20px;
  1975. }
  1976. #u3118.mouseOver {
  1977. }
  1978. #u3118_text {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:2px;
  1982. top:8px;
  1983. width:236px;
  1984. word-wrap:break-word;
  1985. }
  1986. #u3119_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:25px;
  1992. height:25px;
  1993. }
  1994. #u3119 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:46px;
  1998. top:264px;
  1999. width:25px;
  2000. height:25px;
  2001. }
  2002. #u3119_text {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:0px;
  2008. visibility:hidden;
  2009. word-wrap:break-word;
  2010. }
  2011. #u3120_img {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:16px;
  2017. height:16px;
  2018. }
  2019. #u3120 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:210px;
  2023. top:108px;
  2024. width:15px;
  2025. height:15px;
  2026. -webkit-transform:rotate(135deg);
  2027. -moz-transform:rotate(135deg);
  2028. -ms-transform:rotate(135deg);
  2029. transform:rotate(135deg);
  2030. }
  2031. #u3120_text {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:0px;
  2037. visibility:hidden;
  2038. word-wrap:break-word;
  2039. }
  2040. #u3121_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:16px;
  2046. height:16px;
  2047. }
  2048. #u3121 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:210px;
  2052. top:267px;
  2053. width:15px;
  2054. height:15px;
  2055. -webkit-transform:rotate(135deg);
  2056. -moz-transform:rotate(135deg);
  2057. -ms-transform:rotate(135deg);
  2058. transform:rotate(135deg);
  2059. }
  2060. #u3121_text {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:0px;
  2066. visibility:hidden;
  2067. word-wrap:break-word;
  2068. }
  2069. #u3122 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:0px;
  2075. height:0px;
  2076. }
  2077. #u3123_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:31px;
  2083. height:25px;
  2084. }
  2085. #u3123 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:199px;
  2089. top:264px;
  2090. width:31px;
  2091. height:25px;
  2092. }
  2093. #u3123_text {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:0px;
  2099. visibility:hidden;
  2100. word-wrap:break-word;
  2101. }
  2102. #u3124_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:16px;
  2108. height:16px;
  2109. }
  2110. #u3124 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:207px;
  2114. top:267px;
  2115. width:15px;
  2116. height:15px;
  2117. -webkit-transform:rotate(45deg);
  2118. -moz-transform:rotate(45deg);
  2119. -ms-transform:rotate(45deg);
  2120. transform:rotate(45deg);
  2121. }
  2122. #u3124_text {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:0px;
  2128. visibility:hidden;
  2129. word-wrap:break-word;
  2130. }
  2131. #u3125_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:1134px;
  2137. height:872px;
  2138. }
  2139. #u3125 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:263px;
  2143. top:48px;
  2144. width:1134px;
  2145. height:872px;
  2146. }
  2147. #u3125_text {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:0px;
  2153. visibility:hidden;
  2154. word-wrap:break-word;
  2155. }
  2156. #u3126_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:1138px;
  2162. height:54px;
  2163. }
  2164. #u3126 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:259px;
  2168. top:48px;
  2169. width:1138px;
  2170. height:54px;
  2171. font-size:20px;
  2172. }
  2173. #u3126_text {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:2px;
  2177. top:16px;
  2178. width:1134px;
  2179. word-wrap:break-word;
  2180. }
  2181. #u3127 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:0px;
  2187. height:0px;
  2188. }
  2189. #u3128 {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:305px;
  2193. top:775px;
  2194. width:32px;
  2195. height:32px;
  2196. overflow:hidden;
  2197. }
  2198. #u3128_state0 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:32px;
  2204. height:32px;
  2205. -ms-overflow-x:hidden;
  2206. overflow-x:hidden;
  2207. -ms-overflow-y:hidden;
  2208. overflow-y:hidden;
  2209. background-image:none;
  2210. }
  2211. #u3128_state0_content {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:1px;
  2217. height:1px;
  2218. }
  2219. #u3129_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:81px;
  2225. height:28px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border:none;
  2229. border-radius:0px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-family:'PingFang SC Bold', 'PingFang SC';
  2234. font-weight:650;
  2235. font-style:normal;
  2236. font-size:20px;
  2237. color:rgba(0, 0, 0, 0.847058823529412);
  2238. line-height:28px;
  2239. }
  2240. #u3129 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:337px;
  2244. top:134px;
  2245. width:81px;
  2246. height:28px;
  2247. font-family:'PingFang SC Bold', 'PingFang SC';
  2248. font-weight:650;
  2249. font-style:normal;
  2250. font-size:20px;
  2251. color:rgba(0, 0, 0, 0.847058823529412);
  2252. line-height:28px;
  2253. }
  2254. #u3129_text {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:81px;
  2260. white-space:nowrap;
  2261. }
  2262. #u3130 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:0px;
  2268. height:0px;
  2269. }
  2270. #u3131_div {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:38px;
  2276. height:30px;
  2277. background:inherit;
  2278. background-color:rgba(255, 255, 255, 0);
  2279. border:none;
  2280. border-radius:0px;
  2281. -moz-box-shadow:none;
  2282. -webkit-box-shadow:none;
  2283. box-shadow:none;
  2284. font-family:'PingFang SC Regular', 'PingFang SC';
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:14px;
  2288. color:rgba(0, 0, 0, 0.847058823529412);
  2289. line-height:22px;
  2290. }
  2291. #u3131 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:337px;
  2295. top:273px;
  2296. width:38px;
  2297. height:30px;
  2298. font-family:'PingFang SC Regular', 'PingFang SC';
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:14px;
  2302. color:rgba(0, 0, 0, 0.847058823529412);
  2303. line-height:22px;
  2304. }
  2305. #u3131_text {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:30px;
  2311. white-space:nowrap;
  2312. }
  2313. #u3132 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:0px;
  2319. height:0px;
  2320. }
  2321. #u3133_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:448px;
  2327. height:32px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 1);
  2330. box-sizing:border-box;
  2331. border-width:1px;
  2332. border-style:solid;
  2333. border-color:rgba(217, 217, 217, 1);
  2334. border-radius:4px;
  2335. -moz-box-shadow:none;
  2336. -webkit-box-shadow:none;
  2337. box-shadow:none;
  2338. font-family:'PingFang SC Regular', 'PingFang SC';
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:14px;
  2342. color:rgba(0, 0, 0, 0.847058823529412);
  2343. text-align:left;
  2344. line-height:22px;
  2345. }
  2346. #u3133 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:337px;
  2350. top:303px;
  2351. width:448px;
  2352. height:32px;
  2353. font-family:'PingFang SC Regular', 'PingFang SC';
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:14px;
  2357. color:rgba(0, 0, 0, 0.847058823529412);
  2358. text-align:left;
  2359. line-height:22px;
  2360. }
  2361. #u3133_text {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:12px;
  2365. top:5px;
  2366. width:428px;
  2367. word-wrap:break-word;
  2368. }
  2369. #u3134_div {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:448px;
  2375. height:32px;
  2376. background:inherit;
  2377. background-color:rgba(255, 255, 255, 0);
  2378. border:none;
  2379. border-radius:0px;
  2380. -moz-box-shadow:none;
  2381. -webkit-box-shadow:none;
  2382. box-shadow:none;
  2383. font-family:'Microsoft Tai Le';
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. color:rgba(0, 0, 0, 0.427450980392157);
  2388. line-height:22px;
  2389. }
  2390. #u3134 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:337px;
  2394. top:335px;
  2395. width:448px;
  2396. height:32px;
  2397. font-family:'Microsoft Tai Le';
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:14px;
  2401. color:rgba(0, 0, 0, 0.427450980392157);
  2402. line-height:22px;
  2403. }
  2404. #u3134_text {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:448px;
  2410. word-wrap:break-word;
  2411. }
  2412. #u3135 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:0px;
  2418. height:0px;
  2419. }
  2420. #u3136_div {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:67px;
  2426. height:30px;
  2427. background:inherit;
  2428. background-color:rgba(255, 255, 255, 0);
  2429. border:none;
  2430. border-radius:0px;
  2431. -moz-box-shadow:none;
  2432. -webkit-box-shadow:none;
  2433. box-shadow:none;
  2434. font-family:'PingFang SC Regular', 'PingFang SC';
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:14px;
  2438. color:rgba(0, 0, 0, 0.847058823529412);
  2439. line-height:22px;
  2440. }
  2441. #u3136 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:337px;
  2445. top:189px;
  2446. width:67px;
  2447. height:30px;
  2448. font-family:'PingFang SC Regular', 'PingFang SC';
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:14px;
  2452. color:rgba(0, 0, 0, 0.847058823529412);
  2453. line-height:22px;
  2454. }
  2455. #u3136_text {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:59px;
  2461. white-space:nowrap;
  2462. }
  2463. #u3137 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:0px;
  2469. height:0px;
  2470. }
  2471. #u3138_div {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:448px;
  2477. height:32px;
  2478. background:inherit;
  2479. background-color:rgba(255, 255, 255, 1);
  2480. box-sizing:border-box;
  2481. border-width:1px;
  2482. border-style:solid;
  2483. border-color:rgba(217, 217, 217, 1);
  2484. border-radius:4px;
  2485. -moz-box-shadow:none;
  2486. -webkit-box-shadow:none;
  2487. box-shadow:none;
  2488. font-family:'PingFang SC Regular', 'PingFang SC';
  2489. font-weight:400;
  2490. font-style:normal;
  2491. font-size:14px;
  2492. color:rgba(0, 0, 0, 0.847058823529412);
  2493. text-align:left;
  2494. line-height:22px;
  2495. }
  2496. #u3138 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:337px;
  2500. top:219px;
  2501. width:448px;
  2502. height:32px;
  2503. font-family:'PingFang SC Regular', 'PingFang SC';
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:14px;
  2507. color:rgba(0, 0, 0, 0.847058823529412);
  2508. text-align:left;
  2509. line-height:22px;
  2510. }
  2511. #u3138_text {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:12px;
  2515. top:5px;
  2516. width:428px;
  2517. word-wrap:break-word;
  2518. }
  2519. #u3139_div {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:448px;
  2525. height:32px;
  2526. background:inherit;
  2527. background-color:rgba(255, 255, 255, 0);
  2528. border:none;
  2529. border-radius:0px;
  2530. -moz-box-shadow:none;
  2531. -webkit-box-shadow:none;
  2532. box-shadow:none;
  2533. font-family:'Microsoft Tai Le';
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:14px;
  2537. color:rgba(0, 0, 0, 0.427450980392157);
  2538. line-height:22px;
  2539. }
  2540. #u3139 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:337px;
  2544. top:251px;
  2545. width:448px;
  2546. height:32px;
  2547. font-family:'Microsoft Tai Le';
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. color:rgba(0, 0, 0, 0.427450980392157);
  2552. line-height:22px;
  2553. }
  2554. #u3139_text {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:448px;
  2560. word-wrap:break-word;
  2561. }
  2562. #u3140 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:0px;
  2568. height:0px;
  2569. }
  2570. #u3141_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:67px;
  2576. height:30px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border:none;
  2580. border-radius:0px;
  2581. -moz-box-shadow:none;
  2582. -webkit-box-shadow:none;
  2583. box-shadow:none;
  2584. font-family:'PingFang SC Regular', 'PingFang SC';
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:14px;
  2588. color:rgba(0, 0, 0, 0.847058823529412);
  2589. line-height:22px;
  2590. }
  2591. #u3141 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:337px;
  2595. top:374px;
  2596. width:67px;
  2597. height:30px;
  2598. font-family:'PingFang SC Regular', 'PingFang SC';
  2599. font-weight:400;
  2600. font-style:normal;
  2601. font-size:14px;
  2602. color:rgba(0, 0, 0, 0.847058823529412);
  2603. line-height:22px;
  2604. }
  2605. #u3141_text {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:59px;
  2611. white-space:nowrap;
  2612. }
  2613. #u3142_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:448px;
  2619. height:32px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 0);
  2622. border:none;
  2623. border-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. font-family:'Microsoft Tai Le';
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:14px;
  2631. color:rgba(0, 0, 0, 0.427450980392157);
  2632. line-height:22px;
  2633. }
  2634. #u3142 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:337px;
  2638. top:476px;
  2639. width:448px;
  2640. height:32px;
  2641. font-family:'Microsoft Tai Le';
  2642. font-weight:400;
  2643. font-style:normal;
  2644. font-size:14px;
  2645. color:rgba(0, 0, 0, 0.427450980392157);
  2646. line-height:22px;
  2647. }
  2648. #u3142_text {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:448px;
  2654. word-wrap:break-word;
  2655. }
  2656. #u3143 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:0px;
  2662. height:0px;
  2663. }
  2664. #u3144_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:448px;
  2670. height:72px;
  2671. background:inherit;
  2672. background-color:rgba(255, 255, 255, 1);
  2673. box-sizing:border-box;
  2674. border-width:1px;
  2675. border-style:solid;
  2676. border-color:rgba(217, 217, 217, 1);
  2677. border-radius:4px;
  2678. -moz-box-shadow:none;
  2679. -webkit-box-shadow:none;
  2680. box-shadow:none;
  2681. font-family:'PingFang SC Regular', 'PingFang SC';
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:14px;
  2685. color:#CCCCCC;
  2686. text-align:left;
  2687. line-height:22px;
  2688. }
  2689. #u3144 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:337px;
  2693. top:404px;
  2694. width:448px;
  2695. height:72px;
  2696. font-family:'PingFang SC Regular', 'PingFang SC';
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:14px;
  2700. color:#CCCCCC;
  2701. text-align:left;
  2702. line-height:22px;
  2703. }
  2704. #u3144_text {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:12px;
  2708. top:5px;
  2709. width:436px;
  2710. word-wrap:break-word;
  2711. }
  2712. #u3145_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:14px;
  2718. height:5px;
  2719. }
  2720. #u3145 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:769px;
  2724. top:465px;
  2725. width:14px;
  2726. height:5px;
  2727. -webkit-transform:rotate(315deg);
  2728. -moz-transform:rotate(315deg);
  2729. -ms-transform:rotate(315deg);
  2730. transform:rotate(315deg);
  2731. font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
  2732. font-weight:400;
  2733. font-style:normal;
  2734. }
  2735. #u3145_text {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:0px;
  2741. visibility:hidden;
  2742. word-wrap:break-word;
  2743. }
  2744. #u3146 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:0px;
  2750. height:0px;
  2751. }
  2752. #u3147_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:67px;
  2758. height:30px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 0);
  2761. border:none;
  2762. border-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. font-family:'PingFang SC Regular', 'PingFang SC';
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:14px;
  2770. color:rgba(0, 0, 0, 0.847058823529412);
  2771. line-height:22px;
  2772. }
  2773. #u3147 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:337px;
  2777. top:508px;
  2778. width:67px;
  2779. height:30px;
  2780. font-family:'PingFang SC Regular', 'PingFang SC';
  2781. font-weight:400;
  2782. font-style:normal;
  2783. font-size:14px;
  2784. color:rgba(0, 0, 0, 0.847058823529412);
  2785. line-height:22px;
  2786. }
  2787. #u3147_text {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:59px;
  2793. white-space:nowrap;
  2794. }
  2795. #u3148 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:0px;
  2801. height:0px;
  2802. }
  2803. #u3149_div {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:220px;
  2809. height:32px;
  2810. background:inherit;
  2811. background-color:rgba(255, 255, 255, 1);
  2812. box-sizing:border-box;
  2813. border-width:1px;
  2814. border-style:solid;
  2815. border-color:rgba(217, 217, 217, 1);
  2816. border-radius:4px;
  2817. -moz-box-shadow:none;
  2818. -webkit-box-shadow:none;
  2819. box-shadow:none;
  2820. font-family:'PingFang SC Regular', 'PingFang SC';
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:14px;
  2824. color:rgba(0, 0, 0, 0.847058823529412);
  2825. text-align:left;
  2826. line-height:22px;
  2827. }
  2828. #u3149 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:337px;
  2832. top:538px;
  2833. width:220px;
  2834. height:32px;
  2835. font-family:'PingFang SC Regular', 'PingFang SC';
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:14px;
  2839. color:rgba(0, 0, 0, 0.847058823529412);
  2840. text-align:left;
  2841. line-height:22px;
  2842. }
  2843. #u3149_text {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:12px;
  2847. top:5px;
  2848. width:200px;
  2849. word-wrap:break-word;
  2850. }
  2851. #u3150 {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:0px;
  2857. height:0px;
  2858. }
  2859. #u3151_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:14px;
  2865. height:12px;
  2866. }
  2867. #u3151 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:532px;
  2871. top:548px;
  2872. width:14px;
  2873. height:12px;
  2874. -webkit-transform:rotate(90deg);
  2875. -moz-transform:rotate(90deg);
  2876. -ms-transform:rotate(90deg);
  2877. transform:rotate(90deg);
  2878. opacity:0.449999988079071;
  2879. font-family:'Microsoft Tai Le';
  2880. font-weight:400;
  2881. font-style:normal;
  2882. text-align:left;
  2883. }
  2884. #u3151_text {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:0px;
  2890. visibility:hidden;
  2891. word-wrap:break-word;
  2892. }
  2893. #u3152_div {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:12px;
  2899. height:12px;
  2900. background:inherit;
  2901. background-color:rgba(255, 51, 153, 1);
  2902. border:none;
  2903. border-radius:0px;
  2904. -moz-box-shadow:none;
  2905. -webkit-box-shadow:none;
  2906. box-shadow:none;
  2907. font-size:8px;
  2908. color:#FFFFFF;
  2909. }
  2910. #u3152 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:545px;
  2914. top:548px;
  2915. width:12px;
  2916. height:12px;
  2917. opacity:0;
  2918. font-size:8px;
  2919. color:#FFFFFF;
  2920. }
  2921. #u3152_text {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:2px;
  2925. top:1px;
  2926. width:8px;
  2927. word-wrap:break-word;
  2928. }
  2929. #u3153_div {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:220px;
  2935. height:32px;
  2936. background:inherit;
  2937. background-color:rgba(255, 255, 255, 0);
  2938. border:none;
  2939. border-radius:0px;
  2940. -moz-box-shadow:none;
  2941. -webkit-box-shadow:none;
  2942. box-shadow:none;
  2943. font-family:'Microsoft Tai Le';
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:14px;
  2947. color:rgba(0, 0, 0, 0.427450980392157);
  2948. line-height:22px;
  2949. }
  2950. #u3153 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:337px;
  2954. top:570px;
  2955. width:220px;
  2956. height:32px;
  2957. font-family:'Microsoft Tai Le';
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:14px;
  2961. color:rgba(0, 0, 0, 0.427450980392157);
  2962. line-height:22px;
  2963. }
  2964. #u3153_text {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:220px;
  2970. word-wrap:break-word;
  2971. }
  2972. #u3154 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:0px;
  2978. height:0px;
  2979. }
  2980. #u3155_div {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:67px;
  2986. height:30px;
  2987. background:inherit;
  2988. background-color:rgba(255, 255, 255, 0);
  2989. border:none;
  2990. border-radius:0px;
  2991. -moz-box-shadow:none;
  2992. -webkit-box-shadow:none;
  2993. box-shadow:none;
  2994. font-family:'PingFang SC Regular', 'PingFang SC';
  2995. font-weight:400;
  2996. font-style:normal;
  2997. font-size:14px;
  2998. color:rgba(0, 0, 0, 0.847058823529412);
  2999. line-height:22px;
  3000. }
  3001. #u3155 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:337px;
  3005. top:602px;
  3006. width:67px;
  3007. height:30px;
  3008. font-family:'PingFang SC Regular', 'PingFang SC';
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:14px;
  3012. color:rgba(0, 0, 0, 0.847058823529412);
  3013. line-height:22px;
  3014. }
  3015. #u3155_text {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:59px;
  3021. white-space:nowrap;
  3022. }
  3023. #u3156 {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:0px;
  3029. height:0px;
  3030. }
  3031. #u3157_div {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:220px;
  3037. height:32px;
  3038. background:inherit;
  3039. background-color:rgba(255, 255, 255, 1);
  3040. box-sizing:border-box;
  3041. border-width:1px;
  3042. border-style:solid;
  3043. border-color:rgba(217, 217, 217, 1);
  3044. border-radius:4px;
  3045. -moz-box-shadow:none;
  3046. -webkit-box-shadow:none;
  3047. box-shadow:none;
  3048. font-family:'PingFang SC Regular', 'PingFang SC';
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:14px;
  3052. color:rgba(0, 0, 0, 0.847058823529412);
  3053. text-align:left;
  3054. line-height:22px;
  3055. }
  3056. #u3157 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:337px;
  3060. top:632px;
  3061. width:220px;
  3062. height:32px;
  3063. font-family:'PingFang SC Regular', 'PingFang SC';
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:14px;
  3067. color:rgba(0, 0, 0, 0.847058823529412);
  3068. text-align:left;
  3069. line-height:22px;
  3070. }
  3071. #u3157_text {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:12px;
  3075. top:5px;
  3076. width:200px;
  3077. word-wrap:break-word;
  3078. }
  3079. #u3158 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:0px;
  3085. height:0px;
  3086. }
  3087. #u3159_img {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:14px;
  3093. height:12px;
  3094. }
  3095. #u3159 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:532px;
  3099. top:642px;
  3100. width:14px;
  3101. height:12px;
  3102. -webkit-transform:rotate(90deg);
  3103. -moz-transform:rotate(90deg);
  3104. -ms-transform:rotate(90deg);
  3105. transform:rotate(90deg);
  3106. opacity:0.449999988079071;
  3107. font-family:'Microsoft Tai Le';
  3108. font-weight:400;
  3109. font-style:normal;
  3110. text-align:left;
  3111. }
  3112. #u3159_text {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:0px;
  3118. visibility:hidden;
  3119. word-wrap:break-word;
  3120. }
  3121. #u3160_div {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:12px;
  3127. height:12px;
  3128. background:inherit;
  3129. background-color:rgba(255, 51, 153, 1);
  3130. border:none;
  3131. border-radius:0px;
  3132. -moz-box-shadow:none;
  3133. -webkit-box-shadow:none;
  3134. box-shadow:none;
  3135. font-size:8px;
  3136. color:#FFFFFF;
  3137. }
  3138. #u3160 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:545px;
  3142. top:642px;
  3143. width:12px;
  3144. height:12px;
  3145. opacity:0;
  3146. font-size:8px;
  3147. color:#FFFFFF;
  3148. }
  3149. #u3160_text {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:2px;
  3153. top:1px;
  3154. width:8px;
  3155. word-wrap:break-word;
  3156. }
  3157. #u3161_div {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:448px;
  3163. height:32px;
  3164. background:inherit;
  3165. background-color:rgba(255, 255, 255, 0);
  3166. border:none;
  3167. border-radius:0px;
  3168. -moz-box-shadow:none;
  3169. -webkit-box-shadow:none;
  3170. box-shadow:none;
  3171. font-family:'Microsoft Tai Le';
  3172. font-weight:400;
  3173. font-style:normal;
  3174. font-size:14px;
  3175. color:rgba(0, 0, 0, 0.427450980392157);
  3176. line-height:22px;
  3177. }
  3178. #u3161 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:337px;
  3182. top:664px;
  3183. width:448px;
  3184. height:32px;
  3185. font-family:'Microsoft Tai Le';
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:14px;
  3189. color:rgba(0, 0, 0, 0.427450980392157);
  3190. line-height:22px;
  3191. }
  3192. #u3161_text {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:448px;
  3198. word-wrap:break-word;
  3199. }
  3200. #u3162 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:0px;
  3206. height:0px;
  3207. }
  3208. #u3163_div {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:220px;
  3214. height:32px;
  3215. background:inherit;
  3216. background-color:rgba(255, 255, 255, 1);
  3217. box-sizing:border-box;
  3218. border-width:1px;
  3219. border-style:solid;
  3220. border-color:rgba(217, 217, 217, 1);
  3221. border-radius:4px;
  3222. -moz-box-shadow:none;
  3223. -webkit-box-shadow:none;
  3224. box-shadow:none;
  3225. font-family:'PingFang SC Regular', 'PingFang SC';
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:14px;
  3229. color:rgba(0, 0, 0, 0.847058823529412);
  3230. text-align:left;
  3231. line-height:22px;
  3232. }
  3233. #u3163 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:565px;
  3237. top:632px;
  3238. width:220px;
  3239. height:32px;
  3240. font-family:'PingFang SC Regular', 'PingFang SC';
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:14px;
  3244. color:rgba(0, 0, 0, 0.847058823529412);
  3245. text-align:left;
  3246. line-height:22px;
  3247. }
  3248. #u3163_text {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:12px;
  3252. top:5px;
  3253. width:200px;
  3254. word-wrap:break-word;
  3255. }
  3256. #u3164 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:0px;
  3262. height:0px;
  3263. }
  3264. #u3165_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:14px;
  3270. height:12px;
  3271. }
  3272. #u3165 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:760px;
  3276. top:642px;
  3277. width:14px;
  3278. height:12px;
  3279. -webkit-transform:rotate(90deg);
  3280. -moz-transform:rotate(90deg);
  3281. -ms-transform:rotate(90deg);
  3282. transform:rotate(90deg);
  3283. opacity:0.449999988079071;
  3284. font-family:'Microsoft Tai Le';
  3285. font-weight:400;
  3286. font-style:normal;
  3287. text-align:left;
  3288. }
  3289. #u3165_text {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:0px;
  3295. visibility:hidden;
  3296. word-wrap:break-word;
  3297. }
  3298. #u3166_div {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:12px;
  3304. height:12px;
  3305. background:inherit;
  3306. background-color:rgba(255, 51, 153, 1);
  3307. border:none;
  3308. border-radius:0px;
  3309. -moz-box-shadow:none;
  3310. -webkit-box-shadow:none;
  3311. box-shadow:none;
  3312. font-size:8px;
  3313. color:#FFFFFF;
  3314. }
  3315. #u3166 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:773px;
  3319. top:642px;
  3320. width:12px;
  3321. height:12px;
  3322. opacity:0;
  3323. font-size:8px;
  3324. color:#FFFFFF;
  3325. }
  3326. #u3166_text {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:2px;
  3330. top:1px;
  3331. width:8px;
  3332. word-wrap:break-word;
  3333. }
  3334. #u3167 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:0px;
  3340. height:0px;
  3341. }
  3342. #u3168_div {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:67px;
  3348. height:30px;
  3349. background:inherit;
  3350. background-color:rgba(255, 255, 255, 0);
  3351. border:none;
  3352. border-radius:0px;
  3353. -moz-box-shadow:none;
  3354. -webkit-box-shadow:none;
  3355. box-shadow:none;
  3356. font-family:'PingFang SC Regular', 'PingFang SC';
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:14px;
  3360. color:rgba(0, 0, 0, 0.847058823529412);
  3361. line-height:22px;
  3362. }
  3363. #u3168 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:337px;
  3367. top:696px;
  3368. width:67px;
  3369. height:30px;
  3370. font-family:'PingFang SC Regular', 'PingFang SC';
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:14px;
  3374. color:rgba(0, 0, 0, 0.847058823529412);
  3375. line-height:22px;
  3376. }
  3377. #u3168_text {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:59px;
  3383. white-space:nowrap;
  3384. }
  3385. #u3169 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:0px;
  3391. height:0px;
  3392. }
  3393. #u3170_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:448px;
  3399. height:32px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 1);
  3402. box-sizing:border-box;
  3403. border-width:1px;
  3404. border-style:solid;
  3405. border-color:rgba(217, 217, 217, 1);
  3406. border-radius:4px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. font-family:'PingFang SC Regular', 'PingFang SC';
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:14px;
  3414. color:rgba(0, 0, 0, 0.847058823529412);
  3415. text-align:left;
  3416. line-height:22px;
  3417. }
  3418. #u3170 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:337px;
  3422. top:726px;
  3423. width:448px;
  3424. height:32px;
  3425. font-family:'PingFang SC Regular', 'PingFang SC';
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:14px;
  3429. color:rgba(0, 0, 0, 0.847058823529412);
  3430. text-align:left;
  3431. line-height:22px;
  3432. }
  3433. #u3170_text {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:12px;
  3437. top:5px;
  3438. width:428px;
  3439. word-wrap:break-word;
  3440. }
  3441. #u3171_div {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:448px;
  3447. height:32px;
  3448. background:inherit;
  3449. background-color:rgba(255, 255, 255, 0);
  3450. border:none;
  3451. border-radius:0px;
  3452. -moz-box-shadow:none;
  3453. -webkit-box-shadow:none;
  3454. box-shadow:none;
  3455. font-family:'Microsoft Tai Le';
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:14px;
  3459. color:rgba(0, 0, 0, 0.427450980392157);
  3460. line-height:22px;
  3461. }
  3462. #u3171 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:337px;
  3466. top:758px;
  3467. width:448px;
  3468. height:32px;
  3469. font-family:'Microsoft Tai Le';
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:14px;
  3473. color:rgba(0, 0, 0, 0.427450980392157);
  3474. line-height:22px;
  3475. }
  3476. #u3171_text {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:448px;
  3482. word-wrap:break-word;
  3483. }
  3484. #u3172 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:0px;
  3490. height:0px;
  3491. }
  3492. #u3173_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:67px;
  3498. height:30px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 0);
  3501. border:none;
  3502. border-radius:0px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. font-family:'PingFang SC Regular', 'PingFang SC';
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:14px;
  3510. color:rgba(0, 0, 0, 0.847058823529412);
  3511. line-height:22px;
  3512. }
  3513. #u3173 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:337px;
  3517. top:790px;
  3518. width:67px;
  3519. height:30px;
  3520. font-family:'PingFang SC Regular', 'PingFang SC';
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:14px;
  3524. color:rgba(0, 0, 0, 0.847058823529412);
  3525. line-height:22px;
  3526. }
  3527. #u3173_text {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:59px;
  3533. white-space:nowrap;
  3534. }
  3535. #u3174 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:0px;
  3541. height:0px;
  3542. }
  3543. #u3175_div {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:128px;
  3549. height:32px;
  3550. background:inherit;
  3551. background-color:rgba(255, 255, 255, 1);
  3552. box-sizing:border-box;
  3553. border-width:1px;
  3554. border-style:solid;
  3555. border-color:rgba(217, 217, 217, 1);
  3556. border-radius:4px;
  3557. -moz-box-shadow:none;
  3558. -webkit-box-shadow:none;
  3559. box-shadow:none;
  3560. font-family:'PingFang SC Regular', 'PingFang SC';
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:14px;
  3564. color:rgba(0, 0, 0, 0.847058823529412);
  3565. text-align:left;
  3566. line-height:22px;
  3567. }
  3568. #u3175 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:337px;
  3572. top:820px;
  3573. width:128px;
  3574. height:32px;
  3575. font-family:'PingFang SC Regular', 'PingFang SC';
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. color:rgba(0, 0, 0, 0.847058823529412);
  3580. text-align:left;
  3581. line-height:22px;
  3582. }
  3583. #u3175_text {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:12px;
  3587. top:5px;
  3588. width:108px;
  3589. word-wrap:break-word;
  3590. }
  3591. #u3176_div {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:448px;
  3597. height:32px;
  3598. background:inherit;
  3599. background-color:rgba(255, 255, 255, 0);
  3600. border:none;
  3601. border-radius:0px;
  3602. -moz-box-shadow:none;
  3603. -webkit-box-shadow:none;
  3604. box-shadow:none;
  3605. font-family:'Microsoft Tai Le';
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:14px;
  3609. color:rgba(0, 0, 0, 0.427450980392157);
  3610. line-height:22px;
  3611. }
  3612. #u3176 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:337px;
  3616. top:852px;
  3617. width:448px;
  3618. height:32px;
  3619. font-family:'Microsoft Tai Le';
  3620. font-weight:400;
  3621. font-style:normal;
  3622. font-size:14px;
  3623. color:rgba(0, 0, 0, 0.427450980392157);
  3624. line-height:22px;
  3625. }
  3626. #u3176_text {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:448px;
  3632. word-wrap:break-word;
  3633. }
  3634. #u3177 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:0px;
  3640. height:0px;
  3641. }
  3642. #u3178_div {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:312px;
  3648. height:32px;
  3649. background:inherit;
  3650. background-color:rgba(255, 255, 255, 1);
  3651. box-sizing:border-box;
  3652. border-width:1px;
  3653. border-style:solid;
  3654. border-color:rgba(217, 217, 217, 1);
  3655. border-radius:4px;
  3656. -moz-box-shadow:none;
  3657. -webkit-box-shadow:none;
  3658. box-shadow:none;
  3659. font-family:'PingFang SC Regular', 'PingFang SC';
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:14px;
  3663. color:rgba(0, 0, 0, 0.847058823529412);
  3664. text-align:left;
  3665. line-height:22px;
  3666. }
  3667. #u3178 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:473px;
  3671. top:820px;
  3672. width:312px;
  3673. height:32px;
  3674. font-family:'PingFang SC Regular', 'PingFang SC';
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:14px;
  3678. color:rgba(0, 0, 0, 0.847058823529412);
  3679. text-align:left;
  3680. line-height:22px;
  3681. }
  3682. #u3178_text {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:12px;
  3686. top:5px;
  3687. width:292px;
  3688. word-wrap:break-word;
  3689. }
  3690. #u3179_div {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:91px;
  3696. height:32px;
  3697. background:inherit;
  3698. background-color:rgba(24, 144, 255, 1);
  3699. border:none;
  3700. border-radius:4px;
  3701. -moz-box-shadow:none;
  3702. -webkit-box-shadow:none;
  3703. box-shadow:none;
  3704. font-family:'PingFang SC Regular', 'PingFang SC';
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:14px;
  3708. color:#FFFFFF;
  3709. text-align:left;
  3710. line-height:22px;
  3711. }
  3712. #u3179 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:337px;
  3716. top:884px;
  3717. width:91px;
  3718. height:32px;
  3719. font-family:'PingFang SC Regular', 'PingFang SC';
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:14px;
  3723. color:#FFFFFF;
  3724. text-align:left;
  3725. line-height:22px;
  3726. }
  3727. #u3179_text {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:16px;
  3731. top:5px;
  3732. width:59px;
  3733. white-space:nowrap;
  3734. }
  3735. #u3180 {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:0px;
  3741. height:0px;
  3742. }
  3743. #u3181_img {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:144px;
  3749. height:144px;
  3750. }
  3751. #u3181 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:892px;
  3755. top:209px;
  3756. width:144px;
  3757. height:144px;
  3758. }
  3759. #u3181_text {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:0px;
  3765. visibility:hidden;
  3766. word-wrap:break-word;
  3767. }
  3768. #u3182 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:0px;
  3774. height:0px;
  3775. }
  3776. #u3183_div {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:143px;
  3782. height:32px;
  3783. background:inherit;
  3784. background-color:rgba(255, 255, 255, 1);
  3785. box-sizing:border-box;
  3786. border-width:1px;
  3787. border-style:solid;
  3788. border-color:rgba(217, 217, 217, 1);
  3789. border-radius:4px;
  3790. -moz-box-shadow:none;
  3791. -webkit-box-shadow:none;
  3792. box-shadow:none;
  3793. font-family:'PingFang SC Regular', 'PingFang SC';
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:14px;
  3797. color:rgba(0, 0, 0, 0.647058823529412);
  3798. text-align:left;
  3799. line-height:22px;
  3800. }
  3801. #u3183 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:908px;
  3805. top:377px;
  3806. width:143px;
  3807. height:32px;
  3808. font-family:'PingFang SC Regular', 'PingFang SC';
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:14px;
  3812. color:rgba(0, 0, 0, 0.647058823529412);
  3813. text-align:left;
  3814. line-height:22px;
  3815. }
  3816. #u3183_text {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:40px;
  3820. top:5px;
  3821. width:87px;
  3822. white-space:nowrap;
  3823. }
  3824. #u3184_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:16px;
  3830. height:17px;
  3831. }
  3832. #u3184 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:927px;
  3836. top:385px;
  3837. width:16px;
  3838. height:17px;
  3839. font-family:'anticon Regular', 'anticon';
  3840. font-weight:500;
  3841. font-style:normal;
  3842. font-size:49px;
  3843. color:rgba(0, 0, 0, 0.647058823529412);
  3844. }
  3845. #u3184_text {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:0px;
  3851. visibility:hidden;
  3852. word-wrap:break-word;
  3853. }
  3854. #u3185_img {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:175px;
  3860. height:144px;
  3861. }
  3862. #u3185 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:892px;
  3866. top:209px;
  3867. width:175px;
  3868. height:144px;
  3869. }
  3870. #u3185_text {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:0px;
  3876. visibility:hidden;
  3877. word-wrap:break-word;
  3878. }
  3879. #u3186_img {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:1100px;
  3885. height:50px;
  3886. }
  3887. #u3186 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:260px;
  3891. top:57px;
  3892. width:1100px;
  3893. height:50px;
  3894. font-family:'微软雅黑';
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:14px;
  3898. text-align:left;
  3899. }
  3900. #u3186_text {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:20px;
  3904. top:16px;
  3905. width:1078px;
  3906. word-wrap:break-word;
  3907. }
  3908. #u3187_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:1157px;
  3914. height:61px;
  3915. }
  3916. #u3187 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:240px;
  3920. top:0px;
  3921. width:1157px;
  3922. height:61px;
  3923. }
  3924. #u3187_text {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:2px;
  3928. top:23px;
  3929. width:1153px;
  3930. word-wrap:break-word;
  3931. }
  3932. #u3188_img {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:0px;
  3936. top:0px;
  3937. width:61px;
  3938. height:61px;
  3939. }
  3940. #u3188 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:1241px;
  3944. top:-3px;
  3945. width:61px;
  3946. height:61px;
  3947. }
  3948. #u3188_img.mouseOver {
  3949. }
  3950. #u3188.mouseOver {
  3951. }
  3952. #u3188_text {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:2px;
  3956. top:23px;
  3957. width:57px;
  3958. word-wrap:break-word;
  3959. }
  3960. #u3189_div {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:30px;
  3966. height:30px;
  3967. background:inherit;
  3968. background-color:rgba(255, 255, 255, 0);
  3969. border:none;
  3970. border-radius:50px;
  3971. -moz-box-shadow:none;
  3972. -webkit-box-shadow:none;
  3973. box-shadow:none;
  3974. font-family:'FontAwesome';
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:28px;
  3978. color:#CCCCCC;
  3979. line-height:20px;
  3980. }
  3981. #u3189 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:1042px;
  3985. top:16px;
  3986. width:30px;
  3987. height:30px;
  3988. font-family:'FontAwesome';
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:28px;
  3992. color:#CCCCCC;
  3993. line-height:20px;
  3994. }
  3995. #u3189_text {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:5px;
  4000. width:30px;
  4001. word-wrap:break-word;
  4002. }