styles.css 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1579px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u609_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:1155px;
  21. height:583px;
  22. }
  23. #u609 {
  24. border-width:0px;
  25. position:absolute;
  26. left:22px;
  27. top:276px;
  28. width:1155px;
  29. height:583px;
  30. }
  31. #u609_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u610 {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:0px;
  46. height:0px;
  47. }
  48. #u611_img {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:0px;
  53. width:8px;
  54. height:28px;
  55. }
  56. #u611 {
  57. border-width:0px;
  58. position:absolute;
  59. left:8px;
  60. top:15px;
  61. width:8px;
  62. height:28px;
  63. }
  64. #u611_text {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:0px;
  70. visibility:hidden;
  71. word-wrap:break-word;
  72. }
  73. #u612_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:97px;
  79. height:28px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 0);
  82. border:none;
  83. border-radius:0px;
  84. -moz-box-shadow:none;
  85. -webkit-box-shadow:none;
  86. box-shadow:none;
  87. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  88. font-weight:700;
  89. font-style:normal;
  90. }
  91. #u612 {
  92. border-width:0px;
  93. position:absolute;
  94. left:22px;
  95. top:15px;
  96. width:97px;
  97. height:28px;
  98. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  99. font-weight:700;
  100. font-style:normal;
  101. }
  102. #u612_text {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:97px;
  108. white-space:nowrap;
  109. }
  110. #u613_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:109px;
  116. height:22px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 0);
  119. border:none;
  120. border-radius:0px;
  121. -moz-box-shadow:none;
  122. -webkit-box-shadow:none;
  123. box-shadow:none;
  124. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  125. font-weight:700;
  126. font-style:normal;
  127. font-size:18px;
  128. }
  129. #u613 {
  130. border-width:0px;
  131. position:absolute;
  132. left:22px;
  133. top:71px;
  134. width:109px;
  135. height:22px;
  136. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  137. font-weight:700;
  138. font-style:normal;
  139. font-size:18px;
  140. }
  141. #u613_text {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:109px;
  147. white-space:nowrap;
  148. }
  149. #u614_div {
  150. border-width:0px;
  151. position:absolute;
  152. left:0px;
  153. top:0px;
  154. width:192px;
  155. height:22px;
  156. background:inherit;
  157. background-color:rgba(255, 255, 255, 0);
  158. border:none;
  159. border-radius:0px;
  160. -moz-box-shadow:none;
  161. -webkit-box-shadow:none;
  162. box-shadow:none;
  163. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  164. font-weight:700;
  165. font-style:normal;
  166. font-size:18px;
  167. }
  168. #u614 {
  169. border-width:0px;
  170. position:absolute;
  171. left:22px;
  172. top:198px;
  173. width:192px;
  174. height:22px;
  175. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  176. font-weight:700;
  177. font-style:normal;
  178. font-size:18px;
  179. }
  180. #u614_text {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:192px;
  186. white-space:nowrap;
  187. }
  188. #u615 {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:0px;
  194. height:0px;
  195. }
  196. #u616_img {
  197. border-width:0px;
  198. position:absolute;
  199. left:-4px;
  200. top:-4px;
  201. width:40px;
  202. height:40px;
  203. }
  204. #u616 {
  205. border-width:0px;
  206. position:absolute;
  207. left:1187px;
  208. top:277px;
  209. width:30px;
  210. height:30px;
  211. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  212. font-weight:700;
  213. font-style:normal;
  214. font-size:18px;
  215. color:#1E1E1E;
  216. }
  217. #u616_text {
  218. border-width:0px;
  219. position:absolute;
  220. left:2px;
  221. top:4px;
  222. width:26px;
  223. word-wrap:break-word;
  224. }
  225. #u617_div {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:131px;
  231. height:19px;
  232. background:inherit;
  233. background-color:rgba(255, 255, 255, 0);
  234. border:none;
  235. border-radius:0px;
  236. -moz-box-shadow:none;
  237. -webkit-box-shadow:none;
  238. box-shadow:none;
  239. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  240. font-weight:700;
  241. font-style:normal;
  242. font-size:16px;
  243. }
  244. #u617 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1227px;
  248. top:284px;
  249. width:131px;
  250. height:19px;
  251. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  252. font-weight:700;
  253. font-style:normal;
  254. font-size:16px;
  255. }
  256. #u617_text {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:131px;
  262. word-wrap:break-word;
  263. }
  264. #u618_div {
  265. border-width:0px;
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:352px;
  270. height:44px;
  271. background:inherit;
  272. background-color:rgba(255, 255, 255, 0);
  273. border:none;
  274. border-radius:0px;
  275. -moz-box-shadow:none;
  276. -webkit-box-shadow:none;
  277. box-shadow:none;
  278. line-height:22px;
  279. }
  280. #u618 {
  281. border-width:0px;
  282. position:absolute;
  283. left:1227px;
  284. top:322px;
  285. width:352px;
  286. height:44px;
  287. line-height:22px;
  288. }
  289. #u618_text {
  290. border-width:0px;
  291. position:absolute;
  292. left:0px;
  293. top:0px;
  294. width:352px;
  295. word-wrap:break-word;
  296. }
  297. #u619 {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:0px;
  303. height:0px;
  304. }
  305. #u620_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:-4px;
  309. top:-4px;
  310. width:44px;
  311. height:44px;
  312. }
  313. #u620 {
  314. border-width:0px;
  315. position:absolute;
  316. left:1187px;
  317. top:580px;
  318. width:34px;
  319. height:34px;
  320. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  321. font-weight:700;
  322. font-style:normal;
  323. font-size:26px;
  324. }
  325. #u620_text {
  326. border-width:0px;
  327. position:absolute;
  328. left:2px;
  329. top:1px;
  330. width:30px;
  331. word-wrap:break-word;
  332. }
  333. #u621_div {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:131px;
  339. height:19px;
  340. background:inherit;
  341. background-color:rgba(255, 255, 255, 0);
  342. border:none;
  343. border-radius:0px;
  344. -moz-box-shadow:none;
  345. -webkit-box-shadow:none;
  346. box-shadow:none;
  347. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  348. font-weight:700;
  349. font-style:normal;
  350. font-size:16px;
  351. }
  352. #u621 {
  353. border-width:0px;
  354. position:absolute;
  355. left:1227px;
  356. top:587px;
  357. width:131px;
  358. height:19px;
  359. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  360. font-weight:700;
  361. font-style:normal;
  362. font-size:16px;
  363. }
  364. #u621_text {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:131px;
  370. word-wrap:break-word;
  371. }
  372. #u622_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:352px;
  378. height:22px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 0);
  381. border:none;
  382. border-radius:0px;
  383. -moz-box-shadow:none;
  384. -webkit-box-shadow:none;
  385. box-shadow:none;
  386. color:#000000;
  387. line-height:22px;
  388. }
  389. #u622 {
  390. border-width:0px;
  391. position:absolute;
  392. left:1227px;
  393. top:625px;
  394. width:352px;
  395. height:22px;
  396. color:#000000;
  397. line-height:22px;
  398. }
  399. #u622_text {
  400. border-width:0px;
  401. position:absolute;
  402. left:0px;
  403. top:0px;
  404. width:352px;
  405. word-wrap:break-word;
  406. }
  407. #u623 {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:0px;
  413. height:0px;
  414. }
  415. #u624_img {
  416. border-width:0px;
  417. position:absolute;
  418. left:-4px;
  419. top:-4px;
  420. width:40px;
  421. height:40px;
  422. }
  423. #u624 {
  424. border-width:0px;
  425. position:absolute;
  426. left:1187px;
  427. top:1040px;
  428. width:30px;
  429. height:30px;
  430. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  431. font-weight:700;
  432. font-style:normal;
  433. font-size:18px;
  434. color:#1E1E1E;
  435. }
  436. #u624_text {
  437. border-width:0px;
  438. position:absolute;
  439. left:2px;
  440. top:4px;
  441. width:26px;
  442. word-wrap:break-word;
  443. }
  444. #u625_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:131px;
  450. height:19px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border:none;
  454. border-radius:0px;
  455. -moz-box-shadow:none;
  456. -webkit-box-shadow:none;
  457. box-shadow:none;
  458. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  459. font-weight:700;
  460. font-style:normal;
  461. font-size:16px;
  462. }
  463. #u625 {
  464. border-width:0px;
  465. position:absolute;
  466. left:1227px;
  467. top:1047px;
  468. width:131px;
  469. height:19px;
  470. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  471. font-weight:700;
  472. font-style:normal;
  473. font-size:16px;
  474. }
  475. #u625_text {
  476. border-width:0px;
  477. position:absolute;
  478. left:0px;
  479. top:0px;
  480. width:131px;
  481. word-wrap:break-word;
  482. }
  483. #u626_div {
  484. border-width:0px;
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:352px;
  489. height:110px;
  490. background:inherit;
  491. background-color:rgba(255, 255, 255, 0);
  492. border:none;
  493. border-radius:0px;
  494. -moz-box-shadow:none;
  495. -webkit-box-shadow:none;
  496. box-shadow:none;
  497. line-height:22px;
  498. }
  499. #u626 {
  500. border-width:0px;
  501. position:absolute;
  502. left:1227px;
  503. top:1085px;
  504. width:352px;
  505. height:110px;
  506. line-height:22px;
  507. }
  508. #u626_text {
  509. border-width:0px;
  510. position:absolute;
  511. left:0px;
  512. top:0px;
  513. width:352px;
  514. word-wrap:break-word;
  515. }
  516. #u627 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u628_div {
  525. border-width:0px;
  526. position:absolute;
  527. left:0px;
  528. top:0px;
  529. width:131px;
  530. height:19px;
  531. background:inherit;
  532. background-color:rgba(255, 255, 255, 0);
  533. border:none;
  534. border-radius:0px;
  535. -moz-box-shadow:none;
  536. -webkit-box-shadow:none;
  537. box-shadow:none;
  538. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  539. font-weight:700;
  540. font-style:normal;
  541. font-size:16px;
  542. color:#FF0000;
  543. }
  544. #u628 {
  545. border-width:0px;
  546. position:absolute;
  547. left:1227px;
  548. top:1210px;
  549. width:131px;
  550. height:19px;
  551. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  552. font-weight:700;
  553. font-style:normal;
  554. font-size:16px;
  555. color:#FF0000;
  556. }
  557. #u628_text {
  558. border-width:0px;
  559. position:absolute;
  560. left:0px;
  561. top:0px;
  562. width:131px;
  563. word-wrap:break-word;
  564. }
  565. #u629_div {
  566. border-width:0px;
  567. position:absolute;
  568. left:0px;
  569. top:0px;
  570. width:352px;
  571. height:88px;
  572. background:inherit;
  573. background-color:rgba(255, 255, 255, 0);
  574. border:none;
  575. border-radius:0px;
  576. -moz-box-shadow:none;
  577. -webkit-box-shadow:none;
  578. box-shadow:none;
  579. line-height:22px;
  580. }
  581. #u629 {
  582. border-width:0px;
  583. position:absolute;
  584. left:1227px;
  585. top:1248px;
  586. width:352px;
  587. height:88px;
  588. line-height:22px;
  589. }
  590. #u629_text {
  591. border-width:0px;
  592. position:absolute;
  593. left:0px;
  594. top:0px;
  595. width:352px;
  596. word-wrap:break-word;
  597. }
  598. #u630_img {
  599. border-width:0px;
  600. position:absolute;
  601. left:-4px;
  602. top:-4px;
  603. width:44px;
  604. height:44px;
  605. }
  606. #u630 {
  607. border-width:0px;
  608. position:absolute;
  609. left:1187px;
  610. top:1203px;
  611. width:34px;
  612. height:34px;
  613. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  614. font-weight:700;
  615. font-style:normal;
  616. font-size:26px;
  617. }
  618. #u630_text {
  619. border-width:0px;
  620. position:absolute;
  621. left:2px;
  622. top:1px;
  623. width:30px;
  624. word-wrap:break-word;
  625. }
  626. #u631 {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:0px;
  632. height:0px;
  633. }
  634. #u632_img {
  635. border-width:0px;
  636. position:absolute;
  637. left:-4px;
  638. top:-4px;
  639. width:44px;
  640. height:44px;
  641. }
  642. #u632 {
  643. border-width:0px;
  644. position:absolute;
  645. left:1187px;
  646. top:1340px;
  647. width:34px;
  648. height:34px;
  649. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  650. font-weight:700;
  651. font-style:normal;
  652. font-size:26px;
  653. }
  654. #u632_text {
  655. border-width:0px;
  656. position:absolute;
  657. left:2px;
  658. top:1px;
  659. width:30px;
  660. word-wrap:break-word;
  661. }
  662. #u633_div {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:131px;
  668. height:19px;
  669. background:inherit;
  670. background-color:rgba(255, 255, 255, 0);
  671. border:none;
  672. border-radius:0px;
  673. -moz-box-shadow:none;
  674. -webkit-box-shadow:none;
  675. box-shadow:none;
  676. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  677. font-weight:700;
  678. font-style:normal;
  679. font-size:16px;
  680. color:#FF0000;
  681. }
  682. #u633 {
  683. border-width:0px;
  684. position:absolute;
  685. left:1227px;
  686. top:1347px;
  687. width:131px;
  688. height:19px;
  689. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  690. font-weight:700;
  691. font-style:normal;
  692. font-size:16px;
  693. color:#FF0000;
  694. }
  695. #u633_text {
  696. border-width:0px;
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:131px;
  701. word-wrap:break-word;
  702. }
  703. #u634_div {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:352px;
  709. height:66px;
  710. background:inherit;
  711. background-color:rgba(255, 255, 255, 0);
  712. border:none;
  713. border-radius:0px;
  714. -moz-box-shadow:none;
  715. -webkit-box-shadow:none;
  716. box-shadow:none;
  717. line-height:22px;
  718. }
  719. #u634 {
  720. border-width:0px;
  721. position:absolute;
  722. left:1227px;
  723. top:1385px;
  724. width:352px;
  725. height:66px;
  726. line-height:22px;
  727. }
  728. #u634_text {
  729. border-width:0px;
  730. position:absolute;
  731. left:0px;
  732. top:0px;
  733. width:352px;
  734. word-wrap:break-word;
  735. }
  736. #u635 {
  737. border-width:0px;
  738. position:absolute;
  739. left:0px;
  740. top:0px;
  741. width:0px;
  742. height:0px;
  743. }
  744. #u636_img {
  745. border-width:0px;
  746. position:absolute;
  747. left:-4px;
  748. top:-4px;
  749. width:44px;
  750. height:44px;
  751. }
  752. #u636 {
  753. border-width:0px;
  754. position:absolute;
  755. left:1187px;
  756. top:1461px;
  757. width:34px;
  758. height:34px;
  759. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  760. font-weight:700;
  761. font-style:normal;
  762. font-size:26px;
  763. }
  764. #u636_text {
  765. border-width:0px;
  766. position:absolute;
  767. left:2px;
  768. top:1px;
  769. width:30px;
  770. word-wrap:break-word;
  771. }
  772. #u637_div {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:131px;
  778. height:19px;
  779. background:inherit;
  780. background-color:rgba(255, 255, 255, 0);
  781. border:none;
  782. border-radius:0px;
  783. -moz-box-shadow:none;
  784. -webkit-box-shadow:none;
  785. box-shadow:none;
  786. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  787. font-weight:700;
  788. font-style:normal;
  789. font-size:16px;
  790. color:#FF0000;
  791. }
  792. #u637 {
  793. border-width:0px;
  794. position:absolute;
  795. left:1227px;
  796. top:1468px;
  797. width:131px;
  798. height:19px;
  799. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  800. font-weight:700;
  801. font-style:normal;
  802. font-size:16px;
  803. color:#FF0000;
  804. }
  805. #u637_text {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:131px;
  811. word-wrap:break-word;
  812. }
  813. #u638_div {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:352px;
  819. height:88px;
  820. background:inherit;
  821. background-color:rgba(255, 255, 255, 0);
  822. border:none;
  823. border-radius:0px;
  824. -moz-box-shadow:none;
  825. -webkit-box-shadow:none;
  826. box-shadow:none;
  827. line-height:22px;
  828. }
  829. #u638 {
  830. border-width:0px;
  831. position:absolute;
  832. left:1227px;
  833. top:1506px;
  834. width:352px;
  835. height:88px;
  836. line-height:22px;
  837. }
  838. #u638_text {
  839. border-width:0px;
  840. position:absolute;
  841. left:0px;
  842. top:0px;
  843. width:352px;
  844. word-wrap:break-word;
  845. }
  846. #u639_div {
  847. border-width:0px;
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:1121px;
  852. height:74px;
  853. background:inherit;
  854. background-color:rgba(255, 255, 255, 0);
  855. border:none;
  856. border-radius:0px;
  857. -moz-box-shadow:none;
  858. -webkit-box-shadow:none;
  859. box-shadow:none;
  860. font-size:16px;
  861. line-height:24px;
  862. }
  863. #u639 {
  864. border-width:0px;
  865. position:absolute;
  866. left:57px;
  867. top:103px;
  868. width:1121px;
  869. height:74px;
  870. font-size:16px;
  871. line-height:24px;
  872. }
  873. #u639_text {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:1121px;
  879. word-wrap:break-word;
  880. }
  881. #u640 {
  882. border-width:0px;
  883. position:absolute;
  884. left:1227px;
  885. top:1347px;
  886. width:63px;
  887. height:23px;
  888. overflow:hidden;
  889. background-image:url('../../resources/images/transparent.gif');
  890. }
  891. #u641_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:326px;
  897. height:88px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 0, 1);
  900. box-sizing:border-box;
  901. border-width:1px;
  902. border-style:solid;
  903. border-color:rgba(0, 0, 0, 1);
  904. border-radius:10px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. text-align:left;
  909. line-height:18px;
  910. }
  911. #u641 {
  912. border-width:0px;
  913. position:absolute;
  914. left:1227px;
  915. top:1252px;
  916. width:326px;
  917. height:88px;
  918. text-align:left;
  919. line-height:18px;
  920. }
  921. #u641_text {
  922. border-width:0px;
  923. position:absolute;
  924. left:2px;
  925. top:17px;
  926. width:322px;
  927. word-wrap:break-word;
  928. }
  929. #u642_img {
  930. border-width:0px;
  931. position:absolute;
  932. left:-4px;
  933. top:-4px;
  934. width:30px;
  935. height:30px;
  936. }
  937. #u642 {
  938. border-width:0px;
  939. position:absolute;
  940. left:217px;
  941. top:437px;
  942. width:20px;
  943. height:20px;
  944. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  945. font-weight:700;
  946. font-style:normal;
  947. font-size:14px;
  948. color:#1E1E1E;
  949. }
  950. #u642_text {
  951. border-width:0px;
  952. position:absolute;
  953. left:2px;
  954. top:2px;
  955. width:16px;
  956. word-wrap:break-word;
  957. }
  958. #u643_img {
  959. border-width:0px;
  960. position:absolute;
  961. left:-4px;
  962. top:-4px;
  963. width:30px;
  964. height:30px;
  965. }
  966. #u643 {
  967. border-width:0px;
  968. position:absolute;
  969. left:1015px;
  970. top:579px;
  971. width:20px;
  972. height:20px;
  973. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  974. font-weight:700;
  975. font-style:normal;
  976. font-size:14px;
  977. color:#1E1E1E;
  978. }
  979. #u643_text {
  980. border-width:0px;
  981. position:absolute;
  982. left:2px;
  983. top:2px;
  984. width:16px;
  985. word-wrap:break-word;
  986. }
  987. #u644_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:-4px;
  991. top:-4px;
  992. width:30px;
  993. height:30px;
  994. }
  995. #u644 {
  996. border-width:0px;
  997. position:absolute;
  998. left:1081px;
  999. top:579px;
  1000. width:20px;
  1001. height:20px;
  1002. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1003. font-weight:700;
  1004. font-style:normal;
  1005. font-size:14px;
  1006. color:#1E1E1E;
  1007. }
  1008. #u644_text {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:2px;
  1012. top:2px;
  1013. width:16px;
  1014. word-wrap:break-word;
  1015. }
  1016. #u645_img {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:-4px;
  1020. top:-4px;
  1021. width:30px;
  1022. height:30px;
  1023. }
  1024. #u645 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:1051px;
  1028. top:579px;
  1029. width:20px;
  1030. height:20px;
  1031. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1032. font-weight:700;
  1033. font-style:normal;
  1034. font-size:14px;
  1035. color:#1E1E1E;
  1036. }
  1037. #u645_text {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:2px;
  1041. top:2px;
  1042. width:16px;
  1043. word-wrap:break-word;
  1044. }
  1045. #u646_img {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:-4px;
  1049. top:-4px;
  1050. width:30px;
  1051. height:30px;
  1052. }
  1053. #u646 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:1121px;
  1057. top:579px;
  1058. width:20px;
  1059. height:20px;
  1060. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1061. font-weight:700;
  1062. font-style:normal;
  1063. font-size:14px;
  1064. color:#1E1E1E;
  1065. }
  1066. #u646_text {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:2px;
  1070. top:2px;
  1071. width:16px;
  1072. word-wrap:break-word;
  1073. }
  1074. #u647_img {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:-4px;
  1078. top:-4px;
  1079. width:30px;
  1080. height:30px;
  1081. }
  1082. #u647 {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:1121px;
  1086. top:615px;
  1087. width:20px;
  1088. height:20px;
  1089. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1090. font-weight:700;
  1091. font-style:normal;
  1092. font-size:14px;
  1093. color:#1E1E1E;
  1094. }
  1095. #u647_text {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:2px;
  1099. top:2px;
  1100. width:16px;
  1101. word-wrap:break-word;
  1102. }
  1103. #u648 {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:0px;
  1109. height:0px;
  1110. }
  1111. #u649_img {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:-4px;
  1115. top:-4px;
  1116. width:44px;
  1117. height:44px;
  1118. }
  1119. #u649 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:1187px;
  1123. top:1603px;
  1124. width:34px;
  1125. height:34px;
  1126. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1127. font-weight:700;
  1128. font-style:normal;
  1129. font-size:26px;
  1130. }
  1131. #u649_text {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:2px;
  1135. top:1px;
  1136. width:30px;
  1137. word-wrap:break-word;
  1138. }
  1139. #u650_div {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:180px;
  1145. height:19px;
  1146. background:inherit;
  1147. background-color:rgba(255, 255, 255, 0);
  1148. border:none;
  1149. border-radius:0px;
  1150. -moz-box-shadow:none;
  1151. -webkit-box-shadow:none;
  1152. box-shadow:none;
  1153. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1154. font-weight:700;
  1155. font-style:normal;
  1156. font-size:16px;
  1157. color:#FF0000;
  1158. }
  1159. #u650 {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:1227px;
  1163. top:1610px;
  1164. width:180px;
  1165. height:19px;
  1166. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1167. font-weight:700;
  1168. font-style:normal;
  1169. font-size:16px;
  1170. color:#FF0000;
  1171. }
  1172. #u650_text {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:0px;
  1176. top:0px;
  1177. width:180px;
  1178. word-wrap:break-word;
  1179. }
  1180. #u651_div {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:352px;
  1186. height:34px;
  1187. background:inherit;
  1188. background-color:rgba(255, 255, 255, 0);
  1189. border:none;
  1190. border-radius:0px;
  1191. -moz-box-shadow:none;
  1192. -webkit-box-shadow:none;
  1193. box-shadow:none;
  1194. line-height:22px;
  1195. }
  1196. #u651 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1227px;
  1200. top:1648px;
  1201. width:352px;
  1202. height:34px;
  1203. line-height:22px;
  1204. }
  1205. #u651_text {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:352px;
  1211. word-wrap:break-word;
  1212. }
  1213. #u652_img {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:-4px;
  1217. top:-4px;
  1218. width:30px;
  1219. height:30px;
  1220. }
  1221. #u652 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:1039px;
  1225. top:352px;
  1226. width:20px;
  1227. height:20px;
  1228. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1229. font-weight:700;
  1230. font-style:normal;
  1231. font-size:14px;
  1232. color:#1E1E1E;
  1233. }
  1234. #u652_text {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:2px;
  1238. top:2px;
  1239. width:16px;
  1240. word-wrap:break-word;
  1241. }
  1242. #u653 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:1232px;
  1246. top:1464px;
  1247. width:90px;
  1248. height:23px;
  1249. overflow:hidden;
  1250. background-image:url('../../resources/images/transparent.gif');
  1251. }
  1252. #u654_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:329px;
  1258. height:88px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 0, 1);
  1261. box-sizing:border-box;
  1262. border-width:1px;
  1263. border-style:solid;
  1264. border-color:rgba(0, 0, 0, 1);
  1265. border-radius:10px;
  1266. -moz-box-shadow:none;
  1267. -webkit-box-shadow:none;
  1268. box-shadow:none;
  1269. text-align:left;
  1270. line-height:18px;
  1271. }
  1272. #u654 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1232px;
  1276. top:1370px;
  1277. width:329px;
  1278. height:88px;
  1279. text-align:left;
  1280. line-height:18px;
  1281. }
  1282. #u654_text {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:2px;
  1286. top:-1px;
  1287. width:325px;
  1288. word-wrap:break-word;
  1289. }
  1290. #u655_img {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:-4px;
  1294. top:-4px;
  1295. width:30px;
  1296. height:30px;
  1297. }
  1298. #u655 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:153px;
  1302. top:437px;
  1303. width:20px;
  1304. height:20px;
  1305. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1306. font-weight:700;
  1307. font-style:normal;
  1308. font-size:14px;
  1309. color:#1E1E1E;
  1310. }
  1311. #u655_text {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:2px;
  1315. top:2px;
  1316. width:16px;
  1317. word-wrap:break-word;
  1318. }
  1319. #u656 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:0px;
  1325. height:0px;
  1326. }
  1327. #u657_img {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:-4px;
  1331. top:-4px;
  1332. width:44px;
  1333. height:44px;
  1334. }
  1335. #u657 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:1187px;
  1339. top:1689px;
  1340. width:34px;
  1341. height:34px;
  1342. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1343. font-weight:700;
  1344. font-style:normal;
  1345. font-size:26px;
  1346. }
  1347. #u657_text {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:2px;
  1351. top:1px;
  1352. width:30px;
  1353. word-wrap:break-word;
  1354. }
  1355. #u658_div {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:131px;
  1361. height:19px;
  1362. background:inherit;
  1363. background-color:rgba(255, 255, 255, 0);
  1364. border:none;
  1365. border-radius:0px;
  1366. -moz-box-shadow:none;
  1367. -webkit-box-shadow:none;
  1368. box-shadow:none;
  1369. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1370. font-weight:700;
  1371. font-style:normal;
  1372. font-size:16px;
  1373. color:#FF0000;
  1374. }
  1375. #u658 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1227px;
  1379. top:1696px;
  1380. width:131px;
  1381. height:19px;
  1382. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1383. font-weight:700;
  1384. font-style:normal;
  1385. font-size:16px;
  1386. color:#FF0000;
  1387. }
  1388. #u658_text {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:0px;
  1392. top:0px;
  1393. width:131px;
  1394. word-wrap:break-word;
  1395. }
  1396. #u659_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:352px;
  1402. height:66px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:0px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. line-height:22px;
  1411. }
  1412. #u659 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:1227px;
  1416. top:1734px;
  1417. width:352px;
  1418. height:66px;
  1419. line-height:22px;
  1420. }
  1421. #u659_text {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:352px;
  1427. word-wrap:break-word;
  1428. }
  1429. #u660 {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:1227px;
  1433. top:1696px;
  1434. width:99px;
  1435. height:23px;
  1436. overflow:hidden;
  1437. background-image:url('../../resources/images/transparent.gif');
  1438. }
  1439. #u661_div {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:276px;
  1445. height:67px;
  1446. background:inherit;
  1447. background-color:rgba(255, 255, 0, 1);
  1448. box-sizing:border-box;
  1449. border-width:1px;
  1450. border-style:solid;
  1451. border-color:rgba(0, 0, 0, 1);
  1452. border-radius:10px;
  1453. -moz-box-shadow:none;
  1454. -webkit-box-shadow:none;
  1455. box-shadow:none;
  1456. text-align:left;
  1457. line-height:18px;
  1458. }
  1459. #u661 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:1227px;
  1463. top:1622px;
  1464. width:276px;
  1465. height:67px;
  1466. text-align:left;
  1467. line-height:18px;
  1468. }
  1469. #u661_text {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:2px;
  1473. top:6px;
  1474. width:272px;
  1475. word-wrap:break-word;
  1476. }
  1477. #u662_img {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:-4px;
  1481. top:-4px;
  1482. width:30px;
  1483. height:30px;
  1484. }
  1485. #u662 {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:343px;
  1489. top:437px;
  1490. width:20px;
  1491. height:20px;
  1492. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1493. font-weight:700;
  1494. font-style:normal;
  1495. font-size:14px;
  1496. color:#1E1E1E;
  1497. }
  1498. #u662_text {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:2px;
  1502. top:2px;
  1503. width:16px;
  1504. word-wrap:break-word;
  1505. }
  1506. #u663 {
  1507. position:fixed;
  1508. left:1458px;
  1509. top:62px;
  1510. }
  1511. #u663_state0 {
  1512. position:relative;
  1513. left:0px;
  1514. top:0px;
  1515. width:140px;
  1516. height:40px;
  1517. background-image:none;
  1518. }
  1519. #u663_state0_content {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:0px;
  1523. top:0px;
  1524. width:1px;
  1525. height:1px;
  1526. }
  1527. #u664_div {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:0px;
  1531. top:0px;
  1532. width:140px;
  1533. height:40px;
  1534. background:inherit;
  1535. background-color:rgba(20, 146, 138, 1);
  1536. border:none;
  1537. border-radius:5px;
  1538. -moz-box-shadow:none;
  1539. -webkit-box-shadow:none;
  1540. box-shadow:none;
  1541. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1542. font-weight:700;
  1543. font-style:normal;
  1544. font-size:16px;
  1545. }
  1546. #u664 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:140px;
  1552. height:40px;
  1553. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1554. font-weight:700;
  1555. font-style:normal;
  1556. font-size:16px;
  1557. }
  1558. #u664_text {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:2px;
  1562. top:10px;
  1563. width:136px;
  1564. word-wrap:break-word;
  1565. }
  1566. #u665 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:0px;
  1572. height:0px;
  1573. }
  1574. #u666_img {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:-4px;
  1578. top:-4px;
  1579. width:44px;
  1580. height:44px;
  1581. }
  1582. #u666 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:1187px;
  1586. top:500px;
  1587. width:34px;
  1588. height:34px;
  1589. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1590. font-weight:700;
  1591. font-style:normal;
  1592. font-size:26px;
  1593. }
  1594. #u666_text {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:2px;
  1598. top:1px;
  1599. width:30px;
  1600. word-wrap:break-word;
  1601. }
  1602. #u667_div {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:146px;
  1608. height:19px;
  1609. background:inherit;
  1610. background-color:rgba(255, 255, 255, 0);
  1611. border:none;
  1612. border-radius:0px;
  1613. -moz-box-shadow:none;
  1614. -webkit-box-shadow:none;
  1615. box-shadow:none;
  1616. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1617. font-weight:700;
  1618. font-style:normal;
  1619. font-size:16px;
  1620. }
  1621. #u667 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:1227px;
  1625. top:507px;
  1626. width:146px;
  1627. height:19px;
  1628. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1629. font-weight:700;
  1630. font-style:normal;
  1631. font-size:16px;
  1632. }
  1633. #u667_text {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:146px;
  1639. word-wrap:break-word;
  1640. }
  1641. #u668_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:352px;
  1647. height:25px;
  1648. background:inherit;
  1649. background-color:rgba(255, 255, 255, 0);
  1650. border:none;
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. line-height:22px;
  1656. }
  1657. #u668 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:1227px;
  1661. top:545px;
  1662. width:352px;
  1663. height:25px;
  1664. line-height:22px;
  1665. }
  1666. #u668_text {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:352px;
  1672. word-wrap:break-word;
  1673. }
  1674. #u669_img {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:-4px;
  1678. top:-4px;
  1679. width:30px;
  1680. height:30px;
  1681. }
  1682. #u669 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:282px;
  1686. top:437px;
  1687. width:20px;
  1688. height:20px;
  1689. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1690. font-weight:700;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. color:#1E1E1E;
  1694. }
  1695. #u669_text {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:2px;
  1699. top:2px;
  1700. width:16px;
  1701. word-wrap:break-word;
  1702. }
  1703. #u670 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:0px;
  1709. height:0px;
  1710. }
  1711. #u671_img {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:-4px;
  1715. top:-4px;
  1716. width:40px;
  1717. height:40px;
  1718. }
  1719. #u671 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:1187px;
  1723. top:390px;
  1724. width:30px;
  1725. height:30px;
  1726. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1727. font-weight:700;
  1728. font-style:normal;
  1729. font-size:18px;
  1730. color:#000000;
  1731. }
  1732. #u671_text {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:2px;
  1736. top:4px;
  1737. width:26px;
  1738. word-wrap:break-word;
  1739. }
  1740. #u672_div {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:131px;
  1746. height:19px;
  1747. background:inherit;
  1748. background-color:rgba(255, 255, 255, 0);
  1749. border:none;
  1750. border-radius:0px;
  1751. -moz-box-shadow:none;
  1752. -webkit-box-shadow:none;
  1753. box-shadow:none;
  1754. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1755. font-weight:700;
  1756. font-style:normal;
  1757. font-size:16px;
  1758. color:#FF0000;
  1759. }
  1760. #u672 {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:1227px;
  1764. top:397px;
  1765. width:131px;
  1766. height:19px;
  1767. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1768. font-weight:700;
  1769. font-style:normal;
  1770. font-size:16px;
  1771. color:#FF0000;
  1772. }
  1773. #u672_text {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:131px;
  1779. word-wrap:break-word;
  1780. }
  1781. #u673_div {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:352px;
  1787. height:44px;
  1788. background:inherit;
  1789. background-color:rgba(255, 255, 255, 0);
  1790. border:none;
  1791. border-radius:0px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. line-height:22px;
  1796. }
  1797. #u673 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:1227px;
  1801. top:435px;
  1802. width:352px;
  1803. height:44px;
  1804. line-height:22px;
  1805. }
  1806. #u673_text {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:352px;
  1812. word-wrap:break-word;
  1813. }
  1814. #u674 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:1233px;
  1818. top:397px;
  1819. width:88px;
  1820. height:23px;
  1821. overflow:hidden;
  1822. background-image:url('../../resources/images/transparent.gif');
  1823. }
  1824. #u675_div {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:276px;
  1830. height:67px;
  1831. background:inherit;
  1832. background-color:rgba(255, 255, 0, 1);
  1833. box-sizing:border-box;
  1834. border-width:1px;
  1835. border-style:solid;
  1836. border-color:rgba(0, 0, 0, 1);
  1837. border-radius:10px;
  1838. -moz-box-shadow:none;
  1839. -webkit-box-shadow:none;
  1840. box-shadow:none;
  1841. text-align:left;
  1842. line-height:18px;
  1843. }
  1844. #u675 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:1227px;
  1848. top:313px;
  1849. width:276px;
  1850. height:67px;
  1851. text-align:left;
  1852. line-height:18px;
  1853. }
  1854. #u675_text {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:2px;
  1858. top:16px;
  1859. width:272px;
  1860. word-wrap:break-word;
  1861. }
  1862. #u676_img {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:-4px;
  1866. top:-4px;
  1867. width:30px;
  1868. height:30px;
  1869. }
  1870. #u676 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:408px;
  1874. top:437px;
  1875. width:20px;
  1876. height:20px;
  1877. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1878. font-weight:700;
  1879. font-style:normal;
  1880. font-size:14px;
  1881. color:#1E1E1E;
  1882. }
  1883. #u676_text {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:2px;
  1887. top:2px;
  1888. width:16px;
  1889. word-wrap:break-word;
  1890. }
  1891. #u677 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:0px;
  1897. height:0px;
  1898. }
  1899. #u678_img {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:-4px;
  1903. top:-4px;
  1904. width:40px;
  1905. height:40px;
  1906. }
  1907. #u678 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:1187px;
  1911. top:664px;
  1912. width:30px;
  1913. height:30px;
  1914. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1915. font-weight:700;
  1916. font-style:normal;
  1917. font-size:18px;
  1918. color:#1E1E1E;
  1919. }
  1920. #u678_text {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:2px;
  1924. top:4px;
  1925. width:26px;
  1926. word-wrap:break-word;
  1927. }
  1928. #u679_div {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:107px;
  1934. height:19px;
  1935. background:inherit;
  1936. background-color:rgba(255, 255, 255, 0);
  1937. border:none;
  1938. border-radius:0px;
  1939. -moz-box-shadow:none;
  1940. -webkit-box-shadow:none;
  1941. box-shadow:none;
  1942. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1943. font-weight:700;
  1944. font-style:normal;
  1945. font-size:16px;
  1946. }
  1947. #u679 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:1227px;
  1951. top:671px;
  1952. width:107px;
  1953. height:19px;
  1954. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  1955. font-weight:700;
  1956. font-style:normal;
  1957. font-size:16px;
  1958. }
  1959. #u679_text {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:107px;
  1965. word-wrap:break-word;
  1966. }
  1967. #u680_div {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:352px;
  1973. height:28px;
  1974. background:inherit;
  1975. background-color:rgba(255, 255, 255, 0);
  1976. border:none;
  1977. border-radius:0px;
  1978. -moz-box-shadow:none;
  1979. -webkit-box-shadow:none;
  1980. box-shadow:none;
  1981. line-height:22px;
  1982. }
  1983. #u680 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:1227px;
  1987. top:709px;
  1988. width:352px;
  1989. height:28px;
  1990. line-height:22px;
  1991. }
  1992. #u680_text {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:352px;
  1998. word-wrap:break-word;
  1999. }
  2000. #u681_img {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:-4px;
  2004. top:-4px;
  2005. width:30px;
  2006. height:30px;
  2007. }
  2008. #u681 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:466px;
  2012. top:437px;
  2013. width:20px;
  2014. height:20px;
  2015. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2016. font-weight:700;
  2017. font-style:normal;
  2018. font-size:14px;
  2019. color:#1E1E1E;
  2020. }
  2021. #u681_text {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:2px;
  2025. top:2px;
  2026. width:16px;
  2027. word-wrap:break-word;
  2028. }
  2029. #u682_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:-4px;
  2033. top:-4px;
  2034. width:30px;
  2035. height:30px;
  2036. }
  2037. #u682 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:529px;
  2041. top:437px;
  2042. width:20px;
  2043. height:20px;
  2044. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2045. font-weight:700;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. color:#1E1E1E;
  2049. }
  2050. #u682_text {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:2px;
  2054. top:2px;
  2055. width:16px;
  2056. word-wrap:break-word;
  2057. }
  2058. #u683_img {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:-4px;
  2062. top:-4px;
  2063. width:30px;
  2064. height:30px;
  2065. }
  2066. #u683 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:590px;
  2070. top:437px;
  2071. width:20px;
  2072. height:20px;
  2073. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2074. font-weight:700;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. color:#1E1E1E;
  2078. }
  2079. #u683_text {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:2px;
  2083. top:2px;
  2084. width:16px;
  2085. word-wrap:break-word;
  2086. }
  2087. #u684 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:0px;
  2093. height:0px;
  2094. }
  2095. #u685_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:-4px;
  2099. top:-4px;
  2100. width:40px;
  2101. height:40px;
  2102. }
  2103. #u685 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:1187px;
  2107. top:747px;
  2108. width:30px;
  2109. height:30px;
  2110. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2111. font-weight:700;
  2112. font-style:normal;
  2113. font-size:18px;
  2114. color:#1E1E1E;
  2115. }
  2116. #u685_text {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:2px;
  2120. top:4px;
  2121. width:26px;
  2122. word-wrap:break-word;
  2123. }
  2124. #u686_div {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:121px;
  2130. height:19px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 0);
  2133. border:none;
  2134. border-radius:0px;
  2135. -moz-box-shadow:none;
  2136. -webkit-box-shadow:none;
  2137. box-shadow:none;
  2138. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2139. font-weight:700;
  2140. font-style:normal;
  2141. font-size:16px;
  2142. }
  2143. #u686 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:1227px;
  2147. top:754px;
  2148. width:121px;
  2149. height:19px;
  2150. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2151. font-weight:700;
  2152. font-style:normal;
  2153. font-size:16px;
  2154. }
  2155. #u686_text {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:121px;
  2161. word-wrap:break-word;
  2162. }
  2163. #u687_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:352px;
  2169. height:30px;
  2170. background:inherit;
  2171. background-color:rgba(255, 255, 255, 0);
  2172. border:none;
  2173. border-radius:0px;
  2174. -moz-box-shadow:none;
  2175. -webkit-box-shadow:none;
  2176. box-shadow:none;
  2177. line-height:22px;
  2178. }
  2179. #u687 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:1227px;
  2183. top:792px;
  2184. width:352px;
  2185. height:30px;
  2186. line-height:22px;
  2187. }
  2188. #u687_text {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:352px;
  2194. word-wrap:break-word;
  2195. }
  2196. #u688 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:0px;
  2202. height:0px;
  2203. }
  2204. #u689_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:-4px;
  2208. top:-4px;
  2209. width:44px;
  2210. height:44px;
  2211. }
  2212. #u689 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:1187px;
  2216. top:822px;
  2217. width:34px;
  2218. height:34px;
  2219. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2220. font-weight:700;
  2221. font-style:normal;
  2222. font-size:26px;
  2223. }
  2224. #u689_text {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:2px;
  2228. top:1px;
  2229. width:30px;
  2230. word-wrap:break-word;
  2231. }
  2232. #u690_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:107px;
  2238. height:19px;
  2239. background:inherit;
  2240. background-color:rgba(255, 255, 255, 0);
  2241. border:none;
  2242. border-radius:0px;
  2243. -moz-box-shadow:none;
  2244. -webkit-box-shadow:none;
  2245. box-shadow:none;
  2246. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2247. font-weight:700;
  2248. font-style:normal;
  2249. font-size:16px;
  2250. color:#1E1E1E;
  2251. }
  2252. #u690 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:1227px;
  2256. top:829px;
  2257. width:107px;
  2258. height:19px;
  2259. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2260. font-weight:700;
  2261. font-style:normal;
  2262. font-size:16px;
  2263. color:#1E1E1E;
  2264. }
  2265. #u690_text {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:107px;
  2271. word-wrap:break-word;
  2272. }
  2273. #u691_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:352px;
  2279. height:66px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-radius:0px;
  2284. -moz-box-shadow:none;
  2285. -webkit-box-shadow:none;
  2286. box-shadow:none;
  2287. color:#000000;
  2288. line-height:22px;
  2289. }
  2290. #u691 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:1227px;
  2294. top:867px;
  2295. width:352px;
  2296. height:66px;
  2297. color:#000000;
  2298. line-height:22px;
  2299. }
  2300. #u691_text {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:352px;
  2306. word-wrap:break-word;
  2307. }
  2308. #u692 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:0px;
  2314. height:0px;
  2315. }
  2316. #u693_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:-4px;
  2320. top:-4px;
  2321. width:40px;
  2322. height:40px;
  2323. }
  2324. #u693 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:1187px;
  2328. top:938px;
  2329. width:30px;
  2330. height:30px;
  2331. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2332. font-weight:700;
  2333. font-style:normal;
  2334. font-size:18px;
  2335. color:#1E1E1E;
  2336. }
  2337. #u693_text {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:2px;
  2341. top:4px;
  2342. width:26px;
  2343. word-wrap:break-word;
  2344. }
  2345. #u694_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:180px;
  2351. height:19px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 0);
  2354. border:none;
  2355. border-radius:0px;
  2356. -moz-box-shadow:none;
  2357. -webkit-box-shadow:none;
  2358. box-shadow:none;
  2359. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2360. font-weight:700;
  2361. font-style:normal;
  2362. font-size:16px;
  2363. color:#1E1E1E;
  2364. }
  2365. #u694 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:1227px;
  2369. top:945px;
  2370. width:180px;
  2371. height:19px;
  2372. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2373. font-weight:700;
  2374. font-style:normal;
  2375. font-size:16px;
  2376. color:#1E1E1E;
  2377. }
  2378. #u694_text {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:180px;
  2384. word-wrap:break-word;
  2385. }
  2386. #u695_div {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:352px;
  2392. height:47px;
  2393. background:inherit;
  2394. background-color:rgba(255, 255, 255, 0);
  2395. border:none;
  2396. border-radius:0px;
  2397. -moz-box-shadow:none;
  2398. -webkit-box-shadow:none;
  2399. box-shadow:none;
  2400. line-height:22px;
  2401. }
  2402. #u695 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:1227px;
  2406. top:983px;
  2407. width:352px;
  2408. height:47px;
  2409. line-height:22px;
  2410. }
  2411. #u695_text {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:352px;
  2417. word-wrap:break-word;
  2418. }
  2419. #u696_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:1155px;
  2425. height:583px;
  2426. }
  2427. #u696 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:22px;
  2431. top:928px;
  2432. width:1155px;
  2433. height:583px;
  2434. }
  2435. #u696_text {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:0px;
  2441. visibility:hidden;
  2442. word-wrap:break-word;
  2443. }
  2444. #u697_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:91px;
  2450. height:22px;
  2451. background:inherit;
  2452. background-color:rgba(255, 255, 255, 0);
  2453. border:none;
  2454. border-radius:0px;
  2455. -moz-box-shadow:none;
  2456. -webkit-box-shadow:none;
  2457. box-shadow:none;
  2458. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2459. font-weight:700;
  2460. font-style:normal;
  2461. font-size:18px;
  2462. }
  2463. #u697 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:22px;
  2467. top:901px;
  2468. width:91px;
  2469. height:22px;
  2470. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2471. font-weight:700;
  2472. font-style:normal;
  2473. font-size:18px;
  2474. }
  2475. #u697_text {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:91px;
  2481. white-space:nowrap;
  2482. }
  2483. #u698_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:1155px;
  2489. height:583px;
  2490. }
  2491. #u698 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:22px;
  2495. top:1575px;
  2496. width:1155px;
  2497. height:583px;
  2498. }
  2499. #u698_text {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:0px;
  2505. visibility:hidden;
  2506. word-wrap:break-word;
  2507. }
  2508. #u699_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:91px;
  2514. height:22px;
  2515. background:inherit;
  2516. background-color:rgba(255, 255, 255, 0);
  2517. border:none;
  2518. border-radius:0px;
  2519. -moz-box-shadow:none;
  2520. -webkit-box-shadow:none;
  2521. box-shadow:none;
  2522. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2523. font-weight:700;
  2524. font-style:normal;
  2525. font-size:18px;
  2526. }
  2527. #u699 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:22px;
  2531. top:1543px;
  2532. width:91px;
  2533. height:22px;
  2534. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2535. font-weight:700;
  2536. font-style:normal;
  2537. font-size:18px;
  2538. }
  2539. #u699_text {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:91px;
  2545. white-space:nowrap;
  2546. }
  2547. #u700_img {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:1155px;
  2553. height:583px;
  2554. }
  2555. #u700 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:22px;
  2559. top:2232px;
  2560. width:1155px;
  2561. height:583px;
  2562. }
  2563. #u700_text {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:0px;
  2569. visibility:hidden;
  2570. word-wrap:break-word;
  2571. }
  2572. #u701_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:91px;
  2578. height:22px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 0);
  2581. border:none;
  2582. border-radius:0px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2587. font-weight:700;
  2588. font-style:normal;
  2589. font-size:18px;
  2590. }
  2591. #u701 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:22px;
  2595. top:2205px;
  2596. width:91px;
  2597. height:22px;
  2598. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2599. font-weight:700;
  2600. font-style:normal;
  2601. font-size:18px;
  2602. }
  2603. #u701_text {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:91px;
  2609. white-space:nowrap;
  2610. }
  2611. #u702_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:1155px;
  2617. height:583px;
  2618. }
  2619. #u702 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:22px;
  2623. top:2888px;
  2624. width:1155px;
  2625. height:583px;
  2626. }
  2627. #u702_text {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:0px;
  2633. visibility:hidden;
  2634. word-wrap:break-word;
  2635. }
  2636. #u703_div {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:91px;
  2642. height:22px;
  2643. background:inherit;
  2644. background-color:rgba(255, 255, 255, 0);
  2645. border:none;
  2646. border-radius:0px;
  2647. -moz-box-shadow:none;
  2648. -webkit-box-shadow:none;
  2649. box-shadow:none;
  2650. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2651. font-weight:700;
  2652. font-style:normal;
  2653. font-size:18px;
  2654. }
  2655. #u703 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:22px;
  2659. top:2860px;
  2660. width:91px;
  2661. height:22px;
  2662. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2663. font-weight:700;
  2664. font-style:normal;
  2665. font-size:18px;
  2666. }
  2667. #u703_text {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:91px;
  2673. white-space:nowrap;
  2674. }
  2675. #u704_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:1155px;
  2681. height:583px;
  2682. }
  2683. #u704 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:22px;
  2687. top:3536px;
  2688. width:1155px;
  2689. height:583px;
  2690. }
  2691. #u704_text {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:0px;
  2697. visibility:hidden;
  2698. word-wrap:break-word;
  2699. }
  2700. #u705_div {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:55px;
  2706. height:22px;
  2707. background:inherit;
  2708. background-color:rgba(255, 255, 255, 0);
  2709. border:none;
  2710. border-radius:0px;
  2711. -moz-box-shadow:none;
  2712. -webkit-box-shadow:none;
  2713. box-shadow:none;
  2714. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2715. font-weight:700;
  2716. font-style:normal;
  2717. font-size:18px;
  2718. }
  2719. #u705 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:22px;
  2723. top:3510px;
  2724. width:55px;
  2725. height:22px;
  2726. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2727. font-weight:700;
  2728. font-style:normal;
  2729. font-size:18px;
  2730. }
  2731. #u705_text {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:55px;
  2737. white-space:nowrap;
  2738. }
  2739. #u706_img {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:1155px;
  2745. height:583px;
  2746. }
  2747. #u706 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:22px;
  2751. top:4190px;
  2752. width:1155px;
  2753. height:583px;
  2754. }
  2755. #u706_text {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:0px;
  2760. width:0px;
  2761. visibility:hidden;
  2762. word-wrap:break-word;
  2763. }
  2764. #u707_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:91px;
  2770. height:22px;
  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:18px;
  2782. }
  2783. #u707 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:22px;
  2787. top:4163px;
  2788. width:91px;
  2789. height:22px;
  2790. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2791. font-weight:700;
  2792. font-style:normal;
  2793. font-size:18px;
  2794. }
  2795. #u707_text {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:91px;
  2801. white-space:nowrap;
  2802. }
  2803. #u708_img {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:1155px;
  2809. height:583px;
  2810. }
  2811. #u708 {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:22px;
  2815. top:4871px;
  2816. width:1155px;
  2817. height:583px;
  2818. }
  2819. #u708_text {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:0px;
  2825. visibility:hidden;
  2826. word-wrap:break-word;
  2827. }
  2828. #u709_div {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:91px;
  2834. height:22px;
  2835. background:inherit;
  2836. background-color:rgba(255, 255, 255, 0);
  2837. border:none;
  2838. border-radius:0px;
  2839. -moz-box-shadow:none;
  2840. -webkit-box-shadow:none;
  2841. box-shadow:none;
  2842. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2843. font-weight:700;
  2844. font-style:normal;
  2845. font-size:18px;
  2846. }
  2847. #u709 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:22px;
  2851. top:4845px;
  2852. width:91px;
  2853. height:22px;
  2854. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2855. font-weight:700;
  2856. font-style:normal;
  2857. font-size:18px;
  2858. }
  2859. #u709_text {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:91px;
  2865. white-space:nowrap;
  2866. }
  2867. #u710_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:1155px;
  2873. height:583px;
  2874. }
  2875. #u710 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:22px;
  2879. top:5538px;
  2880. width:1155px;
  2881. height:583px;
  2882. }
  2883. #u710_text {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:0px;
  2889. visibility:hidden;
  2890. word-wrap:break-word;
  2891. }
  2892. #u711_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:91px;
  2898. height:22px;
  2899. background:inherit;
  2900. background-color:rgba(255, 255, 255, 0);
  2901. border:none;
  2902. border-radius:0px;
  2903. -moz-box-shadow:none;
  2904. -webkit-box-shadow:none;
  2905. box-shadow:none;
  2906. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2907. font-weight:700;
  2908. font-style:normal;
  2909. font-size:18px;
  2910. }
  2911. #u711 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:22px;
  2915. top:5511px;
  2916. width:91px;
  2917. height:22px;
  2918. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2919. font-weight:700;
  2920. font-style:normal;
  2921. font-size:18px;
  2922. }
  2923. #u711_text {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:91px;
  2929. white-space:nowrap;
  2930. }
  2931. #u712_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:-4px;
  2935. top:-4px;
  2936. width:30px;
  2937. height:30px;
  2938. }
  2939. #u712 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:953px;
  2943. top:5827px;
  2944. width:20px;
  2945. height:20px;
  2946. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2947. font-weight:700;
  2948. font-style:normal;
  2949. font-size:14px;
  2950. color:#1E1E1E;
  2951. }
  2952. #u712_text {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:2px;
  2956. top:2px;
  2957. width:16px;
  2958. word-wrap:break-word;
  2959. }
  2960. #u713_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:-4px;
  2964. top:-4px;
  2965. width:30px;
  2966. height:30px;
  2967. }
  2968. #u713 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:1102px;
  2972. top:5827px;
  2973. width:20px;
  2974. height:20px;
  2975. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  2976. font-weight:700;
  2977. font-style:normal;
  2978. font-size:14px;
  2979. color:#1E1E1E;
  2980. }
  2981. #u713_text {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:2px;
  2985. top:2px;
  2986. width:16px;
  2987. word-wrap:break-word;
  2988. }
  2989. #u714_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:-4px;
  2993. top:-4px;
  2994. width:30px;
  2995. height:30px;
  2996. }
  2997. #u714 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:1008px;
  3001. top:5827px;
  3002. width:20px;
  3003. height:20px;
  3004. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3005. font-weight:700;
  3006. font-style:normal;
  3007. font-size:14px;
  3008. color:#1E1E1E;
  3009. }
  3010. #u714_text {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:2px;
  3014. top:2px;
  3015. width:16px;
  3016. word-wrap:break-word;
  3017. }
  3018. #u715_img {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:-4px;
  3022. top:-4px;
  3023. width:30px;
  3024. height:30px;
  3025. }
  3026. #u715 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:1051px;
  3030. top:5827px;
  3031. width:20px;
  3032. height:20px;
  3033. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3034. font-weight:700;
  3035. font-style:normal;
  3036. font-size:14px;
  3037. color:#1E1E1E;
  3038. }
  3039. #u715_text {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:2px;
  3043. top:2px;
  3044. width:16px;
  3045. word-wrap:break-word;
  3046. }
  3047. #u716 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:0px;
  3053. height:0px;
  3054. }
  3055. #u717_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:-4px;
  3059. top:-4px;
  3060. width:40px;
  3061. height:40px;
  3062. }
  3063. #u717 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:1187px;
  3067. top:5538px;
  3068. width:30px;
  3069. height:30px;
  3070. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3071. font-weight:700;
  3072. font-style:normal;
  3073. font-size:18px;
  3074. color:#1E1E1E;
  3075. }
  3076. #u717_text {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:2px;
  3080. top:4px;
  3081. width:26px;
  3082. word-wrap:break-word;
  3083. }
  3084. #u718_div {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:131px;
  3090. height:19px;
  3091. background:inherit;
  3092. background-color:rgba(255, 255, 255, 0);
  3093. border:none;
  3094. border-radius:0px;
  3095. -moz-box-shadow:none;
  3096. -webkit-box-shadow:none;
  3097. box-shadow:none;
  3098. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3099. font-weight:700;
  3100. font-style:normal;
  3101. font-size:16px;
  3102. }
  3103. #u718 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:1227px;
  3107. top:5545px;
  3108. width:131px;
  3109. height:19px;
  3110. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3111. font-weight:700;
  3112. font-style:normal;
  3113. font-size:16px;
  3114. }
  3115. #u718_text {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:131px;
  3121. word-wrap:break-word;
  3122. }
  3123. #u719_div {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:352px;
  3129. height:22px;
  3130. background:inherit;
  3131. background-color:rgba(255, 255, 255, 0);
  3132. border:none;
  3133. border-radius:0px;
  3134. -moz-box-shadow:none;
  3135. -webkit-box-shadow:none;
  3136. box-shadow:none;
  3137. line-height:22px;
  3138. }
  3139. #u719 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:1227px;
  3143. top:5583px;
  3144. width:352px;
  3145. height:22px;
  3146. line-height:22px;
  3147. }
  3148. #u719_text {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:352px;
  3154. word-wrap:break-word;
  3155. }
  3156. #u720 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:0px;
  3162. height:0px;
  3163. }
  3164. #u721_div {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:131px;
  3170. height:19px;
  3171. background:inherit;
  3172. background-color:rgba(255, 255, 255, 0);
  3173. border:none;
  3174. border-radius:0px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3179. font-weight:700;
  3180. font-style:normal;
  3181. font-size:16px;
  3182. color:#FF0000;
  3183. }
  3184. #u721 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:1227px;
  3188. top:5636px;
  3189. width:131px;
  3190. height:19px;
  3191. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3192. font-weight:700;
  3193. font-style:normal;
  3194. font-size:16px;
  3195. color:#FF0000;
  3196. }
  3197. #u721_text {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:131px;
  3203. word-wrap:break-word;
  3204. }
  3205. #u722_div {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:352px;
  3211. height:88px;
  3212. background:inherit;
  3213. background-color:rgba(255, 255, 255, 0);
  3214. border:none;
  3215. border-radius:0px;
  3216. -moz-box-shadow:none;
  3217. -webkit-box-shadow:none;
  3218. box-shadow:none;
  3219. line-height:22px;
  3220. }
  3221. #u722 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:1227px;
  3225. top:5674px;
  3226. width:352px;
  3227. height:88px;
  3228. line-height:22px;
  3229. }
  3230. #u722_text {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:352px;
  3236. word-wrap:break-word;
  3237. }
  3238. #u723_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:-4px;
  3242. top:-4px;
  3243. width:44px;
  3244. height:44px;
  3245. }
  3246. #u723 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:1187px;
  3250. top:5629px;
  3251. width:34px;
  3252. height:34px;
  3253. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3254. font-weight:700;
  3255. font-style:normal;
  3256. font-size:26px;
  3257. }
  3258. #u723_text {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:2px;
  3262. top:1px;
  3263. width:30px;
  3264. word-wrap:break-word;
  3265. }
  3266. #u724 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:0px;
  3272. height:0px;
  3273. }
  3274. #u725_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:-4px;
  3278. top:-4px;
  3279. width:44px;
  3280. height:44px;
  3281. }
  3282. #u725 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:1187px;
  3286. top:5766px;
  3287. width:34px;
  3288. height:34px;
  3289. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3290. font-weight:700;
  3291. font-style:normal;
  3292. font-size:26px;
  3293. }
  3294. #u725_text {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:2px;
  3298. top:1px;
  3299. width:30px;
  3300. word-wrap:break-word;
  3301. }
  3302. #u726_div {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:131px;
  3308. height:19px;
  3309. background:inherit;
  3310. background-color:rgba(255, 255, 255, 0);
  3311. border:none;
  3312. border-radius:0px;
  3313. -moz-box-shadow:none;
  3314. -webkit-box-shadow:none;
  3315. box-shadow:none;
  3316. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3317. font-weight:700;
  3318. font-style:normal;
  3319. font-size:16px;
  3320. color:#FF0000;
  3321. }
  3322. #u726 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:1227px;
  3326. top:5773px;
  3327. width:131px;
  3328. height:19px;
  3329. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3330. font-weight:700;
  3331. font-style:normal;
  3332. font-size:16px;
  3333. color:#FF0000;
  3334. }
  3335. #u726_text {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:131px;
  3341. word-wrap:break-word;
  3342. }
  3343. #u727_div {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:352px;
  3349. height:66px;
  3350. background:inherit;
  3351. background-color:rgba(255, 255, 255, 0);
  3352. border:none;
  3353. border-radius:0px;
  3354. -moz-box-shadow:none;
  3355. -webkit-box-shadow:none;
  3356. box-shadow:none;
  3357. line-height:22px;
  3358. }
  3359. #u727 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:1227px;
  3363. top:5811px;
  3364. width:352px;
  3365. height:66px;
  3366. line-height:22px;
  3367. }
  3368. #u727_text {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:352px;
  3374. word-wrap:break-word;
  3375. }
  3376. #u728 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:1227px;
  3380. top:5632px;
  3381. width:95px;
  3382. height:31px;
  3383. overflow:hidden;
  3384. background-image:url('../../resources/images/transparent.gif');
  3385. }
  3386. #u729_div {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:288px;
  3392. height:103px;
  3393. background:inherit;
  3394. background-color:rgba(255, 255, 0, 1);
  3395. box-sizing:border-box;
  3396. border-width:1px;
  3397. border-style:solid;
  3398. border-color:rgba(0, 0, 0, 1);
  3399. border-radius:10px;
  3400. -moz-box-shadow:none;
  3401. -webkit-box-shadow:none;
  3402. box-shadow:none;
  3403. text-align:left;
  3404. line-height:18px;
  3405. }
  3406. #u729 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:1227px;
  3410. top:5516px;
  3411. width:288px;
  3412. height:103px;
  3413. text-align:left;
  3414. line-height:18px;
  3415. }
  3416. #u729_text {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:2px;
  3420. top:6px;
  3421. width:284px;
  3422. word-wrap:break-word;
  3423. }
  3424. #u730 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:1227px;
  3428. top:5773px;
  3429. width:63px;
  3430. height:23px;
  3431. overflow:hidden;
  3432. background-image:url('../../resources/images/transparent.gif');
  3433. }
  3434. #u731_div {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:326px;
  3440. height:88px;
  3441. background:inherit;
  3442. background-color:rgba(255, 255, 0, 1);
  3443. box-sizing:border-box;
  3444. border-width:1px;
  3445. border-style:solid;
  3446. border-color:rgba(0, 0, 0, 1);
  3447. border-radius:10px;
  3448. -moz-box-shadow:none;
  3449. -webkit-box-shadow:none;
  3450. box-shadow:none;
  3451. text-align:left;
  3452. line-height:18px;
  3453. }
  3454. #u731 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:1227px;
  3458. top:5678px;
  3459. width:326px;
  3460. height:88px;
  3461. text-align:left;
  3462. line-height:18px;
  3463. }
  3464. #u731_text {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:2px;
  3468. top:17px;
  3469. width:322px;
  3470. word-wrap:break-word;
  3471. }
  3472. #u732 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:0px;
  3477. width:0px;
  3478. height:0px;
  3479. }
  3480. #u733_img {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:-4px;
  3484. top:-4px;
  3485. width:44px;
  3486. height:44px;
  3487. }
  3488. #u733 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:1187px;
  3492. top:5883px;
  3493. width:34px;
  3494. height:34px;
  3495. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3496. font-weight:700;
  3497. font-style:normal;
  3498. font-size:26px;
  3499. }
  3500. #u733_text {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:2px;
  3504. top:1px;
  3505. width:30px;
  3506. word-wrap:break-word;
  3507. }
  3508. #u734_div {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:180px;
  3514. height:19px;
  3515. background:inherit;
  3516. background-color:rgba(255, 255, 255, 0);
  3517. border:none;
  3518. border-radius:0px;
  3519. -moz-box-shadow:none;
  3520. -webkit-box-shadow:none;
  3521. box-shadow:none;
  3522. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3523. font-weight:700;
  3524. font-style:normal;
  3525. font-size:16px;
  3526. color:#FF0000;
  3527. }
  3528. #u734 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:1227px;
  3532. top:5890px;
  3533. width:180px;
  3534. height:19px;
  3535. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3536. font-weight:700;
  3537. font-style:normal;
  3538. font-size:16px;
  3539. color:#FF0000;
  3540. }
  3541. #u734_text {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:180px;
  3547. word-wrap:break-word;
  3548. }
  3549. #u735_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:352px;
  3555. height:34px;
  3556. background:inherit;
  3557. background-color:rgba(255, 255, 255, 0);
  3558. border:none;
  3559. border-radius:0px;
  3560. -moz-box-shadow:none;
  3561. -webkit-box-shadow:none;
  3562. box-shadow:none;
  3563. line-height:22px;
  3564. }
  3565. #u735 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:1227px;
  3569. top:5928px;
  3570. width:352px;
  3571. height:34px;
  3572. line-height:22px;
  3573. }
  3574. #u735_text {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:352px;
  3580. word-wrap:break-word;
  3581. }
  3582. #u736 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:1227px;
  3586. top:5890px;
  3587. width:95px;
  3588. height:23px;
  3589. overflow:hidden;
  3590. background-image:url('../../resources/images/transparent.gif');
  3591. }
  3592. #u737_div {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:232px;
  3598. height:198px;
  3599. background:inherit;
  3600. background-color:rgba(255, 255, 0, 1);
  3601. box-sizing:border-box;
  3602. border-width:1px;
  3603. border-style:solid;
  3604. border-color:rgba(0, 0, 0, 1);
  3605. border-radius:10px;
  3606. -moz-box-shadow:none;
  3607. -webkit-box-shadow:none;
  3608. box-shadow:none;
  3609. text-align:left;
  3610. line-height:18px;
  3611. }
  3612. #u737 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:1227px;
  3616. top:5682px;
  3617. width:232px;
  3618. height:198px;
  3619. text-align:left;
  3620. line-height:18px;
  3621. }
  3622. #u737_text {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:2px;
  3626. top:9px;
  3627. width:228px;
  3628. word-wrap:break-word;
  3629. }
  3630. #u738 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:1227px;
  3634. top:1208px;
  3635. width:95px;
  3636. height:23px;
  3637. overflow:hidden;
  3638. background-image:url('../../resources/images/transparent.gif');
  3639. }
  3640. #u739_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:288px;
  3646. height:103px;
  3647. background:inherit;
  3648. background-color:rgba(255, 255, 0, 1);
  3649. box-sizing:border-box;
  3650. border-width:1px;
  3651. border-style:solid;
  3652. border-color:rgba(0, 0, 0, 1);
  3653. border-radius:10px;
  3654. -moz-box-shadow:none;
  3655. -webkit-box-shadow:none;
  3656. box-shadow:none;
  3657. text-align:left;
  3658. line-height:18px;
  3659. }
  3660. #u739 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:1227px;
  3664. top:1085px;
  3665. width:288px;
  3666. height:103px;
  3667. text-align:left;
  3668. line-height:18px;
  3669. }
  3670. #u739_text {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:2px;
  3674. top:6px;
  3675. width:284px;
  3676. word-wrap:break-word;
  3677. }
  3678. #u740 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:1231px;
  3682. top:1610px;
  3683. width:95px;
  3684. height:23px;
  3685. overflow:hidden;
  3686. background-image:url('../../resources/images/transparent.gif');
  3687. }
  3688. #u741_div {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:246px;
  3694. height:225px;
  3695. background:inherit;
  3696. background-color:rgba(255, 255, 0, 1);
  3697. box-sizing:border-box;
  3698. border-width:1px;
  3699. border-style:solid;
  3700. border-color:rgba(0, 0, 0, 1);
  3701. border-radius:10px;
  3702. -moz-box-shadow:none;
  3703. -webkit-box-shadow:none;
  3704. box-shadow:none;
  3705. text-align:left;
  3706. line-height:18px;
  3707. }
  3708. #u741 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:1232px;
  3712. top:1375px;
  3713. width:246px;
  3714. height:225px;
  3715. text-align:left;
  3716. line-height:18px;
  3717. }
  3718. #u741_text {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:2px;
  3722. top:4px;
  3723. width:242px;
  3724. word-wrap:break-word;
  3725. }
  3726. #u742_div {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:83px;
  3732. height:40px;
  3733. background:inherit;
  3734. background-color:rgba(20, 146, 138, 1);
  3735. border:none;
  3736. border-radius:5px;
  3737. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  3738. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  3739. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.349019607843137);
  3740. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3741. font-weight:700;
  3742. font-style:normal;
  3743. }
  3744. #u742 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:140px;
  3748. top:9px;
  3749. width:83px;
  3750. height:40px;
  3751. font-family:'Arial Negreta', 'Arial Normal', 'Arial';
  3752. font-weight:700;
  3753. font-style:normal;
  3754. }
  3755. #u742_text {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:2px;
  3759. top:12px;
  3760. width:79px;
  3761. word-wrap:break-word;
  3762. }