styles.css 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1592px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u2099 {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:0px;
  21. height:0px;
  22. }
  23. #u2100_img {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:0px;
  28. width:8px;
  29. height:28px;
  30. }
  31. #u2100 {
  32. border-width:0px;
  33. position:absolute;
  34. left:7px;
  35. top:13px;
  36. width:8px;
  37. height:28px;
  38. }
  39. #u2100_text {
  40. border-width:0px;
  41. position:absolute;
  42. left:0px;
  43. top:0px;
  44. width:0px;
  45. visibility:hidden;
  46. word-wrap:break-word;
  47. }
  48. #u2101_div {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:190px;
  54. height:28px;
  55. background:inherit;
  56. background-color:rgba(255, 255, 255, 0);
  57. border:none;
  58. border-radius:0px;
  59. -moz-box-shadow:none;
  60. -webkit-box-shadow:none;
  61. box-shadow:none;
  62. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  63. font-weight:700;
  64. font-style:normal;
  65. }
  66. #u2101 {
  67. border-width:0px;
  68. position:absolute;
  69. left:21px;
  70. top:13px;
  71. width:190px;
  72. height:28px;
  73. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  74. font-weight:700;
  75. font-style:normal;
  76. }
  77. #u2101_text {
  78. border-width:0px;
  79. position:absolute;
  80. left:0px;
  81. top:0px;
  82. width:191px;
  83. white-space:nowrap;
  84. }
  85. #u2102_div {
  86. border-width:0px;
  87. position:absolute;
  88. left:0px;
  89. top:0px;
  90. width:109px;
  91. height:22px;
  92. background:inherit;
  93. background-color:rgba(255, 255, 255, 0);
  94. border:none;
  95. border-radius:0px;
  96. -moz-box-shadow:none;
  97. -webkit-box-shadow:none;
  98. box-shadow:none;
  99. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  100. font-weight:700;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u2102 {
  105. border-width:0px;
  106. position:absolute;
  107. left:21px;
  108. top:59px;
  109. width:109px;
  110. height:22px;
  111. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  112. font-weight:700;
  113. font-style:normal;
  114. font-size:18px;
  115. }
  116. #u2102_text {
  117. border-width:0px;
  118. position:absolute;
  119. left:0px;
  120. top:0px;
  121. width:109px;
  122. white-space:nowrap;
  123. }
  124. #u2103_div {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:573px;
  130. height:67px;
  131. background:inherit;
  132. background-color:rgba(255, 255, 255, 0);
  133. border:none;
  134. border-radius:0px;
  135. -moz-box-shadow:none;
  136. -webkit-box-shadow:none;
  137. box-shadow:none;
  138. font-size:16px;
  139. line-height:24px;
  140. }
  141. #u2103 {
  142. border-width:0px;
  143. position:absolute;
  144. left:56px;
  145. top:91px;
  146. width:573px;
  147. height:67px;
  148. font-size:16px;
  149. line-height:24px;
  150. }
  151. #u2103_text {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:573px;
  157. word-wrap:break-word;
  158. }
  159. #u2104_div {
  160. border-width:0px;
  161. position:absolute;
  162. left:0px;
  163. top:0px;
  164. width:263px;
  165. height:22px;
  166. background:inherit;
  167. background-color:rgba(255, 255, 255, 0);
  168. border:none;
  169. border-radius:0px;
  170. -moz-box-shadow:none;
  171. -webkit-box-shadow:none;
  172. box-shadow:none;
  173. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  174. font-weight:700;
  175. font-style:normal;
  176. font-size:18px;
  177. }
  178. #u2104 {
  179. border-width:0px;
  180. position:absolute;
  181. left:21px;
  182. top:218px;
  183. width:263px;
  184. height:22px;
  185. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  186. font-weight:700;
  187. font-style:normal;
  188. font-size:18px;
  189. }
  190. #u2104_text {
  191. border-width:0px;
  192. position:absolute;
  193. left:0px;
  194. top:0px;
  195. width:263px;
  196. white-space:nowrap;
  197. }
  198. #u2105_img {
  199. border-width:0px;
  200. position:absolute;
  201. left:0px;
  202. top:0px;
  203. width:1155px;
  204. height:583px;
  205. }
  206. #u2105 {
  207. border-width:0px;
  208. position:absolute;
  209. left:21px;
  210. top:258px;
  211. width:1155px;
  212. height:583px;
  213. }
  214. #u2105_text {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:0px;
  220. visibility:hidden;
  221. word-wrap:break-word;
  222. }
  223. #u2106_img {
  224. border-width:0px;
  225. position:absolute;
  226. left:-4px;
  227. top:-4px;
  228. width:30px;
  229. height:30px;
  230. }
  231. #u2106 {
  232. border-width:0px;
  233. position:absolute;
  234. left:1037px;
  235. top:532px;
  236. width:20px;
  237. height:20px;
  238. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  239. font-weight:700;
  240. font-style:normal;
  241. font-size:14px;
  242. color:#1E1E1E;
  243. }
  244. #u2106_text {
  245. border-width:0px;
  246. position:absolute;
  247. left:2px;
  248. top:2px;
  249. width:16px;
  250. word-wrap:break-word;
  251. }
  252. #u2107_img {
  253. border-width:0px;
  254. position:absolute;
  255. left:-4px;
  256. top:-4px;
  257. width:30px;
  258. height:30px;
  259. }
  260. #u2107 {
  261. border-width:0px;
  262. position:absolute;
  263. left:1108px;
  264. top:532px;
  265. width:20px;
  266. height:20px;
  267. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  268. font-weight:700;
  269. font-style:normal;
  270. font-size:14px;
  271. color:#1E1E1E;
  272. }
  273. #u2107_text {
  274. border-width:0px;
  275. position:absolute;
  276. left:2px;
  277. top:2px;
  278. width:16px;
  279. word-wrap:break-word;
  280. }
  281. #u2108_img {
  282. border-width:0px;
  283. position:absolute;
  284. left:-4px;
  285. top:-4px;
  286. width:30px;
  287. height:30px;
  288. }
  289. #u2108 {
  290. border-width:0px;
  291. position:absolute;
  292. left:1072px;
  293. top:532px;
  294. width:20px;
  295. height:20px;
  296. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  297. font-weight:700;
  298. font-style:normal;
  299. font-size:14px;
  300. color:#1E1E1E;
  301. }
  302. #u2108_text {
  303. border-width:0px;
  304. position:absolute;
  305. left:2px;
  306. top:2px;
  307. width:16px;
  308. word-wrap:break-word;
  309. }
  310. #u2109 {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:0px;
  316. height:0px;
  317. }
  318. #u2110_img {
  319. border-width:0px;
  320. position:absolute;
  321. left:-4px;
  322. top:-4px;
  323. width:40px;
  324. height:40px;
  325. }
  326. #u2110 {
  327. border-width:0px;
  328. position:absolute;
  329. left:1186px;
  330. top:258px;
  331. width:30px;
  332. height:30px;
  333. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  334. font-weight:700;
  335. font-style:normal;
  336. font-size:18px;
  337. color:#1E1E1E;
  338. }
  339. #u2110_text {
  340. border-width:0px;
  341. position:absolute;
  342. left:2px;
  343. top:4px;
  344. width:26px;
  345. word-wrap:break-word;
  346. }
  347. #u2111_div {
  348. border-width:0px;
  349. position:absolute;
  350. left:0px;
  351. top:0px;
  352. width:74px;
  353. height:19px;
  354. background:inherit;
  355. background-color:rgba(255, 255, 255, 0);
  356. border:none;
  357. border-radius:0px;
  358. -moz-box-shadow:none;
  359. -webkit-box-shadow:none;
  360. box-shadow:none;
  361. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  362. font-weight:700;
  363. font-style:normal;
  364. font-size:16px;
  365. }
  366. #u2111 {
  367. border-width:0px;
  368. position:absolute;
  369. left:1226px;
  370. top:265px;
  371. width:74px;
  372. height:19px;
  373. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  374. font-weight:700;
  375. font-style:normal;
  376. font-size:16px;
  377. }
  378. #u2111_text {
  379. border-width:0px;
  380. position:absolute;
  381. left:0px;
  382. top:0px;
  383. width:74px;
  384. word-wrap:break-word;
  385. }
  386. #u2112_div {
  387. border-width:0px;
  388. position:absolute;
  389. left:0px;
  390. top:0px;
  391. width:352px;
  392. height:264px;
  393. background:inherit;
  394. background-color:rgba(255, 255, 255, 0);
  395. border:none;
  396. border-radius:0px;
  397. -moz-box-shadow:none;
  398. -webkit-box-shadow:none;
  399. box-shadow:none;
  400. line-height:22px;
  401. }
  402. #u2112 {
  403. border-width:0px;
  404. position:absolute;
  405. left:1226px;
  406. top:303px;
  407. width:352px;
  408. height:264px;
  409. line-height:22px;
  410. }
  411. #u2112_text {
  412. border-width:0px;
  413. position:absolute;
  414. left:0px;
  415. top:0px;
  416. width:352px;
  417. word-wrap:break-word;
  418. }
  419. #u2113_div {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:91px;
  425. height:22px;
  426. background:inherit;
  427. background-color:rgba(255, 255, 255, 0);
  428. border:none;
  429. border-radius:0px;
  430. -moz-box-shadow:none;
  431. -webkit-box-shadow:none;
  432. box-shadow:none;
  433. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  434. font-weight:700;
  435. font-style:normal;
  436. font-size:18px;
  437. }
  438. #u2113 {
  439. border-width:0px;
  440. position:absolute;
  441. left:21px;
  442. top:884px;
  443. width:91px;
  444. height:22px;
  445. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  446. font-weight:700;
  447. font-style:normal;
  448. font-size:18px;
  449. }
  450. #u2113_text {
  451. border-width:0px;
  452. position:absolute;
  453. left:0px;
  454. top:0px;
  455. width:91px;
  456. white-space:nowrap;
  457. }
  458. #u2114 {
  459. border-width:0px;
  460. position:absolute;
  461. left:0px;
  462. top:0px;
  463. width:0px;
  464. height:0px;
  465. }
  466. #u2115_img {
  467. border-width:0px;
  468. position:absolute;
  469. left:-4px;
  470. top:-4px;
  471. width:40px;
  472. height:40px;
  473. }
  474. #u2115 {
  475. border-width:0px;
  476. position:absolute;
  477. left:1186px;
  478. top:577px;
  479. width:30px;
  480. height:30px;
  481. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  482. font-weight:700;
  483. font-style:normal;
  484. font-size:18px;
  485. color:#1E1E1E;
  486. }
  487. #u2115_text {
  488. border-width:0px;
  489. position:absolute;
  490. left:2px;
  491. top:4px;
  492. width:26px;
  493. word-wrap:break-word;
  494. }
  495. #u2116_div {
  496. border-width:0px;
  497. position:absolute;
  498. left:0px;
  499. top:0px;
  500. width:74px;
  501. height:19px;
  502. background:inherit;
  503. background-color:rgba(255, 255, 255, 0);
  504. border:none;
  505. border-radius:0px;
  506. -moz-box-shadow:none;
  507. -webkit-box-shadow:none;
  508. box-shadow:none;
  509. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  510. font-weight:700;
  511. font-style:normal;
  512. font-size:16px;
  513. }
  514. #u2116 {
  515. border-width:0px;
  516. position:absolute;
  517. left:1226px;
  518. top:584px;
  519. width:74px;
  520. height:19px;
  521. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  522. font-weight:700;
  523. font-style:normal;
  524. font-size:16px;
  525. }
  526. #u2116_text {
  527. border-width:0px;
  528. position:absolute;
  529. left:0px;
  530. top:0px;
  531. width:74px;
  532. word-wrap:break-word;
  533. }
  534. #u2117_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:352px;
  540. height:44px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. line-height:22px;
  549. }
  550. #u2117 {
  551. border-width:0px;
  552. position:absolute;
  553. left:1226px;
  554. top:622px;
  555. width:352px;
  556. height:44px;
  557. line-height:22px;
  558. }
  559. #u2117_text {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:352px;
  565. word-wrap:break-word;
  566. }
  567. #u2118 {
  568. border-width:0px;
  569. position:absolute;
  570. left:1402px;
  571. top:435px;
  572. width:52px;
  573. height:23px;
  574. overflow:hidden;
  575. background-image:url('../../resources/images/transparent.gif');
  576. }
  577. #u2119_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:182px;
  583. height:70px;
  584. }
  585. #u2119 {
  586. border-width:0px;
  587. position:absolute;
  588. left:1330px;
  589. top:355px;
  590. width:182px;
  591. height:70px;
  592. color:#000000;
  593. text-align:left;
  594. line-height:18px;
  595. }
  596. #u2119_text {
  597. border-width:0px;
  598. position:absolute;
  599. left:2px;
  600. top:17px;
  601. width:178px;
  602. word-wrap:break-word;
  603. }
  604. #u2120 {
  605. border-width:0px;
  606. position:absolute;
  607. left:1464px;
  608. top:435px;
  609. width:59px;
  610. height:23px;
  611. overflow:hidden;
  612. background-image:url('../../resources/images/transparent.gif');
  613. }
  614. #u2121_img {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:208px;
  620. height:70px;
  621. }
  622. #u2121 {
  623. border-width:0px;
  624. position:absolute;
  625. left:1370px;
  626. top:355px;
  627. width:208px;
  628. height:70px;
  629. color:#000000;
  630. text-align:left;
  631. line-height:18px;
  632. }
  633. #u2121_text {
  634. border-width:0px;
  635. position:absolute;
  636. left:2px;
  637. top:17px;
  638. width:204px;
  639. word-wrap:break-word;
  640. }
  641. #u2122 {
  642. border-width:0px;
  643. position:absolute;
  644. left:1249px;
  645. top:455px;
  646. width:59px;
  647. height:23px;
  648. overflow:hidden;
  649. background-image:url('../../resources/images/transparent.gif');
  650. }
  651. #u2123_img {
  652. border-width:0px;
  653. position:absolute;
  654. left:0px;
  655. top:0px;
  656. width:208px;
  657. height:57px;
  658. }
  659. #u2123 {
  660. border-width:0px;
  661. position:absolute;
  662. left:1233px;
  663. top:388px;
  664. width:208px;
  665. height:57px;
  666. color:#000000;
  667. text-align:left;
  668. line-height:18px;
  669. }
  670. #u2123_text {
  671. border-width:0px;
  672. position:absolute;
  673. left:2px;
  674. top:10px;
  675. width:204px;
  676. word-wrap:break-word;
  677. }
  678. #u2124 {
  679. border-width:0px;
  680. position:absolute;
  681. left:0px;
  682. top:0px;
  683. width:0px;
  684. height:0px;
  685. }
  686. #u2125_img {
  687. border-width:0px;
  688. position:absolute;
  689. left:-4px;
  690. top:-4px;
  691. width:40px;
  692. height:40px;
  693. }
  694. #u2125 {
  695. border-width:0px;
  696. position:absolute;
  697. left:1186px;
  698. top:666px;
  699. width:30px;
  700. height:30px;
  701. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  702. font-weight:700;
  703. font-style:normal;
  704. font-size:18px;
  705. color:#1E1E1E;
  706. }
  707. #u2125_text {
  708. border-width:0px;
  709. position:absolute;
  710. left:2px;
  711. top:4px;
  712. width:26px;
  713. word-wrap:break-word;
  714. }
  715. #u2126_div {
  716. border-width:0px;
  717. position:absolute;
  718. left:0px;
  719. top:0px;
  720. width:74px;
  721. height:19px;
  722. background:inherit;
  723. background-color:rgba(255, 255, 255, 0);
  724. border:none;
  725. border-radius:0px;
  726. -moz-box-shadow:none;
  727. -webkit-box-shadow:none;
  728. box-shadow:none;
  729. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  730. font-weight:700;
  731. font-style:normal;
  732. font-size:16px;
  733. }
  734. #u2126 {
  735. border-width:0px;
  736. position:absolute;
  737. left:1226px;
  738. top:673px;
  739. width:74px;
  740. height:19px;
  741. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  742. font-weight:700;
  743. font-style:normal;
  744. font-size:16px;
  745. }
  746. #u2126_text {
  747. border-width:0px;
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:74px;
  752. word-wrap:break-word;
  753. }
  754. #u2127_div {
  755. border-width:0px;
  756. position:absolute;
  757. left:0px;
  758. top:0px;
  759. width:352px;
  760. height:22px;
  761. background:inherit;
  762. background-color:rgba(255, 255, 255, 0);
  763. border:none;
  764. border-radius:0px;
  765. -moz-box-shadow:none;
  766. -webkit-box-shadow:none;
  767. box-shadow:none;
  768. line-height:22px;
  769. }
  770. #u2127 {
  771. border-width:0px;
  772. position:absolute;
  773. left:1226px;
  774. top:711px;
  775. width:352px;
  776. height:22px;
  777. line-height:22px;
  778. }
  779. #u2127_text {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:352px;
  785. word-wrap:break-word;
  786. }
  787. #u2128_img {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:1155px;
  793. height:583px;
  794. }
  795. #u2128 {
  796. border-width:0px;
  797. position:absolute;
  798. left:35px;
  799. top:2961px;
  800. width:1155px;
  801. height:583px;
  802. }
  803. #u2128_text {
  804. border-width:0px;
  805. position:absolute;
  806. left:0px;
  807. top:0px;
  808. width:0px;
  809. visibility:hidden;
  810. word-wrap:break-word;
  811. }
  812. #u2129_div {
  813. border-width:0px;
  814. position:absolute;
  815. left:0px;
  816. top:0px;
  817. width:109px;
  818. height:22px;
  819. background:inherit;
  820. background-color:rgba(255, 255, 255, 0);
  821. border:none;
  822. border-radius:0px;
  823. -moz-box-shadow:none;
  824. -webkit-box-shadow:none;
  825. box-shadow:none;
  826. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  827. font-weight:700;
  828. font-style:normal;
  829. font-size:18px;
  830. }
  831. #u2129 {
  832. border-width:0px;
  833. position:absolute;
  834. left:35px;
  835. top:2929px;
  836. width:109px;
  837. height:22px;
  838. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  839. font-weight:700;
  840. font-style:normal;
  841. font-size:18px;
  842. }
  843. #u2129_text {
  844. border-width:0px;
  845. position:absolute;
  846. left:0px;
  847. top:0px;
  848. width:109px;
  849. white-space:nowrap;
  850. }
  851. #u2130_img {
  852. border-width:0px;
  853. position:absolute;
  854. left:-4px;
  855. top:-4px;
  856. width:30px;
  857. height:30px;
  858. }
  859. #u2130 {
  860. border-width:0px;
  861. position:absolute;
  862. left:194px;
  863. top:3102px;
  864. width:20px;
  865. height:20px;
  866. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  867. font-weight:700;
  868. font-style:normal;
  869. font-size:14px;
  870. color:#1E1E1E;
  871. }
  872. #u2130_text {
  873. border-width:0px;
  874. position:absolute;
  875. left:2px;
  876. top:2px;
  877. width:16px;
  878. word-wrap:break-word;
  879. }
  880. #u2131_img {
  881. border-width:0px;
  882. position:absolute;
  883. left:-4px;
  884. top:-4px;
  885. width:30px;
  886. height:30px;
  887. }
  888. #u2131 {
  889. border-width:0px;
  890. position:absolute;
  891. left:278px;
  892. top:3102px;
  893. width:20px;
  894. height:20px;
  895. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  896. font-weight:700;
  897. font-style:normal;
  898. font-size:14px;
  899. color:#1E1E1E;
  900. }
  901. #u2131_text {
  902. border-width:0px;
  903. position:absolute;
  904. left:2px;
  905. top:2px;
  906. width:16px;
  907. word-wrap:break-word;
  908. }
  909. #u2132_img {
  910. border-width:0px;
  911. position:absolute;
  912. left:-4px;
  913. top:-4px;
  914. width:30px;
  915. height:30px;
  916. }
  917. #u2132 {
  918. border-width:0px;
  919. position:absolute;
  920. left:363px;
  921. top:3102px;
  922. width:20px;
  923. height:20px;
  924. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  925. font-weight:700;
  926. font-style:normal;
  927. font-size:14px;
  928. color:#1E1E1E;
  929. }
  930. #u2132_text {
  931. border-width:0px;
  932. position:absolute;
  933. left:2px;
  934. top:2px;
  935. width:16px;
  936. word-wrap:break-word;
  937. }
  938. #u2133_img {
  939. border-width:0px;
  940. position:absolute;
  941. left:-4px;
  942. top:-4px;
  943. width:30px;
  944. height:30px;
  945. }
  946. #u2133 {
  947. border-width:0px;
  948. position:absolute;
  949. left:1032px;
  950. top:3185px;
  951. width:20px;
  952. height:20px;
  953. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  954. font-weight:700;
  955. font-style:normal;
  956. font-size:14px;
  957. color:#1E1E1E;
  958. }
  959. #u2133_text {
  960. border-width:0px;
  961. position:absolute;
  962. left:2px;
  963. top:2px;
  964. width:16px;
  965. word-wrap:break-word;
  966. }
  967. #u2134_img {
  968. border-width:0px;
  969. position:absolute;
  970. left:-4px;
  971. top:-4px;
  972. width:30px;
  973. height:30px;
  974. }
  975. #u2134 {
  976. border-width:0px;
  977. position:absolute;
  978. left:1072px;
  979. top:3185px;
  980. width:20px;
  981. height:20px;
  982. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  983. font-weight:700;
  984. font-style:normal;
  985. font-size:14px;
  986. color:#1E1E1E;
  987. }
  988. #u2134_text {
  989. border-width:0px;
  990. position:absolute;
  991. left:2px;
  992. top:2px;
  993. width:16px;
  994. word-wrap:break-word;
  995. }
  996. #u2135_img {
  997. border-width:0px;
  998. position:absolute;
  999. left:-4px;
  1000. top:-4px;
  1001. width:30px;
  1002. height:30px;
  1003. }
  1004. #u2135 {
  1005. border-width:0px;
  1006. position:absolute;
  1007. left:1130px;
  1008. top:3185px;
  1009. width:20px;
  1010. height:20px;
  1011. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1012. font-weight:700;
  1013. font-style:normal;
  1014. font-size:14px;
  1015. color:#1E1E1E;
  1016. }
  1017. #u2135_text {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:2px;
  1021. top:2px;
  1022. width:16px;
  1023. word-wrap:break-word;
  1024. }
  1025. #u2136 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:0px;
  1031. height:0px;
  1032. }
  1033. #u2137_img {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:-4px;
  1037. top:-4px;
  1038. width:40px;
  1039. height:40px;
  1040. }
  1041. #u2137 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:1200px;
  1045. top:2961px;
  1046. width:30px;
  1047. height:30px;
  1048. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1049. font-weight:700;
  1050. font-style:normal;
  1051. font-size:18px;
  1052. color:#1E1E1E;
  1053. }
  1054. #u2137_text {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:2px;
  1058. top:4px;
  1059. width:26px;
  1060. word-wrap:break-word;
  1061. }
  1062. #u2138_div {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:0px;
  1066. top:0px;
  1067. width:104px;
  1068. height:19px;
  1069. background:inherit;
  1070. background-color:rgba(255, 255, 255, 0);
  1071. border:none;
  1072. border-radius:0px;
  1073. -moz-box-shadow:none;
  1074. -webkit-box-shadow:none;
  1075. box-shadow:none;
  1076. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1077. font-weight:700;
  1078. font-style:normal;
  1079. font-size:16px;
  1080. color:#FF0000;
  1081. }
  1082. #u2138 {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:1240px;
  1086. top:2968px;
  1087. width:104px;
  1088. height:19px;
  1089. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1090. font-weight:700;
  1091. font-style:normal;
  1092. font-size:16px;
  1093. color:#FF0000;
  1094. }
  1095. #u2138_text {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:104px;
  1101. word-wrap:break-word;
  1102. }
  1103. #u2139_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:352px;
  1109. height:66px;
  1110. background:inherit;
  1111. background-color:rgba(255, 255, 255, 0);
  1112. border:none;
  1113. border-radius:0px;
  1114. -moz-box-shadow:none;
  1115. -webkit-box-shadow:none;
  1116. box-shadow:none;
  1117. line-height:22px;
  1118. }
  1119. #u2139 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:1240px;
  1123. top:3006px;
  1124. width:352px;
  1125. height:66px;
  1126. line-height:22px;
  1127. }
  1128. #u2139_text {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:352px;
  1134. word-wrap:break-word;
  1135. }
  1136. #u2140 {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:1552px;
  1140. top:3005px;
  1141. width:40px;
  1142. height:23px;
  1143. overflow:hidden;
  1144. background-image:url('../../resources/images/transparent.gif');
  1145. }
  1146. #u2141_img {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:0px;
  1151. width:182px;
  1152. height:70px;
  1153. }
  1154. #u2141 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1385px;
  1158. top:2929px;
  1159. width:182px;
  1160. height:70px;
  1161. color:#000000;
  1162. text-align:left;
  1163. line-height:18px;
  1164. }
  1165. #u2141_text {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:2px;
  1169. top:17px;
  1170. width:178px;
  1171. word-wrap:break-word;
  1172. }
  1173. #u2142 {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:1240px;
  1177. top:3028px;
  1178. width:15px;
  1179. height:23px;
  1180. overflow:hidden;
  1181. background-image:url('../../resources/images/transparent.gif');
  1182. }
  1183. #u2143 {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:0px;
  1189. height:0px;
  1190. }
  1191. #u2144_img {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:-4px;
  1195. top:-4px;
  1196. width:40px;
  1197. height:40px;
  1198. }
  1199. #u2144 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:1200px;
  1203. top:3092px;
  1204. width:30px;
  1205. height:30px;
  1206. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1207. font-weight:700;
  1208. font-style:normal;
  1209. font-size:18px;
  1210. color:#1E1E1E;
  1211. }
  1212. #u2144_text {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:2px;
  1216. top:4px;
  1217. width:26px;
  1218. word-wrap:break-word;
  1219. }
  1220. #u2145_div {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:119px;
  1226. height:19px;
  1227. background:inherit;
  1228. background-color:rgba(255, 255, 255, 0);
  1229. border:none;
  1230. border-radius:0px;
  1231. -moz-box-shadow:none;
  1232. -webkit-box-shadow:none;
  1233. box-shadow:none;
  1234. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1235. font-weight:700;
  1236. font-style:normal;
  1237. font-size:16px;
  1238. }
  1239. #u2145 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:1240px;
  1243. top:3099px;
  1244. width:119px;
  1245. height:19px;
  1246. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1247. font-weight:700;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. }
  1251. #u2145_text {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:119px;
  1257. word-wrap:break-word;
  1258. }
  1259. #u2146_div {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:352px;
  1265. height:22px;
  1266. background:inherit;
  1267. background-color:rgba(255, 255, 255, 0);
  1268. border:none;
  1269. border-radius:0px;
  1270. -moz-box-shadow:none;
  1271. -webkit-box-shadow:none;
  1272. box-shadow:none;
  1273. line-height:22px;
  1274. }
  1275. #u2146 {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:1240px;
  1279. top:3137px;
  1280. width:352px;
  1281. height:22px;
  1282. line-height:22px;
  1283. }
  1284. #u2146_text {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:352px;
  1290. word-wrap:break-word;
  1291. }
  1292. #u2147 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:0px;
  1298. height:0px;
  1299. }
  1300. #u2148_img {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:-4px;
  1304. top:-4px;
  1305. width:40px;
  1306. height:40px;
  1307. }
  1308. #u2148 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:1200px;
  1312. top:3179px;
  1313. width:30px;
  1314. height:30px;
  1315. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1316. font-weight:700;
  1317. font-style:normal;
  1318. font-size:18px;
  1319. color:#1E1E1E;
  1320. }
  1321. #u2148_text {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:2px;
  1325. top:4px;
  1326. width:26px;
  1327. word-wrap:break-word;
  1328. }
  1329. #u2149_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:158px;
  1335. height:19px;
  1336. background:inherit;
  1337. background-color:rgba(255, 255, 255, 0);
  1338. border:none;
  1339. border-radius:0px;
  1340. -moz-box-shadow:none;
  1341. -webkit-box-shadow:none;
  1342. box-shadow:none;
  1343. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1344. font-weight:700;
  1345. font-style:normal;
  1346. font-size:16px;
  1347. }
  1348. #u2149 {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:1240px;
  1352. top:3186px;
  1353. width:158px;
  1354. height:19px;
  1355. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1356. font-weight:700;
  1357. font-style:normal;
  1358. font-size:16px;
  1359. }
  1360. #u2149_text {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:0px;
  1364. top:0px;
  1365. width:158px;
  1366. word-wrap:break-word;
  1367. }
  1368. #u2150_div {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:0px;
  1372. top:0px;
  1373. width:352px;
  1374. height:22px;
  1375. background:inherit;
  1376. background-color:rgba(255, 255, 255, 0);
  1377. border:none;
  1378. border-radius:0px;
  1379. -moz-box-shadow:none;
  1380. -webkit-box-shadow:none;
  1381. box-shadow:none;
  1382. line-height:22px;
  1383. }
  1384. #u2150 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:1240px;
  1388. top:3224px;
  1389. width:352px;
  1390. height:22px;
  1391. line-height:22px;
  1392. }
  1393. #u2150_text {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:352px;
  1399. word-wrap:break-word;
  1400. }
  1401. #u2151 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:0px;
  1405. top:0px;
  1406. width:0px;
  1407. height:0px;
  1408. }
  1409. #u2152_img {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:-4px;
  1413. top:-4px;
  1414. width:40px;
  1415. height:40px;
  1416. }
  1417. #u2152 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:1200px;
  1421. top:3266px;
  1422. width:30px;
  1423. height:30px;
  1424. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1425. font-weight:700;
  1426. font-style:normal;
  1427. font-size:18px;
  1428. color:#1E1E1E;
  1429. }
  1430. #u2152_text {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:2px;
  1434. top:4px;
  1435. width:26px;
  1436. word-wrap:break-word;
  1437. }
  1438. #u2153_div {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:68px;
  1444. height:19px;
  1445. background:inherit;
  1446. background-color:rgba(255, 255, 255, 0);
  1447. border:none;
  1448. border-radius:0px;
  1449. -moz-box-shadow:none;
  1450. -webkit-box-shadow:none;
  1451. box-shadow:none;
  1452. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1453. font-weight:700;
  1454. font-style:normal;
  1455. font-size:16px;
  1456. color:#FF0000;
  1457. }
  1458. #u2153 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:1240px;
  1462. top:3273px;
  1463. width:68px;
  1464. height:19px;
  1465. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1466. font-weight:700;
  1467. font-style:normal;
  1468. font-size:16px;
  1469. color:#FF0000;
  1470. }
  1471. #u2153_text {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:0px;
  1475. top:0px;
  1476. width:68px;
  1477. word-wrap:break-word;
  1478. }
  1479. #u2154_div {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:352px;
  1485. height:44px;
  1486. background:inherit;
  1487. background-color:rgba(255, 255, 255, 0);
  1488. border:none;
  1489. border-radius:0px;
  1490. -moz-box-shadow:none;
  1491. -webkit-box-shadow:none;
  1492. box-shadow:none;
  1493. line-height:22px;
  1494. }
  1495. #u2154 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:1240px;
  1499. top:3311px;
  1500. width:352px;
  1501. height:44px;
  1502. line-height:22px;
  1503. }
  1504. #u2154_text {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:352px;
  1510. word-wrap:break-word;
  1511. }
  1512. #u2155 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:0px;
  1518. height:0px;
  1519. }
  1520. #u2156_img {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:-4px;
  1524. top:-4px;
  1525. width:40px;
  1526. height:40px;
  1527. }
  1528. #u2156 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:1200px;
  1532. top:3383px;
  1533. width:30px;
  1534. height:30px;
  1535. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1536. font-weight:700;
  1537. font-style:normal;
  1538. font-size:18px;
  1539. color:#1E1E1E;
  1540. }
  1541. #u2156_text {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:2px;
  1545. top:4px;
  1546. width:26px;
  1547. word-wrap:break-word;
  1548. }
  1549. #u2157_div {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:0px;
  1553. top:0px;
  1554. width:158px;
  1555. height:19px;
  1556. background:inherit;
  1557. background-color:rgba(255, 255, 255, 0);
  1558. border:none;
  1559. border-radius:0px;
  1560. -moz-box-shadow:none;
  1561. -webkit-box-shadow:none;
  1562. box-shadow:none;
  1563. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1564. font-weight:700;
  1565. font-style:normal;
  1566. font-size:16px;
  1567. }
  1568. #u2157 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:1240px;
  1572. top:3390px;
  1573. width:158px;
  1574. height:19px;
  1575. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1576. font-weight:700;
  1577. font-style:normal;
  1578. font-size:16px;
  1579. }
  1580. #u2157_text {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:158px;
  1586. word-wrap:break-word;
  1587. }
  1588. #u2158_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:352px;
  1594. height:22px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 0);
  1597. border:none;
  1598. border-radius:0px;
  1599. -moz-box-shadow:none;
  1600. -webkit-box-shadow:none;
  1601. box-shadow:none;
  1602. line-height:22px;
  1603. }
  1604. #u2158 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:1240px;
  1608. top:3428px;
  1609. width:352px;
  1610. height:22px;
  1611. line-height:22px;
  1612. }
  1613. #u2158_text {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:352px;
  1619. word-wrap:break-word;
  1620. }
  1621. #u2159 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:0px;
  1627. height:0px;
  1628. }
  1629. #u2160_img {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:-4px;
  1633. top:-4px;
  1634. width:40px;
  1635. height:40px;
  1636. }
  1637. #u2160 {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:1200px;
  1641. top:3460px;
  1642. width:30px;
  1643. height:30px;
  1644. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1645. font-weight:700;
  1646. font-style:normal;
  1647. font-size:18px;
  1648. color:#1E1E1E;
  1649. }
  1650. #u2160_text {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:2px;
  1654. top:4px;
  1655. width:26px;
  1656. word-wrap:break-word;
  1657. }
  1658. #u2161_div {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:158px;
  1664. height:19px;
  1665. background:inherit;
  1666. background-color:rgba(255, 255, 255, 0);
  1667. border:none;
  1668. border-radius:0px;
  1669. -moz-box-shadow:none;
  1670. -webkit-box-shadow:none;
  1671. box-shadow:none;
  1672. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1673. font-weight:700;
  1674. font-style:normal;
  1675. font-size:16px;
  1676. color:#FF0000;
  1677. }
  1678. #u2161 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:1240px;
  1682. top:3467px;
  1683. width:158px;
  1684. height:19px;
  1685. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1686. font-weight:700;
  1687. font-style:normal;
  1688. font-size:16px;
  1689. color:#FF0000;
  1690. }
  1691. #u2161_text {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:158px;
  1697. word-wrap:break-word;
  1698. }
  1699. #u2162_div {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:352px;
  1705. height:22px;
  1706. background:inherit;
  1707. background-color:rgba(255, 255, 255, 0);
  1708. border:none;
  1709. border-radius:0px;
  1710. -moz-box-shadow:none;
  1711. -webkit-box-shadow:none;
  1712. box-shadow:none;
  1713. line-height:22px;
  1714. }
  1715. #u2162 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:1240px;
  1719. top:3505px;
  1720. width:352px;
  1721. height:22px;
  1722. line-height:22px;
  1723. }
  1724. #u2162_text {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:352px;
  1730. word-wrap:break-word;
  1731. }
  1732. #u2163 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:1247px;
  1736. top:3464px;
  1737. width:87px;
  1738. height:23px;
  1739. overflow:hidden;
  1740. background-image:url('../../resources/images/transparent.gif');
  1741. }
  1742. #u2164_img {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:245px;
  1748. height:91px;
  1749. }
  1750. #u2164 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:1240px;
  1754. top:3359px;
  1755. width:245px;
  1756. height:91px;
  1757. color:#000000;
  1758. text-align:left;
  1759. line-height:18px;
  1760. }
  1761. #u2164_text {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:2px;
  1765. top:18px;
  1766. width:241px;
  1767. word-wrap:break-word;
  1768. }
  1769. #u2165_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:1155px;
  1775. height:583px;
  1776. }
  1777. #u2165 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:35px;
  1781. top:4299px;
  1782. width:1155px;
  1783. height:583px;
  1784. }
  1785. #u2165_text {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:0px;
  1791. visibility:hidden;
  1792. word-wrap:break-word;
  1793. }
  1794. #u2166_div {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:239px;
  1800. height:22px;
  1801. background:inherit;
  1802. background-color:rgba(255, 255, 255, 0);
  1803. border:none;
  1804. border-radius:0px;
  1805. -moz-box-shadow:none;
  1806. -webkit-box-shadow:none;
  1807. box-shadow:none;
  1808. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1809. font-weight:700;
  1810. font-style:normal;
  1811. font-size:18px;
  1812. }
  1813. #u2166 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:35px;
  1817. top:4273px;
  1818. width:239px;
  1819. height:22px;
  1820. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1821. font-weight:700;
  1822. font-style:normal;
  1823. font-size:18px;
  1824. }
  1825. #u2166_text {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:239px;
  1831. white-space:nowrap;
  1832. }
  1833. #u2167_img {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:0px;
  1837. top:0px;
  1838. width:1155px;
  1839. height:583px;
  1840. }
  1841. #u2167 {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:21px;
  1845. top:916px;
  1846. width:1155px;
  1847. height:583px;
  1848. }
  1849. #u2167_text {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:0px;
  1855. visibility:hidden;
  1856. word-wrap:break-word;
  1857. }
  1858. #u2168_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:-4px;
  1862. top:-4px;
  1863. width:30px;
  1864. height:30px;
  1865. }
  1866. #u2168 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:1034px;
  1870. top:1203px;
  1871. width:20px;
  1872. height:20px;
  1873. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1874. font-weight:700;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. color:#1E1E1E;
  1878. }
  1879. #u2168_text {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:2px;
  1883. top:2px;
  1884. width:16px;
  1885. word-wrap:break-word;
  1886. }
  1887. #u2169_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:-4px;
  1891. top:-4px;
  1892. width:30px;
  1893. height:30px;
  1894. }
  1895. #u2169 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:1108px;
  1899. top:1203px;
  1900. width:20px;
  1901. height:20px;
  1902. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1903. font-weight:700;
  1904. font-style:normal;
  1905. font-size:14px;
  1906. color:#1E1E1E;
  1907. }
  1908. #u2169_text {
  1909. border-width:0px;
  1910. position:absolute;
  1911. left:2px;
  1912. top:2px;
  1913. width:16px;
  1914. word-wrap:break-word;
  1915. }
  1916. #u2170_img {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:-4px;
  1920. top:-4px;
  1921. width:30px;
  1922. height:30px;
  1923. }
  1924. #u2170 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:1030px;
  1928. top:1267px;
  1929. width:20px;
  1930. height:20px;
  1931. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1932. font-weight:700;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. color:#1E1E1E;
  1936. }
  1937. #u2170_text {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:2px;
  1941. top:2px;
  1942. width:16px;
  1943. word-wrap:break-word;
  1944. }
  1945. #u2171 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:0px;
  1951. height:0px;
  1952. }
  1953. #u2172_img {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:-4px;
  1957. top:-4px;
  1958. width:40px;
  1959. height:40px;
  1960. }
  1961. #u2172 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:1186px;
  1965. top:1114px;
  1966. width:30px;
  1967. height:30px;
  1968. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1969. font-weight:700;
  1970. font-style:normal;
  1971. font-size:18px;
  1972. color:#1E1E1E;
  1973. }
  1974. #u2172_text {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:2px;
  1978. top:4px;
  1979. width:26px;
  1980. word-wrap:break-word;
  1981. }
  1982. #u2173_div {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:143px;
  1988. height:19px;
  1989. background:inherit;
  1990. background-color:rgba(255, 255, 255, 0);
  1991. border:none;
  1992. border-radius:0px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1997. font-weight:700;
  1998. font-style:normal;
  1999. font-size:16px;
  2000. }
  2001. #u2173 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:1226px;
  2005. top:1121px;
  2006. width:143px;
  2007. height:19px;
  2008. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2009. font-weight:700;
  2010. font-style:normal;
  2011. font-size:16px;
  2012. }
  2013. #u2173_text {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:143px;
  2019. word-wrap:break-word;
  2020. }
  2021. #u2174_div {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:352px;
  2027. height:22px;
  2028. background:inherit;
  2029. background-color:rgba(255, 255, 255, 0);
  2030. border:none;
  2031. border-radius:0px;
  2032. -moz-box-shadow:none;
  2033. -webkit-box-shadow:none;
  2034. box-shadow:none;
  2035. line-height:22px;
  2036. }
  2037. #u2174 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:1226px;
  2041. top:1159px;
  2042. width:352px;
  2043. height:22px;
  2044. line-height:22px;
  2045. }
  2046. #u2174_text {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:352px;
  2052. word-wrap:break-word;
  2053. }
  2054. #u2175 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:0px;
  2060. height:0px;
  2061. }
  2062. #u2176_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:-4px;
  2066. top:-4px;
  2067. width:40px;
  2068. height:40px;
  2069. }
  2070. #u2176 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:1186px;
  2074. top:1015px;
  2075. width:30px;
  2076. height:30px;
  2077. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2078. font-weight:700;
  2079. font-style:normal;
  2080. font-size:18px;
  2081. color:#1E1E1E;
  2082. }
  2083. #u2176_text {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:2px;
  2087. top:4px;
  2088. width:26px;
  2089. word-wrap:break-word;
  2090. }
  2091. #u2177_div {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:143px;
  2097. height:19px;
  2098. background:inherit;
  2099. background-color:rgba(255, 255, 255, 0);
  2100. border:none;
  2101. border-radius:0px;
  2102. -moz-box-shadow:none;
  2103. -webkit-box-shadow:none;
  2104. box-shadow:none;
  2105. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2106. font-weight:700;
  2107. font-style:normal;
  2108. font-size:16px;
  2109. }
  2110. #u2177 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:1226px;
  2114. top:1022px;
  2115. width:143px;
  2116. height:19px;
  2117. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2118. font-weight:700;
  2119. font-style:normal;
  2120. font-size:16px;
  2121. }
  2122. #u2177_text {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:143px;
  2128. word-wrap:break-word;
  2129. }
  2130. #u2178_div {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:352px;
  2136. height:44px;
  2137. background:inherit;
  2138. background-color:rgba(255, 255, 255, 0);
  2139. border:none;
  2140. border-radius:0px;
  2141. -moz-box-shadow:none;
  2142. -webkit-box-shadow:none;
  2143. box-shadow:none;
  2144. line-height:22px;
  2145. }
  2146. #u2178 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:1226px;
  2150. top:1060px;
  2151. width:352px;
  2152. height:44px;
  2153. line-height:22px;
  2154. }
  2155. #u2178_text {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:352px;
  2161. word-wrap:break-word;
  2162. }
  2163. #u2179 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:0px;
  2169. height:0px;
  2170. }
  2171. #u2180_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:-4px;
  2175. top:-4px;
  2176. width:40px;
  2177. height:40px;
  2178. }
  2179. #u2180 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:1186px;
  2183. top:916px;
  2184. width:30px;
  2185. height:30px;
  2186. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2187. font-weight:700;
  2188. font-style:normal;
  2189. font-size:18px;
  2190. color:#1E1E1E;
  2191. }
  2192. #u2180_text {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:2px;
  2196. top:4px;
  2197. width:26px;
  2198. word-wrap:break-word;
  2199. }
  2200. #u2181_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:143px;
  2206. height:19px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 0);
  2209. border:none;
  2210. border-radius:0px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2215. font-weight:700;
  2216. font-style:normal;
  2217. font-size:16px;
  2218. }
  2219. #u2181 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:1226px;
  2223. top:923px;
  2224. width:143px;
  2225. height:19px;
  2226. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2227. font-weight:700;
  2228. font-style:normal;
  2229. font-size:16px;
  2230. }
  2231. #u2181_text {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:143px;
  2237. word-wrap:break-word;
  2238. }
  2239. #u2182_div {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:352px;
  2245. height:44px;
  2246. background:inherit;
  2247. background-color:rgba(255, 255, 255, 0);
  2248. border:none;
  2249. border-radius:0px;
  2250. -moz-box-shadow:none;
  2251. -webkit-box-shadow:none;
  2252. box-shadow:none;
  2253. line-height:22px;
  2254. }
  2255. #u2182 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:1226px;
  2259. top:961px;
  2260. width:352px;
  2261. height:44px;
  2262. line-height:22px;
  2263. }
  2264. #u2182_text {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:352px;
  2270. word-wrap:break-word;
  2271. }
  2272. #u2183_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:1155px;
  2278. height:583px;
  2279. }
  2280. #u2183 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:21px;
  2284. top:1588px;
  2285. width:1155px;
  2286. height:583px;
  2287. }
  2288. #u2183_text {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:0px;
  2294. visibility:hidden;
  2295. word-wrap:break-word;
  2296. }
  2297. #u2184_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:121px;
  2303. height:22px;
  2304. background:inherit;
  2305. background-color:rgba(255, 255, 255, 0);
  2306. border:none;
  2307. border-radius:0px;
  2308. -moz-box-shadow:none;
  2309. -webkit-box-shadow:none;
  2310. box-shadow:none;
  2311. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2312. font-weight:700;
  2313. font-style:normal;
  2314. font-size:18px;
  2315. }
  2316. #u2184 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:21px;
  2320. top:1556px;
  2321. width:121px;
  2322. height:22px;
  2323. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2324. font-weight:700;
  2325. font-style:normal;
  2326. font-size:18px;
  2327. }
  2328. #u2184_text {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:121px;
  2334. white-space:nowrap;
  2335. }
  2336. #u2185_img {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:-4px;
  2340. top:-4px;
  2341. width:30px;
  2342. height:30px;
  2343. }
  2344. #u2185 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:157px;
  2348. top:1765px;
  2349. width:20px;
  2350. height:20px;
  2351. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2352. font-weight:700;
  2353. font-style:normal;
  2354. font-size:14px;
  2355. color:#1E1E1E;
  2356. }
  2357. #u2185_text {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:2px;
  2361. top:2px;
  2362. width:16px;
  2363. word-wrap:break-word;
  2364. }
  2365. #u2186_img {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:-4px;
  2369. top:-4px;
  2370. width:30px;
  2371. height:30px;
  2372. }
  2373. #u2186 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:287px;
  2377. top:1765px;
  2378. width:20px;
  2379. height:20px;
  2380. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2381. font-weight:700;
  2382. font-style:normal;
  2383. font-size:14px;
  2384. color:#1E1E1E;
  2385. }
  2386. #u2186_text {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:2px;
  2390. top:2px;
  2391. width:16px;
  2392. word-wrap:break-word;
  2393. }
  2394. #u2187 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:0px;
  2400. height:0px;
  2401. }
  2402. #u2188_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:-4px;
  2406. top:-4px;
  2407. width:40px;
  2408. height:40px;
  2409. }
  2410. #u2188 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:1186px;
  2414. top:1589px;
  2415. width:30px;
  2416. height:30px;
  2417. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2418. font-weight:700;
  2419. font-style:normal;
  2420. font-size:18px;
  2421. color:#1E1E1E;
  2422. }
  2423. #u2188_text {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:2px;
  2427. top:4px;
  2428. width:26px;
  2429. word-wrap:break-word;
  2430. }
  2431. #u2189_div {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:143px;
  2437. height:19px;
  2438. background:inherit;
  2439. background-color:rgba(255, 255, 255, 0);
  2440. border:none;
  2441. border-radius:0px;
  2442. -moz-box-shadow:none;
  2443. -webkit-box-shadow:none;
  2444. box-shadow:none;
  2445. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2446. font-weight:700;
  2447. font-style:normal;
  2448. font-size:16px;
  2449. color:#FF0000;
  2450. }
  2451. #u2189 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:1226px;
  2455. top:1596px;
  2456. width:143px;
  2457. height:19px;
  2458. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2459. font-weight:700;
  2460. font-style:normal;
  2461. font-size:16px;
  2462. color:#FF0000;
  2463. }
  2464. #u2189_text {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:143px;
  2470. word-wrap:break-word;
  2471. }
  2472. #u2190_div {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:352px;
  2478. height:88px;
  2479. background:inherit;
  2480. background-color:rgba(255, 255, 255, 0);
  2481. border:none;
  2482. border-radius:0px;
  2483. -moz-box-shadow:none;
  2484. -webkit-box-shadow:none;
  2485. box-shadow:none;
  2486. line-height:22px;
  2487. }
  2488. #u2190 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:1226px;
  2492. top:1634px;
  2493. width:352px;
  2494. height:88px;
  2495. line-height:22px;
  2496. }
  2497. #u2190_text {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:352px;
  2503. word-wrap:break-word;
  2504. }
  2505. #u2191 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:0px;
  2511. height:0px;
  2512. }
  2513. #u2192_img {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:-4px;
  2517. top:-4px;
  2518. width:40px;
  2519. height:40px;
  2520. }
  2521. #u2192 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:1186px;
  2525. top:1732px;
  2526. width:30px;
  2527. height:30px;
  2528. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2529. font-weight:700;
  2530. font-style:normal;
  2531. font-size:18px;
  2532. color:#1E1E1E;
  2533. }
  2534. #u2192_text {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:2px;
  2538. top:4px;
  2539. width:26px;
  2540. word-wrap:break-word;
  2541. }
  2542. #u2193_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:143px;
  2548. height:19px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-radius:0px;
  2553. -moz-box-shadow:none;
  2554. -webkit-box-shadow:none;
  2555. box-shadow:none;
  2556. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2557. font-weight:700;
  2558. font-style:normal;
  2559. font-size:16px;
  2560. color:#FF0000;
  2561. }
  2562. #u2193 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:1226px;
  2566. top:1739px;
  2567. width:143px;
  2568. height:19px;
  2569. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2570. font-weight:700;
  2571. font-style:normal;
  2572. font-size:16px;
  2573. color:#FF0000;
  2574. }
  2575. #u2193_text {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:143px;
  2581. word-wrap:break-word;
  2582. }
  2583. #u2194_div {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:352px;
  2589. height:22px;
  2590. background:inherit;
  2591. background-color:rgba(255, 255, 255, 0);
  2592. border:none;
  2593. border-radius:0px;
  2594. -moz-box-shadow:none;
  2595. -webkit-box-shadow:none;
  2596. box-shadow:none;
  2597. line-height:22px;
  2598. }
  2599. #u2194 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:1226px;
  2603. top:1777px;
  2604. width:352px;
  2605. height:22px;
  2606. line-height:22px;
  2607. }
  2608. #u2194_text {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:352px;
  2614. word-wrap:break-word;
  2615. }
  2616. #u2195 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:0px;
  2622. height:0px;
  2623. }
  2624. #u2196_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:-4px;
  2628. top:-4px;
  2629. width:40px;
  2630. height:40px;
  2631. }
  2632. #u2196 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:1186px;
  2636. top:1823px;
  2637. width:30px;
  2638. height:30px;
  2639. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2640. font-weight:700;
  2641. font-style:normal;
  2642. font-size:18px;
  2643. color:#1E1E1E;
  2644. }
  2645. #u2196_text {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:2px;
  2649. top:4px;
  2650. width:26px;
  2651. word-wrap:break-word;
  2652. }
  2653. #u2197_div {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:119px;
  2659. height:19px;
  2660. background:inherit;
  2661. background-color:rgba(255, 255, 255, 0);
  2662. border:none;
  2663. border-radius:0px;
  2664. -moz-box-shadow:none;
  2665. -webkit-box-shadow:none;
  2666. box-shadow:none;
  2667. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2668. font-weight:700;
  2669. font-style:normal;
  2670. font-size:16px;
  2671. color:#FF0000;
  2672. }
  2673. #u2197 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:1226px;
  2677. top:1830px;
  2678. width:119px;
  2679. height:19px;
  2680. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2681. font-weight:700;
  2682. font-style:normal;
  2683. font-size:16px;
  2684. color:#FF0000;
  2685. }
  2686. #u2197_text {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:119px;
  2692. word-wrap:break-word;
  2693. }
  2694. #u2198_div {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:352px;
  2700. height:44px;
  2701. background:inherit;
  2702. background-color:rgba(255, 255, 255, 0);
  2703. border:none;
  2704. border-radius:0px;
  2705. -moz-box-shadow:none;
  2706. -webkit-box-shadow:none;
  2707. box-shadow:none;
  2708. line-height:22px;
  2709. }
  2710. #u2198 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:1226px;
  2714. top:1868px;
  2715. width:352px;
  2716. height:44px;
  2717. line-height:22px;
  2718. }
  2719. #u2198_text {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:352px;
  2725. word-wrap:break-word;
  2726. }
  2727. #u2199 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:0px;
  2733. height:0px;
  2734. }
  2735. #u2200_img {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:-4px;
  2739. top:-4px;
  2740. width:40px;
  2741. height:40px;
  2742. }
  2743. #u2200 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:1186px;
  2747. top:1918px;
  2748. width:30px;
  2749. height:30px;
  2750. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2751. font-weight:700;
  2752. font-style:normal;
  2753. font-size:18px;
  2754. color:#1E1E1E;
  2755. }
  2756. #u2200_text {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:2px;
  2760. top:4px;
  2761. width:26px;
  2762. word-wrap:break-word;
  2763. }
  2764. #u2201_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:119px;
  2770. height:19px;
  2771. background:inherit;
  2772. background-color:rgba(255, 255, 255, 0);
  2773. border:none;
  2774. border-radius:0px;
  2775. -moz-box-shadow:none;
  2776. -webkit-box-shadow:none;
  2777. box-shadow:none;
  2778. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2779. font-weight:700;
  2780. font-style:normal;
  2781. font-size:16px;
  2782. }
  2783. #u2201 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:1226px;
  2787. top:1925px;
  2788. width:119px;
  2789. height:19px;
  2790. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2791. font-weight:700;
  2792. font-style:normal;
  2793. font-size:16px;
  2794. }
  2795. #u2201_text {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:119px;
  2801. word-wrap:break-word;
  2802. }
  2803. #u2202_div {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:352px;
  2809. height:44px;
  2810. background:inherit;
  2811. background-color:rgba(255, 255, 255, 0);
  2812. border:none;
  2813. border-radius:0px;
  2814. -moz-box-shadow:none;
  2815. -webkit-box-shadow:none;
  2816. box-shadow:none;
  2817. line-height:22px;
  2818. }
  2819. #u2202 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:1226px;
  2823. top:1963px;
  2824. width:352px;
  2825. height:44px;
  2826. line-height:22px;
  2827. }
  2828. #u2202_text {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:352px;
  2834. word-wrap:break-word;
  2835. }
  2836. #u2203 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:1226px;
  2840. top:1828px;
  2841. width:64px;
  2842. height:23px;
  2843. overflow:hidden;
  2844. background-image:url('../../resources/images/transparent.gif');
  2845. }
  2846. #u2204_img {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:0px;
  2851. width:245px;
  2852. height:88px;
  2853. }
  2854. #u2204 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:1226px;
  2858. top:1732px;
  2859. width:245px;
  2860. height:88px;
  2861. text-align:left;
  2862. }
  2863. #u2204_text {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:2px;
  2867. top:13px;
  2868. width:241px;
  2869. word-wrap:break-word;
  2870. }
  2871. #u2205 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:1231px;
  2875. top:1594px;
  2876. width:87px;
  2877. height:23px;
  2878. overflow:hidden;
  2879. background-image:url('../../resources/images/transparent.gif');
  2880. }
  2881. #u2206_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:245px;
  2887. height:88px;
  2888. }
  2889. #u2206 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:1231px;
  2893. top:1491px;
  2894. width:245px;
  2895. height:88px;
  2896. text-align:left;
  2897. }
  2898. #u2206_text {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:2px;
  2902. top:13px;
  2903. width:241px;
  2904. word-wrap:break-word;
  2905. }
  2906. #u2207_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:-4px;
  2910. top:-4px;
  2911. width:30px;
  2912. height:30px;
  2913. }
  2914. #u2207 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:1030px;
  2918. top:1837px;
  2919. width:20px;
  2920. height:20px;
  2921. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2922. font-weight:700;
  2923. font-style:normal;
  2924. font-size:14px;
  2925. color:#1E1E1E;
  2926. }
  2927. #u2207_text {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:2px;
  2931. top:2px;
  2932. width:16px;
  2933. word-wrap:break-word;
  2934. }
  2935. #u2208_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:-4px;
  2939. top:-4px;
  2940. width:30px;
  2941. height:30px;
  2942. }
  2943. #u2208 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:1091px;
  2947. top:1837px;
  2948. width:20px;
  2949. height:20px;
  2950. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2951. font-weight:700;
  2952. font-style:normal;
  2953. font-size:14px;
  2954. color:#1E1E1E;
  2955. }
  2956. #u2208_text {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:2px;
  2960. top:2px;
  2961. width:16px;
  2962. word-wrap:break-word;
  2963. }
  2964. #u2209_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:1155px;
  2970. height:583px;
  2971. }
  2972. #u2209 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:21px;
  2976. top:2250px;
  2977. width:1155px;
  2978. height:583px;
  2979. }
  2980. #u2209_text {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:0px;
  2986. visibility:hidden;
  2987. word-wrap:break-word;
  2988. }
  2989. #u2210 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:0px;
  2995. height:0px;
  2996. }
  2997. #u2211_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:-4px;
  3001. top:-4px;
  3002. width:40px;
  3003. height:40px;
  3004. }
  3005. #u2211 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:1186px;
  3009. top:2250px;
  3010. width:30px;
  3011. height:30px;
  3012. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3013. font-weight:700;
  3014. font-style:normal;
  3015. font-size:18px;
  3016. color:#1E1E1E;
  3017. }
  3018. #u2211_text {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:2px;
  3022. top:4px;
  3023. width:26px;
  3024. word-wrap:break-word;
  3025. }
  3026. #u2212_div {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:119px;
  3032. height:19px;
  3033. background:inherit;
  3034. background-color:rgba(255, 255, 255, 0);
  3035. border:none;
  3036. border-radius:0px;
  3037. -moz-box-shadow:none;
  3038. -webkit-box-shadow:none;
  3039. box-shadow:none;
  3040. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3041. font-weight:700;
  3042. font-style:normal;
  3043. font-size:16px;
  3044. }
  3045. #u2212 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:1226px;
  3049. top:2257px;
  3050. width:119px;
  3051. height:19px;
  3052. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3053. font-weight:700;
  3054. font-style:normal;
  3055. font-size:16px;
  3056. }
  3057. #u2212_text {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:119px;
  3063. word-wrap:break-word;
  3064. }
  3065. #u2213_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:352px;
  3071. height:22px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 0);
  3074. border:none;
  3075. border-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. line-height:22px;
  3080. }
  3081. #u2213 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:1226px;
  3085. top:2295px;
  3086. width:352px;
  3087. height:22px;
  3088. line-height:22px;
  3089. }
  3090. #u2213_text {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:352px;
  3096. word-wrap:break-word;
  3097. }
  3098. #u2214_div {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:55px;
  3104. height:22px;
  3105. background:inherit;
  3106. background-color:rgba(255, 255, 255, 0);
  3107. border:none;
  3108. border-radius:0px;
  3109. -moz-box-shadow:none;
  3110. -webkit-box-shadow:none;
  3111. box-shadow:none;
  3112. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3113. font-weight:700;
  3114. font-style:normal;
  3115. font-size:18px;
  3116. }
  3117. #u2214 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:21px;
  3121. top:2218px;
  3122. width:55px;
  3123. height:22px;
  3124. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3125. font-weight:700;
  3126. font-style:normal;
  3127. font-size:18px;
  3128. }
  3129. #u2214_text {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:55px;
  3135. white-space:nowrap;
  3136. }
  3137. #u2215_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:-4px;
  3141. top:-4px;
  3142. width:30px;
  3143. height:30px;
  3144. }
  3145. #u2215 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:1086px;
  3149. top:2511px;
  3150. width:20px;
  3151. height:20px;
  3152. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3153. font-weight:700;
  3154. font-style:normal;
  3155. font-size:14px;
  3156. color:#1E1E1E;
  3157. }
  3158. #u2215_text {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:2px;
  3162. top:2px;
  3163. width:16px;
  3164. word-wrap:break-word;
  3165. }
  3166. #u2216_img {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:-4px;
  3170. top:-4px;
  3171. width:30px;
  3172. height:30px;
  3173. }
  3174. #u2216 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:1056px;
  3178. top:4483px;
  3179. width:20px;
  3180. height:20px;
  3181. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3182. font-weight:700;
  3183. font-style:normal;
  3184. font-size:14px;
  3185. color:#1E1E1E;
  3186. }
  3187. #u2216_text {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:2px;
  3191. top:2px;
  3192. width:16px;
  3193. word-wrap:break-word;
  3194. }
  3195. #u2217_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:-4px;
  3199. top:-4px;
  3200. width:30px;
  3201. height:30px;
  3202. }
  3203. #u2217 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:1129px;
  3207. top:4483px;
  3208. width:20px;
  3209. height:20px;
  3210. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3211. font-weight:700;
  3212. font-style:normal;
  3213. font-size:14px;
  3214. color:#1E1E1E;
  3215. }
  3216. #u2217_text {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:2px;
  3220. top:2px;
  3221. width:16px;
  3222. word-wrap:break-word;
  3223. }
  3224. #u2218_div {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:239px;
  3230. height:22px;
  3231. background:inherit;
  3232. background-color:rgba(255, 255, 255, 0);
  3233. border:none;
  3234. border-radius:0px;
  3235. -moz-box-shadow:none;
  3236. -webkit-box-shadow:none;
  3237. box-shadow:none;
  3238. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3239. font-weight:700;
  3240. font-style:normal;
  3241. font-size:18px;
  3242. }
  3243. #u2218 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:35px;
  3247. top:4940px;
  3248. width:239px;
  3249. height:22px;
  3250. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3251. font-weight:700;
  3252. font-style:normal;
  3253. font-size:18px;
  3254. }
  3255. #u2218_text {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:239px;
  3261. white-space:nowrap;
  3262. }
  3263. #u2219_img {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:1155px;
  3269. height:583px;
  3270. }
  3271. #u2219 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:35px;
  3275. top:4972px;
  3276. width:1155px;
  3277. height:583px;
  3278. }
  3279. #u2219_text {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:0px;
  3285. visibility:hidden;
  3286. word-wrap:break-word;
  3287. }
  3288. #u2220_img {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:-4px;
  3292. top:-4px;
  3293. width:30px;
  3294. height:30px;
  3295. }
  3296. #u2220 {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:1032px;
  3300. top:5237px;
  3301. width:20px;
  3302. height:20px;
  3303. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3304. font-weight:700;
  3305. font-style:normal;
  3306. font-size:14px;
  3307. color:#1E1E1E;
  3308. }
  3309. #u2220_text {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:2px;
  3313. top:2px;
  3314. width:16px;
  3315. word-wrap:break-word;
  3316. }
  3317. #u2221_img {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:-4px;
  3321. top:-4px;
  3322. width:30px;
  3323. height:30px;
  3324. }
  3325. #u2221 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:1105px;
  3329. top:5237px;
  3330. width:20px;
  3331. height:20px;
  3332. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3333. font-weight:700;
  3334. font-style:normal;
  3335. font-size:14px;
  3336. color:#1E1E1E;
  3337. }
  3338. #u2221_text {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:2px;
  3342. top:2px;
  3343. width:16px;
  3344. word-wrap:break-word;
  3345. }
  3346. #u2222 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:0px;
  3352. height:0px;
  3353. }
  3354. #u2223_img {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:-4px;
  3358. top:-4px;
  3359. width:40px;
  3360. height:40px;
  3361. }
  3362. #u2223 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:1200px;
  3366. top:4295px;
  3367. width:30px;
  3368. height:30px;
  3369. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3370. font-weight:700;
  3371. font-style:normal;
  3372. font-size:18px;
  3373. color:#1E1E1E;
  3374. }
  3375. #u2223_text {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:2px;
  3379. top:4px;
  3380. width:26px;
  3381. word-wrap:break-word;
  3382. }
  3383. #u2224_div {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:68px;
  3389. height:19px;
  3390. background:inherit;
  3391. background-color:rgba(255, 255, 255, 0);
  3392. border:none;
  3393. border-radius:0px;
  3394. -moz-box-shadow:none;
  3395. -webkit-box-shadow:none;
  3396. box-shadow:none;
  3397. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3398. font-weight:700;
  3399. font-style:normal;
  3400. font-size:16px;
  3401. color:#FF0000;
  3402. }
  3403. #u2224 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:1240px;
  3407. top:4302px;
  3408. width:68px;
  3409. height:19px;
  3410. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3411. font-weight:700;
  3412. font-style:normal;
  3413. font-size:16px;
  3414. color:#FF0000;
  3415. }
  3416. #u2224_text {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:68px;
  3422. word-wrap:break-word;
  3423. }
  3424. #u2225_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:352px;
  3430. height:44px;
  3431. background:inherit;
  3432. background-color:rgba(255, 255, 255, 0);
  3433. border:none;
  3434. border-radius:0px;
  3435. -moz-box-shadow:none;
  3436. -webkit-box-shadow:none;
  3437. box-shadow:none;
  3438. line-height:22px;
  3439. }
  3440. #u2225 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:1240px;
  3444. top:4340px;
  3445. width:352px;
  3446. height:44px;
  3447. line-height:22px;
  3448. }
  3449. #u2225_text {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:352px;
  3455. word-wrap:break-word;
  3456. }
  3457. #u2226 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:0px;
  3463. height:0px;
  3464. }
  3465. #u2227_img {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:-4px;
  3469. top:-4px;
  3470. width:40px;
  3471. height:40px;
  3472. }
  3473. #u2227 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:1200px;
  3477. top:4403px;
  3478. width:30px;
  3479. height:30px;
  3480. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3481. font-weight:700;
  3482. font-style:normal;
  3483. font-size:18px;
  3484. color:#1E1E1E;
  3485. }
  3486. #u2227_text {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:2px;
  3490. top:4px;
  3491. width:26px;
  3492. word-wrap:break-word;
  3493. }
  3494. #u2228_div {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:158px;
  3500. height:19px;
  3501. background:inherit;
  3502. background-color:rgba(255, 255, 255, 0);
  3503. border:none;
  3504. border-radius:0px;
  3505. -moz-box-shadow:none;
  3506. -webkit-box-shadow:none;
  3507. box-shadow:none;
  3508. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3509. font-weight:700;
  3510. font-style:normal;
  3511. font-size:16px;
  3512. color:#FF0000;
  3513. }
  3514. #u2228 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:1240px;
  3518. top:4410px;
  3519. width:158px;
  3520. height:19px;
  3521. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3522. font-weight:700;
  3523. font-style:normal;
  3524. font-size:16px;
  3525. color:#FF0000;
  3526. }
  3527. #u2228_text {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:158px;
  3533. word-wrap:break-word;
  3534. }
  3535. #u2229_div {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:352px;
  3541. height:22px;
  3542. background:inherit;
  3543. background-color:rgba(255, 255, 255, 0);
  3544. border:none;
  3545. border-radius:0px;
  3546. -moz-box-shadow:none;
  3547. -webkit-box-shadow:none;
  3548. box-shadow:none;
  3549. line-height:22px;
  3550. }
  3551. #u2229 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:1240px;
  3555. top:4448px;
  3556. width:352px;
  3557. height:22px;
  3558. line-height:22px;
  3559. }
  3560. #u2229_text {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:352px;
  3566. word-wrap:break-word;
  3567. }
  3568. #u2230 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:1247px;
  3572. top:4407px;
  3573. width:87px;
  3574. height:23px;
  3575. overflow:hidden;
  3576. background-image:url('../../resources/images/transparent.gif');
  3577. }
  3578. #u2231_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:245px;
  3584. height:91px;
  3585. }
  3586. #u2231 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:1247px;
  3590. top:4309px;
  3591. width:245px;
  3592. height:91px;
  3593. color:#000000;
  3594. text-align:left;
  3595. line-height:18px;
  3596. }
  3597. #u2231_text {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:2px;
  3601. top:18px;
  3602. width:241px;
  3603. word-wrap:break-word;
  3604. }
  3605. #u2232 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:0px;
  3611. height:0px;
  3612. }
  3613. #u2233_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:-4px;
  3617. top:-4px;
  3618. width:40px;
  3619. height:40px;
  3620. }
  3621. #u2233 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:1197px;
  3625. top:4972px;
  3626. width:30px;
  3627. height:30px;
  3628. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3629. font-weight:700;
  3630. font-style:normal;
  3631. font-size:18px;
  3632. color:#1E1E1E;
  3633. }
  3634. #u2233_text {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:2px;
  3638. top:4px;
  3639. width:26px;
  3640. word-wrap:break-word;
  3641. }
  3642. #u2234_div {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:68px;
  3648. height:19px;
  3649. background:inherit;
  3650. background-color:rgba(255, 255, 255, 0);
  3651. border:none;
  3652. border-radius:0px;
  3653. -moz-box-shadow:none;
  3654. -webkit-box-shadow:none;
  3655. box-shadow:none;
  3656. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3657. font-weight:700;
  3658. font-style:normal;
  3659. font-size:16px;
  3660. color:#FF0000;
  3661. }
  3662. #u2234 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:1237px;
  3666. top:4979px;
  3667. width:68px;
  3668. height:19px;
  3669. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3670. font-weight:700;
  3671. font-style:normal;
  3672. font-size:16px;
  3673. color:#FF0000;
  3674. }
  3675. #u2234_text {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:68px;
  3681. word-wrap:break-word;
  3682. }
  3683. #u2235_div {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:352px;
  3689. height:44px;
  3690. background:inherit;
  3691. background-color:rgba(255, 255, 255, 0);
  3692. border:none;
  3693. border-radius:0px;
  3694. -moz-box-shadow:none;
  3695. -webkit-box-shadow:none;
  3696. box-shadow:none;
  3697. line-height:22px;
  3698. }
  3699. #u2235 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:1237px;
  3703. top:5017px;
  3704. width:352px;
  3705. height:44px;
  3706. line-height:22px;
  3707. }
  3708. #u2235_text {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:0px;
  3712. top:0px;
  3713. width:352px;
  3714. word-wrap:break-word;
  3715. }
  3716. #u2236 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:0px;
  3722. height:0px;
  3723. }
  3724. #u2237_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:-4px;
  3728. top:-4px;
  3729. width:40px;
  3730. height:40px;
  3731. }
  3732. #u2237 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:1197px;
  3736. top:5080px;
  3737. width:30px;
  3738. height:30px;
  3739. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3740. font-weight:700;
  3741. font-style:normal;
  3742. font-size:18px;
  3743. color:#1E1E1E;
  3744. }
  3745. #u2237_text {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:2px;
  3749. top:4px;
  3750. width:26px;
  3751. word-wrap:break-word;
  3752. }
  3753. #u2238_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:158px;
  3759. height:19px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border:none;
  3763. border-radius:0px;
  3764. -moz-box-shadow:none;
  3765. -webkit-box-shadow:none;
  3766. box-shadow:none;
  3767. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3768. font-weight:700;
  3769. font-style:normal;
  3770. font-size:16px;
  3771. color:#FF0000;
  3772. }
  3773. #u2238 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:1237px;
  3777. top:5087px;
  3778. width:158px;
  3779. height:19px;
  3780. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3781. font-weight:700;
  3782. font-style:normal;
  3783. font-size:16px;
  3784. color:#FF0000;
  3785. }
  3786. #u2238_text {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:158px;
  3792. word-wrap:break-word;
  3793. }
  3794. #u2239_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:352px;
  3800. height:22px;
  3801. background:inherit;
  3802. background-color:rgba(255, 255, 255, 0);
  3803. border:none;
  3804. border-radius:0px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. line-height:22px;
  3809. }
  3810. #u2239 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:1237px;
  3814. top:5125px;
  3815. width:352px;
  3816. height:22px;
  3817. line-height:22px;
  3818. }
  3819. #u2239_text {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:352px;
  3825. word-wrap:break-word;
  3826. }
  3827. #u2240 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:1244px;
  3831. top:5084px;
  3832. width:87px;
  3833. height:23px;
  3834. overflow:hidden;
  3835. background-image:url('../../resources/images/transparent.gif');
  3836. }
  3837. #u2241_img {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:245px;
  3843. height:91px;
  3844. }
  3845. #u2241 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:1244px;
  3849. top:4986px;
  3850. width:245px;
  3851. height:91px;
  3852. color:#000000;
  3853. text-align:left;
  3854. line-height:18px;
  3855. }
  3856. #u2241_text {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:2px;
  3860. top:18px;
  3861. width:241px;
  3862. word-wrap:break-word;
  3863. }
  3864. #u2242_img {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:1155px;
  3870. height:583px;
  3871. }
  3872. #u2242 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:35px;
  3876. top:3626px;
  3877. width:1155px;
  3878. height:583px;
  3879. }
  3880. #u2242_text {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:0px;
  3886. visibility:hidden;
  3887. word-wrap:break-word;
  3888. }
  3889. #u2243_div {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:109px;
  3895. height:22px;
  3896. background:inherit;
  3897. background-color:rgba(255, 255, 255, 0);
  3898. border:none;
  3899. border-radius:0px;
  3900. -moz-box-shadow:none;
  3901. -webkit-box-shadow:none;
  3902. box-shadow:none;
  3903. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3904. font-weight:700;
  3905. font-style:normal;
  3906. font-size:18px;
  3907. }
  3908. #u2243 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:35px;
  3912. top:3594px;
  3913. width:109px;
  3914. height:22px;
  3915. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3916. font-weight:700;
  3917. font-style:normal;
  3918. font-size:18px;
  3919. }
  3920. #u2243_text {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:109px;
  3926. white-space:nowrap;
  3927. }
  3928. #u2244 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:0px;
  3934. height:0px;
  3935. }
  3936. #u2245_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:-4px;
  3940. top:-4px;
  3941. width:40px;
  3942. height:40px;
  3943. }
  3944. #u2245 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:1200px;
  3948. top:3633px;
  3949. width:30px;
  3950. height:30px;
  3951. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3952. font-weight:700;
  3953. font-style:normal;
  3954. font-size:18px;
  3955. color:#1E1E1E;
  3956. }
  3957. #u2245_text {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:2px;
  3961. top:4px;
  3962. width:26px;
  3963. word-wrap:break-word;
  3964. }
  3965. #u2246_div {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:68px;
  3971. height:19px;
  3972. background:inherit;
  3973. background-color:rgba(255, 255, 255, 0);
  3974. border:none;
  3975. border-radius:0px;
  3976. -moz-box-shadow:none;
  3977. -webkit-box-shadow:none;
  3978. box-shadow:none;
  3979. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3980. font-weight:700;
  3981. font-style:normal;
  3982. font-size:16px;
  3983. color:#FF0000;
  3984. }
  3985. #u2246 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:1240px;
  3989. top:3640px;
  3990. width:68px;
  3991. height:19px;
  3992. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3993. font-weight:700;
  3994. font-style:normal;
  3995. font-size:16px;
  3996. color:#FF0000;
  3997. }
  3998. #u2246_text {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:68px;
  4004. word-wrap:break-word;
  4005. }
  4006. #u2247_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:352px;
  4012. height:44px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 0);
  4015. border:none;
  4016. border-radius:0px;
  4017. -moz-box-shadow:none;
  4018. -webkit-box-shadow:none;
  4019. box-shadow:none;
  4020. line-height:22px;
  4021. }
  4022. #u2247 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:1240px;
  4026. top:3678px;
  4027. width:352px;
  4028. height:44px;
  4029. line-height:22px;
  4030. }
  4031. #u2247_text {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:352px;
  4037. word-wrap:break-word;
  4038. }
  4039. #u2248 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:0px;
  4045. height:0px;
  4046. }
  4047. #u2249_img {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:-4px;
  4051. top:-4px;
  4052. width:40px;
  4053. height:40px;
  4054. }
  4055. #u2249 {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:1200px;
  4059. top:3750px;
  4060. width:30px;
  4061. height:30px;
  4062. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4063. font-weight:700;
  4064. font-style:normal;
  4065. font-size:18px;
  4066. color:#1E1E1E;
  4067. }
  4068. #u2249_text {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:2px;
  4072. top:4px;
  4073. width:26px;
  4074. word-wrap:break-word;
  4075. }
  4076. #u2250_div {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:158px;
  4082. height:19px;
  4083. background:inherit;
  4084. background-color:rgba(255, 255, 255, 0);
  4085. border:none;
  4086. border-radius:0px;
  4087. -moz-box-shadow:none;
  4088. -webkit-box-shadow:none;
  4089. box-shadow:none;
  4090. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4091. font-weight:700;
  4092. font-style:normal;
  4093. font-size:16px;
  4094. }
  4095. #u2250 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:1240px;
  4099. top:3757px;
  4100. width:158px;
  4101. height:19px;
  4102. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4103. font-weight:700;
  4104. font-style:normal;
  4105. font-size:16px;
  4106. }
  4107. #u2250_text {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:158px;
  4113. word-wrap:break-word;
  4114. }
  4115. #u2251_div {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:352px;
  4121. height:22px;
  4122. background:inherit;
  4123. background-color:rgba(255, 255, 255, 0);
  4124. border:none;
  4125. border-radius:0px;
  4126. -moz-box-shadow:none;
  4127. -webkit-box-shadow:none;
  4128. box-shadow:none;
  4129. line-height:22px;
  4130. }
  4131. #u2251 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1240px;
  4135. top:3795px;
  4136. width:352px;
  4137. height:22px;
  4138. line-height:22px;
  4139. }
  4140. #u2251_text {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:352px;
  4146. word-wrap:break-word;
  4147. }
  4148. #u2252 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:0px;
  4154. height:0px;
  4155. }
  4156. #u2253_img {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:-4px;
  4160. top:-4px;
  4161. width:40px;
  4162. height:40px;
  4163. }
  4164. #u2253 {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:1200px;
  4168. top:3827px;
  4169. width:30px;
  4170. height:30px;
  4171. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4172. font-weight:700;
  4173. font-style:normal;
  4174. font-size:18px;
  4175. color:#1E1E1E;
  4176. }
  4177. #u2253_text {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:2px;
  4181. top:4px;
  4182. width:26px;
  4183. word-wrap:break-word;
  4184. }
  4185. #u2254_div {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:158px;
  4191. height:19px;
  4192. background:inherit;
  4193. background-color:rgba(255, 255, 255, 0);
  4194. border:none;
  4195. border-radius:0px;
  4196. -moz-box-shadow:none;
  4197. -webkit-box-shadow:none;
  4198. box-shadow:none;
  4199. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4200. font-weight:700;
  4201. font-style:normal;
  4202. font-size:16px;
  4203. color:#FF0000;
  4204. }
  4205. #u2254 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:1240px;
  4209. top:3834px;
  4210. width:158px;
  4211. height:19px;
  4212. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4213. font-weight:700;
  4214. font-style:normal;
  4215. font-size:16px;
  4216. color:#FF0000;
  4217. }
  4218. #u2254_text {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:158px;
  4224. word-wrap:break-word;
  4225. }
  4226. #u2255_div {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:352px;
  4232. height:22px;
  4233. background:inherit;
  4234. background-color:rgba(255, 255, 255, 0);
  4235. border:none;
  4236. border-radius:0px;
  4237. -moz-box-shadow:none;
  4238. -webkit-box-shadow:none;
  4239. box-shadow:none;
  4240. line-height:22px;
  4241. }
  4242. #u2255 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:1240px;
  4246. top:3872px;
  4247. width:352px;
  4248. height:22px;
  4249. line-height:22px;
  4250. }
  4251. #u2255_text {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:352px;
  4257. word-wrap:break-word;
  4258. }
  4259. #u2256 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:1247px;
  4263. top:3831px;
  4264. width:87px;
  4265. height:23px;
  4266. overflow:hidden;
  4267. background-image:url('../../resources/images/transparent.gif');
  4268. }
  4269. #u2257_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:245px;
  4275. height:91px;
  4276. }
  4277. #u2257 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:1240px;
  4281. top:3726px;
  4282. width:245px;
  4283. height:91px;
  4284. color:#000000;
  4285. text-align:left;
  4286. line-height:18px;
  4287. }
  4288. #u2257_text {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:2px;
  4292. top:18px;
  4293. width:241px;
  4294. word-wrap:break-word;
  4295. }
  4296. #u2258_img {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:-4px;
  4300. top:-4px;
  4301. width:30px;
  4302. height:30px;
  4303. }
  4304. #u2258 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:1037px;
  4308. top:3844px;
  4309. width:20px;
  4310. height:20px;
  4311. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4312. font-weight:700;
  4313. font-style:normal;
  4314. font-size:14px;
  4315. color:#1E1E1E;
  4316. }
  4317. #u2258_text {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:2px;
  4321. top:2px;
  4322. width:16px;
  4323. word-wrap:break-word;
  4324. }
  4325. #u2259_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:-4px;
  4329. top:-4px;
  4330. width:30px;
  4331. height:30px;
  4332. }
  4333. #u2259 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:1077px;
  4337. top:3844px;
  4338. width:20px;
  4339. height:20px;
  4340. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4341. font-weight:700;
  4342. font-style:normal;
  4343. font-size:14px;
  4344. color:#1E1E1E;
  4345. }
  4346. #u2259_text {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:2px;
  4350. top:2px;
  4351. width:16px;
  4352. word-wrap:break-word;
  4353. }
  4354. #u2260_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:-4px;
  4358. top:-4px;
  4359. width:30px;
  4360. height:30px;
  4361. }
  4362. #u2260 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:1135px;
  4366. top:3844px;
  4367. width:20px;
  4368. height:20px;
  4369. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4370. font-weight:700;
  4371. font-style:normal;
  4372. font-size:14px;
  4373. color:#1E1E1E;
  4374. }
  4375. #u2260_text {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:2px;
  4379. top:2px;
  4380. width:16px;
  4381. word-wrap:break-word;
  4382. }
  4383. #u2261 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:1231px;
  4387. top:1737px;
  4388. width:102px;
  4389. height:23px;
  4390. overflow:hidden;
  4391. background-image:url('../../resources/images/transparent.gif');
  4392. }
  4393. #u2262_img {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:245px;
  4399. height:88px;
  4400. }
  4401. #u2262 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:1226px;
  4405. top:1639px;
  4406. width:245px;
  4407. height:88px;
  4408. text-align:left;
  4409. }
  4410. #u2262_text {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:2px;
  4414. top:24px;
  4415. width:241px;
  4416. word-wrap:break-word;
  4417. }
  4418. #u2263 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:1240px;
  4422. top:2968px;
  4423. width:94px;
  4424. height:23px;
  4425. overflow:hidden;
  4426. background-image:url('../../resources/images/transparent.gif');
  4427. }
  4428. #u2264_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:182px;
  4434. height:70px;
  4435. }
  4436. #u2264 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:1240px;
  4440. top:2891px;
  4441. width:182px;
  4442. height:70px;
  4443. color:#000000;
  4444. text-align:left;
  4445. line-height:18px;
  4446. }
  4447. #u2264_text {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:2px;
  4451. top:17px;
  4452. width:178px;
  4453. word-wrap:break-word;
  4454. }
  4455. #u2265 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:1240px;
  4459. top:3273px;
  4460. width:63px;
  4461. height:23px;
  4462. overflow:hidden;
  4463. background-image:url('../../resources/images/transparent.gif');
  4464. }
  4465. #u2266_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:182px;
  4471. height:70px;
  4472. }
  4473. #u2266 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:1240px;
  4477. top:3196px;
  4478. width:182px;
  4479. height:70px;
  4480. color:#000000;
  4481. text-align:left;
  4482. line-height:18px;
  4483. }
  4484. #u2266_text {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:2px;
  4488. top:17px;
  4489. width:178px;
  4490. word-wrap:break-word;
  4491. }
  4492. #u2267 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:1247px;
  4496. top:3636px;
  4497. width:63px;
  4498. height:23px;
  4499. overflow:hidden;
  4500. background-image:url('../../resources/images/transparent.gif');
  4501. }
  4502. #u2268_img {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:182px;
  4508. height:70px;
  4509. }
  4510. #u2268 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:1247px;
  4514. top:3559px;
  4515. width:182px;
  4516. height:70px;
  4517. color:#000000;
  4518. text-align:left;
  4519. line-height:18px;
  4520. }
  4521. #u2268_text {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:2px;
  4525. top:17px;
  4526. width:178px;
  4527. word-wrap:break-word;
  4528. }
  4529. #u2269 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:1240px;
  4533. top:4298px;
  4534. width:63px;
  4535. height:23px;
  4536. overflow:hidden;
  4537. background-image:url('../../resources/images/transparent.gif');
  4538. }
  4539. #u2270_img {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:182px;
  4545. height:70px;
  4546. }
  4547. #u2270 {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:1240px;
  4551. top:4221px;
  4552. width:182px;
  4553. height:70px;
  4554. color:#000000;
  4555. text-align:left;
  4556. line-height:18px;
  4557. }
  4558. #u2270_text {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:2px;
  4562. top:17px;
  4563. width:178px;
  4564. word-wrap:break-word;
  4565. }
  4566. #u2271 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:1240px;
  4570. top:4975px;
  4571. width:63px;
  4572. height:23px;
  4573. overflow:hidden;
  4574. background-image:url('../../resources/images/transparent.gif');
  4575. }
  4576. #u2272_img {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:182px;
  4582. height:70px;
  4583. }
  4584. #u2272 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:1240px;
  4588. top:4898px;
  4589. width:182px;
  4590. height:70px;
  4591. color:#000000;
  4592. text-align:left;
  4593. line-height:18px;
  4594. }
  4595. #u2272_text {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:2px;
  4599. top:17px;
  4600. width:178px;
  4601. word-wrap:break-word;
  4602. }
  4603. #u2273 {
  4604. position:fixed;
  4605. left:1433px;
  4606. top:67px;
  4607. }
  4608. #u2273_state0 {
  4609. position:relative;
  4610. left:0px;
  4611. top:0px;
  4612. width:140px;
  4613. height:40px;
  4614. background-image:none;
  4615. }
  4616. #u2273_state0_content {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:1px;
  4622. height:1px;
  4623. }
  4624. #u2274_div {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:140px;
  4630. height:40px;
  4631. background:inherit;
  4632. background-color:rgba(51, 160, 154, 1);
  4633. border:none;
  4634. border-radius:5px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4639. font-weight:700;
  4640. font-style:normal;
  4641. font-size:16px;
  4642. }
  4643. #u2274 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:140px;
  4649. height:40px;
  4650. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  4651. font-weight:700;
  4652. font-style:normal;
  4653. font-size:16px;
  4654. }
  4655. #u2274_text {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:2px;
  4659. top:10px;
  4660. width:136px;
  4661. word-wrap:break-word;
  4662. }