
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_715bcf411d690eacc3587a68.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a15745ad492ca9237e6c8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_694ddb15ae2ad80d7f9af8de.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_10aea32f52029598d5bd601d.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_fa18170bd5941504027fedf6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_87285ff16e504f695a8b0b5d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_04f974a3d28154764fa62f63.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061035;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_61eb04b17a4dcaa38bc0afe4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.666000px;}
.ls5{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.274800px;}
.ls10{letter-spacing:-0.089400px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.152400px;}
.lsa{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.262080px;}
.ls8{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:6.785280px;}
.ls2{letter-spacing:14.400000px;}
.lsc{letter-spacing:27.360000px;}
.lsd{letter-spacing:39.905280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wse{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.274000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.350600px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-6.756480px;}
._4{margin-left:-4.968000px;}
._9{margin-left:-3.719040px;}
._6{margin-left:-2.473920px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._d{width:3.009120px;}
._e{width:4.438080px;}
._3{width:5.696640px;}
._5{width:6.799680px;}
._8{width:8.026560px;}
._f{width:9.236160px;}
._10{width:10.255680px;}
._20{width:11.350080px;}
._1e{width:12.644640px;}
._b{width:13.865760px;}
._a{width:15.376320px;}
._12{width:18.362880px;}
._25{width:19.394880px;}
._c{width:20.445120px;}
._11{width:22.280640px;}
._16{width:24.059520px;}
._13{width:25.899840px;}
._14{width:27.040320px;}
._1a{width:28.336320px;}
._22{width:29.879040px;}
._21{width:30.948480px;}
._15{width:33.053760px;}
._28{width:34.952640px;}
._17{width:36.895680px;}
._2a{width:38.724480px;}
._29{width:39.744000px;}
._26{width:41.267520px;}
._27{width:42.615360px;}
._34{width:43.784640px;}
._32{width:45.308160px;}
._35{width:47.150640px;}
._58{width:48.510000px;}
._19{width:49.708800px;}
._18{width:51.071040px;}
._1c{width:52.211520px;}
._1f{width:54.889920px;}
._2f{width:55.930560px;}
._54{width:57.869760px;}
._4e{width:59.019840px;}
._3a{width:61.486560px;}
._30{width:62.795520px;}
._31{width:64.186560px;}
._55{width:65.511360px;}
._47{width:66.692160px;}
._33{width:68.492160px;}
._23{width:69.816960px;}
._24{width:71.274240px;}
._36{width:73.506480px;}
._57{width:74.721120px;}
._48{width:76.559760px;}
._56{width:77.918160px;}
._1b{width:80.150400px;}
._2e{width:82.033920px;}
._2d{width:83.064960px;}
._52{width:86.435280px;}
._42{width:87.966720px;}
._41{width:90.972240px;}
._39{width:101.599920px;}
._1d{width:102.884160px;}
._4c{width:115.994160px;}
._4b{width:117.488160px;}
._40{width:123.165360px;}
._51{width:129.798720px;}
._2b{width:135.593280px;}
._2c{width:136.667520px;}
._3f{width:141.810480px;}
._44{width:144.539520px;}
._4a{width:149.519520px;}
._50{width:152.169840px;}
._53{width:161.591040px;}
._4d{width:167.088960px;}
._43{width:172.049040px;}
._37{width:179.399520px;}
._45{width:185.499840px;}
._38{width:209.936880px;}
._49{width:211.072320px;}
._3c{width:222.659520px;}
._3e{width:225.115920px;}
._3d{width:231.559920px;}
._46{width:236.171520px;}
._3b{width:249.318720px;}
._4f{width:325.393200px;}
._2{width:961.680000px;}
.fc8{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(17,17,17);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y65{bottom:12.240000px;}
.y7c{bottom:12.420000px;}
.ya7{bottom:13.500000px;}
.ya{bottom:20.880000px;}
.y66{bottom:25.200000px;}
.y91{bottom:25.374000px;}
.y37{bottom:30.600000px;}
.y84{bottom:38.160000px;}
.y64{bottom:38.190000px;}
.y8d{bottom:38.334000px;}
.y8a{bottom:38.340000px;}
.y7b{bottom:38.370000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y8e{bottom:51.114000px;}
.y80{bottom:51.120000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y8c{bottom:64.074000px;}
.y83{bottom:64.080000px;}
.ya5{bottom:64.110000px;}
.y9b{bottom:64.125000px;}
.y7a{bottom:64.290000px;}
.y5{bottom:68.976000px;}
.y90{bottom:77.034000px;}
.y7f{bottom:77.040000px;}
.y97{bottom:77.085000px;}
.y34{bottom:79.056000px;}
.y8f{bottom:89.994000px;}
.y82{bottom:90.000000px;}
.y79{bottom:90.030000px;}
.y87{bottom:90.045000px;}
.y30{bottom:97.596000px;}
.y7e{bottom:102.960000px;}
.y96{bottom:103.005000px;}
.ya3{bottom:108.216000px;}
.y5d{bottom:109.836000px;}
.y9a{bottom:115.785000px;}
.y81{bottom:115.920000px;}
.y78{bottom:115.950000px;}
.y89{bottom:115.965000px;}
.yc7{bottom:117.036000px;}
.y2f{bottom:126.036000px;}
.y8b{bottom:131.436000px;}
.y5c{bottom:138.456000px;}
.y85{bottom:141.660000px;}
.y93{bottom:141.690000px;}
.y99{bottom:141.705000px;}
.y77{bottom:141.870000px;}
.y88{bottom:141.885000px;}
.yc6{bottom:145.476000px;}
.y2e{bottom:154.470000px;}
.y5b{bottom:166.890000px;}
.y94{bottom:167.610000px;}
.y98{bottom:167.625000px;}
.y76{bottom:167.790000px;}
.ycb{bottom:173.550000px;}
.yc5{bottom:173.910000px;}
.y2d{bottom:182.910000px;}
.y9d{bottom:186.510000px;}
.y6e{bottom:193.530000px;}
.ya2{bottom:193.545000px;}
.y5a{bottom:195.330000px;}
.yc4{bottom:202.350000px;}
.y2c{bottom:211.350000px;}
.y6a{bottom:219.450000px;}
.ya1{bottom:219.465000px;}
.y59{bottom:223.770000px;}
.yc3{bottom:230.790000px;}
.y6c{bottom:232.410000px;}
.y86{bottom:235.650000px;}
.y2b{bottom:239.790000px;}
.ya0{bottom:245.205000px;}
.y69{bottom:245.370000px;}
.y58{bottom:252.210000px;}
.y6b{bottom:258.330000px;}
.yc2{bottom:259.230000px;}
.y2a{bottom:268.230000px;}
.y9f{bottom:271.125000px;}
.y68{bottom:271.290000px;}
.y57{bottom:280.650000px;}
.yc1{bottom:287.670000px;}
.y29{bottom:296.850000px;}
.y9e{bottom:297.045000px;}
.y6d{bottom:297.075000px;}
.y56{bottom:309.090000px;}
.yc0{bottom:316.110000px;}
.y75{bottom:322.995000px;}
.y28{bottom:325.335000px;}
.y55{bottom:337.575000px;}
.ybf{bottom:344.595000px;}
.y74{bottom:348.915000px;}
.y27{bottom:353.775000px;}
.y54{bottom:366.015000px;}
.ybe{bottom:373.215000px;}
.y73{bottom:374.655000px;}
.y26{bottom:382.215000px;}
.y7d{bottom:391.755000px;}
.y53{bottom:394.635000px;}
.y72{bottom:400.575000px;}
.ybd{bottom:401.655000px;}
.y25{bottom:410.655000px;}
.y52{bottom:423.075000px;}
.y71{bottom:426.495000px;}
.ybc{bottom:430.095000px;}
.y24{bottom:439.095000px;}
.y51{bottom:451.515000px;}
.y70{bottom:452.415000px;}
.ybb{bottom:458.535000px;}
.y23{bottom:467.535000px;}
.y6f{bottom:478.155000px;}
.y50{bottom:479.955000px;}
.yba{bottom:486.975000px;}
.y22{bottom:495.975000px;}
.y9c{bottom:497.775000px;}
.y4f{bottom:508.395000px;}
.yb9{bottom:515.415000px;}
.y21{bottom:524.055000px;}
.y31{bottom:524.415000px;}
.y4e{bottom:536.835000px;}
.yb8{bottom:543.855000px;}
.y67{bottom:547.635000px;}
.y20{bottom:556.635000px;}
.y4d{bottom:565.275000px;}
.yb7{bottom:572.325000px;}
.y1f{bottom:585.105000px;}
.y4c{bottom:593.745000px;}
.yca{bottom:600.405000px;}
.yb6{bottom:600.765000px;}
.y1e{bottom:613.725000px;}
.ycf{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.yb5{bottom:629.385000px;}
.y1d{bottom:642.165000px;}
.ycd{bottom:650.445000px;}
.y4a{bottom:650.805000px;}
.yb4{bottom:657.825000px;}
.y1c{bottom:670.605000px;}
.y49{bottom:679.245000px;}
.yb3{bottom:686.265000px;}
.y1b{bottom:699.045000px;}
.y48{bottom:707.685000px;}
.yb2{bottom:714.705000px;}
.y1a{bottom:727.485000px;}
.y47{bottom:736.125000px;}
.yb1{bottom:743.145000px;}
.y19{bottom:755.925000px;}
.y95{bottom:757.365000px;}
.y5f{bottom:764.205000px;}
.y46{bottom:764.565000px;}
.yb0{bottom:771.585000px;}
.y18{bottom:784.365000px;}
.y45{bottom:793.005000px;}
.yaf{bottom:800.025000px;}
.y17{bottom:812.805000px;}
.y62{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.yae{bottom:828.510000px;}
.y16{bottom:841.290000px;}
.y43{bottom:849.930000px;}
.yad{bottom:856.950000px;}
.y15{bottom:875.850000px;}
.y42{bottom:878.370000px;}
.ycc{bottom:884.310000px;}
.yac{bottom:885.570000px;}
.y14{bottom:904.290000px;}
.y41{bottom:906.990000px;}
.yab{bottom:914.010000px;}
.y13{bottom:932.730000px;}
.y40{bottom:935.430000px;}
.y92{bottom:939.210000px;}
.yaa{bottom:942.450000px;}
.y12{bottom:961.170000px;}
.y3f{bottom:963.870000px;}
.ya9{bottom:970.530000px;}
.yc9{bottom:970.890000px;}
.y11{bottom:983.310000px;}
.yce{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.ya8{bottom:998.970000px;}
.yc8{bottom:999.330000px;}
.y10{bottom:1011.750000px;}
.ya6{bottom:1014.990000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y63{bottom:1040.190000px;}
.ya4{bottom:1042.710000px;}
.y3c{bottom:1048.830000px;}
.y5e{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y2{bottom:1072.620000px;}
.y61{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.y60{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h1e{height:27.000000px;}
.h6{height:33.480000px;}
.hc{height:41.250937px;}
.ha{height:46.736719px;}
.h1{height:48.045938px;}
.h13{height:51.696000px;}
.hf{height:52.971680px;}
.he{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h14{height:58.651172px;}
.hd{height:59.383125px;}
.h12{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.hb{height:66.757500px;}
.h1f{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h1c{height:77.580000px;}
.h1d{height:77.616000px;}
.h18{height:103.500000px;}
.h11{height:111.043849px;}
.h16{height:155.160000px;}
.h17{height:155.370000px;}
.h4{height:167.250000px;}
.h19{height:181.110000px;}
.h1a{height:258.870000px;}
.h10{height:268.635000px;}
.h1b{height:310.530000px;}
.h15{height:491.655000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w9{width:73.620000px;}
.w8{width:84.276000px;}
.wc{width:105.516000px;}
.wa{width:116.316000px;}
.wb{width:126.900000px;}
.wd{width:148.176000px;}
.we{width:149.580000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.x14{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xd{left:139.536000px;}
.xe{left:213.870000px;}
.xf{left:330.915000px;}
.x10{left:458.535000px;}
.x8{left:482.144986px;}
.x13{left:509.144986px;}
.x5{left:521.025000px;}
.x11{left:564.765000px;}
.x12{left:713.670000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.592000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.244267pt;}
.ls10{letter-spacing:-0.079467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.135467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.232960pt;}
.ls8{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:6.031360pt;}
.ls2{letter-spacing:12.800000pt;}
.lsc{letter-spacing:24.320000pt;}
.lsd{letter-spacing:35.471360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.688000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.wsf{word-spacing:-9.200533pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-6.005760pt;}
._4{margin-left:-4.416000pt;}
._9{margin-left:-3.305813pt;}
._6{margin-left:-2.199040pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._d{width:2.674773pt;}
._e{width:3.944960pt;}
._3{width:5.063680pt;}
._5{width:6.044160pt;}
._8{width:7.134720pt;}
._f{width:8.209920pt;}
._10{width:9.116160pt;}
._20{width:10.088960pt;}
._1e{width:11.239680pt;}
._b{width:12.325120pt;}
._a{width:13.667840pt;}
._12{width:16.322560pt;}
._25{width:17.239893pt;}
._c{width:18.173440pt;}
._11{width:19.805013pt;}
._16{width:21.386240pt;}
._13{width:23.022080pt;}
._14{width:24.035840pt;}
._1a{width:25.187840pt;}
._22{width:26.559147pt;}
._21{width:27.509760pt;}
._15{width:29.381120pt;}
._28{width:31.069013pt;}
._17{width:32.796160pt;}
._2a{width:34.421760pt;}
._29{width:35.328000pt;}
._26{width:36.682240pt;}
._27{width:37.880320pt;}
._34{width:38.919680pt;}
._32{width:40.273920pt;}
._35{width:41.911680pt;}
._58{width:43.120000pt;}
._19{width:44.185600pt;}
._18{width:45.396480pt;}
._1c{width:46.410240pt;}
._1f{width:48.791040pt;}
._2f{width:49.716053pt;}
._54{width:51.439787pt;}
._4e{width:52.462080pt;}
._3a{width:54.654720pt;}
._30{width:55.818240pt;}
._31{width:57.054720pt;}
._55{width:58.232320pt;}
._47{width:59.281920pt;}
._33{width:60.881920pt;}
._23{width:62.059520pt;}
._24{width:63.354880pt;}
._36{width:65.339093pt;}
._57{width:66.418773pt;}
._48{width:68.053120pt;}
._56{width:69.260587pt;}
._1b{width:71.244800pt;}
._2e{width:72.919040pt;}
._2d{width:73.835520pt;}
._52{width:76.831360pt;}
._42{width:78.192640pt;}
._41{width:80.864213pt;}
._39{width:90.311040pt;}
._1d{width:91.452587pt;}
._4c{width:103.105920pt;}
._4b{width:104.433920pt;}
._40{width:109.480320pt;}
._51{width:115.376640pt;}
._2b{width:120.527360pt;}
._2c{width:121.482240pt;}
._3f{width:126.053760pt;}
._44{width:128.479573pt;}
._4a{width:132.906240pt;}
._50{width:135.262080pt;}
._53{width:143.636480pt;}
._4d{width:148.523520pt;}
._43{width:152.932480pt;}
._37{width:159.466240pt;}
._45{width:164.888747pt;}
._38{width:186.610560pt;}
._49{width:187.619840pt;}
._3c{width:197.919573pt;}
._3e{width:200.103040pt;}
._3d{width:205.831040pt;}
._46{width:209.930240pt;}
._3b{width:221.616640pt;}
._4f{width:289.238400pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y65{bottom:10.880000pt;}
.y7c{bottom:11.040000pt;}
.ya7{bottom:12.000000pt;}
.ya{bottom:18.560000pt;}
.y66{bottom:22.400000pt;}
.y91{bottom:22.554667pt;}
.y37{bottom:27.200000pt;}
.y84{bottom:33.920000pt;}
.y64{bottom:33.946667pt;}
.y8d{bottom:34.074667pt;}
.y8a{bottom:34.080000pt;}
.y7b{bottom:34.106667pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y8e{bottom:45.434667pt;}
.y80{bottom:45.440000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y8c{bottom:56.954667pt;}
.y83{bottom:56.960000pt;}
.ya5{bottom:56.986667pt;}
.y9b{bottom:57.000000pt;}
.y7a{bottom:57.146667pt;}
.y5{bottom:61.312000pt;}
.y90{bottom:68.474667pt;}
.y7f{bottom:68.480000pt;}
.y97{bottom:68.520000pt;}
.y34{bottom:70.272000pt;}
.y8f{bottom:79.994667pt;}
.y82{bottom:80.000000pt;}
.y79{bottom:80.026667pt;}
.y87{bottom:80.040000pt;}
.y30{bottom:86.752000pt;}
.y7e{bottom:91.520000pt;}
.y96{bottom:91.560000pt;}
.ya3{bottom:96.192000pt;}
.y5d{bottom:97.632000pt;}
.y9a{bottom:102.920000pt;}
.y81{bottom:103.040000pt;}
.y78{bottom:103.066667pt;}
.y89{bottom:103.080000pt;}
.yc7{bottom:104.032000pt;}
.y2f{bottom:112.032000pt;}
.y8b{bottom:116.832000pt;}
.y5c{bottom:123.072000pt;}
.y85{bottom:125.920000pt;}
.y93{bottom:125.946667pt;}
.y99{bottom:125.960000pt;}
.y77{bottom:126.106667pt;}
.y88{bottom:126.120000pt;}
.yc6{bottom:129.312000pt;}
.y2e{bottom:137.306667pt;}
.y5b{bottom:148.346667pt;}
.y94{bottom:148.986667pt;}
.y98{bottom:149.000000pt;}
.y76{bottom:149.146667pt;}
.ycb{bottom:154.266667pt;}
.yc5{bottom:154.586667pt;}
.y2d{bottom:162.586667pt;}
.y9d{bottom:165.786667pt;}
.y6e{bottom:172.026667pt;}
.ya2{bottom:172.040000pt;}
.y5a{bottom:173.626667pt;}
.yc4{bottom:179.866667pt;}
.y2c{bottom:187.866667pt;}
.y6a{bottom:195.066667pt;}
.ya1{bottom:195.080000pt;}
.y59{bottom:198.906667pt;}
.yc3{bottom:205.146667pt;}
.y6c{bottom:206.586667pt;}
.y86{bottom:209.466667pt;}
.y2b{bottom:213.146667pt;}
.ya0{bottom:217.960000pt;}
.y69{bottom:218.106667pt;}
.y58{bottom:224.186667pt;}
.y6b{bottom:229.626667pt;}
.yc2{bottom:230.426667pt;}
.y2a{bottom:238.426667pt;}
.y9f{bottom:241.000000pt;}
.y68{bottom:241.146667pt;}
.y57{bottom:249.466667pt;}
.yc1{bottom:255.706667pt;}
.y29{bottom:263.866667pt;}
.y9e{bottom:264.040000pt;}
.y6d{bottom:264.066667pt;}
.y56{bottom:274.746667pt;}
.yc0{bottom:280.986667pt;}
.y75{bottom:287.106667pt;}
.y28{bottom:289.186667pt;}
.y55{bottom:300.066667pt;}
.ybf{bottom:306.306667pt;}
.y74{bottom:310.146667pt;}
.y27{bottom:314.466667pt;}
.y54{bottom:325.346667pt;}
.ybe{bottom:331.746667pt;}
.y73{bottom:333.026667pt;}
.y26{bottom:339.746667pt;}
.y7d{bottom:348.226667pt;}
.y53{bottom:350.786667pt;}
.y72{bottom:356.066667pt;}
.ybd{bottom:357.026667pt;}
.y25{bottom:365.026667pt;}
.y52{bottom:376.066667pt;}
.y71{bottom:379.106667pt;}
.ybc{bottom:382.306667pt;}
.y24{bottom:390.306667pt;}
.y51{bottom:401.346667pt;}
.y70{bottom:402.146667pt;}
.ybb{bottom:407.586667pt;}
.y23{bottom:415.586667pt;}
.y6f{bottom:425.026667pt;}
.y50{bottom:426.626667pt;}
.yba{bottom:432.866667pt;}
.y22{bottom:440.866667pt;}
.y9c{bottom:442.466667pt;}
.y4f{bottom:451.906667pt;}
.yb9{bottom:458.146667pt;}
.y21{bottom:465.826667pt;}
.y31{bottom:466.146667pt;}
.y4e{bottom:477.186667pt;}
.yb8{bottom:483.426667pt;}
.y67{bottom:486.786667pt;}
.y20{bottom:494.786667pt;}
.y4d{bottom:502.466667pt;}
.yb7{bottom:508.733333pt;}
.y1f{bottom:520.093333pt;}
.y4c{bottom:527.773333pt;}
.yca{bottom:533.693333pt;}
.yb6{bottom:534.013333pt;}
.y1e{bottom:545.533333pt;}
.ycf{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.yb5{bottom:559.453333pt;}
.y1d{bottom:570.813333pt;}
.ycd{bottom:578.173333pt;}
.y4a{bottom:578.493333pt;}
.yb4{bottom:584.733333pt;}
.y1c{bottom:596.093333pt;}
.y49{bottom:603.773333pt;}
.yb3{bottom:610.013333pt;}
.y1b{bottom:621.373333pt;}
.y48{bottom:629.053333pt;}
.yb2{bottom:635.293333pt;}
.y1a{bottom:646.653333pt;}
.y47{bottom:654.333333pt;}
.yb1{bottom:660.573333pt;}
.y19{bottom:671.933333pt;}
.y95{bottom:673.213333pt;}
.y5f{bottom:679.293333pt;}
.y46{bottom:679.613333pt;}
.yb0{bottom:685.853333pt;}
.y18{bottom:697.213333pt;}
.y45{bottom:704.893333pt;}
.yaf{bottom:711.133333pt;}
.y17{bottom:722.493333pt;}
.y62{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.yae{bottom:736.453333pt;}
.y16{bottom:747.813333pt;}
.y43{bottom:755.493333pt;}
.yad{bottom:761.733333pt;}
.y15{bottom:778.533333pt;}
.y42{bottom:780.773333pt;}
.ycc{bottom:786.053333pt;}
.yac{bottom:787.173333pt;}
.y14{bottom:803.813333pt;}
.y41{bottom:806.213333pt;}
.yab{bottom:812.453333pt;}
.y13{bottom:829.093333pt;}
.y40{bottom:831.493333pt;}
.y92{bottom:834.853333pt;}
.yaa{bottom:837.733333pt;}
.y12{bottom:854.373333pt;}
.y3f{bottom:856.773333pt;}
.ya9{bottom:862.693333pt;}
.yc9{bottom:863.013333pt;}
.y11{bottom:874.053333pt;}
.yce{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.ya8{bottom:887.973333pt;}
.yc8{bottom:888.293333pt;}
.y10{bottom:899.333333pt;}
.ya6{bottom:902.213333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y63{bottom:924.613333pt;}
.ya4{bottom:926.853333pt;}
.y3c{bottom:932.293333pt;}
.y5e{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y2{bottom:953.440000pt;}
.y61{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.y60{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h1e{height:24.000000pt;}
.h6{height:29.760000pt;}
.hc{height:36.667500pt;}
.ha{height:41.543750pt;}
.h1{height:42.707500pt;}
.h13{height:45.952000pt;}
.hf{height:47.085938pt;}
.he{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h14{height:52.134375pt;}
.hd{height:52.785000pt;}
.h12{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.hb{height:59.340000pt;}
.h1f{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h1c{height:68.960000pt;}
.h1d{height:68.992000pt;}
.h18{height:92.000000pt;}
.h11{height:98.705643pt;}
.h16{height:137.920000pt;}
.h17{height:138.106667pt;}
.h4{height:148.666667pt;}
.h19{height:160.986667pt;}
.h1a{height:230.106667pt;}
.h10{height:238.786667pt;}
.h1b{height:276.026667pt;}
.h15{height:437.026667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w9{width:65.440000pt;}
.w8{width:74.912000pt;}
.wc{width:93.792000pt;}
.wa{width:103.392000pt;}
.wb{width:112.800000pt;}
.wd{width:131.712000pt;}
.we{width:132.960000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.x14{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xd{left:124.032000pt;}
.xe{left:190.106667pt;}
.xf{left:294.146667pt;}
.x10{left:407.586667pt;}
.x8{left:428.573321pt;}
.x13{left:452.573321pt;}
.x5{left:463.133333pt;}
.x11{left:502.013333pt;}
.x12{left:634.373333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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