
    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_630492f5a9970f1734eb9cf0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_50719e9e855d4dad7326d4ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a4748932dc774d2ba9e9b072.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_fb3bc110fdcf8d4add2c3a77.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4598f5ccad3751fe2b174f63.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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ae81e38e2770f439c375ef1.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls5{letter-spacing:0.025920px;}
.ls2{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:39.881280px;}
.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:-66.240000px;}
.ws6{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws4{word-spacing:-13.505760px;}
.ws9{word-spacing:-12.329400px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._12{margin-left:-3.269520px;}
._d{margin-left:-2.193840px;}
._0{margin-left:-1.192320px;}
._2{width:1.254960px;}
._19{width:2.268720px;}
._8{width:3.286800px;}
._5{width:4.302720px;}
._4{width:6.116640px;}
._3{width:7.356000px;}
._c{width:8.545680px;}
._7{width:10.517760px;}
._6{width:11.593440px;}
._9{width:13.093680px;}
._f{width:14.705280px;}
._16{width:17.884800px;}
._b{width:19.780560px;}
._a{width:20.856240px;}
._14{width:21.925440px;}
._15{width:23.130720px;}
._17{width:24.827040px;}
._18{width:25.933680px;}
._1a{width:28.152000px;}
._10{width:30.139200px;}
._11{width:31.192320px;}
._e{width:161.438880px;}
._1{width:1064.246880px;}
._13{width:1065.248400px;}
.fc2{color:rgb(27,28,29);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.500000px;}
.y4{bottom:56.340000px;}
.y3b{bottom:110.376000px;}
.y3a{bottom:114.876000px;}
.y77{bottom:124.236000px;}
.y39{bottom:126.216000px;}
.y76{bottom:128.736000px;}
.y75{bottom:137.916000px;}
.y74{bottom:142.416000px;}
.y73{bottom:151.770000px;}
.y72{bottom:156.270000px;}
.y38{bottom:159.690000px;}
.y71{bottom:165.630000px;}
.y70{bottom:170.130000px;}
.y6f{bottom:179.310000px;}
.y37{bottom:181.470000px;}
.y6e{bottom:183.810000px;}
.y6d{bottom:195.150000px;}
.y35{bottom:203.430000px;}
.y36{bottom:209.370000px;}
.y6c{bottom:222.870000px;}
.y34{bottom:225.210000px;}
.y6b{bottom:244.650000px;}
.y33{bottom:246.990000px;}
.y6a{bottom:266.430000px;}
.y32{bottom:268.770000px;}
.y69{bottom:288.210000px;}
.y31{bottom:290.730000px;}
.y68{bottom:310.170000px;}
.y30{bottom:312.510000px;}
.y7c{bottom:316.110000px;}
.y67{bottom:331.950000px;}
.y2f{bottom:334.290000px;}
.y66{bottom:353.775000px;}
.y2e{bottom:356.115000px;}
.y65{bottom:375.555000px;}
.y2d{bottom:377.895000px;}
.y2c{bottom:395.895000px;}
.y64{bottom:397.515000px;}
.y2b{bottom:409.755000px;}
.y63{bottom:419.295000px;}
.y2a{bottom:426.855000px;}
.y62{bottom:441.075000px;}
.y29{bottom:446.655000px;}
.y61{bottom:462.855000px;}
.y28{bottom:466.455000px;}
.y60{bottom:484.635000px;}
.y27{bottom:486.435000px;}
.y26{bottom:506.235000px;}
.y5f{bottom:506.595000px;}
.y7b{bottom:512.535000px;}
.y25{bottom:526.035000px;}
.y5e{bottom:528.375000px;}
.y24{bottom:545.835000px;}
.y5d{bottom:550.155000px;}
.y23{bottom:565.635000px;}
.y5c{bottom:571.935000px;}
.y22{bottom:585.615000px;}
.y5b{bottom:593.895000px;}
.y21{bottom:605.445000px;}
.y5a{bottom:615.705000px;}
.y20{bottom:625.245000px;}
.y59{bottom:637.485000px;}
.y7a{bottom:643.425000px;}
.y1f{bottom:645.045000px;}
.y58{bottom:659.265000px;}
.y1e{bottom:664.845000px;}
.y57{bottom:681.045000px;}
.y1d{bottom:684.825000px;}
.y55{bottom:703.005000px;}
.y1c{bottom:704.625000px;}
.y56{bottom:708.945000px;}
.y1b{bottom:724.425000px;}
.y54{bottom:724.785000px;}
.y1a{bottom:744.225000px;}
.y53{bottom:746.565000px;}
.y19{bottom:764.025000px;}
.y51{bottom:768.345000px;}
.y52{bottom:774.285000px;}
.y18{bottom:784.005000px;}
.y50{bottom:790.125000px;}
.y79{bottom:796.065000px;}
.y17{bottom:803.805000px;}
.y4f{bottom:812.085000px;}
.y16{bottom:823.605000px;}
.y4e{bottom:833.865000px;}
.y15{bottom:843.405000px;}
.y4c{bottom:855.645000px;}
.y4d{bottom:861.585000px;}
.y14{bottom:863.205000px;}
.y4b{bottom:877.470000px;}
.y13{bottom:883.770000px;}
.y4a{bottom:899.430000px;}
.y12{bottom:902.850000px;}
.y48{bottom:921.210000px;}
.y49{bottom:927.150000px;}
.y11{bottom:927.690000px;}
.y10{bottom:940.830000px;}
.y47{bottom:942.990000px;}
.y78{bottom:948.930000px;}
.yf{bottom:958.650000px;}
.y46{bottom:964.770000px;}
.ye{bottom:973.590000px;}
.y45{bottom:986.550000px;}
.yd{bottom:992.490000px;}
.y43{bottom:1008.510000px;}
.yc{bottom:1010.310000px;}
.y44{bottom:1014.450000px;}
.yb{bottom:1025.790000px;}
.y41{bottom:1030.290000px;}
.y42{bottom:1036.230000px;}
.ya{bottom:1048.290000px;}
.y40{bottom:1052.070000px;}
.y9{bottom:1070.430000px;}
.y3f{bottom:1073.850000px;}
.y8{bottom:1088.790000px;}
.y3e{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y3d{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y3c{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1173.060000px;}
.y1{bottom:1188.720000px;}
.h2{height:20.160000px;}
.h12{height:21.114844px;}
.hc{height:29.158594px;}
.h10{height:33.683203px;}
.h9{height:34.036523px;}
.h5{height:36.768867px;}
.he{height:41.726953px;}
.h6{height:42.164648px;}
.hf{height:45.549492px;}
.h11{height:46.251562px;}
.hd{height:46.736719px;}
.h13{height:48.224531px;}
.ha{height:50.488594px;}
.hb{height:53.224453px;}
.h3{height:53.237812px;}
.h8{height:54.864844px;}
.h7{height:59.439023px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:63.900000px;}
.w3{width:616.785000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x6{left:110.555987px;}
.x5{left:112.715987px;}
.x2a{left:115.595987px;}
.x1c{left:135.035987px;}
.x2b{left:140.075987px;}
.xd{left:162.029987px;}
.xa{left:167.969987px;}
.x3{left:171.930000px;}
.x11{left:185.429973px;}
.x1d{left:189.029987px;}
.x12{left:190.649987px;}
.xe{left:196.949973px;}
.xf{left:202.169987px;}
.x8{left:214.409987px;}
.x19{left:235.109973px;}
.x1a{left:240.329987px;}
.x17{left:251.489973px;}
.x18{left:256.709987px;}
.x9{left:263.909987px;}
.x1b{left:268.589987px;}
.x20{left:312.014973px;}
.x21{left:317.234987px;}
.x10{left:324.074987px;}
.x22{left:340.814973px;}
.x23{left:351.254987px;}
.x7{left:404.894987px;}
.xc{left:418.574987px;}
.xb{left:420.194987px;}
.x28{left:421.454973px;}
.x29{left:431.894987px;}
.x4{left:446.474987px;}
.x24{left:482.324973px;}
.x25{left:492.764987px;}
.x13{left:590.144973px;}
.x14{left:595.364987px;}
.x1e{left:614.084973px;}
.x1f{left:619.304987px;}
.x15{left:704.129973px;}
.x16{left:709.349987px;}
.x26{left:774.689973px;}
.x27{left:785.129987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls5{letter-spacing:0.023040pt;}
.ls2{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:35.450027pt;}
.wsa{word-spacing:-58.880000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws4{word-spacing:-12.005120pt;}
.ws9{word-spacing:-10.959467pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._12{margin-left:-2.906240pt;}
._d{margin-left:-1.950080pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.115520pt;}
._19{width:2.016640pt;}
._8{width:2.921600pt;}
._5{width:3.824640pt;}
._4{width:5.437013pt;}
._3{width:6.538667pt;}
._c{width:7.596160pt;}
._7{width:9.349120pt;}
._6{width:10.305280pt;}
._9{width:11.638827pt;}
._f{width:13.071360pt;}
._16{width:15.897600pt;}
._b{width:17.582720pt;}
._a{width:18.538880pt;}
._14{width:19.489280pt;}
._15{width:20.560640pt;}
._17{width:22.068480pt;}
._18{width:23.052160pt;}
._1a{width:25.024000pt;}
._10{width:26.790400pt;}
._11{width:27.726507pt;}
._e{width:143.501227pt;}
._1{width:945.997227pt;}
._13{width:946.887467pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.000000pt;}
.y4{bottom:50.080000pt;}
.y3b{bottom:98.112000pt;}
.y3a{bottom:102.112000pt;}
.y77{bottom:110.432000pt;}
.y39{bottom:112.192000pt;}
.y76{bottom:114.432000pt;}
.y75{bottom:122.592000pt;}
.y74{bottom:126.592000pt;}
.y73{bottom:134.906667pt;}
.y72{bottom:138.906667pt;}
.y38{bottom:141.946667pt;}
.y71{bottom:147.226667pt;}
.y70{bottom:151.226667pt;}
.y6f{bottom:159.386667pt;}
.y37{bottom:161.306667pt;}
.y6e{bottom:163.386667pt;}
.y6d{bottom:173.466667pt;}
.y35{bottom:180.826667pt;}
.y36{bottom:186.106667pt;}
.y6c{bottom:198.106667pt;}
.y34{bottom:200.186667pt;}
.y6b{bottom:217.466667pt;}
.y33{bottom:219.546667pt;}
.y6a{bottom:236.826667pt;}
.y32{bottom:238.906667pt;}
.y69{bottom:256.186667pt;}
.y31{bottom:258.426667pt;}
.y68{bottom:275.706667pt;}
.y30{bottom:277.786667pt;}
.y7c{bottom:280.986667pt;}
.y67{bottom:295.066667pt;}
.y2f{bottom:297.146667pt;}
.y66{bottom:314.466667pt;}
.y2e{bottom:316.546667pt;}
.y65{bottom:333.826667pt;}
.y2d{bottom:335.906667pt;}
.y2c{bottom:351.906667pt;}
.y64{bottom:353.346667pt;}
.y2b{bottom:364.226667pt;}
.y63{bottom:372.706667pt;}
.y2a{bottom:379.426667pt;}
.y62{bottom:392.066667pt;}
.y29{bottom:397.026667pt;}
.y61{bottom:411.426667pt;}
.y28{bottom:414.626667pt;}
.y60{bottom:430.786667pt;}
.y27{bottom:432.386667pt;}
.y26{bottom:449.986667pt;}
.y5f{bottom:450.306667pt;}
.y7b{bottom:455.586667pt;}
.y25{bottom:467.586667pt;}
.y5e{bottom:469.666667pt;}
.y24{bottom:485.186667pt;}
.y5d{bottom:489.026667pt;}
.y23{bottom:502.786667pt;}
.y5c{bottom:508.386667pt;}
.y22{bottom:520.546667pt;}
.y5b{bottom:527.906667pt;}
.y21{bottom:538.173333pt;}
.y5a{bottom:547.293333pt;}
.y20{bottom:555.773333pt;}
.y59{bottom:566.653333pt;}
.y7a{bottom:571.933333pt;}
.y1f{bottom:573.373333pt;}
.y58{bottom:586.013333pt;}
.y1e{bottom:590.973333pt;}
.y57{bottom:605.373333pt;}
.y1d{bottom:608.733333pt;}
.y55{bottom:624.893333pt;}
.y1c{bottom:626.333333pt;}
.y56{bottom:630.173333pt;}
.y1b{bottom:643.933333pt;}
.y54{bottom:644.253333pt;}
.y1a{bottom:661.533333pt;}
.y53{bottom:663.613333pt;}
.y19{bottom:679.133333pt;}
.y51{bottom:682.973333pt;}
.y52{bottom:688.253333pt;}
.y18{bottom:696.893333pt;}
.y50{bottom:702.333333pt;}
.y79{bottom:707.613333pt;}
.y17{bottom:714.493333pt;}
.y4f{bottom:721.853333pt;}
.y16{bottom:732.093333pt;}
.y4e{bottom:741.213333pt;}
.y15{bottom:749.693333pt;}
.y4c{bottom:760.573333pt;}
.y4d{bottom:765.853333pt;}
.y14{bottom:767.293333pt;}
.y4b{bottom:779.973333pt;}
.y13{bottom:785.573333pt;}
.y4a{bottom:799.493333pt;}
.y12{bottom:802.533333pt;}
.y48{bottom:818.853333pt;}
.y49{bottom:824.133333pt;}
.y11{bottom:824.613333pt;}
.y10{bottom:836.293333pt;}
.y47{bottom:838.213333pt;}
.y78{bottom:843.493333pt;}
.yf{bottom:852.133333pt;}
.y46{bottom:857.573333pt;}
.ye{bottom:865.413333pt;}
.y45{bottom:876.933333pt;}
.yd{bottom:882.213333pt;}
.y43{bottom:896.453333pt;}
.yc{bottom:898.053333pt;}
.y44{bottom:901.733333pt;}
.yb{bottom:911.813333pt;}
.y41{bottom:915.813333pt;}
.y42{bottom:921.093333pt;}
.ya{bottom:931.813333pt;}
.y40{bottom:935.173333pt;}
.y9{bottom:951.493333pt;}
.y3f{bottom:954.533333pt;}
.y8{bottom:967.813333pt;}
.y3e{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y3d{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y3c{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1042.720000pt;}
.y1{bottom:1056.640000pt;}
.h2{height:17.920000pt;}
.h12{height:18.768750pt;}
.hc{height:25.918750pt;}
.h10{height:29.940625pt;}
.h9{height:30.254687pt;}
.h5{height:32.683437pt;}
.he{height:37.090625pt;}
.h6{height:37.479688pt;}
.hf{height:40.488438pt;}
.h11{height:41.112500pt;}
.hd{height:41.543750pt;}
.h13{height:42.866250pt;}
.ha{height:44.878750pt;}
.hb{height:47.310625pt;}
.h3{height:47.322500pt;}
.h8{height:48.768750pt;}
.h7{height:52.834688pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:56.800000pt;}
.w3{width:548.253333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x6{left:98.271988pt;}
.x5{left:100.191988pt;}
.x2a{left:102.751988pt;}
.x1c{left:120.031988pt;}
.x2b{left:124.511988pt;}
.xd{left:144.026655pt;}
.xa{left:149.306655pt;}
.x3{left:152.826667pt;}
.x11{left:164.826643pt;}
.x1d{left:168.026655pt;}
.x12{left:169.466655pt;}
.xe{left:175.066643pt;}
.xf{left:179.706655pt;}
.x8{left:190.586655pt;}
.x19{left:208.986643pt;}
.x1a{left:213.626655pt;}
.x17{left:223.546643pt;}
.x18{left:228.186655pt;}
.x9{left:234.586655pt;}
.x1b{left:238.746655pt;}
.x20{left:277.346643pt;}
.x21{left:281.986655pt;}
.x10{left:288.066655pt;}
.x22{left:302.946643pt;}
.x23{left:312.226655pt;}
.x7{left:359.906655pt;}
.xc{left:372.066655pt;}
.xb{left:373.506655pt;}
.x28{left:374.626643pt;}
.x29{left:383.906655pt;}
.x4{left:396.866655pt;}
.x24{left:428.733310pt;}
.x25{left:438.013322pt;}
.x13{left:524.573310pt;}
.x14{left:529.213322pt;}
.x1e{left:545.853310pt;}
.x1f{left:550.493322pt;}
.x15{left:625.893310pt;}
.x16{left:630.533322pt;}
.x26{left:688.613310pt;}
.x27{left:697.893322pt;}
}




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