
    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_bf272c5ba9430e4ef1bc9efa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_092fa6ab09a0eb03d15bc5af.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_b9bd812ab7ac4e04f4a45cea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_91341d0b5f51d89945b184f0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-2.700000px;}
.ls3{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.612000px;}
.lsc{letter-spacing:34.865280px;}
.lsb{letter-spacing:38.465280px;}
.lsd{letter-spacing:39.905280px;}
.lsf{letter-spacing:62.945280px;}
.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;}
}
.wsa{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.479800px;}
.ws1{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws9{word-spacing:0.000000px;}
._11{margin-left:-4.469040px;}
._f{margin-left:-3.406320px;}
._4{margin-left:-2.177280px;}
._1{margin-left:-1.044000px;}
._3{width:1.254960px;}
._b{width:2.531520px;}
._8{width:3.908400px;}
._a{width:5.019840px;}
._9{width:6.035760px;}
._5{width:7.350480px;}
._7{width:8.545680px;}
._6{width:9.621360px;}
._e{width:10.759440px;}
._c{width:12.549600px;}
._d{width:13.864320px;}
._12{width:15.154560px;}
._17{width:17.976960px;}
._18{width:21.461760px;}
._14{width:22.852800px;}
._13{width:24.595680px;}
._15{width:39.733920px;}
._16{width:41.217600px;}
._0{width:52.536000px;}
._10{width:157.087200px;}
._2{width:1230.718560px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y4{bottom:53.820000px;}
.y6d{bottom:113.940000px;}
.y3d{bottom:122.580000px;}
.y6c{bottom:135.756000px;}
.y3c{bottom:144.576000px;}
.y6b{bottom:157.530000px;}
.y3b{bottom:166.350000px;}
.y6a{bottom:179.310000px;}
.y3a{bottom:188.130000px;}
.y69{bottom:201.270000px;}
.y39{bottom:209.910000px;}
.y68{bottom:223.050000px;}
.y38{bottom:231.870000px;}
.y67{bottom:244.830000px;}
.y37{bottom:253.650000px;}
.y66{bottom:266.610000px;}
.y36{bottom:275.430000px;}
.y65{bottom:288.390000px;}
.y35{bottom:297.210000px;}
.y64{bottom:310.350000px;}
.y34{bottom:315.210000px;}
.y33{bottom:329.070000px;}
.y63{bottom:332.130000px;}
.y32{bottom:343.650000px;}
.y62{bottom:353.910000px;}
.y31{bottom:360.750000px;}
.y61{bottom:375.690000px;}
.y30{bottom:378.030000px;}
.y2f{bottom:395.355000px;}
.y60{bottom:397.695000px;}
.y2e{bottom:412.635000px;}
.y5f{bottom:419.475000px;}
.y2d{bottom:429.915000px;}
.y5e{bottom:441.255000px;}
.y2c{bottom:447.195000px;}
.y5d{bottom:463.035000px;}
.y2b{bottom:464.295000px;}
.y2a{bottom:481.575000px;}
.y5c{bottom:484.815000px;}
.y29{bottom:498.855000px;}
.y7f{bottom:506.415000px;}
.y5b{bottom:506.775000px;}
.y28{bottom:516.135000px;}
.y7e{bottom:528.375000px;}
.y5a{bottom:528.555000px;}
.y27{bottom:533.415000px;}
.y7d{bottom:550.155000px;}
.y59{bottom:550.335000px;}
.y26{bottom:550.515000px;}
.y25{bottom:567.795000px;}
.y7c{bottom:571.935000px;}
.y58{bottom:572.115000px;}
.y24{bottom:585.075000px;}
.y7b{bottom:593.715000px;}
.y57{bottom:594.075000px;}
.y23{bottom:602.355000px;}
.y7a{bottom:615.495000px;}
.y56{bottom:615.855000px;}
.y22{bottom:619.635000px;}
.y21{bottom:636.915000px;}
.y79{bottom:637.455000px;}
.y55{bottom:637.635000px;}
.y20{bottom:654.045000px;}
.y78{bottom:659.265000px;}
.y54{bottom:659.445000px;}
.y1f{bottom:671.325000px;}
.y77{bottom:681.045000px;}
.y53{bottom:681.225000px;}
.y1e{bottom:688.605000px;}
.y76{bottom:702.825000px;}
.y52{bottom:703.185000px;}
.y1d{bottom:705.885000px;}
.y1c{bottom:723.165000px;}
.y75{bottom:724.785000px;}
.y51{bottom:724.965000px;}
.y1b{bottom:740.445000px;}
.y74{bottom:746.565000px;}
.y50{bottom:746.745000px;}
.y1a{bottom:757.545000px;}
.y73{bottom:768.345000px;}
.y4f{bottom:768.525000px;}
.y19{bottom:774.825000px;}
.y4e{bottom:790.305000px;}
.y18{bottom:792.105000px;}
.y17{bottom:809.385000px;}
.y72{bottom:812.085000px;}
.y4d{bottom:812.265000px;}
.y16{bottom:826.665000px;}
.y4c{bottom:834.045000px;}
.y15{bottom:843.765000px;}
.y4b{bottom:855.825000px;}
.y14{bottom:861.045000px;}
.y4a{bottom:877.605000px;}
.y13{bottom:878.325000px;}
.y12{bottom:896.010000px;}
.y71{bottom:899.430000px;}
.y49{bottom:899.610000px;}
.y11{bottom:915.090000px;}
.y70{bottom:921.210000px;}
.y48{bottom:921.390000px;}
.y10{bottom:937.590000px;}
.y47{bottom:943.170000px;}
.yf{bottom:954.870000px;}
.y46{bottom:964.950000px;}
.ye{bottom:967.290000px;}
.yd{bottom:986.190000px;}
.y45{bottom:986.730000px;}
.yc{bottom:1005.630000px;}
.y6f{bottom:1008.510000px;}
.y44{bottom:1008.690000px;}
.yb{bottom:1028.130000px;}
.y6e{bottom:1030.290000px;}
.y43{bottom:1030.470000px;}
.ya{bottom:1050.450000px;}
.y42{bottom:1052.250000px;}
.y9{bottom:1072.050000px;}
.y41{bottom:1074.030000px;}
.y8{bottom:1089.330000px;}
.y40{bottom:1095.990000px;}
.y7{bottom:1106.610000px;}
.y3f{bottom:1117.770000px;}
.y6{bottom:1123.710000px;}
.y3e{bottom:1139.550000px;}
.y5{bottom:1140.990000px;}
.y1{bottom:1185.120000px;}
.y3{bottom:1209.240000px;}
.h2{height:23.040000px;}
.ha{height:27.147656px;}
.hc{height:34.036523px;}
.h5{height:39.760312px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.h7{height:46.251562px;}
.hd{height:46.736719px;}
.he{height:48.224531px;}
.hb{height:49.255313px;}
.h3{height:50.414062px;}
.h9{height:53.224453px;}
.hf{height:54.596250px;}
.h8{height:54.864844px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:359.895000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x3{left:108.035987px;}
.x1{left:113.076000px;}
.xd{left:118.295987px;}
.x5{left:128.555987px;}
.x10{left:162.029987px;}
.xf{left:165.629987px;}
.x13{left:214.409987px;}
.x11{left:216.029987px;}
.x12{left:243.029987px;}
.x14{left:246.269987px;}
.x9{left:247.529987px;}
.xa{left:266.474987px;}
.x8{left:271.694987px;}
.x6{left:283.394987px;}
.xb{left:320.294987px;}
.xe{left:424.004987px;}
.xc{left:425.084987px;}
.x4{left:446.684987px;}
.x7{left:450.824987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.544000pt;}
.lsc{letter-spacing:30.991360pt;}
.lsb{letter-spacing:34.191360pt;}
.lsd{letter-spacing:35.471360pt;}
.lsf{letter-spacing:55.951360pt;}
.wsa{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws7{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.870933pt;}
.ws1{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws9{word-spacing:0.000000pt;}
._11{margin-left:-3.972480pt;}
._f{margin-left:-3.027840pt;}
._4{margin-left:-1.935360pt;}
._1{margin-left:-0.928000pt;}
._3{width:1.115520pt;}
._b{width:2.250240pt;}
._8{width:3.474133pt;}
._a{width:4.462080pt;}
._9{width:5.365120pt;}
._5{width:6.533760pt;}
._7{width:7.596160pt;}
._6{width:8.552320pt;}
._e{width:9.563947pt;}
._c{width:11.155200pt;}
._d{width:12.323840pt;}
._12{width:13.470720pt;}
._17{width:15.979520pt;}
._18{width:19.077120pt;}
._14{width:20.313600pt;}
._13{width:21.862827pt;}
._15{width:35.319040pt;}
._16{width:36.637867pt;}
._0{width:46.698667pt;}
._10{width:139.633067pt;}
._2{width:1093.972053pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y4{bottom:47.840000pt;}
.y6d{bottom:101.280000pt;}
.y3d{bottom:108.960000pt;}
.y6c{bottom:120.672000pt;}
.y3c{bottom:128.512000pt;}
.y6b{bottom:140.026667pt;}
.y3b{bottom:147.866667pt;}
.y6a{bottom:159.386667pt;}
.y3a{bottom:167.226667pt;}
.y69{bottom:178.906667pt;}
.y39{bottom:186.586667pt;}
.y68{bottom:198.266667pt;}
.y38{bottom:206.106667pt;}
.y67{bottom:217.626667pt;}
.y37{bottom:225.466667pt;}
.y66{bottom:236.986667pt;}
.y36{bottom:244.826667pt;}
.y65{bottom:256.346667pt;}
.y35{bottom:264.186667pt;}
.y64{bottom:275.866667pt;}
.y34{bottom:280.186667pt;}
.y33{bottom:292.506667pt;}
.y63{bottom:295.226667pt;}
.y32{bottom:305.466667pt;}
.y62{bottom:314.586667pt;}
.y31{bottom:320.666667pt;}
.y61{bottom:333.946667pt;}
.y30{bottom:336.026667pt;}
.y2f{bottom:351.426667pt;}
.y60{bottom:353.506667pt;}
.y2e{bottom:366.786667pt;}
.y5f{bottom:372.866667pt;}
.y2d{bottom:382.146667pt;}
.y5e{bottom:392.226667pt;}
.y2c{bottom:397.506667pt;}
.y5d{bottom:411.586667pt;}
.y2b{bottom:412.706667pt;}
.y2a{bottom:428.066667pt;}
.y5c{bottom:430.946667pt;}
.y29{bottom:443.426667pt;}
.y7f{bottom:450.146667pt;}
.y5b{bottom:450.466667pt;}
.y28{bottom:458.786667pt;}
.y7e{bottom:469.666667pt;}
.y5a{bottom:469.826667pt;}
.y27{bottom:474.146667pt;}
.y7d{bottom:489.026667pt;}
.y59{bottom:489.186667pt;}
.y26{bottom:489.346667pt;}
.y25{bottom:504.706667pt;}
.y7c{bottom:508.386667pt;}
.y58{bottom:508.546667pt;}
.y24{bottom:520.066667pt;}
.y7b{bottom:527.746667pt;}
.y57{bottom:528.066667pt;}
.y23{bottom:535.426667pt;}
.y7a{bottom:547.106667pt;}
.y56{bottom:547.426667pt;}
.y22{bottom:550.786667pt;}
.y21{bottom:566.146667pt;}
.y79{bottom:566.626667pt;}
.y55{bottom:566.786667pt;}
.y20{bottom:581.373333pt;}
.y78{bottom:586.013333pt;}
.y54{bottom:586.173333pt;}
.y1f{bottom:596.733333pt;}
.y77{bottom:605.373333pt;}
.y53{bottom:605.533333pt;}
.y1e{bottom:612.093333pt;}
.y76{bottom:624.733333pt;}
.y52{bottom:625.053333pt;}
.y1d{bottom:627.453333pt;}
.y1c{bottom:642.813333pt;}
.y75{bottom:644.253333pt;}
.y51{bottom:644.413333pt;}
.y1b{bottom:658.173333pt;}
.y74{bottom:663.613333pt;}
.y50{bottom:663.773333pt;}
.y1a{bottom:673.373333pt;}
.y73{bottom:682.973333pt;}
.y4f{bottom:683.133333pt;}
.y19{bottom:688.733333pt;}
.y4e{bottom:702.493333pt;}
.y18{bottom:704.093333pt;}
.y17{bottom:719.453333pt;}
.y72{bottom:721.853333pt;}
.y4d{bottom:722.013333pt;}
.y16{bottom:734.813333pt;}
.y4c{bottom:741.373333pt;}
.y15{bottom:750.013333pt;}
.y4b{bottom:760.733333pt;}
.y14{bottom:765.373333pt;}
.y4a{bottom:780.093333pt;}
.y13{bottom:780.733333pt;}
.y12{bottom:796.453333pt;}
.y71{bottom:799.493333pt;}
.y49{bottom:799.653333pt;}
.y11{bottom:813.413333pt;}
.y70{bottom:818.853333pt;}
.y48{bottom:819.013333pt;}
.y10{bottom:833.413333pt;}
.y47{bottom:838.373333pt;}
.yf{bottom:848.773333pt;}
.y46{bottom:857.733333pt;}
.ye{bottom:859.813333pt;}
.yd{bottom:876.613333pt;}
.y45{bottom:877.093333pt;}
.yc{bottom:893.893333pt;}
.y6f{bottom:896.453333pt;}
.y44{bottom:896.613333pt;}
.yb{bottom:913.893333pt;}
.y6e{bottom:915.813333pt;}
.y43{bottom:915.973333pt;}
.ya{bottom:933.733333pt;}
.y42{bottom:935.333333pt;}
.y9{bottom:952.933333pt;}
.y41{bottom:954.693333pt;}
.y8{bottom:968.293333pt;}
.y40{bottom:974.213333pt;}
.y7{bottom:983.653333pt;}
.y3f{bottom:993.573333pt;}
.y6{bottom:998.853333pt;}
.y3e{bottom:1012.933333pt;}
.y5{bottom:1014.213333pt;}
.y1{bottom:1053.440000pt;}
.y3{bottom:1074.880000pt;}
.h2{height:20.480000pt;}
.ha{height:24.131250pt;}
.hc{height:30.254687pt;}
.h5{height:35.342500pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.h7{height:41.112500pt;}
.hd{height:41.543750pt;}
.he{height:42.866250pt;}
.hb{height:43.782500pt;}
.h3{height:44.812500pt;}
.h9{height:47.310625pt;}
.hf{height:48.530000pt;}
.h8{height:48.768750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:319.906667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x3{left:96.031988pt;}
.x1{left:100.512000pt;}
.xd{left:105.151988pt;}
.x5{left:114.271988pt;}
.x10{left:144.026655pt;}
.xf{left:147.226655pt;}
.x13{left:190.586655pt;}
.x11{left:192.026655pt;}
.x12{left:216.026655pt;}
.x14{left:218.906655pt;}
.x9{left:220.026655pt;}
.xa{left:236.866655pt;}
.x8{left:241.506655pt;}
.x6{left:251.906655pt;}
.xb{left:284.706655pt;}
.xe{left:376.893321pt;}
.xc{left:377.853321pt;}
.x4{left:397.053321pt;}
.x7{left:400.733321pt;}
}




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