
    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_53c5322940be50f5659f13a3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.896000;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_a59be8e0630072e979ba6c64.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8bcc09b8725a1fc4ebfb3e72.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_47e949fef94e2c1d6424ddd4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_23648ed4d6223b74d0b329fd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_a22e89f6b6deff25c7372b6e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_61d0af239ce1d28330fec259.woff')format("woff");}.ff7{font-family:ff7;line-height:0.414000;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_6ce4fa318c45297e5c89061a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.522000;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_a594606ff1fe79444ab26314.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893000;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_9a715c9c3a3184f7573077e1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.686000;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_a6b0228d131bb6ca8aec0d78.woff')format("woff");}.ffb{font-family:ffb;line-height:0.672000;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_f282354bcf6b87ed4b74fc25.woff')format("woff");}.ffc{font-family:ffc;line-height:0.035000;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:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001603px;}
.ls8{letter-spacing:0.002154px;}
.ls3{letter-spacing:0.005400px;}
.ls1{letter-spacing:2.984915px;}
.lsa{letter-spacing:2.990915px;}
.ls5{letter-spacing:14.543412px;}
.ls4{letter-spacing:17.534915px;}
.ls6{letter-spacing:24.686915px;}
.ls7{letter-spacing:24.692915px;}
.ls0{letter-spacing:32.723973px;}
.lsb{letter-spacing:32.728332px;}
.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;}
}
.ws1a{word-spacing:-65.454600px;}
.ws23{word-spacing:-42.637126px;}
.ws1b{word-spacing:-32.544027px;}
.ws1d{word-spacing:-17.096742px;}
.ws22{word-spacing:-15.722195px;}
.wsc{word-spacing:-14.609467px;}
.ws32{word-spacing:-14.347648px;}
.ws13{word-spacing:-14.282194px;}
.ws35{word-spacing:-14.085830px;}
.ws19{word-spacing:-13.496739px;}
.ws17{word-spacing:-13.300375px;}
.ws20{word-spacing:-12.842193px;}
.ws1c{word-spacing:-12.645829px;}
.ws31{word-spacing:-11.860374px;}
.ws3d{word-spacing:-11.467646px;}
.ws33{word-spacing:-11.402191px;}
.ws14{word-spacing:-10.944009px;}
.wsd{word-spacing:-10.878555px;}
.ws30{word-spacing:-10.856881px;}
.ws11{word-spacing:-10.813100px;}
.ws38{word-spacing:-10.551282px;}
.ws3c{word-spacing:-10.027645px;}
.ws25{word-spacing:-9.896736px;}
.wsa{word-spacing:-9.700372px;}
.ws34{word-spacing:-9.569463px;}
.ws26{word-spacing:-9.438553px;}
.ws10{word-spacing:-9.242190px;}
.ws37{word-spacing:-8.784007px;}
.ws21{word-spacing:-8.718553px;}
.ws3a{word-spacing:-8.456734px;}
.ws29{word-spacing:-8.129461px;}
.ws1f{word-spacing:-8.064007px;}
.ws27{word-spacing:-7.867643px;}
.ws6{word-spacing:-7.736734px;}
.wsb{word-spacing:-7.213097px;}
.ws18{word-spacing:-7.016733px;}
.ws36{word-spacing:-6.362187px;}
.ws39{word-spacing:-5.969460px;}
.wse{word-spacing:-5.642187px;}
.ws7{word-spacing:-5.576732px;}
.ws1e{word-spacing:-5.511277px;}
.wsf{word-spacing:-4.202185px;}
.ws9{word-spacing:-3.809458px;}
.ws2e{word-spacing:-3.744003px;}
.ws2f{word-spacing:-3.636769px;}
.ws2a{word-spacing:-3.613094px;}
.ws16{word-spacing:-2.893093px;}
.ws8{word-spacing:-2.827639px;}
.ws2c{word-spacing:-2.762184px;}
.ws3b{word-spacing:-1.060365px;}
.ws24{word-spacing:-0.798546px;}
.ws2b{word-spacing:-0.047821px;}
.ws15{word-spacing:0.000000px;}
.ws28{word-spacing:4.568731px;}
.ws2{word-spacing:23.312640px;}
.ws4{word-spacing:23.384371px;}
.ws2d{word-spacing:26.755738px;}
.ws1{word-spacing:26.827469px;}
.ws3{word-spacing:31.136897px;}
.ws5{word-spacing:31.504255px;}
.ws0{word-spacing:36.978679px;}
.ws12{word-spacing:94.598843px;}
._4{margin-left:-5.810227px;}
._a{margin-left:-4.504904px;}
._0{margin-left:-2.995480px;}
._3{margin-left:-1.936742px;}
._5{width:1.936742px;}
._16{width:2.995480px;}
._1{width:4.447334px;}
._13{width:17.842210px;}
._d{width:20.543896px;}
._18{width:21.665473px;}
._15{width:23.810042px;}
._17{width:25.943348px;}
._e{width:27.021086px;}
._7{width:28.992819px;}
._2{width:31.231021px;}
._19{width:32.296013px;}
._12{width:34.390561px;}
._10{width:36.523667px;}
._11{width:39.534578px;}
._f{width:41.116952px;}
._1a{width:42.518594px;}
._8{width:44.770946px;}
._b{width:49.460351px;}
._9{width:53.160799px;}
._14{width:59.587013px;}
._c{width:80.697600px;}
._6{width:94.684920px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,173,239);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y21{bottom:11.368500px;}
.y54{bottom:59.085000px;}
.y89{bottom:71.515500px;}
.y30{bottom:83.728500px;}
.y53{bottom:92.857500px;}
.y66{bottom:97.872000px;}
.y20{bottom:104.305500px;}
.y88{bottom:105.289500px;}
.y2f{bottom:114.618000px;}
.y1f{bottom:124.629000px;}
.y52{bottom:126.631500px;}
.y65{bottom:131.646000px;}
.y87{bottom:139.062000px;}
.y1e{bottom:144.952500px;}
.y2e{bottom:158.431500px;}
.y64{bottom:165.418500px;}
.y51{bottom:167.278500px;}
.y86{bottom:172.836000px;}
.y1d{bottom:178.726500px;}
.y2d{bottom:178.755000px;}
.y50{bottom:187.602000px;}
.y63{bottom:199.192500px;}
.y85{bottom:206.610000px;}
.y1c{bottom:212.499000px;}
.y2c{bottom:212.529000px;}
.y4f{bottom:225.859500px;}
.y84{bottom:226.933500px;}
.y62{bottom:232.966500px;}
.y1b{bottom:246.273000px;}
.y2b{bottom:246.301500px;}
.y83{bottom:247.257000px;}
.y4e{bottom:259.632000px;}
.y61{bottom:266.739000px;}
.y82{bottom:267.580500px;}
.y4d{bottom:279.957000px;}
.y1a{bottom:280.045500px;}
.y2a{bottom:280.075500px;}
.y81{bottom:287.904000px;}
.y60{bottom:300.513000px;}
.y4c{bottom:313.729500px;}
.y19{bottom:313.819500px;}
.y29{bottom:313.848000px;}
.y80{bottom:321.678000px;}
.y5f{bottom:334.285500px;}
.y4b{bottom:344.619000px;}
.y18{bottom:344.709000px;}
.y28{bottom:347.622000px;}
.y7f{bottom:355.450500px;}
.y5e{bottom:368.059500px;}
.y7e{bottom:375.775500px;}
.y27{bottom:381.396000px;}
.y17{bottom:381.831000px;}
.y5d{bottom:388.383000px;}
.y4a{bottom:401.883000px;}
.y7d{bottom:409.548000px;}
.y26{bottom:412.285500px;}
.y5c{bottom:422.157000px;}
.y7c{bottom:429.871500px;}
.y16{bottom:433.383000px;}
.y49{bottom:435.655500px;}
.y15{bottom:453.706500px;}
.y5b{bottom:455.929500px;}
.y7b{bottom:463.645500px;}
.y48{bottom:469.429500px;}
.y14{bottom:474.030000px;}
.y25{bottom:479.725500px;}
.y5a{bottom:489.703500px;}
.y47{bottom:489.753000px;}
.y13{bottom:494.355000px;}
.y7a{bottom:497.419500px;}
.y24{bottom:500.049000px;}
.y23{bottom:520.372500px;}
.y59{bottom:523.476000px;}
.y46{bottom:523.525500px;}
.y12{bottom:530.878500px;}
.y79{bottom:531.192000px;}
.y22{bottom:540.696000px;}
.y45{bottom:543.850500px;}
.y78{bottom:551.515500px;}
.y58{bottom:557.250000px;}
.y44{bottom:564.174000px;}
.y43{bottom:584.497500px;}
.y77{bottom:585.289500px;}
.y57{bottom:591.024000px;}
.y11{bottom:602.754000px;}
.y76{bottom:605.613000px;}
.y42{bottom:618.271500px;}
.y10{bottom:623.079000px;}
.y56{bottom:624.796500px;}
.y9a{bottom:624.846000px;}
.y75{bottom:625.936500px;}
.y99{bottom:645.169500px;}
.y74{bottom:646.260000px;}
.y41{bottom:652.044000px;}
.yf{bottom:663.726000px;}
.y98{bottom:665.494500px;}
.y73{bottom:680.034000px;}
.ye{bottom:684.049500px;}
.y40{bottom:685.818000px;}
.y55{bottom:692.236500px;}
.yd{bottom:704.373000px;}
.y3f{bottom:706.141500px;}
.y72{bottom:713.808000px;}
.y97{bottom:719.590500px;}
.yc{bottom:724.698000px;}
.y3e{bottom:726.465000px;}
.yb{bottom:745.021500px;}
.y71{bottom:747.580500px;}
.y96{bottom:753.364500px;}
.y3d{bottom:760.239000px;}
.ya{bottom:765.345000px;}
.y95{bottom:773.688000px;}
.y70{bottom:781.354500px;}
.y9{bottom:785.668500px;}
.y3c{bottom:794.011500px;}
.y94{bottom:807.462000px;}
.y3b{bottom:814.335000px;}
.y6f{bottom:815.127000px;}
.y8{bottom:822.193500px;}
.y93{bottom:827.785500px;}
.y3a{bottom:848.109000px;}
.y6e{bottom:848.901000px;}
.y92{bottom:861.558000px;}
.y39{bottom:868.432500px;}
.y6d{bottom:869.224500px;}
.y7{bottom:887.400000px;}
.y91{bottom:895.332000px;}
.y38{bottom:902.206500px;}
.y6c{bottom:902.998500px;}
.y6{bottom:908.322000px;}
.y90{bottom:915.655500px;}
.y5{bottom:929.244000px;}
.y8f{bottom:935.979000px;}
.y6b{bottom:936.771000px;}
.y37{bottom:940.462500px;}
.y4{bottom:950.164500px;}
.y36{bottom:960.786000px;}
.y8e{bottom:969.753000px;}
.y6a{bottom:970.545000px;}
.y3{bottom:971.086500px;}
.y2{bottom:992.008500px;}
.y35{bottom:994.560000px;}
.y8d{bottom:1003.525500px;}
.y69{bottom:1004.317500px;}
.y34{bottom:1028.332500px;}
.y8c{bottom:1029.828000px;}
.y1{bottom:1037.335500px;}
.y68{bottom:1038.091500px;}
.y8b{bottom:1056.129000px;}
.y33{bottom:1062.106500px;}
.y67{bottom:1071.865500px;}
.y8a{bottom:1076.452500px;}
.y32{bottom:1082.430000px;}
.y31{bottom:1102.753500px;}
.h5{height:49.156405px;}
.h3{height:53.870131px;}
.h6{height:55.554699px;}
.h4{height:60.340117px;}
.h2{height:71.891510px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.039500px;}
.x9{left:109.632000px;}
.xa{left:125.949000px;}
.x2{left:130.926000px;}
.xd{left:144.420000px;}
.x5{left:156.820500px;}
.xe{left:161.949000px;}
.x6{left:223.371000px;}
.x1{left:231.156000px;}
.x4{left:259.581000px;}
.xc{left:261.507000px;}
.x7{left:280.737000px;}
.x3{left:344.107500px;}
.xb{left:442.389000px;}
@media print{
.v2{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001425pt;}
.ls8{letter-spacing:0.001914pt;}
.ls3{letter-spacing:0.004800pt;}
.ls1{letter-spacing:2.653258pt;}
.lsa{letter-spacing:2.658591pt;}
.ls5{letter-spacing:12.927477pt;}
.ls4{letter-spacing:15.586591pt;}
.ls6{letter-spacing:21.943925pt;}
.ls7{letter-spacing:21.949258pt;}
.ls0{letter-spacing:29.087976pt;}
.lsb{letter-spacing:29.091851pt;}
.ws1a{word-spacing:-58.181867pt;}
.ws23{word-spacing:-37.899668pt;}
.ws1b{word-spacing:-28.928024pt;}
.ws1d{word-spacing:-15.197104pt;}
.ws22{word-spacing:-13.975284pt;}
.wsc{word-spacing:-12.986193pt;}
.ws32{word-spacing:-12.753465pt;}
.ws13{word-spacing:-12.695283pt;}
.ws35{word-spacing:-12.520738pt;}
.ws19{word-spacing:-11.997101pt;}
.ws17{word-spacing:-11.822555pt;}
.ws20{word-spacing:-11.415282pt;}
.ws1c{word-spacing:-11.240737pt;}
.ws31{word-spacing:-10.542554pt;}
.ws3d{word-spacing:-10.193463pt;}
.ws33{word-spacing:-10.135281pt;}
.ws14{word-spacing:-9.728008pt;}
.wsd{word-spacing:-9.669826pt;}
.ws30{word-spacing:-9.650561pt;}
.ws11{word-spacing:-9.611644pt;}
.ws38{word-spacing:-9.378917pt;}
.ws3c{word-spacing:-8.913462pt;}
.ws25{word-spacing:-8.797098pt;}
.wsa{word-spacing:-8.622553pt;}
.ws34{word-spacing:-8.506189pt;}
.ws26{word-spacing:-8.389825pt;}
.ws10{word-spacing:-8.215280pt;}
.ws37{word-spacing:-7.808007pt;}
.ws21{word-spacing:-7.749825pt;}
.ws3a{word-spacing:-7.517097pt;}
.ws29{word-spacing:-7.226188pt;}
.ws1f{word-spacing:-7.168006pt;}
.ws27{word-spacing:-6.993460pt;}
.ws6{word-spacing:-6.877097pt;}
.wsb{word-spacing:-6.411642pt;}
.ws18{word-spacing:-6.237096pt;}
.ws36{word-spacing:-5.655277pt;}
.ws39{word-spacing:-5.306186pt;}
.wse{word-spacing:-5.015277pt;}
.ws7{word-spacing:-4.957095pt;}
.ws1e{word-spacing:-4.898913pt;}
.wsf{word-spacing:-3.735276pt;}
.ws9{word-spacing:-3.386185pt;}
.ws2e{word-spacing:-3.328003pt;}
.ws2f{word-spacing:-3.232684pt;}
.ws2a{word-spacing:-3.211639pt;}
.ws16{word-spacing:-2.571639pt;}
.ws8{word-spacing:-2.513457pt;}
.ws2c{word-spacing:-2.455275pt;}
.ws3b{word-spacing:-0.942546pt;}
.ws24{word-spacing:-0.709819pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws15{word-spacing:0.000000pt;}
.ws28{word-spacing:4.061094pt;}
.ws2{word-spacing:20.722347pt;}
.ws4{word-spacing:20.786108pt;}
.ws2d{word-spacing:23.782878pt;}
.ws1{word-spacing:23.846639pt;}
.ws3{word-spacing:27.677242pt;}
.ws5{word-spacing:28.003782pt;}
.ws0{word-spacing:32.869937pt;}
.ws12{word-spacing:84.087860pt;}
._4{margin-left:-5.164646pt;}
._a{margin-left:-4.004359pt;}
._0{margin-left:-2.662649pt;}
._3{margin-left:-1.721549pt;}
._5{width:1.721549pt;}
._16{width:2.662649pt;}
._1{width:3.953186pt;}
._13{width:15.859742pt;}
._d{width:18.261241pt;}
._18{width:19.258198pt;}
._15{width:21.164482pt;}
._17{width:23.060754pt;}
._e{width:24.018743pt;}
._7{width:25.771395pt;}
._2{width:27.760908pt;}
._19{width:28.707567pt;}
._12{width:30.569387pt;}
._10{width:32.465482pt;}
._11{width:35.141847pt;}
._f{width:36.548402pt;}
._1a{width:37.794306pt;}
._8{width:39.796397pt;}
._b{width:43.964756pt;}
._9{width:47.254043pt;}
._14{width:52.966234pt;}
._c{width:71.731200pt;}
._6{width:84.164373pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:10.105333pt;}
.y54{bottom:52.520000pt;}
.y89{bottom:63.569333pt;}
.y30{bottom:74.425333pt;}
.y53{bottom:82.540000pt;}
.y66{bottom:86.997333pt;}
.y20{bottom:92.716000pt;}
.y88{bottom:93.590667pt;}
.y2f{bottom:101.882667pt;}
.y1f{bottom:110.781333pt;}
.y52{bottom:112.561333pt;}
.y65{bottom:117.018667pt;}
.y87{bottom:123.610667pt;}
.y1e{bottom:128.846667pt;}
.y2e{bottom:140.828000pt;}
.y64{bottom:147.038667pt;}
.y51{bottom:148.692000pt;}
.y86{bottom:153.632000pt;}
.y1d{bottom:158.868000pt;}
.y2d{bottom:158.893333pt;}
.y50{bottom:166.757333pt;}
.y63{bottom:177.060000pt;}
.y85{bottom:183.653333pt;}
.y1c{bottom:188.888000pt;}
.y2c{bottom:188.914667pt;}
.y4f{bottom:200.764000pt;}
.y84{bottom:201.718667pt;}
.y62{bottom:207.081333pt;}
.y1b{bottom:218.909333pt;}
.y2b{bottom:218.934667pt;}
.y83{bottom:219.784000pt;}
.y4e{bottom:230.784000pt;}
.y61{bottom:237.101333pt;}
.y82{bottom:237.849333pt;}
.y4d{bottom:248.850667pt;}
.y1a{bottom:248.929333pt;}
.y2a{bottom:248.956000pt;}
.y81{bottom:255.914667pt;}
.y60{bottom:267.122667pt;}
.y4c{bottom:278.870667pt;}
.y19{bottom:278.950667pt;}
.y29{bottom:278.976000pt;}
.y80{bottom:285.936000pt;}
.y5f{bottom:297.142667pt;}
.y4b{bottom:306.328000pt;}
.y18{bottom:306.408000pt;}
.y28{bottom:308.997333pt;}
.y7f{bottom:315.956000pt;}
.y5e{bottom:327.164000pt;}
.y7e{bottom:334.022667pt;}
.y27{bottom:339.018667pt;}
.y17{bottom:339.405333pt;}
.y5d{bottom:345.229333pt;}
.y4a{bottom:357.229333pt;}
.y7d{bottom:364.042667pt;}
.y26{bottom:366.476000pt;}
.y5c{bottom:375.250667pt;}
.y7c{bottom:382.108000pt;}
.y16{bottom:385.229333pt;}
.y49{bottom:387.249333pt;}
.y15{bottom:403.294667pt;}
.y5b{bottom:405.270667pt;}
.y7b{bottom:412.129333pt;}
.y48{bottom:417.270667pt;}
.y14{bottom:421.360000pt;}
.y25{bottom:426.422667pt;}
.y5a{bottom:435.292000pt;}
.y47{bottom:435.336000pt;}
.y13{bottom:439.426667pt;}
.y7a{bottom:442.150667pt;}
.y24{bottom:444.488000pt;}
.y23{bottom:462.553333pt;}
.y59{bottom:465.312000pt;}
.y46{bottom:465.356000pt;}
.y12{bottom:471.892000pt;}
.y79{bottom:472.170667pt;}
.y22{bottom:480.618667pt;}
.y45{bottom:483.422667pt;}
.y78{bottom:490.236000pt;}
.y58{bottom:495.333333pt;}
.y44{bottom:501.488000pt;}
.y43{bottom:519.553333pt;}
.y77{bottom:520.257333pt;}
.y57{bottom:525.354667pt;}
.y11{bottom:535.781333pt;}
.y76{bottom:538.322667pt;}
.y42{bottom:549.574667pt;}
.y10{bottom:553.848000pt;}
.y56{bottom:555.374667pt;}
.y9a{bottom:555.418667pt;}
.y75{bottom:556.388000pt;}
.y99{bottom:573.484000pt;}
.y74{bottom:574.453333pt;}
.y41{bottom:579.594667pt;}
.yf{bottom:589.978667pt;}
.y98{bottom:591.550667pt;}
.y73{bottom:604.474667pt;}
.ye{bottom:608.044000pt;}
.y40{bottom:609.616000pt;}
.y55{bottom:615.321333pt;}
.yd{bottom:626.109333pt;}
.y3f{bottom:627.681333pt;}
.y72{bottom:634.496000pt;}
.y97{bottom:639.636000pt;}
.yc{bottom:644.176000pt;}
.y3e{bottom:645.746667pt;}
.yb{bottom:662.241333pt;}
.y71{bottom:664.516000pt;}
.y96{bottom:669.657333pt;}
.y3d{bottom:675.768000pt;}
.ya{bottom:680.306667pt;}
.y95{bottom:687.722667pt;}
.y70{bottom:694.537333pt;}
.y9{bottom:698.372000pt;}
.y3c{bottom:705.788000pt;}
.y94{bottom:717.744000pt;}
.y3b{bottom:723.853333pt;}
.y6f{bottom:724.557333pt;}
.y8{bottom:730.838667pt;}
.y93{bottom:735.809333pt;}
.y3a{bottom:753.874667pt;}
.y6e{bottom:754.578667pt;}
.y92{bottom:765.829333pt;}
.y39{bottom:771.940000pt;}
.y6d{bottom:772.644000pt;}
.y7{bottom:788.800000pt;}
.y91{bottom:795.850667pt;}
.y38{bottom:801.961333pt;}
.y6c{bottom:802.665333pt;}
.y6{bottom:807.397333pt;}
.y90{bottom:813.916000pt;}
.y5{bottom:825.994667pt;}
.y8f{bottom:831.981333pt;}
.y6b{bottom:832.685333pt;}
.y37{bottom:835.966667pt;}
.y4{bottom:844.590667pt;}
.y36{bottom:854.032000pt;}
.y8e{bottom:862.002667pt;}
.y6a{bottom:862.706667pt;}
.y3{bottom:863.188000pt;}
.y2{bottom:881.785333pt;}
.y35{bottom:884.053333pt;}
.y8d{bottom:892.022667pt;}
.y69{bottom:892.726667pt;}
.y34{bottom:914.073333pt;}
.y8c{bottom:915.402667pt;}
.y1{bottom:922.076000pt;}
.y68{bottom:922.748000pt;}
.y8b{bottom:938.781333pt;}
.y33{bottom:944.094667pt;}
.y67{bottom:952.769333pt;}
.y8a{bottom:956.846667pt;}
.y32{bottom:962.160000pt;}
.y31{bottom:980.225333pt;}
.h5{height:43.694582pt;}
.h3{height:47.884561pt;}
.h6{height:49.381955pt;}
.h4{height:53.635660pt;}
.h2{height:63.903565pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.590667pt;}
.x9{left:97.450667pt;}
.xa{left:111.954667pt;}
.x2{left:116.378667pt;}
.xd{left:128.373333pt;}
.x5{left:139.396000pt;}
.xe{left:143.954667pt;}
.x6{left:198.552000pt;}
.x1{left:205.472000pt;}
.x4{left:230.738667pt;}
.xc{left:232.450667pt;}
.x7{left:249.544000pt;}
.x3{left:305.873333pt;}
.xb{left:393.234667pt;}
}




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