
    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_877a6e4d0ca1bd2d17f32ea9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_fa8e5214389d8838655ac390.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937500;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_70fa1abc1886867466d793b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.763672;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_ca206a678d9333dc10595929.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.987305;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_b2294fa516c5346f8f7b4abe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_be3abdc3d7c22dfb7c40d4ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_25f8ed09eef13101b7e80aa2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_18b07ac5243a00bf6fd386e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_eed07cf947bbc25b55aa5e52.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927734;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_1e2770df190f55310ecc51f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935059;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:ffc;src:url('chunks/assets/font_5d2a9d6dc9b3d7cda768db0c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-100.920000px;}
.v1{vertical-align:-72.000000px;}
.v8{vertical-align:-55.440000px;}
.vb{vertical-align:-48.960000px;}
.v7{vertical-align:-34.560000px;}
.v4{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:34.560000px;}
.v5{vertical-align:84.240000px;}
.v2{vertical-align:90.000000px;}
.v3{vertical-align:98.640000px;}
.v6{vertical-align:182.880000px;}
.ls1f{letter-spacing:-0.309600px;}
.ls21{letter-spacing:-0.295800px;}
.ls1e{letter-spacing:-0.019440px;}
.ls1a{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.039223px;}
.ls20{letter-spacing:0.186600px;}
.ls5{letter-spacing:0.311040px;}
.lse{letter-spacing:0.319680px;}
.lsb{letter-spacing:0.347760px;}
.ls2{letter-spacing:0.353007px;}
.ls8{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.501182px;}
.ls1b{letter-spacing:0.540224px;}
.ls3{letter-spacing:0.579628px;}
.ls4{letter-spacing:0.801892px;}
.ls1d{letter-spacing:0.998733px;}
.ls1c{letter-spacing:3.345754px;}
.lsc{letter-spacing:5.544000px;}
.ls14{letter-spacing:6.595200px;}
.ls12{letter-spacing:6.701040px;}
.ls16{letter-spacing:6.890400px;}
.ls17{letter-spacing:8.330400px;}
.ls18{letter-spacing:8.510400px;}
.ls13{letter-spacing:9.396000px;}
.ls11{letter-spacing:10.116000px;}
.lsd{letter-spacing:41.979600px;}
.lsa{letter-spacing:42.765840px;}
.lsf{letter-spacing:44.215200px;}
.ls10{letter-spacing:46.116000px;}
.ls7{letter-spacing:115.344000px;}
.ls15{letter-spacing:157.233600px;}
.ls6{letter-spacing:157.260000px;}
.ls9{letter-spacing:157.284000px;}
.ls19{letter-spacing:157.353600px;}
.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;}
}
.ws3{word-spacing:-167.760000px;}
.wsb{word-spacing:-140.230800px;}
.wsa{word-spacing:-139.510800px;}
.ws5{word-spacing:-132.260400px;}
.ws9{word-spacing:-123.275760px;}
.ws8{word-spacing:-123.254160px;}
.ws4{word-spacing:-122.400000px;}
.ws6{word-spacing:-122.090400px;}
.wsd{word-spacing:-120.996720px;}
.wsc{word-spacing:-113.469840px;}
.ws2{word-spacing:-55.644480px;}
.ws1{word-spacing:-44.435520px;}
.ws7{word-spacing:-41.940000px;}
.ws0{word-spacing:-0.216000px;}
.wse{word-spacing:0.000000px;}
._b{margin-left:-27.058633px;}
._d{margin-left:-21.445440px;}
._4{margin-left:-19.224000px;}
._a{margin-left:-17.982000px;}
._c{margin-left:-16.967426px;}
._10{margin-left:-13.756320px;}
._1a{margin-left:-10.622448px;}
._9{margin-left:-9.182160px;}
._18{margin-left:-7.735026px;}
._e{margin-left:-6.464160px;}
._0{margin-left:-5.307120px;}
._19{margin-left:-4.305968px;}
._1{margin-left:-3.265920px;}
._2{margin-left:-2.246400px;}
._3{margin-left:-1.123200px;}
._5{width:1.080000px;}
._8{width:2.931433px;}
._7{width:4.008368px;}
._6{width:6.166720px;}
._13{width:7.481207px;}
._1d{width:8.751906px;}
._17{width:12.296160px;}
._f{width:21.716512px;}
._12{width:24.498000px;}
._14{width:26.238960px;}
._1c{width:30.449520px;}
._15{width:42.462000px;}
._11{width:46.598087px;}
._16{width:73.522640px;}
._1b{width:2255.918448px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.222955px;}
.fsd{font-size:100.800000px;}
.fsc{font-size:122.400000px;}
.fs5{font-size:159.840000px;}
.fs9{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs8{font-size:200.160000px;}
.fs1{font-size:216.000000px;}
.fs6{font-size:239.760000px;}
.fse{font-size:288.000000px;}
.fs7{font-size:300.240000px;}
.fs2{font-size:308.336009px;}
.fsb{font-size:324.000000px;}
.fs0{font-size:408.240000px;}
.fs4{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:80.136000px;}
.y4{bottom:82.541284px;}
.y6{bottom:97.115333px;}
.y5{bottom:112.641087px;}
.y2{bottom:168.405000px;}
.y1{bottom:252.795000px;}
.y31{bottom:387.570000px;}
.y30{bottom:448.050000px;}
.y2f{bottom:508.530000px;}
.y32{bottom:593.850000px;}
.y27{bottom:755.205000px;}
.y2d{bottom:763.200000px;}
.y26{bottom:815.730000px;}
.y2c{bottom:823.680000px;}
.y25{bottom:876.210000px;}
.y2b{bottom:884.160000px;}
.y24{bottom:936.690000px;}
.y2a{bottom:944.640000px;}
.y23{bottom:997.170000px;}
.y29{bottom:1005.120000px;}
.y28{bottom:1090.830000px;}
.y21{bottom:1541.550000px;}
.y38{bottom:1789.920000px;}
.y2e{bottom:1892.490000px;}
.y19{bottom:2031.555000px;}
.y18{bottom:2052.615000px;}
.y17{bottom:2134.695000px;}
.y20{bottom:2327.835000px;}
.y1f{bottom:2388.315000px;}
.y1e{bottom:2630.235000px;}
.y1d{bottom:2692.335000px;}
.y1c{bottom:2757.135000px;}
.y1b{bottom:2820.315000px;}
.y22{bottom:2915.895000px;}
.y1a{bottom:2957.040000px;}
.y36{bottom:3100.170000px;}
.y35{bottom:3162.990000px;}
.y34{bottom:3225.810000px;}
.y33{bottom:3288.450000px;}
.y15{bottom:3590.175000px;}
.y14{bottom:3650.655000px;}
.y13{bottom:3711.135000px;}
.y12{bottom:3771.615000px;}
.y11{bottom:3832.125000px;}
.y37{bottom:3867.810000px;}
.y10{bottom:3892.605000px;}
.yf{bottom:3953.085000px;}
.ye{bottom:4013.565000px;}
.yd{bottom:4074.045000px;}
.yc{bottom:4134.525000px;}
.y16{bottom:4228.200000px;}
.ya{bottom:4421.415000px;}
.y9{bottom:4506.915000px;}
.yb{bottom:4587.405000px;}
.y8{bottom:4719.885000px;}
.y7{bottom:4877.385000px;}
.h7{height:29.819405px;}
.hc{height:113.614805px;}
.hd{height:113.712328px;}
.h9{height:116.836172px;}
.hb{height:122.625352px;}
.h14{height:122.730609px;}
.h13{height:141.383672px;}
.h15{height:162.376523px;}
.h4{height:164.003906px;}
.h5{height:190.667143px;}
.h12{height:195.046875px;}
.hf{height:201.795469px;}
.h3{height:214.839844px;}
.he{height:219.427734px;}
.h11{height:225.623672px;}
.h6{height:231.703671px;}
.ha{height:240.510938px;}
.h10{height:286.035469px;}
.h2{height:406.047305px;}
.h8{height:433.125000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:465.021122px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:18.452189px;}
.x5{left:67.416162px;}
.xc{left:119.915947px;}
.x16{left:121.139947px;}
.xd{left:173.909947px;}
.x17{left:175.139947px;}
.x7{left:247.289947px;}
.xe{left:324.029947px;}
.xf{left:378.029947px;}
.x1c{left:478.289947px;}
.x9{left:511.229947px;}
.x18{left:589.754947px;}
.x15{left:638.894947px;}
.x10{left:726.554947px;}
.x4{left:728.439237px;}
.x8{left:771.089947px;}
.xa{left:836.129947px;}
.xb{left:858.929947px;}
.x1b{left:896.114947px;}
.x1d{left:1236.314947px;}
.x1{left:1569.494947px;}
.x3{left:1608.944947px;}
.x2{left:1667.879947px;}
.x14{left:1816.349947px;}
.x11{left:1830.344947px;}
.x1a{left:1868.549947px;}
.x19{left:1884.344947px;}
.x1e{left:1915.529947px;}
.x1f{left:2264.834947px;}
.x12{left:2832.629947px;}
.x13{left:3012.089947px;}
@media print{
.va{vertical-align:-89.706667pt;}
.v1{vertical-align:-64.000000pt;}
.v8{vertical-align:-49.280000pt;}
.vb{vertical-align:-43.520000pt;}
.v7{vertical-align:-30.720000pt;}
.v4{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:30.720000pt;}
.v5{vertical-align:74.880000pt;}
.v2{vertical-align:80.000000pt;}
.v3{vertical-align:87.680000pt;}
.v6{vertical-align:162.560000pt;}
.ls1f{letter-spacing:-0.275200pt;}
.ls21{letter-spacing:-0.262933pt;}
.ls1e{letter-spacing:-0.017280pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.034865pt;}
.ls20{letter-spacing:0.165867pt;}
.ls5{letter-spacing:0.276480pt;}
.lse{letter-spacing:0.284160pt;}
.lsb{letter-spacing:0.309120pt;}
.ls2{letter-spacing:0.313784pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.445495pt;}
.ls1b{letter-spacing:0.480199pt;}
.ls3{letter-spacing:0.515225pt;}
.ls4{letter-spacing:0.712792pt;}
.ls1d{letter-spacing:0.887762pt;}
.ls1c{letter-spacing:2.974004pt;}
.lsc{letter-spacing:4.928000pt;}
.ls14{letter-spacing:5.862400pt;}
.ls12{letter-spacing:5.956480pt;}
.ls16{letter-spacing:6.124800pt;}
.ls17{letter-spacing:7.404800pt;}
.ls18{letter-spacing:7.564800pt;}
.ls13{letter-spacing:8.352000pt;}
.ls11{letter-spacing:8.992000pt;}
.lsd{letter-spacing:37.315200pt;}
.lsa{letter-spacing:38.014080pt;}
.lsf{letter-spacing:39.302400pt;}
.ls10{letter-spacing:40.992000pt;}
.ls7{letter-spacing:102.528000pt;}
.ls15{letter-spacing:139.763200pt;}
.ls6{letter-spacing:139.786667pt;}
.ls9{letter-spacing:139.808000pt;}
.ls19{letter-spacing:139.869867pt;}
.ws3{word-spacing:-149.120000pt;}
.wsb{word-spacing:-124.649600pt;}
.wsa{word-spacing:-124.009600pt;}
.ws5{word-spacing:-117.564800pt;}
.ws9{word-spacing:-109.578453pt;}
.ws8{word-spacing:-109.559253pt;}
.ws4{word-spacing:-108.800000pt;}
.ws6{word-spacing:-108.524800pt;}
.wsd{word-spacing:-107.552640pt;}
.wsc{word-spacing:-100.862080pt;}
.ws2{word-spacing:-49.461760pt;}
.ws1{word-spacing:-39.498240pt;}
.ws7{word-spacing:-37.280000pt;}
.ws0{word-spacing:-0.192000pt;}
.wse{word-spacing:0.000000pt;}
._b{margin-left:-24.052118pt;}
._d{margin-left:-19.062613pt;}
._4{margin-left:-17.088000pt;}
._a{margin-left:-15.984000pt;}
._c{margin-left:-15.082156pt;}
._10{margin-left:-12.227840pt;}
._1a{margin-left:-9.442176pt;}
._9{margin-left:-8.161920pt;}
._18{margin-left:-6.875579pt;}
._e{margin-left:-5.745920pt;}
._0{margin-left:-4.717440pt;}
._19{margin-left:-3.827527pt;}
._1{margin-left:-2.903040pt;}
._2{margin-left:-1.996800pt;}
._3{margin-left:-0.998400pt;}
._5{width:0.960000pt;}
._8{width:2.605718pt;}
._7{width:3.562994pt;}
._6{width:5.481529pt;}
._13{width:6.649962pt;}
._1d{width:7.779472pt;}
._17{width:10.929920pt;}
._f{width:19.303566pt;}
._12{width:21.776000pt;}
._14{width:23.323520pt;}
._1c{width:27.066240pt;}
._15{width:37.744000pt;}
._11{width:41.420522pt;}
._16{width:65.353458pt;}
._1b{width:2005.260843pt;}
.fs3{font-size:34.864849pt;}
.fsd{font-size:89.600000pt;}
.fsc{font-size:108.800000pt;}
.fs5{font-size:142.080000pt;}
.fs9{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs8{font-size:177.920000pt;}
.fs1{font-size:192.000000pt;}
.fs6{font-size:213.120000pt;}
.fse{font-size:256.000000pt;}
.fs7{font-size:266.880000pt;}
.fs2{font-size:274.076452pt;}
.fsb{font-size:288.000000pt;}
.fs0{font-size:362.880000pt;}
.fs4{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:71.232000pt;}
.y4{bottom:73.370030pt;}
.y6{bottom:86.324741pt;}
.y5{bottom:100.125410pt;}
.y2{bottom:149.693333pt;}
.y1{bottom:224.706667pt;}
.y31{bottom:344.506667pt;}
.y30{bottom:398.266667pt;}
.y2f{bottom:452.026667pt;}
.y32{bottom:527.866667pt;}
.y27{bottom:671.293333pt;}
.y2d{bottom:678.400000pt;}
.y26{bottom:725.093333pt;}
.y2c{bottom:732.160000pt;}
.y25{bottom:778.853333pt;}
.y2b{bottom:785.920000pt;}
.y24{bottom:832.613333pt;}
.y2a{bottom:839.680000pt;}
.y23{bottom:886.373333pt;}
.y29{bottom:893.440000pt;}
.y28{bottom:969.626667pt;}
.y21{bottom:1370.266667pt;}
.y38{bottom:1591.040000pt;}
.y2e{bottom:1682.213333pt;}
.y19{bottom:1805.826667pt;}
.y18{bottom:1824.546667pt;}
.y17{bottom:1897.506667pt;}
.y20{bottom:2069.186667pt;}
.y1f{bottom:2122.946667pt;}
.y1e{bottom:2337.986667pt;}
.y1d{bottom:2393.186667pt;}
.y1c{bottom:2450.786667pt;}
.y1b{bottom:2506.946667pt;}
.y22{bottom:2591.906667pt;}
.y1a{bottom:2628.480000pt;}
.y36{bottom:2755.706667pt;}
.y35{bottom:2811.546667pt;}
.y34{bottom:2867.386667pt;}
.y33{bottom:2923.066667pt;}
.y15{bottom:3191.266667pt;}
.y14{bottom:3245.026667pt;}
.y13{bottom:3298.786667pt;}
.y12{bottom:3352.546667pt;}
.y11{bottom:3406.333333pt;}
.y37{bottom:3438.053333pt;}
.y10{bottom:3460.093333pt;}
.yf{bottom:3513.853333pt;}
.ye{bottom:3567.613333pt;}
.yd{bottom:3621.373333pt;}
.yc{bottom:3675.133333pt;}
.y16{bottom:3758.400000pt;}
.ya{bottom:3930.146667pt;}
.y9{bottom:4006.146667pt;}
.yb{bottom:4077.693333pt;}
.y8{bottom:4195.453333pt;}
.y7{bottom:4335.453333pt;}
.h7{height:26.506138pt;}
.hc{height:100.990937pt;}
.hd{height:101.077625pt;}
.h9{height:103.854375pt;}
.hb{height:109.000312pt;}
.h14{height:109.093875pt;}
.h13{height:125.674375pt;}
.h15{height:144.334688pt;}
.h4{height:145.781250pt;}
.h5{height:169.481905pt;}
.h12{height:173.375000pt;}
.hf{height:179.373750pt;}
.h3{height:190.968750pt;}
.he{height:195.046875pt;}
.h11{height:200.554375pt;}
.h6{height:205.958818pt;}
.ha{height:213.787500pt;}
.h10{height:254.253750pt;}
.h2{height:360.930937pt;}
.h8{height:385.000000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:413.352108pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:16.401945pt;}
.x5{left:59.925477pt;}
.xc{left:106.591953pt;}
.x16{left:107.679953pt;}
.xd{left:154.586619pt;}
.x17{left:155.679953pt;}
.x7{left:219.813286pt;}
.xe{left:288.026619pt;}
.xf{left:336.026619pt;}
.x1c{left:425.146619pt;}
.x9{left:454.426619pt;}
.x18{left:524.226619pt;}
.x15{left:567.906619pt;}
.x10{left:645.826619pt;}
.x4{left:647.501544pt;}
.x8{left:685.413286pt;}
.xa{left:743.226619pt;}
.xb{left:763.493286pt;}
.x1b{left:796.546619pt;}
.x1d{left:1098.946619pt;}
.x1{left:1395.106619pt;}
.x3{left:1430.173286pt;}
.x2{left:1482.559953pt;}
.x14{left:1614.533286pt;}
.x11{left:1626.973286pt;}
.x1a{left:1660.933286pt;}
.x19{left:1674.973286pt;}
.x1e{left:1702.693286pt;}
.x1f{left:2013.186619pt;}
.x12{left:2517.893286pt;}
.x13{left:2677.413286pt;}
}




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