
    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_28786adb3b563b5f7ec91ef4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2e248f1bea97fc86bda79548.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6e0decddfa5a4fb36230bbf4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934082;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_3b5f98b7666af14f84668bf8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_3dc229237a521bc1afaa255f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_1e8d2a37267879a70a40d37c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_918a0012ca8314ab46224fd1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_bcc9cb0b59ef49380a0721ff.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_a34126ad49e9cd510e81bee0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_23994082f6c828dae1b53e1d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_8a780e84e6d1c9a60297478e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_a394a4dd8a053a20d4b7d430.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_6f8ba570bdb2a4ff490e0be9.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_bffde0d9dd193ff54a1d0de4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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:ff12;src:url('chunks/assets/font_bde4429f3d6e2c133fb8bac0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.850586;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:ff13;src:url('chunks/assets/font_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff13{font-family:ff13;line-height:0.960449;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:-18.120000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.120000px;}
.lse{letter-spacing:-2.724000px;}
.ls11{letter-spacing:-1.482000px;}
.lsf{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.378000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.279000px;}
.ls7{letter-spacing:0.994500px;}
.ls2{letter-spacing:1.476000px;}
.lsc{letter-spacing:1.638000px;}
.ls10{letter-spacing:1.746000px;}
.ls16{letter-spacing:1.842000px;}
.ls4{letter-spacing:1.966500px;}
.ls6{letter-spacing:2.086500px;}
.ls15{letter-spacing:2.164500px;}
.ls13{letter-spacing:2.190000px;}
.ls8{letter-spacing:2.250000px;}
.ls5{letter-spacing:2.331000px;}
.ls3{letter-spacing:2.355000px;}
.ls12{letter-spacing:2.370000px;}
.lsa{letter-spacing:2.430000px;}
.ls9{letter-spacing:7.875000px;}
.ls14{letter-spacing:46.887000px;}
.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;}
}
.ws8{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.ws7{word-spacing:-15.619500px;}
.ws3{word-spacing:-15.354000px;}
.wsd{word-spacing:-15.063000px;}
.ws9{word-spacing:-14.625000px;}
.ws5{word-spacing:-14.238000px;}
.ws0{word-spacing:-13.842000px;}
.wsa{word-spacing:-13.221000px;}
.ws2{word-spacing:-12.531000px;}
.ws1{word-spacing:-11.826000px;}
.ws6{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._b{margin-left:-6.888000px;}
._7{margin-left:-5.733000px;}
._a{margin-left:-4.593000px;}
._6{margin-left:-2.823000px;}
._1{margin-left:-1.696500px;}
._0{width:1.309500px;}
._4{width:2.418000px;}
._3{width:4.047000px;}
._9{width:5.269500px;}
._8{width:6.912000px;}
._12{width:7.912500px;}
._2{width:8.986500px;}
._5{width:10.225500px;}
._11{width:12.183000px;}
._10{width:13.296000px;}
._d{width:14.439000px;}
._13{width:15.943500px;}
._f{width:17.175000px;}
._c{width:18.310500px;}
._e{width:21.046500px;}
._18{width:22.288500px;}
._17{width:25.135500px;}
._15{width:26.463000px;}
._16{width:29.532000px;}
._14{width:30.646500px;}
.fc6{color:rgb(255,192,0);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc7{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:9.000000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:63.000000px;}
.fs3{font-size:67.500000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y20{bottom:3.375000px;}
.y3d{bottom:5.625000px;}
.yd{bottom:5.655000px;}
.yb{bottom:13.500000px;}
.y22{bottom:14.670000px;}
.y3{bottom:18.000000px;}
.y1f{bottom:21.405000px;}
.y4{bottom:25.875000px;}
.ya{bottom:30.405000px;}
.y1e{bottom:33.780000px;}
.y31{bottom:33.795000px;}
.y2{bottom:37.162500px;}
.y9{bottom:46.155000px;}
.y1{bottom:48.412500px;}
.y30{bottom:48.420000px;}
.y1d{bottom:54.030000px;}
.y2f{bottom:63.030000px;}
.y1c{bottom:70.950000px;}
.y8{bottom:73.200000px;}
.y2e{bottom:79.950000px;}
.y1b{bottom:83.325000px;}
.y7{bottom:93.450000px;}
.y3b{bottom:96.825000px;}
.y2d{bottom:97.950000px;}
.y1a{bottom:103.620000px;}
.y6{bottom:110.355000px;}
.y3a{bottom:113.745000px;}
.y2c{bottom:114.870000px;}
.y19{bottom:115.995000px;}
.y4a{bottom:120.487500px;}
.y2b{bottom:131.745000px;}
.y18{bottom:136.245000px;}
.y49{bottom:138.487500px;}
.y17{bottom:149.775000px;}
.y39{bottom:150.900000px;}
.y48{bottom:155.370000px;}
.y7f{bottom:162.150000px;}
.y2a{bottom:166.650000px;}
.y16{bottom:168.900000px;}
.y47{bottom:172.275000px;}
.y7e{bottom:179.025000px;}
.y5a{bottom:181.275000px;}
.y15{bottom:182.445000px;}
.y29{bottom:184.650000px;}
.y38{bottom:186.900000px;}
.y7d{bottom:197.025000px;}
.y14{bottom:200.445000px;}
.y28{bottom:201.570000px;}
.y37{bottom:204.945000px;}
.y7c{bottom:213.945000px;}
.y13{bottom:219.570000px;}
.y36{bottom:224.070000px;}
.y27{bottom:236.475000px;}
.y12{bottom:240.975000px;}
.y35{bottom:242.100000px;}
.y7b{bottom:243.225000px;}
.y59{bottom:247.725000px;}
.y46{bottom:248.850000px;}
.y26{bottom:254.475000px;}
.y11{bottom:255.600000px;}
.y34{bottom:260.100000px;}
.y58{bottom:264.600000px;}
.y45{bottom:265.725000px;}
.y7a{bottom:278.100000px;}
.y33{bottom:278.130000px;}
.y10{bottom:280.395000px;}
.y44{bottom:282.600000px;}
.y25{bottom:282.630000px;}
.y32{bottom:297.270000px;}
.y43{bottom:300.630000px;}
.y24{bottom:300.645000px;}
.yf{bottom:301.770000px;}
.y79{bottom:307.380000px;}
.y57{bottom:319.755000px;}
.y78{bottom:324.255000px;}
.y42{bottom:329.925000px;}
.y77{bottom:341.175000px;}
.y41{bottom:346.800000px;}
.y40{bottom:363.675000px;}
.y76{bottom:370.455000px;}
.y3f{bottom:381.705000px;}
.y75{bottom:388.455000px;}
.y3e{bottom:398.580000px;}
.y74{bottom:405.330000px;}
.y3c{bottom:412.125000px;}
.y73{bottom:422.250000px;}
.y23{bottom:429.000000px;}
.y72{bottom:451.530000px;}
.y71{bottom:469.545000px;}
.y70{bottom:486.420000px;}
.y6f{bottom:503.325000px;}
.y6e{bottom:532.575000px;}
.y9e{bottom:548.355000px;}
.y6d{bottom:550.620000px;}
.y9d{bottom:566.370000px;}
.y6c{bottom:579.900000px;}
.y9c{bottom:584.400000px;}
.y6b{bottom:596.775000px;}
.y9b{bottom:602.400000px;}
.y6a{bottom:613.650000px;}
.y9a{bottom:619.320000px;}
.y99{bottom:637.320000px;}
.y69{bottom:642.945000px;}
.y98{bottom:654.195000px;}
.y68{bottom:660.975000px;}
.y56{bottom:664.350000px;}
.y97{bottom:671.100000px;}
.y67{bottom:677.850000px;}
.y55{bottom:682.350000px;}
.y96{bottom:689.100000px;}
.y66{bottom:694.725000px;}
.y54{bottom:700.350000px;}
.y95{bottom:706.020000px;}
.y65{bottom:712.770000px;}
.y53{bottom:717.255000px;}
.y94{bottom:722.895000px;}
.y64{bottom:729.645000px;}
.y52{bottom:734.130000px;}
.y21{bottom:740.880000px;}
.y63{bottom:746.550000px;}
.y51{bottom:752.175000px;}
.y93{bottom:757.800000px;}
.y62{bottom:764.550000px;}
.ye{bottom:770.175000px;}
.y92{bottom:774.675000px;}
.y61{bottom:781.425000px;}
.y60{bottom:798.330000px;}
.y91{bottom:808.455000px;}
.y90{bottom:826.455000px;}
.y5f{bottom:827.625000px;}
.y8f{bottom:843.375000px;}
.y5e{bottom:845.625000px;}
.y8e{bottom:861.375000px;}
.y5d{bottom:877.170000px;}
.y8d{bottom:878.295000px;}
.y8c{bottom:895.170000px;}
.y5c{bottom:896.295000px;}
.y5b{bottom:913.200000px;}
.y8b{bottom:924.450000px;}
.y8a{bottom:942.450000px;}
.y89{bottom:971.745000px;}
.y88{bottom:988.620000px;}
.y87{bottom:1005.525000px;}
.y86{bottom:1023.525000px;}
.y85{bottom:1040.445000px;}
.y84{bottom:1057.320000px;}
.yc{bottom:1074.195000px;}
.y83{bottom:1075.320000px;}
.y82{bottom:1092.225000px;}
.y5{bottom:1094.475000px;}
.y50{bottom:1114.725000px;}
.y81{bottom:1121.505000px;}
.y4f{bottom:1133.880000px;}
.y80{bottom:1138.380000px;}
.y4e{bottom:1150.755000px;}
.y4d{bottom:1167.675000px;}
.y4c{bottom:1185.675000px;}
.y4b{bottom:1202.580000px;}
.hd{height:6.626953px;}
.h1f{height:16.875000px;}
.hb{height:20.287500px;}
.hf{height:27.000000px;}
.h14{height:29.287500px;}
.h11{height:29.953125px;}
.h8{height:37.125000px;}
.h1b{height:37.415039px;}
.h13{height:39.832031px;}
.h20{height:41.275635px;}
.h1a{height:41.389893px;}
.h1e{height:42.303955px;}
.h25{height:42.589600px;}
.h12{height:43.453125px;}
.ha{height:43.875000px;}
.h4{height:44.217773px;}
.h19{height:47.074219px;}
.h24{height:47.227354px;}
.h21{height:47.287354px;}
.h22{height:47.407354px;}
.h17{height:49.234131px;}
.h2{height:51.787500px;}
.h9{height:54.000000px;}
.h10{height:55.291992px;}
.h26{height:55.700684px;}
.h1c{height:58.185791px;}
.h18{height:59.899658px;}
.he{height:64.237500px;}
.h3{height:64.507324px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h1d{height:85.189966px;}
.h23{height:87.699243px;}
.h7{height:121.612500px;}
.hc{height:304.020000px;}
.h16{height:311.880000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:144.150000px;}
.w8{width:203.850000px;}
.w9{width:486.630000px;}
.wa{width:548.595000px;}
.w5{width:595.920000px;}
.w1{width:674.745000px;}
.w7{width:690.480000px;}
.w6{width:740.070000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.xf{left:15.750000px;}
.x11{left:19.125000px;}
.x19{left:22.500000px;}
.x18{left:27.000000px;}
.x15{left:67.575000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x17{left:74.325000px;}
.x13{left:78.817500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x25{left:108.149987px;}
.x1b{left:109.237500px;}
.x26{left:135.187487px;}
.x22{left:156.554987px;}
.x1c{left:190.342500px;}
.x1f{left:210.644987px;}
.x7{left:217.395000px;}
.x1a{left:264.712500px;}
.x14{left:266.962500px;}
.x1d{left:277.095000px;}
.xb{left:290.610000px;}
.x24{left:292.874987px;}
.x10{left:314.257500px;}
.x16{left:316.492500px;}
.x12{left:319.867500px;}
.xe{left:344.662500px;}
.x9{left:345.825000px;}
.xa{left:364.980000px;}
.xd{left:431.430000px;}
.x20{left:447.194987px;}
.xc{left:453.975000px;}
.x21{left:621.794987px;}
.x1e{left:628.544987px;}
.x23{left:742.319987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-16.106667pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.106667pt;}
.lse{letter-spacing:-2.421333pt;}
.ls11{letter-spacing:-1.317333pt;}
.lsf{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.248000pt;}
.ls7{letter-spacing:0.884000pt;}
.ls2{letter-spacing:1.312000pt;}
.lsc{letter-spacing:1.456000pt;}
.ls10{letter-spacing:1.552000pt;}
.ls16{letter-spacing:1.637333pt;}
.ls4{letter-spacing:1.748000pt;}
.ls6{letter-spacing:1.854667pt;}
.ls15{letter-spacing:1.924000pt;}
.ls13{letter-spacing:1.946667pt;}
.ls8{letter-spacing:2.000000pt;}
.ls5{letter-spacing:2.072000pt;}
.ls3{letter-spacing:2.093333pt;}
.ls12{letter-spacing:2.106667pt;}
.lsa{letter-spacing:2.160000pt;}
.ls9{letter-spacing:7.000000pt;}
.ls14{letter-spacing:41.677333pt;}
.ws8{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws7{word-spacing:-13.884000pt;}
.ws3{word-spacing:-13.648000pt;}
.wsd{word-spacing:-13.389333pt;}
.ws9{word-spacing:-13.000000pt;}
.ws5{word-spacing:-12.656000pt;}
.ws0{word-spacing:-12.304000pt;}
.wsa{word-spacing:-11.752000pt;}
.ws2{word-spacing:-11.138667pt;}
.ws1{word-spacing:-10.512000pt;}
.ws6{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._b{margin-left:-6.122667pt;}
._7{margin-left:-5.096000pt;}
._a{margin-left:-4.082667pt;}
._6{margin-left:-2.509333pt;}
._1{margin-left:-1.508000pt;}
._0{width:1.164000pt;}
._4{width:2.149333pt;}
._3{width:3.597333pt;}
._9{width:4.684000pt;}
._8{width:6.144000pt;}
._12{width:7.033333pt;}
._2{width:7.988000pt;}
._5{width:9.089333pt;}
._11{width:10.829333pt;}
._10{width:11.818667pt;}
._d{width:12.834667pt;}
._13{width:14.172000pt;}
._f{width:15.266667pt;}
._c{width:16.276000pt;}
._e{width:18.708000pt;}
._18{width:19.812000pt;}
._17{width:22.342667pt;}
._15{width:23.522667pt;}
._16{width:26.250667pt;}
._14{width:27.241333pt;}
.fs6{font-size:8.000000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:56.000000pt;}
.fs3{font-size:60.000000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:3.000000pt;}
.y3d{bottom:5.000000pt;}
.yd{bottom:5.026667pt;}
.yb{bottom:12.000000pt;}
.y22{bottom:13.040000pt;}
.y3{bottom:16.000000pt;}
.y1f{bottom:19.026667pt;}
.y4{bottom:23.000000pt;}
.ya{bottom:27.026667pt;}
.y1e{bottom:30.026667pt;}
.y31{bottom:30.040000pt;}
.y2{bottom:33.033333pt;}
.y9{bottom:41.026667pt;}
.y1{bottom:43.033333pt;}
.y30{bottom:43.040000pt;}
.y1d{bottom:48.026667pt;}
.y2f{bottom:56.026667pt;}
.y1c{bottom:63.066667pt;}
.y8{bottom:65.066667pt;}
.y2e{bottom:71.066667pt;}
.y1b{bottom:74.066667pt;}
.y7{bottom:83.066667pt;}
.y3b{bottom:86.066667pt;}
.y2d{bottom:87.066667pt;}
.y1a{bottom:92.106667pt;}
.y6{bottom:98.093333pt;}
.y3a{bottom:101.106667pt;}
.y2c{bottom:102.106667pt;}
.y19{bottom:103.106667pt;}
.y4a{bottom:107.100000pt;}
.y2b{bottom:117.106667pt;}
.y18{bottom:121.106667pt;}
.y49{bottom:123.100000pt;}
.y17{bottom:133.133333pt;}
.y39{bottom:134.133333pt;}
.y48{bottom:138.106667pt;}
.y7f{bottom:144.133333pt;}
.y2a{bottom:148.133333pt;}
.y16{bottom:150.133333pt;}
.y47{bottom:153.133333pt;}
.y7e{bottom:159.133333pt;}
.y5a{bottom:161.133333pt;}
.y15{bottom:162.173333pt;}
.y29{bottom:164.133333pt;}
.y38{bottom:166.133333pt;}
.y7d{bottom:175.133333pt;}
.y14{bottom:178.173333pt;}
.y28{bottom:179.173333pt;}
.y37{bottom:182.173333pt;}
.y7c{bottom:190.173333pt;}
.y13{bottom:195.173333pt;}
.y36{bottom:199.173333pt;}
.y27{bottom:210.200000pt;}
.y12{bottom:214.200000pt;}
.y35{bottom:215.200000pt;}
.y7b{bottom:216.200000pt;}
.y59{bottom:220.200000pt;}
.y46{bottom:221.200000pt;}
.y26{bottom:226.200000pt;}
.y11{bottom:227.200000pt;}
.y34{bottom:231.200000pt;}
.y58{bottom:235.200000pt;}
.y45{bottom:236.200000pt;}
.y7a{bottom:247.200000pt;}
.y33{bottom:247.226667pt;}
.y10{bottom:249.240000pt;}
.y44{bottom:251.200000pt;}
.y25{bottom:251.226667pt;}
.y32{bottom:264.240000pt;}
.y43{bottom:267.226667pt;}
.y24{bottom:267.240000pt;}
.yf{bottom:268.240000pt;}
.y79{bottom:273.226667pt;}
.y57{bottom:284.226667pt;}
.y78{bottom:288.226667pt;}
.y42{bottom:293.266667pt;}
.y77{bottom:303.266667pt;}
.y41{bottom:308.266667pt;}
.y40{bottom:323.266667pt;}
.y76{bottom:329.293333pt;}
.y3f{bottom:339.293333pt;}
.y75{bottom:345.293333pt;}
.y3e{bottom:354.293333pt;}
.y74{bottom:360.293333pt;}
.y3c{bottom:366.333333pt;}
.y73{bottom:375.333333pt;}
.y23{bottom:381.333333pt;}
.y72{bottom:401.360000pt;}
.y71{bottom:417.373333pt;}
.y70{bottom:432.373333pt;}
.y6f{bottom:447.400000pt;}
.y6e{bottom:473.400000pt;}
.y9e{bottom:487.426667pt;}
.y6d{bottom:489.440000pt;}
.y9d{bottom:503.440000pt;}
.y6c{bottom:515.466667pt;}
.y9c{bottom:519.466667pt;}
.y6b{bottom:530.466667pt;}
.y9b{bottom:535.466667pt;}
.y6a{bottom:545.466667pt;}
.y9a{bottom:550.506667pt;}
.y99{bottom:566.506667pt;}
.y69{bottom:571.506667pt;}
.y98{bottom:581.506667pt;}
.y68{bottom:587.533333pt;}
.y56{bottom:590.533333pt;}
.y97{bottom:596.533333pt;}
.y67{bottom:602.533333pt;}
.y55{bottom:606.533333pt;}
.y96{bottom:612.533333pt;}
.y66{bottom:617.533333pt;}
.y54{bottom:622.533333pt;}
.y95{bottom:627.573333pt;}
.y65{bottom:633.573333pt;}
.y53{bottom:637.560000pt;}
.y94{bottom:642.573333pt;}
.y64{bottom:648.573333pt;}
.y52{bottom:652.560000pt;}
.y21{bottom:658.560000pt;}
.y63{bottom:663.600000pt;}
.y51{bottom:668.600000pt;}
.y93{bottom:673.600000pt;}
.y62{bottom:679.600000pt;}
.ye{bottom:684.600000pt;}
.y92{bottom:688.600000pt;}
.y61{bottom:694.600000pt;}
.y60{bottom:709.626667pt;}
.y91{bottom:718.626667pt;}
.y90{bottom:734.626667pt;}
.y5f{bottom:735.666667pt;}
.y8f{bottom:749.666667pt;}
.y5e{bottom:751.666667pt;}
.y8e{bottom:765.666667pt;}
.y5d{bottom:779.706667pt;}
.y8d{bottom:780.706667pt;}
.y8c{bottom:795.706667pt;}
.y5c{bottom:796.706667pt;}
.y5b{bottom:811.733333pt;}
.y8b{bottom:821.733333pt;}
.y8a{bottom:837.733333pt;}
.y89{bottom:863.773333pt;}
.y88{bottom:878.773333pt;}
.y87{bottom:893.800000pt;}
.y86{bottom:909.800000pt;}
.y85{bottom:924.840000pt;}
.y84{bottom:939.840000pt;}
.yc{bottom:954.840000pt;}
.y83{bottom:955.840000pt;}
.y82{bottom:970.866667pt;}
.y5{bottom:972.866667pt;}
.y50{bottom:990.866667pt;}
.y81{bottom:996.893333pt;}
.y4f{bottom:1007.893333pt;}
.y80{bottom:1011.893333pt;}
.y4e{bottom:1022.893333pt;}
.y4d{bottom:1037.933333pt;}
.y4c{bottom:1053.933333pt;}
.y4b{bottom:1068.960000pt;}
.hd{height:5.890625pt;}
.h1f{height:15.000000pt;}
.hb{height:18.033333pt;}
.hf{height:24.000000pt;}
.h14{height:26.033333pt;}
.h11{height:26.625000pt;}
.h8{height:33.000000pt;}
.h1b{height:33.257812pt;}
.h13{height:35.406250pt;}
.h20{height:36.689453pt;}
.h1a{height:36.791016pt;}
.h1e{height:37.603516pt;}
.h25{height:37.857422pt;}
.h12{height:38.625000pt;}
.ha{height:39.000000pt;}
.h4{height:39.304688pt;}
.h19{height:41.843750pt;}
.h24{height:41.979870pt;}
.h21{height:42.033203pt;}
.h22{height:42.139870pt;}
.h17{height:43.763672pt;}
.h2{height:46.033333pt;}
.h9{height:48.000000pt;}
.h10{height:49.148438pt;}
.h26{height:49.511719pt;}
.h1c{height:51.720703pt;}
.h18{height:53.244141pt;}
.he{height:57.100000pt;}
.h3{height:57.339844pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h1d{height:75.724414pt;}
.h23{height:77.954883pt;}
.h7{height:108.100000pt;}
.hc{height:270.240000pt;}
.h16{height:277.226667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:128.133333pt;}
.w8{width:181.200000pt;}
.w9{width:432.560000pt;}
.wa{width:487.640000pt;}
.w5{width:529.706667pt;}
.w1{width:599.773333pt;}
.w7{width:613.760000pt;}
.w6{width:657.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.xf{left:14.000000pt;}
.x11{left:17.000000pt;}
.x19{left:20.000000pt;}
.x18{left:24.000000pt;}
.x15{left:60.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x17{left:66.066667pt;}
.x13{left:70.060000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x25{left:96.133322pt;}
.x1b{left:97.100000pt;}
.x26{left:120.166655pt;}
.x22{left:139.159988pt;}
.x1c{left:169.193333pt;}
.x1f{left:187.239988pt;}
.x7{left:193.240000pt;}
.x1a{left:235.300000pt;}
.x14{left:237.300000pt;}
.x1d{left:246.306667pt;}
.xb{left:258.320000pt;}
.x24{left:260.333322pt;}
.x10{left:279.340000pt;}
.x16{left:281.326667pt;}
.x12{left:284.326667pt;}
.xe{left:306.366667pt;}
.x9{left:307.400000pt;}
.xa{left:324.426667pt;}
.xd{left:383.493333pt;}
.x20{left:397.506655pt;}
.xc{left:403.533333pt;}
.x21{left:552.706655pt;}
.x1e{left:558.706655pt;}
.x23{left:659.839988pt;}
.x3{left:663.840000pt;}
}




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