
    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_43310a61054804b6dbbbb3f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_d9b0bd9093acfc9c7812ae55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_bb3a458f633104feb005957a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.453000;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_55cf02cd257ab133781c458c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_b11b786642125463dc979804.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_d7c54adf0180357294fe28fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_6eb1dd684952cf47553b4b34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_812750c7e0cd6669e2bb346f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_4ba46433cdd6a60497c9e1ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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);}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.986053px;}
.ls2{letter-spacing:29.520025px;}
.ls3{letter-spacing:32.727300px;}
.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;}
}
.wsf{word-spacing:-22.416000px;}
.ws23{word-spacing:-18.183288px;}
.ws1f{word-spacing:-2.016002px;}
.ws24{word-spacing:-1.296001px;}
.ws20{word-spacing:-0.837819px;}
.ws21{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.248727px;}
.ws33{word-spacing:-0.059776px;}
.wse{word-spacing:0.000000px;}
.ws16{word-spacing:0.929455px;}
.wsb{word-spacing:1.256728px;}
.wsd{word-spacing:2.173093px;}
.ws30{word-spacing:2.304002px;}
.ws35{word-spacing:2.642082px;}
.ws19{word-spacing:3.220366px;}
.ws31{word-spacing:3.299613px;}
.ws5{word-spacing:3.613094px;}
.ws11{word-spacing:3.678549px;}
.ws18{word-spacing:3.704730px;}
.ws25{word-spacing:3.940367px;}
.ws10{word-spacing:4.162913px;}
.ws1c{word-spacing:4.228367px;}
.ws17{word-spacing:4.464004px;}
.ws13{word-spacing:4.483200px;}
.ws2c{word-spacing:4.725822px;}
.ws2d{word-spacing:5.249459px;}
.ws2e{word-spacing:5.707641px;}
.ws26{word-spacing:6.100369px;}
.ws15{word-spacing:6.165823px;}
.ws1a{word-spacing:6.689460px;}
.ws28{word-spacing:7.278552px;}
.wsa{word-spacing:8.325825px;}
.ws14{word-spacing:8.718553px;}
.ws1d{word-spacing:9.111280px;}
.ws29{word-spacing:9.176735px;}
.wsc{word-spacing:9.242190px;}
.ws2f{word-spacing:9.504008px;}
.ws9{word-spacing:10.027645px;}
.ws8{word-spacing:10.485827px;}
.ws6{word-spacing:10.878555px;}
.ws2b{word-spacing:11.729464px;}
.ws27{word-spacing:12.711283px;}
.ws22{word-spacing:13.889466px;}
.ws36{word-spacing:20.682358px;}
.ws34{word-spacing:21.280114px;}
.ws32{word-spacing:21.339889px;}
.ws3{word-spacing:26.181888px;}
.ws1b{word-spacing:27.949114px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws12{word-spacing:39.639306px;}
.ws2{word-spacing:51.904187px;}
.ws1{word-spacing:54.283749px;}
.ws2a{word-spacing:58.281600px;}
.ws7{word-spacing:78.342880px;}
._4{margin-left:-8.751206px;}
._2d{margin-left:-7.265461px;}
._5{margin-left:-5.498186px;}
._0{margin-left:-4.461678px;}
._31{margin-left:-3.267362px;}
._2{margin-left:-2.223667px;}
._9{margin-left:-1.068773px;}
._3{width:2.223667px;}
._32{width:3.281706px;}
._1{width:4.610401px;}
._33{width:18.665326px;}
._2e{width:20.158228px;}
._30{width:22.840077px;}
._2c{width:25.858145px;}
._6{width:27.167237px;}
._8{width:28.598293px;}
._35{width:29.652723px;}
._2f{width:31.483663px;}
._38{width:32.697253px;}
._36{width:34.492785px;}
._34{width:39.079975px;}
._7{width:43.525520px;}
._a{width:46.012795px;}
._37{width:47.060068px;}
._b{width:60.545505px;}
._e{width:66.894601px;}
._11{width:74.880062px;}
._2b{width:80.697600px;}
._25{width:388.605749px;}
._22{width:834.738935px;}
._d{width:1121.499116px;}
._17{width:1217.391895px;}
._1f{width:1331.160965px;}
._f{width:1359.686617px;}
._18{width:1365.183014px;}
._21{width:1405.568502px;}
._16{width:1418.070331px;}
._1d{width:1431.633776px;}
._19{width:1435.875771px;}
._12{width:1499.432188px;}
._13{width:1513.699501px;}
._1e{width:1519.473850px;}
._1b{width:1522.277632px;}
._14{width:1551.599504px;}
._24{width:1574.183130px;}
._23{width:1588.510531px;}
._10{width:1608.546795px;}
._29{width:1639.052217px;}
._26{width:1688.270498px;}
._15{width:1696.646897px;}
._1a{width:1752.481460px;}
._1c{width:1763.803317px;}
._28{width:1798.105106px;}
._20{width:1804.790451px;}
._27{width:1861.790642px;}
._c{width:1874.492413px;}
._2a{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y33{bottom:93.813000px;}
.y90{bottom:176.005500px;}
.y53{bottom:185.001000px;}
.y8f{bottom:196.329000px;}
.y6e{bottom:208.521000px;}
.y52{bottom:212.370000px;}
.y8e{bottom:216.652500px;}
.y8d{bottom:236.976000px;}
.y6d{bottom:245.049000px;}
.y51{bottom:248.898000px;}
.y32{bottom:254.208000px;}
.y8c{bottom:257.301000px;}
.y50{bottom:276.267000px;}
.y8b{bottom:277.624500px;}
.y6c{bottom:290.629500px;}
.y8a{bottom:297.948000px;}
.y31{bottom:300.735000px;}
.y4f{bottom:312.795000px;}
.y89{bottom:318.271500px;}
.y6b{bottom:319.408500px;}
.y30{bottom:337.423500px;}
.y88{bottom:338.595000px;}
.y4e{bottom:340.165500px;}
.y6a{bottom:355.936500px;}
.y87{bottom:372.798000px;}
.y2f{bottom:374.110500px;}
.y4d{bottom:376.693500px;}
.y69{bottom:384.715500px;}
.y10{bottom:386.586000px;}
.y2e{bottom:394.434000px;}
.y4c{bottom:404.062500px;}
.yf{bottom:406.909500px;}
.y86{bottom:414.307500px;}
.y2d{bottom:414.757500px;}
.y68{bottom:421.243500px;}
.ye{bottom:427.233000px;}
.y85{bottom:434.632500px;}
.y2c{bottom:435.082500px;}
.y4b{bottom:440.590500px;}
.yd{bottom:447.558000px;}
.y67{bottom:450.021000px;}
.y84{bottom:454.956000px;}
.y2b{bottom:455.406000px;}
.yc{bottom:467.881500px;}
.y4a{bottom:467.959500px;}
.y2a{bottom:475.729500px;}
.y66{bottom:486.549000px;}
.yb{bottom:488.205000px;}
.y83{bottom:489.157500px;}
.y49{bottom:504.489000px;}
.y65{bottom:506.874000px;}
.ya{bottom:508.528500px;}
.y29{bottom:512.416500px;}
.y82{bottom:530.668500px;}
.y28{bottom:532.741500px;}
.y48{bottom:533.266500px;}
.y64{bottom:535.651500px;}
.y9{bottom:548.280000px;}
.y27{bottom:553.065000px;}
.y81{bottom:557.701500px;}
.y47{bottom:569.794500px;}
.y63{bottom:572.179500px;}
.y26{bottom:573.388500px;}
.y8{bottom:585.003000px;}
.y80{bottom:591.322500px;}
.y62{bottom:592.504500px;}
.y46{bottom:603.568500px;}
.y25{bottom:610.075500px;}
.y7{bottom:613.734000px;}
.y7f{bottom:618.357000px;}
.y61{bottom:629.032500px;}
.y24{bottom:630.399000px;}
.y45{bottom:637.341000px;}
.y23{bottom:650.724000px;}
.y7e{bottom:651.978000px;}
.y22{bottom:671.047500px;}
.y44{bottom:671.115000px;}
.y60{bottom:674.613000px;}
.y7d{bottom:679.011000px;}
.y21{bottom:691.371000px;}
.y5f{bottom:703.390500px;}
.y43{bottom:704.889000px;}
.y7c{bottom:712.632000px;}
.y20{bottom:728.058000px;}
.y6{bottom:730.344000px;}
.y7b{bottom:732.957000px;}
.y42{bottom:738.661500px;}
.y5e{bottom:739.920000px;}
.y1f{bottom:748.381500px;}
.y7a{bottom:759.990000px;}
.y41{bottom:767.440500px;}
.y5{bottom:767.625000px;}
.y5d{bottom:768.697500px;}
.y1e{bottom:768.706500px;}
.y1d{bottom:789.030000px;}
.y79{bottom:793.611000px;}
.y40{bottom:803.968500px;}
.y5c{bottom:805.225500px;}
.y1c{bottom:809.353500px;}
.y4{bottom:812.457000px;}
.y78{bottom:820.645500px;}
.y5b{bottom:825.549000px;}
.y1b{bottom:829.677000px;}
.y3f{bottom:837.741000px;}
.y9c{bottom:850.212000px;}
.y77{bottom:854.265000px;}
.y5a{bottom:854.328000px;}
.y3{bottom:857.289000px;}
.y3e{bottom:858.066000px;}
.y1a{bottom:866.365500px;}
.y9b{bottom:868.144500px;}
.y76{bottom:874.590000px;}
.y3d{bottom:878.389500px;}
.y19{bottom:886.689000px;}
.y59{bottom:890.856000px;}
.y9a{bottom:893.548500px;}
.y2{bottom:902.121000px;}
.y18{bottom:907.012500px;}
.y75{bottom:908.791500px;}
.y58{bottom:911.179500px;}
.y99{bottom:911.482500px;}
.y3c{bottom:914.917500px;}
.y17{bottom:927.336000px;}
.y98{bottom:936.886500px;}
.y57{bottom:939.958500px;}
.y16{bottom:947.659500px;}
.y74{bottom:950.302500px;}
.y97{bottom:954.819000px;}
.y3b{bottom:960.498000px;}
.y15{bottom:967.984500px;}
.y56{bottom:976.486500px;}
.y73{bottom:977.335500px;}
.y96{bottom:980.224500px;}
.y3a{bottom:980.821500px;}
.y14{bottom:988.308000px;}
.y55{bottom:996.810000px;}
.y95{bottom:998.157000px;}
.y39{bottom:1001.145000px;}
.y13{bottom:1008.631500px;}
.y72{bottom:1010.956500px;}
.y38{bottom:1021.470000px;}
.y94{bottom:1023.561000px;}
.y54{bottom:1025.589000px;}
.y71{bottom:1031.280000px;}
.y93{bottom:1041.495000px;}
.y37{bottom:1041.793500px;}
.y12{bottom:1045.318500px;}
.y70{bottom:1058.314500px;}
.y36{bottom:1062.117000px;}
.y92{bottom:1066.899000px;}
.y11{bottom:1082.007000px;}
.y35{bottom:1082.440500px;}
.y91{bottom:1084.831500px;}
.y1{bottom:1087.587000px;}
.y6f{bottom:1091.935500px;}
.y34{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.ha{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h5{height:61.631275px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x9{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.xa{left:161.064000px;}
.x8{left:164.010000px;}
.x6{left:189.609000px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.654270pt;}
.ls2{letter-spacing:26.240022pt;}
.ls3{letter-spacing:29.090933pt;}
.wsf{word-spacing:-19.925333pt;}
.ws23{word-spacing:-16.162923pt;}
.ws1f{word-spacing:-1.792001pt;}
.ws24{word-spacing:-1.152001pt;}
.ws20{word-spacing:-0.744728pt;}
.ws21{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.221091pt;}
.ws33{word-spacing:-0.053134pt;}
.wse{word-spacing:0.000000pt;}
.ws16{word-spacing:0.826183pt;}
.wsb{word-spacing:1.117092pt;}
.wsd{word-spacing:1.931638pt;}
.ws30{word-spacing:2.048002pt;}
.ws35{word-spacing:2.348517pt;}
.ws19{word-spacing:2.862548pt;}
.ws31{word-spacing:2.932989pt;}
.ws5{word-spacing:3.211639pt;}
.ws11{word-spacing:3.269821pt;}
.ws18{word-spacing:3.293094pt;}
.ws25{word-spacing:3.502548pt;}
.ws10{word-spacing:3.700367pt;}
.ws1c{word-spacing:3.758549pt;}
.ws17{word-spacing:3.968003pt;}
.ws13{word-spacing:3.985067pt;}
.ws2c{word-spacing:4.200731pt;}
.ws2d{word-spacing:4.666186pt;}
.ws2e{word-spacing:5.073459pt;}
.ws26{word-spacing:5.422550pt;}
.ws15{word-spacing:5.480732pt;}
.ws1a{word-spacing:5.946187pt;}
.ws28{word-spacing:6.469824pt;}
.wsa{word-spacing:7.400733pt;}
.ws14{word-spacing:7.749825pt;}
.ws1d{word-spacing:8.098916pt;}
.ws29{word-spacing:8.157098pt;}
.wsc{word-spacing:8.215280pt;}
.ws2f{word-spacing:8.448007pt;}
.ws9{word-spacing:8.913462pt;}
.ws8{word-spacing:9.320735pt;}
.ws6{word-spacing:9.669826pt;}
.ws2b{word-spacing:10.426191pt;}
.ws27{word-spacing:11.298919pt;}
.ws22{word-spacing:12.346192pt;}
.ws36{word-spacing:18.384318pt;}
.ws34{word-spacing:18.915657pt;}
.ws32{word-spacing:18.968790pt;}
.ws3{word-spacing:23.272789pt;}
.ws1b{word-spacing:24.843657pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws12{word-spacing:35.234938pt;}
.ws2{word-spacing:46.137055pt;}
.ws1{word-spacing:48.252221pt;}
.ws2a{word-spacing:51.805867pt;}
.ws7{word-spacing:69.638115pt;}
._4{margin-left:-7.778850pt;}
._2d{margin-left:-6.458187pt;}
._5{margin-left:-4.887277pt;}
._0{margin-left:-3.965936pt;}
._31{margin-left:-2.904322pt;}
._2{margin-left:-1.976593pt;}
._9{margin-left:-0.950020pt;}
._3{width:1.976593pt;}
._32{width:2.917072pt;}
._1{width:4.098134pt;}
._33{width:16.591401pt;}
._2e{width:17.918425pt;}
._30{width:20.302291pt;}
._2c{width:22.985018pt;}
._6{width:24.148655pt;}
._8{width:25.420705pt;}
._35{width:26.357976pt;}
._2f{width:27.985478pt;}
._38{width:29.064225pt;}
._36{width:30.660253pt;}
._34{width:34.737755pt;}
._7{width:38.689351pt;}
._a{width:40.900262pt;}
._37{width:41.831172pt;}
._b{width:53.818227pt;}
._e{width:59.461868pt;}
._11{width:66.560055pt;}
._2b{width:71.731200pt;}
._25{width:345.427333pt;}
._22{width:741.990165pt;}
._d{width:996.888103pt;}
._17{width:1082.126129pt;}
._1f{width:1183.254191pt;}
._f{width:1208.610326pt;}
._18{width:1213.496012pt;}
._21{width:1249.394224pt;}
._16{width:1260.506961pt;}
._1d{width:1272.563357pt;}
._19{width:1276.334019pt;}
._12{width:1332.828611pt;}
._13{width:1345.510668pt;}
._1e{width:1350.643422pt;}
._1b{width:1353.135673pt;}
._14{width:1379.199559pt;}
._24{width:1399.273893pt;}
._23{width:1412.009361pt;}
._10{width:1429.819373pt;}
._29{width:1456.935304pt;}
._26{width:1500.684887pt;}
._15{width:1508.130575pt;}
._1a{width:1557.761298pt;}
._1c{width:1567.825171pt;}
._28{width:1598.315650pt;}
._20{width:1604.258179pt;}
._27{width:1654.925015pt;}
._c{width:1666.215478pt;}
._2a{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:83.389333pt;}
.y90{bottom:156.449333pt;}
.y53{bottom:164.445333pt;}
.y8f{bottom:174.514667pt;}
.y6e{bottom:185.352000pt;}
.y52{bottom:188.773333pt;}
.y8e{bottom:192.580000pt;}
.y8d{bottom:210.645333pt;}
.y6d{bottom:217.821333pt;}
.y51{bottom:221.242667pt;}
.y32{bottom:225.962667pt;}
.y8c{bottom:228.712000pt;}
.y50{bottom:245.570667pt;}
.y8b{bottom:246.777333pt;}
.y6c{bottom:258.337333pt;}
.y8a{bottom:264.842667pt;}
.y31{bottom:267.320000pt;}
.y4f{bottom:278.040000pt;}
.y89{bottom:282.908000pt;}
.y6b{bottom:283.918667pt;}
.y30{bottom:299.932000pt;}
.y88{bottom:300.973333pt;}
.y4e{bottom:302.369333pt;}
.y6a{bottom:316.388000pt;}
.y87{bottom:331.376000pt;}
.y2f{bottom:332.542667pt;}
.y4d{bottom:334.838667pt;}
.y69{bottom:341.969333pt;}
.y10{bottom:343.632000pt;}
.y2e{bottom:350.608000pt;}
.y4c{bottom:359.166667pt;}
.yf{bottom:361.697333pt;}
.y86{bottom:368.273333pt;}
.y2d{bottom:368.673333pt;}
.y68{bottom:374.438667pt;}
.ye{bottom:379.762667pt;}
.y85{bottom:386.340000pt;}
.y2c{bottom:386.740000pt;}
.y4b{bottom:391.636000pt;}
.yd{bottom:397.829333pt;}
.y67{bottom:400.018667pt;}
.y84{bottom:404.405333pt;}
.y2b{bottom:404.805333pt;}
.yc{bottom:415.894667pt;}
.y4a{bottom:415.964000pt;}
.y2a{bottom:422.870667pt;}
.y66{bottom:432.488000pt;}
.yb{bottom:433.960000pt;}
.y83{bottom:434.806667pt;}
.y49{bottom:448.434667pt;}
.y65{bottom:450.554667pt;}
.ya{bottom:452.025333pt;}
.y29{bottom:455.481333pt;}
.y82{bottom:471.705333pt;}
.y28{bottom:473.548000pt;}
.y48{bottom:474.014667pt;}
.y64{bottom:476.134667pt;}
.y9{bottom:487.360000pt;}
.y27{bottom:491.613333pt;}
.y81{bottom:495.734667pt;}
.y47{bottom:506.484000pt;}
.y63{bottom:508.604000pt;}
.y26{bottom:509.678667pt;}
.y8{bottom:520.002667pt;}
.y80{bottom:525.620000pt;}
.y62{bottom:526.670667pt;}
.y46{bottom:536.505333pt;}
.y25{bottom:542.289333pt;}
.y7{bottom:545.541333pt;}
.y7f{bottom:549.650667pt;}
.y61{bottom:559.140000pt;}
.y24{bottom:560.354667pt;}
.y45{bottom:566.525333pt;}
.y23{bottom:578.421333pt;}
.y7e{bottom:579.536000pt;}
.y22{bottom:596.486667pt;}
.y44{bottom:596.546667pt;}
.y60{bottom:599.656000pt;}
.y7d{bottom:603.565333pt;}
.y21{bottom:614.552000pt;}
.y5f{bottom:625.236000pt;}
.y43{bottom:626.568000pt;}
.y7c{bottom:633.450667pt;}
.y20{bottom:647.162667pt;}
.y6{bottom:649.194667pt;}
.y7b{bottom:651.517333pt;}
.y42{bottom:656.588000pt;}
.y5e{bottom:657.706667pt;}
.y1f{bottom:665.228000pt;}
.y7a{bottom:675.546667pt;}
.y41{bottom:682.169333pt;}
.y5{bottom:682.333333pt;}
.y5d{bottom:683.286667pt;}
.y1e{bottom:683.294667pt;}
.y1d{bottom:701.360000pt;}
.y79{bottom:705.432000pt;}
.y40{bottom:714.638667pt;}
.y5c{bottom:715.756000pt;}
.y1c{bottom:719.425333pt;}
.y4{bottom:722.184000pt;}
.y78{bottom:729.462667pt;}
.y5b{bottom:733.821333pt;}
.y1b{bottom:737.490667pt;}
.y3f{bottom:744.658667pt;}
.y9c{bottom:755.744000pt;}
.y77{bottom:759.346667pt;}
.y5a{bottom:759.402667pt;}
.y3{bottom:762.034667pt;}
.y3e{bottom:762.725333pt;}
.y1a{bottom:770.102667pt;}
.y9b{bottom:771.684000pt;}
.y76{bottom:777.413333pt;}
.y3d{bottom:780.790667pt;}
.y19{bottom:788.168000pt;}
.y59{bottom:791.872000pt;}
.y9a{bottom:794.265333pt;}
.y2{bottom:801.885333pt;}
.y18{bottom:806.233333pt;}
.y75{bottom:807.814667pt;}
.y58{bottom:809.937333pt;}
.y99{bottom:810.206667pt;}
.y3c{bottom:813.260000pt;}
.y17{bottom:824.298667pt;}
.y98{bottom:832.788000pt;}
.y57{bottom:835.518667pt;}
.y16{bottom:842.364000pt;}
.y74{bottom:844.713333pt;}
.y97{bottom:848.728000pt;}
.y3b{bottom:853.776000pt;}
.y15{bottom:860.430667pt;}
.y56{bottom:867.988000pt;}
.y73{bottom:868.742667pt;}
.y96{bottom:871.310667pt;}
.y3a{bottom:871.841333pt;}
.y14{bottom:878.496000pt;}
.y55{bottom:886.053333pt;}
.y95{bottom:887.250667pt;}
.y39{bottom:889.906667pt;}
.y13{bottom:896.561333pt;}
.y72{bottom:898.628000pt;}
.y38{bottom:907.973333pt;}
.y94{bottom:909.832000pt;}
.y54{bottom:911.634667pt;}
.y71{bottom:916.693333pt;}
.y93{bottom:925.773333pt;}
.y37{bottom:926.038667pt;}
.y12{bottom:929.172000pt;}
.y70{bottom:940.724000pt;}
.y36{bottom:944.104000pt;}
.y92{bottom:948.354667pt;}
.y11{bottom:961.784000pt;}
.y35{bottom:962.169333pt;}
.y91{bottom:964.294667pt;}
.y1{bottom:966.744000pt;}
.y6f{bottom:970.609333pt;}
.y34{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.ha{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h5{height:54.783356pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x9{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.xa{left:143.168000pt;}
.x8{left:145.786667pt;}
.x6{left:168.541333pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




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