
    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_e9ad7a95950806df5b730744.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.193359;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_8a3ac6c523e8bd2aca58d997.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_136dd4104a8925bb3a0e40de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.039000;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_fdd9e7fe1fdcc47f96e4c385.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.176000;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:ff5;src:url('chunks/assets/font_b359132764afd3449287a54f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.193359;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:ff6;src:url('chunks/assets/font_7e5baeb7367c38f3817f855d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023000;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:ff7;src:url('chunks/assets/font_4b6b217bf6eb7158fa63574f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.013000;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:ff8;src:url('chunks/assets/font_ef1868d35052250bbce81b41.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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:ff9;src:url('chunks/assets/font_b998a26b0069bca2d1a8baa2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.879395;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:ffa;src:url('chunks/assets/font_6395a28a79248588b78f44db.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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:ffb;src:url('chunks/assets/font_7cb9d00e6be938df5597e22e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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:ffc;src:url('chunks/assets/font_b70f5e7901d675fb548ff4d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909180;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);}
.m2{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.976000px;}
.v4{vertical-align:-19.979400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.v2{vertical-align:23.976000px;}
.ls9{letter-spacing:-1.518000px;}
.ls1{letter-spacing:-1.296000px;}
.ls2{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000600px;}
.ls7{letter-spacing:3.599400px;}
.ls5{letter-spacing:3.925800px;}
.ls4{letter-spacing:5.163000px;}
.ls6{letter-spacing:12.174000px;}
.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;}
}
.ws38{word-spacing:-18.000000px;}
.ws1f{word-spacing:-16.500000px;}
.ws21{word-spacing:-15.000000px;}
.ws43{word-spacing:-14.850000px;}
.ws27{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.600000px;}
.ws4{word-spacing:-12.300000px;}
.ws0{word-spacing:-11.880000px;}
.ws3{word-spacing:-11.520000px;}
.ws2{word-spacing:-10.800000px;}
.ws4b{word-spacing:-10.494000px;}
.ws1{word-spacing:-9.504000px;}
.ws20{word-spacing:-8.745000px;}
.ws4a{word-spacing:-2.640000px;}
.ws6{word-spacing:-2.376000px;}
.ws40{word-spacing:-2.160000px;}
.ws28{word-spacing:-2.046000px;}
.ws3d{word-spacing:-1.944000px;}
.ws19{word-spacing:-1.920000px;}
.ws1a{word-spacing:-1.740000px;}
.wsf{word-spacing:-1.440000px;}
.ws2a{word-spacing:-1.404000px;}
.wsa{word-spacing:-1.320000px;}
.ws2b{word-spacing:-1.242000px;}
.ws46{word-spacing:-1.188000px;}
.ws1b{word-spacing:-0.840000px;}
.ws41{word-spacing:-0.330000px;}
.ws15{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.120000px;}
.wsd{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:0.180000px;}
.wse{word-spacing:0.240000px;}
.ws32{word-spacing:0.264000px;}
.ws45{word-spacing:0.270000px;}
.ws4c{word-spacing:0.300000px;}
.ws13{word-spacing:0.540000px;}
.ws24{word-spacing:0.594000px;}
.ws12{word-spacing:0.600000px;}
.ws3a{word-spacing:0.726000px;}
.ws49{word-spacing:1.056000px;}
.ws3f{word-spacing:1.188000px;}
.ws34{word-spacing:1.452000px;}
.ws39{word-spacing:1.518000px;}
.ws1e{word-spacing:1.680000px;}
.ws1d{word-spacing:1.860000px;}
.ws31{word-spacing:2.046000px;}
.ws18{word-spacing:2.160000px;}
.ws47{word-spacing:2.376000px;}
.ws25{word-spacing:2.442000px;}
.ws17{word-spacing:2.760000px;}
.ws42{word-spacing:3.036000px;}
.ws35{word-spacing:3.168000px;}
.ws3c{word-spacing:3.348000px;}
.ws33{word-spacing:3.366000px;}
.ws10{word-spacing:3.420000px;}
.ws26{word-spacing:3.432000px;}
.ws11{word-spacing:3.540000px;}
.wsb{word-spacing:3.600000px;}
.ws3b{word-spacing:3.630000px;}
.ws2e{word-spacing:3.960000px;}
.ws4e{word-spacing:4.260000px;}
.ws44{word-spacing:4.554000px;}
.ws3e{word-spacing:4.686000px;}
.ws2c{word-spacing:4.698000px;}
.ws30{word-spacing:4.818000px;}
.ws36{word-spacing:5.238000px;}
.ws16{word-spacing:5.820000px;}
.ws4d{word-spacing:5.940000px;}
.ws23{word-spacing:6.210000px;}
.ws1c{word-spacing:6.420000px;}
.ws9{word-spacing:6.864000px;}
.ws37{word-spacing:7.938000px;}
.ws48{word-spacing:10.296000px;}
.ws29{word-spacing:10.692000px;}
.ws2f{word-spacing:11.610000px;}
.ws2d{word-spacing:12.474000px;}
.ws8{word-spacing:14.040000px;}
.ws22{word-spacing:217.296000px;}
._12{margin-left:-9.353400px;}
._2{margin-left:-7.020000px;}
._14{margin-left:-6.018000px;}
._4{margin-left:-4.755600px;}
._7{margin-left:-3.432000px;}
._5{margin-left:-2.268000px;}
._3{margin-left:-1.248000px;}
._6{width:1.080000px;}
._0{width:2.329800px;}
._8{width:4.283400px;}
._9{width:5.722200px;}
._b{width:7.322400px;}
._a{width:8.923200px;}
._c{width:10.665000px;}
._d{width:12.328200px;}
._11{width:15.049800px;}
._f{width:16.729200px;}
._15{width:17.971200px;}
._e{width:19.013400px;}
._10{width:21.675600px;}
._13{width:22.917600px;}
._1{width:1427.649600px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs8{font-size:41.976000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.400000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:64.800000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y2b0{bottom:97.795350px;}
.y25c{bottom:98.363100px;}
.y1a3{bottom:98.929200px;}
.y74{bottom:98.930550px;}
.y3c{bottom:98.930700px;}
.yd7{bottom:99.425400px;}
.y236{bottom:99.869700px;}
.y139{bottom:103.925250px;}
.y2a{bottom:108.483150px;}
.y1f5{bottom:110.636850px;}
.y2af{bottom:113.995350px;}
.y25b{bottom:114.563100px;}
.y1a2{bottom:115.129200px;}
.y3b{bottom:115.130700px;}
.yd6{bottom:115.625400px;}
.y235{bottom:116.069550px;}
.y138{bottom:120.125250px;}
.y73{bottom:121.083450px;}
.ye9{bottom:121.083600px;}
.y2ae{bottom:130.195350px;}
.y1f4{bottom:130.436700px;}
.y240{bottom:130.949550px;}
.y8e{bottom:131.330700px;}
.yd5{bottom:131.825400px;}
.y52{bottom:133.625100px;}
.y29{bottom:135.483150px;}
.y1a1{bottom:137.282100px;}
.y72{bottom:137.283450px;}
.y3a{bottom:137.283600px;}
.y234{bottom:138.222600px;}
.y137{bottom:142.278150px;}
.y286{bottom:143.236500px;}
.y8d{bottom:147.530700px;}
.y1c9{bottom:148.025250px;}
.yd4{bottom:148.025400px;}
.y23f{bottom:150.749550px;}
.y51{bottom:153.425100px;}
.y1a0{bottom:153.482100px;}
.y28{bottom:153.483150px;}
.y71{bottom:153.483450px;}
.y39{bottom:153.483600px;}
.y233{bottom:154.422450px;}
.y271{bottom:157.025100px;}
.y136{bottom:158.478300px;}
.y106{bottom:159.436500px;}
.yb3{bottom:163.730700px;}
.yd3{bottom:164.225400px;}
.y1c8{bottom:167.825250px;}
.y19f{bottom:169.682100px;}
.y70{bottom:169.683450px;}
.y190{bottom:169.683600px;}
.y23e{bottom:170.549550px;}
.y27{bottom:171.483150px;}
.y160{bottom:172.325250px;}
.y1f9{bottom:172.350150px;}
.y50{bottom:173.225250px;}
.y135{bottom:174.678150px;}
.y214{bottom:175.636500px;}
.y2ad{bottom:176.227200px;}
.y270{bottom:176.825250px;}
.yb2{bottom:179.930700px;}
.yd2{bottom:180.425400px;}
.y25a{bottom:181.325250px;}
.y1b9{bottom:181.589400px;}
.y200{bottom:183.125100px;}
.y6f{bottom:185.883450px;}
.y18f{bottom:185.883600px;}
.y1c7{bottom:187.625100px;}
.y23d{bottom:190.349550px;}
.y1f8{bottom:190.350150px;}
.y105{bottom:191.225250px;}
.y19e{bottom:191.835000px;}
.y1d1{bottom:191.836500px;}
.y15f{bottom:192.125100px;}
.y4f{bottom:193.025100px;}
.y232{bottom:193.925100px;}
.y2ac{bottom:194.227200px;}
.y8c{bottom:194.825250px;}
.y11d{bottom:196.130700px;}
.y26f{bottom:196.625100px;}
.yd1{bottom:196.625400px;}
.y134{bottom:196.831050px;}
.ye8{bottom:197.525100px;}
.y1b8{bottom:197.789400px;}
.y26{bottom:198.483150px;}
.y6e{bottom:202.083600px;}
.y1ff{bottom:202.925100px;}
.y1c6{bottom:207.425100px;}
.y19d{bottom:208.035000px;}
.y23c{bottom:210.149550px;}
.y104{bottom:211.025100px;}
.y15e{bottom:211.925100px;}
.y2ab{bottom:212.227200px;}
.y11c{bottom:212.330700px;}
.y4e{bottom:212.825250px;}
.yd0{bottom:212.825400px;}
.y231{bottom:213.725100px;}
.y41{bottom:213.848550px;}
.y1b7{bottom:213.989400px;}
.y8b{bottom:214.625100px;}
.y26e{bottom:216.425100px;}
.y25{bottom:216.483150px;}
.ye7{bottom:217.325250px;}
.y6d{bottom:218.283600px;}
.y1f3{bottom:219.942300px;}
.y259{bottom:220.925100px;}
.y1fe{bottom:222.725250px;}
.y213{bottom:227.225250px;}
.y133{bottom:228.125250px;}
.y179{bottom:228.530700px;}
.y1c5{bottom:229.025100px;}
.y23b{bottom:229.949550px;}
.y2aa{bottom:230.227200px;}
.y103{bottom:230.825250px;}
.y15d{bottom:231.725250px;}
.y40{bottom:231.848550px;}
.y4d{bottom:232.625100px;}
.y230{bottom:233.525100px;}
.y8a{bottom:234.425100px;}
.y24{bottom:234.483150px;}
.y6c{bottom:234.483600px;}
.ycf{bottom:234.978300px;}
.y1b6{bottom:236.142300px;}
.y26d{bottom:236.225250px;}
.ye6{bottom:237.125100px;}
.y258{bottom:238.925100px;}
.yb1{bottom:240.436500px;}
.y19c{bottom:241.625100px;}
.y1fd{bottom:242.525100px;}
.y178{bottom:244.730700px;}
.y11b{bottom:244.940400px;}
.y212{bottom:247.025100px;}
.y132{bottom:247.925100px;}
.y2a9{bottom:248.227200px;}
.y1c4{bottom:248.825250px;}
.y3f{bottom:249.848550px;}
.y102{bottom:250.625100px;}
.y15c{bottom:251.525100px;}
.y1b5{bottom:252.342300px;}
.y4c{bottom:252.425100px;}
.y23{bottom:252.483150px;}
.y22f{bottom:253.325250px;}
.y26c{bottom:256.025100px;}
.y6b{bottom:256.636500px;}
.ye5{bottom:256.925100px;}
.yce{bottom:257.131200px;}
.y89{bottom:257.825250px;}
.y1f2{bottom:258.295200px;}
.y177{bottom:260.930700px;}
.y19b{bottom:261.425100px;}
.y1fc{bottom:262.325250px;}
.y11a{bottom:264.740400px;}
.y2a8{bottom:266.227200px;}
.y211{bottom:266.825250px;}
.y131{bottom:267.725250px;}
.y3e{bottom:267.848550px;}
.y1b4{bottom:268.542300px;}
.y1c3{bottom:268.625100px;}
.y244{bottom:269.207100px;}
.yb0{bottom:269.525100px;}
.y101{bottom:270.425100px;}
.y22{bottom:270.483150px;}
.y15b{bottom:271.325250px;}
.y4b{bottom:272.225250px;}
.y6a{bottom:272.836500px;}
.y22e{bottom:273.125100px;}
.ycd{bottom:273.331200px;}
.y257{bottom:274.925100px;}
.y26b{bottom:275.825250px;}
.y176{bottom:277.130700px;}
.y88{bottom:277.625100px;}
.ye4{bottom:278.240400px;}
.y18e{bottom:278.789400px;}
.y19a{bottom:281.225100px;}
.y1fb{bottom:282.125100px;}
.y2a7{bottom:284.227200px;}
.y119{bottom:284.540400px;}
.y1b3{bottom:284.742300px;}
.y3d{bottom:285.848550px;}
.y210{bottom:286.625100px;}
.y243{bottom:287.207100px;}
.y21b{bottom:287.525100px;}
.y130{bottom:287.525250px;}
.y1c2{bottom:288.425100px;}
.y21{bottom:288.483150px;}
.y69{bottom:289.036500px;}
.yaf{bottom:289.325250px;}
.y15a{bottom:291.125100px;}
.y4a{bottom:292.025100px;}
.y22d{bottom:292.925100px;}
.y175{bottom:293.330700px;}
.y100{bottom:293.873400px;}
.y18d{bottom:294.989400px;}
.ycc{bottom:295.484100px;}
.y26a{bottom:295.625100px;}
.y87{bottom:297.425100px;}
.ye3{bottom:298.040400px;}
.y22a{bottom:299.283600px;}
.y199{bottom:301.025100px;}
.y1fa{bottom:301.925100px;}
.y2a6{bottom:302.227200px;}
.y118{bottom:304.340400px;}
.y242{bottom:305.207100px;}
.y68{bottom:305.236500px;}
.y20f{bottom:306.425100px;}
.y20{bottom:306.483150px;}
.y1b2{bottom:306.895200px;}
.y12f{bottom:307.325250px;}
.y1c1{bottom:308.225250px;}
.yae{bottom:309.125100px;}
.y174{bottom:309.530700px;}
.y159{bottom:310.925100px;}
.y18c{bottom:311.189400px;}
.y49{bottom:311.825250px;}
.yff{bottom:313.673400px;}
.y22c{bottom:314.162400px;}
.y269{bottom:315.425100px;}
.y86{bottom:317.225250px;}
.ye2{bottom:317.840400px;}
.y2a5{bottom:320.227200px;}
.y198{bottom:320.825100px;}
.y67{bottom:321.436500px;}
.y1b1{bottom:323.095200px;}
.y241{bottom:323.207100px;}
.y117{bottom:324.140400px;}
.y285{bottom:324.425100px;}
.y1f{bottom:324.483150px;}
.y1f1{bottom:325.325250px;}
.y20e{bottom:327.125100px;}
.y12e{bottom:327.125250px;}
.y18b{bottom:327.389400px;}
.y1c0{bottom:328.025100px;}
.yad{bottom:328.925100px;}
.y158{bottom:330.725250px;}
.y48{bottom:331.625100px;}
.ycb{bottom:331.625250px;}
.y173{bottom:331.683600px;}
.yfe{bottom:333.473400px;}
.y22b{bottom:333.962400px;}
.y85{bottom:337.025100px;}
.y66{bottom:337.636500px;}
.ye1{bottom:337.640400px;}
.y268{bottom:337.925100px;}
.y2a4{bottom:338.227200px;}
.y1b0{bottom:339.295200px;}
.y197{bottom:340.625100px;}
.y202{bottom:341.757150px;}
.y18a{bottom:343.589400px;}
.y116{bottom:343.940400px;}
.y284{bottom:344.225250px;}
.y1f0{bottom:345.125100px;}
.y12d{bottom:346.925100px;}
.y1bf{bottom:347.825250px;}
.y172{bottom:347.883600px;}
.yac{bottom:348.725250px;}
.y157{bottom:350.525100px;}
.y47{bottom:351.425100px;}
.y1e{bottom:351.483150px;}
.yfd{bottom:353.273550px;}
.y65{bottom:353.836500px;}
.y1af{bottom:355.495200px;}
.y267{bottom:355.925100px;}
.y2a3{bottom:356.227200px;}
.y84{bottom:356.825250px;}
.ye0{bottom:357.440400px;}
.y201{bottom:359.757150px;}
.y189{bottom:359.789400px;}
.y196{bottom:360.425100px;}
.y115{bottom:363.740400px;}
.y283{bottom:364.025100px;}
.y1ef{bottom:364.925100px;}
.y12c{bottom:366.725250px;}
.y1be{bottom:367.625100px;}
.y256{bottom:367.625250px;}
.yab{bottom:368.525100px;}
.y1d{bottom:369.483150px;}
.y64{bottom:370.036500px;}
.y156{bottom:370.325250px;}
.y46{bottom:371.225250px;}
.y1d0{bottom:371.940300px;}
.yfc{bottom:373.073400px;}
.y23a{bottom:373.753350px;}
.y266{bottom:373.925100px;}
.y2a2{bottom:374.227200px;}
.y188{bottom:375.989400px;}
.y83{bottom:376.625100px;}
.ydf{bottom:377.240400px;}
.y1ae{bottom:377.648100px;}
.y195{bottom:382.392300px;}
.y114{bottom:383.540400px;}
.y282{bottom:383.825250px;}
.y1ee{bottom:384.725250px;}
.y20d{bottom:386.525100px;}
.y12b{bottom:386.525250px;}
.y1bd{bottom:387.425100px;}
.y1c{bottom:387.483150px;}
.yaa{bottom:388.325250px;}
.y155{bottom:390.125100px;}
.y45{bottom:391.025100px;}
.yca{bottom:391.025250px;}
.y1cf{bottom:391.740300px;}
.y239{bottom:391.753350px;}
.y265{bottom:391.925100px;}
.y63{bottom:392.189400px;}
.y2a1{bottom:392.227200px;}
.yfb{bottom:392.873400px;}
.y1ad{bottom:393.848100px;}
.y82{bottom:396.425100px;}
.yde{bottom:397.040400px;}
.y194{bottom:402.192300px;}
.y113{bottom:403.340400px;}
.y281{bottom:403.625100px;}
.y1ed{bottom:404.525100px;}
.y12a{bottom:406.325250px;}
.ya9{bottom:408.125100px;}
.y62{bottom:408.389400px;}
.y1bc{bottom:408.492300px;}
.y238{bottom:409.753350px;}
.y154{bottom:409.925100px;}
.y1ac{bottom:410.048100px;}
.y2a0{bottom:410.227200px;}
.y44{bottom:410.825250px;}
.y1ce{bottom:411.540300px;}
.yfa{bottom:412.673400px;}
.y1b{bottom:414.483150px;}
.y81{bottom:416.225250px;}
.ydd{bottom:416.840400px;}
.y193{bottom:421.992300px;}
.y112{bottom:423.140400px;}
.y280{bottom:423.425100px;}
.y1ec{bottom:424.325250px;}
.y61{bottom:424.589400px;}
.y20c{bottom:426.125100px;}
.y129{bottom:426.125250px;}
.y237{bottom:427.753350px;}
.ya8{bottom:427.925100px;}
.y29f{bottom:428.227200px;}
.y1bb{bottom:428.292300px;}
.y255{bottom:429.725250px;}
.y43{bottom:430.625100px;}
.yc9{bottom:430.625250px;}
.y1cd{bottom:431.340300px;}
.y21a{bottom:432.425100px;}
.yf9{bottom:432.473400px;}
.y1a{bottom:432.483150px;}
.y80{bottom:436.025100px;}
.ydc{bottom:436.640400px;}
.y60{bottom:440.789400px;}
.y192{bottom:441.792300px;}
.y111{bottom:442.940400px;}
.y27f{bottom:443.225250px;}
.y153{bottom:443.239350px;}
.y1eb{bottom:444.125100px;}
.y128{bottom:445.925100px;}
.y29e{bottom:446.227200px;}
.y171{bottom:446.742300px;}
.y229{bottom:447.725250px;}
.y1ba{bottom:448.092300px;}
.y254{bottom:449.525100px;}
.y42{bottom:450.425100px;}
.y19{bottom:450.483150px;}
.y1cc{bottom:451.140300px;}
.yf8{bottom:452.273550px;}
.y7f{bottom:455.825250px;}
.ydb{bottom:456.440400px;}
.y5f{bottom:456.989400px;}
.y2ca{bottom:457.446150px;}
.y191{bottom:461.592300px;}
.y110{bottom:462.740400px;}
.y27e{bottom:463.025100px;}
.y1ea{bottom:463.925100px;}
.y29d{bottom:464.227200px;}
.y20b{bottom:465.725250px;}
.y228{bottom:467.525100px;}
.y219{bottom:468.425100px;}
.y18{bottom:468.483150px;}
.y170{bottom:468.895200px;}
.y253{bottom:469.325250px;}
.y127{bottom:469.444350px;}
.ya7{bottom:470.225250px;}
.yf7{bottom:472.073400px;}
.y5e{bottom:473.189400px;}
.y2c9{bottom:475.446150px;}
.y7e{bottom:475.625100px;}
.yda{bottom:476.240400px;}
.y264{bottom:481.925100px;}
.y29c{bottom:482.227200px;}
.y10f{bottom:482.540400px;}
.y27d{bottom:482.825250px;}
.yc8{bottom:483.739350px;}
.y1cb{bottom:484.446150px;}
.y20a{bottom:485.525100px;}
.y218{bottom:486.425100px;}
.y17{bottom:486.483150px;}
.y1e9{bottom:487.325250px;}
.y152{bottom:488.225250px;}
.y252{bottom:489.125250px;}
.y126{bottom:489.244350px;}
.y5d{bottom:489.389400px;}
.ya6{bottom:490.025100px;}
.y16f{bottom:491.048100px;}
.y56{bottom:491.068350px;}
.yf6{bottom:491.873400px;}
.y2c8{bottom:493.446150px;}
.y7d{bottom:495.425100px;}
.yd9{bottom:496.040400px;}
.y263{bottom:499.925100px;}
.y29b{bottom:500.227200px;}
.y10e{bottom:502.340400px;}
.y1ca{bottom:502.446150px;}
.y27c{bottom:502.625100px;}
.y16{bottom:504.483150px;}
.y209{bottom:505.325250px;}
.yc7{bottom:505.339350px;}
.y217{bottom:506.225250px;}
.y1dc{bottom:506.946150px;}
.y1e8{bottom:507.125100px;}
.y16e{bottom:507.248100px;}
.y151{bottom:508.025100px;}
.y251{bottom:508.925100px;}
.y125{bottom:509.044350px;}
.y55{bottom:509.068350px;}
.ya5{bottom:509.825250px;}
.y2c7{bottom:511.446150px;}
.yf5{bottom:511.673400px;}
.y7c{bottom:515.677350px;}
.yd8{bottom:515.840400px;}
.y1aa{bottom:515.946150px;}
.y262{bottom:517.925100px;}
.y29a{bottom:518.227200px;}
.y27b{bottom:522.425100px;}
.y15{bottom:522.483150px;}
.y16d{bottom:523.448100px;}
.y1db{bottom:524.946150px;}
.y187{bottom:525.125100px;}
.y216{bottom:526.025100px;}
.y1e7{bottom:526.925100px;}
.y54{bottom:527.068350px;}
.y150{bottom:527.825250px;}
.y250{bottom:528.725250px;}
.y124{bottom:528.844350px;}
.y2c6{bottom:529.446150px;}
.ya4{bottom:529.625100px;}
.yf4{bottom:531.473400px;}
.y1a9{bottom:533.946150px;}
.y1f7{bottom:534.442350px;}
.y7b{bottom:535.477350px;}
.y261{bottom:535.925100px;}
.y299{bottom:536.227200px;}
.y5c{bottom:540.425100px;}
.y14{bottom:540.483150px;}
.y123{bottom:541.564500px;}
.y1da{bottom:542.946150px;}
.y186{bottom:544.925100px;}
.y53{bottom:545.068350px;}
.y215{bottom:545.825250px;}
.y1e6{bottom:546.725250px;}
.y2c5{bottom:547.446150px;}
.y14f{bottom:547.625100px;}
.y24f{bottom:548.525250px;}
.ya3{bottom:549.425100px;}
.yc6{bottom:550.325250px;}
.yf3{bottom:551.273400px;}
.y1a8{bottom:551.946150px;}
.y1f6{bottom:552.442350px;}
.y260{bottom:553.925100px;}
.y298{bottom:554.227200px;}
.y7a{bottom:555.277350px;}
.yed{bottom:556.336350px;}
.y27a{bottom:559.339350px;}
.y122{bottom:559.564500px;}
.y5b{bottom:560.225100px;}
.y1d9{bottom:560.946150px;}
.y185{bottom:564.725250px;}
.y2c4{bottom:565.446150px;}
.y16c{bottom:565.625100px;}
.y1e5{bottom:566.525100px;}
.y14e{bottom:567.425100px;}
.y13f{bottom:568.068300px;}
.y24e{bottom:568.325250px;}
.ya2{bottom:569.225250px;}
.y1a7{bottom:569.946150px;}
.yc5{bottom:570.125100px;}
.yf2{bottom:571.073400px;}
.y25f{bottom:571.925100px;}
.y297{bottom:572.227200px;}
.yec{bottom:574.336350px;}
.y13{bottom:574.683150px;}
.y121{bottom:577.564500px;}
.y1d8{bottom:578.946150px;}
.y5a{bottom:580.025100px;}
.y2c3{bottom:583.446150px;}
.y184{bottom:584.525100px;}
.y16b{bottom:585.425100px;}
.y13e{bottom:586.068300px;}
.y1e4{bottom:586.325250px;}
.y14d{bottom:587.225250px;}
.y1a6{bottom:587.946150px;}
.y24d{bottom:588.125100px;}
.ya1{bottom:589.025100px;}
.yc4{bottom:589.925100px;}
.y296{bottom:590.227200px;}
.yf1{bottom:590.873400px;}
.y12{bottom:590.883150px;}
.yeb{bottom:592.336350px;}
.y25e{bottom:592.625100px;}
.y120{bottom:595.564500px;}
.y90{bottom:595.879350px;}
.y1d7{bottom:596.946150px;}
.y59{bottom:599.825100px;}
.y2c2{bottom:601.446150px;}
.y13d{bottom:604.068300px;}
.y183{bottom:604.325250px;}
.y16a{bottom:605.225250px;}
.y1a5{bottom:605.946150px;}
.y1e3{bottom:606.125100px;}
.y14c{bottom:607.025100px;}
.y11{bottom:607.083150px;}
.y24c{bottom:607.925100px;}
.y295{bottom:608.227200px;}
.ya0{bottom:608.825250px;}
.yc3{bottom:609.725250px;}
.yea{bottom:610.336350px;}
.yf0{bottom:610.673550px;}
.y25d{bottom:612.425100px;}
.y227{bottom:613.325250px;}
.y11f{bottom:613.564500px;}
.y8f{bottom:613.879350px;}
.y1d6{bottom:614.946150px;}
.y2c1{bottom:619.446150px;}
.y58{bottom:619.625100px;}
.y13c{bottom:622.068300px;}
.y10{bottom:623.283150px;}
.y1a4{bottom:623.946150px;}
.y182{bottom:624.125100px;}
.y169{bottom:625.025100px;}
.y1e2{bottom:625.925100px;}
.y294{bottom:626.227200px;}
.y14b{bottom:626.825250px;}
.y38{bottom:627.725250px;}
.y9f{bottom:628.625100px;}
.yc2{bottom:629.525250px;}
.yef{bottom:630.473400px;}
.y11e{bottom:631.564500px;}
.y1d5{bottom:632.946150px;}
.y226{bottom:633.125100px;}
.y2c0{bottom:637.446150px;}
.y57{bottom:639.425100px;}
.yf{bottom:639.483150px;}
.y13b{bottom:640.068300px;}
.y181{bottom:643.925100px;}
.y293{bottom:644.227200px;}
.y168{bottom:644.825250px;}
.y1e1{bottom:645.725250px;}
.y14a{bottom:646.625100px;}
.y37{bottom:647.525100px;}
.y24b{bottom:647.525250px;}
.y9e{bottom:648.425100px;}
.yc1{bottom:649.325250px;}
.yee{bottom:650.273400px;}
.y1d4{bottom:650.946150px;}
.y225{bottom:652.925100px;}
.y275{bottom:654.098100px;}
.y2bf{bottom:655.446150px;}
.ye{bottom:655.683150px;}
.y13a{bottom:658.068300px;}
.y292{bottom:662.227200px;}
.y167{bottom:664.625100px;}
.y1e0{bottom:665.525100px;}
.y149{bottom:666.425100px;}
.y36{bottom:667.325250px;}
.y9d{bottom:668.225250px;}
.y1d3{bottom:668.946150px;}
.yc0{bottom:669.125100px;}
.yd{bottom:671.883150px;}
.y274{bottom:672.098100px;}
.y224{bottom:672.725250px;}
.y2be{bottom:673.446150px;}
.y180{bottom:678.139350px;}
.y291{bottom:680.227200px;}
.y79{bottom:683.686200px;}
.y166{bottom:684.425100px;}
.y1df{bottom:685.325250px;}
.y148{bottom:686.225250px;}
.y1d2{bottom:686.946150px;}
.y35{bottom:687.125100px;}
.y9c{bottom:688.025100px;}
.yc{bottom:688.083150px;}
.ybf{bottom:688.925100px;}
.y273{bottom:690.098100px;}
.y2bd{bottom:691.446150px;}
.y223{bottom:692.525100px;}
.y290{bottom:698.227200px;}
.y17f{bottom:699.739350px;}
.y208{bottom:700.639350px;}
.y78{bottom:701.686200px;}
.y10d{bottom:703.883100px;}
.y165{bottom:704.225250px;}
.yb{bottom:704.283150px;}
.y1de{bottom:705.125100px;}
.y147{bottom:706.025100px;}
.y34{bottom:706.925100px;}
.y9b{bottom:707.825250px;}
.y272{bottom:708.098100px;}
.ybe{bottom:708.725250px;}
.y2bc{bottom:709.446150px;}
.y222{bottom:712.325250px;}
.y28f{bottom:716.227200px;}
.y77{bottom:719.686200px;}
.ya{bottom:720.483150px;}
.y10c{bottom:721.883100px;}
.y164{bottom:724.025100px;}
.y1dd{bottom:724.925100px;}
.y146{bottom:725.825250px;}
.y33{bottom:726.725250px;}
.y2bb{bottom:727.446150px;}
.y9a{bottom:727.625100px;}
.ybd{bottom:728.525250px;}
.y221{bottom:732.125100px;}
.y28e{bottom:734.227200px;}
.y9{bottom:736.683150px;}
.y76{bottom:737.686200px;}
.y10b{bottom:739.883100px;}
.y163{bottom:743.825250px;}
.y17e{bottom:744.725250px;}
.y2ba{bottom:745.446150px;}
.y145{bottom:745.625100px;}
.y32{bottom:746.525100px;}
.y24a{bottom:746.525250px;}
.y99{bottom:747.425100px;}
.ybc{bottom:748.325250px;}
.y220{bottom:751.925100px;}
.y28d{bottom:752.227200px;}
.y8{bottom:752.883150px;}
.y75{bottom:755.686200px;}
.y10a{bottom:757.883100px;}
.y2b9{bottom:763.446150px;}
.y162{bottom:763.625100px;}
.y17d{bottom:764.525100px;}
.y144{bottom:765.425100px;}
.y31{bottom:766.325250px;}
.y98{bottom:767.225250px;}
.y1ab{bottom:767.748300px;}
.ybb{bottom:768.125100px;}
.y7{bottom:769.083150px;}
.y28c{bottom:770.227200px;}
.y21f{bottom:774.425100px;}
.y109{bottom:775.883100px;}
.y2b8{bottom:781.446150px;}
.y161{bottom:783.425100px;}
.y17c{bottom:784.325100px;}
.y207{bottom:785.225250px;}
.y30{bottom:786.125100px;}
.y97{bottom:787.025250px;}
.y143{bottom:787.548300px;}
.yba{bottom:787.925100px;}
.y28b{bottom:788.227200px;}
.y21e{bottom:792.425100px;}
.y108{bottom:793.883100px;}
.y6{bottom:797.283300px;}
.y2b7{bottom:799.446150px;}
.y17b{bottom:804.125100px;}
.y206{bottom:805.025250px;}
.y2f{bottom:805.925100px;}
.y28a{bottom:806.227200px;}
.y96{bottom:806.825100px;}
.y142{bottom:807.348300px;}
.yb9{bottom:807.843000px;}
.y21d{bottom:810.425100px;}
.y107{bottom:811.883100px;}
.y2b6{bottom:817.446150px;}
.y17a{bottom:823.925100px;}
.y205{bottom:824.825100px;}
.y279{bottom:825.725250px;}
.y249{bottom:826.580700px;}
.y95{bottom:826.625100px;}
.y141{bottom:827.148300px;}
.yb8{bottom:827.643000px;}
.y21c{bottom:828.425100px;}
.y5{bottom:828.708150px;}
.y2b5{bottom:835.446150px;}
.y2e{bottom:841.939350px;}
.y289{bottom:842.227200px;}
.y204{bottom:844.625100px;}
.y278{bottom:845.525250px;}
.y248{bottom:846.380700px;}
.y94{bottom:846.425100px;}
.y140{bottom:846.948300px;}
.yb7{bottom:847.443000px;}
.y4{bottom:849.751950px;}
.y2b4{bottom:853.446150px;}
.y203{bottom:864.425100px;}
.y277{bottom:865.325100px;}
.y247{bottom:866.180550px;}
.y93{bottom:866.748300px;}
.yb6{bottom:867.242850px;}
.y2b3{bottom:871.446150px;}
.y3{bottom:882.795750px;}
.y276{bottom:885.125100px;}
.y288{bottom:885.412950px;}
.y246{bottom:885.980550px;}
.y92{bottom:886.548300px;}
.y2d{bottom:886.925100px;}
.yb5{bottom:887.042850px;}
.y2b2{bottom:889.446150px;}
.y2{bottom:903.839400px;}
.y2c{bottom:904.925100px;}
.y287{bottom:905.212950px;}
.y245{bottom:905.780700px;}
.y91{bottom:906.348300px;}
.yb4{bottom:906.843000px;}
.y2b1{bottom:907.446150px;}
.y2b{bottom:963.077100px;}
.y1{bottom:964.174950px;}
.h10{height:45.815625px;}
.h13{height:46.664062px;}
.h5{height:48.438000px;}
.h6{height:49.280273px;}
.hc{height:49.939453px;}
.hf{height:50.276953px;}
.ha{height:50.906250px;}
.h8{height:51.011719px;}
.h7{height:53.820000px;}
.h11{height:54.208301px;}
.h9{height:54.755859px;}
.hd{height:55.488281px;}
.he{height:55.863281px;}
.h3{height:59.124000px;}
.h2{height:60.231445px;}
.hb{height:61.037109px;}
.h12{height:62.795602px;}
.h4{height:64.584000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x4{left:86.558550px;}
.x3f{left:88.344750px;}
.x20{left:89.476350px;}
.x10{left:92.659350px;}
.x9{left:93.732000px;}
.x1b{left:94.777050px;}
.x3d{left:96.478050px;}
.x12{left:97.833900px;}
.x45{left:99.117300px;}
.x7{left:100.324350px;}
.x5{left:102.389850px;}
.x1e{left:103.615800px;}
.x3{left:119.089200px;}
.x35{left:129.726600px;}
.x33{left:135.651000px;}
.x31{left:147.099750px;}
.x41{left:153.139050px;}
.x2f{left:161.118150px;}
.x42{left:164.202000px;}
.x1d{left:165.591300px;}
.xf{left:169.343400px;}
.x8{left:179.971650px;}
.x11{left:215.757450px;}
.x44{left:224.214900px;}
.x3e{left:232.660800px;}
.x43{left:233.705250px;}
.x13{left:241.633950px;}
.x46{left:253.471500px;}
.x1a{left:278.508750px;}
.x1f{left:281.777400px;}
.x24{left:291.362700px;}
.x30{left:293.396550px;}
.x25{left:302.357700px;}
.x1c{left:305.835300px;}
.x47{left:310.982850px;}
.x26{left:314.697600px;}
.x40{left:325.008600px;}
.xa{left:326.631150px;}
.x6{left:340.892100px;}
.x2{left:344.850450px;}
.x2c{left:385.794000px;}
.x2b{left:387.694650px;}
.x28{left:388.778700px;}
.x29{left:390.082350px;}
.x2a{left:394.026450px;}
.x21{left:396.734700px;}
.x22{left:407.729850px;}
.x23{left:420.069600px;}
.x37{left:428.396850px;}
.x18{left:431.831100px;}
.x3b{left:432.930450px;}
.x16{left:434.566650px;}
.x38{left:435.640500px;}
.x15{left:436.683300px;}
.x36{left:441.320400px;}
.x3a{left:442.935450px;}
.x19{left:444.080850px;}
.x14{left:446.651550px;}
.x32{left:456.949050px;}
.x2d{left:465.664650px;}
.x39{left:467.859750px;}
.xb{left:489.996150px;}
.xd{left:492.365550px;}
.xc{left:494.533500px;}
.x17{left:500.162400px;}
.x27{left:506.888100px;}
.x3c{left:517.140750px;}
.x2e{left:525.558750px;}
.xe{left:546.550200px;}
.x34{left:562.917450px;}
@media print{
.v3{vertical-align:-21.312000pt;}
.v4{vertical-align:-17.759467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v2{vertical-align:21.312000pt;}
.ls9{letter-spacing:-1.349333pt;}
.ls1{letter-spacing:-1.152000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000533pt;}
.ls7{letter-spacing:3.199467pt;}
.ls5{letter-spacing:3.489600pt;}
.ls4{letter-spacing:4.589333pt;}
.ls6{letter-spacing:10.821333pt;}
.ws38{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-14.666667pt;}
.ws21{word-spacing:-13.333333pt;}
.ws43{word-spacing:-13.200000pt;}
.ws27{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.200000pt;}
.ws4{word-spacing:-10.933333pt;}
.ws0{word-spacing:-10.560000pt;}
.ws3{word-spacing:-10.240000pt;}
.ws2{word-spacing:-9.600000pt;}
.ws4b{word-spacing:-9.328000pt;}
.ws1{word-spacing:-8.448000pt;}
.ws20{word-spacing:-7.773333pt;}
.ws4a{word-spacing:-2.346667pt;}
.ws6{word-spacing:-2.112000pt;}
.ws40{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.818667pt;}
.ws3d{word-spacing:-1.728000pt;}
.ws19{word-spacing:-1.706667pt;}
.ws1a{word-spacing:-1.546667pt;}
.wsf{word-spacing:-1.280000pt;}
.ws2a{word-spacing:-1.248000pt;}
.wsa{word-spacing:-1.173333pt;}
.ws2b{word-spacing:-1.104000pt;}
.ws46{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-0.746667pt;}
.ws41{word-spacing:-0.293333pt;}
.ws15{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.106667pt;}
.wsd{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:0.160000pt;}
.wse{word-spacing:0.213333pt;}
.ws32{word-spacing:0.234667pt;}
.ws45{word-spacing:0.240000pt;}
.ws4c{word-spacing:0.266667pt;}
.ws13{word-spacing:0.480000pt;}
.ws24{word-spacing:0.528000pt;}
.ws12{word-spacing:0.533333pt;}
.ws3a{word-spacing:0.645333pt;}
.ws49{word-spacing:0.938667pt;}
.ws3f{word-spacing:1.056000pt;}
.ws34{word-spacing:1.290667pt;}
.ws39{word-spacing:1.349333pt;}
.ws1e{word-spacing:1.493333pt;}
.ws1d{word-spacing:1.653333pt;}
.ws31{word-spacing:1.818667pt;}
.ws18{word-spacing:1.920000pt;}
.ws47{word-spacing:2.112000pt;}
.ws25{word-spacing:2.170667pt;}
.ws17{word-spacing:2.453333pt;}
.ws42{word-spacing:2.698667pt;}
.ws35{word-spacing:2.816000pt;}
.ws3c{word-spacing:2.976000pt;}
.ws33{word-spacing:2.992000pt;}
.ws10{word-spacing:3.040000pt;}
.ws26{word-spacing:3.050667pt;}
.ws11{word-spacing:3.146667pt;}
.wsb{word-spacing:3.200000pt;}
.ws3b{word-spacing:3.226667pt;}
.ws2e{word-spacing:3.520000pt;}
.ws4e{word-spacing:3.786667pt;}
.ws44{word-spacing:4.048000pt;}
.ws3e{word-spacing:4.165333pt;}
.ws2c{word-spacing:4.176000pt;}
.ws30{word-spacing:4.282667pt;}
.ws36{word-spacing:4.656000pt;}
.ws16{word-spacing:5.173333pt;}
.ws4d{word-spacing:5.280000pt;}
.ws23{word-spacing:5.520000pt;}
.ws1c{word-spacing:5.706667pt;}
.ws9{word-spacing:6.101333pt;}
.ws37{word-spacing:7.056000pt;}
.ws48{word-spacing:9.152000pt;}
.ws29{word-spacing:9.504000pt;}
.ws2f{word-spacing:10.320000pt;}
.ws2d{word-spacing:11.088000pt;}
.ws8{word-spacing:12.480000pt;}
.ws22{word-spacing:193.152000pt;}
._12{margin-left:-8.314133pt;}
._2{margin-left:-6.240000pt;}
._14{margin-left:-5.349333pt;}
._4{margin-left:-4.227200pt;}
._7{margin-left:-3.050667pt;}
._5{margin-left:-2.016000pt;}
._3{margin-left:-1.109333pt;}
._6{width:0.960000pt;}
._0{width:2.070933pt;}
._8{width:3.807467pt;}
._9{width:5.086400pt;}
._b{width:6.508800pt;}
._a{width:7.931733pt;}
._c{width:9.480000pt;}
._d{width:10.958400pt;}
._11{width:13.377600pt;}
._f{width:14.870400pt;}
._15{width:15.974400pt;}
._e{width:16.900800pt;}
._10{width:19.267200pt;}
._13{width:20.371200pt;}
._1{width:1269.021867pt;}
.fs5{font-size:31.093333pt;}
.fs8{font-size:37.312000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:52.800000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:57.600000pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y2b0{bottom:86.929200pt;}
.y25c{bottom:87.433867pt;}
.y1a3{bottom:87.937067pt;}
.y74{bottom:87.938267pt;}
.y3c{bottom:87.938400pt;}
.yd7{bottom:88.378133pt;}
.y236{bottom:88.773067pt;}
.y139{bottom:92.378000pt;}
.y2a{bottom:96.429467pt;}
.y1f5{bottom:98.343867pt;}
.y2af{bottom:101.329200pt;}
.y25b{bottom:101.833867pt;}
.y1a2{bottom:102.337067pt;}
.y3b{bottom:102.338400pt;}
.yd6{bottom:102.778133pt;}
.y235{bottom:103.172933pt;}
.y138{bottom:106.778000pt;}
.y73{bottom:107.629733pt;}
.ye9{bottom:107.629867pt;}
.y2ae{bottom:115.729200pt;}
.y1f4{bottom:115.943733pt;}
.y240{bottom:116.399600pt;}
.y8e{bottom:116.738400pt;}
.yd5{bottom:117.178133pt;}
.y52{bottom:118.777867pt;}
.y29{bottom:120.429467pt;}
.y1a1{bottom:122.028533pt;}
.y72{bottom:122.029733pt;}
.y3a{bottom:122.029867pt;}
.y234{bottom:122.864533pt;}
.y137{bottom:126.469467pt;}
.y286{bottom:127.321333pt;}
.y8d{bottom:131.138400pt;}
.y1c9{bottom:131.578000pt;}
.yd4{bottom:131.578133pt;}
.y23f{bottom:133.999600pt;}
.y51{bottom:136.377867pt;}
.y1a0{bottom:136.428533pt;}
.y28{bottom:136.429467pt;}
.y71{bottom:136.429733pt;}
.y39{bottom:136.429867pt;}
.y233{bottom:137.264400pt;}
.y271{bottom:139.577867pt;}
.y136{bottom:140.869600pt;}
.y106{bottom:141.721333pt;}
.yb3{bottom:145.538400pt;}
.yd3{bottom:145.978133pt;}
.y1c8{bottom:149.178000pt;}
.y19f{bottom:150.828533pt;}
.y70{bottom:150.829733pt;}
.y190{bottom:150.829867pt;}
.y23e{bottom:151.599600pt;}
.y27{bottom:152.429467pt;}
.y160{bottom:153.178000pt;}
.y1f9{bottom:153.200133pt;}
.y50{bottom:153.978000pt;}
.y135{bottom:155.269467pt;}
.y214{bottom:156.121333pt;}
.y2ad{bottom:156.646400pt;}
.y270{bottom:157.178000pt;}
.yb2{bottom:159.938400pt;}
.yd2{bottom:160.378133pt;}
.y25a{bottom:161.178000pt;}
.y1b9{bottom:161.412800pt;}
.y200{bottom:162.777867pt;}
.y6f{bottom:165.229733pt;}
.y18f{bottom:165.229867pt;}
.y1c7{bottom:166.777867pt;}
.y23d{bottom:169.199600pt;}
.y1f8{bottom:169.200133pt;}
.y105{bottom:169.978000pt;}
.y19e{bottom:170.520000pt;}
.y1d1{bottom:170.521333pt;}
.y15f{bottom:170.777867pt;}
.y4f{bottom:171.577867pt;}
.y232{bottom:172.377867pt;}
.y2ac{bottom:172.646400pt;}
.y8c{bottom:173.178000pt;}
.y11d{bottom:174.338400pt;}
.y26f{bottom:174.777867pt;}
.yd1{bottom:174.778133pt;}
.y134{bottom:174.960933pt;}
.ye8{bottom:175.577867pt;}
.y1b8{bottom:175.812800pt;}
.y26{bottom:176.429467pt;}
.y6e{bottom:179.629867pt;}
.y1ff{bottom:180.377867pt;}
.y1c6{bottom:184.377867pt;}
.y19d{bottom:184.920000pt;}
.y23c{bottom:186.799600pt;}
.y104{bottom:187.577867pt;}
.y15e{bottom:188.377867pt;}
.y2ab{bottom:188.646400pt;}
.y11c{bottom:188.738400pt;}
.y4e{bottom:189.178000pt;}
.yd0{bottom:189.178133pt;}
.y231{bottom:189.977867pt;}
.y41{bottom:190.087600pt;}
.y1b7{bottom:190.212800pt;}
.y8b{bottom:190.777867pt;}
.y26e{bottom:192.377867pt;}
.y25{bottom:192.429467pt;}
.ye7{bottom:193.178000pt;}
.y6d{bottom:194.029867pt;}
.y1f3{bottom:195.504267pt;}
.y259{bottom:196.377867pt;}
.y1fe{bottom:197.978000pt;}
.y213{bottom:201.978000pt;}
.y133{bottom:202.778000pt;}
.y179{bottom:203.138400pt;}
.y1c5{bottom:203.577867pt;}
.y23b{bottom:204.399600pt;}
.y2aa{bottom:204.646400pt;}
.y103{bottom:205.178000pt;}
.y15d{bottom:205.978000pt;}
.y40{bottom:206.087600pt;}
.y4d{bottom:206.777867pt;}
.y230{bottom:207.577867pt;}
.y8a{bottom:208.377867pt;}
.y24{bottom:208.429467pt;}
.y6c{bottom:208.429867pt;}
.ycf{bottom:208.869600pt;}
.y1b6{bottom:209.904267pt;}
.y26d{bottom:209.978000pt;}
.ye6{bottom:210.777867pt;}
.y258{bottom:212.377867pt;}
.yb1{bottom:213.721333pt;}
.y19c{bottom:214.777867pt;}
.y1fd{bottom:215.577867pt;}
.y178{bottom:217.538400pt;}
.y11b{bottom:217.724800pt;}
.y212{bottom:219.577867pt;}
.y132{bottom:220.377867pt;}
.y2a9{bottom:220.646400pt;}
.y1c4{bottom:221.178000pt;}
.y3f{bottom:222.087600pt;}
.y102{bottom:222.777867pt;}
.y15c{bottom:223.577867pt;}
.y1b5{bottom:224.304267pt;}
.y4c{bottom:224.377867pt;}
.y23{bottom:224.429467pt;}
.y22f{bottom:225.178000pt;}
.y26c{bottom:227.577867pt;}
.y6b{bottom:228.121333pt;}
.ye5{bottom:228.377867pt;}
.yce{bottom:228.561067pt;}
.y89{bottom:229.178000pt;}
.y1f2{bottom:229.595733pt;}
.y177{bottom:231.938400pt;}
.y19b{bottom:232.377867pt;}
.y1fc{bottom:233.178000pt;}
.y11a{bottom:235.324800pt;}
.y2a8{bottom:236.646400pt;}
.y211{bottom:237.178000pt;}
.y131{bottom:237.978000pt;}
.y3e{bottom:238.087600pt;}
.y1b4{bottom:238.704267pt;}
.y1c3{bottom:238.777867pt;}
.y244{bottom:239.295200pt;}
.yb0{bottom:239.577867pt;}
.y101{bottom:240.377867pt;}
.y22{bottom:240.429467pt;}
.y15b{bottom:241.178000pt;}
.y4b{bottom:241.978000pt;}
.y6a{bottom:242.521333pt;}
.y22e{bottom:242.777867pt;}
.ycd{bottom:242.961067pt;}
.y257{bottom:244.377867pt;}
.y26b{bottom:245.178000pt;}
.y176{bottom:246.338400pt;}
.y88{bottom:246.777867pt;}
.ye4{bottom:247.324800pt;}
.y18e{bottom:247.812800pt;}
.y19a{bottom:249.977867pt;}
.y1fb{bottom:250.777867pt;}
.y2a7{bottom:252.646400pt;}
.y119{bottom:252.924800pt;}
.y1b3{bottom:253.104267pt;}
.y3d{bottom:254.087600pt;}
.y210{bottom:254.777867pt;}
.y243{bottom:255.295200pt;}
.y21b{bottom:255.577867pt;}
.y130{bottom:255.578000pt;}
.y1c2{bottom:256.377867pt;}
.y21{bottom:256.429467pt;}
.y69{bottom:256.921333pt;}
.yaf{bottom:257.178000pt;}
.y15a{bottom:258.777867pt;}
.y4a{bottom:259.577867pt;}
.y22d{bottom:260.377867pt;}
.y175{bottom:260.738400pt;}
.y100{bottom:261.220800pt;}
.y18d{bottom:262.212800pt;}
.ycc{bottom:262.652533pt;}
.y26a{bottom:262.777867pt;}
.y87{bottom:264.377867pt;}
.ye3{bottom:264.924800pt;}
.y22a{bottom:266.029867pt;}
.y199{bottom:267.577867pt;}
.y1fa{bottom:268.377867pt;}
.y2a6{bottom:268.646400pt;}
.y118{bottom:270.524800pt;}
.y242{bottom:271.295200pt;}
.y68{bottom:271.321333pt;}
.y20f{bottom:272.377867pt;}
.y20{bottom:272.429467pt;}
.y1b2{bottom:272.795733pt;}
.y12f{bottom:273.178000pt;}
.y1c1{bottom:273.978000pt;}
.yae{bottom:274.777867pt;}
.y174{bottom:275.138400pt;}
.y159{bottom:276.377867pt;}
.y18c{bottom:276.612800pt;}
.y49{bottom:277.178000pt;}
.yff{bottom:278.820800pt;}
.y22c{bottom:279.255467pt;}
.y269{bottom:280.377867pt;}
.y86{bottom:281.978000pt;}
.ye2{bottom:282.524800pt;}
.y2a5{bottom:284.646400pt;}
.y198{bottom:285.177867pt;}
.y67{bottom:285.721333pt;}
.y1b1{bottom:287.195733pt;}
.y241{bottom:287.295200pt;}
.y117{bottom:288.124800pt;}
.y285{bottom:288.377867pt;}
.y1f{bottom:288.429467pt;}
.y1f1{bottom:289.178000pt;}
.y20e{bottom:290.777867pt;}
.y12e{bottom:290.778000pt;}
.y18b{bottom:291.012800pt;}
.y1c0{bottom:291.577867pt;}
.yad{bottom:292.377867pt;}
.y158{bottom:293.978000pt;}
.y48{bottom:294.777867pt;}
.ycb{bottom:294.778000pt;}
.y173{bottom:294.829867pt;}
.yfe{bottom:296.420800pt;}
.y22b{bottom:296.855467pt;}
.y85{bottom:299.577867pt;}
.y66{bottom:300.121333pt;}
.ye1{bottom:300.124800pt;}
.y268{bottom:300.377867pt;}
.y2a4{bottom:300.646400pt;}
.y1b0{bottom:301.595733pt;}
.y197{bottom:302.777867pt;}
.y202{bottom:303.784133pt;}
.y18a{bottom:305.412800pt;}
.y116{bottom:305.724800pt;}
.y284{bottom:305.978000pt;}
.y1f0{bottom:306.777867pt;}
.y12d{bottom:308.377867pt;}
.y1bf{bottom:309.178000pt;}
.y172{bottom:309.229867pt;}
.yac{bottom:309.978000pt;}
.y157{bottom:311.577867pt;}
.y47{bottom:312.377867pt;}
.y1e{bottom:312.429467pt;}
.yfd{bottom:314.020933pt;}
.y65{bottom:314.521333pt;}
.y1af{bottom:315.995733pt;}
.y267{bottom:316.377867pt;}
.y2a3{bottom:316.646400pt;}
.y84{bottom:317.178000pt;}
.ye0{bottom:317.724800pt;}
.y201{bottom:319.784133pt;}
.y189{bottom:319.812800pt;}
.y196{bottom:320.377867pt;}
.y115{bottom:323.324800pt;}
.y283{bottom:323.577867pt;}
.y1ef{bottom:324.377867pt;}
.y12c{bottom:325.978000pt;}
.y1be{bottom:326.777867pt;}
.y256{bottom:326.778000pt;}
.yab{bottom:327.577867pt;}
.y1d{bottom:328.429467pt;}
.y64{bottom:328.921333pt;}
.y156{bottom:329.178000pt;}
.y46{bottom:329.978000pt;}
.y1d0{bottom:330.613600pt;}
.yfc{bottom:331.620800pt;}
.y23a{bottom:332.225200pt;}
.y266{bottom:332.377867pt;}
.y2a2{bottom:332.646400pt;}
.y188{bottom:334.212800pt;}
.y83{bottom:334.777867pt;}
.ydf{bottom:335.324800pt;}
.y1ae{bottom:335.687200pt;}
.y195{bottom:339.904267pt;}
.y114{bottom:340.924800pt;}
.y282{bottom:341.178000pt;}
.y1ee{bottom:341.978000pt;}
.y20d{bottom:343.577867pt;}
.y12b{bottom:343.578000pt;}
.y1bd{bottom:344.377867pt;}
.y1c{bottom:344.429467pt;}
.yaa{bottom:345.178000pt;}
.y155{bottom:346.777867pt;}
.y45{bottom:347.577867pt;}
.yca{bottom:347.578000pt;}
.y1cf{bottom:348.213600pt;}
.y239{bottom:348.225200pt;}
.y265{bottom:348.377867pt;}
.y63{bottom:348.612800pt;}
.y2a1{bottom:348.646400pt;}
.yfb{bottom:349.220800pt;}
.y1ad{bottom:350.087200pt;}
.y82{bottom:352.377867pt;}
.yde{bottom:352.924800pt;}
.y194{bottom:357.504267pt;}
.y113{bottom:358.524800pt;}
.y281{bottom:358.777867pt;}
.y1ed{bottom:359.577867pt;}
.y12a{bottom:361.178000pt;}
.ya9{bottom:362.777867pt;}
.y62{bottom:363.012800pt;}
.y1bc{bottom:363.104267pt;}
.y238{bottom:364.225200pt;}
.y154{bottom:364.377867pt;}
.y1ac{bottom:364.487200pt;}
.y2a0{bottom:364.646400pt;}
.y44{bottom:365.178000pt;}
.y1ce{bottom:365.813600pt;}
.yfa{bottom:366.820800pt;}
.y1b{bottom:368.429467pt;}
.y81{bottom:369.978000pt;}
.ydd{bottom:370.524800pt;}
.y193{bottom:375.104267pt;}
.y112{bottom:376.124800pt;}
.y280{bottom:376.377867pt;}
.y1ec{bottom:377.178000pt;}
.y61{bottom:377.412800pt;}
.y20c{bottom:378.777867pt;}
.y129{bottom:378.778000pt;}
.y237{bottom:380.225200pt;}
.ya8{bottom:380.377867pt;}
.y29f{bottom:380.646400pt;}
.y1bb{bottom:380.704267pt;}
.y255{bottom:381.978000pt;}
.y43{bottom:382.777867pt;}
.yc9{bottom:382.778000pt;}
.y1cd{bottom:383.413600pt;}
.y21a{bottom:384.377867pt;}
.yf9{bottom:384.420800pt;}
.y1a{bottom:384.429467pt;}
.y80{bottom:387.577867pt;}
.ydc{bottom:388.124800pt;}
.y60{bottom:391.812800pt;}
.y192{bottom:392.704267pt;}
.y111{bottom:393.724800pt;}
.y27f{bottom:393.978000pt;}
.y153{bottom:393.990533pt;}
.y1eb{bottom:394.777867pt;}
.y128{bottom:396.377867pt;}
.y29e{bottom:396.646400pt;}
.y171{bottom:397.104267pt;}
.y229{bottom:397.978000pt;}
.y1ba{bottom:398.304267pt;}
.y254{bottom:399.577867pt;}
.y42{bottom:400.377867pt;}
.y19{bottom:400.429467pt;}
.y1cc{bottom:401.013600pt;}
.yf8{bottom:402.020933pt;}
.y7f{bottom:405.178000pt;}
.ydb{bottom:405.724800pt;}
.y5f{bottom:406.212800pt;}
.y2ca{bottom:406.618800pt;}
.y191{bottom:410.304267pt;}
.y110{bottom:411.324800pt;}
.y27e{bottom:411.577867pt;}
.y1ea{bottom:412.377867pt;}
.y29d{bottom:412.646400pt;}
.y20b{bottom:413.978000pt;}
.y228{bottom:415.577867pt;}
.y219{bottom:416.377867pt;}
.y18{bottom:416.429467pt;}
.y170{bottom:416.795733pt;}
.y253{bottom:417.178000pt;}
.y127{bottom:417.283867pt;}
.ya7{bottom:417.978000pt;}
.yf7{bottom:419.620800pt;}
.y5e{bottom:420.612800pt;}
.y2c9{bottom:422.618800pt;}
.y7e{bottom:422.777867pt;}
.yda{bottom:423.324800pt;}
.y264{bottom:428.377867pt;}
.y29c{bottom:428.646400pt;}
.y10f{bottom:428.924800pt;}
.y27d{bottom:429.178000pt;}
.yc8{bottom:429.990533pt;}
.y1cb{bottom:430.618800pt;}
.y20a{bottom:431.577867pt;}
.y218{bottom:432.377867pt;}
.y17{bottom:432.429467pt;}
.y1e9{bottom:433.178000pt;}
.y152{bottom:433.978000pt;}
.y252{bottom:434.778000pt;}
.y126{bottom:434.883867pt;}
.y5d{bottom:435.012800pt;}
.ya6{bottom:435.577867pt;}
.y16f{bottom:436.487200pt;}
.y56{bottom:436.505200pt;}
.yf6{bottom:437.220800pt;}
.y2c8{bottom:438.618800pt;}
.y7d{bottom:440.377867pt;}
.yd9{bottom:440.924800pt;}
.y263{bottom:444.377867pt;}
.y29b{bottom:444.646400pt;}
.y10e{bottom:446.524800pt;}
.y1ca{bottom:446.618800pt;}
.y27c{bottom:446.777867pt;}
.y16{bottom:448.429467pt;}
.y209{bottom:449.178000pt;}
.yc7{bottom:449.190533pt;}
.y217{bottom:449.978000pt;}
.y1dc{bottom:450.618800pt;}
.y1e8{bottom:450.777867pt;}
.y16e{bottom:450.887200pt;}
.y151{bottom:451.577867pt;}
.y251{bottom:452.377867pt;}
.y125{bottom:452.483867pt;}
.y55{bottom:452.505200pt;}
.ya5{bottom:453.178000pt;}
.y2c7{bottom:454.618800pt;}
.yf5{bottom:454.820800pt;}
.y7c{bottom:458.379867pt;}
.yd8{bottom:458.524800pt;}
.y1aa{bottom:458.618800pt;}
.y262{bottom:460.377867pt;}
.y29a{bottom:460.646400pt;}
.y27b{bottom:464.377867pt;}
.y15{bottom:464.429467pt;}
.y16d{bottom:465.287200pt;}
.y1db{bottom:466.618800pt;}
.y187{bottom:466.777867pt;}
.y216{bottom:467.577867pt;}
.y1e7{bottom:468.377867pt;}
.y54{bottom:468.505200pt;}
.y150{bottom:469.178000pt;}
.y250{bottom:469.978000pt;}
.y124{bottom:470.083867pt;}
.y2c6{bottom:470.618800pt;}
.ya4{bottom:470.777867pt;}
.yf4{bottom:472.420800pt;}
.y1a9{bottom:474.618800pt;}
.y1f7{bottom:475.059867pt;}
.y7b{bottom:475.979867pt;}
.y261{bottom:476.377867pt;}
.y299{bottom:476.646400pt;}
.y5c{bottom:480.377867pt;}
.y14{bottom:480.429467pt;}
.y123{bottom:481.390667pt;}
.y1da{bottom:482.618800pt;}
.y186{bottom:484.377867pt;}
.y53{bottom:484.505200pt;}
.y215{bottom:485.178000pt;}
.y1e6{bottom:485.978000pt;}
.y2c5{bottom:486.618800pt;}
.y14f{bottom:486.777867pt;}
.y24f{bottom:487.578000pt;}
.ya3{bottom:488.377867pt;}
.yc6{bottom:489.178000pt;}
.yf3{bottom:490.020800pt;}
.y1a8{bottom:490.618800pt;}
.y1f6{bottom:491.059867pt;}
.y260{bottom:492.377867pt;}
.y298{bottom:492.646400pt;}
.y7a{bottom:493.579867pt;}
.yed{bottom:494.521200pt;}
.y27a{bottom:497.190533pt;}
.y122{bottom:497.390667pt;}
.y5b{bottom:497.977867pt;}
.y1d9{bottom:498.618800pt;}
.y185{bottom:501.978000pt;}
.y2c4{bottom:502.618800pt;}
.y16c{bottom:502.777867pt;}
.y1e5{bottom:503.577867pt;}
.y14e{bottom:504.377867pt;}
.y13f{bottom:504.949600pt;}
.y24e{bottom:505.178000pt;}
.ya2{bottom:505.978000pt;}
.y1a7{bottom:506.618800pt;}
.yc5{bottom:506.777867pt;}
.yf2{bottom:507.620800pt;}
.y25f{bottom:508.377867pt;}
.y297{bottom:508.646400pt;}
.yec{bottom:510.521200pt;}
.y13{bottom:510.829467pt;}
.y121{bottom:513.390667pt;}
.y1d8{bottom:514.618800pt;}
.y5a{bottom:515.577867pt;}
.y2c3{bottom:518.618800pt;}
.y184{bottom:519.577867pt;}
.y16b{bottom:520.377867pt;}
.y13e{bottom:520.949600pt;}
.y1e4{bottom:521.178000pt;}
.y14d{bottom:521.978000pt;}
.y1a6{bottom:522.618800pt;}
.y24d{bottom:522.777867pt;}
.ya1{bottom:523.577867pt;}
.yc4{bottom:524.377867pt;}
.y296{bottom:524.646400pt;}
.yf1{bottom:525.220800pt;}
.y12{bottom:525.229467pt;}
.yeb{bottom:526.521200pt;}
.y25e{bottom:526.777867pt;}
.y120{bottom:529.390667pt;}
.y90{bottom:529.670533pt;}
.y1d7{bottom:530.618800pt;}
.y59{bottom:533.177867pt;}
.y2c2{bottom:534.618800pt;}
.y13d{bottom:536.949600pt;}
.y183{bottom:537.178000pt;}
.y16a{bottom:537.978000pt;}
.y1a5{bottom:538.618800pt;}
.y1e3{bottom:538.777867pt;}
.y14c{bottom:539.577867pt;}
.y11{bottom:539.629467pt;}
.y24c{bottom:540.377867pt;}
.y295{bottom:540.646400pt;}
.ya0{bottom:541.178000pt;}
.yc3{bottom:541.978000pt;}
.yea{bottom:542.521200pt;}
.yf0{bottom:542.820933pt;}
.y25d{bottom:544.377867pt;}
.y227{bottom:545.178000pt;}
.y11f{bottom:545.390667pt;}
.y8f{bottom:545.670533pt;}
.y1d6{bottom:546.618800pt;}
.y2c1{bottom:550.618800pt;}
.y58{bottom:550.777867pt;}
.y13c{bottom:552.949600pt;}
.y10{bottom:554.029467pt;}
.y1a4{bottom:554.618800pt;}
.y182{bottom:554.777867pt;}
.y169{bottom:555.577867pt;}
.y1e2{bottom:556.377867pt;}
.y294{bottom:556.646400pt;}
.y14b{bottom:557.178000pt;}
.y38{bottom:557.978000pt;}
.y9f{bottom:558.777867pt;}
.yc2{bottom:559.578000pt;}
.yef{bottom:560.420800pt;}
.y11e{bottom:561.390667pt;}
.y1d5{bottom:562.618800pt;}
.y226{bottom:562.777867pt;}
.y2c0{bottom:566.618800pt;}
.y57{bottom:568.377867pt;}
.yf{bottom:568.429467pt;}
.y13b{bottom:568.949600pt;}
.y181{bottom:572.377867pt;}
.y293{bottom:572.646400pt;}
.y168{bottom:573.178000pt;}
.y1e1{bottom:573.978000pt;}
.y14a{bottom:574.777867pt;}
.y37{bottom:575.577867pt;}
.y24b{bottom:575.578000pt;}
.y9e{bottom:576.377867pt;}
.yc1{bottom:577.178000pt;}
.yee{bottom:578.020800pt;}
.y1d4{bottom:578.618800pt;}
.y225{bottom:580.377867pt;}
.y275{bottom:581.420533pt;}
.y2bf{bottom:582.618800pt;}
.ye{bottom:582.829467pt;}
.y13a{bottom:584.949600pt;}
.y292{bottom:588.646400pt;}
.y167{bottom:590.777867pt;}
.y1e0{bottom:591.577867pt;}
.y149{bottom:592.377867pt;}
.y36{bottom:593.178000pt;}
.y9d{bottom:593.978000pt;}
.y1d3{bottom:594.618800pt;}
.yc0{bottom:594.777867pt;}
.yd{bottom:597.229467pt;}
.y274{bottom:597.420533pt;}
.y224{bottom:597.978000pt;}
.y2be{bottom:598.618800pt;}
.y180{bottom:602.790533pt;}
.y291{bottom:604.646400pt;}
.y79{bottom:607.721067pt;}
.y166{bottom:608.377867pt;}
.y1df{bottom:609.178000pt;}
.y148{bottom:609.978000pt;}
.y1d2{bottom:610.618800pt;}
.y35{bottom:610.777867pt;}
.y9c{bottom:611.577867pt;}
.yc{bottom:611.629467pt;}
.ybf{bottom:612.377867pt;}
.y273{bottom:613.420533pt;}
.y2bd{bottom:614.618800pt;}
.y223{bottom:615.577867pt;}
.y290{bottom:620.646400pt;}
.y17f{bottom:621.990533pt;}
.y208{bottom:622.790533pt;}
.y78{bottom:623.721067pt;}
.y10d{bottom:625.673867pt;}
.y165{bottom:625.978000pt;}
.yb{bottom:626.029467pt;}
.y1de{bottom:626.777867pt;}
.y147{bottom:627.577867pt;}
.y34{bottom:628.377867pt;}
.y9b{bottom:629.178000pt;}
.y272{bottom:629.420533pt;}
.ybe{bottom:629.978000pt;}
.y2bc{bottom:630.618800pt;}
.y222{bottom:633.178000pt;}
.y28f{bottom:636.646400pt;}
.y77{bottom:639.721067pt;}
.ya{bottom:640.429467pt;}
.y10c{bottom:641.673867pt;}
.y164{bottom:643.577867pt;}
.y1dd{bottom:644.377867pt;}
.y146{bottom:645.178000pt;}
.y33{bottom:645.978000pt;}
.y2bb{bottom:646.618800pt;}
.y9a{bottom:646.777867pt;}
.ybd{bottom:647.578000pt;}
.y221{bottom:650.777867pt;}
.y28e{bottom:652.646400pt;}
.y9{bottom:654.829467pt;}
.y76{bottom:655.721067pt;}
.y10b{bottom:657.673867pt;}
.y163{bottom:661.178000pt;}
.y17e{bottom:661.978000pt;}
.y2ba{bottom:662.618800pt;}
.y145{bottom:662.777867pt;}
.y32{bottom:663.577867pt;}
.y24a{bottom:663.578000pt;}
.y99{bottom:664.377867pt;}
.ybc{bottom:665.178000pt;}
.y220{bottom:668.377867pt;}
.y28d{bottom:668.646400pt;}
.y8{bottom:669.229467pt;}
.y75{bottom:671.721067pt;}
.y10a{bottom:673.673867pt;}
.y2b9{bottom:678.618800pt;}
.y162{bottom:678.777867pt;}
.y17d{bottom:679.577867pt;}
.y144{bottom:680.377867pt;}
.y31{bottom:681.178000pt;}
.y98{bottom:681.978000pt;}
.y1ab{bottom:682.442933pt;}
.ybb{bottom:682.777867pt;}
.y7{bottom:683.629467pt;}
.y28c{bottom:684.646400pt;}
.y21f{bottom:688.377867pt;}
.y109{bottom:689.673867pt;}
.y2b8{bottom:694.618800pt;}
.y161{bottom:696.377867pt;}
.y17c{bottom:697.177867pt;}
.y207{bottom:697.978000pt;}
.y30{bottom:698.777867pt;}
.y97{bottom:699.578000pt;}
.y143{bottom:700.042933pt;}
.yba{bottom:700.377867pt;}
.y28b{bottom:700.646400pt;}
.y21e{bottom:704.377867pt;}
.y108{bottom:705.673867pt;}
.y6{bottom:708.696267pt;}
.y2b7{bottom:710.618800pt;}
.y17b{bottom:714.777867pt;}
.y206{bottom:715.578000pt;}
.y2f{bottom:716.377867pt;}
.y28a{bottom:716.646400pt;}
.y96{bottom:717.177867pt;}
.y142{bottom:717.642933pt;}
.yb9{bottom:718.082667pt;}
.y21d{bottom:720.377867pt;}
.y107{bottom:721.673867pt;}
.y2b6{bottom:726.618800pt;}
.y17a{bottom:732.377867pt;}
.y205{bottom:733.177867pt;}
.y279{bottom:733.978000pt;}
.y249{bottom:734.738400pt;}
.y95{bottom:734.777867pt;}
.y141{bottom:735.242933pt;}
.yb8{bottom:735.682667pt;}
.y21c{bottom:736.377867pt;}
.y5{bottom:736.629467pt;}
.y2b5{bottom:742.618800pt;}
.y2e{bottom:748.390533pt;}
.y289{bottom:748.646400pt;}
.y204{bottom:750.777867pt;}
.y278{bottom:751.578000pt;}
.y248{bottom:752.338400pt;}
.y94{bottom:752.377867pt;}
.y140{bottom:752.842933pt;}
.yb7{bottom:753.282667pt;}
.y4{bottom:755.335067pt;}
.y2b4{bottom:758.618800pt;}
.y203{bottom:768.377867pt;}
.y277{bottom:769.177867pt;}
.y247{bottom:769.938267pt;}
.y93{bottom:770.442933pt;}
.yb6{bottom:770.882533pt;}
.y2b3{bottom:774.618800pt;}
.y3{bottom:784.707333pt;}
.y276{bottom:786.777867pt;}
.y288{bottom:787.033733pt;}
.y246{bottom:787.538267pt;}
.y92{bottom:788.042933pt;}
.y2d{bottom:788.377867pt;}
.yb5{bottom:788.482533pt;}
.y2b2{bottom:790.618800pt;}
.y2{bottom:803.412800pt;}
.y2c{bottom:804.377867pt;}
.y287{bottom:804.633733pt;}
.y245{bottom:805.138400pt;}
.y91{bottom:805.642933pt;}
.yb4{bottom:806.082667pt;}
.y2b1{bottom:806.618800pt;}
.y2b{bottom:856.068533pt;}
.y1{bottom:857.044400pt;}
.h10{height:40.725000pt;}
.h13{height:41.479167pt;}
.h5{height:43.056000pt;}
.h6{height:43.804688pt;}
.hc{height:44.390625pt;}
.hf{height:44.690625pt;}
.ha{height:45.250000pt;}
.h8{height:45.343750pt;}
.h7{height:47.840000pt;}
.h11{height:48.185156pt;}
.h9{height:48.671875pt;}
.hd{height:49.322917pt;}
.he{height:49.656250pt;}
.h3{height:52.554667pt;}
.h2{height:53.539062pt;}
.hb{height:54.255208pt;}
.h12{height:55.818312pt;}
.h4{height:57.408000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x4{left:76.940933pt;}
.x3f{left:78.528667pt;}
.x20{left:79.534533pt;}
.x10{left:82.363867pt;}
.x9{left:83.317333pt;}
.x1b{left:84.246267pt;}
.x3d{left:85.758267pt;}
.x12{left:86.963467pt;}
.x45{left:88.104267pt;}
.x7{left:89.177200pt;}
.x5{left:91.013200pt;}
.x1e{left:92.102933pt;}
.x3{left:105.857067pt;}
.x35{left:115.312533pt;}
.x33{left:120.578667pt;}
.x31{left:130.755333pt;}
.x41{left:136.123600pt;}
.x2f{left:143.216133pt;}
.x42{left:145.957333pt;}
.x1d{left:147.192267pt;}
.xf{left:150.527467pt;}
.x8{left:159.974800pt;}
.x11{left:191.784400pt;}
.x44{left:199.302133pt;}
.x3e{left:206.809600pt;}
.x43{left:207.738000pt;}
.x13{left:214.785733pt;}
.x46{left:225.308000pt;}
.x1a{left:247.563333pt;}
.x1f{left:250.468800pt;}
.x24{left:258.989067pt;}
.x30{left:260.796933pt;}
.x25{left:268.762400pt;}
.x1c{left:271.853600pt;}
.x47{left:276.429200pt;}
.x26{left:279.731200pt;}
.x40{left:288.896533pt;}
.xa{left:290.338800pt;}
.x6{left:303.015200pt;}
.x2{left:306.533733pt;}
.x2c{left:342.928000pt;}
.x2b{left:344.617467pt;}
.x28{left:345.581067pt;}
.x29{left:346.739867pt;}
.x2a{left:350.245733pt;}
.x21{left:352.653067pt;}
.x22{left:362.426533pt;}
.x23{left:373.395200pt;}
.x37{left:380.797200pt;}
.x18{left:383.849867pt;}
.x3b{left:384.827067pt;}
.x16{left:386.281467pt;}
.x38{left:387.236000pt;}
.x15{left:388.162933pt;}
.x36{left:392.284800pt;}
.x3a{left:393.720400pt;}
.x19{left:394.738533pt;}
.x14{left:397.023600pt;}
.x32{left:406.176933pt;}
.x2d{left:413.924133pt;}
.x39{left:415.875333pt;}
.xb{left:435.552133pt;}
.xd{left:437.658267pt;}
.xc{left:439.585333pt;}
.x17{left:444.588800pt;}
.x27{left:450.567200pt;}
.x3c{left:459.680667pt;}
.x2e{left:467.163333pt;}
.xe{left:485.822400pt;}
.x34{left:500.371067pt;}
}




    .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; }
  