styles.css 50 KB

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