
    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_dd2fba7ae074627439005bbc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895000;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_5cc3821a4f647e74bb31f98b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.724000;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_cb6f84bbd2e78b1fc67058d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_678dd5e81f19e7d20442b6e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.058000;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_84252bedb5364332dbffa2b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_bb6bf35434aa2f7bc2754c41.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.729000;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_9852c0b5924897ad6053ab33.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916000;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.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,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;}
.ls2{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws41{word-spacing:-18.576000px;}
.ws42{word-spacing:-17.136000px;}
.ws12{word-spacing:-6.336000px;}
.ws35{word-spacing:-5.112000px;}
.ws20{word-spacing:-4.968000px;}
.ws2b{word-spacing:-4.176000px;}
.ws15{word-spacing:-3.600000px;}
.ws25{word-spacing:-3.456000px;}
.wsa{word-spacing:-3.384000px;}
.ws14{word-spacing:-3.240000px;}
.ws32{word-spacing:-3.168000px;}
.ws13{word-spacing:-3.024000px;}
.wsc{word-spacing:-2.952000px;}
.ws34{word-spacing:-2.880000px;}
.ws18{word-spacing:-2.592000px;}
.ws33{word-spacing:-2.520000px;}
.ws2e{word-spacing:-2.376000px;}
.ws1a{word-spacing:-2.160000px;}
.ws8{word-spacing:-2.016000px;}
.ws36{word-spacing:-1.656000px;}
.ws40{word-spacing:-1.512000px;}
.ws2a{word-spacing:-1.368000px;}
.ws23{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.864000px;}
.ws1e{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.360000px;}
.ws0{word-spacing:0.000000px;}
.ws3f{word-spacing:0.288000px;}
.ws38{word-spacing:0.360000px;}
.ws30{word-spacing:0.504000px;}
.ws21{word-spacing:0.648000px;}
.ws17{word-spacing:0.720000px;}
.ws10{word-spacing:1.152000px;}
.ws26{word-spacing:1.440000px;}
.ws2f{word-spacing:1.584000px;}
.ws3{word-spacing:1.728000px;}
.ws5{word-spacing:1.872000px;}
.wsb{word-spacing:2.448000px;}
.ws24{word-spacing:2.736000px;}
.ws22{word-spacing:2.952000px;}
.ws2{word-spacing:3.168000px;}
.ws6{word-spacing:3.240000px;}
.ws19{word-spacing:3.744000px;}
.ws37{word-spacing:3.888000px;}
.ws28{word-spacing:3.960000px;}
.wse{word-spacing:4.032000px;}
.ws16{word-spacing:4.104000px;}
.ws11{word-spacing:4.176000px;}
.ws3b{word-spacing:4.248000px;}
.ws3a{word-spacing:4.320000px;}
.ws4{word-spacing:4.536000px;}
.ws1b{word-spacing:4.608000px;}
.wsf{word-spacing:4.752000px;}
.ws1{word-spacing:5.112000px;}
.ws1c{word-spacing:5.328000px;}
.ws2d{word-spacing:5.472000px;}
.ws7{word-spacing:5.616000px;}
.ws27{word-spacing:5.688000px;}
.ws2c{word-spacing:6.768000px;}
.ws3d{word-spacing:6.912000px;}
.ws9{word-spacing:7.992000px;}
.ws3c{word-spacing:8.136000px;}
.ws3e{word-spacing:8.208000px;}
.ws1f{word-spacing:9.072000px;}
.ws31{word-spacing:9.648000px;}
.ws1d{word-spacing:9.936000px;}
.ws39{word-spacing:10.872000px;}
._6{margin-left:-8.517600px;}
._d{margin-left:-7.344000px;}
._b{margin-left:-5.184000px;}
._3{margin-left:-4.010400px;}
._5{margin-left:-2.448000px;}
._2{margin-left:-1.094400px;}
._0{width:1.533600px;}
._7{width:2.779200px;}
._4{width:3.780000px;}
._8{width:5.090400px;}
._9{width:7.092000px;}
._a{width:9.043200px;}
._c{width:10.101600px;}
._1{width:11.491200px;}
.fc4{color:rgb(231,107,0);}
.fc5{color:rgb(41,47,50);}
.fc3{color:rgb(163,191,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(66,132,0);}
.fc0{color:rgb(142,143,145);}
.fs1{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:94.500000px;}
.y0{bottom:0.000000px;}
.y2{bottom:52.848450px;}
.y3{bottom:64.283550px;}
.y1{bottom:69.048450px;}
.y5d{bottom:122.018850px;}
.y8a{bottom:125.009700px;}
.y27{bottom:131.101650px;}
.y5c{bottom:143.618850px;}
.y89{bottom:146.609700px;}
.y26{bottom:152.701650px;}
.y5b{bottom:165.218850px;}
.y88{bottom:168.209700px;}
.y25{bottom:174.301500px;}
.y5a{bottom:186.818850px;}
.ye3{bottom:189.518850px;}
.y87{bottom:189.809850px;}
.y24{bottom:195.901650px;}
.yc1{bottom:207.509700px;}
.y59{bottom:208.418850px;}
.ye2{bottom:211.118850px;}
.y86{bottom:211.409700px;}
.y23{bottom:217.501650px;}
.yc0{bottom:229.109700px;}
.y58{bottom:230.018850px;}
.y85{bottom:233.009700px;}
.y22{bottom:239.101650px;}
.ybf{bottom:250.709700px;}
.y57{bottom:251.618850px;}
.ye1{bottom:254.318850px;}
.y84{bottom:254.609700px;}
.y21{bottom:260.701650px;}
.y9c{bottom:264.218850px;}
.y56{bottom:273.218850px;}
.ye0{bottom:275.918850px;}
.y20{bottom:282.301500px;}
.y9b{bottom:285.818850px;}
.y83{bottom:291.209700px;}
.ybe{bottom:293.909700px;}
.y55{bottom:294.818850px;}
.y1f{bottom:303.901650px;}
.y9a{bottom:307.418850px;}
.ybd{bottom:315.509700px;}
.y54{bottom:316.418850px;}
.ydf{bottom:319.118850px;}
.y1e{bottom:325.501650px;}
.y99{bottom:329.018850px;}
.y53{bottom:338.018850px;}
.yde{bottom:340.718850px;}
.y1d{bottom:347.101650px;}
.y82{bottom:347.309850px;}
.y98{bottom:350.618850px;}
.ybc{bottom:358.709700px;}
.y52{bottom:359.618850px;}
.y1c{bottom:368.701650px;}
.y81{bottom:368.909700px;}
.y97{bottom:372.218850px;}
.y101{bottom:378.273150px;}
.ybb{bottom:380.309850px;}
.ydd{bottom:383.918850px;}
.y1b{bottom:390.301500px;}
.y80{bottom:390.509700px;}
.y96{bottom:393.818850px;}
.y51{bottom:396.218850px;}
.y100{bottom:399.873150px;}
.yba{bottom:401.909700px;}
.ydc{bottom:405.518850px;}
.y1a{bottom:411.901650px;}
.y7f{bottom:412.109700px;}
.y95{bottom:415.418850px;}
.yff{bottom:421.473150px;}
.ydb{bottom:427.118850px;}
.y50{bottom:430.718850px;}
.y7e{bottom:433.709700px;}
.y94{bottom:437.018850px;}
.yfe{bottom:443.073150px;}
.yb9{bottom:445.109700px;}
.y19{bottom:448.501650px;}
.y4f{bottom:452.318850px;}
.y7d{bottom:455.309700px;}
.y93{bottom:458.618850px;}
.y108{bottom:464.673150px;}
.yb8{bottom:466.709700px;}
.yda{bottom:470.318850px;}
.y4e{bottom:473.918850px;}
.y18{bottom:475.501650px;}
.y7c{bottom:476.909700px;}
.y92{bottom:480.218850px;}
.yfd{bottom:486.273150px;}
.yb7{bottom:488.309700px;}
.y4d{bottom:495.518850px;}
.y7b{bottom:498.509700px;}
.y91{bottom:501.818850px;}
.y107{bottom:507.873150px;}
.yb6{bottom:509.909700px;}
.y17{bottom:510.001650px;}
.yd9{bottom:513.518850px;}
.y4c{bottom:517.118850px;}
.y7a{bottom:520.109700px;}
.y90{bottom:523.418850px;}
.yfc{bottom:529.473150px;}
.yb5{bottom:531.509700px;}
.y4b{bottom:538.718850px;}
.y79{bottom:541.709700px;}
.y8f{bottom:545.018850px;}
.yfb{bottom:551.073150px;}
.yb4{bottom:553.109700px;}
.y16{bottom:553.201650px;}
.yd8{bottom:556.718850px;}
.y4a{bottom:560.318850px;}
.y78{bottom:563.309700px;}
.y8e{bottom:566.618850px;}
.yfa{bottom:572.673150px;}
.y15{bottom:574.801500px;}
.yd7{bottom:578.318850px;}
.y49{bottom:581.918850px;}
.y77{bottom:584.909700px;}
.y8d{bottom:588.218850px;}
.yf9{bottom:594.273150px;}
.yb3{bottom:596.309700px;}
.y14{bottom:596.401650px;}
.yd6{bottom:599.918850px;}
.y76{bottom:606.509700px;}
.y8c{bottom:609.818850px;}
.yf8{bottom:615.873150px;}
.yb2{bottom:617.909700px;}
.y13{bottom:618.001650px;}
.y48{bottom:618.518850px;}
.yd5{bottom:621.518850px;}
.y75{bottom:628.109700px;}
.y8b{bottom:631.418850px;}
.y106{bottom:637.473150px;}
.yb1{bottom:639.509700px;}
.y12{bottom:639.601650px;}
.yd4{bottom:643.118850px;}
.y47{bottom:653.018850px;}
.yf7{bottom:659.073150px;}
.yb0{bottom:661.109700px;}
.y11{bottom:661.201650px;}
.y74{bottom:664.709700px;}
.yd3{bottom:664.718850px;}
.y46{bottom:674.618850px;}
.yf6{bottom:680.673150px;}
.yaf{bottom:682.709700px;}
.y10{bottom:682.801500px;}
.y45{bottom:696.218850px;}
.yf5{bottom:702.273150px;}
.yf{bottom:704.401650px;}
.yd2{bottom:707.918850px;}
.y44{bottom:717.818850px;}
.y73{bottom:720.809700px;}
.yf4{bottom:723.873150px;}
.yae{bottom:725.909700px;}
.yd1{bottom:729.518850px;}
.y43{bottom:739.418850px;}
.y72{bottom:742.409700px;}
.yf3{bottom:745.473150px;}
.yad{bottom:747.509700px;}
.ye{bottom:747.601650px;}
.y42{bottom:761.018850px;}
.y71{bottom:764.009700px;}
.y105{bottom:767.073150px;}
.yac{bottom:769.109850px;}
.yd{bottom:769.201500px;}
.yd0{bottom:772.718850px;}
.y41{bottom:782.618700px;}
.y70{bottom:785.609850px;}
.yf2{bottom:788.673150px;}
.yab{bottom:790.709700px;}
.yc{bottom:790.801500px;}
.ycf{bottom:794.318850px;}
.y40{bottom:804.218850px;}
.y6f{bottom:807.209700px;}
.yf1{bottom:810.273150px;}
.yaa{bottom:812.309850px;}
.yb{bottom:812.401500px;}
.yce{bottom:815.918850px;}
.y3f{bottom:825.818850px;}
.y6e{bottom:828.809850px;}
.yf0{bottom:831.873150px;}
.ya{bottom:834.001500px;}
.ycd{bottom:837.518850px;}
.y3e{bottom:847.418850px;}
.y6d{bottom:850.409700px;}
.yef{bottom:853.473150px;}
.ya9{bottom:855.509700px;}
.y9{bottom:855.601500px;}
.ycc{bottom:859.118700px;}
.y3d{bottom:869.018850px;}
.y6c{bottom:872.009700px;}
.yee{bottom:875.073150px;}
.ya8{bottom:877.109850px;}
.y8{bottom:877.201500px;}
.ycb{bottom:880.718850px;}
.y3c{bottom:890.618700px;}
.y6b{bottom:893.609850px;}
.yed{bottom:896.673150px;}
.ya7{bottom:898.709700px;}
.y7{bottom:898.801500px;}
.yca{bottom:902.318850px;}
.y3b{bottom:912.218850px;}
.y6a{bottom:915.209700px;}
.yec{bottom:918.273150px;}
.ya6{bottom:920.309850px;}
.y6{bottom:920.401500px;}
.y3a{bottom:933.818850px;}
.y69{bottom:936.809850px;}
.y104{bottom:939.873150px;}
.ya5{bottom:941.909700px;}
.y5{bottom:942.001500px;}
.yc9{bottom:945.518850px;}
.y39{bottom:955.418850px;}
.y68{bottom:958.409700px;}
.yeb{bottom:961.473150px;}
.ya4{bottom:963.509700px;}
.y4{bottom:963.601500px;}
.yc8{bottom:967.118700px;}
.y38{bottom:977.018850px;}
.y67{bottom:980.009700px;}
.yea{bottom:983.073150px;}
.ya3{bottom:985.109850px;}
.yc7{bottom:988.718850px;}
.y37{bottom:998.618700px;}
.y66{bottom:1001.609850px;}
.y103{bottom:1004.673150px;}
.yc6{bottom:1010.318850px;}
.y2a{bottom:1016.158500px;}
.y36{bottom:1020.218850px;}
.y65{bottom:1023.209700px;}
.y2d{bottom:1026.109200px;}
.ye9{bottom:1026.273150px;}
.ya2{bottom:1028.309850px;}
.y35{bottom:1041.818850px;}
.y29{bottom:1043.158500px;}
.y64{bottom:1044.809850px;}
.y2c{bottom:1047.709050px;}
.ye8{bottom:1047.873150px;}
.ya1{bottom:1049.909700px;}
.yc5{bottom:1053.518850px;}
.y34{bottom:1063.418850px;}
.y63{bottom:1066.409700px;}
.y2b{bottom:1069.309050px;}
.ye7{bottom:1069.473150px;}
.ya0{bottom:1071.509700px;}
.y28{bottom:1074.658500px;}
.yc4{bottom:1075.118850px;}
.y33{bottom:1085.018850px;}
.y62{bottom:1088.009700px;}
.y102{bottom:1091.073150px;}
.y9f{bottom:1093.109700px;}
.yc3{bottom:1096.718850px;}
.y32{bottom:1106.618850px;}
.y61{bottom:1109.609850px;}
.ye6{bottom:1112.673150px;}
.y9e{bottom:1114.709700px;}
.yc2{bottom:1118.318850px;}
.y31{bottom:1128.218850px;}
.y60{bottom:1131.209700px;}
.ye5{bottom:1134.273150px;}
.y30{bottom:1149.818850px;}
.y5f{bottom:1152.809850px;}
.ye4{bottom:1155.873150px;}
.y9d{bottom:1157.909700px;}
.y2f{bottom:1171.418850px;}
.y5e{bottom:1189.409700px;}
.y2e{bottom:1193.018850px;}
.h3{height:25.632000px;}
.h2{height:39.582000px;}
.h8{height:51.696000px;}
.h4{height:57.024000px;}
.h5{height:61.920000px;}
.h7{height:67.851000px;}
.h6{height:69.552000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:57.033450px;}
.x3{left:58.520250px;}
.x7{left:87.750000px;}
.x8{left:485.531850px;}
.x9{left:486.956700px;}
.x6{left:608.768850px;}
.x5{left:625.959150px;}
.x4{left:672.128250px;}
.x2{left:828.183750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws41{word-spacing:-16.512000pt;}
.ws42{word-spacing:-15.232000pt;}
.ws12{word-spacing:-5.632000pt;}
.ws35{word-spacing:-4.544000pt;}
.ws20{word-spacing:-4.416000pt;}
.ws2b{word-spacing:-3.712000pt;}
.ws15{word-spacing:-3.200000pt;}
.ws25{word-spacing:-3.072000pt;}
.wsa{word-spacing:-3.008000pt;}
.ws14{word-spacing:-2.880000pt;}
.ws32{word-spacing:-2.816000pt;}
.ws13{word-spacing:-2.688000pt;}
.wsc{word-spacing:-2.624000pt;}
.ws34{word-spacing:-2.560000pt;}
.ws18{word-spacing:-2.304000pt;}
.ws33{word-spacing:-2.240000pt;}
.ws2e{word-spacing:-2.112000pt;}
.ws1a{word-spacing:-1.920000pt;}
.ws8{word-spacing:-1.792000pt;}
.ws36{word-spacing:-1.472000pt;}
.ws40{word-spacing:-1.344000pt;}
.ws2a{word-spacing:-1.216000pt;}
.ws23{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.768000pt;}
.ws1e{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.320000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.256000pt;}
.ws38{word-spacing:0.320000pt;}
.ws30{word-spacing:0.448000pt;}
.ws21{word-spacing:0.576000pt;}
.ws17{word-spacing:0.640000pt;}
.ws10{word-spacing:1.024000pt;}
.ws26{word-spacing:1.280000pt;}
.ws2f{word-spacing:1.408000pt;}
.ws3{word-spacing:1.536000pt;}
.ws5{word-spacing:1.664000pt;}
.wsb{word-spacing:2.176000pt;}
.ws24{word-spacing:2.432000pt;}
.ws22{word-spacing:2.624000pt;}
.ws2{word-spacing:2.816000pt;}
.ws6{word-spacing:2.880000pt;}
.ws19{word-spacing:3.328000pt;}
.ws37{word-spacing:3.456000pt;}
.ws28{word-spacing:3.520000pt;}
.wse{word-spacing:3.584000pt;}
.ws16{word-spacing:3.648000pt;}
.ws11{word-spacing:3.712000pt;}
.ws3b{word-spacing:3.776000pt;}
.ws3a{word-spacing:3.840000pt;}
.ws4{word-spacing:4.032000pt;}
.ws1b{word-spacing:4.096000pt;}
.wsf{word-spacing:4.224000pt;}
.ws1{word-spacing:4.544000pt;}
.ws1c{word-spacing:4.736000pt;}
.ws2d{word-spacing:4.864000pt;}
.ws7{word-spacing:4.992000pt;}
.ws27{word-spacing:5.056000pt;}
.ws2c{word-spacing:6.016000pt;}
.ws3d{word-spacing:6.144000pt;}
.ws9{word-spacing:7.104000pt;}
.ws3c{word-spacing:7.232000pt;}
.ws3e{word-spacing:7.296000pt;}
.ws1f{word-spacing:8.064000pt;}
.ws31{word-spacing:8.576000pt;}
.ws1d{word-spacing:8.832000pt;}
.ws39{word-spacing:9.664000pt;}
._6{margin-left:-7.571200pt;}
._d{margin-left:-6.528000pt;}
._b{margin-left:-4.608000pt;}
._3{margin-left:-3.564800pt;}
._5{margin-left:-2.176000pt;}
._2{margin-left:-0.972800pt;}
._0{width:1.363200pt;}
._7{width:2.470400pt;}
._4{width:3.360000pt;}
._8{width:4.524800pt;}
._9{width:6.304000pt;}
._a{width:8.038400pt;}
._c{width:8.979200pt;}
._1{width:10.214400pt;}
.fs1{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:84.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:46.976400pt;}
.y3{bottom:57.140933pt;}
.y1{bottom:61.376400pt;}
.y5d{bottom:108.461200pt;}
.y8a{bottom:111.119733pt;}
.y27{bottom:116.534800pt;}
.y5c{bottom:127.661200pt;}
.y89{bottom:130.319733pt;}
.y26{bottom:135.734800pt;}
.y5b{bottom:146.861200pt;}
.y88{bottom:149.519733pt;}
.y25{bottom:154.934667pt;}
.y5a{bottom:166.061200pt;}
.ye3{bottom:168.461200pt;}
.y87{bottom:168.719867pt;}
.y24{bottom:174.134800pt;}
.yc1{bottom:184.453067pt;}
.y59{bottom:185.261200pt;}
.ye2{bottom:187.661200pt;}
.y86{bottom:187.919733pt;}
.y23{bottom:193.334800pt;}
.yc0{bottom:203.653067pt;}
.y58{bottom:204.461200pt;}
.y85{bottom:207.119733pt;}
.y22{bottom:212.534800pt;}
.ybf{bottom:222.853067pt;}
.y57{bottom:223.661200pt;}
.ye1{bottom:226.061200pt;}
.y84{bottom:226.319733pt;}
.y21{bottom:231.734800pt;}
.y9c{bottom:234.861200pt;}
.y56{bottom:242.861200pt;}
.ye0{bottom:245.261200pt;}
.y20{bottom:250.934667pt;}
.y9b{bottom:254.061200pt;}
.y83{bottom:258.853067pt;}
.ybe{bottom:261.253067pt;}
.y55{bottom:262.061200pt;}
.y1f{bottom:270.134800pt;}
.y9a{bottom:273.261200pt;}
.ybd{bottom:280.453067pt;}
.y54{bottom:281.261200pt;}
.ydf{bottom:283.661200pt;}
.y1e{bottom:289.334800pt;}
.y99{bottom:292.461200pt;}
.y53{bottom:300.461200pt;}
.yde{bottom:302.861200pt;}
.y1d{bottom:308.534800pt;}
.y82{bottom:308.719867pt;}
.y98{bottom:311.661200pt;}
.ybc{bottom:318.853067pt;}
.y52{bottom:319.661200pt;}
.y1c{bottom:327.734800pt;}
.y81{bottom:327.919733pt;}
.y97{bottom:330.861200pt;}
.y101{bottom:336.242800pt;}
.ybb{bottom:338.053200pt;}
.ydd{bottom:341.261200pt;}
.y1b{bottom:346.934667pt;}
.y80{bottom:347.119733pt;}
.y96{bottom:350.061200pt;}
.y51{bottom:352.194533pt;}
.y100{bottom:355.442800pt;}
.yba{bottom:357.253067pt;}
.ydc{bottom:360.461200pt;}
.y1a{bottom:366.134800pt;}
.y7f{bottom:366.319733pt;}
.y95{bottom:369.261200pt;}
.yff{bottom:374.642800pt;}
.ydb{bottom:379.661200pt;}
.y50{bottom:382.861200pt;}
.y7e{bottom:385.519733pt;}
.y94{bottom:388.461200pt;}
.yfe{bottom:393.842800pt;}
.yb9{bottom:395.653067pt;}
.y19{bottom:398.668133pt;}
.y4f{bottom:402.061200pt;}
.y7d{bottom:404.719733pt;}
.y93{bottom:407.661200pt;}
.y108{bottom:413.042800pt;}
.yb8{bottom:414.853067pt;}
.yda{bottom:418.061200pt;}
.y4e{bottom:421.261200pt;}
.y18{bottom:422.668133pt;}
.y7c{bottom:423.919733pt;}
.y92{bottom:426.861200pt;}
.yfd{bottom:432.242800pt;}
.yb7{bottom:434.053067pt;}
.y4d{bottom:440.461200pt;}
.y7b{bottom:443.119733pt;}
.y91{bottom:446.061200pt;}
.y107{bottom:451.442800pt;}
.yb6{bottom:453.253067pt;}
.y17{bottom:453.334800pt;}
.yd9{bottom:456.461200pt;}
.y4c{bottom:459.661200pt;}
.y7a{bottom:462.319733pt;}
.y90{bottom:465.261200pt;}
.yfc{bottom:470.642800pt;}
.yb5{bottom:472.453067pt;}
.y4b{bottom:478.861200pt;}
.y79{bottom:481.519733pt;}
.y8f{bottom:484.461200pt;}
.yfb{bottom:489.842800pt;}
.yb4{bottom:491.653067pt;}
.y16{bottom:491.734800pt;}
.yd8{bottom:494.861200pt;}
.y4a{bottom:498.061200pt;}
.y78{bottom:500.719733pt;}
.y8e{bottom:503.661200pt;}
.yfa{bottom:509.042800pt;}
.y15{bottom:510.934667pt;}
.yd7{bottom:514.061200pt;}
.y49{bottom:517.261200pt;}
.y77{bottom:519.919733pt;}
.y8d{bottom:522.861200pt;}
.yf9{bottom:528.242800pt;}
.yb3{bottom:530.053067pt;}
.y14{bottom:530.134800pt;}
.yd6{bottom:533.261200pt;}
.y76{bottom:539.119733pt;}
.y8c{bottom:542.061200pt;}
.yf8{bottom:547.442800pt;}
.yb2{bottom:549.253067pt;}
.y13{bottom:549.334800pt;}
.y48{bottom:549.794533pt;}
.yd5{bottom:552.461200pt;}
.y75{bottom:558.319733pt;}
.y8b{bottom:561.261200pt;}
.y106{bottom:566.642800pt;}
.yb1{bottom:568.453067pt;}
.y12{bottom:568.534800pt;}
.yd4{bottom:571.661200pt;}
.y47{bottom:580.461200pt;}
.yf7{bottom:585.842800pt;}
.yb0{bottom:587.653067pt;}
.y11{bottom:587.734800pt;}
.y74{bottom:590.853067pt;}
.yd3{bottom:590.861200pt;}
.y46{bottom:599.661200pt;}
.yf6{bottom:605.042800pt;}
.yaf{bottom:606.853067pt;}
.y10{bottom:606.934667pt;}
.y45{bottom:618.861200pt;}
.yf5{bottom:624.242800pt;}
.yf{bottom:626.134800pt;}
.yd2{bottom:629.261200pt;}
.y44{bottom:638.061200pt;}
.y73{bottom:640.719733pt;}
.yf4{bottom:643.442800pt;}
.yae{bottom:645.253067pt;}
.yd1{bottom:648.461200pt;}
.y43{bottom:657.261200pt;}
.y72{bottom:659.919733pt;}
.yf3{bottom:662.642800pt;}
.yad{bottom:664.453067pt;}
.ye{bottom:664.534800pt;}
.y42{bottom:676.461200pt;}
.y71{bottom:679.119733pt;}
.y105{bottom:681.842800pt;}
.yac{bottom:683.653200pt;}
.yd{bottom:683.734667pt;}
.yd0{bottom:686.861200pt;}
.y41{bottom:695.661067pt;}
.y70{bottom:698.319867pt;}
.yf2{bottom:701.042800pt;}
.yab{bottom:702.853067pt;}
.yc{bottom:702.934667pt;}
.ycf{bottom:706.061200pt;}
.y40{bottom:714.861200pt;}
.y6f{bottom:717.519733pt;}
.yf1{bottom:720.242800pt;}
.yaa{bottom:722.053200pt;}
.yb{bottom:722.134667pt;}
.yce{bottom:725.261200pt;}
.y3f{bottom:734.061200pt;}
.y6e{bottom:736.719867pt;}
.yf0{bottom:739.442800pt;}
.ya{bottom:741.334667pt;}
.ycd{bottom:744.461200pt;}
.y3e{bottom:753.261200pt;}
.y6d{bottom:755.919733pt;}
.yef{bottom:758.642800pt;}
.ya9{bottom:760.453067pt;}
.y9{bottom:760.534667pt;}
.ycc{bottom:763.661067pt;}
.y3d{bottom:772.461200pt;}
.y6c{bottom:775.119733pt;}
.yee{bottom:777.842800pt;}
.ya8{bottom:779.653200pt;}
.y8{bottom:779.734667pt;}
.ycb{bottom:782.861200pt;}
.y3c{bottom:791.661067pt;}
.y6b{bottom:794.319867pt;}
.yed{bottom:797.042800pt;}
.ya7{bottom:798.853067pt;}
.y7{bottom:798.934667pt;}
.yca{bottom:802.061200pt;}
.y3b{bottom:810.861200pt;}
.y6a{bottom:813.519733pt;}
.yec{bottom:816.242800pt;}
.ya6{bottom:818.053200pt;}
.y6{bottom:818.134667pt;}
.y3a{bottom:830.061200pt;}
.y69{bottom:832.719867pt;}
.y104{bottom:835.442800pt;}
.ya5{bottom:837.253067pt;}
.y5{bottom:837.334667pt;}
.yc9{bottom:840.461200pt;}
.y39{bottom:849.261200pt;}
.y68{bottom:851.919733pt;}
.yeb{bottom:854.642800pt;}
.ya4{bottom:856.453067pt;}
.y4{bottom:856.534667pt;}
.yc8{bottom:859.661067pt;}
.y38{bottom:868.461200pt;}
.y67{bottom:871.119733pt;}
.yea{bottom:873.842800pt;}
.ya3{bottom:875.653200pt;}
.yc7{bottom:878.861200pt;}
.y37{bottom:887.661067pt;}
.y66{bottom:890.319867pt;}
.y103{bottom:893.042800pt;}
.yc6{bottom:898.061200pt;}
.y2a{bottom:903.252000pt;}
.y36{bottom:906.861200pt;}
.y65{bottom:909.519733pt;}
.y2d{bottom:912.097067pt;}
.ye9{bottom:912.242800pt;}
.ya2{bottom:914.053200pt;}
.y35{bottom:926.061200pt;}
.y29{bottom:927.252000pt;}
.y64{bottom:928.719867pt;}
.y2c{bottom:931.296933pt;}
.ye8{bottom:931.442800pt;}
.ya1{bottom:933.253067pt;}
.yc5{bottom:936.461200pt;}
.y34{bottom:945.261200pt;}
.y63{bottom:947.919733pt;}
.y2b{bottom:950.496933pt;}
.ye7{bottom:950.642800pt;}
.ya0{bottom:952.453067pt;}
.y28{bottom:955.252000pt;}
.yc4{bottom:955.661200pt;}
.y33{bottom:964.461200pt;}
.y62{bottom:967.119733pt;}
.y102{bottom:969.842800pt;}
.y9f{bottom:971.653067pt;}
.yc3{bottom:974.861200pt;}
.y32{bottom:983.661200pt;}
.y61{bottom:986.319867pt;}
.ye6{bottom:989.042800pt;}
.y9e{bottom:990.853067pt;}
.yc2{bottom:994.061200pt;}
.y31{bottom:1002.861200pt;}
.y60{bottom:1005.519733pt;}
.ye5{bottom:1008.242800pt;}
.y30{bottom:1022.061200pt;}
.y5f{bottom:1024.719867pt;}
.ye4{bottom:1027.442800pt;}
.y9d{bottom:1029.253067pt;}
.y2f{bottom:1041.261200pt;}
.y5e{bottom:1057.253067pt;}
.y2e{bottom:1060.461200pt;}
.h3{height:22.784000pt;}
.h2{height:35.184000pt;}
.h8{height:45.952000pt;}
.h4{height:50.688000pt;}
.h5{height:55.040000pt;}
.h7{height:60.312000pt;}
.h6{height:61.824000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.696400pt;}
.x3{left:52.018000pt;}
.x7{left:78.000000pt;}
.x8{left:431.583867pt;}
.x9{left:432.850400pt;}
.x6{left:541.127867pt;}
.x5{left:556.408133pt;}
.x4{left:597.447333pt;}
.x2{left:736.163333pt;}
}




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