
    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_ee0de6338382ac547e21e38f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011719;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_2909de185c706218261b6099.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_be69335664c179fb2a966478.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964863;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_4cd07afd4536f829a1378b64.woff')format("woff");}.ff4{font-family:ff4;line-height:0.771580;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_0022a4c02f9562ef4fa87aa3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_a3ce439e76471cd0726c5d27.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976587;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_fc5cf7efbab99207f3360ffd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.760254;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_eb7ba2f0f732508ff4618fde.woff')format("woff");}.ff8{font-family:ff8;line-height:0.968750;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_186264116aff6f6f8374e81d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.882000;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_6d33d98ce62dd538e9153b81.woff')format("woff");}.ffa{font-family:ffa;line-height:0.761272;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_5d71bd5efe7b4164a8969258.woff')format("woff");}.ffb{font-family:ffb;line-height:0.731597;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_61338dd72601c857e35fcb03.woff')format("woff");}.ffc{font-family:ffc;line-height:0.746000;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_b5ef2156ea623f2dbff4db41.woff')format("woff");}.ffd{font-family:ffd;line-height:0.753000;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_422da15b98b9e5e7c6c36b44.woff')format("woff");}.ffe{font-family:ffe;line-height:0.765000;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_440328833c8df6abd5ad3596.woff')format("woff");}.fff{font-family:fff;line-height:0.666000;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_386cb4b5a49e69e87c4fe45d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.760254;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_be9234792a5e71a881f04644.woff')format("woff");}.ff11{font-family:ff11;line-height:1.026855;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;}
.m3{transform:matrix(0.097683,-0.230126,0.230126,0.097683,0,0);-ms-transform:matrix(0.097683,-0.230126,0.230126,0.097683,0,0);-webkit-transform:matrix(0.097683,-0.230126,0.230126,0.097683,0,0);}
.m1{transform:matrix(0.132480,0.212012,-0.212012,0.132480,0,0);-ms-transform:matrix(0.132480,0.212012,-0.212012,0.132480,0,0);-webkit-transform:matrix(0.132480,0.212012,-0.212012,0.132480,0,0);}
.m2{transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);-ms-transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);-webkit-transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);}
.m9{transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244236,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);}
.m5{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);}
.m6{transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252099,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281106,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:8.706936px;}
.ls0{letter-spacing:14.763934px;}
.ls2{letter-spacing:25.742244px;}
.ls3{letter-spacing:81.734861px;}
.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;}
}
.ws2{word-spacing:-115.048784px;}
.ws1{word-spacing:-92.023005px;}
.ws0{word-spacing:-53.789104px;}
.ws5{word-spacing:-41.648400px;}
.ws6{word-spacing:-41.308594px;}
.wsa{word-spacing:-21.928711px;}
.ws9{word-spacing:-0.398074px;}
.ws4{word-spacing:-0.300000px;}
.ws7{word-spacing:-0.228000px;}
.ws3{word-spacing:-0.216001px;}
.ws8{word-spacing:-0.204000px;}
.wsb{word-spacing:0.000000px;}
._14{margin-left:-27.588017px;}
._7{margin-left:-15.695999px;}
._2{margin-left:-14.437497px;}
._0{margin-left:-11.547984px;}
._9{margin-left:-9.939640px;}
._3{margin-left:-6.767594px;}
._1{margin-left:-5.413121px;}
._5{margin-left:-4.176000px;}
._4{margin-left:-3.024001px;}
._6{margin-left:-1.546504px;}
._a{width:1.370702px;}
._13{width:2.796344px;}
._8{width:4.542749px;}
._22{width:7.670550px;}
._d{width:8.706936px;}
._17{width:10.188810px;}
._20{width:11.326148px;}
._c{width:13.249685px;}
._b{width:14.574653px;}
._1a{width:19.457006px;}
._11{width:24.282204px;}
._e{width:25.742244px;}
._21{width:29.185509px;}
._1c{width:30.886374px;}
._1b{width:31.914627px;}
._1e{width:33.351225px;}
._2d{width:35.302538px;}
._1f{width:36.304428px;}
._12{width:37.815091px;}
._2c{width:40.801081px;}
._16{width:43.029917px;}
._19{width:53.369490px;}
._15{width:56.549962px;}
._26{width:59.804324px;}
._24{width:61.667387px;}
._28{width:87.750270px;}
._29{width:89.613333px;}
._27{width:94.907171px;}
._23{width:96.692973px;}
._2a{width:98.742342px;}
._1d{width:103.271800px;}
._18{width:112.813216px;}
._2b{width:133.209009px;}
._25{width:159.664504px;}
._10{width:240.183131px;}
._f{width:564.862820px;}
.fcc{color:transparent;}
.fcb{color:rgb(171,173,175);}
.fca{color:rgb(0,125,197);}
.fc9{color:rgb(0,108,171);}
.fc6{color:rgb(227,242,253);}
.fc8{color:rgb(77,77,77);}
.fc7{color:rgb(14,14,14);}
.fc5{color:rgb(54,54,54);}
.fc4{color:rgb(19,19,19);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(250,250,250);}
.fc0{color:rgb(242,242,242);}
.fs1b{font-size:90.000000px;}
.fse{font-size:92.537634px;}
.fsd{font-size:110.887872px;}
.fs8{font-size:143.999994px;}
.fs19{font-size:144.000000px;}
.fs7{font-size:144.000006px;}
.fsc{font-size:167.999856px;}
.fsf{font-size:169.574400px;}
.fs10{font-size:180.000000px;}
.fs14{font-size:186.306306px;}
.fs13{font-size:187.086594px;}
.fs9{font-size:189.281208px;}
.fs11{font-size:190.512090px;}
.fs15{font-size:203.999856px;}
.fsb{font-size:204.094356px;}
.fs0{font-size:216.000168px;}
.fs4{font-size:216.000845px;}
.fs5{font-size:216.000849px;}
.fs12{font-size:228.000138px;}
.fs18{font-size:262.367190px;}
.fs6{font-size:300.000205px;}
.fs3{font-size:336.000156px;}
.fs1{font-size:369.535518px;}
.fsa{font-size:383.999832px;}
.fs16{font-size:398.074362px;}
.fs17{font-size:409.531662px;}
.fs2{font-size:461.999820px;}
.fs1a{font-size:464.322186px;}
.y0{bottom:0.000000px;}
.y77{bottom:50.125331px;}
.y7e{bottom:72.101598px;}
.y76{bottom:78.250331px;}
.y7d{bottom:100.226598px;}
.y7a{bottom:100.228038px;}
.y7c{bottom:133.302026px;}
.y79{bottom:133.303488px;}
.y7b{bottom:161.427026px;}
.y78{bottom:161.428488px;}
.y7f{bottom:209.385101px;}
.y3f{bottom:325.975354px;}
.y3e{bottom:432.368325px;}
.y2d{bottom:447.450424px;}
.y2e{bottom:481.988196px;}
.y3d{bottom:485.769296px;}
.y2f{bottom:529.371143px;}
.y30{bottom:576.754090px;}
.y3c{bottom:592.162267px;}
.y31{bottom:624.137037px;}
.y3a{bottom:635.736984px;}
.y3b{bottom:645.563238px;}
.y32{bottom:671.519984px;}
.y39{bottom:675.321071px;}
.y47{bottom:698.964196px;}
.y38{bottom:714.839623px;}
.y33{bottom:718.837391px;}
.y46{bottom:752.365167px;}
.y34{bottom:766.220338px;}
.y45{bottom:805.766138px;}
.y35{bottom:813.603285px;}
.y44{bottom:859.167109px;}
.y36{bottom:860.986232px;}
.y37{bottom:908.303639px;}
.y43{bottom:912.568080px;}
.y42{bottom:965.969051px;}
.y2c{bottom:973.836300px;}
.y41{bottom:1019.370022px;}
.y2b{bottom:1029.318371px;}
.y40{bottom:1091.361771px;}
.y15{bottom:1273.437544px;}
.y29{bottom:1374.121092px;}
.y10{bottom:1389.868465px;}
.y14{bottom:1390.534681px;}
.y28{bottom:1433.271564px;}
.yf{bottom:1435.216191px;}
.y13{bottom:1435.882407px;}
.ye{bottom:1480.563916px;}
.y12{bottom:1481.230133px;}
.y27{bottom:1492.422036px;}
.y11{bottom:1526.577858px;}
.y3{bottom:1531.103982px;}
.y26{bottom:1551.572508px;}
.y2{bottom:1593.204065px;}
.y25{bottom:1610.722980px;}
.y24{bottom:1669.873453px;}
.y23{bottom:1729.023925px;}
.y9{bottom:1739.916678px;}
.y22{bottom:1788.174397px;}
.y1{bottom:1866.281268px;}
.y8{bottom:1885.405708px;}
.y21{bottom:1906.475341px;}
.yb{bottom:1918.732313px;}
.yc{bottom:1938.241899px;}
.y20{bottom:1965.625813px;}
.y1f{bottom:2024.776285px;}
.y6{bottom:2078.783249px;}
.y1e{bottom:2083.926758px;}
.y1d{bottom:2143.077230px;}
.y5{bottom:2190.535095px;}
.y1c{bottom:2202.227702px;}
.yd{bottom:2215.991264px;}
.y1b{bottom:2320.528646px;}
.y1a{bottom:2379.679118px;}
.y19{bottom:2438.829590px;}
.y7{bottom:2467.361829px;}
.y18{bottom:2557.130535px;}
.y17{bottom:2616.281007px;}
.y4{bottom:2637.542480px;}
.y16{bottom:2675.431479px;}
.y4c{bottom:2785.001576px;}
.y2a{bottom:2800.675620px;}
.ya{bottom:2806.236107px;}
.y72{bottom:3057.101612px;}
.y5f{bottom:3102.321848px;}
.y5e{bottom:3229.821736px;}
.y5d{bottom:3293.571680px;}
.y5c{bottom:3357.321624px;}
.y6d{bottom:3416.754516px;}
.y6c{bottom:3480.504482px;}
.y5b{bottom:3484.821512px;}
.y6b{bottom:3544.254448px;}
.y5a{bottom:3548.571456px;}
.y4a{bottom:3577.978076px;}
.y6a{bottom:3608.004414px;}
.y59{bottom:3612.321400px;}
.y69{bottom:3671.754379px;}
.y58{bottom:3676.071344px;}
.y57{bottom:3739.821288px;}
.y68{bottom:3799.254264px;}
.y56{bottom:3803.571232px;}
.y67{bottom:3863.004230px;}
.y55{bottom:3867.321176px;}
.y49{bottom:3921.842786px;}
.y66{bottom:3926.754196px;}
.y65{bottom:3990.504162px;}
.y54{bottom:3994.821064px;}
.y53{bottom:4058.571008px;}
.y64{bottom:4118.004032px;}
.y52{bottom:4122.320952px;}
.y4b{bottom:4129.684085px;}
.y63{bottom:4181.753998px;}
.y51{bottom:4186.070896px;}
.y62{bottom:4245.503963px;}
.y50{bottom:4249.820840px;}
.y4f{bottom:4313.570784px;}
.y48{bottom:4319.209796px;}
.y71{bottom:4360.663664px;}
.y61{bottom:4373.003848px;}
.y4e{bottom:4377.320728px;}
.y6f{bottom:4436.406111px;}
.y60{bottom:4436.753814px;}
.y4d{bottom:4441.070672px;}
.y70{bottom:4455.199202px;}
.y6e{bottom:4560.804350px;}
.y73{bottom:4562.689823px;}
.y75{bottom:4769.854726px;}
.y74{bottom:4909.151382px;}
.h11{height:70.352098px;}
.h21{height:71.762695px;}
.h22{height:72.202148px;}
.h10{height:84.302938px;}
.hb{height:107.999995px;}
.h1f{height:108.000000px;}
.h9{height:108.000005px;}
.ha{height:109.623134px;}
.h13{height:129.092197px;}
.hf{height:132.644418px;}
.h14{height:133.887600px;}
.h12{height:136.040400px;}
.h15{height:136.845703px;}
.h16{height:137.411516px;}
.h19{height:149.463506px;}
.h18{height:150.089489px;}
.h1a{height:150.143894px;}
.hc{height:151.850110px;}
.h6{height:162.000634px;}
.h7{height:162.000637px;}
.he{height:163.733900px;}
.h2{height:170.543101px;}
.h17{height:171.000103px;}
.h1e{height:174.736549px;}
.h8{height:225.000154px;}
.h1c{height:265.117525px;}
.h5{height:265.289186px;}
.h3{height:291.767057px;}
.h1b{height:297.361548px;}
.hd{height:303.187367px;}
.h1d{height:305.920152px;}
.h4{height:364.772319px;}
.h20{height:366.605945px;}
.h0{height:5055.590552px;}
.h1{height:5055.750000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x11{left:57.587936px;}
.x10{left:63.088506px;}
.x18{left:65.368431px;}
.x24{left:117.196659px;}
.x23{left:557.094662px;}
.x22{left:722.182948px;}
.x1d{left:1537.583358px;}
.x1f{left:1588.118043px;}
.x1b{left:1628.943880px;}
.x1a{left:1648.916500px;}
.x19{left:1662.807370px;}
.x20{left:1726.169046px;}
.x1c{left:2026.825446px;}
.x4{left:2038.194416px;}
.x6{left:2087.228243px;}
.x5{left:2145.148604px;}
.x2{left:2315.334393px;}
.xc{left:2363.260149px;}
.x3{left:2387.343239px;}
.x1{left:2391.097323px;}
.x21{left:2511.143769px;}
.x1e{left:2515.155018px;}
.x16{left:2537.699106px;}
.x15{left:2549.823364px;}
.x12{left:2598.389966px;}
.xb{left:2624.618811px;}
.x27{left:2634.649997px;}
.x28{left:2637.126167px;}
.xd{left:2646.997887px;}
.xa{left:2693.477467px;}
.x14{left:2723.102048px;}
.x7{left:2822.440770px;}
.x9{left:2883.743724px;}
.x13{left:2903.080933px;}
.xf{left:2941.189699px;}
.x8{left:2956.156780px;}
.x26{left:2963.461172px;}
.x25{left:3252.467484px;}
.xe{left:3352.657260px;}
.x17{left:3401.274458px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:7.739498pt;}
.ls0{letter-spacing:13.123497pt;}
.ls2{letter-spacing:22.881995pt;}
.ls3{letter-spacing:72.653210pt;}
.ws2{word-spacing:-102.265585pt;}
.ws1{word-spacing:-81.798227pt;}
.ws0{word-spacing:-47.812537pt;}
.ws5{word-spacing:-37.020800pt;}
.ws6{word-spacing:-36.718750pt;}
.wsa{word-spacing:-19.492188pt;}
.ws9{word-spacing:-0.353844pt;}
.ws4{word-spacing:-0.266667pt;}
.ws7{word-spacing:-0.202667pt;}
.ws3{word-spacing:-0.192001pt;}
.ws8{word-spacing:-0.181333pt;}
.wsb{word-spacing:0.000000pt;}
._14{margin-left:-24.522682pt;}
._7{margin-left:-13.951999pt;}
._2{margin-left:-12.833331pt;}
._0{margin-left:-10.264875pt;}
._9{margin-left:-8.835236pt;}
._3{margin-left:-6.015639pt;}
._1{margin-left:-4.811663pt;}
._5{margin-left:-3.712000pt;}
._4{margin-left:-2.688001pt;}
._6{margin-left:-1.374670pt;}
._a{width:1.218402pt;}
._13{width:2.485639pt;}
._8{width:4.037999pt;}
._22{width:6.818267pt;}
._d{width:7.739498pt;}
._17{width:9.056720pt;}
._20{width:10.067687pt;}
._c{width:11.777497pt;}
._b{width:12.955247pt;}
._1a{width:17.295116pt;}
._11{width:21.584181pt;}
._e{width:22.881995pt;}
._21{width:25.942674pt;}
._1c{width:27.454554pt;}
._1b{width:28.368557pt;}
._1e{width:29.645533pt;}
._2d{width:31.380034pt;}
._1f{width:32.270603pt;}
._12{width:33.613414pt;}
._2c{width:36.267628pt;}
._16{width:38.248815pt;}
._19{width:47.439547pt;}
._15{width:50.266633pt;}
._26{width:53.159399pt;}
._24{width:54.815455pt;}
._28{width:78.000240pt;}
._29{width:79.656296pt;}
._27{width:84.361930pt;}
._23{width:85.949309pt;}
._2a{width:87.770971pt;}
._1d{width:91.797155pt;}
._18{width:100.278414pt;}
._2b{width:118.408008pt;}
._25{width:141.924004pt;}
._10{width:213.496116pt;}
._f{width:502.100284pt;}
.fs1b{font-size:80.000000pt;}
.fse{font-size:82.255675pt;}
.fsd{font-size:98.566997pt;}
.fs8{font-size:127.999995pt;}
.fs19{font-size:128.000000pt;}
.fs7{font-size:128.000005pt;}
.fsc{font-size:149.333205pt;}
.fsf{font-size:150.732800pt;}
.fs10{font-size:160.000000pt;}
.fs14{font-size:165.605605pt;}
.fs13{font-size:166.299195pt;}
.fs9{font-size:168.249963pt;}
.fs11{font-size:169.344080pt;}
.fs15{font-size:181.333205pt;}
.fsb{font-size:181.417205pt;}
.fs0{font-size:192.000149pt;}
.fs4{font-size:192.000751pt;}
.fs5{font-size:192.000755pt;}
.fs12{font-size:202.666789pt;}
.fs18{font-size:233.215280pt;}
.fs6{font-size:266.666849pt;}
.fs3{font-size:298.666805pt;}
.fs1{font-size:328.476016pt;}
.fsa{font-size:341.333184pt;}
.fs16{font-size:353.843877pt;}
.fs17{font-size:364.028144pt;}
.fs2{font-size:410.666507pt;}
.fs1a{font-size:412.730832pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:44.555849pt;}
.y7e{bottom:64.090309pt;}
.y76{bottom:69.555849pt;}
.y7d{bottom:89.090309pt;}
.y7a{bottom:89.091589pt;}
.y7c{bottom:118.490689pt;}
.y79{bottom:118.491989pt;}
.y7b{bottom:143.490689pt;}
.y78{bottom:143.491989pt;}
.y7f{bottom:186.120089pt;}
.y3f{bottom:289.755870pt;}
.y3e{bottom:384.327400pt;}
.y2d{bottom:397.733711pt;}
.y2e{bottom:428.433952pt;}
.y3d{bottom:431.794930pt;}
.y2f{bottom:470.552127pt;}
.y30{bottom:512.670302pt;}
.y3c{bottom:526.366460pt;}
.y31{bottom:554.788477pt;}
.y3a{bottom:565.099541pt;}
.y3b{bottom:573.833989pt;}
.y32{bottom:596.906652pt;}
.y39{bottom:600.285396pt;}
.y47{bottom:621.301508pt;}
.y38{bottom:635.412999pt;}
.y33{bottom:638.966570pt;}
.y46{bottom:668.769038pt;}
.y34{bottom:681.084745pt;}
.y45{bottom:716.236567pt;}
.y35{bottom:723.202920pt;}
.y44{bottom:763.704097pt;}
.y36{bottom:765.321095pt;}
.y37{bottom:807.381013pt;}
.y43{bottom:811.171627pt;}
.y42{bottom:858.639157pt;}
.y2c{bottom:865.632267pt;}
.y41{bottom:906.106687pt;}
.y2b{bottom:914.949663pt;}
.y40{bottom:970.099352pt;}
.y15{bottom:1131.944484pt;}
.y29{bottom:1221.440971pt;}
.y10{bottom:1235.438635pt;}
.y14{bottom:1236.030827pt;}
.y28{bottom:1274.019168pt;}
.yf{bottom:1275.747725pt;}
.y13{bottom:1276.339917pt;}
.ye{bottom:1316.056815pt;}
.y12{bottom:1316.649007pt;}
.y27{bottom:1326.597366pt;}
.y11{bottom:1356.958096pt;}
.y3{bottom:1360.981317pt;}
.y26{bottom:1379.175563pt;}
.y2{bottom:1416.181391pt;}
.y25{bottom:1431.753760pt;}
.y24{bottom:1484.331958pt;}
.y23{bottom:1536.910155pt;}
.y9{bottom:1546.592603pt;}
.y22{bottom:1589.488353pt;}
.y1{bottom:1658.916683pt;}
.y8{bottom:1675.916185pt;}
.y21{bottom:1694.644748pt;}
.yb{bottom:1705.539833pt;}
.yc{bottom:1722.881688pt;}
.y20{bottom:1747.222945pt;}
.y1f{bottom:1799.801143pt;}
.y6{bottom:1847.807332pt;}
.y1e{bottom:1852.379340pt;}
.y1d{bottom:1904.957538pt;}
.y5{bottom:1947.142307pt;}
.y1c{bottom:1957.535735pt;}
.yd{bottom:1969.770012pt;}
.y1b{bottom:2062.692130pt;}
.y1a{bottom:2115.270327pt;}
.y19{bottom:2167.848525pt;}
.y7{bottom:2193.210515pt;}
.y18{bottom:2273.004920pt;}
.y17{bottom:2325.583117pt;}
.y4{bottom:2344.482204pt;}
.y16{bottom:2378.161315pt;}
.y4c{bottom:2475.556956pt;}
.y2a{bottom:2489.489440pt;}
.ya{bottom:2494.432095pt;}
.y72{bottom:2717.423655pt;}
.y5f{bottom:2757.619420pt;}
.y5e{bottom:2870.952654pt;}
.y5d{bottom:2927.619271pt;}
.y5c{bottom:2984.285888pt;}
.y6d{bottom:3037.115126pt;}
.y6c{bottom:3093.781762pt;}
.y5b{bottom:3097.619121pt;}
.y6b{bottom:3150.448398pt;}
.y5a{bottom:3154.285738pt;}
.y4a{bottom:3180.424956pt;}
.y6a{bottom:3207.115034pt;}
.y59{bottom:3210.952355pt;}
.y69{bottom:3263.781671pt;}
.y58{bottom:3267.618972pt;}
.y57{bottom:3324.285589pt;}
.y68{bottom:3377.114902pt;}
.y56{bottom:3380.952206pt;}
.y67{bottom:3433.781538pt;}
.y55{bottom:3437.618823pt;}
.y49{bottom:3486.082476pt;}
.y66{bottom:3490.448174pt;}
.y65{bottom:3547.114810pt;}
.y54{bottom:3550.952056pt;}
.y53{bottom:3607.618673pt;}
.y64{bottom:3660.448028pt;}
.y52{bottom:3664.285290pt;}
.y4b{bottom:3670.830297pt;}
.y63{bottom:3717.114665pt;}
.y51{bottom:3720.951907pt;}
.y62{bottom:3773.781301pt;}
.y50{bottom:3777.618524pt;}
.y4f{bottom:3834.285141pt;}
.y48{bottom:3839.297596pt;}
.y71{bottom:3876.145479pt;}
.y61{bottom:3887.114532pt;}
.y4e{bottom:3890.951758pt;}
.y6f{bottom:3943.472099pt;}
.y60{bottom:3943.781168pt;}
.y4d{bottom:3947.618375pt;}
.y70{bottom:3960.177068pt;}
.y6e{bottom:4054.048311pt;}
.y73{bottom:4055.724287pt;}
.y75{bottom:4239.870868pt;}
.y74{bottom:4363.690117pt;}
.h11{height:62.535198pt;}
.h21{height:63.789062pt;}
.h22{height:64.179688pt;}
.h10{height:74.935945pt;}
.hb{height:95.999996pt;}
.h1f{height:96.000000pt;}
.h9{height:96.000004pt;}
.ha{height:97.442786pt;}
.h13{height:114.748620pt;}
.hf{height:117.906149pt;}
.h14{height:119.011200pt;}
.h12{height:120.924800pt;}
.h15{height:121.640625pt;}
.h16{height:122.143570pt;}
.h19{height:132.856450pt;}
.h18{height:133.412879pt;}
.h1a{height:133.461239pt;}
.hc{height:134.977875pt;}
.h6{height:144.000563pt;}
.h7{height:144.000566pt;}
.he{height:145.541244pt;}
.h2{height:151.593868pt;}
.h17{height:152.000092pt;}
.h1e{height:155.321376pt;}
.h8{height:200.000137pt;}
.h1c{height:235.660022pt;}
.h5{height:235.812609pt;}
.h3{height:259.348495pt;}
.h1b{height:264.321376pt;}
.hd{height:269.499882pt;}
.h1d{height:271.929024pt;}
.h4{height:324.242061pt;}
.h20{height:325.871951pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x11{left:51.189276pt;}
.x10{left:56.078672pt;}
.x18{left:58.105272pt;}
.x24{left:104.174808pt;}
.x23{left:495.195255pt;}
.x22{left:641.940399pt;}
.x1d{left:1366.740763pt;}
.x1f{left:1411.660483pt;}
.x1b{left:1447.950116pt;}
.x1a{left:1465.703556pt;}
.x19{left:1478.050996pt;}
.x20{left:1534.372485pt;}
.x1c{left:1801.622619pt;}
.x4{left:1811.728369pt;}
.x6{left:1855.313993pt;}
.x5{left:1906.798759pt;}
.x2{left:2058.075016pt;}
.xc{left:2100.675688pt;}
.x3{left:2122.082879pt;}
.x1{left:2125.419843pt;}
.x21{left:2232.127795pt;}
.x1e{left:2235.693349pt;}
.x16{left:2255.732539pt;}
.x15{left:2266.509657pt;}
.x12{left:2309.679969pt;}
.xb{left:2332.994499pt;}
.x27{left:2341.911108pt;}
.x28{left:2344.112148pt;}
.xd{left:2352.887011pt;}
.xa{left:2394.202193pt;}
.x14{left:2420.535153pt;}
.x7{left:2508.836240pt;}
.x9{left:2563.327755pt;}
.x13{left:2580.516385pt;}
.xf{left:2614.390843pt;}
.x8{left:2627.694916pt;}
.x26{left:2634.187708pt;}
.x25{left:2891.082208pt;}
.xe{left:2980.139787pt;}
.x17{left:3023.355073pt;}
}




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