
    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_d43c559bec4b8a7c43a3d651.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5df1aa02eb242bcd338d9835.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8ce7b2f9ea31a1cbb85354f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_e0370146ba3732c8c98ac230.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_54c297548072c299369e8f1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_39f934532a6052e6dd830e41.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8a3bdb62692cf7febcc111ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bd787dbfd6cf76c0e86a67b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:19.800000px;}
.v1{vertical-align:21.600000px;}
.lsb{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.726000px;}
.ls7{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.594000px;}
.ls8{letter-spacing:-0.528000px;}
.lsf{letter-spacing:-0.508200px;}
.ls4{letter-spacing:-0.486000px;}
.ls5{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.415800px;}
.ls6{letter-spacing:-0.336000px;}
.lse{letter-spacing:-0.198000px;}
.lsa{letter-spacing:-0.132000px;}
.ls10{letter-spacing:-0.092400px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.007800px;}
.ls2{letter-spacing:1.965000px;}
.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;}
}
.ws4{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.ws1c{word-spacing:-13.932000px;}
.ws1e{word-spacing:-11.550000px;}
.ws27{word-spacing:-11.457600px;}
.ws1d{word-spacing:-11.134200px;}
.ws26{word-spacing:-11.041800px;}
.ws2{word-spacing:-10.500000px;}
.ws3{word-spacing:-10.164000px;}
.ws15{word-spacing:-3.300000px;}
.ws1f{word-spacing:-3.024000px;}
.wsb{word-spacing:-3.000000px;}
.ws29{word-spacing:-2.772000px;}
.ws14{word-spacing:-2.442000px;}
.ws2c{word-spacing:-2.244000px;}
.ws11{word-spacing:-2.112000px;}
.ws25{word-spacing:-1.998000px;}
.ws24{word-spacing:-1.848000px;}
.ws8{word-spacing:-1.740000px;}
.ws7{word-spacing:-1.728000px;}
.ws2b{word-spacing:-1.452000px;}
.ws19{word-spacing:-0.990000px;}
.ws6{word-spacing:-0.972000px;}
.ws17{word-spacing:-0.462000px;}
.ws12{word-spacing:-0.264000px;}
.ws1a{word-spacing:-0.198000px;}
.ws5{word-spacing:0.000000px;}
.ws16{word-spacing:0.132000px;}
.ws20{word-spacing:0.462000px;}
.wsa{word-spacing:0.486000px;}
.ws22{word-spacing:0.594000px;}
.ws2a{word-spacing:1.584000px;}
.wsc{word-spacing:1.944000px;}
.wsd{word-spacing:1.980000px;}
.ws10{word-spacing:2.178000px;}
.ws28{word-spacing:2.244000px;}
.wse{word-spacing:2.760000px;}
.ws21{word-spacing:2.838000px;}
.ws2d{word-spacing:6.072000px;}
.ws23{word-spacing:6.204000px;}
.wsf{word-spacing:6.270000px;}
.ws9{word-spacing:6.300000px;}
.ws18{word-spacing:6.468000px;}
.ws1b{word-spacing:7.062000px;}
.ws13{word-spacing:13.596000px;}
._3{margin-left:-9.026400px;}
._5{margin-left:-7.306200px;}
._1{margin-left:-4.914000px;}
._2{margin-left:-3.876600px;}
._0{margin-left:-2.014200px;}
._4{margin-left:-1.009800px;}
._6{width:2.017200px;}
.fc4{color:rgb(177,86,56);}
.fc3{color:rgb(171,35,33);}
.fc2{color:rgb(198,56,54);}
.fc1{color:rgb(133,138,141);}
.fc0{color:rgb(27,24,26);}
.fs5{font-size:42.000000px;}
.fs7{font-size:46.200000px;}
.fs3{font-size:50.400000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.631050px;}
.y2b{bottom:128.314950px;}
.y31{bottom:148.837050px;}
.y2a{bottom:149.314950px;}
.y29{bottom:170.314950px;}
.y28{bottom:191.314950px;}
.y27{bottom:212.314950px;}
.y26{bottom:233.314950px;}
.y25{bottom:254.314950px;}
.y24{bottom:275.314950px;}
.y23{bottom:296.314950px;}
.y22{bottom:317.314950px;}
.y21{bottom:338.314950px;}
.y20{bottom:359.314950px;}
.y1f{bottom:380.314950px;}
.y1e{bottom:401.314950px;}
.y1d{bottom:422.314950px;}
.y1c{bottom:443.314950px;}
.y1b{bottom:464.314950px;}
.y1a{bottom:485.314950px;}
.y19{bottom:506.314950px;}
.y18{bottom:527.314950px;}
.y17{bottom:548.314950px;}
.y16{bottom:569.314950px;}
.y2f{bottom:590.314950px;}
.y2e{bottom:611.314950px;}
.y2d{bottom:632.314950px;}
.y15{bottom:652.564800px;}
.y14{bottom:670.564800px;}
.y13{bottom:688.564800px;}
.y12{bottom:706.564800px;}
.y11{bottom:724.564800px;}
.y30{bottom:735.088500px;}
.y10{bottom:742.564800px;}
.yf{bottom:760.564800px;}
.ye{bottom:778.564800px;}
.yd{bottom:796.564800px;}
.yc{bottom:814.564800px;}
.y3f{bottom:842.314950px;}
.y3e{bottom:863.314950px;}
.y3d{bottom:884.314950px;}
.yb{bottom:892.092450px;}
.y3c{bottom:905.314950px;}
.ya{bottom:922.092450px;}
.y3b{bottom:926.314950px;}
.y3a{bottom:947.314950px;}
.y39{bottom:968.314950px;}
.y38{bottom:989.314950px;}
.y9{bottom:994.612050px;}
.y37{bottom:1010.314950px;}
.y36{bottom:1031.314950px;}
.y35{bottom:1052.314950px;}
.y34{bottom:1073.314950px;}
.y8{bottom:1082.502300px;}
.y33{bottom:1094.314950px;}
.y7{bottom:1100.502300px;}
.y32{bottom:1115.314950px;}
.y6{bottom:1118.502300px;}
.y5{bottom:1136.502300px;}
.y4{bottom:1163.006250px;}
.y3{bottom:1181.006250px;}
.y2c{bottom:1189.226850px;}
.y2{bottom:1199.006250px;}
.h9{height:37.520508px;}
.h3{height:39.313477px;}
.h2{height:41.689453px;}
.h7{height:45.858398px;}
.h6{height:47.182617px;}
.h8{height:51.900879px;}
.h4{height:58.292578px;}
.h5{height:73.195312px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:127.559100px;}
.xa{left:170.078700px;}
.x9{left:191.338650px;}
.xb{left:293.075550px;}
.x1{left:442.706700px;}
.x5{left:534.564000px;}
.x2{left:539.026650px;}
.x4{left:568.274550px;}
.x7{left:571.300200px;}
.x6{left:595.834800px;}
.x3{left:665.879250px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:17.600000pt;}
.v1{vertical-align:19.200000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls7{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.528000pt;}
.ls8{letter-spacing:-0.469333pt;}
.lsf{letter-spacing:-0.451733pt;}
.ls4{letter-spacing:-0.432000pt;}
.ls5{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.369600pt;}
.ls6{letter-spacing:-0.298667pt;}
.lse{letter-spacing:-0.176000pt;}
.lsa{letter-spacing:-0.117333pt;}
.ls10{letter-spacing:-0.082133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.006933pt;}
.ls2{letter-spacing:1.746667pt;}
.ws4{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-12.384000pt;}
.ws1e{word-spacing:-10.266667pt;}
.ws27{word-spacing:-10.184533pt;}
.ws1d{word-spacing:-9.897067pt;}
.ws26{word-spacing:-9.814933pt;}
.ws2{word-spacing:-9.333333pt;}
.ws3{word-spacing:-9.034667pt;}
.ws15{word-spacing:-2.933333pt;}
.ws1f{word-spacing:-2.688000pt;}
.wsb{word-spacing:-2.666667pt;}
.ws29{word-spacing:-2.464000pt;}
.ws14{word-spacing:-2.170667pt;}
.ws2c{word-spacing:-1.994667pt;}
.ws11{word-spacing:-1.877333pt;}
.ws25{word-spacing:-1.776000pt;}
.ws24{word-spacing:-1.642667pt;}
.ws8{word-spacing:-1.546667pt;}
.ws7{word-spacing:-1.536000pt;}
.ws2b{word-spacing:-1.290667pt;}
.ws19{word-spacing:-0.880000pt;}
.ws6{word-spacing:-0.864000pt;}
.ws17{word-spacing:-0.410667pt;}
.ws12{word-spacing:-0.234667pt;}
.ws1a{word-spacing:-0.176000pt;}
.ws5{word-spacing:0.000000pt;}
.ws16{word-spacing:0.117333pt;}
.ws20{word-spacing:0.410667pt;}
.wsa{word-spacing:0.432000pt;}
.ws22{word-spacing:0.528000pt;}
.ws2a{word-spacing:1.408000pt;}
.wsc{word-spacing:1.728000pt;}
.wsd{word-spacing:1.760000pt;}
.ws10{word-spacing:1.936000pt;}
.ws28{word-spacing:1.994667pt;}
.wse{word-spacing:2.453333pt;}
.ws21{word-spacing:2.522667pt;}
.ws2d{word-spacing:5.397333pt;}
.ws23{word-spacing:5.514667pt;}
.wsf{word-spacing:5.573333pt;}
.ws9{word-spacing:5.600000pt;}
.ws18{word-spacing:5.749333pt;}
.ws1b{word-spacing:6.277333pt;}
.ws13{word-spacing:12.085333pt;}
._3{margin-left:-8.023467pt;}
._5{margin-left:-6.494400pt;}
._1{margin-left:-4.368000pt;}
._2{margin-left:-3.445867pt;}
._0{margin-left:-1.790400pt;}
._4{margin-left:-0.897600pt;}
._6{width:1.793067pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:41.066667pt;}
.fs3{font-size:44.800000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.227600pt;}
.y2b{bottom:114.057733pt;}
.y31{bottom:132.299600pt;}
.y2a{bottom:132.724400pt;}
.y29{bottom:151.391067pt;}
.y28{bottom:170.057733pt;}
.y27{bottom:188.724400pt;}
.y26{bottom:207.391067pt;}
.y25{bottom:226.057733pt;}
.y24{bottom:244.724400pt;}
.y23{bottom:263.391067pt;}
.y22{bottom:282.057733pt;}
.y21{bottom:300.724400pt;}
.y20{bottom:319.391067pt;}
.y1f{bottom:338.057733pt;}
.y1e{bottom:356.724400pt;}
.y1d{bottom:375.391067pt;}
.y1c{bottom:394.057733pt;}
.y1b{bottom:412.724400pt;}
.y1a{bottom:431.391067pt;}
.y19{bottom:450.057733pt;}
.y18{bottom:468.724400pt;}
.y17{bottom:487.391067pt;}
.y16{bottom:506.057733pt;}
.y2f{bottom:524.724400pt;}
.y2e{bottom:543.391067pt;}
.y2d{bottom:562.057733pt;}
.y15{bottom:580.057600pt;}
.y14{bottom:596.057600pt;}
.y13{bottom:612.057600pt;}
.y12{bottom:628.057600pt;}
.y11{bottom:644.057600pt;}
.y30{bottom:653.412000pt;}
.y10{bottom:660.057600pt;}
.yf{bottom:676.057600pt;}
.ye{bottom:692.057600pt;}
.yd{bottom:708.057600pt;}
.yc{bottom:724.057600pt;}
.y3f{bottom:748.724400pt;}
.y3e{bottom:767.391067pt;}
.y3d{bottom:786.057733pt;}
.yb{bottom:792.971067pt;}
.y3c{bottom:804.724400pt;}
.ya{bottom:819.637733pt;}
.y3b{bottom:823.391067pt;}
.y3a{bottom:842.057733pt;}
.y39{bottom:860.724400pt;}
.y38{bottom:879.391067pt;}
.y9{bottom:884.099600pt;}
.y37{bottom:898.057733pt;}
.y36{bottom:916.724400pt;}
.y35{bottom:935.391067pt;}
.y34{bottom:954.057733pt;}
.y8{bottom:962.224267pt;}
.y33{bottom:972.724400pt;}
.y7{bottom:978.224267pt;}
.y32{bottom:991.391067pt;}
.y6{bottom:994.224267pt;}
.y5{bottom:1010.224267pt;}
.y4{bottom:1033.783333pt;}
.y3{bottom:1049.783333pt;}
.y2c{bottom:1057.090533pt;}
.y2{bottom:1065.783333pt;}
.h9{height:33.351562pt;}
.h3{height:34.945312pt;}
.h2{height:37.057292pt;}
.h7{height:40.763021pt;}
.h6{height:41.940104pt;}
.h8{height:46.134115pt;}
.h4{height:51.815625pt;}
.h5{height:65.062500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:113.385867pt;}
.xa{left:151.181067pt;}
.x9{left:170.078800pt;}
.xb{left:260.511600pt;}
.x1{left:393.517067pt;}
.x5{left:475.168000pt;}
.x2{left:479.134800pt;}
.x4{left:505.132933pt;}
.x7{left:507.822400pt;}
.x6{left:529.630933pt;}
.x3{left:591.892667pt;}
}




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