styles.css 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1659px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u956_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1659px;
  21. height:999px;
  22. }
  23. #u956 {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:1px;
  28. width:1659px;
  29. height:999px;
  30. }
  31. #u956_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. #u957_img {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:1268px;
  46. height:879px;
  47. }
  48. #u957 {
  49. border-width:0px;
  50. position:absolute;
  51. left:228px;
  52. top:86px;
  53. width:1268px;
  54. height:879px;
  55. }
  56. #u957_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. #u958_img {
  66. border-width:0px;
  67. position:absolute;
  68. left:0px;
  69. top:0px;
  70. width:210px;
  71. height:931px;
  72. }
  73. #u958 {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:69px;
  78. width:210px;
  79. height:931px;
  80. }
  81. #u958_text {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:0px;
  87. visibility:hidden;
  88. word-wrap:break-word;
  89. }
  90. #u959 {
  91. position:fixed;
  92. left:0px;
  93. top:0px;
  94. width:1659px;
  95. height:72px;
  96. overflow:hidden;
  97. }
  98. #u959_state0 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:1659px;
  104. height:72px;
  105. -ms-overflow-x:hidden;
  106. overflow-x:hidden;
  107. -ms-overflow-y:hidden;
  108. overflow-y:hidden;
  109. background-image:none;
  110. }
  111. #u959_state0_content {
  112. border-width:0px;
  113. position:absolute;
  114. left:0px;
  115. top:0px;
  116. width:1px;
  117. height:1px;
  118. }
  119. #u960_img {
  120. border-width:0px;
  121. position:absolute;
  122. left:0px;
  123. top:0px;
  124. width:1830px;
  125. height:72px;
  126. }
  127. #u960 {
  128. border-width:0px;
  129. position:absolute;
  130. left:0px;
  131. top:0px;
  132. width:1830px;
  133. height:72px;
  134. }
  135. #u960_text {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. visibility:hidden;
  142. word-wrap:break-word;
  143. }
  144. #u961_img {
  145. border-width:0px;
  146. position:absolute;
  147. left:0px;
  148. top:0px;
  149. width:64px;
  150. height:64px;
  151. }
  152. #u961 {
  153. border-width:0px;
  154. position:absolute;
  155. left:70px;
  156. top:3px;
  157. width:64px;
  158. height:64px;
  159. }
  160. #u961_text {
  161. border-width:0px;
  162. position:absolute;
  163. left:0px;
  164. top:0px;
  165. width:0px;
  166. visibility:hidden;
  167. word-wrap:break-word;
  168. }
  169. #u962 {
  170. position:fixed;
  171. left:279px;
  172. top:24px;
  173. width:643px;
  174. height:24px;
  175. overflow:hidden;
  176. }
  177. #u962_state0 {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:643px;
  183. height:24px;
  184. -ms-overflow-x:hidden;
  185. overflow-x:hidden;
  186. -ms-overflow-y:hidden;
  187. overflow-y:hidden;
  188. background-image:none;
  189. }
  190. #u962_state0_content {
  191. border-width:0px;
  192. position:absolute;
  193. left:0px;
  194. top:0px;
  195. width:1px;
  196. height:1px;
  197. }
  198. #u963_img {
  199. border-width:0px;
  200. position:absolute;
  201. left:0px;
  202. top:0px;
  203. width:153px;
  204. height:24px;
  205. }
  206. #u963 {
  207. border-width:0px;
  208. position:absolute;
  209. left:0px;
  210. top:0px;
  211. width:153px;
  212. height:24px;
  213. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  214. font-weight:700;
  215. font-style:normal;
  216. font-size:14px;
  217. color:#FFFFFF;
  218. }
  219. #u963_text {
  220. border-width:0px;
  221. position:absolute;
  222. left:2px;
  223. top:3px;
  224. width:149px;
  225. word-wrap:break-word;
  226. }
  227. #u964_img {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:153px;
  233. height:24px;
  234. }
  235. #u964 {
  236. border-width:0px;
  237. position:absolute;
  238. left:245px;
  239. top:0px;
  240. width:153px;
  241. height:24px;
  242. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  243. font-weight:700;
  244. font-style:normal;
  245. font-size:14px;
  246. color:#FFFFFF;
  247. }
  248. #u964_text {
  249. border-width:0px;
  250. position:absolute;
  251. left:2px;
  252. top:3px;
  253. width:149px;
  254. word-wrap:break-word;
  255. }
  256. #u965_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:153px;
  262. height:24px;
  263. }
  264. #u965 {
  265. border-width:0px;
  266. position:absolute;
  267. left:490px;
  268. top:0px;
  269. width:153px;
  270. height:24px;
  271. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  272. font-weight:700;
  273. font-style:normal;
  274. font-size:14px;
  275. color:#FFFFFF;
  276. }
  277. #u965_text {
  278. border-width:0px;
  279. position:absolute;
  280. left:2px;
  281. top:3px;
  282. width:149px;
  283. word-wrap:break-word;
  284. }
  285. #u966 {
  286. border-width:0px;
  287. position:absolute;
  288. left:0px;
  289. top:0px;
  290. width:0px;
  291. height:0px;
  292. }
  293. #u967_img {
  294. border-width:0px;
  295. position:absolute;
  296. left:0px;
  297. top:0px;
  298. width:654px;
  299. height:148px;
  300. }
  301. #u967 {
  302. border-width:0px;
  303. position:absolute;
  304. left:279px;
  305. top:75px;
  306. width:654px;
  307. height:148px;
  308. }
  309. #u967_text {
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:0px;
  315. visibility:hidden;
  316. word-wrap:break-word;
  317. }
  318. #u968_img {
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:112px;
  324. height:37px;
  325. }
  326. #u968 {
  327. border-width:0px;
  328. position:absolute;
  329. left:296px;
  330. top:76px;
  331. width:112px;
  332. height:37px;
  333. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  334. font-weight:700;
  335. font-style:normal;
  336. color:#FFFFFF;
  337. }
  338. #u968_img.mouseOver {
  339. }
  340. #u968.mouseOver {
  341. }
  342. #u968_text {
  343. border-width:0px;
  344. position:absolute;
  345. left:2px;
  346. top:11px;
  347. width:108px;
  348. word-wrap:break-word;
  349. }
  350. #u969_img {
  351. border-width:0px;
  352. position:absolute;
  353. left:0px;
  354. top:0px;
  355. width:112px;
  356. height:37px;
  357. }
  358. #u969 {
  359. border-width:0px;
  360. position:absolute;
  361. left:465px;
  362. top:76px;
  363. width:112px;
  364. height:37px;
  365. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  366. font-weight:700;
  367. font-style:normal;
  368. color:#FFFFFF;
  369. }
  370. #u969_img.mouseOver {
  371. }
  372. #u969.mouseOver {
  373. }
  374. #u969_text {
  375. border-width:0px;
  376. position:absolute;
  377. left:2px;
  378. top:11px;
  379. width:108px;
  380. word-wrap:break-word;
  381. }
  382. #u970_img {
  383. border-width:0px;
  384. position:absolute;
  385. left:0px;
  386. top:0px;
  387. width:112px;
  388. height:37px;
  389. }
  390. #u970 {
  391. border-width:0px;
  392. position:absolute;
  393. left:802px;
  394. top:76px;
  395. width:112px;
  396. height:37px;
  397. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  398. font-weight:700;
  399. font-style:normal;
  400. color:#FFFFFF;
  401. }
  402. #u970_img.mouseOver {
  403. }
  404. #u970.mouseOver {
  405. }
  406. #u970_text {
  407. border-width:0px;
  408. position:absolute;
  409. left:2px;
  410. top:11px;
  411. width:108px;
  412. word-wrap:break-word;
  413. }
  414. #u971_img {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:112px;
  420. height:37px;
  421. }
  422. #u971 {
  423. border-width:0px;
  424. position:absolute;
  425. left:633px;
  426. top:76px;
  427. width:112px;
  428. height:37px;
  429. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  430. font-weight:700;
  431. font-style:normal;
  432. color:#FFFFFF;
  433. }
  434. #u971_img.mouseOver {
  435. }
  436. #u971.mouseOver {
  437. }
  438. #u971_text {
  439. border-width:0px;
  440. position:absolute;
  441. left:2px;
  442. top:11px;
  443. width:108px;
  444. word-wrap:break-word;
  445. }
  446. #u972_img {
  447. border-width:0px;
  448. position:absolute;
  449. left:0px;
  450. top:0px;
  451. width:112px;
  452. height:37px;
  453. }
  454. #u972 {
  455. border-width:0px;
  456. position:absolute;
  457. left:296px;
  458. top:145px;
  459. width:112px;
  460. height:37px;
  461. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  462. font-weight:700;
  463. font-style:normal;
  464. color:#FFFFFF;
  465. }
  466. #u972_img.mouseOver {
  467. }
  468. #u972.mouseOver {
  469. }
  470. #u972_text {
  471. border-width:0px;
  472. position:absolute;
  473. left:2px;
  474. top:11px;
  475. width:108px;
  476. word-wrap:break-word;
  477. }
  478. #u973_img {
  479. border-width:0px;
  480. position:absolute;
  481. left:0px;
  482. top:0px;
  483. width:112px;
  484. height:37px;
  485. }
  486. #u973 {
  487. border-width:0px;
  488. position:absolute;
  489. left:465px;
  490. top:145px;
  491. width:112px;
  492. height:37px;
  493. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  494. font-weight:700;
  495. font-style:normal;
  496. color:#FFFFFF;
  497. }
  498. #u973_img.mouseOver {
  499. }
  500. #u973.mouseOver {
  501. }
  502. #u973_text {
  503. border-width:0px;
  504. position:absolute;
  505. left:2px;
  506. top:11px;
  507. width:108px;
  508. word-wrap:break-word;
  509. }
  510. #u974_img {
  511. border-width:0px;
  512. position:absolute;
  513. left:0px;
  514. top:0px;
  515. width:112px;
  516. height:37px;
  517. }
  518. #u974 {
  519. border-width:0px;
  520. position:absolute;
  521. left:633px;
  522. top:145px;
  523. width:112px;
  524. height:37px;
  525. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  526. font-weight:700;
  527. font-style:normal;
  528. color:#FFFFFF;
  529. }
  530. #u974_img.mouseOver {
  531. }
  532. #u974.mouseOver {
  533. }
  534. #u974_text {
  535. border-width:0px;
  536. position:absolute;
  537. left:2px;
  538. top:11px;
  539. width:108px;
  540. word-wrap:break-word;
  541. }
  542. #u975 {
  543. position:fixed;
  544. left:294px;
  545. top:19px;
  546. }
  547. #u975_state0 {
  548. position:relative;
  549. left:0px;
  550. top:0px;
  551. width:614px;
  552. height:56px;
  553. background-image:none;
  554. }
  555. #u975_state0_content {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:1px;
  561. height:1px;
  562. }
  563. #u976_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:-2px;
  567. top:-2px;
  568. width:128px;
  569. height:61px;
  570. }
  571. #u976 {
  572. border-width:0px;
  573. position:absolute;
  574. left:0px;
  575. top:0px;
  576. width:123px;
  577. height:56px;
  578. }
  579. #u976_img.mouseOver {
  580. }
  581. #u976.mouseOver {
  582. }
  583. #u976_text {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:0px;
  589. visibility:hidden;
  590. word-wrap:break-word;
  591. }
  592. #u977_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:-2px;
  596. top:-2px;
  597. width:128px;
  598. height:61px;
  599. }
  600. #u977 {
  601. border-width:0px;
  602. position:absolute;
  603. left:244px;
  604. top:0px;
  605. width:123px;
  606. height:56px;
  607. }
  608. #u977_img.mouseOver {
  609. }
  610. #u977.mouseOver {
  611. }
  612. #u977_text {
  613. border-width:0px;
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:0px;
  618. visibility:hidden;
  619. word-wrap:break-word;
  620. }
  621. #u978_img {
  622. border-width:0px;
  623. position:absolute;
  624. left:-2px;
  625. top:-2px;
  626. width:128px;
  627. height:61px;
  628. }
  629. #u978 {
  630. border-width:0px;
  631. position:absolute;
  632. left:491px;
  633. top:0px;
  634. width:123px;
  635. height:56px;
  636. }
  637. #u978_img.mouseOver {
  638. }
  639. #u978.mouseOver {
  640. }
  641. #u978_text {
  642. border-width:0px;
  643. position:absolute;
  644. left:0px;
  645. top:0px;
  646. width:0px;
  647. visibility:hidden;
  648. word-wrap:break-word;
  649. }
  650. #u979 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u980_img {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:654px;
  664. height:148px;
  665. }
  666. #u980 {
  667. border-width:0px;
  668. position:absolute;
  669. left:279px;
  670. top:75px;
  671. width:654px;
  672. height:148px;
  673. color:#FFFFFF;
  674. }
  675. #u980_text {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:0px;
  681. visibility:hidden;
  682. word-wrap:break-word;
  683. }
  684. #u981_div {
  685. border-width:0px;
  686. position:absolute;
  687. left:0px;
  688. top:0px;
  689. width:112px;
  690. height:37px;
  691. background:inherit;
  692. background-color:rgba(255, 255, 255, 0);
  693. border:none;
  694. border-radius:0px;
  695. -moz-box-shadow:none;
  696. -webkit-box-shadow:none;
  697. box-shadow:none;
  698. color:#FFFFFF;
  699. }
  700. #u981 {
  701. border-width:0px;
  702. position:absolute;
  703. left:300px;
  704. top:76px;
  705. width:112px;
  706. height:37px;
  707. color:#FFFFFF;
  708. }
  709. #u981_div.mouseOver {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:112px;
  715. height:37px;
  716. background:inherit;
  717. background-color:rgba(255, 255, 255, 0);
  718. border:none;
  719. border-radius:0px;
  720. -moz-box-shadow:none;
  721. -webkit-box-shadow:none;
  722. box-shadow:none;
  723. color:#FFFFFF;
  724. }
  725. #u981.mouseOver {
  726. }
  727. #u981_text {
  728. border-width:0px;
  729. position:absolute;
  730. left:2px;
  731. top:11px;
  732. width:108px;
  733. word-wrap:break-word;
  734. }
  735. #u982_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:112px;
  741. height:37px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. color:#FFFFFF;
  750. }
  751. #u982 {
  752. border-width:0px;
  753. position:absolute;
  754. left:799px;
  755. top:76px;
  756. width:112px;
  757. height:37px;
  758. color:#FFFFFF;
  759. }
  760. #u982_div.mouseOver {
  761. border-width:0px;
  762. position:absolute;
  763. left:0px;
  764. top:0px;
  765. width:112px;
  766. height:37px;
  767. background:inherit;
  768. background-color:rgba(255, 255, 255, 0);
  769. border:none;
  770. border-radius:0px;
  771. -moz-box-shadow:none;
  772. -webkit-box-shadow:none;
  773. box-shadow:none;
  774. color:#FFFFFF;
  775. }
  776. #u982.mouseOver {
  777. }
  778. #u982_text {
  779. border-width:0px;
  780. position:absolute;
  781. left:2px;
  782. top:11px;
  783. width:108px;
  784. word-wrap:break-word;
  785. }
  786. #u983_div {
  787. border-width:0px;
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:112px;
  792. height:37px;
  793. background:inherit;
  794. background-color:rgba(255, 255, 255, 0);
  795. border:none;
  796. border-radius:0px;
  797. -moz-box-shadow:none;
  798. -webkit-box-shadow:none;
  799. box-shadow:none;
  800. color:#FFFFFF;
  801. }
  802. #u983 {
  803. border-width:0px;
  804. position:absolute;
  805. left:633px;
  806. top:76px;
  807. width:112px;
  808. height:37px;
  809. color:#FFFFFF;
  810. }
  811. #u983_div.mouseOver {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:112px;
  817. height:37px;
  818. background:inherit;
  819. background-color:rgba(255, 255, 255, 0);
  820. border:none;
  821. border-radius:0px;
  822. -moz-box-shadow:none;
  823. -webkit-box-shadow:none;
  824. box-shadow:none;
  825. color:#FFFFFF;
  826. }
  827. #u983.mouseOver {
  828. }
  829. #u983_text {
  830. border-width:0px;
  831. position:absolute;
  832. left:2px;
  833. top:11px;
  834. width:108px;
  835. word-wrap:break-word;
  836. }
  837. #u984_div {
  838. border-width:0px;
  839. position:absolute;
  840. left:0px;
  841. top:0px;
  842. width:112px;
  843. height:37px;
  844. background:inherit;
  845. background-color:rgba(255, 255, 255, 0);
  846. border:none;
  847. border-radius:0px;
  848. -moz-box-shadow:none;
  849. -webkit-box-shadow:none;
  850. box-shadow:none;
  851. color:#FFFFFF;
  852. }
  853. #u984 {
  854. border-width:0px;
  855. position:absolute;
  856. left:466px;
  857. top:76px;
  858. width:112px;
  859. height:37px;
  860. color:#FFFFFF;
  861. }
  862. #u984_div.mouseOver {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:112px;
  868. height:37px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 0);
  871. border:none;
  872. border-radius:0px;
  873. -moz-box-shadow:none;
  874. -webkit-box-shadow:none;
  875. box-shadow:none;
  876. color:#FFFFFF;
  877. }
  878. #u984.mouseOver {
  879. }
  880. #u984_text {
  881. border-width:0px;
  882. position:absolute;
  883. left:2px;
  884. top:11px;
  885. width:108px;
  886. word-wrap:break-word;
  887. }
  888. #u985_div {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:112px;
  894. height:37px;
  895. background:inherit;
  896. background-color:rgba(255, 255, 255, 0);
  897. border:none;
  898. border-radius:0px;
  899. -moz-box-shadow:none;
  900. -webkit-box-shadow:none;
  901. box-shadow:none;
  902. color:#FFFFFF;
  903. }
  904. #u985 {
  905. border-width:0px;
  906. position:absolute;
  907. left:300px;
  908. top:138px;
  909. width:112px;
  910. height:37px;
  911. color:#FFFFFF;
  912. }
  913. #u985_div.mouseOver {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:112px;
  919. height:37px;
  920. background:inherit;
  921. background-color:rgba(255, 255, 255, 0);
  922. border:none;
  923. border-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. color:#FFFFFF;
  928. }
  929. #u985.mouseOver {
  930. }
  931. #u985_text {
  932. border-width:0px;
  933. position:absolute;
  934. left:2px;
  935. top:11px;
  936. width:108px;
  937. word-wrap:break-word;
  938. }
  939. #u986 {
  940. border-width:0px;
  941. position:absolute;
  942. left:0px;
  943. top:0px;
  944. width:0px;
  945. height:0px;
  946. }
  947. #u987_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:654px;
  953. height:148px;
  954. }
  955. #u987 {
  956. border-width:0px;
  957. position:absolute;
  958. left:279px;
  959. top:75px;
  960. width:654px;
  961. height:148px;
  962. color:#FFFFFF;
  963. }
  964. #u987_text {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:0px;
  970. visibility:hidden;
  971. word-wrap:break-word;
  972. }
  973. #u988_div {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:112px;
  979. height:37px;
  980. background:inherit;
  981. background-color:rgba(255, 255, 255, 0);
  982. border:none;
  983. border-radius:0px;
  984. -moz-box-shadow:none;
  985. -webkit-box-shadow:none;
  986. box-shadow:none;
  987. color:#FFFFFF;
  988. }
  989. #u988 {
  990. border-width:0px;
  991. position:absolute;
  992. left:300px;
  993. top:76px;
  994. width:112px;
  995. height:37px;
  996. color:#FFFFFF;
  997. }
  998. #u988_div.mouseOver {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:112px;
  1004. height:37px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. color:#FFFFFF;
  1013. }
  1014. #u988.mouseOver {
  1015. }
  1016. #u988_text {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:2px;
  1020. top:11px;
  1021. width:108px;
  1022. word-wrap:break-word;
  1023. }
  1024. #u989_div {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:112px;
  1030. height:37px;
  1031. background:inherit;
  1032. background-color:rgba(255, 255, 255, 0);
  1033. border:none;
  1034. border-radius:0px;
  1035. -moz-box-shadow:none;
  1036. -webkit-box-shadow:none;
  1037. box-shadow:none;
  1038. color:#FFFFFF;
  1039. }
  1040. #u989 {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:799px;
  1044. top:76px;
  1045. width:112px;
  1046. height:37px;
  1047. color:#FFFFFF;
  1048. }
  1049. #u989_div.mouseOver {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:112px;
  1055. height:37px;
  1056. background:inherit;
  1057. background-color:rgba(255, 255, 255, 0);
  1058. border:none;
  1059. border-radius:0px;
  1060. -moz-box-shadow:none;
  1061. -webkit-box-shadow:none;
  1062. box-shadow:none;
  1063. color:#FFFFFF;
  1064. }
  1065. #u989.mouseOver {
  1066. }
  1067. #u989_text {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:2px;
  1071. top:11px;
  1072. width:108px;
  1073. word-wrap:break-word;
  1074. }
  1075. #u990_div {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:112px;
  1081. height:37px;
  1082. background:inherit;
  1083. background-color:rgba(255, 255, 255, 0);
  1084. border:none;
  1085. border-radius:0px;
  1086. -moz-box-shadow:none;
  1087. -webkit-box-shadow:none;
  1088. box-shadow:none;
  1089. color:#FFFFFF;
  1090. }
  1091. #u990 {
  1092. border-width:0px;
  1093. position:absolute;
  1094. left:633px;
  1095. top:76px;
  1096. width:112px;
  1097. height:37px;
  1098. color:#FFFFFF;
  1099. }
  1100. #u990_div.mouseOver {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:0px;
  1104. top:0px;
  1105. width:112px;
  1106. height:37px;
  1107. background:inherit;
  1108. background-color:rgba(255, 255, 255, 0);
  1109. border:none;
  1110. border-radius:0px;
  1111. -moz-box-shadow:none;
  1112. -webkit-box-shadow:none;
  1113. box-shadow:none;
  1114. color:#FFFFFF;
  1115. }
  1116. #u990.mouseOver {
  1117. }
  1118. #u990_text {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:2px;
  1122. top:11px;
  1123. width:108px;
  1124. word-wrap:break-word;
  1125. }
  1126. #u991_div {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:112px;
  1132. height:37px;
  1133. background:inherit;
  1134. background-color:rgba(255, 255, 255, 0);
  1135. border:none;
  1136. border-radius:0px;
  1137. -moz-box-shadow:none;
  1138. -webkit-box-shadow:none;
  1139. box-shadow:none;
  1140. color:#FFFFFF;
  1141. }
  1142. #u991 {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:466px;
  1146. top:76px;
  1147. width:112px;
  1148. height:37px;
  1149. color:#FFFFFF;
  1150. }
  1151. #u991_div.mouseOver {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:112px;
  1157. height:37px;
  1158. background:inherit;
  1159. background-color:rgba(255, 255, 255, 0);
  1160. border:none;
  1161. border-radius:0px;
  1162. -moz-box-shadow:none;
  1163. -webkit-box-shadow:none;
  1164. box-shadow:none;
  1165. color:#FFFFFF;
  1166. }
  1167. #u991.mouseOver {
  1168. }
  1169. #u991_text {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:2px;
  1173. top:11px;
  1174. width:108px;
  1175. word-wrap:break-word;
  1176. }
  1177. #u992_div {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:112px;
  1183. height:37px;
  1184. background:inherit;
  1185. background-color:rgba(255, 255, 255, 0);
  1186. border:none;
  1187. border-radius:0px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. color:#FFFFFF;
  1192. }
  1193. #u992 {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:300px;
  1197. top:138px;
  1198. width:112px;
  1199. height:37px;
  1200. color:#FFFFFF;
  1201. }
  1202. #u992_div.mouseOver {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:0px;
  1207. width:112px;
  1208. height:37px;
  1209. background:inherit;
  1210. background-color:rgba(255, 255, 255, 0);
  1211. border:none;
  1212. border-radius:0px;
  1213. -moz-box-shadow:none;
  1214. -webkit-box-shadow:none;
  1215. box-shadow:none;
  1216. color:#FFFFFF;
  1217. }
  1218. #u992.mouseOver {
  1219. }
  1220. #u992_text {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:2px;
  1224. top:11px;
  1225. width:108px;
  1226. word-wrap:break-word;
  1227. }
  1228. #u993_img {
  1229. border-width:0px;
  1230. position:absolute;
  1231. left:0px;
  1232. top:0px;
  1233. width:193px;
  1234. height:102px;
  1235. }
  1236. #u993 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:9px;
  1240. top:349px;
  1241. width:193px;
  1242. height:102px;
  1243. }
  1244. #u993_text {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:0px;
  1250. visibility:hidden;
  1251. word-wrap:break-word;
  1252. }
  1253. #u994_img {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:150px;
  1259. height:86px;
  1260. }
  1261. #u994 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:36px;
  1265. top:526px;
  1266. width:150px;
  1267. height:86px;
  1268. font-size:10px;
  1269. color:#FFFFFF;
  1270. text-align:left;
  1271. }
  1272. #u994_text {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:2px;
  1276. top:4px;
  1277. width:146px;
  1278. word-wrap:break-word;
  1279. }
  1280. #u995_div {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:210px;
  1286. height:174px;
  1287. background:inherit;
  1288. background-color:rgba(0, 0, 0, 1);
  1289. border:none;
  1290. border-radius:0px;
  1291. -moz-box-shadow:none;
  1292. -webkit-box-shadow:none;
  1293. box-shadow:none;
  1294. color:#FFFFFF;
  1295. }
  1296. #u995 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:0px;
  1300. top:72px;
  1301. width:210px;
  1302. height:174px;
  1303. color:#FFFFFF;
  1304. }
  1305. #u995_text {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:0px;
  1311. visibility:hidden;
  1312. word-wrap:break-word;
  1313. }
  1314. #u996_div {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:210px;
  1320. height:43px;
  1321. background:inherit;
  1322. background-color:rgba(79, 95, 100, 1);
  1323. border:none;
  1324. border-radius:0px;
  1325. -moz-box-shadow:none;
  1326. -webkit-box-shadow:none;
  1327. box-shadow:none;
  1328. color:#FFFFFF;
  1329. }
  1330. #u996 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:72px;
  1335. width:210px;
  1336. height:43px;
  1337. color:#FFFFFF;
  1338. }
  1339. #u996_text {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:2px;
  1343. top:14px;
  1344. width:206px;
  1345. word-wrap:break-word;
  1346. }
  1347. #u997_div {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:210px;
  1353. height:43px;
  1354. background:inherit;
  1355. background-color:rgba(79, 95, 100, 1);
  1356. border:none;
  1357. border-radius:0px;
  1358. -moz-box-shadow:none;
  1359. -webkit-box-shadow:none;
  1360. box-shadow:none;
  1361. color:#FFFFFF;
  1362. }
  1363. #u997 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:116px;
  1368. width:210px;
  1369. height:43px;
  1370. color:#FFFFFF;
  1371. }
  1372. #u997_text {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:2px;
  1376. top:14px;
  1377. width:206px;
  1378. word-wrap:break-word;
  1379. }
  1380. #u998_div {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:210px;
  1386. height:42px;
  1387. background:inherit;
  1388. background-color:rgba(79, 95, 100, 1);
  1389. border:none;
  1390. border-radius:0px;
  1391. -moz-box-shadow:none;
  1392. -webkit-box-shadow:none;
  1393. box-shadow:none;
  1394. color:#FFFFFF;
  1395. }
  1396. #u998 {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:204px;
  1401. width:210px;
  1402. height:42px;
  1403. color:#FFFFFF;
  1404. }
  1405. #u998_text {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:2px;
  1409. top:14px;
  1410. width:206px;
  1411. word-wrap:break-word;
  1412. }
  1413. #u999_div {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:210px;
  1419. height:43px;
  1420. background:inherit;
  1421. background-color:rgba(79, 95, 100, 1);
  1422. border:none;
  1423. border-radius:0px;
  1424. -moz-box-shadow:none;
  1425. -webkit-box-shadow:none;
  1426. box-shadow:none;
  1427. color:#FFFFFF;
  1428. }
  1429. #u999 {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:0px;
  1433. top:160px;
  1434. width:210px;
  1435. height:43px;
  1436. color:#FFFFFF;
  1437. }
  1438. #u999_text {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:2px;
  1442. top:14px;
  1443. width:206px;
  1444. word-wrap:break-word;
  1445. }
  1446. #u1000_img {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:50px;
  1452. height:42px;
  1453. }
  1454. #u1000 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:160px;
  1458. top:72px;
  1459. width:50px;
  1460. height:42px;
  1461. font-family:'FontAwesome';
  1462. font-weight:400;
  1463. font-style:normal;
  1464. font-size:20px;
  1465. color:#999999;
  1466. }
  1467. #u1000_img.mouseOver {
  1468. }
  1469. #u1000.mouseOver {
  1470. }
  1471. #u1000_text {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:2px;
  1475. top:11px;
  1476. width:46px;
  1477. word-wrap:break-word;
  1478. }
  1479. #u1001_img {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:50px;
  1485. height:42px;
  1486. }
  1487. #u1001 {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:160px;
  1491. top:116px;
  1492. width:50px;
  1493. height:42px;
  1494. font-family:'FontAwesome';
  1495. font-weight:400;
  1496. font-style:normal;
  1497. font-size:20px;
  1498. color:#999999;
  1499. }
  1500. #u1001_img.mouseOver {
  1501. }
  1502. #u1001.mouseOver {
  1503. }
  1504. #u1001_text {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:2px;
  1508. top:11px;
  1509. width:46px;
  1510. word-wrap:break-word;
  1511. }
  1512. #u1002 {
  1513. position:absolute;
  1514. left:0px;
  1515. top:247px;
  1516. visibility:hidden;
  1517. }
  1518. #u1002_state0 {
  1519. position:relative;
  1520. left:0px;
  1521. top:0px;
  1522. width:210px;
  1523. height:171px;
  1524. background-image:none;
  1525. }
  1526. #u1002_state0_content {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:1px;
  1532. height:1px;
  1533. }
  1534. #u1003_div {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:210px;
  1540. height:42px;
  1541. background:inherit;
  1542. background-color:rgba(79, 95, 100, 1);
  1543. border:none;
  1544. border-radius:0px;
  1545. -moz-box-shadow:none;
  1546. -webkit-box-shadow:none;
  1547. box-shadow:none;
  1548. color:#FFFFFF;
  1549. }
  1550. #u1003 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:210px;
  1556. height:42px;
  1557. color:#FFFFFF;
  1558. }
  1559. #u1003_text {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:2px;
  1563. top:14px;
  1564. width:206px;
  1565. word-wrap:break-word;
  1566. }
  1567. #u1004_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:210px;
  1573. height:42px;
  1574. background:inherit;
  1575. background-color:rgba(79, 95, 100, 1);
  1576. border:none;
  1577. border-radius:0px;
  1578. -moz-box-shadow:none;
  1579. -webkit-box-shadow:none;
  1580. box-shadow:none;
  1581. color:#FFFFFF;
  1582. }
  1583. #u1004 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:43px;
  1588. width:210px;
  1589. height:42px;
  1590. color:#FFFFFF;
  1591. }
  1592. #u1004_text {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:2px;
  1596. top:14px;
  1597. width:206px;
  1598. word-wrap:break-word;
  1599. }
  1600. #u1005_div {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:210px;
  1606. height:42px;
  1607. background:inherit;
  1608. background-color:rgba(79, 95, 100, 1);
  1609. border:none;
  1610. border-radius:0px;
  1611. -moz-box-shadow:none;
  1612. -webkit-box-shadow:none;
  1613. box-shadow:none;
  1614. color:#FFFFFF;
  1615. }
  1616. #u1005 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:86px;
  1621. width:210px;
  1622. height:42px;
  1623. color:#FFFFFF;
  1624. }
  1625. #u1005_text {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:2px;
  1629. top:14px;
  1630. width:206px;
  1631. word-wrap:break-word;
  1632. }
  1633. #u1006_div {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:210px;
  1639. height:42px;
  1640. background:inherit;
  1641. background-color:rgba(79, 95, 100, 1);
  1642. border:none;
  1643. border-radius:0px;
  1644. -moz-box-shadow:none;
  1645. -webkit-box-shadow:none;
  1646. box-shadow:none;
  1647. color:#FFFFFF;
  1648. }
  1649. #u1006 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:129px;
  1654. width:210px;
  1655. height:42px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u1006_text {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:2px;
  1662. top:14px;
  1663. width:206px;
  1664. word-wrap:break-word;
  1665. }
  1666. #u1007_img {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:50px;
  1672. height:42px;
  1673. }
  1674. #u1007 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:160px;
  1678. top:160px;
  1679. width:50px;
  1680. height:42px;
  1681. font-family:'FontAwesome';
  1682. font-weight:400;
  1683. font-style:normal;
  1684. font-size:20px;
  1685. color:#999999;
  1686. }
  1687. #u1007_img.mouseOver {
  1688. }
  1689. #u1007.mouseOver {
  1690. }
  1691. #u1007_text {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:2px;
  1695. top:11px;
  1696. width:46px;
  1697. word-wrap:break-word;
  1698. }
  1699. #u1008 {
  1700. position:absolute;
  1701. left:160px;
  1702. top:205px;
  1703. }
  1704. #u1008_state0 {
  1705. position:relative;
  1706. left:0px;
  1707. top:0px;
  1708. width:50px;
  1709. height:42px;
  1710. background-image:none;
  1711. }
  1712. #u1008_state0_content {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:1px;
  1718. height:1px;
  1719. }
  1720. #u1009_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:50px;
  1726. height:42px;
  1727. }
  1728. #u1009 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:50px;
  1734. height:42px;
  1735. font-family:'FontAwesome';
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:20px;
  1739. color:#999999;
  1740. }
  1741. #u1009_img.mouseOver {
  1742. }
  1743. #u1009.mouseOver {
  1744. }
  1745. #u1009_text {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:2px;
  1749. top:11px;
  1750. width:46px;
  1751. word-wrap:break-word;
  1752. }
  1753. #u1008_state1 {
  1754. position:relative;
  1755. left:0px;
  1756. top:0px;
  1757. width:50px;
  1758. height:38px;
  1759. visibility:hidden;
  1760. background-image:none;
  1761. }
  1762. #u1008_state1_content {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:1px;
  1768. height:1px;
  1769. }
  1770. #u1010_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:34px;
  1776. height:42px;
  1777. }
  1778. #u1010 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:12px;
  1782. top:0px;
  1783. width:34px;
  1784. height:42px;
  1785. -webkit-transform:rotate(270deg);
  1786. -moz-transform:rotate(270deg);
  1787. -ms-transform:rotate(270deg);
  1788. transform:rotate(270deg);
  1789. font-family:'FontAwesome';
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:20px;
  1793. color:#999999;
  1794. }
  1795. #u1010_img.mouseOver {
  1796. }
  1797. #u1010.mouseOver {
  1798. }
  1799. #u1010_text {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:2px;
  1803. top:11px;
  1804. width:30px;
  1805. word-wrap:break-word;
  1806. }
  1807. #u1011 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:0px;
  1813. height:0px;
  1814. }
  1815. #u1012_img {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:50px;
  1821. height:42px;
  1822. }
  1823. #u1012 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:159px;
  1827. top:247px;
  1828. width:50px;
  1829. height:42px;
  1830. font-family:'FontAwesome';
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:20px;
  1834. color:#999999;
  1835. }
  1836. #u1012_img.mouseOver {
  1837. }
  1838. #u1012.mouseOver {
  1839. }
  1840. #u1012_text {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:2px;
  1844. top:11px;
  1845. width:46px;
  1846. word-wrap:break-word;
  1847. }
  1848. #u1013_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:50px;
  1854. height:42px;
  1855. }
  1856. #u1013 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:159px;
  1860. top:289px;
  1861. width:50px;
  1862. height:42px;
  1863. font-family:'FontAwesome';
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:20px;
  1867. color:#999999;
  1868. }
  1869. #u1013_img.mouseOver {
  1870. }
  1871. #u1013.mouseOver {
  1872. }
  1873. #u1013_text {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:2px;
  1877. top:11px;
  1878. width:46px;
  1879. word-wrap:break-word;
  1880. }
  1881. #u1014_img {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:50px;
  1887. height:42px;
  1888. }
  1889. #u1014 {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:159px;
  1893. top:333px;
  1894. width:50px;
  1895. height:42px;
  1896. font-family:'FontAwesome';
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:20px;
  1900. color:#999999;
  1901. }
  1902. #u1014_img.mouseOver {
  1903. }
  1904. #u1014.mouseOver {
  1905. }
  1906. #u1014_text {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:2px;
  1910. top:11px;
  1911. width:46px;
  1912. word-wrap:break-word;
  1913. }
  1914. #u1015_img {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:50px;
  1920. height:42px;
  1921. }
  1922. #u1015 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:159px;
  1926. top:376px;
  1927. width:50px;
  1928. height:42px;
  1929. font-family:'FontAwesome';
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:20px;
  1933. color:#999999;
  1934. }
  1935. #u1015_img.mouseOver {
  1936. }
  1937. #u1015.mouseOver {
  1938. }
  1939. #u1015_text {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:2px;
  1943. top:11px;
  1944. width:46px;
  1945. word-wrap:break-word;
  1946. }
  1947. #u1016_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:1258px;
  1953. height:835px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 1);
  1956. box-sizing:border-box;
  1957. border-width:1px;
  1958. border-style:solid;
  1959. border-color:rgba(233, 233, 233, 1);
  1960. border-radius:0px;
  1961. -moz-box-shadow:none;
  1962. -webkit-box-shadow:none;
  1963. box-shadow:none;
  1964. font-family:'微软雅黑';
  1965. font-weight:400;
  1966. font-style:normal;
  1967. text-align:left;
  1968. line-height:20px;
  1969. }
  1970. #u1016 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:230px;
  1974. top:88px;
  1975. width:1258px;
  1976. height:835px;
  1977. font-family:'微软雅黑';
  1978. font-weight:400;
  1979. font-style:normal;
  1980. text-align:left;
  1981. line-height:20px;
  1982. }
  1983. #u1016_text {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:0px;
  1989. visibility:hidden;
  1990. word-wrap:break-word;
  1991. }
  1992. #u1017_div {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:1258px;
  1998. height:84px;
  1999. background:inherit;
  2000. background-color:rgba(255, 255, 255, 0);
  2001. box-sizing:border-box;
  2002. border-width:1px;
  2003. border-style:solid;
  2004. border-color:rgba(233, 233, 233, 1);
  2005. border-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2010. font-style:normal;
  2011. text-align:left;
  2012. line-height:24px;
  2013. }
  2014. #u1017 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:230px;
  2018. top:88px;
  2019. width:1258px;
  2020. height:84px;
  2021. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2022. font-style:normal;
  2023. text-align:left;
  2024. line-height:24px;
  2025. }
  2026. #u1017_text {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:30px;
  2030. top:17px;
  2031. width:1226px;
  2032. word-wrap:break-word;
  2033. }
  2034. #u1018 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:0px;
  2040. height:0px;
  2041. }
  2042. #u1019 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:271px;
  2046. top:260px;
  2047. width:1191px;
  2048. height:47px;
  2049. }
  2050. #u1020_img {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:91px;
  2056. height:47px;
  2057. }
  2058. #u1020 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:91px;
  2064. height:47px;
  2065. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2066. font-weight:700;
  2067. font-style:normal;
  2068. }
  2069. #u1020_text {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:2px;
  2073. top:15px;
  2074. width:87px;
  2075. word-wrap:break-word;
  2076. }
  2077. #u1021_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:220px;
  2083. height:47px;
  2084. }
  2085. #u1021 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:91px;
  2089. top:0px;
  2090. width:220px;
  2091. height:47px;
  2092. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2093. font-weight:700;
  2094. font-style:normal;
  2095. font-size:14px;
  2096. color:#666666;
  2097. }
  2098. #u1021_text {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:15px;
  2102. top:14px;
  2103. width:203px;
  2104. word-wrap:break-word;
  2105. }
  2106. #u1022_img {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:220px;
  2112. height:47px;
  2113. }
  2114. #u1022 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:311px;
  2118. top:0px;
  2119. width:220px;
  2120. height:47px;
  2121. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2122. font-weight:700;
  2123. font-style:normal;
  2124. }
  2125. #u1022_text {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:2px;
  2129. top:15px;
  2130. width:216px;
  2131. word-wrap:break-word;
  2132. }
  2133. #u1023_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:220px;
  2139. height:47px;
  2140. }
  2141. #u1023 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:531px;
  2145. top:0px;
  2146. width:220px;
  2147. height:47px;
  2148. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2149. font-weight:700;
  2150. font-style:normal;
  2151. }
  2152. #u1023_text {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:15px;
  2156. top:15px;
  2157. width:203px;
  2158. word-wrap:break-word;
  2159. }
  2160. #u1024_img {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:220px;
  2166. height:47px;
  2167. }
  2168. #u1024 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:751px;
  2172. top:0px;
  2173. width:220px;
  2174. height:47px;
  2175. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2176. font-weight:700;
  2177. font-style:normal;
  2178. }
  2179. #u1024_text {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:15px;
  2183. top:15px;
  2184. width:203px;
  2185. word-wrap:break-word;
  2186. }
  2187. #u1025_img {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:220px;
  2193. height:47px;
  2194. }
  2195. #u1025 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:971px;
  2199. top:0px;
  2200. width:220px;
  2201. height:47px;
  2202. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  2203. font-weight:700;
  2204. font-style:normal;
  2205. }
  2206. #u1025_text {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:15px;
  2210. top:15px;
  2211. width:203px;
  2212. word-wrap:break-word;
  2213. }
  2214. .u1027 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:-1px;
  2219. width:1191px;
  2220. height:50px;
  2221. }
  2222. .u1028_img {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:91px;
  2228. height:50px;
  2229. }
  2230. .u1028 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:91px;
  2236. height:50px;
  2237. font-family:'微软雅黑 Regular', '微软雅黑';
  2238. font-weight:400;
  2239. font-style:normal;
  2240. font-size:12px;
  2241. }
  2242. .u1028_text {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:0px;
  2248. visibility:hidden;
  2249. word-wrap:break-word;
  2250. }
  2251. .u1029_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:220px;
  2257. height:50px;
  2258. }
  2259. .u1029 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:91px;
  2263. top:0px;
  2264. width:220px;
  2265. height:50px;
  2266. font-family:'微软雅黑 Regular', '微软雅黑';
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:12px;
  2270. }
  2271. .u1029_text {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:15px;
  2275. top:17px;
  2276. width:203px;
  2277. word-wrap:break-word;
  2278. }
  2279. .u1030_img {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:220px;
  2285. height:50px;
  2286. }
  2287. .u1030 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:311px;
  2291. top:0px;
  2292. width:220px;
  2293. height:50px;
  2294. font-size:12px;
  2295. color:#000000;
  2296. }
  2297. .u1030_text {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:0px;
  2303. visibility:hidden;
  2304. word-wrap:break-word;
  2305. }
  2306. .u1031_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:220px;
  2312. height:50px;
  2313. }
  2314. .u1031 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:531px;
  2318. top:0px;
  2319. width:220px;
  2320. height:50px;
  2321. font-family:'微软雅黑 Regular', '微软雅黑';
  2322. font-weight:400;
  2323. font-style:normal;
  2324. font-size:12px;
  2325. }
  2326. .u1031_text {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:15px;
  2330. top:17px;
  2331. width:203px;
  2332. word-wrap:break-word;
  2333. }
  2334. .u1032_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:220px;
  2340. height:50px;
  2341. }
  2342. .u1032 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:751px;
  2346. top:0px;
  2347. width:220px;
  2348. height:50px;
  2349. font-family:'微软雅黑 Regular', '微软雅黑';
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. }
  2354. .u1032_text {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:15px;
  2358. top:17px;
  2359. width:203px;
  2360. word-wrap:break-word;
  2361. }
  2362. .u1033_img {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:220px;
  2368. height:50px;
  2369. }
  2370. .u1033 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:971px;
  2374. top:0px;
  2375. width:220px;
  2376. height:50px;
  2377. font-family:'微软雅黑 Regular', '微软雅黑';
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:12px;
  2381. color:rgba(0, 121, 254, 0.686274509803922);
  2382. }
  2383. .u1033_text {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:15px;
  2387. top:17px;
  2388. width:203px;
  2389. word-wrap:break-word;
  2390. }
  2391. .u1034_div {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:18px;
  2397. height:18px;
  2398. background:inherit;
  2399. background-color:rgba(255, 255, 255, 0);
  2400. border:none;
  2401. border-radius:0px;
  2402. -moz-box-shadow:none;
  2403. -webkit-box-shadow:none;
  2404. box-shadow:none;
  2405. font-family:'FontAwesome';
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:18px;
  2409. color:#999999;
  2410. }
  2411. .u1034 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:30px;
  2415. top:15px;
  2416. width:18px;
  2417. height:18px;
  2418. font-family:'FontAwesome';
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:18px;
  2422. color:#999999;
  2423. }
  2424. .u1034_div.mouseOver {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:18px;
  2430. height:18px;
  2431. background:inherit;
  2432. background-color:rgba(255, 255, 255, 0);
  2433. border:none;
  2434. border-radius:0px;
  2435. -moz-box-shadow:none;
  2436. -webkit-box-shadow:none;
  2437. box-shadow:none;
  2438. font-family:'FontAwesome';
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:18px;
  2442. color:#999999;
  2443. }
  2444. .u1034.mouseOver {
  2445. }
  2446. .u1034_div.selected {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:18px;
  2452. height:18px;
  2453. background:inherit;
  2454. background-color:rgba(255, 255, 255, 0);
  2455. border:none;
  2456. border-radius:0px;
  2457. -moz-box-shadow:none;
  2458. -webkit-box-shadow:none;
  2459. box-shadow:none;
  2460. font-family:'FontAwesome';
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:18px;
  2464. color:#999999;
  2465. }
  2466. .u1034.selected {
  2467. }
  2468. .u1034_div.disabled {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:18px;
  2474. height:18px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 0);
  2477. border:none;
  2478. border-radius:0px;
  2479. -moz-box-shadow:none;
  2480. -webkit-box-shadow:none;
  2481. box-shadow:none;
  2482. font-family:'FontAwesome';
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:18px;
  2486. color:#999999;
  2487. }
  2488. .u1034.disabled {
  2489. }
  2490. .u1034_text {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:2px;
  2494. top:0px;
  2495. width:14px;
  2496. word-wrap:break-word;
  2497. }
  2498. #u1026-1 {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:1191px;
  2504. height:49px;
  2505. }
  2506. #u1026-2 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:49px;
  2511. width:1191px;
  2512. height:49px;
  2513. }
  2514. #u1026-3 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:98px;
  2519. width:1191px;
  2520. height:49px;
  2521. }
  2522. #u1026-4 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:147px;
  2527. width:1191px;
  2528. height:49px;
  2529. }
  2530. #u1026-5 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:196px;
  2535. width:1191px;
  2536. height:49px;
  2537. }
  2538. #u1026-6 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:245px;
  2543. width:1191px;
  2544. height:49px;
  2545. }
  2546. #u1026-7 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:294px;
  2551. width:1191px;
  2552. height:49px;
  2553. }
  2554. #u1026-8 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:343px;
  2559. width:1191px;
  2560. height:49px;
  2561. }
  2562. #u1026-9 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:392px;
  2567. width:1191px;
  2568. height:49px;
  2569. }
  2570. #u1026-10 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:441px;
  2575. width:1191px;
  2576. height:49px;
  2577. }
  2578. #u1026 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:271px;
  2582. top:307px;
  2583. width:1191px;
  2584. height:490px;
  2585. background:inherit;
  2586. background-color:rgba(255, 255, 255, 0);
  2587. border:none;
  2588. border-radius:0px;
  2589. }
  2590. #u1035 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:0px;
  2596. height:0px;
  2597. }
  2598. #u1036_div {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:92px;
  2604. height:37px;
  2605. background:inherit;
  2606. background-color:rgba(255, 255, 255, 1);
  2607. box-sizing:border-box;
  2608. border-width:1px;
  2609. border-style:solid;
  2610. border-color:rgba(228, 228, 228, 1);
  2611. border-radius:3px;
  2612. border-top-left-radius:0px;
  2613. border-bottom-left-radius:0px;
  2614. -moz-box-shadow:none;
  2615. -webkit-box-shadow:none;
  2616. box-shadow:none;
  2617. color:#999999;
  2618. }
  2619. #u1036 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:1169px;
  2623. top:843px;
  2624. width:92px;
  2625. height:37px;
  2626. color:#999999;
  2627. }
  2628. #u1036_div.mouseOver {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:92px;
  2634. height:37px;
  2635. background:inherit;
  2636. background-color:rgba(255, 255, 255, 1);
  2637. box-sizing:border-box;
  2638. border-width:1px;
  2639. border-style:solid;
  2640. border-color:rgba(0, 121, 254, 1);
  2641. border-radius:3px;
  2642. border-top-left-radius:0px;
  2643. border-bottom-left-radius:0px;
  2644. -moz-box-shadow:none;
  2645. -webkit-box-shadow:none;
  2646. box-shadow:none;
  2647. color:#999999;
  2648. }
  2649. #u1036.mouseOver {
  2650. }
  2651. #u1036_div.disabled {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:92px;
  2657. height:37px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 1);
  2660. box-sizing:border-box;
  2661. border-width:1px;
  2662. border-style:solid;
  2663. border-color:rgba(228, 228, 228, 1);
  2664. border-radius:3px;
  2665. border-top-left-radius:0px;
  2666. border-bottom-left-radius:0px;
  2667. -moz-box-shadow:none;
  2668. -webkit-box-shadow:none;
  2669. box-shadow:none;
  2670. color:#999999;
  2671. }
  2672. #u1036.disabled {
  2673. }
  2674. #u1036_text {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:2px;
  2678. top:10px;
  2679. width:88px;
  2680. word-wrap:break-word;
  2681. }
  2682. #u1037_div {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:92px;
  2688. height:37px;
  2689. background:inherit;
  2690. background-color:rgba(255, 255, 255, 1);
  2691. box-sizing:border-box;
  2692. border-width:1px;
  2693. border-style:solid;
  2694. border-color:rgba(228, 228, 228, 1);
  2695. border-radius:3px;
  2696. border-top-right-radius:0px;
  2697. border-bottom-right-radius:0px;
  2698. -moz-box-shadow:none;
  2699. -webkit-box-shadow:none;
  2700. box-shadow:none;
  2701. color:#999999;
  2702. }
  2703. #u1037 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:1079px;
  2707. top:843px;
  2708. width:92px;
  2709. height:37px;
  2710. color:#999999;
  2711. }
  2712. #u1037_div.mouseOver {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:92px;
  2718. height:37px;
  2719. background:inherit;
  2720. background-color:rgba(255, 255, 255, 1);
  2721. box-sizing:border-box;
  2722. border-width:1px;
  2723. border-style:solid;
  2724. border-color:rgba(0, 121, 254, 1);
  2725. border-radius:3px;
  2726. border-top-right-radius:0px;
  2727. border-bottom-right-radius:0px;
  2728. -moz-box-shadow:none;
  2729. -webkit-box-shadow:none;
  2730. box-shadow:none;
  2731. color:#999999;
  2732. }
  2733. #u1037.mouseOver {
  2734. }
  2735. #u1037_div.disabled {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:92px;
  2741. height:37px;
  2742. background:inherit;
  2743. background-color:rgba(255, 255, 255, 1);
  2744. box-sizing:border-box;
  2745. border-width:1px;
  2746. border-style:solid;
  2747. border-color:rgba(228, 228, 228, 1);
  2748. border-radius:3px;
  2749. border-top-right-radius:0px;
  2750. border-bottom-right-radius:0px;
  2751. -moz-box-shadow:none;
  2752. -webkit-box-shadow:none;
  2753. box-shadow:none;
  2754. color:#999999;
  2755. }
  2756. #u1037.disabled {
  2757. }
  2758. #u1037_text {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:2px;
  2762. top:10px;
  2763. width:88px;
  2764. word-wrap:break-word;
  2765. }
  2766. #u1038_div {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:92px;
  2772. height:37px;
  2773. background:inherit;
  2774. background-color:rgba(255, 255, 255, 1);
  2775. box-sizing:border-box;
  2776. border-width:1px;
  2777. border-style:solid;
  2778. border-color:rgba(228, 228, 228, 1);
  2779. border-radius:3px;
  2780. -moz-box-shadow:none;
  2781. -webkit-box-shadow:none;
  2782. box-shadow:none;
  2783. font-family:'微软雅黑 Regular', '微软雅黑';
  2784. font-weight:400;
  2785. font-style:normal;
  2786. color:#999999;
  2787. }
  2788. #u1038 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:278px;
  2792. top:843px;
  2793. width:92px;
  2794. height:37px;
  2795. font-family:'微软雅黑 Regular', '微软雅黑';
  2796. font-weight:400;
  2797. font-style:normal;
  2798. color:#999999;
  2799. }
  2800. #u1038_div.mouseOver {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:92px;
  2806. height:37px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 1);
  2809. box-sizing:border-box;
  2810. border-width:1px;
  2811. border-style:solid;
  2812. border-color:rgba(0, 121, 254, 1);
  2813. border-radius:3px;
  2814. -moz-box-shadow:none;
  2815. -webkit-box-shadow:none;
  2816. box-shadow:none;
  2817. font-family:'微软雅黑 Regular', '微软雅黑';
  2818. font-weight:400;
  2819. font-style:normal;
  2820. color:#999999;
  2821. }
  2822. #u1038.mouseOver {
  2823. }
  2824. #u1038_text {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:2px;
  2828. top:10px;
  2829. width:88px;
  2830. word-wrap:break-word;
  2831. }
  2832. #u1039 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:0px;
  2838. height:0px;
  2839. }
  2840. #u1040_div {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:92px;
  2846. height:37px;
  2847. background:inherit;
  2848. background-color:rgba(255, 255, 255, 1);
  2849. box-sizing:border-box;
  2850. border-width:1px;
  2851. border-style:solid;
  2852. border-color:rgba(228, 228, 228, 1);
  2853. border-radius:3px;
  2854. border-top-left-radius:0px;
  2855. border-bottom-left-radius:0px;
  2856. -moz-box-shadow:none;
  2857. -webkit-box-shadow:none;
  2858. box-shadow:none;
  2859. font-family:'微软雅黑 Regular', '微软雅黑';
  2860. font-weight:400;
  2861. font-style:normal;
  2862. color:#999999;
  2863. }
  2864. #u1040 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:1363px;
  2868. top:843px;
  2869. width:92px;
  2870. height:37px;
  2871. font-family:'微软雅黑 Regular', '微软雅黑';
  2872. font-weight:400;
  2873. font-style:normal;
  2874. color:#999999;
  2875. }
  2876. #u1040_div.mouseOver {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:92px;
  2882. height:37px;
  2883. background:inherit;
  2884. background-color:rgba(255, 255, 255, 1);
  2885. box-sizing:border-box;
  2886. border-width:1px;
  2887. border-style:solid;
  2888. border-color:rgba(0, 121, 254, 1);
  2889. border-radius:3px;
  2890. border-top-left-radius:0px;
  2891. border-bottom-left-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. font-family:'微软雅黑 Regular', '微软雅黑';
  2896. font-weight:400;
  2897. font-style:normal;
  2898. color:#999999;
  2899. }
  2900. #u1040.mouseOver {
  2901. }
  2902. #u1040_div.disabled {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:92px;
  2908. height:37px;
  2909. background:inherit;
  2910. background-color:rgba(255, 255, 255, 1);
  2911. box-sizing:border-box;
  2912. border-width:1px;
  2913. border-style:solid;
  2914. border-color:rgba(228, 228, 228, 1);
  2915. border-radius:3px;
  2916. border-top-left-radius:0px;
  2917. border-bottom-left-radius:0px;
  2918. -moz-box-shadow:none;
  2919. -webkit-box-shadow:none;
  2920. box-shadow:none;
  2921. font-family:'微软雅黑 Regular', '微软雅黑';
  2922. font-weight:400;
  2923. font-style:normal;
  2924. color:#999999;
  2925. }
  2926. #u1040.disabled {
  2927. }
  2928. #u1040_text {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:2px;
  2932. top:10px;
  2933. width:88px;
  2934. word-wrap:break-word;
  2935. }
  2936. #u1041_div {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:92px;
  2942. height:37px;
  2943. background:inherit;
  2944. background-color:rgba(255, 255, 255, 1);
  2945. box-sizing:border-box;
  2946. border-width:1px;
  2947. border-style:solid;
  2948. border-color:rgba(228, 228, 228, 1);
  2949. border-radius:3px;
  2950. border-top-right-radius:0px;
  2951. border-bottom-right-radius:0px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. font-family:'微软雅黑 Regular', '微软雅黑';
  2956. font-weight:400;
  2957. font-style:normal;
  2958. color:#999999;
  2959. }
  2960. #u1041 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:1272px;
  2964. top:843px;
  2965. width:92px;
  2966. height:37px;
  2967. font-family:'微软雅黑 Regular', '微软雅黑';
  2968. font-weight:400;
  2969. font-style:normal;
  2970. color:#999999;
  2971. }
  2972. #u1041_div.mouseOver {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:92px;
  2978. height:37px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 1);
  2981. box-sizing:border-box;
  2982. border-width:1px;
  2983. border-style:solid;
  2984. border-color:rgba(0, 121, 254, 1);
  2985. border-radius:3px;
  2986. border-top-right-radius:0px;
  2987. border-bottom-right-radius:0px;
  2988. -moz-box-shadow:none;
  2989. -webkit-box-shadow:none;
  2990. box-shadow:none;
  2991. font-family:'微软雅黑 Regular', '微软雅黑';
  2992. font-weight:400;
  2993. font-style:normal;
  2994. color:#999999;
  2995. }
  2996. #u1041.mouseOver {
  2997. }
  2998. #u1041_div.disabled {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:92px;
  3004. height:37px;
  3005. background:inherit;
  3006. background-color:rgba(255, 255, 255, 1);
  3007. box-sizing:border-box;
  3008. border-width:1px;
  3009. border-style:solid;
  3010. border-color:rgba(228, 228, 228, 1);
  3011. border-radius:3px;
  3012. border-top-right-radius:0px;
  3013. border-bottom-right-radius:0px;
  3014. -moz-box-shadow:none;
  3015. -webkit-box-shadow:none;
  3016. box-shadow:none;
  3017. font-family:'微软雅黑 Regular', '微软雅黑';
  3018. font-weight:400;
  3019. font-style:normal;
  3020. color:#999999;
  3021. }
  3022. #u1041.disabled {
  3023. }
  3024. #u1041_text {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:2px;
  3028. top:10px;
  3029. width:88px;
  3030. word-wrap:break-word;
  3031. }
  3032. #u1042_div {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:224px;
  3038. height:37px;
  3039. background:inherit;
  3040. background-color:rgba(255, 255, 255, 0);
  3041. border:none;
  3042. border-radius:0px;
  3043. -moz-box-shadow:none;
  3044. -webkit-box-shadow:none;
  3045. box-shadow:none;
  3046. font-family:'微软雅黑 Regular', '微软雅黑';
  3047. font-weight:400;
  3048. font-style:normal;
  3049. color:#999999;
  3050. text-align:right;
  3051. }
  3052. #u1042 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:832px;
  3056. top:843px;
  3057. width:224px;
  3058. height:37px;
  3059. font-family:'微软雅黑 Regular', '微软雅黑';
  3060. font-weight:400;
  3061. font-style:normal;
  3062. color:#999999;
  3063. text-align:right;
  3064. }
  3065. #u1042_text {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:2px;
  3069. top:10px;
  3070. width:220px;
  3071. word-wrap:break-word;
  3072. }
  3073. #u1043 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:0px;
  3079. height:0px;
  3080. }
  3081. #u1044_div {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:229px;
  3087. height:37px;
  3088. background:inherit;
  3089. background-color:rgba(255, 255, 255, 1);
  3090. box-sizing:border-box;
  3091. border-width:1px;
  3092. border-style:solid;
  3093. border-color:rgba(204, 204, 204, 1);
  3094. border-radius:3px;
  3095. -moz-box-shadow:none;
  3096. -webkit-box-shadow:none;
  3097. box-shadow:none;
  3098. font-family:'FontAwesome';
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:16px;
  3102. color:#CCCCCC;
  3103. text-align:right;
  3104. line-height:20px;
  3105. }
  3106. #u1044 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:264px;
  3110. top:193px;
  3111. width:229px;
  3112. height:37px;
  3113. font-family:'FontAwesome';
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:16px;
  3117. color:#CCCCCC;
  3118. text-align:right;
  3119. line-height:20px;
  3120. }
  3121. #u1044_div.selected {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:229px;
  3127. height:37px;
  3128. background:inherit;
  3129. background-color:rgba(255, 255, 255, 1);
  3130. box-sizing:border-box;
  3131. border-width:1px;
  3132. border-style:solid;
  3133. border-color:rgba(0, 121, 254, 1);
  3134. border-radius:3px;
  3135. -moz-box-shadow:none;
  3136. -webkit-box-shadow:none;
  3137. box-shadow:none;
  3138. font-family:'FontAwesome';
  3139. font-weight:400;
  3140. font-style:normal;
  3141. font-size:16px;
  3142. color:#CCCCCC;
  3143. text-align:right;
  3144. line-height:20px;
  3145. }
  3146. #u1044.selected {
  3147. }
  3148. #u1044_div.disabled {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:229px;
  3154. height:37px;
  3155. background:inherit;
  3156. background-color:rgba(255, 255, 255, 1);
  3157. box-sizing:border-box;
  3158. border-width:1px;
  3159. border-style:solid;
  3160. border-color:rgba(0, 121, 254, 1);
  3161. border-radius:3px;
  3162. -moz-box-shadow:0px 0px 3px rgba(0, 121, 254, 0.686274509803922);
  3163. -webkit-box-shadow:0px 0px 3px rgba(0, 121, 254, 0.686274509803922);
  3164. box-shadow:0px 0px 3px rgba(0, 121, 254, 0.686274509803922);
  3165. font-family:'FontAwesome';
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:16px;
  3169. color:#CCCCCC;
  3170. text-align:right;
  3171. line-height:20px;
  3172. }
  3173. #u1044.disabled {
  3174. }
  3175. #u1044_text {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:0px;
  3181. visibility:hidden;
  3182. word-wrap:break-word;
  3183. }
  3184. #u1045 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:278px;
  3188. top:193px;
  3189. width:175px;
  3190. height:37px;
  3191. }
  3192. #u1045_input {
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:175px;
  3197. height:37px;
  3198. background-color:transparent;
  3199. font-family:'微软雅黑 Regular', '微软雅黑';
  3200. font-weight:400;
  3201. font-style:normal;
  3202. font-size:12px;
  3203. text-decoration:none;
  3204. color:#333333;
  3205. text-align:left;
  3206. border-color:transparent;
  3207. outline-style:none;
  3208. }
  3209. #u1046_div {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:40px;
  3215. height:37px;
  3216. background:inherit;
  3217. background-color:rgba(255, 255, 255, 0);
  3218. border:none;
  3219. border-radius:3px;
  3220. -moz-box-shadow:none;
  3221. -webkit-box-shadow:none;
  3222. box-shadow:none;
  3223. font-family:'FontAwesome';
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:16px;
  3227. color:#999999;
  3228. }
  3229. #u1046 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:453px;
  3233. top:193px;
  3234. width:40px;
  3235. height:37px;
  3236. font-family:'FontAwesome';
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:16px;
  3240. color:#999999;
  3241. }
  3242. #u1046_div.mouseOver {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:40px;
  3248. height:37px;
  3249. background:inherit;
  3250. background-color:rgba(255, 255, 255, 0);
  3251. border:none;
  3252. border-radius:3px;
  3253. -moz-box-shadow:none;
  3254. -webkit-box-shadow:none;
  3255. box-shadow:none;
  3256. font-family:'FontAwesome';
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:16px;
  3260. color:#999999;
  3261. }
  3262. #u1046.mouseOver {
  3263. opacity:0.8;
  3264. }
  3265. #u1046_text {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:2px;
  3269. top:10px;
  3270. width:36px;
  3271. word-wrap:break-word;
  3272. }
  3273. #u1047_div {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:92px;
  3279. height:37px;
  3280. background:inherit;
  3281. background-color:rgba(0, 121, 254, 1);
  3282. border:none;
  3283. border-radius:3px;
  3284. -moz-box-shadow:none;
  3285. -webkit-box-shadow:none;
  3286. box-shadow:none;
  3287. color:#FFFFFF;
  3288. line-height:20px;
  3289. }
  3290. #u1047 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:505px;
  3294. top:193px;
  3295. width:92px;
  3296. height:37px;
  3297. color:#FFFFFF;
  3298. line-height:20px;
  3299. }
  3300. #u1047_div.mouseOver {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:92px;
  3306. height:37px;
  3307. background:inherit;
  3308. background-color:rgba(0, 121, 254, 1);
  3309. border:none;
  3310. border-radius:3px;
  3311. -moz-box-shadow:none;
  3312. -webkit-box-shadow:none;
  3313. box-shadow:none;
  3314. color:#FFFFFF;
  3315. line-height:20px;
  3316. }
  3317. #u1047.mouseOver {
  3318. opacity:0.8;
  3319. }
  3320. #u1047_div.mouseDown {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:0px;
  3325. width:92px;
  3326. height:37px;
  3327. background:inherit;
  3328. background-color:rgba(0, 121, 254, 1);
  3329. border:none;
  3330. border-radius:3px;
  3331. -moz-box-shadow:none;
  3332. -webkit-box-shadow:none;
  3333. box-shadow:none;
  3334. color:#FFFFFF;
  3335. line-height:20px;
  3336. }
  3337. #u1047.mouseDown {
  3338. opacity:1;
  3339. }
  3340. #u1047_text {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:8px;
  3345. width:92px;
  3346. word-wrap:break-word;
  3347. }
  3348. #u1048_div {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:92px;
  3354. height:37px;
  3355. background:inherit;
  3356. background-color:rgba(52, 120, 247, 1);
  3357. border:none;
  3358. border-radius:3px;
  3359. -moz-box-shadow:none;
  3360. -webkit-box-shadow:none;
  3361. box-shadow:none;
  3362. font-family:'FontAwesome';
  3363. font-weight:400;
  3364. font-style:normal;
  3365. color:#FFFFFF;
  3366. line-height:20px;
  3367. }
  3368. #u1048 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:1363px;
  3372. top:193px;
  3373. width:92px;
  3374. height:37px;
  3375. font-family:'FontAwesome';
  3376. font-weight:400;
  3377. font-style:normal;
  3378. color:#FFFFFF;
  3379. line-height:20px;
  3380. }
  3381. #u1048_div.mouseOver {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:92px;
  3387. height:37px;
  3388. background:inherit;
  3389. background-color:rgba(52, 120, 247, 1);
  3390. border:none;
  3391. border-radius:3px;
  3392. -moz-box-shadow:none;
  3393. -webkit-box-shadow:none;
  3394. box-shadow:none;
  3395. font-family:'FontAwesome';
  3396. font-weight:400;
  3397. font-style:normal;
  3398. color:#FFFFFF;
  3399. line-height:20px;
  3400. }
  3401. #u1048.mouseOver {
  3402. opacity:0.8;
  3403. }
  3404. #u1048_div.mouseDown {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:92px;
  3410. height:37px;
  3411. background:inherit;
  3412. background-color:rgba(52, 120, 247, 1);
  3413. border:none;
  3414. border-radius:3px;
  3415. -moz-box-shadow:none;
  3416. -webkit-box-shadow:none;
  3417. box-shadow:none;
  3418. font-family:'FontAwesome';
  3419. font-weight:400;
  3420. font-style:normal;
  3421. color:#FFFFFF;
  3422. line-height:20px;
  3423. }
  3424. #u1048.mouseDown {
  3425. opacity:1;
  3426. }
  3427. #u1048_text {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:8px;
  3432. width:92px;
  3433. word-wrap:break-word;
  3434. }
  3435. #u1049 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:0px;
  3441. height:0px;
  3442. }
  3443. #u1050_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:1258px;
  3449. height:100px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 1);
  3452. box-sizing:border-box;
  3453. border-width:1px;
  3454. border-style:solid;
  3455. border-color:rgba(233, 233, 233, 1);
  3456. border-radius:0px;
  3457. -moz-box-shadow:none;
  3458. -webkit-box-shadow:none;
  3459. box-shadow:none;
  3460. font-family:'微软雅黑';
  3461. font-weight:400;
  3462. font-style:normal;
  3463. text-align:left;
  3464. line-height:20px;
  3465. }
  3466. #u1050 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:230px;
  3470. top:88px;
  3471. width:1258px;
  3472. height:100px;
  3473. font-family:'微软雅黑';
  3474. font-weight:400;
  3475. font-style:normal;
  3476. text-align:left;
  3477. line-height:20px;
  3478. }
  3479. #u1050_text {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:0px;
  3485. visibility:hidden;
  3486. word-wrap:break-word;
  3487. }
  3488. #u1051_div {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:1258px;
  3494. height:50px;
  3495. background:inherit;
  3496. background-color:rgba(255, 255, 255, 0);
  3497. border:none;
  3498. border-radius:0px;
  3499. -moz-box-shadow:none;
  3500. -webkit-box-shadow:none;
  3501. box-shadow:none;
  3502. font-family:'微软雅黑 Regular', '微软雅黑';
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:14px;
  3506. text-align:left;
  3507. }
  3508. #u1051 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:230px;
  3512. top:88px;
  3513. width:1258px;
  3514. height:50px;
  3515. font-family:'微软雅黑 Regular', '微软雅黑';
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:14px;
  3519. text-align:left;
  3520. }
  3521. #u1051_text {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:20px;
  3525. top:16px;
  3526. width:1236px;
  3527. word-wrap:break-word;
  3528. }
  3529. #u1052_div {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:606px;
  3535. height:25px;
  3536. background:inherit;
  3537. background-color:rgba(255, 255, 255, 0);
  3538. box-sizing:border-box;
  3539. border-width:4px;
  3540. border-style:solid;
  3541. border-color:rgba(0, 121, 254, 1);
  3542. border-top:0px;
  3543. border-right:0px;
  3544. border-bottom:0px;
  3545. border-radius:0px;
  3546. border-top-left-radius:0px;
  3547. border-top-right-radius:0px;
  3548. border-bottom-right-radius:0px;
  3549. border-bottom-left-radius:0px;
  3550. -moz-box-shadow:none;
  3551. -webkit-box-shadow:none;
  3552. box-shadow:none;
  3553. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  3554. font-weight:700;
  3555. font-style:normal;
  3556. font-size:20px;
  3557. text-align:left;
  3558. }
  3559. #u1052 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:253px;
  3563. top:138px;
  3564. width:606px;
  3565. height:25px;
  3566. font-family:'微软雅黑 Bold', '微软雅黑 Regular', '微软雅黑';
  3567. font-weight:700;
  3568. font-style:normal;
  3569. font-size:20px;
  3570. text-align:left;
  3571. }
  3572. #u1052_text {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:15px;
  3576. top:0px;
  3577. width:589px;
  3578. word-wrap:break-word;
  3579. }