
    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_e6f0708552efe89a65852fea.woff')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_4b37bf95700f1e607a1da5be.woff')format("woff");}.ff2{font-family:ff2;line-height:1.255859;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_14d17ea939d7105112555cae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.255859;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_a09a73ad5046c14fa50d217b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.504883;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_34a3ac60efd01a8396c241df.woff')format("woff");}.ff5{font-family:ff5;line-height:1.504883;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_8f40abba362e202eee2d7c10.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683594;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_d78d13b57cccad47c8ddc68e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.325200px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.106560px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.487440px;}
.ls3{letter-spacing:196.560000px;}
.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:-40.464000px;}
.ws4{word-spacing:-20.232000px;}
.ws5{word-spacing:-19.944000px;}
.ws3{word-spacing:-18.613440px;}
.ws2{word-spacing:-18.288240px;}
.ws6{word-spacing:-17.784000px;}
.ws7{word-spacing:-14.760720px;}
.ws8{word-spacing:-9.972000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-214.127040px;}
._23{margin-left:-19.752000px;}
._1b{margin-left:-18.312000px;}
._18{margin-left:-17.172000px;}
._17{margin-left:-15.011760px;}
._21{margin-left:-13.350480px;}
._1a{margin-left:-10.631760px;}
._4{margin-left:-8.640000px;}
._0{margin-left:-7.488000px;}
._2{margin-left:-6.480000px;}
._3{margin-left:-5.472000px;}
._8{margin-left:-4.224960px;}
._7{margin-left:-2.604960px;}
._1{margin-left:-1.152000px;}
._5{width:1.332000px;}
._b{width:2.358720px;}
._14{width:3.852000px;}
._1f{width:4.944000px;}
._20{width:6.204960px;}
._10{width:7.776000px;}
._22{width:8.904960px;}
._a{width:10.094400px;}
._1e{width:11.998800px;}
._15{width:14.364960px;}
._16{width:15.384000px;}
._13{width:17.244960px;}
._1d{width:19.608000px;}
._1c{width:21.528000px;}
._e{width:22.572000px;}
._f{width:23.808000px;}
._d{width:25.848000px;}
._9{width:28.218240px;}
._11{width:94.080000px;}
._12{width:95.664960px;}
._c{width:843.924000px;}
._6{width:845.542560px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:113.040000px;}
.y10{bottom:138.240000px;}
.y7c{bottom:138.960000px;}
.y5f{bottom:150.840000px;}
.y3a{bottom:160.200000px;}
.y7b{bottom:164.700000px;}
.y5e{bottom:176.760000px;}
.yf{bottom:180.720000px;}
.y39{bottom:185.940000px;}
.y7a{bottom:189.720000px;}
.y5d{bottom:202.500000px;}
.y38{bottom:211.890000px;}
.y79{bottom:212.070000px;}
.y5c{bottom:228.450000px;}
.y37{bottom:237.270000px;}
.y78{bottom:237.990000px;}
.ye{bottom:241.590000px;}
.y5b{bottom:254.190000px;}
.y36{bottom:260.850000px;}
.y77{bottom:263.730000px;}
.y5a{bottom:280.110000px;}
.y35{bottom:284.610000px;}
.y76{bottom:289.650000px;}
.y59{bottom:305.850000px;}
.y34{bottom:308.190000px;}
.yd{bottom:309.270000px;}
.y75{bottom:315.390000px;}
.y58{bottom:331.770000px;}
.y33{bottom:331.950000px;}
.y74{bottom:340.410000px;}
.y32{bottom:355.530000px;}
.y57{bottom:357.510000px;}
.y73{bottom:362.730000px;}
.yc{bottom:376.950000px;}
.y31{bottom:379.290000px;}
.y56{bottom:383.250000px;}
.y72{bottom:388.650000px;}
.y30{bottom:402.870000px;}
.y98{bottom:403.050000px;}
.y55{bottom:409.170000px;}
.y71{bottom:414.390000px;}
.y2f{bottom:426.630000px;}
.y97{bottom:428.070000px;}
.y54{bottom:430.230000px;}
.y70{bottom:440.310000px;}
.yb{bottom:444.630000px;}
.y96{bottom:449.715000px;}
.y2e{bottom:450.255000px;}
.y6f{bottom:466.095000px;}
.y95{bottom:471.315000px;}
.y2d{bottom:474.015000px;}
.y53{bottom:480.855000px;}
.y6e{bottom:491.115000px;}
.y94{bottom:493.635000px;}
.y2c{bottom:497.595000px;}
.y52{bottom:508.395000px;}
.ya{bottom:512.535000px;}
.y6d{bottom:513.435000px;}
.y93{bottom:519.375000px;}
.y2b{bottom:521.355000px;}
.y51{bottom:536.295000px;}
.y6c{bottom:539.175000px;}
.y2a{bottom:544.935000px;}
.y92{bottom:545.115000px;}
.y50{bottom:564.195000px;}
.y6b{bottom:565.095000px;}
.y29{bottom:568.695000px;}
.y91{bottom:571.035000px;}
.y9{bottom:580.215000px;}
.y6a{bottom:590.115000px;}
.y4f{bottom:592.095000px;}
.y28{bottom:592.275000px;}
.y90{bottom:596.775000px;}
.y69{bottom:612.435000px;}
.y27{bottom:616.035000px;}
.y4e{bottom:619.995000px;}
.y8f{bottom:622.695000px;}
.y68{bottom:638.175000px;}
.y26{bottom:639.615000px;}
.y8{bottom:647.895000px;}
.y8e{bottom:648.435000px;}
.y4d{bottom:659.955000px;}
.y25{bottom:663.375000px;}
.y67{bottom:664.095000px;}
.y8d{bottom:674.355000px;}
.y24{bottom:686.985000px;}
.y4c{bottom:687.705000px;}
.y66{bottom:689.865000px;}
.y8c{bottom:700.125000px;}
.y23{bottom:710.745000px;}
.y4b{bottom:715.605000px;}
.y7{bottom:715.785000px;}
.y65{bottom:717.585000px;}
.y8b{bottom:726.045000px;}
.y22{bottom:734.325000px;}
.y4a{bottom:743.505000px;}
.y64{bottom:745.485000px;}
.y8a{bottom:751.785000px;}
.y21{bottom:758.085000px;}
.y49{bottom:771.225000px;}
.y63{bottom:773.385000px;}
.y89{bottom:777.705000px;}
.y20{bottom:781.665000px;}
.y6{bottom:783.465000px;}
.y48{bottom:799.125000px;}
.y62{bottom:799.305000px;}
.y88{bottom:802.725000px;}
.y1f{bottom:805.425000px;}
.y87{bottom:825.045000px;}
.y47{bottom:825.225000px;}
.y1e{bottom:829.005000px;}
.y86{bottom:850.785000px;}
.y46{bottom:850.965000px;}
.y5{bottom:851.145000px;}
.y1d{bottom:852.765000px;}
.y1c{bottom:876.345000px;}
.y85{bottom:876.705000px;}
.y45{bottom:876.885000px;}
.y1b{bottom:900.105000px;}
.y84{bottom:902.445000px;}
.y44{bottom:902.625000px;}
.y4{bottom:918.870000px;}
.y1a{bottom:923.730000px;}
.y83{bottom:928.230000px;}
.y43{bottom:928.590000px;}
.y19{bottom:947.490000px;}
.y42{bottom:954.330000px;}
.y82{bottom:958.650000px;}
.y18{bottom:971.070000px;}
.y41{bottom:980.070000px;}
.y81{bottom:984.390000px;}
.y3{bottom:986.730000px;}
.y17{bottom:994.830000px;}
.y40{bottom:1005.990000px;}
.y80{bottom:1010.310000px;}
.y16{bottom:1018.410000px;}
.y3f{bottom:1031.730000px;}
.y7f{bottom:1036.050000px;}
.y15{bottom:1042.170000px;}
.y2{bottom:1054.410000px;}
.y3e{bottom:1057.650000px;}
.y7e{bottom:1061.070000px;}
.y14{bottom:1065.750000px;}
.y3d{bottom:1083.390000px;}
.y13{bottom:1089.510000px;}
.y61{bottom:1108.410000px;}
.y3c{bottom:1109.310000px;}
.y12{bottom:1113.090000px;}
.y1{bottom:1122.270000px;}
.y60{bottom:1131.450000px;}
.y3b{bottom:1135.050000px;}
.y11{bottom:1136.850000px;}
.hb{height:47.988281px;}
.h9{height:61.131445px;}
.ha{height:61.394063px;}
.h5{height:67.760156px;}
.h6{height:73.652344px;}
.h7{height:73.968750px;}
.h8{height:86.173242px;}
.h2{height:121.710938px;}
.h4{height:122.999414px;}
.h3{height:147.304688px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.415987px;}
.x3{left:148.895987px;}
.x4{left:197.129987px;}
.x5{left:332.534987px;}
.x7{left:339.374987px;}
.x8{left:352.334987px;}
.x6{left:446.684987px;}
.x1{left:521.204987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.289067pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.094720pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.433280pt;}
.ls3{letter-spacing:174.720000pt;}
.ws0{word-spacing:-35.968000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.728000pt;}
.ws3{word-spacing:-16.545280pt;}
.ws2{word-spacing:-16.256213pt;}
.ws6{word-spacing:-15.808000pt;}
.ws7{word-spacing:-13.120640pt;}
.ws8{word-spacing:-8.864000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-190.335147pt;}
._23{margin-left:-17.557333pt;}
._1b{margin-left:-16.277333pt;}
._18{margin-left:-15.264000pt;}
._17{margin-left:-13.343787pt;}
._21{margin-left:-11.867093pt;}
._1a{margin-left:-9.450453pt;}
._4{margin-left:-7.680000pt;}
._0{margin-left:-6.656000pt;}
._2{margin-left:-5.760000pt;}
._3{margin-left:-4.864000pt;}
._8{margin-left:-3.755520pt;}
._7{margin-left:-2.315520pt;}
._1{margin-left:-1.024000pt;}
._5{width:1.184000pt;}
._b{width:2.096640pt;}
._14{width:3.424000pt;}
._1f{width:4.394667pt;}
._20{width:5.515520pt;}
._10{width:6.912000pt;}
._22{width:7.915520pt;}
._a{width:8.972800pt;}
._1e{width:10.665600pt;}
._15{width:12.768853pt;}
._16{width:13.674667pt;}
._13{width:15.328853pt;}
._1d{width:17.429333pt;}
._1c{width:19.136000pt;}
._e{width:20.064000pt;}
._f{width:21.162667pt;}
._d{width:22.976000pt;}
._9{width:25.082880pt;}
._11{width:83.626667pt;}
._12{width:85.035520pt;}
._c{width:750.154667pt;}
._6{width:751.593387pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:100.480000pt;}
.y10{bottom:122.880000pt;}
.y7c{bottom:123.520000pt;}
.y5f{bottom:134.080000pt;}
.y3a{bottom:142.400000pt;}
.y7b{bottom:146.400000pt;}
.y5e{bottom:157.120000pt;}
.yf{bottom:160.640000pt;}
.y39{bottom:165.280000pt;}
.y7a{bottom:168.640000pt;}
.y5d{bottom:180.000000pt;}
.y38{bottom:188.346667pt;}
.y79{bottom:188.506667pt;}
.y5c{bottom:203.066667pt;}
.y37{bottom:210.906667pt;}
.y78{bottom:211.546667pt;}
.ye{bottom:214.746667pt;}
.y5b{bottom:225.946667pt;}
.y36{bottom:231.866667pt;}
.y77{bottom:234.426667pt;}
.y5a{bottom:248.986667pt;}
.y35{bottom:252.986667pt;}
.y76{bottom:257.466667pt;}
.y59{bottom:271.866667pt;}
.y34{bottom:273.946667pt;}
.yd{bottom:274.906667pt;}
.y75{bottom:280.346667pt;}
.y58{bottom:294.906667pt;}
.y33{bottom:295.066667pt;}
.y74{bottom:302.586667pt;}
.y32{bottom:316.026667pt;}
.y57{bottom:317.786667pt;}
.y73{bottom:322.426667pt;}
.yc{bottom:335.066667pt;}
.y31{bottom:337.146667pt;}
.y56{bottom:340.666667pt;}
.y72{bottom:345.466667pt;}
.y30{bottom:358.106667pt;}
.y98{bottom:358.266667pt;}
.y55{bottom:363.706667pt;}
.y71{bottom:368.346667pt;}
.y2f{bottom:379.226667pt;}
.y97{bottom:380.506667pt;}
.y54{bottom:382.426667pt;}
.y70{bottom:391.386667pt;}
.yb{bottom:395.226667pt;}
.y96{bottom:399.746667pt;}
.y2e{bottom:400.226667pt;}
.y6f{bottom:414.306667pt;}
.y95{bottom:418.946667pt;}
.y2d{bottom:421.346667pt;}
.y53{bottom:427.426667pt;}
.y6e{bottom:436.546667pt;}
.y94{bottom:438.786667pt;}
.y2c{bottom:442.306667pt;}
.y52{bottom:451.906667pt;}
.ya{bottom:455.586667pt;}
.y6d{bottom:456.386667pt;}
.y93{bottom:461.666667pt;}
.y2b{bottom:463.426667pt;}
.y51{bottom:476.706667pt;}
.y6c{bottom:479.266667pt;}
.y2a{bottom:484.386667pt;}
.y92{bottom:484.546667pt;}
.y50{bottom:501.506667pt;}
.y6b{bottom:502.306667pt;}
.y29{bottom:505.506667pt;}
.y91{bottom:507.586667pt;}
.y9{bottom:515.746667pt;}
.y6a{bottom:524.546667pt;}
.y4f{bottom:526.306667pt;}
.y28{bottom:526.466667pt;}
.y90{bottom:530.466667pt;}
.y69{bottom:544.386667pt;}
.y27{bottom:547.586667pt;}
.y4e{bottom:551.106667pt;}
.y8f{bottom:553.506667pt;}
.y68{bottom:567.266667pt;}
.y26{bottom:568.546667pt;}
.y8{bottom:575.906667pt;}
.y8e{bottom:576.386667pt;}
.y4d{bottom:586.626667pt;}
.y25{bottom:589.666667pt;}
.y67{bottom:590.306667pt;}
.y8d{bottom:599.426667pt;}
.y24{bottom:610.653333pt;}
.y4c{bottom:611.293333pt;}
.y66{bottom:613.213333pt;}
.y8c{bottom:622.333333pt;}
.y23{bottom:631.773333pt;}
.y4b{bottom:636.093333pt;}
.y7{bottom:636.253333pt;}
.y65{bottom:637.853333pt;}
.y8b{bottom:645.373333pt;}
.y22{bottom:652.733333pt;}
.y4a{bottom:660.893333pt;}
.y64{bottom:662.653333pt;}
.y8a{bottom:668.253333pt;}
.y21{bottom:673.853333pt;}
.y49{bottom:685.533333pt;}
.y63{bottom:687.453333pt;}
.y89{bottom:691.293333pt;}
.y20{bottom:694.813333pt;}
.y6{bottom:696.413333pt;}
.y48{bottom:710.333333pt;}
.y62{bottom:710.493333pt;}
.y88{bottom:713.533333pt;}
.y1f{bottom:715.933333pt;}
.y87{bottom:733.373333pt;}
.y47{bottom:733.533333pt;}
.y1e{bottom:736.893333pt;}
.y86{bottom:756.253333pt;}
.y46{bottom:756.413333pt;}
.y5{bottom:756.573333pt;}
.y1d{bottom:758.013333pt;}
.y1c{bottom:778.973333pt;}
.y85{bottom:779.293333pt;}
.y45{bottom:779.453333pt;}
.y1b{bottom:800.093333pt;}
.y84{bottom:802.173333pt;}
.y44{bottom:802.333333pt;}
.y4{bottom:816.773333pt;}
.y1a{bottom:821.093333pt;}
.y83{bottom:825.093333pt;}
.y43{bottom:825.413333pt;}
.y19{bottom:842.213333pt;}
.y42{bottom:848.293333pt;}
.y82{bottom:852.133333pt;}
.y18{bottom:863.173333pt;}
.y41{bottom:871.173333pt;}
.y81{bottom:875.013333pt;}
.y3{bottom:877.093333pt;}
.y17{bottom:884.293333pt;}
.y40{bottom:894.213333pt;}
.y80{bottom:898.053333pt;}
.y16{bottom:905.253333pt;}
.y3f{bottom:917.093333pt;}
.y7f{bottom:920.933333pt;}
.y15{bottom:926.373333pt;}
.y2{bottom:937.253333pt;}
.y3e{bottom:940.133333pt;}
.y7e{bottom:943.173333pt;}
.y14{bottom:947.333333pt;}
.y3d{bottom:963.013333pt;}
.y13{bottom:968.453333pt;}
.y61{bottom:985.253333pt;}
.y3c{bottom:986.053333pt;}
.y12{bottom:989.413333pt;}
.y1{bottom:997.573333pt;}
.y60{bottom:1005.733333pt;}
.y3b{bottom:1008.933333pt;}
.y11{bottom:1010.533333pt;}
.hb{height:42.656250pt;}
.h9{height:54.339063pt;}
.ha{height:54.572500pt;}
.h5{height:60.231250pt;}
.h6{height:65.468750pt;}
.h7{height:65.750000pt;}
.h8{height:76.598437pt;}
.h2{height:108.187500pt;}
.h4{height:109.332812pt;}
.h3{height:130.937500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x3{left:132.351988pt;}
.x4{left:175.226655pt;}
.x5{left:295.586655pt;}
.x7{left:301.666655pt;}
.x8{left:313.186655pt;}
.x6{left:397.053322pt;}
.x1{left:463.293322pt;}
}




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