
    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_637e26a001e2feae846ee944.woff')format("woff");}.ff1{font-family:ff1;line-height:0.924053;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_9446c1e30fadd911d3fd9cd9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963200;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_293cf50a9856b716fbf6df18.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_6997a647f5f5b719c60a8d89.woff')format("woff");}.ff4{font-family:ff4;line-height:0.965200;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_523cb85dac63219c643bdb7a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_30449f25426d48338c283a95.woff')format("woff");}.ff6{font-family:ff6;line-height:0.928200;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_f34f07d2df2b5f32a9df605d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_4a36ed28ce25aa9892301c74.woff')format("woff");}.ff8{font-family:ff8;line-height:0.924053;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_3b323657628770bf2c691273.woff')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_3ca32f31dc44cd19ac9312af.woff')format("woff");}.ffa{font-family:ffa;line-height:0.971000;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_3cc1dbb58cc53bc81896cc5b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_420de949cfb69bd7067da12e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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_c00217ce3107518f07df0f42.woff')format("woff");}.ffd{font-family:ffd;line-height:0.924053;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_4acd2621efb8dfd190e69841.woff')format("woff");}.ffe{font-family:ffe;line-height:0.928200;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_76ae1e8f62b5a6dd81bde5d8.woff')format("woff");}.fff{font-family:fff;line-height:0.700000;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;}
.m11{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m3{transform:matrix(0.292037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292037,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292640,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.293116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293116,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293149,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.293160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293160,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293166,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.293172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293172,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.293177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293177,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293183,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293188,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293194,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.293199,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293199,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293199,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.293753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293753,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls7{letter-spacing:-1.878114px;}
.ls8{letter-spacing:-1.341510px;}
.ls6{letter-spacing:-0.536604px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.699424px;}
.ls9{letter-spacing:0.780000px;}
.lsa{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.960000px;}
.ls2{letter-spacing:1.200000px;}
.ls0{letter-spacing:2.160000px;}
.ls3{letter-spacing:2.880000px;}
.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;}
}
.wsb{word-spacing:-33.480000px;}
.ws4{word-spacing:-31.680000px;}
.wsa{word-spacing:-30.240000px;}
.ws9{word-spacing:-24.522000px;}
.ws10{word-spacing:-17.640000px;}
.ws2{word-spacing:-13.200000px;}
.wsf{word-spacing:-12.780000px;}
.ws11{word-spacing:-9.240000px;}
.ws5{word-spacing:-6.975852px;}
.ws6{word-spacing:-6.439248px;}
.ws8{word-spacing:-5.634342px;}
.ws7{word-spacing:-5.097738px;}
.ws1{word-spacing:-2.880000px;}
.wsd{word-spacing:-1.200000px;}
.ws12{word-spacing:-0.840000px;}
.wse{word-spacing:-0.300000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:1.200000px;}
.ws3{word-spacing:13.020000px;}
._6{margin-left:-26.890800px;}
._7{margin-left:-11.611200px;}
._5{margin-left:-7.315800px;}
._3{margin-left:-4.968000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.684200px;}
._4{width:1.341000px;}
._2{width:2.352600px;}
._a{width:17.319000px;}
._9{width:26.220000px;}
._8{width:28.560000px;}
._b{width:31.764000px;}
.fc9{color:rgb(249,184,112);}
.fc8{color:rgb(229,0,125);}
.fc6{color:rgb(49,92,167);}
.fc5{color:rgb(39,91,155);}
.fc3{color:rgb(0,67,116);}
.fc2{color:rgb(243,147,37);}
.fc1{color:transparent;}
.fc7{color:rgb(26,26,26);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:26.830200px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:27.334350px;}
.y21{bottom:42.755850px;}
.y1{bottom:43.818900px;}
.y59{bottom:52.248300px;}
.y58{bottom:61.831050px;}
.y54{bottom:69.493950px;}
.y53{bottom:79.076550px;}
.y57{bottom:86.744400px;}
.y4f{bottom:91.534650px;}
.y56{bottom:96.328209px;}
.y44{bottom:111.613500px;}
.y52{bottom:121.241100px;}
.y5a{bottom:126.030000px;}
.y43{bottom:127.558950px;}
.y68{bottom:129.814950px;}
.y51{bottom:130.822350px;}
.y50{bottom:155.734350px;}
.y4e{bottom:183.017550px;}
.y99{bottom:184.275450px;}
.yb9{bottom:186.483300px;}
.y42{bottom:187.275450px;}
.yb8{bottom:201.487800px;}
.y4d{bottom:207.929400px;}
.y98{bottom:208.275450px;}
.y41{bottom:211.275450px;}
.yb7{bottom:216.492300px;}
.y6{bottom:219.646950px;}
.yb6{bottom:231.496800px;}
.y97{bottom:232.275450px;}
.y4c{bottom:232.845600px;}
.y40{bottom:235.275450px;}
.y47{bottom:235.719600px;}
.y46{bottom:245.300850px;}
.y48{bottom:245.303700px;}
.yb5{bottom:246.501300px;}
.y5{bottom:252.640950px;}
.y45{bottom:254.882850px;}
.y96{bottom:256.275450px;}
.y4b{bottom:257.754502px;}
.y3f{bottom:259.275450px;}
.yb4{bottom:261.505800px;}
.yb3{bottom:276.510300px;}
.y95{bottom:280.275450px;}
.y4a{bottom:282.673050px;}
.y3e{bottom:283.275450px;}
.y66{bottom:285.345802px;}
.y4{bottom:285.634950px;}
.yb2{bottom:291.514800px;}
.y3d{bottom:307.275450px;}
.y49{bottom:307.584450px;}
.y20{bottom:309.240300px;}
.y65{bottom:310.264350px;}
.yb1{bottom:312.514800px;}
.y3{bottom:318.628950px;}
.yb0{bottom:327.519300px;}
.y94{bottom:328.275450px;}
.y3c{bottom:331.275450px;}
.y1f{bottom:333.240300px;}
.y64{bottom:335.176350px;}
.y5e{bottom:339.968700px;}
.yaf{bottom:342.523800px;}
.y83{bottom:344.775450px;}
.y93{bottom:352.275450px;}
.y1e{bottom:357.240300px;}
.yae{bottom:357.528300px;}
.y63{bottom:360.092400px;}
.y82{bottom:368.775450px;}
.yad{bottom:372.532800px;}
.y92{bottom:376.275450px;}
.y5b{bottom:377.338050px;}
.y3b{bottom:379.275450px;}
.y1d{bottom:381.240300px;}
.y62{bottom:385.006650px;}
.y81{bottom:392.775450px;}
.yac{bottom:393.532800px;}
.y61{bottom:394.588500px;}
.y91{bottom:400.275450px;}
.y36{bottom:403.275450px;}
.y1c{bottom:405.240300px;}
.yab{bottom:408.537300px;}
.y80{bottom:416.775450px;}
.y5d{bottom:419.499750px;}
.y90{bottom:424.275450px;}
.y35{bottom:427.275450px;}
.yaa{bottom:429.537300px;}
.y7f{bottom:440.775450px;}
.y60{bottom:444.416100px;}
.ya9{bottom:444.541800px;}
.y34{bottom:451.275450px;}
.y1b{bottom:453.240300px;}
.y5c{bottom:456.869250px;}
.y7e{bottom:464.775450px;}
.ya8{bottom:465.541800px;}
.y5f{bottom:469.327200px;}
.y8f{bottom:472.275450px;}
.y33{bottom:475.275450px;}
.y1a{bottom:477.240300px;}
.ya7{bottom:480.546300px;}
.ya6{bottom:495.550800px;}
.ya4{bottom:496.275450px;}
.y32{bottom:499.275450px;}
.y19{bottom:501.240300px;}
.y7d{bottom:502.275450px;}
.ya5{bottom:512.050800px;}
.ya3{bottom:520.275450px;}
.y3a{bottom:523.275450px;}
.y18{bottom:525.240300px;}
.y7c{bottom:526.275450px;}
.ya2{bottom:544.275450px;}
.y31{bottom:547.275450px;}
.y17{bottom:549.240300px;}
.y7b{bottom:550.275450px;}
.y30{bottom:571.275450px;}
.y16{bottom:573.240300px;}
.y7a{bottom:574.275450px;}
.y67{bottom:577.523550px;}
.ya1{bottom:592.275450px;}
.y2f{bottom:595.275450px;}
.y79{bottom:598.275450px;}
.ya0{bottom:616.275450px;}
.y2e{bottom:619.275450px;}
.y15{bottom:621.240300px;}
.y8e{bottom:622.275450px;}
.y78{bottom:634.275450px;}
.y39{bottom:643.275450px;}
.y14{bottom:645.240300px;}
.y8d{bottom:646.275450px;}
.y77{bottom:658.275450px;}
.y9f{bottom:664.275450px;}
.y2d{bottom:667.275450px;}
.y13{bottom:669.240300px;}
.y8c{bottom:685.275450px;}
.y9e{bottom:688.275450px;}
.y2c{bottom:691.275450px;}
.y12{bottom:693.240300px;}
.y76{bottom:706.275450px;}
.y8b{bottom:709.275450px;}
.y9d{bottom:712.275450px;}
.y2b{bottom:715.275450px;}
.y11{bottom:717.240300px;}
.y8a{bottom:733.275450px;}
.y9c{bottom:736.275450px;}
.y38{bottom:739.275450px;}
.y10{bottom:741.240300px;}
.y2a{bottom:763.275450px;}
.yf{bottom:765.240300px;}
.y89{bottom:772.275450px;}
.y9b{bottom:784.275450px;}
.y29{bottom:787.275450px;}
.y88{bottom:796.275450px;}
.y75{bottom:808.275450px;}
.y28{bottom:811.275450px;}
.y87{bottom:820.275450px;}
.y74{bottom:832.275450px;}
.y27{bottom:835.275450px;}
.ye{bottom:838.110300px;}
.y73{bottom:856.275450px;}
.y26{bottom:859.275450px;}
.yd{bottom:868.110300px;}
.y72{bottom:880.275450px;}
.y37{bottom:883.275450px;}
.yc{bottom:898.110300px;}
.y71{bottom:904.275450px;}
.y25{bottom:907.275450px;}
.y70{bottom:928.275450px;}
.y24{bottom:931.275450px;}
.y9a{bottom:952.275450px;}
.y23{bottom:955.275450px;}
.y86{bottom:961.275450px;}
.y6f{bottom:976.275450px;}
.yb{bottom:979.275450px;}
.y85{bottom:985.275450px;}
.y6e{bottom:1000.275450px;}
.ya{bottom:1003.275450px;}
.y84{bottom:1009.275450px;}
.y6d{bottom:1024.275450px;}
.y9{bottom:1027.275450px;}
.y6c{bottom:1048.275450px;}
.y8{bottom:1051.275450px;}
.y6b{bottom:1072.275450px;}
.y22{bottom:1075.275450px;}
.y6a{bottom:1096.275450px;}
.y7{bottom:1099.275450px;}
.y69{bottom:1120.275450px;}
.y2{bottom:1238.716500px;}
.he{height:20.390952px;}
.hf{height:20.525103px;}
.h2{height:30.114000px;}
.h14{height:31.878000px;}
.hc{height:32.046000px;}
.h10{height:34.416000px;}
.h3{height:36.432000px;}
.h9{height:42.000000px;}
.h12{height:43.020000px;}
.h11{height:43.380000px;}
.ha{height:45.540000px;}
.h7{height:45.600000px;}
.h8{height:45.780000px;}
.hb{height:46.669740px;}
.h13{height:63.756000px;}
.h4{height:76.140000px;}
.h5{height:81.972000px;}
.h6{height:109.296000px;}
.hd{height:525.118500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.795500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:35.426850px;}
.xb{left:44.461350px;}
.xd{left:56.471400px;}
.x5{left:127.559100px;}
.x1d{left:150.059100px;}
.x1c{left:161.574750px;}
.x19{left:162.637800px;}
.x1{left:168.803100px;}
.xe{left:175.972200px;}
.x6{left:183.315000px;}
.x3{left:187.086600px;}
.x7{left:195.945000px;}
.x10{left:203.193600px;}
.x16{left:227.315400px;}
.xf{left:292.847400px;}
.x11{left:309.953550px;}
.x8{left:354.435000px;}
.x17{left:361.877550px;}
.x18{left:464.141550px;}
.x13{left:468.970195px;}
.x14{left:478.526850px;}
.x15{left:494.819850px;}
.x12{left:509.992950px;}
.x1f{left:521.078700px;}
.x1a{left:688.265850px;}
.x1b{left:697.040850px;}
.xa{left:745.987800px;}
.x9{left:760.514100px;}
.x1e{left:860.475750px;}
.x4{left:862.659600px;}
.x2{left:863.895750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls7{letter-spacing:-1.669435pt;}
.ls8{letter-spacing:-1.192453pt;}
.ls6{letter-spacing:-0.476981pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.621710pt;}
.ls9{letter-spacing:0.693333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.853333pt;}
.ls2{letter-spacing:1.066667pt;}
.ls0{letter-spacing:1.920000pt;}
.ls3{letter-spacing:2.560000pt;}
.wsb{word-spacing:-29.760000pt;}
.ws4{word-spacing:-28.160000pt;}
.wsa{word-spacing:-26.880000pt;}
.ws9{word-spacing:-21.797333pt;}
.ws10{word-spacing:-15.680000pt;}
.ws2{word-spacing:-11.733333pt;}
.wsf{word-spacing:-11.360000pt;}
.ws11{word-spacing:-8.213333pt;}
.ws5{word-spacing:-6.200757pt;}
.ws6{word-spacing:-5.723776pt;}
.ws8{word-spacing:-5.008304pt;}
.ws7{word-spacing:-4.531323pt;}
.ws1{word-spacing:-2.560000pt;}
.wsd{word-spacing:-1.066667pt;}
.ws12{word-spacing:-0.746667pt;}
.wse{word-spacing:-0.266667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:1.066667pt;}
.ws3{word-spacing:11.573333pt;}
._6{margin-left:-23.902933pt;}
._7{margin-left:-10.321067pt;}
._5{margin-left:-6.502933pt;}
._3{margin-left:-4.416000pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.497067pt;}
._4{width:1.192000pt;}
._2{width:2.091200pt;}
._a{width:15.394667pt;}
._9{width:23.306667pt;}
._8{width:25.386667pt;}
._b{width:28.234667pt;}
.fs6{font-size:23.849067pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:24.297200pt;}
.y21{bottom:38.005200pt;}
.y1{bottom:38.950133pt;}
.y59{bottom:46.442933pt;}
.y58{bottom:54.960933pt;}
.y54{bottom:61.772400pt;}
.y53{bottom:70.290267pt;}
.y57{bottom:77.106133pt;}
.y4f{bottom:81.364133pt;}
.y56{bottom:85.625075pt;}
.y44{bottom:99.212000pt;}
.y52{bottom:107.769867pt;}
.y5a{bottom:112.026667pt;}
.y43{bottom:113.385733pt;}
.y68{bottom:115.391067pt;}
.y51{bottom:116.286533pt;}
.y50{bottom:138.430533pt;}
.y4e{bottom:162.682267pt;}
.y99{bottom:163.800400pt;}
.yb9{bottom:165.762933pt;}
.y42{bottom:166.467067pt;}
.yb8{bottom:179.100267pt;}
.y4d{bottom:184.826133pt;}
.y98{bottom:185.133733pt;}
.y41{bottom:187.800400pt;}
.yb7{bottom:192.437600pt;}
.y6{bottom:195.241733pt;}
.yb6{bottom:205.774933pt;}
.y97{bottom:206.467067pt;}
.y4c{bottom:206.973867pt;}
.y40{bottom:209.133733pt;}
.y47{bottom:209.528533pt;}
.y46{bottom:218.045200pt;}
.y48{bottom:218.047733pt;}
.yb5{bottom:219.112267pt;}
.y5{bottom:224.569733pt;}
.y45{bottom:226.562533pt;}
.y96{bottom:227.800400pt;}
.y4b{bottom:229.115113pt;}
.y3f{bottom:230.467067pt;}
.yb4{bottom:232.449600pt;}
.yb3{bottom:245.786933pt;}
.y95{bottom:249.133733pt;}
.y4a{bottom:251.264933pt;}
.y3e{bottom:251.800400pt;}
.y66{bottom:253.640713pt;}
.y4{bottom:253.897733pt;}
.yb2{bottom:259.124267pt;}
.y3d{bottom:273.133733pt;}
.y49{bottom:273.408400pt;}
.y20{bottom:274.880267pt;}
.y65{bottom:275.790533pt;}
.yb1{bottom:277.790933pt;}
.y3{bottom:283.225733pt;}
.yb0{bottom:291.128267pt;}
.y94{bottom:291.800400pt;}
.y3c{bottom:294.467067pt;}
.y1f{bottom:296.213600pt;}
.y64{bottom:297.934533pt;}
.y5e{bottom:302.194400pt;}
.yaf{bottom:304.465600pt;}
.y83{bottom:306.467067pt;}
.y93{bottom:313.133733pt;}
.y1e{bottom:317.546933pt;}
.yae{bottom:317.802933pt;}
.y63{bottom:320.082133pt;}
.y82{bottom:327.800400pt;}
.yad{bottom:331.140267pt;}
.y92{bottom:334.467067pt;}
.y5b{bottom:335.411600pt;}
.y3b{bottom:337.133733pt;}
.y1d{bottom:338.880267pt;}
.y62{bottom:342.228133pt;}
.y81{bottom:349.133733pt;}
.yac{bottom:349.806933pt;}
.y61{bottom:350.745333pt;}
.y91{bottom:355.800400pt;}
.y36{bottom:358.467067pt;}
.y1c{bottom:360.213600pt;}
.yab{bottom:363.144267pt;}
.y80{bottom:370.467067pt;}
.y5d{bottom:372.888667pt;}
.y90{bottom:377.133733pt;}
.y35{bottom:379.800400pt;}
.yaa{bottom:381.810933pt;}
.y7f{bottom:391.800400pt;}
.y60{bottom:395.036533pt;}
.ya9{bottom:395.148267pt;}
.y34{bottom:401.133733pt;}
.y1b{bottom:402.880267pt;}
.y5c{bottom:406.106000pt;}
.y7e{bottom:413.133733pt;}
.ya8{bottom:413.814933pt;}
.y5f{bottom:417.179733pt;}
.y8f{bottom:419.800400pt;}
.y33{bottom:422.467067pt;}
.y1a{bottom:424.213600pt;}
.ya7{bottom:427.152267pt;}
.ya6{bottom:440.489600pt;}
.ya4{bottom:441.133733pt;}
.y32{bottom:443.800400pt;}
.y19{bottom:445.546933pt;}
.y7d{bottom:446.467067pt;}
.ya5{bottom:455.156267pt;}
.ya3{bottom:462.467067pt;}
.y3a{bottom:465.133733pt;}
.y18{bottom:466.880267pt;}
.y7c{bottom:467.800400pt;}
.ya2{bottom:483.800400pt;}
.y31{bottom:486.467067pt;}
.y17{bottom:488.213600pt;}
.y7b{bottom:489.133733pt;}
.y30{bottom:507.800400pt;}
.y16{bottom:509.546933pt;}
.y7a{bottom:510.467067pt;}
.y67{bottom:513.354267pt;}
.ya1{bottom:526.467067pt;}
.y2f{bottom:529.133733pt;}
.y79{bottom:531.800400pt;}
.ya0{bottom:547.800400pt;}
.y2e{bottom:550.467067pt;}
.y15{bottom:552.213600pt;}
.y8e{bottom:553.133733pt;}
.y78{bottom:563.800400pt;}
.y39{bottom:571.800400pt;}
.y14{bottom:573.546933pt;}
.y8d{bottom:574.467067pt;}
.y77{bottom:585.133733pt;}
.y9f{bottom:590.467067pt;}
.y2d{bottom:593.133733pt;}
.y13{bottom:594.880267pt;}
.y8c{bottom:609.133733pt;}
.y9e{bottom:611.800400pt;}
.y2c{bottom:614.467067pt;}
.y12{bottom:616.213600pt;}
.y76{bottom:627.800400pt;}
.y8b{bottom:630.467067pt;}
.y9d{bottom:633.133733pt;}
.y2b{bottom:635.800400pt;}
.y11{bottom:637.546933pt;}
.y8a{bottom:651.800400pt;}
.y9c{bottom:654.467067pt;}
.y38{bottom:657.133733pt;}
.y10{bottom:658.880267pt;}
.y2a{bottom:678.467067pt;}
.yf{bottom:680.213600pt;}
.y89{bottom:686.467067pt;}
.y9b{bottom:697.133733pt;}
.y29{bottom:699.800400pt;}
.y88{bottom:707.800400pt;}
.y75{bottom:718.467067pt;}
.y28{bottom:721.133733pt;}
.y87{bottom:729.133733pt;}
.y74{bottom:739.800400pt;}
.y27{bottom:742.467067pt;}
.ye{bottom:744.986933pt;}
.y73{bottom:761.133733pt;}
.y26{bottom:763.800400pt;}
.yd{bottom:771.653600pt;}
.y72{bottom:782.467067pt;}
.y37{bottom:785.133733pt;}
.yc{bottom:798.320267pt;}
.y71{bottom:803.800400pt;}
.y25{bottom:806.467067pt;}
.y70{bottom:825.133733pt;}
.y24{bottom:827.800400pt;}
.y9a{bottom:846.467067pt;}
.y23{bottom:849.133733pt;}
.y86{bottom:854.467067pt;}
.y6f{bottom:867.800400pt;}
.yb{bottom:870.467067pt;}
.y85{bottom:875.800400pt;}
.y6e{bottom:889.133733pt;}
.ya{bottom:891.800400pt;}
.y84{bottom:897.133733pt;}
.y6d{bottom:910.467067pt;}
.y9{bottom:913.133733pt;}
.y6c{bottom:931.800400pt;}
.y8{bottom:934.467067pt;}
.y6b{bottom:953.133733pt;}
.y22{bottom:955.800400pt;}
.y6a{bottom:974.467067pt;}
.y7{bottom:977.133733pt;}
.y69{bottom:995.800400pt;}
.y2{bottom:1101.081333pt;}
.he{height:18.125291pt;}
.hf{height:18.244536pt;}
.h2{height:26.768000pt;}
.h14{height:28.336000pt;}
.hc{height:28.485333pt;}
.h10{height:30.592000pt;}
.h3{height:32.384000pt;}
.h9{height:37.333333pt;}
.h12{height:38.240000pt;}
.h11{height:38.560000pt;}
.ha{height:40.480000pt;}
.h7{height:40.533333pt;}
.h8{height:40.693333pt;}
.hb{height:41.484213pt;}
.h13{height:56.672000pt;}
.h4{height:67.680000pt;}
.h5{height:72.864000pt;}
.h6{height:97.152000pt;}
.hd{height:466.772000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:31.490533pt;}
.xb{left:39.521200pt;}
.xd{left:50.196800pt;}
.x5{left:113.385867pt;}
.x1d{left:133.385867pt;}
.x1c{left:143.622000pt;}
.x19{left:144.566933pt;}
.x1{left:150.047200pt;}
.xe{left:156.419733pt;}
.x6{left:162.946667pt;}
.x3{left:166.299200pt;}
.x7{left:174.173333pt;}
.x10{left:180.616533pt;}
.x16{left:202.058133pt;}
.xf{left:260.308800pt;}
.x11{left:275.514267pt;}
.x8{left:315.053333pt;}
.x17{left:321.668933pt;}
.x18{left:412.570267pt;}
.x13{left:416.862396pt;}
.x14{left:425.357200pt;}
.x15{left:439.839867pt;}
.x12{left:453.327067pt;}
.x1f{left:463.181067pt;}
.x1a{left:611.791867pt;}
.x1b{left:619.591867pt;}
.xa{left:663.100267pt;}
.x9{left:676.012533pt;}
.x1e{left:764.867333pt;}
.x4{left:766.808533pt;}
.x2{left:767.907333pt;}
}




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