
    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_bc080f6181810dedb9999519.woff')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_40d0ffca2aaacdcb8000ce05.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_114f9d6231da3fcb91334ab7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_e01d9850b97aeef6dfbe52bb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_81014490a04b6664827a3798.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_29aca367249956060eb964a4.woff')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_40d0ffca2aaacdcb8000ce05.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_54ee236e1387dafd20c26439.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f3f8073a27f3c2879e577605.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_40d0ffca2aaacdcb8000ce05.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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);}
.v1{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.680000px;}
.ls1{letter-spacing:-0.420000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.618000px;}
.ls5{letter-spacing:1.200000px;}
.ls4{letter-spacing:1.980000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.068000px;}
.ws34{word-spacing:-5.747400px;}
.ws20{word-spacing:-4.017000px;}
.ws2d{word-spacing:-3.708000px;}
.ws3c{word-spacing:-2.472000px;}
.ws1c{word-spacing:-2.163000px;}
.ws5{word-spacing:-1.545000px;}
.ws1d{word-spacing:-1.359600px;}
.ws2{word-spacing:-1.296000px;}
.ws36{word-spacing:-1.200000px;}
.ws1f{word-spacing:-1.050600px;}
.ws30{word-spacing:-0.803400px;}
.ws11{word-spacing:-0.618000px;}
.ws3a{word-spacing:-0.185400px;}
.ws35{word-spacing:-0.123600px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.247200px;}
.wsc{word-spacing:0.494400px;}
.ws22{word-spacing:0.556200px;}
.ws2a{word-spacing:0.741600px;}
.ws1a{word-spacing:0.927000px;}
.ws14{word-spacing:0.988800px;}
.ws17{word-spacing:1.050600px;}
.ws2e{word-spacing:1.236000px;}
.ws28{word-spacing:1.483200px;}
.ws38{word-spacing:1.854000px;}
.ws2c{word-spacing:2.039400px;}
.ws31{word-spacing:2.101200px;}
.ws8{word-spacing:2.410200px;}
.ws3b{word-spacing:2.657400px;}
.ws29{word-spacing:2.966400px;}
.ws2b{word-spacing:3.151800px;}
.ws13{word-spacing:3.213600px;}
.ws32{word-spacing:3.708000px;}
.ws1e{word-spacing:3.893400px;}
.ws19{word-spacing:4.078800px;}
.ws39{word-spacing:4.696800px;}
.ws25{word-spacing:5.314800px;}
.ws33{word-spacing:5.438400px;}
.ws2f{word-spacing:5.562000px;}
.ws12{word-spacing:5.685600px;}
.ws7{word-spacing:5.809200px;}
.ws10{word-spacing:6.241800px;}
.ws23{word-spacing:6.798000px;}
.ws4{word-spacing:6.859800px;}
.ws1b{word-spacing:7.292400px;}
.ws16{word-spacing:7.416000px;}
.wsb{word-spacing:8.590200px;}
.ws24{word-spacing:8.713800px;}
.ws21{word-spacing:8.899200px;}
.ws9{word-spacing:9.270000px;}
.ws6{word-spacing:9.331800px;}
.ws27{word-spacing:9.517200px;}
.ws37{word-spacing:12.051000px;}
.ws26{word-spacing:12.483600px;}
.ws3{word-spacing:13.101600px;}
.wse{word-spacing:13.410600px;}
.wsa{word-spacing:14.893800px;}
.wsd{word-spacing:16.438800px;}
.ws18{word-spacing:19.528800px;}
.ws15{word-spacing:608.950800px;}
._2{margin-left:-7.970400px;}
._9{margin-left:-5.203560px;}
._3{margin-left:-3.996000px;}
._0{margin-left:-1.549800px;}
._1{width:1.288800px;}
._5{width:3.092820px;}
._8{width:4.963860px;}
._6{width:6.265200px;}
._7{width:8.052540px;}
._4{width:9.313260px;}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:42.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:61.800000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y1f{bottom:89.449800px;}
.y49{bottom:92.621100px;}
.y1e{bottom:107.989950px;}
.y48{bottom:111.161100px;}
.y1d{bottom:126.529950px;}
.y47{bottom:129.701100px;}
.y1c{bottom:145.069950px;}
.y46{bottom:148.241100px;}
.y1b{bottom:163.609950px;}
.y45{bottom:166.781100px;}
.y1a{bottom:182.149950px;}
.y44{bottom:185.321100px;}
.y19{bottom:200.689950px;}
.y43{bottom:203.861100px;}
.y18{bottom:219.229950px;}
.y42{bottom:222.401100px;}
.y17{bottom:237.769800px;}
.y41{bottom:240.941100px;}
.y16{bottom:256.309950px;}
.y40{bottom:259.481100px;}
.y15{bottom:274.849800px;}
.y3f{bottom:278.021100px;}
.y14{bottom:293.389950px;}
.y3e{bottom:296.561100px;}
.y13{bottom:311.929800px;}
.y3d{bottom:315.101100px;}
.y12{bottom:330.469950px;}
.y3c{bottom:333.641100px;}
.y11{bottom:349.009800px;}
.y3b{bottom:352.181100px;}
.y10{bottom:367.549950px;}
.y3a{bottom:370.721100px;}
.yf{bottom:386.089800px;}
.y39{bottom:389.261100px;}
.ye{bottom:404.629950px;}
.y38{bottom:407.801100px;}
.yd{bottom:423.169950px;}
.y37{bottom:426.341100px;}
.yc{bottom:441.709950px;}
.y36{bottom:444.881100px;}
.y35{bottom:463.421100px;}
.y34{bottom:481.961100px;}
.yb{bottom:496.849950px;}
.y33{bottom:500.501100px;}
.y32{bottom:519.041100px;}
.ya{bottom:533.449800px;}
.y31{bottom:537.581100px;}
.y30{bottom:556.121100px;}
.y9{bottom:570.049950px;}
.y2f{bottom:574.661100px;}
.y2e{bottom:593.201100px;}
.y2d{bottom:611.741100px;}
.y8{bottom:613.249950px;}
.y2c{bottom:630.281100px;}
.y7{bottom:631.789800px;}
.y2b{bottom:648.821100px;}
.y55{bottom:648.836100px;}
.y2a{bottom:667.361100px;}
.y54{bottom:667.376100px;}
.y29{bottom:685.901100px;}
.y53{bottom:685.916100px;}
.y6{bottom:686.929800px;}
.y28{bottom:704.441100px;}
.y52{bottom:704.456100px;}
.y27{bottom:722.981100px;}
.y51{bottom:722.996100px;}
.y5{bottom:727.129950px;}
.y26{bottom:741.521100px;}
.y50{bottom:741.536100px;}
.y25{bottom:760.061100px;}
.y4f{bottom:760.076100px;}
.y4{bottom:767.329950px;}
.y24{bottom:778.601100px;}
.y4e{bottom:778.616100px;}
.y23{bottom:797.141100px;}
.y4d{bottom:797.156100px;}
.y22{bottom:815.681100px;}
.y4c{bottom:815.696100px;}
.y21{bottom:834.220950px;}
.y4b{bottom:834.236100px;}
.y3{bottom:847.729950px;}
.y4a{bottom:904.720650px;}
.y20{bottom:906.525150px;}
.h2{height:29.182617px;}
.h9{height:37.520508px;}
.ha{height:41.660156px;}
.h6{height:42.909961px;}
.h7{height:42.940137px;}
.h8{height:50.027344px;}
.h5{height:58.324219px;}
.h4{height:58.365234px;}
.h3{height:75.041016px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.xb{left:55.062900px;}
.xc{left:56.976450px;}
.x9{left:76.662900px;}
.x1{left:78.236250px;}
.xe{left:85.062900px;}
.xa{left:106.662900px;}
.xd{left:153.817200px;}
.x2{left:175.077150px;}
.x5{left:180.845100px;}
.x7{left:208.702950px;}
.x4{left:225.188100px;}
.x6{left:261.620250px;}
.x3{left:267.328650px;}
.x10{left:283.902000px;}
.x8{left:494.535150px;}
.xf{left:547.985550px;}
@media print{
.v1{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.493333pt;}
.ls1{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.549333pt;}
.ls5{letter-spacing:1.066667pt;}
.ls4{letter-spacing:1.760000pt;}
.ws0{word-spacing:-14.282667pt;}
.ws34{word-spacing:-5.108800pt;}
.ws20{word-spacing:-3.570667pt;}
.ws2d{word-spacing:-3.296000pt;}
.ws3c{word-spacing:-2.197333pt;}
.ws1c{word-spacing:-1.922667pt;}
.ws5{word-spacing:-1.373333pt;}
.ws1d{word-spacing:-1.208533pt;}
.ws2{word-spacing:-1.152000pt;}
.ws36{word-spacing:-1.066667pt;}
.ws1f{word-spacing:-0.933867pt;}
.ws30{word-spacing:-0.714133pt;}
.ws11{word-spacing:-0.549333pt;}
.ws3a{word-spacing:-0.164800pt;}
.ws35{word-spacing:-0.109867pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.219733pt;}
.wsc{word-spacing:0.439467pt;}
.ws22{word-spacing:0.494400pt;}
.ws2a{word-spacing:0.659200pt;}
.ws1a{word-spacing:0.824000pt;}
.ws14{word-spacing:0.878933pt;}
.ws17{word-spacing:0.933867pt;}
.ws2e{word-spacing:1.098667pt;}
.ws28{word-spacing:1.318400pt;}
.ws38{word-spacing:1.648000pt;}
.ws2c{word-spacing:1.812800pt;}
.ws31{word-spacing:1.867733pt;}
.ws8{word-spacing:2.142400pt;}
.ws3b{word-spacing:2.362133pt;}
.ws29{word-spacing:2.636800pt;}
.ws2b{word-spacing:2.801600pt;}
.ws13{word-spacing:2.856533pt;}
.ws32{word-spacing:3.296000pt;}
.ws1e{word-spacing:3.460800pt;}
.ws19{word-spacing:3.625600pt;}
.ws39{word-spacing:4.174933pt;}
.ws25{word-spacing:4.724267pt;}
.ws33{word-spacing:4.834133pt;}
.ws2f{word-spacing:4.944000pt;}
.ws12{word-spacing:5.053867pt;}
.ws7{word-spacing:5.163733pt;}
.ws10{word-spacing:5.548267pt;}
.ws23{word-spacing:6.042667pt;}
.ws4{word-spacing:6.097600pt;}
.ws1b{word-spacing:6.482133pt;}
.ws16{word-spacing:6.592000pt;}
.wsb{word-spacing:7.635733pt;}
.ws24{word-spacing:7.745600pt;}
.ws21{word-spacing:7.910400pt;}
.ws9{word-spacing:8.240000pt;}
.ws6{word-spacing:8.294933pt;}
.ws27{word-spacing:8.459733pt;}
.ws37{word-spacing:10.712000pt;}
.ws26{word-spacing:11.096533pt;}
.ws3{word-spacing:11.645867pt;}
.wse{word-spacing:11.920533pt;}
.wsa{word-spacing:13.238933pt;}
.wsd{word-spacing:14.612267pt;}
.ws18{word-spacing:17.358933pt;}
.ws15{word-spacing:541.289600pt;}
._2{margin-left:-7.084800pt;}
._9{margin-left:-4.625387pt;}
._3{margin-left:-3.552000pt;}
._0{margin-left:-1.377600pt;}
._1{width:1.145600pt;}
._5{width:2.749173pt;}
._8{width:4.412320pt;}
._6{width:5.569067pt;}
._7{width:7.157813pt;}
._4{width:8.278453pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:54.933333pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y1f{bottom:79.510933pt;}
.y49{bottom:82.329867pt;}
.y1e{bottom:95.991067pt;}
.y48{bottom:98.809867pt;}
.y1d{bottom:112.471067pt;}
.y47{bottom:115.289867pt;}
.y1c{bottom:128.951067pt;}
.y46{bottom:131.769867pt;}
.y1b{bottom:145.431067pt;}
.y45{bottom:148.249867pt;}
.y1a{bottom:161.911067pt;}
.y44{bottom:164.729867pt;}
.y19{bottom:178.391067pt;}
.y43{bottom:181.209867pt;}
.y18{bottom:194.871067pt;}
.y42{bottom:197.689867pt;}
.y17{bottom:211.350933pt;}
.y41{bottom:214.169867pt;}
.y16{bottom:227.831067pt;}
.y40{bottom:230.649867pt;}
.y15{bottom:244.310933pt;}
.y3f{bottom:247.129867pt;}
.y14{bottom:260.791067pt;}
.y3e{bottom:263.609867pt;}
.y13{bottom:277.270933pt;}
.y3d{bottom:280.089867pt;}
.y12{bottom:293.751067pt;}
.y3c{bottom:296.569867pt;}
.y11{bottom:310.230933pt;}
.y3b{bottom:313.049867pt;}
.y10{bottom:326.711067pt;}
.y3a{bottom:329.529867pt;}
.yf{bottom:343.190933pt;}
.y39{bottom:346.009867pt;}
.ye{bottom:359.671067pt;}
.y38{bottom:362.489867pt;}
.yd{bottom:376.151067pt;}
.y37{bottom:378.969867pt;}
.yc{bottom:392.631067pt;}
.y36{bottom:395.449867pt;}
.y35{bottom:411.929867pt;}
.y34{bottom:428.409867pt;}
.yb{bottom:441.644400pt;}
.y33{bottom:444.889867pt;}
.y32{bottom:461.369867pt;}
.ya{bottom:474.177600pt;}
.y31{bottom:477.849867pt;}
.y30{bottom:494.329867pt;}
.y9{bottom:506.711067pt;}
.y2f{bottom:510.809867pt;}
.y2e{bottom:527.289867pt;}
.y2d{bottom:543.769867pt;}
.y8{bottom:545.111067pt;}
.y2c{bottom:560.249867pt;}
.y7{bottom:561.590933pt;}
.y2b{bottom:576.729867pt;}
.y55{bottom:576.743200pt;}
.y2a{bottom:593.209867pt;}
.y54{bottom:593.223200pt;}
.y29{bottom:609.689867pt;}
.y53{bottom:609.703200pt;}
.y6{bottom:610.604267pt;}
.y28{bottom:626.169867pt;}
.y52{bottom:626.183200pt;}
.y27{bottom:642.649867pt;}
.y51{bottom:642.663200pt;}
.y5{bottom:646.337733pt;}
.y26{bottom:659.129867pt;}
.y50{bottom:659.143200pt;}
.y25{bottom:675.609867pt;}
.y4f{bottom:675.623200pt;}
.y4{bottom:682.071067pt;}
.y24{bottom:692.089867pt;}
.y4e{bottom:692.103200pt;}
.y23{bottom:708.569867pt;}
.y4d{bottom:708.583200pt;}
.y22{bottom:725.049867pt;}
.y4c{bottom:725.063200pt;}
.y21{bottom:741.529733pt;}
.y4b{bottom:741.543200pt;}
.y3{bottom:753.537733pt;}
.y4a{bottom:804.196133pt;}
.y20{bottom:805.800133pt;}
.h2{height:25.940104pt;}
.h9{height:33.351562pt;}
.ha{height:37.031250pt;}
.h6{height:38.142187pt;}
.h7{height:38.169010pt;}
.h8{height:44.468750pt;}
.h5{height:51.843750pt;}
.h4{height:51.880208pt;}
.h3{height:66.703125pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.xb{left:48.944800pt;}
.xc{left:50.645733pt;}
.x9{left:68.144800pt;}
.x1{left:69.543333pt;}
.xe{left:75.611467pt;}
.xa{left:94.811467pt;}
.xd{left:136.726400pt;}
.x2{left:155.624133pt;}
.x5{left:160.751200pt;}
.x7{left:185.513733pt;}
.x4{left:200.167200pt;}
.x6{left:232.551333pt;}
.x3{left:237.625467pt;}
.x10{left:252.357333pt;}
.x8{left:439.586800pt;}
.xf{left:487.098267pt;}
}




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