
    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_7cf0875a150e11ef832d4882.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4659c61f35a63714aeb4344d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e8cdecdf94f46e6da2a0068a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_a18e060292ba9647ec33728f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsb{word-spacing:-55.944000px;}
.ws34{word-spacing:-38.875500px;}
.ws81{word-spacing:-38.869500px;}
.ws67{word-spacing:-38.664600px;}
.ws87{word-spacing:-38.658600px;}
.ws6{word-spacing:-38.657700px;}
.wsf{word-spacing:-38.656800px;}
.ws80{word-spacing:-38.655900px;}
.ws41{word-spacing:-38.655000px;}
.ws42{word-spacing:-38.650200px;}
.ws31{word-spacing:-38.649900px;}
.wsa{word-spacing:-38.648700px;}
.ws5{word-spacing:-38.647800px;}
.wsa9{word-spacing:-38.647500px;}
.ws11{word-spacing:-38.642400px;}
.ws45{word-spacing:-38.448000px;}
.ws84{word-spacing:-38.444400px;}
.wsa5{word-spacing:-38.443200px;}
.ws8e{word-spacing:-38.441700px;}
.ws3{word-spacing:-38.374200px;}
.ws9a{word-spacing:-38.359800px;}
.ws9c{word-spacing:-38.166000px;}
.ws68{word-spacing:-38.160600px;}
.ws8d{word-spacing:-38.160000px;}
.ws43{word-spacing:-38.152800px;}
.ws10{word-spacing:-38.151900px;}
.ws38{word-spacing:-38.151000px;}
.ws44{word-spacing:-38.150400px;}
.ws35{word-spacing:-38.150100px;}
.ws95{word-spacing:-38.149200px;}
.wsa3{word-spacing:-38.148300px;}
.ws8c{word-spacing:-38.140200px;}
.ws7f{word-spacing:-38.138400px;}
.ws9{word-spacing:-38.087100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws33{word-spacing:-37.936800px;}
.ws69{word-spacing:-37.935000px;}
.ws96{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws7c{word-spacing:-37.860300px;}
.ws75{word-spacing:-37.436400px;}
.ws5d{word-spacing:-37.432800px;}
.wsc{word-spacing:-37.421100px;}
.wsa6{word-spacing:-37.230000px;}
.wsd{word-spacing:-37.215600px;}
.ws90{word-spacing:-37.215000px;}
.ws7a{word-spacing:-37.212300px;}
.ws54{word-spacing:-36.716400px;}
.ws8a{word-spacing:-36.715500px;}
.ws29{word-spacing:-36.714600px;}
.ws91{word-spacing:-36.713700px;}
.ws3d{word-spacing:-36.493200px;}
.ws55{word-spacing:-36.288000px;}
.ws50{word-spacing:-36.286200px;}
.ws5c{word-spacing:-36.279000px;}
.ws22{word-spacing:-36.000000px;}
.ws7b{word-spacing:-35.562600px;}
.wsa2{word-spacing:-35.268300px;}
.ws65{word-spacing:-35.058600px;}
.ws63{word-spacing:-35.053200px;}
.ws23{word-spacing:-34.844400px;}
.ws77{word-spacing:-34.560600px;}
.ws18{word-spacing:-34.546500px;}
.ws19{word-spacing:-34.344000px;}
.ws5b{word-spacing:-34.335000px;}
.ws94{word-spacing:-34.331400px;}
.ws86{word-spacing:-34.328400px;}
.ws61{word-spacing:-34.324200px;}
.ws5f{word-spacing:-34.119000px;}
.ws59{word-spacing:-33.825600px;}
.ws30{word-spacing:-33.624000px;}
.ws37{word-spacing:-33.621000px;}
.ws8{word-spacing:-33.547800px;}
.ws1f{word-spacing:-33.120000px;}
.ws99{word-spacing:-33.114600px;}
.ws12{word-spacing:-32.898600px;}
.wsa0{word-spacing:-32.893200px;}
.ws6f{word-spacing:-32.402400px;}
.ws24{word-spacing:-32.400000px;}
.ws46{word-spacing:-32.176800px;}
.ws39{word-spacing:-32.173200px;}
.ws20{word-spacing:-31.964400px;}
.ws17{word-spacing:-31.675500px;}
.ws71{word-spacing:-31.674000px;}
.ws49{word-spacing:-31.461000px;}
.ws4d{word-spacing:-30.740400px;}
.ws1b{word-spacing:-30.739200px;}
.ws76{word-spacing:-30.734100px;}
.ws1c{word-spacing:-30.240600px;}
.ws48{word-spacing:-30.229500px;}
.ws53{word-spacing:-30.225900px;}
.ws47{word-spacing:-30.014400px;}
.ws6a{word-spacing:-29.810400px;}
.ws9f{word-spacing:-29.508300px;}
.ws2c{word-spacing:-29.296800px;}
.ws6b{word-spacing:-29.295900px;}
.ws4e{word-spacing:-29.295600px;}
.ws89{word-spacing:-29.293200px;}
.ws21{word-spacing:-29.079000px;}
.ws8f{word-spacing:-28.802400px;}
.ws98{word-spacing:-28.577700px;}
.wsa1{word-spacing:-28.571400px;}
.ws9e{word-spacing:-28.567200px;}
.ws27{word-spacing:-28.086000px;}
.ws83{word-spacing:-28.075500px;}
.ws1d{word-spacing:-28.064700px;}
.ws92{word-spacing:-27.861300px;}
.ws64{word-spacing:-27.858600px;}
.ws9d{word-spacing:-27.857400px;}
.ws1a{word-spacing:-27.843600px;}
.ws3c{word-spacing:-27.646200px;}
.ws56{word-spacing:-27.639000px;}
.ws5a{word-spacing:-27.637200px;}
.ws40{word-spacing:-27.355500px;}
.ws15{word-spacing:-26.911800px;}
.ws62{word-spacing:-26.634600px;}
.ws9b{word-spacing:-26.415000px;}
.ws52{word-spacing:-26.200800px;}
.ws66{word-spacing:-25.695600px;}
.ws7d{word-spacing:-25.692600px;}
.ws79{word-spacing:-25.687800px;}
.ws3e{word-spacing:-24.982800px;}
.ws2f{word-spacing:-24.969600px;}
.ws14{word-spacing:-24.480600px;}
.wsa7{word-spacing:-23.898600px;}
.ws4f{word-spacing:-23.540400px;}
.ws70{word-spacing:-23.537700px;}
.ws74{word-spacing:-23.533200px;}
.ws78{word-spacing:-23.328000px;}
.ws16{word-spacing:-23.036400px;}
.wsa8{word-spacing:-23.029500px;}
.ws85{word-spacing:-22.814100px;}
.ws73{word-spacing:-22.813200px;}
.ws1e{word-spacing:-22.610400px;}
.ws6e{word-spacing:-22.305000px;}
.ws58{word-spacing:-22.102200px;}
.ws2d{word-spacing:-22.089000px;}
.ws5e{word-spacing:-21.161700px;}
.ws3f{word-spacing:-20.875500px;}
.ws2e{word-spacing:-20.437800px;}
.ws7e{word-spacing:-19.441500px;}
.ws88{word-spacing:-18.711000px;}
.ws93{word-spacing:-18.504600px;}
.ws6c{word-spacing:-18.497700px;}
.ws57{word-spacing:-18.495000px;}
.ws7{word-spacing:-18.472500px;}
.ws2a{word-spacing:-17.775000px;}
.ws3a{word-spacing:-17.568000px;}
.ws6d{word-spacing:-17.559000px;}
.ws51{word-spacing:-17.274600px;}
.ws72{word-spacing:-17.272800px;}
.ws4b{word-spacing:-17.055000px;}
.ws97{word-spacing:-16.560000px;}
.ws8b{word-spacing:-16.109400px;}
.ws32{word-spacing:-15.618600px;}
.ws2b{word-spacing:-15.111000px;}
.ws28{word-spacing:-14.891400px;}
.ws82{word-spacing:-13.458600px;}
.ws36{word-spacing:-12.528000px;}
.ws25{word-spacing:-11.084400px;}
.ws4a{word-spacing:-9.139200px;}
.ws13{word-spacing:-8.413200px;}
.ws4c{word-spacing:-6.256800px;}
.ws60{word-spacing:-5.034000px;}
.ws26{word-spacing:1.440000px;}
.wsa4{word-spacing:1.444500px;}
.ws3b{word-spacing:5.266800px;}
.wse{word-spacing:7.210500px;}
.ws1{word-spacing:455.092800px;}
._19{margin-left:-2.287500px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1a{width:2.065500px;}
._22{width:17.340300px;}
._4{width:18.775800px;}
._5{width:20.069100px;}
._11{width:21.354600px;}
._e{width:22.512300px;}
._21{width:23.590200px;}
._8{width:24.739800px;}
._d{width:25.799700px;}
._f{width:26.923200px;}
._10{width:28.991700px;}
._b{width:30.784800px;}
._a{width:32.544600px;}
._c{width:33.976800px;}
._1{width:36.000000px;}
._17{width:37.014600px;}
._1f{width:38.814300px;}
._16{width:40.305000px;}
._14{width:42.213600px;}
._12{width:43.546800px;}
._18{width:44.907600px;}
._1d{width:48.451200px;}
._9{width:49.669200px;}
._1e{width:51.112800px;}
._20{width:52.332000px;}
._1b{width:56.800800px;}
._13{width:58.608000px;}
._6{width:64.203000px;}
._1c{width:70.643400px;}
._15{width:77.839800px;}
._24{width:117.057000px;}
._26{width:122.400000px;}
._7{width:127.012500px;}
._23{width:158.400000px;}
._25{width:176.400000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y45{bottom:99.796500px;}
.y30{bottom:101.236500px;}
.y44{bottom:120.496500px;}
.y80{bottom:120.675000px;}
.y2f{bottom:121.936500px;}
.y43{bottom:141.196500px;}
.y2e{bottom:142.636500px;}
.y6b{bottom:143.536500px;}
.y42{bottom:161.896500px;}
.y2d{bottom:163.336500px;}
.y6a{bottom:164.236500px;}
.y41{bottom:182.596500px;}
.y2c{bottom:184.036500px;}
.y69{bottom:184.936500px;}
.y40{bottom:203.295000px;}
.y7f{bottom:204.196500px;}
.y2b{bottom:204.736500px;}
.y68{bottom:205.636500px;}
.y3f{bottom:223.996500px;}
.y7e{bottom:224.896500px;}
.y2a{bottom:225.436500px;}
.y67{bottom:226.336500px;}
.y3e{bottom:244.696500px;}
.y7d{bottom:245.596500px;}
.y29{bottom:246.136500px;}
.y66{bottom:247.036500px;}
.y3d{bottom:265.396500px;}
.y28{bottom:266.836500px;}
.y65{bottom:267.736500px;}
.y7c{bottom:287.175000px;}
.y64{bottom:288.436500px;}
.y7b{bottom:307.875000px;}
.y27{bottom:308.596500px;}
.y63{bottom:309.136500px;}
.y7a{bottom:328.575000px;}
.y26{bottom:329.295000px;}
.y62{bottom:329.836500px;}
.y3c{bottom:348.736500px;}
.y79{bottom:349.275000px;}
.y25{bottom:349.996500px;}
.y61{bottom:350.536500px;}
.y78{bottom:369.975000px;}
.y24{bottom:370.696500px;}
.y99{bottom:371.236500px;}
.y3b{bottom:390.496500px;}
.y77{bottom:390.675000px;}
.y23{bottom:391.396500px;}
.y98{bottom:391.936500px;}
.y22{bottom:412.096500px;}
.y97{bottom:412.636500px;}
.y3a{bottom:432.075000px;}
.y76{bottom:432.436500px;}
.y21{bottom:432.795000px;}
.y96{bottom:433.336500px;}
.y60{bottom:433.875000px;}
.y75{bottom:453.136500px;}
.y20{bottom:453.496500px;}
.y95{bottom:454.036500px;}
.y39{bottom:473.836500px;}
.y1f{bottom:474.196500px;}
.y94{bottom:474.736500px;}
.y5f{bottom:475.636500px;}
.y74{bottom:494.536500px;}
.y1e{bottom:494.896500px;}
.y93{bottom:495.436500px;}
.y73{bottom:515.236500px;}
.y1d{bottom:515.596500px;}
.y92{bottom:516.136500px;}
.y1c{bottom:536.296500px;}
.y91{bottom:536.836500px;}
.y1b{bottom:556.996500px;}
.y90{bottom:557.536500px;}
.y5e{bottom:558.975000px;}
.y1a{bottom:577.695000px;}
.y8f{bottom:578.236500px;}
.y5d{bottom:579.675000px;}
.y19{bottom:598.396500px;}
.y8e{bottom:598.936500px;}
.y5c{bottom:600.375000px;}
.y18{bottom:619.096500px;}
.y8d{bottom:619.636500px;}
.y5b{bottom:621.075000px;}
.y17{bottom:639.795000px;}
.y8c{bottom:640.336500px;}
.y5a{bottom:641.775000px;}
.y16{bottom:660.496500px;}
.y8b{bottom:661.036500px;}
.y59{bottom:662.475000px;}
.y38{bottom:681.195000px;}
.y72{bottom:681.736500px;}
.y58{bottom:683.175000px;}
.y37{bottom:701.896500px;}
.y15{bottom:702.075000px;}
.y8a{bottom:702.795000px;}
.y57{bottom:703.875000px;}
.y36{bottom:722.596500px;}
.y14{bottom:722.775000px;}
.y71{bottom:723.496500px;}
.y56{bottom:724.575000px;}
.y35{bottom:743.295000px;}
.y13{bottom:743.475000px;}
.y89{bottom:744.375000px;}
.y55{bottom:745.275000px;}
.y34{bottom:763.996500px;}
.y12{bottom:764.175000px;}
.y70{bottom:765.075000px;}
.y54{bottom:765.975000px;}
.y88{bottom:785.775000px;}
.y53{bottom:786.675000px;}
.y11{bottom:805.936500px;}
.y87{bottom:806.475000px;}
.y6f{bottom:806.836500px;}
.y52{bottom:807.375000px;}
.y10{bottom:826.636500px;}
.y86{bottom:827.175000px;}
.y51{bottom:828.075000px;}
.yf{bottom:847.336500px;}
.y6e{bottom:848.596500px;}
.y50{bottom:848.775000px;}
.y85{bottom:868.936500px;}
.y6d{bottom:869.295000px;}
.y4f{bottom:869.475000px;}
.ye{bottom:889.095000px;}
.y84{bottom:889.636500px;}
.y6c{bottom:889.995000px;}
.y4e{bottom:890.175000px;}
.yd{bottom:909.795000px;}
.y83{bottom:910.336500px;}
.y4d{bottom:910.875000px;}
.yc{bottom:930.495000px;}
.y82{bottom:931.036500px;}
.y4c{bottom:931.575000px;}
.y81{bottom:951.736500px;}
.y4b{bottom:952.275000px;}
.yb{bottom:972.075000px;}
.y33{bottom:972.436500px;}
.y4a{bottom:972.975000px;}
.y32{bottom:993.136500px;}
.y49{bottom:993.675000px;}
.ya{bottom:1013.836500px;}
.y48{bottom:1014.375000px;}
.y47{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y46{bottom:1055.775000px;}
.y31{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x11{left:136.620000px;}
.xb{left:141.120000px;}
.xd{left:145.620000px;}
.xe{left:154.620000px;}
.x8{left:180.720000px;}
.x9{left:213.120000px;}
.x4{left:217.260000px;}
.xc{left:222.120000px;}
.xa{left:231.120000px;}
.xf{left:235.620000px;}
.x10{left:240.120000px;}
.x3{left:461.625000px;}
.x5{left:559.620000px;}
.x7{left:578.160000px;}
.x6{left:711.000000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsb{word-spacing:-49.728000pt;}
.ws34{word-spacing:-34.556000pt;}
.ws81{word-spacing:-34.550667pt;}
.ws67{word-spacing:-34.368533pt;}
.ws87{word-spacing:-34.363200pt;}
.ws6{word-spacing:-34.362400pt;}
.wsf{word-spacing:-34.361600pt;}
.ws80{word-spacing:-34.360800pt;}
.ws41{word-spacing:-34.360000pt;}
.ws42{word-spacing:-34.355733pt;}
.ws31{word-spacing:-34.355467pt;}
.wsa{word-spacing:-34.354400pt;}
.ws5{word-spacing:-34.353600pt;}
.wsa9{word-spacing:-34.353333pt;}
.ws11{word-spacing:-34.348800pt;}
.ws45{word-spacing:-34.176000pt;}
.ws84{word-spacing:-34.172800pt;}
.wsa5{word-spacing:-34.171733pt;}
.ws8e{word-spacing:-34.170400pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9a{word-spacing:-34.097600pt;}
.ws9c{word-spacing:-33.925333pt;}
.ws68{word-spacing:-33.920533pt;}
.ws8d{word-spacing:-33.920000pt;}
.ws43{word-spacing:-33.913600pt;}
.ws10{word-spacing:-33.912800pt;}
.ws38{word-spacing:-33.912000pt;}
.ws44{word-spacing:-33.911467pt;}
.ws35{word-spacing:-33.911200pt;}
.ws95{word-spacing:-33.910400pt;}
.wsa3{word-spacing:-33.909600pt;}
.ws8c{word-spacing:-33.902400pt;}
.ws7f{word-spacing:-33.900800pt;}
.ws9{word-spacing:-33.855200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws33{word-spacing:-33.721600pt;}
.ws69{word-spacing:-33.720000pt;}
.ws96{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws7c{word-spacing:-33.653600pt;}
.ws75{word-spacing:-33.276800pt;}
.ws5d{word-spacing:-33.273600pt;}
.wsc{word-spacing:-33.263200pt;}
.wsa6{word-spacing:-33.093333pt;}
.wsd{word-spacing:-33.080533pt;}
.ws90{word-spacing:-33.080000pt;}
.ws7a{word-spacing:-33.077600pt;}
.ws54{word-spacing:-32.636800pt;}
.ws8a{word-spacing:-32.636000pt;}
.ws29{word-spacing:-32.635200pt;}
.ws91{word-spacing:-32.634400pt;}
.ws3d{word-spacing:-32.438400pt;}
.ws55{word-spacing:-32.256000pt;}
.ws50{word-spacing:-32.254400pt;}
.ws5c{word-spacing:-32.248000pt;}
.ws22{word-spacing:-32.000000pt;}
.ws7b{word-spacing:-31.611200pt;}
.wsa2{word-spacing:-31.349600pt;}
.ws65{word-spacing:-31.163200pt;}
.ws63{word-spacing:-31.158400pt;}
.ws23{word-spacing:-30.972800pt;}
.ws77{word-spacing:-30.720533pt;}
.ws18{word-spacing:-30.708000pt;}
.ws19{word-spacing:-30.528000pt;}
.ws5b{word-spacing:-30.520000pt;}
.ws94{word-spacing:-30.516800pt;}
.ws86{word-spacing:-30.514133pt;}
.ws61{word-spacing:-30.510400pt;}
.ws5f{word-spacing:-30.328000pt;}
.ws59{word-spacing:-30.067200pt;}
.ws30{word-spacing:-29.888000pt;}
.ws37{word-spacing:-29.885333pt;}
.ws8{word-spacing:-29.820267pt;}
.ws1f{word-spacing:-29.440000pt;}
.ws99{word-spacing:-29.435200pt;}
.ws12{word-spacing:-29.243200pt;}
.wsa0{word-spacing:-29.238400pt;}
.ws6f{word-spacing:-28.802133pt;}
.ws24{word-spacing:-28.800000pt;}
.ws46{word-spacing:-28.601600pt;}
.ws39{word-spacing:-28.598400pt;}
.ws20{word-spacing:-28.412800pt;}
.ws17{word-spacing:-28.156000pt;}
.ws71{word-spacing:-28.154667pt;}
.ws49{word-spacing:-27.965333pt;}
.ws4d{word-spacing:-27.324800pt;}
.ws1b{word-spacing:-27.323733pt;}
.ws76{word-spacing:-27.319200pt;}
.ws1c{word-spacing:-26.880533pt;}
.ws48{word-spacing:-26.870667pt;}
.ws53{word-spacing:-26.867467pt;}
.ws47{word-spacing:-26.679467pt;}
.ws6a{word-spacing:-26.498133pt;}
.ws9f{word-spacing:-26.229600pt;}
.ws2c{word-spacing:-26.041600pt;}
.ws6b{word-spacing:-26.040800pt;}
.ws4e{word-spacing:-26.040533pt;}
.ws89{word-spacing:-26.038400pt;}
.ws21{word-spacing:-25.848000pt;}
.ws8f{word-spacing:-25.602133pt;}
.ws98{word-spacing:-25.402400pt;}
.wsa1{word-spacing:-25.396800pt;}
.ws9e{word-spacing:-25.393067pt;}
.ws27{word-spacing:-24.965333pt;}
.ws83{word-spacing:-24.956000pt;}
.ws1d{word-spacing:-24.946400pt;}
.ws92{word-spacing:-24.765600pt;}
.ws64{word-spacing:-24.763200pt;}
.ws9d{word-spacing:-24.762133pt;}
.ws1a{word-spacing:-24.749867pt;}
.ws3c{word-spacing:-24.574400pt;}
.ws56{word-spacing:-24.568000pt;}
.ws5a{word-spacing:-24.566400pt;}
.ws40{word-spacing:-24.316000pt;}
.ws15{word-spacing:-23.921600pt;}
.ws62{word-spacing:-23.675200pt;}
.ws9b{word-spacing:-23.480000pt;}
.ws52{word-spacing:-23.289600pt;}
.ws66{word-spacing:-22.840533pt;}
.ws7d{word-spacing:-22.837867pt;}
.ws79{word-spacing:-22.833600pt;}
.ws3e{word-spacing:-22.206933pt;}
.ws2f{word-spacing:-22.195200pt;}
.ws14{word-spacing:-21.760533pt;}
.wsa7{word-spacing:-21.243200pt;}
.ws4f{word-spacing:-20.924800pt;}
.ws70{word-spacing:-20.922400pt;}
.ws74{word-spacing:-20.918400pt;}
.ws78{word-spacing:-20.736000pt;}
.ws16{word-spacing:-20.476800pt;}
.wsa8{word-spacing:-20.470667pt;}
.ws85{word-spacing:-20.279200pt;}
.ws73{word-spacing:-20.278400pt;}
.ws1e{word-spacing:-20.098133pt;}
.ws6e{word-spacing:-19.826667pt;}
.ws58{word-spacing:-19.646400pt;}
.ws2d{word-spacing:-19.634667pt;}
.ws5e{word-spacing:-18.810400pt;}
.ws3f{word-spacing:-18.556000pt;}
.ws2e{word-spacing:-18.166933pt;}
.ws7e{word-spacing:-17.281333pt;}
.ws88{word-spacing:-16.632000pt;}
.ws93{word-spacing:-16.448533pt;}
.ws6c{word-spacing:-16.442400pt;}
.ws57{word-spacing:-16.440000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2a{word-spacing:-15.800000pt;}
.ws3a{word-spacing:-15.616000pt;}
.ws6d{word-spacing:-15.608000pt;}
.ws51{word-spacing:-15.355200pt;}
.ws72{word-spacing:-15.353600pt;}
.ws4b{word-spacing:-15.160000pt;}
.ws97{word-spacing:-14.720000pt;}
.ws8b{word-spacing:-14.319467pt;}
.ws32{word-spacing:-13.883200pt;}
.ws2b{word-spacing:-13.432000pt;}
.ws28{word-spacing:-13.236800pt;}
.ws82{word-spacing:-11.963200pt;}
.ws36{word-spacing:-11.136000pt;}
.ws25{word-spacing:-9.852800pt;}
.ws4a{word-spacing:-8.123733pt;}
.ws13{word-spacing:-7.478400pt;}
.ws4c{word-spacing:-5.561600pt;}
.ws60{word-spacing:-4.474667pt;}
.ws26{word-spacing:1.280000pt;}
.wsa4{word-spacing:1.284000pt;}
.ws3b{word-spacing:4.681600pt;}
.wse{word-spacing:6.409333pt;}
.ws1{word-spacing:404.526933pt;}
._19{margin-left:-2.033333pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1a{width:1.836000pt;}
._22{width:15.413600pt;}
._4{width:16.689600pt;}
._5{width:17.839200pt;}
._11{width:18.981867pt;}
._e{width:20.010933pt;}
._21{width:20.969067pt;}
._8{width:21.990933pt;}
._d{width:22.933067pt;}
._f{width:23.931733pt;}
._10{width:25.770400pt;}
._b{width:27.364267pt;}
._a{width:28.928533pt;}
._c{width:30.201600pt;}
._1{width:32.000000pt;}
._17{width:32.901867pt;}
._1f{width:34.501600pt;}
._16{width:35.826667pt;}
._14{width:37.523200pt;}
._12{width:38.708267pt;}
._18{width:39.917867pt;}
._1d{width:43.067733pt;}
._9{width:44.150400pt;}
._1e{width:45.433600pt;}
._20{width:46.517333pt;}
._1b{width:50.489600pt;}
._13{width:52.096000pt;}
._6{width:57.069333pt;}
._1c{width:62.794133pt;}
._15{width:69.190933pt;}
._24{width:104.050667pt;}
._26{width:108.800000pt;}
._7{width:112.900000pt;}
._23{width:140.800000pt;}
._25{width:156.800000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y45{bottom:88.708000pt;}
.y30{bottom:89.988000pt;}
.y44{bottom:107.108000pt;}
.y80{bottom:107.266667pt;}
.y2f{bottom:108.388000pt;}
.y43{bottom:125.508000pt;}
.y2e{bottom:126.788000pt;}
.y6b{bottom:127.588000pt;}
.y42{bottom:143.908000pt;}
.y2d{bottom:145.188000pt;}
.y6a{bottom:145.988000pt;}
.y41{bottom:162.308000pt;}
.y2c{bottom:163.588000pt;}
.y69{bottom:164.388000pt;}
.y40{bottom:180.706667pt;}
.y7f{bottom:181.508000pt;}
.y2b{bottom:181.988000pt;}
.y68{bottom:182.788000pt;}
.y3f{bottom:199.108000pt;}
.y7e{bottom:199.908000pt;}
.y2a{bottom:200.388000pt;}
.y67{bottom:201.188000pt;}
.y3e{bottom:217.508000pt;}
.y7d{bottom:218.308000pt;}
.y29{bottom:218.788000pt;}
.y66{bottom:219.588000pt;}
.y3d{bottom:235.908000pt;}
.y28{bottom:237.188000pt;}
.y65{bottom:237.988000pt;}
.y7c{bottom:255.266667pt;}
.y64{bottom:256.388000pt;}
.y7b{bottom:273.666667pt;}
.y27{bottom:274.308000pt;}
.y63{bottom:274.788000pt;}
.y7a{bottom:292.066667pt;}
.y26{bottom:292.706667pt;}
.y62{bottom:293.188000pt;}
.y3c{bottom:309.988000pt;}
.y79{bottom:310.466667pt;}
.y25{bottom:311.108000pt;}
.y61{bottom:311.588000pt;}
.y78{bottom:328.866667pt;}
.y24{bottom:329.508000pt;}
.y99{bottom:329.988000pt;}
.y3b{bottom:347.108000pt;}
.y77{bottom:347.266667pt;}
.y23{bottom:347.908000pt;}
.y98{bottom:348.388000pt;}
.y22{bottom:366.308000pt;}
.y97{bottom:366.788000pt;}
.y3a{bottom:384.066667pt;}
.y76{bottom:384.388000pt;}
.y21{bottom:384.706667pt;}
.y96{bottom:385.188000pt;}
.y60{bottom:385.666667pt;}
.y75{bottom:402.788000pt;}
.y20{bottom:403.108000pt;}
.y95{bottom:403.588000pt;}
.y39{bottom:421.188000pt;}
.y1f{bottom:421.508000pt;}
.y94{bottom:421.988000pt;}
.y5f{bottom:422.788000pt;}
.y74{bottom:439.588000pt;}
.y1e{bottom:439.908000pt;}
.y93{bottom:440.388000pt;}
.y73{bottom:457.988000pt;}
.y1d{bottom:458.308000pt;}
.y92{bottom:458.788000pt;}
.y1c{bottom:476.708000pt;}
.y91{bottom:477.188000pt;}
.y1b{bottom:495.108000pt;}
.y90{bottom:495.588000pt;}
.y5e{bottom:496.866667pt;}
.y1a{bottom:513.506667pt;}
.y8f{bottom:513.988000pt;}
.y5d{bottom:515.266667pt;}
.y19{bottom:531.908000pt;}
.y8e{bottom:532.388000pt;}
.y5c{bottom:533.666667pt;}
.y18{bottom:550.308000pt;}
.y8d{bottom:550.788000pt;}
.y5b{bottom:552.066667pt;}
.y17{bottom:568.706667pt;}
.y8c{bottom:569.188000pt;}
.y5a{bottom:570.466667pt;}
.y16{bottom:587.108000pt;}
.y8b{bottom:587.588000pt;}
.y59{bottom:588.866667pt;}
.y38{bottom:605.506667pt;}
.y72{bottom:605.988000pt;}
.y58{bottom:607.266667pt;}
.y37{bottom:623.908000pt;}
.y15{bottom:624.066667pt;}
.y8a{bottom:624.706667pt;}
.y57{bottom:625.666667pt;}
.y36{bottom:642.308000pt;}
.y14{bottom:642.466667pt;}
.y71{bottom:643.108000pt;}
.y56{bottom:644.066667pt;}
.y35{bottom:660.706667pt;}
.y13{bottom:660.866667pt;}
.y89{bottom:661.666667pt;}
.y55{bottom:662.466667pt;}
.y34{bottom:679.108000pt;}
.y12{bottom:679.266667pt;}
.y70{bottom:680.066667pt;}
.y54{bottom:680.866667pt;}
.y88{bottom:698.466667pt;}
.y53{bottom:699.266667pt;}
.y11{bottom:716.388000pt;}
.y87{bottom:716.866667pt;}
.y6f{bottom:717.188000pt;}
.y52{bottom:717.666667pt;}
.y10{bottom:734.788000pt;}
.y86{bottom:735.266667pt;}
.y51{bottom:736.066667pt;}
.yf{bottom:753.188000pt;}
.y6e{bottom:754.308000pt;}
.y50{bottom:754.466667pt;}
.y85{bottom:772.388000pt;}
.y6d{bottom:772.706667pt;}
.y4f{bottom:772.866667pt;}
.ye{bottom:790.306667pt;}
.y84{bottom:790.788000pt;}
.y6c{bottom:791.106667pt;}
.y4e{bottom:791.266667pt;}
.yd{bottom:808.706667pt;}
.y83{bottom:809.188000pt;}
.y4d{bottom:809.666667pt;}
.yc{bottom:827.106667pt;}
.y82{bottom:827.588000pt;}
.y4c{bottom:828.066667pt;}
.y81{bottom:845.988000pt;}
.y4b{bottom:846.466667pt;}
.yb{bottom:864.066667pt;}
.y33{bottom:864.388000pt;}
.y4a{bottom:864.866667pt;}
.y32{bottom:882.788000pt;}
.y49{bottom:883.266667pt;}
.ya{bottom:901.188000pt;}
.y48{bottom:901.666667pt;}
.y47{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y46{bottom:938.466667pt;}
.y31{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x11{left:121.440000pt;}
.xb{left:125.440000pt;}
.xd{left:129.440000pt;}
.xe{left:137.440000pt;}
.x8{left:160.640000pt;}
.x9{left:189.440000pt;}
.x4{left:193.120000pt;}
.xc{left:197.440000pt;}
.xa{left:205.440000pt;}
.xf{left:209.440000pt;}
.x10{left:213.440000pt;}
.x3{left:410.333333pt;}
.x5{left:497.440000pt;}
.x7{left:513.920000pt;}
.x6{left:632.000000pt;}
.x2{left:649.920000pt;}
}




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