
    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_c8e44358b38b2236e1c95b29.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_58b317be4b66490bcf3f4a4b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7f58f733f0a9b47232630518.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_666042a15d81c853cbf513b3.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_672014f657f0a86c287559e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_124f8690e73d0036f631e78e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_deee0cbf4863852fa83d3135.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,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(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.lsb{letter-spacing:-3.012000px;}
.ls6{letter-spacing:-2.664000px;}
.ls1{letter-spacing:-1.500000px;}
.ls9{letter-spacing:-1.164000px;}
.ls7{letter-spacing:-1.020000px;}
.ls3{letter-spacing:-0.516000px;}
.ls4{letter-spacing:-0.468000px;}
.lsc{letter-spacing:-0.228000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.348000px;}
.lsa{letter-spacing:0.480000px;}
.ls5{letter-spacing:19.500000px;}
.lse{letter-spacing:23.634000px;}
.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:-22.152000px;}
.ws7{word-spacing:-22.008000px;}
.ws8{word-spacing:-21.672000px;}
.wsc{word-spacing:-21.444000px;}
.ws6{word-spacing:-20.652000px;}
.ws9{word-spacing:-20.508000px;}
.ws0{word-spacing:-19.500000px;}
.ws5{word-spacing:-19.008000px;}
.wsb{word-spacing:-18.660000px;}
.ws1{word-spacing:-18.024000px;}
.wsd{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.532000px;}
.ws2{word-spacing:-17.484000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-7.602000px;}
._15{margin-left:-6.366000px;}
._14{margin-left:-5.286000px;}
._10{margin-left:-3.762000px;}
._5{margin-left:-2.616000px;}
._1{margin-left:-1.500000px;}
._0{width:1.560000px;}
._4{width:2.982000px;}
._2{width:4.452000px;}
._3{width:5.844000px;}
._f{width:7.344000px;}
._11{width:8.382000px;}
._8{width:9.924000px;}
._9{width:11.112000px;}
._6{width:12.444000px;}
._7{width:13.908000px;}
._17{width:15.192000px;}
._e{width:16.320000px;}
._c{width:19.770000px;}
._b{width:21.804000px;}
._a{width:22.884000px;}
._12{width:30.690000px;}
._13{width:32.592000px;}
._d{width:40.674000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs4{font-size:51.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:8.610000px;}
.y39{bottom:8.625000px;}
.y3e{bottom:9.000000px;}
.y41{bottom:9.375000px;}
.y3b{bottom:34.125000px;}
.y3d{bottom:34.500000px;}
.y40{bottom:34.875000px;}
.y45{bottom:34.920000px;}
.y47{bottom:180.450000px;}
.y46{bottom:232.200000px;}
.y5c{bottom:237.075000px;}
.y5b{bottom:261.075000px;}
.y20{bottom:281.700000px;}
.y44{bottom:283.950000px;}
.y5a{bottom:285.075000px;}
.y1f{bottom:305.745000px;}
.y59{bottom:309.120000px;}
.y1e{bottom:329.745000px;}
.y58{bottom:333.120000px;}
.y42{bottom:336.495000px;}
.y1d{bottom:353.745000px;}
.y57{bottom:357.120000px;}
.y1c{bottom:377.370000px;}
.y56{bottom:381.120000px;}
.y3f{bottom:388.245000px;}
.y1b{bottom:401.370000px;}
.y55{bottom:405.120000px;}
.y77{bottom:418.995000px;}
.y1a{bottom:425.370000px;}
.y76{bottom:440.025000px;}
.y3c{bottom:440.400000px;}
.y54{bottom:441.150000px;}
.y19{bottom:449.400000px;}
.y75{bottom:461.025000px;}
.y53{bottom:477.150000px;}
.y74{bottom:481.275000px;}
.y18{bottom:485.400000px;}
.y3a{bottom:492.525000px;}
.y52{bottom:501.150000px;}
.y73{bottom:502.275000px;}
.y17{bottom:521.775000px;}
.y72{bottom:522.900000px;}
.y51{bottom:525.150000px;}
.y71{bottom:543.525000px;}
.y38{bottom:544.275000px;}
.y16{bottom:545.775000px;}
.y50{bottom:549.150000px;}
.y70{bottom:564.195000px;}
.y15{bottom:569.820000px;}
.y4f{bottom:573.195000px;}
.y37{bottom:573.945000px;}
.y6f{bottom:584.820000px;}
.y14{bottom:593.820000px;}
.y4e{bottom:597.195000px;}
.y36{bottom:604.695000px;}
.y6e{bottom:605.070000px;}
.y13{bottom:617.820000px;}
.y35{bottom:625.695000px;}
.y4d{bottom:627.195000px;}
.y12{bottom:641.820000px;}
.y6d{bottom:646.320000px;}
.y4c{bottom:647.820000px;}
.y34{bottom:649.695000px;}
.y11{bottom:665.445000px;}
.y6c{bottom:667.320000px;}
.y4b{bottom:669.570000px;}
.y33{bottom:673.320000px;}
.y6b{bottom:687.945000px;}
.y4a{bottom:690.225000px;}
.y10{bottom:701.850000px;}
.y32{bottom:704.100000px;}
.y49{bottom:707.100000px;}
.y6a{bottom:708.975000px;}
.y31{bottom:724.725000px;}
.y69{bottom:730.350000px;}
.yf{bottom:738.225000px;}
.y68{bottom:750.975000px;}
.y30{bottom:755.475000px;}
.ye{bottom:762.225000px;}
.y67{bottom:771.600000px;}
.y2f{bottom:779.475000px;}
.yd{bottom:786.225000px;}
.y66{bottom:792.225000px;}
.y2e{bottom:803.475000px;}
.yc{bottom:810.225000px;}
.y65{bottom:813.225000px;}
.y2d{bottom:827.505000px;}
.y64{bottom:833.880000px;}
.yb{bottom:834.255000px;}
.y2c{bottom:851.505000px;}
.y63{bottom:854.505000px;}
.ya{bottom:858.255000px;}
.y62{bottom:875.130000px;}
.y2b{bottom:875.505000px;}
.y9{bottom:882.255000px;}
.y2a{bottom:899.505000px;}
.y8{bottom:906.255000px;}
.y29{bottom:923.505000px;}
.y7{bottom:930.255000px;}
.y28{bottom:947.550000px;}
.y6{bottom:954.300000px;}
.y27{bottom:971.550000px;}
.y5{bottom:990.300000px;}
.y26{bottom:995.175000px;}
.y61{bottom:995.550000px;}
.y25{bottom:1019.175000px;}
.y60{bottom:1019.550000px;}
.y4{bottom:1041.675000px;}
.y5f{bottom:1043.175000px;}
.y24{bottom:1055.175000px;}
.y3{bottom:1062.675000px;}
.y5e{bottom:1067.175000px;}
.y23{bottom:1091.205000px;}
.y2{bottom:1099.455000px;}
.y5d{bottom:1103.205000px;}
.y78{bottom:1106.580000px;}
.y48{bottom:1108.455000px;}
.y22{bottom:1115.205000px;}
.y1{bottom:1136.955000px;}
.y21{bottom:1139.205000px;}
.h7{height:25.537500px;}
.hd{height:29.326172px;}
.h6{height:41.894531px;}
.he{height:42.035156px;}
.h5{height:50.273438px;}
.h3{height:50.414062px;}
.h4{height:50.800781px;}
.h9{height:51.000000px;}
.ha{height:51.375000px;}
.hb{height:51.412500px;}
.hc{height:51.787500px;}
.h8{height:54.808594px;}
.h1{height:59.267578px;}
.h2{height:59.343750px;}
.h0{height:1263.000000px;}
.w3{width:224.700000px;}
.w2{width:225.120000px;}
.w4{width:228.870000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.875000px;}
.xa{left:35.625000px;}
.xb{left:41.250000px;}
.xc{left:58.530000px;}
.x4{left:106.162487px;}
.x5{left:108.037487px;}
.xe{left:135.074987px;}
.x9{left:137.332500px;}
.x2{left:138.824987px;}
.x1{left:200.324987px;}
.x7{left:334.275000px;}
.x3{left:378.524987px;}
.x8{left:559.725000px;}
.xd{left:779.969987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-2.677333pt;}
.ls6{letter-spacing:-2.368000pt;}
.ls1{letter-spacing:-1.333333pt;}
.ls9{letter-spacing:-1.034667pt;}
.ls7{letter-spacing:-0.906667pt;}
.ls3{letter-spacing:-0.458667pt;}
.ls4{letter-spacing:-0.416000pt;}
.lsc{letter-spacing:-0.202667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.309333pt;}
.lsa{letter-spacing:0.426667pt;}
.ls5{letter-spacing:17.333333pt;}
.lse{letter-spacing:21.008000pt;}
.wsa{word-spacing:-19.690667pt;}
.ws7{word-spacing:-19.562667pt;}
.ws8{word-spacing:-19.264000pt;}
.wsc{word-spacing:-19.061333pt;}
.ws6{word-spacing:-18.357333pt;}
.ws9{word-spacing:-18.229333pt;}
.ws0{word-spacing:-17.333333pt;}
.ws5{word-spacing:-16.896000pt;}
.wsb{word-spacing:-16.586667pt;}
.ws1{word-spacing:-16.021333pt;}
.wsd{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.584000pt;}
.ws2{word-spacing:-15.541333pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-6.757333pt;}
._15{margin-left:-5.658667pt;}
._14{margin-left:-4.698667pt;}
._10{margin-left:-3.344000pt;}
._5{margin-left:-2.325333pt;}
._1{margin-left:-1.333333pt;}
._0{width:1.386667pt;}
._4{width:2.650667pt;}
._2{width:3.957333pt;}
._3{width:5.194667pt;}
._f{width:6.528000pt;}
._11{width:7.450667pt;}
._8{width:8.821333pt;}
._9{width:9.877333pt;}
._6{width:11.061333pt;}
._7{width:12.362667pt;}
._17{width:13.504000pt;}
._e{width:14.506667pt;}
._c{width:17.573333pt;}
._b{width:19.381333pt;}
._a{width:20.341333pt;}
._12{width:27.280000pt;}
._13{width:28.970667pt;}
._d{width:36.154667pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:45.333333pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:7.653333pt;}
.y39{bottom:7.666667pt;}
.y3e{bottom:8.000000pt;}
.y41{bottom:8.333333pt;}
.y3b{bottom:30.333333pt;}
.y3d{bottom:30.666667pt;}
.y40{bottom:31.000000pt;}
.y45{bottom:31.040000pt;}
.y47{bottom:160.400000pt;}
.y46{bottom:206.400000pt;}
.y5c{bottom:210.733333pt;}
.y5b{bottom:232.066667pt;}
.y20{bottom:250.400000pt;}
.y44{bottom:252.400000pt;}
.y5a{bottom:253.400000pt;}
.y1f{bottom:271.773333pt;}
.y59{bottom:274.773333pt;}
.y1e{bottom:293.106667pt;}
.y58{bottom:296.106667pt;}
.y42{bottom:299.106667pt;}
.y1d{bottom:314.440000pt;}
.y57{bottom:317.440000pt;}
.y1c{bottom:335.440000pt;}
.y56{bottom:338.773333pt;}
.y3f{bottom:345.106667pt;}
.y1b{bottom:356.773333pt;}
.y55{bottom:360.106667pt;}
.y77{bottom:372.440000pt;}
.y1a{bottom:378.106667pt;}
.y76{bottom:391.133333pt;}
.y3c{bottom:391.466667pt;}
.y54{bottom:392.133333pt;}
.y19{bottom:399.466667pt;}
.y75{bottom:409.800000pt;}
.y53{bottom:424.133333pt;}
.y74{bottom:427.800000pt;}
.y18{bottom:431.466667pt;}
.y3a{bottom:437.800000pt;}
.y52{bottom:445.466667pt;}
.y73{bottom:446.466667pt;}
.y17{bottom:463.800000pt;}
.y72{bottom:464.800000pt;}
.y51{bottom:466.800000pt;}
.y71{bottom:483.133333pt;}
.y38{bottom:483.800000pt;}
.y16{bottom:485.133333pt;}
.y50{bottom:488.133333pt;}
.y70{bottom:501.506667pt;}
.y15{bottom:506.506667pt;}
.y4f{bottom:509.506667pt;}
.y37{bottom:510.173333pt;}
.y6f{bottom:519.840000pt;}
.y14{bottom:527.840000pt;}
.y4e{bottom:530.840000pt;}
.y36{bottom:537.506667pt;}
.y6e{bottom:537.840000pt;}
.y13{bottom:549.173333pt;}
.y35{bottom:556.173333pt;}
.y4d{bottom:557.506667pt;}
.y12{bottom:570.506667pt;}
.y6d{bottom:574.506667pt;}
.y4c{bottom:575.840000pt;}
.y34{bottom:577.506667pt;}
.y11{bottom:591.506667pt;}
.y6c{bottom:593.173333pt;}
.y4b{bottom:595.173333pt;}
.y33{bottom:598.506667pt;}
.y6b{bottom:611.506667pt;}
.y4a{bottom:613.533333pt;}
.y10{bottom:623.866667pt;}
.y32{bottom:625.866667pt;}
.y49{bottom:628.533333pt;}
.y6a{bottom:630.200000pt;}
.y31{bottom:644.200000pt;}
.y69{bottom:649.200000pt;}
.yf{bottom:656.200000pt;}
.y68{bottom:667.533333pt;}
.y30{bottom:671.533333pt;}
.ye{bottom:677.533333pt;}
.y67{bottom:685.866667pt;}
.y2f{bottom:692.866667pt;}
.yd{bottom:698.866667pt;}
.y66{bottom:704.200000pt;}
.y2e{bottom:714.200000pt;}
.yc{bottom:720.200000pt;}
.y65{bottom:722.866667pt;}
.y2d{bottom:735.560000pt;}
.y64{bottom:741.226667pt;}
.yb{bottom:741.560000pt;}
.y2c{bottom:756.893333pt;}
.y63{bottom:759.560000pt;}
.ya{bottom:762.893333pt;}
.y62{bottom:777.893333pt;}
.y2b{bottom:778.226667pt;}
.y9{bottom:784.226667pt;}
.y2a{bottom:799.560000pt;}
.y8{bottom:805.560000pt;}
.y29{bottom:820.893333pt;}
.y7{bottom:826.893333pt;}
.y28{bottom:842.266667pt;}
.y6{bottom:848.266667pt;}
.y27{bottom:863.600000pt;}
.y5{bottom:880.266667pt;}
.y26{bottom:884.600000pt;}
.y61{bottom:884.933333pt;}
.y25{bottom:905.933333pt;}
.y60{bottom:906.266667pt;}
.y4{bottom:925.933333pt;}
.y5f{bottom:927.266667pt;}
.y24{bottom:937.933333pt;}
.y3{bottom:944.600000pt;}
.y5e{bottom:948.600000pt;}
.y23{bottom:969.960000pt;}
.y2{bottom:977.293333pt;}
.y5d{bottom:980.626667pt;}
.y78{bottom:983.626667pt;}
.y48{bottom:985.293333pt;}
.y22{bottom:991.293333pt;}
.y1{bottom:1010.626667pt;}
.y21{bottom:1012.626667pt;}
.h7{height:22.700000pt;}
.hd{height:26.067708pt;}
.h6{height:37.239583pt;}
.he{height:37.364583pt;}
.h5{height:44.687500pt;}
.h3{height:44.812500pt;}
.h4{height:45.156250pt;}
.h9{height:45.333333pt;}
.ha{height:45.666667pt;}
.hb{height:45.700000pt;}
.hc{height:46.033333pt;}
.h8{height:48.718750pt;}
.h1{height:52.682292pt;}
.h2{height:52.750000pt;}
.h0{height:1122.666667pt;}
.w3{width:199.733333pt;}
.w2{width:200.106667pt;}
.w4{width:203.440000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.000000pt;}
.xa{left:31.666667pt;}
.xb{left:36.666667pt;}
.xc{left:52.026667pt;}
.x4{left:94.366655pt;}
.x5{left:96.033322pt;}
.xe{left:120.066655pt;}
.x9{left:122.073333pt;}
.x2{left:123.399988pt;}
.x1{left:178.066655pt;}
.x7{left:297.133333pt;}
.x3{left:336.466655pt;}
.x8{left:497.533333pt;}
.xd{left:693.306655pt;}
}




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