
    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_7b018a8739b84db2be60fe03.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_3a99f916bcac605e01f8604a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_db0f7e16b6d2493b8bc289ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
.ws32{word-spacing:0.016074px;}
.ws3c{word-spacing:0.034422px;}
.ws4{word-spacing:0.102732px;}
.ws23{word-spacing:0.273534px;}
.ws48{word-spacing:0.478926px;}
.ws49{word-spacing:0.526242px;}
.wsc{word-spacing:0.715242px;}
.ws24{word-spacing:0.815394px;}
.ws6{word-spacing:0.888960px;}
.wsa{word-spacing:1.015842px;}
.ws14{word-spacing:1.378794px;}
.ws1b{word-spacing:1.438968px;}
.ws31{word-spacing:1.451826px;}
.ws4a{word-spacing:1.493172px;}
.wsf{word-spacing:1.503930px;}
.ws38{word-spacing:1.590762px;}
.ws34{word-spacing:1.631826px;}
.ws29{word-spacing:1.661304px;}
.ws26{word-spacing:1.822242px;}
.ws4b{word-spacing:1.939080px;}
.ws46{word-spacing:2.310672px;}
.ws10{word-spacing:2.315262px;}
.ws9{word-spacing:2.416242px;}
.ws1c{word-spacing:2.421642px;}
.ws33{word-spacing:2.512062px;}
.ws28{word-spacing:2.519004px;}
.ws15{word-spacing:2.523786px;}
.ws17{word-spacing:2.538642px;}
.ws11{word-spacing:2.603928px;}
.ws2e{word-spacing:2.625042px;}
.ws35{word-spacing:2.702262px;}
.ws2d{word-spacing:2.743740px;}
.ws3e{word-spacing:2.804466px;}
.ws18{word-spacing:2.821770px;}
.ws20{word-spacing:2.892264px;}
.ws2c{word-spacing:2.957004px;}
.ws42{word-spacing:3.054144px;}
.ws3d{word-spacing:3.066570px;}
.ws45{word-spacing:3.089364px;}
.ws3b{word-spacing:3.130842px;}
.ws19{word-spacing:3.165594px;}
.ws30{word-spacing:3.250044px;}
.wse{word-spacing:3.484656px;}
.ws12{word-spacing:3.720594px;}
.wsd{word-spacing:3.729828px;}
.ws3a{word-spacing:3.771966px;}
.ws4c{word-spacing:3.969228px;}
.ws25{word-spacing:4.055808px;}
.ws37{word-spacing:4.355892px;}
.ws21{word-spacing:4.418310px;}
.ws8{word-spacing:4.515042px;}
.ws41{word-spacing:4.540428px;}
.ws47{word-spacing:4.582872px;}
.ws39{word-spacing:4.613172px;}
.ws22{word-spacing:4.708794px;}
.ws7{word-spacing:5.015592px;}
.wsb{word-spacing:5.134824px;}
.ws2{word-spacing:5.270052px;}
.ws1a{word-spacing:5.300592px;}
.ws16{word-spacing:5.361570px;}
.ws13{word-spacing:5.370048px;}
.ws4e{word-spacing:5.499336px;}
.ws27{word-spacing:5.507928px;}
.ws1e{word-spacing:5.561136px;}
.ws3f{word-spacing:5.821488px;}
.ws1d{word-spacing:5.822094px;}
.ws36{word-spacing:5.903526px;}
.ws2f{word-spacing:6.111642px;}
.ws1f{word-spacing:6.122652px;}
.ws2b{word-spacing:6.594528px;}
.ws5{word-spacing:6.734364px;}
.ws43{word-spacing:6.977652px;}
.ws40{word-spacing:7.050762px;}
.ws1{word-spacing:7.875732px;}
.ws3{word-spacing:8.778054px;}
.ws4d{word-spacing:8.815242px;}
.ws44{word-spacing:10.232544px;}
.ws2a{word-spacing:10.483686px;}
.ws4f{word-spacing:10.987542px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(169,169,169);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:33.750000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:45.000000px;}
.fs3{font-size:55.395000px;}
.fs0{font-size:62.325000px;}
.y0{bottom:0.000000px;}
.y65{bottom:58.737465px;}
.y95{bottom:59.487465px;}
.y34{bottom:71.063715px;}
.y64{bottom:75.612465px;}
.y63{bottom:92.487465px;}
.y94{bottom:96.237465px;}
.y33{bottom:102.188715px;}
.y93{bottom:113.112465px;}
.y32{bottom:119.063715px;}
.y62{bottom:123.612465px;}
.y92{bottom:129.987465px;}
.y61{bottom:140.487465px;}
.y31{bottom:150.188715px;}
.y60{bottom:157.362465px;}
.y99{bottom:160.047465px;}
.y91{bottom:161.112450px;}
.y30{bottom:167.063715px;}
.y5f{bottom:188.487450px;}
.y90{bottom:192.237450px;}
.y2f{bottom:198.188700px;}
.y5e{bottom:205.362450px;}
.y8f{bottom:209.112450px;}
.y5d{bottom:222.237450px;}
.y2e{bottom:229.313700px;}
.y8e{bottom:240.237450px;}
.y2d{bottom:246.188700px;}
.y5c{bottom:253.362450px;}
.y8d{bottom:257.112450px;}
.y2c{bottom:263.063700px;}
.y5b{bottom:270.237450px;}
.y2b{bottom:279.938700px;}
.y8c{bottom:288.237450px;}
.y2a{bottom:296.813700px;}
.y5a{bottom:301.362450px;}
.y29{bottom:313.688700px;}
.y59{bottom:318.237450px;}
.y8b{bottom:319.362450px;}
.y28{bottom:330.563700px;}
.y58{bottom:335.112450px;}
.y27{bottom:347.438700px;}
.y8a{bottom:350.487450px;}
.y57{bottom:351.987450px;}
.y56{bottom:368.862450px;}
.y26{bottom:378.563700px;}
.y89{bottom:381.612450px;}
.y55{bottom:385.737450px;}
.y25{bottom:395.438700px;}
.y54{bottom:402.612450px;}
.y24{bottom:412.313700px;}
.y88{bottom:412.737450px;}
.y23{bottom:429.188700px;}
.y98{bottom:430.501200px;}
.y53{bottom:433.737450px;}
.y87{bottom:443.862450px;}
.y52{bottom:450.612450px;}
.y22{bottom:460.313700px;}
.y86{bottom:460.737450px;}
.y51{bottom:467.487450px;}
.y85{bottom:477.612450px;}
.y50{bottom:484.362450px;}
.y21{bottom:491.438700px;}
.y84{bottom:494.487450px;}
.y20{bottom:508.313700px;}
.y4f{bottom:515.487450px;}
.y1f{bottom:525.188700px;}
.y83{bottom:525.612450px;}
.y4e{bottom:532.362450px;}
.y1e{bottom:542.063700px;}
.y4d{bottom:549.237450px;}
.y82{bottom:556.737450px;}
.y4c{bottom:566.112450px;}
.y1d{bottom:573.188700px;}
.y4b{bottom:582.987450px;}
.y81{bottom:587.862450px;}
.y1c{bottom:590.063700px;}
.y4a{bottom:599.862450px;}
.y80{bottom:604.737450px;}
.y1b{bottom:606.938700px;}
.y1a{bottom:623.813700px;}
.y49{bottom:630.987450px;}
.y7f{bottom:635.862450px;}
.y7e{bottom:652.737450px;}
.y19{bottom:654.938700px;}
.y48{bottom:662.112450px;}
.y18{bottom:671.813700px;}
.y47{bottom:678.987450px;}
.y7d{bottom:683.862450px;}
.y17{bottom:688.688700px;}
.y7c{bottom:700.737450px;}
.y97{bottom:700.954950px;}
.y16{bottom:705.563700px;}
.y46{bottom:710.112450px;}
.y7b{bottom:717.612450px;}
.y15{bottom:722.438700px;}
.y7a{bottom:734.487450px;}
.y14{bottom:739.313700px;}
.y45{bottom:741.237450px;}
.y79{bottom:751.362450px;}
.y13{bottom:756.188700px;}
.y78{bottom:768.237450px;}
.y44{bottom:772.362450px;}
.y12{bottom:773.063700px;}
.y77{bottom:785.112450px;}
.y11{bottom:789.938700px;}
.y76{bottom:801.987450px;}
.y43{bottom:803.487450px;}
.y75{bottom:833.112450px;}
.y42{bottom:834.612450px;}
.y10{bottom:852.188700px;}
.y9d{bottom:856.024200px;}
.y74{bottom:864.237450px;}
.y41{bottom:865.737450px;}
.yf{bottom:869.063700px;}
.y9c{bottom:869.524200px;}
.y73{bottom:881.112450px;}
.y9b{bottom:883.024200px;}
.ye{bottom:885.938700px;}
.y40{bottom:896.862450px;}
.y72{bottom:897.987450px;}
.yd{bottom:902.813700px;}
.y71{bottom:914.862450px;}
.yc{bottom:919.688700px;}
.y3f{bottom:927.987450px;}
.y70{bottom:931.737450px;}
.yb{bottom:936.563700px;}
.y9a{bottom:940.283700px;}
.y3e{bottom:959.112450px;}
.y6f{bottom:962.862450px;}
.ya{bottom:967.688700px;}
.y96{bottom:971.408700px;}
.y6e{bottom:979.737450px;}
.y3d{bottom:990.237450px;}
.y6d{bottom:996.612450px;}
.y9{bottom:998.813700px;}
.y6c{bottom:1013.487450px;}
.y8{bottom:1015.688700px;}
.y3c{bottom:1021.362450px;}
.y7{bottom:1032.563700px;}
.y6b{bottom:1044.612450px;}
.y3b{bottom:1052.487450px;}
.y6a{bottom:1061.487450px;}
.y6{bottom:1068.319673px;}
.y69{bottom:1078.362450px;}
.y3a{bottom:1083.612450px;}
.y68{bottom:1095.237450px;}
.y5{bottom:1105.928775px;}
.y67{bottom:1112.112450px;}
.y39{bottom:1114.737450px;}
.y66{bottom:1128.987450px;}
.y4{bottom:1135.034400px;}
.y38{bottom:1145.862450px;}
.y3{bottom:1151.909400px;}
.y37{bottom:1162.737450px;}
.y2{bottom:1168.784400px;}
.y36{bottom:1193.862450px;}
.y1{bottom:1207.627695px;}
.y35{bottom:1210.737450px;}
.h4{height:35.200195px;}
.h6{height:37.546875px;}
.h3{height:46.933594px;}
.h5{height:57.775254px;}
.h2{height:65.003027px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:44.019690px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws32{word-spacing:0.014288pt;}
.ws3c{word-spacing:0.030597pt;}
.ws4{word-spacing:0.091317pt;}
.ws23{word-spacing:0.243141pt;}
.ws48{word-spacing:0.425712pt;}
.ws49{word-spacing:0.467771pt;}
.wsc{word-spacing:0.635771pt;}
.ws24{word-spacing:0.724795pt;}
.ws6{word-spacing:0.790187pt;}
.wsa{word-spacing:0.902971pt;}
.ws14{word-spacing:1.225595pt;}
.ws1b{word-spacing:1.279083pt;}
.ws31{word-spacing:1.290512pt;}
.ws4a{word-spacing:1.327264pt;}
.wsf{word-spacing:1.336827pt;}
.ws38{word-spacing:1.414011pt;}
.ws34{word-spacing:1.450512pt;}
.ws29{word-spacing:1.476715pt;}
.ws26{word-spacing:1.619771pt;}
.ws4b{word-spacing:1.723627pt;}
.ws46{word-spacing:2.053931pt;}
.ws10{word-spacing:2.058011pt;}
.ws9{word-spacing:2.147771pt;}
.ws1c{word-spacing:2.152571pt;}
.ws33{word-spacing:2.232944pt;}
.ws28{word-spacing:2.239115pt;}
.ws15{word-spacing:2.243365pt;}
.ws17{word-spacing:2.256571pt;}
.ws11{word-spacing:2.314603pt;}
.ws2e{word-spacing:2.333371pt;}
.ws35{word-spacing:2.402011pt;}
.ws2d{word-spacing:2.438880pt;}
.ws3e{word-spacing:2.492859pt;}
.ws18{word-spacing:2.508240pt;}
.ws20{word-spacing:2.570901pt;}
.ws2c{word-spacing:2.628448pt;}
.ws42{word-spacing:2.714795pt;}
.ws3d{word-spacing:2.725840pt;}
.ws45{word-spacing:2.746101pt;}
.ws3b{word-spacing:2.782971pt;}
.ws19{word-spacing:2.813861pt;}
.ws30{word-spacing:2.888928pt;}
.wse{word-spacing:3.097472pt;}
.ws12{word-spacing:3.307195pt;}
.wsd{word-spacing:3.315403pt;}
.ws3a{word-spacing:3.352859pt;}
.ws4c{word-spacing:3.528203pt;}
.ws25{word-spacing:3.605163pt;}
.ws37{word-spacing:3.871904pt;}
.ws21{word-spacing:3.927387pt;}
.ws8{word-spacing:4.013371pt;}
.ws41{word-spacing:4.035936pt;}
.ws47{word-spacing:4.073664pt;}
.ws39{word-spacing:4.100597pt;}
.ws22{word-spacing:4.185595pt;}
.ws7{word-spacing:4.458304pt;}
.wsb{word-spacing:4.564288pt;}
.ws2{word-spacing:4.684491pt;}
.ws1a{word-spacing:4.711637pt;}
.ws16{word-spacing:4.765840pt;}
.ws13{word-spacing:4.773376pt;}
.ws4e{word-spacing:4.888299pt;}
.ws27{word-spacing:4.895936pt;}
.ws1e{word-spacing:4.943232pt;}
.ws3f{word-spacing:5.174656pt;}
.ws1d{word-spacing:5.175195pt;}
.ws36{word-spacing:5.247579pt;}
.ws2f{word-spacing:5.432571pt;}
.ws1f{word-spacing:5.442357pt;}
.ws2b{word-spacing:5.861803pt;}
.ws5{word-spacing:5.986101pt;}
.ws43{word-spacing:6.202357pt;}
.ws40{word-spacing:6.267344pt;}
.ws1{word-spacing:7.000651pt;}
.ws3{word-spacing:7.802715pt;}
.ws4d{word-spacing:7.835771pt;}
.ws44{word-spacing:9.095595pt;}
.ws2a{word-spacing:9.318832pt;}
.ws4f{word-spacing:9.766704pt;}
.fs2{font-size:30.000000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:40.000000pt;}
.fs3{font-size:49.240000pt;}
.fs0{font-size:55.400000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:52.211080pt;}
.y95{bottom:52.877747pt;}
.y34{bottom:63.167747pt;}
.y64{bottom:67.211080pt;}
.y63{bottom:82.211080pt;}
.y94{bottom:85.544413pt;}
.y33{bottom:90.834413pt;}
.y93{bottom:100.544413pt;}
.y32{bottom:105.834413pt;}
.y62{bottom:109.877747pt;}
.y92{bottom:115.544413pt;}
.y61{bottom:124.877747pt;}
.y31{bottom:133.501080pt;}
.y60{bottom:139.877747pt;}
.y99{bottom:142.264413pt;}
.y91{bottom:143.211067pt;}
.y30{bottom:148.501080pt;}
.y5f{bottom:167.544400pt;}
.y90{bottom:170.877733pt;}
.y2f{bottom:176.167733pt;}
.y5e{bottom:182.544400pt;}
.y8f{bottom:185.877733pt;}
.y5d{bottom:197.544400pt;}
.y2e{bottom:203.834400pt;}
.y8e{bottom:213.544400pt;}
.y2d{bottom:218.834400pt;}
.y5c{bottom:225.211067pt;}
.y8d{bottom:228.544400pt;}
.y2c{bottom:233.834400pt;}
.y5b{bottom:240.211067pt;}
.y2b{bottom:248.834400pt;}
.y8c{bottom:256.211067pt;}
.y2a{bottom:263.834400pt;}
.y5a{bottom:267.877733pt;}
.y29{bottom:278.834400pt;}
.y59{bottom:282.877733pt;}
.y8b{bottom:283.877733pt;}
.y28{bottom:293.834400pt;}
.y58{bottom:297.877733pt;}
.y27{bottom:308.834400pt;}
.y8a{bottom:311.544400pt;}
.y57{bottom:312.877733pt;}
.y56{bottom:327.877733pt;}
.y26{bottom:336.501067pt;}
.y89{bottom:339.211067pt;}
.y55{bottom:342.877733pt;}
.y25{bottom:351.501067pt;}
.y54{bottom:357.877733pt;}
.y24{bottom:366.501067pt;}
.y88{bottom:366.877733pt;}
.y23{bottom:381.501067pt;}
.y98{bottom:382.667733pt;}
.y53{bottom:385.544400pt;}
.y87{bottom:394.544400pt;}
.y52{bottom:400.544400pt;}
.y22{bottom:409.167733pt;}
.y86{bottom:409.544400pt;}
.y51{bottom:415.544400pt;}
.y85{bottom:424.544400pt;}
.y50{bottom:430.544400pt;}
.y21{bottom:436.834400pt;}
.y84{bottom:439.544400pt;}
.y20{bottom:451.834400pt;}
.y4f{bottom:458.211067pt;}
.y1f{bottom:466.834400pt;}
.y83{bottom:467.211067pt;}
.y4e{bottom:473.211067pt;}
.y1e{bottom:481.834400pt;}
.y4d{bottom:488.211067pt;}
.y82{bottom:494.877733pt;}
.y4c{bottom:503.211067pt;}
.y1d{bottom:509.501067pt;}
.y4b{bottom:518.211067pt;}
.y81{bottom:522.544400pt;}
.y1c{bottom:524.501067pt;}
.y4a{bottom:533.211067pt;}
.y80{bottom:537.544400pt;}
.y1b{bottom:539.501067pt;}
.y1a{bottom:554.501067pt;}
.y49{bottom:560.877733pt;}
.y7f{bottom:565.211067pt;}
.y7e{bottom:580.211067pt;}
.y19{bottom:582.167733pt;}
.y48{bottom:588.544400pt;}
.y18{bottom:597.167733pt;}
.y47{bottom:603.544400pt;}
.y7d{bottom:607.877733pt;}
.y17{bottom:612.167733pt;}
.y7c{bottom:622.877733pt;}
.y97{bottom:623.071067pt;}
.y16{bottom:627.167733pt;}
.y46{bottom:631.211067pt;}
.y7b{bottom:637.877733pt;}
.y15{bottom:642.167733pt;}
.y7a{bottom:652.877733pt;}
.y14{bottom:657.167733pt;}
.y45{bottom:658.877733pt;}
.y79{bottom:667.877733pt;}
.y13{bottom:672.167733pt;}
.y78{bottom:682.877733pt;}
.y44{bottom:686.544400pt;}
.y12{bottom:687.167733pt;}
.y77{bottom:697.877733pt;}
.y11{bottom:702.167733pt;}
.y76{bottom:712.877733pt;}
.y43{bottom:714.211067pt;}
.y75{bottom:740.544400pt;}
.y42{bottom:741.877733pt;}
.y10{bottom:757.501067pt;}
.y9d{bottom:760.910400pt;}
.y74{bottom:768.211067pt;}
.y41{bottom:769.544400pt;}
.yf{bottom:772.501067pt;}
.y9c{bottom:772.910400pt;}
.y73{bottom:783.211067pt;}
.y9b{bottom:784.910400pt;}
.ye{bottom:787.501067pt;}
.y40{bottom:797.211067pt;}
.y72{bottom:798.211067pt;}
.yd{bottom:802.501067pt;}
.y71{bottom:813.211067pt;}
.yc{bottom:817.501067pt;}
.y3f{bottom:824.877733pt;}
.y70{bottom:828.211067pt;}
.yb{bottom:832.501067pt;}
.y9a{bottom:835.807733pt;}
.y3e{bottom:852.544400pt;}
.y6f{bottom:855.877733pt;}
.ya{bottom:860.167733pt;}
.y96{bottom:863.474400pt;}
.y6e{bottom:870.877733pt;}
.y3d{bottom:880.211067pt;}
.y6d{bottom:885.877733pt;}
.y9{bottom:887.834400pt;}
.y6c{bottom:900.877733pt;}
.y8{bottom:902.834400pt;}
.y3c{bottom:907.877733pt;}
.y7{bottom:917.834400pt;}
.y6b{bottom:928.544400pt;}
.y3b{bottom:935.544400pt;}
.y6a{bottom:943.544400pt;}
.y6{bottom:949.617487pt;}
.y69{bottom:958.544400pt;}
.y3a{bottom:963.211067pt;}
.y68{bottom:973.544400pt;}
.y5{bottom:983.047800pt;}
.y67{bottom:988.544400pt;}
.y39{bottom:990.877733pt;}
.y66{bottom:1003.544400pt;}
.y4{bottom:1008.919467pt;}
.y38{bottom:1018.544400pt;}
.y3{bottom:1023.919467pt;}
.y37{bottom:1033.544400pt;}
.y2{bottom:1038.919467pt;}
.y36{bottom:1061.211067pt;}
.y1{bottom:1073.446840pt;}
.y35{bottom:1076.211067pt;}
.h4{height:31.289062pt;}
.h6{height:33.375000pt;}
.h3{height:41.718750pt;}
.h5{height:51.355781pt;}
.h2{height:57.780469pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:39.128613pt;}
}




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