styles.css 67 KB

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