
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7658ff841f1d8667ac041b53.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fe4961412cae5568f8b3129a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a4f942dc4fc6a54902ccf367.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0175d0d188f3d61ae0589a5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.819824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012094px;}
.ls0{letter-spacing:0.179374px;}
.ls3{letter-spacing:2.879391px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.060786px;}
.ws1{word-spacing:-18.000676px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-2.162401px;}
._0{margin-left:-1.023093px;}
._1{width:1.041508px;}
._7{width:2.426154px;}
._8{width:3.448535px;}
._f{width:4.844995px;}
._1a{width:6.680968px;}
._19{width:7.852944px;}
._3{width:8.859145px;}
._4{width:10.073909px;}
._17{width:11.166044px;}
._6{width:12.241022px;}
._16{width:13.933930px;}
._13{width:15.663682px;}
._c{width:16.994326px;}
._18{width:19.343570px;}
._12{width:20.474644px;}
._b{width:21.721753px;}
._2{width:23.064491px;}
._5{width:24.274474px;}
._d{width:26.139232px;}
._e{width:27.256963px;}
._a{width:28.565385px;}
._14{width:30.126944px;}
._9{width:31.825195px;}
._21{width:33.045866px;}
._1d{width:34.103969px;}
._1c{width:35.534741px;}
._10{width:36.987452px;}
._11{width:38.296157px;}
._20{width:39.866435px;}
._1b{width:41.102575px;}
._1e{width:42.548254px;}
._1f{width:44.185754px;}
._22{width:49.154221px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.241800px;}
.fs1{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.fs6{font-size:74.882700px;}
.fs5{font-size:77.763154px;}
.fs7{font-size:81.363150px;}
.fs2{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y3f{bottom:2.879997px;}
.y3b{bottom:2.879998px;}
.y3d{bottom:3.239971px;}
.y39{bottom:3.240006px;}
.y11{bottom:3.959953px;}
.y17a{bottom:3.959954px;}
.y9{bottom:3.959988px;}
.yb{bottom:3.960004px;}
.y1b2{bottom:3.960006px;}
.yd{bottom:3.960021px;}
.y26{bottom:3.960022px;}
.y1c{bottom:4.319961px;}
.y18{bottom:4.319962px;}
.y5e{bottom:4.319996px;}
.y63{bottom:4.319997px;}
.ye6{bottom:4.320012px;}
.y185{bottom:4.320014px;}
.y80{bottom:4.320029px;}
.y16{bottom:4.320030px;}
.y13e{bottom:4.320099px;}
.ycc{bottom:4.500000px;}
.y7{bottom:4.680003px;}
.y5{bottom:4.680004px;}
.y2{bottom:60.120072px;}
.y35{bottom:65.340088px;}
.y34{bottom:85.140060px;}
.y4a{bottom:89.460022px;}
.y13d{bottom:93.240005px;}
.y14e{bottom:98.100083px;}
.y176{bottom:99.720016px;}
.y14d{bottom:102.420043px;}
.y17e{bottom:104.040115px;}
.y1b0{bottom:105.480011px;}
.y33{bottom:105.840088px;}
.yb9{bottom:111.240074px;}
.y103{bottom:113.940033px;}
.y87{bottom:115.380066px;}
.ybf{bottom:115.560036px;}
.y95{bottom:119.700096px;}
.y175{bottom:120.420043px;}
.y13c{bottom:124.200096px;}
.y32{bottom:126.540047px;}
.y144{bottom:128.520058px;}
.y11b{bottom:129.240074px;}
.y11e{bottom:133.560036px;}
.y1af{bottom:134.640060px;}
.yb8{bottom:142.200096px;}
.y102{bottom:144.900055px;}
.y86{bottom:146.340088px;}
.y134{bottom:146.520058px;}
.y31{bottom:147.240074px;}
.ydd{bottom:149.580093px;}
.ye4{bottom:153.900055px;}
.y174{bottom:154.440033px;}
.y13b{bottom:155.340088px;}
.y1ae{bottom:157.320099px;}
.y15b{bottom:157.860077px;}
.y11a{bottom:160.200096px;}
.y1ad{bottom:161.640060px;}
.y126{bottom:164.520058px;}
.y30{bottom:167.940033px;}
.yb7{bottom:173.340088px;}
.y101{bottom:176.040047px;}
.y146{bottom:177.300041px;}
.y85{bottom:177.480079px;}
.ybe{bottom:177.660049px;}
.y1ac{bottom:178.020058px;}
.y1be{bottom:178.380066px;}
.y10d{bottom:180.360077px;}
.ydc{bottom:180.720085px;}
.y8d{bottom:181.800041px;}
.y173{bottom:184.140060px;}
.y15a{bottom:184.680039px;}
.ye1{bottom:185.040047px;}
.y13a{bottom:186.300041px;}
.y2f{bottom:188.640060px;}
.y49{bottom:189.000068px;}
.y119{bottom:191.340088px;}
.y48{bottom:192.960091px;}
.y118{bottom:195.660049px;}
.y17d{bottom:200.520058px;}
.y172{bottom:200.880066px;}
.yb6{bottom:204.300041px;}
.y171{bottom:204.840088px;}
.y100{bottom:207.000068px;}
.y84{bottom:208.440033px;}
.y12f{bottom:208.620072px;}
.y2e{bottom:209.340088px;}
.ydb{bottom:211.680039px;}
.y1ab{bottom:212.040047px;}
.y159{bottom:215.640060px;}
.yda{bottom:216.000068px;}
.y139{bottom:217.440033px;}
.y170{bottom:221.220085px;}
.y140{bottom:221.760064px;}
.y117{bottom:222.300041px;}
.y145{bottom:226.620072px;}
.y2d{bottom:230.040047px;}
.y5a{bottom:234.360077px;}
.yb5{bottom:235.440033px;}
.y1aa{bottom:237.420043px;}
.yff{bottom:238.140060px;}
.y83{bottom:239.580093px;}
.y1a9{bottom:241.740074px;}
.y109{bottom:242.460091px;}
.yd9{bottom:242.820099px;}
.y158{bottom:246.780052px;}
.y138{bottom:248.400055px;}
.y2c{bottom:250.740074px;}
.y157{bottom:251.100083px;}
.y116{bottom:253.440033px;}
.y16f{bottom:255.240074px;}
.y150{bottom:257.760064px;}
.y1a8{bottom:258.120072px;}
.y1bd{bottom:258.480079px;}
.yb4{bottom:266.400055px;}
.yc4{bottom:270.720085px;}
.y2b{bottom:271.440033px;}
.yd8{bottom:273.780052px;}
.y156{bottom:277.740074px;}
.y1a7{bottom:278.820099px;}
.y137{bottom:279.540047px;}
.y16e{bottom:280.620072px;}
.y1c1{bottom:283.140060px;}
.y143{bottom:283.860077px;}
.y115{bottom:284.400055px;}
.y16d{bottom:284.940033px;}
.yfe{bottom:287.100083px;}
.y82{bottom:288.540047px;}
.y128{bottom:288.720085px;}
.yfd{bottom:291.060036px;}
.y2a{bottom:292.140060px;}
.y81{bottom:292.860077px;}
.y59{bottom:296.460091px;}
.y16c{bottom:301.320099px;}
.y17c{bottom:301.680039px;}
.y14c{bottom:302.400055px;}
.y180{bottom:305.640060px;}
.y14b{bottom:306.720085px;}
.y155{bottom:308.880066px;}
.y136{bottom:310.500068px;}
.y29{bottom:312.840088px;}
.y142{bottom:314.820099px;}
.yb3{bottom:315.540047px;}
.y7f{bottom:319.680039px;}
.ybd{bottom:319.860077px;}
.yd7{bottom:321.120072px;}
.y16b{bottom:322.020058px;}
.y94{bottom:324.000068px;}
.y17f{bottom:326.340088px;}
.yfc{bottom:330.120072px;}
.y28{bottom:333.540047px;}
.y108{bottom:334.440033px;}
.y1a6{bottom:342.540047px;}
.yb2{bottom:346.500068px;}
.y154{bottom:347.760064px;}
.yd6{bottom:347.940033px;}
.y7e{bottom:350.640060px;}
.y11d{bottom:350.820099px;}
.y15e{bottom:351.720085px;}
.y27{bottom:354.240074px;}
.y16a{bottom:356.040047px;}
.y58{bottom:358.560036px;}
.y1a5{bottom:358.920043px;}
.y135{bottom:359.640060px;}
.yfb{bottom:361.260064px;}
.y1bc{bottom:363.240074px;}
.y13f{bottom:363.600083px;}
.y14a{bottom:364.500068px;}
.y47{bottom:374.940033px;}
.y25{bottom:375.300041px;}
.yb1{bottom:377.640060px;}
.yd5{bottom:378.900055px;}
.y24{bottom:379.260064px;}
.y1a4{bottom:379.620072px;}
.y169{bottom:381.420043px;}
.y7d{bottom:381.780052px;}
.y12e{bottom:381.960091px;}
.y1a3{bottom:383.940033px;}
.y17b{bottom:385.740074px;}
.yfa{bottom:392.220085px;}
.y153{bottom:394.920043px;}
.y23{bottom:395.640060px;}
.y107{bottom:396.540047px;}
.y114{bottom:399.960091px;}
.y168{bottom:402.120072px;}
.y179{bottom:402.480079px;}
.y178{bottom:406.440033px;}
.yb0{bottom:408.600083px;}
.yd4{bottom:410.040047px;}
.ybc{bottom:412.920043px;}
.y1a2{bottom:413.640060px;}
.ye3{bottom:414.360077px;}
.y22{bottom:416.340088px;}
.y57{bottom:420.660049px;}
.y167{bottom:422.820099px;}
.yf9{bottom:423.360077px;}
.y7c{bottom:424.620072px;}
.y113{bottom:426.600083px;}
.y177{bottom:427.140060px;}
.y10c{bottom:427.680039px;}
.y11f{bottom:430.920043px;}
.y21{bottom:437.040047px;}
.y1a1{bottom:439.020058px;}
.yaf{bottom:439.740074px;}
.yd3{bottom:441.000068px;}
.y1bb{bottom:443.340088px;}
.y133{bottom:444.060036px;}
.yf8{bottom:454.320099px;}
.y7b{bottom:457.200096px;}
.y20{bottom:457.740074px;}
.yf7{bottom:458.640060px;}
.y1ba{bottom:459.720085px;}
.y1a0{bottom:460.080093px;}
.y1f{bottom:462.060036px;}
.y1b9{bottom:464.040047px;}
.y166{bottom:469.800041px;}
.yae{bottom:470.700096px;}
.yd2{bottom:472.140060px;}
.yc3{bottom:475.020058px;}
.y1e{bottom:478.440033px;}
.y19f{bottom:480.240074px;}
.y56{bottom:482.760064px;}
.y7a{bottom:487.620072px;}
.y112{bottom:488.700096px;}
.yf6{bottom:491.580093px;}
.y79{bottom:491.940033px;}
.y123{bottom:493.020058px;}
.y1d{bottom:499.140060px;}
.y19e{bottom:500.940033px;}
.yad{bottom:501.840088px;}
.yd1{bottom:503.100083px;}
.y1c0{bottom:505.260064px;}
.y165{bottom:519.120072px;}
.y1b{bottom:519.840088px;}
.yf5{bottom:520.020058px;}
.y78{bottom:522.000068px;}
.y106{bottom:523.980079px;}
.y1a{bottom:524.160049px;}
.y8c{bottom:526.320099px;}
.y12d{bottom:532.800041px;}
.y19d{bottom:534.960091px;}
.yd0{bottom:536.040047px;}
.y132{bottom:537.120072px;}
.ycf{bottom:540.360077px;}
.y19{bottom:540.540047px;}
.y77{bottom:544.140060px;}
.y111{bottom:550.800041px;}
.yac{bottom:555.120072px;}
.y17{bottom:561.240074px;}
.y12c{bottom:563.760064px;}
.y19c{bottom:564.660049px;}
.y76{bottom:566.460091px;}
.yf4{bottom:567.180039px;}
.y164{bottom:568.080093px;}
.yce{bottom:570.780052px;}
.ye2{bottom:575.280052px;}
.y19b{bottom:581.040047px;}
.yab{bottom:581.760064px;}
.y15{bottom:581.940033px;}
.y1b8{bottom:585.360077px;}
.yaa{bottom:586.080093px;}
.y14{bottom:586.260064px;}
.y75{bottom:588.780052px;}
.y12b{bottom:594.900055px;}
.y163{bottom:599.220085px;}
.y149{bottom:599.760064px;}
.y19a{bottom:601.740074px;}
.y14f{bottom:604.080093px;}
.yf3{bottom:605.880066px;}
.y199{bottom:606.060036px;}
.y13{bottom:606.960091px;}
.y105{bottom:610.200096px;}
.y74{bottom:611.100083px;}
.ya9{bottom:612.900055px;}
.y8b{bottom:615.420043px;}
.ycd{bottom:621.180039px;}
.y12a{bottom:625.860077px;}
.y131{bottom:630.180039px;}
.y148{bottom:630.900055px;}
.y73{bottom:633.420043px;}
.y151{bottom:635.220085px;}
.y198{bottom:635.760064px;}
.yf2{bottom:636.840088px;}
.y12{bottom:639.360077px;}
.ya8{bottom:643.860077px;}
.ybb{bottom:648.180039px;}
.ycb{bottom:648.900055px;}
.y72{bottom:655.920043px;}
.y152{bottom:657.000068px;}
.y197{bottom:661.140060px;}
.y162{bottom:661.320099px;}
.y147{bottom:661.860077px;}
.y10{bottom:665.100083px;}
.y196{bottom:665.460091px;}
.yf1{bottom:667.980079px;}
.yf{bottom:669.060036px;}
.ya7{bottom:675.000068px;}
.y71{bottom:678.240074px;}
.y130{bottom:678.960091px;}
.ya6{bottom:679.320099px;}
.yca{bottom:681.480079px;}
.y195{bottom:681.840088px;}
.y1b7{bottom:682.200096px;}
.ye0{bottom:685.800041px;}
.y110{bottom:693.000068px;}
.y11c{bottom:697.320065px;}
.yf0{bottom:698.940067px;}
.y70{bottom:700.560070px;}
.y46{bottom:701.280052px;}
.y194{bottom:702.540081px;}
.y93{bottom:704.880066px;}
.ya5{bottom:705.960056px;}
.y15d{bottom:709.920078px;}
.y161{bottom:710.280052px;}
.yc9{bottom:713.160049px;}
.yc8{bottom:717.480079px;}
.y6f{bottom:722.880066px;}
.y10f{bottom:723.960056px;}
.y125{bottom:728.280052px;}
.yef{bottom:730.080059px;}
.y55{bottom:731.520058px;}
.y193{bottom:736.560070px;}
.ya4{bottom:737.100083px;}
.y45{bottom:742.500068px;}
.y6e{bottom:745.200061px;}
.y44{bottom:745.380066px;}
.y10e{bottom:755.100083px;}
.yc7{bottom:756.180073px;}
.y15c{bottom:759.420078px;}
.y54{bottom:759.600083px;}
.ydf{bottom:760.140060px;}
.yee{bottom:761.040081px;}
.y10b{bottom:765.360077px;}
.y192{bottom:766.260064px;}
.y6d{bottom:767.520058px;}
.y160{bottom:768.060070px;}
.y92{bottom:771.840054px;}
.y43{bottom:773.460056px;}
.y42{bottom:776.340054px;}
.y191{bottom:782.640060px;}
.ya3{bottom:786.060070px;}
.y1b6{bottom:786.960056px;}
.y6c{bottom:789.840054px;}
.ya2{bottom:790.380066px;}
.y53{bottom:790.560070px;}
.yed{bottom:792.180073px;}
.y104{bottom:796.500068px;}
.y15f{bottom:799.200061px;}
.y190{bottom:803.340054px;}
.yc6{bottom:803.520058px;}
.y41{bottom:804.600083px;}
.y52{bottom:807.480079px;}
.y18f{bottom:807.660049px;}
.y6b{bottom:812.160049px;}
.y8a{bottom:812.520058px;}
.y91{bottom:816.480079px;}
.ya1{bottom:817.200061px;}
.y40{bottom:818.460056px;}
.yba{bottom:821.520058px;}
.y51{bottom:821.700061px;}
.yec{bottom:823.140060px;}
.y10a{bottom:827.460056px;}
.y6a{bottom:834.480079px;}
.y3e{bottom:835.560070px;}
.y18e{bottom:837.360077px;}
.y50{bottom:838.440067px;}
.y90{bottom:838.800076px;}
.ya0{bottom:848.160049px;}
.y3c{bottom:849.420078px;}
.yde{bottom:852.480079px;}
.y4f{bottom:852.660049px;}
.y69{bottom:856.800076px;}
.y18d{bottom:863.100083px;}
.y3a{bottom:866.700061px;}
.y1b5{bottom:867.060070px;}
.y4e{bottom:869.580059px;}
.yeb{bottom:870.480079px;}
.y68{bottom:879.300076px;}
.y38{bottom:880.560070px;}
.y18c{bottom:883.440067px;}
.yc2{bottom:883.620072px;}
.y4d{bottom:883.800076px;}
.yea{bottom:897.300076px;}
.y67{bottom:901.620072px;}
.y89{bottom:901.980079px;}
.y18b{bottom:904.140060px;}
.y8f{bottom:905.940067px;}
.y9f{bottom:910.260064px;}
.ye{bottom:912.960056px;}
.yc1{bottom:914.580059px;}
.y66{bottom:923.940067px;}
.ye9{bottom:928.260064px;}
.ye8{bottom:932.580059px;}
.y18a{bottom:938.160049px;}
.y9e{bottom:941.400055px;}
.yc{bottom:946.080059px;}
.y65{bottom:946.260064px;}
.y4c{bottom:950.040081px;}
.y88{bottom:950.580059px;}
.ye7{bottom:959.400055px;}
.y1b4{bottom:963.540081px;}
.y129{bottom:963.720051px;}
.y189{bottom:963.900055px;}
.y188{bottom:967.860077px;}
.y64{bottom:968.580059px;}
.y9d{bottom:972.360077px;}
.y8e{bottom:972.900055px;}
.y141{bottom:976.680073px;}
.y187{bottom:984.240074px;}
.ya{bottom:986.220068px;}
.y37{bottom:990.180073px;}
.ye5{bottom:990.360060px;}
.y62{bottom:990.900072px;}
.yc5{bottom:994.680073px;}
.y122{bottom:1003.500068px;}
.y127{bottom:1007.820065px;}
.y61{bottom:1013.220068px;}
.y8{bottom:1017.180073px;}
.y60{bottom:1017.540064px;}
.y186{bottom:1018.260064px;}
.y9c{bottom:1021.500068px;}
.y9b{bottom:1025.820065px;}
.y121{bottom:1034.460074px;}
.y184{bottom:1043.640060px;}
.y1b3{bottom:1047.960074px;}
.y5f{bottom:1051.740074px;}
.y9a{bottom:1052.460074px;}
.y99{bottom:1056.780069px;}
.y36{bottom:1061.280069px;}
.y183{bottom:1064.340070px;}
.y1b1{bottom:1064.700061px;}
.y120{bottom:1065.600065px;}
.y1bf{bottom:1068.660067px;}
.y5d{bottom:1082.160067px;}
.y98{bottom:1083.600065px;}
.y182{bottom:1085.040064px;}
.y5c{bottom:1086.480063px;}
.y6{bottom:1087.020058px;}
.yc0{bottom:1087.920061px;}
.y181{bottom:1089.360060px;}
.y4b{bottom:1091.700061px;}
.y4{bottom:1111.140060px;}
.y97{bottom:1114.560070px;}
.y3{bottom:1115.820065px;}
.y124{bottom:1118.520058px;}
.y96{bottom:1118.880066px;}
.y5b{bottom:1119.060070px;}
.y1{bottom:1228.860066px;}
.h13{height:13.679970px;}
.h12{height:13.680003px;}
.hf{height:13.680005px;}
.h11{height:16.739971px;}
.he{height:16.740006px;}
.h1f{height:20.519955px;}
.h7{height:20.519989px;}
.hd{height:20.519990px;}
.h19{height:20.519998px;}
.h9{height:20.520006px;}
.h1a{height:20.520007px;}
.h17{height:20.520022px;}
.ha{height:20.520024px;}
.hc{height:20.520057px;}
.h1e{height:20.520059px;}
.h1b{height:21.240006px;}
.h5{height:23.940008px;}
.h6{height:23.940016px;}
.h15{height:42.847575px;}
.h10{height:43.248020px;}
.h18{height:49.994065px;}
.hb{height:53.079850px;}
.h3{height:53.575923px;}
.h14{height:58.835679px;}
.h8{height:63.951621px;}
.h2{height:64.549300px;}
.h1c{height:67.131171px;}
.h16{height:69.713453px;}
.h1d{height:72.940793px;}
.h4{height:74.823380px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w76{width:0.720016px;}
.w14b{width:0.899986px;}
.w85{width:1.079990px;}
.w7c{width:1.799972px;}
.w166{width:1.980011px;}
.w5a{width:2.159981px;}
.w4d{width:2.340019px;}
.w79{width:2.519989px;}
.w120{width:2.699993px;}
.w175{width:3.960021px;}
.wf9{width:3.960022px;}
.w15c{width:4.139992px;}
.wba{width:4.320030px;}
.w11f{width:4.679970px;}
.w65{width:5.039979px;}
.w87{width:5.399987px;}
.w19{width:5.579990px;}
.wf{width:5.759994px;}
.w91{width:5.939964px;}
.w13b{width:5.939999px;}
.w13d{width:6.480011px;}
.w108{width:6.659981px;}
.wbf{width:8.459988px;}
.w10f{width:8.460022px;}
.w118{width:8.639992px;}
.w15e{width:9.000000px;}
.w15f{width:9.360008px;}
.w5d{width:9.540012px;}
.w17f{width:10.980011px;}
.w151{width:13.139992px;}
.w6f{width:13.320030px;}
.w155{width:14.579991px;}
.w13{width:14.940034px;}
.wf2{width:15.299972px;}
.wf0{width:16.559966px;}
.w2f{width:17.279983px;}
.w16c{width:17.639992px;}
.wc6{width:18.360008px;}
.w78{width:18.899986px;}
.wf3{width:19.620002px;}
.w10b{width:19.799972px;}
.w66{width:19.980011px;}
.wad{width:20.340019px;}
.wab{width:21.240006px;}
.w14c{width:21.779983px;}
.w156{width:22.139992px;}
.w160{width:23.039978px;}
.w5{width:23.220017px;}
.w150{width:23.939964px;}
.w37{width:24.659981px;}
.w100{width:24.839984px;}
.w68{width:25.379998px;}
.w140{width:26.099980px;}
.w1e{width:26.460022px;}
.w167{width:27.180038px;}
.w12c{width:27.539978px;}
.w42{width:28.259994px;}
.w10d{width:28.800007px;}
.wcb{width:29.159981px;}
.w105{width:29.879998px;}
.wbc{width:30.959988px;}
.w7{width:30.960022px;}
.wb{width:32.759994px;}
.wc9{width:34.379997px;}
.w20{width:35.279984px;}
.w6b{width:35.459988px;}
.w59{width:35.460021px;}
.wbd{width:36.000000px;}
.w2{width:36.180004px;}
.wc8{width:36.540012px;}
.w12f{width:37.259994px;}
.w139{width:37.440034px;}
.w61{width:37.980011px;}
.w6c{width:39.060001px;}
.w122{width:39.240006px;}
.wc7{width:40.860008px;}
.w130{width:41.039978px;}
.w10a{width:41.579956px;}
.w132{width:42.120003px;}
.w153{width:44.280001px;}
.w9a{width:44.640009px;}
.w46{width:46.620003px;}
.w12d{width:47.340019px;}
.w8b{width:47.519989px;}
.w11d{width:48.419975px;}
.w97{width:48.600014px;}
.wd0{width:49.860008px;}
.wcc{width:50.399987px;}
.wa2{width:51.300007px;}
.w17a{width:52.740006px;}
.w9e{width:53.279984px;}
.w27{width:53.639991px;}
.w123{width:53.639992px;}
.w133{width:53.640009px;}
.w75{width:53.820030px;}
.w3e{width:54.900003px;}
.w96{width:55.260011px;}
.w3a{width:55.800007px;}
.w8f{width:55.800042px;}
.w113{width:55.980011px;}
.w13f{width:56.340019px;}
.w90{width:57.419975px;}
.w135{width:57.600014px;}
.wa1{width:58.500000px;}
.w16e{width:59.399987px;}
.w125{width:59.939999px;}
.w57{width:60.120002px;}
.w48{width:60.840019px;}
.waa{width:61.199958px;}
.w36{width:62.639991px;}
.we2{width:62.640009px;}
.w6a{width:63.720017px;}
.w17{width:63.899987px;}
.wdc{width:64.620002px;}
.w15{width:65.519989px;}
.w152{width:65.520007px;}
.waf{width:65.700010px;}
.w10c{width:66.059966px;}
.w77{width:66.779983px;}
.w11b{width:66.779984px;}
.w4f{width:67.139992px;}
.wc5{width:67.679970px;}
.w137{width:68.220000px;}
.w172{width:68.399987px;}
.w110{width:68.400003px;}
.wc3{width:68.759994px;}
.w26{width:70.559966px;}
.w4e{width:70.560001px;}
.w5f{width:71.280001px;}
.w92{width:71.460021px;}
.w11{width:71.460023px;}
.w47{width:71.819996px;}
.wd1{width:73.439964px;}
.w3{width:75.240006px;}
.w12e{width:76.319962px;}
.wd8{width:76.319997px;}
.wb7{width:76.500000px;}
.w17d{width:76.679970px;}
.w80{width:77.399987px;}
.w146{width:78.120002px;}
.w136{width:78.120003px;}
.wcf{width:78.299972px;}
.w54{width:78.840019px;}
.we8{width:79.020024px;}
.w60{width:79.200010px;}
.w98{width:80.280001px;}
.wfe{width:80.639992px;}
.w6{width:80.820014px;}
.w131{width:81.539978px;}
.w164{width:81.540012px;}
.wf7{width:82.620002px;}
.w12a{width:84.599980px;}
.w7b{width:84.600013px;}
.w3b{width:85.500000px;}
.w58{width:86.399987px;}
.w32{width:90.539978px;}
.wa8{width:90.720016px;}
.wc{width:91.260011px;}
.w33{width:91.620002px;}
.w111{width:92.340002px;}
.w89{width:92.700028px;}
.w8{width:92.879998px;}
.w35{width:93.059966px;}
.wef{width:93.060001px;}
.wf5{width:93.240006px;}
.we6{width:93.420010px;}
.w95{width:93.600013px;}
.wd4{width:94.140009px;}
.w16b{width:94.319996px;}
.w11c{width:96.659981px;}
.w7d{width:97.379998px;}
.w158{width:97.740006px;}
.w147{width:97.919975px;}
.w127{width:99.000000px;}
.w102{width:99.539978px;}
.w17e{width:99.720016px;}
.w10e{width:100.260011px;}
.we4{width:100.620003px;}
.wde{width:101.340019px;}
.w173{width:101.699958px;}
.w121{width:101.700010px;}
.w141{width:101.879997px;}
.w145{width:102.060001px;}
.w2e{width:102.240006px;}
.wea{width:102.960023px;}
.wc2{width:103.139991px;}
.w5b{width:103.679970px;}
.wd6{width:104.039978px;}
.w62{width:105.659998px;}
.wd9{width:106.199993px;}
.web{width:106.560001px;}
.w3c{width:106.740006px;}
.wb0{width:107.280001px;}
.w94{width:111.240006px;}
.w3f{width:111.420009px;}
.w114{width:111.599980px;}
.wae{width:111.600014px;}
.w17b{width:111.960021px;}
.w9c{width:113.400021px;}
.w109{width:115.019989px;}
.w23{width:115.379997px;}
.w15b{width:116.279983px;}
.w144{width:116.819997px;}
.w72{width:117.000000px;}
.w24{width:117.899987px;}
.w129{width:118.259994px;}
.w7f{width:118.800007px;}
.we0{width:118.980011px;}
.w1b{width:119.159981px;}
.wb5{width:120.060001px;}
.w116{width:120.420009px;}
.w40{width:121.140026px;}
.w176{width:122.939964px;}
.wac{width:123.300007px;}
.w148{width:123.480011px;}
.w34{width:125.100013px;}
.wdf{width:125.279983px;}
.w165{width:125.459988px;}
.w15a{width:125.819997px;}
.w44{width:127.439999px;}
.w4a{width:128.700028px;}
.w2d{width:129.419975px;}
.w56{width:130.139991px;}
.w169{width:130.319997px;}
.w7a{width:130.500000px;}
.wb6{width:132.840019px;}
.wa{width:133.200010px;}
.w14e{width:134.279983px;}
.w84{width:134.459988px;}
.wf4{width:134.819962px;}
.wc4{width:136.259994px;}
.w11e{width:136.799972px;}
.w7e{width:137.700010px;}
.wa3{width:137.879997px;}
.wa0{width:138.240006px;}
.w22{width:140.580025px;}
.w3d{width:141.120003px;}
.w14a{width:141.299972px;}
.w63{width:141.480011px;}
.w99{width:142.020007px;}
.wa9{width:142.559966px;}
.w51{width:142.919975px;}
.w178{width:143.639991px;}
.w177{width:144.000000px;}
.w17c{width:145.259994px;}
.w14d{width:145.620002px;}
.wf1{width:146.699958px;}
.wa6{width:148.500000px;}
.wf6{width:149.759994px;}
.w5c{width:150.659981px;}
.w38{width:150.840019px;}
.w16f{width:151.019989px;}
.w14f{width:151.740006px;}
.w82{width:153.180005px;}
.w174{width:154.079956px;}
.w53{width:154.980011px;}
.w5e{width:156.780001px;}
.w25{width:156.960021px;}
.w8c{width:157.139992px;}
.w180{width:157.319962px;}
.wd2{width:157.320014px;}
.w170{width:157.500000px;}
.w55{width:157.860008px;}
.w52{width:158.039978px;}
.wb2{width:158.219982px;}
.wfb{width:159.120003px;}
.w149{width:160.199958px;}
.we1{width:161.100014px;}
.wa5{width:161.819996px;}
.w28{width:163.620002px;}
.w2c{width:163.980011px;}
.wb3{width:164.520024px;}
.w171{width:165.240006px;}
.w8d{width:165.600013px;}
.w2a{width:166.500000px;}
.w179{width:166.679970px;}
.w29{width:167.220016px;}
.w2b{width:167.399987px;}
.w39{width:167.939964px;}
.w31{width:168.120002px;}
.w30{width:168.299972px;}
.wa7{width:168.300007px;}
.w93{width:168.480011px;}
.w73{width:168.660016px;}
.w83{width:169.560001px;}
.w154{width:172.439999px;}
.w134{width:178.200010px;}
.wa4{width:178.920010px;}
.wfa{width:179.100006px;}
.wd3{width:181.260003px;}
.w21{width:182.159981px;}
.w4{width:182.520007px;}
.wce{width:182.879997px;}
.wed{width:183.779983px;}
.w9f{width:184.500000px;}
.w168{width:187.920009px;}
.w49{width:194.039978px;}
.w9{width:195.120003px;}
.w43{width:195.300007px;}
.wf8{width:195.480002px;}
.w117{width:196.379998px;}
.w159{width:196.920009px;}
.w18{width:198.540012px;}
.wb1{width:201.599980px;}
.wb4{width:201.959988px;}
.wda{width:202.860009px;}
.w9b{width:203.219982px;}
.w1c{width:203.580025px;}
.w128{width:204.480011px;}
.w115{width:205.740006px;}
.w143{width:205.920009px;}
.wb8{width:207.180004px;}
.wbb{width:211.860008px;}
.w16{width:213.660016px;}
.w14{width:214.740006px;}
.w11a{width:218.519989px;}
.we9{width:219.959988px;}
.w142{width:220.860009px;}
.we3{width:222.300007px;}
.wee{width:223.740006px;}
.w162{width:224.459988px;}
.w157{width:225.000000px;}
.w112{width:227.879997px;}
.wfd{width:229.139992px;}
.we5{width:229.319996px;}
.w10{width:229.500000px;}
.w88{width:230.039978px;}
.w6d{width:232.200028px;}
.w13a{width:232.560001px;}
.w74{width:232.920009px;}
.w12b{width:233.280018px;}
.w81{width:239.580025px;}
.wdb{width:239.939999px;}
.wd7{width:241.019989px;}
.w163{width:241.199993px;}
.wff{width:242.100013px;}
.we7{width:243.719982px;}
.w104{width:244.800007px;}
.w50{width:248.220017px;}
.w124{width:251.459988px;}
.w69{width:253.980011px;}
.w103{width:256.680004px;}
.w126{width:256.860009px;}
.wdd{width:258.120003px;}
.w8e{width:260.819962px;}
.w71{width:262.799972px;}
.w16d{width:263.340019px;}
.w16a{width:268.379998px;}
.w4b{width:269.279983px;}
.w9d{width:269.460021px;}
.w106{width:272.879997px;}
.w8a{width:275.220017px;}
.w13e{width:275.759994px;}
.w45{width:276.120002px;}
.w6e{width:276.659981px;}
.wbe{width:280.800007px;}
.wd5{width:283.319962px;}
.w138{width:285.299972px;}
.w1f{width:287.460021px;}
.w1d{width:289.620002px;}
.w161{width:290.700028px;}
.wfc{width:291.779983px;}
.wca{width:293.580025px;}
.w41{width:294.480011px;}
.w67{width:297.360008px;}
.w101{width:298.080025px;}
.wcd{width:303.840019px;}
.w12{width:305.640026px;}
.w86{width:308.340019px;}
.wc1{width:309.960021px;}
.w13c{width:311.040012px;}
.w1a{width:311.400021px;}
.wec{width:313.379997px;}
.w15d{width:313.919975px;}
.w119{width:314.100013px;}
.wc0{width:314.280018px;}
.w107{width:316.080025px;}
.we{width:316.980011px;}
.w64{width:317.700027px;}
.wb9{width:318.419975px;}
.w4c{width:320.399987px;}
.w70{width:320.580025px;}
.wd{width:322.740006px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x48{left:-517.680014px;}
.x35{left:-505.080008px;}
.xef{left:-503.820014px;}
.x116{left:-501.660016px;}
.x16a{left:-494.640009px;}
.xff{left:-483.660016px;}
.x92{left:-479.340019px;}
.x79{left:-463.680004px;}
.x49{left:-455.760012px;}
.x164{left:-442.620003px;}
.xb1{left:-441.360009px;}
.xd5{left:-434.160016px;}
.xda{left:-429.840019px;}
.x98{left:-428.220017px;}
.x139{left:-424.260012px;}
.x125{left:-422.820014px;}
.xad{left:-419.940016px;}
.xf2{left:-416.700010px;}
.x47{left:-415.440016px;}
.x6b{left:-408.060019px;}
.x36{left:-403.380015px;}
.x128{left:-390.960006px;}
.x101{left:-385.200010px;}
.x14a{left:-380.160016px;}
.x69{left:-378.360009px;}
.xbf{left:-371.160016px;}
.x167{left:-366.840019px;}
.x149{left:-364.680004px;}
.xe4{left:-363.420010px;}
.x96{left:-360.540012px;}
.x32{left:-358.740006px;}
.x45{left:-353.520024px;}
.x124{left:-351.360009px;}
.xe3{left:-340.920010px;}
.x91{left:-332.100013px;}
.x127{left:-331.020024px;}
.x137{left:-325.259994px;}
.xd9{left:-314.280018px;}
.x4c{left:-311.400021px;}
.x3a{left:-305.640026px;}
.x114{left:-298.080025px;}
.x166{left:-290.700028px;}
.xd8{left:-280.800007px;}
.x14b{left:-275.759994px;}
.x169{left:-268.379998px;}
.xf1{left:-258.120003px;}
.x115{left:-256.680004px;}
.x7b{left:-248.220017px;}
.x113{left:-242.100013px;}
.xaa{left:-239.580025px;}
.x136{left:-233.280018px;}
.x97{left:-232.200028px;}
.x14d{left:-220.860009px;}
.x3d{left:-214.740006px;}
.x3f{left:-213.660016px;}
.xd3{left:-207.180004px;}
.x126{left:-205.740006px;}
.x4e{left:-203.580025px;}
.x43{left:-198.540012px;}
.x12a{left:-196.379998px;}
.x25{left:-194.940008px;}
.x14{left:-182.340002px;}
.xe8{left:-181.080008px;}
.xc1{left:-178.920010px;}
.x15d{left:-171.900003px;}
.x9b{left:-168.660016px;}
.xb0{left:-165.600013px;}
.xd1{left:-164.520024px;}
.xf7{left:-160.920010px;}
.x111{left:-158.939999px;}
.x83{left:-156.600014px;}
.xb9{left:-141.840002px;}
.x54{left:-140.580025px;}
.xa5{left:-137.520007px;}
.x26{left:-133.020007px;}
.x168{left:-130.319997px;}
.x76{left:-128.700028px;}
.x70{left:-127.439999px;}
.x165{left:-125.819997px;}
.xc7{left:-123.120003px;}
.x6d{left:-121.140026px;}
.x154{left:-119.879998px;}
.xa7{left:-118.620003px;}
.x14e{left:-116.819997px;}
.xc0{left:-113.400021px;}
.xcd{left:-111.420010px;}
.x64{left:-106.560001px;}
.x8c{left:-105.480011px;}
.x100{left:-102.960023px;}
.xfe{left:-100.620003px;}
.xa4{left:-97.200010px;}
.xee{left:-93.960004px;}
.x24{left:-92.700010px;}
.x2a{left:-91.080008px;}
.x5a{left:-85.320014px;}
.x17{left:-80.640009px;}
.x87{left:-79.020007px;}
.x145{left:-77.939999px;}
.xf0{left:-76.319997px;}
.x11{left:-75.060001px;}
.x38{left:-71.460023px;}
.x11e{left:-68.220000px;}
.x12b{left:-66.779984px;}
.x3e{left:-65.519989px;}
.x41{left:-63.899987px;}
.xf9{left:-62.460004px;}
.x75{left:-60.840019px;}
.x16c{left:-59.399987px;}
.x140{left:-57.420010px;}
.x59{left:-55.620003px;}
.x9d{left:-53.820030px;}
.xb3{left:-48.420010px;}
.x74{left:-46.620003px;}
.xbd{left:-44.460004px;}
.x13f{left:-41.939999px;}
.xdf{left:-40.680004px;}
.x89{left:-37.800007px;}
.x10{left:-36.000000px;}
.x27{left:-32.579991px;}
.x23{left:-30.780018px;}
.x6e{left:-28.259994px;}
.x52{left:-26.460022px;}
.x94{left:-25.379998px;}
.x15{left:-23.040012px;}
.x162{left:-21.960022px;}
.xc9{left:-20.160016px;}
.xde{left:-18.180004px;}
.x3b{left:-14.940034px;}
.x9a{left:-13.320030px;}
.x82{left:-9.360008px;}
.x11d{left:-8.280018px;}
.x33{left:-5.759994px;}
.xd4{left:-4.320030px;}
.x77{left:-2.340019px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.x5{left:140.219999px;}
.xe6{left:141.480002px;}
.x106{left:143.640000px;}
.x151{left:150.300007px;}
.xf4{left:161.639992px;}
.x107{left:163.620002px;}
.x7d{left:165.960005px;}
.x58{left:181.620002px;}
.x9f{left:185.039996px;}
.xb{left:189.539996px;}
.xc3{left:199.439999px;}
.x14f{left:202.680005px;}
.xa0{left:203.939999px;}
.xc5{left:211.139992px;}
.x57{left:216.000000px;}
.x81{left:217.080008px;}
.x12d{left:221.039996px;}
.x118{left:222.479994px;}
.x9e{left:225.360008px;}
.xe7{left:228.599997px;}
.xa{left:229.860008px;}
.xd{left:231.479994px;}
.x56{left:237.240006px;}
.x7{left:241.919992px;}
.x7f{left:243.539996px;}
.x13d{left:244.620002px;}
.x4{left:247.500000px;}
.x7e{left:251.460005px;}
.x11a{left:254.340002px;}
.xc6{left:257.039996px;}
.x2{left:259.560001px;}
.x13c{left:265.139992px;}
.x55{left:266.939999px;}
.x13b{left:269.099997px;}
.x8{left:273.780001px;}
.xb2{left:278.099997px;}
.x13a{left:280.620002px;}
.xdc{left:281.879998px;}
.x80{left:284.759994px;}
.x3{left:286.560001px;}
.xc{left:289.980011px;}
.x9{left:291.779983px;}
.x117{left:293.939999px;}
.x6{left:299.519989px;}
.x153{left:300.600013px;}
.xc4{left:302.399987px;}
.xdb{left:304.379998px;}
.x152{left:308.160015px;}
.x150{left:309.600013px;}
.x7c{left:313.199993px;}
.x119{left:314.279983px;}
.x105{left:318.779983px;}
.x12c{left:320.040012px;}
.xf{left:322.740006px;}
.xa3{left:323.819996px;}
.x10c{left:324.899987px;}
.x28{left:328.139992px;}
.x141{left:329.220017px;}
.xd0{left:331.199993px;}
.x29{left:334.079990px;}
.x19{left:339.839985px;}
.x84{left:342.720017px;}
.x157{left:345.779983px;}
.x10a{left:347.399987px;}
.x143{left:348.839985px;}
.x132{left:350.279983px;}
.xce{left:353.519989px;}
.x158{left:354.779983px;}
.xdd{left:357.120002px;}
.x88{left:358.199993px;}
.x8a{left:361.800007px;}
.x15b{left:363.600014px;}
.xcf{left:364.680005px;}
.x142{left:369.720017px;}
.xb8{left:374.040012px;}
.x15c{left:377.100014px;}
.x11c{left:378.720017px;}
.xb7{left:381.240006px;}
.x12e{left:382.680005px;}
.xed{left:387.360008px;}
.x10d{left:388.800007px;}
.x67{left:389.879998px;}
.x163{left:391.139992px;}
.x66{left:393.300007px;}
.x60{left:394.560001px;}
.x68{left:397.259994px;}
.xa1{left:399.959988px;}
.x109{left:403.379998px;}
.xa2{left:405.899987px;}
.x130{left:407.339985px;}
.x131{left:412.199993px;}
.x8b{left:413.279983px;}
.x15e{left:417.060001px;}
.x10b{left:422.279983px;}
.x144{left:424.620002px;}
.x13{left:425.879998px;}
.xec{left:428.759994px;}
.x1b{left:430.740006px;}
.x1d{left:431.819996px;}
.x5b{left:434.160015px;}
.x30{left:438.120002px;}
.x8e{left:439.740006px;}
.x2b{left:441.899987px;}
.x20{left:443.879998px;}
.x21{left:446.939999px;}
.x11f{left:449.100014px;}
.x1e{left:451.800007px;}
.x22{left:457.740006px;}
.xe{left:459.360008px;}
.xba{left:460.620002px;}
.xbb{left:466.560001px;}
.xbe{left:471.240006px;}
.x161{left:473.759994px;}
.x8f{left:476.819996px;}
.xa6{left:479.879998px;}
.xc8{left:480.959988px;}
.xbc{left:484.560001px;}
.x2f{left:504.899987px;}
.xb6{left:507.240006px;}
.x159{left:510.660015px;}
.xca{left:512.639992px;}
.x15a{left:515.160015px;}
.x62{left:516.779983px;}
.x5e{left:518.040012px;}
.x156{left:519.660015px;}
.x5c{left:524.339985px;}
.xb4{left:525.959988px;}
.x12f{left:527.220017px;}
.x146{left:528.660015px;}
.xb5{left:532.079990px;}
.xcc{left:534.600014px;}
.x120{left:541.259994px;}
.xf8{left:542.519989px;}
.xf5{left:544.860008px;}
.xfb{left:546.480011px;}
.x155{left:547.740006px;}
.x11b{left:550.620002px;}
.x16{left:552.240006px;}
.x90{left:555.660015px;}
.xea{left:563.759994px;}
.xf6{left:566.459988px;}
.x10e{left:567.540012px;}
.xeb{left:569.160015px;}
.x18{left:574.019989px;}
.x86{left:576.720017px;}
.x121{left:578.700027px;}
.x1c{left:579.960023px;}
.x1f{left:581.580025px;}
.xa8{left:583.559967px;}
.x61{left:584.639992px;}
.x160{left:586.080025px;}
.xa9{left:589.679970px;}
.x63{left:592.019989px;}
.x110{left:595.620002px;}
.x5f{left:598.860008px;}
.xe9{left:606.059967px;}
.x13e{left:608.039978px;}
.x2e{left:610.200027px;}
.x2c{left:612.360008px;}
.x108{left:614.519989px;}
.x10f{left:615.600014px;}
.x5d{left:617.220017px;}
.x2d{left:619.019989px;}
.x85{left:620.100014px;}
.xe0{left:626.580025px;}
.x15f{left:627.840019px;}
.x1a{left:630.539978px;}
.x8d{left:632.159981px;}
.xfa{left:636.120002px;}
.x12{left:639.720017px;}
.xcb{left:641.159981px;}
.x65{left:643.139992px;}
.x31{left:645.480011px;}
.x78{left:647.639992px;}
.x40{left:648.899987px;}
.x129{left:650.159981px;}
.xac{left:651.419975px;}
.x16b{left:656.460023px;}
.xfd{left:660.779983px;}
.x46{left:662.759994px;}
.x95{left:664.379998px;}
.xe1{left:665.460023px;}
.xc2{left:666.720017px;}
.x51{left:670.139992px;}
.x73{left:680.940033px;}
.x135{left:682.740006px;}
.x112{left:687.059967px;}
.x133{left:692.820030px;}
.x123{left:693.899987px;}
.xe2{left:695.340019px;}
.x37{left:699.120002px;}
.xab{left:702.899987px;}
.x71{left:705.600014px;}
.x50{left:708.120002px;}
.x93{left:712.080025px;}
.xd7{left:713.159981px;}
.xd2{left:714.240006px;}
.xae{left:716.940033px;}
.xe5{left:718.919975px;}
.x134{left:721.799973px;}
.x6f{left:724.320030px;}
.x138{left:727.019989px;}
.x104{left:728.100014px;}
.x9c{left:729.899987px;}
.x72{left:731.879998px;}
.x4a{left:736.019989px;}
.x4b{left:737.100014px;}
.x4f{left:738.539978px;}
.x122{left:742.139992px;}
.x147{left:743.399987px;}
.x44{left:747.720017px;}
.x7a{left:749.159981px;}
.xaf{left:756.720017px;}
.xf3{left:764.279983px;}
.x148{left:768.960023px;}
.x4d{left:770.580025px;}
.x42{left:774.899987px;}
.x99{left:775.980011px;}
.x102{left:780.299973px;}
.xd6{left:781.740006px;}
.x14c{left:786.779983px;}
.x6a{left:788.399987px;}
.xfc{left:792.179970px;}
.x103{left:795.240006px;}
.x53{left:796.320030px;}
.x6c{left:798.840019px;}
.x34{left:802.440033px;}
.x39{left:809.100014px;}
.x3c{left:812.700027px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010750pt;}
.ls0{letter-spacing:0.159444pt;}
.ls3{letter-spacing:2.559459pt;}
.ws0{word-spacing:-18.720699pt;}
.ws1{word-spacing:-16.000601pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-1.922134pt;}
._0{margin-left:-0.909416pt;}
._1{width:0.925785pt;}
._7{width:2.156581pt;}
._8{width:3.065365pt;}
._f{width:4.306662pt;}
._1a{width:5.938638pt;}
._19{width:6.980394pt;}
._3{width:7.874796pt;}
._4{width:8.954586pt;}
._17{width:9.925372pt;}
._6{width:10.880909pt;}
._16{width:12.385715pt;}
._13{width:13.923273pt;}
._c{width:15.106067pt;}
._18{width:17.194285pt;}
._12{width:18.199684pt;}
._b{width:19.308225pt;}
._2{width:20.501770pt;}
._5{width:21.577310pt;}
._d{width:23.234872pt;}
._e{width:24.228412pt;}
._a{width:25.391454pt;}
._14{width:26.779505pt;}
._9{width:28.289063pt;}
._21{width:29.374103pt;}
._1d{width:30.314639pt;}
._1c{width:31.586436pt;}
._10{width:32.877735pt;}
._11{width:34.041029pt;}
._20{width:35.436831pt;}
._1b{width:36.535622pt;}
._1e{width:37.820670pt;}
._1f{width:39.276226pt;}
._22{width:43.692641pt;}
.fs3{font-size:42.881600pt;}
.fs1{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.fs6{font-size:66.562400pt;}
.fs5{font-size:69.122804pt;}
.fs7{font-size:72.322800pt;}
.fs2{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.559997pt;}
.y3b{bottom:2.559998pt;}
.y3d{bottom:2.879974pt;}
.y39{bottom:2.880005pt;}
.y11{bottom:3.519958pt;}
.y17a{bottom:3.519959pt;}
.y9{bottom:3.519989pt;}
.yb{bottom:3.520004pt;}
.y1b2{bottom:3.520005pt;}
.yd{bottom:3.520019pt;}
.y26{bottom:3.520020pt;}
.y1c{bottom:3.839965pt;}
.y18{bottom:3.839966pt;}
.y5e{bottom:3.839996pt;}
.y63{bottom:3.839997pt;}
.ye6{bottom:3.840011pt;}
.y185{bottom:3.840012pt;}
.y80{bottom:3.840026pt;}
.y16{bottom:3.840027pt;}
.y13e{bottom:3.840088pt;}
.ycc{bottom:4.000000pt;}
.y7{bottom:4.160003pt;}
.y5{bottom:4.160004pt;}
.y2{bottom:53.440064pt;}
.y35{bottom:58.080079pt;}
.y34{bottom:75.680054pt;}
.y4a{bottom:79.520020pt;}
.y13d{bottom:82.880005pt;}
.y14e{bottom:87.200074pt;}
.y176{bottom:88.640015pt;}
.y14d{bottom:91.040039pt;}
.y17e{bottom:92.480103pt;}
.y1b0{bottom:93.760010pt;}
.y33{bottom:94.080079pt;}
.yb9{bottom:98.880066pt;}
.y103{bottom:101.280030pt;}
.y87{bottom:102.560059pt;}
.ybf{bottom:102.720032pt;}
.y95{bottom:106.400086pt;}
.y175{bottom:107.040039pt;}
.y13c{bottom:110.400086pt;}
.y32{bottom:112.480042pt;}
.y144{bottom:114.240052pt;}
.y11b{bottom:114.880066pt;}
.y11e{bottom:118.720032pt;}
.y1af{bottom:119.680054pt;}
.yb8{bottom:126.400086pt;}
.y102{bottom:128.800049pt;}
.y86{bottom:130.080079pt;}
.y134{bottom:130.240052pt;}
.y31{bottom:130.880066pt;}
.ydd{bottom:132.960083pt;}
.ye4{bottom:136.800049pt;}
.y174{bottom:137.280030pt;}
.y13b{bottom:138.080079pt;}
.y1ae{bottom:139.840088pt;}
.y15b{bottom:140.320069pt;}
.y11a{bottom:142.400086pt;}
.y1ad{bottom:143.680054pt;}
.y126{bottom:146.240052pt;}
.y30{bottom:149.280030pt;}
.yb7{bottom:154.080079pt;}
.y101{bottom:156.480042pt;}
.y146{bottom:157.600037pt;}
.y85{bottom:157.760071pt;}
.ybe{bottom:157.920044pt;}
.y1ac{bottom:158.240052pt;}
.y1be{bottom:158.560059pt;}
.y10d{bottom:160.320069pt;}
.ydc{bottom:160.640076pt;}
.y8d{bottom:161.600037pt;}
.y173{bottom:163.680054pt;}
.y15a{bottom:164.160035pt;}
.ye1{bottom:164.480042pt;}
.y13a{bottom:165.600037pt;}
.y2f{bottom:167.680054pt;}
.y49{bottom:168.000061pt;}
.y119{bottom:170.080079pt;}
.y48{bottom:171.520081pt;}
.y118{bottom:173.920044pt;}
.y17d{bottom:178.240052pt;}
.y172{bottom:178.560059pt;}
.yb6{bottom:181.600037pt;}
.y171{bottom:182.080079pt;}
.y100{bottom:184.000061pt;}
.y84{bottom:185.280030pt;}
.y12f{bottom:185.440064pt;}
.y2e{bottom:186.080079pt;}
.ydb{bottom:188.160035pt;}
.y1ab{bottom:188.480042pt;}
.y159{bottom:191.680054pt;}
.yda{bottom:192.000061pt;}
.y139{bottom:193.280030pt;}
.y170{bottom:196.640076pt;}
.y140{bottom:197.120057pt;}
.y117{bottom:197.600037pt;}
.y145{bottom:201.440064pt;}
.y2d{bottom:204.480042pt;}
.y5a{bottom:208.320069pt;}
.yb5{bottom:209.280030pt;}
.y1aa{bottom:211.040039pt;}
.yff{bottom:211.680054pt;}
.y83{bottom:212.960083pt;}
.y1a9{bottom:214.880066pt;}
.y109{bottom:215.520081pt;}
.yd9{bottom:215.840088pt;}
.y158{bottom:219.360047pt;}
.y138{bottom:220.800049pt;}
.y2c{bottom:222.880066pt;}
.y157{bottom:223.200074pt;}
.y116{bottom:225.280030pt;}
.y16f{bottom:226.880066pt;}
.y150{bottom:229.120057pt;}
.y1a8{bottom:229.440064pt;}
.y1bd{bottom:229.760071pt;}
.yb4{bottom:236.800049pt;}
.yc4{bottom:240.640076pt;}
.y2b{bottom:241.280030pt;}
.yd8{bottom:243.360047pt;}
.y156{bottom:246.880066pt;}
.y1a7{bottom:247.840088pt;}
.y137{bottom:248.480042pt;}
.y16e{bottom:249.440064pt;}
.y1c1{bottom:251.680054pt;}
.y143{bottom:252.320069pt;}
.y115{bottom:252.800049pt;}
.y16d{bottom:253.280030pt;}
.yfe{bottom:255.200074pt;}
.y82{bottom:256.480042pt;}
.y128{bottom:256.640076pt;}
.yfd{bottom:258.720032pt;}
.y2a{bottom:259.680054pt;}
.y81{bottom:260.320069pt;}
.y59{bottom:263.520081pt;}
.y16c{bottom:267.840088pt;}
.y17c{bottom:268.160035pt;}
.y14c{bottom:268.800049pt;}
.y180{bottom:271.680054pt;}
.y14b{bottom:272.640076pt;}
.y155{bottom:274.560059pt;}
.y136{bottom:276.000061pt;}
.y29{bottom:278.080079pt;}
.y142{bottom:279.840088pt;}
.yb3{bottom:280.480042pt;}
.y7f{bottom:284.160035pt;}
.ybd{bottom:284.320069pt;}
.yd7{bottom:285.440064pt;}
.y16b{bottom:286.240052pt;}
.y94{bottom:288.000061pt;}
.y17f{bottom:290.080079pt;}
.yfc{bottom:293.440064pt;}
.y28{bottom:296.480042pt;}
.y108{bottom:297.280030pt;}
.y1a6{bottom:304.480042pt;}
.yb2{bottom:308.000061pt;}
.y154{bottom:309.120057pt;}
.yd6{bottom:309.280030pt;}
.y7e{bottom:311.680054pt;}
.y11d{bottom:311.840088pt;}
.y15e{bottom:312.640076pt;}
.y27{bottom:314.880066pt;}
.y16a{bottom:316.480042pt;}
.y58{bottom:318.720032pt;}
.y1a5{bottom:319.040039pt;}
.y135{bottom:319.680054pt;}
.yfb{bottom:321.120057pt;}
.y1bc{bottom:322.880066pt;}
.y13f{bottom:323.200074pt;}
.y14a{bottom:324.000061pt;}
.y47{bottom:333.280030pt;}
.y25{bottom:333.600037pt;}
.yb1{bottom:335.680054pt;}
.yd5{bottom:336.800049pt;}
.y24{bottom:337.120057pt;}
.y1a4{bottom:337.440064pt;}
.y169{bottom:339.040039pt;}
.y7d{bottom:339.360047pt;}
.y12e{bottom:339.520081pt;}
.y1a3{bottom:341.280030pt;}
.y17b{bottom:342.880066pt;}
.yfa{bottom:348.640076pt;}
.y153{bottom:351.040039pt;}
.y23{bottom:351.680054pt;}
.y107{bottom:352.480042pt;}
.y114{bottom:355.520081pt;}
.y168{bottom:357.440064pt;}
.y179{bottom:357.760071pt;}
.y178{bottom:361.280030pt;}
.yb0{bottom:363.200074pt;}
.yd4{bottom:364.480042pt;}
.ybc{bottom:367.040039pt;}
.y1a2{bottom:367.680054pt;}
.ye3{bottom:368.320069pt;}
.y22{bottom:370.080079pt;}
.y57{bottom:373.920044pt;}
.y167{bottom:375.840088pt;}
.yf9{bottom:376.320069pt;}
.y7c{bottom:377.440064pt;}
.y113{bottom:379.200074pt;}
.y177{bottom:379.680054pt;}
.y10c{bottom:380.160035pt;}
.y11f{bottom:383.040039pt;}
.y21{bottom:388.480042pt;}
.y1a1{bottom:390.240052pt;}
.yaf{bottom:390.880066pt;}
.yd3{bottom:392.000061pt;}
.y1bb{bottom:394.080079pt;}
.y133{bottom:394.720032pt;}
.yf8{bottom:403.840088pt;}
.y7b{bottom:406.400086pt;}
.y20{bottom:406.880066pt;}
.yf7{bottom:407.680054pt;}
.y1ba{bottom:408.640076pt;}
.y1a0{bottom:408.960083pt;}
.y1f{bottom:410.720032pt;}
.y1b9{bottom:412.480042pt;}
.y166{bottom:417.600037pt;}
.yae{bottom:418.400086pt;}
.yd2{bottom:419.680054pt;}
.yc3{bottom:422.240052pt;}
.y1e{bottom:425.280030pt;}
.y19f{bottom:426.880066pt;}
.y56{bottom:429.120057pt;}
.y7a{bottom:433.440064pt;}
.y112{bottom:434.400086pt;}
.yf6{bottom:436.960083pt;}
.y79{bottom:437.280030pt;}
.y123{bottom:438.240052pt;}
.y1d{bottom:443.680054pt;}
.y19e{bottom:445.280030pt;}
.yad{bottom:446.080079pt;}
.yd1{bottom:447.200074pt;}
.y1c0{bottom:449.120057pt;}
.y165{bottom:461.440064pt;}
.y1b{bottom:462.080079pt;}
.yf5{bottom:462.240052pt;}
.y78{bottom:464.000061pt;}
.y106{bottom:465.760071pt;}
.y1a{bottom:465.920044pt;}
.y8c{bottom:467.840088pt;}
.y12d{bottom:473.600037pt;}
.y19d{bottom:475.520081pt;}
.yd0{bottom:476.480042pt;}
.y132{bottom:477.440064pt;}
.ycf{bottom:480.320069pt;}
.y19{bottom:480.480042pt;}
.y77{bottom:483.680054pt;}
.y111{bottom:489.600037pt;}
.yac{bottom:493.440064pt;}
.y17{bottom:498.880066pt;}
.y12c{bottom:501.120057pt;}
.y19c{bottom:501.920044pt;}
.y76{bottom:503.520081pt;}
.yf4{bottom:504.160035pt;}
.y164{bottom:504.960083pt;}
.yce{bottom:507.360047pt;}
.ye2{bottom:511.360047pt;}
.y19b{bottom:516.480042pt;}
.yab{bottom:517.120057pt;}
.y15{bottom:517.280030pt;}
.y1b8{bottom:520.320069pt;}
.yaa{bottom:520.960083pt;}
.y14{bottom:521.120057pt;}
.y75{bottom:523.360047pt;}
.y12b{bottom:528.800049pt;}
.y163{bottom:532.640076pt;}
.y149{bottom:533.120057pt;}
.y19a{bottom:534.880066pt;}
.y14f{bottom:536.960083pt;}
.yf3{bottom:538.560059pt;}
.y199{bottom:538.720032pt;}
.y13{bottom:539.520081pt;}
.y105{bottom:542.400086pt;}
.y74{bottom:543.200074pt;}
.ya9{bottom:544.800049pt;}
.y8b{bottom:547.040039pt;}
.ycd{bottom:552.160035pt;}
.y12a{bottom:556.320069pt;}
.y131{bottom:560.160035pt;}
.y148{bottom:560.800049pt;}
.y73{bottom:563.040039pt;}
.y151{bottom:564.640076pt;}
.y198{bottom:565.120057pt;}
.yf2{bottom:566.080079pt;}
.y12{bottom:568.320069pt;}
.ya8{bottom:572.320069pt;}
.ybb{bottom:576.160035pt;}
.ycb{bottom:576.800049pt;}
.y72{bottom:583.040039pt;}
.y152{bottom:584.000061pt;}
.y197{bottom:587.680054pt;}
.y162{bottom:587.840088pt;}
.y147{bottom:588.320069pt;}
.y10{bottom:591.200074pt;}
.y196{bottom:591.520081pt;}
.yf1{bottom:593.760071pt;}
.yf{bottom:594.720032pt;}
.ya7{bottom:600.000061pt;}
.y71{bottom:602.880066pt;}
.y130{bottom:603.520081pt;}
.ya6{bottom:603.840088pt;}
.yca{bottom:605.760071pt;}
.y195{bottom:606.080079pt;}
.y1b7{bottom:606.400086pt;}
.ye0{bottom:609.600037pt;}
.y110{bottom:616.000061pt;}
.y11c{bottom:619.840058pt;}
.yf0{bottom:621.280060pt;}
.y70{bottom:622.720063pt;}
.y46{bottom:623.360047pt;}
.y194{bottom:624.480072pt;}
.y93{bottom:626.560059pt;}
.ya5{bottom:627.520050pt;}
.y15d{bottom:631.040070pt;}
.y161{bottom:631.360047pt;}
.yc9{bottom:633.920044pt;}
.yc8{bottom:637.760071pt;}
.y6f{bottom:642.560059pt;}
.y10f{bottom:643.520050pt;}
.y125{bottom:647.360047pt;}
.yef{bottom:648.960053pt;}
.y55{bottom:650.240052pt;}
.y193{bottom:654.720063pt;}
.ya4{bottom:655.200074pt;}
.y45{bottom:660.000061pt;}
.y6e{bottom:662.400055pt;}
.y44{bottom:662.560059pt;}
.y10e{bottom:671.200074pt;}
.yc7{bottom:672.160065pt;}
.y15c{bottom:675.040070pt;}
.y54{bottom:675.200074pt;}
.ydf{bottom:675.680054pt;}
.yee{bottom:676.480072pt;}
.y10b{bottom:680.320069pt;}
.y192{bottom:681.120057pt;}
.y6d{bottom:682.240052pt;}
.y160{bottom:682.720063pt;}
.y92{bottom:686.080048pt;}
.y43{bottom:687.520050pt;}
.y42{bottom:690.080048pt;}
.y191{bottom:695.680054pt;}
.ya3{bottom:698.720063pt;}
.y1b6{bottom:699.520050pt;}
.y6c{bottom:702.080048pt;}
.ya2{bottom:702.560059pt;}
.y53{bottom:702.720063pt;}
.yed{bottom:704.160065pt;}
.y104{bottom:708.000061pt;}
.y15f{bottom:710.400055pt;}
.y190{bottom:714.080048pt;}
.yc6{bottom:714.240052pt;}
.y41{bottom:715.200074pt;}
.y52{bottom:717.760071pt;}
.y18f{bottom:717.920044pt;}
.y6b{bottom:721.920044pt;}
.y8a{bottom:722.240052pt;}
.y91{bottom:725.760071pt;}
.ya1{bottom:726.400055pt;}
.y40{bottom:727.520050pt;}
.yba{bottom:730.240052pt;}
.y51{bottom:730.400055pt;}
.yec{bottom:731.680054pt;}
.y10a{bottom:735.520050pt;}
.y6a{bottom:741.760071pt;}
.y3e{bottom:742.720063pt;}
.y18e{bottom:744.320069pt;}
.y50{bottom:745.280060pt;}
.y90{bottom:745.600068pt;}
.ya0{bottom:753.920044pt;}
.y3c{bottom:755.040070pt;}
.yde{bottom:757.760071pt;}
.y4f{bottom:757.920044pt;}
.y69{bottom:761.600068pt;}
.y18d{bottom:767.200074pt;}
.y3a{bottom:770.400055pt;}
.y1b5{bottom:770.720063pt;}
.y4e{bottom:772.960053pt;}
.yeb{bottom:773.760071pt;}
.y68{bottom:781.600068pt;}
.y38{bottom:782.720063pt;}
.y18c{bottom:785.280060pt;}
.yc2{bottom:785.440064pt;}
.y4d{bottom:785.600068pt;}
.yea{bottom:797.600068pt;}
.y67{bottom:801.440064pt;}
.y89{bottom:801.760071pt;}
.y18b{bottom:803.680054pt;}
.y8f{bottom:805.280060pt;}
.y9f{bottom:809.120057pt;}
.ye{bottom:811.520050pt;}
.yc1{bottom:812.960053pt;}
.y66{bottom:821.280060pt;}
.ye9{bottom:825.120057pt;}
.ye8{bottom:828.960053pt;}
.y18a{bottom:833.920044pt;}
.y9e{bottom:836.800049pt;}
.yc{bottom:840.960053pt;}
.y65{bottom:841.120057pt;}
.y4c{bottom:844.480072pt;}
.y88{bottom:844.960053pt;}
.ye7{bottom:852.800049pt;}
.y1b4{bottom:856.480072pt;}
.y129{bottom:856.640046pt;}
.y189{bottom:856.800049pt;}
.y188{bottom:860.320069pt;}
.y64{bottom:860.960053pt;}
.y9d{bottom:864.320069pt;}
.y8e{bottom:864.800049pt;}
.y141{bottom:868.160065pt;}
.y187{bottom:874.880066pt;}
.ya{bottom:876.640061pt;}
.y37{bottom:880.160065pt;}
.ye5{bottom:880.320054pt;}
.y62{bottom:880.800064pt;}
.yc5{bottom:884.160065pt;}
.y122{bottom:892.000061pt;}
.y127{bottom:895.840058pt;}
.y61{bottom:900.640061pt;}
.y8{bottom:904.160065pt;}
.y60{bottom:904.480057pt;}
.y186{bottom:905.120057pt;}
.y9c{bottom:908.000061pt;}
.y9b{bottom:911.840058pt;}
.y121{bottom:919.520066pt;}
.y184{bottom:927.680054pt;}
.y1b3{bottom:931.520066pt;}
.y5f{bottom:934.880066pt;}
.y9a{bottom:935.520066pt;}
.y99{bottom:939.360062pt;}
.y36{bottom:943.360062pt;}
.y183{bottom:946.080063pt;}
.y1b1{bottom:946.400055pt;}
.y120{bottom:947.200058pt;}
.y1bf{bottom:949.920060pt;}
.y5d{bottom:961.920060pt;}
.y98{bottom:963.200058pt;}
.y182{bottom:964.480057pt;}
.y5c{bottom:965.760056pt;}
.y6{bottom:966.240052pt;}
.yc0{bottom:967.040055pt;}
.y181{bottom:968.320054pt;}
.y4b{bottom:970.400055pt;}
.y4{bottom:987.680054pt;}
.y97{bottom:990.720063pt;}
.y3{bottom:991.840058pt;}
.y124{bottom:994.240052pt;}
.y96{bottom:994.560059pt;}
.y5b{bottom:994.720063pt;}
.y1{bottom:1092.320059pt;}
.h13{height:12.159973pt;}
.h12{height:12.160003pt;}
.hf{height:12.160004pt;}
.h11{height:14.879974pt;}
.he{height:14.880005pt;}
.h1f{height:18.239960pt;}
.h7{height:18.239990pt;}
.hd{height:18.239991pt;}
.h19{height:18.239998pt;}
.h9{height:18.240005pt;}
.h1a{height:18.240006pt;}
.h17{height:18.240020pt;}
.ha{height:18.240021pt;}
.hc{height:18.240051pt;}
.h1e{height:18.240052pt;}
.h1b{height:18.880005pt;}
.h5{height:21.280007pt;}
.h6{height:21.280014pt;}
.h15{height:38.086734pt;}
.h10{height:38.442684pt;}
.h18{height:44.439169pt;}
.hb{height:47.182089pt;}
.h3{height:47.623043pt;}
.h14{height:52.298382pt;}
.h8{height:56.845885pt;}
.h2{height:57.377155pt;}
.h1c{height:59.672152pt;}
.h16{height:61.967514pt;}
.h1d{height:64.836260pt;}
.h4{height:66.509671pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w76{width:0.640014pt;}
.w14b{width:0.799988pt;}
.w85{width:0.959991pt;}
.w7c{width:1.599975pt;}
.w166{width:1.760010pt;}
.w5a{width:1.919983pt;}
.w4d{width:2.080017pt;}
.w79{width:2.239990pt;}
.w120{width:2.399994pt;}
.w175{width:3.520019pt;}
.wf9{width:3.520020pt;}
.w15c{width:3.679993pt;}
.wba{width:3.840027pt;}
.w11f{width:4.159973pt;}
.w65{width:4.479981pt;}
.w87{width:4.799988pt;}
.w19{width:4.959991pt;}
.wf{width:5.119995pt;}
.w91{width:5.279968pt;}
.w13b{width:5.279999pt;}
.w13d{width:5.760010pt;}
.w108{width:5.919983pt;}
.wbf{width:7.519989pt;}
.w10f{width:7.520020pt;}
.w118{width:7.679993pt;}
.w15e{width:8.000000pt;}
.w15f{width:8.320007pt;}
.w5d{width:8.480011pt;}
.w17f{width:9.760010pt;}
.w151{width:11.679993pt;}
.w6f{width:11.840027pt;}
.w155{width:12.959992pt;}
.w13{width:13.280030pt;}
.wf2{width:13.599975pt;}
.wf0{width:14.719970pt;}
.w2f{width:15.359985pt;}
.w16c{width:15.679993pt;}
.wc6{width:16.320007pt;}
.w78{width:16.799988pt;}
.wf3{width:17.440002pt;}
.w10b{width:17.599975pt;}
.w66{width:17.760010pt;}
.wad{width:18.080017pt;}
.wab{width:18.880005pt;}
.w14c{width:19.359985pt;}
.w156{width:19.679993pt;}
.w160{width:20.479980pt;}
.w5{width:20.640015pt;}
.w150{width:21.279968pt;}
.w37{width:21.919983pt;}
.w100{width:22.079986pt;}
.w68{width:22.559998pt;}
.w140{width:23.199982pt;}
.w1e{width:23.520020pt;}
.w167{width:24.160034pt;}
.w12c{width:24.479980pt;}
.w42{width:25.119995pt;}
.w10d{width:25.600006pt;}
.wcb{width:25.919983pt;}
.w105{width:26.559998pt;}
.wbc{width:27.519989pt;}
.w7{width:27.520020pt;}
.wb{width:29.119995pt;}
.wc9{width:30.559997pt;}
.w20{width:31.359986pt;}
.w6b{width:31.519989pt;}
.w59{width:31.520019pt;}
.wbd{width:32.000000pt;}
.w2{width:32.160004pt;}
.wc8{width:32.480011pt;}
.w12f{width:33.119995pt;}
.w139{width:33.280030pt;}
.w61{width:33.760010pt;}
.w6c{width:34.720001pt;}
.w122{width:34.880005pt;}
.wc7{width:36.320007pt;}
.w130{width:36.479980pt;}
.w10a{width:36.959961pt;}
.w132{width:37.440003pt;}
.w153{width:39.360001pt;}
.w9a{width:39.680008pt;}
.w46{width:41.440003pt;}
.w12d{width:42.080017pt;}
.w8b{width:42.239990pt;}
.w11d{width:43.039978pt;}
.w97{width:43.200012pt;}
.wd0{width:44.320007pt;}
.wcc{width:44.799988pt;}
.wa2{width:45.600006pt;}
.w17a{width:46.880005pt;}
.w9e{width:47.359986pt;}
.w27{width:47.679992pt;}
.w123{width:47.679993pt;}
.w133{width:47.680008pt;}
.w75{width:47.840027pt;}
.w3e{width:48.800003pt;}
.w96{width:49.120010pt;}
.w3a{width:49.600006pt;}
.w8f{width:49.600037pt;}
.w113{width:49.760010pt;}
.w13f{width:50.080017pt;}
.w90{width:51.039978pt;}
.w135{width:51.200012pt;}
.wa1{width:52.000000pt;}
.w16e{width:52.799988pt;}
.w125{width:53.279999pt;}
.w57{width:53.440002pt;}
.w48{width:54.080017pt;}
.waa{width:54.399963pt;}
.w36{width:55.679992pt;}
.we2{width:55.680008pt;}
.w6a{width:56.640015pt;}
.w17{width:56.799988pt;}
.wdc{width:57.440002pt;}
.w15{width:58.239990pt;}
.w152{width:58.240006pt;}
.waf{width:58.400009pt;}
.w10c{width:58.719970pt;}
.w77{width:59.359985pt;}
.w11b{width:59.359986pt;}
.w4f{width:59.679993pt;}
.wc5{width:60.159973pt;}
.w137{width:60.640000pt;}
.w172{width:60.799988pt;}
.w110{width:60.800003pt;}
.wc3{width:61.119995pt;}
.w26{width:62.719970pt;}
.w4e{width:62.720001pt;}
.w5f{width:63.360001pt;}
.w92{width:63.520019pt;}
.w11{width:63.520020pt;}
.w47{width:63.839996pt;}
.wd1{width:65.279968pt;}
.w3{width:66.880005pt;}
.w12e{width:67.839966pt;}
.wd8{width:67.839997pt;}
.wb7{width:68.000000pt;}
.w17d{width:68.159973pt;}
.w80{width:68.799988pt;}
.w146{width:69.440002pt;}
.w136{width:69.440003pt;}
.wcf{width:69.599975pt;}
.w54{width:70.080017pt;}
.we8{width:70.240021pt;}
.w60{width:70.400009pt;}
.w98{width:71.360001pt;}
.wfe{width:71.679993pt;}
.w6{width:71.840012pt;}
.w131{width:72.479980pt;}
.w164{width:72.480011pt;}
.wf7{width:73.440002pt;}
.w12a{width:75.199982pt;}
.w7b{width:75.200012pt;}
.w3b{width:76.000000pt;}
.w58{width:76.799988pt;}
.w32{width:80.479980pt;}
.wa8{width:80.640014pt;}
.wc{width:81.120010pt;}
.w33{width:81.440002pt;}
.w111{width:82.080002pt;}
.w89{width:82.400025pt;}
.w8{width:82.559998pt;}
.w35{width:82.719970pt;}
.wef{width:82.720001pt;}
.wf5{width:82.880005pt;}
.we6{width:83.040009pt;}
.w95{width:83.200012pt;}
.wd4{width:83.680008pt;}
.w16b{width:83.839996pt;}
.w11c{width:85.919983pt;}
.w7d{width:86.559998pt;}
.w158{width:86.880005pt;}
.w147{width:87.039978pt;}
.w127{width:88.000000pt;}
.w102{width:88.479980pt;}
.w17e{width:88.640014pt;}
.w10e{width:89.120010pt;}
.we4{width:89.440003pt;}
.wde{width:90.080017pt;}
.w173{width:90.399963pt;}
.w121{width:90.400009pt;}
.w141{width:90.559997pt;}
.w145{width:90.720001pt;}
.w2e{width:90.880005pt;}
.wea{width:91.520020pt;}
.wc2{width:91.679992pt;}
.w5b{width:92.159973pt;}
.wd6{width:92.479980pt;}
.w62{width:93.919998pt;}
.wd9{width:94.399994pt;}
.web{width:94.720001pt;}
.w3c{width:94.880005pt;}
.wb0{width:95.360001pt;}
.w94{width:98.880005pt;}
.w3f{width:99.040008pt;}
.w114{width:99.199982pt;}
.wae{width:99.200012pt;}
.w17b{width:99.520019pt;}
.w9c{width:100.800019pt;}
.w109{width:102.239990pt;}
.w23{width:102.559997pt;}
.w15b{width:103.359985pt;}
.w144{width:103.839997pt;}
.w72{width:104.000000pt;}
.w24{width:104.799988pt;}
.w129{width:105.119995pt;}
.w7f{width:105.600006pt;}
.we0{width:105.760010pt;}
.w1b{width:105.919983pt;}
.wb5{width:106.720001pt;}
.w116{width:107.040008pt;}
.w40{width:107.680023pt;}
.w176{width:109.279968pt;}
.wac{width:109.600006pt;}
.w148{width:109.760010pt;}
.w34{width:111.200012pt;}
.wdf{width:111.359985pt;}
.w165{width:111.519989pt;}
.w15a{width:111.839997pt;}
.w44{width:113.279999pt;}
.w4a{width:114.400025pt;}
.w2d{width:115.039978pt;}
.w56{width:115.679992pt;}
.w169{width:115.839997pt;}
.w7a{width:116.000000pt;}
.wb6{width:118.080017pt;}
.wa{width:118.400009pt;}
.w14e{width:119.359985pt;}
.w84{width:119.519989pt;}
.wf4{width:119.839966pt;}
.wc4{width:121.119995pt;}
.w11e{width:121.599975pt;}
.w7e{width:122.400009pt;}
.wa3{width:122.559997pt;}
.wa0{width:122.880005pt;}
.w22{width:124.960022pt;}
.w3d{width:125.440003pt;}
.w14a{width:125.599975pt;}
.w63{width:125.760010pt;}
.w99{width:126.240006pt;}
.wa9{width:126.719970pt;}
.w51{width:127.039978pt;}
.w178{width:127.679992pt;}
.w177{width:128.000000pt;}
.w17c{width:129.119995pt;}
.w14d{width:129.440002pt;}
.wf1{width:130.399963pt;}
.wa6{width:132.000000pt;}
.wf6{width:133.119995pt;}
.w5c{width:133.919983pt;}
.w38{width:134.080017pt;}
.w16f{width:134.239990pt;}
.w14f{width:134.880005pt;}
.w82{width:136.160004pt;}
.w174{width:136.959961pt;}
.w53{width:137.760010pt;}
.w5e{width:139.360001pt;}
.w25{width:139.520019pt;}
.w8c{width:139.679993pt;}
.w180{width:139.839966pt;}
.wd2{width:139.840012pt;}
.w170{width:140.000000pt;}
.w55{width:140.320007pt;}
.w52{width:140.479980pt;}
.wb2{width:140.639984pt;}
.wfb{width:141.440003pt;}
.w149{width:142.399963pt;}
.we1{width:143.200012pt;}
.wa5{width:143.839996pt;}
.w28{width:145.440002pt;}
.w2c{width:145.760010pt;}
.wb3{width:146.240021pt;}
.w171{width:146.880005pt;}
.w8d{width:147.200012pt;}
.w2a{width:148.000000pt;}
.w179{width:148.159973pt;}
.w29{width:148.640014pt;}
.w2b{width:148.799988pt;}
.w39{width:149.279968pt;}
.w31{width:149.440002pt;}
.w30{width:149.599975pt;}
.wa7{width:149.600006pt;}
.w93{width:149.760010pt;}
.w73{width:149.920014pt;}
.w83{width:150.720001pt;}
.w154{width:153.279999pt;}
.w134{width:158.400009pt;}
.wa4{width:159.040009pt;}
.wfa{width:159.200005pt;}
.wd3{width:161.120003pt;}
.w21{width:161.919983pt;}
.w4{width:162.240006pt;}
.wce{width:162.559997pt;}
.wed{width:163.359985pt;}
.w9f{width:164.000000pt;}
.w168{width:167.040008pt;}
.w49{width:172.479980pt;}
.w9{width:173.440003pt;}
.w43{width:173.600006pt;}
.wf8{width:173.760002pt;}
.w117{width:174.559998pt;}
.w159{width:175.040008pt;}
.w18{width:176.480011pt;}
.wb1{width:179.199982pt;}
.wb4{width:179.519989pt;}
.wda{width:180.320008pt;}
.w9b{width:180.639984pt;}
.w1c{width:180.960022pt;}
.w128{width:181.760010pt;}
.w115{width:182.880005pt;}
.w143{width:183.040008pt;}
.wb8{width:184.160004pt;}
.wbb{width:188.320007pt;}
.w16{width:189.920014pt;}
.w14{width:190.880005pt;}
.w11a{width:194.239990pt;}
.we9{width:195.519989pt;}
.w142{width:196.320008pt;}
.we3{width:197.600006pt;}
.wee{width:198.880005pt;}
.w162{width:199.519989pt;}
.w157{width:200.000000pt;}
.w112{width:202.559997pt;}
.wfd{width:203.679993pt;}
.we5{width:203.839996pt;}
.w10{width:204.000000pt;}
.w88{width:204.479980pt;}
.w6d{width:206.400025pt;}
.w13a{width:206.720001pt;}
.w74{width:207.040008pt;}
.w12b{width:207.360016pt;}
.w81{width:212.960022pt;}
.wdb{width:213.279999pt;}
.wd7{width:214.239990pt;}
.w163{width:214.399994pt;}
.wff{width:215.200012pt;}
.we7{width:216.639984pt;}
.w104{width:217.600006pt;}
.w50{width:220.640015pt;}
.w124{width:223.519989pt;}
.w69{width:225.760010pt;}
.w103{width:228.160004pt;}
.w126{width:228.320008pt;}
.wdd{width:229.440003pt;}
.w8e{width:231.839966pt;}
.w71{width:233.599975pt;}
.w16d{width:234.080017pt;}
.w16a{width:238.559998pt;}
.w4b{width:239.359985pt;}
.w9d{width:239.520019pt;}
.w106{width:242.559997pt;}
.w8a{width:244.640015pt;}
.w13e{width:245.119995pt;}
.w45{width:245.440002pt;}
.w6e{width:245.919983pt;}
.wbe{width:249.600006pt;}
.wd5{width:251.839966pt;}
.w138{width:253.599975pt;}
.w1f{width:255.520019pt;}
.w1d{width:257.440002pt;}
.w161{width:258.400025pt;}
.wfc{width:259.359985pt;}
.wca{width:260.960022pt;}
.w41{width:261.760010pt;}
.w67{width:264.320007pt;}
.w101{width:264.960022pt;}
.wcd{width:270.080017pt;}
.w12{width:271.680023pt;}
.w86{width:274.080017pt;}
.wc1{width:275.520019pt;}
.w13c{width:276.480011pt;}
.w1a{width:276.800019pt;}
.wec{width:278.559997pt;}
.w15d{width:279.039978pt;}
.w119{width:279.200012pt;}
.wc0{width:279.360016pt;}
.w107{width:280.960022pt;}
.we{width:281.760010pt;}
.w64{width:282.400024pt;}
.wb9{width:283.039978pt;}
.w4c{width:284.799988pt;}
.w70{width:284.960022pt;}
.wd{width:286.880005pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x48{left:-460.160012pt;}
.x35{left:-448.960007pt;}
.xef{left:-447.840012pt;}
.x116{left:-445.920014pt;}
.x16a{left:-439.680008pt;}
.xff{left:-429.920014pt;}
.x92{left:-426.080017pt;}
.x79{left:-412.160004pt;}
.x49{left:-405.120011pt;}
.x164{left:-393.440003pt;}
.xb1{left:-392.320008pt;}
.xd5{left:-385.920014pt;}
.xda{left:-382.080017pt;}
.x98{left:-380.640015pt;}
.x139{left:-377.120011pt;}
.x125{left:-375.840012pt;}
.xad{left:-373.280014pt;}
.xf2{left:-370.400009pt;}
.x47{left:-369.280014pt;}
.x6b{left:-362.720017pt;}
.x36{left:-358.560013pt;}
.x128{left:-347.520005pt;}
.x101{left:-342.400009pt;}
.x14a{left:-337.920014pt;}
.x69{left:-336.320008pt;}
.xbf{left:-329.920014pt;}
.x167{left:-326.080017pt;}
.x149{left:-324.160004pt;}
.xe4{left:-323.040009pt;}
.x96{left:-320.480011pt;}
.x32{left:-318.880005pt;}
.x45{left:-314.240021pt;}
.x124{left:-312.320008pt;}
.xe3{left:-303.040009pt;}
.x91{left:-295.200012pt;}
.x127{left:-294.240021pt;}
.x137{left:-289.119995pt;}
.xd9{left:-279.360016pt;}
.x4c{left:-276.800019pt;}
.x3a{left:-271.680023pt;}
.x114{left:-264.960022pt;}
.x166{left:-258.400025pt;}
.xd8{left:-249.600006pt;}
.x14b{left:-245.119995pt;}
.x169{left:-238.559998pt;}
.xf1{left:-229.440003pt;}
.x115{left:-228.160004pt;}
.x7b{left:-220.640015pt;}
.x113{left:-215.200012pt;}
.xaa{left:-212.960022pt;}
.x136{left:-207.360016pt;}
.x97{left:-206.400025pt;}
.x14d{left:-196.320008pt;}
.x3d{left:-190.880005pt;}
.x3f{left:-189.920014pt;}
.xd3{left:-184.160004pt;}
.x126{left:-182.880005pt;}
.x4e{left:-180.960022pt;}
.x43{left:-176.480011pt;}
.x12a{left:-174.559998pt;}
.x25{left:-173.280007pt;}
.x14{left:-162.080002pt;}
.xe8{left:-160.960007pt;}
.xc1{left:-159.040009pt;}
.x15d{left:-152.800003pt;}
.x9b{left:-149.920014pt;}
.xb0{left:-147.200012pt;}
.xd1{left:-146.240021pt;}
.xf7{left:-143.040009pt;}
.x111{left:-141.279999pt;}
.x83{left:-139.200012pt;}
.xb9{left:-126.080002pt;}
.x54{left:-124.960022pt;}
.xa5{left:-122.240006pt;}
.x26{left:-118.240006pt;}
.x168{left:-115.839997pt;}
.x76{left:-114.400025pt;}
.x70{left:-113.279999pt;}
.x165{left:-111.839997pt;}
.xc7{left:-109.440003pt;}
.x6d{left:-107.680023pt;}
.x154{left:-106.559998pt;}
.xa7{left:-105.440003pt;}
.x14e{left:-103.839997pt;}
.xc0{left:-100.800019pt;}
.xcd{left:-99.040009pt;}
.x64{left:-94.720001pt;}
.x8c{left:-93.760010pt;}
.x100{left:-91.520020pt;}
.xfe{left:-89.440003pt;}
.xa4{left:-86.400009pt;}
.xee{left:-83.520004pt;}
.x24{left:-82.400009pt;}
.x2a{left:-80.960007pt;}
.x5a{left:-75.840012pt;}
.x17{left:-71.680008pt;}
.x87{left:-70.240006pt;}
.x145{left:-69.279999pt;}
.xf0{left:-67.839997pt;}
.x11{left:-66.720001pt;}
.x38{left:-63.520020pt;}
.x11e{left:-60.640000pt;}
.x12b{left:-59.359986pt;}
.x3e{left:-58.239990pt;}
.x41{left:-56.799988pt;}
.xf9{left:-55.520004pt;}
.x75{left:-54.080017pt;}
.x16c{left:-52.799988pt;}
.x140{left:-51.040009pt;}
.x59{left:-49.440003pt;}
.x9d{left:-47.840027pt;}
.xb3{left:-43.040009pt;}
.x74{left:-41.440003pt;}
.xbd{left:-39.520004pt;}
.x13f{left:-37.279999pt;}
.xdf{left:-36.160004pt;}
.x89{left:-33.600006pt;}
.x10{left:-32.000000pt;}
.x27{left:-28.959992pt;}
.x23{left:-27.360016pt;}
.x6e{left:-25.119995pt;}
.x52{left:-23.520020pt;}
.x94{left:-22.559998pt;}
.x15{left:-20.480011pt;}
.x162{left:-19.520020pt;}
.xc9{left:-17.920014pt;}
.xde{left:-16.160004pt;}
.x3b{left:-13.280030pt;}
.x9a{left:-11.840027pt;}
.x82{left:-8.320007pt;}
.x11d{left:-7.360016pt;}
.x33{left:-5.119995pt;}
.xd4{left:-3.840027pt;}
.x77{left:-2.080017pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.x5{left:124.639999pt;}
.xe6{left:125.760002pt;}
.x106{left:127.680000pt;}
.x151{left:133.600006pt;}
.xf4{left:143.679993pt;}
.x107{left:145.440002pt;}
.x7d{left:147.520004pt;}
.x58{left:161.440002pt;}
.x9f{left:164.479996pt;}
.xb{left:168.479996pt;}
.xc3{left:177.279999pt;}
.x14f{left:180.160004pt;}
.xa0{left:181.279999pt;}
.xc5{left:187.679993pt;}
.x57{left:192.000000pt;}
.x81{left:192.960007pt;}
.x12d{left:196.479996pt;}
.x118{left:197.759995pt;}
.x9e{left:200.320007pt;}
.xe7{left:203.199997pt;}
.xa{left:204.320007pt;}
.xd{left:205.759995pt;}
.x56{left:210.880005pt;}
.x7{left:215.039993pt;}
.x7f{left:216.479996pt;}
.x13d{left:217.440002pt;}
.x4{left:220.000000pt;}
.x7e{left:223.520004pt;}
.x11a{left:226.080002pt;}
.xc6{left:228.479996pt;}
.x2{left:230.720001pt;}
.x13c{left:235.679993pt;}
.x55{left:237.279999pt;}
.x13b{left:239.199997pt;}
.x8{left:243.360001pt;}
.xb2{left:247.199997pt;}
.x13a{left:249.440002pt;}
.xdc{left:250.559998pt;}
.x80{left:253.119995pt;}
.x3{left:254.720001pt;}
.xc{left:257.760010pt;}
.x9{left:259.359985pt;}
.x117{left:261.279999pt;}
.x6{left:266.239990pt;}
.x153{left:267.200012pt;}
.xc4{left:268.799988pt;}
.xdb{left:270.559998pt;}
.x152{left:273.920013pt;}
.x150{left:275.200012pt;}
.x7c{left:278.399994pt;}
.x119{left:279.359985pt;}
.x105{left:283.359985pt;}
.x12c{left:284.480011pt;}
.xf{left:286.880005pt;}
.xa3{left:287.839996pt;}
.x10c{left:288.799988pt;}
.x28{left:291.679993pt;}
.x141{left:292.640015pt;}
.xd0{left:294.399994pt;}
.x29{left:296.959991pt;}
.x19{left:302.079987pt;}
.x84{left:304.640015pt;}
.x157{left:307.359985pt;}
.x10a{left:308.799988pt;}
.x143{left:310.079987pt;}
.x132{left:311.359985pt;}
.xce{left:314.239990pt;}
.x158{left:315.359985pt;}
.xdd{left:317.440002pt;}
.x88{left:318.399994pt;}
.x8a{left:321.600006pt;}
.x15b{left:323.200012pt;}
.xcf{left:324.160004pt;}
.x142{left:328.640015pt;}
.xb8{left:332.480011pt;}
.x15c{left:335.200012pt;}
.x11c{left:336.640015pt;}
.xb7{left:338.880005pt;}
.x12e{left:340.160004pt;}
.xed{left:344.320007pt;}
.x10d{left:345.600006pt;}
.x67{left:346.559998pt;}
.x163{left:347.679993pt;}
.x66{left:349.600006pt;}
.x60{left:350.720001pt;}
.x68{left:353.119995pt;}
.xa1{left:355.519989pt;}
.x109{left:358.559998pt;}
.xa2{left:360.799988pt;}
.x130{left:362.079987pt;}
.x131{left:366.399994pt;}
.x8b{left:367.359985pt;}
.x15e{left:370.720001pt;}
.x10b{left:375.359985pt;}
.x144{left:377.440002pt;}
.x13{left:378.559998pt;}
.xec{left:381.119995pt;}
.x1b{left:382.880005pt;}
.x1d{left:383.839996pt;}
.x5b{left:385.920013pt;}
.x30{left:389.440002pt;}
.x8e{left:390.880005pt;}
.x2b{left:392.799988pt;}
.x20{left:394.559998pt;}
.x21{left:397.279999pt;}
.x11f{left:399.200012pt;}
.x1e{left:401.600006pt;}
.x22{left:406.880005pt;}
.xe{left:408.320007pt;}
.xba{left:409.440002pt;}
.xbb{left:414.720001pt;}
.xbe{left:418.880005pt;}
.x161{left:421.119995pt;}
.x8f{left:423.839996pt;}
.xa6{left:426.559998pt;}
.xc8{left:427.519989pt;}
.xbc{left:430.720001pt;}
.x2f{left:448.799988pt;}
.xb6{left:450.880005pt;}
.x159{left:453.920013pt;}
.xca{left:455.679993pt;}
.x15a{left:457.920013pt;}
.x62{left:459.359985pt;}
.x5e{left:460.480011pt;}
.x156{left:461.920013pt;}
.x5c{left:466.079987pt;}
.xb4{left:467.519989pt;}
.x12f{left:468.640015pt;}
.x146{left:469.920013pt;}
.xb5{left:472.959991pt;}
.xcc{left:475.200012pt;}
.x120{left:481.119995pt;}
.xf8{left:482.239990pt;}
.xf5{left:484.320007pt;}
.xfb{left:485.760010pt;}
.x155{left:486.880005pt;}
.x11b{left:489.440002pt;}
.x16{left:490.880005pt;}
.x90{left:493.920013pt;}
.xea{left:501.119995pt;}
.xf6{left:503.519989pt;}
.x10e{left:504.480011pt;}
.xeb{left:505.920013pt;}
.x18{left:510.239990pt;}
.x86{left:512.640015pt;}
.x121{left:514.400024pt;}
.x1c{left:515.520020pt;}
.x1f{left:516.960022pt;}
.xa8{left:518.719971pt;}
.x61{left:519.679993pt;}
.x160{left:520.960022pt;}
.xa9{left:524.159973pt;}
.x63{left:526.239990pt;}
.x110{left:529.440002pt;}
.x5f{left:532.320007pt;}
.xe9{left:538.719971pt;}
.x13e{left:540.479980pt;}
.x2e{left:542.400024pt;}
.x2c{left:544.320007pt;}
.x108{left:546.239990pt;}
.x10f{left:547.200012pt;}
.x5d{left:548.640015pt;}
.x2d{left:550.239990pt;}
.x85{left:551.200012pt;}
.xe0{left:556.960022pt;}
.x15f{left:558.080017pt;}
.x1a{left:560.479980pt;}
.x8d{left:561.919983pt;}
.xfa{left:565.440002pt;}
.x12{left:568.640015pt;}
.xcb{left:569.919983pt;}
.x65{left:571.679993pt;}
.x31{left:573.760010pt;}
.x78{left:575.679993pt;}
.x40{left:576.799988pt;}
.x129{left:577.919983pt;}
.xac{left:579.039978pt;}
.x16b{left:583.520020pt;}
.xfd{left:587.359985pt;}
.x46{left:589.119995pt;}
.x95{left:590.559998pt;}
.xe1{left:591.520020pt;}
.xc2{left:592.640015pt;}
.x51{left:595.679993pt;}
.x73{left:605.280029pt;}
.x135{left:606.880005pt;}
.x112{left:610.719971pt;}
.x133{left:615.840027pt;}
.x123{left:616.799988pt;}
.xe2{left:618.080017pt;}
.x37{left:621.440002pt;}
.xab{left:624.799988pt;}
.x71{left:627.200012pt;}
.x50{left:629.440002pt;}
.x93{left:632.960022pt;}
.xd7{left:633.919983pt;}
.xd2{left:634.880005pt;}
.xae{left:637.280029pt;}
.xe5{left:639.039978pt;}
.x134{left:641.599976pt;}
.x6f{left:643.840027pt;}
.x138{left:646.239990pt;}
.x104{left:647.200012pt;}
.x9c{left:648.799988pt;}
.x72{left:650.559998pt;}
.x4a{left:654.239990pt;}
.x4b{left:655.200012pt;}
.x4f{left:656.479980pt;}
.x122{left:659.679993pt;}
.x147{left:660.799988pt;}
.x44{left:664.640015pt;}
.x7a{left:665.919983pt;}
.xaf{left:672.640015pt;}
.xf3{left:679.359985pt;}
.x148{left:683.520020pt;}
.x4d{left:684.960022pt;}
.x42{left:688.799988pt;}
.x99{left:689.760010pt;}
.x102{left:693.599976pt;}
.xd6{left:694.880005pt;}
.x14c{left:699.359985pt;}
.x6a{left:700.799988pt;}
.xfc{left:704.159973pt;}
.x103{left:706.880005pt;}
.x53{left:707.840027pt;}
.x6c{left:710.080017pt;}
.x34{left:713.280029pt;}
.x39{left:719.200012pt;}
.x3c{left:722.400024pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  