styles.css 44 KB

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