
    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_fc5f1535da01843c419799ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.987793;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_d3cf89c00ceff60291b44060.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_341c9fdba2e95c188b944638.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.987793;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_83a977a5194d2f7efe0ea4c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_6d9eb13dbcba6ef305ff8e89.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_4548cce470e04f1c40315e49.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_f22d1854f3a12b7b63e2acb5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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:ff8;src:url('chunks/assets/font_48096552013d58d357308dd2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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:ff9;src:url('chunks/assets/font_c4a73f8a744f84a0f87045b1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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:ffb;src:url('chunks/assets/font_ef6a913b03cd6bb14e7db9cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:ffc;src:url('chunks/assets/font_4f288d3b6a893555739903eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.763672;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;}
.v1{vertical-align:19.200000px;}
.ls6{letter-spacing:-2.196000px;}
.ls8{letter-spacing:-2.034000px;}
.ls3{letter-spacing:-1.038000px;}
.ls5{letter-spacing:-0.590400px;}
.lsb{letter-spacing:-0.259200px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.585600px;}
.ls7{letter-spacing:2.400000px;}
.ls1{letter-spacing:2.442000px;}
.ls9{letter-spacing:3.667200px;}
.lsa{letter-spacing:10.118400px;}
.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;}
}
.ws9{word-spacing:-67.200000px;}
.ws3{word-spacing:-30.051450px;}
.ws6{word-spacing:-27.609450px;}
.ws7{word-spacing:-21.436800px;}
.ws2{word-spacing:-21.235200px;}
.ws0{word-spacing:-19.718400px;}
.ws1{word-spacing:-18.680400px;}
.ws5{word-spacing:-14.102400px;}
.ws4{word-spacing:-9.172800px;}
.ws8{word-spacing:0.000000px;}
._10{margin-left:-11.834400px;}
._11{margin-left:-10.800000px;}
._17{margin-left:-9.351600px;}
._7{margin-left:-7.459200px;}
._5{margin-left:-5.512800px;}
._6{margin-left:-4.051200px;}
._2{margin-left:-2.683200px;}
._0{margin-left:-1.435200px;}
._1{width:1.185600px;}
._4{width:2.992800px;}
._3{width:4.202400px;}
._b{width:5.356800px;}
._f{width:6.739200px;}
._8{width:8.112000px;}
._c{width:9.884400px;}
._9{width:12.237600px;}
._e{width:17.188800px;}
._a{width:22.650000px;}
._d{width:24.613200px;}
._16{width:26.684400px;}
._12{width:31.944000px;}
._15{width:37.020000px;}
._13{width:41.671200px;}
._14{width:46.190400px;}
.fc3{color:rgb(50,71,91);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(52,52,52);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:43.200000px;}
.fs5{font-size:52.800000px;}
.fs1{font-size:62.400000px;}
.fs0{font-size:67.200000px;}
.fs2{font-size:86.550000px;}
.fs3{font-size:216.150000px;}
.y2{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.600000px;}
.y4{bottom:10.830000px;}
.y3{bottom:28.830000px;}
.y9{bottom:43.237500px;}
.y8{bottom:58.875000px;}
.y6{bottom:78.075000px;}
.y35{bottom:128.550000px;}
.y34{bottom:147.750000px;}
.y33{bottom:166.995000px;}
.y32{bottom:186.180000px;}
.y31{bottom:206.625000px;}
.y30{bottom:225.825000px;}
.y2f{bottom:245.070000px;}
.y2e{bottom:264.255000px;}
.y2d{bottom:283.500000px;}
.y5d{bottom:302.700000px;}
.y2c{bottom:303.900000px;}
.y5c{bottom:320.730000px;}
.y2b{bottom:323.130000px;}
.y5b{bottom:337.545000px;}
.y2a{bottom:342.330000px;}
.y5a{bottom:355.575000px;}
.y29{bottom:361.575000px;}
.y59{bottom:374.775000px;}
.y28{bottom:380.775000px;}
.y58{bottom:394.005000px;}
.y27{bottom:401.205000px;}
.y57{bottom:413.205000px;}
.y26{bottom:420.405000px;}
.y56{bottom:432.450000px;}
.y25{bottom:439.650000px;}
.y55{bottom:452.850000px;}
.y24{bottom:458.850000px;}
.y54{bottom:472.095000px;}
.y23{bottom:478.080000px;}
.y53{bottom:492.495000px;}
.y22{bottom:498.525000px;}
.y52{bottom:511.725000px;}
.y21{bottom:517.725000px;}
.y51{bottom:532.125000px;}
.y20{bottom:536.970000px;}
.y50{bottom:551.370000px;}
.y1f{bottom:556.170000px;}
.y4f{bottom:570.570000px;}
.y1e{bottom:575.400000px;}
.y4e{bottom:589.800000px;}
.y1d{bottom:595.800000px;}
.y4d{bottom:609.000000px;}
.y1c{bottom:615.045000px;}
.y4c{bottom:629.445000px;}
.y1b{bottom:634.245000px;}
.y4b{bottom:648.675000px;}
.y1a{bottom:653.475000px;}
.y4a{bottom:667.875000px;}
.y19{bottom:673.875000px;}
.y49{bottom:687.105000px;}
.y18{bottom:693.120000px;}
.y48{bottom:706.320000px;}
.y17{bottom:709.920000px;}
.y47{bottom:726.750000px;}
.y16{bottom:729.150000px;}
.y46{bottom:745.950000px;}
.y15{bottom:754.350000px;}
.y45{bottom:765.195000px;}
.y14{bottom:777.195000px;}
.y44{bottom:784.380000px;}
.y13{bottom:797.625000px;}
.y43{bottom:803.625000px;}
.y12{bottom:815.625000px;}
.y42{bottom:824.025000px;}
.y11{bottom:832.425000px;}
.y41{bottom:843.255000px;}
.y10{bottom:850.455000px;}
.y40{bottom:862.455000px;}
.y3f{bottom:881.700000px;}
.y3e{bottom:900.900000px;}
.yf{bottom:906.900000px;}
.y3d{bottom:921.330000px;}
.y3c{bottom:940.545000px;}
.y3b{bottom:959.775000px;}
.ye{bottom:963.375000px;}
.y3a{bottom:978.975000px;}
.yd{bottom:982.575000px;}
.y39{bottom:998.205000px;}
.yc{bottom:1003.005000px;}
.y38{bottom:1017.420000px;}
.yb{bottom:1028.250000px;}
.y37{bottom:1037.850000px;}
.ya{bottom:1052.250000px;}
.y36{bottom:1057.050000px;}
.y5{bottom:1076.295000px;}
.y1{bottom:1091.895000px;}
.h6{height:19.200000px;}
.h4{height:19.237500px;}
.ha{height:40.708594px;}
.h1{height:43.260000px;}
.h3{height:48.871875px;}
.he{height:50.498437px;}
.h2{height:52.631250px;}
.hb{height:62.064844px;}
.h5{height:65.953125px;}
.h7{height:67.786230px;}
.h9{height:68.807812px;}
.hd{height:69.071011px;}
.hc{height:88.620776px;}
.h8{height:169.289355px;}
.h0{height:1188.000000px;}
.w3{width:167.025000px;}
.w1{width:219.900000px;}
.w2{width:361.650000px;}
.w5{width:373.680000px;}
.w6{width:374.880000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:8.400000px;}
.x5{left:13.185000px;}
.x1{left:85.312500px;}
.x4{left:91.305000px;}
.x12{left:98.512486px;}
.xf{left:99.712486px;}
.x13{left:112.949986px;}
.x10{left:121.349986px;}
.x7{left:158.625000px;}
.xd{left:188.654986px;}
.x11{left:210.269986px;}
.x2{left:211.462500px;}
.xe{left:284.774986px;}
.xa{left:301.575000px;}
.x3{left:305.220000px;}
.xc{left:322.019986px;}
.xb{left:366.495000px;}
.x9{left:459.000000px;}
.x6{left:666.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.066667pt;}
.ls6{letter-spacing:-1.952000pt;}
.ls8{letter-spacing:-1.808000pt;}
.ls3{letter-spacing:-0.922667pt;}
.ls5{letter-spacing:-0.524800pt;}
.lsb{letter-spacing:-0.230400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.520533pt;}
.ls7{letter-spacing:2.133333pt;}
.ls1{letter-spacing:2.170667pt;}
.ls9{letter-spacing:3.259733pt;}
.lsa{letter-spacing:8.994133pt;}
.ws9{word-spacing:-59.733333pt;}
.ws3{word-spacing:-26.712400pt;}
.ws6{word-spacing:-24.541733pt;}
.ws7{word-spacing:-19.054933pt;}
.ws2{word-spacing:-18.875733pt;}
.ws0{word-spacing:-17.527467pt;}
.ws1{word-spacing:-16.604800pt;}
.ws5{word-spacing:-12.535467pt;}
.ws4{word-spacing:-8.153600pt;}
.ws8{word-spacing:0.000000pt;}
._10{margin-left:-10.519467pt;}
._11{margin-left:-9.600000pt;}
._17{margin-left:-8.312533pt;}
._7{margin-left:-6.630400pt;}
._5{margin-left:-4.900267pt;}
._6{margin-left:-3.601067pt;}
._2{margin-left:-2.385067pt;}
._0{margin-left:-1.275733pt;}
._1{width:1.053867pt;}
._4{width:2.660267pt;}
._3{width:3.735467pt;}
._b{width:4.761600pt;}
._f{width:5.990400pt;}
._8{width:7.210667pt;}
._c{width:8.786133pt;}
._9{width:10.877867pt;}
._e{width:15.278933pt;}
._a{width:20.133333pt;}
._d{width:21.878400pt;}
._16{width:23.719467pt;}
._12{width:28.394667pt;}
._15{width:32.906667pt;}
._13{width:37.041067pt;}
._14{width:41.058133pt;}
.fs4{font-size:38.400000pt;}
.fs5{font-size:46.933333pt;}
.fs1{font-size:55.466667pt;}
.fs0{font-size:59.733333pt;}
.fs2{font-size:76.933333pt;}
.fs3{font-size:192.133333pt;}
.y2{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.200000pt;}
.y4{bottom:9.626667pt;}
.y3{bottom:25.626667pt;}
.y9{bottom:38.433333pt;}
.y8{bottom:52.333333pt;}
.y6{bottom:69.400000pt;}
.y35{bottom:114.266667pt;}
.y34{bottom:131.333333pt;}
.y33{bottom:148.440000pt;}
.y32{bottom:165.493333pt;}
.y31{bottom:183.666667pt;}
.y30{bottom:200.733333pt;}
.y2f{bottom:217.840000pt;}
.y2e{bottom:234.893333pt;}
.y2d{bottom:252.000000pt;}
.y5d{bottom:269.066667pt;}
.y2c{bottom:270.133333pt;}
.y5c{bottom:285.093333pt;}
.y2b{bottom:287.226667pt;}
.y5b{bottom:300.040000pt;}
.y2a{bottom:304.293333pt;}
.y5a{bottom:316.066667pt;}
.y29{bottom:321.400000pt;}
.y59{bottom:333.133333pt;}
.y28{bottom:338.466667pt;}
.y58{bottom:350.226667pt;}
.y27{bottom:356.626667pt;}
.y57{bottom:367.293333pt;}
.y26{bottom:373.693333pt;}
.y56{bottom:384.400000pt;}
.y25{bottom:390.800000pt;}
.y55{bottom:402.533333pt;}
.y24{bottom:407.866667pt;}
.y54{bottom:419.640000pt;}
.y23{bottom:424.960000pt;}
.y53{bottom:437.773333pt;}
.y22{bottom:443.133333pt;}
.y52{bottom:454.866667pt;}
.y21{bottom:460.200000pt;}
.y51{bottom:473.000000pt;}
.y20{bottom:477.306667pt;}
.y50{bottom:490.106667pt;}
.y1f{bottom:494.373333pt;}
.y4f{bottom:507.173333pt;}
.y1e{bottom:511.466667pt;}
.y4e{bottom:524.266667pt;}
.y1d{bottom:529.600000pt;}
.y4d{bottom:541.333333pt;}
.y1c{bottom:546.706667pt;}
.y4c{bottom:559.506667pt;}
.y1b{bottom:563.773333pt;}
.y4b{bottom:576.600000pt;}
.y1a{bottom:580.866667pt;}
.y4a{bottom:593.666667pt;}
.y19{bottom:599.000000pt;}
.y49{bottom:610.760000pt;}
.y18{bottom:616.106667pt;}
.y48{bottom:627.840000pt;}
.y17{bottom:631.040000pt;}
.y47{bottom:646.000000pt;}
.y16{bottom:648.133333pt;}
.y46{bottom:663.066667pt;}
.y15{bottom:670.533333pt;}
.y45{bottom:680.173333pt;}
.y14{bottom:690.840000pt;}
.y44{bottom:697.226667pt;}
.y13{bottom:709.000000pt;}
.y43{bottom:714.333333pt;}
.y12{bottom:725.000000pt;}
.y42{bottom:732.466667pt;}
.y11{bottom:739.933333pt;}
.y41{bottom:749.560000pt;}
.y10{bottom:755.960000pt;}
.y40{bottom:766.626667pt;}
.y3f{bottom:783.733333pt;}
.y3e{bottom:800.800000pt;}
.yf{bottom:806.133333pt;}
.y3d{bottom:818.960000pt;}
.y3c{bottom:836.040000pt;}
.y3b{bottom:853.133333pt;}
.ye{bottom:856.333333pt;}
.y3a{bottom:870.200000pt;}
.yd{bottom:873.400000pt;}
.y39{bottom:887.293333pt;}
.yc{bottom:891.560000pt;}
.y38{bottom:904.373333pt;}
.yb{bottom:914.000000pt;}
.y37{bottom:922.533333pt;}
.ya{bottom:935.333333pt;}
.y36{bottom:939.600000pt;}
.y5{bottom:956.706667pt;}
.y1{bottom:970.573333pt;}
.h6{height:17.066667pt;}
.h4{height:17.100000pt;}
.ha{height:36.185417pt;}
.h1{height:38.453333pt;}
.h3{height:43.441667pt;}
.he{height:44.887500pt;}
.h2{height:46.783333pt;}
.hb{height:55.168750pt;}
.h5{height:58.625000pt;}
.h7{height:60.254427pt;}
.h9{height:61.162500pt;}
.hd{height:61.396454pt;}
.hc{height:78.774023pt;}
.h8{height:150.479427pt;}
.h0{height:1056.000000pt;}
.w3{width:148.466667pt;}
.w1{width:195.466667pt;}
.w2{width:321.466667pt;}
.w5{width:332.160000pt;}
.w6{width:333.226667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.466667pt;}
.x5{left:11.720000pt;}
.x1{left:75.833333pt;}
.x4{left:81.160000pt;}
.x12{left:87.566655pt;}
.xf{left:88.633321pt;}
.x13{left:100.399988pt;}
.x10{left:107.866655pt;}
.x7{left:141.000000pt;}
.xd{left:167.693321pt;}
.x11{left:186.906655pt;}
.x2{left:187.966667pt;}
.xe{left:253.133321pt;}
.xa{left:268.066667pt;}
.x3{left:271.306667pt;}
.xc{left:286.239988pt;}
.xb{left:325.773333pt;}
.x9{left:408.000000pt;}
.x6{left:592.773333pt;}
}




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