
    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_e4afe8c1e2bc5d312fa46968.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_8c7b454c5eb928ab177d0112.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_206c009686d410606814e849.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.106000;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;}
.v3{vertical-align:17.301622px;}
.v2{vertical-align:21.267572px;}
.v1{vertical-align:27.584644px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws24{word-spacing:0.000000px;}
.ws26{word-spacing:2.537600px;}
.ws12{word-spacing:2.913456px;}
.ws2{word-spacing:3.763612px;}
.ws0{word-spacing:26.827469px;}
.ws37{word-spacing:27.750925px;}
.ws13{word-spacing:34.106401px;}
.ws3{word-spacing:44.236970px;}
.ws3c{word-spacing:117.067108px;}
.ws39{word-spacing:117.070003px;}
.ws3b{word-spacing:117.709732px;}
.ws3a{word-spacing:126.121730px;}
.ws18{word-spacing:126.155976px;}
.ws21{word-spacing:126.157043px;}
.ws1b{word-spacing:126.159533px;}
.ws22{word-spacing:126.943282px;}
.ws1a{word-spacing:126.945772px;}
.ws17{word-spacing:126.946839px;}
.ws19{word-spacing:137.284274px;}
.ws3d{word-spacing:139.978355px;}
.ws8{word-spacing:140.646982px;}
.wsc{word-spacing:140.648367px;}
.ws7{word-spacing:141.663526px;}
.ws3e{word-spacing:141.664910px;}
.wse{word-spacing:141.666756px;}
.wsa{word-spacing:141.668140px;}
.ws15{word-spacing:143.877648px;}
.ws1e{word-spacing:143.880138px;}
.ws3f{word-spacing:144.667444px;}
.ws20{word-spacing:144.669934px;}
.ws1c{word-spacing:155.004879px;}
.ws16{word-spacing:155.005946px;}
.ws1d{word-spacing:155.008436px;}
.wsf{word-spacing:155.071472px;}
.ws2c{word-spacing:155.072856px;}
.wsd{word-spacing:155.076086px;}
.ws38{word-spacing:161.206550px;}
.ws2b{word-spacing:163.627879px;}
.ws32{word-spacing:163.629264px;}
.ws5{word-spacing:163.632494px;}
.ws30{word-spacing:164.649037px;}
.wsb{word-spacing:164.652267px;}
.ws2a{word-spacing:164.653652px;}
.ws40{word-spacing:172.035995px;}
.ws9{word-spacing:178.060213px;}
.ws6{word-spacing:178.061597px;}
.ws41{word-spacing:178.062982px;}
.ws28{word-spacing:186.613391px;}
.ws2d{word-spacing:186.616621px;}
.ws2f{word-spacing:186.618005px;}
.ws2e{word-spacing:187.637779px;}
.ws23{word-spacing:189.760157px;}
.ws11{word-spacing:195.086206px;}
.ws1f{word-spacing:198.125840px;}
.ws31{word-spacing:201.045725px;}
.ws29{word-spacing:201.047109px;}
.ws33{word-spacing:201.050339px;}
.ws14{word-spacing:215.850003px;}
.ws10{word-spacing:223.135565px;}
.ws35{word-spacing:226.738516px;}
.ws34{word-spacing:246.124307px;}
.ws1{word-spacing:250.965110px;}
.ws4{word-spacing:256.974835px;}
.ws27{word-spacing:279.963577px;}
.ws36{word-spacing:393.067782px;}
.ws25{word-spacing:401.725480px;}
._2{margin-left:-3.815595px;}
._9{margin-left:-2.393615px;}
._0{margin-left:-1.287189px;}
._d{width:1.637807px;}
._5{width:335.374469px;}
._6{width:337.832479px;}
._4{width:343.780013px;}
._c{width:344.886439px;}
._b{width:404.602554px;}
._a{width:417.809550px;}
._3{width:421.941232px;}
._8{width:439.238781px;}
._1{width:440.936866px;}
._7{width:695.017896px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:28.838738px;}
.fs2{font-size:35.443344px;}
.fs1{font-size:45.971023px;}
.fs3{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y38{bottom:182.481000px;}
.y37{bottom:272.018856px;}
.y36{bottom:283.005738px;}
.y6f{bottom:285.178845px;}
.y35{bottom:293.993509px;}
.y6e{bottom:294.118402px;}
.y6d{bottom:303.058683px;}
.y34{bottom:304.981280px;}
.y6c{bottom:311.998964px;}
.y33{bottom:315.968162px;}
.y6b{bottom:320.938521px;}
.y32{bottom:326.955933px;}
.y6a{bottom:329.878802px;}
.y31{bottom:337.943704px;}
.y69{bottom:338.819083px;}
.y68{bottom:347.758640px;}
.y30{bottom:348.930586px;}
.y67{bottom:356.698921px;}
.y2f{bottom:359.918357px;}
.y66{bottom:365.639202px;}
.y2e{bottom:370.906128px;}
.y65{bottom:374.578760px;}
.y2d{bottom:381.893010px;}
.y64{bottom:383.519041px;}
.y63{bottom:392.459322px;}
.y2c{bottom:392.880781px;}
.y62{bottom:401.398879px;}
.y2b{bottom:403.868552px;}
.y61{bottom:410.339160px;}
.y2a{bottom:414.855434px;}
.y60{bottom:419.279441px;}
.y29{bottom:425.843205px;}
.y5f{bottom:428.218998px;}
.y28{bottom:436.830976px;}
.y5e{bottom:437.159279px;}
.y5d{bottom:446.099560px;}
.y27{bottom:447.817858px;}
.y5c{bottom:455.039117px;}
.y26{bottom:458.805629px;}
.y5b{bottom:463.979398px;}
.y25{bottom:469.793400px;}
.y5a{bottom:472.919679px;}
.y24{bottom:480.780282px;}
.y59{bottom:481.859236px;}
.y58{bottom:490.799517px;}
.y23{bottom:491.768053px;}
.y57{bottom:499.739798px;}
.y22{bottom:502.755824px;}
.y56{bottom:508.679356px;}
.y55{bottom:513.005485px;}
.y21{bottom:513.742706px;}
.y20{bottom:524.730477px;}
.y1f{bottom:535.718248px;}
.y1e{bottom:546.705130px;}
.y1d{bottom:552.022023px;}
.y54{bottom:650.192177px;}
.y1c{bottom:664.011677px;}
.y53{bottom:664.442474px;}
.y1b{bottom:678.263127px;}
.y52{bottom:678.693925px;}
.y1a{bottom:692.513425px;}
.y51{bottom:692.945376px;}
.y19{bottom:706.764876px;}
.y50{bottom:707.195673px;}
.y18{bottom:721.016326px;}
.y4f{bottom:721.447124px;}
.y17{bottom:735.266624px;}
.y4e{bottom:735.698575px;}
.y16{bottom:749.518075px;}
.y4d{bottom:749.948872px;}
.y15{bottom:763.769525px;}
.y4c{bottom:764.200323px;}
.y14{bottom:778.019823px;}
.y4b{bottom:778.451774px;}
.y13{bottom:792.271274px;}
.y4a{bottom:792.702071px;}
.y12{bottom:806.522724px;}
.y49{bottom:806.953522px;}
.y11{bottom:820.773022px;}
.y48{bottom:821.204973px;}
.y10{bottom:835.024473px;}
.y47{bottom:835.455270px;}
.yf{bottom:849.275923px;}
.y46{bottom:849.706721px;}
.ye{bottom:863.526221px;}
.y45{bottom:863.958172px;}
.yd{bottom:877.777672px;}
.y44{bottom:878.208469px;}
.yc{bottom:892.029122px;}
.y43{bottom:892.459920px;}
.yb{bottom:906.279420px;}
.y42{bottom:906.711371px;}
.ya{bottom:920.530871px;}
.y41{bottom:920.961668px;}
.y9{bottom:934.782321px;}
.y40{bottom:935.213119px;}
.y8{bottom:949.032619px;}
.y3f{bottom:949.464570px;}
.y7{bottom:963.284070px;}
.y3e{bottom:963.714867px;}
.y6{bottom:977.535520px;}
.y3d{bottom:977.966318px;}
.y5{bottom:991.785818px;}
.y3c{bottom:992.217769px;}
.y4{bottom:1006.037269px;}
.y3b{bottom:1006.468066px;}
.y3a{bottom:1013.364227px;}
.y3{bottom:1020.288719px;}
.y2{bottom:1027.183727px;}
.y39{bottom:1043.857500px;}
.y1{bottom:1057.678500px;}
.h9{height:20.648537px;}
.h6{height:25.377434px;}
.h4{height:32.915252px;}
.h8{height:37.950158px;}
.h7{height:42.799330px;}
.h5{height:46.645006px;}
.h2{height:50.068378px;}
.h3{height:60.499897px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039500px;}
.x7{left:92.056976px;}
.x4{left:93.664109px;}
.x2{left:96.225862px;}
.x8{left:136.364702px;}
.x5{left:148.119125px;}
.x3{left:166.855564px;}
.x6{left:442.720500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.379219pt;}
.v2{vertical-align:18.904508pt;}
.v1{vertical-align:24.519684pt;}
.ls0{letter-spacing:0.000000pt;}
.ws24{word-spacing:0.000000pt;}
.ws26{word-spacing:2.255645pt;}
.ws12{word-spacing:2.589739pt;}
.ws2{word-spacing:3.345433pt;}
.ws0{word-spacing:23.846639pt;}
.ws37{word-spacing:24.667489pt;}
.ws13{word-spacing:30.316801pt;}
.ws3{word-spacing:39.321751pt;}
.ws3c{word-spacing:104.059652pt;}
.ws39{word-spacing:104.062225pt;}
.ws3b{word-spacing:104.630873pt;}
.ws3a{word-spacing:112.108204pt;}
.ws18{word-spacing:112.138645pt;}
.ws21{word-spacing:112.139594pt;}
.ws1b{word-spacing:112.141808pt;}
.ws22{word-spacing:112.838473pt;}
.ws1a{word-spacing:112.840686pt;}
.ws17{word-spacing:112.841635pt;}
.ws19{word-spacing:122.030466pt;}
.ws3d{word-spacing:124.425204pt;}
.ws8{word-spacing:125.019540pt;}
.wsc{word-spacing:125.020770pt;}
.ws7{word-spacing:125.923134pt;}
.ws3e{word-spacing:125.924364pt;}
.wse{word-spacing:125.926005pt;}
.wsa{word-spacing:125.927236pt;}
.ws15{word-spacing:127.891243pt;}
.ws1e{word-spacing:127.893456pt;}
.ws3f{word-spacing:128.593284pt;}
.ws20{word-spacing:128.595497pt;}
.ws1c{word-spacing:137.782114pt;}
.ws16{word-spacing:137.783063pt;}
.ws1d{word-spacing:137.785277pt;}
.wsf{word-spacing:137.841308pt;}
.ws2c{word-spacing:137.842539pt;}
.wsd{word-spacing:137.845410pt;}
.ws38{word-spacing:143.294711pt;}
.ws2b{word-spacing:145.447004pt;}
.ws32{word-spacing:145.448234pt;}
.ws5{word-spacing:145.451106pt;}
.ws30{word-spacing:146.354700pt;}
.wsb{word-spacing:146.357571pt;}
.ws2a{word-spacing:146.358801pt;}
.ws40{word-spacing:152.920884pt;}
.ws9{word-spacing:158.275745pt;}
.ws6{word-spacing:158.276975pt;}
.ws41{word-spacing:158.278206pt;}
.ws28{word-spacing:165.878570pt;}
.ws2d{word-spacing:165.881441pt;}
.ws2f{word-spacing:165.882671pt;}
.ws2e{word-spacing:166.789137pt;}
.ws23{word-spacing:168.675695pt;}
.ws11{word-spacing:173.409961pt;}
.ws1f{word-spacing:176.111858pt;}
.ws31{word-spacing:178.707311pt;}
.ws29{word-spacing:178.708541pt;}
.ws33{word-spacing:178.711412pt;}
.ws14{word-spacing:191.866669pt;}
.ws10{word-spacing:198.342724pt;}
.ws35{word-spacing:201.545348pt;}
.ws34{word-spacing:218.777161pt;}
.ws1{word-spacing:223.080098pt;}
.ws4{word-spacing:228.422076pt;}
.ws27{word-spacing:248.856512pt;}
.ws36{word-spacing:349.393584pt;}
.ws25{word-spacing:357.089316pt;}
._2{margin-left:-3.391640pt;}
._9{margin-left:-2.127658pt;}
._0{margin-left:-1.144168pt;}
._d{width:1.455828pt;}
._5{width:298.110639pt;}
._6{width:300.295537pt;}
._4{width:305.582234pt;}
._c{width:306.565724pt;}
._b{width:359.646715pt;}
._a{width:371.386266pt;}
._3{width:375.058873pt;}
._8{width:390.434472pt;}
._1{width:391.943881pt;}
._7{width:617.793685pt;}
.fs4{font-size:25.634434pt;}
.fs2{font-size:31.505195pt;}
.fs1{font-size:40.863131pt;}
.fs3{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:162.205333pt;}
.y37{bottom:241.794539pt;}
.y36{bottom:251.560656pt;}
.y6f{bottom:253.492307pt;}
.y35{bottom:261.327563pt;}
.y6e{bottom:261.438580pt;}
.y6d{bottom:269.385496pt;}
.y34{bottom:271.094471pt;}
.y6c{bottom:277.332412pt;}
.y33{bottom:280.860588pt;}
.y6b{bottom:285.278686pt;}
.y32{bottom:290.627496pt;}
.y6a{bottom:293.225602pt;}
.y31{bottom:300.394403pt;}
.y69{bottom:301.172518pt;}
.y68{bottom:309.118792pt;}
.y30{bottom:310.160521pt;}
.y67{bottom:317.065708pt;}
.y2f{bottom:319.927428pt;}
.y66{bottom:325.012624pt;}
.y2e{bottom:329.694336pt;}
.y65{bottom:332.958897pt;}
.y2d{bottom:339.460453pt;}
.y64{bottom:340.905814pt;}
.y63{bottom:348.852730pt;}
.y2c{bottom:349.227361pt;}
.y62{bottom:356.799003pt;}
.y2b{bottom:358.994268pt;}
.y61{bottom:364.745920pt;}
.y2a{bottom:368.760385pt;}
.y60{bottom:372.692836pt;}
.y29{bottom:378.527293pt;}
.y5f{bottom:380.639109pt;}
.y28{bottom:388.294201pt;}
.y5e{bottom:388.586026pt;}
.y5d{bottom:396.532942pt;}
.y27{bottom:398.060318pt;}
.y5c{bottom:404.479215pt;}
.y26{bottom:407.827226pt;}
.y5b{bottom:412.426132pt;}
.y25{bottom:417.594133pt;}
.y5a{bottom:420.373048pt;}
.y24{bottom:427.360250pt;}
.y59{bottom:428.319321pt;}
.y58{bottom:436.266238pt;}
.y23{bottom:437.127158pt;}
.y57{bottom:444.213154pt;}
.y22{bottom:446.894066pt;}
.y56{bottom:452.159427pt;}
.y55{bottom:456.004875pt;}
.y21{bottom:456.660183pt;}
.y20{bottom:466.427090pt;}
.y1f{bottom:476.193998pt;}
.y1e{bottom:485.960115pt;}
.y1d{bottom:490.686242pt;}
.y54{bottom:577.948601pt;}
.y1c{bottom:590.232601pt;}
.y53{bottom:590.615532pt;}
.y1b{bottom:602.900558pt;}
.y52{bottom:603.283489pt;}
.y1a{bottom:615.567489pt;}
.y51{bottom:615.951445pt;}
.y19{bottom:628.235445pt;}
.y50{bottom:628.618376pt;}
.y18{bottom:640.903401pt;}
.y4f{bottom:641.286332pt;}
.y17{bottom:653.570332pt;}
.y4e{bottom:653.954289pt;}
.y16{bottom:666.238289pt;}
.y4d{bottom:666.621219pt;}
.y15{bottom:678.906245pt;}
.y4c{bottom:679.289176pt;}
.y14{bottom:691.573176pt;}
.y4b{bottom:691.957132pt;}
.y13{bottom:704.241132pt;}
.y4a{bottom:704.624063pt;}
.y12{bottom:716.909088pt;}
.y49{bottom:717.292019pt;}
.y11{bottom:729.576019pt;}
.y48{bottom:729.959976pt;}
.y10{bottom:742.243976pt;}
.y47{bottom:742.626907pt;}
.yf{bottom:754.911932pt;}
.y46{bottom:755.294863pt;}
.ye{bottom:767.578863pt;}
.y45{bottom:767.962819pt;}
.yd{bottom:780.246819pt;}
.y44{bottom:780.629750pt;}
.yc{bottom:792.914775pt;}
.y43{bottom:793.297706pt;}
.yb{bottom:805.581706pt;}
.y42{bottom:805.965663pt;}
.ya{bottom:818.249663pt;}
.y41{bottom:818.632594pt;}
.y9{bottom:830.917619pt;}
.y40{bottom:831.300550pt;}
.y8{bottom:843.584550pt;}
.y3f{bottom:843.968506pt;}
.y7{bottom:856.252506pt;}
.y3e{bottom:856.635437pt;}
.y6{bottom:868.920463pt;}
.y3d{bottom:869.303393pt;}
.y5{bottom:881.587393pt;}
.y3c{bottom:881.971350pt;}
.y4{bottom:894.255350pt;}
.y3b{bottom:894.638281pt;}
.y3a{bottom:900.768202pt;}
.y3{bottom:906.923306pt;}
.y2{bottom:913.052202pt;}
.y39{bottom:927.873333pt;}
.y1{bottom:940.158667pt;}
.h9{height:18.354255pt;}
.h6{height:22.557720pt;}
.h4{height:29.258002pt;}
.h8{height:33.733474pt;}
.h7{height:38.043849pt;}
.h5{height:41.462228pt;}
.h2{height:44.505225pt;}
.h3{height:53.777686pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590667pt;}
.x7{left:81.828424pt;}
.x4{left:83.256986pt;}
.x2{left:85.534100pt;}
.x8{left:121.213068pt;}
.x5{left:131.661445pt;}
.x3{left:148.316057pt;}
.x6{left:393.529333pt;}
}




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