
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_e8f88e4c2f0d09f087ab072b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_4746a0f19dc8a4682c1b864f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_6e04bf9910cd2bdaa5d91fd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.135000;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_1c0dd981c5ada72a3b864123.woff')format("woff");}.ff6{font-family:ff6;line-height:1.135000;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_f588f4de240368a978f90754.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_517fceec93a4e71b297fa646.woff')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_3f87a374796079dd4bd6aca4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_565543c085bb666f9711defb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064000;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_b74f5a3b0abbc796ac0b8927.woff')format("woff");}.ffb{font-family:ffb;line-height:1.061000;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_cde4ca0e68396c6693e26793.woff')format("woff");}.ffc{font-family:ffc;line-height:1.064000;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_75db79f9d529bade16d4a816.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_29c9092f1a7d6e66bc6b293c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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:fff;src:url('chunks/assets/font_a88bbe05889b2101b40ff16a.woff')format("woff");}.fff{font-family:fff;line-height:1.009000;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);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls21{letter-spacing:-0.936000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.392400px;}
.ls24{letter-spacing:-0.385800px;}
.ls1f{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.265200px;}
.ls17{letter-spacing:-0.227682px;}
.lsf{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.136800px;}
.ls1a{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.069000px;}
.ls23{letter-spacing:-0.067200px;}
.ls7{letter-spacing:-0.034560px;}
.lsc{letter-spacing:-0.028800px;}
.ls16{letter-spacing:-0.013680px;}
.lsb{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.060600px;}
.ls1{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.075894px;}
.ls1b{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls20{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.206640px;}
.ls2{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.234000px;}
.ls15{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.306000px;}
.ls3{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.378000px;}
.ls25{letter-spacing:0.406800px;}
.ls4{letter-spacing:48.384000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.593600px;}
.ws2{word-spacing:-22.362960px;}
.ws4{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.872000px;}
.ws17{word-spacing:-19.504734px;}
.ws16{word-spacing:-19.277052px;}
.ws13{word-spacing:-19.051200px;}
.ws10{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.648000px;}
.wse{word-spacing:-18.576000px;}
.wsc{word-spacing:-18.504000px;}
.ws12{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.288000px;}
.wsf{word-spacing:-17.784000px;}
.ws23{word-spacing:-17.568000px;}
.ws7{word-spacing:-17.084280px;}
.wsb{word-spacing:-17.040960px;}
.ws6{word-spacing:-17.023680px;}
.ws8{word-spacing:-17.015040px;}
.ws9{word-spacing:-16.994880px;}
.wsa{word-spacing:-16.954680px;}
.ws19{word-spacing:-14.256000px;}
.ws1a{word-spacing:-14.238000px;}
.ws18{word-spacing:-14.112000px;}
.ws20{word-spacing:-14.076000px;}
.ws22{word-spacing:-14.040000px;}
.ws1c{word-spacing:-13.986000px;}
.ws1d{word-spacing:-13.878000px;}
.ws1b{word-spacing:-13.770000px;}
.ws21{word-spacing:-13.518000px;}
.ws1f{word-spacing:-13.266000px;}
.ws1e{word-spacing:-13.050000px;}
.ws5{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156240px;}
.ws15{word-spacing:-0.142560px;}
.ws14{word-spacing:0.000000px;}
._4{margin-left:-3.214080px;}
._5{margin-left:-2.185920px;}
._1{margin-left:-1.157760px;}
._2{width:1.169280px;}
._3{width:2.569920px;}
._9{width:4.392000px;}
._6{width:5.696640px;}
._7{width:6.955200px;}
._a{width:8.032320px;}
._d{width:9.144000px;}
._e{width:10.176480px;}
._c{width:13.109760px;}
._b{width:14.472000px;}
._13{width:15.768000px;}
._18{width:16.968000px;}
._15{width:19.920000px;}
._14{width:21.024000px;}
._8{width:22.512000px;}
._17{width:24.480000px;}
._10{width:26.496000px;}
._f{width:28.056000px;}
._16{width:29.088000px;}
._19{width:30.384000px;}
._11{width:54.360000px;}
._12{width:55.440000px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs6{font-size:77.760000px;}
.fsc{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y48{bottom:5.760000px;}
.y52{bottom:5.805000px;}
.y56{bottom:5.940000px;}
.y42{bottom:6.660000px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y4c{bottom:24.660000px;}
.y51{bottom:24.705000px;}
.y47{bottom:24.840000px;}
.y7{bottom:26.820000px;}
.y41{bottom:30.450000px;}
.y43{bottom:39.450000px;}
.y4b{bottom:43.560000px;}
.y55{bottom:43.740000px;}
.y50{bottom:43.785000px;}
.y9{bottom:47.520000px;}
.y40{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y4a{bottom:62.460000px;}
.y54{bottom:62.640000px;}
.y4f{bottom:62.685000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.y5{bottom:131.220000px;}
.y3e{bottom:133.776000px;}
.y73{bottom:134.856000px;}
.y3d{bottom:155.730000px;}
.y72{bottom:156.810000px;}
.y3c{bottom:177.690000px;}
.y71{bottom:178.770000px;}
.y3b{bottom:199.650000px;}
.y70{bottom:200.730000px;}
.y3a{bottom:221.610000px;}
.y6f{bottom:222.690000px;}
.y39{bottom:243.570000px;}
.y6e{bottom:244.650000px;}
.y38{bottom:265.530000px;}
.y6d{bottom:266.610000px;}
.y37{bottom:287.310000px;}
.y6c{bottom:288.570000px;}
.y36{bottom:309.270000px;}
.y6b{bottom:310.350000px;}
.y35{bottom:331.230000px;}
.y6a{bottom:332.310000px;}
.y34{bottom:353.235000px;}
.y69{bottom:354.315000px;}
.y33{bottom:375.915000px;}
.y68{bottom:376.275000px;}
.y32{bottom:397.875000px;}
.y67{bottom:398.235000px;}
.y31{bottom:419.835000px;}
.y66{bottom:420.195000px;}
.y30{bottom:441.615000px;}
.y65{bottom:442.155000px;}
.y2f{bottom:463.575000px;}
.y64{bottom:464.115000px;}
.y2e{bottom:485.535000px;}
.y63{bottom:486.075000px;}
.y62{bottom:508.035000px;}
.y2d{bottom:508.215000px;}
.y61{bottom:529.815000px;}
.y2c{bottom:530.175000px;}
.y60{bottom:551.775000px;}
.y2b{bottom:552.135000px;}
.y5f{bottom:573.735000px;}
.y2a{bottom:574.095000px;}
.y5e{bottom:595.695000px;}
.y29{bottom:595.875000px;}
.y5d{bottom:617.685000px;}
.y28{bottom:617.865000px;}
.y5c{bottom:639.645000px;}
.y27{bottom:639.825000px;}
.y5b{bottom:661.605000px;}
.y26{bottom:661.785000px;}
.y5a{bottom:683.565000px;}
.y25{bottom:683.745000px;}
.y59{bottom:705.525000px;}
.y24{bottom:705.705000px;}
.y58{bottom:727.305000px;}
.y23{bottom:727.665000px;}
.y57{bottom:749.265000px;}
.y22{bottom:749.625000px;}
.y21{bottom:771.225000px;}
.y53{bottom:789.405000px;}
.y20{bottom:792.645000px;}
.y1f{bottom:804.165000px;}
.y1e{bottom:821.265000px;}
.y1d{bottom:829.725000px;}
.y80{bottom:835.665000px;}
.y1c{bottom:849.885000px;}
.y7f{bottom:860.505000px;}
.y4e{bottom:865.905000px;}
.y1b{bottom:870.045000px;}
.y7e{bottom:882.510000px;}
.y1a{bottom:890.070000px;}
.y7d{bottom:907.350000px;}
.y19{bottom:910.230000px;}
.y18{bottom:927.330000px;}
.y7c{bottom:929.310000px;}
.y17{bottom:936.150000px;}
.y4d{bottom:942.450000px;}
.y7b{bottom:954.150000px;}
.y16{bottom:955.410000px;}
.y15{bottom:968.370000px;}
.y7a{bottom:976.110000px;}
.y14{bottom:980.250000px;}
.y79{bottom:1000.950000px;}
.y13{bottom:1002.210000px;}
.y49{bottom:1018.950000px;}
.y78{bottom:1022.910000px;}
.y12{bottom:1024.170000px;}
.y77{bottom:1047.750000px;}
.y11{bottom:1067.370000px;}
.y76{bottom:1069.710000px;}
.y75{bottom:1094.550000px;}
.y46{bottom:1095.270000px;}
.y3f{bottom:1114.710000px;}
.y74{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y45{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y44{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h10{height:16.398000px;}
.h6{height:17.280000px;}
.h13{height:26.097120px;}
.hf{height:27.548640px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h19{height:37.980000px;}
.h7{height:39.315600px;}
.h9{height:45.393840px;}
.h1a{height:46.602000px;}
.h3{height:56.436480px;}
.h11{height:57.165120px;}
.h12{height:60.344640px;}
.h14{height:62.136000px;}
.h17{height:63.374400px;}
.h18{height:65.496440px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h1e{height:72.699120px;}
.h16{height:73.116000px;}
.hd{height:73.172160px;}
.h15{height:74.004654px;}
.h1b{height:75.600000px;}
.h1d{height:75.780000px;}
.h1c{height:75.816000px;}
.h1f{height:86.585445px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w4{width:317.415000px;}
.w7{width:373.035000px;}
.w8{width:373.215000px;}
.w6{width:438.195000px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x21{left:16.236000px;}
.xf{left:17.640000px;}
.x10{left:28.080000px;}
.x1e{left:35.130000px;}
.x2a{left:41.250000px;}
.x27{left:51.516000px;}
.x1c{left:60.876000px;}
.x29{left:62.850000px;}
.x26{left:65.916000px;}
.x1b{left:68.970000px;}
.x6{left:70.740000px;}
.x23{left:75.990000px;}
.x17{left:77.250000px;}
.x1a{left:78.510000px;}
.x1{left:80.999987px;}
.x1f{left:91.830000px;}
.x20{left:94.170000px;}
.x25{left:97.590000px;}
.x18{left:103.350000px;}
.x5{left:105.165000px;}
.x13{left:106.230000px;}
.xd{left:108.035987px;}
.x24{left:115.950000px;}
.x2b{left:118.655987px;}
.xb{left:127.475987px;}
.x2c{left:129.815987px;}
.xc{left:134.135987px;}
.x2d{left:136.115987px;}
.xa{left:137.915987px;}
.x1d{left:143.490000px;}
.x16{left:145.650000px;}
.x11{left:146.880000px;}
.x28{left:149.790000px;}
.x19{left:156.090000px;}
.x22{left:164.550000px;}
.x15{left:213.195000px;}
.x9{left:227.595000px;}
.xe{left:285.735000px;}
.x12{left:334.154987px;}
.x14{left:455.475000px;}
.x4{left:554.145000px;}
.x7{left:721.770000px;}
.x8{left:786.600000px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.348800pt;}
.ls24{letter-spacing:-0.342933pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.235733pt;}
.ls17{letter-spacing:-0.202384pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.121600pt;}
.ls1a{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.061333pt;}
.ls23{letter-spacing:-0.059733pt;}
.ls7{letter-spacing:-0.030720pt;}
.lsc{letter-spacing:-0.025600pt;}
.ls16{letter-spacing:-0.012160pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.053867pt;}
.ls1{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.067461pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls20{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.183680pt;}
.ls2{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.208000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.272000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.336000pt;}
.ls25{letter-spacing:0.361600pt;}
.ls4{letter-spacing:43.008000pt;}
.ws1{word-spacing:-20.083200pt;}
.ws2{word-spacing:-19.878187pt;}
.ws4{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.664000pt;}
.ws17{word-spacing:-17.337541pt;}
.ws16{word-spacing:-17.135157pt;}
.ws13{word-spacing:-16.934400pt;}
.ws10{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.576000pt;}
.wse{word-spacing:-16.512000pt;}
.wsc{word-spacing:-16.448000pt;}
.ws12{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.256000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws23{word-spacing:-15.616000pt;}
.ws7{word-spacing:-15.186027pt;}
.wsb{word-spacing:-15.147520pt;}
.ws6{word-spacing:-15.132160pt;}
.ws8{word-spacing:-15.124480pt;}
.ws9{word-spacing:-15.106560pt;}
.wsa{word-spacing:-15.070827pt;}
.ws19{word-spacing:-12.672000pt;}
.ws1a{word-spacing:-12.656000pt;}
.ws18{word-spacing:-12.544000pt;}
.ws20{word-spacing:-12.512000pt;}
.ws22{word-spacing:-12.480000pt;}
.ws1c{word-spacing:-12.432000pt;}
.ws1d{word-spacing:-12.336000pt;}
.ws1b{word-spacing:-12.240000pt;}
.ws21{word-spacing:-12.016000pt;}
.ws1f{word-spacing:-11.792000pt;}
.ws1e{word-spacing:-11.600000pt;}
.ws5{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.138880pt;}
.ws15{word-spacing:-0.126720pt;}
.ws14{word-spacing:0.000000pt;}
._4{margin-left:-2.856960pt;}
._5{margin-left:-1.943040pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.039360pt;}
._3{width:2.284373pt;}
._9{width:3.904000pt;}
._6{width:5.063680pt;}
._7{width:6.182400pt;}
._a{width:7.139840pt;}
._d{width:8.128000pt;}
._e{width:9.045760pt;}
._c{width:11.653120pt;}
._b{width:12.864000pt;}
._13{width:14.016000pt;}
._18{width:15.082667pt;}
._15{width:17.706667pt;}
._14{width:18.688000pt;}
._8{width:20.010667pt;}
._17{width:21.760000pt;}
._10{width:23.552000pt;}
._f{width:24.938667pt;}
._16{width:25.856000pt;}
._19{width:27.008000pt;}
._11{width:48.320000pt;}
._12{width:49.280000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs6{font-size:69.120000pt;}
.fsc{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y48{bottom:5.120000pt;}
.y52{bottom:5.160000pt;}
.y56{bottom:5.280000pt;}
.y42{bottom:5.920000pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y4c{bottom:21.920000pt;}
.y51{bottom:21.960000pt;}
.y47{bottom:22.080000pt;}
.y7{bottom:23.840000pt;}
.y41{bottom:27.066667pt;}
.y43{bottom:35.066667pt;}
.y4b{bottom:38.720000pt;}
.y55{bottom:38.880000pt;}
.y50{bottom:38.920000pt;}
.y9{bottom:42.240000pt;}
.y40{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y4a{bottom:55.520000pt;}
.y54{bottom:55.680000pt;}
.y4f{bottom:55.720000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.y5{bottom:116.640000pt;}
.y3e{bottom:118.912000pt;}
.y73{bottom:119.872000pt;}
.y3d{bottom:138.426667pt;}
.y72{bottom:139.386667pt;}
.y3c{bottom:157.946667pt;}
.y71{bottom:158.906667pt;}
.y3b{bottom:177.466667pt;}
.y70{bottom:178.426667pt;}
.y3a{bottom:196.986667pt;}
.y6f{bottom:197.946667pt;}
.y39{bottom:216.506667pt;}
.y6e{bottom:217.466667pt;}
.y38{bottom:236.026667pt;}
.y6d{bottom:236.986667pt;}
.y37{bottom:255.386667pt;}
.y6c{bottom:256.506667pt;}
.y36{bottom:274.906667pt;}
.y6b{bottom:275.866667pt;}
.y35{bottom:294.426667pt;}
.y6a{bottom:295.386667pt;}
.y34{bottom:313.986667pt;}
.y69{bottom:314.946667pt;}
.y33{bottom:334.146667pt;}
.y68{bottom:334.466667pt;}
.y32{bottom:353.666667pt;}
.y67{bottom:353.986667pt;}
.y31{bottom:373.186667pt;}
.y66{bottom:373.506667pt;}
.y30{bottom:392.546667pt;}
.y65{bottom:393.026667pt;}
.y2f{bottom:412.066667pt;}
.y64{bottom:412.546667pt;}
.y2e{bottom:431.586667pt;}
.y63{bottom:432.066667pt;}
.y62{bottom:451.586667pt;}
.y2d{bottom:451.746667pt;}
.y61{bottom:470.946667pt;}
.y2c{bottom:471.266667pt;}
.y60{bottom:490.466667pt;}
.y2b{bottom:490.786667pt;}
.y5f{bottom:509.986667pt;}
.y2a{bottom:510.306667pt;}
.y5e{bottom:529.506667pt;}
.y29{bottom:529.666667pt;}
.y5d{bottom:549.053333pt;}
.y28{bottom:549.213333pt;}
.y5c{bottom:568.573333pt;}
.y27{bottom:568.733333pt;}
.y5b{bottom:588.093333pt;}
.y26{bottom:588.253333pt;}
.y5a{bottom:607.613333pt;}
.y25{bottom:607.773333pt;}
.y59{bottom:627.133333pt;}
.y24{bottom:627.293333pt;}
.y58{bottom:646.493333pt;}
.y23{bottom:646.813333pt;}
.y57{bottom:666.013333pt;}
.y22{bottom:666.333333pt;}
.y21{bottom:685.533333pt;}
.y53{bottom:701.693333pt;}
.y20{bottom:704.573333pt;}
.y1f{bottom:714.813333pt;}
.y1e{bottom:730.013333pt;}
.y1d{bottom:737.533333pt;}
.y80{bottom:742.813333pt;}
.y1c{bottom:755.453333pt;}
.y7f{bottom:764.893333pt;}
.y4e{bottom:769.693333pt;}
.y1b{bottom:773.373333pt;}
.y7e{bottom:784.453333pt;}
.y1a{bottom:791.173333pt;}
.y7d{bottom:806.533333pt;}
.y19{bottom:809.093333pt;}
.y18{bottom:824.293333pt;}
.y7c{bottom:826.053333pt;}
.y17{bottom:832.133333pt;}
.y4d{bottom:837.733333pt;}
.y7b{bottom:848.133333pt;}
.y16{bottom:849.253333pt;}
.y15{bottom:860.773333pt;}
.y7a{bottom:867.653333pt;}
.y14{bottom:871.333333pt;}
.y79{bottom:889.733333pt;}
.y13{bottom:890.853333pt;}
.y49{bottom:905.733333pt;}
.y78{bottom:909.253333pt;}
.y12{bottom:910.373333pt;}
.y77{bottom:931.333333pt;}
.y11{bottom:948.773333pt;}
.y76{bottom:950.853333pt;}
.y75{bottom:972.933333pt;}
.y46{bottom:973.573333pt;}
.y3f{bottom:990.853333pt;}
.y74{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y45{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y44{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h10{height:14.576000pt;}
.h6{height:15.360000pt;}
.h13{height:23.197440pt;}
.hf{height:24.487680pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h19{height:33.760000pt;}
.h7{height:34.947200pt;}
.h9{height:40.350080pt;}
.h1a{height:41.424000pt;}
.h3{height:50.165760pt;}
.h11{height:50.813440pt;}
.h12{height:53.639680pt;}
.h14{height:55.232000pt;}
.h17{height:56.332800pt;}
.h18{height:58.219058pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h1e{height:64.621440pt;}
.h16{height:64.992000pt;}
.hd{height:65.041920pt;}
.h15{height:65.781915pt;}
.h1b{height:67.200000pt;}
.h1d{height:67.360000pt;}
.h1c{height:67.392000pt;}
.h1f{height:76.964840pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w4{width:282.146667pt;}
.w7{width:331.586667pt;}
.w8{width:331.746667pt;}
.w6{width:389.506667pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x21{left:14.432000pt;}
.xf{left:15.680000pt;}
.x10{left:24.960000pt;}
.x1e{left:31.226667pt;}
.x2a{left:36.666667pt;}
.x27{left:45.792000pt;}
.x1c{left:54.112000pt;}
.x29{left:55.866667pt;}
.x26{left:58.592000pt;}
.x1b{left:61.306667pt;}
.x6{left:62.880000pt;}
.x23{left:67.546667pt;}
.x17{left:68.666667pt;}
.x1a{left:69.786667pt;}
.x1{left:71.999988pt;}
.x1f{left:81.626667pt;}
.x20{left:83.706667pt;}
.x25{left:86.746667pt;}
.x18{left:91.866667pt;}
.x5{left:93.480000pt;}
.x13{left:94.426667pt;}
.xd{left:96.031988pt;}
.x24{left:103.066667pt;}
.x2b{left:105.471988pt;}
.xb{left:113.311988pt;}
.x2c{left:115.391988pt;}
.xc{left:119.231988pt;}
.x2d{left:120.991988pt;}
.xa{left:122.591988pt;}
.x1d{left:127.546667pt;}
.x16{left:129.466667pt;}
.x11{left:130.560000pt;}
.x28{left:133.146667pt;}
.x19{left:138.746667pt;}
.x22{left:146.266667pt;}
.x15{left:189.506667pt;}
.x9{left:202.306667pt;}
.xe{left:253.986667pt;}
.x12{left:297.026655pt;}
.x14{left:404.866667pt;}
.x4{left:492.573333pt;}
.x7{left:641.573333pt;}
.x8{left:699.200000pt;}
.x2{left:737.120000pt;}
}




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