
    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_34b031c2e65dce6bd9ecaf8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_f3341ac53229011a456b94db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_34b031c2e65dce6bd9ecaf8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_9b102049fb921b85acbe841c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138000;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_d449d59147b68c270a8fcee3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_7398cafe3c9a869b80f5199d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.132000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.462000px;}
.ls8{letter-spacing:0.726000px;}
.ls0{letter-spacing:1.260000px;}
.ls5{letter-spacing:840.008400px;}
.ls9{letter-spacing:854.352000px;}
.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:-22.860000px;}
.ws27{word-spacing:-16.500000px;}
.ws17{word-spacing:-12.000000px;}
.ws18{word-spacing:-10.500000px;}
.ws4{word-spacing:-0.630000px;}
.wsd{word-spacing:-0.462000px;}
.ws14{word-spacing:-0.198000px;}
.ws3{word-spacing:0.000000px;}
.ws1c{word-spacing:0.264000px;}
.ws39{word-spacing:0.924000px;}
.ws26{word-spacing:1.056000px;}
.ws1a{word-spacing:1.188000px;}
.ws23{word-spacing:1.452000px;}
.ws9{word-spacing:1.650000px;}
.ws15{word-spacing:1.980000px;}
.ws13{word-spacing:2.046000px;}
.ws8{word-spacing:2.178000px;}
.ws34{word-spacing:2.244000px;}
.ws1d{word-spacing:2.310000px;}
.ws10{word-spacing:2.574000px;}
.ws1b{word-spacing:2.706000px;}
.ws22{word-spacing:2.838000px;}
.ws28{word-spacing:2.904000px;}
.ws2c{word-spacing:2.970000px;}
.ws7{word-spacing:3.102000px;}
.ws30{word-spacing:3.300000px;}
.ws20{word-spacing:3.432000px;}
.wsc{word-spacing:3.498000px;}
.ws1f{word-spacing:3.762000px;}
.ws19{word-spacing:3.828000px;}
.wsa{word-spacing:4.026000px;}
.wsf{word-spacing:4.158000px;}
.ws11{word-spacing:4.356000px;}
.ws2d{word-spacing:4.422000px;}
.ws25{word-spacing:4.488000px;}
.ws6{word-spacing:4.620000px;}
.wse{word-spacing:4.884000px;}
.ws37{word-spacing:5.016000px;}
.ws2f{word-spacing:5.082000px;}
.ws29{word-spacing:5.148000px;}
.ws16{word-spacing:5.214000px;}
.ws2e{word-spacing:5.610000px;}
.ws35{word-spacing:5.742000px;}
.ws12{word-spacing:5.874000px;}
.ws33{word-spacing:6.006000px;}
.ws31{word-spacing:6.402000px;}
.ws2b{word-spacing:6.468000px;}
.ws1e{word-spacing:6.666000px;}
.ws21{word-spacing:6.798000px;}
.ws36{word-spacing:6.996000px;}
.ws24{word-spacing:7.326000px;}
.ws5{word-spacing:7.524000px;}
.ws38{word-spacing:7.854000px;}
.ws32{word-spacing:8.118000px;}
.ws2a{word-spacing:8.184000px;}
.wsb{word-spacing:8.250000px;}
.ws2{word-spacing:10.656000px;}
.ws1{word-spacing:13.344000px;}
._1{margin-left:-20.856000px;}
._2{margin-left:-2.436000px;}
._0{margin-left:-1.260000px;}
._5{width:1.056000px;}
._3{width:2.706000px;}
._4{width:6.468000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:63.779550px;}
.y56{bottom:115.207500px;}
.y1f{bottom:116.869350px;}
.y55{bottom:133.209000px;}
.y1e{bottom:134.870850px;}
.y54{bottom:151.210500px;}
.y1d{bottom:152.872350px;}
.y53{bottom:169.212000px;}
.y1c{bottom:170.873850px;}
.y52{bottom:187.213500px;}
.y1b{bottom:188.875350px;}
.y51{bottom:205.215000px;}
.y1a{bottom:206.876850px;}
.y50{bottom:223.216500px;}
.y19{bottom:224.878350px;}
.y4f{bottom:241.218000px;}
.y18{bottom:242.879850px;}
.y4e{bottom:259.219500px;}
.y17{bottom:260.881350px;}
.y4d{bottom:277.221000px;}
.y16{bottom:287.875350px;}
.y4c{bottom:295.222500px;}
.y15{bottom:305.876850px;}
.y4b{bottom:313.224000px;}
.y14{bottom:323.878350px;}
.y4a{bottom:340.218000px;}
.y13{bottom:341.879850px;}
.y49{bottom:358.219500px;}
.y12{bottom:359.881350px;}
.y48{bottom:376.221000px;}
.y11{bottom:377.882850px;}
.y47{bottom:394.222500px;}
.y39{bottom:395.448450px;}
.y10{bottom:395.884350px;}
.y46{bottom:412.224000px;}
.yf{bottom:413.885850px;}
.y38{bottom:422.442450px;}
.y45{bottom:430.225500px;}
.ye{bottom:431.887350px;}
.y37{bottom:440.443950px;}
.y44{bottom:448.227000px;}
.yd{bottom:449.888850px;}
.y43{bottom:466.228500px;}
.y36{bottom:467.437950px;}
.yc{bottom:467.890350px;}
.y42{bottom:484.230000px;}
.yb{bottom:485.891850px;}
.y5f{bottom:494.448450px;}
.y41{bottom:502.231500px;}
.y35{bottom:503.440950px;}
.ya{bottom:503.893350px;}
.y40{bottom:520.233000px;}
.y5e{bottom:521.442450px;}
.y9{bottom:521.894850px;}
.y34{bottom:530.434950px;}
.y3f{bottom:538.234500px;}
.y5d{bottom:539.443950px;}
.y33{bottom:548.436450px;}
.y3e{bottom:556.236000px;}
.y32{bottom:566.437950px;}
.y3d{bottom:574.237500px;}
.y31{bottom:584.439450px;}
.y30{bottom:602.440950px;}
.y8{bottom:608.429850px;}
.y2f{bottom:620.442450px;}
.y7{bottom:627.923850px;}
.y5c{bottom:629.434950px;}
.y2e{bottom:638.443950px;}
.y5b{bottom:647.436450px;}
.y2d{bottom:656.445450px;}
.y6{bottom:664.431750px;}
.y5a{bottom:665.437950px;}
.y3c{bottom:673.522500px;}
.y2c{bottom:674.446950px;}
.y59{bottom:683.439450px;}
.y5{bottom:691.431750px;}
.y3b{bottom:700.522500px;}
.y2b{bottom:701.440950px;}
.y4{bottom:718.431750px;}
.y2a{bottom:719.442450px;}
.y3a{bottom:727.522500px;}
.y29{bottom:737.443950px;}
.y28{bottom:755.445450px;}
.y27{bottom:773.446950px;}
.y58{bottom:782.439450px;}
.y26{bottom:791.448450px;}
.y57{bottom:800.440950px;}
.y25{bottom:818.442450px;}
.y24{bottom:836.443950px;}
.y23{bottom:854.445450px;}
.y22{bottom:872.446950px;}
.y1{bottom:892.729950px;}
.y20{bottom:909.921150px;}
.y3{bottom:927.404100px;}
.y2{bottom:940.904100px;}
.h2{height:35.328000px;}
.h7{height:41.424000px;}
.h6{height:46.602000px;}
.h8{height:55.176000px;}
.h5{height:56.958000px;}
.h4{height:60.192000px;}
.h3{height:78.210000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:106.299150px;}
.x5{left:124.484700px;}
.x8{left:131.811000px;}
.xf{left:144.545100px;}
.xe{left:159.620100px;}
.x6{left:167.380650px;}
.x10{left:179.892600px;}
.x4{left:192.187200px;}
.x3{left:228.254700px;}
.x7{left:241.360650px;}
.xb{left:243.595650px;}
.x1{left:445.299000px;}
.x11{left:456.744900px;}
.xd{left:461.610150px;}
.x9{left:462.744900px;}
.xa{left:495.517650px;}
.x12{left:519.132000px;}
.xc{left:536.734650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.410667pt;}
.ls8{letter-spacing:0.645333pt;}
.ls0{letter-spacing:1.120000pt;}
.ls5{letter-spacing:746.674133pt;}
.ls9{letter-spacing:759.424000pt;}
.ws0{word-spacing:-20.320000pt;}
.ws27{word-spacing:-14.666667pt;}
.ws17{word-spacing:-10.666667pt;}
.ws18{word-spacing:-9.333333pt;}
.ws4{word-spacing:-0.560000pt;}
.wsd{word-spacing:-0.410667pt;}
.ws14{word-spacing:-0.176000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.234667pt;}
.ws39{word-spacing:0.821333pt;}
.ws26{word-spacing:0.938667pt;}
.ws1a{word-spacing:1.056000pt;}
.ws23{word-spacing:1.290667pt;}
.ws9{word-spacing:1.466667pt;}
.ws15{word-spacing:1.760000pt;}
.ws13{word-spacing:1.818667pt;}
.ws8{word-spacing:1.936000pt;}
.ws34{word-spacing:1.994667pt;}
.ws1d{word-spacing:2.053333pt;}
.ws10{word-spacing:2.288000pt;}
.ws1b{word-spacing:2.405333pt;}
.ws22{word-spacing:2.522667pt;}
.ws28{word-spacing:2.581333pt;}
.ws2c{word-spacing:2.640000pt;}
.ws7{word-spacing:2.757333pt;}
.ws30{word-spacing:2.933333pt;}
.ws20{word-spacing:3.050667pt;}
.wsc{word-spacing:3.109333pt;}
.ws1f{word-spacing:3.344000pt;}
.ws19{word-spacing:3.402667pt;}
.wsa{word-spacing:3.578667pt;}
.wsf{word-spacing:3.696000pt;}
.ws11{word-spacing:3.872000pt;}
.ws2d{word-spacing:3.930667pt;}
.ws25{word-spacing:3.989333pt;}
.ws6{word-spacing:4.106667pt;}
.wse{word-spacing:4.341333pt;}
.ws37{word-spacing:4.458667pt;}
.ws2f{word-spacing:4.517333pt;}
.ws29{word-spacing:4.576000pt;}
.ws16{word-spacing:4.634667pt;}
.ws2e{word-spacing:4.986667pt;}
.ws35{word-spacing:5.104000pt;}
.ws12{word-spacing:5.221333pt;}
.ws33{word-spacing:5.338667pt;}
.ws31{word-spacing:5.690667pt;}
.ws2b{word-spacing:5.749333pt;}
.ws1e{word-spacing:5.925333pt;}
.ws21{word-spacing:6.042667pt;}
.ws36{word-spacing:6.218667pt;}
.ws24{word-spacing:6.512000pt;}
.ws5{word-spacing:6.688000pt;}
.ws38{word-spacing:6.981333pt;}
.ws32{word-spacing:7.216000pt;}
.ws2a{word-spacing:7.274667pt;}
.wsb{word-spacing:7.333333pt;}
.ws2{word-spacing:9.472000pt;}
.ws1{word-spacing:11.861333pt;}
._1{margin-left:-18.538667pt;}
._2{margin-left:-2.165333pt;}
._0{margin-left:-1.120000pt;}
._5{width:0.938667pt;}
._3{width:2.405333pt;}
._4{width:5.749333pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:56.692933pt;}
.y56{bottom:102.406667pt;}
.y1f{bottom:103.883867pt;}
.y55{bottom:118.408000pt;}
.y1e{bottom:119.885200pt;}
.y54{bottom:134.409333pt;}
.y1d{bottom:135.886533pt;}
.y53{bottom:150.410667pt;}
.y1c{bottom:151.887867pt;}
.y52{bottom:166.412000pt;}
.y1b{bottom:167.889200pt;}
.y51{bottom:182.413333pt;}
.y1a{bottom:183.890533pt;}
.y50{bottom:198.414667pt;}
.y19{bottom:199.891867pt;}
.y4f{bottom:214.416000pt;}
.y18{bottom:215.893200pt;}
.y4e{bottom:230.417333pt;}
.y17{bottom:231.894533pt;}
.y4d{bottom:246.418667pt;}
.y16{bottom:255.889200pt;}
.y4c{bottom:262.420000pt;}
.y15{bottom:271.890533pt;}
.y4b{bottom:278.421333pt;}
.y14{bottom:287.891867pt;}
.y4a{bottom:302.416000pt;}
.y13{bottom:303.893200pt;}
.y49{bottom:318.417333pt;}
.y12{bottom:319.894533pt;}
.y48{bottom:334.418667pt;}
.y11{bottom:335.895867pt;}
.y47{bottom:350.420000pt;}
.y39{bottom:351.509733pt;}
.y10{bottom:351.897200pt;}
.y46{bottom:366.421333pt;}
.yf{bottom:367.898533pt;}
.y38{bottom:375.504400pt;}
.y45{bottom:382.422667pt;}
.ye{bottom:383.899867pt;}
.y37{bottom:391.505733pt;}
.y44{bottom:398.424000pt;}
.yd{bottom:399.901200pt;}
.y43{bottom:414.425333pt;}
.y36{bottom:415.500400pt;}
.yc{bottom:415.902533pt;}
.y42{bottom:430.426667pt;}
.yb{bottom:431.903867pt;}
.y5f{bottom:439.509733pt;}
.y41{bottom:446.428000pt;}
.y35{bottom:447.503067pt;}
.ya{bottom:447.905200pt;}
.y40{bottom:462.429333pt;}
.y5e{bottom:463.504400pt;}
.y9{bottom:463.906533pt;}
.y34{bottom:471.497733pt;}
.y3f{bottom:478.430667pt;}
.y5d{bottom:479.505733pt;}
.y33{bottom:487.499067pt;}
.y3e{bottom:494.432000pt;}
.y32{bottom:503.500400pt;}
.y3d{bottom:510.433333pt;}
.y31{bottom:519.501733pt;}
.y30{bottom:535.503067pt;}
.y8{bottom:540.826533pt;}
.y2f{bottom:551.504400pt;}
.y7{bottom:558.154533pt;}
.y5c{bottom:559.497733pt;}
.y2e{bottom:567.505733pt;}
.y5b{bottom:575.499067pt;}
.y2d{bottom:583.507067pt;}
.y6{bottom:590.606000pt;}
.y5a{bottom:591.500400pt;}
.y3c{bottom:598.686667pt;}
.y2c{bottom:599.508400pt;}
.y59{bottom:607.501733pt;}
.y5{bottom:614.606000pt;}
.y3b{bottom:622.686667pt;}
.y2b{bottom:623.503067pt;}
.y4{bottom:638.606000pt;}
.y2a{bottom:639.504400pt;}
.y3a{bottom:646.686667pt;}
.y29{bottom:655.505733pt;}
.y28{bottom:671.507067pt;}
.y27{bottom:687.508400pt;}
.y58{bottom:695.501733pt;}
.y26{bottom:703.509733pt;}
.y57{bottom:711.503067pt;}
.y25{bottom:727.504400pt;}
.y24{bottom:743.505733pt;}
.y23{bottom:759.507067pt;}
.y22{bottom:775.508400pt;}
.y1{bottom:793.537733pt;}
.y20{bottom:808.818800pt;}
.y3{bottom:824.359200pt;}
.y2{bottom:836.359200pt;}
.h2{height:31.402667pt;}
.h7{height:36.821333pt;}
.h6{height:41.424000pt;}
.h8{height:49.045333pt;}
.h5{height:50.629333pt;}
.h4{height:53.504000pt;}
.h3{height:69.520000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:94.488133pt;}
.x5{left:110.653067pt;}
.x8{left:117.165333pt;}
.xf{left:128.484533pt;}
.xe{left:141.884533pt;}
.x6{left:148.782800pt;}
.x10{left:159.904533pt;}
.x4{left:170.833067pt;}
.x3{left:202.893067pt;}
.x7{left:214.542800pt;}
.xb{left:216.529467pt;}
.x1{left:395.821333pt;}
.x11{left:405.995467pt;}
.xd{left:410.320133pt;}
.x9{left:411.328800pt;}
.xa{left:440.460133pt;}
.x12{left:461.450667pt;}
.xc{left:477.097467pt;}
}




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