
    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_024bd3354925162c984139cd.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c6719948729014b89231c5b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.880371;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_906734f69e4e3aed64080f35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051758;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_26ae49bd081eaa94742c49e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102539;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_de3fdf19c7cf4c9f145732d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_48d22882358d024d9ef824be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_5fc3d73bbcf600cc41a71abf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.826172;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_9987064a65b6ee5cdbca4694.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678223;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_49ba09b7182232ceb839a87f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.880371;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_cb716a1bea49a95a2a28e985.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ae4bb5b4adb1307f2616d335.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.880371;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_148198a2d08b71f00b168c30.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d7a31f0c977a52a903db000c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.051758;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:ffe;src:url('chunks/assets/font_49ba09b7182232ceb839a87f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.880371;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:fff;src:url('chunks/assets/font_e5a7c55e6067995a105e7534.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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);}
.v4{vertical-align:-43.200000px;}
.v3{vertical-align:-39.000000px;}
.v1{vertical-align:-33.000000px;}
.v8{vertical-align:-8.699400px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.500000px;}
.v7{vertical-align:5.700060px;}
.v6{vertical-align:11.399400px;}
.v2{vertical-align:17.100000px;}
.v5{vertical-align:30.300000px;}
.lsc{letter-spacing:-6.000000px;}
.lsb{letter-spacing:-3.000000px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.945000px;}
.ls9{letter-spacing:1.365000px;}
.ls1{letter-spacing:3.000000px;}
.ls7{letter-spacing:3.276000px;}
.ls2{letter-spacing:4.137600px;}
.ls3{letter-spacing:4.212000px;}
.ls4{letter-spacing:8.196000px;}
.lsd{letter-spacing:9.696000px;}
.ls0{letter-spacing:10.452000px;}
.ls6{letter-spacing:18.750000px;}
.ls8{letter-spacing:47.394000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-42.000000px;}
.ws9{word-spacing:-24.916800px;}
.ws14{word-spacing:-24.000000px;}
.ws5{word-spacing:-16.695000px;}
.ws1{word-spacing:-16.500000px;}
.wsc{word-spacing:-16.416000px;}
.ws7{word-spacing:-15.750000px;}
.ws2{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.026000px;}
.ws4{word-spacing:-12.750000px;}
.ws8{word-spacing:-12.600000px;}
.ws6{word-spacing:-9.750000px;}
.wse{word-spacing:-5.640000px;}
.ws3{word-spacing:-2.574000px;}
.ws15{word-spacing:0.000000px;}
.ws13{word-spacing:18.912000px;}
.ws12{word-spacing:40.536000px;}
.ws10{word-spacing:43.626000px;}
.wsf{word-spacing:47.304000px;}
.ws11{word-spacing:48.453000px;}
.wsb{word-spacing:52.044000px;}
.wsd{word-spacing:62.292000px;}
._36{margin-left:-48.420000px;}
._1d{margin-left:-32.448000px;}
._33{margin-left:-29.634000px;}
._31{margin-left:-27.534000px;}
._0{margin-left:-24.660000px;}
._35{margin-left:-23.580000px;}
._26{margin-left:-22.440000px;}
._28{margin-left:-18.546000px;}
._27{margin-left:-16.830000px;}
._2a{margin-left:-15.642000px;}
._29{margin-left:-14.388000px;}
._21{margin-left:-12.672000px;}
._13{margin-left:-11.484000px;}
._24{margin-left:-9.966000px;}
._22{margin-left:-8.310000px;}
._10{margin-left:-7.194000px;}
._18{margin-left:-5.280000px;}
._f{margin-left:-4.158000px;}
._16{margin-left:-2.904000px;}
._7{margin-left:-1.254000px;}
._2{width:1.980000px;}
._5{width:3.366000px;}
._a{width:4.884000px;}
._1a{width:6.534000px;}
._1e{width:8.382000px;}
._1{width:9.504000px;}
._8{width:11.484000px;}
._15{width:12.606000px;}
._9{width:13.926000px;}
._17{width:15.378000px;}
._2c{width:16.632000px;}
._6{width:18.414000px;}
._d{width:20.394000px;}
._3{width:21.582000px;}
._1b{width:22.638000px;}
._1c{width:23.694000px;}
._4{width:24.882000px;}
._11{width:26.730000px;}
._19{width:27.918000px;}
._23{width:29.106000px;}
._b{width:30.162000px;}
._14{width:31.680000px;}
._c{width:33.660000px;}
._12{width:35.046000px;}
._25{width:36.894000px;}
._32{width:38.808000px;}
._34{width:40.884000px;}
._20{width:42.042000px;}
._30{width:43.920000px;}
._2e{width:49.914000px;}
._2d{width:52.338000px;}
._38{width:57.126000px;}
._1f{width:78.078000px;}
._37{width:96.096000px;}
._e{width:108.504000px;}
._2f{width:110.124000px;}
._2b{width:114.821400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:24.000000px;}
.fs10{font-size:27.000000px;}
.fs6{font-size:30.000000px;}
.fsc{font-size:33.000000px;}
.fs4{font-size:38.400000px;}
.fsd{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:50.400000px;}
.fsb{font-size:52.800000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fsf{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs12{font-size:69.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs11{font-size:96.000000px;}
.fs1{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:189.392115px;}
.y64{bottom:189.759615px;}
.y95{bottom:189.780000px;}
.y63{bottom:197.333115px;}
.y94{bottom:231.178500px;}
.y27{bottom:231.555000px;}
.y62{bottom:232.957965px;}
.y61{bottom:241.207950px;}
.y60{bottom:255.607950px;}
.y93{bottom:255.628500px;}
.y26{bottom:256.380000px;}
.y5f{bottom:277.206450px;}
.y92{bottom:280.453500px;}
.y25{bottom:280.830000px;}
.y6f{bottom:305.340615px;}
.y91{bottom:305.653500px;}
.y24{bottom:305.655000px;}
.y5e{bottom:320.781450px;}
.y5d{bottom:328.356450px;}
.y6e{bottom:329.790615px;}
.y90{bottom:330.177000px;}
.y23{bottom:330.853500px;}
.y6d{bottom:354.990615px;}
.y8f{bottom:355.002000px;}
.y22{bottom:355.753500px;}
.y5c{bottom:356.029950px;}
.y5b{bottom:371.554950px;}
.y6c{bottom:379.815615px;}
.y8e{bottom:379.827000px;}
.y35{bottom:380.212500px;}
.y21{bottom:380.578500px;}
.y6b{bottom:404.639115px;}
.y8d{bottom:405.025500px;}
.y20{bottom:405.027000px;}
.y5a{bottom:407.929950px;}
.y58{bottom:415.129950px;}
.y34{bottom:419.061000px;}
.y33{bottom:428.811000px;}
.y6a{bottom:430.214115px;}
.y8c{bottom:430.225500px;}
.y1f{bottom:430.227000px;}
.y59{bottom:430.579950px;}
.y57{bottom:452.179950px;}
.y69{bottom:454.739115px;}
.y8b{bottom:455.049000px;}
.y1e{bottom:455.425500px;}
.y56{bottom:465.154800px;}
.y1d{bottom:480.250500px;}
.y32{bottom:480.261000px;}
.y8a{bottom:480.322500px;}
.y55{bottom:495.378300px;}
.y89{bottom:505.147500px;}
.y1c{bottom:505.149000px;}
.y54{bottom:508.728300px;}
.y1b{bottom:521.649000px;}
.y31{bottom:525.261000px;}
.y53{bottom:527.401800px;}
.y68{bottom:529.587615px;}
.y88{bottom:529.972500px;}
.y1a{bottom:530.349000px;}
.y30{bottom:543.261000px;}
.y52{bottom:548.326800px;}
.y67{bottom:554.411115px;}
.y87{bottom:554.796000px;}
.y19{bottom:555.172500px;}
.y66{bottom:578.936115px;}
.y86{bottom:579.621000px;}
.y2f{bottom:580.011000px;}
.y18{bottom:580.372500px;}
.y51{bottom:583.576800px;}
.y65{bottom:603.759615px;}
.y85{bottom:604.444500px;}
.y17{bottom:605.196000px;}
.y2e{bottom:605.209500px;}
.y50{bottom:626.775300px;}
.y84{bottom:629.344500px;}
.y2d{bottom:629.658000px;}
.y16{bottom:630.019500px;}
.y4f{bottom:630.375150px;}
.y15{bottom:654.544500px;}
.y83{bottom:654.844500px;}
.y2c{bottom:654.858000px;}
.y4e{bottom:657.750150px;}
.y4d{bottom:669.225150px;}
.y4c{bottom:677.550000px;}
.y2b{bottom:677.581500px;}
.y82{bottom:678.994500px;}
.y14{bottom:680.044500px;}
.y4a{bottom:694.800000px;}
.y81{bottom:704.193000px;}
.y4b{bottom:704.550000px;}
.y13{bottom:704.569500px;}
.y2a{bottom:705.256500px;}
.y49{bottom:712.800150px;}
.y48{bottom:720.000000px;}
.y47{bottom:729.000000px;}
.y80{bottom:729.016500px;}
.y12{bottom:729.768000px;}
.y29{bottom:730.155000px;}
.y46{bottom:743.025000px;}
.y7f{bottom:753.841500px;}
.y11{bottom:754.593000px;}
.y45{bottom:756.802500px;}
.y44{bottom:778.401000px;}
.y7e{bottom:779.116500px;}
.y10{bottom:779.791500px;}
.y28{bottom:779.805000px;}
.y43{bottom:803.226000px;}
.y7d{bottom:803.940000px;}
.yf{bottom:804.615000px;}
.y42{bottom:827.674500px;}
.y7c{bottom:828.763500px;}
.ye{bottom:829.815000px;}
.y41{bottom:852.873000px;}
.y7b{bottom:853.587000px;}
.yd{bottom:854.638500px;}
.y40{bottom:877.396500px;}
.y7a{bottom:878.410500px;}
.yc{bottom:879.537000px;}
.y3f{bottom:889.246500px;}
.y3e{bottom:902.971500px;}
.y79{bottom:903.609000px;}
.yb{bottom:904.737000px;}
.y3d{bottom:927.420000px;}
.y78{bottom:928.434000px;}
.ya{bottom:929.560500px;}
.y3c{bottom:952.243500px;}
.y77{bottom:952.957500px;}
.y9{bottom:954.384000px;}
.y3b{bottom:977.067000px;}
.y76{bottom:978.156000px;}
.y8{bottom:979.207500px;}
.y3a{bottom:1001.967000px;}
.y75{bottom:1003.354500px;}
.y7{bottom:1005.531000px;}
.y74{bottom:1028.554500px;}
.y6{bottom:1028.931000px;}
.y39{bottom:1051.240500px;}
.y73{bottom:1052.328000px;}
.y5{bottom:1053.754500px;}
.y38{bottom:1076.439000px;}
.y72{bottom:1077.151500px;}
.y4{bottom:1078.203000px;}
.y37{bottom:1100.964000px;}
.y71{bottom:1101.975000px;}
.y3{bottom:1103.401500px;}
.y2{bottom:1104.151500px;}
.y36{bottom:1134.787500px;}
.y1{bottom:1191.600000px;}
.h7{height:20.844727px;}
.hc{height:22.929199px;}
.hd{height:27.098145px;}
.h12{height:32.798205px;}
.h9{height:35.991211px;}
.h6{height:37.990723px;}
.hf{height:39.990234px;}
.he{height:44.198145px;}
.h2{height:45.858398px;}
.h16{height:45.988770px;}
.h8{height:52.417969px;}
.hb{height:52.664062px;}
.h4{height:55.171875px;}
.h13{height:57.098145px;}
.ha{height:58.523438px;}
.h5{height:69.164062px;}
.h10{height:70.290234px;}
.h15{height:80.250000px;}
.h11{height:80.563463px;}
.h14{height:81.750000px;}
.h3{height:119.970703px;}
.h1{height:1285.500000px;}
.h0{height:1285.575000px;}
.w1{width:888.000000px;}
.w0{width:888.150000px;}
.x0{left:0.000000px;}
.x5{left:133.576485px;}
.x6{left:221.401500px;}
.x4{left:223.200000px;}
.x2{left:225.000000px;}
.x9{left:241.201200px;}
.x3{left:246.975000px;}
.x2e{left:248.776215px;}
.x7{left:249.826200px;}
.x8{left:290.549700px;}
.xe{left:364.348200px;}
.x10{left:366.448200px;}
.xa{left:370.798200px;}
.xb{left:374.023200px;}
.xf{left:377.248050px;}
.xc{left:381.598200px;}
.x14{left:383.023200px;}
.xd{left:385.573200px;}
.x11{left:388.048200px;}
.x2f{left:414.751230px;}
.x13{left:417.221700px;}
.x12{left:419.021700px;}
.x16{left:466.571850px;}
.x1a{left:467.992350px;}
.x1b{left:469.417050px;}
.x21{left:470.536500px;}
.x22{left:471.960000px;}
.x26{left:474.435000px;}
.x27{left:475.560000px;}
.x15{left:480.596700px;}
.x17{left:486.745350px;}
.x1e{left:489.216900px;}
.x23{left:490.335000px;}
.x1c{left:492.816900px;}
.x1d{left:493.941900px;}
.x19{left:495.367350px;}
.x25{left:496.783500px;}
.x1f{left:504.000000px;}
.x18{left:510.145350px;}
.x24{left:514.408500px;}
.x20{left:516.599850px;}
.x2c{left:518.384865px;}
.x2b{left:519.434865px;}
.x28{left:520.560000px;}
.x29{left:522.734850px;}
.x2d{left:525.968715px;}
.x2a{left:528.134715px;}
.x1{left:736.200000px;}
@media print{
.v4{vertical-align:-38.400000pt;}
.v3{vertical-align:-34.666667pt;}
.v1{vertical-align:-29.333333pt;}
.v8{vertical-align:-7.732800pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.333333pt;}
.v7{vertical-align:5.066720pt;}
.v6{vertical-align:10.132800pt;}
.v2{vertical-align:15.200000pt;}
.v5{vertical-align:26.933333pt;}
.lsc{letter-spacing:-5.333333pt;}
.lsb{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.840000pt;}
.ls9{letter-spacing:1.213333pt;}
.ls1{letter-spacing:2.666667pt;}
.ls7{letter-spacing:2.912000pt;}
.ls2{letter-spacing:3.677867pt;}
.ls3{letter-spacing:3.744000pt;}
.ls4{letter-spacing:7.285333pt;}
.lsd{letter-spacing:8.618667pt;}
.ls0{letter-spacing:9.290667pt;}
.ls6{letter-spacing:16.666667pt;}
.ls8{letter-spacing:42.128000pt;}
.ws0{word-spacing:-37.333333pt;}
.ws9{word-spacing:-22.148267pt;}
.ws14{word-spacing:-21.333333pt;}
.ws5{word-spacing:-14.840000pt;}
.ws1{word-spacing:-14.666667pt;}
.wsc{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.000000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.578667pt;}
.ws4{word-spacing:-11.333333pt;}
.ws8{word-spacing:-11.200000pt;}
.ws6{word-spacing:-8.666667pt;}
.wse{word-spacing:-5.013333pt;}
.ws3{word-spacing:-2.288000pt;}
.ws15{word-spacing:0.000000pt;}
.ws13{word-spacing:16.810667pt;}
.ws12{word-spacing:36.032000pt;}
.ws10{word-spacing:38.778667pt;}
.wsf{word-spacing:42.048000pt;}
.ws11{word-spacing:43.069333pt;}
.wsb{word-spacing:46.261333pt;}
.wsd{word-spacing:55.370667pt;}
._36{margin-left:-43.040000pt;}
._1d{margin-left:-28.842667pt;}
._33{margin-left:-26.341333pt;}
._31{margin-left:-24.474667pt;}
._0{margin-left:-21.920000pt;}
._35{margin-left:-20.960000pt;}
._26{margin-left:-19.946667pt;}
._28{margin-left:-16.485333pt;}
._27{margin-left:-14.960000pt;}
._2a{margin-left:-13.904000pt;}
._29{margin-left:-12.789333pt;}
._21{margin-left:-11.264000pt;}
._13{margin-left:-10.208000pt;}
._24{margin-left:-8.858667pt;}
._22{margin-left:-7.386667pt;}
._10{margin-left:-6.394667pt;}
._18{margin-left:-4.693333pt;}
._f{margin-left:-3.696000pt;}
._16{margin-left:-2.581333pt;}
._7{margin-left:-1.114667pt;}
._2{width:1.760000pt;}
._5{width:2.992000pt;}
._a{width:4.341333pt;}
._1a{width:5.808000pt;}
._1e{width:7.450667pt;}
._1{width:8.448000pt;}
._8{width:10.208000pt;}
._15{width:11.205333pt;}
._9{width:12.378667pt;}
._17{width:13.669333pt;}
._2c{width:14.784000pt;}
._6{width:16.368000pt;}
._d{width:18.128000pt;}
._3{width:19.184000pt;}
._1b{width:20.122667pt;}
._1c{width:21.061333pt;}
._4{width:22.117333pt;}
._11{width:23.760000pt;}
._19{width:24.816000pt;}
._23{width:25.872000pt;}
._b{width:26.810667pt;}
._14{width:28.160000pt;}
._c{width:29.920000pt;}
._12{width:31.152000pt;}
._25{width:32.794667pt;}
._32{width:34.496000pt;}
._34{width:36.341333pt;}
._20{width:37.370667pt;}
._30{width:39.040000pt;}
._2e{width:44.368000pt;}
._2d{width:46.522667pt;}
._38{width:50.778667pt;}
._1f{width:69.402667pt;}
._37{width:85.418667pt;}
._e{width:96.448000pt;}
._2f{width:97.888000pt;}
._2b{width:102.063467pt;}
.fse{font-size:21.333333pt;}
.fs10{font-size:24.000000pt;}
.fs6{font-size:26.666667pt;}
.fsc{font-size:29.333333pt;}
.fs4{font-size:34.133333pt;}
.fsd{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:44.800000pt;}
.fsb{font-size:46.933333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fsf{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs12{font-size:61.333333pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs11{font-size:85.333333pt;}
.fs1{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:168.348547pt;}
.y64{bottom:168.675213pt;}
.y95{bottom:168.693333pt;}
.y63{bottom:175.407213pt;}
.y94{bottom:205.492000pt;}
.y27{bottom:205.826667pt;}
.y62{bottom:207.073747pt;}
.y61{bottom:214.407067pt;}
.y60{bottom:227.207067pt;}
.y93{bottom:227.225333pt;}
.y26{bottom:227.893333pt;}
.y5f{bottom:246.405733pt;}
.y92{bottom:249.292000pt;}
.y25{bottom:249.626667pt;}
.y6f{bottom:271.413880pt;}
.y91{bottom:271.692000pt;}
.y24{bottom:271.693333pt;}
.y5e{bottom:285.139067pt;}
.y5d{bottom:291.872400pt;}
.y6e{bottom:293.147213pt;}
.y90{bottom:293.490667pt;}
.y23{bottom:294.092000pt;}
.y6d{bottom:315.547213pt;}
.y8f{bottom:315.557333pt;}
.y22{bottom:316.225333pt;}
.y5c{bottom:316.471067pt;}
.y5b{bottom:330.271067pt;}
.y6c{bottom:337.613880pt;}
.y8e{bottom:337.624000pt;}
.y35{bottom:337.966667pt;}
.y21{bottom:338.292000pt;}
.y6b{bottom:359.679213pt;}
.y8d{bottom:360.022667pt;}
.y20{bottom:360.024000pt;}
.y5a{bottom:362.604400pt;}
.y58{bottom:369.004400pt;}
.y34{bottom:372.498667pt;}
.y33{bottom:381.165333pt;}
.y6a{bottom:382.412547pt;}
.y8c{bottom:382.422667pt;}
.y1f{bottom:382.424000pt;}
.y59{bottom:382.737733pt;}
.y57{bottom:401.937733pt;}
.y69{bottom:404.212547pt;}
.y8b{bottom:404.488000pt;}
.y1e{bottom:404.822667pt;}
.y56{bottom:413.470933pt;}
.y1d{bottom:426.889333pt;}
.y32{bottom:426.898667pt;}
.y8a{bottom:426.953333pt;}
.y55{bottom:440.336267pt;}
.y89{bottom:449.020000pt;}
.y1c{bottom:449.021333pt;}
.y54{bottom:452.202933pt;}
.y1b{bottom:463.688000pt;}
.y31{bottom:466.898667pt;}
.y53{bottom:468.801600pt;}
.y68{bottom:470.744547pt;}
.y88{bottom:471.086667pt;}
.y1a{bottom:471.421333pt;}
.y30{bottom:482.898667pt;}
.y52{bottom:487.401600pt;}
.y67{bottom:492.809880pt;}
.y87{bottom:493.152000pt;}
.y19{bottom:493.486667pt;}
.y66{bottom:514.609880pt;}
.y86{bottom:515.218667pt;}
.y2f{bottom:515.565333pt;}
.y18{bottom:515.886667pt;}
.y51{bottom:518.734933pt;}
.y65{bottom:536.675213pt;}
.y85{bottom:537.284000pt;}
.y17{bottom:537.952000pt;}
.y2e{bottom:537.964000pt;}
.y50{bottom:557.133600pt;}
.y84{bottom:559.417333pt;}
.y2d{bottom:559.696000pt;}
.y16{bottom:560.017333pt;}
.y4f{bottom:560.333467pt;}
.y15{bottom:581.817333pt;}
.y83{bottom:582.084000pt;}
.y2c{bottom:582.096000pt;}
.y4e{bottom:584.666800pt;}
.y4d{bottom:594.866800pt;}
.y4c{bottom:602.266667pt;}
.y2b{bottom:602.294667pt;}
.y82{bottom:603.550667pt;}
.y14{bottom:604.484000pt;}
.y4a{bottom:617.600000pt;}
.y81{bottom:625.949333pt;}
.y4b{bottom:626.266667pt;}
.y13{bottom:626.284000pt;}
.y2a{bottom:626.894667pt;}
.y49{bottom:633.600133pt;}
.y48{bottom:640.000000pt;}
.y47{bottom:648.000000pt;}
.y80{bottom:648.014667pt;}
.y12{bottom:648.682667pt;}
.y29{bottom:649.026667pt;}
.y46{bottom:660.466667pt;}
.y7f{bottom:670.081333pt;}
.y11{bottom:670.749333pt;}
.y45{bottom:672.713333pt;}
.y44{bottom:691.912000pt;}
.y7e{bottom:692.548000pt;}
.y10{bottom:693.148000pt;}
.y28{bottom:693.160000pt;}
.y43{bottom:713.978667pt;}
.y7d{bottom:714.613333pt;}
.yf{bottom:715.213333pt;}
.y42{bottom:735.710667pt;}
.y7c{bottom:736.678667pt;}
.ye{bottom:737.613333pt;}
.y41{bottom:758.109333pt;}
.y7b{bottom:758.744000pt;}
.yd{bottom:759.678667pt;}
.y40{bottom:779.908000pt;}
.y7a{bottom:780.809333pt;}
.yc{bottom:781.810667pt;}
.y3f{bottom:790.441333pt;}
.y3e{bottom:802.641333pt;}
.y79{bottom:803.208000pt;}
.yb{bottom:804.210667pt;}
.y3d{bottom:824.373333pt;}
.y78{bottom:825.274667pt;}
.ya{bottom:826.276000pt;}
.y3c{bottom:846.438667pt;}
.y77{bottom:847.073333pt;}
.y9{bottom:848.341333pt;}
.y3b{bottom:868.504000pt;}
.y76{bottom:869.472000pt;}
.y8{bottom:870.406667pt;}
.y3a{bottom:890.637333pt;}
.y75{bottom:891.870667pt;}
.y7{bottom:893.805333pt;}
.y74{bottom:914.270667pt;}
.y6{bottom:914.605333pt;}
.y39{bottom:934.436000pt;}
.y73{bottom:935.402667pt;}
.y5{bottom:936.670667pt;}
.y38{bottom:956.834667pt;}
.y72{bottom:957.468000pt;}
.y4{bottom:958.402667pt;}
.y37{bottom:978.634667pt;}
.y71{bottom:979.533333pt;}
.y3{bottom:980.801333pt;}
.y2{bottom:981.468000pt;}
.y36{bottom:1008.700000pt;}
.y1{bottom:1059.200000pt;}
.h7{height:18.528646pt;}
.hc{height:20.381510pt;}
.hd{height:24.087240pt;}
.h12{height:29.153960pt;}
.h9{height:31.992188pt;}
.h6{height:33.769531pt;}
.hf{height:35.546875pt;}
.he{height:39.287240pt;}
.h2{height:40.763021pt;}
.h16{height:40.878906pt;}
.h8{height:46.593750pt;}
.hb{height:46.812500pt;}
.h4{height:49.041667pt;}
.h13{height:50.753906pt;}
.ha{height:52.020833pt;}
.h5{height:61.479167pt;}
.h10{height:62.480208pt;}
.h15{height:71.333333pt;}
.h11{height:71.611967pt;}
.h14{height:72.666667pt;}
.h3{height:106.640625pt;}
.h1{height:1142.666667pt;}
.h0{height:1142.733333pt;}
.w1{width:789.333333pt;}
.w0{width:789.466667pt;}
.x0{left:0.000000pt;}
.x5{left:118.734653pt;}
.x6{left:196.801333pt;}
.x4{left:198.400000pt;}
.x2{left:200.000000pt;}
.x9{left:214.401067pt;}
.x3{left:219.533333pt;}
.x2e{left:221.134413pt;}
.x7{left:222.067733pt;}
.x8{left:258.266400pt;}
.xe{left:323.865067pt;}
.x10{left:325.731733pt;}
.xa{left:329.598400pt;}
.xb{left:332.465067pt;}
.xf{left:335.331600pt;}
.xc{left:339.198400pt;}
.x14{left:340.465067pt;}
.xd{left:342.731733pt;}
.x11{left:344.931733pt;}
.x2f{left:368.667760pt;}
.x13{left:370.863733pt;}
.x12{left:372.463733pt;}
.x16{left:414.730533pt;}
.x1a{left:415.993200pt;}
.x1b{left:417.259600pt;}
.x21{left:418.254667pt;}
.x22{left:419.520000pt;}
.x26{left:421.720000pt;}
.x27{left:422.720000pt;}
.x15{left:427.197067pt;}
.x17{left:432.662533pt;}
.x1e{left:434.859467pt;}
.x23{left:435.853333pt;}
.x1c{left:438.059467pt;}
.x1d{left:439.059467pt;}
.x19{left:440.326533pt;}
.x25{left:441.585333pt;}
.x1f{left:448.000000pt;}
.x18{left:453.462533pt;}
.x24{left:457.252000pt;}
.x20{left:459.199867pt;}
.x2c{left:460.786547pt;}
.x2b{left:461.719880pt;}
.x28{left:462.720000pt;}
.x29{left:464.653200pt;}
.x2d{left:467.527747pt;}
.x2a{left:469.453080pt;}
.x1{left:654.400000pt;}
}




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