styles.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1583px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u0_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1155px;
  21. height:583px;
  22. }
  23. #u0 {
  24. border-width:0px;
  25. position:absolute;
  26. left:21px;
  27. top:863px;
  28. width:1155px;
  29. height:583px;
  30. }
  31. #u0_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u1_img {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:1155px;
  46. height:583px;
  47. }
  48. #u1 {
  49. border-width:0px;
  50. position:absolute;
  51. left:21px;
  52. top:235px;
  53. width:1155px;
  54. height:583px;
  55. }
  56. #u1_text {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:0px;
  62. visibility:hidden;
  63. word-wrap:break-word;
  64. }
  65. #u2 {
  66. border-width:0px;
  67. position:absolute;
  68. left:0px;
  69. top:0px;
  70. width:0px;
  71. height:0px;
  72. }
  73. #u3_img {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:8px;
  79. height:28px;
  80. }
  81. #u3 {
  82. border-width:0px;
  83. position:absolute;
  84. left:7px;
  85. top:21px;
  86. width:8px;
  87. height:28px;
  88. }
  89. #u3_text {
  90. border-width:0px;
  91. position:absolute;
  92. left:0px;
  93. top:0px;
  94. width:0px;
  95. visibility:hidden;
  96. word-wrap:break-word;
  97. }
  98. #u4_div {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:97px;
  104. height:28px;
  105. background:inherit;
  106. background-color:rgba(255, 255, 255, 0);
  107. border:none;
  108. border-radius:0px;
  109. -moz-box-shadow:none;
  110. -webkit-box-shadow:none;
  111. box-shadow:none;
  112. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  113. font-weight:700;
  114. font-style:normal;
  115. }
  116. #u4 {
  117. border-width:0px;
  118. position:absolute;
  119. left:21px;
  120. top:21px;
  121. width:97px;
  122. height:28px;
  123. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  124. font-weight:700;
  125. font-style:normal;
  126. }
  127. #u4_text {
  128. border-width:0px;
  129. position:absolute;
  130. left:0px;
  131. top:0px;
  132. width:97px;
  133. white-space:nowrap;
  134. }
  135. #u5_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:109px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  150. font-weight:700;
  151. font-style:normal;
  152. font-size:18px;
  153. }
  154. #u5 {
  155. border-width:0px;
  156. position:absolute;
  157. left:21px;
  158. top:77px;
  159. width:109px;
  160. height:22px;
  161. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  162. font-weight:700;
  163. font-style:normal;
  164. font-size:18px;
  165. }
  166. #u5_text {
  167. border-width:0px;
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:109px;
  172. white-space:nowrap;
  173. }
  174. #u6_div {
  175. border-width:0px;
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:661px;
  180. height:72px;
  181. background:inherit;
  182. background-color:rgba(255, 255, 255, 0);
  183. border:none;
  184. border-radius:0px;
  185. -moz-box-shadow:none;
  186. -webkit-box-shadow:none;
  187. box-shadow:none;
  188. font-size:16px;
  189. line-height:24px;
  190. }
  191. #u6 {
  192. border-width:0px;
  193. position:absolute;
  194. left:58px;
  195. top:119px;
  196. width:661px;
  197. height:72px;
  198. font-size:16px;
  199. line-height:24px;
  200. }
  201. #u6_text {
  202. border-width:0px;
  203. position:absolute;
  204. left:0px;
  205. top:0px;
  206. width:661px;
  207. word-wrap:break-word;
  208. }
  209. #u7_div {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:233px;
  215. height:22px;
  216. background:inherit;
  217. background-color:rgba(255, 255, 255, 0);
  218. border:none;
  219. border-radius:0px;
  220. -moz-box-shadow:none;
  221. -webkit-box-shadow:none;
  222. box-shadow:none;
  223. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  224. font-weight:700;
  225. font-style:normal;
  226. font-size:18px;
  227. }
  228. #u7 {
  229. border-width:0px;
  230. position:absolute;
  231. left:21px;
  232. top:207px;
  233. width:233px;
  234. height:22px;
  235. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  236. font-weight:700;
  237. font-style:normal;
  238. font-size:18px;
  239. }
  240. #u7_text {
  241. border-width:0px;
  242. position:absolute;
  243. left:0px;
  244. top:0px;
  245. width:233px;
  246. white-space:nowrap;
  247. }
  248. #u8 {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:0px;
  254. height:0px;
  255. }
  256. #u9_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:-4px;
  260. top:-4px;
  261. width:40px;
  262. height:40px;
  263. }
  264. #u9 {
  265. border-width:0px;
  266. position:absolute;
  267. left:1191px;
  268. top:243px;
  269. width:30px;
  270. height:30px;
  271. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  272. font-weight:700;
  273. font-style:normal;
  274. font-size:18px;
  275. color:#1E1E1E;
  276. }
  277. #u9_text {
  278. border-width:0px;
  279. position:absolute;
  280. left:2px;
  281. top:4px;
  282. width:26px;
  283. word-wrap:break-word;
  284. }
  285. #u10_div {
  286. border-width:0px;
  287. position:absolute;
  288. left:0px;
  289. top:0px;
  290. width:131px;
  291. height:19px;
  292. background:inherit;
  293. background-color:rgba(255, 255, 255, 0);
  294. border:none;
  295. border-radius:0px;
  296. -moz-box-shadow:none;
  297. -webkit-box-shadow:none;
  298. box-shadow:none;
  299. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  300. font-weight:700;
  301. font-style:normal;
  302. font-size:16px;
  303. }
  304. #u10 {
  305. border-width:0px;
  306. position:absolute;
  307. left:1231px;
  308. top:250px;
  309. width:131px;
  310. height:19px;
  311. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  312. font-weight:700;
  313. font-style:normal;
  314. font-size:16px;
  315. }
  316. #u10_text {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:131px;
  322. word-wrap:break-word;
  323. }
  324. #u11_div {
  325. border-width:0px;
  326. position:absolute;
  327. left:0px;
  328. top:0px;
  329. width:352px;
  330. height:44px;
  331. background:inherit;
  332. background-color:rgba(255, 255, 255, 0);
  333. border:none;
  334. border-radius:0px;
  335. -moz-box-shadow:none;
  336. -webkit-box-shadow:none;
  337. box-shadow:none;
  338. line-height:22px;
  339. }
  340. #u11 {
  341. border-width:0px;
  342. position:absolute;
  343. left:1231px;
  344. top:288px;
  345. width:352px;
  346. height:44px;
  347. line-height:22px;
  348. }
  349. #u11_text {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:352px;
  355. word-wrap:break-word;
  356. }
  357. #u12_img {
  358. border-width:0px;
  359. position:absolute;
  360. left:-4px;
  361. top:-4px;
  362. width:44px;
  363. height:44px;
  364. }
  365. #u12 {
  366. border-width:0px;
  367. position:absolute;
  368. left:1189px;
  369. top:352px;
  370. width:34px;
  371. height:34px;
  372. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  373. font-weight:700;
  374. font-style:normal;
  375. font-size:26px;
  376. }
  377. #u12_text {
  378. border-width:0px;
  379. position:absolute;
  380. left:2px;
  381. top:1px;
  382. width:30px;
  383. word-wrap:break-word;
  384. }
  385. #u13_div {
  386. border-width:0px;
  387. position:absolute;
  388. left:0px;
  389. top:0px;
  390. width:131px;
  391. height:19px;
  392. background:inherit;
  393. background-color:rgba(255, 255, 255, 0);
  394. border:none;
  395. border-radius:0px;
  396. -moz-box-shadow:none;
  397. -webkit-box-shadow:none;
  398. box-shadow:none;
  399. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  400. font-weight:700;
  401. font-style:normal;
  402. font-size:16px;
  403. }
  404. #u13 {
  405. border-width:0px;
  406. position:absolute;
  407. left:1229px;
  408. top:359px;
  409. width:131px;
  410. height:19px;
  411. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  412. font-weight:700;
  413. font-style:normal;
  414. font-size:16px;
  415. }
  416. #u13_text {
  417. border-width:0px;
  418. position:absolute;
  419. left:0px;
  420. top:0px;
  421. width:131px;
  422. word-wrap:break-word;
  423. }
  424. #u14_div {
  425. border-width:0px;
  426. position:absolute;
  427. left:0px;
  428. top:0px;
  429. width:352px;
  430. height:154px;
  431. background:inherit;
  432. background-color:rgba(255, 255, 255, 0);
  433. border:none;
  434. border-radius:0px;
  435. -moz-box-shadow:none;
  436. -webkit-box-shadow:none;
  437. box-shadow:none;
  438. line-height:22px;
  439. }
  440. #u14 {
  441. border-width:0px;
  442. position:absolute;
  443. left:1229px;
  444. top:397px;
  445. width:352px;
  446. height:154px;
  447. line-height:22px;
  448. }
  449. #u14_text {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:352px;
  455. word-wrap:break-word;
  456. }
  457. #u15 {
  458. border-width:0px;
  459. position:absolute;
  460. left:1435px;
  461. top:440px;
  462. width:88px;
  463. height:22px;
  464. overflow:hidden;
  465. background-image:url('../../resources/images/transparent.gif');
  466. }
  467. #u16_div {
  468. border-width:0px;
  469. position:absolute;
  470. left:0px;
  471. top:0px;
  472. width:258px;
  473. height:39px;
  474. background:inherit;
  475. background-color:rgba(255, 255, 0, 1);
  476. box-sizing:border-box;
  477. border-width:1px;
  478. border-style:solid;
  479. border-color:rgba(0, 0, 0, 1);
  480. border-radius:10px;
  481. -moz-box-shadow:none;
  482. -webkit-box-shadow:none;
  483. box-shadow:none;
  484. font-size:11px;
  485. line-height:18px;
  486. }
  487. #u16 {
  488. border-width:0px;
  489. position:absolute;
  490. left:1300px;
  491. top:462px;
  492. width:258px;
  493. height:39px;
  494. font-size:11px;
  495. line-height:18px;
  496. }
  497. #u16_text {
  498. border-width:0px;
  499. position:absolute;
  500. left:2px;
  501. top:2px;
  502. width:254px;
  503. word-wrap:break-word;
  504. }
  505. #u17_div {
  506. border-width:0px;
  507. position:absolute;
  508. left:0px;
  509. top:0px;
  510. width:328px;
  511. height:150px;
  512. background:inherit;
  513. background-color:rgba(255, 255, 0, 1);
  514. box-sizing:border-box;
  515. border-width:1px;
  516. border-style:solid;
  517. border-color:rgba(0, 0, 0, 1);
  518. border-radius:10px;
  519. -moz-box-shadow:none;
  520. -webkit-box-shadow:none;
  521. box-shadow:none;
  522. color:#000000;
  523. text-align:left;
  524. line-height:18px;
  525. }
  526. #u17 {
  527. border-width:0px;
  528. position:absolute;
  529. left:1175px;
  530. top:472px;
  531. width:328px;
  532. height:150px;
  533. color:#000000;
  534. text-align:left;
  535. line-height:18px;
  536. }
  537. #u17_text {
  538. border-width:0px;
  539. position:absolute;
  540. left:2px;
  541. top:12px;
  542. width:324px;
  543. word-wrap:break-word;
  544. }
  545. #u18 {
  546. border-width:0px;
  547. position:absolute;
  548. left:1277px;
  549. top:440px;
  550. width:57px;
  551. height:22px;
  552. overflow:hidden;
  553. background-image:url('../../resources/images/transparent.gif');
  554. }
  555. #u19_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:352px;
  561. height:66px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 0, 1);
  564. box-sizing:border-box;
  565. border-width:1px;
  566. border-style:solid;
  567. border-color:rgba(0, 0, 0, 1);
  568. border-radius:10px;
  569. -moz-box-shadow:none;
  570. -webkit-box-shadow:none;
  571. box-shadow:none;
  572. line-height:18px;
  573. }
  574. #u19 {
  575. border-width:0px;
  576. position:absolute;
  577. left:1222px;
  578. top:528px;
  579. width:352px;
  580. height:66px;
  581. line-height:18px;
  582. }
  583. #u19_text {
  584. border-width:0px;
  585. position:absolute;
  586. left:2px;
  587. top:15px;
  588. width:348px;
  589. word-wrap:break-word;
  590. }
  591. #u20 {
  592. border-width:0px;
  593. position:absolute;
  594. left:1438px;
  595. top:507px;
  596. width:65px;
  597. height:21px;
  598. overflow:hidden;
  599. background-image:url('../../resources/images/transparent.gif');
  600. }
  601. #u21 {
  602. border-width:0px;
  603. position:absolute;
  604. left:1331px;
  605. top:484px;
  606. width:81px;
  607. height:21px;
  608. overflow:hidden;
  609. background-image:url('../../resources/images/transparent.gif');
  610. }
  611. #u22_div {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:267px;
  617. height:56px;
  618. background:inherit;
  619. background-color:rgba(255, 255, 0, 1);
  620. box-sizing:border-box;
  621. border-width:1px;
  622. border-style:solid;
  623. border-color:rgba(0, 0, 0, 1);
  624. border-radius:10px;
  625. -moz-box-shadow:none;
  626. -webkit-box-shadow:none;
  627. box-shadow:none;
  628. font-size:11px;
  629. text-align:left;
  630. line-height:18px;
  631. }
  632. #u22 {
  633. border-width:0px;
  634. position:absolute;
  635. left:1311px;
  636. top:418px;
  637. width:267px;
  638. height:56px;
  639. font-size:11px;
  640. text-align:left;
  641. line-height:18px;
  642. }
  643. #u22_text {
  644. border-width:0px;
  645. position:absolute;
  646. left:2px;
  647. top:1px;
  648. width:263px;
  649. word-wrap:break-word;
  650. }
  651. #u23_img {
  652. border-width:0px;
  653. position:absolute;
  654. left:-4px;
  655. top:-4px;
  656. width:30px;
  657. height:30px;
  658. }
  659. #u23 {
  660. border-width:0px;
  661. position:absolute;
  662. left:1128px;
  663. top:1220px;
  664. width:20px;
  665. height:20px;
  666. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  667. font-weight:700;
  668. font-style:normal;
  669. font-size:14px;
  670. color:#1E1E1E;
  671. }
  672. #u23_text {
  673. border-width:0px;
  674. position:absolute;
  675. left:2px;
  676. top:2px;
  677. width:16px;
  678. word-wrap:break-word;
  679. }
  680. #u24 {
  681. border-width:0px;
  682. position:absolute;
  683. left:0px;
  684. top:0px;
  685. width:0px;
  686. height:0px;
  687. }
  688. #u25_img {
  689. border-width:0px;
  690. position:absolute;
  691. left:-4px;
  692. top:-4px;
  693. width:40px;
  694. height:40px;
  695. }
  696. #u25 {
  697. border-width:0px;
  698. position:absolute;
  699. left:1186px;
  700. top:561px;
  701. width:30px;
  702. height:30px;
  703. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  704. font-weight:700;
  705. font-style:normal;
  706. font-size:18px;
  707. color:#1E1E1E;
  708. }
  709. #u25_text {
  710. border-width:0px;
  711. position:absolute;
  712. left:2px;
  713. top:4px;
  714. width:26px;
  715. word-wrap:break-word;
  716. }
  717. #u26_div {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:131px;
  723. height:19px;
  724. background:inherit;
  725. background-color:rgba(255, 255, 255, 0);
  726. border:none;
  727. border-radius:0px;
  728. -moz-box-shadow:none;
  729. -webkit-box-shadow:none;
  730. box-shadow:none;
  731. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  732. font-weight:700;
  733. font-style:normal;
  734. font-size:16px;
  735. }
  736. #u26 {
  737. border-width:0px;
  738. position:absolute;
  739. left:1226px;
  740. top:568px;
  741. width:131px;
  742. height:19px;
  743. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  744. font-weight:700;
  745. font-style:normal;
  746. font-size:16px;
  747. }
  748. #u26_text {
  749. border-width:0px;
  750. position:absolute;
  751. left:0px;
  752. top:0px;
  753. width:131px;
  754. word-wrap:break-word;
  755. }
  756. #u27_div {
  757. border-width:0px;
  758. position:absolute;
  759. left:0px;
  760. top:0px;
  761. width:352px;
  762. height:44px;
  763. background:inherit;
  764. background-color:rgba(255, 255, 255, 0);
  765. border:none;
  766. border-radius:0px;
  767. -moz-box-shadow:none;
  768. -webkit-box-shadow:none;
  769. box-shadow:none;
  770. line-height:22px;
  771. }
  772. #u27 {
  773. border-width:0px;
  774. position:absolute;
  775. left:1226px;
  776. top:606px;
  777. width:352px;
  778. height:44px;
  779. line-height:22px;
  780. }
  781. #u27_text {
  782. border-width:0px;
  783. position:absolute;
  784. left:0px;
  785. top:0px;
  786. width:352px;
  787. word-wrap:break-word;
  788. }
  789. #u28 {
  790. border-width:0px;
  791. position:absolute;
  792. left:0px;
  793. top:0px;
  794. width:0px;
  795. height:0px;
  796. }
  797. #u29_img {
  798. border-width:0px;
  799. position:absolute;
  800. left:0px;
  801. top:0px;
  802. width:8px;
  803. height:28px;
  804. }
  805. #u29 {
  806. border-width:0px;
  807. position:absolute;
  808. left:7px;
  809. top:1476px;
  810. width:8px;
  811. height:28px;
  812. }
  813. #u29_text {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:0px;
  819. visibility:hidden;
  820. word-wrap:break-word;
  821. }
  822. #u30_div {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:97px;
  828. height:28px;
  829. background:inherit;
  830. background-color:rgba(255, 255, 255, 0);
  831. border:none;
  832. border-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  837. font-weight:700;
  838. font-style:normal;
  839. }
  840. #u30 {
  841. border-width:0px;
  842. position:absolute;
  843. left:21px;
  844. top:1476px;
  845. width:97px;
  846. height:28px;
  847. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  848. font-weight:700;
  849. font-style:normal;
  850. }
  851. #u30_text {
  852. border-width:0px;
  853. position:absolute;
  854. left:0px;
  855. top:0px;
  856. width:97px;
  857. white-space:nowrap;
  858. }
  859. #u31_div {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:109px;
  865. height:22px;
  866. background:inherit;
  867. background-color:rgba(255, 255, 255, 0);
  868. border:none;
  869. border-radius:0px;
  870. -moz-box-shadow:none;
  871. -webkit-box-shadow:none;
  872. box-shadow:none;
  873. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  874. font-weight:700;
  875. font-style:normal;
  876. font-size:18px;
  877. }
  878. #u31 {
  879. border-width:0px;
  880. position:absolute;
  881. left:21px;
  882. top:1532px;
  883. width:109px;
  884. height:22px;
  885. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  886. font-weight:700;
  887. font-style:normal;
  888. font-size:18px;
  889. }
  890. #u31_text {
  891. border-width:0px;
  892. position:absolute;
  893. left:0px;
  894. top:0px;
  895. width:109px;
  896. white-space:nowrap;
  897. }
  898. #u32_div {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:609px;
  904. height:20px;
  905. background:inherit;
  906. background-color:rgba(255, 255, 255, 0);
  907. border:none;
  908. border-radius:0px;
  909. -moz-box-shadow:none;
  910. -webkit-box-shadow:none;
  911. box-shadow:none;
  912. font-size:16px;
  913. line-height:24px;
  914. }
  915. #u32 {
  916. border-width:0px;
  917. position:absolute;
  918. left:58px;
  919. top:1587px;
  920. width:609px;
  921. height:20px;
  922. font-size:16px;
  923. line-height:24px;
  924. }
  925. #u32_text {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:609px;
  931. word-wrap:break-word;
  932. }
  933. #u33_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:197px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  948. font-weight:700;
  949. font-style:normal;
  950. font-size:18px;
  951. }
  952. #u33 {
  953. border-width:0px;
  954. position:absolute;
  955. left:21px;
  956. top:1644px;
  957. width:197px;
  958. height:22px;
  959. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  960. font-weight:700;
  961. font-style:normal;
  962. font-size:18px;
  963. }
  964. #u33_text {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:197px;
  970. white-space:nowrap;
  971. }
  972. #u34_div {
  973. border-width:0px;
  974. position:absolute;
  975. left:0px;
  976. top:0px;
  977. width:124px;
  978. height:19px;
  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. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  987. font-weight:700;
  988. font-style:normal;
  989. font-size:16px;
  990. }
  991. #u34 {
  992. border-width:0px;
  993. position:absolute;
  994. left:1229px;
  995. top:1700px;
  996. width:124px;
  997. height:19px;
  998. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  999. font-weight:700;
  1000. font-style:normal;
  1001. font-size:16px;
  1002. }
  1003. #u34_text {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:124px;
  1009. word-wrap:break-word;
  1010. }
  1011. #u35_div {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:332px;
  1017. height:88px;
  1018. background:inherit;
  1019. background-color:rgba(255, 255, 255, 0);
  1020. border:none;
  1021. border-radius:0px;
  1022. -moz-box-shadow:none;
  1023. -webkit-box-shadow:none;
  1024. box-shadow:none;
  1025. line-height:22px;
  1026. }
  1027. #u35 {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:1229px;
  1031. top:1738px;
  1032. width:332px;
  1033. height:88px;
  1034. line-height:22px;
  1035. }
  1036. #u35_text {
  1037. border-width:0px;
  1038. position:absolute;
  1039. left:0px;
  1040. top:0px;
  1041. width:332px;
  1042. word-wrap:break-word;
  1043. }
  1044. #u36 {
  1045. border-width:0px;
  1046. position:absolute;
  1047. left:1435px;
  1048. top:1780px;
  1049. width:122px;
  1050. height:20px;
  1051. overflow:hidden;
  1052. background-image:url('../../resources/images/transparent.gif');
  1053. }
  1054. #u37_div {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:352px;
  1060. height:112px;
  1061. background:inherit;
  1062. background-color:rgba(255, 255, 0, 1);
  1063. box-sizing:border-box;
  1064. border-width:1px;
  1065. border-style:solid;
  1066. border-color:rgba(0, 0, 0, 1);
  1067. border-radius:10px;
  1068. -moz-box-shadow:none;
  1069. -webkit-box-shadow:none;
  1070. box-shadow:none;
  1071. text-align:left;
  1072. line-height:18px;
  1073. }
  1074. #u37 {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:1191px;
  1078. top:1626px;
  1079. width:352px;
  1080. height:112px;
  1081. text-align:left;
  1082. line-height:18px;
  1083. }
  1084. #u37_text {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:2px;
  1088. top:20px;
  1089. width:348px;
  1090. word-wrap:break-word;
  1091. }
  1092. #u38 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:1405px;
  1096. top:1760px;
  1097. width:79px;
  1098. height:20px;
  1099. overflow:hidden;
  1100. background-image:url('../../resources/images/transparent.gif');
  1101. }
  1102. #u39 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:1229px;
  1106. top:1806px;
  1107. width:39px;
  1108. height:20px;
  1109. overflow:hidden;
  1110. background-image:url('../../resources/images/transparent.gif');
  1111. }
  1112. #u40 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u41_img {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:-4px;
  1124. top:-4px;
  1125. width:38px;
  1126. height:40px;
  1127. }
  1128. #u41 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:1191px;
  1132. top:1847px;
  1133. width:28px;
  1134. height:30px;
  1135. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1136. font-weight:700;
  1137. font-style:normal;
  1138. font-size:18px;
  1139. color:#1E1E1E;
  1140. }
  1141. #u41_text {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:2px;
  1145. top:4px;
  1146. width:24px;
  1147. word-wrap:break-word;
  1148. }
  1149. #u42_div {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:124px;
  1155. height:19px;
  1156. background:inherit;
  1157. background-color:rgba(255, 255, 255, 0);
  1158. border:none;
  1159. border-radius:0px;
  1160. -moz-box-shadow:none;
  1161. -webkit-box-shadow:none;
  1162. box-shadow:none;
  1163. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1164. font-weight:700;
  1165. font-style:normal;
  1166. font-size:16px;
  1167. }
  1168. #u42 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:1229px;
  1172. top:1854px;
  1173. width:124px;
  1174. height:19px;
  1175. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1176. font-weight:700;
  1177. font-style:normal;
  1178. font-size:16px;
  1179. }
  1180. #u42_text {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:124px;
  1186. word-wrap:break-word;
  1187. }
  1188. #u43_div {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:332px;
  1194. height:44px;
  1195. background:inherit;
  1196. background-color:rgba(255, 255, 255, 0);
  1197. border:none;
  1198. border-radius:0px;
  1199. -moz-box-shadow:none;
  1200. -webkit-box-shadow:none;
  1201. box-shadow:none;
  1202. line-height:22px;
  1203. }
  1204. #u43 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:1229px;
  1208. top:1892px;
  1209. width:332px;
  1210. height:44px;
  1211. line-height:22px;
  1212. }
  1213. #u43_text {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:332px;
  1219. word-wrap:break-word;
  1220. }
  1221. #u44 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:0px;
  1227. height:0px;
  1228. }
  1229. #u45_img {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:-4px;
  1233. top:-4px;
  1234. width:38px;
  1235. height:40px;
  1236. }
  1237. #u45 {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:1191px;
  1241. top:1934px;
  1242. width:28px;
  1243. height:30px;
  1244. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1245. font-weight:700;
  1246. font-style:normal;
  1247. font-size:18px;
  1248. color:#1E1E1E;
  1249. }
  1250. #u45_text {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:2px;
  1254. top:4px;
  1255. width:24px;
  1256. word-wrap:break-word;
  1257. }
  1258. #u46_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:124px;
  1264. height:19px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 0);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1273. font-weight:700;
  1274. font-style:normal;
  1275. font-size:16px;
  1276. }
  1277. #u46 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:1229px;
  1281. top:1941px;
  1282. width:124px;
  1283. height:19px;
  1284. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1285. font-weight:700;
  1286. font-style:normal;
  1287. font-size:16px;
  1288. }
  1289. #u46_text {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:124px;
  1295. word-wrap:break-word;
  1296. }
  1297. #u47_div {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:0px;
  1301. top:0px;
  1302. width:332px;
  1303. height:22px;
  1304. background:inherit;
  1305. background-color:rgba(255, 255, 255, 0);
  1306. border:none;
  1307. border-radius:0px;
  1308. -moz-box-shadow:none;
  1309. -webkit-box-shadow:none;
  1310. box-shadow:none;
  1311. line-height:22px;
  1312. }
  1313. #u47 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:1229px;
  1317. top:1979px;
  1318. width:332px;
  1319. height:22px;
  1320. line-height:22px;
  1321. }
  1322. #u47_text {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:332px;
  1328. word-wrap:break-word;
  1329. }
  1330. #u48 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:0px;
  1336. height:0px;
  1337. }
  1338. #u49_img {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:-4px;
  1342. top:-4px;
  1343. width:38px;
  1344. height:40px;
  1345. }
  1346. #u49 {
  1347. border-width:0px;
  1348. position:absolute;
  1349. left:1191px;
  1350. top:2011px;
  1351. width:28px;
  1352. height:30px;
  1353. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1354. font-weight:700;
  1355. font-style:normal;
  1356. font-size:18px;
  1357. color:#1E1E1E;
  1358. }
  1359. #u49_text {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:2px;
  1363. top:4px;
  1364. width:24px;
  1365. word-wrap:break-word;
  1366. }
  1367. #u50_div {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:0px;
  1371. top:0px;
  1372. width:69px;
  1373. height:19px;
  1374. background:inherit;
  1375. background-color:rgba(255, 255, 255, 0);
  1376. border:none;
  1377. border-radius:0px;
  1378. -moz-box-shadow:none;
  1379. -webkit-box-shadow:none;
  1380. box-shadow:none;
  1381. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1382. font-weight:700;
  1383. font-style:normal;
  1384. font-size:16px;
  1385. }
  1386. #u50 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:1229px;
  1390. top:2018px;
  1391. width:69px;
  1392. height:19px;
  1393. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1394. font-weight:700;
  1395. font-style:normal;
  1396. font-size:16px;
  1397. }
  1398. #u50_text {
  1399. border-width:0px;
  1400. position:absolute;
  1401. left:0px;
  1402. top:0px;
  1403. width:69px;
  1404. word-wrap:break-word;
  1405. }
  1406. #u51_div {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:332px;
  1412. height:66px;
  1413. background:inherit;
  1414. background-color:rgba(255, 255, 255, 0);
  1415. border:none;
  1416. border-radius:0px;
  1417. -moz-box-shadow:none;
  1418. -webkit-box-shadow:none;
  1419. box-shadow:none;
  1420. line-height:22px;
  1421. }
  1422. #u51 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:1229px;
  1426. top:2056px;
  1427. width:332px;
  1428. height:66px;
  1429. line-height:22px;
  1430. }
  1431. #u51_text {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:332px;
  1437. word-wrap:break-word;
  1438. }
  1439. #u52 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:0px;
  1445. height:0px;
  1446. }
  1447. #u53_img {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:-4px;
  1451. top:-4px;
  1452. width:38px;
  1453. height:40px;
  1454. }
  1455. #u53 {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:1191px;
  1459. top:2132px;
  1460. width:28px;
  1461. height:30px;
  1462. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1463. font-weight:700;
  1464. font-style:normal;
  1465. font-size:18px;
  1466. color:#1E1E1E;
  1467. }
  1468. #u53_text {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:2px;
  1472. top:4px;
  1473. width:24px;
  1474. word-wrap:break-word;
  1475. }
  1476. #u54_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:124px;
  1482. height:19px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1491. font-weight:700;
  1492. font-style:normal;
  1493. font-size:16px;
  1494. }
  1495. #u54 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:1229px;
  1499. top:2139px;
  1500. width:124px;
  1501. height:19px;
  1502. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1503. font-weight:700;
  1504. font-style:normal;
  1505. font-size:16px;
  1506. }
  1507. #u54_text {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:124px;
  1513. word-wrap:break-word;
  1514. }
  1515. #u55_div {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:332px;
  1521. height:88px;
  1522. background:inherit;
  1523. background-color:rgba(255, 255, 255, 0);
  1524. border:none;
  1525. border-radius:0px;
  1526. -moz-box-shadow:none;
  1527. -webkit-box-shadow:none;
  1528. box-shadow:none;
  1529. line-height:22px;
  1530. }
  1531. #u55 {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:1229px;
  1535. top:2177px;
  1536. width:332px;
  1537. height:88px;
  1538. line-height:22px;
  1539. }
  1540. #u55_text {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:0px;
  1544. top:0px;
  1545. width:332px;
  1546. word-wrap:break-word;
  1547. }
  1548. #u56 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:0px;
  1554. height:0px;
  1555. }
  1556. #u57_img {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:-4px;
  1560. top:-4px;
  1561. width:38px;
  1562. height:40px;
  1563. }
  1564. #u57 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:1191px;
  1568. top:2276px;
  1569. width:28px;
  1570. height:30px;
  1571. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1572. font-weight:700;
  1573. font-style:normal;
  1574. font-size:18px;
  1575. color:#1E1E1E;
  1576. }
  1577. #u57_text {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:2px;
  1581. top:4px;
  1582. width:24px;
  1583. word-wrap:break-word;
  1584. }
  1585. #u58_div {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:135px;
  1591. height:19px;
  1592. background:inherit;
  1593. background-color:rgba(255, 255, 255, 0);
  1594. border:none;
  1595. border-radius:0px;
  1596. -moz-box-shadow:none;
  1597. -webkit-box-shadow:none;
  1598. box-shadow:none;
  1599. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1600. font-weight:700;
  1601. font-style:normal;
  1602. font-size:16px;
  1603. }
  1604. #u58 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:1229px;
  1608. top:2283px;
  1609. width:135px;
  1610. height:19px;
  1611. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1612. font-weight:700;
  1613. font-style:normal;
  1614. font-size:16px;
  1615. }
  1616. #u58_text {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:135px;
  1622. word-wrap:break-word;
  1623. }
  1624. #u59_div {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:332px;
  1630. height:44px;
  1631. background:inherit;
  1632. background-color:rgba(255, 255, 255, 0);
  1633. border:none;
  1634. border-radius:0px;
  1635. -moz-box-shadow:none;
  1636. -webkit-box-shadow:none;
  1637. box-shadow:none;
  1638. line-height:22px;
  1639. }
  1640. #u59 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:1229px;
  1644. top:2321px;
  1645. width:332px;
  1646. height:44px;
  1647. line-height:22px;
  1648. }
  1649. #u59_text {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:332px;
  1655. word-wrap:break-word;
  1656. }
  1657. #u60 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:153px;
  1661. top:1587px;
  1662. width:178px;
  1663. height:24px;
  1664. overflow:hidden;
  1665. background-image:url('../../resources/images/transparent.gif');
  1666. }
  1667. #u61_img {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:-4px;
  1671. top:-4px;
  1672. width:30px;
  1673. height:30px;
  1674. }
  1675. #u61 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:1146px;
  1679. top:2235px;
  1680. width:20px;
  1681. height:20px;
  1682. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1683. font-weight:700;
  1684. font-style:normal;
  1685. font-size:14px;
  1686. color:#1E1E1E;
  1687. }
  1688. #u61_text {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:2px;
  1692. top:2px;
  1693. width:16px;
  1694. word-wrap:break-word;
  1695. }
  1696. #u62 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:0px;
  1702. height:0px;
  1703. }
  1704. #u63_img {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:-4px;
  1708. top:-4px;
  1709. width:38px;
  1710. height:40px;
  1711. }
  1712. #u63 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:1191px;
  1716. top:2718px;
  1717. width:28px;
  1718. height:30px;
  1719. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1720. font-weight:700;
  1721. font-style:normal;
  1722. font-size:18px;
  1723. color:#1E1E1E;
  1724. }
  1725. #u63_text {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:2px;
  1729. top:4px;
  1730. width:24px;
  1731. word-wrap:break-word;
  1732. }
  1733. #u64_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:124px;
  1739. height:19px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 0);
  1742. border:none;
  1743. border-radius:0px;
  1744. -moz-box-shadow:none;
  1745. -webkit-box-shadow:none;
  1746. box-shadow:none;
  1747. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1748. font-weight:700;
  1749. font-style:normal;
  1750. font-size:16px;
  1751. }
  1752. #u64 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:1229px;
  1756. top:2725px;
  1757. width:124px;
  1758. height:19px;
  1759. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1760. font-weight:700;
  1761. font-style:normal;
  1762. font-size:16px;
  1763. }
  1764. #u64_text {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:124px;
  1770. word-wrap:break-word;
  1771. }
  1772. #u65_div {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:332px;
  1778. height:44px;
  1779. background:inherit;
  1780. background-color:rgba(255, 255, 255, 0);
  1781. border:none;
  1782. border-radius:0px;
  1783. -moz-box-shadow:none;
  1784. -webkit-box-shadow:none;
  1785. box-shadow:none;
  1786. line-height:22px;
  1787. }
  1788. #u65 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:1229px;
  1792. top:2763px;
  1793. width:332px;
  1794. height:44px;
  1795. line-height:22px;
  1796. }
  1797. #u65_text {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:332px;
  1803. word-wrap:break-word;
  1804. }
  1805. #u66_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:290px;
  1811. height:86px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 0, 1);
  1814. box-sizing:border-box;
  1815. border-width:1px;
  1816. border-style:solid;
  1817. border-color:rgba(0, 0, 0, 1);
  1818. border-radius:10px;
  1819. -moz-box-shadow:none;
  1820. -webkit-box-shadow:none;
  1821. box-shadow:none;
  1822. text-align:left;
  1823. line-height:18px;
  1824. }
  1825. #u66 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:1250px;
  1829. top:1826px;
  1830. width:290px;
  1831. height:86px;
  1832. text-align:left;
  1833. line-height:18px;
  1834. }
  1835. #u66_text {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:2px;
  1839. top:7px;
  1840. width:286px;
  1841. word-wrap:break-word;
  1842. }
  1843. #u67 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:0px;
  1849. height:0px;
  1850. }
  1851. #u68_img {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:-4px;
  1855. top:-4px;
  1856. width:38px;
  1857. height:40px;
  1858. }
  1859. #u68 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:1191px;
  1863. top:2382px;
  1864. width:28px;
  1865. height:30px;
  1866. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1867. font-weight:700;
  1868. font-style:normal;
  1869. font-size:18px;
  1870. color:#1E1E1E;
  1871. }
  1872. #u68_text {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:2px;
  1876. top:4px;
  1877. width:24px;
  1878. word-wrap:break-word;
  1879. }
  1880. #u69_div {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:135px;
  1886. height:19px;
  1887. background:inherit;
  1888. background-color:rgba(255, 255, 255, 0);
  1889. border:none;
  1890. border-radius:0px;
  1891. -moz-box-shadow:none;
  1892. -webkit-box-shadow:none;
  1893. box-shadow:none;
  1894. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1895. font-weight:700;
  1896. font-style:normal;
  1897. font-size:16px;
  1898. }
  1899. #u69 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:1229px;
  1903. top:2389px;
  1904. width:135px;
  1905. height:19px;
  1906. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1907. font-weight:700;
  1908. font-style:normal;
  1909. font-size:16px;
  1910. }
  1911. #u69_text {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:135px;
  1917. word-wrap:break-word;
  1918. }
  1919. #u70_div {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:332px;
  1925. height:22px;
  1926. background:inherit;
  1927. background-color:rgba(255, 255, 255, 0);
  1928. border:none;
  1929. border-radius:0px;
  1930. -moz-box-shadow:none;
  1931. -webkit-box-shadow:none;
  1932. box-shadow:none;
  1933. line-height:22px;
  1934. }
  1935. #u70 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:1229px;
  1939. top:2427px;
  1940. width:332px;
  1941. height:22px;
  1942. line-height:22px;
  1943. }
  1944. #u70_text {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:332px;
  1950. word-wrap:break-word;
  1951. }
  1952. #u71 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:0px;
  1958. height:0px;
  1959. }
  1960. #u72_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:-4px;
  1964. top:-4px;
  1965. width:38px;
  1966. height:40px;
  1967. }
  1968. #u72 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:1191px;
  1972. top:2459px;
  1973. width:28px;
  1974. height:30px;
  1975. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1976. font-weight:700;
  1977. font-style:normal;
  1978. font-size:18px;
  1979. color:#1E1E1E;
  1980. }
  1981. #u72_text {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:2px;
  1985. top:4px;
  1986. width:24px;
  1987. word-wrap:break-word;
  1988. }
  1989. #u73_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:124px;
  1995. height:19px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2004. font-weight:700;
  2005. font-style:normal;
  2006. font-size:16px;
  2007. color:#FF0000;
  2008. }
  2009. #u73 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:1229px;
  2013. top:2466px;
  2014. width:124px;
  2015. height:19px;
  2016. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2017. font-weight:700;
  2018. font-style:normal;
  2019. font-size:16px;
  2020. color:#FF0000;
  2021. }
  2022. #u73_text {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:124px;
  2028. word-wrap:break-word;
  2029. }
  2030. #u74_div {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:332px;
  2036. height:88px;
  2037. background:inherit;
  2038. background-color:rgba(255, 255, 255, 0);
  2039. border:none;
  2040. border-radius:0px;
  2041. -moz-box-shadow:none;
  2042. -webkit-box-shadow:none;
  2043. box-shadow:none;
  2044. line-height:22px;
  2045. }
  2046. #u74 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:1229px;
  2050. top:2504px;
  2051. width:332px;
  2052. height:88px;
  2053. line-height:22px;
  2054. }
  2055. #u74_text {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:0px;
  2059. top:0px;
  2060. width:332px;
  2061. word-wrap:break-word;
  2062. }
  2063. #u75_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:-4px;
  2067. top:-4px;
  2068. width:30px;
  2069. height:30px;
  2070. }
  2071. #u75 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:216px;
  2075. top:350px;
  2076. width:20px;
  2077. height:20px;
  2078. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2079. font-weight:700;
  2080. font-style:normal;
  2081. font-size:14px;
  2082. color:#1E1E1E;
  2083. }
  2084. #u75_text {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:2px;
  2088. top:2px;
  2089. width:16px;
  2090. word-wrap:break-word;
  2091. }
  2092. #u76_img {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:-4px;
  2096. top:-4px;
  2097. width:30px;
  2098. height:30px;
  2099. }
  2100. #u76 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:80px;
  2104. top:324px;
  2105. width:20px;
  2106. height:20px;
  2107. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2108. font-weight:700;
  2109. font-style:normal;
  2110. font-size:14px;
  2111. color:#1E1E1E;
  2112. }
  2113. #u76_text {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:2px;
  2117. top:2px;
  2118. width:16px;
  2119. word-wrap:break-word;
  2120. }
  2121. #u77_img {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:1155px;
  2127. height:583px;
  2128. }
  2129. #u77 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:21px;
  2133. top:1693px;
  2134. width:1155px;
  2135. height:583px;
  2136. }
  2137. #u77_text {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:0px;
  2143. visibility:hidden;
  2144. word-wrap:break-word;
  2145. }
  2146. #u78 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:0px;
  2152. height:0px;
  2153. }
  2154. #u79_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:-4px;
  2158. top:-4px;
  2159. width:30px;
  2160. height:30px;
  2161. }
  2162. #u79 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:269px;
  2166. top:1808px;
  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. #u79_text {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:2px;
  2179. top:2px;
  2180. width:16px;
  2181. word-wrap:break-word;
  2182. }
  2183. #u80_img {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:-4px;
  2187. top:-4px;
  2188. width:30px;
  2189. height:30px;
  2190. }
  2191. #u80 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:175px;
  2195. top:1869px;
  2196. width:20px;
  2197. height:20px;
  2198. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2199. font-weight:700;
  2200. font-style:normal;
  2201. font-size:14px;
  2202. color:#1E1E1E;
  2203. }
  2204. #u80_text {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:2px;
  2208. top:2px;
  2209. width:16px;
  2210. word-wrap:break-word;
  2211. }
  2212. #u81_img {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:-4px;
  2216. top:-4px;
  2217. width:30px;
  2218. height:30px;
  2219. }
  2220. #u81 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:235px;
  2224. top:1869px;
  2225. width:20px;
  2226. height:20px;
  2227. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2228. font-weight:700;
  2229. font-style:normal;
  2230. font-size:14px;
  2231. color:#1E1E1E;
  2232. }
  2233. #u81_text {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:2px;
  2237. top:2px;
  2238. width:16px;
  2239. word-wrap:break-word;
  2240. }
  2241. #u82_img {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:-4px;
  2245. top:-4px;
  2246. width:30px;
  2247. height:30px;
  2248. }
  2249. #u82 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:288px;
  2253. top:1869px;
  2254. width:20px;
  2255. height:20px;
  2256. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2257. font-weight:700;
  2258. font-style:normal;
  2259. font-size:14px;
  2260. color:#1E1E1E;
  2261. }
  2262. #u82_text {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:2px;
  2266. top:2px;
  2267. width:16px;
  2268. word-wrap:break-word;
  2269. }
  2270. #u83_img {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:-4px;
  2274. top:-4px;
  2275. width:30px;
  2276. height:30px;
  2277. }
  2278. #u83 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:369px;
  2282. top:2016px;
  2283. width:20px;
  2284. height:20px;
  2285. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2286. font-weight:700;
  2287. font-style:normal;
  2288. font-size:14px;
  2289. color:#1E1E1E;
  2290. }
  2291. #u83_text {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:2px;
  2295. top:2px;
  2296. width:16px;
  2297. word-wrap:break-word;
  2298. }
  2299. #u84_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:-4px;
  2303. top:-4px;
  2304. width:30px;
  2305. height:30px;
  2306. }
  2307. #u84 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:194px;
  2311. top:2046px;
  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. #u84_text {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:2px;
  2324. top:2px;
  2325. width:16px;
  2326. word-wrap:break-word;
  2327. }
  2328. #u85_img {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:-4px;
  2332. top:-4px;
  2333. width:30px;
  2334. height:30px;
  2335. }
  2336. #u85 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:459px;
  2340. top:2141px;
  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. #u85_text {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:2px;
  2353. top:2px;
  2354. width:16px;
  2355. word-wrap:break-word;
  2356. }
  2357. #u86_img {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:-4px;
  2361. top:-4px;
  2362. width:30px;
  2363. height:30px;
  2364. }
  2365. #u86 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:222px;
  2369. top:2178px;
  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. #u86_text {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:2px;
  2382. top:2px;
  2383. width:16px;
  2384. word-wrap:break-word;
  2385. }
  2386. #u87_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:-4px;
  2390. top:-4px;
  2391. width:30px;
  2392. height:30px;
  2393. }
  2394. #u87 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:1022px;
  2398. top:1774px;
  2399. width:20px;
  2400. height:20px;
  2401. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2402. font-weight:700;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. color:#1E1E1E;
  2406. }
  2407. #u87_text {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:2px;
  2411. top:2px;
  2412. width:16px;
  2413. word-wrap:break-word;
  2414. }
  2415. #u88 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:0px;
  2421. height:0px;
  2422. }
  2423. #u89_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:-4px;
  2427. top:-4px;
  2428. width:38px;
  2429. height:40px;
  2430. }
  2431. #u89 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:1191px;
  2435. top:2811px;
  2436. width:28px;
  2437. height:30px;
  2438. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2439. font-weight:700;
  2440. font-style:normal;
  2441. font-size:18px;
  2442. color:#1E1E1E;
  2443. }
  2444. #u89_text {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:2px;
  2448. top:4px;
  2449. width:24px;
  2450. word-wrap:break-word;
  2451. }
  2452. #u90_div {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:124px;
  2458. height:19px;
  2459. background:inherit;
  2460. background-color:rgba(255, 255, 255, 0);
  2461. border:none;
  2462. border-radius:0px;
  2463. -moz-box-shadow:none;
  2464. -webkit-box-shadow:none;
  2465. box-shadow:none;
  2466. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2467. font-weight:700;
  2468. font-style:normal;
  2469. font-size:16px;
  2470. }
  2471. #u90 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:1229px;
  2475. top:2818px;
  2476. width:124px;
  2477. height:19px;
  2478. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2479. font-weight:700;
  2480. font-style:normal;
  2481. font-size:16px;
  2482. }
  2483. #u90_text {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:124px;
  2489. word-wrap:break-word;
  2490. }
  2491. #u91_div {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:332px;
  2497. height:44px;
  2498. background:inherit;
  2499. background-color:rgba(255, 255, 255, 0);
  2500. border:none;
  2501. border-radius:0px;
  2502. -moz-box-shadow:none;
  2503. -webkit-box-shadow:none;
  2504. box-shadow:none;
  2505. line-height:22px;
  2506. }
  2507. #u91 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:1229px;
  2511. top:2856px;
  2512. width:332px;
  2513. height:44px;
  2514. line-height:22px;
  2515. }
  2516. #u91_text {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:332px;
  2522. word-wrap:break-word;
  2523. }
  2524. #u92_div {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:0px;
  2528. top:0px;
  2529. width:268px;
  2530. height:60px;
  2531. background:inherit;
  2532. background-color:rgba(255, 255, 0, 1);
  2533. box-sizing:border-box;
  2534. border-width:1px;
  2535. border-style:solid;
  2536. border-color:rgba(0, 0, 0, 1);
  2537. border-radius:10px;
  2538. -moz-box-shadow:none;
  2539. -webkit-box-shadow:none;
  2540. box-shadow:none;
  2541. text-align:left;
  2542. line-height:18px;
  2543. }
  2544. #u92 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:1229px;
  2548. top:2394px;
  2549. width:268px;
  2550. height:60px;
  2551. text-align:left;
  2552. line-height:18px;
  2553. }
  2554. #u92_text {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:2px;
  2558. top:12px;
  2559. width:264px;
  2560. word-wrap:break-word;
  2561. }
  2562. #u93 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:1229px;
  2566. top:2464px;
  2567. width:95px;
  2568. height:25px;
  2569. overflow:hidden;
  2570. background-image:url('../../resources/images/transparent.gif');
  2571. }
  2572. #u94 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:0px;
  2578. height:0px;
  2579. }
  2580. #u95_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:-4px;
  2584. top:-4px;
  2585. width:37px;
  2586. height:40px;
  2587. }
  2588. #u95 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:1191px;
  2592. top:2597px;
  2593. width:27px;
  2594. height:30px;
  2595. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2596. font-weight:700;
  2597. font-style:normal;
  2598. font-size:18px;
  2599. color:#1E1E1E;
  2600. }
  2601. #u95_text {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:2px;
  2605. top:4px;
  2606. width:23px;
  2607. word-wrap:break-word;
  2608. }
  2609. #u96_div {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:120px;
  2615. height:19px;
  2616. background:inherit;
  2617. background-color:rgba(255, 255, 255, 0);
  2618. border:none;
  2619. border-radius:0px;
  2620. -moz-box-shadow:none;
  2621. -webkit-box-shadow:none;
  2622. box-shadow:none;
  2623. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2624. font-weight:700;
  2625. font-style:normal;
  2626. font-size:16px;
  2627. color:#FF0000;
  2628. }
  2629. #u96 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:1228px;
  2633. top:2604px;
  2634. width:120px;
  2635. height:19px;
  2636. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2637. font-weight:700;
  2638. font-style:normal;
  2639. font-size:16px;
  2640. color:#FF0000;
  2641. }
  2642. #u96_text {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:120px;
  2648. word-wrap:break-word;
  2649. }
  2650. #u97_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:322px;
  2656. height:66px;
  2657. background:inherit;
  2658. background-color:rgba(255, 255, 255, 0);
  2659. border:none;
  2660. border-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. line-height:22px;
  2665. }
  2666. #u97 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:1228px;
  2670. top:2642px;
  2671. width:322px;
  2672. height:66px;
  2673. line-height:22px;
  2674. }
  2675. #u97_text {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:322px;
  2681. word-wrap:break-word;
  2682. }
  2683. #u98 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:1235px;
  2687. top:2600px;
  2688. width:93px;
  2689. height:30px;
  2690. overflow:hidden;
  2691. background-image:url('../../resources/images/transparent.gif');
  2692. }
  2693. #u99_div {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:303px;
  2699. height:86px;
  2700. background:inherit;
  2701. background-color:rgba(255, 255, 0, 1);
  2702. box-sizing:border-box;
  2703. border-width:1px;
  2704. border-style:solid;
  2705. border-color:rgba(0, 0, 0, 1);
  2706. border-radius:10px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. text-align:left;
  2711. line-height:18px;
  2712. }
  2713. #u99 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:1215px;
  2717. top:2504px;
  2718. width:303px;
  2719. height:86px;
  2720. text-align:left;
  2721. line-height:18px;
  2722. }
  2723. #u99_text {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:2px;
  2727. top:25px;
  2728. width:299px;
  2729. word-wrap:break-word;
  2730. }
  2731. #u100_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:-4px;
  2735. top:-4px;
  2736. width:30px;
  2737. height:30px;
  2738. }
  2739. #u100 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:1033px;
  2743. top:2229px;
  2744. width:20px;
  2745. height:20px;
  2746. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2747. font-weight:700;
  2748. font-style:normal;
  2749. font-size:14px;
  2750. color:#1E1E1E;
  2751. }
  2752. #u100_text {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:2px;
  2756. top:2px;
  2757. width:16px;
  2758. word-wrap:break-word;
  2759. }
  2760. #u101_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:-4px;
  2764. top:-4px;
  2765. width:30px;
  2766. height:30px;
  2767. }
  2768. #u101 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:1136px;
  2772. top:2229px;
  2773. width:20px;
  2774. height:20px;
  2775. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2776. font-weight:700;
  2777. font-style:normal;
  2778. font-size:14px;
  2779. color:#1E1E1E;
  2780. }
  2781. #u101_text {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:2px;
  2785. top:2px;
  2786. width:16px;
  2787. word-wrap:break-word;
  2788. }
  2789. #u102_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:-4px;
  2793. top:-4px;
  2794. width:44px;
  2795. height:44px;
  2796. }
  2797. #u102 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:1191px;
  2801. top:1692px;
  2802. width:34px;
  2803. height:34px;
  2804. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2805. font-weight:700;
  2806. font-style:normal;
  2807. font-size:26px;
  2808. }
  2809. #u102_text {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:2px;
  2813. top:1px;
  2814. width:30px;
  2815. word-wrap:break-word;
  2816. }
  2817. #u103 {
  2818. position:fixed;
  2819. right:0px;
  2820. top:68px;
  2821. }
  2822. #u103_state0 {
  2823. position:relative;
  2824. left:0px;
  2825. top:0px;
  2826. width:108px;
  2827. height:40px;
  2828. background-image:none;
  2829. }
  2830. #u103_state0_content {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:1px;
  2836. height:1px;
  2837. }
  2838. #u104_div {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:108px;
  2844. height:40px;
  2845. background:inherit;
  2846. background-color:rgba(20, 146, 138, 1);
  2847. border:none;
  2848. border-radius:5px;
  2849. -moz-box-shadow:none;
  2850. -webkit-box-shadow:none;
  2851. box-shadow:none;
  2852. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2853. font-weight:700;
  2854. font-style:normal;
  2855. font-size:16px;
  2856. }
  2857. #u104 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:108px;
  2863. height:40px;
  2864. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2865. font-weight:700;
  2866. font-style:normal;
  2867. font-size:16px;
  2868. }
  2869. #u104_text {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:2px;
  2873. top:10px;
  2874. width:104px;
  2875. word-wrap:break-word;
  2876. }
  2877. #u105_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:-4px;
  2881. top:-4px;
  2882. width:30px;
  2883. height:30px;
  2884. }
  2885. #u105 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:1086px;
  2889. top:545px;
  2890. width:20px;
  2891. height:20px;
  2892. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2893. font-weight:700;
  2894. font-style:normal;
  2895. font-size:14px;
  2896. color:#1E1E1E;
  2897. }
  2898. #u105_text {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:2px;
  2902. top:2px;
  2903. width:16px;
  2904. word-wrap:break-word;
  2905. }
  2906. #u106 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:0px;
  2912. height:0px;
  2913. }
  2914. #u107_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:-4px;
  2918. top:-4px;
  2919. width:40px;
  2920. height:40px;
  2921. }
  2922. #u107 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:1186px;
  2926. top:665px;
  2927. width:30px;
  2928. height:30px;
  2929. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2930. font-weight:700;
  2931. font-style:normal;
  2932. font-size:18px;
  2933. color:#1E1E1E;
  2934. }
  2935. #u107_text {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:2px;
  2939. top:4px;
  2940. width:26px;
  2941. word-wrap:break-word;
  2942. }
  2943. #u108_div {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:131px;
  2949. height:19px;
  2950. background:inherit;
  2951. background-color:rgba(255, 255, 255, 0);
  2952. border:none;
  2953. border-radius:0px;
  2954. -moz-box-shadow:none;
  2955. -webkit-box-shadow:none;
  2956. box-shadow:none;
  2957. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2958. font-weight:700;
  2959. font-style:normal;
  2960. font-size:16px;
  2961. }
  2962. #u108 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:1226px;
  2966. top:672px;
  2967. width:131px;
  2968. height:19px;
  2969. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2970. font-weight:700;
  2971. font-style:normal;
  2972. font-size:16px;
  2973. }
  2974. #u108_text {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:131px;
  2980. word-wrap:break-word;
  2981. }
  2982. #u109_div {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:352px;
  2988. height:22px;
  2989. background:inherit;
  2990. background-color:rgba(255, 255, 255, 0);
  2991. border:none;
  2992. border-radius:0px;
  2993. -moz-box-shadow:none;
  2994. -webkit-box-shadow:none;
  2995. box-shadow:none;
  2996. line-height:22px;
  2997. }
  2998. #u109 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:1226px;
  3002. top:710px;
  3003. width:352px;
  3004. height:22px;
  3005. line-height:22px;
  3006. }
  3007. #u109_text {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:352px;
  3013. word-wrap:break-word;
  3014. }
  3015. #u110_div {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:83px;
  3021. height:40px;
  3022. background:inherit;
  3023. background-color:rgba(20, 146, 138, 1);
  3024. border:none;
  3025. border-radius:5px;
  3026. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  3027. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  3028. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  3029. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3030. font-weight:700;
  3031. font-style:normal;
  3032. }
  3033. #u110 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:135px;
  3037. top:15px;
  3038. width:83px;
  3039. height:40px;
  3040. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3041. font-weight:700;
  3042. font-style:normal;
  3043. }
  3044. #u110_text {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:2px;
  3048. top:12px;
  3049. width:79px;
  3050. word-wrap:break-word;
  3051. }