
    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_12689e4ab1e3b72a83fc1703.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_b65119cf07db02d24c135637.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915527;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_ad857f5d2a1aea90fdd34920.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c0722bb8eaf2cf0b987730a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_800542d5131e77b8d78fe452.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.030000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.278640px;}
.ls3{letter-spacing:0.283968px;}
.ls5{letter-spacing:0.317376px;}
.ls13{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.359136px;}
.lsa{letter-spacing:0.388800px;}
.ls19{letter-spacing:0.400200px;}
.lse{letter-spacing:0.401760px;}
.ls8{letter-spacing:0.518400px;}
.ls6{letter-spacing:0.522720px;}
.ls2{letter-spacing:0.527472px;}
.ls16{letter-spacing:0.549600px;}
.ls1b{letter-spacing:0.583200px;}
.lsf{letter-spacing:0.602640px;}
.ls18{letter-spacing:0.667440px;}
.lsb{letter-spacing:0.680400px;}
.ls1a{letter-spacing:0.712800px;}
.ls1{letter-spacing:0.725760px;}
.ls15{letter-spacing:0.797040px;}
.ls10{letter-spacing:0.874800px;}
.ls7{letter-spacing:0.907200px;}
.ls12{letter-spacing:0.920160px;}
.ls14{letter-spacing:0.997920px;}
.lsd{letter-spacing:3.823200px;}
.ls1c{letter-spacing:7.452000px;}
.ls1d{letter-spacing:7.808400px;}
.ls1e{letter-spacing:7.840800px;}
.ls1f{letter-spacing:8.942400px;}
.lsc{letter-spacing:12.376800px;}
.ls20{letter-spacing:25.077600px;}
.ls21{letter-spacing:42.768000px;}
.ls9{letter-spacing:59.616000px;}
.ls17{letter-spacing:59.628000px;}
.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;}
}
.ws2{word-spacing:-26.943840px;}
.ws5{word-spacing:-19.012320px;}
.ws4{word-spacing:-18.934560px;}
.ws3{word-spacing:-18.921600px;}
.ws7{word-spacing:-18.889200px;}
.ws9{word-spacing:-18.811440px;}
.wsa{word-spacing:-18.694800px;}
.ws6{word-spacing:-18.617040px;}
.wsb{word-spacing:-18.416160px;}
.ws8{word-spacing:-18.338400px;}
.ws1{word-spacing:-16.500000px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-5.280000px;}
._16{margin-left:-4.218480px;}
._2{margin-left:-2.838000px;}
._0{margin-left:-1.012320px;}
._4{width:1.166400px;}
._12{width:2.568960px;}
._11{width:3.595680px;}
._7{width:4.860000px;}
._a{width:6.196320px;}
._b{width:7.576560px;}
._19{width:8.751600px;}
._14{width:9.947520px;}
._10{width:10.991520px;}
._5{width:12.117600px;}
._1b{width:17.503920px;}
._15{width:19.392480px;}
._6{width:20.565360px;}
._17{width:21.578400px;}
._18{width:22.615200px;}
._1c{width:23.716800px;}
._1d{width:24.753600px;}
._8{width:26.907840px;}
._9{width:28.228320px;}
._d{width:29.629440px;}
._3{width:31.168800px;}
._1a{width:32.181120px;}
._e{width:34.384320px;}
._f{width:35.859600px;}
._1e{width:41.731200px;}
._c{width:101.556000px;}
._13{width:146.059200px;}
.fc5{color:rgb(25,60,101);}
.fc3{color:rgb(53,66,87);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(108,108,108);}
.fc1{color:rgb(29,29,29);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.280000px;}
.fs1{font-size:64.800000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs6{font-size:95.040000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:17.430000px;}
.y42{bottom:102.654000px;}
.y12{bottom:104.220000px;}
.y41{bottom:131.101200px;}
.y11{bottom:137.350800px;}
.y1e{bottom:141.212250px;}
.y65{bottom:146.188800px;}
.y40{bottom:159.548400px;}
.y1d{bottom:161.012250px;}
.y10{bottom:173.702880px;}
.y64{bottom:174.636000px;}
.y3f{bottom:187.995600px;}
.y1c{bottom:200.612250px;}
.y63{bottom:203.083200px;}
.yf{bottom:209.700000px;}
.y3e{bottom:216.442800px;}
.y1b{bottom:220.412250px;}
.y62{bottom:231.530400px;}
.y1a{bottom:240.212250px;}
.ye{bottom:242.452800px;}
.y3d{bottom:245.959200px;}
.y61{bottom:259.977600px;}
.y19{bottom:260.012250px;}
.yd{bottom:270.900000px;}
.y3c{bottom:274.406400px;}
.y18{bottom:279.812250px;}
.y60{bottom:289.850400px;}
.yc{bottom:294.282720px;}
.y17{bottom:299.612250px;}
.y3b{bottom:302.853600px;}
.y5f{bottom:318.297600px;}
.y16{bottom:319.412250px;}
.yb{bottom:322.011360px;}
.y3a{bottom:331.657200px;}
.y5e{bottom:347.814000px;}
.ya{bottom:349.740000px;}
.y39{bottom:360.104400px;}
.y5d{bottom:376.261200px;}
.y9{bottom:383.940000px;}
.y38{bottom:389.620800px;}
.y5c{bottom:405.777600px;}
.y8{bottom:417.422880px;}
.y37{bottom:418.068000px;}
.y5b{bottom:434.224800px;}
.y36{bottom:447.584400px;}
.y7{bottom:453.420000px;}
.y5a{bottom:462.672000px;}
.y35{bottom:476.031600px;}
.y6{bottom:483.660000px;}
.y15{bottom:486.309750px;}
.y59{bottom:491.119200px;}
.y34{bottom:504.478800px;}
.y58{bottom:519.566400px;}
.y14{bottom:519.854250px;}
.y33{bottom:533.995200px;}
.y57{bottom:548.013600px;}
.y13{bottom:556.574550px;}
.y32{bottom:562.442400px;}
.y56{bottom:577.530000px;}
.y31{bottom:590.889600px;}
.y55{bottom:606.333600px;}
.y30{bottom:619.336800px;}
.y54{bottom:635.850000px;}
.y2f{bottom:649.209600px;}
.y53{bottom:664.297200px;}
.y2e{bottom:677.656800px;}
.y52{bottom:692.744400px;}
.y2d{bottom:707.173200px;}
.y51{bottom:721.191600px;}
.y2c{bottom:735.620400px;}
.y50{bottom:749.638800px;}
.y2b{bottom:765.136800px;}
.y4f{bottom:779.155200px;}
.y2a{bottom:793.584000px;}
.y4e{bottom:807.602400px;}
.y5{bottom:815.940000px;}
.y29{bottom:822.031200px;}
.y4d{bottom:836.049600px;}
.y4{bottom:843.300000px;}
.y28{bottom:850.478400px;}
.y4c{bottom:864.496800px;}
.y3{bottom:868.860000px;}
.y27{bottom:879.994800px;}
.y4b{bottom:892.944000px;}
.y2{bottom:901.620000px;}
.y26{bottom:908.442000px;}
.y4a{bottom:921.391200px;}
.y25{bottom:937.958400px;}
.y49{bottom:949.838400px;}
.y24{bottom:966.405600px;}
.y48{bottom:978.285600px;}
.y23{bottom:995.209200px;}
.y47{bottom:1006.732800px;}
.y22{bottom:1023.656400px;}
.y46{bottom:1036.605600px;}
.y21{bottom:1053.172800px;}
.y45{bottom:1065.052800px;}
.y20{bottom:1081.620000px;}
.y44{bottom:1093.500000px;}
.y1f{bottom:1116.180000px;}
.y43{bottom:1121.940000px;}
.h4{height:38.815312px;}
.h9{height:45.826172px;}
.hb{height:45.858398px;}
.h3{height:47.207813px;}
.h5{height:52.453125px;}
.hd{height:58.503516px;}
.h6{height:60.845625px;}
.h7{height:75.404531px;}
.ha{height:75.856172px;}
.hc{height:85.805156px;}
.h2{height:87.072187px;}
.h1{height:1228.140000px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w1{width:857.640000px;}
.w0{width:892.500000px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:17.430000px;}
.x5{left:110.880000px;}
.xb{left:130.886340px;}
.x11{left:137.885400px;}
.xe{left:140.740200px;}
.xf{left:166.660650px;}
.xa{left:182.209380px;}
.x9{left:246.394500px;}
.xc{left:281.308950px;}
.x4{left:300.111750px;}
.x3{left:329.628450px;}
.x8{left:337.954290px;}
.xd{left:375.014250px;}
.x7{left:429.554850px;}
.x2{left:543.494850px;}
.x10{left:640.194600px;}
.x6{left:748.080000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.693333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.247680pt;}
.ls3{letter-spacing:0.252416pt;}
.ls5{letter-spacing:0.282112pt;}
.ls13{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.319232pt;}
.lsa{letter-spacing:0.345600pt;}
.ls19{letter-spacing:0.355733pt;}
.lse{letter-spacing:0.357120pt;}
.ls8{letter-spacing:0.460800pt;}
.ls6{letter-spacing:0.464640pt;}
.ls2{letter-spacing:0.468864pt;}
.ls16{letter-spacing:0.488533pt;}
.ls1b{letter-spacing:0.518400pt;}
.lsf{letter-spacing:0.535680pt;}
.ls18{letter-spacing:0.593280pt;}
.lsb{letter-spacing:0.604800pt;}
.ls1a{letter-spacing:0.633600pt;}
.ls1{letter-spacing:0.645120pt;}
.ls15{letter-spacing:0.708480pt;}
.ls10{letter-spacing:0.777600pt;}
.ls7{letter-spacing:0.806400pt;}
.ls12{letter-spacing:0.817920pt;}
.ls14{letter-spacing:0.887040pt;}
.lsd{letter-spacing:3.398400pt;}
.ls1c{letter-spacing:6.624000pt;}
.ls1d{letter-spacing:6.940800pt;}
.ls1e{letter-spacing:6.969600pt;}
.ls1f{letter-spacing:7.948800pt;}
.lsc{letter-spacing:11.001600pt;}
.ls20{letter-spacing:22.291200pt;}
.ls21{letter-spacing:38.016000pt;}
.ls9{letter-spacing:52.992000pt;}
.ls17{letter-spacing:53.002667pt;}
.ws2{word-spacing:-23.950080pt;}
.ws5{word-spacing:-16.899840pt;}
.ws4{word-spacing:-16.830720pt;}
.ws3{word-spacing:-16.819200pt;}
.ws7{word-spacing:-16.790400pt;}
.ws9{word-spacing:-16.721280pt;}
.wsa{word-spacing:-16.617600pt;}
.ws6{word-spacing:-16.548480pt;}
.wsb{word-spacing:-16.369920pt;}
.ws8{word-spacing:-16.300800pt;}
.ws1{word-spacing:-14.666667pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-4.693333pt;}
._16{margin-left:-3.749760pt;}
._2{margin-left:-2.522667pt;}
._0{margin-left:-0.899840pt;}
._4{width:1.036800pt;}
._12{width:2.283520pt;}
._11{width:3.196160pt;}
._7{width:4.320000pt;}
._a{width:5.507840pt;}
._b{width:6.734720pt;}
._19{width:7.779200pt;}
._14{width:8.842240pt;}
._10{width:9.770240pt;}
._5{width:10.771200pt;}
._1b{width:15.559040pt;}
._15{width:17.237760pt;}
._6{width:18.280320pt;}
._17{width:19.180800pt;}
._18{width:20.102400pt;}
._1c{width:21.081600pt;}
._1d{width:22.003200pt;}
._8{width:23.918080pt;}
._9{width:25.091840pt;}
._d{width:26.337280pt;}
._3{width:27.705600pt;}
._1a{width:28.605440pt;}
._e{width:30.563840pt;}
._f{width:31.875200pt;}
._1e{width:37.094400pt;}
._c{width:90.272000pt;}
._13{width:129.830400pt;}
.fs2{font-size:47.360000pt;}
.fs1{font-size:57.600000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs6{font-size:84.480000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:15.493333pt;}
.y42{bottom:91.248000pt;}
.y12{bottom:92.640000pt;}
.y41{bottom:116.534400pt;}
.y11{bottom:122.089600pt;}
.y1e{bottom:125.522000pt;}
.y65{bottom:129.945600pt;}
.y40{bottom:141.820800pt;}
.y1d{bottom:143.122000pt;}
.y10{bottom:154.402560pt;}
.y64{bottom:155.232000pt;}
.y3f{bottom:167.107200pt;}
.y1c{bottom:178.322000pt;}
.y63{bottom:180.518400pt;}
.yf{bottom:186.400000pt;}
.y3e{bottom:192.393600pt;}
.y1b{bottom:195.922000pt;}
.y62{bottom:205.804800pt;}
.y1a{bottom:213.522000pt;}
.ye{bottom:215.513600pt;}
.y3d{bottom:218.630400pt;}
.y61{bottom:231.091200pt;}
.y19{bottom:231.122000pt;}
.yd{bottom:240.800000pt;}
.y3c{bottom:243.916800pt;}
.y18{bottom:248.722000pt;}
.y60{bottom:257.644800pt;}
.yc{bottom:261.584640pt;}
.y17{bottom:266.322000pt;}
.y3b{bottom:269.203200pt;}
.y5f{bottom:282.931200pt;}
.y16{bottom:283.922000pt;}
.yb{bottom:286.232320pt;}
.y3a{bottom:294.806400pt;}
.y5e{bottom:309.168000pt;}
.ya{bottom:310.880000pt;}
.y39{bottom:320.092800pt;}
.y5d{bottom:334.454400pt;}
.y9{bottom:341.280000pt;}
.y38{bottom:346.329600pt;}
.y5c{bottom:360.691200pt;}
.y8{bottom:371.042560pt;}
.y37{bottom:371.616000pt;}
.y5b{bottom:385.977600pt;}
.y36{bottom:397.852800pt;}
.y7{bottom:403.040000pt;}
.y5a{bottom:411.264000pt;}
.y35{bottom:423.139200pt;}
.y6{bottom:429.920000pt;}
.y15{bottom:432.275333pt;}
.y59{bottom:436.550400pt;}
.y34{bottom:448.425600pt;}
.y58{bottom:461.836800pt;}
.y14{bottom:462.092667pt;}
.y33{bottom:474.662400pt;}
.y57{bottom:487.123200pt;}
.y13{bottom:494.732933pt;}
.y32{bottom:499.948800pt;}
.y56{bottom:513.360000pt;}
.y31{bottom:525.235200pt;}
.y55{bottom:538.963200pt;}
.y30{bottom:550.521600pt;}
.y54{bottom:565.200000pt;}
.y2f{bottom:577.075200pt;}
.y53{bottom:590.486400pt;}
.y2e{bottom:602.361600pt;}
.y52{bottom:615.772800pt;}
.y2d{bottom:628.598400pt;}
.y51{bottom:641.059200pt;}
.y2c{bottom:653.884800pt;}
.y50{bottom:666.345600pt;}
.y2b{bottom:680.121600pt;}
.y4f{bottom:692.582400pt;}
.y2a{bottom:705.408000pt;}
.y4e{bottom:717.868800pt;}
.y5{bottom:725.280000pt;}
.y29{bottom:730.694400pt;}
.y4d{bottom:743.155200pt;}
.y4{bottom:749.600000pt;}
.y28{bottom:755.980800pt;}
.y4c{bottom:768.441600pt;}
.y3{bottom:772.320000pt;}
.y27{bottom:782.217600pt;}
.y4b{bottom:793.728000pt;}
.y2{bottom:801.440000pt;}
.y26{bottom:807.504000pt;}
.y4a{bottom:819.014400pt;}
.y25{bottom:833.740800pt;}
.y49{bottom:844.300800pt;}
.y24{bottom:859.027200pt;}
.y48{bottom:869.587200pt;}
.y23{bottom:884.630400pt;}
.y47{bottom:894.873600pt;}
.y22{bottom:909.916800pt;}
.y46{bottom:921.427200pt;}
.y21{bottom:936.153600pt;}
.y45{bottom:946.713600pt;}
.y20{bottom:961.440000pt;}
.y44{bottom:972.000000pt;}
.y1f{bottom:992.160000pt;}
.y43{bottom:997.280000pt;}
.h4{height:34.502500pt;}
.h9{height:40.734375pt;}
.hb{height:40.763021pt;}
.h3{height:41.962500pt;}
.h5{height:46.625000pt;}
.hd{height:52.003125pt;}
.h6{height:54.085000pt;}
.h7{height:67.026250pt;}
.ha{height:67.427708pt;}
.hc{height:76.271250pt;}
.h2{height:77.397500pt;}
.h1{height:1091.680000pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w1{width:762.346667pt;}
.w0{width:793.333333pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:15.493333pt;}
.x5{left:98.560000pt;}
.xb{left:116.343413pt;}
.x11{left:122.564800pt;}
.xe{left:125.102400pt;}
.xf{left:148.142800pt;}
.xa{left:161.963893pt;}
.x9{left:219.017333pt;}
.xc{left:250.052400pt;}
.x4{left:266.766000pt;}
.x3{left:293.003067pt;}
.x8{left:300.403813pt;}
.xd{left:333.346000pt;}
.x7{left:381.826533pt;}
.x2{left:483.106533pt;}
.x10{left:569.061867pt;}
.x6{left:664.960000pt;}
}




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