styles.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1593px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u1560 {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:0px;
  21. height:0px;
  22. }
  23. #u1561_img {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:0px;
  28. width:8px;
  29. height:28px;
  30. }
  31. #u1561 {
  32. border-width:0px;
  33. position:absolute;
  34. left:8px;
  35. top:15px;
  36. width:8px;
  37. height:28px;
  38. }
  39. #u1561_text {
  40. border-width:0px;
  41. position:absolute;
  42. left:0px;
  43. top:0px;
  44. width:0px;
  45. visibility:hidden;
  46. word-wrap:break-word;
  47. }
  48. #u1562_div {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:145px;
  54. height:28px;
  55. background:inherit;
  56. background-color:rgba(255, 255, 255, 0);
  57. border:none;
  58. border-radius:0px;
  59. -moz-box-shadow:none;
  60. -webkit-box-shadow:none;
  61. box-shadow:none;
  62. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  63. font-weight:700;
  64. font-style:normal;
  65. }
  66. #u1562 {
  67. border-width:0px;
  68. position:absolute;
  69. left:22px;
  70. top:15px;
  71. width:145px;
  72. height:28px;
  73. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  74. font-weight:700;
  75. font-style:normal;
  76. }
  77. #u1562_text {
  78. border-width:0px;
  79. position:absolute;
  80. left:0px;
  81. top:0px;
  82. width:145px;
  83. white-space:nowrap;
  84. }
  85. #u1563_div {
  86. border-width:0px;
  87. position:absolute;
  88. left:0px;
  89. top:0px;
  90. width:109px;
  91. height:22px;
  92. background:inherit;
  93. background-color:rgba(255, 255, 255, 0);
  94. border:none;
  95. border-radius:0px;
  96. -moz-box-shadow:none;
  97. -webkit-box-shadow:none;
  98. box-shadow:none;
  99. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  100. font-weight:700;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u1563 {
  105. border-width:0px;
  106. position:absolute;
  107. left:22px;
  108. top:71px;
  109. width:109px;
  110. height:22px;
  111. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  112. font-weight:700;
  113. font-style:normal;
  114. font-size:18px;
  115. }
  116. #u1563_text {
  117. border-width:0px;
  118. position:absolute;
  119. left:0px;
  120. top:0px;
  121. width:109px;
  122. white-space:nowrap;
  123. }
  124. #u1564_div {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:264px;
  130. height:22px;
  131. background:inherit;
  132. background-color:rgba(255, 255, 255, 0);
  133. border:none;
  134. border-radius:0px;
  135. -moz-box-shadow:none;
  136. -webkit-box-shadow:none;
  137. box-shadow:none;
  138. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  139. font-weight:700;
  140. font-style:normal;
  141. font-size:18px;
  142. }
  143. #u1564 {
  144. border-width:0px;
  145. position:absolute;
  146. left:22px;
  147. top:532px;
  148. width:264px;
  149. height:22px;
  150. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  151. font-weight:700;
  152. font-style:normal;
  153. font-size:18px;
  154. }
  155. #u1564_text {
  156. border-width:0px;
  157. position:absolute;
  158. left:0px;
  159. top:0px;
  160. width:264px;
  161. white-space:nowrap;
  162. }
  163. #u1565_div {
  164. border-width:0px;
  165. position:absolute;
  166. left:0px;
  167. top:0px;
  168. width:1104px;
  169. height:363px;
  170. background:inherit;
  171. background-color:rgba(255, 255, 255, 0);
  172. border:none;
  173. border-radius:0px;
  174. -moz-box-shadow:none;
  175. -webkit-box-shadow:none;
  176. box-shadow:none;
  177. font-size:16px;
  178. line-height:28px;
  179. }
  180. #u1565 {
  181. border-width:0px;
  182. position:absolute;
  183. left:58px;
  184. top:131px;
  185. width:1104px;
  186. height:363px;
  187. font-size:16px;
  188. line-height:28px;
  189. }
  190. #u1565_text {
  191. border-width:0px;
  192. position:absolute;
  193. left:0px;
  194. top:0px;
  195. width:1104px;
  196. word-wrap:break-word;
  197. }
  198. #u1566_img {
  199. border-width:0px;
  200. position:absolute;
  201. left:0px;
  202. top:0px;
  203. width:1155px;
  204. height:583px;
  205. }
  206. #u1566 {
  207. border-width:0px;
  208. position:absolute;
  209. left:22px;
  210. top:2541px;
  211. width:1155px;
  212. height:583px;
  213. }
  214. #u1566_text {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:0px;
  220. visibility:hidden;
  221. word-wrap:break-word;
  222. }
  223. #u1567_img {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:1155px;
  229. height:583px;
  230. }
  231. #u1567 {
  232. border-width:0px;
  233. position:absolute;
  234. left:22px;
  235. top:584px;
  236. width:1155px;
  237. height:583px;
  238. }
  239. #u1567_text {
  240. border-width:0px;
  241. position:absolute;
  242. left:0px;
  243. top:0px;
  244. width:0px;
  245. visibility:hidden;
  246. word-wrap:break-word;
  247. }
  248. #u1568_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:-4px;
  252. top:-4px;
  253. width:30px;
  254. height:30px;
  255. }
  256. #u1568 {
  257. border-width:0px;
  258. position:absolute;
  259. left:226px;
  260. top:782px;
  261. width:20px;
  262. height:20px;
  263. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  264. font-weight:700;
  265. font-style:normal;
  266. font-size:14px;
  267. color:#1E1E1E;
  268. }
  269. #u1568_text {
  270. border-width:0px;
  271. position:absolute;
  272. left:2px;
  273. top:2px;
  274. width:16px;
  275. word-wrap:break-word;
  276. }
  277. #u1569_div {
  278. border-width:0px;
  279. position:absolute;
  280. left:0px;
  281. top:0px;
  282. width:264px;
  283. height:22px;
  284. background:inherit;
  285. background-color:rgba(255, 255, 255, 0);
  286. border:none;
  287. border-radius:0px;
  288. -moz-box-shadow:none;
  289. -webkit-box-shadow:none;
  290. box-shadow:none;
  291. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  292. font-weight:700;
  293. font-style:normal;
  294. font-size:18px;
  295. }
  296. #u1569 {
  297. border-width:0px;
  298. position:absolute;
  299. left:22px;
  300. top:3893px;
  301. width:264px;
  302. height:22px;
  303. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  304. font-weight:700;
  305. font-style:normal;
  306. font-size:18px;
  307. }
  308. #u1569_text {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:264px;
  314. white-space:nowrap;
  315. }
  316. #u1570_img {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:1155px;
  322. height:583px;
  323. }
  324. #u1570 {
  325. border-width:0px;
  326. position:absolute;
  327. left:22px;
  328. top:3964px;
  329. width:1155px;
  330. height:583px;
  331. }
  332. #u1570_text {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:0px;
  338. visibility:hidden;
  339. word-wrap:break-word;
  340. }
  341. #u1571_img {
  342. border-width:0px;
  343. position:absolute;
  344. left:-4px;
  345. top:-4px;
  346. width:30px;
  347. height:30px;
  348. }
  349. #u1571 {
  350. border-width:0px;
  351. position:absolute;
  352. left:226px;
  353. top:4156px;
  354. width:20px;
  355. height:20px;
  356. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  357. font-weight:700;
  358. font-style:normal;
  359. font-size:14px;
  360. color:#1E1E1E;
  361. }
  362. #u1571_text {
  363. border-width:0px;
  364. position:absolute;
  365. left:2px;
  366. top:2px;
  367. width:16px;
  368. word-wrap:break-word;
  369. }
  370. #u1572_div {
  371. border-width:0px;
  372. position:absolute;
  373. left:0px;
  374. top:0px;
  375. width:234px;
  376. height:22px;
  377. background:inherit;
  378. background-color:rgba(255, 255, 255, 0);
  379. border:none;
  380. border-radius:0px;
  381. -moz-box-shadow:none;
  382. -webkit-box-shadow:none;
  383. box-shadow:none;
  384. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  385. font-weight:700;
  386. font-style:normal;
  387. font-size:18px;
  388. }
  389. #u1572 {
  390. border-width:0px;
  391. position:absolute;
  392. left:22px;
  393. top:2503px;
  394. width:234px;
  395. height:22px;
  396. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  397. font-weight:700;
  398. font-style:normal;
  399. font-size:18px;
  400. }
  401. #u1572_text {
  402. border-width:0px;
  403. position:absolute;
  404. left:0px;
  405. top:0px;
  406. width:234px;
  407. word-wrap:break-word;
  408. }
  409. #u1573 {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u1574_img {
  418. border-width:0px;
  419. position:absolute;
  420. left:-4px;
  421. top:-4px;
  422. width:44px;
  423. height:44px;
  424. }
  425. #u1574 {
  426. border-width:0px;
  427. position:absolute;
  428. left:1187px;
  429. top:2541px;
  430. width:34px;
  431. height:34px;
  432. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  433. font-weight:700;
  434. font-style:normal;
  435. font-size:26px;
  436. }
  437. #u1574_text {
  438. border-width:0px;
  439. position:absolute;
  440. left:2px;
  441. top:1px;
  442. width:30px;
  443. word-wrap:break-word;
  444. }
  445. #u1575_div {
  446. border-width:0px;
  447. position:absolute;
  448. left:0px;
  449. top:0px;
  450. width:131px;
  451. height:19px;
  452. background:inherit;
  453. background-color:rgba(255, 255, 255, 0);
  454. border:none;
  455. border-radius:0px;
  456. -moz-box-shadow:none;
  457. -webkit-box-shadow:none;
  458. box-shadow:none;
  459. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  460. font-weight:700;
  461. font-style:normal;
  462. font-size:16px;
  463. }
  464. #u1575 {
  465. border-width:0px;
  466. position:absolute;
  467. left:1227px;
  468. top:2548px;
  469. width:131px;
  470. height:19px;
  471. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  472. font-weight:700;
  473. font-style:normal;
  474. font-size:16px;
  475. }
  476. #u1575_text {
  477. border-width:0px;
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:131px;
  482. word-wrap:break-word;
  483. }
  484. #u1576_div {
  485. border-width:0px;
  486. position:absolute;
  487. left:0px;
  488. top:0px;
  489. width:352px;
  490. height:66px;
  491. background:inherit;
  492. background-color:rgba(255, 255, 255, 0);
  493. border:none;
  494. border-radius:0px;
  495. -moz-box-shadow:none;
  496. -webkit-box-shadow:none;
  497. box-shadow:none;
  498. line-height:22px;
  499. }
  500. #u1576 {
  501. border-width:0px;
  502. position:absolute;
  503. left:1227px;
  504. top:2586px;
  505. width:352px;
  506. height:66px;
  507. line-height:22px;
  508. }
  509. #u1576_text {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:352px;
  515. word-wrap:break-word;
  516. }
  517. #u1577 {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:0px;
  523. height:0px;
  524. }
  525. #u1578_img {
  526. border-width:0px;
  527. position:absolute;
  528. left:-4px;
  529. top:-4px;
  530. width:44px;
  531. height:44px;
  532. }
  533. #u1578 {
  534. border-width:0px;
  535. position:absolute;
  536. left:1187px;
  537. top:2667px;
  538. width:34px;
  539. height:34px;
  540. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  541. font-weight:700;
  542. font-style:normal;
  543. font-size:26px;
  544. }
  545. #u1578_text {
  546. border-width:0px;
  547. position:absolute;
  548. left:2px;
  549. top:1px;
  550. width:30px;
  551. word-wrap:break-word;
  552. }
  553. #u1579_div {
  554. border-width:0px;
  555. position:absolute;
  556. left:0px;
  557. top:0px;
  558. width:131px;
  559. height:19px;
  560. background:inherit;
  561. background-color:rgba(255, 255, 255, 0);
  562. border:none;
  563. border-radius:0px;
  564. -moz-box-shadow:none;
  565. -webkit-box-shadow:none;
  566. box-shadow:none;
  567. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  568. font-weight:700;
  569. font-style:normal;
  570. font-size:16px;
  571. }
  572. #u1579 {
  573. border-width:0px;
  574. position:absolute;
  575. left:1227px;
  576. top:2674px;
  577. width:131px;
  578. height:19px;
  579. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  580. font-weight:700;
  581. font-style:normal;
  582. font-size:16px;
  583. }
  584. #u1579_text {
  585. border-width:0px;
  586. position:absolute;
  587. left:0px;
  588. top:0px;
  589. width:131px;
  590. word-wrap:break-word;
  591. }
  592. #u1580_div {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:352px;
  598. height:88px;
  599. background:inherit;
  600. background-color:rgba(255, 255, 255, 0);
  601. border:none;
  602. border-radius:0px;
  603. -moz-box-shadow:none;
  604. -webkit-box-shadow:none;
  605. box-shadow:none;
  606. line-height:22px;
  607. }
  608. #u1580 {
  609. border-width:0px;
  610. position:absolute;
  611. left:1227px;
  612. top:2712px;
  613. width:352px;
  614. height:88px;
  615. line-height:22px;
  616. }
  617. #u1580_text {
  618. border-width:0px;
  619. position:absolute;
  620. left:0px;
  621. top:0px;
  622. width:352px;
  623. word-wrap:break-word;
  624. }
  625. #u1581_img {
  626. border-width:0px;
  627. position:absolute;
  628. left:0px;
  629. top:0px;
  630. width:1155px;
  631. height:583px;
  632. }
  633. #u1581 {
  634. border-width:0px;
  635. position:absolute;
  636. left:22px;
  637. top:3221px;
  638. width:1155px;
  639. height:583px;
  640. }
  641. #u1581_text {
  642. border-width:0px;
  643. position:absolute;
  644. left:0px;
  645. top:0px;
  646. width:0px;
  647. visibility:hidden;
  648. word-wrap:break-word;
  649. }
  650. #u1582_div {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:234px;
  656. height:22px;
  657. background:inherit;
  658. background-color:rgba(255, 255, 255, 0);
  659. border:none;
  660. border-radius:0px;
  661. -moz-box-shadow:none;
  662. -webkit-box-shadow:none;
  663. box-shadow:none;
  664. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  665. font-weight:700;
  666. font-style:normal;
  667. font-size:18px;
  668. }
  669. #u1582 {
  670. border-width:0px;
  671. position:absolute;
  672. left:22px;
  673. top:3189px;
  674. width:234px;
  675. height:22px;
  676. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  677. font-weight:700;
  678. font-style:normal;
  679. font-size:18px;
  680. }
  681. #u1582_text {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:234px;
  687. word-wrap:break-word;
  688. }
  689. #u1583_img {
  690. border-width:0px;
  691. position:absolute;
  692. left:0px;
  693. top:0px;
  694. width:1155px;
  695. height:583px;
  696. }
  697. #u1583 {
  698. border-width:0px;
  699. position:absolute;
  700. left:22px;
  701. top:4615px;
  702. width:1155px;
  703. height:583px;
  704. }
  705. #u1583_text {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:0px;
  711. visibility:hidden;
  712. word-wrap:break-word;
  713. }
  714. #u1584_div {
  715. border-width:0px;
  716. position:absolute;
  717. left:0px;
  718. top:0px;
  719. width:234px;
  720. height:22px;
  721. background:inherit;
  722. background-color:rgba(255, 255, 255, 0);
  723. border:none;
  724. border-radius:0px;
  725. -moz-box-shadow:none;
  726. -webkit-box-shadow:none;
  727. box-shadow:none;
  728. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  729. font-weight:700;
  730. font-style:normal;
  731. font-size:18px;
  732. }
  733. #u1584 {
  734. border-width:0px;
  735. position:absolute;
  736. left:22px;
  737. top:4583px;
  738. width:234px;
  739. height:22px;
  740. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  741. font-weight:700;
  742. font-style:normal;
  743. font-size:18px;
  744. }
  745. #u1584_text {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:234px;
  751. word-wrap:break-word;
  752. }
  753. #u1585_img {
  754. border-width:0px;
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:1155px;
  759. height:583px;
  760. }
  761. #u1585 {
  762. border-width:0px;
  763. position:absolute;
  764. left:22px;
  765. top:5289px;
  766. width:1155px;
  767. height:583px;
  768. }
  769. #u1585_text {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:0px;
  775. visibility:hidden;
  776. word-wrap:break-word;
  777. }
  778. #u1586_div {
  779. border-width:0px;
  780. position:absolute;
  781. left:0px;
  782. top:0px;
  783. width:234px;
  784. height:22px;
  785. background:inherit;
  786. background-color:rgba(255, 255, 255, 0);
  787. border:none;
  788. border-radius:0px;
  789. -moz-box-shadow:none;
  790. -webkit-box-shadow:none;
  791. box-shadow:none;
  792. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  793. font-weight:700;
  794. font-style:normal;
  795. font-size:18px;
  796. }
  797. #u1586 {
  798. border-width:0px;
  799. position:absolute;
  800. left:22px;
  801. top:5257px;
  802. width:234px;
  803. height:22px;
  804. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  805. font-weight:700;
  806. font-style:normal;
  807. font-size:18px;
  808. }
  809. #u1586_text {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:234px;
  815. word-wrap:break-word;
  816. }
  817. #u1587 {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:0px;
  823. height:0px;
  824. }
  825. #u1588_img {
  826. border-width:0px;
  827. position:absolute;
  828. left:-4px;
  829. top:-4px;
  830. width:40px;
  831. height:40px;
  832. }
  833. #u1588 {
  834. border-width:0px;
  835. position:absolute;
  836. left:1200px;
  837. top:3964px;
  838. width:30px;
  839. height:30px;
  840. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  841. font-weight:700;
  842. font-style:normal;
  843. font-size:18px;
  844. color:#1E1E1E;
  845. }
  846. #u1588_text {
  847. border-width:0px;
  848. position:absolute;
  849. left:2px;
  850. top:4px;
  851. width:26px;
  852. word-wrap:break-word;
  853. }
  854. #u1589_div {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:131px;
  860. height:19px;
  861. background:inherit;
  862. background-color:rgba(255, 255, 255, 0);
  863. border:none;
  864. border-radius:0px;
  865. -moz-box-shadow:none;
  866. -webkit-box-shadow:none;
  867. box-shadow:none;
  868. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  869. font-weight:700;
  870. font-style:normal;
  871. font-size:16px;
  872. }
  873. #u1589 {
  874. border-width:0px;
  875. position:absolute;
  876. left:1240px;
  877. top:3971px;
  878. width:131px;
  879. height:19px;
  880. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  881. font-weight:700;
  882. font-style:normal;
  883. font-size:16px;
  884. }
  885. #u1589_text {
  886. border-width:0px;
  887. position:absolute;
  888. left:0px;
  889. top:0px;
  890. width:131px;
  891. word-wrap:break-word;
  892. }
  893. #u1590_div {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:352px;
  899. height:154px;
  900. background:inherit;
  901. background-color:rgba(255, 255, 255, 0);
  902. border:none;
  903. border-radius:0px;
  904. -moz-box-shadow:none;
  905. -webkit-box-shadow:none;
  906. box-shadow:none;
  907. line-height:22px;
  908. }
  909. #u1590 {
  910. border-width:0px;
  911. position:absolute;
  912. left:1240px;
  913. top:4009px;
  914. width:352px;
  915. height:154px;
  916. line-height:22px;
  917. }
  918. #u1590_text {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:352px;
  924. word-wrap:break-word;
  925. }
  926. #u1591 {
  927. border-width:0px;
  928. position:absolute;
  929. left:1383px;
  930. top:4118px;
  931. width:93px;
  932. height:25px;
  933. overflow:hidden;
  934. background-image:url('../../resources/images/transparent.gif');
  935. }
  936. #u1592_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:279px;
  942. height:105px;
  943. background:inherit;
  944. background-color:rgba(255, 255, 0, 1);
  945. box-sizing:border-box;
  946. border-width:1px;
  947. border-style:solid;
  948. border-color:rgba(0, 0, 0, 1);
  949. border-radius:10px;
  950. -moz-box-shadow:none;
  951. -webkit-box-shadow:none;
  952. box-shadow:none;
  953. text-align:left;
  954. line-height:18px;
  955. }
  956. #u1592 {
  957. border-width:0px;
  958. position:absolute;
  959. left:1277px;
  960. top:4003px;
  961. width:279px;
  962. height:105px;
  963. text-align:left;
  964. line-height:18px;
  965. }
  966. #u1592_text {
  967. border-width:0px;
  968. position:absolute;
  969. left:2px;
  970. top:13px;
  971. width:275px;
  972. word-wrap:break-word;
  973. }
  974. #u1593 {
  975. border-width:0px;
  976. position:absolute;
  977. left:1313px;
  978. top:4138px;
  979. width:70px;
  980. height:25px;
  981. overflow:hidden;
  982. background-image:url('../../resources/images/transparent.gif');
  983. }
  984. #u1594 {
  985. border-width:0px;
  986. position:absolute;
  987. left:1512px;
  988. top:4118px;
  989. width:54px;
  990. height:22px;
  991. overflow:hidden;
  992. background-image:url('../../resources/images/transparent.gif');
  993. }
  994. #u1595_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:223px;
  1000. height:79px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 0, 1);
  1003. box-sizing:border-box;
  1004. border-width:1px;
  1005. border-style:solid;
  1006. border-color:rgba(0, 0, 0, 1);
  1007. border-radius:10px;
  1008. -moz-box-shadow:none;
  1009. -webkit-box-shadow:none;
  1010. box-shadow:none;
  1011. text-align:left;
  1012. line-height:18px;
  1013. }
  1014. #u1595 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:1358px;
  1018. top:4143px;
  1019. width:223px;
  1020. height:79px;
  1021. text-align:left;
  1022. line-height:18px;
  1023. }
  1024. #u1595_text {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:2px;
  1028. top:23px;
  1029. width:219px;
  1030. word-wrap:break-word;
  1031. }
  1032. #u1596 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:0px;
  1038. height:0px;
  1039. }
  1040. #u1597_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:-4px;
  1044. top:-4px;
  1045. width:44px;
  1046. height:44px;
  1047. }
  1048. #u1597 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:1201px;
  1052. top:4193px;
  1053. width:34px;
  1054. height:34px;
  1055. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1056. font-weight:700;
  1057. font-style:normal;
  1058. font-size:26px;
  1059. }
  1060. #u1597_text {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:2px;
  1064. top:1px;
  1065. width:30px;
  1066. word-wrap:break-word;
  1067. }
  1068. #u1598_div {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:131px;
  1074. height:19px;
  1075. background:inherit;
  1076. background-color:rgba(255, 255, 255, 0);
  1077. border:none;
  1078. border-radius:0px;
  1079. -moz-box-shadow:none;
  1080. -webkit-box-shadow:none;
  1081. box-shadow:none;
  1082. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1083. font-weight:700;
  1084. font-style:normal;
  1085. font-size:16px;
  1086. }
  1087. #u1598 {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:1241px;
  1091. top:4200px;
  1092. width:131px;
  1093. height:19px;
  1094. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1095. font-weight:700;
  1096. font-style:normal;
  1097. font-size:16px;
  1098. }
  1099. #u1598_text {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:131px;
  1105. word-wrap:break-word;
  1106. }
  1107. #u1599_div {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:352px;
  1113. height:66px;
  1114. background:inherit;
  1115. background-color:rgba(255, 255, 255, 0);
  1116. border:none;
  1117. border-radius:0px;
  1118. -moz-box-shadow:none;
  1119. -webkit-box-shadow:none;
  1120. box-shadow:none;
  1121. line-height:22px;
  1122. }
  1123. #u1599 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:1241px;
  1127. top:4238px;
  1128. width:352px;
  1129. height:66px;
  1130. line-height:22px;
  1131. }
  1132. #u1599_text {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:352px;
  1138. word-wrap:break-word;
  1139. }
  1140. #u1600 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:0px;
  1146. height:0px;
  1147. }
  1148. #u1601_img {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:-4px;
  1152. top:-4px;
  1153. width:44px;
  1154. height:44px;
  1155. }
  1156. #u1601 {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:1201px;
  1160. top:4319px;
  1161. width:34px;
  1162. height:34px;
  1163. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1164. font-weight:700;
  1165. font-style:normal;
  1166. font-size:26px;
  1167. }
  1168. #u1601_text {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:2px;
  1172. top:1px;
  1173. width:30px;
  1174. word-wrap:break-word;
  1175. }
  1176. #u1602_div {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:131px;
  1182. height:19px;
  1183. background:inherit;
  1184. background-color:rgba(255, 255, 255, 0);
  1185. border:none;
  1186. border-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1191. font-weight:700;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. }
  1195. #u1602 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:1241px;
  1199. top:4326px;
  1200. width:131px;
  1201. height:19px;
  1202. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1203. font-weight:700;
  1204. font-style:normal;
  1205. font-size:16px;
  1206. }
  1207. #u1602_text {
  1208. border-width:0px;
  1209. position:absolute;
  1210. left:0px;
  1211. top:0px;
  1212. width:131px;
  1213. word-wrap:break-word;
  1214. }
  1215. #u1603_div {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:352px;
  1221. height:88px;
  1222. background:inherit;
  1223. background-color:rgba(255, 255, 255, 0);
  1224. border:none;
  1225. border-radius:0px;
  1226. -moz-box-shadow:none;
  1227. -webkit-box-shadow:none;
  1228. box-shadow:none;
  1229. line-height:22px;
  1230. }
  1231. #u1603 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:1241px;
  1235. top:4364px;
  1236. width:352px;
  1237. height:88px;
  1238. line-height:22px;
  1239. }
  1240. #u1603_text {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:352px;
  1246. word-wrap:break-word;
  1247. }
  1248. #u1604_img {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:-4px;
  1252. top:-4px;
  1253. width:30px;
  1254. height:30px;
  1255. }
  1256. #u1604 {
  1257. border-width:0px;
  1258. position:absolute;
  1259. left:930px;
  1260. top:842px;
  1261. width:20px;
  1262. height:20px;
  1263. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1264. font-weight:700;
  1265. font-style:normal;
  1266. font-size:14px;
  1267. color:#1E1E1E;
  1268. }
  1269. #u1604_text {
  1270. border-width:0px;
  1271. position:absolute;
  1272. left:2px;
  1273. top:2px;
  1274. width:16px;
  1275. word-wrap:break-word;
  1276. }
  1277. #u1605 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u1606_img {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:-4px;
  1289. top:-4px;
  1290. width:40px;
  1291. height:40px;
  1292. }
  1293. #u1606 {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:1187px;
  1297. top:809px;
  1298. width:30px;
  1299. height:30px;
  1300. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1301. font-weight:700;
  1302. font-style:normal;
  1303. font-size:18px;
  1304. color:#1E1E1E;
  1305. }
  1306. #u1606_text {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:2px;
  1310. top:4px;
  1311. width:26px;
  1312. word-wrap:break-word;
  1313. }
  1314. #u1607_div {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:0px;
  1318. top:0px;
  1319. width:131px;
  1320. height:19px;
  1321. background:inherit;
  1322. background-color:rgba(255, 255, 255, 0);
  1323. border:none;
  1324. border-radius:0px;
  1325. -moz-box-shadow:none;
  1326. -webkit-box-shadow:none;
  1327. box-shadow:none;
  1328. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1329. font-weight:700;
  1330. font-style:normal;
  1331. font-size:16px;
  1332. }
  1333. #u1607 {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:1227px;
  1337. top:816px;
  1338. width:131px;
  1339. height:19px;
  1340. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1341. font-weight:700;
  1342. font-style:normal;
  1343. font-size:16px;
  1344. }
  1345. #u1607_text {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:0px;
  1349. top:0px;
  1350. width:131px;
  1351. word-wrap:break-word;
  1352. }
  1353. #u1608_div {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:352px;
  1359. height:22px;
  1360. background:inherit;
  1361. background-color:rgba(255, 255, 255, 0);
  1362. border:none;
  1363. border-radius:0px;
  1364. -moz-box-shadow:none;
  1365. -webkit-box-shadow:none;
  1366. box-shadow:none;
  1367. line-height:22px;
  1368. }
  1369. #u1608 {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:1227px;
  1373. top:854px;
  1374. width:352px;
  1375. height:22px;
  1376. line-height:22px;
  1377. }
  1378. #u1608_text {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:352px;
  1384. word-wrap:break-word;
  1385. }
  1386. #u1609_img {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:-4px;
  1390. top:-4px;
  1391. width:30px;
  1392. height:30px;
  1393. }
  1394. #u1609 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:864px;
  1398. top:842px;
  1399. width:20px;
  1400. height:20px;
  1401. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1402. font-weight:700;
  1403. font-style:normal;
  1404. font-size:14px;
  1405. color:#1E1E1E;
  1406. }
  1407. #u1609_text {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:2px;
  1411. top:2px;
  1412. width:16px;
  1413. word-wrap:break-word;
  1414. }
  1415. #u1610 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:0px;
  1419. top:0px;
  1420. width:0px;
  1421. height:0px;
  1422. }
  1423. #u1611_img {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:-4px;
  1427. top:-4px;
  1428. width:40px;
  1429. height:40px;
  1430. }
  1431. #u1611 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:1187px;
  1435. top:896px;
  1436. width:30px;
  1437. height:30px;
  1438. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1439. font-weight:700;
  1440. font-style:normal;
  1441. font-size:18px;
  1442. color:#1E1E1E;
  1443. }
  1444. #u1611_text {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:2px;
  1448. top:4px;
  1449. width:26px;
  1450. word-wrap:break-word;
  1451. }
  1452. #u1612_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:131px;
  1458. height:19px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 0);
  1461. border:none;
  1462. border-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1467. font-weight:700;
  1468. font-style:normal;
  1469. font-size:16px;
  1470. }
  1471. #u1612 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:1227px;
  1475. top:903px;
  1476. width:131px;
  1477. height:19px;
  1478. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1479. font-weight:700;
  1480. font-style:normal;
  1481. font-size:16px;
  1482. }
  1483. #u1612_text {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:131px;
  1489. word-wrap:break-word;
  1490. }
  1491. #u1613_div {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:0px;
  1495. top:0px;
  1496. width:352px;
  1497. height:44px;
  1498. background:inherit;
  1499. background-color:rgba(255, 255, 255, 0);
  1500. border:none;
  1501. border-radius:0px;
  1502. -moz-box-shadow:none;
  1503. -webkit-box-shadow:none;
  1504. box-shadow:none;
  1505. line-height:22px;
  1506. }
  1507. #u1613 {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:1227px;
  1511. top:941px;
  1512. width:352px;
  1513. height:44px;
  1514. line-height:22px;
  1515. }
  1516. #u1613_text {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:352px;
  1522. word-wrap:break-word;
  1523. }
  1524. #u1614_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:1155px;
  1530. height:583px;
  1531. }
  1532. #u1614 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:22px;
  1536. top:1213px;
  1537. width:1155px;
  1538. height:583px;
  1539. }
  1540. #u1614_text {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:0px;
  1544. top:0px;
  1545. width:0px;
  1546. visibility:hidden;
  1547. word-wrap:break-word;
  1548. }
  1549. #u1615_img {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:0px;
  1553. top:0px;
  1554. width:1155px;
  1555. height:583px;
  1556. }
  1557. #u1615 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:22px;
  1561. top:1854px;
  1562. width:1155px;
  1563. height:583px;
  1564. }
  1565. #u1615_text {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:0px;
  1569. top:0px;
  1570. width:0px;
  1571. visibility:hidden;
  1572. word-wrap:break-word;
  1573. }
  1574. #u1616_img {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:-4px;
  1578. top:-4px;
  1579. width:30px;
  1580. height:30px;
  1581. }
  1582. #u1616 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:238px;
  1586. top:2054px;
  1587. width:20px;
  1588. height:20px;
  1589. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1590. font-weight:700;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. color:#1E1E1E;
  1594. }
  1595. #u1616_text {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:2px;
  1599. top:2px;
  1600. width:16px;
  1601. word-wrap:break-word;
  1602. }
  1603. #u1617 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:0px;
  1607. top:0px;
  1608. width:0px;
  1609. height:0px;
  1610. }
  1611. #u1618_img {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:-4px;
  1615. top:-4px;
  1616. width:40px;
  1617. height:40px;
  1618. }
  1619. #u1618 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:1187px;
  1623. top:1011px;
  1624. width:30px;
  1625. height:30px;
  1626. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1627. font-weight:700;
  1628. font-style:normal;
  1629. font-size:18px;
  1630. color:#1E1E1E;
  1631. }
  1632. #u1618_text {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:2px;
  1636. top:4px;
  1637. width:26px;
  1638. word-wrap:break-word;
  1639. }
  1640. #u1619_div {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:0px;
  1644. top:0px;
  1645. width:131px;
  1646. height:19px;
  1647. background:inherit;
  1648. background-color:rgba(255, 255, 255, 0);
  1649. border:none;
  1650. border-radius:0px;
  1651. -moz-box-shadow:none;
  1652. -webkit-box-shadow:none;
  1653. box-shadow:none;
  1654. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1655. font-weight:700;
  1656. font-style:normal;
  1657. font-size:16px;
  1658. }
  1659. #u1619 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:1227px;
  1663. top:1018px;
  1664. width:131px;
  1665. height:19px;
  1666. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1667. font-weight:700;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. }
  1671. #u1619_text {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:131px;
  1677. word-wrap:break-word;
  1678. }
  1679. #u1620_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:352px;
  1685. height:22px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. line-height:22px;
  1694. }
  1695. #u1620 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:1227px;
  1699. top:1056px;
  1700. width:352px;
  1701. height:22px;
  1702. line-height:22px;
  1703. }
  1704. #u1620_text {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:352px;
  1710. word-wrap:break-word;
  1711. }
  1712. #u1621 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:0px;
  1718. height:0px;
  1719. }
  1720. #u1622_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:-4px;
  1724. top:-4px;
  1725. width:44px;
  1726. height:44px;
  1727. }
  1728. #u1622 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:1187px;
  1732. top:1088px;
  1733. width:34px;
  1734. height:34px;
  1735. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1736. font-weight:700;
  1737. font-style:normal;
  1738. font-size:26px;
  1739. }
  1740. #u1622_text {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:2px;
  1744. top:1px;
  1745. width:30px;
  1746. word-wrap:break-word;
  1747. }
  1748. #u1623_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:131px;
  1754. height:19px;
  1755. background:inherit;
  1756. background-color:rgba(255, 255, 255, 0);
  1757. border:none;
  1758. border-radius:0px;
  1759. -moz-box-shadow:none;
  1760. -webkit-box-shadow:none;
  1761. box-shadow:none;
  1762. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1763. font-weight:700;
  1764. font-style:normal;
  1765. font-size:16px;
  1766. }
  1767. #u1623 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:1227px;
  1771. top:1095px;
  1772. width:131px;
  1773. height:19px;
  1774. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1775. font-weight:700;
  1776. font-style:normal;
  1777. font-size:16px;
  1778. }
  1779. #u1623_text {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:0px;
  1783. top:0px;
  1784. width:131px;
  1785. word-wrap:break-word;
  1786. }
  1787. #u1624_div {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:352px;
  1793. height:44px;
  1794. background:inherit;
  1795. background-color:rgba(255, 255, 255, 0);
  1796. border:none;
  1797. border-radius:0px;
  1798. -moz-box-shadow:none;
  1799. -webkit-box-shadow:none;
  1800. box-shadow:none;
  1801. line-height:22px;
  1802. }
  1803. #u1624 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:1227px;
  1807. top:1133px;
  1808. width:352px;
  1809. height:44px;
  1810. line-height:22px;
  1811. }
  1812. #u1624_text {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:352px;
  1818. word-wrap:break-word;
  1819. }
  1820. #u1625 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:0px;
  1826. height:0px;
  1827. }
  1828. #u1626_img {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:-4px;
  1832. top:-4px;
  1833. width:40px;
  1834. height:40px;
  1835. }
  1836. #u1626 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:1187px;
  1840. top:1201px;
  1841. width:30px;
  1842. height:30px;
  1843. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1844. font-weight:700;
  1845. font-style:normal;
  1846. font-size:18px;
  1847. color:#1E1E1E;
  1848. }
  1849. #u1626_text {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:2px;
  1853. top:4px;
  1854. width:26px;
  1855. word-wrap:break-word;
  1856. }
  1857. #u1627_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:107px;
  1863. height:19px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1872. font-weight:700;
  1873. font-style:normal;
  1874. font-size:16px;
  1875. }
  1876. #u1627 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:1227px;
  1880. top:1208px;
  1881. width:107px;
  1882. height:19px;
  1883. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1884. font-weight:700;
  1885. font-style:normal;
  1886. font-size:16px;
  1887. }
  1888. #u1627_text {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:107px;
  1894. word-wrap:break-word;
  1895. }
  1896. #u1628_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:352px;
  1902. height:33px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 0);
  1905. border:none;
  1906. border-radius:0px;
  1907. -moz-box-shadow:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none;
  1910. line-height:22px;
  1911. }
  1912. #u1628 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:1227px;
  1916. top:1246px;
  1917. width:352px;
  1918. height:33px;
  1919. line-height:22px;
  1920. }
  1921. #u1628_text {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:352px;
  1927. word-wrap:break-word;
  1928. }
  1929. #u1629 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:0px;
  1935. height:0px;
  1936. }
  1937. #u1630_img {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:-4px;
  1941. top:-4px;
  1942. width:40px;
  1943. height:40px;
  1944. }
  1945. #u1630 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:1187px;
  1949. top:1293px;
  1950. width:30px;
  1951. height:30px;
  1952. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1953. font-weight:700;
  1954. font-style:normal;
  1955. font-size:18px;
  1956. color:#1E1E1E;
  1957. }
  1958. #u1630_text {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:2px;
  1962. top:4px;
  1963. width:26px;
  1964. word-wrap:break-word;
  1965. }
  1966. #u1631_div {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:107px;
  1972. height:19px;
  1973. background:inherit;
  1974. background-color:rgba(255, 255, 255, 0);
  1975. border:none;
  1976. border-radius:0px;
  1977. -moz-box-shadow:none;
  1978. -webkit-box-shadow:none;
  1979. box-shadow:none;
  1980. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1981. font-weight:700;
  1982. font-style:normal;
  1983. font-size:16px;
  1984. }
  1985. #u1631 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:1227px;
  1989. top:1300px;
  1990. width:107px;
  1991. height:19px;
  1992. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1993. font-weight:700;
  1994. font-style:normal;
  1995. font-size:16px;
  1996. }
  1997. #u1631_text {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:107px;
  2003. word-wrap:break-word;
  2004. }
  2005. #u1632_div {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:352px;
  2011. height:44px;
  2012. background:inherit;
  2013. background-color:rgba(255, 255, 255, 0);
  2014. border:none;
  2015. border-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. line-height:22px;
  2020. }
  2021. #u1632 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:1227px;
  2025. top:1342px;
  2026. width:352px;
  2027. height:44px;
  2028. line-height:22px;
  2029. }
  2030. #u1632_text {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:352px;
  2036. word-wrap:break-word;
  2037. }
  2038. #u1633_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:-4px;
  2042. top:-4px;
  2043. width:30px;
  2044. height:30px;
  2045. }
  2046. #u1633 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:165px;
  2050. top:2054px;
  2051. width:20px;
  2052. height:20px;
  2053. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2054. font-weight:700;
  2055. font-style:normal;
  2056. font-size:14px;
  2057. color:#1E1E1E;
  2058. }
  2059. #u1633_text {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:2px;
  2063. top:2px;
  2064. width:16px;
  2065. word-wrap:break-word;
  2066. }
  2067. #u1634_img {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:-4px;
  2071. top:-4px;
  2072. width:30px;
  2073. height:30px;
  2074. }
  2075. #u1634 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:318px;
  2079. top:2054px;
  2080. width:20px;
  2081. height:20px;
  2082. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2083. font-weight:700;
  2084. font-style:normal;
  2085. font-size:14px;
  2086. color:#1E1E1E;
  2087. }
  2088. #u1634_text {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:2px;
  2092. top:2px;
  2093. width:16px;
  2094. word-wrap:break-word;
  2095. }
  2096. #u1635_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:-4px;
  2100. top:-4px;
  2101. width:30px;
  2102. height:30px;
  2103. }
  2104. #u1635 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:389px;
  2108. top:2054px;
  2109. width:20px;
  2110. height:20px;
  2111. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2112. font-weight:700;
  2113. font-style:normal;
  2114. font-size:14px;
  2115. color:#1E1E1E;
  2116. }
  2117. #u1635_text {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:2px;
  2121. top:2px;
  2122. width:16px;
  2123. word-wrap:break-word;
  2124. }
  2125. #u1636_img {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:-4px;
  2129. top:-4px;
  2130. width:30px;
  2131. height:30px;
  2132. }
  2133. #u1636 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:468px;
  2137. top:2651px;
  2138. width:20px;
  2139. height:20px;
  2140. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2141. font-weight:700;
  2142. font-style:normal;
  2143. font-size:14px;
  2144. color:#1E1E1E;
  2145. }
  2146. #u1636_text {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:2px;
  2150. top:2px;
  2151. width:16px;
  2152. word-wrap:break-word;
  2153. }
  2154. #u1637_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:-4px;
  2158. top:-4px;
  2159. width:30px;
  2160. height:30px;
  2161. }
  2162. #u1637 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:539px;
  2166. top:2651px;
  2167. width:20px;
  2168. height:20px;
  2169. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2170. font-weight:700;
  2171. font-style:normal;
  2172. font-size:14px;
  2173. color:#1E1E1E;
  2174. }
  2175. #u1637_text {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:2px;
  2179. top:2px;
  2180. width:16px;
  2181. word-wrap:break-word;
  2182. }
  2183. #u1638 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:0px;
  2189. height:0px;
  2190. }
  2191. #u1639_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:-4px;
  2195. top:-4px;
  2196. width:40px;
  2197. height:40px;
  2198. }
  2199. #u1639 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:1181px;
  2203. top:587px;
  2204. width:30px;
  2205. height:30px;
  2206. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2207. font-weight:700;
  2208. font-style:normal;
  2209. font-size:18px;
  2210. color:#1E1E1E;
  2211. }
  2212. #u1639_text {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:2px;
  2216. top:4px;
  2217. width:26px;
  2218. word-wrap:break-word;
  2219. }
  2220. #u1640_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:131px;
  2226. height:19px;
  2227. background:inherit;
  2228. background-color:rgba(255, 255, 255, 0);
  2229. border:none;
  2230. border-radius:0px;
  2231. -moz-box-shadow:none;
  2232. -webkit-box-shadow:none;
  2233. box-shadow:none;
  2234. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2235. font-weight:700;
  2236. font-style:normal;
  2237. font-size:16px;
  2238. }
  2239. #u1640 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:1221px;
  2243. top:594px;
  2244. width:131px;
  2245. height:19px;
  2246. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2247. font-weight:700;
  2248. font-style:normal;
  2249. font-size:16px;
  2250. }
  2251. #u1640_text {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:131px;
  2257. word-wrap:break-word;
  2258. }
  2259. #u1641_div {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:352px;
  2265. height:154px;
  2266. background:inherit;
  2267. background-color:rgba(255, 255, 255, 0);
  2268. border:none;
  2269. border-radius:0px;
  2270. -moz-box-shadow:none;
  2271. -webkit-box-shadow:none;
  2272. box-shadow:none;
  2273. line-height:22px;
  2274. }
  2275. #u1641 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:1221px;
  2279. top:632px;
  2280. width:352px;
  2281. height:154px;
  2282. line-height:22px;
  2283. }
  2284. #u1641_text {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:352px;
  2290. word-wrap:break-word;
  2291. }
  2292. #u1642 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:1364px;
  2296. top:741px;
  2297. width:93px;
  2298. height:25px;
  2299. overflow:hidden;
  2300. background-image:url('../../resources/images/transparent.gif');
  2301. }
  2302. #u1643_div {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:279px;
  2308. height:105px;
  2309. background:inherit;
  2310. background-color:rgba(255, 255, 0, 1);
  2311. box-sizing:border-box;
  2312. border-width:1px;
  2313. border-style:solid;
  2314. border-color:rgba(0, 0, 0, 1);
  2315. border-radius:10px;
  2316. -moz-box-shadow:none;
  2317. -webkit-box-shadow:none;
  2318. box-shadow:none;
  2319. text-align:left;
  2320. line-height:18px;
  2321. }
  2322. #u1643 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:1258px;
  2326. top:626px;
  2327. width:279px;
  2328. height:105px;
  2329. text-align:left;
  2330. line-height:18px;
  2331. }
  2332. #u1643_text {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:2px;
  2336. top:13px;
  2337. width:275px;
  2338. word-wrap:break-word;
  2339. }
  2340. #u1644 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:1383px;
  2344. top:677px;
  2345. width:54px;
  2346. height:20px;
  2347. overflow:hidden;
  2348. background-image:url('../../resources/images/transparent.gif');
  2349. }
  2350. #u1645 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:1294px;
  2354. top:761px;
  2355. width:70px;
  2356. height:25px;
  2357. overflow:hidden;
  2358. background-image:url('../../resources/images/transparent.gif');
  2359. }
  2360. #u1646_div {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:232px;
  2366. height:136px;
  2367. background:inherit;
  2368. background-color:rgba(255, 255, 0, 1);
  2369. box-sizing:border-box;
  2370. border-width:1px;
  2371. border-style:solid;
  2372. border-color:rgba(0, 0, 0, 1);
  2373. border-radius:10px;
  2374. -moz-box-shadow:none;
  2375. -webkit-box-shadow:none;
  2376. box-shadow:none;
  2377. text-align:left;
  2378. line-height:18px;
  2379. }
  2380. #u1646 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:1221px;
  2384. top:786px;
  2385. width:232px;
  2386. height:136px;
  2387. text-align:left;
  2388. line-height:18px;
  2389. }
  2390. #u1646_text {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:2px;
  2394. top:8px;
  2395. width:228px;
  2396. word-wrap:break-word;
  2397. }
  2398. #u1647_div {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:223px;
  2404. height:79px;
  2405. background:inherit;
  2406. background-color:rgba(255, 255, 0, 1);
  2407. box-sizing:border-box;
  2408. border-width:1px;
  2409. border-style:solid;
  2410. border-color:rgba(0, 0, 0, 1);
  2411. border-radius:10px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. text-align:left;
  2416. line-height:18px;
  2417. }
  2418. #u1647 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:1339px;
  2422. top:766px;
  2423. width:223px;
  2424. height:79px;
  2425. text-align:left;
  2426. line-height:18px;
  2427. }
  2428. #u1647_text {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:2px;
  2432. top:23px;
  2433. width:219px;
  2434. word-wrap:break-word;
  2435. }
  2436. #u1648_div {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:223px;
  2442. height:105px;
  2443. background:inherit;
  2444. background-color:rgba(255, 255, 0, 1);
  2445. box-sizing:border-box;
  2446. border-width:1px;
  2447. border-style:solid;
  2448. border-color:rgba(0, 0, 0, 1);
  2449. border-radius:10px;
  2450. -moz-box-shadow:none;
  2451. -webkit-box-shadow:none;
  2452. box-shadow:none;
  2453. text-align:left;
  2454. line-height:18px;
  2455. }
  2456. #u1648 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:1287px;
  2460. top:562px;
  2461. width:223px;
  2462. height:105px;
  2463. text-align:left;
  2464. line-height:18px;
  2465. }
  2466. #u1648_text {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:2px;
  2470. top:13px;
  2471. width:219px;
  2472. word-wrap:break-word;
  2473. }
  2474. #u1649 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:1493px;
  2478. top:743px;
  2479. width:58px;
  2480. height:22px;
  2481. overflow:hidden;
  2482. background-image:url('../../resources/images/transparent.gif');
  2483. }
  2484. #u1650_div {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:223px;
  2490. height:79px;
  2491. background:inherit;
  2492. background-color:rgba(255, 255, 0, 1);
  2493. box-sizing:border-box;
  2494. border-width:1px;
  2495. border-style:solid;
  2496. border-color:rgba(0, 0, 0, 1);
  2497. border-radius:10px;
  2498. -moz-box-shadow:none;
  2499. -webkit-box-shadow:none;
  2500. box-shadow:none;
  2501. text-align:left;
  2502. line-height:18px;
  2503. }
  2504. #u1650 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:1304px;
  2508. top:775px;
  2509. width:223px;
  2510. height:79px;
  2511. text-align:left;
  2512. line-height:18px;
  2513. }
  2514. #u1650_text {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:2px;
  2518. top:23px;
  2519. width:219px;
  2520. word-wrap:break-word;
  2521. }
  2522. #u1651_div {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:232px;
  2528. height:146px;
  2529. background:inherit;
  2530. background-color:rgba(255, 255, 0, 1);
  2531. box-sizing:border-box;
  2532. border-width:1px;
  2533. border-style:solid;
  2534. border-color:rgba(0, 0, 0, 1);
  2535. border-radius:10px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. text-align:left;
  2540. line-height:18px;
  2541. }
  2542. #u1651 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:1240px;
  2546. top:4163px;
  2547. width:232px;
  2548. height:146px;
  2549. text-align:left;
  2550. line-height:18px;
  2551. }
  2552. #u1651_text {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:2px;
  2556. top:18px;
  2557. width:228px;
  2558. word-wrap:break-word;
  2559. }
  2560. #u1652 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:1403px;
  2564. top:4054px;
  2565. width:54px;
  2566. height:20px;
  2567. overflow:hidden;
  2568. background-image:url('../../resources/images/transparent.gif');
  2569. }
  2570. #u1653_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:223px;
  2576. height:105px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 0, 1);
  2579. box-sizing:border-box;
  2580. border-width:1px;
  2581. border-style:solid;
  2582. border-color:rgba(0, 0, 0, 1);
  2583. border-radius:10px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. text-align:left;
  2588. line-height:18px;
  2589. }
  2590. #u1653 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:1313px;
  2594. top:3944px;
  2595. width:223px;
  2596. height:105px;
  2597. text-align:left;
  2598. line-height:18px;
  2599. }
  2600. #u1653_text {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:2px;
  2604. top:13px;
  2605. width:219px;
  2606. word-wrap:break-word;
  2607. }
  2608. #u1654 {
  2609. position:fixed;
  2610. left:1419px;
  2611. top:62px;
  2612. }
  2613. #u1654_state0 {
  2614. position:relative;
  2615. left:0px;
  2616. top:0px;
  2617. width:140px;
  2618. height:40px;
  2619. background-image:none;
  2620. }
  2621. #u1654_state0_content {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:1px;
  2627. height:1px;
  2628. }
  2629. #u1655_div {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:140px;
  2635. height:40px;
  2636. background:inherit;
  2637. background-color:rgba(51, 160, 154, 1);
  2638. border:none;
  2639. border-radius:5px;
  2640. -moz-box-shadow:none;
  2641. -webkit-box-shadow:none;
  2642. box-shadow:none;
  2643. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2644. font-weight:700;
  2645. font-style:normal;
  2646. font-size:16px;
  2647. }
  2648. #u1655 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:140px;
  2654. height:40px;
  2655. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2656. font-weight:700;
  2657. font-style:normal;
  2658. font-size:16px;
  2659. }
  2660. #u1655_text {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:2px;
  2664. top:10px;
  2665. width:136px;
  2666. word-wrap:break-word;
  2667. }