
    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_92fd0cab48412fcd279b5847.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.057617;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_fdca997a90a3a1eb3efa9415.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_3d2c2d6fd6a6c8314843e828.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6d746d420873a3a08f553a88.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.875488;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_4b5e3ef9903a30c688c5bbc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912598;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:ff6;src:url('chunks/assets/font_052afd55aad8fa62df9f7615.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.741211;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:ff7;src:url('chunks/assets/font_0384cdd634dddeb73c81323b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.m2{transform:matrix(0.193181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193181,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223214,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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.147000px;}
.lsa{letter-spacing:0.236160px;}
.ls9{letter-spacing:0.295200px;}
.ls18{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.388800px;}
.ls7{letter-spacing:0.413280px;}
.ls8{letter-spacing:0.472320px;}
.ls5{letter-spacing:0.480600px;}
.ls15{letter-spacing:0.583200px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.747600px;}
.ls3{letter-spacing:0.876600px;}
.ls13{letter-spacing:1.632960px;}
.lsb{letter-spacing:1.814400px;}
.lsc{letter-spacing:1.875000px;}
.ls19{letter-spacing:1.879200px;}
.lsf{letter-spacing:1.944000px;}
.ls11{letter-spacing:2.008800px;}
.ls10{letter-spacing:2.073600px;}
.ls1c{letter-spacing:2.268000px;}
.ls12{letter-spacing:2.916000px;}
.ls1{letter-spacing:3.143520px;}
.ls1b{letter-spacing:4.795200px;}
.ls17{letter-spacing:5.378400px;}
.ls14{letter-spacing:9.460800px;}
.lse{letter-spacing:12.597120px;}
.ls1a{letter-spacing:36.806400px;}
.lsd{letter-spacing:64.906560px;}
.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;}
}
.ws0{word-spacing:-35.111520px;}
.ws6{word-spacing:-19.440000px;}
.wsc{word-spacing:-18.468000px;}
.wsb{word-spacing:-18.273600px;}
.ws7{word-spacing:-18.208800px;}
.ws5{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.079200px;}
.ws9{word-spacing:-16.783200px;}
.ws8{word-spacing:-16.588800px;}
.ws3{word-spacing:-16.200000px;}
.ws1{word-spacing:-15.232320px;}
.ws2{word-spacing:-15.055200px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-15.840000px;}
._11{margin-left:-7.308240px;}
._12{margin-left:-4.953600px;}
._a{margin-left:-2.943360px;}
._c{margin-left:-1.079760px;}
._7{width:1.036800px;}
._8{width:2.397600px;}
._9{width:4.318680px;}
._4{width:5.947200px;}
._2{width:6.955200px;}
._10{width:7.970400px;}
._6{width:8.971200px;}
._3{width:10.281600px;}
._0{width:12.297600px;}
._1{width:13.910400px;}
._5{width:15.220800px;}
._d{width:16.273440px;}
._f{width:17.496000px;}
._e{width:24.170400px;}
.fc2{color:rgb(237,28,36);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,15,13);}
.fs6{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:53.280000px;}
.fs1{font-size:59.040000px;}
.fs3{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs8{font-size:89.280000px;}
.fs2{font-size:100.800000px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.526000px;}
.y9{bottom:5.400000px;}
.yc{bottom:5.760000px;}
.yd{bottom:35.640000px;}
.y27{bottom:62.399595px;}
.y2{bottom:148.455000px;}
.y26{bottom:195.978900px;}
.y75{bottom:197.407800px;}
.y8e{bottom:199.935000px;}
.y74{bottom:218.289600px;}
.y25{bottom:219.375000px;}
.y8d{bottom:221.491800px;}
.y24{bottom:230.178600px;}
.y73{bottom:239.171400px;}
.y23{bottom:253.215000px;}
.y5e{bottom:258.619350px;}
.y72{bottom:260.053200px;}
.yaf{bottom:263.975250px;}
.y22{bottom:264.378600px;}
.y5d{bottom:277.335000px;}
.y71{bottom:280.935000px;}
.yae{bottom:284.857050px;}
.y21{bottom:287.415000px;}
.y20{bottom:298.215000px;}
.y5c{bottom:299.262450px;}
.yad{bottom:305.738850px;}
.y49{bottom:315.102450px;}
.y70{bottom:315.855000px;}
.yac{bottom:326.620650px;}
.y48{bottom:335.984250px;}
.yab{bottom:347.502450px;}
.y47{bottom:356.866050px;}
.y6f{bottom:364.459350px;}
.yaa{bottom:368.384250px;}
.y46{bottom:377.747850px;}
.y6e{bottom:383.175000px;}
.ya9{bottom:389.266050px;}
.y45{bottom:398.629650px;}
.y6d{bottom:405.116850px;}
.ya8{bottom:410.147850px;}
.y44{bottom:419.511450px;}
.ya7{bottom:431.029650px;}
.y43{bottom:440.036850px;}
.ya6{bottom:451.911600px;}
.y1f{bottom:459.853200px;}
.y42{bottom:460.918650px;}
.ya5{bottom:472.793400px;}
.y1e{bottom:480.735000px;}
.y41{bottom:481.800450px;}
.ya4{bottom:493.675200px;}
.y1d{bottom:499.408500px;}
.y40{bottom:502.682400px;}
.ya3{bottom:514.557000px;}
.y1c{bottom:516.692400px;}
.y3f{bottom:523.564200px;}
.y1b{bottom:533.976450px;}
.ya2{bottom:535.438800px;}
.y3e{bottom:544.446000px;}
.y1a{bottom:551.260350px;}
.ya1{bottom:556.320600px;}
.y3d{bottom:565.327800px;}
.y19{bottom:568.544250px;}
.ya0{bottom:577.202400px;}
.y8c{bottom:585.084600px;}
.y18{bottom:585.828300px;}
.y3c{bottom:586.209600px;}
.y9f{bottom:598.084200px;}
.y17{bottom:603.112200px;}
.y8b{bottom:606.679200px;}
.y3b{bottom:607.091400px;}
.y9e{bottom:618.966000px;}
.y16{bottom:620.396250px;}
.y3a{bottom:627.973200px;}
.y8a{bottom:628.646400px;}
.y15{bottom:637.680150px;}
.y9d{bottom:639.491400px;}
.y39{bottom:648.855000px;}
.y89{bottom:650.241000px;}
.y14{bottom:654.595200px;}
.y5b{bottom:654.949650px;}
.y9c{bottom:660.373200px;}
.y13{bottom:671.879100px;}
.y88{bottom:672.208200px;}
.y5a{bottom:675.831450px;}
.y38{bottom:680.535000px;}
.y9b{bottom:681.255000px;}
.y12{bottom:689.163000px;}
.y87{bottom:694.175400px;}
.y59{bottom:696.713250px;}
.y11{bottom:706.447050px;}
.y86{bottom:715.770000px;}
.y9a{bottom:716.175000px;}
.y58{bottom:717.595050px;}
.y37{bottom:722.268000px;}
.y10{bottom:723.730950px;}
.y85{bottom:737.737200px;}
.y57{bottom:738.476850px;}
.yf{bottom:741.015000px;}
.y36{bottom:743.149800px;}
.y56{bottom:759.358650px;}
.y84{bottom:759.704400px;}
.ye{bottom:763.335000px;}
.y35{bottom:764.031600px;}
.y99{bottom:765.131400px;}
.y6c{bottom:771.593400px;}
.y55{bottom:780.240450px;}
.y83{bottom:781.299000px;}
.y34{bottom:784.913400px;}
.y98{bottom:786.013200px;}
.y6b{bottom:792.475200px;}
.y54{bottom:801.122250px;}
.yb{bottom:801.135000px;}
.y82{bottom:803.266200px;}
.y33{bottom:805.795200px;}
.y97{bottom:806.895000px;}
.y6a{bottom:813.357000px;}
.y53{bottom:822.004050px;}
.ya{bottom:823.815000px;}
.y81{bottom:824.860800px;}
.y32{bottom:826.677000px;}
.y69{bottom:834.238800px;}
.y96{bottom:841.815000px;}
.y52{bottom:842.886000px;}
.y80{bottom:846.828000px;}
.y31{bottom:847.558800px;}
.y8{bottom:847.935000px;}
.y68{bottom:855.120600px;}
.y51{bottom:863.767800px;}
.y30{bottom:868.440600px;}
.y7f{bottom:868.795200px;}
.y7{bottom:870.255000px;}
.y67{bottom:876.002400px;}
.y50{bottom:884.649600px;}
.y2f{bottom:889.322400px;}
.y7e{bottom:889.677000px;}
.y95{bottom:890.764200px;}
.y66{bottom:896.884200px;}
.y4f{bottom:905.531400px;}
.y2e{bottom:910.204200px;}
.y7d{bottom:910.558800px;}
.y94{bottom:911.646000px;}
.y6{bottom:914.905800px;}
.y65{bottom:917.766000px;}
.y4e{bottom:926.413200px;}
.y7c{bottom:931.084200px;}
.y2d{bottom:931.086000px;}
.y93{bottom:932.527800px;}
.y64{bottom:938.647800px;}
.y4d{bottom:947.295000px;}
.y5{bottom:949.102200px;}
.y2c{bottom:951.611400px;}
.y7b{bottom:951.966000px;}
.y92{bottom:953.409600px;}
.y63{bottom:959.529600px;}
.y2b{bottom:972.493200px;}
.y7a{bottom:972.847800px;}
.y91{bottom:974.291400px;}
.y4{bottom:977.905800px;}
.y4c{bottom:978.615000px;}
.y62{bottom:980.411400px;}
.y2a{bottom:993.375000px;}
.y79{bottom:993.729600px;}
.y90{bottom:995.173200px;}
.y61{bottom:1001.293200px;}
.y3{bottom:1007.415000px;}
.y78{bottom:1014.611400px;}
.y8f{bottom:1016.055000px;}
.y60{bottom:1022.175000px;}
.y4b{bottom:1022.182200px;}
.y29{bottom:1028.295000px;}
.y77{bottom:1035.493200px;}
.y4a{bottom:1050.975000px;}
.y5f{bottom:1053.495000px;}
.y76{bottom:1056.375000px;}
.y1{bottom:1191.015000px;}
.h10{height:13.200073px;}
.he{height:30.304688px;}
.h11{height:34.968750px;}
.h9{height:35.511328px;}
.h4{height:39.350391px;}
.hf{height:44.850938px;}
.h14{height:44.992969px;}
.hb{height:45.151172px;}
.ha{height:46.800015px;}
.hc{height:49.699687px;}
.h13{height:54.181406px;}
.hd{height:54.548438px;}
.h8{height:55.440030px;}
.h3{height:60.609375px;}
.h12{height:62.208281px;}
.h7{height:65.393437px;}
.h6{height:69.989063px;}
.h5{height:84.853125px;}
.h2{height:1261.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:20.021985px;}
.w5{width:96.042000px;}
.w3{width:281.520000px;}
.w4{width:281.880000px;}
.w2{width:892.500000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:76.225650px;}
.xc{left:83.005350px;}
.xd{left:140.992200px;}
.x7{left:161.820000px;}
.x1{left:169.740000px;}
.x2{left:173.702100px;}
.xf{left:180.390150px;}
.x14{left:182.793900px;}
.x10{left:195.239850px;}
.x17{left:201.670200px;}
.x12{left:203.800350px;}
.x3{left:208.712100px;}
.x6{left:220.027650px;}
.xb{left:225.965400px;}
.x19{left:244.140750px;}
.x4{left:306.159600px;}
.x16{left:386.343000px;}
.x15{left:415.485300px;}
.xe{left:416.574150px;}
.xa{left:443.340000px;}
.x5{left:446.154600px;}
.x9{left:507.877650px;}
.x18{left:680.461200px;}
.x11{left:700.112250px;}
.x13{left:725.223150px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.130667pt;}
.lsa{letter-spacing:0.209920pt;}
.ls9{letter-spacing:0.262400pt;}
.ls18{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.345600pt;}
.ls7{letter-spacing:0.367360pt;}
.ls8{letter-spacing:0.419840pt;}
.ls5{letter-spacing:0.427200pt;}
.ls15{letter-spacing:0.518400pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.664533pt;}
.ls3{letter-spacing:0.779200pt;}
.ls13{letter-spacing:1.451520pt;}
.lsb{letter-spacing:1.612800pt;}
.lsc{letter-spacing:1.666667pt;}
.ls19{letter-spacing:1.670400pt;}
.lsf{letter-spacing:1.728000pt;}
.ls11{letter-spacing:1.785600pt;}
.ls10{letter-spacing:1.843200pt;}
.ls1c{letter-spacing:2.016000pt;}
.ls12{letter-spacing:2.592000pt;}
.ls1{letter-spacing:2.794240pt;}
.ls1b{letter-spacing:4.262400pt;}
.ls17{letter-spacing:4.780800pt;}
.ls14{letter-spacing:8.409600pt;}
.lse{letter-spacing:11.197440pt;}
.ls1a{letter-spacing:32.716800pt;}
.lsd{letter-spacing:57.694720pt;}
.ws0{word-spacing:-31.210240pt;}
.ws6{word-spacing:-17.280000pt;}
.wsc{word-spacing:-16.416000pt;}
.wsb{word-spacing:-16.243200pt;}
.ws7{word-spacing:-16.185600pt;}
.ws5{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.070400pt;}
.ws9{word-spacing:-14.918400pt;}
.ws8{word-spacing:-14.745600pt;}
.ws3{word-spacing:-14.400000pt;}
.ws1{word-spacing:-13.539840pt;}
.ws2{word-spacing:-13.382400pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-14.080000pt;}
._11{margin-left:-6.496213pt;}
._12{margin-left:-4.403200pt;}
._a{margin-left:-2.616320pt;}
._c{margin-left:-0.959787pt;}
._7{width:0.921600pt;}
._8{width:2.131200pt;}
._9{width:3.838827pt;}
._4{width:5.286400pt;}
._2{width:6.182400pt;}
._10{width:7.084800pt;}
._6{width:7.974400pt;}
._3{width:9.139200pt;}
._0{width:10.931200pt;}
._1{width:12.364800pt;}
._5{width:13.529600pt;}
._d{width:14.465280pt;}
._f{width:15.552000pt;}
._e{width:21.484800pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:47.360000pt;}
.fs1{font-size:52.480000pt;}
.fs3{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs8{font-size:79.360000pt;}
.fs2{font-size:89.600000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.245333pt;}
.y9{bottom:4.800000pt;}
.yc{bottom:5.120000pt;}
.yd{bottom:31.680000pt;}
.y27{bottom:55.466307pt;}
.y2{bottom:131.960000pt;}
.y26{bottom:174.203467pt;}
.y75{bottom:175.473600pt;}
.y8e{bottom:177.720000pt;}
.y74{bottom:194.035200pt;}
.y25{bottom:195.000000pt;}
.y8d{bottom:196.881600pt;}
.y24{bottom:204.603200pt;}
.y73{bottom:212.596800pt;}
.y23{bottom:225.080000pt;}
.y5e{bottom:229.883867pt;}
.y72{bottom:231.158400pt;}
.yaf{bottom:234.644667pt;}
.y22{bottom:235.003200pt;}
.y5d{bottom:246.520000pt;}
.y71{bottom:249.720000pt;}
.yae{bottom:253.206267pt;}
.y21{bottom:255.480000pt;}
.y20{bottom:265.080000pt;}
.y5c{bottom:266.011067pt;}
.yad{bottom:271.767867pt;}
.y49{bottom:280.091067pt;}
.y70{bottom:280.760000pt;}
.yac{bottom:290.329467pt;}
.y48{bottom:298.652667pt;}
.yab{bottom:308.891067pt;}
.y47{bottom:317.214267pt;}
.y6f{bottom:323.963867pt;}
.yaa{bottom:327.452667pt;}
.y46{bottom:335.775867pt;}
.y6e{bottom:340.600000pt;}
.ya9{bottom:346.014267pt;}
.y45{bottom:354.337467pt;}
.y6d{bottom:360.103867pt;}
.ya8{bottom:364.575867pt;}
.y44{bottom:372.899067pt;}
.ya7{bottom:383.137467pt;}
.y43{bottom:391.143867pt;}
.ya6{bottom:401.699200pt;}
.y1f{bottom:408.758400pt;}
.y42{bottom:409.705467pt;}
.ya5{bottom:420.260800pt;}
.y1e{bottom:427.320000pt;}
.y41{bottom:428.267067pt;}
.ya4{bottom:438.822400pt;}
.y1d{bottom:443.918667pt;}
.y40{bottom:446.828800pt;}
.ya3{bottom:457.384000pt;}
.y1c{bottom:459.282133pt;}
.y3f{bottom:465.390400pt;}
.y1b{bottom:474.645733pt;}
.ya2{bottom:475.945600pt;}
.y3e{bottom:483.952000pt;}
.y1a{bottom:490.009200pt;}
.ya1{bottom:494.507200pt;}
.y3d{bottom:502.513600pt;}
.y19{bottom:505.372667pt;}
.ya0{bottom:513.068800pt;}
.y8c{bottom:520.075200pt;}
.y18{bottom:520.736267pt;}
.y3c{bottom:521.075200pt;}
.y9f{bottom:531.630400pt;}
.y17{bottom:536.099733pt;}
.y8b{bottom:539.270400pt;}
.y3b{bottom:539.636800pt;}
.y9e{bottom:550.192000pt;}
.y16{bottom:551.463333pt;}
.y3a{bottom:558.198400pt;}
.y8a{bottom:558.796800pt;}
.y15{bottom:566.826800pt;}
.y9d{bottom:568.436800pt;}
.y39{bottom:576.760000pt;}
.y89{bottom:577.992000pt;}
.y14{bottom:581.862400pt;}
.y5b{bottom:582.177467pt;}
.y9c{bottom:586.998400pt;}
.y13{bottom:597.225867pt;}
.y88{bottom:597.518400pt;}
.y5a{bottom:600.739067pt;}
.y38{bottom:604.920000pt;}
.y9b{bottom:605.560000pt;}
.y12{bottom:612.589333pt;}
.y87{bottom:617.044800pt;}
.y59{bottom:619.300667pt;}
.y11{bottom:627.952933pt;}
.y86{bottom:636.240000pt;}
.y9a{bottom:636.600000pt;}
.y58{bottom:637.862267pt;}
.y37{bottom:642.016000pt;}
.y10{bottom:643.316400pt;}
.y85{bottom:655.766400pt;}
.y57{bottom:656.423867pt;}
.yf{bottom:658.680000pt;}
.y36{bottom:660.577600pt;}
.y56{bottom:674.985467pt;}
.y84{bottom:675.292800pt;}
.ye{bottom:678.520000pt;}
.y35{bottom:679.139200pt;}
.y99{bottom:680.116800pt;}
.y6c{bottom:685.860800pt;}
.y55{bottom:693.547067pt;}
.y83{bottom:694.488000pt;}
.y34{bottom:697.700800pt;}
.y98{bottom:698.678400pt;}
.y6b{bottom:704.422400pt;}
.y54{bottom:712.108667pt;}
.yb{bottom:712.120000pt;}
.y82{bottom:714.014400pt;}
.y33{bottom:716.262400pt;}
.y97{bottom:717.240000pt;}
.y6a{bottom:722.984000pt;}
.y53{bottom:730.670267pt;}
.ya{bottom:732.280000pt;}
.y81{bottom:733.209600pt;}
.y32{bottom:734.824000pt;}
.y69{bottom:741.545600pt;}
.y96{bottom:748.280000pt;}
.y52{bottom:749.232000pt;}
.y80{bottom:752.736000pt;}
.y31{bottom:753.385600pt;}
.y8{bottom:753.720000pt;}
.y68{bottom:760.107200pt;}
.y51{bottom:767.793600pt;}
.y30{bottom:771.947200pt;}
.y7f{bottom:772.262400pt;}
.y7{bottom:773.560000pt;}
.y67{bottom:778.668800pt;}
.y50{bottom:786.355200pt;}
.y2f{bottom:790.508800pt;}
.y7e{bottom:790.824000pt;}
.y95{bottom:791.790400pt;}
.y66{bottom:797.230400pt;}
.y4f{bottom:804.916800pt;}
.y2e{bottom:809.070400pt;}
.y7d{bottom:809.385600pt;}
.y94{bottom:810.352000pt;}
.y6{bottom:813.249600pt;}
.y65{bottom:815.792000pt;}
.y4e{bottom:823.478400pt;}
.y7c{bottom:827.630400pt;}
.y2d{bottom:827.632000pt;}
.y93{bottom:828.913600pt;}
.y64{bottom:834.353600pt;}
.y4d{bottom:842.040000pt;}
.y5{bottom:843.646400pt;}
.y2c{bottom:845.876800pt;}
.y7b{bottom:846.192000pt;}
.y92{bottom:847.475200pt;}
.y63{bottom:852.915200pt;}
.y2b{bottom:864.438400pt;}
.y7a{bottom:864.753600pt;}
.y91{bottom:866.036800pt;}
.y4{bottom:869.249600pt;}
.y4c{bottom:869.880000pt;}
.y62{bottom:871.476800pt;}
.y2a{bottom:883.000000pt;}
.y79{bottom:883.315200pt;}
.y90{bottom:884.598400pt;}
.y61{bottom:890.038400pt;}
.y3{bottom:895.480000pt;}
.y78{bottom:901.876800pt;}
.y8f{bottom:903.160000pt;}
.y60{bottom:908.600000pt;}
.y4b{bottom:908.606400pt;}
.y29{bottom:914.040000pt;}
.y77{bottom:920.438400pt;}
.y4a{bottom:934.200000pt;}
.y5f{bottom:936.440000pt;}
.y76{bottom:939.000000pt;}
.y1{bottom:1058.680000pt;}
.h10{height:11.733399pt;}
.he{height:26.937500pt;}
.h11{height:31.083333pt;}
.h9{height:31.565625pt;}
.h4{height:34.978125pt;}
.hf{height:39.867500pt;}
.h14{height:39.993750pt;}
.hb{height:40.134375pt;}
.ha{height:41.600013pt;}
.hc{height:44.177500pt;}
.h13{height:48.161250pt;}
.hd{height:48.487500pt;}
.h8{height:49.280027pt;}
.h3{height:53.875000pt;}
.h12{height:55.296250pt;}
.h7{height:58.127500pt;}
.h6{height:62.212500pt;}
.h5{height:75.425000pt;}
.h2{height:1121.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:17.797320pt;}
.w5{width:85.370667pt;}
.w3{width:250.240000pt;}
.w4{width:250.560000pt;}
.w2{width:793.333333pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:67.756133pt;}
.xc{left:73.782533pt;}
.xd{left:125.326400pt;}
.x7{left:143.840000pt;}
.x1{left:150.880000pt;}
.x2{left:154.401867pt;}
.xf{left:160.346800pt;}
.x14{left:162.483467pt;}
.x10{left:173.546533pt;}
.x17{left:179.262400pt;}
.x12{left:181.155867pt;}
.x3{left:185.521867pt;}
.x6{left:195.580133pt;}
.xb{left:200.858133pt;}
.x19{left:217.014000pt;}
.x4{left:272.141867pt;}
.x16{left:343.416000pt;}
.x15{left:369.320267pt;}
.xe{left:370.288133pt;}
.xa{left:394.080000pt;}
.x5{left:396.581867pt;}
.x9{left:451.446800pt;}
.x18{left:604.854400pt;}
.x11{left:622.322000pt;}
.x13{left:644.642800pt;}
}




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