
    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_1fe74078fb9aee071524943c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_b5e6fdad5b475bb80df289a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_8734f4f66f53fb1c97d94c99.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_4487fd6b0123bda31c625abf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_f583997750331c596c28c6af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049000;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_fd0d5bded6446681dcc3dc2f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a2ee75b2482399b8d72beeb0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_b3d6c4b0037b6749530dded1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_94e13e4f21c667d6d9e26557.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_c6bdca08a41665f009e3d1c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.721000;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_a0f5ba969ae8cf798fe5bf1d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.912000;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;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.660000px;}
.ls8{letter-spacing:1.650000px;}
.ls4{letter-spacing:3.900000px;}
.ls9{letter-spacing:4.950000px;}
.ls3{letter-spacing:5.040000px;}
.ls1{letter-spacing:5.100000px;}
.ls2{letter-spacing:5.819400px;}
.ls5{letter-spacing:6.840000px;}
.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:-19.944000px;}
.ws0{word-spacing:-18.984000px;}
.ws3{word-spacing:-16.488000px;}
.ws7{word-spacing:-15.312000px;}
.ws6{word-spacing:-14.982000px;}
.ws4{word-spacing:-13.320000px;}
.ws5{word-spacing:-12.012000px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-17.280000px;}
._10{margin-left:-15.984000px;}
._f{margin-left:-10.585200px;}
._2{margin-left:-7.353600px;}
._4{margin-left:-5.726400px;}
._3{margin-left:-4.284000px;}
._6{margin-left:-3.187200px;}
._1{margin-left:-1.996800px;}
._5{width:1.170000px;}
._8{width:3.115200px;}
._7{width:4.353600px;}
._0{width:5.587200px;}
._d{width:6.758400px;}
._b{width:8.136000px;}
._e{width:9.426000px;}
._c{width:11.194800px;}
._9{width:12.796800px;}
._a{width:14.073600px;}
.fc3{color:transparent;}
.fc2{color:rgb(90,87,88);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y41{bottom:37.397400px;}
.y40{bottom:59.897400px;}
.y13{bottom:99.795000px;}
.y3f{bottom:133.869900px;}
.y6c{bottom:134.659050px;}
.y16{bottom:135.750000px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y3e{bottom:156.369900px;}
.y74{bottom:157.123050px;}
.y6b{bottom:157.159050px;}
.y15{bottom:157.830000px;}
.y3d{bottom:178.869900px;}
.y73{bottom:179.629050px;}
.y6a{bottom:179.659050px;}
.y3c{bottom:201.369900px;}
.y72{bottom:202.135050px;}
.y69{bottom:202.159050px;}
.y3b{bottom:223.869900px;}
.y71{bottom:224.641050px;}
.y68{bottom:224.659050px;}
.y3a{bottom:246.369900px;}
.y70{bottom:247.147050px;}
.y67{bottom:247.159050px;}
.y39{bottom:268.869900px;}
.y6f{bottom:269.653050px;}
.y66{bottom:269.659050px;}
.y38{bottom:291.369900px;}
.y65{bottom:292.159050px;}
.y37{bottom:313.869900px;}
.y64{bottom:314.659050px;}
.y36{bottom:336.369900px;}
.y63{bottom:337.159050px;}
.ya{bottom:344.680500px;}
.y35{bottom:358.869900px;}
.y62{bottom:359.659050px;}
.y34{bottom:381.369900px;}
.y61{bottom:382.159050px;}
.yd{bottom:386.490000px;}
.y9{bottom:395.689500px;}
.y33{bottom:403.869900px;}
.y60{bottom:404.659050px;}
.y32{bottom:426.369900px;}
.y5f{bottom:427.159050px;}
.yb{bottom:434.850000px;}
.y8{bottom:446.698500px;}
.y31{bottom:448.869900px;}
.y5e{bottom:449.659050px;}
.y30{bottom:471.369900px;}
.y5d{bottom:472.159050px;}
.y10{bottom:488.055000px;}
.y2f{bottom:493.869900px;}
.y5c{bottom:494.659050px;}
.y7{bottom:497.707500px;}
.y2e{bottom:516.369900px;}
.y5b{bottom:517.159050px;}
.y11{bottom:538.230000px;}
.y2d{bottom:538.869900px;}
.y5a{bottom:539.659050px;}
.y6{bottom:548.716500px;}
.y2c{bottom:561.369900px;}
.y59{bottom:562.159050px;}
.y2b{bottom:583.869900px;}
.y6e{bottom:584.659050px;}
.y17{bottom:589.605000px;}
.y5{bottom:599.725500px;}
.y2a{bottom:606.369900px;}
.y58{bottom:607.159050px;}
.y29{bottom:628.869900px;}
.y6d{bottom:629.659050px;}
.ye{bottom:631.920000px;}
.y28{bottom:651.369900px;}
.y57{bottom:652.159050px;}
.y27{bottom:673.869900px;}
.y56{bottom:674.659050px;}
.y26{bottom:696.369900px;}
.y55{bottom:697.159050px;}
.y25{bottom:718.869900px;}
.y54{bottom:719.659050px;}
.y24{bottom:741.369900px;}
.y53{bottom:742.159050px;}
.y23{bottom:763.869900px;}
.y52{bottom:764.659050px;}
.y4{bottom:778.225500px;}
.y22{bottom:786.369900px;}
.y51{bottom:787.159050px;}
.y21{bottom:808.869900px;}
.y50{bottom:809.659050px;}
.y12{bottom:815.670000px;}
.y20{bottom:831.369900px;}
.y4f{bottom:832.159050px;}
.y1f{bottom:853.869900px;}
.y4e{bottom:854.659050px;}
.y1e{bottom:876.369900px;}
.y4d{bottom:877.159050px;}
.y1d{bottom:898.869900px;}
.y4c{bottom:899.659050px;}
.y3{bottom:905.716500px;}
.y4b{bottom:922.159050px;}
.y1c{bottom:943.869900px;}
.y4a{bottom:944.659050px;}
.y7a{bottom:951.726900px;}
.y2{bottom:964.228500px;}
.y49{bottom:967.159050px;}
.y79{bottom:972.731400px;}
.y48{bottom:989.659050px;}
.y1{bottom:989.716500px;}
.y78{bottom:993.735900px;}
.y47{bottom:1012.159050px;}
.y77{bottom:1014.740400px;}
.y46{bottom:1034.659050px;}
.y76{bottom:1035.744900px;}
.y1b{bottom:1048.869900px;}
.y45{bottom:1057.159050px;}
.y1a{bottom:1075.869900px;}
.y75{bottom:1079.244900px;}
.y44{bottom:1079.659050px;}
.y19{bottom:1129.645500px;}
.y42{bottom:1134.895350px;}
.y18{bottom:1135.270350px;}
.y43{bottom:1135.645350px;}
.h4{height:33.000000px;}
.h10{height:42.600000px;}
.h11{height:46.200000px;}
.hf{height:46.860000px;}
.h13{height:46.992000px;}
.hd{height:50.400000px;}
.h9{height:51.120000px;}
.he{height:51.264000px;}
.hc{height:54.600000px;}
.h3{height:58.406250px;}
.h12{height:60.192000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hb{height:75.240000px;}
.ha{height:85.272000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wa{width:0.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x11{left:-67.000200px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xe{left:104.671650px;}
.xc{left:106.517100px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x10{left:313.392900px;}
.xf{left:340.155600px;}
.x12{left:414.315300px;}
.x13{left:433.274700px;}
.xb{left:606.319200px;}
.xd{left:661.303650px;}
.xa{left:825.913200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.586667pt;}
.ls8{letter-spacing:1.466667pt;}
.ls4{letter-spacing:3.466667pt;}
.ls9{letter-spacing:4.400000pt;}
.ls3{letter-spacing:4.480000pt;}
.ls1{letter-spacing:4.533333pt;}
.ls2{letter-spacing:5.172800pt;}
.ls5{letter-spacing:6.080000pt;}
.ws2{word-spacing:-17.728000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws3{word-spacing:-14.656000pt;}
.ws7{word-spacing:-13.610667pt;}
.ws6{word-spacing:-13.317333pt;}
.ws4{word-spacing:-11.840000pt;}
.ws5{word-spacing:-10.677333pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-15.360000pt;}
._10{margin-left:-14.208000pt;}
._f{margin-left:-9.409067pt;}
._2{margin-left:-6.536533pt;}
._4{margin-left:-5.090133pt;}
._3{margin-left:-3.808000pt;}
._6{margin-left:-2.833067pt;}
._1{margin-left:-1.774933pt;}
._5{width:1.040000pt;}
._8{width:2.769067pt;}
._7{width:3.869867pt;}
._0{width:4.966400pt;}
._d{width:6.007467pt;}
._b{width:7.232000pt;}
._e{width:8.378667pt;}
._c{width:9.950933pt;}
._9{width:11.374933pt;}
._a{width:12.509867pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y41{bottom:33.242133pt;}
.y40{bottom:53.242133pt;}
.y13{bottom:88.706667pt;}
.y3f{bottom:118.995467pt;}
.y6c{bottom:119.696933pt;}
.y16{bottom:120.666667pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y3e{bottom:138.995467pt;}
.y74{bottom:139.664933pt;}
.y6b{bottom:139.696933pt;}
.y15{bottom:140.293333pt;}
.y3d{bottom:158.995467pt;}
.y73{bottom:159.670267pt;}
.y6a{bottom:159.696933pt;}
.y3c{bottom:178.995467pt;}
.y72{bottom:179.675600pt;}
.y69{bottom:179.696933pt;}
.y3b{bottom:198.995467pt;}
.y71{bottom:199.680933pt;}
.y68{bottom:199.696933pt;}
.y3a{bottom:218.995467pt;}
.y70{bottom:219.686267pt;}
.y67{bottom:219.696933pt;}
.y39{bottom:238.995467pt;}
.y6f{bottom:239.691600pt;}
.y66{bottom:239.696933pt;}
.y38{bottom:258.995467pt;}
.y65{bottom:259.696933pt;}
.y37{bottom:278.995467pt;}
.y64{bottom:279.696933pt;}
.y36{bottom:298.995467pt;}
.y63{bottom:299.696933pt;}
.ya{bottom:306.382667pt;}
.y35{bottom:318.995467pt;}
.y62{bottom:319.696933pt;}
.y34{bottom:338.995467pt;}
.y61{bottom:339.696933pt;}
.yd{bottom:343.546667pt;}
.y9{bottom:351.724000pt;}
.y33{bottom:358.995467pt;}
.y60{bottom:359.696933pt;}
.y32{bottom:378.995467pt;}
.y5f{bottom:379.696933pt;}
.yb{bottom:386.533333pt;}
.y8{bottom:397.065333pt;}
.y31{bottom:398.995467pt;}
.y5e{bottom:399.696933pt;}
.y30{bottom:418.995467pt;}
.y5d{bottom:419.696933pt;}
.y10{bottom:433.826667pt;}
.y2f{bottom:438.995467pt;}
.y5c{bottom:439.696933pt;}
.y7{bottom:442.406667pt;}
.y2e{bottom:458.995467pt;}
.y5b{bottom:459.696933pt;}
.y11{bottom:478.426667pt;}
.y2d{bottom:478.995467pt;}
.y5a{bottom:479.696933pt;}
.y6{bottom:487.748000pt;}
.y2c{bottom:498.995467pt;}
.y59{bottom:499.696933pt;}
.y2b{bottom:518.995467pt;}
.y6e{bottom:519.696933pt;}
.y17{bottom:524.093333pt;}
.y5{bottom:533.089333pt;}
.y2a{bottom:538.995467pt;}
.y58{bottom:539.696933pt;}
.y29{bottom:558.995467pt;}
.y6d{bottom:559.696933pt;}
.ye{bottom:561.706667pt;}
.y28{bottom:578.995467pt;}
.y57{bottom:579.696933pt;}
.y27{bottom:598.995467pt;}
.y56{bottom:599.696933pt;}
.y26{bottom:618.995467pt;}
.y55{bottom:619.696933pt;}
.y25{bottom:638.995467pt;}
.y54{bottom:639.696933pt;}
.y24{bottom:658.995467pt;}
.y53{bottom:659.696933pt;}
.y23{bottom:678.995467pt;}
.y52{bottom:679.696933pt;}
.y4{bottom:691.756000pt;}
.y22{bottom:698.995467pt;}
.y51{bottom:699.696933pt;}
.y21{bottom:718.995467pt;}
.y50{bottom:719.696933pt;}
.y12{bottom:725.040000pt;}
.y20{bottom:738.995467pt;}
.y4f{bottom:739.696933pt;}
.y1f{bottom:758.995467pt;}
.y4e{bottom:759.696933pt;}
.y1e{bottom:778.995467pt;}
.y4d{bottom:779.696933pt;}
.y1d{bottom:798.995467pt;}
.y4c{bottom:799.696933pt;}
.y3{bottom:805.081333pt;}
.y4b{bottom:819.696933pt;}
.y1c{bottom:838.995467pt;}
.y4a{bottom:839.696933pt;}
.y7a{bottom:845.979467pt;}
.y2{bottom:857.092000pt;}
.y49{bottom:859.696933pt;}
.y79{bottom:864.650133pt;}
.y48{bottom:879.696933pt;}
.y1{bottom:879.748000pt;}
.y78{bottom:883.320800pt;}
.y47{bottom:899.696933pt;}
.y77{bottom:901.991467pt;}
.y46{bottom:919.696933pt;}
.y76{bottom:920.662133pt;}
.y1b{bottom:932.328800pt;}
.y45{bottom:939.696933pt;}
.y1a{bottom:956.328800pt;}
.y75{bottom:959.328800pt;}
.y44{bottom:959.696933pt;}
.y19{bottom:1004.129333pt;}
.y42{bottom:1008.795867pt;}
.y18{bottom:1009.129200pt;}
.y43{bottom:1009.462533pt;}
.h4{height:29.333333pt;}
.h10{height:37.866667pt;}
.h11{height:41.066667pt;}
.hf{height:41.653333pt;}
.h13{height:41.770667pt;}
.hd{height:44.800000pt;}
.h9{height:45.440000pt;}
.he{height:45.568000pt;}
.hc{height:48.533333pt;}
.h3{height:51.916667pt;}
.h12{height:53.504000pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hb{height:66.880000pt;}
.ha{height:75.797333pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wa{width:0.000000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x11{left:-59.555733pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xe{left:93.041467pt;}
.xc{left:94.681867pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x10{left:278.571467pt;}
.xf{left:302.360533pt;}
.x12{left:368.280267pt;}
.x13{left:385.133067pt;}
.xb{left:538.950400pt;}
.xd{left:587.825467pt;}
.xa{left:734.145067pt;}
}




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