
    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_1fa2c41712bdfe1c75ad6999.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_f203ae2c08767637d5a95b45.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c904481ac7c4b56a8e4c96a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_a07de7c36eaffcb50e082e24.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_9cd79205b47e764f63b2b991.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_d84d6c9d92a435165c1d28bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_6cb42f0ffb1f4631d030e355.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-87.660000px;}
.v2{vertical-align:-81.660000px;}
.v6{vertical-align:-79.200000px;}
.v3{vertical-align:-78.000000px;}
.v4{vertical-align:-76.800000px;}
.v5{vertical-align:-75.660000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-0.816000px;}
.lsd{letter-spacing:-0.768000px;}
.lsb{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.408000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.026400px;}
.ls1{letter-spacing:0.319200px;}
.ls11{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.408000px;}
.lsc{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.561600px;}
.ls2{letter-spacing:0.600000px;}
.ls6{letter-spacing:4.800000px;}
.ls15{letter-spacing:10.800000px;}
.ls5{letter-spacing:15.300000px;}
.ls13{letter-spacing:16.800000px;}
.ls14{letter-spacing:18.300000px;}
.ls7{letter-spacing:19.800000px;}
.ls8{letter-spacing:20.400000px;}
.ls3{letter-spacing:63.000000px;}
.ls4{letter-spacing:1016.430000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.wse{word-spacing:-40.608000px;}
.ws5{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.408000px;}
.wsa{word-spacing:-18.384000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.592000px;}
.ws6{word-spacing:-17.232000px;}
.ws8{word-spacing:-17.184000px;}
.ws7{word-spacing:-16.800000px;}
.ws1{word-spacing:-16.500000px;}
.ws2{word-spacing:-16.461600px;}
.ws0{word-spacing:-15.900000px;}
.ws3{word-spacing:-15.300000px;}
.wsc{word-spacing:0.000000px;}
._7{margin-left:-2.371200px;}
._2{margin-left:-1.321200px;}
._0{width:1.621200px;}
._6{width:3.555600px;}
._1{width:4.556400px;}
._8{width:6.264000px;}
._c{width:7.413600px;}
._f{width:9.261600px;}
._3{width:10.296000px;}
._4{width:11.508000px;}
._5{width:12.702000px;}
._d{width:13.968000px;}
._e{width:15.912000px;}
._16{width:16.945200px;}
._a{width:19.867200px;}
._9{width:21.198000px;}
._10{width:22.288800px;}
._b{width:23.676000px;}
._15{width:24.714000px;}
._14{width:26.712000px;}
._19{width:27.754800px;}
._13{width:29.248800px;}
._12{width:30.325200px;}
._11{width:31.896000px;}
._18{width:33.150000px;}
._17{width:34.272000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:57.600000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:63.600000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.785000px;}
.y5{bottom:5.082000px;}
.y37{bottom:5.385000px;}
.y2{bottom:5.685000px;}
.y4{bottom:68.755500px;}
.y7{bottom:74.137500px;}
.y66{bottom:113.437500px;}
.y35{bottom:119.737500px;}
.y65{bottom:134.137500px;}
.y64{bottom:154.830000px;}
.y34{bottom:159.930000px;}
.y63{bottom:175.575000px;}
.y33{bottom:176.175000px;}
.y62{bottom:196.275000px;}
.y32{bottom:196.875000px;}
.y61{bottom:216.975000px;}
.y31{bottom:217.575000px;}
.y60{bottom:237.675000px;}
.y30{bottom:237.975000px;}
.y5f{bottom:258.375000px;}
.y2f{bottom:258.675000px;}
.y5e{bottom:279.075000px;}
.y2e{bottom:298.575000px;}
.y5d{bottom:299.775000px;}
.y2d{bottom:315.375000px;}
.y5c{bottom:320.475000px;}
.y2c{bottom:336.075000px;}
.y2b{bottom:356.505000px;}
.y5b{bottom:360.705000px;}
.y5a{bottom:379.620000px;}
.y2a{bottom:396.120000px;}
.y59{bottom:400.320000px;}
.y29{bottom:412.920000px;}
.y58{bottom:421.005000px;}
.y28{bottom:433.620000px;}
.y57{bottom:441.705000px;}
.y27{bottom:454.320000px;}
.y56{bottom:462.420000px;}
.y26{bottom:475.005000px;}
.y55{bottom:483.120000px;}
.y25{bottom:495.720000px;}
.y54{bottom:503.820000px;}
.y24{bottom:516.450000px;}
.y53{bottom:524.550000px;}
.y23{bottom:537.150000px;}
.y52{bottom:545.250000px;}
.y22{bottom:557.850000px;}
.y51{bottom:565.950000px;}
.y50{bottom:586.650000px;}
.y21{bottom:597.750000px;}
.y20{bottom:614.250000px;}
.y4f{bottom:627.150000px;}
.y1f{bottom:634.950000px;}
.y4e{bottom:646.050000px;}
.y1e{bottom:655.650000px;}
.y4d{bottom:666.750000px;}
.y1d{bottom:676.380000px;}
.y4c{bottom:687.495000px;}
.y1c{bottom:697.095000px;}
.y4b{bottom:708.195000px;}
.y1b{bottom:717.780000px;}
.y4a{bottom:728.880000px;}
.y49{bottom:749.595000px;}
.y1a{bottom:757.995000px;}
.y48{bottom:770.295000px;}
.y19{bottom:774.195000px;}
.y47{bottom:790.995000px;}
.y18{bottom:794.880000px;}
.y46{bottom:811.695000px;}
.y17{bottom:815.580000px;}
.y45{bottom:832.380000px;}
.y16{bottom:835.995000px;}
.y44{bottom:853.125000px;}
.y15{bottom:856.725000px;}
.y43{bottom:873.825000px;}
.y14{bottom:877.425000px;}
.y13{bottom:898.125000px;}
.y42{bottom:914.325000px;}
.y12{bottom:918.525000px;}
.y41{bottom:933.225000px;}
.y11{bottom:939.225000px;}
.y40{bottom:953.925000px;}
.y10{bottom:959.925000px;}
.y3f{bottom:974.625000px;}
.y3e{bottom:995.325000px;}
.yf{bottom:1000.725000px;}
.y3d{bottom:1016.070000px;}
.ye{bottom:1020.570000px;}
.yd{bottom:1036.455000px;}
.y3c{bottom:1036.755000px;}
.y3b{bottom:1057.455000px;}
.yc{bottom:1077.870000px;}
.y3a{bottom:1078.170000px;}
.yb{bottom:1098.870000px;}
.ya{bottom:1119.570000px;}
.y39{bottom:1161.870000px;}
.y9{bottom:1162.170000px;}
.y8{bottom:1177.455000px;}
.y36{bottom:1187.115000px;}
.y1{bottom:1187.415000px;}
.y6{bottom:1194.300000px;}
.y38{bottom:1194.600000px;}
.h3{height:19.182000px;}
.h1{height:19.185000px;}
.ha{height:20.985000px;}
.h2{height:45.650391px;}
.h9{height:56.531250px;}
.h5{height:58.886719px;}
.h4{height:62.419922px;}
.hb{height:64.775391px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.h8{height:76.552734px;}
.h0{height:1263.000000px;}
.w1{width:6.582000px;}
.w3{width:96.619500px;}
.w2{width:209.745000px;}
.w4{width:268.005000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:1.500000px;}
.x3{left:5.100000px;}
.x5{left:118.537500px;}
.x1{left:125.737500px;}
.x9{left:127.237500px;}
.x8{left:214.275000px;}
.x7{left:301.620000px;}
.x4{left:341.520000px;}
.x6{left:385.620000px;}
.xa{left:498.450000px;}
@media print{
.v1{vertical-align:-77.920000pt;}
.v2{vertical-align:-72.586667pt;}
.v6{vertical-align:-70.400000pt;}
.v3{vertical-align:-69.333333pt;}
.v4{vertical-align:-68.266667pt;}
.v5{vertical-align:-67.253333pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-0.725333pt;}
.lsd{letter-spacing:-0.682667pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.362667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023467pt;}
.ls1{letter-spacing:0.283733pt;}
.ls11{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.362667pt;}
.lsc{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.499200pt;}
.ls2{letter-spacing:0.533333pt;}
.ls6{letter-spacing:4.266667pt;}
.ls15{letter-spacing:9.600000pt;}
.ls5{letter-spacing:13.600000pt;}
.ls13{letter-spacing:14.933333pt;}
.ls14{letter-spacing:16.266667pt;}
.ls7{letter-spacing:17.600000pt;}
.ls8{letter-spacing:18.133333pt;}
.ls3{letter-spacing:56.000000pt;}
.ls4{letter-spacing:903.493333pt;}
.wsd{word-spacing:-64.000000pt;}
.wse{word-spacing:-36.096000pt;}
.ws5{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.362667pt;}
.wsa{word-spacing:-16.341333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.637333pt;}
.ws6{word-spacing:-15.317333pt;}
.ws8{word-spacing:-15.274667pt;}
.ws7{word-spacing:-14.933333pt;}
.ws1{word-spacing:-14.666667pt;}
.ws2{word-spacing:-14.632533pt;}
.ws0{word-spacing:-14.133333pt;}
.ws3{word-spacing:-13.600000pt;}
.wsc{word-spacing:0.000000pt;}
._7{margin-left:-2.107733pt;}
._2{margin-left:-1.174400pt;}
._0{width:1.441067pt;}
._6{width:3.160533pt;}
._1{width:4.050133pt;}
._8{width:5.568000pt;}
._c{width:6.589867pt;}
._f{width:8.232533pt;}
._3{width:9.152000pt;}
._4{width:10.229333pt;}
._5{width:11.290667pt;}
._d{width:12.416000pt;}
._e{width:14.144000pt;}
._16{width:15.062400pt;}
._a{width:17.659733pt;}
._9{width:18.842667pt;}
._10{width:19.812267pt;}
._b{width:21.045333pt;}
._15{width:21.968000pt;}
._14{width:23.744000pt;}
._19{width:24.670933pt;}
._13{width:25.998933pt;}
._12{width:26.955733pt;}
._11{width:28.352000pt;}
._18{width:29.466667pt;}
._17{width:30.464000pt;}
.fs4{font-size:51.200000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:56.533333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.253333pt;}
.y5{bottom:4.517333pt;}
.y37{bottom:4.786667pt;}
.y2{bottom:5.053333pt;}
.y4{bottom:61.116000pt;}
.y7{bottom:65.900000pt;}
.y66{bottom:100.833333pt;}
.y35{bottom:106.433333pt;}
.y65{bottom:119.233333pt;}
.y64{bottom:137.626667pt;}
.y34{bottom:142.160000pt;}
.y63{bottom:156.066667pt;}
.y33{bottom:156.600000pt;}
.y62{bottom:174.466667pt;}
.y32{bottom:175.000000pt;}
.y61{bottom:192.866667pt;}
.y31{bottom:193.400000pt;}
.y60{bottom:211.266667pt;}
.y30{bottom:211.533333pt;}
.y5f{bottom:229.666667pt;}
.y2f{bottom:229.933333pt;}
.y5e{bottom:248.066667pt;}
.y2e{bottom:265.400000pt;}
.y5d{bottom:266.466667pt;}
.y2d{bottom:280.333333pt;}
.y5c{bottom:284.866667pt;}
.y2c{bottom:298.733333pt;}
.y2b{bottom:316.893333pt;}
.y5b{bottom:320.626667pt;}
.y5a{bottom:337.440000pt;}
.y2a{bottom:352.106667pt;}
.y59{bottom:355.840000pt;}
.y29{bottom:367.040000pt;}
.y58{bottom:374.226667pt;}
.y28{bottom:385.440000pt;}
.y57{bottom:392.626667pt;}
.y27{bottom:403.840000pt;}
.y56{bottom:411.040000pt;}
.y26{bottom:422.226667pt;}
.y55{bottom:429.440000pt;}
.y25{bottom:440.640000pt;}
.y54{bottom:447.840000pt;}
.y24{bottom:459.066667pt;}
.y53{bottom:466.266667pt;}
.y23{bottom:477.466667pt;}
.y52{bottom:484.666667pt;}
.y22{bottom:495.866667pt;}
.y51{bottom:503.066667pt;}
.y50{bottom:521.466667pt;}
.y21{bottom:531.333333pt;}
.y20{bottom:546.000000pt;}
.y4f{bottom:557.466667pt;}
.y1f{bottom:564.400000pt;}
.y4e{bottom:574.266667pt;}
.y1e{bottom:582.800000pt;}
.y4d{bottom:592.666667pt;}
.y1d{bottom:601.226667pt;}
.y4c{bottom:611.106667pt;}
.y1c{bottom:619.640000pt;}
.y4b{bottom:629.506667pt;}
.y1b{bottom:638.026667pt;}
.y4a{bottom:647.893333pt;}
.y49{bottom:666.306667pt;}
.y1a{bottom:673.773333pt;}
.y48{bottom:684.706667pt;}
.y19{bottom:688.173333pt;}
.y47{bottom:703.106667pt;}
.y18{bottom:706.560000pt;}
.y46{bottom:721.506667pt;}
.y17{bottom:724.960000pt;}
.y45{bottom:739.893333pt;}
.y16{bottom:743.106667pt;}
.y44{bottom:758.333333pt;}
.y15{bottom:761.533333pt;}
.y43{bottom:776.733333pt;}
.y14{bottom:779.933333pt;}
.y13{bottom:798.333333pt;}
.y42{bottom:812.733333pt;}
.y12{bottom:816.466667pt;}
.y41{bottom:829.533333pt;}
.y11{bottom:834.866667pt;}
.y40{bottom:847.933333pt;}
.y10{bottom:853.266667pt;}
.y3f{bottom:866.333333pt;}
.y3e{bottom:884.733333pt;}
.yf{bottom:889.533333pt;}
.y3d{bottom:903.173333pt;}
.ye{bottom:907.173333pt;}
.yd{bottom:921.293333pt;}
.y3c{bottom:921.560000pt;}
.y3b{bottom:939.960000pt;}
.yc{bottom:958.106667pt;}
.y3a{bottom:958.373333pt;}
.yb{bottom:976.773333pt;}
.ya{bottom:995.173333pt;}
.y39{bottom:1032.773333pt;}
.y9{bottom:1033.040000pt;}
.y8{bottom:1046.626667pt;}
.y36{bottom:1055.213333pt;}
.y1{bottom:1055.480000pt;}
.y6{bottom:1061.600000pt;}
.y38{bottom:1061.866667pt;}
.h3{height:17.050667pt;}
.h1{height:17.053333pt;}
.ha{height:18.653333pt;}
.h2{height:40.578125pt;}
.h9{height:50.250000pt;}
.h5{height:52.343750pt;}
.h4{height:55.484375pt;}
.hb{height:57.578125pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.h8{height:68.046875pt;}
.h0{height:1122.666667pt;}
.w1{width:5.850667pt;}
.w3{width:85.884000pt;}
.w2{width:186.440000pt;}
.w4{width:238.226667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:1.333333pt;}
.x3{left:4.533333pt;}
.x5{left:105.366667pt;}
.x1{left:111.766667pt;}
.x9{left:113.100000pt;}
.x8{left:190.466667pt;}
.x7{left:268.106667pt;}
.x4{left:303.573333pt;}
.x6{left:342.773333pt;}
.xa{left:443.066667pt;}
}




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