styles.css 61 KB

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