
    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_b47dcec9db3b4b91d01c9845.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b8cbd4d4365194d9d0a5895b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_f51e5766e6f3ed79b025e49c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_7d812ea09cd676d7a21b60c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_a2ef753cec2151eaf5effecf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27c3a747c5d770016bb7cceb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_590ea642b3e0ee337b44b414.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096191;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_8d171172acdd50c1f736efb6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7f23d14a07ef0d67ebaa0934.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.709473;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_22a69683bc5ec016d63df90d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b8cbd4d4365194d9d0a5895b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936523;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_a2ef753cec2151eaf5effecf.woff2')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_991cbe8dd35cc370592da766.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922363;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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.968000px;}
.ls3{letter-spacing:-0.420000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010200px;}
.ls5{letter-spacing:1.322400px;}
.ls1{letter-spacing:1.992600px;}
.ls4{letter-spacing:1450.572600px;}
.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;}
}
.ws1{word-spacing:-13.200000px;}
.ws8{word-spacing:-12.780000px;}
.ws23{word-spacing:-11.880000px;}
.ws0{word-spacing:-10.560000px;}
.ws2{word-spacing:-6.156480px;}
.ws20{word-spacing:-2.820000px;}
.ws7{word-spacing:-2.640000px;}
.wsc{word-spacing:-2.460000px;}
.ws15{word-spacing:-1.560000px;}
.ws6{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.420000px;}
.ws1f{word-spacing:-0.240000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.240000px;}
.ws10{word-spacing:0.300000px;}
.ws1e{word-spacing:1.020000px;}
.ws12{word-spacing:1.140000px;}
.wsd{word-spacing:1.260000px;}
.ws24{word-spacing:1.320000px;}
.ws13{word-spacing:1.380000px;}
.ws21{word-spacing:1.560000px;}
.ws1a{word-spacing:1.800000px;}
.ws11{word-spacing:1.860000px;}
.ws4{word-spacing:1.980000px;}
.wsa{word-spacing:2.520000px;}
.ws16{word-spacing:2.760000px;}
.ws17{word-spacing:2.880000px;}
.ws14{word-spacing:3.180000px;}
.ws18{word-spacing:3.300000px;}
.wse{word-spacing:3.600000px;}
.ws1d{word-spacing:4.020000px;}
.wsf{word-spacing:4.080000px;}
.ws19{word-spacing:4.200000px;}
.wsb{word-spacing:4.500000px;}
.ws1c{word-spacing:4.980000px;}
.ws1b{word-spacing:7.740000px;}
.ws9{word-spacing:1450.548000px;}
._a{margin-left:-3362.457600px;}
._c{margin-left:-6.860400px;}
._2{margin-left:-4.892400px;}
._0{margin-left:-3.302400px;}
._3{margin-left:-1.387800px;}
._5{width:1.617600px;}
._6{width:3.373800px;}
._4{width:4.518000px;}
._7{width:5.895600px;}
._b{width:6.942000px;}
._9{width:8.106000px;}
._8{width:9.373800px;}
._d{width:10.638600px;}
._e{width:12.019200px;}
._1{width:1450.624800px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(166,29,35);}
.fs6{font-size:27.984000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:55.968000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:71.987400px;}
.y24{bottom:106.468500px;}
.y4c{bottom:121.844400px;}
.y4b{bottom:139.844400px;}
.y4a{bottom:157.844400px;}
.y23{bottom:171.428100px;}
.y49{bottom:175.844400px;}
.y22{bottom:189.428100px;}
.y48{bottom:193.844400px;}
.y21{bottom:207.428100px;}
.y47{bottom:211.844400px;}
.y20{bottom:225.428100px;}
.y46{bottom:229.844400px;}
.y1f{bottom:243.428100px;}
.y45{bottom:247.844400px;}
.y1e{bottom:261.428100px;}
.y44{bottom:265.844400px;}
.y1d{bottom:279.428100px;}
.y43{bottom:283.844400px;}
.y1c{bottom:297.428100px;}
.y42{bottom:301.844400px;}
.y1b{bottom:315.428100px;}
.y41{bottom:319.844400px;}
.y1a{bottom:333.428100px;}
.y40{bottom:337.844400px;}
.y19{bottom:351.428100px;}
.y3f{bottom:355.844400px;}
.y18{bottom:369.428100px;}
.y3e{bottom:373.844400px;}
.y17{bottom:387.428100px;}
.y3d{bottom:391.844400px;}
.y16{bottom:405.428100px;}
.y3c{bottom:409.844400px;}
.y15{bottom:423.428100px;}
.y3b{bottom:427.844400px;}
.y14{bottom:441.428100px;}
.y3a{bottom:445.844400px;}
.y13{bottom:459.428100px;}
.y39{bottom:463.844400px;}
.y12{bottom:477.428100px;}
.y38{bottom:481.844400px;}
.y11{bottom:495.428100px;}
.y37{bottom:499.844400px;}
.y10{bottom:513.428100px;}
.y36{bottom:517.844400px;}
.yf{bottom:531.428100px;}
.y35{bottom:535.844400px;}
.y34{bottom:553.844400px;}
.y4d{bottom:567.592350px;}
.y33{bottom:571.844400px;}
.y32{bottom:589.844400px;}
.y31{bottom:607.844400px;}
.ye{bottom:611.932050px;}
.y30{bottom:625.844400px;}
.yd{bottom:628.132050px;}
.y2f{bottom:643.844400px;}
.y2e{bottom:661.844400px;}
.yc{bottom:662.332050px;}
.y2d{bottom:679.844400px;}
.y2c{bottom:697.844400px;}
.yb{bottom:704.591850px;}
.y2b{bottom:715.844400px;}
.ya{bottom:722.591850px;}
.y2a{bottom:733.844400px;}
.y9{bottom:740.591850px;}
.y29{bottom:751.844400px;}
.y8{bottom:762.843900px;}
.y28{bottom:769.844400px;}
.y7{bottom:780.843900px;}
.y27{bottom:787.844400px;}
.y26{bottom:805.844400px;}
.y6{bottom:816.843900px;}
.y25{bottom:823.844400px;}
.y5{bottom:857.860050px;}
.y3{bottom:893.996700px;}
.y2{bottom:935.134500px;}
.y1{bottom:948.634500px;}
.ha{height:24.349359px;}
.h2{height:33.796875px;}
.h3{height:34.570312px;}
.h5{height:42.246094px;}
.hb{height:43.212891px;}
.h4{height:46.986328px;}
.h8{height:52.207031px;}
.h7{height:52.675781px;}
.h9{height:62.648438px;}
.h6{height:72.276984px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x5{left:87.165300px;}
.xa{left:105.012150px;}
.x12{left:106.299150px;}
.x11{left:110.551050px;}
.x7{left:124.784400px;}
.xd{left:189.548700px;}
.x8{left:195.748350px;}
.xb{left:200.560200px;}
.xe{left:205.368900px;}
.x6{left:250.793400px;}
.x4{left:281.550000px;}
.xc{left:288.358650px;}
.x9{left:312.122850px;}
.xf{left:317.435850px;}
.x10{left:338.695650px;}
.x3{left:451.342050px;}
.x2{left:532.787400px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.416000pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009067pt;}
.ls5{letter-spacing:1.175467pt;}
.ls1{letter-spacing:1.771200pt;}
.ls4{letter-spacing:1289.397867pt;}
.ws1{word-spacing:-11.733333pt;}
.ws8{word-spacing:-11.360000pt;}
.ws23{word-spacing:-10.560000pt;}
.ws0{word-spacing:-9.386667pt;}
.ws2{word-spacing:-5.472427pt;}
.ws20{word-spacing:-2.506667pt;}
.ws7{word-spacing:-2.346667pt;}
.wsc{word-spacing:-2.186667pt;}
.ws15{word-spacing:-1.386667pt;}
.ws6{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.373333pt;}
.ws1f{word-spacing:-0.213333pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.213333pt;}
.ws10{word-spacing:0.266667pt;}
.ws1e{word-spacing:0.906667pt;}
.ws12{word-spacing:1.013333pt;}
.wsd{word-spacing:1.120000pt;}
.ws24{word-spacing:1.173333pt;}
.ws13{word-spacing:1.226667pt;}
.ws21{word-spacing:1.386667pt;}
.ws1a{word-spacing:1.600000pt;}
.ws11{word-spacing:1.653333pt;}
.ws4{word-spacing:1.760000pt;}
.wsa{word-spacing:2.240000pt;}
.ws16{word-spacing:2.453333pt;}
.ws17{word-spacing:2.560000pt;}
.ws14{word-spacing:2.826667pt;}
.ws18{word-spacing:2.933333pt;}
.wse{word-spacing:3.200000pt;}
.ws1d{word-spacing:3.573333pt;}
.wsf{word-spacing:3.626667pt;}
.ws19{word-spacing:3.733333pt;}
.wsb{word-spacing:4.000000pt;}
.ws1c{word-spacing:4.426667pt;}
.ws1b{word-spacing:6.880000pt;}
.ws9{word-spacing:1289.376000pt;}
._a{margin-left:-2988.851200pt;}
._c{margin-left:-6.098133pt;}
._2{margin-left:-4.348800pt;}
._0{margin-left:-2.935467pt;}
._3{margin-left:-1.233600pt;}
._5{width:1.437867pt;}
._6{width:2.998933pt;}
._4{width:4.016000pt;}
._7{width:5.240533pt;}
._b{width:6.170667pt;}
._9{width:7.205333pt;}
._8{width:8.332267pt;}
._d{width:9.456533pt;}
._e{width:10.683733pt;}
._1{width:1289.444267pt;}
.fs6{font-size:24.874667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:49.749333pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:63.988800pt;}
.y24{bottom:94.638667pt;}
.y4c{bottom:108.306133pt;}
.y4b{bottom:124.306133pt;}
.y4a{bottom:140.306133pt;}
.y23{bottom:152.380533pt;}
.y49{bottom:156.306133pt;}
.y22{bottom:168.380533pt;}
.y48{bottom:172.306133pt;}
.y21{bottom:184.380533pt;}
.y47{bottom:188.306133pt;}
.y20{bottom:200.380533pt;}
.y46{bottom:204.306133pt;}
.y1f{bottom:216.380533pt;}
.y45{bottom:220.306133pt;}
.y1e{bottom:232.380533pt;}
.y44{bottom:236.306133pt;}
.y1d{bottom:248.380533pt;}
.y43{bottom:252.306133pt;}
.y1c{bottom:264.380533pt;}
.y42{bottom:268.306133pt;}
.y1b{bottom:280.380533pt;}
.y41{bottom:284.306133pt;}
.y1a{bottom:296.380533pt;}
.y40{bottom:300.306133pt;}
.y19{bottom:312.380533pt;}
.y3f{bottom:316.306133pt;}
.y18{bottom:328.380533pt;}
.y3e{bottom:332.306133pt;}
.y17{bottom:344.380533pt;}
.y3d{bottom:348.306133pt;}
.y16{bottom:360.380533pt;}
.y3c{bottom:364.306133pt;}
.y15{bottom:376.380533pt;}
.y3b{bottom:380.306133pt;}
.y14{bottom:392.380533pt;}
.y3a{bottom:396.306133pt;}
.y13{bottom:408.380533pt;}
.y39{bottom:412.306133pt;}
.y12{bottom:424.380533pt;}
.y38{bottom:428.306133pt;}
.y11{bottom:440.380533pt;}
.y37{bottom:444.306133pt;}
.y10{bottom:456.380533pt;}
.y36{bottom:460.306133pt;}
.yf{bottom:472.380533pt;}
.y35{bottom:476.306133pt;}
.y34{bottom:492.306133pt;}
.y4d{bottom:504.526533pt;}
.y33{bottom:508.306133pt;}
.y32{bottom:524.306133pt;}
.y31{bottom:540.306133pt;}
.ye{bottom:543.939600pt;}
.y30{bottom:556.306133pt;}
.yd{bottom:558.339600pt;}
.y2f{bottom:572.306133pt;}
.y2e{bottom:588.306133pt;}
.yc{bottom:588.739600pt;}
.y2d{bottom:604.306133pt;}
.y2c{bottom:620.306133pt;}
.yb{bottom:626.303867pt;}
.y2b{bottom:636.306133pt;}
.ya{bottom:642.303867pt;}
.y2a{bottom:652.306133pt;}
.y9{bottom:658.303867pt;}
.y29{bottom:668.306133pt;}
.y8{bottom:678.083467pt;}
.y28{bottom:684.306133pt;}
.y7{bottom:694.083467pt;}
.y27{bottom:700.306133pt;}
.y26{bottom:716.306133pt;}
.y6{bottom:726.083467pt;}
.y25{bottom:732.306133pt;}
.y5{bottom:762.542267pt;}
.y3{bottom:794.663733pt;}
.y2{bottom:831.230667pt;}
.y1{bottom:843.230667pt;}
.ha{height:21.643875pt;}
.h2{height:30.041667pt;}
.h3{height:30.729167pt;}
.h5{height:37.552083pt;}
.hb{height:38.411458pt;}
.h4{height:41.765625pt;}
.h8{height:46.406250pt;}
.h7{height:46.822917pt;}
.h9{height:55.687500pt;}
.h6{height:64.246208pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x5{left:77.480267pt;}
.xa{left:93.344133pt;}
.x12{left:94.488133pt;}
.x11{left:98.267600pt;}
.x7{left:110.919467pt;}
.xd{left:168.487733pt;}
.x8{left:173.998533pt;}
.xb{left:178.275733pt;}
.xe{left:182.550133pt;}
.x6{left:222.927467pt;}
.x4{left:250.266667pt;}
.xc{left:256.318800pt;}
.x9{left:277.442533pt;}
.xf{left:282.165200pt;}
.x10{left:301.062800pt;}
.x3{left:401.192933pt;}
.x2{left:473.588800pt;}
}




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