
    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_4d906586bf80068a8a09b715.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_76846c005f4e4b89f94043d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_cd2f42fac4d4e8b871740dbe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ed596d39a650f6a54fc7e61d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_5d7c90c34207a04bf4d925b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_5fc3988eceae66d5a642de2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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;}
.ls7{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.532800px;}
.lsb{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.270600px;}
.ls6{letter-spacing:-0.094800px;}
.ls3{letter-spacing:-0.046800px;}
.ls4{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.262800px;}
.lsa{letter-spacing:8.460000px;}
.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:-14.595840px;}
.ws8{word-spacing:-14.572800px;}
.ws9{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.410000px;}
.ws2{word-spacing:-13.100400px;}
.ws0{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.612800px;}
.ws7{word-spacing:-9.092400px;}
.ws5{word-spacing:-7.920000px;}
.ws4{word-spacing:-7.884000px;}
.ws6{word-spacing:0.000000px;}
._22{margin-left:-4.093200px;}
._d{margin-left:-2.808720px;}
._2{margin-left:-1.404000px;}
._1{width:1.254000px;}
._4{width:3.248640px;}
._b{width:4.302720px;}
._c{width:6.155280px;}
._e{width:7.172160px;}
._f{width:8.425200px;}
._13{width:9.861360px;}
._12{width:11.056560px;}
._1a{width:12.145920px;}
._1b{width:13.512960px;}
._9{width:14.522640px;}
._a{width:15.597360px;}
._21{width:16.644960px;}
._17{width:17.748720px;}
._14{width:19.242720px;}
._15{width:21.155040px;}
._23{width:22.521600px;}
._7{width:24.024480px;}
._8{width:25.218720px;}
._1c{width:26.268960px;}
._16{width:27.549360px;}
._1d{width:29.874240px;}
._24{width:31.000320px;}
._11{width:32.808240px;}
._10{width:34.959600px;}
._1e{width:36.365760px;}
._1f{width:37.624320px;}
._20{width:39.013200px;}
._18{width:47.216880px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._5{width:194.343840px;}
._25{width:201.403200px;}
._6{width:202.852800px;}
._19{width:1056.007200px;}
.fc5{color:transparent;}
.fc4{color:rgb(15,17,21);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.y55{bottom:-41.040000px;}
.y54{bottom:-20.340000px;}
.y53{bottom:-1.620000px;}
.y0{bottom:0.000000px;}
.y52{bottom:8.820000px;}
.y51{bottom:19.440000px;}
.y50{bottom:29.880000px;}
.y4f{bottom:47.520000px;}
.y7{bottom:56.340000px;}
.y58{bottom:56.520000px;}
.y6{bottom:70.056000px;}
.y4e{bottom:100.440000px;}
.y8e{bottom:113.796000px;}
.y4d{bottom:114.660000px;}
.y4c{bottom:128.700000px;}
.y3e{bottom:132.696000px;}
.y8d{bottom:133.236000px;}
.y4b{bottom:142.740000px;}
.y3d{bottom:151.950000px;}
.y8c{bottom:152.490000px;}
.y4a{bottom:156.780000px;}
.y49{bottom:170.820000px;}
.y3c{bottom:171.390000px;}
.y8b{bottom:171.930000px;}
.y48{bottom:184.860000px;}
.y3b{bottom:190.650000px;}
.y8a{bottom:191.190000px;}
.y47{bottom:199.080000px;}
.y3a{bottom:210.090000px;}
.y89{bottom:210.630000px;}
.y46{bottom:214.380000px;}
.y39{bottom:229.350000px;}
.y88{bottom:229.890000px;}
.y45{bottom:233.865000px;}
.y44{bottom:247.905000px;}
.y38{bottom:248.430000px;}
.y87{bottom:249.330000px;}
.y43{bottom:261.945000px;}
.y37{bottom:266.070000px;}
.y86{bottom:268.590000px;}
.y42{bottom:275.985000px;}
.y36{bottom:283.710000px;}
.y85{bottom:287.850000px;}
.y41{bottom:290.025000px;}
.y35{bottom:301.170000px;}
.y40{bottom:304.425000px;}
.y84{bottom:307.290000px;}
.y34{bottom:318.810000px;}
.y83{bottom:326.550000px;}
.y33{bottom:336.495000px;}
.y82{bottom:346.035000px;}
.y32{bottom:353.955000px;}
.y81{bottom:365.295000px;}
.y31{bottom:371.595000px;}
.y80{bottom:384.735000px;}
.y30{bottom:389.235000px;}
.y7f{bottom:403.995000px;}
.y2f{bottom:406.695000px;}
.y7e{bottom:423.435000px;}
.y2e{bottom:424.335000px;}
.y2d{bottom:441.975000px;}
.y7d{bottom:442.695000px;}
.y2c{bottom:459.615000px;}
.y7c{bottom:462.135000px;}
.y2b{bottom:477.075000px;}
.y7b{bottom:481.395000px;}
.y2a{bottom:494.715000px;}
.y7a{bottom:500.835000px;}
.y29{bottom:512.355000px;}
.y79{bottom:520.095000px;}
.y28{bottom:529.815000px;}
.y78{bottom:539.535000px;}
.y27{bottom:549.615000px;}
.y77{bottom:558.795000px;}
.y26{bottom:567.255000px;}
.y76{bottom:578.055000px;}
.y25{bottom:584.895000px;}
.y75{bottom:597.495000px;}
.y24{bottom:602.535000px;}
.y74{bottom:616.785000px;}
.y23{bottom:620.025000px;}
.y73{bottom:636.225000px;}
.y22{bottom:637.665000px;}
.y3f{bottom:648.825000px;}
.y21{bottom:655.305000px;}
.y72{bottom:655.485000px;}
.y20{bottom:672.765000px;}
.y71{bottom:674.925000px;}
.y1f{bottom:690.405000px;}
.y70{bottom:694.185000px;}
.y1e{bottom:708.045000px;}
.y6f{bottom:713.625000px;}
.y1d{bottom:725.685000px;}
.y6e{bottom:732.885000px;}
.y1c{bottom:743.145000px;}
.y6d{bottom:752.325000px;}
.y1b{bottom:760.785000px;}
.y6c{bottom:771.585000px;}
.y1a{bottom:778.425000px;}
.y6b{bottom:791.025000px;}
.y19{bottom:795.885000px;}
.y6a{bottom:810.285000px;}
.y18{bottom:813.525000px;}
.y69{bottom:829.725000px;}
.y17{bottom:831.165000px;}
.y16{bottom:848.625000px;}
.y68{bottom:848.985000px;}
.y15{bottom:866.265000px;}
.y67{bottom:868.245000px;}
.y14{bottom:883.950000px;}
.y66{bottom:887.730000px;}
.y8f{bottom:889.170000px;}
.y13{bottom:901.410000px;}
.y65{bottom:906.990000px;}
.y12{bottom:919.050000px;}
.y64{bottom:926.430000px;}
.y11{bottom:936.690000px;}
.y63{bottom:945.690000px;}
.y10{bottom:954.330000px;}
.y62{bottom:965.130000px;}
.yf{bottom:971.790000px;}
.y61{bottom:984.390000px;}
.ye{bottom:989.430000px;}
.y60{bottom:1003.830000px;}
.yd{bottom:1007.250000px;}
.y5f{bottom:1023.090000px;}
.yc{bottom:1026.330000px;}
.y5e{bottom:1042.530000px;}
.yb{bottom:1044.870000px;}
.y5d{bottom:1061.790000px;}
.ya{bottom:1067.730000px;}
.y5c{bottom:1081.230000px;}
.y9{bottom:1090.590000px;}
.y5b{bottom:1100.490000px;}
.y8{bottom:1112.550000px;}
.y5a{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.y59{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y57{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y56{bottom:1197.540000px;}
.hb{height:30.480469px;}
.h5{height:33.683203px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h6{height:50.597578px;}
.h8{height:56.084062px;}
.hc{height:58.819922px;}
.h7{height:65.837812px;}
.h9{height:317.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xa{left:113.616000px;}
.xb{left:134.994000px;}
.x4{left:136.475987px;}
.xd{left:140.075987px;}
.x3{left:144.035987px;}
.x9{left:162.029987px;}
.x5{left:170.129987px;}
.x6{left:299.414987px;}
.x7{left:320.474987px;}
.x8{left:336.494987px;}
.xc{left:425.594987px;}
.x2{left:448.274987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.473600pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.240533pt;}
.ls6{letter-spacing:-0.084267pt;}
.ls3{letter-spacing:-0.041600pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.233600pt;}
.lsa{letter-spacing:7.520000pt;}
.wsa{word-spacing:-12.974080pt;}
.ws8{word-spacing:-12.953600pt;}
.ws9{word-spacing:-12.480000pt;}
.ws1{word-spacing:-11.920000pt;}
.ws2{word-spacing:-11.644800pt;}
.ws0{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.433600pt;}
.ws7{word-spacing:-8.082133pt;}
.ws5{word-spacing:-7.040000pt;}
.ws4{word-spacing:-7.008000pt;}
.ws6{word-spacing:0.000000pt;}
._22{margin-left:-3.638400pt;}
._d{margin-left:-2.496640pt;}
._2{margin-left:-1.248000pt;}
._1{width:1.114667pt;}
._4{width:2.887680pt;}
._b{width:3.824640pt;}
._c{width:5.471360pt;}
._e{width:6.375253pt;}
._f{width:7.489067pt;}
._13{width:8.765653pt;}
._12{width:9.828053pt;}
._1a{width:10.796373pt;}
._1b{width:12.011520pt;}
._9{width:12.909013pt;}
._a{width:13.864320pt;}
._21{width:14.795520pt;}
._17{width:15.776640pt;}
._14{width:17.104640pt;}
._15{width:18.804480pt;}
._23{width:20.019200pt;}
._7{width:21.355093pt;}
._8{width:22.416640pt;}
._1c{width:23.350187pt;}
._16{width:24.488320pt;}
._1d{width:26.554880pt;}
._24{width:27.555840pt;}
._11{width:29.162880pt;}
._10{width:31.075200pt;}
._1e{width:32.325120pt;}
._1f{width:33.443840pt;}
._20{width:34.678400pt;}
._18{width:41.970560pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._5{width:172.750080pt;}
._25{width:179.025067pt;}
._6{width:180.313600pt;}
._19{width:938.673067pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.y55{bottom:-36.480000pt;}
.y54{bottom:-18.080000pt;}
.y53{bottom:-1.440000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:7.840000pt;}
.y51{bottom:17.280000pt;}
.y50{bottom:26.560000pt;}
.y4f{bottom:42.240000pt;}
.y7{bottom:50.080000pt;}
.y58{bottom:50.240000pt;}
.y6{bottom:62.272000pt;}
.y4e{bottom:89.280000pt;}
.y8e{bottom:101.152000pt;}
.y4d{bottom:101.920000pt;}
.y4c{bottom:114.400000pt;}
.y3e{bottom:117.952000pt;}
.y8d{bottom:118.432000pt;}
.y4b{bottom:126.880000pt;}
.y3d{bottom:135.066667pt;}
.y8c{bottom:135.546667pt;}
.y4a{bottom:139.360000pt;}
.y49{bottom:151.840000pt;}
.y3c{bottom:152.346667pt;}
.y8b{bottom:152.826667pt;}
.y48{bottom:164.320000pt;}
.y3b{bottom:169.466667pt;}
.y8a{bottom:169.946667pt;}
.y47{bottom:176.960000pt;}
.y3a{bottom:186.746667pt;}
.y89{bottom:187.226667pt;}
.y46{bottom:190.560000pt;}
.y39{bottom:203.866667pt;}
.y88{bottom:204.346667pt;}
.y45{bottom:207.880000pt;}
.y44{bottom:220.360000pt;}
.y38{bottom:220.826667pt;}
.y87{bottom:221.626667pt;}
.y43{bottom:232.840000pt;}
.y37{bottom:236.506667pt;}
.y86{bottom:238.746667pt;}
.y42{bottom:245.320000pt;}
.y36{bottom:252.186667pt;}
.y85{bottom:255.866667pt;}
.y41{bottom:257.800000pt;}
.y35{bottom:267.706667pt;}
.y40{bottom:270.600000pt;}
.y84{bottom:273.146667pt;}
.y34{bottom:283.386667pt;}
.y83{bottom:290.266667pt;}
.y33{bottom:299.106667pt;}
.y82{bottom:307.586667pt;}
.y32{bottom:314.626667pt;}
.y81{bottom:324.706667pt;}
.y31{bottom:330.306667pt;}
.y80{bottom:341.986667pt;}
.y30{bottom:345.986667pt;}
.y7f{bottom:359.106667pt;}
.y2f{bottom:361.506667pt;}
.y7e{bottom:376.386667pt;}
.y2e{bottom:377.186667pt;}
.y2d{bottom:392.866667pt;}
.y7d{bottom:393.506667pt;}
.y2c{bottom:408.546667pt;}
.y7c{bottom:410.786667pt;}
.y2b{bottom:424.066667pt;}
.y7b{bottom:427.906667pt;}
.y2a{bottom:439.746667pt;}
.y7a{bottom:445.186667pt;}
.y29{bottom:455.426667pt;}
.y79{bottom:462.306667pt;}
.y28{bottom:470.946667pt;}
.y78{bottom:479.586667pt;}
.y27{bottom:488.546667pt;}
.y77{bottom:496.706667pt;}
.y26{bottom:504.226667pt;}
.y76{bottom:513.826667pt;}
.y25{bottom:519.906667pt;}
.y75{bottom:531.106667pt;}
.y24{bottom:535.586667pt;}
.y74{bottom:548.253333pt;}
.y23{bottom:551.133333pt;}
.y73{bottom:565.533333pt;}
.y22{bottom:566.813333pt;}
.y3f{bottom:576.733333pt;}
.y21{bottom:582.493333pt;}
.y72{bottom:582.653333pt;}
.y20{bottom:598.013333pt;}
.y71{bottom:599.933333pt;}
.y1f{bottom:613.693333pt;}
.y70{bottom:617.053333pt;}
.y1e{bottom:629.373333pt;}
.y6f{bottom:634.333333pt;}
.y1d{bottom:645.053333pt;}
.y6e{bottom:651.453333pt;}
.y1c{bottom:660.573333pt;}
.y6d{bottom:668.733333pt;}
.y1b{bottom:676.253333pt;}
.y6c{bottom:685.853333pt;}
.y1a{bottom:691.933333pt;}
.y6b{bottom:703.133333pt;}
.y19{bottom:707.453333pt;}
.y6a{bottom:720.253333pt;}
.y18{bottom:723.133333pt;}
.y69{bottom:737.533333pt;}
.y17{bottom:738.813333pt;}
.y16{bottom:754.333333pt;}
.y68{bottom:754.653333pt;}
.y15{bottom:770.013333pt;}
.y67{bottom:771.773333pt;}
.y14{bottom:785.733333pt;}
.y66{bottom:789.093333pt;}
.y8f{bottom:790.373333pt;}
.y13{bottom:801.253333pt;}
.y65{bottom:806.213333pt;}
.y12{bottom:816.933333pt;}
.y64{bottom:823.493333pt;}
.y11{bottom:832.613333pt;}
.y63{bottom:840.613333pt;}
.y10{bottom:848.293333pt;}
.y62{bottom:857.893333pt;}
.yf{bottom:863.813333pt;}
.y61{bottom:875.013333pt;}
.ye{bottom:879.493333pt;}
.y60{bottom:892.293333pt;}
.yd{bottom:895.333333pt;}
.y5f{bottom:909.413333pt;}
.yc{bottom:912.293333pt;}
.y5e{bottom:926.693333pt;}
.yb{bottom:928.773333pt;}
.y5d{bottom:943.813333pt;}
.ya{bottom:949.093333pt;}
.y5c{bottom:961.093333pt;}
.y9{bottom:969.413333pt;}
.y5b{bottom:978.213333pt;}
.y8{bottom:988.933333pt;}
.y5a{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.y59{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y57{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y56{bottom:1064.480000pt;}
.hb{height:27.093750pt;}
.h5{height:29.940625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h6{height:44.975625pt;}
.h8{height:49.852500pt;}
.hc{height:52.284375pt;}
.h7{height:58.522500pt;}
.h9{height:281.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xa{left:100.992000pt;}
.xb{left:119.994667pt;}
.x4{left:121.311988pt;}
.xd{left:124.511988pt;}
.x3{left:128.031988pt;}
.x9{left:144.026655pt;}
.x5{left:151.226655pt;}
.x6{left:266.146655pt;}
.x7{left:284.866655pt;}
.x8{left:299.106655pt;}
.xc{left:378.306655pt;}
.x2{left:398.466655pt;}
}




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