
    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_add3af7cb3b555f4eb4f8a24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_97ec643bdace11d44b443842.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_a45e6522f5f51d20acffdf0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_5dd2c53879276f8907199e17.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_6fc061184fe516956db14fd7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_97289697d359b2ca38979a71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_5d388cd77099f412edc130ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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:ff8;src:url('chunks/assets/font_8030ee21f830baaf6284bf43.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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:ff9;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.360000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.450800px;}
.ws6{word-spacing:-13.860000px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-850.500000px;}
._25{margin-left:-543.132000px;}
._24{margin-left:-525.540000px;}
._5{margin-left:-6.552000px;}
._c{margin-left:-5.328000px;}
._3{margin-left:-4.092000px;}
._17{margin-left:-2.232000px;}
._1{margin-left:-1.188000px;}
._0{width:1.284000px;}
._19{width:2.400000px;}
._16{width:3.672000px;}
._11{width:5.544000px;}
._14{width:6.588000px;}
._b{width:7.788000px;}
._18{width:8.820000px;}
._d{width:9.840000px;}
._a{width:11.592000px;}
._e{width:12.600000px;}
._13{width:13.680000px;}
._1e{width:14.988000px;}
._1b{width:16.416000px;}
._12{width:19.512000px;}
._4{width:21.204000px;}
._15{width:23.436000px;}
._2{width:25.020000px;}
._1c{width:26.784000px;}
._1d{width:28.020000px;}
._27{width:29.364000px;}
._20{width:30.816000px;}
._1f{width:32.544000px;}
._26{width:35.292000px;}
._21{width:36.504000px;}
._22{width:37.524000px;}
._8{width:39.672000px;}
._9{width:40.980000px;}
._6{width:45.360000px;}
._7{width:46.800000px;}
._10{width:84.996000px;}
._f{width:86.184000px;}
._1a{width:798.096000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.880000px;}
.y2{bottom:73.260000px;}
.y55{bottom:146.160000px;}
.y2b{bottom:148.320000px;}
.y54{bottom:166.860000px;}
.y2a{bottom:169.020000px;}
.y6d{bottom:169.560000px;}
.y53{bottom:187.590000px;}
.y29{bottom:189.750000px;}
.y6c{bottom:190.290000px;}
.y52{bottom:208.290000px;}
.y28{bottom:210.450000px;}
.y6b{bottom:210.990000px;}
.y51{bottom:228.990000px;}
.y27{bottom:231.150000px;}
.y6a{bottom:231.690000px;}
.y50{bottom:249.690000px;}
.y26{bottom:251.850000px;}
.y69{bottom:261.390000px;}
.y25{bottom:272.550000px;}
.y4f{bottom:279.390000px;}
.y68{bottom:282.090000px;}
.y4e{bottom:300.090000px;}
.y24{bottom:302.250000px;}
.y67{bottom:302.790000px;}
.y4d{bottom:320.790000px;}
.y23{bottom:322.950000px;}
.y66{bottom:323.490000px;}
.y4c{bottom:341.490000px;}
.y22{bottom:343.650000px;}
.y65{bottom:344.190000px;}
.y4b{bottom:362.190000px;}
.y21{bottom:364.350000px;}
.y64{bottom:364.890000px;}
.y4a{bottom:382.890000px;}
.y20{bottom:385.050000px;}
.y63{bottom:385.590000px;}
.y49{bottom:403.635000px;}
.y1f{bottom:405.795000px;}
.y62{bottom:406.335000px;}
.y48{bottom:424.335000px;}
.y1e{bottom:426.495000px;}
.y61{bottom:427.035000px;}
.y47{bottom:445.035000px;}
.y1d{bottom:447.195000px;}
.y60{bottom:447.735000px;}
.y46{bottom:465.735000px;}
.y1c{bottom:467.895000px;}
.y5f{bottom:468.435000px;}
.y45{bottom:486.435000px;}
.y1b{bottom:488.595000px;}
.y5e{bottom:488.955000px;}
.y44{bottom:506.955000px;}
.y1a{bottom:509.295000px;}
.y5d{bottom:518.655000px;}
.y43{bottom:527.655000px;}
.y19{bottom:529.995000px;}
.y5c{bottom:539.355000px;}
.y42{bottom:548.355000px;}
.y18{bottom:550.695000px;}
.y5b{bottom:560.055000px;}
.y41{bottom:569.055000px;}
.y17{bottom:571.395000px;}
.y7f{bottom:576.435000px;}
.y5a{bottom:580.755000px;}
.y40{bottom:589.755000px;}
.y7e{bottom:595.695000px;}
.y16{bottom:601.095000px;}
.y59{bottom:601.455000px;}
.y3f{bottom:610.455000px;}
.y7d{bottom:614.625000px;}
.y15{bottom:621.825000px;}
.y58{bottom:622.185000px;}
.y3e{bottom:631.185000px;}
.y7c{bottom:633.885000px;}
.y14{bottom:642.525000px;}
.y57{bottom:642.885000px;}
.y3d{bottom:651.885000px;}
.y13{bottom:663.225000px;}
.y56{bottom:663.585000px;}
.y3c{bottom:672.585000px;}
.y12{bottom:683.925000px;}
.y7b{bottom:684.285000px;}
.y3b{bottom:693.285000px;}
.y11{bottom:704.625000px;}
.y7a{bottom:704.985000px;}
.y3a{bottom:713.985000px;}
.y10{bottom:725.325000px;}
.y79{bottom:725.685000px;}
.y39{bottom:734.685000px;}
.yf{bottom:746.025000px;}
.y78{bottom:746.385000px;}
.y38{bottom:755.385000px;}
.ye{bottom:766.725000px;}
.y77{bottom:767.085000px;}
.y37{bottom:776.085000px;}
.y76{bottom:787.785000px;}
.yd{bottom:796.425000px;}
.y36{bottom:796.785000px;}
.y75{bottom:808.485000px;}
.yc{bottom:817.125000px;}
.y35{bottom:817.485000px;}
.y74{bottom:829.230000px;}
.yb{bottom:837.690000px;}
.y34{bottom:838.230000px;}
.y73{bottom:849.930000px;}
.ya{bottom:858.390000px;}
.y33{bottom:858.930000px;}
.y72{bottom:870.630000px;}
.y9{bottom:879.090000px;}
.y32{bottom:879.630000px;}
.y71{bottom:891.330000px;}
.y8{bottom:899.790000px;}
.y31{bottom:900.330000px;}
.y70{bottom:912.030000px;}
.y7{bottom:920.490000px;}
.y30{bottom:921.030000px;}
.y6f{bottom:932.730000px;}
.y6{bottom:941.190000px;}
.y2f{bottom:941.730000px;}
.y6e{bottom:953.430000px;}
.y2e{bottom:962.430000px;}
.y5{bottom:980.070000px;}
.y2d{bottom:983.130000px;}
.y4{bottom:1003.830000px;}
.y1{bottom:1077.480000px;}
.y2c{bottom:1081.620000px;}
.h8{height:38.100586px;}
.h3{height:47.381836px;}
.h4{height:49.908867px;}
.h6{height:50.800781px;}
.h5{height:51.996094px;}
.ha{height:55.825312px;}
.h9{height:58.121719px;}
.h2{height:63.175781px;}
.h7{height:69.687773px;}
.h0{height:1148.220000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x1{left:127.655988px;}
.x4{left:180.749988px;}
.x2{left:325.694988px;}
.x3{left:378.794988px;}
.x7{left:484.484988px;}
.x8{left:544.784988px;}
.x6{left:564.944988px;}
.x5{left:660.389988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.320000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.622933pt;}
.ws6{word-spacing:-12.320000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-756.000000pt;}
._25{margin-left:-482.784000pt;}
._24{margin-left:-467.146667pt;}
._5{margin-left:-5.824000pt;}
._c{margin-left:-4.736000pt;}
._3{margin-left:-3.637333pt;}
._17{margin-left:-1.984000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.141333pt;}
._19{width:2.133333pt;}
._16{width:3.264000pt;}
._11{width:4.928000pt;}
._14{width:5.856000pt;}
._b{width:6.922667pt;}
._18{width:7.840000pt;}
._d{width:8.746667pt;}
._a{width:10.304000pt;}
._e{width:11.200000pt;}
._13{width:12.160000pt;}
._1e{width:13.322667pt;}
._1b{width:14.592000pt;}
._12{width:17.344000pt;}
._4{width:18.848000pt;}
._15{width:20.832000pt;}
._2{width:22.240000pt;}
._1c{width:23.808000pt;}
._1d{width:24.906667pt;}
._27{width:26.101333pt;}
._20{width:27.392000pt;}
._1f{width:28.928000pt;}
._26{width:31.370667pt;}
._21{width:32.448000pt;}
._22{width:33.354667pt;}
._8{width:35.264000pt;}
._9{width:36.426667pt;}
._6{width:40.320000pt;}
._7{width:41.600000pt;}
._10{width:75.552000pt;}
._f{width:76.608000pt;}
._1a{width:709.418667pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.560000pt;}
.y2{bottom:65.120000pt;}
.y55{bottom:129.920000pt;}
.y2b{bottom:131.840000pt;}
.y54{bottom:148.320000pt;}
.y2a{bottom:150.240000pt;}
.y6d{bottom:150.720000pt;}
.y53{bottom:166.746667pt;}
.y29{bottom:168.666667pt;}
.y6c{bottom:169.146667pt;}
.y52{bottom:185.146667pt;}
.y28{bottom:187.066667pt;}
.y6b{bottom:187.546667pt;}
.y51{bottom:203.546667pt;}
.y27{bottom:205.466667pt;}
.y6a{bottom:205.946667pt;}
.y50{bottom:221.946667pt;}
.y26{bottom:223.866667pt;}
.y69{bottom:232.346667pt;}
.y25{bottom:242.266667pt;}
.y4f{bottom:248.346667pt;}
.y68{bottom:250.746667pt;}
.y4e{bottom:266.746667pt;}
.y24{bottom:268.666667pt;}
.y67{bottom:269.146667pt;}
.y4d{bottom:285.146667pt;}
.y23{bottom:287.066667pt;}
.y66{bottom:287.546667pt;}
.y4c{bottom:303.546667pt;}
.y22{bottom:305.466667pt;}
.y65{bottom:305.946667pt;}
.y4b{bottom:321.946667pt;}
.y21{bottom:323.866667pt;}
.y64{bottom:324.346667pt;}
.y4a{bottom:340.346667pt;}
.y20{bottom:342.266667pt;}
.y63{bottom:342.746667pt;}
.y49{bottom:358.786667pt;}
.y1f{bottom:360.706667pt;}
.y62{bottom:361.186667pt;}
.y48{bottom:377.186667pt;}
.y1e{bottom:379.106667pt;}
.y61{bottom:379.586667pt;}
.y47{bottom:395.586667pt;}
.y1d{bottom:397.506667pt;}
.y60{bottom:397.986667pt;}
.y46{bottom:413.986667pt;}
.y1c{bottom:415.906667pt;}
.y5f{bottom:416.386667pt;}
.y45{bottom:432.386667pt;}
.y1b{bottom:434.306667pt;}
.y5e{bottom:434.626667pt;}
.y44{bottom:450.626667pt;}
.y1a{bottom:452.706667pt;}
.y5d{bottom:461.026667pt;}
.y43{bottom:469.026667pt;}
.y19{bottom:471.106667pt;}
.y5c{bottom:479.426667pt;}
.y42{bottom:487.426667pt;}
.y18{bottom:489.506667pt;}
.y5b{bottom:497.826667pt;}
.y41{bottom:505.826667pt;}
.y17{bottom:507.906667pt;}
.y7f{bottom:512.386667pt;}
.y5a{bottom:516.226667pt;}
.y40{bottom:524.226667pt;}
.y7e{bottom:529.506667pt;}
.y16{bottom:534.306667pt;}
.y59{bottom:534.626667pt;}
.y3f{bottom:542.626667pt;}
.y7d{bottom:546.333333pt;}
.y15{bottom:552.733333pt;}
.y58{bottom:553.053333pt;}
.y3e{bottom:561.053333pt;}
.y7c{bottom:563.453333pt;}
.y14{bottom:571.133333pt;}
.y57{bottom:571.453333pt;}
.y3d{bottom:579.453333pt;}
.y13{bottom:589.533333pt;}
.y56{bottom:589.853333pt;}
.y3c{bottom:597.853333pt;}
.y12{bottom:607.933333pt;}
.y7b{bottom:608.253333pt;}
.y3b{bottom:616.253333pt;}
.y11{bottom:626.333333pt;}
.y7a{bottom:626.653333pt;}
.y3a{bottom:634.653333pt;}
.y10{bottom:644.733333pt;}
.y79{bottom:645.053333pt;}
.y39{bottom:653.053333pt;}
.yf{bottom:663.133333pt;}
.y78{bottom:663.453333pt;}
.y38{bottom:671.453333pt;}
.ye{bottom:681.533333pt;}
.y77{bottom:681.853333pt;}
.y37{bottom:689.853333pt;}
.y76{bottom:700.253333pt;}
.yd{bottom:707.933333pt;}
.y36{bottom:708.253333pt;}
.y75{bottom:718.653333pt;}
.yc{bottom:726.333333pt;}
.y35{bottom:726.653333pt;}
.y74{bottom:737.093333pt;}
.yb{bottom:744.613333pt;}
.y34{bottom:745.093333pt;}
.y73{bottom:755.493333pt;}
.ya{bottom:763.013333pt;}
.y33{bottom:763.493333pt;}
.y72{bottom:773.893333pt;}
.y9{bottom:781.413333pt;}
.y32{bottom:781.893333pt;}
.y71{bottom:792.293333pt;}
.y8{bottom:799.813333pt;}
.y31{bottom:800.293333pt;}
.y70{bottom:810.693333pt;}
.y7{bottom:818.213333pt;}
.y30{bottom:818.693333pt;}
.y6f{bottom:829.093333pt;}
.y6{bottom:836.613333pt;}
.y2f{bottom:837.093333pt;}
.y6e{bottom:847.493333pt;}
.y2e{bottom:855.493333pt;}
.y5{bottom:871.173333pt;}
.y2d{bottom:873.893333pt;}
.y4{bottom:892.293333pt;}
.y1{bottom:957.760000pt;}
.y2c{bottom:961.440000pt;}
.h8{height:33.867188pt;}
.h3{height:42.117188pt;}
.h4{height:44.363437pt;}
.h6{height:45.156250pt;}
.h5{height:46.218750pt;}
.ha{height:49.622500pt;}
.h9{height:51.663750pt;}
.h2{height:56.156250pt;}
.h7{height:61.944687pt;}
.h0{height:1020.640000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471989pt;}
.x4{left:160.666656pt;}
.x2{left:289.506656pt;}
.x3{left:336.706656pt;}
.x7{left:430.653323pt;}
.x8{left:484.253323pt;}
.x6{left:502.173323pt;}
.x5{left:587.013323pt;}
}




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