
    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_bc3bdd5173a393002374f475.woff')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_c9f7a2d384722be5c7bac338.woff')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_1992a8181d2ec855950d8af0.woff')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_d14eacff362d99f06d409f30.woff')format("woff");}.ff4{font-family:ff4;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);}
.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;}
}
.ws1c{word-spacing:-55.944000px;}
.ws87{word-spacing:-40.104000px;}
.ws86{word-spacing:-39.384000px;}
.ws79{word-spacing:-38.662200px;}
.ws6{word-spacing:-38.657700px;}
.ws6b{word-spacing:-38.653200px;}
.ws5{word-spacing:-38.647800px;}
.ws22{word-spacing:-38.440800px;}
.ws56{word-spacing:-38.437200px;}
.ws50{word-spacing:-38.431800px;}
.ws71{word-spacing:-38.423700px;}
.ws5e{word-spacing:-38.416500px;}
.ws3{word-spacing:-38.374200px;}
.wsc{word-spacing:-38.371500px;}
.ws36{word-spacing:-38.289600px;}
.ws17{word-spacing:-38.160000px;}
.ws3b{word-spacing:-38.147400px;}
.ws9{word-spacing:-38.079900px;}
.ws82{word-spacing:-38.075400px;}
.wsa{word-spacing:-38.068500px;}
.ws0{word-spacing:-37.944000px;}
.ws7e{word-spacing:-37.941300px;}
.ws4{word-spacing:-37.938600px;}
.ws88{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.ws65{word-spacing:-37.724400px;}
.wsb{word-spacing:-37.719900px;}
.ws64{word-spacing:-37.708200px;}
.ws2d{word-spacing:-37.224000px;}
.ws4d{word-spacing:-37.213200px;}
.ws1d{word-spacing:-37.207800px;}
.ws66{word-spacing:-36.501000px;}
.ws5c{word-spacing:-35.985000px;}
.ws5f{word-spacing:-35.790000px;}
.ws7d{word-spacing:-35.757000px;}
.ws40{word-spacing:-35.286000px;}
.ws6e{word-spacing:-35.259300px;}
.ws53{word-spacing:-34.543800px;}
.ws43{word-spacing:-34.339200px;}
.ws1e{word-spacing:-34.337400px;}
.ws58{word-spacing:-34.333200px;}
.ws6f{word-spacing:-34.126800px;}
.ws1f{word-spacing:-33.840000px;}
.ws85{word-spacing:-33.836400px;}
.ws8{word-spacing:-33.547800px;}
.ws89{word-spacing:-32.184000px;}
.ws67{word-spacing:-31.680000px;}
.ws6c{word-spacing:-31.669800px;}
.ws5d{word-spacing:-31.446000px;}
.ws2b{word-spacing:-31.176000px;}
.ws54{word-spacing:-30.966000px;}
.ws2a{word-spacing:-30.744000px;}
.ws55{word-spacing:-30.733800px;}
.ws7b{word-spacing:-30.242400px;}
.ws69{word-spacing:-30.240600px;}
.ws13{word-spacing:-30.225600px;}
.ws12{word-spacing:-30.002400px;}
.ws41{word-spacing:-29.307300px;}
.ws62{word-spacing:-29.284200px;}
.ws61{word-spacing:-29.081400px;}
.ws45{word-spacing:-28.789200px;}
.ws27{word-spacing:-28.581900px;}
.ws26{word-spacing:-28.571400px;}
.ws14{word-spacing:-28.570800px;}
.ws5b{word-spacing:-27.866400px;}
.ws11{word-spacing:-27.846600px;}
.ws33{word-spacing:-27.788100px;}
.ws84{word-spacing:-27.144000px;}
.ws51{word-spacing:-27.126000px;}
.ws20{word-spacing:-26.640000px;}
.ws18{word-spacing:-25.911900px;}
.ws2c{word-spacing:-25.704000px;}
.ws3f{word-spacing:-25.696800px;}
.ws19{word-spacing:-25.691400px;}
.ws21{word-spacing:-25.682400px;}
.ws5a{word-spacing:-24.969000px;}
.ws35{word-spacing:-23.885100px;}
.ws1a{word-spacing:-23.762400px;}
.ws3c{word-spacing:-22.824000px;}
.ws48{word-spacing:-22.821000px;}
.ws78{word-spacing:-22.815000px;}
.ws3d{word-spacing:-22.812000px;}
.ws3e{word-spacing:-22.794300px;}
.ws42{word-spacing:-22.591800px;}
.ws72{word-spacing:-22.095000px;}
.ws74{word-spacing:-22.093200px;}
.ws4c{word-spacing:-22.091400px;}
.ws73{word-spacing:-21.585600px;}
.ws83{word-spacing:-21.384000px;}
.ws10{word-spacing:-19.944000px;}
.ws81{word-spacing:-19.933800px;}
.ws4e{word-spacing:-19.918800px;}
.ws6a{word-spacing:-19.215000px;}
.ws77{word-spacing:-19.213200px;}
.ws7a{word-spacing:-19.000800px;}
.ws60{word-spacing:-18.712800px;}
.ws70{word-spacing:-18.502800px;}
.ws7{word-spacing:-18.472500px;}
.wsf{word-spacing:-17.777400px;}
.ws23{word-spacing:-17.262000px;}
.ws24{word-spacing:-15.836400px;}
.ws46{word-spacing:-15.829200px;}
.ws63{word-spacing:-15.618300px;}
.ws52{word-spacing:-15.615000px;}
.ws47{word-spacing:-15.116400px;}
.ws7f{word-spacing:-14.891400px;}
.ws59{word-spacing:-14.389200px;}
.ws32{word-spacing:-14.166000px;}
.wsd{word-spacing:-13.680000px;}
.wse{word-spacing:-13.461300px;}
.ws25{word-spacing:-12.962400px;}
.ws80{word-spacing:-12.951000px;}
.ws68{word-spacing:-12.741300px;}
.ws4f{word-spacing:-12.727800px;}
.ws15{word-spacing:-12.505800px;}
.ws76{word-spacing:-12.018600px;}
.ws44{word-spacing:-12.004200px;}
.ws30{word-spacing:-11.304000px;}
.ws49{word-spacing:-11.289300px;}
.ws4a{word-spacing:-10.788000px;}
.ws7c{word-spacing:-10.582200px;}
.ws4b{word-spacing:-8.422800px;}
.ws57{word-spacing:-6.247800px;}
.ws6d{word-spacing:-6.246900px;}
.ws16{word-spacing:-4.087800px;}
.ws28{word-spacing:-4.082400px;}
.ws75{word-spacing:-0.491400px;}
.ws34{word-spacing:-0.134100px;}
.ws1b{word-spacing:5.997600px;}
.ws2f{word-spacing:11.106900px;}
.ws39{word-spacing:16.776000px;}
.ws37{word-spacing:18.930000px;}
.ws38{word-spacing:18.936000px;}
.ws29{word-spacing:24.710400px;}
.ws31{word-spacing:39.456000px;}
.ws2e{word-spacing:54.216000px;}
.ws3a{word-spacing:81.677700px;}
.ws1{word-spacing:455.092800px;}
._18{margin-left:-2.320800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._25{width:2.320800px;}
._28{width:15.840000px;}
._27{width:17.449800px;}
._4{width:18.775800px;}
._13{width:20.203800px;}
._1d{width:21.816000px;}
._10{width:23.537400px;}
._29{width:24.931200px;}
._22{width:26.070000px;}
._8{width:27.122400px;}
._9{width:28.130400px;}
._7{width:29.208000px;}
._21{width:30.346800px;}
._c{width:31.455900px;}
._d{width:32.508600px;}
._e{width:34.018800px;}
._1{width:36.000000px;}
._20{width:37.342800px;}
._24{width:38.754000px;}
._6{width:40.225200px;}
._11{width:41.395200px;}
._1e{width:42.502800px;}
._5{width:44.033100px;}
._a{width:45.634500px;}
._26{width:46.665600px;}
._1f{width:49.585200px;}
._23{width:51.403200px;}
._b{width:53.263800px;}
._19{width:57.302100px;}
._f{width:63.904800px;}
._16{width:68.108100px;}
._15{width:69.173100px;}
._1b{width:71.540400px;}
._1a{width:76.038000px;}
._12{width:81.909600px;}
._17{width:96.507600px;}
._14{width:111.250800px;}
._1c{width:138.786300px;}
._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;}
.y71{bottom:101.236500px;}
.y31{bottom:101.596500px;}
.y70{bottom:121.936500px;}
.y30{bottom:122.296500px;}
.y57{bottom:122.475000px;}
.y2f{bottom:142.996500px;}
.y56{bottom:143.175000px;}
.y2e{bottom:163.696500px;}
.y55{bottom:163.875000px;}
.y2d{bottom:184.396500px;}
.y54{bottom:184.575000px;}
.y2c{bottom:205.096500px;}
.y53{bottom:205.275000px;}
.y2b{bottom:225.795000px;}
.y52{bottom:225.975000px;}
.y2a{bottom:246.496500px;}
.y51{bottom:246.675000px;}
.y29{bottom:267.196500px;}
.y50{bottom:267.375000px;}
.y6f{bottom:267.736500px;}
.y28{bottom:287.896500px;}
.y6e{bottom:288.436500px;}
.y4f{bottom:309.136500px;}
.y27{bottom:329.475000px;}
.y4e{bottom:329.836500px;}
.y26{bottom:350.175000px;}
.y4d{bottom:350.536500px;}
.y25{bottom:370.875000px;}
.y4c{bottom:371.236500px;}
.y6d{bottom:371.596500px;}
.y24{bottom:391.575000px;}
.y4b{bottom:391.936500px;}
.y6c{bottom:392.295000px;}
.y4a{bottom:412.636500px;}
.y6b{bottom:412.996500px;}
.y23{bottom:433.336500px;}
.y6a{bottom:433.696500px;}
.y22{bottom:454.036500px;}
.y49{bottom:454.396500px;}
.y21{bottom:474.736500px;}
.y48{bottom:475.096500px;}
.y20{bottom:495.436500px;}
.y47{bottom:495.796500px;}
.y1f{bottom:516.136500px;}
.y46{bottom:516.496500px;}
.y69{bottom:516.675000px;}
.y1e{bottom:536.836500px;}
.y45{bottom:537.195000px;}
.y68{bottom:537.375000px;}
.y1d{bottom:557.536500px;}
.y44{bottom:557.896500px;}
.y67{bottom:558.075000px;}
.y1c{bottom:578.236500px;}
.y43{bottom:578.596500px;}
.y66{bottom:578.775000px;}
.y1b{bottom:598.936500px;}
.y65{bottom:599.475000px;}
.y1a{bottom:619.636500px;}
.y64{bottom:620.175000px;}
.y63{bottom:640.875000px;}
.y19{bottom:661.396500px;}
.y42{bottom:661.936500px;}
.y18{bottom:682.096500px;}
.y41{bottom:682.636500px;}
.y78{bottom:701.896500px;}
.y17{bottom:702.795000px;}
.y40{bottom:703.336500px;}
.y77{bottom:722.596500px;}
.y16{bottom:723.496500px;}
.y3f{bottom:724.036500px;}
.y3e{bottom:744.736500px;}
.y76{bottom:764.175000px;}
.y15{bottom:765.075000px;}
.y3d{bottom:765.436500px;}
.y14{bottom:785.775000px;}
.y3c{bottom:786.136500px;}
.y75{bottom:805.936500px;}
.y13{bottom:806.475000px;}
.y3b{bottom:806.836500px;}
.y12{bottom:827.175000px;}
.y3a{bottom:827.536500px;}
.y62{bottom:827.895000px;}
.y74{bottom:847.695000px;}
.y11{bottom:847.875000px;}
.y39{bottom:848.236500px;}
.y61{bottom:848.596500px;}
.y10{bottom:868.575000px;}
.y38{bottom:868.936500px;}
.y60{bottom:869.295000px;}
.yf{bottom:889.275000px;}
.y37{bottom:889.636500px;}
.y5f{bottom:889.995000px;}
.ye{bottom:909.975000px;}
.y36{bottom:910.336500px;}
.y5e{bottom:910.695000px;}
.yd{bottom:930.675000px;}
.y5d{bottom:931.395000px;}
.yc{bottom:951.375000px;}
.y73{bottom:951.736500px;}
.y35{bottom:952.095000px;}
.y72{bottom:972.436500px;}
.y34{bottom:972.795000px;}
.y5c{bottom:972.975000px;}
.yb{bottom:993.136500px;}
.y33{bottom:993.495000px;}
.y5b{bottom:993.675000px;}
.y32{bottom:1014.195000px;}
.y5a{bottom:1014.375000px;}
.ya{bottom:1034.895000px;}
.y59{bottom:1035.075000px;}
.y58{bottom:1055.775000px;}
.y9{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:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:166.500000px;}
.x5{left:329.038500px;}
.x3{left:465.825000px;}
.x6{left:548.820000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1c{word-spacing:-49.728000pt;}
.ws87{word-spacing:-35.648000pt;}
.ws86{word-spacing:-35.008000pt;}
.ws79{word-spacing:-34.366400pt;}
.ws6{word-spacing:-34.362400pt;}
.ws6b{word-spacing:-34.358400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws22{word-spacing:-34.169600pt;}
.ws56{word-spacing:-34.166400pt;}
.ws50{word-spacing:-34.161600pt;}
.ws71{word-spacing:-34.154400pt;}
.ws5e{word-spacing:-34.148000pt;}
.ws3{word-spacing:-34.110400pt;}
.wsc{word-spacing:-34.108000pt;}
.ws36{word-spacing:-34.035200pt;}
.ws17{word-spacing:-33.920000pt;}
.ws3b{word-spacing:-33.908800pt;}
.ws9{word-spacing:-33.848800pt;}
.ws82{word-spacing:-33.844800pt;}
.wsa{word-spacing:-33.838667pt;}
.ws0{word-spacing:-33.728000pt;}
.ws7e{word-spacing:-33.725600pt;}
.ws4{word-spacing:-33.723200pt;}
.ws88{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.ws65{word-spacing:-33.532800pt;}
.wsb{word-spacing:-33.528800pt;}
.ws64{word-spacing:-33.518400pt;}
.ws2d{word-spacing:-33.088000pt;}
.ws4d{word-spacing:-33.078400pt;}
.ws1d{word-spacing:-33.073600pt;}
.ws66{word-spacing:-32.445333pt;}
.ws5c{word-spacing:-31.986667pt;}
.ws5f{word-spacing:-31.813333pt;}
.ws7d{word-spacing:-31.784000pt;}
.ws40{word-spacing:-31.365333pt;}
.ws6e{word-spacing:-31.341600pt;}
.ws53{word-spacing:-30.705600pt;}
.ws43{word-spacing:-30.523733pt;}
.ws1e{word-spacing:-30.522133pt;}
.ws58{word-spacing:-30.518400pt;}
.ws6f{word-spacing:-30.334933pt;}
.ws1f{word-spacing:-30.080000pt;}
.ws85{word-spacing:-30.076800pt;}
.ws8{word-spacing:-29.820267pt;}
.ws89{word-spacing:-28.608000pt;}
.ws67{word-spacing:-28.160000pt;}
.ws6c{word-spacing:-28.150933pt;}
.ws5d{word-spacing:-27.952000pt;}
.ws2b{word-spacing:-27.712000pt;}
.ws54{word-spacing:-27.525333pt;}
.ws2a{word-spacing:-27.328000pt;}
.ws55{word-spacing:-27.318933pt;}
.ws7b{word-spacing:-26.882133pt;}
.ws69{word-spacing:-26.880533pt;}
.ws13{word-spacing:-26.867200pt;}
.ws12{word-spacing:-26.668800pt;}
.ws41{word-spacing:-26.050933pt;}
.ws62{word-spacing:-26.030400pt;}
.ws61{word-spacing:-25.850133pt;}
.ws45{word-spacing:-25.590400pt;}
.ws27{word-spacing:-25.406133pt;}
.ws26{word-spacing:-25.396800pt;}
.ws14{word-spacing:-25.396267pt;}
.ws5b{word-spacing:-24.770133pt;}
.ws11{word-spacing:-24.752533pt;}
.ws33{word-spacing:-24.700533pt;}
.ws84{word-spacing:-24.128000pt;}
.ws51{word-spacing:-24.112000pt;}
.ws20{word-spacing:-23.680000pt;}
.ws18{word-spacing:-23.032800pt;}
.ws2c{word-spacing:-22.848000pt;}
.ws3f{word-spacing:-22.841600pt;}
.ws19{word-spacing:-22.836800pt;}
.ws21{word-spacing:-22.828800pt;}
.ws5a{word-spacing:-22.194667pt;}
.ws35{word-spacing:-21.231200pt;}
.ws1a{word-spacing:-21.122133pt;}
.ws3c{word-spacing:-20.288000pt;}
.ws48{word-spacing:-20.285333pt;}
.ws78{word-spacing:-20.280000pt;}
.ws3d{word-spacing:-20.277333pt;}
.ws3e{word-spacing:-20.261600pt;}
.ws42{word-spacing:-20.081600pt;}
.ws72{word-spacing:-19.640000pt;}
.ws74{word-spacing:-19.638400pt;}
.ws4c{word-spacing:-19.636800pt;}
.ws73{word-spacing:-19.187200pt;}
.ws83{word-spacing:-19.008000pt;}
.ws10{word-spacing:-17.728000pt;}
.ws81{word-spacing:-17.718933pt;}
.ws4e{word-spacing:-17.705600pt;}
.ws6a{word-spacing:-17.080000pt;}
.ws77{word-spacing:-17.078400pt;}
.ws7a{word-spacing:-16.889600pt;}
.ws60{word-spacing:-16.633600pt;}
.ws70{word-spacing:-16.446933pt;}
.ws7{word-spacing:-16.420000pt;}
.wsf{word-spacing:-15.802133pt;}
.ws23{word-spacing:-15.344000pt;}
.ws24{word-spacing:-14.076800pt;}
.ws46{word-spacing:-14.070400pt;}
.ws63{word-spacing:-13.882933pt;}
.ws52{word-spacing:-13.880000pt;}
.ws47{word-spacing:-13.436800pt;}
.ws7f{word-spacing:-13.236800pt;}
.ws59{word-spacing:-12.790400pt;}
.ws32{word-spacing:-12.592000pt;}
.wsd{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.965600pt;}
.ws25{word-spacing:-11.522133pt;}
.ws80{word-spacing:-11.512000pt;}
.ws68{word-spacing:-11.325600pt;}
.ws4f{word-spacing:-11.313600pt;}
.ws15{word-spacing:-11.116267pt;}
.ws76{word-spacing:-10.683200pt;}
.ws44{word-spacing:-10.670400pt;}
.ws30{word-spacing:-10.048000pt;}
.ws49{word-spacing:-10.034933pt;}
.ws4a{word-spacing:-9.589333pt;}
.ws7c{word-spacing:-9.406400pt;}
.ws4b{word-spacing:-7.486933pt;}
.ws57{word-spacing:-5.553600pt;}
.ws6d{word-spacing:-5.552800pt;}
.ws16{word-spacing:-3.633600pt;}
.ws28{word-spacing:-3.628800pt;}
.ws75{word-spacing:-0.436800pt;}
.ws34{word-spacing:-0.119200pt;}
.ws1b{word-spacing:5.331200pt;}
.ws2f{word-spacing:9.872800pt;}
.ws39{word-spacing:14.912000pt;}
.ws37{word-spacing:16.826667pt;}
.ws38{word-spacing:16.832000pt;}
.ws29{word-spacing:21.964800pt;}
.ws31{word-spacing:35.072000pt;}
.ws2e{word-spacing:48.192000pt;}
.ws3a{word-spacing:72.602400pt;}
.ws1{word-spacing:404.526933pt;}
._18{margin-left:-2.062933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._25{width:2.062933pt;}
._28{width:14.080000pt;}
._27{width:15.510933pt;}
._4{width:16.689600pt;}
._13{width:17.958933pt;}
._1d{width:19.392000pt;}
._10{width:20.922133pt;}
._29{width:22.161067pt;}
._22{width:23.173333pt;}
._8{width:24.108800pt;}
._9{width:25.004800pt;}
._7{width:25.962667pt;}
._21{width:26.974933pt;}
._c{width:27.960800pt;}
._d{width:28.896533pt;}
._e{width:30.238933pt;}
._1{width:32.000000pt;}
._20{width:33.193600pt;}
._24{width:34.448000pt;}
._6{width:35.755733pt;}
._11{width:36.795733pt;}
._1e{width:37.780267pt;}
._5{width:39.140533pt;}
._a{width:40.564000pt;}
._26{width:41.480533pt;}
._1f{width:44.075733pt;}
._23{width:45.691733pt;}
._b{width:47.345600pt;}
._19{width:50.935200pt;}
._f{width:56.804267pt;}
._16{width:60.540533pt;}
._15{width:61.487200pt;}
._1b{width:63.591467pt;}
._1a{width:67.589333pt;}
._12{width:72.808533pt;}
._17{width:85.784533pt;}
._14{width:98.889600pt;}
._1c{width:123.365600pt;}
._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;}
.y71{bottom:89.988000pt;}
.y31{bottom:90.308000pt;}
.y70{bottom:108.388000pt;}
.y30{bottom:108.708000pt;}
.y57{bottom:108.866667pt;}
.y2f{bottom:127.108000pt;}
.y56{bottom:127.266667pt;}
.y2e{bottom:145.508000pt;}
.y55{bottom:145.666667pt;}
.y2d{bottom:163.908000pt;}
.y54{bottom:164.066667pt;}
.y2c{bottom:182.308000pt;}
.y53{bottom:182.466667pt;}
.y2b{bottom:200.706667pt;}
.y52{bottom:200.866667pt;}
.y2a{bottom:219.108000pt;}
.y51{bottom:219.266667pt;}
.y29{bottom:237.508000pt;}
.y50{bottom:237.666667pt;}
.y6f{bottom:237.988000pt;}
.y28{bottom:255.908000pt;}
.y6e{bottom:256.388000pt;}
.y4f{bottom:274.788000pt;}
.y27{bottom:292.866667pt;}
.y4e{bottom:293.188000pt;}
.y26{bottom:311.266667pt;}
.y4d{bottom:311.588000pt;}
.y25{bottom:329.666667pt;}
.y4c{bottom:329.988000pt;}
.y6d{bottom:330.308000pt;}
.y24{bottom:348.066667pt;}
.y4b{bottom:348.388000pt;}
.y6c{bottom:348.706667pt;}
.y4a{bottom:366.788000pt;}
.y6b{bottom:367.108000pt;}
.y23{bottom:385.188000pt;}
.y6a{bottom:385.508000pt;}
.y22{bottom:403.588000pt;}
.y49{bottom:403.908000pt;}
.y21{bottom:421.988000pt;}
.y48{bottom:422.308000pt;}
.y20{bottom:440.388000pt;}
.y47{bottom:440.708000pt;}
.y1f{bottom:458.788000pt;}
.y46{bottom:459.108000pt;}
.y69{bottom:459.266667pt;}
.y1e{bottom:477.188000pt;}
.y45{bottom:477.506667pt;}
.y68{bottom:477.666667pt;}
.y1d{bottom:495.588000pt;}
.y44{bottom:495.908000pt;}
.y67{bottom:496.066667pt;}
.y1c{bottom:513.988000pt;}
.y43{bottom:514.308000pt;}
.y66{bottom:514.466667pt;}
.y1b{bottom:532.388000pt;}
.y65{bottom:532.866667pt;}
.y1a{bottom:550.788000pt;}
.y64{bottom:551.266667pt;}
.y63{bottom:569.666667pt;}
.y19{bottom:587.908000pt;}
.y42{bottom:588.388000pt;}
.y18{bottom:606.308000pt;}
.y41{bottom:606.788000pt;}
.y78{bottom:623.908000pt;}
.y17{bottom:624.706667pt;}
.y40{bottom:625.188000pt;}
.y77{bottom:642.308000pt;}
.y16{bottom:643.108000pt;}
.y3f{bottom:643.588000pt;}
.y3e{bottom:661.988000pt;}
.y76{bottom:679.266667pt;}
.y15{bottom:680.066667pt;}
.y3d{bottom:680.388000pt;}
.y14{bottom:698.466667pt;}
.y3c{bottom:698.788000pt;}
.y75{bottom:716.388000pt;}
.y13{bottom:716.866667pt;}
.y3b{bottom:717.188000pt;}
.y12{bottom:735.266667pt;}
.y3a{bottom:735.588000pt;}
.y62{bottom:735.906667pt;}
.y74{bottom:753.506667pt;}
.y11{bottom:753.666667pt;}
.y39{bottom:753.988000pt;}
.y61{bottom:754.308000pt;}
.y10{bottom:772.066667pt;}
.y38{bottom:772.388000pt;}
.y60{bottom:772.706667pt;}
.yf{bottom:790.466667pt;}
.y37{bottom:790.788000pt;}
.y5f{bottom:791.106667pt;}
.ye{bottom:808.866667pt;}
.y36{bottom:809.188000pt;}
.y5e{bottom:809.506667pt;}
.yd{bottom:827.266667pt;}
.y5d{bottom:827.906667pt;}
.yc{bottom:845.666667pt;}
.y73{bottom:845.988000pt;}
.y35{bottom:846.306667pt;}
.y72{bottom:864.388000pt;}
.y34{bottom:864.706667pt;}
.y5c{bottom:864.866667pt;}
.yb{bottom:882.788000pt;}
.y33{bottom:883.106667pt;}
.y5b{bottom:883.266667pt;}
.y32{bottom:901.506667pt;}
.y5a{bottom:901.666667pt;}
.ya{bottom:919.906667pt;}
.y59{bottom:920.066667pt;}
.y58{bottom:938.466667pt;}
.y9{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:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:148.000000pt;}
.x5{left:292.478667pt;}
.x3{left:414.066667pt;}
.x6{left:487.840000pt;}
.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; }
  