
    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_0ed7794f76452ea9bc495958.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038000;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_7a9d8977884c8e02af98c680.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.038000;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_0f09fa52e158c84cf314e195.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.038000;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_67b72f92fb7a1ae4b27552ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104000;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_29fa9f67a05b917c6f7869bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.038000;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_6fbe357fe30266a1523ce6bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.038000;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_0f5c972b0954e9a14e5622dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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_4a20e768f04a859e7d7e9c06.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.038000;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_f9944c950e3a036d9273681e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.038000;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:ffa;src:url('chunks/assets/font_4b8f1524ca12173de58149b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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:ffb;src:url('chunks/assets/font_9ecd681af720e4fc136751d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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:ffc;src:url('chunks/assets/font_4b8f1524ca12173de58149b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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:ffd;src:url('chunks/assets/font_9ecd681af720e4fc136751d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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:ffe;src:url('chunks/assets/font_aaaab346aa31b46bfad17ae9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-2.506800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.507400px;}
.v3{vertical-align:5.014200px;}
.ls7{letter-spacing:-152.250000px;}
.ls6{letter-spacing:-134.850000px;}
.ls3{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.240704px;}
.ls5{letter-spacing:-0.120352px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.120352px;}
.ls0{letter-spacing:3214.281000px;}
.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:-35.280000px;}
.ws1{word-spacing:-33.840000px;}
.ws2{word-spacing:-32.976000px;}
.ws7{word-spacing:-27.199597px;}
.ws4{word-spacing:-27.079245px;}
.ws3{word-spacing:-27.000000px;}
.ws8{word-spacing:-26.958893px;}
.ws13{word-spacing:-6.804000px;}
.wsf{word-spacing:-2.016000px;}
.ws17{word-spacing:-0.120352px;}
.ws9{word-spacing:0.000000px;}
.ws16{word-spacing:0.120352px;}
.ws15{word-spacing:0.240704px;}
.ws14{word-spacing:0.972000px;}
.wse{word-spacing:1.152000px;}
.wsd{word-spacing:1.440000px;}
.ws12{word-spacing:5.616000px;}
.ws10{word-spacing:7.920000px;}
.wsb{word-spacing:8.064000px;}
.ws11{word-spacing:9.504000px;}
.wsc{word-spacing:11.664000px;}
.wsa{word-spacing:14.256000px;}
.ws18{word-spacing:31.842000px;}
.ws19{word-spacing:100.572000px;}
.ws1a{word-spacing:105.966000px;}
.ws5{word-spacing:498.006086px;}
.ws6{word-spacing:764.906153px;}
._1a{margin-left:-81.340800px;}
._2a{margin-left:-71.166000px;}
._27{margin-left:-55.504800px;}
._1d{margin-left:-50.927400px;}
._6{margin-left:-49.110000px;}
._24{margin-left:-47.994000px;}
._22{margin-left:-43.200000px;}
._1b{margin-left:-39.542400px;}
._c{margin-left:-38.533200px;}
._29{margin-left:-33.945600px;}
._2c{margin-left:-29.527200px;}
._19{margin-left:-21.036600px;}
._9{margin-left:-17.802000px;}
._1c{margin-left:-14.638800px;}
._1e{margin-left:-11.457600px;}
._d{margin-left:-10.375800px;}
._4{margin-left:-9.048000px;}
._2{margin-left:-7.308000px;}
._1{margin-left:-5.950800px;}
._5{margin-left:-3.978000px;}
._0{margin-left:-2.784000px;}
._3{margin-left:-1.740000px;}
._8{width:1.434000px;}
._25{width:2.988000px;}
._a{width:4.066800px;}
._7{width:5.310000px;}
._b{width:6.999600px;}
._16{width:8.280000px;}
._11{width:9.942000px;}
._f{width:11.689200px;}
._10{width:13.370400px;}
._18{width:14.391600px;}
._e{width:16.042800px;}
._15{width:17.500800px;}
._28{width:18.998400px;}
._14{width:20.104800px;}
._17{width:21.847200px;}
._12{width:23.241600px;}
._1f{width:24.940800px;}
._13{width:26.971200px;}
._23{width:28.176000px;}
._21{width:40.798800px;}
._20{width:43.560000px;}
._2b{width:60.760800px;}
._2f{width:69.045000px;}
._2e{width:142.158000px;}
._30{width:173.217000px;}
._26{width:474.288000px;}
._2d{width:629.459837px;}
.fc7{color:transparent;}
.fc6{color:rgb(4,6,6);}
.fc4{color:rgb(66,178,60);}
.fc3{color:rgb(35,80,164);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(210,32,39);}
.fc0{color:rgb(227,194,25);}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:120.352200px;}
.fs2{font-size:144.000000px;}
.fs8{font-size:174.000000px;}
.fs1{font-size:180.000000px;}
.fs3{font-size:186.000000px;}
.fs0{font-size:348.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:0.858000px;}
.ya4{bottom:83.609986px;}
.y88{bottom:86.967600px;}
.y86{bottom:91.206600px;}
.y87{bottom:116.964600px;}
.ya3{bottom:119.956350px;}
.y85{bottom:121.203600px;}
.y97{bottom:184.289700px;}
.ya5{bottom:203.325450px;}
.y9f{bottom:203.952150px;}
.y60{bottom:242.090850px;}
.y5f{bottom:287.090850px;}
.y9e{bottom:293.589450px;}
.y46{bottom:299.043750px;}
.y5e{bottom:332.090850px;}
.y45{bottom:344.043750px;}
.y5d{bottom:377.090850px;}
.y9d{bottom:381.972900px;}
.y44{bottom:389.043750px;}
.y5c{bottom:422.090850px;}
.y43{bottom:434.043750px;}
.ya2{bottom:464.725036px;}
.y5b{bottom:467.090850px;}
.y42{bottom:479.043750px;}
.ya1{bottom:501.071400px;}
.y5a{bottom:512.090850px;}
.y41{bottom:524.043750px;}
.y59{bottom:557.090850px;}
.y40{bottom:569.043750px;}
.y9b{bottom:584.440200px;}
.y3f{bottom:614.043750px;}
.y58{bottom:614.078850px;}
.y9a{bottom:628.318500px;}
.y3e{bottom:659.043750px;}
.y57{bottom:659.078850px;}
.y9c{bottom:672.823800px;}
.y3d{bottom:704.043750px;}
.y56{bottom:704.078850px;}
.y3c{bottom:749.043750px;}
.y55{bottom:749.078850px;}
.y99{bottom:761.207250px;}
.y3b{bottom:794.043750px;}
.y54{bottom:794.078850px;}
.y53{bottom:839.078850px;}
.y52{bottom:884.078850px;}
.y3a{bottom:896.715750px;}
.y47{bottom:905.222400px;}
.y51{bottom:941.066850px;}
.y39{bottom:941.715750px;}
.y50{bottom:986.066850px;}
.y38{bottom:986.715750px;}
.y4f{bottom:1031.066850px;}
.y37{bottom:1031.715750px;}
.y4e{bottom:1076.066850px;}
.y36{bottom:1076.715750px;}
.y4d{bottom:1121.066850px;}
.y35{bottom:1121.715750px;}
.y4c{bottom:1166.066850px;}
.y34{bottom:1166.715750px;}
.y4b{bottom:1211.066850px;}
.y33{bottom:1211.715750px;}
.y4a{bottom:1256.066850px;}
.y32{bottom:1256.715750px;}
.y31{bottom:1301.715750px;}
.y48{bottom:1327.036800px;}
.y30{bottom:1388.655750px;}
.y75{bottom:1484.352600px;}
.y74{bottom:1520.343600px;}
.y2e{bottom:1526.586750px;}
.y2d{bottom:1571.586750px;}
.y84{bottom:1574.559600px;}
.y83{bottom:1604.556600px;}
.y2c{bottom:1616.586750px;}
.y82{bottom:1634.553600px;}
.y2b{bottom:1661.586750px;}
.y73{bottom:1681.182600px;}
.y78{bottom:1683.342600px;}
.y2a{bottom:1706.586750px;}
.y72{bottom:1717.173600px;}
.y77{bottom:1719.333600px;}
.y29{bottom:1751.586750px;}
.y71{bottom:1753.164600px;}
.y76{bottom:1755.324600px;}
.y28{bottom:1796.586750px;}
.y81{bottom:1817.991600px;}
.y27{bottom:1841.586750px;}
.y80{bottom:1847.988600px;}
.y96{bottom:1853.980500px;}
.y90{bottom:1870.905600px;}
.y98{bottom:1874.299500px;}
.y7f{bottom:1877.985600px;}
.y2f{bottom:1927.846200px;}
.y70{bottom:1939.113600px;}
.y94{bottom:1953.657586px;}
.y6f{bottom:1975.104600px;}
.y93{bottom:1990.003950px;}
.y6e{bottom:2011.095600px;}
.ya6{bottom:2042.522100px;}
.y25{bottom:2046.169950px;}
.y6d{bottom:2063.799600px;}
.y95{bottom:2073.373050px;}
.y8f{bottom:2073.999750px;}
.y24{bottom:2091.169950px;}
.y6c{bottom:2099.790600px;}
.y6b{bottom:2135.781600px;}
.y23{bottom:2136.169950px;}
.y8e{bottom:2163.637050px;}
.y22{bottom:2181.169950px;}
.y6a{bottom:2194.857600px;}
.y21{bottom:2226.169950px;}
.y69{bottom:2230.848600px;}
.y8d{bottom:2252.020500px;}
.y20{bottom:2271.169950px;}
.y68{bottom:2287.737600px;}
.y67{bottom:2323.728600px;}
.y92{bottom:2334.772636px;}
.y66{bottom:2359.719600px;}
.y91{bottom:2371.119000px;}
.y7e{bottom:2412.882600px;}
.y7d{bottom:2442.879600px;}
.y8b{bottom:2454.487800px;}
.y7c{bottom:2472.876600px;}
.y8a{bottom:2498.366100px;}
.y7b{bottom:2502.873600px;}
.y7a{bottom:2532.870600px;}
.y8c{bottom:2542.871400px;}
.y79{bottom:2562.867600px;}
.ya8{bottom:2609.903700px;}
.y89{bottom:2631.254850px;}
.ya7{bottom:2641.412700px;}
.y65{bottom:2710.240200px;}
.y64{bottom:2755.240200px;}
.y1f{bottom:2767.187250px;}
.y63{bottom:2800.240200px;}
.y62{bottom:2845.240200px;}
.y26{bottom:2863.806750px;}
.y61{bottom:2890.240200px;}
.y1e{bottom:2960.679150px;}
.y49{bottom:2961.744300px;}
.y1a{bottom:3166.727100px;}
.y19{bottom:3211.727100px;}
.y18{bottom:3256.727100px;}
.y17{bottom:3301.727100px;}
.y16{bottom:3391.727100px;}
.y1c{bottom:3435.111000px;}
.y15{bottom:3436.727100px;}
.y14{bottom:3526.727100px;}
.y13{bottom:3571.727100px;}
.y12{bottom:3616.727100px;}
.ya{bottom:3641.418150px;}
.y11{bottom:3661.727100px;}
.yb{bottom:3668.064300px;}
.y10{bottom:3706.727100px;}
.yf{bottom:3751.727100px;}
.ye{bottom:3796.727100px;}
.yd{bottom:3841.727100px;}
.y1b{bottom:3884.175000px;}
.yc{bottom:3886.727100px;}
.y1d{bottom:3983.355000px;}
.y9{bottom:4075.227600px;}
.y7{bottom:4240.596000px;}
.y6{bottom:4285.596000px;}
.y5{bottom:4330.596000px;}
.y8{bottom:4401.566100px;}
.y4{bottom:4593.862050px;}
.ya9{bottom:4608.465450px;}
.y3{bottom:4647.862050px;}
.y2{bottom:4795.046850px;}
.y1{bottom:4899.446850px;}
.h9{height:58.896000px;}
.h6{height:68.712000px;}
.hc{height:82.272012px;}
.hf{height:83.388560px;}
.hd{height:84.779412px;}
.he{height:87.286212px;}
.ha{height:88.344000px;}
.hb{height:96.768000px;}
.h4{height:117.792000px;}
.h8{height:118.618800px;}
.h7{height:129.024000px;}
.h3{height:147.240000px;}
.h5{height:152.148000px;}
.h12{height:155.904000px;}
.h11{height:204.735000px;}
.h2{height:284.664000px;}
.h10{height:814.803000px;}
.h1{height:5122.500000px;}
.h0{height:5122.845000px;}
.w3{width:56.868000px;}
.w2{width:562.776000px;}
.w0{width:3638.910000px;}
.w1{width:3639.000000px;}
.x2e{left:-625.346250px;}
.x33{left:-614.165850px;}
.x2d{left:-590.803650px;}
.x36{left:-588.553609px;}
.x31{left:-583.433400px;}
.x32{left:-559.612500px;}
.x35{left:-520.344000px;}
.x34{left:-503.585700px;}
.x2f{left:-332.506950px;}
.x38{left:-322.270003px;}
.x30{left:-270.979050px;}
.x37{left:-268.773450px;}
.x0{left:0.000000px;}
.x1e{left:135.509400px;}
.x3a{left:173.728350px;}
.x9{left:182.444850px;}
.xb{left:184.905600px;}
.x8{left:186.678750px;}
.x3{left:200.359350px;}
.x2{left:202.641750px;}
.xa{left:204.403350px;}
.xf{left:220.153050px;}
.xc{left:222.625800px;}
.xe{left:224.404950px;}
.x10{left:542.281050px;}
.x4{left:566.502900px;}
.x2b{left:663.579900px;}
.x5{left:701.600250px;}
.xd{left:805.357800px;}
.x7{left:1158.822750px;}
.x6{left:1208.232000px;}
.x11{left:1300.500000px;}
.x1{left:1399.039500px;}
.x1d{left:1819.445400px;}
.x12{left:1853.468400px;}
.x14{left:1856.018250px;}
.x13{left:1858.769400px;}
.x15{left:1861.256400px;}
.x1c{left:1866.830400px;}
.x18{left:1873.607400px;}
.x20{left:1887.177750px;}
.x25{left:1898.358150px;}
.x1f{left:1921.720350px;}
.x28{left:1923.970391px;}
.x23{left:1929.090600px;}
.x24{left:1952.911500px;}
.x27{left:1992.180000px;}
.x26{left:2008.938300px;}
.x21{left:2180.017050px;}
.x2a{left:2190.253997px;}
.x22{left:2241.544950px;}
.x29{left:2243.750550px;}
.x2c{left:2446.602000px;}
.x39{left:2464.491900px;}
.x1a{left:2467.877400px;}
.x16{left:2480.351400px;}
.x17{left:2545.475400px;}
.x1b{left:2547.608400px;}
.x19{left:2555.465400px;}
@media print{
.v1{vertical-align:-2.228267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.228800pt;}
.v3{vertical-align:4.457067pt;}
.ls7{letter-spacing:-135.333333pt;}
.ls6{letter-spacing:-119.866667pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.213959pt;}
.ls5{letter-spacing:-0.106980pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106980pt;}
.ls0{letter-spacing:2857.138667pt;}
.ws0{word-spacing:-31.360000pt;}
.ws1{word-spacing:-30.080000pt;}
.ws2{word-spacing:-29.312000pt;}
.ws7{word-spacing:-24.177420pt;}
.ws4{word-spacing:-24.070440pt;}
.ws3{word-spacing:-24.000000pt;}
.ws8{word-spacing:-23.963460pt;}
.ws13{word-spacing:-6.048000pt;}
.wsf{word-spacing:-1.792000pt;}
.ws17{word-spacing:-0.106980pt;}
.ws9{word-spacing:0.000000pt;}
.ws16{word-spacing:0.106980pt;}
.ws15{word-spacing:0.213959pt;}
.ws14{word-spacing:0.864000pt;}
.wse{word-spacing:1.024000pt;}
.wsd{word-spacing:1.280000pt;}
.ws12{word-spacing:4.992000pt;}
.ws10{word-spacing:7.040000pt;}
.wsb{word-spacing:7.168000pt;}
.ws11{word-spacing:8.448000pt;}
.wsc{word-spacing:10.368000pt;}
.wsa{word-spacing:12.672000pt;}
.ws18{word-spacing:28.304000pt;}
.ws19{word-spacing:89.397333pt;}
.ws1a{word-spacing:94.192000pt;}
.ws5{word-spacing:442.672076pt;}
.ws6{word-spacing:679.916580pt;}
._1a{margin-left:-72.302933pt;}
._2a{margin-left:-63.258667pt;}
._27{margin-left:-49.337600pt;}
._1d{margin-left:-45.268800pt;}
._6{margin-left:-43.653333pt;}
._24{margin-left:-42.661333pt;}
._22{margin-left:-38.400000pt;}
._1b{margin-left:-35.148800pt;}
._c{margin-left:-34.251733pt;}
._29{margin-left:-30.173867pt;}
._2c{margin-left:-26.246400pt;}
._19{margin-left:-18.699200pt;}
._9{margin-left:-15.824000pt;}
._1c{margin-left:-13.012267pt;}
._1e{margin-left:-10.184533pt;}
._d{margin-left:-9.222933pt;}
._4{margin-left:-8.042667pt;}
._2{margin-left:-6.496000pt;}
._1{margin-left:-5.289600pt;}
._5{margin-left:-3.536000pt;}
._0{margin-left:-2.474667pt;}
._3{margin-left:-1.546667pt;}
._8{width:1.274667pt;}
._25{width:2.656000pt;}
._a{width:3.614933pt;}
._7{width:4.720000pt;}
._b{width:6.221867pt;}
._16{width:7.360000pt;}
._11{width:8.837333pt;}
._f{width:10.390400pt;}
._10{width:11.884800pt;}
._18{width:12.792533pt;}
._e{width:14.260267pt;}
._15{width:15.556267pt;}
._28{width:16.887467pt;}
._14{width:17.870933pt;}
._17{width:19.419733pt;}
._12{width:20.659200pt;}
._1f{width:22.169600pt;}
._13{width:23.974400pt;}
._23{width:25.045333pt;}
._21{width:36.265600pt;}
._20{width:38.720000pt;}
._2b{width:54.009600pt;}
._2f{width:61.373333pt;}
._2e{width:126.362667pt;}
._30{width:153.970667pt;}
._26{width:421.589333pt;}
._2d{width:559.519855pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:106.979733pt;}
.fs2{font-size:128.000000pt;}
.fs8{font-size:154.666667pt;}
.fs1{font-size:160.000000pt;}
.fs3{font-size:165.333333pt;}
.fs0{font-size:309.333333pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:0.762667pt;}
.ya4{bottom:74.319987pt;}
.y88{bottom:77.304533pt;}
.y86{bottom:81.072533pt;}
.y87{bottom:103.968533pt;}
.ya3{bottom:106.627867pt;}
.y85{bottom:107.736533pt;}
.y97{bottom:163.813067pt;}
.ya5{bottom:180.733733pt;}
.y9f{bottom:181.290800pt;}
.y60{bottom:215.191867pt;}
.y5f{bottom:255.191867pt;}
.y9e{bottom:260.968400pt;}
.y46{bottom:265.816667pt;}
.y5e{bottom:295.191867pt;}
.y45{bottom:305.816667pt;}
.y5d{bottom:335.191867pt;}
.y9d{bottom:339.531467pt;}
.y44{bottom:345.816667pt;}
.y5c{bottom:375.191867pt;}
.y43{bottom:385.816667pt;}
.ya2{bottom:413.088921pt;}
.y5b{bottom:415.191867pt;}
.y42{bottom:425.816667pt;}
.ya1{bottom:445.396800pt;}
.y5a{bottom:455.191867pt;}
.y41{bottom:465.816667pt;}
.y59{bottom:495.191867pt;}
.y40{bottom:505.816667pt;}
.y9b{bottom:519.502400pt;}
.y3f{bottom:545.816667pt;}
.y58{bottom:545.847867pt;}
.y9a{bottom:558.505333pt;}
.y3e{bottom:585.816667pt;}
.y57{bottom:585.847867pt;}
.y9c{bottom:598.065600pt;}
.y3d{bottom:625.816667pt;}
.y56{bottom:625.847867pt;}
.y3c{bottom:665.816667pt;}
.y55{bottom:665.847867pt;}
.y99{bottom:676.628667pt;}
.y3b{bottom:705.816667pt;}
.y54{bottom:705.847867pt;}
.y53{bottom:745.847867pt;}
.y52{bottom:785.847867pt;}
.y3a{bottom:797.080667pt;}
.y47{bottom:804.642133pt;}
.y51{bottom:836.503867pt;}
.y39{bottom:837.080667pt;}
.y50{bottom:876.503867pt;}
.y38{bottom:877.080667pt;}
.y4f{bottom:916.503867pt;}
.y37{bottom:917.080667pt;}
.y4e{bottom:956.503867pt;}
.y36{bottom:957.080667pt;}
.y4d{bottom:996.503867pt;}
.y35{bottom:997.080667pt;}
.y4c{bottom:1036.503867pt;}
.y34{bottom:1037.080667pt;}
.y4b{bottom:1076.503867pt;}
.y33{bottom:1077.080667pt;}
.y4a{bottom:1116.503867pt;}
.y32{bottom:1117.080667pt;}
.y31{bottom:1157.080667pt;}
.y48{bottom:1179.588267pt;}
.y30{bottom:1234.360667pt;}
.y75{bottom:1319.424533pt;}
.y74{bottom:1351.416533pt;}
.y2e{bottom:1356.966000pt;}
.y2d{bottom:1396.966000pt;}
.y84{bottom:1399.608533pt;}
.y83{bottom:1426.272533pt;}
.y2c{bottom:1436.966000pt;}
.y82{bottom:1452.936533pt;}
.y2b{bottom:1476.966000pt;}
.y73{bottom:1494.384533pt;}
.y78{bottom:1496.304533pt;}
.y2a{bottom:1516.966000pt;}
.y72{bottom:1526.376533pt;}
.y77{bottom:1528.296533pt;}
.y29{bottom:1556.966000pt;}
.y71{bottom:1558.368533pt;}
.y76{bottom:1560.288533pt;}
.y28{bottom:1596.966000pt;}
.y81{bottom:1615.992533pt;}
.y27{bottom:1636.966000pt;}
.y80{bottom:1642.656533pt;}
.y96{bottom:1647.982667pt;}
.y90{bottom:1663.027200pt;}
.y98{bottom:1666.044000pt;}
.y7f{bottom:1669.320533pt;}
.y2f{bottom:1713.641067pt;}
.y70{bottom:1723.656533pt;}
.y94{bottom:1736.584521pt;}
.y6f{bottom:1755.648533pt;}
.y93{bottom:1768.892400pt;}
.y6e{bottom:1787.640533pt;}
.ya6{bottom:1815.575200pt;}
.y25{bottom:1818.817733pt;}
.y6d{bottom:1834.488533pt;}
.y95{bottom:1842.998267pt;}
.y8f{bottom:1843.555333pt;}
.y24{bottom:1858.817733pt;}
.y6c{bottom:1866.480533pt;}
.y6b{bottom:1898.472533pt;}
.y23{bottom:1898.817733pt;}
.y8e{bottom:1923.232933pt;}
.y22{bottom:1938.817733pt;}
.y6a{bottom:1950.984533pt;}
.y21{bottom:1978.817733pt;}
.y69{bottom:1982.976533pt;}
.y8d{bottom:2001.796000pt;}
.y20{bottom:2018.817733pt;}
.y68{bottom:2033.544533pt;}
.y67{bottom:2065.536533pt;}
.y92{bottom:2075.353454pt;}
.y66{bottom:2097.528533pt;}
.y91{bottom:2107.661333pt;}
.y7e{bottom:2144.784533pt;}
.y7d{bottom:2171.448533pt;}
.y8b{bottom:2181.766933pt;}
.y7c{bottom:2198.112533pt;}
.y8a{bottom:2220.769867pt;}
.y7b{bottom:2224.776533pt;}
.y7a{bottom:2251.440533pt;}
.y8c{bottom:2260.330133pt;}
.y79{bottom:2278.104533pt;}
.ya8{bottom:2319.914400pt;}
.y89{bottom:2338.893200pt;}
.ya7{bottom:2347.922400pt;}
.y65{bottom:2409.102400pt;}
.y64{bottom:2449.102400pt;}
.y1f{bottom:2459.722000pt;}
.y63{bottom:2489.102400pt;}
.y62{bottom:2529.102400pt;}
.y26{bottom:2545.606000pt;}
.y61{bottom:2569.102400pt;}
.y1e{bottom:2631.714800pt;}
.y49{bottom:2632.661600pt;}
.y1a{bottom:2814.868533pt;}
.y19{bottom:2854.868533pt;}
.y18{bottom:2894.868533pt;}
.y17{bottom:2934.868533pt;}
.y16{bottom:3014.868533pt;}
.y1c{bottom:3053.432000pt;}
.y15{bottom:3054.868533pt;}
.y14{bottom:3134.868533pt;}
.y13{bottom:3174.868533pt;}
.y12{bottom:3214.868533pt;}
.ya{bottom:3236.816133pt;}
.y11{bottom:3254.868533pt;}
.yb{bottom:3260.501600pt;}
.y10{bottom:3294.868533pt;}
.yf{bottom:3334.868533pt;}
.ye{bottom:3374.868533pt;}
.yd{bottom:3414.868533pt;}
.y1b{bottom:3452.600000pt;}
.yc{bottom:3454.868533pt;}
.y1d{bottom:3540.760000pt;}
.y9{bottom:3622.424533pt;}
.y7{bottom:3769.418667pt;}
.y6{bottom:3809.418667pt;}
.y5{bottom:3849.418667pt;}
.y8{bottom:3912.503200pt;}
.y4{bottom:4083.432933pt;}
.ya9{bottom:4096.413733pt;}
.y3{bottom:4131.432933pt;}
.y2{bottom:4262.263867pt;}
.y1{bottom:4355.063867pt;}
.h9{height:52.352000pt;}
.h6{height:61.077333pt;}
.hc{height:73.130677pt;}
.hf{height:74.123165pt;}
.hd{height:75.359477pt;}
.he{height:77.587744pt;}
.ha{height:78.528000pt;}
.hb{height:86.016000pt;}
.h4{height:104.704000pt;}
.h8{height:105.438933pt;}
.h7{height:114.688000pt;}
.h3{height:130.880000pt;}
.h5{height:135.242667pt;}
.h12{height:138.581333pt;}
.h11{height:181.986667pt;}
.h2{height:253.034667pt;}
.h10{height:724.269333pt;}
.h1{height:4553.333333pt;}
.h0{height:4553.640000pt;}
.w3{width:50.549333pt;}
.w2{width:500.245333pt;}
.w0{width:3234.586667pt;}
.w1{width:3234.666667pt;}
.x2e{left:-555.863333pt;}
.x33{left:-545.925200pt;}
.x2d{left:-525.158800pt;}
.x36{left:-523.158764pt;}
.x31{left:-518.607467pt;}
.x32{left:-497.433333pt;}
.x35{left:-462.528000pt;}
.x34{left:-447.631733pt;}
.x2f{left:-295.561733pt;}
.x38{left:-286.462225pt;}
.x30{left:-240.870267pt;}
.x37{left:-238.909733pt;}
.x0{left:0.000000pt;}
.x1e{left:120.452800pt;}
.x3a{left:154.425200pt;}
.x9{left:162.173200pt;}
.xb{left:164.360533pt;}
.x8{left:165.936667pt;}
.x3{left:178.097200pt;}
.x2{left:180.126000pt;}
.xa{left:181.691867pt;}
.xf{left:195.691600pt;}
.xc{left:197.889600pt;}
.xe{left:199.471067pt;}
.x10{left:482.027600pt;}
.x4{left:503.558133pt;}
.x2b{left:589.848800pt;}
.x5{left:623.644667pt;}
.xd{left:715.873600pt;}
.x7{left:1030.064667pt;}
.x6{left:1073.984000pt;}
.x11{left:1156.000000pt;}
.x1{left:1243.590667pt;}
.x1d{left:1617.284800pt;}
.x12{left:1647.527467pt;}
.x14{left:1649.794000pt;}
.x13{left:1652.239467pt;}
.x15{left:1654.450133pt;}
.x1c{left:1659.404800pt;}
.x18{left:1665.428800pt;}
.x20{left:1677.491333pt;}
.x25{left:1687.429467pt;}
.x1f{left:1708.195867pt;}
.x28{left:1710.195903pt;}
.x23{left:1714.747200pt;}
.x24{left:1735.921333pt;}
.x27{left:1770.826667pt;}
.x26{left:1785.722933pt;}
.x21{left:1937.792933pt;}
.x2a{left:1946.892442pt;}
.x22{left:1992.484400pt;}
.x29{left:1994.444933pt;}
.x2c{left:2174.757333pt;}
.x39{left:2190.659467pt;}
.x1a{left:2193.668800pt;}
.x16{left:2204.756800pt;}
.x17{left:2262.644800pt;}
.x1b{left:2264.540800pt;}
.x19{left:2271.524800pt;}
}




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