styles.css 51 KB

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