
    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_18d1b3f176e9db0398c25aaf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_9b6d158e7a8f4f5b329b7494.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_e8126a42c42719e11939567f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_b2a043eb9e35525843bd699b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_35c608390eb3b02a23ca4f43.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-36.000000px;}
.v2{vertical-align:-30.240000px;}
.v5{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:21.600000px;}
.v1{vertical-align:30.240000px;}
.v4{vertical-align:36.000000px;}
.ls10{letter-spacing:-2.880000px;}
.ls1b{letter-spacing:-1.908000px;}
.ls17{letter-spacing:-1.458000px;}
.ls8{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.422000px;}
.ls1c{letter-spacing:-1.104000px;}
.ls12{letter-spacing:-0.972000px;}
.ls11{letter-spacing:-0.954000px;}
.lse{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.507000px;}
.ls9{letter-spacing:-0.466800px;}
.ls7{letter-spacing:-0.305400px;}
.ls1f{letter-spacing:-0.020160px;}
.ls6{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls19{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.115200px;}
.ls1e{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.486600px;}
.ls16{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls18{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.464000px;}
.ls1a{letter-spacing:1.908000px;}
.ls21{letter-spacing:2.136000px;}
.ls1{letter-spacing:2.160000px;}
.ls2{letter-spacing:3.600000px;}
.ls13{letter-spacing:5.040000px;}
.ls1d{letter-spacing:6.480000px;}
.ls15{letter-spacing:9.360000px;}
.ls14{letter-spacing:9.540000px;}
.ls23{letter-spacing:16.306560px;}
.ls22{letter-spacing:46.522560px;}
.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;}
}
.ws1{word-spacing:-20.904000px;}
.ws0{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.422720px;}
.ws15{word-spacing:-17.028000px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.254600px;}
.ws11{word-spacing:-15.627000px;}
.wsb{word-spacing:-15.606600px;}
.wsf{word-spacing:-15.586800px;}
.ws14{word-spacing:-15.140160px;}
.ws7{word-spacing:-15.120000px;}
.ws17{word-spacing:-15.099840px;}
.ws8{word-spacing:-14.653200px;}
.ws18{word-spacing:-14.613000px;}
.wsa{word-spacing:-14.184000px;}
.wsd{word-spacing:-14.166000px;}
.wse{word-spacing:-14.148000px;}
.ws9{word-spacing:-13.698000px;}
.ws6{word-spacing:-13.680000px;}
.ws12{word-spacing:-13.662000px;}
.ws16{word-spacing:-13.212000px;}
.wsc{word-spacing:-12.240000px;}
.ws4{word-spacing:-11.160000px;}
.ws13{word-spacing:-9.720000px;}
.ws10{word-spacing:0.000000px;}
._f{margin-left:-5.812800px;}
._9{margin-left:-4.598400px;}
._5{margin-left:-3.594720px;}
._0{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.016000px;}
._7{width:3.076800px;}
._8{width:4.201440px;}
._a{width:5.936640px;}
._b{width:7.779840px;}
._e{width:8.879760px;}
._d{width:10.164240px;}
._c{width:11.988480px;}
._6{width:13.712880px;}
._3{width:1336.056000px;}
.fc5{color:rgb(238,0,0);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:5.400000px;}
.y5b{bottom:5.760000px;}
.y77{bottom:5.790000px;}
.y66{bottom:6.480000px;}
.y81{bottom:7.920000px;}
.y5d{bottom:16.920000px;}
.y75{bottom:16.950000px;}
.y72{bottom:17.280000px;}
.y64{bottom:17.640000px;}
.y6{bottom:57.276000px;}
.y5{bottom:77.796000px;}
.y4d{bottom:115.992000px;}
.y7a{bottom:116.352000px;}
.y8a{bottom:119.232000px;}
.y59{bottom:128.232000px;}
.y1d{bottom:132.552000px;}
.y89{bottom:133.632000px;}
.ya5{bottom:136.152000px;}
.y35{bottom:141.912000px;}
.y79{bottom:142.272000px;}
.y58{bottom:154.515000px;}
.y88{bottom:155.955000px;}
.y1c{bottom:158.475000px;}
.ya4{bottom:161.715000px;}
.y34{bottom:167.835000px;}
.y78{bottom:168.195000px;}
.y87{bottom:178.275000px;}
.y57{bottom:180.435000px;}
.y74{bottom:182.595000px;}
.y1b{bottom:184.035000px;}
.ya3{bottom:187.665000px;}
.y4c{bottom:193.425000px;}
.y33{bottom:193.785000px;}
.y86{bottom:200.625000px;}
.y76{bottom:204.945000px;}
.y56{bottom:206.025000px;}
.y1a{bottom:209.985000px;}
.ya2{bottom:213.225000px;}
.y4b{bottom:219.345000px;}
.y32{bottom:219.705000px;}
.y85{bottom:222.945000px;}
.y71{bottom:227.265000px;}
.y55{bottom:232.665000px;}
.y19{bottom:235.905000px;}
.ya1{bottom:240.225000px;}
.y84{bottom:245.265000px;}
.y31{bottom:245.625000px;}
.y4a{bottom:246.705000px;}
.y73{bottom:249.945000px;}
.y54{bottom:260.385000px;}
.y18{bottom:262.545000px;}
.y83{bottom:267.585000px;}
.y30{bottom:271.545000px;}
.y3d{bottom:272.265000px;}
.y49{bottom:274.065000px;}
.y53{bottom:286.350000px;}
.y82{bottom:289.950000px;}
.y17{bottom:290.310000px;}
.ya0{bottom:293.910000px;}
.y6f{bottom:294.630000px;}
.y2f{bottom:297.150000px;}
.y3c{bottom:300.030000px;}
.y52{bottom:312.270000px;}
.y16{bottom:316.230000px;}
.y9f{bottom:319.830000px;}
.y2e{bottom:323.070000px;}
.y3b{bottom:325.950000px;}
.y6e{bottom:329.190000px;}
.y80{bottom:334.590000px;}
.y51{bottom:337.830000px;}
.y15{bottom:345.750000px;}
.y2d{bottom:348.990000px;}
.y3a{bottom:351.510000px;}
.y6d{bottom:355.110000px;}
.y7f{bottom:356.910000px;}
.y50{bottom:364.110000px;}
.y14{bottom:371.670000px;}
.y9e{bottom:372.390000px;}
.y2c{bottom:374.910000px;}
.y39{bottom:377.460000px;}
.y7e{bottom:379.620000px;}
.y6c{bottom:380.700000px;}
.y4f{bottom:390.060000px;}
.y13{bottom:397.620000px;}
.y9d{bottom:400.140000px;}
.y2b{bottom:400.860000px;}
.y7d{bottom:401.940000px;}
.y38{bottom:403.380000px;}
.y6b{bottom:406.620000px;}
.y4e{bottom:415.620000px;}
.y12{bottom:423.540000px;}
.y7c{bottom:424.260000px;}
.y9c{bottom:426.060000px;}
.y2a{bottom:426.780000px;}
.y37{bottom:429.300000px;}
.y6a{bottom:432.540000px;}
.y7b{bottom:446.580000px;}
.y11{bottom:449.460000px;}
.y9b{bottom:451.620000px;}
.y96{bottom:452.700000px;}
.y29{bottom:453.420000px;}
.y48{bottom:454.860000px;}
.y36{bottom:455.220000px;}
.y69{bottom:458.460000px;}
.y10{bottom:475.410000px;}
.y9a{bottom:477.570000px;}
.y95{bottom:478.650000px;}
.y47{bottom:480.810000px;}
.y28{bottom:481.170000px;}
.y68{bottom:484.050000px;}
.y99{bottom:503.490000px;}
.y94{bottom:504.210000px;}
.ya6{bottom:505.290000px;}
.y46{bottom:506.730000px;}
.y27{bottom:507.090000px;}
.y67{bottom:509.970000px;}
.yf{bottom:513.570000px;}
.y63{bottom:524.730000px;}
.y93{bottom:530.130000px;}
.y45{bottom:532.290000px;}
.y26{bottom:532.650000px;}
.ye{bottom:539.850000px;}
.y65{bottom:547.050000px;}
.y92{bottom:556.050000px;}
.y98{bottom:557.130000px;}
.y44{bottom:558.210000px;}
.y25{bottom:558.570000px;}
.yd{bottom:569.415000px;}
.y61{bottom:571.215000px;}
.y91{bottom:582.015000px;}
.y97{bottom:583.455000px;}
.y43{bottom:584.175000px;}
.y24{bottom:584.535000px;}
.yc{bottom:590.295000px;}
.y62{bottom:593.535000px;}
.y90{bottom:607.935000px;}
.y42{bottom:610.095000px;}
.y23{bottom:610.455000px;}
.y5f{bottom:615.855000px;}
.yb{bottom:628.815000px;}
.y8f{bottom:633.855000px;}
.y41{bottom:636.015000px;}
.y22{bottom:636.375000px;}
.y60{bottom:638.175000px;}
.ya{bottom:650.055000px;}
.y8e{bottom:659.805000px;}
.y5c{bottom:660.525000px;}
.y40{bottom:661.965000px;}
.y21{bottom:662.325000px;}
.y9{bottom:678.525000px;}
.y5e{bottom:682.845000px;}
.y8d{bottom:685.365000px;}
.y3f{bottom:687.885000px;}
.y20{bottom:688.245000px;}
.y5a{bottom:705.165000px;}
.y8{bottom:705.885000px;}
.y8c{bottom:712.365000px;}
.y3e{bottom:713.805000px;}
.y1f{bottom:714.165000px;}
.y7{bottom:735.405000px;}
.y8b{bottom:739.365000px;}
.y1e{bottom:739.725000px;}
.y4{bottom:758.130000px;}
.y3{bottom:778.650000px;}
.y2{bottom:800.610000px;}
.y1{bottom:823.290000px;}
.he{height:21.600000px;}
.h11{height:21.636000px;}
.h13{height:23.436000px;}
.h7{height:38.158594px;}
.hf{height:43.920000px;}
.h10{height:43.956000px;}
.h14{height:44.280000px;}
.h12{height:45.756000px;}
.h9{height:59.357813px;}
.hb{height:59.758594px;}
.h5{height:60.952500px;}
.h15{height:62.163910px;}
.hc{height:65.010937px;}
.ha{height:66.757500px;}
.hd{height:68.084282px;}
.h3{height:70.664062px;}
.h6{height:72.326250px;}
.h2{height:72.562500px;}
.h8{height:74.158594px;}
.h4{height:78.367500px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.wf{width:30.600000px;}
.w9{width:37.116000px;}
.wb{width:80.676000px;}
.wc{width:84.996000px;}
.w6{width:101.916000px;}
.w4{width:113.796000px;}
.w5{width:140.076000px;}
.w7{width:154.830000px;}
.wd{width:158.430000px;}
.we{width:158.475000px;}
.w8{width:177.150000px;}
.wa{width:203.070000px;}
.w3{width:208.470000px;}
.w2{width:1262.879981px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:8.280000px;}
.xb{left:27.750000px;}
.x10{left:34.245000px;}
.xf{left:59.070000px;}
.x9{left:76.320000px;}
.x1{left:108.035981px;}
.x2{left:119.195981px;}
.x3{left:135.035981px;}
.x5{left:162.029981px;}
.x6{left:173.909981px;}
.x7{left:189.074981px;}
.x15{left:285.555000px;}
.x11{left:344.985000px;}
.x8{left:348.945000px;}
.x16{left:366.585000px;}
.x12{left:500.190000px;}
.x17{left:544.110000px;}
.xa{left:557.790000px;}
.x18{left:629.460000px;}
.xc{left:671.940000px;}
.x13{left:677.700000px;}
.x14{left:715.170000px;}
.x4{left:752.969981px;}
.x19{left:788.250000px;}
.xe{left:812.370000px;}
.x1a{left:947.085000px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v2{vertical-align:-26.880000pt;}
.v5{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:19.200000pt;}
.v1{vertical-align:26.880000pt;}
.v4{vertical-align:32.000000pt;}
.ls10{letter-spacing:-2.560000pt;}
.ls1b{letter-spacing:-1.696000pt;}
.ls17{letter-spacing:-1.296000pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.264000pt;}
.ls1c{letter-spacing:-0.981333pt;}
.ls12{letter-spacing:-0.864000pt;}
.ls11{letter-spacing:-0.848000pt;}
.lse{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.450667pt;}
.ls9{letter-spacing:-0.414933pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls1f{letter-spacing:-0.017920pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls19{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.102400pt;}
.ls1e{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.432533pt;}
.ls16{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.301333pt;}
.ls1a{letter-spacing:1.696000pt;}
.ls21{letter-spacing:1.898667pt;}
.ls1{letter-spacing:1.920000pt;}
.ls2{letter-spacing:3.200000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls15{letter-spacing:8.320000pt;}
.ls14{letter-spacing:8.480000pt;}
.ls23{letter-spacing:14.494720pt;}
.ls22{letter-spacing:41.353387pt;}
.ws1{word-spacing:-18.581333pt;}
.ws0{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.264640pt;}
.ws15{word-spacing:-15.136000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws11{word-spacing:-13.890667pt;}
.wsb{word-spacing:-13.872533pt;}
.wsf{word-spacing:-13.854933pt;}
.ws14{word-spacing:-13.457920pt;}
.ws7{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.422080pt;}
.ws8{word-spacing:-13.025067pt;}
.ws18{word-spacing:-12.989333pt;}
.wsa{word-spacing:-12.608000pt;}
.wsd{word-spacing:-12.592000pt;}
.wse{word-spacing:-12.576000pt;}
.ws9{word-spacing:-12.176000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws12{word-spacing:-12.144000pt;}
.ws16{word-spacing:-11.744000pt;}
.wsc{word-spacing:-10.880000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws13{word-spacing:-8.640000pt;}
.ws10{word-spacing:0.000000pt;}
._f{margin-left:-5.166933pt;}
._9{margin-left:-4.087467pt;}
._5{margin-left:-3.195307pt;}
._0{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:1.792000pt;}
._7{width:2.734933pt;}
._8{width:3.734613pt;}
._a{width:5.277013pt;}
._b{width:6.915413pt;}
._e{width:7.893120pt;}
._d{width:9.034880pt;}
._c{width:10.656427pt;}
._6{width:12.189227pt;}
._3{width:1187.605333pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:4.800000pt;}
.y5b{bottom:5.120000pt;}
.y77{bottom:5.146667pt;}
.y66{bottom:5.760000pt;}
.y81{bottom:7.040000pt;}
.y5d{bottom:15.040000pt;}
.y75{bottom:15.066667pt;}
.y72{bottom:15.360000pt;}
.y64{bottom:15.680000pt;}
.y6{bottom:50.912000pt;}
.y5{bottom:69.152000pt;}
.y4d{bottom:103.104000pt;}
.y7a{bottom:103.424000pt;}
.y8a{bottom:105.984000pt;}
.y59{bottom:113.984000pt;}
.y1d{bottom:117.824000pt;}
.y89{bottom:118.784000pt;}
.ya5{bottom:121.024000pt;}
.y35{bottom:126.144000pt;}
.y79{bottom:126.464000pt;}
.y58{bottom:137.346667pt;}
.y88{bottom:138.626667pt;}
.y1c{bottom:140.866667pt;}
.ya4{bottom:143.746667pt;}
.y34{bottom:149.186667pt;}
.y78{bottom:149.506667pt;}
.y87{bottom:158.466667pt;}
.y57{bottom:160.386667pt;}
.y74{bottom:162.306667pt;}
.y1b{bottom:163.586667pt;}
.ya3{bottom:166.813333pt;}
.y4c{bottom:171.933333pt;}
.y33{bottom:172.253333pt;}
.y86{bottom:178.333333pt;}
.y76{bottom:182.173333pt;}
.y56{bottom:183.133333pt;}
.y1a{bottom:186.653333pt;}
.ya2{bottom:189.533333pt;}
.y4b{bottom:194.973333pt;}
.y32{bottom:195.293333pt;}
.y85{bottom:198.173333pt;}
.y71{bottom:202.013333pt;}
.y55{bottom:206.813333pt;}
.y19{bottom:209.693333pt;}
.ya1{bottom:213.533333pt;}
.y84{bottom:218.013333pt;}
.y31{bottom:218.333333pt;}
.y4a{bottom:219.293333pt;}
.y73{bottom:222.173333pt;}
.y54{bottom:231.453333pt;}
.y18{bottom:233.373333pt;}
.y83{bottom:237.853333pt;}
.y30{bottom:241.373333pt;}
.y3d{bottom:242.013333pt;}
.y49{bottom:243.613333pt;}
.y53{bottom:254.533333pt;}
.y82{bottom:257.733333pt;}
.y17{bottom:258.053333pt;}
.ya0{bottom:261.253333pt;}
.y6f{bottom:261.893333pt;}
.y2f{bottom:264.133333pt;}
.y3c{bottom:266.693333pt;}
.y52{bottom:277.573333pt;}
.y16{bottom:281.093333pt;}
.y9f{bottom:284.293333pt;}
.y2e{bottom:287.173333pt;}
.y3b{bottom:289.733333pt;}
.y6e{bottom:292.613333pt;}
.y80{bottom:297.413333pt;}
.y51{bottom:300.293333pt;}
.y15{bottom:307.333333pt;}
.y2d{bottom:310.213333pt;}
.y3a{bottom:312.453333pt;}
.y6d{bottom:315.653333pt;}
.y7f{bottom:317.253333pt;}
.y50{bottom:323.653333pt;}
.y14{bottom:330.373333pt;}
.y9e{bottom:331.013333pt;}
.y2c{bottom:333.253333pt;}
.y39{bottom:335.520000pt;}
.y7e{bottom:337.440000pt;}
.y6c{bottom:338.400000pt;}
.y4f{bottom:346.720000pt;}
.y13{bottom:353.440000pt;}
.y9d{bottom:355.680000pt;}
.y2b{bottom:356.320000pt;}
.y7d{bottom:357.280000pt;}
.y38{bottom:358.560000pt;}
.y6b{bottom:361.440000pt;}
.y4e{bottom:369.440000pt;}
.y12{bottom:376.480000pt;}
.y7c{bottom:377.120000pt;}
.y9c{bottom:378.720000pt;}
.y2a{bottom:379.360000pt;}
.y37{bottom:381.600000pt;}
.y6a{bottom:384.480000pt;}
.y7b{bottom:396.960000pt;}
.y11{bottom:399.520000pt;}
.y9b{bottom:401.440000pt;}
.y96{bottom:402.400000pt;}
.y29{bottom:403.040000pt;}
.y48{bottom:404.320000pt;}
.y36{bottom:404.640000pt;}
.y69{bottom:407.520000pt;}
.y10{bottom:422.586667pt;}
.y9a{bottom:424.506667pt;}
.y95{bottom:425.466667pt;}
.y47{bottom:427.386667pt;}
.y28{bottom:427.706667pt;}
.y68{bottom:430.266667pt;}
.y99{bottom:447.546667pt;}
.y94{bottom:448.186667pt;}
.ya6{bottom:449.146667pt;}
.y46{bottom:450.426667pt;}
.y27{bottom:450.746667pt;}
.y67{bottom:453.306667pt;}
.yf{bottom:456.506667pt;}
.y63{bottom:466.426667pt;}
.y93{bottom:471.226667pt;}
.y45{bottom:473.146667pt;}
.y26{bottom:473.466667pt;}
.ye{bottom:479.866667pt;}
.y65{bottom:486.266667pt;}
.y92{bottom:494.266667pt;}
.y98{bottom:495.226667pt;}
.y44{bottom:496.186667pt;}
.y25{bottom:496.506667pt;}
.yd{bottom:506.146667pt;}
.y61{bottom:507.746667pt;}
.y91{bottom:517.346667pt;}
.y97{bottom:518.626667pt;}
.y43{bottom:519.266667pt;}
.y24{bottom:519.586667pt;}
.yc{bottom:524.706667pt;}
.y62{bottom:527.586667pt;}
.y90{bottom:540.386667pt;}
.y42{bottom:542.306667pt;}
.y23{bottom:542.626667pt;}
.y5f{bottom:547.426667pt;}
.yb{bottom:558.946667pt;}
.y8f{bottom:563.426667pt;}
.y41{bottom:565.346667pt;}
.y22{bottom:565.666667pt;}
.y60{bottom:567.266667pt;}
.ya{bottom:577.826667pt;}
.y8e{bottom:586.493333pt;}
.y5c{bottom:587.133333pt;}
.y40{bottom:588.413333pt;}
.y21{bottom:588.733333pt;}
.y9{bottom:603.133333pt;}
.y5e{bottom:606.973333pt;}
.y8d{bottom:609.213333pt;}
.y3f{bottom:611.453333pt;}
.y20{bottom:611.773333pt;}
.y5a{bottom:626.813333pt;}
.y8{bottom:627.453333pt;}
.y8c{bottom:633.213333pt;}
.y3e{bottom:634.493333pt;}
.y1f{bottom:634.813333pt;}
.y7{bottom:653.693333pt;}
.y8b{bottom:657.213333pt;}
.y1e{bottom:657.533333pt;}
.y4{bottom:673.893333pt;}
.y3{bottom:692.133333pt;}
.y2{bottom:711.653333pt;}
.y1{bottom:731.813333pt;}
.he{height:19.200000pt;}
.h11{height:19.232000pt;}
.h13{height:20.832000pt;}
.h7{height:33.918750pt;}
.hf{height:39.040000pt;}
.h10{height:39.072000pt;}
.h14{height:39.360000pt;}
.h12{height:40.672000pt;}
.h9{height:52.762500pt;}
.hb{height:53.118750pt;}
.h5{height:54.180000pt;}
.h15{height:55.256809pt;}
.hc{height:57.787500pt;}
.ha{height:59.340000pt;}
.hd{height:60.519362pt;}
.h3{height:62.812500pt;}
.h6{height:64.290000pt;}
.h2{height:64.500000pt;}
.h8{height:65.918750pt;}
.h4{height:69.660000pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.wf{width:27.200000pt;}
.w9{width:32.992000pt;}
.wb{width:71.712000pt;}
.wc{width:75.552000pt;}
.w6{width:90.592000pt;}
.w4{width:101.152000pt;}
.w5{width:124.512000pt;}
.w7{width:137.626667pt;}
.wd{width:140.826667pt;}
.we{width:140.866667pt;}
.w8{width:157.466667pt;}
.wa{width:180.506667pt;}
.w3{width:185.306667pt;}
.w2{width:1122.559983pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:7.360000pt;}
.xb{left:24.666667pt;}
.x10{left:30.440000pt;}
.xf{left:52.506667pt;}
.x9{left:67.840000pt;}
.x1{left:96.031983pt;}
.x2{left:105.951983pt;}
.x3{left:120.031983pt;}
.x5{left:144.026650pt;}
.x6{left:154.586650pt;}
.x7{left:168.066650pt;}
.x15{left:253.826667pt;}
.x11{left:306.653333pt;}
.x8{left:310.173333pt;}
.x16{left:325.853333pt;}
.x12{left:444.613333pt;}
.x17{left:483.653333pt;}
.xa{left:495.813333pt;}
.x18{left:559.520000pt;}
.xc{left:597.280000pt;}
.x13{left:602.400000pt;}
.x14{left:635.706667pt;}
.x4{left:669.306650pt;}
.x19{left:700.666667pt;}
.xe{left:722.106667pt;}
.x1a{left:841.853333pt;}
}




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