
    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_0471cdc0ac9d92ba77edd8f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_0aed56a5e507972d774b70d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_a4ad55a214a51b53539126a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_b9e7c309151b8b710d746eba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_e5ca305d2f49eef129fb47fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686854;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_f6ce432e5ac401c013a447b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-4.464000px;}
.ls9{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.180000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.475200px;}
.ls2{letter-spacing:1.710000px;}
.ls0{letter-spacing:1.800000px;}
.ls8{letter-spacing:4.620000px;}
.ls6{letter-spacing:5.935800px;}
.ls5{letter-spacing:5.936400px;}
.lsa{letter-spacing:5.952000px;}
.lsb{letter-spacing:6.162000px;}
.lsd{letter-spacing:6.180000px;}
.lsf{letter-spacing:7.318800px;}
.lse{letter-spacing:11.253000px;}
.ls3{letter-spacing:14.100000px;}
.ls4{letter-spacing:20.400000px;}
.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:-91.800000px;}
.ws6{word-spacing:-35.400000px;}
.ws18{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.000000px;}
.ws1f{word-spacing:-6.180000px;}
.ws17{word-spacing:-5.952000px;}
.wsc{word-spacing:-4.620000px;}
.ws15{word-spacing:-3.960000px;}
.ws0{word-spacing:-1.890000px;}
.ws9{word-spacing:-0.475200px;}
.ws13{word-spacing:-0.240000px;}
.ws1d{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.060000px;}
.ws4{word-spacing:-0.054000px;}
.ws2{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws1e{word-spacing:0.180000px;}
.ws26{word-spacing:0.192000px;}
.ws14{word-spacing:0.240000px;}
.ws12{word-spacing:0.420000px;}
.ws22{word-spacing:2.040000px;}
.ws1b{word-spacing:3.180000px;}
.wsa{word-spacing:4.440000px;}
.ws25{word-spacing:4.464000px;}
.ws23{word-spacing:4.608000px;}
.wsb{word-spacing:4.620000px;}
.ws20{word-spacing:5.220000px;}
.ws21{word-spacing:5.280000px;}
.wsd{word-spacing:5.640000px;}
.ws16{word-spacing:5.952000px;}
.ws11{word-spacing:6.000000px;}
.wsf{word-spacing:6.060000px;}
.wse{word-spacing:6.120000px;}
.ws1c{word-spacing:7.980000px;}
.ws24{word-spacing:9.168000px;}
.ws10{word-spacing:9.180000px;}
.ws1a{word-spacing:10.740000px;}
.ws27{word-spacing:21.165000px;}
._e{margin-left:-15.222600px;}
._13{margin-left:-11.691600px;}
._f{margin-left:-8.210400px;}
._0{margin-left:-6.544800px;}
._14{margin-left:-5.455200px;}
._8{margin-left:-4.444800px;}
._3{margin-left:-2.777112px;}
._1{margin-left:-1.647000px;}
._2{width:1.425600px;}
._4{width:2.575200px;}
._6{width:4.446000px;}
._7{width:5.543400px;}
._9{width:6.547800px;}
._b{width:7.976400px;}
._a{width:9.138000px;}
._c{width:10.636800px;}
._d{width:12.153912px;}
._5{width:13.315200px;}
._10{width:14.486400px;}
._11{width:17.390400px;}
._12{width:19.166400px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:47.520000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:59.802900px;}
.y6a{bottom:103.158300px;}
.y23{bottom:103.169850px;}
.y3d{bottom:105.299550px;}
.y22{bottom:121.169850px;}
.y69{bottom:122.958300px;}
.y4e{bottom:135.572550px;}
.y21{bottom:139.169850px;}
.y4d{bottom:154.022550px;}
.y20{bottom:157.169850px;}
.y1f{bottom:175.169850px;}
.y3f{bottom:183.098850px;}
.y4c{bottom:185.228400px;}
.y3e{bottom:201.098850px;}
.y1e{bottom:205.925850px;}
.y4b{bottom:216.434400px;}
.y4a{bottom:234.884400px;}
.y1d{bottom:236.681700px;}
.y49{bottom:253.334400px;}
.y1c{bottom:254.681700px;}
.y48{bottom:271.784400px;}
.y1b{bottom:272.681700px;}
.y47{bottom:290.234400px;}
.y1a{bottom:290.681700px;}
.y19{bottom:308.681700px;}
.y46{bottom:308.684400px;}
.y18{bottom:326.681700px;}
.y45{bottom:327.134400px;}
.y17{bottom:344.681700px;}
.y44{bottom:345.584400px;}
.y16{bottom:362.681700px;}
.y43{bottom:364.034400px;}
.y15{bottom:380.681700px;}
.y42{bottom:382.484400px;}
.y14{bottom:398.681700px;}
.y41{bottom:400.934400px;}
.y13{bottom:416.681700px;}
.y40{bottom:432.140250px;}
.y12{bottom:434.681700px;}
.y11{bottom:452.681700px;}
.y10{bottom:470.681700px;}
.y4f{bottom:485.980950px;}
.yf{bottom:488.681700px;}
.ye{bottom:506.681700px;}
.yd{bottom:537.437550px;}
.y3c{bottom:559.788600px;}
.yc{bottom:572.445450px;}
.y3b{bottom:577.788600px;}
.y3a{bottom:595.788600px;}
.y68{bottom:603.154350px;}
.yb{bottom:605.445450px;}
.y39{bottom:613.788600px;}
.y67{bottom:617.554350px;}
.ya{bottom:624.945450px;}
.y38{bottom:631.788600px;}
.y66{bottom:631.954350px;}
.y9{bottom:644.445450px;}
.y65{bottom:646.354350px;}
.y37{bottom:649.788600px;}
.y64{bottom:660.754350px;}
.y8{bottom:663.945450px;}
.y36{bottom:667.788600px;}
.y63{bottom:675.154350px;}
.y35{bottom:685.788600px;}
.y62{bottom:689.554350px;}
.y34{bottom:703.788600px;}
.y61{bottom:703.954350px;}
.y60{bottom:718.354350px;}
.y33{bottom:721.788600px;}
.y7{bottom:730.217100px;}
.y5f{bottom:732.754350px;}
.y32{bottom:739.788600px;}
.y5e{bottom:747.154350px;}
.y6{bottom:750.225000px;}
.y31{bottom:757.788600px;}
.y5d{bottom:761.554350px;}
.y5c{bottom:775.954350px;}
.y30{bottom:780.040500px;}
.y5{bottom:785.743950px;}
.y5b{bottom:790.354350px;}
.y2f{bottom:798.040500px;}
.y4{bottom:803.495850px;}
.y5a{bottom:804.754350px;}
.y59{bottom:819.154350px;}
.y2e{bottom:820.292550px;}
.y3{bottom:830.495850px;}
.y58{bottom:833.554350px;}
.y2d{bottom:838.292550px;}
.y57{bottom:847.954350px;}
.y56{bottom:862.354350px;}
.y2c{bottom:864.796350px;}
.y55{bottom:876.754350px;}
.y2{bottom:881.495850px;}
.y54{bottom:891.154500px;}
.y2b{bottom:891.300450px;}
.y53{bottom:905.554350px;}
.y2a{bottom:909.300450px;}
.y52{bottom:919.954500px;}
.y26{bottom:920.042100px;}
.y29{bottom:927.300450px;}
.y51{bottom:934.354500px;}
.y25{bottom:942.542100px;}
.y28{bottom:945.300450px;}
.y50{bottom:961.510350px;}
.y27{bottom:963.300450px;}
.y24{bottom:963.542100px;}
.h5{height:33.328125px;}
.hc{height:35.411133px;}
.h6{height:37.589062px;}
.hb{height:37.968750px;}
.ha{height:40.664062px;}
.h7{height:42.714844px;}
.h9{height:47.460938px;}
.h8{height:48.796875px;}
.h2{height:49.992188px;}
.h3{height:56.953125px;}
.h4{height:60.996094px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xc{left:68.031450px;}
.x10{left:93.543300px;}
.x2{left:102.047250px;}
.x3{left:120.729450px;}
.x9{left:127.558950px;}
.xe{left:140.314950px;}
.x6{left:153.310050px;}
.x4{left:157.608300px;}
.x7{left:232.723050px;}
.x11{left:238.395750px;}
.xa{left:260.576850px;}
.x5{left:279.038550px;}
.xf{left:289.389900px;}
.xb{left:299.357100px;}
.xd{left:304.217100px;}
.x8{left:306.416250px;}
.x12{left:317.912550px;}
.x1{left:645.803100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-3.968000pt;}
.ls9{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.422400pt;}
.ls2{letter-spacing:1.520000pt;}
.ls0{letter-spacing:1.600000pt;}
.ls8{letter-spacing:4.106667pt;}
.ls6{letter-spacing:5.276267pt;}
.ls5{letter-spacing:5.276800pt;}
.lsa{letter-spacing:5.290667pt;}
.lsb{letter-spacing:5.477333pt;}
.lsd{letter-spacing:5.493333pt;}
.lsf{letter-spacing:6.505600pt;}
.lse{letter-spacing:10.002667pt;}
.ls3{letter-spacing:12.533333pt;}
.ls4{letter-spacing:18.133333pt;}
.ws1{word-spacing:-81.600000pt;}
.ws6{word-spacing:-31.466667pt;}
.ws18{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws1f{word-spacing:-5.493333pt;}
.ws17{word-spacing:-5.290667pt;}
.wsc{word-spacing:-4.106667pt;}
.ws15{word-spacing:-3.520000pt;}
.ws0{word-spacing:-1.680000pt;}
.ws9{word-spacing:-0.422400pt;}
.ws13{word-spacing:-0.213333pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.053333pt;}
.ws4{word-spacing:-0.048000pt;}
.ws2{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.160000pt;}
.ws26{word-spacing:0.170667pt;}
.ws14{word-spacing:0.213333pt;}
.ws12{word-spacing:0.373333pt;}
.ws22{word-spacing:1.813333pt;}
.ws1b{word-spacing:2.826667pt;}
.wsa{word-spacing:3.946667pt;}
.ws25{word-spacing:3.968000pt;}
.ws23{word-spacing:4.096000pt;}
.wsb{word-spacing:4.106667pt;}
.ws20{word-spacing:4.640000pt;}
.ws21{word-spacing:4.693333pt;}
.wsd{word-spacing:5.013333pt;}
.ws16{word-spacing:5.290667pt;}
.ws11{word-spacing:5.333333pt;}
.wsf{word-spacing:5.386667pt;}
.wse{word-spacing:5.440000pt;}
.ws1c{word-spacing:7.093333pt;}
.ws24{word-spacing:8.149333pt;}
.ws10{word-spacing:8.160000pt;}
.ws1a{word-spacing:9.546667pt;}
.ws27{word-spacing:18.813333pt;}
._e{margin-left:-13.531200pt;}
._13{margin-left:-10.392533pt;}
._f{margin-left:-7.298133pt;}
._0{margin-left:-5.817600pt;}
._14{margin-left:-4.849067pt;}
._8{margin-left:-3.950933pt;}
._3{margin-left:-2.468544pt;}
._1{margin-left:-1.464000pt;}
._2{width:1.267200pt;}
._4{width:2.289067pt;}
._6{width:3.952000pt;}
._7{width:4.927467pt;}
._9{width:5.820267pt;}
._b{width:7.090133pt;}
._a{width:8.122667pt;}
._c{width:9.454933pt;}
._d{width:10.803477pt;}
._5{width:11.835733pt;}
._10{width:12.876800pt;}
._11{width:15.458133pt;}
._12{width:17.036800pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:53.158133pt;}
.y6a{bottom:91.696267pt;}
.y23{bottom:91.706533pt;}
.y3d{bottom:93.599600pt;}
.y22{bottom:107.706533pt;}
.y69{bottom:109.296267pt;}
.y4e{bottom:120.508933pt;}
.y21{bottom:123.706533pt;}
.y4d{bottom:136.908933pt;}
.y20{bottom:139.706533pt;}
.y1f{bottom:155.706533pt;}
.y3f{bottom:162.754533pt;}
.y4c{bottom:164.647467pt;}
.y3e{bottom:178.754533pt;}
.y1e{bottom:183.045200pt;}
.y4b{bottom:192.386133pt;}
.y4a{bottom:208.786133pt;}
.y1d{bottom:210.383733pt;}
.y49{bottom:225.186133pt;}
.y1c{bottom:226.383733pt;}
.y48{bottom:241.586133pt;}
.y1b{bottom:242.383733pt;}
.y47{bottom:257.986133pt;}
.y1a{bottom:258.383733pt;}
.y19{bottom:274.383733pt;}
.y46{bottom:274.386133pt;}
.y18{bottom:290.383733pt;}
.y45{bottom:290.786133pt;}
.y17{bottom:306.383733pt;}
.y44{bottom:307.186133pt;}
.y16{bottom:322.383733pt;}
.y43{bottom:323.586133pt;}
.y15{bottom:338.383733pt;}
.y42{bottom:339.986133pt;}
.y14{bottom:354.383733pt;}
.y41{bottom:356.386133pt;}
.y13{bottom:370.383733pt;}
.y40{bottom:384.124667pt;}
.y12{bottom:386.383733pt;}
.y11{bottom:402.383733pt;}
.y10{bottom:418.383733pt;}
.y4f{bottom:431.983067pt;}
.yf{bottom:434.383733pt;}
.ye{bottom:450.383733pt;}
.yd{bottom:477.722267pt;}
.y3c{bottom:497.589867pt;}
.yc{bottom:508.840400pt;}
.y3b{bottom:513.589867pt;}
.y3a{bottom:529.589867pt;}
.y68{bottom:536.137200pt;}
.yb{bottom:538.173733pt;}
.y39{bottom:545.589867pt;}
.y67{bottom:548.937200pt;}
.ya{bottom:555.507067pt;}
.y38{bottom:561.589867pt;}
.y66{bottom:561.737200pt;}
.y9{bottom:572.840400pt;}
.y65{bottom:574.537200pt;}
.y37{bottom:577.589867pt;}
.y64{bottom:587.337200pt;}
.y8{bottom:590.173733pt;}
.y36{bottom:593.589867pt;}
.y63{bottom:600.137200pt;}
.y35{bottom:609.589867pt;}
.y62{bottom:612.937200pt;}
.y34{bottom:625.589867pt;}
.y61{bottom:625.737200pt;}
.y60{bottom:638.537200pt;}
.y33{bottom:641.589867pt;}
.y7{bottom:649.081867pt;}
.y5f{bottom:651.337200pt;}
.y32{bottom:657.589867pt;}
.y5e{bottom:664.137200pt;}
.y6{bottom:666.866667pt;}
.y31{bottom:673.589867pt;}
.y5d{bottom:676.937200pt;}
.y5c{bottom:689.737200pt;}
.y30{bottom:693.369333pt;}
.y5{bottom:698.439067pt;}
.y5b{bottom:702.537200pt;}
.y2f{bottom:709.369333pt;}
.y4{bottom:714.218533pt;}
.y5a{bottom:715.337200pt;}
.y59{bottom:728.137200pt;}
.y2e{bottom:729.148933pt;}
.y3{bottom:738.218533pt;}
.y58{bottom:740.937200pt;}
.y2d{bottom:745.148933pt;}
.y57{bottom:753.737200pt;}
.y56{bottom:766.537200pt;}
.y2c{bottom:768.707867pt;}
.y55{bottom:779.337200pt;}
.y2{bottom:783.551867pt;}
.y54{bottom:792.137333pt;}
.y2b{bottom:792.267067pt;}
.y53{bottom:804.937200pt;}
.y2a{bottom:808.267067pt;}
.y52{bottom:817.737333pt;}
.y26{bottom:817.815200pt;}
.y29{bottom:824.267067pt;}
.y51{bottom:830.537333pt;}
.y25{bottom:837.815200pt;}
.y28{bottom:840.267067pt;}
.y50{bottom:854.675867pt;}
.y27{bottom:856.267067pt;}
.y24{bottom:856.481867pt;}
.h5{height:29.625000pt;}
.hc{height:31.476562pt;}
.h6{height:33.412500pt;}
.hb{height:33.750000pt;}
.ha{height:36.145833pt;}
.h7{height:37.968750pt;}
.h9{height:42.187500pt;}
.h8{height:43.375000pt;}
.h2{height:44.437500pt;}
.h3{height:50.625000pt;}
.h4{height:54.218750pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xc{left:60.472400pt;}
.x10{left:83.149600pt;}
.x2{left:90.708667pt;}
.x3{left:107.315067pt;}
.x9{left:113.385733pt;}
.xe{left:124.724400pt;}
.x6{left:136.275600pt;}
.x4{left:140.096267pt;}
.x7{left:206.864933pt;}
.x11{left:211.907333pt;}
.xa{left:231.623867pt;}
.x5{left:248.034267pt;}
.xf{left:257.235467pt;}
.xb{left:266.095200pt;}
.xd{left:270.415200pt;}
.x8{left:272.370000pt;}
.x12{left:282.588933pt;}
.x1{left:574.047200pt;}
}




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