
    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_10711a8389d0c93fbef1f597.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_32e7375c3b7f679f90a87547.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_762df100dee90708b59c8a03.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.020000px;}
.ls2{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.ls4{letter-spacing:3.024000px;}
.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;}
}
.ws0{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.012000px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-9.714000px;}
._15{margin-left:-8.262000px;}
._13{margin-left:-7.200000px;}
._5{margin-left:-6.048000px;}
._6{margin-left:-5.004000px;}
._e{margin-left:-3.996000px;}
._1{margin-left:-2.916000px;}
._2{margin-left:-1.080000px;}
._0{width:1.404000px;}
._3{width:2.484000px;}
._d{width:4.224000px;}
._c{width:5.256000px;}
._f{width:6.924000px;}
._9{width:8.844000px;}
._7{width:9.996000px;}
._8{width:11.028000px;}
._b{width:12.120000px;}
._a{width:13.476000px;}
._11{width:17.448000px;}
._12{width:18.996000px;}
._4{width:1628.604000px;}
._14{width:1820.688000px;}
._10{width:1831.500000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:88.875000px;}
.y27{bottom:127.500000px;}
.y5e{bottom:130.125000px;}
.yb5{bottom:133.500000px;}
.yd2{bottom:134.250000px;}
.y26{bottom:142.500000px;}
.y5d{bottom:145.125000px;}
.yb4{bottom:147.000000px;}
.yd1{bottom:147.750000px;}
.y25{bottom:157.500000px;}
.y7e{bottom:160.125000px;}
.yb3{bottom:160.500000px;}
.yd0{bottom:169.875000px;}
.y24{bottom:172.500000px;}
.yb2{bottom:174.000000px;}
.y5c{bottom:175.125000px;}
.ycf{bottom:183.375000px;}
.y23{bottom:187.500000px;}
.y5b{bottom:190.125000px;}
.yb1{bottom:196.125000px;}
.y22{bottom:202.500000px;}
.y5a{bottom:205.125000px;}
.yb0{bottom:209.625000px;}
.y21{bottom:217.500000px;}
.yce{bottom:218.625000px;}
.y59{bottom:220.125000px;}
.yaf{bottom:231.375000px;}
.ycd{bottom:232.125000px;}
.y20{bottom:232.500000px;}
.y58{bottom:235.125000px;}
.yae{bottom:244.875000px;}
.ycc{bottom:245.625000px;}
.y1f{bottom:247.500000px;}
.y57{bottom:250.125000px;}
.yad{bottom:258.375000px;}
.ycb{bottom:259.125000px;}
.y1e{bottom:262.500000px;}
.y56{bottom:265.125000px;}
.y8e{bottom:267.375000px;}
.yac{bottom:271.875000px;}
.y29{bottom:277.500000px;}
.y55{bottom:280.125000px;}
.yca{bottom:281.250000px;}
.y8d{bottom:282.375000px;}
.yab{bottom:285.375000px;}
.y1d{bottom:292.500000px;}
.yc9{bottom:294.750000px;}
.y54{bottom:295.125000px;}
.y8c{bottom:297.375000px;}
.y1c{bottom:307.500000px;}
.yc8{bottom:308.250000px;}
.y53{bottom:310.125000px;}
.y8b{bottom:312.375000px;}
.yaa{bottom:321.000000px;}
.y1b{bottom:322.500000px;}
.y52{bottom:325.125000px;}
.y8a{bottom:327.375000px;}
.yc7{bottom:330.000000px;}
.y1a{bottom:337.500000px;}
.y51{bottom:340.125000px;}
.y89{bottom:342.375000px;}
.ya9{bottom:343.125000px;}
.yc6{bottom:343.500000px;}
.y19{bottom:352.500000px;}
.y95{bottom:355.125000px;}
.ya8{bottom:356.625000px;}
.yc5{bottom:357.000000px;}
.y7d{bottom:357.375000px;}
.y18{bottom:367.500000px;}
.y94{bottom:370.125000px;}
.yc4{bottom:370.500000px;}
.y7c{bottom:372.375000px;}
.y50{bottom:376.875000px;}
.y17{bottom:382.500000px;}
.ya7{bottom:383.625000px;}
.y93{bottom:385.125000px;}
.y7b{bottom:387.375000px;}
.y4f{bottom:391.875000px;}
.yc3{bottom:392.625000px;}
.ya6{bottom:397.125000px;}
.y16{bottom:397.500000px;}
.y92{bottom:400.125000px;}
.y7a{bottom:402.375000px;}
.yc2{bottom:406.125000px;}
.y4e{bottom:406.875000px;}
.y15{bottom:412.500000px;}
.y91{bottom:415.125000px;}
.y79{bottom:417.375000px;}
.ya5{bottom:418.875000px;}
.y4d{bottom:421.875000px;}
.y14{bottom:427.500000px;}
.yc1{bottom:428.250000px;}
.y88{bottom:430.125000px;}
.y78{bottom:432.375000px;}
.y4c{bottom:436.875000px;}
.yc0{bottom:441.750000px;}
.y28{bottom:442.500000px;}
.y87{bottom:445.125000px;}
.y77{bottom:447.375000px;}
.y4b{bottom:451.875000px;}
.ya4{bottom:454.500000px;}
.ybf{bottom:455.250000px;}
.y13{bottom:457.500000px;}
.y90{bottom:460.125000px;}
.y76{bottom:462.375000px;}
.y4a{bottom:466.875000px;}
.ya3{bottom:468.000000px;}
.ybe{bottom:468.750000px;}
.y12{bottom:472.500000px;}
.y8f{bottom:475.125000px;}
.y75{bottom:477.375000px;}
.ya2{bottom:481.500000px;}
.y49{bottom:481.875000px;}
.y11{bottom:487.500000px;}
.y86{bottom:490.125000px;}
.ybd{bottom:490.500000px;}
.y74{bottom:492.375000px;}
.y48{bottom:496.875000px;}
.y10{bottom:502.500000px;}
.ya1{bottom:503.250000px;}
.ybc{bottom:504.000000px;}
.y85{bottom:505.125000px;}
.y73{bottom:507.375000px;}
.y47{bottom:511.875000px;}
.ya0{bottom:516.750000px;}
.yf{bottom:517.500000px;}
.y84{bottom:520.125000px;}
.y72{bottom:522.375000px;}
.ybb{bottom:526.125000px;}
.y46{bottom:526.875000px;}
.ye{bottom:532.500000px;}
.y83{bottom:535.125000px;}
.y71{bottom:537.375000px;}
.y9f{bottom:538.875000px;}
.yba{bottom:539.625000px;}
.y45{bottom:541.875000px;}
.yd{bottom:547.500000px;}
.y82{bottom:550.125000px;}
.y9e{bottom:552.375000px;}
.yb9{bottom:553.125000px;}
.yc{bottom:562.500000px;}
.y70{bottom:565.125000px;}
.y44{bottom:569.625000px;}
.y9d{bottom:574.500000px;}
.yb8{bottom:574.875000px;}
.yb{bottom:577.500000px;}
.y6f{bottom:580.125000px;}
.y43{bottom:584.625000px;}
.y9c{bottom:588.000000px;}
.yb7{bottom:588.375000px;}
.ya{bottom:592.500000px;}
.y81{bottom:595.125000px;}
.y9b{bottom:601.500000px;}
.yb6{bottom:601.875000px;}
.y42{bottom:608.250000px;}
.y80{bottom:610.125000px;}
.y41{bottom:623.250000px;}
.y6e{bottom:625.125000px;}
.y6d{bottom:640.125000px;}
.y40{bottom:646.500000px;}
.y6c{bottom:655.125000px;}
.y3f{bottom:661.500000px;}
.y6b{bottom:670.125000px;}
.y3e{bottom:685.125000px;}
.y3d{bottom:700.125000px;}
.y3c{bottom:715.125000px;}
.y6a{bottom:730.125000px;}
.y69{bottom:745.125000px;}
.y3b{bottom:747.375000px;}
.y68{bottom:760.125000px;}
.y3a{bottom:762.375000px;}
.ye4{bottom:767.250000px;}
.yf1{bottom:768.750000px;}
.y7f{bottom:775.125000px;}
.y39{bottom:777.375000px;}
.ye3{bottom:780.750000px;}
.yf0{bottom:782.250000px;}
.y67{bottom:790.125000px;}
.y38{bottom:792.375000px;}
.ye2{bottom:802.875000px;}
.y66{bottom:805.125000px;}
.y37{bottom:807.375000px;}
.ye1{bottom:816.375000px;}
.yef{bottom:818.625000px;}
.y7{bottom:819.375000px;}
.y65{bottom:820.125000px;}
.y36{bottom:822.375000px;}
.ye0{bottom:829.875000px;}
.y6{bottom:834.375000px;}
.y64{bottom:835.125000px;}
.y35{bottom:837.375000px;}
.yee{bottom:841.500000px;}
.y63{bottom:850.125000px;}
.ydf{bottom:852.000000px;}
.y34{bottom:852.375000px;}
.yed{bottom:855.000000px;}
.y62{bottom:865.125000px;}
.yde{bottom:865.500000px;}
.y9a{bottom:867.375000px;}
.yec{bottom:868.500000px;}
.ydd{bottom:879.000000px;}
.y33{bottom:880.125000px;}
.y5{bottom:880.500000px;}
.y99{bottom:882.375000px;}
.yeb{bottom:891.375000px;}
.y32{bottom:895.125000px;}
.y98{bottom:897.375000px;}
.ydc{bottom:900.750000px;}
.yea{bottom:904.875000px;}
.y4{bottom:907.500000px;}
.y61{bottom:910.125000px;}
.y97{bottom:912.375000px;}
.ydb{bottom:914.250000px;}
.y60{bottom:925.125000px;}
.y96{bottom:927.375000px;}
.yda{bottom:927.750000px;}
.y3{bottom:934.500000px;}
.y5f{bottom:940.125000px;}
.ye9{bottom:941.250000px;}
.yd9{bottom:949.875000px;}
.ye8{bottom:954.750000px;}
.y31{bottom:955.125000px;}
.y2{bottom:961.500000px;}
.yd8{bottom:963.375000px;}
.y30{bottom:970.125000px;}
.ye7{bottom:976.875000px;}
.y2f{bottom:985.125000px;}
.y1{bottom:988.500000px;}
.ye6{bottom:990.375000px;}
.yd7{bottom:998.625000px;}
.y2e{bottom:1000.125000px;}
.yd6{bottom:1012.125000px;}
.y2d{bottom:1015.125000px;}
.yd5{bottom:1025.625000px;}
.y2c{bottom:1030.125000px;}
.ye5{bottom:1034.250000px;}
.y2b{bottom:1045.125000px;}
.yd4{bottom:1047.750000px;}
.y2a{bottom:1060.125000px;}
.yd3{bottom:1061.250000px;}
.y8{bottom:1107.375000px;}
.h4{height:47.109375px;}
.ha{height:52.971680px;}
.h9{height:52.998047px;}
.h8{height:54.421875px;}
.h6{height:58.857422px;}
.h5{height:58.886719px;}
.h2{height:60.468750px;}
.h3{height:64.775391px;}
.h7{height:66.515625px;}
.h1{height:108.843750px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:97.687500px;}
.x3{left:114.562500px;}
.x2{left:476.062500px;}
.x4{left:492.937500px;}
@media print{
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.906667pt;}
.ls2{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.ls4{letter-spacing:2.688000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.344000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-8.634667pt;}
._15{margin-left:-7.344000pt;}
._13{margin-left:-6.400000pt;}
._5{margin-left:-5.376000pt;}
._6{margin-left:-4.448000pt;}
._e{margin-left:-3.552000pt;}
._1{margin-left:-2.592000pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.248000pt;}
._3{width:2.208000pt;}
._d{width:3.754667pt;}
._c{width:4.672000pt;}
._f{width:6.154667pt;}
._9{width:7.861333pt;}
._7{width:8.885333pt;}
._8{width:9.802667pt;}
._b{width:10.773333pt;}
._a{width:11.978667pt;}
._11{width:15.509333pt;}
._12{width:16.885333pt;}
._4{width:1447.648000pt;}
._14{width:1618.389333pt;}
._10{width:1628.000000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:79.000000pt;}
.y27{bottom:113.333333pt;}
.y5e{bottom:115.666667pt;}
.yb5{bottom:118.666667pt;}
.yd2{bottom:119.333333pt;}
.y26{bottom:126.666667pt;}
.y5d{bottom:129.000000pt;}
.yb4{bottom:130.666667pt;}
.yd1{bottom:131.333333pt;}
.y25{bottom:140.000000pt;}
.y7e{bottom:142.333333pt;}
.yb3{bottom:142.666667pt;}
.yd0{bottom:151.000000pt;}
.y24{bottom:153.333333pt;}
.yb2{bottom:154.666667pt;}
.y5c{bottom:155.666667pt;}
.ycf{bottom:163.000000pt;}
.y23{bottom:166.666667pt;}
.y5b{bottom:169.000000pt;}
.yb1{bottom:174.333333pt;}
.y22{bottom:180.000000pt;}
.y5a{bottom:182.333333pt;}
.yb0{bottom:186.333333pt;}
.y21{bottom:193.333333pt;}
.yce{bottom:194.333333pt;}
.y59{bottom:195.666667pt;}
.yaf{bottom:205.666667pt;}
.ycd{bottom:206.333333pt;}
.y20{bottom:206.666667pt;}
.y58{bottom:209.000000pt;}
.yae{bottom:217.666667pt;}
.ycc{bottom:218.333333pt;}
.y1f{bottom:220.000000pt;}
.y57{bottom:222.333333pt;}
.yad{bottom:229.666667pt;}
.ycb{bottom:230.333333pt;}
.y1e{bottom:233.333333pt;}
.y56{bottom:235.666667pt;}
.y8e{bottom:237.666667pt;}
.yac{bottom:241.666667pt;}
.y29{bottom:246.666667pt;}
.y55{bottom:249.000000pt;}
.yca{bottom:250.000000pt;}
.y8d{bottom:251.000000pt;}
.yab{bottom:253.666667pt;}
.y1d{bottom:260.000000pt;}
.yc9{bottom:262.000000pt;}
.y54{bottom:262.333333pt;}
.y8c{bottom:264.333333pt;}
.y1c{bottom:273.333333pt;}
.yc8{bottom:274.000000pt;}
.y53{bottom:275.666667pt;}
.y8b{bottom:277.666667pt;}
.yaa{bottom:285.333333pt;}
.y1b{bottom:286.666667pt;}
.y52{bottom:289.000000pt;}
.y8a{bottom:291.000000pt;}
.yc7{bottom:293.333333pt;}
.y1a{bottom:300.000000pt;}
.y51{bottom:302.333333pt;}
.y89{bottom:304.333333pt;}
.ya9{bottom:305.000000pt;}
.yc6{bottom:305.333333pt;}
.y19{bottom:313.333333pt;}
.y95{bottom:315.666667pt;}
.ya8{bottom:317.000000pt;}
.yc5{bottom:317.333333pt;}
.y7d{bottom:317.666667pt;}
.y18{bottom:326.666667pt;}
.y94{bottom:329.000000pt;}
.yc4{bottom:329.333333pt;}
.y7c{bottom:331.000000pt;}
.y50{bottom:335.000000pt;}
.y17{bottom:340.000000pt;}
.ya7{bottom:341.000000pt;}
.y93{bottom:342.333333pt;}
.y7b{bottom:344.333333pt;}
.y4f{bottom:348.333333pt;}
.yc3{bottom:349.000000pt;}
.ya6{bottom:353.000000pt;}
.y16{bottom:353.333333pt;}
.y92{bottom:355.666667pt;}
.y7a{bottom:357.666667pt;}
.yc2{bottom:361.000000pt;}
.y4e{bottom:361.666667pt;}
.y15{bottom:366.666667pt;}
.y91{bottom:369.000000pt;}
.y79{bottom:371.000000pt;}
.ya5{bottom:372.333333pt;}
.y4d{bottom:375.000000pt;}
.y14{bottom:380.000000pt;}
.yc1{bottom:380.666667pt;}
.y88{bottom:382.333333pt;}
.y78{bottom:384.333333pt;}
.y4c{bottom:388.333333pt;}
.yc0{bottom:392.666667pt;}
.y28{bottom:393.333333pt;}
.y87{bottom:395.666667pt;}
.y77{bottom:397.666667pt;}
.y4b{bottom:401.666667pt;}
.ya4{bottom:404.000000pt;}
.ybf{bottom:404.666667pt;}
.y13{bottom:406.666667pt;}
.y90{bottom:409.000000pt;}
.y76{bottom:411.000000pt;}
.y4a{bottom:415.000000pt;}
.ya3{bottom:416.000000pt;}
.ybe{bottom:416.666667pt;}
.y12{bottom:420.000000pt;}
.y8f{bottom:422.333333pt;}
.y75{bottom:424.333333pt;}
.ya2{bottom:428.000000pt;}
.y49{bottom:428.333333pt;}
.y11{bottom:433.333333pt;}
.y86{bottom:435.666667pt;}
.ybd{bottom:436.000000pt;}
.y74{bottom:437.666667pt;}
.y48{bottom:441.666667pt;}
.y10{bottom:446.666667pt;}
.ya1{bottom:447.333333pt;}
.ybc{bottom:448.000000pt;}
.y85{bottom:449.000000pt;}
.y73{bottom:451.000000pt;}
.y47{bottom:455.000000pt;}
.ya0{bottom:459.333333pt;}
.yf{bottom:460.000000pt;}
.y84{bottom:462.333333pt;}
.y72{bottom:464.333333pt;}
.ybb{bottom:467.666667pt;}
.y46{bottom:468.333333pt;}
.ye{bottom:473.333333pt;}
.y83{bottom:475.666667pt;}
.y71{bottom:477.666667pt;}
.y9f{bottom:479.000000pt;}
.yba{bottom:479.666667pt;}
.y45{bottom:481.666667pt;}
.yd{bottom:486.666667pt;}
.y82{bottom:489.000000pt;}
.y9e{bottom:491.000000pt;}
.yb9{bottom:491.666667pt;}
.yc{bottom:500.000000pt;}
.y70{bottom:502.333333pt;}
.y44{bottom:506.333333pt;}
.y9d{bottom:510.666667pt;}
.yb8{bottom:511.000000pt;}
.yb{bottom:513.333333pt;}
.y6f{bottom:515.666667pt;}
.y43{bottom:519.666667pt;}
.y9c{bottom:522.666667pt;}
.yb7{bottom:523.000000pt;}
.ya{bottom:526.666667pt;}
.y81{bottom:529.000000pt;}
.y9b{bottom:534.666667pt;}
.yb6{bottom:535.000000pt;}
.y42{bottom:540.666667pt;}
.y80{bottom:542.333333pt;}
.y41{bottom:554.000000pt;}
.y6e{bottom:555.666667pt;}
.y6d{bottom:569.000000pt;}
.y40{bottom:574.666667pt;}
.y6c{bottom:582.333333pt;}
.y3f{bottom:588.000000pt;}
.y6b{bottom:595.666667pt;}
.y3e{bottom:609.000000pt;}
.y3d{bottom:622.333333pt;}
.y3c{bottom:635.666667pt;}
.y6a{bottom:649.000000pt;}
.y69{bottom:662.333333pt;}
.y3b{bottom:664.333333pt;}
.y68{bottom:675.666667pt;}
.y3a{bottom:677.666667pt;}
.ye4{bottom:682.000000pt;}
.yf1{bottom:683.333333pt;}
.y7f{bottom:689.000000pt;}
.y39{bottom:691.000000pt;}
.ye3{bottom:694.000000pt;}
.yf0{bottom:695.333333pt;}
.y67{bottom:702.333333pt;}
.y38{bottom:704.333333pt;}
.ye2{bottom:713.666667pt;}
.y66{bottom:715.666667pt;}
.y37{bottom:717.666667pt;}
.ye1{bottom:725.666667pt;}
.yef{bottom:727.666667pt;}
.y7{bottom:728.333333pt;}
.y65{bottom:729.000000pt;}
.y36{bottom:731.000000pt;}
.ye0{bottom:737.666667pt;}
.y6{bottom:741.666667pt;}
.y64{bottom:742.333333pt;}
.y35{bottom:744.333333pt;}
.yee{bottom:748.000000pt;}
.y63{bottom:755.666667pt;}
.ydf{bottom:757.333333pt;}
.y34{bottom:757.666667pt;}
.yed{bottom:760.000000pt;}
.y62{bottom:769.000000pt;}
.yde{bottom:769.333333pt;}
.y9a{bottom:771.000000pt;}
.yec{bottom:772.000000pt;}
.ydd{bottom:781.333333pt;}
.y33{bottom:782.333333pt;}
.y5{bottom:782.666667pt;}
.y99{bottom:784.333333pt;}
.yeb{bottom:792.333333pt;}
.y32{bottom:795.666667pt;}
.y98{bottom:797.666667pt;}
.ydc{bottom:800.666667pt;}
.yea{bottom:804.333333pt;}
.y4{bottom:806.666667pt;}
.y61{bottom:809.000000pt;}
.y97{bottom:811.000000pt;}
.ydb{bottom:812.666667pt;}
.y60{bottom:822.333333pt;}
.y96{bottom:824.333333pt;}
.yda{bottom:824.666667pt;}
.y3{bottom:830.666667pt;}
.y5f{bottom:835.666667pt;}
.ye9{bottom:836.666667pt;}
.yd9{bottom:844.333333pt;}
.ye8{bottom:848.666667pt;}
.y31{bottom:849.000000pt;}
.y2{bottom:854.666667pt;}
.yd8{bottom:856.333333pt;}
.y30{bottom:862.333333pt;}
.ye7{bottom:868.333333pt;}
.y2f{bottom:875.666667pt;}
.y1{bottom:878.666667pt;}
.ye6{bottom:880.333333pt;}
.yd7{bottom:887.666667pt;}
.y2e{bottom:889.000000pt;}
.yd6{bottom:899.666667pt;}
.y2d{bottom:902.333333pt;}
.yd5{bottom:911.666667pt;}
.y2c{bottom:915.666667pt;}
.ye5{bottom:919.333333pt;}
.y2b{bottom:929.000000pt;}
.yd4{bottom:931.333333pt;}
.y2a{bottom:942.333333pt;}
.yd3{bottom:943.333333pt;}
.y8{bottom:984.333333pt;}
.h4{height:41.875000pt;}
.ha{height:47.085938pt;}
.h9{height:47.109375pt;}
.h8{height:48.375000pt;}
.h6{height:52.317708pt;}
.h5{height:52.343750pt;}
.h2{height:53.750000pt;}
.h3{height:57.578125pt;}
.h7{height:59.125000pt;}
.h1{height:96.750000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:86.833333pt;}
.x3{left:101.833333pt;}
.x2{left:423.166667pt;}
.x4{left:438.166667pt;}
}




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