
    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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_696dc12253445429805508d0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.046000;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_2ad48ee9c449036c1250e163.woff')format("woff");}.ff4{font-family:ff4;line-height:1.004000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_6e2187e120b914e7be779d62.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093413;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_6c53e49ea2845c16d31b853a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_a8979e7afc74f35cb8c2d861.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls21{letter-spacing:-2.322000px;}
.ls10{letter-spacing:-2.256000px;}
.ls2e{letter-spacing:-1.890000px;}
.ls1d{letter-spacing:-1.404000px;}
.ls26{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.768000px;}
.ls14{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.390000px;}
.ls22{letter-spacing:-0.324000px;}
.ls1c{letter-spacing:-0.314820px;}
.ls16{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.162000px;}
.ls2a{letter-spacing:-0.108000px;}
.ls30{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.081000px;}
.lsb{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.232800px;}
.ls1{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.297000px;}
.ls2{letter-spacing:0.315000px;}
.ls3{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.378000px;}
.lsa{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.459000px;}
.ls1a{letter-spacing:0.486000px;}
.lse{letter-spacing:0.513000px;}
.ls12{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.594000px;}
.ls25{letter-spacing:0.648000px;}
.ls2c{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.756000px;}
.ls28{letter-spacing:0.810000px;}
.ls1f{letter-spacing:0.911400px;}
.ls2f{letter-spacing:1.026000px;}
.ls20{letter-spacing:1.030200px;}
.ls1e{letter-spacing:1.134000px;}
.ls2d{letter-spacing:1.188000px;}
.ls2b{letter-spacing:1.215000px;}
.ls18{letter-spacing:2.357400px;}
.ls17{letter-spacing:2.358000px;}
.ls27{letter-spacing:4.618800px;}
.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;}
}
.ws15{word-spacing:-14.040000px;}
.ws14{word-spacing:-13.878000px;}
.ws18{word-spacing:-13.338000px;}
.ws0{word-spacing:-9.828000px;}
.ws1b{word-spacing:-8.090874px;}
.ws17{word-spacing:-7.776054px;}
.ws23{word-spacing:-1.242000px;}
.ws26{word-spacing:-1.188000px;}
.ws1a{word-spacing:-1.134000px;}
.ws27{word-spacing:-1.026000px;}
.ws21{word-spacing:-0.810000px;}
.ws8{word-spacing:-0.756000px;}
.ws24{word-spacing:-0.702000px;}
.ws1f{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.594000px;}
.wsd{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.486000px;}
.ws9{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.378000px;}
.ws5{word-spacing:-0.324000px;}
.ws4{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.162000px;}
.wsa{word-spacing:-0.108000px;}
.ws3{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.054000px;}
.ws22{word-spacing:0.108000px;}
.wsc{word-spacing:0.162000px;}
.wsf{word-spacing:0.216000px;}
.ws13{word-spacing:0.270000px;}
.ws1d{word-spacing:0.324000px;}
.wsb{word-spacing:0.540000px;}
.ws10{word-spacing:0.720000px;}
.ws1{word-spacing:0.768000px;}
.ws1e{word-spacing:0.972000px;}
.ws20{word-spacing:1.080000px;}
.ws19{word-spacing:1.404000px;}
.ws25{word-spacing:1.890000px;}
.wse{word-spacing:2.256000px;}
.ws1c{word-spacing:2.322000px;}
._8{margin-left:-13.895400px;}
._b{margin-left:-4.492800px;}
._5{margin-left:-3.459600px;}
._0{margin-left:-2.418000px;}
._1{margin-left:-1.170000px;}
._2{width:1.162200px;}
._4{width:2.661000px;}
._3{width:4.600800px;}
._6{width:5.734800px;}
._9{width:6.847200px;}
._c{width:8.002800px;}
._f{width:9.099000px;}
._e{width:10.706400px;}
._d{width:11.838600px;}
._a{width:16.783200px;}
._7{width:22.615200px;}
.fc2{color:rgb(0,173,239);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.482000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.610500px;}
.y1c{bottom:76.110300px;}
.y1b{bottom:94.110300px;}
.y33{bottom:112.110300px;}
.y1a{bottom:130.110300px;}
.y32{bottom:148.110300px;}
.y19{bottom:166.110300px;}
.y31{bottom:184.110300px;}
.y30{bottom:202.110300px;}
.y18{bottom:220.110300px;}
.y17{bottom:238.110300px;}
.y2f{bottom:256.110300px;}
.y16{bottom:274.110300px;}
.y2e{bottom:292.110300px;}
.y15{bottom:310.110300px;}
.y14{bottom:328.110300px;}
.y13{bottom:346.110300px;}
.y23{bottom:348.716850px;}
.y3{bottom:348.895350px;}
.y12{bottom:364.110300px;}
.y11{bottom:382.110300px;}
.y10{bottom:400.110300px;}
.yf{bottom:418.110300px;}
.ye{bottom:436.110300px;}
.yd{bottom:454.110300px;}
.yc{bottom:472.110300px;}
.yb{bottom:490.110300px;}
.ya{bottom:508.110300px;}
.y9{bottom:526.110300px;}
.y8{bottom:544.110300px;}
.y2d{bottom:562.110300px;}
.y7{bottom:580.110300px;}
.y2c{bottom:598.110300px;}
.y2b{bottom:616.110300px;}
.y6{bottom:629.689950px;}
.y2a{bottom:634.110300px;}
.y5{bottom:647.689950px;}
.y29{bottom:652.110300px;}
.y4{bottom:665.689950px;}
.y28{bottom:670.110300px;}
.y27{bottom:688.110300px;}
.y2{bottom:704.520150px;}
.y26{bottom:706.110300px;}
.y25{bottom:724.110300px;}
.y20{bottom:742.110300px;}
.y1f{bottom:755.610300px;}
.y24{bottom:760.110300px;}
.y1e{bottom:769.110300px;}
.y34{bottom:788.056950px;}
.y22{bottom:788.327700px;}
.y1d{bottom:796.110300px;}
.y21{bottom:800.327700px;}
.h7{height:33.978000px;}
.h2{height:38.304000px;}
.h4{height:43.092000px;}
.h6{height:43.686000px;}
.h5{height:44.334000px;}
.h9{height:47.446722px;}
.h8{height:48.060000px;}
.h3{height:62.244000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x3{left:36.097500px;}
.x5{left:63.779550px;}
.x10{left:70.880250px;}
.xf{left:78.023550px;}
.x6{left:85.039350px;}
.xb{left:92.661900px;}
.x2{left:99.432600px;}
.x4{left:106.299150px;}
.xa{left:146.936850px;}
.xd{left:163.652250px;}
.x9{left:257.679450px;}
.x8{left:271.246350px;}
.xe{left:299.963850px;}
.x1{left:302.825700px;}
.x7{left:382.299000px;}
.xc{left:592.254900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls21{letter-spacing:-2.064000pt;}
.ls10{letter-spacing:-2.005333pt;}
.ls2e{letter-spacing:-1.680000pt;}
.ls1d{letter-spacing:-1.248000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.682667pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.346667pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls1c{letter-spacing:-0.279840pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls2a{letter-spacing:-0.096000pt;}
.ls30{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.072000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.206933pt;}
.ls1{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.264000pt;}
.ls2{letter-spacing:0.280000pt;}
.ls3{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.336000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.408000pt;}
.ls1a{letter-spacing:0.432000pt;}
.lse{letter-spacing:0.456000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.528000pt;}
.ls25{letter-spacing:0.576000pt;}
.ls2c{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.672000pt;}
.ls28{letter-spacing:0.720000pt;}
.ls1f{letter-spacing:0.810133pt;}
.ls2f{letter-spacing:0.912000pt;}
.ls20{letter-spacing:0.915733pt;}
.ls1e{letter-spacing:1.008000pt;}
.ls2d{letter-spacing:1.056000pt;}
.ls2b{letter-spacing:1.080000pt;}
.ls18{letter-spacing:2.095467pt;}
.ls17{letter-spacing:2.096000pt;}
.ls27{letter-spacing:4.105600pt;}
.ws15{word-spacing:-12.480000pt;}
.ws14{word-spacing:-12.336000pt;}
.ws18{word-spacing:-11.856000pt;}
.ws0{word-spacing:-8.736000pt;}
.ws1b{word-spacing:-7.191888pt;}
.ws17{word-spacing:-6.912048pt;}
.ws23{word-spacing:-1.104000pt;}
.ws26{word-spacing:-1.056000pt;}
.ws1a{word-spacing:-1.008000pt;}
.ws27{word-spacing:-0.912000pt;}
.ws21{word-spacing:-0.720000pt;}
.ws8{word-spacing:-0.672000pt;}
.ws24{word-spacing:-0.624000pt;}
.ws1f{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.528000pt;}
.wsd{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.432000pt;}
.ws9{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.336000pt;}
.ws5{word-spacing:-0.288000pt;}
.ws4{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.144000pt;}
.wsa{word-spacing:-0.096000pt;}
.ws3{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.048000pt;}
.ws22{word-spacing:0.096000pt;}
.wsc{word-spacing:0.144000pt;}
.wsf{word-spacing:0.192000pt;}
.ws13{word-spacing:0.240000pt;}
.ws1d{word-spacing:0.288000pt;}
.wsb{word-spacing:0.480000pt;}
.ws10{word-spacing:0.640000pt;}
.ws1{word-spacing:0.682667pt;}
.ws1e{word-spacing:0.864000pt;}
.ws20{word-spacing:0.960000pt;}
.ws19{word-spacing:1.248000pt;}
.ws25{word-spacing:1.680000pt;}
.wse{word-spacing:2.005333pt;}
.ws1c{word-spacing:2.064000pt;}
._8{margin-left:-12.351467pt;}
._b{margin-left:-3.993600pt;}
._5{margin-left:-3.075200pt;}
._0{margin-left:-2.149333pt;}
._1{margin-left:-1.040000pt;}
._2{width:1.033067pt;}
._4{width:2.365333pt;}
._3{width:4.089600pt;}
._6{width:5.097600pt;}
._9{width:6.086400pt;}
._c{width:7.113600pt;}
._f{width:8.088000pt;}
._e{width:9.516800pt;}
._d{width:10.523200pt;}
._a{width:14.918400pt;}
._7{width:20.102400pt;}
.fs4{font-size:27.984000pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.542667pt;}
.y1c{bottom:67.653600pt;}
.y1b{bottom:83.653600pt;}
.y33{bottom:99.653600pt;}
.y1a{bottom:115.653600pt;}
.y32{bottom:131.653600pt;}
.y19{bottom:147.653600pt;}
.y31{bottom:163.653600pt;}
.y30{bottom:179.653600pt;}
.y18{bottom:195.653600pt;}
.y17{bottom:211.653600pt;}
.y2f{bottom:227.653600pt;}
.y16{bottom:243.653600pt;}
.y2e{bottom:259.653600pt;}
.y15{bottom:275.653600pt;}
.y14{bottom:291.653600pt;}
.y13{bottom:307.653600pt;}
.y23{bottom:309.970533pt;}
.y3{bottom:310.129200pt;}
.y12{bottom:323.653600pt;}
.y11{bottom:339.653600pt;}
.y10{bottom:355.653600pt;}
.yf{bottom:371.653600pt;}
.ye{bottom:387.653600pt;}
.yd{bottom:403.653600pt;}
.yc{bottom:419.653600pt;}
.yb{bottom:435.653600pt;}
.ya{bottom:451.653600pt;}
.y9{bottom:467.653600pt;}
.y8{bottom:483.653600pt;}
.y2d{bottom:499.653600pt;}
.y7{bottom:515.653600pt;}
.y2c{bottom:531.653600pt;}
.y2b{bottom:547.653600pt;}
.y6{bottom:559.724400pt;}
.y2a{bottom:563.653600pt;}
.y5{bottom:575.724400pt;}
.y29{bottom:579.653600pt;}
.y4{bottom:591.724400pt;}
.y28{bottom:595.653600pt;}
.y27{bottom:611.653600pt;}
.y2{bottom:626.240133pt;}
.y26{bottom:627.653600pt;}
.y25{bottom:643.653600pt;}
.y20{bottom:659.653600pt;}
.y1f{bottom:671.653600pt;}
.y24{bottom:675.653600pt;}
.y1e{bottom:683.653600pt;}
.y34{bottom:700.495067pt;}
.y22{bottom:700.735733pt;}
.y1d{bottom:707.653600pt;}
.y21{bottom:711.402400pt;}
.h7{height:30.202667pt;}
.h2{height:34.048000pt;}
.h4{height:38.304000pt;}
.h6{height:38.832000pt;}
.h5{height:39.408000pt;}
.h9{height:42.174864pt;}
.h8{height:42.720000pt;}
.h3{height:55.328000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x3{left:32.086667pt;}
.x5{left:56.692933pt;}
.x10{left:63.004667pt;}
.xf{left:69.354267pt;}
.x6{left:75.590533pt;}
.xb{left:82.366133pt;}
.x2{left:88.384533pt;}
.x4{left:94.488133pt;}
.xa{left:130.610533pt;}
.xd{left:145.468667pt;}
.x9{left:229.048400pt;}
.x8{left:241.107867pt;}
.xe{left:266.634533pt;}
.x1{left:269.178400pt;}
.x7{left:339.821333pt;}
.xc{left:526.448800pt;}
}




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