
    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_82875c8e3ac11bc8efd8981e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_777fb9e5c9892d478fcb3935.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_573a53f36f443d32e29c9f2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_eefb35dff0424e3eff6e9fe1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_40af293489028b7b859519ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.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;}
}
.ws12{word-spacing:-55.944000px;}
.ws1{word-spacing:-41.877300px;}
.ws86{word-spacing:-38.863800px;}
.wsf{word-spacing:-38.655600px;}
.ws40{word-spacing:-38.646900px;}
.ws3{word-spacing:-38.578500px;}
.ws89{word-spacing:-38.575800px;}
.ws6{word-spacing:-38.444400px;}
.ws9{word-spacing:-38.440800px;}
.ws81{word-spacing:-38.427600px;}
.ws5{word-spacing:-38.362500px;}
.ws7c{word-spacing:-38.166000px;}
.ws85{word-spacing:-38.160000px;}
.ws91{word-spacing:-38.154300px;}
.ws54{word-spacing:-38.129400px;}
.ws8{word-spacing:-37.948200px;}
.ws9b{word-spacing:-37.944000px;}
.ws95{word-spacing:-37.937400px;}
.ws8c{word-spacing:-37.936800px;}
.ws8f{word-spacing:-37.935000px;}
.ws7{word-spacing:-37.932300px;}
.ws36{word-spacing:-37.924200px;}
.ws61{word-spacing:-37.717800px;}
.ws92{word-spacing:-37.656000px;}
.ws4{word-spacing:-37.145700px;}
.ws9a{word-spacing:-36.642000px;}
.ws14{word-spacing:-36.487200px;}
.ws67{word-spacing:-36.265800px;}
.ws4f{word-spacing:-35.994000px;}
.ws46{word-spacing:-35.770800px;}
.ws2e{word-spacing:-35.280000px;}
.ws8a{word-spacing:-35.062200px;}
.ws47{word-spacing:-35.056800px;}
.ws29{word-spacing:-35.040600px;}
.ws49{word-spacing:-34.831800px;}
.ws28{word-spacing:-34.828200px;}
.ws76{word-spacing:-34.564200px;}
.ws4c{word-spacing:-34.108800px;}
.ws37{word-spacing:-33.840000px;}
.ws55{word-spacing:-33.822000px;}
.wsb{word-spacing:-33.615600px;}
.ws2{word-spacing:-33.547800px;}
.ws1e{word-spacing:-33.401700px;}
.wse{word-spacing:-33.400800px;}
.ws39{word-spacing:-33.384600px;}
.wsa{word-spacing:-33.103800px;}
.ws34{word-spacing:-32.889600px;}
.ws6b{word-spacing:-32.887800px;}
.ws16{word-spacing:-32.680800px;}
.ws2a{word-spacing:-31.680000px;}
.wsd{word-spacing:-30.954600px;}
.ws31{word-spacing:-30.736800px;}
.ws7a{word-spacing:-30.723300px;}
.ws1c{word-spacing:-30.024000px;}
.ws15{word-spacing:-30.021900px;}
.wsc{word-spacing:-30.013800px;}
.ws1b{word-spacing:-30.013200px;}
.ws13{word-spacing:-29.800800px;}
.ws59{word-spacing:-29.791800px;}
.ws42{word-spacing:-29.298000px;}
.ws83{word-spacing:-29.277600px;}
.ws62{word-spacing:-28.587300px;}
.ws80{word-spacing:-28.573200px;}
.ws51{word-spacing:-28.567800px;}
.ws53{word-spacing:-28.544400px;}
.ws2f{word-spacing:-28.360800px;}
.ws22{word-spacing:-28.068000px;}
.ws6f{word-spacing:-27.850200px;}
.ws5a{word-spacing:-27.344700px;}
.ws19{word-spacing:-27.148200px;}
.ws66{word-spacing:-27.135000px;}
.ws6d{word-spacing:-27.131400px;}
.ws3b{word-spacing:-27.111600px;}
.ws52{word-spacing:-26.623800px;}
.ws82{word-spacing:-26.409600px;}
.ws3c{word-spacing:-25.917000px;}
.ws6a{word-spacing:-25.909200px;}
.ws93{word-spacing:-25.887600px;}
.ws87{word-spacing:-25.704000px;}
.ws33{word-spacing:-24.972300px;}
.ws4a{word-spacing:-24.971400px;}
.ws20{word-spacing:-24.253200px;}
.ws77{word-spacing:-24.249600px;}
.ws7b{word-spacing:-23.541300px;}
.ws64{word-spacing:-23.522400px;}
.ws3f{word-spacing:-23.320800px;}
.ws65{word-spacing:-22.822200px;}
.ws68{word-spacing:-22.815000px;}
.ws11{word-spacing:-22.813200px;}
.ws10{word-spacing:-22.312800px;}
.ws97{word-spacing:-22.308300px;}
.ws32{word-spacing:-22.096800px;}
.ws27{word-spacing:-21.883200px;}
.ws5b{word-spacing:-21.373200px;}
.ws75{word-spacing:-21.362400px;}
.ws3e{word-spacing:-19.931400px;}
.ws30{word-spacing:-19.720800px;}
.ws8b{word-spacing:-19.434300px;}
.ws3a{word-spacing:-19.213200px;}
.ws6c{word-spacing:-18.495600px;}
.ws4d{word-spacing:-18.280800px;}
.ws26{word-spacing:-17.971200px;}
.ws2d{word-spacing:-17.057400px;}
.ws71{word-spacing:-17.052300px;}
.ws4e{word-spacing:-17.045100px;}
.ws18{word-spacing:-16.840800px;}
.ws5c{word-spacing:-16.837800px;}
.ws94{word-spacing:-16.834500px;}
.ws4b{word-spacing:-16.560000px;}
.ws58{word-spacing:-16.106400px;}
.ws2c{word-spacing:-15.626400px;}
.ws5e{word-spacing:-15.388200px;}
.ws60{word-spacing:-14.898300px;}
.ws43{word-spacing:-14.887800px;}
.ws90{word-spacing:-14.316300px;}
.ws57{word-spacing:-13.453200px;}
.ws74{word-spacing:-13.237200px;}
.ws44{word-spacing:-12.513600px;}
.ws7f{word-spacing:-12.222000px;}
.ws45{word-spacing:-12.013200px;}
.ws73{word-spacing:-12.009900px;}
.ws3d{word-spacing:-12.002400px;}
.ws1a{word-spacing:-11.080800px;}
.ws98{word-spacing:-10.582800px;}
.ws79{word-spacing:-10.569600px;}
.ws72{word-spacing:-9.345000px;}
.ws17{word-spacing:-8.269200px;}
.ws5d{word-spacing:-7.893600px;}
.ws6e{word-spacing:-6.031800px;}
.ws70{word-spacing:-4.815600px;}
.ws69{word-spacing:-4.305600px;}
.ws35{word-spacing:-4.093200px;}
.ws50{word-spacing:-3.366000px;}
.ws5f{word-spacing:-2.880000px;}
.ws8e{word-spacing:-2.076300px;}
.ws8d{word-spacing:-1.944000px;}
.ws56{word-spacing:-1.200600px;}
.ws63{word-spacing:-0.991800px;}
.ws41{word-spacing:-0.686400px;}
.ws1f{word-spacing:-0.493200px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.210000px;}
.ws99{word-spacing:0.746400px;}
.ws96{word-spacing:4.538700px;}
.ws21{word-spacing:4.546800px;}
.ws84{word-spacing:7.426800px;}
.ws2b{word-spacing:9.583200px;}
.ws48{word-spacing:10.313400px;}
.ws25{word-spacing:10.512000px;}
.ws1d{word-spacing:13.399200px;}
.ws38{word-spacing:13.904400px;}
.ws9c{word-spacing:15.345300px;}
.ws88{word-spacing:22.542600px;}
.ws7d{word-spacing:25.929000px;}
.ws7e{word-spacing:26.168400px;}
.ws24{word-spacing:28.312800px;}
.ws78{word-spacing:30.473400px;}
._7{margin-left:-2.253000px;}
._3{margin-left:-1.068900px;}
._1{width:1.894200px;}
._2{width:18.576000px;}
._22{width:19.658700px;}
._b{width:21.350400px;}
._0{width:22.505400px;}
._4{width:23.624100px;}
._8{width:24.714000px;}
._6{width:26.197200px;}
._5{width:27.229200px;}
._a{width:28.365600px;}
._f{width:29.812200px;}
._20{width:30.927600px;}
._15{width:32.905200px;}
._9{width:34.279500px;}
._1d{width:35.833800px;}
._1c{width:37.362900px;}
._1a{width:39.000300px;}
._e{width:40.455600px;}
._24{width:42.431400px;}
._27{width:44.576700px;}
._10{width:45.971400px;}
._11{width:46.973400px;}
._d{width:49.164000px;}
._1e{width:50.849400px;}
._28{width:52.334400px;}
._1f{width:53.413200px;}
._26{width:54.696000px;}
._13{width:57.062400px;}
._17{width:58.215600px;}
._2d{width:59.216400px;}
._16{width:62.041200px;}
._2b{width:64.717200px;}
._1b{width:66.556200px;}
._19{width:68.095200px;}
._25{width:69.101400px;}
._12{width:70.970400px;}
._c{width:71.982000px;}
._2f{width:74.361900px;}
._2e{width:76.176000px;}
._2a{width:84.129000px;}
._18{width:85.735200px;}
._29{width:87.599400px;}
._2c{width:97.266000px;}
._23{width:99.880200px;}
._21{width:102.999600px;}
._14{width:104.178000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.700000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y4{bottom:32.475000px;}
.y2d{bottom:89.175000px;}
.y5b{bottom:97.096500px;}
.y2c{bottom:109.875000px;}
.y5a{bottom:117.796500px;}
.y2b{bottom:130.575000px;}
.y59{bottom:138.496500px;}
.y2a{bottom:151.275000px;}
.y58{bottom:159.196500px;}
.y79{bottom:159.375000px;}
.y29{bottom:171.975000px;}
.y57{bottom:179.896500px;}
.y78{bottom:180.075000px;}
.y28{bottom:192.675000px;}
.y56{bottom:200.415000px;}
.y77{bottom:200.775000px;}
.y27{bottom:213.375000px;}
.y76{bottom:221.475000px;}
.y26{bottom:234.075000px;}
.y55{bottom:242.175000px;}
.y25{bottom:254.775000px;}
.y54{bottom:262.875000px;}
.y24{bottom:275.475000px;}
.y53{bottom:283.575000px;}
.y23{bottom:296.175000px;}
.y52{bottom:304.275000px;}
.y22{bottom:316.875000px;}
.y51{bottom:324.975000px;}
.y21{bottom:337.575000px;}
.y50{bottom:345.675000px;}
.y75{bottom:346.036500px;}
.y20{bottom:358.275000px;}
.y4f{bottom:366.375000px;}
.y74{bottom:366.736500px;}
.y1f{bottom:378.975000px;}
.y4e{bottom:387.075000px;}
.y73{bottom:387.436500px;}
.y1e{bottom:399.675000px;}
.y4d{bottom:407.775000px;}
.y72{bottom:408.136500px;}
.y1d{bottom:420.375000px;}
.y4c{bottom:428.475000px;}
.y71{bottom:428.836500px;}
.y1c{bottom:441.075000px;}
.y4b{bottom:449.175000px;}
.y70{bottom:449.536500px;}
.y1b{bottom:461.775000px;}
.y4a{bottom:469.875000px;}
.y6f{bottom:470.236500px;}
.y1a{bottom:482.475000px;}
.y49{bottom:490.575000px;}
.y6e{bottom:490.936500px;}
.y19{bottom:503.175000px;}
.y48{bottom:511.275000px;}
.y6d{bottom:511.636500px;}
.y18{bottom:523.875000px;}
.y47{bottom:531.975000px;}
.y6c{bottom:532.336500px;}
.y17{bottom:544.575000px;}
.y46{bottom:552.675000px;}
.y6b{bottom:553.036500px;}
.y16{bottom:565.275000px;}
.y45{bottom:573.375000px;}
.y6a{bottom:573.736500px;}
.y15{bottom:585.975000px;}
.y44{bottom:594.075000px;}
.y69{bottom:594.436500px;}
.y14{bottom:606.675000px;}
.y43{bottom:614.775000px;}
.y68{bottom:615.136500px;}
.y42{bottom:635.475000px;}
.y67{bottom:635.836500px;}
.y13{bottom:648.436500px;}
.y41{bottom:656.175000px;}
.y66{bottom:656.536500px;}
.y12{bottom:669.136500px;}
.y40{bottom:676.875000px;}
.y65{bottom:677.236500px;}
.y3f{bottom:697.575000px;}
.y64{bottom:697.936500px;}
.y11{bottom:710.715000px;}
.y3e{bottom:718.275000px;}
.y63{bottom:718.636500px;}
.y10{bottom:731.415000px;}
.y3d{bottom:738.975000px;}
.y62{bottom:739.336500px;}
.yf{bottom:752.115000px;}
.y3c{bottom:759.675000px;}
.y61{bottom:760.036500px;}
.ye{bottom:772.815000px;}
.y3b{bottom:780.375000px;}
.y60{bottom:780.736500px;}
.yd{bottom:793.515000px;}
.y3a{bottom:801.075000px;}
.y5f{bottom:801.436500px;}
.y39{bottom:821.775000px;}
.y5e{bottom:822.136500px;}
.y38{bottom:842.475000px;}
.y5d{bottom:842.836500px;}
.y84{bottom:863.175000px;}
.y5c{bottom:863.536500px;}
.yc{bottom:877.036500px;}
.y83{bottom:883.875000px;}
.y37{bottom:884.236500px;}
.y82{bottom:904.575000px;}
.y36{bottom:904.936500px;}
.yb{bottom:912.675000px;}
.y81{bottom:925.275000px;}
.y35{bottom:925.636500px;}
.y80{bottom:945.975000px;}
.y34{bottom:946.336500px;}
.ya{bottom:948.315000px;}
.y7f{bottom:966.675000px;}
.y33{bottom:967.036500px;}
.y9{bottom:984.136500px;}
.y7e{bottom:987.375000px;}
.y32{bottom:987.736500px;}
.y7d{bottom:1008.075000px;}
.y31{bottom:1008.436500px;}
.y8{bottom:1019.775000px;}
.y7c{bottom:1028.775000px;}
.y30{bottom:1029.136500px;}
.y7b{bottom:1049.475000px;}
.y2f{bottom:1049.836500px;}
.y7a{bottom:1070.175000px;}
.y2e{bottom:1070.536500px;}
.y7{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x5{left:153.180000px;}
.xd{left:154.620000px;}
.xb{left:180.720000px;}
.xc{left:233.820000px;}
.xa{left:302.760000px;}
.x6{left:385.200000px;}
.x7{left:468.000000px;}
.x3{left:515.880000px;}
.x9{left:532.080000px;}
.x8{left:595.438500px;}
.x2{left:604.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ws12{word-spacing:-49.728000pt;}
.ws1{word-spacing:-37.224267pt;}
.ws86{word-spacing:-34.545600pt;}
.wsf{word-spacing:-34.360533pt;}
.ws40{word-spacing:-34.352800pt;}
.ws3{word-spacing:-34.292000pt;}
.ws89{word-spacing:-34.289600pt;}
.ws6{word-spacing:-34.172800pt;}
.ws9{word-spacing:-34.169600pt;}
.ws81{word-spacing:-34.157867pt;}
.ws5{word-spacing:-34.100000pt;}
.ws7c{word-spacing:-33.925333pt;}
.ws85{word-spacing:-33.920000pt;}
.ws91{word-spacing:-33.914933pt;}
.ws54{word-spacing:-33.892800pt;}
.ws8{word-spacing:-33.731733pt;}
.ws9b{word-spacing:-33.728000pt;}
.ws95{word-spacing:-33.722133pt;}
.ws8c{word-spacing:-33.721600pt;}
.ws8f{word-spacing:-33.720000pt;}
.ws7{word-spacing:-33.717600pt;}
.ws36{word-spacing:-33.710400pt;}
.ws61{word-spacing:-33.526933pt;}
.ws92{word-spacing:-33.472000pt;}
.ws4{word-spacing:-33.018400pt;}
.ws9a{word-spacing:-32.570667pt;}
.ws14{word-spacing:-32.433067pt;}
.ws67{word-spacing:-32.236267pt;}
.ws4f{word-spacing:-31.994667pt;}
.ws46{word-spacing:-31.796267pt;}
.ws2e{word-spacing:-31.360000pt;}
.ws8a{word-spacing:-31.166400pt;}
.ws47{word-spacing:-31.161600pt;}
.ws29{word-spacing:-31.147200pt;}
.ws49{word-spacing:-30.961600pt;}
.ws28{word-spacing:-30.958400pt;}
.ws76{word-spacing:-30.723733pt;}
.ws4c{word-spacing:-30.318933pt;}
.ws37{word-spacing:-30.080000pt;}
.ws55{word-spacing:-30.064000pt;}
.wsb{word-spacing:-29.880533pt;}
.ws2{word-spacing:-29.820267pt;}
.ws1e{word-spacing:-29.690400pt;}
.wse{word-spacing:-29.689600pt;}
.ws39{word-spacing:-29.675200pt;}
.wsa{word-spacing:-29.425600pt;}
.ws34{word-spacing:-29.235200pt;}
.ws6b{word-spacing:-29.233600pt;}
.ws16{word-spacing:-29.049600pt;}
.ws2a{word-spacing:-28.160000pt;}
.wsd{word-spacing:-27.515200pt;}
.ws31{word-spacing:-27.321600pt;}
.ws7a{word-spacing:-27.309600pt;}
.ws1c{word-spacing:-26.688000pt;}
.ws15{word-spacing:-26.686133pt;}
.wsc{word-spacing:-26.678933pt;}
.ws1b{word-spacing:-26.678400pt;}
.ws13{word-spacing:-26.489600pt;}
.ws59{word-spacing:-26.481600pt;}
.ws42{word-spacing:-26.042667pt;}
.ws83{word-spacing:-26.024533pt;}
.ws62{word-spacing:-25.410933pt;}
.ws80{word-spacing:-25.398400pt;}
.ws51{word-spacing:-25.393600pt;}
.ws53{word-spacing:-25.372800pt;}
.ws2f{word-spacing:-25.209600pt;}
.ws22{word-spacing:-24.949333pt;}
.ws6f{word-spacing:-24.755733pt;}
.ws5a{word-spacing:-24.306400pt;}
.ws19{word-spacing:-24.131733pt;}
.ws66{word-spacing:-24.120000pt;}
.ws6d{word-spacing:-24.116800pt;}
.ws3b{word-spacing:-24.099200pt;}
.ws52{word-spacing:-23.665600pt;}
.ws82{word-spacing:-23.475200pt;}
.ws3c{word-spacing:-23.037333pt;}
.ws6a{word-spacing:-23.030400pt;}
.ws93{word-spacing:-23.011200pt;}
.ws87{word-spacing:-22.848000pt;}
.ws33{word-spacing:-22.197600pt;}
.ws4a{word-spacing:-22.196800pt;}
.ws20{word-spacing:-21.558400pt;}
.ws77{word-spacing:-21.555200pt;}
.ws7b{word-spacing:-20.925600pt;}
.ws64{word-spacing:-20.908800pt;}
.ws3f{word-spacing:-20.729600pt;}
.ws65{word-spacing:-20.286400pt;}
.ws68{word-spacing:-20.280000pt;}
.ws11{word-spacing:-20.278400pt;}
.ws10{word-spacing:-19.833600pt;}
.ws97{word-spacing:-19.829600pt;}
.ws32{word-spacing:-19.641600pt;}
.ws27{word-spacing:-19.451733pt;}
.ws5b{word-spacing:-18.998400pt;}
.ws75{word-spacing:-18.988800pt;}
.ws3e{word-spacing:-17.716800pt;}
.ws30{word-spacing:-17.529600pt;}
.ws8b{word-spacing:-17.274933pt;}
.ws3a{word-spacing:-17.078400pt;}
.ws6c{word-spacing:-16.440533pt;}
.ws4d{word-spacing:-16.249600pt;}
.ws26{word-spacing:-15.974400pt;}
.ws2d{word-spacing:-15.162133pt;}
.ws71{word-spacing:-15.157600pt;}
.ws4e{word-spacing:-15.151200pt;}
.ws18{word-spacing:-14.969600pt;}
.ws5c{word-spacing:-14.966933pt;}
.ws94{word-spacing:-14.964000pt;}
.ws4b{word-spacing:-14.720000pt;}
.ws58{word-spacing:-14.316800pt;}
.ws2c{word-spacing:-13.890133pt;}
.ws5e{word-spacing:-13.678400pt;}
.ws60{word-spacing:-13.242933pt;}
.ws43{word-spacing:-13.233600pt;}
.ws90{word-spacing:-12.725600pt;}
.ws57{word-spacing:-11.958400pt;}
.ws74{word-spacing:-11.766400pt;}
.ws44{word-spacing:-11.123200pt;}
.ws7f{word-spacing:-10.864000pt;}
.ws45{word-spacing:-10.678400pt;}
.ws73{word-spacing:-10.675467pt;}
.ws3d{word-spacing:-10.668800pt;}
.ws1a{word-spacing:-9.849600pt;}
.ws98{word-spacing:-9.406933pt;}
.ws79{word-spacing:-9.395200pt;}
.ws72{word-spacing:-8.306667pt;}
.ws17{word-spacing:-7.350400pt;}
.ws5d{word-spacing:-7.016533pt;}
.ws6e{word-spacing:-5.361600pt;}
.ws70{word-spacing:-4.280533pt;}
.ws69{word-spacing:-3.827200pt;}
.ws35{word-spacing:-3.638400pt;}
.ws50{word-spacing:-2.992000pt;}
.ws5f{word-spacing:-2.560000pt;}
.ws8e{word-spacing:-1.845600pt;}
.ws8d{word-spacing:-1.728000pt;}
.ws56{word-spacing:-1.067200pt;}
.ws63{word-spacing:-0.881600pt;}
.ws41{word-spacing:-0.610133pt;}
.ws1f{word-spacing:-0.438400pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.186667pt;}
.ws99{word-spacing:0.663467pt;}
.ws96{word-spacing:4.034400pt;}
.ws21{word-spacing:4.041600pt;}
.ws84{word-spacing:6.601600pt;}
.ws2b{word-spacing:8.518400pt;}
.ws48{word-spacing:9.167467pt;}
.ws25{word-spacing:9.344000pt;}
.ws1d{word-spacing:11.910400pt;}
.ws38{word-spacing:12.359467pt;}
.ws9c{word-spacing:13.640267pt;}
.ws88{word-spacing:20.037867pt;}
.ws7d{word-spacing:23.048000pt;}
.ws7e{word-spacing:23.260800pt;}
.ws24{word-spacing:25.166933pt;}
.ws78{word-spacing:27.087467pt;}
._7{margin-left:-2.002667pt;}
._3{margin-left:-0.950133pt;}
._1{width:1.683733pt;}
._2{width:16.512000pt;}
._22{width:17.474400pt;}
._b{width:18.978133pt;}
._0{width:20.004800pt;}
._4{width:20.999200pt;}
._8{width:21.968000pt;}
._6{width:23.286400pt;}
._5{width:24.203733pt;}
._a{width:25.213867pt;}
._f{width:26.499733pt;}
._20{width:27.491200pt;}
._15{width:29.249067pt;}
._9{width:30.470667pt;}
._1d{width:31.852267pt;}
._1c{width:33.211467pt;}
._1a{width:34.666933pt;}
._e{width:35.960533pt;}
._24{width:37.716800pt;}
._27{width:39.623733pt;}
._10{width:40.863467pt;}
._11{width:41.754133pt;}
._d{width:43.701333pt;}
._1e{width:45.199467pt;}
._28{width:46.519467pt;}
._1f{width:47.478400pt;}
._26{width:48.618667pt;}
._13{width:50.722133pt;}
._17{width:51.747200pt;}
._2d{width:52.636800pt;}
._16{width:55.147733pt;}
._2b{width:57.526400pt;}
._1b{width:59.161067pt;}
._19{width:60.529067pt;}
._25{width:61.423467pt;}
._12{width:63.084800pt;}
._c{width:63.984000pt;}
._2f{width:66.099467pt;}
._2e{width:67.712000pt;}
._2a{width:74.781333pt;}
._18{width:76.209067pt;}
._29{width:77.866133pt;}
._2c{width:86.458667pt;}
._23{width:88.782400pt;}
._21{width:91.555200pt;}
._14{width:92.602667pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.066667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:28.866667pt;}
.y2d{bottom:79.266667pt;}
.y5b{bottom:86.308000pt;}
.y2c{bottom:97.666667pt;}
.y5a{bottom:104.708000pt;}
.y2b{bottom:116.066667pt;}
.y59{bottom:123.108000pt;}
.y2a{bottom:134.466667pt;}
.y58{bottom:141.508000pt;}
.y79{bottom:141.666667pt;}
.y29{bottom:152.866667pt;}
.y57{bottom:159.908000pt;}
.y78{bottom:160.066667pt;}
.y28{bottom:171.266667pt;}
.y56{bottom:178.146667pt;}
.y77{bottom:178.466667pt;}
.y27{bottom:189.666667pt;}
.y76{bottom:196.866667pt;}
.y26{bottom:208.066667pt;}
.y55{bottom:215.266667pt;}
.y25{bottom:226.466667pt;}
.y54{bottom:233.666667pt;}
.y24{bottom:244.866667pt;}
.y53{bottom:252.066667pt;}
.y23{bottom:263.266667pt;}
.y52{bottom:270.466667pt;}
.y22{bottom:281.666667pt;}
.y51{bottom:288.866667pt;}
.y21{bottom:300.066667pt;}
.y50{bottom:307.266667pt;}
.y75{bottom:307.588000pt;}
.y20{bottom:318.466667pt;}
.y4f{bottom:325.666667pt;}
.y74{bottom:325.988000pt;}
.y1f{bottom:336.866667pt;}
.y4e{bottom:344.066667pt;}
.y73{bottom:344.388000pt;}
.y1e{bottom:355.266667pt;}
.y4d{bottom:362.466667pt;}
.y72{bottom:362.788000pt;}
.y1d{bottom:373.666667pt;}
.y4c{bottom:380.866667pt;}
.y71{bottom:381.188000pt;}
.y1c{bottom:392.066667pt;}
.y4b{bottom:399.266667pt;}
.y70{bottom:399.588000pt;}
.y1b{bottom:410.466667pt;}
.y4a{bottom:417.666667pt;}
.y6f{bottom:417.988000pt;}
.y1a{bottom:428.866667pt;}
.y49{bottom:436.066667pt;}
.y6e{bottom:436.388000pt;}
.y19{bottom:447.266667pt;}
.y48{bottom:454.466667pt;}
.y6d{bottom:454.788000pt;}
.y18{bottom:465.666667pt;}
.y47{bottom:472.866667pt;}
.y6c{bottom:473.188000pt;}
.y17{bottom:484.066667pt;}
.y46{bottom:491.266667pt;}
.y6b{bottom:491.588000pt;}
.y16{bottom:502.466667pt;}
.y45{bottom:509.666667pt;}
.y6a{bottom:509.988000pt;}
.y15{bottom:520.866667pt;}
.y44{bottom:528.066667pt;}
.y69{bottom:528.388000pt;}
.y14{bottom:539.266667pt;}
.y43{bottom:546.466667pt;}
.y68{bottom:546.788000pt;}
.y42{bottom:564.866667pt;}
.y67{bottom:565.188000pt;}
.y13{bottom:576.388000pt;}
.y41{bottom:583.266667pt;}
.y66{bottom:583.588000pt;}
.y12{bottom:594.788000pt;}
.y40{bottom:601.666667pt;}
.y65{bottom:601.988000pt;}
.y3f{bottom:620.066667pt;}
.y64{bottom:620.388000pt;}
.y11{bottom:631.746667pt;}
.y3e{bottom:638.466667pt;}
.y63{bottom:638.788000pt;}
.y10{bottom:650.146667pt;}
.y3d{bottom:656.866667pt;}
.y62{bottom:657.188000pt;}
.yf{bottom:668.546667pt;}
.y3c{bottom:675.266667pt;}
.y61{bottom:675.588000pt;}
.ye{bottom:686.946667pt;}
.y3b{bottom:693.666667pt;}
.y60{bottom:693.988000pt;}
.yd{bottom:705.346667pt;}
.y3a{bottom:712.066667pt;}
.y5f{bottom:712.388000pt;}
.y39{bottom:730.466667pt;}
.y5e{bottom:730.788000pt;}
.y38{bottom:748.866667pt;}
.y5d{bottom:749.188000pt;}
.y84{bottom:767.266667pt;}
.y5c{bottom:767.588000pt;}
.yc{bottom:779.588000pt;}
.y83{bottom:785.666667pt;}
.y37{bottom:785.988000pt;}
.y82{bottom:804.066667pt;}
.y36{bottom:804.388000pt;}
.yb{bottom:811.266667pt;}
.y81{bottom:822.466667pt;}
.y35{bottom:822.788000pt;}
.y80{bottom:840.866667pt;}
.y34{bottom:841.188000pt;}
.ya{bottom:842.946667pt;}
.y7f{bottom:859.266667pt;}
.y33{bottom:859.588000pt;}
.y9{bottom:874.788000pt;}
.y7e{bottom:877.666667pt;}
.y32{bottom:877.988000pt;}
.y7d{bottom:896.066667pt;}
.y31{bottom:896.388000pt;}
.y8{bottom:906.466667pt;}
.y7c{bottom:914.466667pt;}
.y30{bottom:914.788000pt;}
.y7b{bottom:932.866667pt;}
.y2f{bottom:933.188000pt;}
.y7a{bottom:951.266667pt;}
.y2e{bottom:951.588000pt;}
.y7{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x5{left:136.160000pt;}
.xd{left:137.440000pt;}
.xb{left:160.640000pt;}
.xc{left:207.840000pt;}
.xa{left:269.120000pt;}
.x6{left:342.400000pt;}
.x7{left:416.000000pt;}
.x3{left:458.560000pt;}
.x9{left:472.960000pt;}
.x8{left:529.278667pt;}
.x2{left:537.440000pt;}
}




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