styles.css 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1938px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u361_div {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1598px;
  21. height:65px;
  22. background:inherit;
  23. background-color:rgba(215, 215, 215, 1);
  24. border:none;
  25. border-radius:0px;
  26. -moz-box-shadow:none;
  27. -webkit-box-shadow:none;
  28. box-shadow:none;
  29. }
  30. #u361 {
  31. border-width:0px;
  32. position:absolute;
  33. left:0px;
  34. top:0px;
  35. width:1598px;
  36. height:65px;
  37. }
  38. #u361_text {
  39. border-width:0px;
  40. position:absolute;
  41. left:0px;
  42. top:0px;
  43. width:0px;
  44. visibility:hidden;
  45. word-wrap:break-word;
  46. }
  47. #u362_div {
  48. border-width:0px;
  49. position:absolute;
  50. left:0px;
  51. top:0px;
  52. width:49px;
  53. height:29px;
  54. background:inherit;
  55. background-color:rgba(255, 255, 255, 0);
  56. border:none;
  57. border-radius:0px;
  58. -moz-box-shadow:none;
  59. -webkit-box-shadow:none;
  60. box-shadow:none;
  61. font-size:24px;
  62. color:#666666;
  63. }
  64. #u362 {
  65. border-width:0px;
  66. position:absolute;
  67. left:352px;
  68. top:18px;
  69. width:49px;
  70. height:29px;
  71. font-size:24px;
  72. color:#666666;
  73. }
  74. #u362_text {
  75. border-width:0px;
  76. position:absolute;
  77. left:0px;
  78. top:0px;
  79. width:49px;
  80. white-space:nowrap;
  81. }
  82. #u363_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:49px;
  88. height:29px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  91. border:none;
  92. border-radius:0px;
  93. -moz-box-shadow:none;
  94. -webkit-box-shadow:none;
  95. box-shadow:none;
  96. font-size:24px;
  97. color:#666666;
  98. }
  99. #u363 {
  100. border-width:0px;
  101. position:absolute;
  102. left:432px;
  103. top:18px;
  104. width:49px;
  105. height:29px;
  106. font-size:24px;
  107. color:#666666;
  108. }
  109. #u363_text {
  110. border-width:0px;
  111. position:absolute;
  112. left:0px;
  113. top:0px;
  114. width:49px;
  115. white-space:nowrap;
  116. }
  117. #u364_div {
  118. border-width:0px;
  119. position:absolute;
  120. left:0px;
  121. top:0px;
  122. width:49px;
  123. height:29px;
  124. background:inherit;
  125. background-color:rgba(255, 255, 255, 0);
  126. border:none;
  127. border-radius:0px;
  128. -moz-box-shadow:none;
  129. -webkit-box-shadow:none;
  130. box-shadow:none;
  131. font-size:24px;
  132. color:#666666;
  133. }
  134. #u364 {
  135. border-width:0px;
  136. position:absolute;
  137. left:510px;
  138. top:18px;
  139. width:49px;
  140. height:29px;
  141. font-size:24px;
  142. color:#666666;
  143. }
  144. #u364_text {
  145. border-width:0px;
  146. position:absolute;
  147. left:0px;
  148. top:0px;
  149. width:49px;
  150. white-space:nowrap;
  151. }
  152. #u365_div {
  153. border-width:0px;
  154. position:absolute;
  155. left:0px;
  156. top:0px;
  157. width:49px;
  158. height:29px;
  159. background:inherit;
  160. background-color:rgba(255, 255, 255, 0);
  161. border:none;
  162. border-radius:0px;
  163. -moz-box-shadow:none;
  164. -webkit-box-shadow:none;
  165. box-shadow:none;
  166. font-size:24px;
  167. color:#666666;
  168. }
  169. #u365 {
  170. border-width:0px;
  171. position:absolute;
  172. left:656px;
  173. top:18px;
  174. width:49px;
  175. height:29px;
  176. font-size:24px;
  177. color:#666666;
  178. }
  179. #u365_text {
  180. border-width:0px;
  181. position:absolute;
  182. left:0px;
  183. top:0px;
  184. width:49px;
  185. white-space:nowrap;
  186. }
  187. #u366_div {
  188. border-width:0px;
  189. position:absolute;
  190. left:0px;
  191. top:0px;
  192. width:49px;
  193. height:29px;
  194. background:inherit;
  195. background-color:rgba(255, 255, 255, 0);
  196. border:none;
  197. border-radius:0px;
  198. -moz-box-shadow:none;
  199. -webkit-box-shadow:none;
  200. box-shadow:none;
  201. font-size:24px;
  202. color:#666666;
  203. }
  204. #u366 {
  205. border-width:0px;
  206. position:absolute;
  207. left:728px;
  208. top:18px;
  209. width:49px;
  210. height:29px;
  211. font-size:24px;
  212. color:#666666;
  213. }
  214. #u366_text {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:49px;
  220. white-space:nowrap;
  221. }
  222. #u367_div {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:97px;
  228. height:29px;
  229. background:inherit;
  230. background-color:rgba(255, 255, 255, 0);
  231. border:none;
  232. border-radius:0px;
  233. -moz-box-shadow:none;
  234. -webkit-box-shadow:none;
  235. box-shadow:none;
  236. font-size:24px;
  237. color:#666666;
  238. }
  239. #u367 {
  240. border-width:0px;
  241. position:absolute;
  242. left:807px;
  243. top:18px;
  244. width:97px;
  245. height:29px;
  246. font-size:24px;
  247. color:#666666;
  248. }
  249. #u367_text {
  250. border-width:0px;
  251. position:absolute;
  252. left:0px;
  253. top:0px;
  254. width:97px;
  255. white-space:nowrap;
  256. }
  257. #u368_div {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:49px;
  263. height:29px;
  264. background:inherit;
  265. background-color:rgba(255, 255, 255, 0);
  266. border:none;
  267. border-radius:0px;
  268. -moz-box-shadow:none;
  269. -webkit-box-shadow:none;
  270. box-shadow:none;
  271. font-size:24px;
  272. color:#666666;
  273. }
  274. #u368 {
  275. border-width:0px;
  276. position:absolute;
  277. left:586px;
  278. top:18px;
  279. width:49px;
  280. height:29px;
  281. font-size:24px;
  282. color:#666666;
  283. }
  284. #u368_text {
  285. border-width:0px;
  286. position:absolute;
  287. left:0px;
  288. top:0px;
  289. width:49px;
  290. white-space:nowrap;
  291. }
  292. #u369_div {
  293. border-width:0px;
  294. position:absolute;
  295. left:0px;
  296. top:0px;
  297. width:33px;
  298. height:19px;
  299. background:inherit;
  300. background-color:rgba(255, 255, 255, 0);
  301. border:none;
  302. border-radius:0px;
  303. -moz-box-shadow:none;
  304. -webkit-box-shadow:none;
  305. box-shadow:none;
  306. font-size:16px;
  307. }
  308. #u369 {
  309. border-width:0px;
  310. position:absolute;
  311. left:1164px;
  312. top:23px;
  313. width:33px;
  314. height:19px;
  315. font-size:16px;
  316. }
  317. #u369_text {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:33px;
  323. white-space:nowrap;
  324. }
  325. #u370_div {
  326. border-width:0px;
  327. position:absolute;
  328. left:0px;
  329. top:0px;
  330. width:33px;
  331. height:19px;
  332. background:inherit;
  333. background-color:rgba(255, 255, 255, 0);
  334. border:none;
  335. border-radius:0px;
  336. -moz-box-shadow:none;
  337. -webkit-box-shadow:none;
  338. box-shadow:none;
  339. font-size:16px;
  340. }
  341. #u370 {
  342. border-width:0px;
  343. position:absolute;
  344. left:1214px;
  345. top:23px;
  346. width:33px;
  347. height:19px;
  348. font-size:16px;
  349. }
  350. #u370_text {
  351. border-width:0px;
  352. position:absolute;
  353. left:0px;
  354. top:0px;
  355. width:33px;
  356. white-space:nowrap;
  357. }
  358. #u371_div {
  359. border-width:0px;
  360. position:absolute;
  361. left:0px;
  362. top:0px;
  363. width:16px;
  364. height:18px;
  365. background:inherit;
  366. background-color:rgba(255, 255, 255, 0);
  367. border:none;
  368. border-radius:0px;
  369. -moz-box-shadow:none;
  370. -webkit-box-shadow:none;
  371. box-shadow:none;
  372. }
  373. #u371 {
  374. border-width:0px;
  375. position:absolute;
  376. left:1203px;
  377. top:24px;
  378. width:16px;
  379. height:18px;
  380. }
  381. #u371_text {
  382. border-width:0px;
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:16px;
  387. word-wrap:break-word;
  388. }
  389. #u372_div {
  390. border-width:0px;
  391. position:absolute;
  392. left:0px;
  393. top:0px;
  394. width:65px;
  395. height:19px;
  396. background:inherit;
  397. background-color:rgba(255, 255, 255, 0);
  398. border:none;
  399. border-radius:0px;
  400. -moz-box-shadow:none;
  401. -webkit-box-shadow:none;
  402. box-shadow:none;
  403. font-size:16px;
  404. }
  405. #u372 {
  406. border-width:0px;
  407. position:absolute;
  408. left:1257px;
  409. top:23px;
  410. width:65px;
  411. height:19px;
  412. font-size:16px;
  413. }
  414. #u372_text {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:65px;
  420. white-space:nowrap;
  421. }
  422. #u373_div {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:117px;
  428. height:47px;
  429. background:inherit;
  430. background-color:rgba(255, 255, 255, 0);
  431. border:none;
  432. border-radius:0px;
  433. -moz-box-shadow:none;
  434. -webkit-box-shadow:none;
  435. box-shadow:none;
  436. font-family:'Arial Normal', 'Arial';
  437. font-weight:400;
  438. font-style:normal;
  439. font-size:40px;
  440. color:#666666;
  441. }
  442. #u373 {
  443. border-width:0px;
  444. position:absolute;
  445. left:201px;
  446. top:9px;
  447. width:117px;
  448. height:47px;
  449. font-family:'Arial Normal', 'Arial';
  450. font-weight:400;
  451. font-style:normal;
  452. font-size:40px;
  453. color:#666666;
  454. }
  455. #u373_text {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:117px;
  461. white-space:nowrap;
  462. }
  463. #u374_div {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:452px;
  469. height:19px;
  470. background:inherit;
  471. background-color:rgba(255, 255, 255, 0);
  472. border:none;
  473. border-radius:0px;
  474. -moz-box-shadow:none;
  475. -webkit-box-shadow:none;
  476. box-shadow:none;
  477. font-size:16px;
  478. color:#666666;
  479. }
  480. #u374 {
  481. border-width:0px;
  482. position:absolute;
  483. left:201px;
  484. top:82px;
  485. width:452px;
  486. height:19px;
  487. font-size:16px;
  488. color:#666666;
  489. }
  490. #u374_text {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:452px;
  496. white-space:nowrap;
  497. }
  498. #u375_div {
  499. border-width:0px;
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:697px;
  504. height:37px;
  505. background:inherit;
  506. background-color:rgba(255, 255, 255, 0);
  507. border:none;
  508. border-radius:0px;
  509. -moz-box-shadow:none;
  510. -webkit-box-shadow:none;
  511. box-shadow:none;
  512. font-size:32px;
  513. }
  514. #u375 {
  515. border-width:0px;
  516. position:absolute;
  517. left:201px;
  518. top:147px;
  519. width:697px;
  520. height:37px;
  521. font-size:32px;
  522. }
  523. #u375_text {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:697px;
  529. white-space:nowrap;
  530. }
  531. #u376_img {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:60px;
  537. height:60px;
  538. }
  539. #u376 {
  540. border-width:0px;
  541. position:absolute;
  542. left:201px;
  543. top:226px;
  544. width:60px;
  545. height:60px;
  546. }
  547. #u376_text {
  548. border-width:0px;
  549. position:absolute;
  550. left:2px;
  551. top:22px;
  552. width:56px;
  553. word-wrap:break-word;
  554. }
  555. #u377_img {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:810px;
  561. height:2px;
  562. }
  563. #u377 {
  564. border-width:0px;
  565. position:absolute;
  566. left:201px;
  567. top:212px;
  568. width:809px;
  569. height:1px;
  570. }
  571. #u377_text {
  572. border-width:0px;
  573. position:absolute;
  574. left:0px;
  575. top:0px;
  576. width:0px;
  577. visibility:hidden;
  578. word-wrap:break-word;
  579. }
  580. #u378_img {
  581. border-width:0px;
  582. position:absolute;
  583. left:0px;
  584. top:0px;
  585. width:810px;
  586. height:2px;
  587. }
  588. #u378 {
  589. border-width:0px;
  590. position:absolute;
  591. left:201px;
  592. top:300px;
  593. width:809px;
  594. height:1px;
  595. }
  596. #u378_text {
  597. border-width:0px;
  598. position:absolute;
  599. left:0px;
  600. top:0px;
  601. width:0px;
  602. visibility:hidden;
  603. word-wrap:break-word;
  604. }
  605. #u379_div {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:0px;
  610. width:67px;
  611. height:19px;
  612. background:inherit;
  613. background-color:rgba(255, 255, 255, 0);
  614. border:none;
  615. border-radius:0px;
  616. -moz-box-shadow:none;
  617. -webkit-box-shadow:none;
  618. box-shadow:none;
  619. font-size:16px;
  620. color:#666666;
  621. }
  622. #u379 {
  623. border-width:0px;
  624. position:absolute;
  625. left:274px;
  626. top:247px;
  627. width:67px;
  628. height:19px;
  629. font-size:16px;
  630. color:#666666;
  631. }
  632. #u379_text {
  633. border-width:0px;
  634. position:absolute;
  635. left:0px;
  636. top:0px;
  637. width:67px;
  638. white-space:nowrap;
  639. }
  640. #u380_div {
  641. border-width:0px;
  642. position:absolute;
  643. left:0px;
  644. top:0px;
  645. width:97px;
  646. height:19px;
  647. background:inherit;
  648. background-color:rgba(255, 255, 255, 0);
  649. border:none;
  650. border-radius:0px;
  651. -moz-box-shadow:none;
  652. -webkit-box-shadow:none;
  653. box-shadow:none;
  654. font-size:16px;
  655. color:#666666;
  656. }
  657. #u380 {
  658. border-width:0px;
  659. position:absolute;
  660. left:430px;
  661. top:247px;
  662. width:97px;
  663. height:19px;
  664. font-size:16px;
  665. color:#666666;
  666. }
  667. #u380_text {
  668. border-width:0px;
  669. position:absolute;
  670. left:0px;
  671. top:0px;
  672. width:97px;
  673. word-wrap:break-word;
  674. }
  675. #u381_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:340px;
  681. height:53px;
  682. background:inherit;
  683. background-color:rgba(242, 242, 242, 1);
  684. border:none;
  685. border-radius:0px;
  686. -moz-box-shadow:none;
  687. -webkit-box-shadow:none;
  688. box-shadow:none;
  689. }
  690. #u381 {
  691. border-width:0px;
  692. position:absolute;
  693. left:1065px;
  694. top:525px;
  695. width:340px;
  696. height:53px;
  697. }
  698. #u381_text {
  699. border-width:0px;
  700. position:absolute;
  701. left:0px;
  702. top:0px;
  703. width:0px;
  704. visibility:hidden;
  705. word-wrap:break-word;
  706. }
  707. #u382_div {
  708. border-width:0px;
  709. position:absolute;
  710. left:0px;
  711. top:0px;
  712. width:27px;
  713. height:35px;
  714. background:inherit;
  715. background-color:rgba(255, 255, 255, 0);
  716. border:none;
  717. border-radius:0px;
  718. -moz-box-shadow:none;
  719. -webkit-box-shadow:none;
  720. box-shadow:none;
  721. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  722. font-weight:700;
  723. font-style:normal;
  724. font-size:30px;
  725. }
  726. #u382 {
  727. border-width:0px;
  728. position:absolute;
  729. left:1075px;
  730. top:537px;
  731. width:27px;
  732. height:35px;
  733. -webkit-transform:rotate(8deg);
  734. -moz-transform:rotate(8deg);
  735. -ms-transform:rotate(8deg);
  736. transform:rotate(8deg);
  737. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  738. font-weight:700;
  739. font-style:normal;
  740. font-size:30px;
  741. }
  742. #u382_text {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:27px;
  748. white-space:nowrap;
  749. }
  750. #u383_div {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:311px;
  756. height:23px;
  757. background:inherit;
  758. background-color:rgba(255, 255, 255, 0);
  759. border:none;
  760. border-radius:0px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-size:20px;
  765. }
  766. #u383 {
  767. border-width:0px;
  768. position:absolute;
  769. left:1118px;
  770. top:539px;
  771. width:311px;
  772. height:23px;
  773. font-size:20px;
  774. }
  775. #u383_text {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:311px;
  781. word-wrap:break-word;
  782. }
  783. #u384_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:340px;
  789. height:53px;
  790. background:inherit;
  791. background-color:rgba(242, 242, 242, 1);
  792. border:none;
  793. border-radius:0px;
  794. -moz-box-shadow:none;
  795. -webkit-box-shadow:none;
  796. box-shadow:none;
  797. }
  798. #u384 {
  799. border-width:0px;
  800. position:absolute;
  801. left:1065px;
  802. top:588px;
  803. width:340px;
  804. height:53px;
  805. }
  806. #u384_text {
  807. border-width:0px;
  808. position:absolute;
  809. left:0px;
  810. top:0px;
  811. width:0px;
  812. visibility:hidden;
  813. word-wrap:break-word;
  814. }
  815. #u385_div {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:27px;
  821. height:35px;
  822. background:inherit;
  823. background-color:rgba(255, 255, 255, 0);
  824. border:none;
  825. border-radius:0px;
  826. -moz-box-shadow:none;
  827. -webkit-box-shadow:none;
  828. box-shadow:none;
  829. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  830. font-weight:700;
  831. font-style:normal;
  832. font-size:30px;
  833. }
  834. #u385 {
  835. border-width:0px;
  836. position:absolute;
  837. left:1075px;
  838. top:601px;
  839. width:27px;
  840. height:35px;
  841. -webkit-transform:rotate(8deg);
  842. -moz-transform:rotate(8deg);
  843. -ms-transform:rotate(8deg);
  844. transform:rotate(8deg);
  845. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  846. font-weight:700;
  847. font-style:normal;
  848. font-size:30px;
  849. }
  850. #u385_text {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:27px;
  856. white-space:nowrap;
  857. }
  858. #u386_div {
  859. border-width:0px;
  860. position:absolute;
  861. left:0px;
  862. top:0px;
  863. width:311px;
  864. height:23px;
  865. background:inherit;
  866. background-color:rgba(255, 255, 255, 0);
  867. border:none;
  868. border-radius:0px;
  869. -moz-box-shadow:none;
  870. -webkit-box-shadow:none;
  871. box-shadow:none;
  872. font-size:20px;
  873. }
  874. #u386 {
  875. border-width:0px;
  876. position:absolute;
  877. left:1118px;
  878. top:603px;
  879. width:311px;
  880. height:23px;
  881. font-size:20px;
  882. }
  883. #u386_text {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:311px;
  889. word-wrap:break-word;
  890. }
  891. #u387_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:340px;
  897. height:53px;
  898. background:inherit;
  899. background-color:rgba(242, 242, 242, 1);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u387 {
  907. border-width:0px;
  908. position:absolute;
  909. left:1065px;
  910. top:651px;
  911. width:340px;
  912. height:53px;
  913. }
  914. #u387_text {
  915. border-width:0px;
  916. position:absolute;
  917. left:0px;
  918. top:0px;
  919. width:0px;
  920. visibility:hidden;
  921. word-wrap:break-word;
  922. }
  923. #u388_div {
  924. border-width:0px;
  925. position:absolute;
  926. left:0px;
  927. top:0px;
  928. width:340px;
  929. height:53px;
  930. background:inherit;
  931. background-color:rgba(242, 242, 242, 1);
  932. border:none;
  933. border-radius:0px;
  934. -moz-box-shadow:none;
  935. -webkit-box-shadow:none;
  936. box-shadow:none;
  937. }
  938. #u388 {
  939. border-width:0px;
  940. position:absolute;
  941. left:1065px;
  942. top:714px;
  943. width:340px;
  944. height:53px;
  945. }
  946. #u388_text {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. visibility:hidden;
  953. word-wrap:break-word;
  954. }
  955. #u389_div {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:27px;
  961. height:35px;
  962. background:inherit;
  963. background-color:rgba(255, 255, 255, 0);
  964. border:none;
  965. border-radius:0px;
  966. -moz-box-shadow:none;
  967. -webkit-box-shadow:none;
  968. box-shadow:none;
  969. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  970. font-weight:700;
  971. font-style:normal;
  972. font-size:30px;
  973. }
  974. #u389 {
  975. border-width:0px;
  976. position:absolute;
  977. left:1075px;
  978. top:668px;
  979. width:27px;
  980. height:35px;
  981. -webkit-transform:rotate(8deg);
  982. -moz-transform:rotate(8deg);
  983. -ms-transform:rotate(8deg);
  984. transform:rotate(8deg);
  985. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  986. font-weight:700;
  987. font-style:normal;
  988. font-size:30px;
  989. }
  990. #u389_text {
  991. border-width:0px;
  992. position:absolute;
  993. left:0px;
  994. top:0px;
  995. width:27px;
  996. white-space:nowrap;
  997. }
  998. #u390_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:27px;
  1004. height:35px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1013. font-weight:700;
  1014. font-style:normal;
  1015. font-size:30px;
  1016. }
  1017. #u390 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:1075px;
  1021. top:726px;
  1022. width:27px;
  1023. height:35px;
  1024. -webkit-transform:rotate(8deg);
  1025. -moz-transform:rotate(8deg);
  1026. -ms-transform:rotate(8deg);
  1027. transform:rotate(8deg);
  1028. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1029. font-weight:700;
  1030. font-style:normal;
  1031. font-size:30px;
  1032. }
  1033. #u390_text {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:27px;
  1039. white-space:nowrap;
  1040. }
  1041. #u391_div {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:0px;
  1045. top:0px;
  1046. width:311px;
  1047. height:23px;
  1048. background:inherit;
  1049. background-color:rgba(255, 255, 255, 0);
  1050. border:none;
  1051. border-radius:0px;
  1052. -moz-box-shadow:none;
  1053. -webkit-box-shadow:none;
  1054. box-shadow:none;
  1055. font-size:20px;
  1056. }
  1057. #u391 {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:1118px;
  1061. top:672px;
  1062. width:311px;
  1063. height:23px;
  1064. font-size:20px;
  1065. }
  1066. #u391_text {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:0px;
  1070. top:0px;
  1071. width:311px;
  1072. word-wrap:break-word;
  1073. }
  1074. #u392_div {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:0px;
  1078. top:0px;
  1079. width:311px;
  1080. height:23px;
  1081. background:inherit;
  1082. background-color:rgba(255, 255, 255, 0);
  1083. border:none;
  1084. border-radius:0px;
  1085. -moz-box-shadow:none;
  1086. -webkit-box-shadow:none;
  1087. box-shadow:none;
  1088. font-size:20px;
  1089. }
  1090. #u392 {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:1114px;
  1094. top:729px;
  1095. width:311px;
  1096. height:23px;
  1097. font-size:20px;
  1098. }
  1099. #u392_text {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:311px;
  1105. word-wrap:break-word;
  1106. }
  1107. #u393_div {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:340px;
  1113. height:53px;
  1114. background:inherit;
  1115. background-color:rgba(242, 242, 242, 1);
  1116. border:none;
  1117. border-radius:0px;
  1118. -moz-box-shadow:none;
  1119. -webkit-box-shadow:none;
  1120. box-shadow:none;
  1121. }
  1122. #u393 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:1065px;
  1126. top:777px;
  1127. width:340px;
  1128. height:53px;
  1129. }
  1130. #u393_text {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:0px;
  1134. top:0px;
  1135. width:0px;
  1136. visibility:hidden;
  1137. word-wrap:break-word;
  1138. }
  1139. #u394_div {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:340px;
  1145. height:53px;
  1146. background:inherit;
  1147. background-color:rgba(242, 242, 242, 1);
  1148. border:none;
  1149. border-radius:0px;
  1150. -moz-box-shadow:none;
  1151. -webkit-box-shadow:none;
  1152. box-shadow:none;
  1153. }
  1154. #u394 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1065px;
  1158. top:840px;
  1159. width:340px;
  1160. height:53px;
  1161. }
  1162. #u394_text {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. visibility:hidden;
  1169. word-wrap:break-word;
  1170. }
  1171. #u395_div {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:340px;
  1177. height:53px;
  1178. background:inherit;
  1179. background-color:rgba(242, 242, 242, 1);
  1180. border:none;
  1181. border-radius:0px;
  1182. -moz-box-shadow:none;
  1183. -webkit-box-shadow:none;
  1184. box-shadow:none;
  1185. }
  1186. #u395 {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:1065px;
  1190. top:903px;
  1191. width:340px;
  1192. height:53px;
  1193. }
  1194. #u395_text {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:0px;
  1198. top:0px;
  1199. width:0px;
  1200. visibility:hidden;
  1201. word-wrap:break-word;
  1202. }
  1203. #u396_div {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:27px;
  1209. height:35px;
  1210. background:inherit;
  1211. background-color:rgba(255, 255, 255, 0);
  1212. border:none;
  1213. border-radius:0px;
  1214. -moz-box-shadow:none;
  1215. -webkit-box-shadow:none;
  1216. box-shadow:none;
  1217. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1218. font-weight:700;
  1219. font-style:normal;
  1220. font-size:30px;
  1221. }
  1222. #u396 {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:1075px;
  1226. top:786px;
  1227. width:27px;
  1228. height:35px;
  1229. -webkit-transform:rotate(8deg);
  1230. -moz-transform:rotate(8deg);
  1231. -ms-transform:rotate(8deg);
  1232. transform:rotate(8deg);
  1233. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1234. font-weight:700;
  1235. font-style:normal;
  1236. font-size:30px;
  1237. }
  1238. #u396_text {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:27px;
  1244. white-space:nowrap;
  1245. }
  1246. #u397_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:311px;
  1252. height:23px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-size:20px;
  1261. }
  1262. #u397 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:1118px;
  1266. top:792px;
  1267. width:311px;
  1268. height:23px;
  1269. font-size:20px;
  1270. }
  1271. #u397_text {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:311px;
  1277. word-wrap:break-word;
  1278. }
  1279. #u398_div {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:27px;
  1285. height:35px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 0);
  1288. border:none;
  1289. border-radius:0px;
  1290. -moz-box-shadow:none;
  1291. -webkit-box-shadow:none;
  1292. box-shadow:none;
  1293. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1294. font-weight:700;
  1295. font-style:normal;
  1296. font-size:30px;
  1297. }
  1298. #u398 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1075px;
  1302. top:851px;
  1303. width:27px;
  1304. height:35px;
  1305. -webkit-transform:rotate(8deg);
  1306. -moz-transform:rotate(8deg);
  1307. -ms-transform:rotate(8deg);
  1308. transform:rotate(8deg);
  1309. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1310. font-weight:700;
  1311. font-style:normal;
  1312. font-size:30px;
  1313. }
  1314. #u398_text {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:27px;
  1320. white-space:nowrap;
  1321. }
  1322. #u399_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:311px;
  1328. height:23px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:0px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-size:20px;
  1337. }
  1338. #u399 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:1118px;
  1342. top:855px;
  1343. width:311px;
  1344. height:23px;
  1345. font-size:20px;
  1346. }
  1347. #u399_text {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:311px;
  1353. word-wrap:break-word;
  1354. }
  1355. #u400_div {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:27px;
  1361. height:35px;
  1362. background:inherit;
  1363. background-color:rgba(255, 255, 255, 0);
  1364. border:none;
  1365. border-radius:0px;
  1366. -moz-box-shadow:none;
  1367. -webkit-box-shadow:none;
  1368. box-shadow:none;
  1369. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1370. font-weight:700;
  1371. font-style:normal;
  1372. font-size:30px;
  1373. }
  1374. #u400 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:1075px;
  1378. top:915px;
  1379. width:27px;
  1380. height:35px;
  1381. -webkit-transform:rotate(8deg);
  1382. -moz-transform:rotate(8deg);
  1383. -ms-transform:rotate(8deg);
  1384. transform:rotate(8deg);
  1385. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1386. font-weight:700;
  1387. font-style:normal;
  1388. font-size:30px;
  1389. }
  1390. #u400_text {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:27px;
  1396. white-space:nowrap;
  1397. }
  1398. #u401_div {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:311px;
  1404. height:23px;
  1405. background:inherit;
  1406. background-color:rgba(255, 255, 255, 0);
  1407. border:none;
  1408. border-radius:0px;
  1409. -moz-box-shadow:none;
  1410. -webkit-box-shadow:none;
  1411. box-shadow:none;
  1412. font-size:20px;
  1413. }
  1414. #u401 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:1118px;
  1418. top:918px;
  1419. width:311px;
  1420. height:23px;
  1421. font-size:20px;
  1422. }
  1423. #u401_text {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:311px;
  1429. word-wrap:break-word;
  1430. }
  1431. #u402_img {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:341px;
  1437. height:2px;
  1438. }
  1439. #u402 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:1065px;
  1443. top:511px;
  1444. width:340px;
  1445. height:1px;
  1446. }
  1447. #u402_text {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:0px;
  1453. visibility:hidden;
  1454. word-wrap:break-word;
  1455. }
  1456. #u403_div {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:0px;
  1460. top:0px;
  1461. width:340px;
  1462. height:53px;
  1463. background:inherit;
  1464. background-color:rgba(0, 0, 0, 1);
  1465. border:none;
  1466. border-radius:0px;
  1467. -moz-box-shadow:none;
  1468. -webkit-box-shadow:none;
  1469. box-shadow:none;
  1470. }
  1471. #u403 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:1065px;
  1475. top:445px;
  1476. width:340px;
  1477. height:53px;
  1478. }
  1479. #u403_text {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:0px;
  1485. visibility:hidden;
  1486. word-wrap:break-word;
  1487. }
  1488. #u404_img {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:334px;
  1494. height:254px;
  1495. }
  1496. #u404 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:1065px;
  1500. top:147px;
  1501. width:334px;
  1502. height:254px;
  1503. }
  1504. #u404_text {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:2px;
  1508. top:120px;
  1509. width:330px;
  1510. word-wrap:break-word;
  1511. }
  1512. #u405_div {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:123px;
  1518. height:35px;
  1519. background:inherit;
  1520. background-color:rgba(255, 255, 255, 0);
  1521. border:none;
  1522. border-radius:0px;
  1523. -moz-box-shadow:none;
  1524. -webkit-box-shadow:none;
  1525. box-shadow:none;
  1526. font-size:30px;
  1527. color:#FFFFFF;
  1528. }
  1529. #u405 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:1073px;
  1533. top:454px;
  1534. width:123px;
  1535. height:35px;
  1536. font-size:30px;
  1537. color:#FFFFFF;
  1538. }
  1539. #u405_text {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:123px;
  1545. white-space:nowrap;
  1546. }
  1547. #u406_div {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:0px;
  1551. top:0px;
  1552. width:809px;
  1553. height:193px;
  1554. background:inherit;
  1555. background-color:rgba(242, 242, 242, 1);
  1556. border:none;
  1557. border-radius:0px;
  1558. -moz-box-shadow:none;
  1559. -webkit-box-shadow:none;
  1560. box-shadow:none;
  1561. }
  1562. #u406 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:201px;
  1566. top:319px;
  1567. width:809px;
  1568. height:193px;
  1569. }
  1570. #u406_text {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:0px;
  1576. visibility:hidden;
  1577. word-wrap:break-word;
  1578. }
  1579. #u407_div {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:700px;
  1585. height:134px;
  1586. background:inherit;
  1587. background-color:rgba(255, 255, 255, 0);
  1588. border:none;
  1589. border-radius:0px;
  1590. -moz-box-shadow:none;
  1591. -webkit-box-shadow:none;
  1592. box-shadow:none;
  1593. font-size:16px;
  1594. }
  1595. #u407 {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:263px;
  1599. top:348px;
  1600. width:700px;
  1601. height:134px;
  1602. font-size:16px;
  1603. }
  1604. #u407_text {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:0px;
  1608. top:0px;
  1609. width:700px;
  1610. word-wrap:break-word;
  1611. }
  1612. #u408_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:32px;
  1618. height:32px;
  1619. }
  1620. #u408 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:214px;
  1624. top:332px;
  1625. width:32px;
  1626. height:32px;
  1627. }
  1628. #u408_text {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:0px;
  1634. visibility:hidden;
  1635. word-wrap:break-word;
  1636. }
  1637. #u409_img {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:32px;
  1643. height:32px;
  1644. }
  1645. #u409 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:961px;
  1649. top:466px;
  1650. width:32px;
  1651. height:32px;
  1652. -webkit-transform:rotate(178deg);
  1653. -moz-transform:rotate(178deg);
  1654. -ms-transform:rotate(178deg);
  1655. transform:rotate(178deg);
  1656. }
  1657. #u409_text {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:0px;
  1663. visibility:hidden;
  1664. -webkit-transform:rotate(47deg);
  1665. -moz-transform:rotate(47deg);
  1666. -ms-transform:rotate(47deg);
  1667. transform:rotate(47deg);
  1668. word-wrap:break-word;
  1669. }
  1670. #u410_div {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:0px;
  1674. top:0px;
  1675. width:809px;
  1676. height:58px;
  1677. background:inherit;
  1678. background-color:rgba(255, 255, 255, 0);
  1679. border:none;
  1680. border-radius:0px;
  1681. -moz-box-shadow:none;
  1682. -webkit-box-shadow:none;
  1683. box-shadow:none;
  1684. font-size:16px;
  1685. }
  1686. #u410 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:201px;
  1690. top:533px;
  1691. width:809px;
  1692. height:58px;
  1693. font-size:16px;
  1694. }
  1695. #u410_text {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:809px;
  1701. word-wrap:break-word;
  1702. }
  1703. #u411_div {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:809px;
  1709. height:483px;
  1710. background:inherit;
  1711. background-color:rgba(228, 228, 228, 1);
  1712. border:none;
  1713. border-radius:0px;
  1714. -moz-box-shadow:none;
  1715. -webkit-box-shadow:none;
  1716. box-shadow:none;
  1717. }
  1718. #u411 {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:201px;
  1722. top:616px;
  1723. width:809px;
  1724. height:483px;
  1725. }
  1726. #u411_text {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:0px;
  1732. visibility:hidden;
  1733. word-wrap:break-word;
  1734. }
  1735. #u412_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:809px;
  1741. height:483px;
  1742. background:inherit;
  1743. background-color:rgba(228, 228, 228, 1);
  1744. border:none;
  1745. border-radius:0px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. }
  1750. #u412 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:201px;
  1754. top:1112px;
  1755. width:809px;
  1756. height:483px;
  1757. }
  1758. #u412_text {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:0px;
  1764. visibility:hidden;
  1765. word-wrap:break-word;
  1766. }
  1767. #u413_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:809px;
  1773. height:58px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 0);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-size:16px;
  1782. }
  1783. #u413 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:201px;
  1787. top:1622px;
  1788. width:809px;
  1789. height:58px;
  1790. font-size:16px;
  1791. }
  1792. #u413_text {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:809px;
  1798. word-wrap:break-word;
  1799. }
  1800. #u414_div {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:809px;
  1806. height:685px;
  1807. background:inherit;
  1808. background-color:rgba(228, 228, 228, 1);
  1809. border:none;
  1810. border-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. }
  1815. #u414 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:201px;
  1819. top:1703px;
  1820. width:809px;
  1821. height:685px;
  1822. }
  1823. #u414_text {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:0px;
  1829. visibility:hidden;
  1830. word-wrap:break-word;
  1831. }
  1832. #u415_div {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:809px;
  1838. height:77px;
  1839. background:inherit;
  1840. background-color:rgba(255, 255, 255, 0);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:16px;
  1847. }
  1848. #u415 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:201px;
  1852. top:2448px;
  1853. width:809px;
  1854. height:77px;
  1855. font-size:16px;
  1856. }
  1857. #u415_text {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:809px;
  1863. word-wrap:break-word;
  1864. }
  1865. #u416_div {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:75px;
  1871. height:22px;
  1872. background:inherit;
  1873. background-color:rgba(255, 255, 255, 0);
  1874. border:none;
  1875. border-radius:0px;
  1876. -moz-box-shadow:none;
  1877. -webkit-box-shadow:none;
  1878. box-shadow:none;
  1879. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1880. font-weight:700;
  1881. font-style:normal;
  1882. font-size:18px;
  1883. }
  1884. #u416 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:230px;
  1888. top:2405px;
  1889. width:75px;
  1890. height:22px;
  1891. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1892. font-weight:700;
  1893. font-style:normal;
  1894. font-size:18px;
  1895. }
  1896. #u416_text {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:75px;
  1902. white-space:nowrap;
  1903. }
  1904. #u417_div {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:809px;
  1910. height:555px;
  1911. background:inherit;
  1912. background-color:rgba(228, 228, 228, 1);
  1913. border:none;
  1914. border-radius:0px;
  1915. -moz-box-shadow:none;
  1916. -webkit-box-shadow:none;
  1917. box-shadow:none;
  1918. }
  1919. #u417 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:201px;
  1923. top:2548px;
  1924. width:809px;
  1925. height:555px;
  1926. }
  1927. #u417_text {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:0px;
  1933. visibility:hidden;
  1934. word-wrap:break-word;
  1935. }
  1936. #u418_div {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:809px;
  1942. height:77px;
  1943. background:inherit;
  1944. background-color:rgba(255, 255, 255, 0);
  1945. border:none;
  1946. border-radius:0px;
  1947. -moz-box-shadow:none;
  1948. -webkit-box-shadow:none;
  1949. box-shadow:none;
  1950. font-size:16px;
  1951. }
  1952. #u418 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:201px;
  1956. top:3127px;
  1957. width:809px;
  1958. height:77px;
  1959. font-size:16px;
  1960. }
  1961. #u418_text {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:809px;
  1967. word-wrap:break-word;
  1968. }
  1969. #u419_img {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:0px;
  1973. top:0px;
  1974. width:810px;
  1975. height:2px;
  1976. }
  1977. #u419 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:201px;
  1981. top:3283px;
  1982. width:809px;
  1983. height:1px;
  1984. }
  1985. #u419_text {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:0px;
  1991. visibility:hidden;
  1992. word-wrap:break-word;
  1993. }
  1994. #u420_div {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:1598px;
  2000. height:55px;
  2001. background:inherit;
  2002. background-color:rgba(174, 174, 174, 1);
  2003. border:none;
  2004. border-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. }
  2009. #u420 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:3916px;
  2014. width:1598px;
  2015. height:55px;
  2016. }
  2017. #u420_text {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:0px;
  2023. visibility:hidden;
  2024. word-wrap:break-word;
  2025. }
  2026. #u421_div {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:84px;
  2032. height:19px;
  2033. background:inherit;
  2034. background-color:rgba(255, 255, 255, 0);
  2035. border:none;
  2036. border-radius:0px;
  2037. -moz-box-shadow:none;
  2038. -webkit-box-shadow:none;
  2039. box-shadow:none;
  2040. font-size:16px;
  2041. color:#F2F2F2;
  2042. }
  2043. #u421 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:241px;
  2047. top:3934px;
  2048. width:84px;
  2049. height:19px;
  2050. font-size:16px;
  2051. color:#F2F2F2;
  2052. }
  2053. #u421_text {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:84px;
  2059. white-space:nowrap;
  2060. }
  2061. #u422_div {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:113px;
  2067. height:19px;
  2068. background:inherit;
  2069. background-color:rgba(255, 255, 255, 0);
  2070. border:none;
  2071. border-radius:0px;
  2072. -moz-box-shadow:none;
  2073. -webkit-box-shadow:none;
  2074. box-shadow:none;
  2075. font-size:16px;
  2076. color:#F2F2F2;
  2077. }
  2078. #u422 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:329px;
  2082. top:3934px;
  2083. width:113px;
  2084. height:19px;
  2085. font-size:16px;
  2086. color:#F2F2F2;
  2087. }
  2088. #u422_text {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:113px;
  2094. white-space:nowrap;
  2095. }
  2096. #u423_div {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:65px;
  2102. height:19px;
  2103. background:inherit;
  2104. background-color:rgba(255, 255, 255, 0);
  2105. border:none;
  2106. border-radius:0px;
  2107. -moz-box-shadow:none;
  2108. -webkit-box-shadow:none;
  2109. box-shadow:none;
  2110. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2111. font-weight:700;
  2112. font-style:normal;
  2113. font-size:16px;
  2114. color:#F2F2F2;
  2115. }
  2116. #u423 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:592px;
  2120. top:3934px;
  2121. width:65px;
  2122. height:19px;
  2123. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2124. font-weight:700;
  2125. font-style:normal;
  2126. font-size:16px;
  2127. color:#F2F2F2;
  2128. }
  2129. #u423_text {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:65px;
  2135. white-space:nowrap;
  2136. }
  2137. #u424_div {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:65px;
  2143. height:19px;
  2144. background:inherit;
  2145. background-color:rgba(255, 255, 255, 0);
  2146. border:none;
  2147. border-radius:0px;
  2148. -moz-box-shadow:none;
  2149. -webkit-box-shadow:none;
  2150. box-shadow:none;
  2151. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2152. font-weight:700;
  2153. font-style:normal;
  2154. font-size:16px;
  2155. color:#F2F2F2;
  2156. }
  2157. #u424 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:853px;
  2161. top:3934px;
  2162. width:65px;
  2163. height:19px;
  2164. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2165. font-weight:700;
  2166. font-style:normal;
  2167. font-size:16px;
  2168. color:#F2F2F2;
  2169. }
  2170. #u424_text {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:65px;
  2176. white-space:nowrap;
  2177. }
  2178. #u425_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:65px;
  2184. height:19px;
  2185. background:inherit;
  2186. background-color:rgba(255, 255, 255, 0);
  2187. border:none;
  2188. border-radius:0px;
  2189. -moz-box-shadow:none;
  2190. -webkit-box-shadow:none;
  2191. box-shadow:none;
  2192. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2193. font-weight:700;
  2194. font-style:normal;
  2195. font-size:16px;
  2196. color:#F2F2F2;
  2197. }
  2198. #u425 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:1092px;
  2202. top:3934px;
  2203. width:65px;
  2204. height:19px;
  2205. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2206. font-weight:700;
  2207. font-style:normal;
  2208. font-size:16px;
  2209. color:#F2F2F2;
  2210. }
  2211. #u425_text {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:65px;
  2217. white-space:nowrap;
  2218. }
  2219. #u426_div {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:65px;
  2225. height:19px;
  2226. background:inherit;
  2227. background-color:rgba(255, 255, 255, 0);
  2228. border:none;
  2229. border-radius:0px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2234. font-weight:700;
  2235. font-style:normal;
  2236. font-size:16px;
  2237. color:#F2F2F2;
  2238. }
  2239. #u426 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:1336px;
  2243. top:3934px;
  2244. width:65px;
  2245. height:19px;
  2246. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2247. font-weight:700;
  2248. font-style:normal;
  2249. font-size:16px;
  2250. color:#F2F2F2;
  2251. }
  2252. #u426_text {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:65px;
  2258. white-space:nowrap;
  2259. }
  2260. #u427_div {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:1598px;
  2266. height:179px;
  2267. background:inherit;
  2268. background-color:rgba(51, 51, 51, 1);
  2269. border:none;
  2270. border-radius:0px;
  2271. -moz-box-shadow:none;
  2272. -webkit-box-shadow:none;
  2273. box-shadow:none;
  2274. }
  2275. #u427 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:3971px;
  2280. width:1598px;
  2281. height:179px;
  2282. }
  2283. #u427_text {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:0px;
  2289. visibility:hidden;
  2290. word-wrap:break-word;
  2291. }
  2292. #u428_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:454px;
  2298. height:19px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 0);
  2301. border:none;
  2302. border-radius:0px;
  2303. -moz-box-shadow:none;
  2304. -webkit-box-shadow:none;
  2305. box-shadow:none;
  2306. font-size:16px;
  2307. color:#F2F2F2;
  2308. }
  2309. #u428 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:285px;
  2313. top:4015px;
  2314. width:454px;
  2315. height:19px;
  2316. font-size:16px;
  2317. color:#F2F2F2;
  2318. }
  2319. #u428_text {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:454px;
  2325. white-space:nowrap;
  2326. }
  2327. #u429_div {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:102px;
  2333. height:19px;
  2334. background:inherit;
  2335. background-color:rgba(255, 255, 255, 0);
  2336. border:none;
  2337. border-radius:0px;
  2338. -moz-box-shadow:none;
  2339. -webkit-box-shadow:none;
  2340. box-shadow:none;
  2341. font-size:16px;
  2342. color:#F2F2F2;
  2343. }
  2344. #u429 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:285px;
  2348. top:4050px;
  2349. width:102px;
  2350. height:19px;
  2351. font-size:16px;
  2352. color:#F2F2F2;
  2353. }
  2354. #u429_text {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:102px;
  2360. white-space:nowrap;
  2361. }
  2362. #u430_div {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:178px;
  2368. height:19px;
  2369. background:inherit;
  2370. background-color:rgba(255, 255, 255, 0);
  2371. border:none;
  2372. border-radius:0px;
  2373. -moz-box-shadow:none;
  2374. -webkit-box-shadow:none;
  2375. box-shadow:none;
  2376. font-size:16px;
  2377. color:#F2F2F2;
  2378. }
  2379. #u430 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:285px;
  2383. top:4083px;
  2384. width:178px;
  2385. height:19px;
  2386. font-size:16px;
  2387. color:#F2F2F2;
  2388. }
  2389. #u430_text {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:178px;
  2395. white-space:nowrap;
  2396. }
  2397. #u431_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:630px;
  2403. height:19px;
  2404. background:inherit;
  2405. background-color:rgba(255, 255, 255, 0);
  2406. border:none;
  2407. border-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. font-size:16px;
  2412. color:#F2F2F2;
  2413. }
  2414. #u431 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:890px;
  2418. top:4012px;
  2419. width:630px;
  2420. height:19px;
  2421. font-size:16px;
  2422. color:#F2F2F2;
  2423. }
  2424. #u431_text {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:630px;
  2430. white-space:nowrap;
  2431. }
  2432. #u432_div {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:597px;
  2438. height:19px;
  2439. background:inherit;
  2440. background-color:rgba(255, 255, 255, 0);
  2441. border:none;
  2442. border-radius:0px;
  2443. -moz-box-shadow:none;
  2444. -webkit-box-shadow:none;
  2445. box-shadow:none;
  2446. font-size:16px;
  2447. color:#F2F2F2;
  2448. }
  2449. #u432 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:890px;
  2453. top:4050px;
  2454. width:597px;
  2455. height:19px;
  2456. font-size:16px;
  2457. color:#F2F2F2;
  2458. }
  2459. #u432_text {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:597px;
  2465. white-space:nowrap;
  2466. }
  2467. #u433_div {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:317px;
  2473. height:19px;
  2474. background:inherit;
  2475. background-color:rgba(255, 255, 255, 0);
  2476. border:none;
  2477. border-radius:0px;
  2478. -moz-box-shadow:none;
  2479. -webkit-box-shadow:none;
  2480. box-shadow:none;
  2481. font-size:16px;
  2482. color:#F2F2F2;
  2483. }
  2484. #u433 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:890px;
  2488. top:4091px;
  2489. width:317px;
  2490. height:19px;
  2491. font-size:16px;
  2492. color:#F2F2F2;
  2493. }
  2494. #u433_text {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:0px;
  2498. top:0px;
  2499. width:317px;
  2500. white-space:nowrap;
  2501. }
  2502. #u434_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:370px;
  2508. height:312px;
  2509. background:inherit;
  2510. background-color:rgba(215, 215, 215, 1);
  2511. border:none;
  2512. border-radius:0px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. }
  2517. #u434 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:201px;
  2521. top:3314px;
  2522. width:370px;
  2523. height:312px;
  2524. }
  2525. #u434_text {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:0px;
  2531. visibility:hidden;
  2532. word-wrap:break-word;
  2533. }
  2534. #u435_div {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:458px;
  2540. height:66px;
  2541. background:inherit;
  2542. background-color:rgba(255, 255, 255, 0);
  2543. border:none;
  2544. border-radius:0px;
  2545. -moz-box-shadow:none;
  2546. -webkit-box-shadow:none;
  2547. box-shadow:none;
  2548. font-size:28px;
  2549. }
  2550. #u435 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:195px;
  2554. top:3647px;
  2555. width:458px;
  2556. height:66px;
  2557. font-size:28px;
  2558. }
  2559. #u435_text {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:458px;
  2565. word-wrap:break-word;
  2566. }
  2567. #u436_div {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:376px;
  2573. height:96px;
  2574. background:inherit;
  2575. background-color:rgba(255, 255, 255, 0);
  2576. border:none;
  2577. border-radius:0px;
  2578. -moz-box-shadow:none;
  2579. -webkit-box-shadow:none;
  2580. box-shadow:none;
  2581. font-size:16px;
  2582. }
  2583. #u436 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:195px;
  2587. top:3723px;
  2588. width:376px;
  2589. height:96px;
  2590. font-size:16px;
  2591. }
  2592. #u436_text {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:376px;
  2598. word-wrap:break-word;
  2599. }
  2600. #u437_div {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:458px;
  2606. height:66px;
  2607. background:inherit;
  2608. background-color:rgba(255, 255, 255, 0);
  2609. border:none;
  2610. border-radius:0px;
  2611. -moz-box-shadow:none;
  2612. -webkit-box-shadow:none;
  2613. box-shadow:none;
  2614. font-size:28px;
  2615. }
  2616. #u437 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:640px;
  2620. top:3647px;
  2621. width:458px;
  2622. height:66px;
  2623. font-size:28px;
  2624. }
  2625. #u437_text {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:458px;
  2631. word-wrap:break-word;
  2632. }
  2633. #u438_div {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:381px;
  2639. height:96px;
  2640. background:inherit;
  2641. background-color:rgba(255, 255, 255, 0);
  2642. border:none;
  2643. border-radius:0px;
  2644. -moz-box-shadow:none;
  2645. -webkit-box-shadow:none;
  2646. box-shadow:none;
  2647. font-size:16px;
  2648. }
  2649. #u438 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:640px;
  2653. top:3723px;
  2654. width:381px;
  2655. height:96px;
  2656. font-size:16px;
  2657. }
  2658. #u438_text {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:381px;
  2664. word-wrap:break-word;
  2665. }
  2666. #u439_div {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:65px;
  2672. height:19px;
  2673. background:inherit;
  2674. background-color:rgba(255, 255, 255, 0);
  2675. border:none;
  2676. border-radius:0px;
  2677. -moz-box-shadow:none;
  2678. -webkit-box-shadow:none;
  2679. box-shadow:none;
  2680. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2681. font-weight:700;
  2682. font-style:normal;
  2683. font-size:16px;
  2684. }
  2685. #u439 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:201px;
  2689. top:3255px;
  2690. width:65px;
  2691. height:19px;
  2692. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2693. font-weight:700;
  2694. font-style:normal;
  2695. font-size:16px;
  2696. }
  2697. #u439_text {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:65px;
  2703. white-space:nowrap;
  2704. }
  2705. #u440_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:97px;
  2711. height:29px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 0);
  2714. border:none;
  2715. border-radius:0px;
  2716. -moz-box-shadow:none;
  2717. -webkit-box-shadow:none;
  2718. box-shadow:none;
  2719. font-size:24px;
  2720. color:#666666;
  2721. }
  2722. #u440 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:935px;
  2726. top:18px;
  2727. width:97px;
  2728. height:29px;
  2729. font-size:24px;
  2730. color:#666666;
  2731. }
  2732. #u440_text {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:97px;
  2738. white-space:nowrap;
  2739. }
  2740. #u441_div {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:354px;
  2746. height:101px;
  2747. background:inherit;
  2748. background-color:rgba(255, 204, 102, 1);
  2749. border:none;
  2750. border-radius:10px;
  2751. -moz-box-shadow:none;
  2752. -webkit-box-shadow:none;
  2753. box-shadow:none;
  2754. font-size:16px;
  2755. text-align:left;
  2756. }
  2757. #u441 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:1510px;
  2761. top:115px;
  2762. width:354px;
  2763. height:101px;
  2764. font-size:16px;
  2765. text-align:left;
  2766. }
  2767. #u441_text {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:2px;
  2771. top:41px;
  2772. width:350px;
  2773. word-wrap:break-word;
  2774. }
  2775. #u442 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:653px;
  2779. top:92px;
  2780. width:0px;
  2781. height:0px;
  2782. color:#FFCC66;
  2783. }
  2784. #u442_seg0 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:-4px;
  2789. width:815px;
  2790. height:8px;
  2791. }
  2792. #u442_seg1 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:807px;
  2796. top:-4px;
  2797. width:8px;
  2798. height:82px;
  2799. }
  2800. #u442_seg2 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:807px;
  2804. top:70px;
  2805. width:50px;
  2806. height:8px;
  2807. }
  2808. #u442_text {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:416px;
  2812. top:-8px;
  2813. width:100px;
  2814. visibility:hidden;
  2815. word-wrap:break-word;
  2816. }
  2817. #u443_div {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:354px;
  2823. height:101px;
  2824. background:inherit;
  2825. background-color:rgba(255, 204, 102, 1);
  2826. border:none;
  2827. border-radius:10px;
  2828. -moz-box-shadow:none;
  2829. -webkit-box-shadow:none;
  2830. box-shadow:none;
  2831. font-size:16px;
  2832. text-align:left;
  2833. }
  2834. #u443 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:1510px;
  2838. top:421px;
  2839. width:354px;
  2840. height:101px;
  2841. font-size:16px;
  2842. text-align:left;
  2843. }
  2844. #u443_text {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:2px;
  2848. top:41px;
  2849. width:350px;
  2850. word-wrap:break-word;
  2851. }
  2852. #u444_div {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:354px;
  2858. height:101px;
  2859. background:inherit;
  2860. background-color:rgba(255, 204, 102, 1);
  2861. border:none;
  2862. border-radius:10px;
  2863. -moz-box-shadow:none;
  2864. -webkit-box-shadow:none;
  2865. box-shadow:none;
  2866. font-size:16px;
  2867. text-align:left;
  2868. }
  2869. #u444 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:1510px;
  2873. top:3214px;
  2874. width:354px;
  2875. height:101px;
  2876. font-size:16px;
  2877. text-align:left;
  2878. }
  2879. #u444_text {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:2px;
  2883. top:32px;
  2884. width:350px;
  2885. word-wrap:break-word;
  2886. }
  2887. #u445 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:1405px;
  2891. top:472px;
  2892. width:0px;
  2893. height:0px;
  2894. color:#FFCC66;
  2895. }
  2896. #u445_seg0 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:-4px;
  2901. width:109px;
  2902. height:8px;
  2903. }
  2904. #u445_text {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:2px;
  2908. top:-8px;
  2909. width:100px;
  2910. visibility:hidden;
  2911. word-wrap:break-word;
  2912. }
  2913. #u446 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:266px;
  2917. top:3265px;
  2918. width:0px;
  2919. height:0px;
  2920. color:#FFCC66;
  2921. }
  2922. #u446_seg0 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:-4px;
  2927. width:1248px;
  2928. height:8px;
  2929. }
  2930. #u446_text {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:572px;
  2934. top:-8px;
  2935. width:100px;
  2936. visibility:hidden;
  2937. word-wrap:break-word;
  2938. }
  2939. #u447_div {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:120px;
  2945. height:19px;
  2946. background:inherit;
  2947. background-color:rgba(255, 255, 255, 0);
  2948. border:none;
  2949. border-radius:0px;
  2950. -moz-box-shadow:none;
  2951. -webkit-box-shadow:none;
  2952. box-shadow:none;
  2953. font-size:16px;
  2954. color:#666666;
  2955. }
  2956. #u447 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:817px;
  2960. top:247px;
  2961. width:120px;
  2962. height:19px;
  2963. font-size:16px;
  2964. color:#666666;
  2965. }
  2966. #u447_text {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:120px;
  2972. word-wrap:break-word;
  2973. }
  2974. #u448_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:32px;
  2980. height:32px;
  2981. }
  2982. #u448 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:879px;
  2986. top:241px;
  2987. width:32px;
  2988. height:32px;
  2989. }
  2990. #u448_text {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:0px;
  2996. visibility:hidden;
  2997. word-wrap:break-word;
  2998. }
  2999. #u449_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:32px;
  3005. height:32px;
  3006. }
  3007. #u449 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:921px;
  3011. top:241px;
  3012. width:32px;
  3013. height:32px;
  3014. }
  3015. #u449_text {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:0px;
  3021. visibility:hidden;
  3022. word-wrap:break-word;
  3023. }
  3024. #u450_div {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:370px;
  3030. height:312px;
  3031. background:inherit;
  3032. background-color:rgba(215, 215, 215, 1);
  3033. border:none;
  3034. border-radius:0px;
  3035. -moz-box-shadow:none;
  3036. -webkit-box-shadow:none;
  3037. box-shadow:none;
  3038. }
  3039. #u450 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:640px;
  3043. top:3314px;
  3044. width:370px;
  3045. height:312px;
  3046. }
  3047. #u450_text {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:0px;
  3053. visibility:hidden;
  3054. word-wrap:break-word;
  3055. }
  3056. #u451_img {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:64px;
  3062. height:64px;
  3063. }
  3064. #u451 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:1456px;
  3068. top:3774px;
  3069. width:64px;
  3070. height:64px;
  3071. }
  3072. #u451_text {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:0px;
  3078. visibility:hidden;
  3079. word-wrap:break-word;
  3080. }
  3081. #u452_div {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:428px;
  3087. height:138px;
  3088. background:inherit;
  3089. background-color:rgba(255, 204, 102, 1);
  3090. border:none;
  3091. border-radius:10px;
  3092. -moz-box-shadow:none;
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none;
  3095. font-size:16px;
  3096. text-align:left;
  3097. }
  3098. #u452 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:1510px;
  3102. top:250px;
  3103. width:428px;
  3104. height:138px;
  3105. font-size:16px;
  3106. text-align:left;
  3107. }
  3108. #u452_text {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:2px;
  3112. top:21px;
  3113. width:424px;
  3114. word-wrap:break-word;
  3115. }
  3116. #u453 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:879px;
  3120. top:257px;
  3121. width:0px;
  3122. height:0px;
  3123. color:#1E1E1E;
  3124. }
  3125. #u453_seg0 {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:-23px;
  3129. top:-4px;
  3130. width:23px;
  3131. height:8px;
  3132. }
  3133. #u453_seg1 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:-23px;
  3137. top:-4px;
  3138. width:8px;
  3139. height:41px;
  3140. }
  3141. #u453_seg2 {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:-23px;
  3145. top:29px;
  3146. width:198px;
  3147. height:8px;
  3148. }
  3149. #u453_seg3 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:167px;
  3153. top:29px;
  3154. width:8px;
  3155. height:138px;
  3156. }
  3157. #u453_seg4 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:167px;
  3161. top:159px;
  3162. width:409px;
  3163. height:8px;
  3164. }
  3165. #u453_seg5 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:568px;
  3169. top:58px;
  3170. width:8px;
  3171. height:109px;
  3172. }
  3173. #u453_seg6 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:568px;
  3177. top:58px;
  3178. width:63px;
  3179. height:8px;
  3180. }
  3181. #u453_text {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:216px;
  3185. top:155px;
  3186. width:100px;
  3187. visibility:hidden;
  3188. word-wrap:break-word;
  3189. }
  3190. #u454_div {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:354px;
  3196. height:325px;
  3197. background:inherit;
  3198. background-color:rgba(242, 242, 242, 1);
  3199. border:none;
  3200. border-radius:0px;
  3201. -moz-box-shadow:none;
  3202. -webkit-box-shadow:none;
  3203. box-shadow:none;
  3204. }
  3205. #u454 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:1510px;
  3209. top:568px;
  3210. width:354px;
  3211. height:325px;
  3212. }
  3213. #u454_text {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:2px;
  3217. top:155px;
  3218. width:350px;
  3219. word-wrap:break-word;
  3220. }
  3221. #u455_div {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:159px;
  3227. height:18px;
  3228. background:inherit;
  3229. background-color:rgba(255, 255, 255, 0);
  3230. border:none;
  3231. border-radius:0px;
  3232. -moz-box-shadow:none;
  3233. -webkit-box-shadow:none;
  3234. box-shadow:none;
  3235. }
  3236. #u455 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:1612px;
  3240. top:860px;
  3241. width:159px;
  3242. height:18px;
  3243. }
  3244. #u455_text {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:159px;
  3250. white-space:nowrap;
  3251. }
  3252. #u456_div {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:24px;
  3258. height:23px;
  3259. background:inherit;
  3260. background-color:rgba(215, 215, 215, 1);
  3261. border:none;
  3262. border-radius:0px;
  3263. -moz-box-shadow:none;
  3264. -webkit-box-shadow:none;
  3265. box-shadow:none;
  3266. }
  3267. #u456 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:1840px;
  3271. top:568px;
  3272. width:24px;
  3273. height:23px;
  3274. }
  3275. #u456_text {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:2px;
  3279. top:4px;
  3280. width:20px;
  3281. word-wrap:break-word;
  3282. }