
    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_5c6ac6c0f9c02e14e1798a4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f0eae749bf16de78bb2fc2f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8edb082789692384b6d4f165.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c5aeb0e2fa814f4b9d7d4b2a.woff2')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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:34.848000px;}
.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;}
}
.ws34{word-spacing:-55.944000px;}
.ws1f{word-spacing:-38.660400px;}
.ws6{word-spacing:-38.657700px;}
.ws46{word-spacing:-38.652300px;}
.ws4e{word-spacing:-38.649600px;}
.ws5{word-spacing:-38.647800px;}
.ws3d{word-spacing:-38.439000px;}
.wsb{word-spacing:-38.437200px;}
.ws39{word-spacing:-38.433000px;}
.ws70{word-spacing:-38.430600px;}
.ws3{word-spacing:-38.374200px;}
.ws9{word-spacing:-38.368800px;}
.ws19{word-spacing:-38.310000px;}
.ws12{word-spacing:-38.160000px;}
.ws77{word-spacing:-38.152500px;}
.ws61{word-spacing:-38.150100px;}
.ws73{word-spacing:-38.148300px;}
.ws0{word-spacing:-37.944000px;}
.wsd{word-spacing:-37.941900px;}
.ws4{word-spacing:-37.938600px;}
.wsc{word-spacing:-37.934100px;}
.ws2{word-spacing:-37.931400px;}
.ws15{word-spacing:-37.922400px;}
.ws60{word-spacing:-37.921200px;}
.ws69{word-spacing:-37.716000px;}
.wse{word-spacing:-37.709100px;}
.ws22{word-spacing:-37.706400px;}
.wsa{word-spacing:-37.647900px;}
.ws11{word-spacing:-37.440000px;}
.ws4c{word-spacing:-37.438200px;}
.ws25{word-spacing:-37.230000px;}
.ws6c{word-spacing:-37.000800px;}
.ws33{word-spacing:-36.718800px;}
.ws72{word-spacing:-36.503100px;}
.ws36{word-spacing:-36.478800px;}
.ws54{word-spacing:-36.277200px;}
.ws5e{word-spacing:-35.989200px;}
.ws4d{word-spacing:-35.985600px;}
.ws2b{word-spacing:-35.782800px;}
.ws2f{word-spacing:-35.051400px;}
.ws49{word-spacing:-34.840800px;}
.ws29{word-spacing:-34.831200px;}
.ws67{word-spacing:-34.551000px;}
.ws45{word-spacing:-34.549200px;}
.ws68{word-spacing:-34.339200px;}
.ws8{word-spacing:-33.547800px;}
.ws5d{word-spacing:-33.114000px;}
.ws37{word-spacing:-33.107400px;}
.ws5f{word-spacing:-32.889600px;}
.ws6e{word-spacing:-32.886900px;}
.ws2a{word-spacing:-32.382000px;}
.ws43{word-spacing:-31.673400px;}
.ws58{word-spacing:-31.459200px;}
.ws4b{word-spacing:-31.453200px;}
.ws47{word-spacing:-31.451400px;}
.ws3e{word-spacing:-31.440000px;}
.ws79{word-spacing:-30.953700px;}
.ws3f{word-spacing:-30.945600px;}
.ws5c{word-spacing:-30.940500px;}
.ws3a{word-spacing:-30.240000px;}
.ws1e{word-spacing:-29.218800px;}
.ws5b{word-spacing:-28.787400px;}
.ws40{word-spacing:-27.132300px;}
.ws50{word-spacing:-26.631000px;}
.ws6f{word-spacing:-26.625600px;}
.ws5a{word-spacing:-26.415000px;}
.ws3c{word-spacing:-24.979200px;}
.wsf{word-spacing:-24.467100px;}
.ws10{word-spacing:-24.036300px;}
.ws78{word-spacing:-23.460900px;}
.ws35{word-spacing:-23.322600px;}
.ws65{word-spacing:-23.312700px;}
.ws44{word-spacing:-23.040000px;}
.ws55{word-spacing:-22.095000px;}
.ws62{word-spacing:-21.606000px;}
.ws24{word-spacing:-21.590100px;}
.ws4a{word-spacing:-21.528000px;}
.ws74{word-spacing:-21.384000px;}
.ws23{word-spacing:-21.369600px;}
.ws75{word-spacing:-21.157200px;}
.ws53{word-spacing:-20.864100px;}
.ws2d{word-spacing:-20.653200px;}
.ws71{word-spacing:-20.359800px;}
.ws18{word-spacing:-19.944000px;}
.ws48{word-spacing:-19.710000px;}
.ws41{word-spacing:-18.993600px;}
.ws31{word-spacing:-18.487800px;}
.ws7{word-spacing:-18.472500px;}
.ws52{word-spacing:-17.771400px;}
.ws51{word-spacing:-17.278200px;}
.ws2e{word-spacing:-16.336800px;}
.ws6d{word-spacing:-16.329600px;}
.ws59{word-spacing:-16.119000px;}
.ws42{word-spacing:-15.102900px;}
.ws76{word-spacing:-13.163700px;}
.ws28{word-spacing:-10.782000px;}
.ws30{word-spacing:-9.136800px;}
.ws6a{word-spacing:-8.415000px;}
.ws6b{word-spacing:-8.202600px;}
.ws64{word-spacing:-8.191200px;}
.ws4f{word-spacing:-4.812600px;}
.ws26{word-spacing:-4.302000px;}
.ws38{word-spacing:-1.713600px;}
.ws32{word-spacing:0.000000px;}
.ws66{word-spacing:1.666800px;}
.ws16{word-spacing:2.160000px;}
.ws17{word-spacing:2.382000px;}
.ws1c{word-spacing:3.619800px;}
.ws1d{word-spacing:3.834600px;}
.ws2c{word-spacing:4.329900px;}
.ws14{word-spacing:4.536000px;}
.ws13{word-spacing:5.047200px;}
.ws57{word-spacing:5.270400px;}
.ws27{word-spacing:5.477400px;}
.ws56{word-spacing:10.304400px;}
.ws21{word-spacing:14.120100px;}
.ws63{word-spacing:14.121000px;}
.ws20{word-spacing:15.127200px;}
.ws3b{word-spacing:19.877400px;}
.ws1b{word-spacing:27.576000px;}
.ws1a{word-spacing:28.080000px;}
.ws1{word-spacing:455.092800px;}
._15{margin-left:-2.362800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._22{width:2.148900px;}
._4{width:18.775800px;}
._6{width:19.816800px;}
._10{width:21.598800px;}
._e{width:22.873200px;}
._16{width:24.323400px;}
._f{width:25.380000px;}
._17{width:26.784000px;}
._a{width:27.979200px;}
._19{width:30.017400px;}
._1c{width:31.023000px;}
._18{width:32.134500px;}
._5{width:33.437100px;}
._1b{width:34.823400px;}
._1{width:36.000000px;}
._11{width:37.141200px;}
._14{width:39.583800px;}
._12{width:41.104800px;}
._1a{width:42.459600px;}
._d{width:46.510800px;}
._13{width:48.586800px;}
._b{width:53.190000px;}
._20{width:55.201200px;}
._8{width:59.538000px;}
._7{width:61.611600px;}
._c{width:62.845200px;}
._1d{width:67.447200px;}
._9{width:71.198400px;}
._21{width:85.674000px;}
._1e{width:95.743200px;}
._1f{width:115.892400px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc4{color:rgb(51,51,51);}
.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;}
.y32{bottom:3.825000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2a{bottom:99.796500px;}
.y48{bottom:116.175000px;}
.y29{bottom:120.496500px;}
.y47{bottom:136.875000px;}
.y28{bottom:141.196500px;}
.y6b{bottom:143.175000px;}
.y46{bottom:157.575000px;}
.y27{bottom:161.896500px;}
.y26{bottom:182.596500px;}
.y6a{bottom:184.936500px;}
.y45{bottom:199.336500px;}
.y25{bottom:203.295000px;}
.y44{bottom:220.036500px;}
.y24{bottom:223.996500px;}
.y69{bottom:226.696500px;}
.y43{bottom:240.736500px;}
.y23{bottom:244.696500px;}
.y42{bottom:261.436500px;}
.y22{bottom:265.396500px;}
.y68{bottom:268.275000px;}
.y41{bottom:282.136500px;}
.y21{bottom:286.096500px;}
.y67{bottom:288.975000px;}
.y20{bottom:306.795000px;}
.y66{bottom:309.675000px;}
.y40{bottom:323.896500px;}
.y1f{bottom:327.496500px;}
.y65{bottom:330.375000px;}
.y3f{bottom:344.596500px;}
.y1e{bottom:348.196500px;}
.y64{bottom:351.075000px;}
.y3e{bottom:365.295000px;}
.y1d{bottom:368.896500px;}
.y63{bottom:371.775000px;}
.y3d{bottom:385.996500px;}
.y3c{bottom:406.696500px;}
.y62{bottom:413.536500px;}
.y61{bottom:434.236500px;}
.y3b{bottom:448.275000px;}
.y1c{bottom:452.236500px;}
.y60{bottom:454.936500px;}
.y3a{bottom:468.975000px;}
.y1b{bottom:472.936500px;}
.y5f{bottom:475.636500px;}
.y39{bottom:489.675000px;}
.y5e{bottom:496.336500px;}
.y38{bottom:510.375000px;}
.y1a{bottom:514.695000px;}
.y5d{bottom:517.036500px;}
.y19{bottom:535.396500px;}
.y5c{bottom:537.736500px;}
.y37{bottom:552.136500px;}
.y18{bottom:556.096500px;}
.y5b{bottom:558.436500px;}
.y36{bottom:572.836500px;}
.y5a{bottom:579.136500px;}
.y35{bottom:593.536500px;}
.y17{bottom:597.675000px;}
.y59{bottom:599.836500px;}
.y34{bottom:614.236500px;}
.y16{bottom:618.375000px;}
.y58{bottom:641.596500px;}
.y33{bottom:655.996500px;}
.y15{bottom:660.136500px;}
.y57{bottom:662.295000px;}
.y14{bottom:680.836500px;}
.y56{bottom:682.996500px;}
.y31{bottom:693.750000px;}
.y13{bottom:701.536500px;}
.y55{bottom:703.695000px;}
.y54{bottom:724.396500px;}
.y12{bottom:743.295000px;}
.y53{bottom:745.096500px;}
.y11{bottom:763.996500px;}
.y52{bottom:765.795000px;}
.y51{bottom:786.496500px;}
.y10{bottom:805.575000px;}
.y73{bottom:806.295000px;}
.y50{bottom:807.195000px;}
.yf{bottom:826.275000px;}
.y72{bottom:826.996500px;}
.y4f{bottom:827.895000px;}
.ye{bottom:846.975000px;}
.y71{bottom:847.695000px;}
.y4e{bottom:848.596500px;}
.y4d{bottom:869.295000px;}
.yd{bottom:888.736500px;}
.y70{bottom:889.275000px;}
.y4c{bottom:889.995000px;}
.y6f{bottom:909.975000px;}
.y4b{bottom:910.695000px;}
.yc{bottom:930.495000px;}
.y4a{bottom:931.395000px;}
.y6e{bottom:951.736500px;}
.y30{bottom:952.095000px;}
.yb{bottom:972.075000px;}
.y6d{bottom:972.436500px;}
.y2f{bottom:972.795000px;}
.y6c{bottom:993.136500px;}
.y2e{bottom:993.495000px;}
.ya{bottom:1013.836500px;}
.y2d{bottom:1014.195000px;}
.y2c{bottom:1034.895000px;}
.y9{bottom:1055.595000px;}
.y49{bottom:1055.775000px;}
.y2b{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;}
.h6{height:20.700000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w4{width:358.950000px;}
.w5{width:359.025000px;}
.w3{width:576.750000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.145000px;}
.xc{left:119.475000px;}
.x1{left:127.620000px;}
.xb{left:132.120000px;}
.x4{left:140.580000px;}
.xa{left:159.120000px;}
.x6{left:404.820000px;}
.x8{left:430.200000px;}
.x3{left:465.825000px;}
.xe{left:478.350000px;}
.x9{left:535.680000px;}
.x7{left:547.200000px;}
.x5{left:573.660000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:30.976000pt;}
.ws34{word-spacing:-49.728000pt;}
.ws1f{word-spacing:-34.364800pt;}
.ws6{word-spacing:-34.362400pt;}
.ws46{word-spacing:-34.357600pt;}
.ws4e{word-spacing:-34.355200pt;}
.ws5{word-spacing:-34.353600pt;}
.ws3d{word-spacing:-34.168000pt;}
.wsb{word-spacing:-34.166400pt;}
.ws39{word-spacing:-34.162667pt;}
.ws70{word-spacing:-34.160533pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9{word-spacing:-34.105600pt;}
.ws19{word-spacing:-34.053333pt;}
.ws12{word-spacing:-33.920000pt;}
.ws77{word-spacing:-33.913333pt;}
.ws61{word-spacing:-33.911200pt;}
.ws73{word-spacing:-33.909600pt;}
.ws0{word-spacing:-33.728000pt;}
.wsd{word-spacing:-33.726133pt;}
.ws4{word-spacing:-33.723200pt;}
.wsc{word-spacing:-33.719200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws15{word-spacing:-33.708800pt;}
.ws60{word-spacing:-33.707733pt;}
.ws69{word-spacing:-33.525333pt;}
.wse{word-spacing:-33.519200pt;}
.ws22{word-spacing:-33.516800pt;}
.wsa{word-spacing:-33.464800pt;}
.ws11{word-spacing:-33.280000pt;}
.ws4c{word-spacing:-33.278400pt;}
.ws25{word-spacing:-33.093333pt;}
.ws6c{word-spacing:-32.889600pt;}
.ws33{word-spacing:-32.638933pt;}
.ws72{word-spacing:-32.447200pt;}
.ws36{word-spacing:-32.425600pt;}
.ws54{word-spacing:-32.246400pt;}
.ws5e{word-spacing:-31.990400pt;}
.ws4d{word-spacing:-31.987200pt;}
.ws2b{word-spacing:-31.806933pt;}
.ws2f{word-spacing:-31.156800pt;}
.ws49{word-spacing:-30.969600pt;}
.ws29{word-spacing:-30.961067pt;}
.ws67{word-spacing:-30.712000pt;}
.ws45{word-spacing:-30.710400pt;}
.ws68{word-spacing:-30.523733pt;}
.ws8{word-spacing:-29.820267pt;}
.ws5d{word-spacing:-29.434667pt;}
.ws37{word-spacing:-29.428800pt;}
.ws5f{word-spacing:-29.235200pt;}
.ws6e{word-spacing:-29.232800pt;}
.ws2a{word-spacing:-28.784000pt;}
.ws43{word-spacing:-28.154133pt;}
.ws58{word-spacing:-27.963733pt;}
.ws4b{word-spacing:-27.958400pt;}
.ws47{word-spacing:-27.956800pt;}
.ws3e{word-spacing:-27.946667pt;}
.ws79{word-spacing:-27.514400pt;}
.ws3f{word-spacing:-27.507200pt;}
.ws5c{word-spacing:-27.502667pt;}
.ws3a{word-spacing:-26.880000pt;}
.ws1e{word-spacing:-25.972267pt;}
.ws5b{word-spacing:-25.588800pt;}
.ws40{word-spacing:-24.117600pt;}
.ws50{word-spacing:-23.672000pt;}
.ws6f{word-spacing:-23.667200pt;}
.ws5a{word-spacing:-23.480000pt;}
.ws3c{word-spacing:-22.203733pt;}
.wsf{word-spacing:-21.748533pt;}
.ws10{word-spacing:-21.365600pt;}
.ws78{word-spacing:-20.854133pt;}
.ws35{word-spacing:-20.731200pt;}
.ws65{word-spacing:-20.722400pt;}
.ws44{word-spacing:-20.480000pt;}
.ws55{word-spacing:-19.640000pt;}
.ws62{word-spacing:-19.205333pt;}
.ws24{word-spacing:-19.191200pt;}
.ws4a{word-spacing:-19.136000pt;}
.ws74{word-spacing:-19.008000pt;}
.ws23{word-spacing:-18.995200pt;}
.ws75{word-spacing:-18.806400pt;}
.ws53{word-spacing:-18.545867pt;}
.ws2d{word-spacing:-18.358400pt;}
.ws71{word-spacing:-18.097600pt;}
.ws18{word-spacing:-17.728000pt;}
.ws48{word-spacing:-17.520000pt;}
.ws41{word-spacing:-16.883200pt;}
.ws31{word-spacing:-16.433600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws52{word-spacing:-15.796800pt;}
.ws51{word-spacing:-15.358400pt;}
.ws2e{word-spacing:-14.521600pt;}
.ws6d{word-spacing:-14.515200pt;}
.ws59{word-spacing:-14.328000pt;}
.ws42{word-spacing:-13.424800pt;}
.ws76{word-spacing:-11.701067pt;}
.ws28{word-spacing:-9.584000pt;}
.ws30{word-spacing:-8.121600pt;}
.ws6a{word-spacing:-7.480000pt;}
.ws6b{word-spacing:-7.291200pt;}
.ws64{word-spacing:-7.281067pt;}
.ws4f{word-spacing:-4.277867pt;}
.ws26{word-spacing:-3.824000pt;}
.ws38{word-spacing:-1.523200pt;}
.ws32{word-spacing:0.000000pt;}
.ws66{word-spacing:1.481600pt;}
.ws16{word-spacing:1.920000pt;}
.ws17{word-spacing:2.117333pt;}
.ws1c{word-spacing:3.217600pt;}
.ws1d{word-spacing:3.408533pt;}
.ws2c{word-spacing:3.848800pt;}
.ws14{word-spacing:4.032000pt;}
.ws13{word-spacing:4.486400pt;}
.ws57{word-spacing:4.684800pt;}
.ws27{word-spacing:4.868800pt;}
.ws56{word-spacing:9.159467pt;}
.ws21{word-spacing:12.551200pt;}
.ws63{word-spacing:12.552000pt;}
.ws20{word-spacing:13.446400pt;}
.ws3b{word-spacing:17.668800pt;}
.ws1b{word-spacing:24.512000pt;}
.ws1a{word-spacing:24.960000pt;}
.ws1{word-spacing:404.526933pt;}
._15{margin-left:-2.100267pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._22{width:1.910133pt;}
._4{width:16.689600pt;}
._6{width:17.614933pt;}
._10{width:19.198933pt;}
._e{width:20.331733pt;}
._16{width:21.620800pt;}
._f{width:22.560000pt;}
._17{width:23.808000pt;}
._a{width:24.870400pt;}
._19{width:26.682133pt;}
._1c{width:27.576000pt;}
._18{width:28.564000pt;}
._5{width:29.721867pt;}
._1b{width:30.954133pt;}
._1{width:32.000000pt;}
._11{width:33.014400pt;}
._14{width:35.185600pt;}
._12{width:36.537600pt;}
._1a{width:37.741867pt;}
._d{width:41.342933pt;}
._13{width:43.188267pt;}
._b{width:47.280000pt;}
._20{width:49.067733pt;}
._8{width:52.922667pt;}
._7{width:54.765867pt;}
._c{width:55.862400pt;}
._1d{width:59.953067pt;}
._9{width:63.287467pt;}
._21{width:76.154667pt;}
._1e{width:85.105067pt;}
._1f{width:103.015467pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:3.400000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2a{bottom:88.708000pt;}
.y48{bottom:103.266667pt;}
.y29{bottom:107.108000pt;}
.y47{bottom:121.666667pt;}
.y28{bottom:125.508000pt;}
.y6b{bottom:127.266667pt;}
.y46{bottom:140.066667pt;}
.y27{bottom:143.908000pt;}
.y26{bottom:162.308000pt;}
.y6a{bottom:164.388000pt;}
.y45{bottom:177.188000pt;}
.y25{bottom:180.706667pt;}
.y44{bottom:195.588000pt;}
.y24{bottom:199.108000pt;}
.y69{bottom:201.508000pt;}
.y43{bottom:213.988000pt;}
.y23{bottom:217.508000pt;}
.y42{bottom:232.388000pt;}
.y22{bottom:235.908000pt;}
.y68{bottom:238.466667pt;}
.y41{bottom:250.788000pt;}
.y21{bottom:254.308000pt;}
.y67{bottom:256.866667pt;}
.y20{bottom:272.706667pt;}
.y66{bottom:275.266667pt;}
.y40{bottom:287.908000pt;}
.y1f{bottom:291.108000pt;}
.y65{bottom:293.666667pt;}
.y3f{bottom:306.308000pt;}
.y1e{bottom:309.508000pt;}
.y64{bottom:312.066667pt;}
.y3e{bottom:324.706667pt;}
.y1d{bottom:327.908000pt;}
.y63{bottom:330.466667pt;}
.y3d{bottom:343.108000pt;}
.y3c{bottom:361.508000pt;}
.y62{bottom:367.588000pt;}
.y61{bottom:385.988000pt;}
.y3b{bottom:398.466667pt;}
.y1c{bottom:401.988000pt;}
.y60{bottom:404.388000pt;}
.y3a{bottom:416.866667pt;}
.y1b{bottom:420.388000pt;}
.y5f{bottom:422.788000pt;}
.y39{bottom:435.266667pt;}
.y5e{bottom:441.188000pt;}
.y38{bottom:453.666667pt;}
.y1a{bottom:457.506667pt;}
.y5d{bottom:459.588000pt;}
.y19{bottom:475.908000pt;}
.y5c{bottom:477.988000pt;}
.y37{bottom:490.788000pt;}
.y18{bottom:494.308000pt;}
.y5b{bottom:496.388000pt;}
.y36{bottom:509.188000pt;}
.y5a{bottom:514.788000pt;}
.y35{bottom:527.588000pt;}
.y17{bottom:531.266667pt;}
.y59{bottom:533.188000pt;}
.y34{bottom:545.988000pt;}
.y16{bottom:549.666667pt;}
.y58{bottom:570.308000pt;}
.y33{bottom:583.108000pt;}
.y15{bottom:586.788000pt;}
.y57{bottom:588.706667pt;}
.y14{bottom:605.188000pt;}
.y56{bottom:607.108000pt;}
.y31{bottom:616.666667pt;}
.y13{bottom:623.588000pt;}
.y55{bottom:625.506667pt;}
.y54{bottom:643.908000pt;}
.y12{bottom:660.706667pt;}
.y53{bottom:662.308000pt;}
.y11{bottom:679.108000pt;}
.y52{bottom:680.706667pt;}
.y51{bottom:699.108000pt;}
.y10{bottom:716.066667pt;}
.y73{bottom:716.706667pt;}
.y50{bottom:717.506667pt;}
.yf{bottom:734.466667pt;}
.y72{bottom:735.108000pt;}
.y4f{bottom:735.906667pt;}
.ye{bottom:752.866667pt;}
.y71{bottom:753.506667pt;}
.y4e{bottom:754.308000pt;}
.y4d{bottom:772.706667pt;}
.yd{bottom:789.988000pt;}
.y70{bottom:790.466667pt;}
.y4c{bottom:791.106667pt;}
.y6f{bottom:808.866667pt;}
.y4b{bottom:809.506667pt;}
.yc{bottom:827.106667pt;}
.y4a{bottom:827.906667pt;}
.y6e{bottom:845.988000pt;}
.y30{bottom:846.306667pt;}
.yb{bottom:864.066667pt;}
.y6d{bottom:864.388000pt;}
.y2f{bottom:864.706667pt;}
.y6c{bottom:882.788000pt;}
.y2e{bottom:883.106667pt;}
.ya{bottom:901.188000pt;}
.y2d{bottom:901.506667pt;}
.y2c{bottom:919.906667pt;}
.y9{bottom:938.306667pt;}
.y49{bottom:938.466667pt;}
.y2b{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;}
.h6{height:18.400000pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w4{width:319.066667pt;}
.w5{width:319.133333pt;}
.w3{width:512.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.240000pt;}
.xc{left:106.200000pt;}
.x1{left:113.440000pt;}
.xb{left:117.440000pt;}
.x4{left:124.960000pt;}
.xa{left:141.440000pt;}
.x6{left:359.840000pt;}
.x8{left:382.400000pt;}
.x3{left:414.066667pt;}
.xe{left:425.200000pt;}
.x9{left:476.160000pt;}
.x7{left:486.400000pt;}
.x5{left:509.920000pt;}
.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; }
  