
    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_f5c7c2f815d30d7d276032fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_7a898dc2b387229b36891db8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_ba0821e72221c03bd46423c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.698000;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_033a016f80611508b613131d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_caff7c1d7e6b9d25f6ef6af7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_1eceb77eb0edee3825949c3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_4a05aee2b5e4ab02b385a865.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_eedc2988186e924f06ecb309.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_15579171c324a350e5ae1a10.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_a387172664a71cf825d9150e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_b1dacf56fb39bec4007adce7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_c8288b83d394a2f4deb138f7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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:ffd;src:url('chunks/assets/font_455cd814e690cb060a23758c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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);}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:33.120000px;}
.ls13{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.238800px;}
.lse{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.152640px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.181440px;}
.ls27{letter-spacing:0.214560px;}
.ls15{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.252000px;}
.ls1c{letter-spacing:0.269280px;}
.ls7{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.289440px;}
.ls11{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.480960px;}
.lsa{letter-spacing:0.496080px;}
.ls24{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.864000px;}
.ls16{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.440000px;}
.ls4{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.920000px;}
.ls6{letter-spacing:19.440000px;}
.ls1e{letter-spacing:20.160000px;}
.ls21{letter-spacing:27.360000px;}
.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;}
}
.ws29{word-spacing:-72.000000px;}
.ws1{word-spacing:-24.101616px;}
.ws2c{word-spacing:-23.940000px;}
.ws27{word-spacing:-19.440000px;}
.ws1e{word-spacing:-18.864000px;}
.ws21{word-spacing:-18.720000px;}
.ws2b{word-spacing:-18.576000px;}
.ws1a{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.327288px;}
.ws19{word-spacing:-18.288000px;}
.ws2a{word-spacing:-18.216000px;}
.ws1d{word-spacing:-18.144000px;}
.ws23{word-spacing:-18.072000px;}
.ws17{word-spacing:-18.000000px;}
.ws26{word-spacing:-17.928000px;}
.ws1c{word-spacing:-17.856000px;}
.ws22{word-spacing:-17.784000px;}
.ws20{word-spacing:-17.712000px;}
.ws28{word-spacing:-17.568000px;}
.ws24{word-spacing:-13.140000px;}
.ws1b{word-spacing:-12.420000px;}
.ws25{word-spacing:-12.349440px;}
.ws16{word-spacing:-12.240000px;}
.ws18{word-spacing:-12.060000px;}
.ws1f{word-spacing:-11.700000px;}
.ws13{word-spacing:-3.010912px;}
.ws14{word-spacing:-1.767274px;}
.ws15{word-spacing:0.000000px;}
.ws9{word-spacing:0.065455px;}
.ws6{word-spacing:0.589091px;}
.ws2{word-spacing:3.403639px;}
.ws10{word-spacing:3.469094px;}
.ws12{word-spacing:3.873474px;}
.wse{word-spacing:4.450913px;}
.wsd{word-spacing:5.694550px;}
.wsa{word-spacing:6.283642px;}
.wsc{word-spacing:7.134551px;}
.ws0{word-spacing:8.177334px;}
.ws5{word-spacing:9.621826px;}
.ws11{word-spacing:9.709486px;}
.wsf{word-spacing:11.520010px;}
.ws7{word-spacing:14.989103px;}
.ws8{word-spacing:17.083651px;}
.ws3{word-spacing:33.564941px;}
.ws4{word-spacing:33.578210px;}
._b{margin-left:-8.091257px;}
._5{margin-left:-5.432732px;}
._a{margin-left:-4.135624px;}
._6{margin-left:-2.683639px;}
._2{margin-left:-1.636365px;}
._3{width:1.636365px;}
._1{width:2.926625px;}
._12{width:4.052160px;}
._10{width:5.088000px;}
._11{width:6.696000px;}
._15{width:8.112000px;}
._19{width:9.276000px;}
._1a{width:10.992000px;}
._13{width:12.792000px;}
._14{width:14.400000px;}
._16{width:15.520080px;}
._c{width:16.690923px;}
._e{width:18.523652px;}
._17{width:19.656000px;}
._18{width:20.684713px;}
._1f{width:22.186922px;}
._1b{width:23.664000px;}
._7{width:25.527294px;}
._d{width:27.360023px;}
._8{width:28.800024px;}
._1c{width:29.835131px;}
._9{width:31.876390px;}
._23{width:33.459274px;}
._20{width:35.208000px;}
._21{width:36.516000px;}
._22{width:37.651639px;}
._0{width:43.038600px;}
._1d{width:49.464000px;}
._1e{width:51.022909px;}
._4{width:63.752780px;}
._24{width:72.264000px;}
._f{width:846.156000px;}
.fc7{color:rgb(0,0,204);}
.fc6{color:rgb(0,176,240);}
.fc5{color:rgb(247,150,70);}
.fc8{color:rgb(51,153,51);}
.fc3{color:rgb(4,74,188);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(255,51,204);}
.fc1{color:rgb(255,0,0);}
.fc9{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs1{font-size:65.454600px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y144{bottom:111.420000px;}
.y181{bottom:114.300000px;}
.ycb{bottom:115.560000px;}
.yf7{bottom:116.280000px;}
.y4e{bottom:116.460000px;}
.y158{bottom:116.820000px;}
.y82{bottom:117.540000px;}
.y11f{bottom:122.940000px;}
.yb7{bottom:131.580000px;}
.y9{bottom:132.649500px;}
.y6f{bottom:132.660000px;}
.y99{bottom:133.200000px;}
.y197{bottom:134.280000px;}
.y180{bottom:138.060000px;}
.y179{bottom:143.820000px;}
.yca{bottom:146.520000px;}
.y143{bottom:147.060000px;}
.y4d{bottom:147.600000px;}
.y81{bottom:148.680000px;}
.yf6{bottom:151.740000px;}
.y171{bottom:152.100000px;}
.y8{bottom:152.973000px;}
.y157{bottom:155.700000px;}
.y11e{bottom:158.580000px;}
.y17f{bottom:162.000000px;}
.yb6{bottom:162.540000px;}
.y6e{bottom:163.620000px;}
.y98{bottom:164.340000px;}
.y142{bottom:167.940000px;}
.yf5{bottom:172.620000px;}
.y7{bottom:173.296500px;}
.y196{bottom:173.340000px;}
.yc9{bottom:177.660000px;}
.y4c{bottom:178.560000px;}
.y11d{bottom:179.460000px;}
.y80{bottom:179.640000px;}
.y178{bottom:182.700000px;}
.y170{bottom:183.960000px;}
.y15f{bottom:186.120000px;}
.yae{bottom:186.840000px;}
.y141{bottom:188.640000px;}
.y156{bottom:190.620000px;}
.yd5{bottom:192.240000px;}
.yf4{bottom:193.320000px;}
.y6{bottom:193.620000px;}
.yb5{bottom:193.680000px;}
.y6d{bottom:194.760000px;}
.y97{bottom:195.300000px;}
.y17e{bottom:196.380000px;}
.y11c{bottom:200.190000px;}
.yc8{bottom:208.650000px;}
.y4b{bottom:209.730000px;}
.y7f{bottom:210.810000px;}
.y155{bottom:211.530000px;}
.y195{bottom:212.250000px;}
.y5{bottom:213.943500px;}
.yad{bottom:218.010000px;}
.y177{bottom:221.430000px;}
.y16f{bottom:222.510000px;}
.y140{bottom:224.310000px;}
.yb4{bottom:224.670000px;}
.y6c{bottom:225.750000px;}
.y96{bottom:226.470000px;}
.y15e{bottom:227.370000px;}
.yf3{bottom:228.990000px;}
.y4{bottom:234.268500px;}
.y11b{bottom:235.650000px;}
.yd4{bottom:238.710000px;}
.yc7{bottom:239.790000px;}
.y4a{bottom:240.690000px;}
.y7e{bottom:241.770000px;}
.y13f{bottom:245.190000px;}
.yac{bottom:248.970000px;}
.yf2{bottom:249.870000px;}
.y154{bottom:250.230000px;}
.y194{bottom:250.950000px;}
.y5f{bottom:255.810000px;}
.y11a{bottom:256.530000px;}
.y6b{bottom:256.710000px;}
.y95{bottom:257.430000px;}
.y15d{bottom:259.050000px;}
.y176{bottom:260.670000px;}
.y16e{bottom:261.210000px;}
.y13e{bottom:265.890000px;}
.yd3{bottom:269.850000px;}
.yc6{bottom:270.750000px;}
.y49{bottom:271.830000px;}
.y7d{bottom:272.910000px;}
.y119{bottom:277.230000px;}
.yab{bottom:280.110000px;}
.y153{bottom:284.610000px;}
.yf1{bottom:285.330000px;}
.y175{bottom:286.410000px;}
.y13d{bottom:286.590000px;}
.y5e{bottom:286.770000px;}
.y6a{bottom:287.850000px;}
.y94{bottom:288.570000px;}
.y15c{bottom:288.750000px;}
.y193{bottom:289.830000px;}
.y16d{bottom:300.090000px;}
.yd2{bottom:300.810000px;}
.yc5{bottom:301.710000px;}
.y48{bottom:302.790000px;}
.y7c{bottom:303.870000px;}
.yf0{bottom:306.210000px;}
.yaa{bottom:311.070000px;}
.y118{bottom:312.690000px;}
.y174{bottom:316.110000px;}
.y5d{bottom:317.910000px;}
.y69{bottom:318.810000px;}
.y93{bottom:319.530000px;}
.y13c{bottom:322.050000px;}
.yef{bottom:326.910000px;}
.y15b{bottom:327.270000px;}
.y192{bottom:328.710000px;}
.y3{bottom:329.197500px;}
.yd1{bottom:331.950000px;}
.yc4{bottom:332.850000px;}
.y117{bottom:333.570000px;}
.y47{bottom:333.930000px;}
.y7b{bottom:335.010000px;}
.y16c{bottom:338.790000px;}
.ya9{bottom:342.210000px;}
.y13b{bottom:342.930000px;}
.y5c{bottom:348.870000px;}
.y68{bottom:349.950000px;}
.y92{bottom:350.670000px;}
.y116{bottom:354.270000px;}
.y173{bottom:354.630000px;}
.y15a{bottom:362.010000px;}
.y2{bottom:362.080500px;}
.yee{bottom:362.370000px;}
.yd0{bottom:362.910000px;}
.yc3{bottom:363.810000px;}
.y46{bottom:364.890000px;}
.y7a{bottom:365.970000px;}
.y191{bottom:367.410000px;}
.ya8{bottom:373.170000px;}
.y16b{bottom:377.670000px;}
.y13a{bottom:378.390000px;}
.y5b{bottom:380.010000px;}
.y67{bottom:380.910000px;}
.y91{bottom:381.630000px;}
.yed{bottom:383.250000px;}
.y115{bottom:389.910000px;}
.ycf{bottom:393.870000px;}
.yc2{bottom:394.950000px;}
.y1{bottom:394.965000px;}
.y45{bottom:396.030000px;}
.y139{bottom:399.270000px;}
.ya7{bottom:404.310000px;}
.y190{bottom:406.290000px;}
.y114{bottom:410.790000px;}
.y5a{bottom:410.970000px;}
.y79{bottom:411.690000px;}
.y66{bottom:412.050000px;}
.y90{bottom:412.770000px;}
.y16a{bottom:416.370000px;}
.yec{bottom:418.890000px;}
.y138{bottom:419.970000px;}
.yce{bottom:425.010000px;}
.yc1{bottom:425.910000px;}
.y44{bottom:426.990000px;}
.y113{bottom:431.490000px;}
.ya6{bottom:435.270000px;}
.yeb{bottom:439.815000px;}
.y137{bottom:440.715000px;}
.y59{bottom:442.155000px;}
.y18f{bottom:445.035000px;}
.y112{bottom:452.235000px;}
.y169{bottom:455.295000px;}
.ycd{bottom:456.015000px;}
.yc0{bottom:457.095000px;}
.y43{bottom:458.175000px;}
.yea{bottom:460.335000px;}
.y136{bottom:461.415000px;}
.ya5{bottom:466.455000px;}
.y8f{bottom:472.035000px;}
.y111{bottom:472.755000px;}
.y58{bottom:473.115000px;}
.y18e{bottom:483.915000px;}
.ycc{bottom:487.155000px;}
.ybf{bottom:488.055000px;}
.y42{bottom:489.135000px;}
.y152{bottom:493.995000px;}
.y168{bottom:494.175000px;}
.ye9{bottom:495.975000px;}
.y135{bottom:497.055000px;}
.ya4{bottom:497.415000px;}
.y57{bottom:504.255000px;}
.y110{bottom:508.395000px;}
.ye8{bottom:516.855000px;}
.y134{bottom:517.755000px;}
.y8e{bottom:518.115000px;}
.ybe{bottom:519.195000px;}
.y41{bottom:520.275000px;}
.y18d{bottom:522.615000px;}
.ya3{bottom:528.555000px;}
.y10f{bottom:529.275000px;}
.y151{bottom:532.695000px;}
.y167{bottom:532.875000px;}
.y56{bottom:535.215000px;}
.y133{bottom:538.455000px;}
.y8d{bottom:549.255000px;}
.ybd{bottom:550.155000px;}
.y40{bottom:551.235000px;}
.ye7{bottom:552.315000px;}
.y150{bottom:556.455000px;}
.y132{bottom:559.155000px;}
.ya2{bottom:559.515000px;}
.y18c{bottom:561.495000px;}
.y10e{bottom:564.735000px;}
.y55{bottom:566.355000px;}
.y166{bottom:571.755000px;}
.ye6{bottom:573.195000px;}
.y2e{bottom:573.555000px;}
.y8c{bottom:580.215000px;}
.y14f{bottom:580.395000px;}
.ybc{bottom:581.295000px;}
.y3f{bottom:582.375000px;}
.y10{bottom:584.776500px;}
.y10d{bottom:585.615000px;}
.ya1{bottom:590.655000px;}
.ye5{bottom:593.895000px;}
.y131{bottom:594.795000px;}
.y54{bottom:597.315000px;}
.y18b{bottom:600.375000px;}
.y14e{bottom:604.155000px;}
.y2d{bottom:604.515000px;}
.yf{bottom:605.100000px;}
.y165{bottom:610.455000px;}
.y8b{bottom:611.355000px;}
.ybb{bottom:612.255000px;}
.y3e{bottom:613.335000px;}
.y130{bottom:615.675000px;}
.y10c{bottom:621.075000px;}
.ya0{bottom:621.615000px;}
.ye{bottom:625.423500px;}
.y14d{bottom:627.915000px;}
.y53{bottom:628.275000px;}
.ye4{bottom:629.355000px;}
.y2c{bottom:635.655000px;}
.y12f{bottom:636.375000px;}
.y18a{bottom:639.075000px;}
.y10b{bottom:641.955000px;}
.y8a{bottom:642.315000px;}
.yba{bottom:643.395000px;}
.y65{bottom:644.475000px;}
.y164{bottom:649.335000px;}
.ye3{bottom:650.235000px;}
.y14c{bottom:651.675000px;}
.y3d{bottom:659.415000px;}
.yd{bottom:661.468500px;}
.y10a{bottom:662.655000px;}
.y2b{bottom:666.615000px;}
.y9f{bottom:667.695000px;}
.ye2{bottom:670.935000px;}
.y12e{bottom:671.835000px;}
.y89{bottom:673.485000px;}
.yb9{bottom:674.385000px;}
.y64{bottom:675.465000px;}
.y189{bottom:677.985000px;}
.y163{bottom:688.425000px;}
.y14b{bottom:690.225000px;}
.y3c{bottom:690.405000px;}
.y12d{bottom:692.745000px;}
.y2a{bottom:697.785000px;}
.y109{bottom:698.325000px;}
.y9e{bottom:698.865000px;}
.y88{bottom:704.445000px;}
.yb8{bottom:705.525000px;}
.y78{bottom:706.605000px;}
.y17d{bottom:706.785000px;}
.y12c{bottom:713.445000px;}
.y162{bottom:714.345000px;}
.y188{bottom:716.685000px;}
.y108{bottom:719.205000px;}
.y3b{bottom:721.545000px;}
.y14a{bottom:724.965000px;}
.ye1{bottom:727.485000px;}
.y29{bottom:728.745000px;}
.y9d{bottom:729.825000px;}
.y87{bottom:735.585000px;}
.yb3{bottom:736.485000px;}
.y77{bottom:737.565000px;}
.y107{bottom:739.905000px;}
.y161{bottom:744.045000px;}
.y17c{bottom:746.025000px;}
.y12b{bottom:748.905000px;}
.y3a{bottom:752.505000px;}
.y187{bottom:755.565000px;}
.yc{bottom:759.609000px;}
.y28{bottom:759.885000px;}
.y9c{bottom:760.785000px;}
.ye0{bottom:762.945000px;}
.y172{bottom:763.305000px;}
.yb2{bottom:767.625000px;}
.y76{bottom:768.705000px;}
.y159{bottom:769.605000px;}
.y12a{bottom:769.785000px;}
.y1b{bottom:772.485000px;}
.y106{bottom:775.365000px;}
.y160{bottom:778.605000px;}
.y86{bottom:781.305000px;}
.y39{bottom:783.645000px;}
.ydf{bottom:783.825000px;}
.y129{bottom:790.485000px;}
.y27{bottom:790.845000px;}
.yb{bottom:792.493500px;}
.y186{bottom:794.265000px;}
.y105{bottom:796.245000px;}
.yb1{bottom:798.585000px;}
.y9b{bottom:799.305000px;}
.y75{bottom:799.665000px;}
.y17b{bottom:804.165000px;}
.y1a{bottom:811.185000px;}
.y38{bottom:814.605000px;}
.y104{bottom:816.945000px;}
.yde{bottom:819.285000px;}
.y26{bottom:821.985000px;}
.ya{bottom:825.376500px;}
.y128{bottom:826.125000px;}
.y85{bottom:827.565000px;}
.yb0{bottom:829.725000px;}
.y74{bottom:830.805000px;}
.y185{bottom:833.145000px;}
.ydd{bottom:840.165000px;}
.y37{bottom:845.745000px;}
.y127{bottom:847.005000px;}
.y19{bottom:850.065000px;}
.y103{bottom:852.405000px;}
.y25{bottom:852.945000px;}
.y184{bottom:856.905000px;}
.y84{bottom:859.425000px;}
.yaf{bottom:860.685000px;}
.ydc{bottom:860.865000px;}
.y73{bottom:861.765000px;}
.y126{bottom:867.705000px;}
.y102{bottom:873.285000px;}
.y36{bottom:876.705000px;}
.y183{bottom:880.665000px;}
.y24{bottom:884.085000px;}
.y18{bottom:888.945000px;}
.y83{bottom:891.825000px;}
.y72{bottom:892.905000px;}
.ydb{bottom:896.505000px;}
.y125{bottom:903.165000px;}
.y35{bottom:907.845000px;}
.y101{bottom:908.970000px;}
.y23{bottom:915.090000px;}
.y182{bottom:915.270000px;}
.yda{bottom:917.430000px;}
.y149{bottom:921.750000px;}
.y63{bottom:922.830000px;}
.y71{bottom:923.550000px;}
.y124{bottom:924.090000px;}
.y100{bottom:929.850000px;}
.y17{bottom:934.530000px;}
.yd9{bottom:938.130000px;}
.y34{bottom:938.850000px;}
.y123{bottom:944.790000px;}
.y22{bottom:946.230000px;}
.yff{bottom:950.550000px;}
.y62{bottom:953.970000px;}
.y148{bottom:960.450000px;}
.y122{bottom:965.490000px;}
.y70{bottom:969.630000px;}
.y33{bottom:969.990000px;}
.y16{bottom:973.410000px;}
.y21{bottom:977.190000px;}
.yd8{bottom:983.490000px;}
.y61{bottom:984.930000px;}
.yfe{bottom:986.010000px;}
.y15{bottom:987.450000px;}
.y147{bottom:999.330000px;}
.y9a{bottom:1000.590000px;}
.y32{bottom:1000.950000px;}
.yfd{bottom:1006.890000px;}
.y20{bottom:1008.330000px;}
.y14{bottom:1014.990000px;}
.y60{bottom:1016.070000px;}
.y121{bottom:1021.830000px;}
.yd7{bottom:1022.730000px;}
.y31{bottom:1032.090000px;}
.y146{bottom:1038.030000px;}
.y1f{bottom:1039.290000px;}
.yfc{bottom:1042.350000px;}
.y120{bottom:1042.530000px;}
.yd6{bottom:1046.490000px;}
.y13{bottom:1046.670000px;}
.y52{bottom:1047.030000px;}
.y30{bottom:1063.050000px;}
.yfb{bottom:1063.230000px;}
.y1e{bottom:1070.430000px;}
.y145{bottom:1072.590000px;}
.y51{bottom:1078.170000px;}
.y12{bottom:1088.070000px;}
.y2f{bottom:1094.190000px;}
.yfa{bottom:1098.870000px;}
.y17a{bottom:1101.030000px;}
.y1d{bottom:1101.390000px;}
.y50{bottom:1109.130000px;}
.yf9{bottom:1119.750000px;}
.y11{bottom:1134.870000px;}
.y1c{bottom:1139.910000px;}
.y4f{bottom:1140.270000px;}
.yf8{bottom:1140.450000px;}
.h9{height:47.344922px;}
.h3{height:49.090950px;}
.h10{height:50.229844px;}
.h12{height:50.273438px;}
.he{height:50.800781px;}
.h5{height:60.598349px;}
.hc{height:64.546875px;}
.h2{height:64.557900px;}
.ha{height:70.664062px;}
.hb{height:72.562500px;}
.h8{height:74.704922px;}
.hd{height:74.824922px;}
.hf{height:74.884922px;}
.h4{height:77.469300px;}
.h7{height:93.983203px;}
.h11{height:96.508125px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:85.039500px;}
.x8{left:108.745500px;}
.x4{left:112.039500px;}
.xc{left:117.564000px;}
.xb{left:128.025000px;}
.xd{left:144.576000px;}
.xa{left:171.795000px;}
.x11{left:175.710000px;}
.x10{left:180.750000px;}
.xf{left:192.270000px;}
.x2{left:272.401500px;}
.x1{left:328.078500px;}
.x3{left:350.770500px;}
.x9{left:437.448000px;}
.xe{left:446.505000px;}
.x7{left:453.928500px;}
.x6{left:480.928500px;}
.x14{left:647.970000px;}
.x15{left:654.270000px;}
.x18{left:656.610000px;}
.x16{left:669.930000px;}
.x17{left:672.990000px;}
.x1a{left:743.550000px;}
.x19{left:751.470000px;}
.x13{left:765.510000px;}
.x12{left:807.840000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:29.440000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.212267pt;}
.lse{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.135680pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.161280pt;}
.ls27{letter-spacing:0.190720pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls1c{letter-spacing:0.239360pt;}
.ls7{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.257280pt;}
.ls11{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.427520pt;}
.lsa{letter-spacing:0.440960pt;}
.ls24{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:7.040000pt;}
.ls6{letter-spacing:17.280000pt;}
.ls1e{letter-spacing:17.920000pt;}
.ls21{letter-spacing:24.320000pt;}
.ws29{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.423659pt;}
.ws2c{word-spacing:-21.280000pt;}
.ws27{word-spacing:-17.280000pt;}
.ws1e{word-spacing:-16.768000pt;}
.ws21{word-spacing:-16.640000pt;}
.ws2b{word-spacing:-16.512000pt;}
.ws1a{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.290923pt;}
.ws19{word-spacing:-16.256000pt;}
.ws2a{word-spacing:-16.192000pt;}
.ws1d{word-spacing:-16.128000pt;}
.ws23{word-spacing:-16.064000pt;}
.ws17{word-spacing:-16.000000pt;}
.ws26{word-spacing:-15.936000pt;}
.ws1c{word-spacing:-15.872000pt;}
.ws22{word-spacing:-15.808000pt;}
.ws20{word-spacing:-15.744000pt;}
.ws28{word-spacing:-15.616000pt;}
.ws24{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.040000pt;}
.ws25{word-spacing:-10.977280pt;}
.ws16{word-spacing:-10.880000pt;}
.ws18{word-spacing:-10.720000pt;}
.ws1f{word-spacing:-10.400000pt;}
.ws13{word-spacing:-2.676366pt;}
.ws14{word-spacing:-1.570910pt;}
.ws15{word-spacing:0.000000pt;}
.ws9{word-spacing:0.058182pt;}
.ws6{word-spacing:0.523637pt;}
.ws2{word-spacing:3.025457pt;}
.ws10{word-spacing:3.083639pt;}
.ws12{word-spacing:3.443088pt;}
.wse{word-spacing:3.956367pt;}
.wsd{word-spacing:5.061822pt;}
.wsa{word-spacing:5.585459pt;}
.wsc{word-spacing:6.341823pt;}
.ws0{word-spacing:7.268741pt;}
.ws5{word-spacing:8.552734pt;}
.ws11{word-spacing:8.630654pt;}
.wsf{word-spacing:10.240009pt;}
.ws7{word-spacing:13.323647pt;}
.ws8{word-spacing:15.185467pt;}
.ws3{word-spacing:29.835503pt;}
.ws4{word-spacing:29.847298pt;}
._b{margin-left:-7.192228pt;}
._5{margin-left:-4.829095pt;}
._a{margin-left:-3.676110pt;}
._6{margin-left:-2.385457pt;}
._2{margin-left:-1.454547pt;}
._3{width:1.454547pt;}
._1{width:2.601444pt;}
._12{width:3.601920pt;}
._10{width:4.522667pt;}
._11{width:5.952000pt;}
._15{width:7.210667pt;}
._19{width:8.245333pt;}
._1a{width:9.770667pt;}
._13{width:11.370667pt;}
._14{width:12.800000pt;}
._16{width:13.795627pt;}
._c{width:14.836376pt;}
._e{width:16.465468pt;}
._17{width:17.472000pt;}
._18{width:18.386412pt;}
._1f{width:19.721708pt;}
._1b{width:21.034667pt;}
._7{width:22.690928pt;}
._d{width:24.320020pt;}
._8{width:25.600021pt;}
._1c{width:26.520116pt;}
._9{width:28.334569pt;}
._23{width:29.741577pt;}
._20{width:31.296000pt;}
._21{width:32.458667pt;}
._22{width:33.468123pt;}
._0{width:38.256533pt;}
._1d{width:43.968000pt;}
._1e{width:45.353697pt;}
._4{width:56.669138pt;}
._24{width:64.234667pt;}
._f{width:752.138667pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:58.181867pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:99.040000pt;}
.y181{bottom:101.600000pt;}
.ycb{bottom:102.720000pt;}
.yf7{bottom:103.360000pt;}
.y4e{bottom:103.520000pt;}
.y158{bottom:103.840000pt;}
.y82{bottom:104.480000pt;}
.y11f{bottom:109.280000pt;}
.yb7{bottom:116.960000pt;}
.y9{bottom:117.910667pt;}
.y6f{bottom:117.920000pt;}
.y99{bottom:118.400000pt;}
.y197{bottom:119.360000pt;}
.y180{bottom:122.720000pt;}
.y179{bottom:127.840000pt;}
.yca{bottom:130.240000pt;}
.y143{bottom:130.720000pt;}
.y4d{bottom:131.200000pt;}
.y81{bottom:132.160000pt;}
.yf6{bottom:134.880000pt;}
.y171{bottom:135.200000pt;}
.y8{bottom:135.976000pt;}
.y157{bottom:138.400000pt;}
.y11e{bottom:140.960000pt;}
.y17f{bottom:144.000000pt;}
.yb6{bottom:144.480000pt;}
.y6e{bottom:145.440000pt;}
.y98{bottom:146.080000pt;}
.y142{bottom:149.280000pt;}
.yf5{bottom:153.440000pt;}
.y7{bottom:154.041333pt;}
.y196{bottom:154.080000pt;}
.yc9{bottom:157.920000pt;}
.y4c{bottom:158.720000pt;}
.y11d{bottom:159.520000pt;}
.y80{bottom:159.680000pt;}
.y178{bottom:162.400000pt;}
.y170{bottom:163.520000pt;}
.y15f{bottom:165.440000pt;}
.yae{bottom:166.080000pt;}
.y141{bottom:167.680000pt;}
.y156{bottom:169.440000pt;}
.yd5{bottom:170.880000pt;}
.yf4{bottom:171.840000pt;}
.y6{bottom:172.106667pt;}
.yb5{bottom:172.160000pt;}
.y6d{bottom:173.120000pt;}
.y97{bottom:173.600000pt;}
.y17e{bottom:174.560000pt;}
.y11c{bottom:177.946667pt;}
.yc8{bottom:185.466667pt;}
.y4b{bottom:186.426667pt;}
.y7f{bottom:187.386667pt;}
.y155{bottom:188.026667pt;}
.y195{bottom:188.666667pt;}
.y5{bottom:190.172000pt;}
.yad{bottom:193.786667pt;}
.y177{bottom:196.826667pt;}
.y16f{bottom:197.786667pt;}
.y140{bottom:199.386667pt;}
.yb4{bottom:199.706667pt;}
.y6c{bottom:200.666667pt;}
.y96{bottom:201.306667pt;}
.y15e{bottom:202.106667pt;}
.yf3{bottom:203.546667pt;}
.y4{bottom:208.238667pt;}
.y11b{bottom:209.466667pt;}
.yd4{bottom:212.186667pt;}
.yc7{bottom:213.146667pt;}
.y4a{bottom:213.946667pt;}
.y7e{bottom:214.906667pt;}
.y13f{bottom:217.946667pt;}
.yac{bottom:221.306667pt;}
.yf2{bottom:222.106667pt;}
.y154{bottom:222.426667pt;}
.y194{bottom:223.066667pt;}
.y5f{bottom:227.386667pt;}
.y11a{bottom:228.026667pt;}
.y6b{bottom:228.186667pt;}
.y95{bottom:228.826667pt;}
.y15d{bottom:230.266667pt;}
.y176{bottom:231.706667pt;}
.y16e{bottom:232.186667pt;}
.y13e{bottom:236.346667pt;}
.yd3{bottom:239.866667pt;}
.yc6{bottom:240.666667pt;}
.y49{bottom:241.626667pt;}
.y7d{bottom:242.586667pt;}
.y119{bottom:246.426667pt;}
.yab{bottom:248.986667pt;}
.y153{bottom:252.986667pt;}
.yf1{bottom:253.626667pt;}
.y175{bottom:254.586667pt;}
.y13d{bottom:254.746667pt;}
.y5e{bottom:254.906667pt;}
.y6a{bottom:255.866667pt;}
.y94{bottom:256.506667pt;}
.y15c{bottom:256.666667pt;}
.y193{bottom:257.626667pt;}
.y16d{bottom:266.746667pt;}
.yd2{bottom:267.386667pt;}
.yc5{bottom:268.186667pt;}
.y48{bottom:269.146667pt;}
.y7c{bottom:270.106667pt;}
.yf0{bottom:272.186667pt;}
.yaa{bottom:276.506667pt;}
.y118{bottom:277.946667pt;}
.y174{bottom:280.986667pt;}
.y5d{bottom:282.586667pt;}
.y69{bottom:283.386667pt;}
.y93{bottom:284.026667pt;}
.y13c{bottom:286.266667pt;}
.yef{bottom:290.586667pt;}
.y15b{bottom:290.906667pt;}
.y192{bottom:292.186667pt;}
.y3{bottom:292.620000pt;}
.yd1{bottom:295.066667pt;}
.yc4{bottom:295.866667pt;}
.y117{bottom:296.506667pt;}
.y47{bottom:296.826667pt;}
.y7b{bottom:297.786667pt;}
.y16c{bottom:301.146667pt;}
.ya9{bottom:304.186667pt;}
.y13b{bottom:304.826667pt;}
.y5c{bottom:310.106667pt;}
.y68{bottom:311.066667pt;}
.y92{bottom:311.706667pt;}
.y116{bottom:314.906667pt;}
.y173{bottom:315.226667pt;}
.y15a{bottom:321.786667pt;}
.y2{bottom:321.849333pt;}
.yee{bottom:322.106667pt;}
.yd0{bottom:322.586667pt;}
.yc3{bottom:323.386667pt;}
.y46{bottom:324.346667pt;}
.y7a{bottom:325.306667pt;}
.y191{bottom:326.586667pt;}
.ya8{bottom:331.706667pt;}
.y16b{bottom:335.706667pt;}
.y13a{bottom:336.346667pt;}
.y5b{bottom:337.786667pt;}
.y67{bottom:338.586667pt;}
.y91{bottom:339.226667pt;}
.yed{bottom:340.666667pt;}
.y115{bottom:346.586667pt;}
.ycf{bottom:350.106667pt;}
.yc2{bottom:351.066667pt;}
.y1{bottom:351.080000pt;}
.y45{bottom:352.026667pt;}
.y139{bottom:354.906667pt;}
.ya7{bottom:359.386667pt;}
.y190{bottom:361.146667pt;}
.y114{bottom:365.146667pt;}
.y5a{bottom:365.306667pt;}
.y79{bottom:365.946667pt;}
.y66{bottom:366.266667pt;}
.y90{bottom:366.906667pt;}
.y16a{bottom:370.106667pt;}
.yec{bottom:372.346667pt;}
.y138{bottom:373.306667pt;}
.yce{bottom:377.786667pt;}
.yc1{bottom:378.586667pt;}
.y44{bottom:379.546667pt;}
.y113{bottom:383.546667pt;}
.ya6{bottom:386.906667pt;}
.yeb{bottom:390.946667pt;}
.y137{bottom:391.746667pt;}
.y59{bottom:393.026667pt;}
.y18f{bottom:395.586667pt;}
.y112{bottom:401.986667pt;}
.y169{bottom:404.706667pt;}
.ycd{bottom:405.346667pt;}
.yc0{bottom:406.306667pt;}
.y43{bottom:407.266667pt;}
.yea{bottom:409.186667pt;}
.y136{bottom:410.146667pt;}
.ya5{bottom:414.626667pt;}
.y8f{bottom:419.586667pt;}
.y111{bottom:420.226667pt;}
.y58{bottom:420.546667pt;}
.y18e{bottom:430.146667pt;}
.ycc{bottom:433.026667pt;}
.ybf{bottom:433.826667pt;}
.y42{bottom:434.786667pt;}
.y152{bottom:439.106667pt;}
.y168{bottom:439.266667pt;}
.ye9{bottom:440.866667pt;}
.y135{bottom:441.826667pt;}
.ya4{bottom:442.146667pt;}
.y57{bottom:448.226667pt;}
.y110{bottom:451.906667pt;}
.ye8{bottom:459.426667pt;}
.y134{bottom:460.226667pt;}
.y8e{bottom:460.546667pt;}
.ybe{bottom:461.506667pt;}
.y41{bottom:462.466667pt;}
.y18d{bottom:464.546667pt;}
.ya3{bottom:469.826667pt;}
.y10f{bottom:470.466667pt;}
.y151{bottom:473.506667pt;}
.y167{bottom:473.666667pt;}
.y56{bottom:475.746667pt;}
.y133{bottom:478.626667pt;}
.y8d{bottom:488.226667pt;}
.ybd{bottom:489.026667pt;}
.y40{bottom:489.986667pt;}
.ye7{bottom:490.946667pt;}
.y150{bottom:494.626667pt;}
.y132{bottom:497.026667pt;}
.ya2{bottom:497.346667pt;}
.y18c{bottom:499.106667pt;}
.y10e{bottom:501.986667pt;}
.y55{bottom:503.426667pt;}
.y166{bottom:508.226667pt;}
.ye6{bottom:509.506667pt;}
.y2e{bottom:509.826667pt;}
.y8c{bottom:515.746667pt;}
.y14f{bottom:515.906667pt;}
.ybc{bottom:516.706667pt;}
.y3f{bottom:517.666667pt;}
.y10{bottom:519.801333pt;}
.y10d{bottom:520.546667pt;}
.ya1{bottom:525.026667pt;}
.ye5{bottom:527.906667pt;}
.y131{bottom:528.706667pt;}
.y54{bottom:530.946667pt;}
.y18b{bottom:533.666667pt;}
.y14e{bottom:537.026667pt;}
.y2d{bottom:537.346667pt;}
.yf{bottom:537.866667pt;}
.y165{bottom:542.626667pt;}
.y8b{bottom:543.426667pt;}
.ybb{bottom:544.226667pt;}
.y3e{bottom:545.186667pt;}
.y130{bottom:547.266667pt;}
.y10c{bottom:552.066667pt;}
.ya0{bottom:552.546667pt;}
.ye{bottom:555.932000pt;}
.y14d{bottom:558.146667pt;}
.y53{bottom:558.466667pt;}
.ye4{bottom:559.426667pt;}
.y2c{bottom:565.026667pt;}
.y12f{bottom:565.666667pt;}
.y18a{bottom:568.066667pt;}
.y10b{bottom:570.626667pt;}
.y8a{bottom:570.946667pt;}
.yba{bottom:571.906667pt;}
.y65{bottom:572.866667pt;}
.y164{bottom:577.186667pt;}
.ye3{bottom:577.986667pt;}
.y14c{bottom:579.266667pt;}
.y3d{bottom:586.146667pt;}
.yd{bottom:587.972000pt;}
.y10a{bottom:589.026667pt;}
.y2b{bottom:592.546667pt;}
.y9f{bottom:593.506667pt;}
.ye2{bottom:596.386667pt;}
.y12e{bottom:597.186667pt;}
.y89{bottom:598.653333pt;}
.yb9{bottom:599.453333pt;}
.y64{bottom:600.413333pt;}
.y189{bottom:602.653333pt;}
.y163{bottom:611.933333pt;}
.y14b{bottom:613.533333pt;}
.y3c{bottom:613.693333pt;}
.y12d{bottom:615.773333pt;}
.y2a{bottom:620.253333pt;}
.y109{bottom:620.733333pt;}
.y9e{bottom:621.213333pt;}
.y88{bottom:626.173333pt;}
.yb8{bottom:627.133333pt;}
.y78{bottom:628.093333pt;}
.y17d{bottom:628.253333pt;}
.y12c{bottom:634.173333pt;}
.y162{bottom:634.973333pt;}
.y188{bottom:637.053333pt;}
.y108{bottom:639.293333pt;}
.y3b{bottom:641.373333pt;}
.y14a{bottom:644.413333pt;}
.ye1{bottom:646.653333pt;}
.y29{bottom:647.773333pt;}
.y9d{bottom:648.733333pt;}
.y87{bottom:653.853333pt;}
.yb3{bottom:654.653333pt;}
.y77{bottom:655.613333pt;}
.y107{bottom:657.693333pt;}
.y161{bottom:661.373333pt;}
.y17c{bottom:663.133333pt;}
.y12b{bottom:665.693333pt;}
.y3a{bottom:668.893333pt;}
.y187{bottom:671.613333pt;}
.yc{bottom:675.208000pt;}
.y28{bottom:675.453333pt;}
.y9c{bottom:676.253333pt;}
.ye0{bottom:678.173333pt;}
.y172{bottom:678.493333pt;}
.yb2{bottom:682.333333pt;}
.y76{bottom:683.293333pt;}
.y159{bottom:684.093333pt;}
.y12a{bottom:684.253333pt;}
.y1b{bottom:686.653333pt;}
.y106{bottom:689.213333pt;}
.y160{bottom:692.093333pt;}
.y86{bottom:694.493333pt;}
.y39{bottom:696.573333pt;}
.ydf{bottom:696.733333pt;}
.y129{bottom:702.653333pt;}
.y27{bottom:702.973333pt;}
.yb{bottom:704.438667pt;}
.y186{bottom:706.013333pt;}
.y105{bottom:707.773333pt;}
.yb1{bottom:709.853333pt;}
.y9b{bottom:710.493333pt;}
.y75{bottom:710.813333pt;}
.y17b{bottom:714.813333pt;}
.y1a{bottom:721.053333pt;}
.y38{bottom:724.093333pt;}
.y104{bottom:726.173333pt;}
.yde{bottom:728.253333pt;}
.y26{bottom:730.653333pt;}
.ya{bottom:733.668000pt;}
.y128{bottom:734.333333pt;}
.y85{bottom:735.613333pt;}
.yb0{bottom:737.533333pt;}
.y74{bottom:738.493333pt;}
.y185{bottom:740.573333pt;}
.ydd{bottom:746.813333pt;}
.y37{bottom:751.773333pt;}
.y127{bottom:752.893333pt;}
.y19{bottom:755.613333pt;}
.y103{bottom:757.693333pt;}
.y25{bottom:758.173333pt;}
.y184{bottom:761.693333pt;}
.y84{bottom:763.933333pt;}
.yaf{bottom:765.053333pt;}
.ydc{bottom:765.213333pt;}
.y73{bottom:766.013333pt;}
.y126{bottom:771.293333pt;}
.y102{bottom:776.253333pt;}
.y36{bottom:779.293333pt;}
.y183{bottom:782.813333pt;}
.y24{bottom:785.853333pt;}
.y18{bottom:790.173333pt;}
.y83{bottom:792.733333pt;}
.y72{bottom:793.693333pt;}
.ydb{bottom:796.893333pt;}
.y125{bottom:802.813333pt;}
.y35{bottom:806.973333pt;}
.y101{bottom:807.973333pt;}
.y23{bottom:813.413333pt;}
.y182{bottom:813.573333pt;}
.yda{bottom:815.493333pt;}
.y149{bottom:819.333333pt;}
.y63{bottom:820.293333pt;}
.y71{bottom:820.933333pt;}
.y124{bottom:821.413333pt;}
.y100{bottom:826.533333pt;}
.y17{bottom:830.693333pt;}
.yd9{bottom:833.893333pt;}
.y34{bottom:834.533333pt;}
.y123{bottom:839.813333pt;}
.y22{bottom:841.093333pt;}
.yff{bottom:844.933333pt;}
.y62{bottom:847.973333pt;}
.y148{bottom:853.733333pt;}
.y122{bottom:858.213333pt;}
.y70{bottom:861.893333pt;}
.y33{bottom:862.213333pt;}
.y16{bottom:865.253333pt;}
.y21{bottom:868.613333pt;}
.yd8{bottom:874.213333pt;}
.y61{bottom:875.493333pt;}
.yfe{bottom:876.453333pt;}
.y15{bottom:877.733333pt;}
.y147{bottom:888.293333pt;}
.y9a{bottom:889.413333pt;}
.y32{bottom:889.733333pt;}
.yfd{bottom:895.013333pt;}
.y20{bottom:896.293333pt;}
.y14{bottom:902.213333pt;}
.y60{bottom:903.173333pt;}
.y121{bottom:908.293333pt;}
.yd7{bottom:909.093333pt;}
.y31{bottom:917.413333pt;}
.y146{bottom:922.693333pt;}
.y1f{bottom:923.813333pt;}
.yfc{bottom:926.533333pt;}
.y120{bottom:926.693333pt;}
.yd6{bottom:930.213333pt;}
.y13{bottom:930.373333pt;}
.y52{bottom:930.693333pt;}
.y30{bottom:944.933333pt;}
.yfb{bottom:945.093333pt;}
.y1e{bottom:951.493333pt;}
.y145{bottom:953.413333pt;}
.y51{bottom:958.373333pt;}
.y12{bottom:967.173333pt;}
.y2f{bottom:972.613333pt;}
.yfa{bottom:976.773333pt;}
.y17a{bottom:978.693333pt;}
.y1d{bottom:979.013333pt;}
.y50{bottom:985.893333pt;}
.yf9{bottom:995.333333pt;}
.y11{bottom:1008.773333pt;}
.y1c{bottom:1013.253333pt;}
.y4f{bottom:1013.573333pt;}
.yf8{bottom:1013.733333pt;}
.h9{height:42.084375pt;}
.h3{height:43.636400pt;}
.h10{height:44.648750pt;}
.h12{height:44.687500pt;}
.he{height:45.156250pt;}
.h5{height:53.865199pt;}
.hc{height:57.375000pt;}
.h2{height:57.384800pt;}
.ha{height:62.812500pt;}
.hb{height:64.500000pt;}
.h8{height:66.404375pt;}
.hd{height:66.511042pt;}
.hf{height:66.564375pt;}
.h4{height:68.861600pt;}
.h7{height:83.540625pt;}
.h11{height:85.785000pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.590667pt;}
.x8{left:96.662667pt;}
.x4{left:99.590667pt;}
.xc{left:104.501333pt;}
.xb{left:113.800000pt;}
.xd{left:128.512000pt;}
.xa{left:152.706667pt;}
.x11{left:156.186667pt;}
.x10{left:160.666667pt;}
.xf{left:170.906667pt;}
.x2{left:242.134667pt;}
.x1{left:291.625333pt;}
.x3{left:311.796000pt;}
.x9{left:388.842667pt;}
.xe{left:396.893333pt;}
.x7{left:403.492000pt;}
.x6{left:427.492000pt;}
.x14{left:575.973333pt;}
.x15{left:581.573333pt;}
.x18{left:583.653333pt;}
.x16{left:595.493333pt;}
.x17{left:598.213333pt;}
.x1a{left:660.933333pt;}
.x19{left:667.973333pt;}
.x13{left:680.453333pt;}
.x12{left:718.080000pt;}
}




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