
    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_55b0fa69f60dde8278c2016c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_ba068a9b14fae6e627fa427b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.665000;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_fbd02351809357d33a6beb69.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_0d39d37f41f062e55cec5b19.woff')format("woff");}.ff4{font-family:ff4;line-height:0.810000;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_321c3ba8eab7d1cac233acbf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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);}
.v2{vertical-align:-26.028000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:20.918915px;}
.ls2{letter-spacing:191.000915px;}
.ls1{letter-spacing:208.928915px;}
.ls0{letter-spacing:208.934915px;}
.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:-21.519300px;}
.ws2{word-spacing:-14.943900px;}
.ws67{word-spacing:-3.526760px;}
.ws3f{word-spacing:-3.287658px;}
.ws34{word-spacing:-3.048556px;}
.ws35{word-spacing:-2.988780px;}
.ws38{word-spacing:-2.869229px;}
.ws68{word-spacing:-2.570351px;}
.ws20{word-spacing:-2.092146px;}
.ws11{word-spacing:-1.853044px;}
.ws5{word-spacing:-1.554166px;}
.ws4b{word-spacing:-1.434614px;}
.ws4d{word-spacing:-1.195512px;}
.ws65{word-spacing:-1.016185px;}
.ws17{word-spacing:-0.896634px;}
.wsb{word-spacing:-0.717307px;}
.ws26{word-spacing:-0.573847px;}
.ws4f{word-spacing:-0.537980px;}
.ws24{word-spacing:-0.478205px;}
.ws1c{word-spacing:-0.358654px;}
.ws5d{word-spacing:-0.179327px;}
.ws3a{word-spacing:-0.119551px;}
.ws50{word-spacing:-0.059776px;}
.ws1{word-spacing:0.000000px;}
.ws58{word-spacing:0.059776px;}
.ws2f{word-spacing:0.119551px;}
.wsa{word-spacing:0.179327px;}
.ws12{word-spacing:0.239102px;}
.ws2d{word-spacing:0.298878px;}
.ws3d{word-spacing:0.478205px;}
.ws5a{word-spacing:0.597756px;}
.ws37{word-spacing:0.717307px;}
.ws52{word-spacing:0.836858px;}
.ws13{word-spacing:0.956410px;}
.ws4e{word-spacing:1.195512px;}
.ws25{word-spacing:1.243336px;}
.ws1f{word-spacing:1.315063px;}
.ws62{word-spacing:1.793268px;}
.ws3{word-spacing:1.912819px;}
.ws21{word-spacing:1.972595px;}
.ws1e{word-spacing:2.032370px;}
.ws3e{word-spacing:2.092146px;}
.ws14{word-spacing:2.151922px;}
.ws39{word-spacing:2.689902px;}
.ws33{word-spacing:2.809453px;}
.wsc{word-spacing:2.929004px;}
.ws61{word-spacing:2.988780px;}
.ws41{word-spacing:3.048556px;}
.ws2b{word-spacing:3.060518px;}
.ws59{word-spacing:3.168107px;}
.ws31{word-spacing:3.287658px;}
.ws27{word-spacing:3.443083px;}
.ws15{word-spacing:3.526760px;}
.ws7{word-spacing:3.825638px;}
.ws4{word-spacing:3.885414px;}
.ws53{word-spacing:3.945190px;}
.ws4c{word-spacing:4.004965px;}
.ws36{word-spacing:4.184292px;}
.wse{word-spacing:4.244068px;}
.ws63{word-spacing:4.265281px;}
.ws40{word-spacing:4.303843px;}
.ws3b{word-spacing:4.602721px;}
.ws2c{word-spacing:4.961375px;}
.ws16{word-spacing:5.379804px;}
.ws56{word-spacing:5.439580px;}
.ws8{word-spacing:5.559131px;}
.ws1d{word-spacing:5.618906px;}
.wsd{word-spacing:5.977560px;}
.ws5e{word-spacing:6.037336px;}
.ws18{word-spacing:6.097111px;}
.ws3c{word-spacing:6.216662px;}
.ws44{word-spacing:6.515540px;}
.ws57{word-spacing:6.635092px;}
.ws49{word-spacing:6.694867px;}
.ws1b{word-spacing:6.993745px;}
.ws48{word-spacing:7.292623px;}
.ws42{word-spacing:7.352399px;}
.ws54{word-spacing:7.471950px;}
.ws6{word-spacing:7.711052px;}
.ws32{word-spacing:7.890379px;}
.ws4a{word-spacing:8.129482px;}
.wsf{word-spacing:8.189257px;}
.ws51{word-spacing:8.249033px;}
.ws30{word-spacing:8.308808px;}
.ws1a{word-spacing:8.488135px;}
.ws2e{word-spacing:8.846789px;}
.ws23{word-spacing:9.384769px;}
.ws19{word-spacing:9.444545px;}
.ws9{word-spacing:9.743423px;}
.ws43{word-spacing:9.922750px;}
.ws47{word-spacing:10.161852px;}
.ws22{word-spacing:10.938935px;}
.ws46{word-spacing:11.596466px;}
.ws69{word-spacing:12.313774px;}
.ws66{word-spacing:13.867939px;}
.ws45{word-spacing:14.645022px;}
.ws60{word-spacing:14.884124px;}
.ws2a{word-spacing:14.967848px;}
.ws29{word-spacing:15.398233px;}
.ws5b{word-spacing:16.498066px;}
.ws64{word-spacing:19.128192px;}
.ws5f{word-spacing:20.323704px;}
.ws10{word-spacing:20.921460px;}
.ws55{word-spacing:22.654952px;}
.ws5c{word-spacing:31.382190px;}
.ws28{word-spacing:31.458089px;}
._0{margin-left:-7.919102px;}
._3{margin-left:-6.599270px;}
._d{margin-left:-4.662497px;}
._4{margin-left:-3.287658px;}
._c{margin-left:-2.092146px;}
._2{margin-left:-1.082400px;}
._1{width:6.027600px;}
._16{width:9.982525px;}
._f{width:15.469952px;}
._a{width:17.275148px;}
._18{width:18.351109px;}
._6{width:19.785724px;}
._8{width:22.356074px;}
._17{width:23.372260px;}
._5{width:24.567772px;}
._e{width:26.002386px;}
._7{width:27.138122px;}
._13{width:28.393410px;}
._19{width:29.887800px;}
._11{width:31.143088px;}
._15{width:32.398375px;}
._10{width:35.865360px;}
._12{width:38.256384px;}
._9{width:42.261349px;}
._b{width:44.054617px;}
._14{width:48.418236px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y5c{bottom:118.261500px;}
.y31{bottom:121.335000px;}
.y30{bottom:136.129500px;}
.y5b{bottom:136.494000px;}
.y2f{bottom:150.924000px;}
.y5a{bottom:154.725000px;}
.y2e{bottom:165.718500px;}
.y59{bottom:172.957500px;}
.y2d{bottom:180.513000px;}
.y58{bottom:191.188500px;}
.y2c{bottom:195.307500px;}
.y89{bottom:205.933500px;}
.y57{bottom:209.421000px;}
.y88{bottom:224.164500px;}
.y56{bottom:227.652000px;}
.y87{bottom:242.395500px;}
.y2b{bottom:243.280500px;}
.y55{bottom:245.883000px;}
.y86{bottom:260.628000px;}
.y2a{bottom:261.511500px;}
.y54{bottom:264.115500px;}
.y29{bottom:279.744000px;}
.y53{bottom:282.346500px;}
.y85{bottom:293.604000px;}
.y28{bottom:297.975000px;}
.y52{bottom:300.579000px;}
.y84{bottom:311.835000px;}
.y27{bottom:316.207500px;}
.y51{bottom:318.810000px;}
.y83{bottom:330.067500px;}
.y26{bottom:334.438500px;}
.y50{bottom:337.041000px;}
.y82{bottom:348.298500px;}
.y25{bottom:352.671000px;}
.y4f{bottom:355.273500px;}
.y81{bottom:366.529500px;}
.y24{bottom:370.929000px;}
.y4e{bottom:373.834500px;}
.y23{bottom:389.161500px;}
.y4d{bottom:392.065500px;}
.y80{bottom:399.505500px;}
.y22{bottom:407.392500px;}
.y4c{bottom:410.296500px;}
.y7f{bottom:417.738000px;}
.y21{bottom:425.625000px;}
.y4b{bottom:428.529000px;}
.y7e{bottom:435.969000px;}
.y20{bottom:443.856000px;}
.y4a{bottom:446.760000px;}
.y7d{bottom:454.201500px;}
.y1f{bottom:462.087000px;}
.y49{bottom:464.992500px;}
.y1e{bottom:480.319500px;}
.y7c{bottom:482.724000px;}
.y48{bottom:483.223500px;}
.y1d{bottom:498.550500px;}
.y47{bottom:501.454500px;}
.y1c{bottom:516.783000px;}
.y46{bottom:519.687000px;}
.y7b{bottom:528.327000px;}
.y1b{bottom:535.014000px;}
.y45{bottom:537.918000px;}
.y7a{bottom:546.558000px;}
.y1a{bottom:553.246500px;}
.y44{bottom:556.150500px;}
.y79{bottom:564.790500px;}
.y19{bottom:571.477500px;}
.y43{bottom:574.381500px;}
.y78{bottom:583.021500px;}
.y18{bottom:589.708500px;}
.y42{bottom:592.614000px;}
.y77{bottom:601.254000px;}
.y17{bottom:607.941000px;}
.y41{bottom:610.845000px;}
.y76{bottom:619.485000px;}
.y16{bottom:635.191500px;}
.y75{bottom:637.716000px;}
.y40{bottom:638.668500px;}
.y74{bottom:655.948500px;}
.y3f{bottom:666.490500px;}
.y73{bottom:674.179500px;}
.y15{bottom:677.110500px;}
.y14{bottom:695.343000px;}
.y72{bottom:702.702000px;}
.y3e{bottom:710.068500px;}
.y13{bottom:713.574000px;}
.y3d{bottom:728.299500px;}
.y12{bottom:731.806500px;}
.y3c{bottom:746.530500px;}
.y71{bottom:748.306500px;}
.y11{bottom:750.037500px;}
.y3b{bottom:764.763000px;}
.y70{bottom:766.537500px;}
.y10{bottom:768.268500px;}
.y3a{bottom:782.994000px;}
.y6f{bottom:784.768500px;}
.yf{bottom:786.501000px;}
.y39{bottom:801.226500px;}
.y6e{bottom:803.001000px;}
.ye{bottom:804.732000px;}
.y38{bottom:819.457500px;}
.y6d{bottom:821.232000px;}
.yd{bottom:822.964500px;}
.y37{bottom:837.690000px;}
.y6c{bottom:839.464500px;}
.yc{bottom:841.195500px;}
.y36{bottom:855.921000px;}
.y6b{bottom:857.695500px;}
.yb{bottom:859.426500px;}
.y35{bottom:874.152000px;}
.y6a{bottom:875.926500px;}
.ya{bottom:877.659000px;}
.y34{bottom:892.384500px;}
.y69{bottom:894.159000px;}
.y9{bottom:895.890000px;}
.y33{bottom:910.615500px;}
.y8{bottom:914.122500px;}
.y68{bottom:922.681500px;}
.y32{bottom:929.176500px;}
.y7{bottom:947.407500px;}
.y67{bottom:961.560000px;}
.y66{bottom:979.791000px;}
.y65{bottom:998.023500px;}
.y6{bottom:1013.460000px;}
.y64{bottom:1026.546000px;}
.y5{bottom:1040.889000px;}
.y4{bottom:1061.811000px;}
.y63{bottom:1065.424500px;}
.y3{bottom:1076.224500px;}
.y62{bottom:1083.655500px;}
.y2{bottom:1097.146500px;}
.y61{bottom:1101.888000px;}
.y60{bottom:1120.119000px;}
.y5f{bottom:1138.351500px;}
.y1{bottom:1150.903500px;}
.y5e{bottom:1156.582500px;}
.y5d{bottom:1174.813500px;}
.y8a{bottom:1174.815000px;}
.h6{height:31.800699px;}
.ha{height:32.900573px;}
.h7{height:33.570202px;}
.hb{height:34.096088px;}
.hc{height:40.826735px;}
.h9{height:41.125613px;}
.h8{height:42.620003px;}
.h3{height:52.002346px;}
.h4{height:57.828699px;}
.h5{height:57.834699px;}
.h2{height:61.373044px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:80.007000px;}
.x9{left:82.488000px;}
.xb{left:100.420500px;}
.x13{left:104.904000px;}
.xc{left:146.268000px;}
.x10{left:164.488500px;}
.xa{left:187.180500px;}
.x11{left:196.498500px;}
.x5{left:211.395000px;}
.x8{left:216.544500px;}
.x2{left:242.203500px;}
.x3{left:278.070000px;}
.x4{left:292.935000px;}
.x1{left:322.422000px;}
.x7{left:359.391000px;}
.x6{left:412.365000px;}
.x14{left:462.684000px;}
.xd{left:465.165000px;}
.xe{left:483.097500px;}
.x15{left:487.581000px;}
.xf{left:556.356000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:18.594591pt;}
.ls2{letter-spacing:169.778591pt;}
.ls1{letter-spacing:185.714591pt;}
.ls0{letter-spacing:185.719925pt;}
.ws0{word-spacing:-19.128267pt;}
.ws2{word-spacing:-13.283467pt;}
.ws67{word-spacing:-3.134898pt;}
.ws3f{word-spacing:-2.922363pt;}
.ws34{word-spacing:-2.709827pt;}
.ws35{word-spacing:-2.656693pt;}
.ws38{word-spacing:-2.550426pt;}
.ws68{word-spacing:-2.284756pt;}
.ws20{word-spacing:-1.859685pt;}
.ws11{word-spacing:-1.647150pt;}
.ws5{word-spacing:-1.381481pt;}
.ws4b{word-spacing:-1.275213pt;}
.ws4d{word-spacing:-1.062677pt;}
.ws65{word-spacing:-0.903276pt;}
.ws17{word-spacing:-0.797008pt;}
.wsb{word-spacing:-0.637606pt;}
.ws26{word-spacing:-0.510086pt;}
.ws4f{word-spacing:-0.478205pt;}
.ws24{word-spacing:-0.425071pt;}
.ws1c{word-spacing:-0.318803pt;}
.ws5d{word-spacing:-0.159402pt;}
.ws3a{word-spacing:-0.106268pt;}
.ws50{word-spacing:-0.053134pt;}
.ws1{word-spacing:0.000000pt;}
.ws58{word-spacing:0.053134pt;}
.ws2f{word-spacing:0.106268pt;}
.wsa{word-spacing:0.159402pt;}
.ws12{word-spacing:0.212535pt;}
.ws2d{word-spacing:0.265669pt;}
.ws3d{word-spacing:0.425071pt;}
.ws5a{word-spacing:0.531339pt;}
.ws37{word-spacing:0.637606pt;}
.ws52{word-spacing:0.743874pt;}
.ws13{word-spacing:0.850142pt;}
.ws4e{word-spacing:1.062677pt;}
.ws25{word-spacing:1.105187pt;}
.ws1f{word-spacing:1.168945pt;}
.ws62{word-spacing:1.594016pt;}
.ws3{word-spacing:1.700284pt;}
.ws21{word-spacing:1.753418pt;}
.ws1e{word-spacing:1.806551pt;}
.ws3e{word-spacing:1.859685pt;}
.ws14{word-spacing:1.912819pt;}
.ws39{word-spacing:2.391024pt;}
.ws33{word-spacing:2.497292pt;}
.wsc{word-spacing:2.603559pt;}
.ws61{word-spacing:2.656693pt;}
.ws41{word-spacing:2.709827pt;}
.ws2b{word-spacing:2.720461pt;}
.ws59{word-spacing:2.816095pt;}
.ws31{word-spacing:2.922363pt;}
.ws27{word-spacing:3.060518pt;}
.ws15{word-spacing:3.134898pt;}
.ws7{word-spacing:3.400567pt;}
.ws4{word-spacing:3.453701pt;}
.ws53{word-spacing:3.506835pt;}
.ws4c{word-spacing:3.559969pt;}
.ws36{word-spacing:3.719371pt;}
.wse{word-spacing:3.772505pt;}
.ws63{word-spacing:3.791361pt;}
.ws40{word-spacing:3.825638pt;}
.ws3b{word-spacing:4.091308pt;}
.ws2c{word-spacing:4.410111pt;}
.ws16{word-spacing:4.782048pt;}
.ws56{word-spacing:4.835182pt;}
.ws8{word-spacing:4.941450pt;}
.ws1d{word-spacing:4.994583pt;}
.wsd{word-spacing:5.313387pt;}
.ws5e{word-spacing:5.366521pt;}
.ws18{word-spacing:5.419654pt;}
.ws3c{word-spacing:5.525922pt;}
.ws44{word-spacing:5.791591pt;}
.ws57{word-spacing:5.897859pt;}
.ws49{word-spacing:5.950993pt;}
.ws1b{word-spacing:6.216662pt;}
.ws48{word-spacing:6.482332pt;}
.ws42{word-spacing:6.535466pt;}
.ws54{word-spacing:6.641733pt;}
.ws6{word-spacing:6.854269pt;}
.ws32{word-spacing:7.013670pt;}
.ws4a{word-spacing:7.226206pt;}
.wsf{word-spacing:7.279340pt;}
.ws51{word-spacing:7.332474pt;}
.ws30{word-spacing:7.385607pt;}
.ws1a{word-spacing:7.545009pt;}
.ws2e{word-spacing:7.863812pt;}
.ws23{word-spacing:8.342017pt;}
.ws19{word-spacing:8.395151pt;}
.ws9{word-spacing:8.660820pt;}
.ws43{word-spacing:8.820222pt;}
.ws47{word-spacing:9.032757pt;}
.ws22{word-spacing:9.723498pt;}
.ws46{word-spacing:10.307970pt;}
.ws69{word-spacing:10.945577pt;}
.ws66{word-spacing:12.327057pt;}
.ws45{word-spacing:13.017797pt;}
.ws60{word-spacing:13.230333pt;}
.ws2a{word-spacing:13.304754pt;}
.ws29{word-spacing:13.687318pt;}
.ws5b{word-spacing:14.664947pt;}
.ws64{word-spacing:17.002837pt;}
.ws5f{word-spacing:18.065515pt;}
.ws10{word-spacing:18.596853pt;}
.ws55{word-spacing:20.137735pt;}
.ws5c{word-spacing:27.895280pt;}
.ws28{word-spacing:27.962746pt;}
._0{margin-left:-7.039202pt;}
._3{margin-left:-5.866018pt;}
._d{margin-left:-4.144442pt;}
._4{margin-left:-2.922363pt;}
._c{margin-left:-1.859685pt;}
._2{margin-left:-0.962133pt;}
._1{width:5.357867pt;}
._16{width:8.873356pt;}
._f{width:13.751069pt;}
._a{width:15.355687pt;}
._18{width:16.312097pt;}
._6{width:17.587310pt;}
._8{width:19.872066pt;}
._17{width:20.775342pt;}
._5{width:21.838019pt;}
._e{width:23.113232pt;}
._7{width:24.122775pt;}
._13{width:25.238587pt;}
._19{width:26.566933pt;}
._11{width:27.682745pt;}
._15{width:28.798556pt;}
._10{width:31.880320pt;}
._12{width:34.005675pt;}
._9{width:37.565644pt;}
._b{width:39.159660pt;}
._14{width:43.038432pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:105.121333pt;}
.y31{bottom:107.853333pt;}
.y30{bottom:121.004000pt;}
.y5b{bottom:121.328000pt;}
.y2f{bottom:134.154667pt;}
.y5a{bottom:137.533333pt;}
.y2e{bottom:147.305333pt;}
.y59{bottom:153.740000pt;}
.y2d{bottom:160.456000pt;}
.y58{bottom:169.945333pt;}
.y2c{bottom:173.606667pt;}
.y89{bottom:183.052000pt;}
.y57{bottom:186.152000pt;}
.y88{bottom:199.257333pt;}
.y56{bottom:202.357333pt;}
.y87{bottom:215.462667pt;}
.y2b{bottom:216.249333pt;}
.y55{bottom:218.562667pt;}
.y86{bottom:231.669333pt;}
.y2a{bottom:232.454667pt;}
.y54{bottom:234.769333pt;}
.y29{bottom:248.661333pt;}
.y53{bottom:250.974667pt;}
.y85{bottom:260.981333pt;}
.y28{bottom:264.866667pt;}
.y52{bottom:267.181333pt;}
.y84{bottom:277.186667pt;}
.y27{bottom:281.073333pt;}
.y51{bottom:283.386667pt;}
.y83{bottom:293.393333pt;}
.y26{bottom:297.278667pt;}
.y50{bottom:299.592000pt;}
.y82{bottom:309.598667pt;}
.y25{bottom:313.485333pt;}
.y4f{bottom:315.798667pt;}
.y81{bottom:325.804000pt;}
.y24{bottom:329.714667pt;}
.y4e{bottom:332.297333pt;}
.y23{bottom:345.921333pt;}
.y4d{bottom:348.502667pt;}
.y80{bottom:355.116000pt;}
.y22{bottom:362.126667pt;}
.y4c{bottom:364.708000pt;}
.y7f{bottom:371.322667pt;}
.y21{bottom:378.333333pt;}
.y4b{bottom:380.914667pt;}
.y7e{bottom:387.528000pt;}
.y20{bottom:394.538667pt;}
.y4a{bottom:397.120000pt;}
.y7d{bottom:403.734667pt;}
.y1f{bottom:410.744000pt;}
.y49{bottom:413.326667pt;}
.y1e{bottom:426.950667pt;}
.y7c{bottom:429.088000pt;}
.y48{bottom:429.532000pt;}
.y1d{bottom:443.156000pt;}
.y47{bottom:445.737333pt;}
.y1c{bottom:459.362667pt;}
.y46{bottom:461.944000pt;}
.y7b{bottom:469.624000pt;}
.y1b{bottom:475.568000pt;}
.y45{bottom:478.149333pt;}
.y7a{bottom:485.829333pt;}
.y1a{bottom:491.774667pt;}
.y44{bottom:494.356000pt;}
.y79{bottom:502.036000pt;}
.y19{bottom:507.980000pt;}
.y43{bottom:510.561333pt;}
.y78{bottom:518.241333pt;}
.y18{bottom:524.185333pt;}
.y42{bottom:526.768000pt;}
.y77{bottom:534.448000pt;}
.y17{bottom:540.392000pt;}
.y41{bottom:542.973333pt;}
.y76{bottom:550.653333pt;}
.y16{bottom:564.614667pt;}
.y75{bottom:566.858667pt;}
.y40{bottom:567.705333pt;}
.y74{bottom:583.065333pt;}
.y3f{bottom:592.436000pt;}
.y73{bottom:599.270667pt;}
.y15{bottom:601.876000pt;}
.y14{bottom:618.082667pt;}
.y72{bottom:624.624000pt;}
.y3e{bottom:631.172000pt;}
.y13{bottom:634.288000pt;}
.y3d{bottom:647.377333pt;}
.y12{bottom:650.494667pt;}
.y3c{bottom:663.582667pt;}
.y71{bottom:665.161333pt;}
.y11{bottom:666.700000pt;}
.y3b{bottom:679.789333pt;}
.y70{bottom:681.366667pt;}
.y10{bottom:682.905333pt;}
.y3a{bottom:695.994667pt;}
.y6f{bottom:697.572000pt;}
.yf{bottom:699.112000pt;}
.y39{bottom:712.201333pt;}
.y6e{bottom:713.778667pt;}
.ye{bottom:715.317333pt;}
.y38{bottom:728.406667pt;}
.y6d{bottom:729.984000pt;}
.yd{bottom:731.524000pt;}
.y37{bottom:744.613333pt;}
.y6c{bottom:746.190667pt;}
.yc{bottom:747.729333pt;}
.y36{bottom:760.818667pt;}
.y6b{bottom:762.396000pt;}
.yb{bottom:763.934667pt;}
.y35{bottom:777.024000pt;}
.y6a{bottom:778.601333pt;}
.ya{bottom:780.141333pt;}
.y34{bottom:793.230667pt;}
.y69{bottom:794.808000pt;}
.y9{bottom:796.346667pt;}
.y33{bottom:809.436000pt;}
.y8{bottom:812.553333pt;}
.y68{bottom:820.161333pt;}
.y32{bottom:825.934667pt;}
.y7{bottom:842.140000pt;}
.y67{bottom:854.720000pt;}
.y66{bottom:870.925333pt;}
.y65{bottom:887.132000pt;}
.y6{bottom:900.853333pt;}
.y64{bottom:912.485333pt;}
.y5{bottom:925.234667pt;}
.y4{bottom:943.832000pt;}
.y63{bottom:947.044000pt;}
.y3{bottom:956.644000pt;}
.y62{bottom:963.249333pt;}
.y2{bottom:975.241333pt;}
.y61{bottom:979.456000pt;}
.y60{bottom:995.661333pt;}
.y5f{bottom:1011.868000pt;}
.y1{bottom:1023.025333pt;}
.y5e{bottom:1028.073333pt;}
.y5d{bottom:1044.278667pt;}
.y8a{bottom:1044.280000pt;}
.h6{height:28.267288pt;}
.ha{height:29.244954pt;}
.h7{height:29.840179pt;}
.hb{height:30.307634pt;}
.hc{height:36.290431pt;}
.h9{height:36.556100pt;}
.h8{height:37.884447pt;}
.h3{height:46.224307pt;}
.h4{height:51.403288pt;}
.h5{height:51.408621pt;}
.h2{height:54.553817pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:71.117333pt;}
.x9{left:73.322667pt;}
.xb{left:89.262667pt;}
.x13{left:93.248000pt;}
.xc{left:130.016000pt;}
.x10{left:146.212000pt;}
.xa{left:166.382667pt;}
.x11{left:174.665333pt;}
.x5{left:187.906667pt;}
.x8{left:192.484000pt;}
.x2{left:215.292000pt;}
.x3{left:247.173333pt;}
.x4{left:260.386667pt;}
.x1{left:286.597333pt;}
.x7{left:319.458667pt;}
.x6{left:366.546667pt;}
.x14{left:411.274667pt;}
.xd{left:413.480000pt;}
.xe{left:429.420000pt;}
.x15{left:433.405333pt;}
.xf{left:494.538667pt;}
}




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