
    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_e6a537586146dafaf3340fda.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724000;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_45f07e004404a1e34841ae33.woff')format("woff");}.ff2{font-family:ff2;line-height:0.724000;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_10784d278ab4b3d99f047cba.woff')format("woff");}.ff3{font-family:ff3;line-height:0.724000;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_104c10adce4173ee6676004e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.724000;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_1a54352dbf53bf07546a8ac3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.905762;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_c42c387e509c410027ced0fa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923828;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_a444218d042c883173d2c2c9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.724000;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_fd398c9462c2ab313dbb8f0c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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_9fda96ee687b094a0225878b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8319070c6246b135d943a5e4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923828;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_8c244102e3044ddc43092fac.woff')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_70ec127e98b4c2faa47ab129.woff')format("woff");}.ffc{font-family:ffc;line-height:0.916504;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:ffd;src:url('chunks/assets/font_8ab01dfb8a635b732e01b28e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.905762;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:ffe;src:url('chunks/assets/font_365d0343aa22ce0fbffbc11e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.908203;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:fff;src:url('chunks/assets/font_3759410ac6e19218c313e546.woff')format("woff");}.fff{font-family:fff;line-height:0.760254;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:ff10;src:url('chunks/assets/font_4b63b4f2a992bd7eaf566a9a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.928223;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:ff11;src:url('chunks/assets/font_b3a20824ae22aad2c5d594db.woff')format("woff");}.ff11{font-family:ff11;line-height:0.724000;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;}
.m1{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);}
.m0{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-48.960000px;}
.v3{vertical-align:-47.520000px;}
.v5{vertical-align:-24.480000px;}
.v6{vertical-align:-23.040000px;}
.v2{vertical-align:-1.882080px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.882080px;}
.ls2b{letter-spacing:-3.788400px;}
.ls2e{letter-spacing:-1.974000px;}
.ls28{letter-spacing:-1.932000px;}
.ls2a{letter-spacing:-1.856400px;}
.ls2d{letter-spacing:-1.705200px;}
.ls23{letter-spacing:-1.671600px;}
.ls24{letter-spacing:-1.570800px;}
.ls29{letter-spacing:-1.537200px;}
.ls2c{letter-spacing:-1.377600px;}
.ls27{letter-spacing:-1.360800px;}
.ls2f{letter-spacing:-0.848400px;}
.ls25{letter-spacing:-0.613200px;}
.ls26{letter-spacing:-0.588000px;}
.ls1d{letter-spacing:-0.372600px;}
.ls20{letter-spacing:-0.340200px;}
.lsd{letter-spacing:-0.237600px;}
.lse{letter-spacing:-0.168000px;}
.ls22{letter-spacing:-0.145800px;}
.ls8{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.183600px;}
.ls11{letter-spacing:0.188235px;}
.ls1c{letter-spacing:0.205200px;}
.ls1e{letter-spacing:0.319200px;}
.ls1f{letter-spacing:0.340200px;}
.ls21{letter-spacing:1.159200px;}
.ls14{letter-spacing:3.522000px;}
.ls10{letter-spacing:7.038824px;}
.ls18{letter-spacing:7.148236px;}
.ls1a{letter-spacing:7.184707px;}
.ls19{letter-spacing:7.221177px;}
.ls13{letter-spacing:7.330589px;}
.ls12{letter-spacing:8.452940px;}
.ls30{letter-spacing:8.512940px;}
.ls17{letter-spacing:8.555293px;}
.ls15{letter-spacing:8.639999px;}
.ls31{letter-spacing:8.724704px;}
.lsf{letter-spacing:8.735293px;}
.ls16{letter-spacing:9.552942px;}
.ls1{letter-spacing:11.068236px;}
.ls7{letter-spacing:11.237648px;}
.ls9{letter-spacing:11.294119px;}
.ls3{letter-spacing:11.576472px;}
.ls4{letter-spacing:11.632942px;}
.ls0{letter-spacing:12.821763px;}
.ls2{letter-spacing:13.123527px;}
.lsb{letter-spacing:16.487058px;}
.ls6{letter-spacing:16.655293px;}
.lsc{letter-spacing:16.739411px;}
.lsa{letter-spacing:17.075882px;}
.ls5{letter-spacing:20.279409px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws3{word-spacing:-116.668246px;}
.ws2{word-spacing:-116.611776px;}
.ws0{word-spacing:-116.272952px;}
.ws1{word-spacing:-116.103540px;}
.ws19{word-spacing:-87.416457px;}
.ws1b{word-spacing:-87.331751px;}
.ws1a{word-spacing:-87.289398px;}
.wsc{word-spacing:-75.165890px;}
.wsb{word-spacing:-75.020008px;}
.wsa{word-spacing:-74.983537px;}
.ws9{word-spacing:-74.874125px;}
.ws7{word-spacing:-53.762400px;}
.ws11{word-spacing:-40.840200px;}
.ws12{word-spacing:-40.159800px;}
.ws10{word-spacing:-40.127400px;}
.wsf{word-spacing:-27.205200px;}
.wse{word-spacing:-27.183600px;}
.wsd{word-spacing:-27.000000px;}
.ws14{word-spacing:-20.999999px;}
.ws15{word-spacing:-19.462799px;}
.ws13{word-spacing:-19.429199px;}
.ws17{word-spacing:-19.328399px;}
.ws18{word-spacing:-19.294799px;}
.ws4{word-spacing:-17.917058px;}
.ws6{word-spacing:-17.496470px;}
.ws5{word-spacing:-17.328234px;}
.ws16{word-spacing:-17.211599px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-20.261094px;}
._4{margin-left:-18.000228px;}
._2{margin-left:-11.078825px;}
._d{margin-left:-9.332781px;}
._b{margin-left:-7.002201px;}
._c{margin-left:-4.482298px;}
._8{margin-left:-2.610121px;}
._3{margin-left:-1.515294px;}
._0{width:1.129412px;}
._6{width:2.191515px;}
._9{width:4.230121px;}
._a{width:8.589563px;}
._1{width:13.204704px;}
._7{width:20.222566px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,230,128);}
.fc3{color:rgb(232,232,232);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:24.000005px;}
.fse{font-size:54.000000px;}
.fsf{font-size:83.999995px;}
.fsb{font-size:108.000000px;}
.fsd{font-size:126.000000px;}
.fs9{font-size:162.000000px;}
.fsc{font-size:168.000048px;}
.fs5{font-size:216.000000px;}
.fs4{font-size:240.000048px;}
.fs7{font-size:364.705920px;}
.fs8{font-size:370.588176px;}
.fs6{font-size:423.529344px;}
.fs10{font-size:470.588256px;}
.fs1{font-size:564.705936px;}
.fs0{font-size:652.941072px;}
.fs2{font-size:841.176432px;}
.fs3{font-size:1029.411648px;}
.y0{bottom:0.000000px;}
.y3{bottom:2882.160150px;}
.yd{bottom:2941.560150px;}
.yc{bottom:2966.760150px;}
.yb{bottom:2990.880150px;}
.y2{bottom:2999.191470px;}
.ya{bottom:3015.000150px;}
.y7{bottom:3051.360150px;}
.y8{bottom:3063.600150px;}
.y9{bottom:3066.480150px;}
.y5{bottom:3101.040150px;}
.y6{bottom:3112.920150px;}
.ye{bottom:3173.827110px;}
.y1{bottom:3234.880590px;}
.y4{bottom:3292.267035px;}
.h8{height:40.500000px;}
.h6{height:81.000000px;}
.h7{height:94.500000px;}
.h5{height:121.500000px;}
.h3{height:180.000036px;}
.h4{height:304.094069px;}
.h9{height:338.353248px;}
.h1{height:468.811690px;}
.h2{height:740.999643px;}
.h0{height:3402.000000px;}
.w0{width:6048.000000px;}
.x0{left:0.000000px;}
.x2{left:1163.971500px;}
.x1{left:1438.218450px;}
.x3{left:1466.567250px;}
.x4{left:2000.284500px;}
.x12{left:2133.129000px;}
.x5{left:2161.251000px;}
.xf{left:2407.065000px;}
.xa{left:2459.128500px;}
.x6{left:2472.898500px;}
.xe{left:2596.830000px;}
.x10{left:2601.922500px;}
.x11{left:2638.110000px;}
.xb{left:2775.343500px;}
.xc{left:3188.458500px;}
.x7{left:3192.231000px;}
.x8{left:3427.371000px;}
.xd{left:3535.018500px;}
.x9{left:3860.083500px;}
@media print{
.v4{vertical-align:-43.520000pt;}
.v3{vertical-align:-42.240000pt;}
.v5{vertical-align:-21.760000pt;}
.v6{vertical-align:-20.480000pt;}
.v2{vertical-align:-1.672960pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.672960pt;}
.ls2b{letter-spacing:-3.367466pt;}
.ls2e{letter-spacing:-1.754667pt;}
.ls28{letter-spacing:-1.717333pt;}
.ls2a{letter-spacing:-1.650133pt;}
.ls2d{letter-spacing:-1.515733pt;}
.ls23{letter-spacing:-1.485867pt;}
.ls24{letter-spacing:-1.396267pt;}
.ls29{letter-spacing:-1.366400pt;}
.ls2c{letter-spacing:-1.224533pt;}
.ls27{letter-spacing:-1.209600pt;}
.ls2f{letter-spacing:-0.754133pt;}
.ls25{letter-spacing:-0.545067pt;}
.ls26{letter-spacing:-0.522667pt;}
.ls1d{letter-spacing:-0.331200pt;}
.ls20{letter-spacing:-0.302400pt;}
.lsd{letter-spacing:-0.211200pt;}
.lse{letter-spacing:-0.149333pt;}
.ls22{letter-spacing:-0.129600pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.163200pt;}
.ls11{letter-spacing:0.167320pt;}
.ls1c{letter-spacing:0.182400pt;}
.ls1e{letter-spacing:0.283733pt;}
.ls1f{letter-spacing:0.302400pt;}
.ls21{letter-spacing:1.030400pt;}
.ls14{letter-spacing:3.130667pt;}
.ls10{letter-spacing:6.256733pt;}
.ls18{letter-spacing:6.353988pt;}
.ls1a{letter-spacing:6.386406pt;}
.ls19{letter-spacing:6.418824pt;}
.ls13{letter-spacing:6.516079pt;}
.ls12{letter-spacing:7.513724pt;}
.ls30{letter-spacing:7.567058pt;}
.ls17{letter-spacing:7.604705pt;}
.ls15{letter-spacing:7.679999pt;}
.ls31{letter-spacing:7.755293pt;}
.lsf{letter-spacing:7.764705pt;}
.ls16{letter-spacing:8.491504pt;}
.ls1{letter-spacing:9.838432pt;}
.ls7{letter-spacing:9.989021pt;}
.ls9{letter-spacing:10.039217pt;}
.ls3{letter-spacing:10.290197pt;}
.ls4{letter-spacing:10.340393pt;}
.ls0{letter-spacing:11.397122pt;}
.ls2{letter-spacing:11.665358pt;}
.lsb{letter-spacing:14.655163pt;}
.ls6{letter-spacing:14.804705pt;}
.lsc{letter-spacing:14.879476pt;}
.lsa{letter-spacing:15.178561pt;}
.ls5{letter-spacing:18.026142pt;}
.ws3{word-spacing:-103.705108pt;}
.ws2{word-spacing:-103.654912pt;}
.ws0{word-spacing:-103.353735pt;}
.ws1{word-spacing:-103.203147pt;}
.ws19{word-spacing:-77.703517pt;}
.ws1b{word-spacing:-77.628223pt;}
.ws1a{word-spacing:-77.590576pt;}
.wsc{word-spacing:-66.814125pt;}
.wsb{word-spacing:-66.684451pt;}
.wsa{word-spacing:-66.652033pt;}
.ws9{word-spacing:-66.554778pt;}
.ws7{word-spacing:-47.788800pt;}
.ws11{word-spacing:-36.302400pt;}
.ws12{word-spacing:-35.697600pt;}
.ws10{word-spacing:-35.668800pt;}
.wsf{word-spacing:-24.182400pt;}
.wse{word-spacing:-24.163200pt;}
.wsd{word-spacing:-24.000000pt;}
.ws14{word-spacing:-18.666666pt;}
.ws15{word-spacing:-17.300266pt;}
.ws13{word-spacing:-17.270399pt;}
.ws17{word-spacing:-17.180799pt;}
.ws18{word-spacing:-17.150932pt;}
.ws4{word-spacing:-15.926274pt;}
.ws6{word-spacing:-15.552418pt;}
.ws5{word-spacing:-15.402875pt;}
.ws16{word-spacing:-15.299199pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-18.009861pt;}
._4{margin-left:-16.000202pt;}
._2{margin-left:-9.847844pt;}
._d{margin-left:-8.295805pt;}
._b{margin-left:-6.224178pt;}
._c{margin-left:-3.984265pt;}
._8{margin-left:-2.320108pt;}
._3{margin-left:-1.346928pt;}
._0{width:1.003922pt;}
._6{width:1.948013pt;}
._9{width:3.760108pt;}
._a{width:7.635167pt;}
._1{width:11.737515pt;}
._7{width:17.975615pt;}
.fsa{font-size:21.333338pt;}
.fse{font-size:48.000000pt;}
.fsf{font-size:74.666662pt;}
.fsb{font-size:96.000000pt;}
.fsd{font-size:112.000000pt;}
.fs9{font-size:144.000000pt;}
.fsc{font-size:149.333376pt;}
.fs5{font-size:192.000000pt;}
.fs4{font-size:213.333376pt;}
.fs7{font-size:324.183040pt;}
.fs8{font-size:329.411712pt;}
.fs6{font-size:376.470528pt;}
.fs10{font-size:418.300672pt;}
.fs1{font-size:501.960832pt;}
.fs0{font-size:580.392064pt;}
.fs2{font-size:747.712384pt;}
.fs3{font-size:915.032576pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2561.920133pt;}
.yd{bottom:2614.720133pt;}
.yc{bottom:2637.120133pt;}
.yb{bottom:2658.560133pt;}
.y2{bottom:2665.947973pt;}
.ya{bottom:2680.000133pt;}
.y7{bottom:2712.320133pt;}
.y8{bottom:2723.200133pt;}
.y9{bottom:2725.760133pt;}
.y5{bottom:2756.480133pt;}
.y6{bottom:2767.040133pt;}
.ye{bottom:2821.179653pt;}
.y1{bottom:2875.449413pt;}
.y4{bottom:2926.459587pt;}
.h8{height:36.000000pt;}
.h6{height:72.000000pt;}
.h7{height:84.000000pt;}
.h5{height:108.000000pt;}
.h3{height:160.000032pt;}
.h4{height:270.305839pt;}
.h9{height:300.758442pt;}
.h1{height:416.721502pt;}
.h2{height:658.666350pt;}
.h0{height:3024.000000pt;}
.w0{width:5376.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1034.641333pt;}
.x1{left:1278.416400pt;}
.x3{left:1303.615333pt;}
.x4{left:1778.030667pt;}
.x12{left:1896.114667pt;}
.x5{left:1921.112000pt;}
.xf{left:2139.613333pt;}
.xa{left:2185.892000pt;}
.x6{left:2198.132000pt;}
.xe{left:2308.293333pt;}
.x10{left:2312.820000pt;}
.x11{left:2344.986667pt;}
.xb{left:2466.972000pt;}
.xc{left:2834.185333pt;}
.x7{left:2837.538667pt;}
.x8{left:3046.552000pt;}
.xd{left:3142.238667pt;}
.x9{left:3431.185333pt;}
}




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