styles.css 65 KB

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