
    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_86e5fc60190d5dc570109c63.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_c7f359b84519b3a015b3db1a.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_8c620efc51c60912cde809c1.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_5d8e56e23611e2c28483403c.woff')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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fe492cdd202997f2a9167dcc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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;}
}
.ws2b{word-spacing:-55.944000px;}
.ws30{word-spacing:-38.872800px;}
.ws6b{word-spacing:-38.869800px;}
.ws66{word-spacing:-38.866800px;}
.ws7d{word-spacing:-38.863800px;}
.wsb{word-spacing:-38.801700px;}
.ws79{word-spacing:-38.666400px;}
.ws5e{word-spacing:-38.661000px;}
.ws6{word-spacing:-38.657700px;}
.ws76{word-spacing:-38.656200px;}
.ws15{word-spacing:-38.653200px;}
.ws61{word-spacing:-38.649600px;}
.ws5{word-spacing:-38.647800px;}
.ws67{word-spacing:-38.644500px;}
.ws12{word-spacing:-38.644200px;}
.ws59{word-spacing:-38.446800px;}
.ws6f{word-spacing:-38.440800px;}
.ws34{word-spacing:-38.439900px;}
.ws39{word-spacing:-38.436300px;}
.ws72{word-spacing:-38.435400px;}
.ws49{word-spacing:-38.434500px;}
.ws5a{word-spacing:-38.434200px;}
.ws3{word-spacing:-38.374200px;}
.ws1c{word-spacing:-38.304000px;}
.ws1d{word-spacing:-38.280000px;}
.ws46{word-spacing:-38.157300px;}
.ws57{word-spacing:-38.153400px;}
.ws48{word-spacing:-38.152800px;}
.ws41{word-spacing:-38.144700px;}
.ws42{word-spacing:-38.143800px;}
.ws47{word-spacing:-38.130300px;}
.ws9{word-spacing:-38.073600px;}
.ws0{word-spacing:-37.944000px;}
.ws27{word-spacing:-37.942200px;}
.ws84{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws45{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.wsa{word-spacing:-37.927200px;}
.ws62{word-spacing:-37.926900px;}
.ws4d{word-spacing:-37.722600px;}
.ws2a{word-spacing:-37.719000px;}
.ws50{word-spacing:-37.717200px;}
.ws85{word-spacing:-37.425600px;}
.ws63{word-spacing:-37.225500px;}
.ws18{word-spacing:-36.127800px;}
.ws51{word-spacing:-36.000000px;}
.ws44{word-spacing:-35.790000px;}
.ws31{word-spacing:-35.064000px;}
.ws3c{word-spacing:-35.062200px;}
.ws24{word-spacing:-35.033400px;}
.ws4a{word-spacing:-34.837200px;}
.ws3e{word-spacing:-34.830000px;}
.ws7b{word-spacing:-34.560000px;}
.ws36{word-spacing:-34.336800px;}
.ws11{word-spacing:-34.333200px;}
.ws37{word-spacing:-34.325100px;}
.wse{word-spacing:-33.607800px;}
.ws8{word-spacing:-33.547800px;}
.ws10{word-spacing:-33.120000px;}
.ws23{word-spacing:-32.904000px;}
.ws65{word-spacing:-32.400000px;}
.ws81{word-spacing:-32.182200px;}
.ws82{word-spacing:-32.175900px;}
.ws4c{word-spacing:-32.171400px;}
.ws52{word-spacing:-31.676400px;}
.ws5c{word-spacing:-31.470000px;}
.ws26{word-spacing:-31.456500px;}
.ws4e{word-spacing:-31.240800px;}
.ws5b{word-spacing:-30.958200px;}
.ws1a{word-spacing:-30.941400px;}
.ws83{word-spacing:-30.744000px;}
.ws7e{word-spacing:-30.741300px;}
.ws7f{word-spacing:-30.720600px;}
.ws80{word-spacing:-30.518100px;}
.ws71{word-spacing:-30.233400px;}
.ws38{word-spacing:-30.018600px;}
.ws56{word-spacing:-30.007800px;}
.ws3d{word-spacing:-29.520000px;}
.ws3b{word-spacing:-29.074200px;}
.ws2d{word-spacing:-28.781100px;}
.ws6c{word-spacing:-28.573200px;}
.ws22{word-spacing:-28.080000px;}
.ws25{word-spacing:-27.858600px;}
.ws4f{word-spacing:-27.856500px;}
.ws32{word-spacing:-27.849600px;}
.ws78{word-spacing:-27.640800px;}
.ws1b{word-spacing:-27.144000px;}
.ws55{word-spacing:-26.636400px;}
.ws2f{word-spacing:-26.411400px;}
.ws7c{word-spacing:-25.693200px;}
.ws7a{word-spacing:-25.689600px;}
.ws54{word-spacing:-24.255600px;}
.ws68{word-spacing:-24.249600px;}
.ws70{word-spacing:-23.544600px;}
.ws73{word-spacing:-23.544000px;}
.ws74{word-spacing:-23.042400px;}
.ws35{word-spacing:-22.601700px;}
.ws33{word-spacing:-21.862200px;}
.ws40{word-spacing:-21.390000px;}
.ws5d{word-spacing:-21.373200px;}
.ws5f{word-spacing:-21.371400px;}
.ws6e{word-spacing:-20.658000px;}
.ws28{word-spacing:-20.147400px;}
.ws29{word-spacing:-20.085300px;}
.ws43{word-spacing:-19.939200px;}
.ws6d{word-spacing:-19.206000px;}
.wsd{word-spacing:-18.990900px;}
.wsc{word-spacing:-18.701100px;}
.ws69{word-spacing:-18.504600px;}
.ws7{word-spacing:-18.472500px;}
.ws21{word-spacing:-18.000000px;}
.ws2e{word-spacing:-17.770800px;}
.ws20{word-spacing:-17.263800px;}
.ws3a{word-spacing:-17.055600px;}
.ws14{word-spacing:-16.333200px;}
.wsf{word-spacing:-16.327800px;}
.ws13{word-spacing:-15.831900px;}
.ws60{word-spacing:-15.618600px;}
.ws2c{word-spacing:-13.453200px;}
.ws19{word-spacing:-13.097700px;}
.ws77{word-spacing:-11.801700px;}
.ws64{word-spacing:-11.301300px;}
.ws58{word-spacing:-10.584000px;}
.ws17{word-spacing:-8.837100px;}
.ws16{word-spacing:-8.640000px;}
.ws4b{word-spacing:-6.970500px;}
.ws6a{word-spacing:-4.803300px;}
.ws75{word-spacing:-3.378600px;}
.ws53{word-spacing:-3.160800px;}
.ws3f{word-spacing:-2.155200px;}
.ws1f{word-spacing:14.616000px;}
.ws1e{word-spacing:15.840000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1e{width:17.568000px;}
._4{width:18.775800px;}
._16{width:19.842600px;}
._a{width:21.290400px;}
._8{width:22.653600px;}
._6{width:23.788800px;}
._e{width:24.876000px;}
._f{width:26.101800px;}
._b{width:27.119400px;}
._11{width:28.275000px;}
._d{width:29.520000px;}
._13{width:30.666000px;}
._14{width:31.823400px;}
._1a{width:33.186000px;}
._15{width:34.691400px;}
._1{width:36.000000px;}
._18{width:37.446000px;}
._5{width:38.628000px;}
._12{width:39.770400px;}
._7{width:41.179200px;}
._1d{width:42.528000px;}
._10{width:43.610400px;}
._1f{width:45.322500px;}
._1c{width:46.440000px;}
._1b{width:47.536800px;}
._9{width:48.704100px;}
._19{width:50.661000px;}
._17{width:54.854400px;}
._c{width:72.000000px;}
._20{width:126.000000px;}
._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;}
.y5f{bottom:4.950000px;}
.y45{bottom:5.011500px;}
.y63{bottom:5.025000px;}
.y4b{bottom:5.086500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y79{bottom:120.675000px;}
.y68{bottom:120.855000px;}
.y4e{bottom:133.275000px;}
.y78{bottom:141.375000px;}
.y2b{bottom:141.736500px;}
.y4d{bottom:153.975000px;}
.y77{bottom:162.075000px;}
.y2a{bottom:162.436500px;}
.y67{bottom:162.615000px;}
.y76{bottom:182.775000px;}
.y29{bottom:183.136500px;}
.y66{bottom:183.315000px;}
.y4c{bottom:195.555000px;}
.y75{bottom:203.475000px;}
.y28{bottom:203.836500px;}
.y65{bottom:204.015000px;}
.y74{bottom:224.175000px;}
.y27{bottom:224.536500px;}
.y4a{bottom:235.650000px;}
.y73{bottom:244.875000px;}
.y64{bottom:245.775000px;}
.y49{bottom:260.925000px;}
.y72{bottom:265.575000px;}
.y26{bottom:266.295000px;}
.y62{bottom:285.750000px;}
.y48{bottom:286.125000px;}
.y71{bottom:307.336500px;}
.y25{bottom:307.875000px;}
.y61{bottom:311.025000px;}
.y47{bottom:311.325000px;}
.y24{bottom:328.575000px;}
.y60{bottom:336.225000px;}
.y46{bottom:336.525000px;}
.y70{bottom:349.096500px;}
.y5e{bottom:361.425000px;}
.y44{bottom:361.725000px;}
.y6f{bottom:369.795000px;}
.y23{bottom:370.336500px;}
.y22{bottom:391.036500px;}
.y5d{bottom:411.375000px;}
.y21{bottom:411.736500px;}
.y6e{bottom:432.075000px;}
.y20{bottom:432.436500px;}
.y6d{bottom:452.775000px;}
.y1f{bottom:453.136500px;}
.y43{bottom:453.496500px;}
.y1e{bottom:473.836500px;}
.y42{bottom:474.196500px;}
.y1d{bottom:494.536500px;}
.y41{bottom:494.896500px;}
.y6c{bottom:515.236500px;}
.y6b{bottom:535.936500px;}
.y1c{bottom:536.296500px;}
.y40{bottom:536.475000px;}
.y1b{bottom:556.996500px;}
.y5c{bottom:577.695000px;}
.y3f{bottom:578.236500px;}
.y5b{bottom:598.396500px;}
.y1a{bottom:598.575000px;}
.y3e{bottom:598.936500px;}
.y19{bottom:619.275000px;}
.y3d{bottom:619.636500px;}
.y18{bottom:639.975000px;}
.y3c{bottom:640.336500px;}
.y17{bottom:660.675000px;}
.y16{bottom:681.375000px;}
.y5a{bottom:681.736500px;}
.y3b{bottom:682.096500px;}
.y15{bottom:702.075000px;}
.y59{bottom:702.436500px;}
.y3a{bottom:702.795000px;}
.y14{bottom:722.775000px;}
.y6a{bottom:723.136500px;}
.y39{bottom:723.496500px;}
.y38{bottom:744.195000px;}
.y13{bottom:764.536500px;}
.y37{bottom:764.895000px;}
.y12{bottom:785.236500px;}
.y58{bottom:785.596500px;}
.y57{bottom:806.295000px;}
.y36{bottom:806.475000px;}
.y11{bottom:826.996500px;}
.y10{bottom:847.695000px;}
.y56{bottom:847.875000px;}
.y35{bottom:848.236500px;}
.yf{bottom:868.395000px;}
.y55{bottom:868.575000px;}
.y34{bottom:868.936500px;}
.ye{bottom:889.095000px;}
.y54{bottom:889.275000px;}
.y33{bottom:889.636500px;}
.yd{bottom:909.795000px;}
.y53{bottom:909.975000px;}
.y32{bottom:910.336500px;}
.yc{bottom:930.495000px;}
.y31{bottom:931.036500px;}
.y52{bottom:951.736500px;}
.y69{bottom:952.095000px;}
.yb{bottom:972.075000px;}
.y30{bottom:972.795000px;}
.y51{bottom:993.495000px;}
.ya{bottom:1013.836500px;}
.y50{bottom:1014.195000px;}
.y2f{bottom:1014.375000px;}
.y4f{bottom:1034.895000px;}
.y2e{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y2d{bottom:1055.775000px;}
.y2c{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h7{height:22.875000px;}
.h8{height:22.950000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h2{height:48.972656px;}
.h9{height:49.992188px;}
.h6{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w3{width:38.325000px;}
.w8{width:63.375000px;}
.w6{width:181.875000px;}
.w4{width:186.825000px;}
.w5{width:237.825000px;}
.w7{width:334.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.170000px;}
.x8{left:126.450000px;}
.x1{left:127.620000px;}
.xa{left:166.950000px;}
.x4{left:217.080000px;}
.x6{left:304.020000px;}
.x7{left:306.538500px;}
.xb{left:355.950000px;}
.xd{left:463.350000px;}
.x3{left:465.825000px;}
.xe{left:528.900000px;}
.x5{left:591.838500px;}
.xf{left:594.450000px;}
.xc{left:595.950000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2b{word-spacing:-49.728000pt;}
.ws30{word-spacing:-34.553600pt;}
.ws6b{word-spacing:-34.550933pt;}
.ws66{word-spacing:-34.548267pt;}
.ws7d{word-spacing:-34.545600pt;}
.wsb{word-spacing:-34.490400pt;}
.ws79{word-spacing:-34.370133pt;}
.ws5e{word-spacing:-34.365333pt;}
.ws6{word-spacing:-34.362400pt;}
.ws76{word-spacing:-34.361067pt;}
.ws15{word-spacing:-34.358400pt;}
.ws61{word-spacing:-34.355200pt;}
.ws5{word-spacing:-34.353600pt;}
.ws67{word-spacing:-34.350667pt;}
.ws12{word-spacing:-34.350400pt;}
.ws59{word-spacing:-34.174933pt;}
.ws6f{word-spacing:-34.169600pt;}
.ws34{word-spacing:-34.168800pt;}
.ws39{word-spacing:-34.165600pt;}
.ws72{word-spacing:-34.164800pt;}
.ws49{word-spacing:-34.164000pt;}
.ws5a{word-spacing:-34.163733pt;}
.ws3{word-spacing:-34.110400pt;}
.ws1c{word-spacing:-34.048000pt;}
.ws1d{word-spacing:-34.026667pt;}
.ws46{word-spacing:-33.917600pt;}
.ws57{word-spacing:-33.914133pt;}
.ws48{word-spacing:-33.913600pt;}
.ws41{word-spacing:-33.906400pt;}
.ws42{word-spacing:-33.905600pt;}
.ws47{word-spacing:-33.893600pt;}
.ws9{word-spacing:-33.843200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws27{word-spacing:-33.726400pt;}
.ws84{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws45{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.wsa{word-spacing:-33.713067pt;}
.ws62{word-spacing:-33.712800pt;}
.ws4d{word-spacing:-33.531200pt;}
.ws2a{word-spacing:-33.528000pt;}
.ws50{word-spacing:-33.526400pt;}
.ws85{word-spacing:-33.267200pt;}
.ws63{word-spacing:-33.089333pt;}
.ws18{word-spacing:-32.113600pt;}
.ws51{word-spacing:-32.000000pt;}
.ws44{word-spacing:-31.813333pt;}
.ws31{word-spacing:-31.168000pt;}
.ws3c{word-spacing:-31.166400pt;}
.ws24{word-spacing:-31.140800pt;}
.ws4a{word-spacing:-30.966400pt;}
.ws3e{word-spacing:-30.960000pt;}
.ws7b{word-spacing:-30.720000pt;}
.ws36{word-spacing:-30.521600pt;}
.ws11{word-spacing:-30.518400pt;}
.ws37{word-spacing:-30.511200pt;}
.wse{word-spacing:-29.873600pt;}
.ws8{word-spacing:-29.820267pt;}
.ws10{word-spacing:-29.440000pt;}
.ws23{word-spacing:-29.248000pt;}
.ws65{word-spacing:-28.800000pt;}
.ws81{word-spacing:-28.606400pt;}
.ws82{word-spacing:-28.600800pt;}
.ws4c{word-spacing:-28.596800pt;}
.ws52{word-spacing:-28.156800pt;}
.ws5c{word-spacing:-27.973333pt;}
.ws26{word-spacing:-27.961333pt;}
.ws4e{word-spacing:-27.769600pt;}
.ws5b{word-spacing:-27.518400pt;}
.ws1a{word-spacing:-27.503467pt;}
.ws83{word-spacing:-27.328000pt;}
.ws7e{word-spacing:-27.325600pt;}
.ws7f{word-spacing:-27.307200pt;}
.ws80{word-spacing:-27.127200pt;}
.ws71{word-spacing:-26.874133pt;}
.ws38{word-spacing:-26.683200pt;}
.ws56{word-spacing:-26.673600pt;}
.ws3d{word-spacing:-26.240000pt;}
.ws3b{word-spacing:-25.843733pt;}
.ws2d{word-spacing:-25.583200pt;}
.ws6c{word-spacing:-25.398400pt;}
.ws22{word-spacing:-24.960000pt;}
.ws25{word-spacing:-24.763200pt;}
.ws4f{word-spacing:-24.761333pt;}
.ws32{word-spacing:-24.755200pt;}
.ws78{word-spacing:-24.569600pt;}
.ws1b{word-spacing:-24.128000pt;}
.ws55{word-spacing:-23.676800pt;}
.ws2f{word-spacing:-23.476800pt;}
.ws7c{word-spacing:-22.838400pt;}
.ws7a{word-spacing:-22.835200pt;}
.ws54{word-spacing:-21.560533pt;}
.ws68{word-spacing:-21.555200pt;}
.ws70{word-spacing:-20.928533pt;}
.ws73{word-spacing:-20.928000pt;}
.ws74{word-spacing:-20.482133pt;}
.ws35{word-spacing:-20.090400pt;}
.ws33{word-spacing:-19.433067pt;}
.ws40{word-spacing:-19.013333pt;}
.ws5d{word-spacing:-18.998400pt;}
.ws5f{word-spacing:-18.996800pt;}
.ws6e{word-spacing:-18.362667pt;}
.ws28{word-spacing:-17.908800pt;}
.ws29{word-spacing:-17.853600pt;}
.ws43{word-spacing:-17.723733pt;}
.ws6d{word-spacing:-17.072000pt;}
.wsd{word-spacing:-16.880800pt;}
.wsc{word-spacing:-16.623200pt;}
.ws69{word-spacing:-16.448533pt;}
.ws7{word-spacing:-16.420000pt;}
.ws21{word-spacing:-16.000000pt;}
.ws2e{word-spacing:-15.796267pt;}
.ws20{word-spacing:-15.345600pt;}
.ws3a{word-spacing:-15.160533pt;}
.ws14{word-spacing:-14.518400pt;}
.wsf{word-spacing:-14.513600pt;}
.ws13{word-spacing:-14.072800pt;}
.ws60{word-spacing:-13.883200pt;}
.ws2c{word-spacing:-11.958400pt;}
.ws19{word-spacing:-11.642400pt;}
.ws77{word-spacing:-10.490400pt;}
.ws64{word-spacing:-10.045600pt;}
.ws58{word-spacing:-9.408000pt;}
.ws17{word-spacing:-7.855200pt;}
.ws16{word-spacing:-7.680000pt;}
.ws4b{word-spacing:-6.196000pt;}
.ws6a{word-spacing:-4.269600pt;}
.ws75{word-spacing:-3.003200pt;}
.ws53{word-spacing:-2.809600pt;}
.ws3f{word-spacing:-1.915733pt;}
.ws1f{word-spacing:12.992000pt;}
.ws1e{word-spacing:14.080000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1e{width:15.616000pt;}
._4{width:16.689600pt;}
._16{width:17.637867pt;}
._a{width:18.924800pt;}
._8{width:20.136533pt;}
._6{width:21.145600pt;}
._e{width:22.112000pt;}
._f{width:23.201600pt;}
._b{width:24.106133pt;}
._11{width:25.133333pt;}
._d{width:26.240000pt;}
._13{width:27.258667pt;}
._14{width:28.287467pt;}
._1a{width:29.498667pt;}
._15{width:30.836800pt;}
._1{width:32.000000pt;}
._18{width:33.285333pt;}
._5{width:34.336000pt;}
._12{width:35.351467pt;}
._7{width:36.603733pt;}
._1d{width:37.802667pt;}
._10{width:38.764800pt;}
._1f{width:40.286667pt;}
._1c{width:41.280000pt;}
._1b{width:42.254933pt;}
._9{width:43.292533pt;}
._19{width:45.032000pt;}
._17{width:48.759467pt;}
._c{width:64.000000pt;}
._20{width:112.000000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y5f{bottom:4.400000pt;}
.y45{bottom:4.454667pt;}
.y63{bottom:4.466667pt;}
.y4b{bottom:4.521333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y79{bottom:107.266667pt;}
.y68{bottom:107.426667pt;}
.y4e{bottom:118.466667pt;}
.y78{bottom:125.666667pt;}
.y2b{bottom:125.988000pt;}
.y4d{bottom:136.866667pt;}
.y77{bottom:144.066667pt;}
.y2a{bottom:144.388000pt;}
.y67{bottom:144.546667pt;}
.y76{bottom:162.466667pt;}
.y29{bottom:162.788000pt;}
.y66{bottom:162.946667pt;}
.y4c{bottom:173.826667pt;}
.y75{bottom:180.866667pt;}
.y28{bottom:181.188000pt;}
.y65{bottom:181.346667pt;}
.y74{bottom:199.266667pt;}
.y27{bottom:199.588000pt;}
.y4a{bottom:209.466667pt;}
.y73{bottom:217.666667pt;}
.y64{bottom:218.466667pt;}
.y49{bottom:231.933333pt;}
.y72{bottom:236.066667pt;}
.y26{bottom:236.706667pt;}
.y62{bottom:254.000000pt;}
.y48{bottom:254.333333pt;}
.y71{bottom:273.188000pt;}
.y25{bottom:273.666667pt;}
.y61{bottom:276.466667pt;}
.y47{bottom:276.733333pt;}
.y24{bottom:292.066667pt;}
.y60{bottom:298.866667pt;}
.y46{bottom:299.133333pt;}
.y70{bottom:310.308000pt;}
.y5e{bottom:321.266667pt;}
.y44{bottom:321.533333pt;}
.y6f{bottom:328.706667pt;}
.y23{bottom:329.188000pt;}
.y22{bottom:347.588000pt;}
.y5d{bottom:365.666667pt;}
.y21{bottom:365.988000pt;}
.y6e{bottom:384.066667pt;}
.y20{bottom:384.388000pt;}
.y6d{bottom:402.466667pt;}
.y1f{bottom:402.788000pt;}
.y43{bottom:403.108000pt;}
.y1e{bottom:421.188000pt;}
.y42{bottom:421.508000pt;}
.y1d{bottom:439.588000pt;}
.y41{bottom:439.908000pt;}
.y6c{bottom:457.988000pt;}
.y6b{bottom:476.388000pt;}
.y1c{bottom:476.708000pt;}
.y40{bottom:476.866667pt;}
.y1b{bottom:495.108000pt;}
.y5c{bottom:513.506667pt;}
.y3f{bottom:513.988000pt;}
.y5b{bottom:531.908000pt;}
.y1a{bottom:532.066667pt;}
.y3e{bottom:532.388000pt;}
.y19{bottom:550.466667pt;}
.y3d{bottom:550.788000pt;}
.y18{bottom:568.866667pt;}
.y3c{bottom:569.188000pt;}
.y17{bottom:587.266667pt;}
.y16{bottom:605.666667pt;}
.y5a{bottom:605.988000pt;}
.y3b{bottom:606.308000pt;}
.y15{bottom:624.066667pt;}
.y59{bottom:624.388000pt;}
.y3a{bottom:624.706667pt;}
.y14{bottom:642.466667pt;}
.y6a{bottom:642.788000pt;}
.y39{bottom:643.108000pt;}
.y38{bottom:661.506667pt;}
.y13{bottom:679.588000pt;}
.y37{bottom:679.906667pt;}
.y12{bottom:697.988000pt;}
.y58{bottom:698.308000pt;}
.y57{bottom:716.706667pt;}
.y36{bottom:716.866667pt;}
.y11{bottom:735.108000pt;}
.y10{bottom:753.506667pt;}
.y56{bottom:753.666667pt;}
.y35{bottom:753.988000pt;}
.yf{bottom:771.906667pt;}
.y55{bottom:772.066667pt;}
.y34{bottom:772.388000pt;}
.ye{bottom:790.306667pt;}
.y54{bottom:790.466667pt;}
.y33{bottom:790.788000pt;}
.yd{bottom:808.706667pt;}
.y53{bottom:808.866667pt;}
.y32{bottom:809.188000pt;}
.yc{bottom:827.106667pt;}
.y31{bottom:827.588000pt;}
.y52{bottom:845.988000pt;}
.y69{bottom:846.306667pt;}
.yb{bottom:864.066667pt;}
.y30{bottom:864.706667pt;}
.y51{bottom:883.106667pt;}
.ya{bottom:901.188000pt;}
.y50{bottom:901.506667pt;}
.y2f{bottom:901.666667pt;}
.y4f{bottom:919.906667pt;}
.y2e{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y2d{bottom:938.466667pt;}
.y2c{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h7{height:20.333333pt;}
.h8{height:20.400000pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h2{height:43.531250pt;}
.h9{height:44.437500pt;}
.h6{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w3{width:34.066667pt;}
.w8{width:56.333333pt;}
.w6{width:161.666667pt;}
.w4{width:166.066667pt;}
.w5{width:211.400000pt;}
.w7{width:297.533333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.040000pt;}
.x8{left:112.400000pt;}
.x1{left:113.440000pt;}
.xa{left:148.400000pt;}
.x4{left:192.960000pt;}
.x6{left:270.240000pt;}
.x7{left:272.478667pt;}
.xb{left:316.400000pt;}
.xd{left:411.866667pt;}
.x3{left:414.066667pt;}
.xe{left:470.133333pt;}
.x5{left:526.078667pt;}
.xf{left:528.400000pt;}
.xc{left:529.733333pt;}
.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; }
  