
    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_846b82c80aa430b424a8ac99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_4a3ab1c778cb7019dd02465e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140000;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_2223b002466737a8f167b183.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_14d4de7a134e5c729d92dfef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_41ef80020ae53d9b08a5f08c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_176eb09f8410c074436cf9de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_505c675aefe1d2295513ec0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_edd2facfca53b8fadd1e187c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_8cb44074cdcc522c21d821a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_8524043e16bbc0e6572441cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_9ae4b749aa6f1eff69363996.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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_1ef853c3866ec982b40037bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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_f557745176d15eaa8558b4e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_8cb44074cdcc522c21d821a5.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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_8cb44074cdcc522c21d821a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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_7cb03a307fb15a51cc3a5c05.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.950000px;}
.lsd{letter-spacing:-1.170000px;}
.ls4{letter-spacing:-1.014000px;}
.ls8{letter-spacing:-0.624000px;}
.ls3{letter-spacing:-0.390000px;}
.lsb{letter-spacing:-0.312000px;}
.ls9{letter-spacing:-0.156000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.312000px;}
.lse{letter-spacing:0.546000px;}
.ls6{letter-spacing:0.624000px;}
.lsa{letter-spacing:1.014000px;}
.lsf{letter-spacing:1.326000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws4{word-spacing:-24.480000px;}
.ws13{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws5{word-spacing:-12.204000px;}
.ws10{word-spacing:-2.838000px;}
.ws14{word-spacing:-1.326000px;}
.wse{word-spacing:-1.014000px;}
.wsa{word-spacing:-0.624000px;}
.ws12{word-spacing:-0.546000px;}
.ws8{word-spacing:-0.312000px;}
.ws9{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.156000px;}
.wsf{word-spacing:0.312000px;}
.ws6{word-spacing:0.390000px;}
.wsc{word-spacing:0.624000px;}
.ws7{word-spacing:1.014000px;}
.ws11{word-spacing:1.170000px;}
.wsb{word-spacing:1.950000px;}
._f{margin-left:-26.516400px;}
._18{margin-left:-15.549264px;}
._10{margin-left:-14.235600px;}
._15{margin-left:-6.916800px;}
._17{margin-left:-5.616561px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._13{width:5.140952px;}
._11{width:6.151435px;}
._4{width:7.193961px;}
._12{width:9.048600px;}
._9{width:10.262944px;}
._16{width:11.939617px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._14{width:16.513200px;}
._1a{width:17.727684px;}
._5{width:20.492888px;}
._19{width:21.555600px;}
._1{width:28.313846px;}
._7{width:33.164819px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y34{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y33{bottom:102.047250px;}
.y69{bottom:102.157350px;}
.y79{bottom:104.569950px;}
.y41{bottom:110.268900px;}
.y9e{bottom:114.929100px;}
.yc5{bottom:116.541450px;}
.yb4{bottom:118.924950px;}
.y68{bottom:122.864850px;}
.y1b{bottom:123.419327px;}
.y78{bottom:125.277450px;}
.y40{bottom:130.721400px;}
.yc4{bottom:132.889950px;}
.y9d{bottom:135.636600px;}
.y21{bottom:136.778700px;}
.yb3{bottom:139.632450px;}
.y28{bottom:142.439400px;}
.y67{bottom:143.572350px;}
.y77{bottom:145.984950px;}
.y3f{bottom:146.921400px;}
.yc3{bottom:149.238450px;}
.y9c{bottom:156.344100px;}
.yb2{bottom:160.339950px;}
.y3e{bottom:163.121400px;}
.y66{bottom:164.279850px;}
.yc2{bottom:165.586950px;}
.y76{bottom:166.692450px;}
.y9b{bottom:177.051600px;}
.y3d{bottom:179.321400px;}
.y1a{bottom:179.601520px;}
.yb1{bottom:181.047450px;}
.yc1{bottom:181.935450px;}
.y27{bottom:184.431900px;}
.y65{bottom:184.987350px;}
.y75{bottom:187.399950px;}
.y19{bottom:189.619323px;}
.y3c{bottom:195.521400px;}
.y9a{bottom:197.759100px;}
.yc0{bottom:198.283950px;}
.y18{bottom:198.812130px;}
.yb0{bottom:201.754950px;}
.y26{bottom:205.436400px;}
.y64{bottom:205.694850px;}
.y17{bottom:207.156370px;}
.y74{bottom:208.107450px;}
.y3b{bottom:211.721400px;}
.ybf{bottom:214.632450px;}
.y16{bottom:215.512396px;}
.y99{bottom:218.466600px;}
.yaf{bottom:222.462450px;}
.y15{bottom:223.868422px;}
.y63{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y73{bottom:228.814950px;}
.ybe{bottom:230.980950px;}
.y14{bottom:232.212662px;}
.y98{bottom:239.174100px;}
.y13{bottom:240.568688px;}
.yae{bottom:243.169950px;}
.y62{bottom:247.109850px;}
.ybd{bottom:247.329450px;}
.y12{bottom:248.924714px;}
.y72{bottom:249.522450px;}
.y11{bottom:257.268954px;}
.y97{bottom:259.881600px;}
.ybc{bottom:263.677950px;}
.yad{bottom:263.877450px;}
.y10{bottom:265.624980px;}
.y61{bottom:267.817350px;}
.y71{bottom:270.229950px;}
.yf{bottom:273.981006px;}
.ybb{bottom:280.026450px;}
.y96{bottom:280.589100px;}
.y32{bottom:284.429700px;}
.yac{bottom:284.584950px;}
.y60{bottom:288.524850px;}
.y70{bottom:290.937450px;}
.ye{bottom:291.164483px;}
.yba{bottom:296.374950px;}
.y95{bottom:301.296600px;}
.yab{bottom:305.292450px;}
.y31{bottom:305.434200px;}
.y5f{bottom:309.232350px;}
.y6f{bottom:311.644950px;}
.yb9{bottom:312.723450px;}
.y94{bottom:322.004100px;}
.yaa{bottom:325.999950px;}
.y30{bottom:326.438700px;}
.yb8{bottom:329.071950px;}
.y5e{bottom:329.939850px;}
.y6e{bottom:332.352450px;}
.y93{bottom:342.711600px;}
.yb7{bottom:345.420450px;}
.ya9{bottom:346.707450px;}
.y2f{bottom:347.443200px;}
.y5d{bottom:350.647350px;}
.y6d{bottom:353.059950px;}
.yb6{bottom:361.768950px;}
.y92{bottom:363.419100px;}
.ya8{bottom:367.414950px;}
.y2e{bottom:368.447700px;}
.y5c{bottom:371.354850px;}
.y6c{bottom:373.767450px;}
.yb5{bottom:378.117450px;}
.y91{bottom:384.126600px;}
.ya7{bottom:388.122450px;}
.y2d{bottom:389.452200px;}
.y5b{bottom:392.062350px;}
.y90{bottom:404.834100px;}
.ya6{bottom:408.829950px;}
.y2c{bottom:410.456700px;}
.yd{bottom:412.250251px;}
.y6b{bottom:412.325850px;}
.y5a{bottom:412.769850px;}
.y8f{bottom:425.541600px;}
.ya5{bottom:429.537450px;}
.y59{bottom:433.477350px;}
.y8e{bottom:446.249100px;}
.ya4{bottom:450.244950px;}
.y58{bottom:454.184850px;}
.y8d{bottom:466.956600px;}
.ya3{bottom:470.952450px;}
.y57{bottom:474.892350px;}
.y8c{bottom:487.664100px;}
.ya2{bottom:491.659950px;}
.y56{bottom:495.599850px;}
.y2b{bottom:498.056700px;}
.y8b{bottom:508.371600px;}
.ya1{bottom:512.367450px;}
.y55{bottom:516.307350px;}
.y8a{bottom:529.079100px;}
.y2a{bottom:532.256700px;}
.y54{bottom:537.014850px;}
.y89{bottom:549.786600px;}
.ya0{bottom:550.925850px;}
.y53{bottom:557.722350px;}
.y29{bottom:566.456700px;}
.y88{bottom:570.494100px;}
.yc{bottom:574.420795px;}
.y9f{bottom:577.925850px;}
.y52{bottom:578.429850px;}
.y87{bottom:591.201600px;}
.y51{bottom:599.137350px;}
.yb{bottom:600.184226px;}
.y86{bottom:611.909100px;}
.ya{bottom:613.549153px;}
.y50{bottom:619.844850px;}
.yd3{bottom:625.598850px;}
.y85{bottom:632.616600px;}
.y9{bottom:639.571869px;}
.y4f{bottom:640.552350px;}
.yd2{bottom:644.080350px;}
.y3a{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y84{bottom:653.324100px;}
.y24{bottom:657.176850px;}
.yd1{bottom:660.428850px;}
.y4e{bottom:661.259850px;}
.y7{bottom:666.301723px;}
.y83{bottom:674.031600px;}
.yd0{bottom:676.777350px;}
.y6{bottom:679.666650px;}
.y4d{bottom:681.967350px;}
.y39{bottom:688.792350px;}
.ycf{bottom:693.125850px;}
.y82{bottom:694.739100px;}
.y4c{bottom:702.674850px;}
.yce{bottom:709.474350px;}
.y81{bottom:715.446600px;}
.y23{bottom:723.200850px;}
.y4b{bottom:723.382350px;}
.ycd{bottom:725.822850px;}
.y38{bottom:726.592350px;}
.y80{bottom:736.154100px;}
.y5{bottom:741.942024px;}
.ycc{bottom:742.171350px;}
.y4a{bottom:744.089850px;}
.y7f{bottom:756.861600px;}
.ycb{bottom:758.519850px;}
.y4{bottom:761.765488px;}
.y37{bottom:764.392350px;}
.y49{bottom:764.797350px;}
.y7e{bottom:777.569100px;}
.y3{bottom:785.148217px;}
.y48{bottom:785.504850px;}
.y7d{bottom:798.276600px;}
.y47{bottom:806.212350px;}
.y2{bottom:808.542733px;}
.y22{bottom:811.700850px;}
.y7c{bottom:818.984100px;}
.yca{bottom:825.898350px;}
.y46{bottom:826.919850px;}
.y6a{bottom:836.140800px;}
.y36{bottom:839.992350px;}
.yc9{bottom:842.246850px;}
.y45{bottom:847.627350px;}
.y7b{bottom:857.542350px;}
.yc8{bottom:858.595350px;}
.y44{bottom:868.334850px;}
.yc7{bottom:874.943850px;}
.y35{bottom:877.792350px;}
.y7a{bottom:884.542350px;}
.y43{bottom:889.042350px;}
.yc6{bottom:891.292350px;}
.y42{bottom:952.015800px;}
.h7{height:27.946133px;}
.ha{height:30.161835px;}
.h17{height:30.480469px;}
.h9{height:34.772382px;}
.h8{height:34.932667px;}
.h5{height:38.425933px;}
.hd{height:38.779503px;}
.h6{height:43.088336px;}
.hb{height:43.465477px;}
.h1e{height:43.664062px;}
.h1b{height:45.720703px;}
.hc{height:48.258937px;}
.h13{height:52.335938px;}
.h16{height:54.272461px;}
.h14{height:55.880859px;}
.h3{height:60.323671px;}
.h4{height:60.851668px;}
.h1c{height:60.960938px;}
.h1d{height:72.773438px;}
.h18{height:87.670898px;}
.h15{height:96.521484px;}
.h19{height:99.914062px;}
.h1a{height:106.681641px;}
.h10{height:172.265625px;}
.h12{height:228.375000px;}
.h11{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.hf{height:999.000000px;}
.he{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x15{left:46.771650px;}
.x1b{left:60.271650px;}
.x1a{left:76.535400px;}
.x8{left:80.205750px;}
.x13{left:86.082900px;}
.x1c{left:97.797900px;}
.xd{left:106.916700px;}
.x14{left:114.198900px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x12{left:131.342400px;}
.x9{left:135.959250px;}
.x17{left:161.574750px;}
.x11{left:182.789400px;}
.x7{left:190.392750px;}
.xf{left:229.616400px;}
.x10{left:255.026400px;}
.xa{left:281.522250px;}
.xe{left:307.133400px;}
.x4{left:344.105623px;}
.x16{left:407.083800px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x18{left:635.284200px;}
.x19{left:641.303100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.733333pt;}
.lsd{letter-spacing:-1.040000pt;}
.ls4{letter-spacing:-0.901333pt;}
.ls8{letter-spacing:-0.554667pt;}
.ls3{letter-spacing:-0.346667pt;}
.lsb{letter-spacing:-0.277333pt;}
.ls9{letter-spacing:-0.138667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.277333pt;}
.lse{letter-spacing:0.485333pt;}
.ls6{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.901333pt;}
.lsf{letter-spacing:1.178667pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws4{word-spacing:-21.760000pt;}
.ws13{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws5{word-spacing:-10.848000pt;}
.ws10{word-spacing:-2.522667pt;}
.ws14{word-spacing:-1.178667pt;}
.wse{word-spacing:-0.901333pt;}
.wsa{word-spacing:-0.554667pt;}
.ws12{word-spacing:-0.485333pt;}
.ws8{word-spacing:-0.277333pt;}
.ws9{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.138667pt;}
.wsf{word-spacing:0.277333pt;}
.ws6{word-spacing:0.346667pt;}
.wsc{word-spacing:0.554667pt;}
.ws7{word-spacing:0.901333pt;}
.ws11{word-spacing:1.040000pt;}
.wsb{word-spacing:1.733333pt;}
._f{margin-left:-23.570133pt;}
._18{margin-left:-13.821568pt;}
._10{margin-left:-12.653867pt;}
._15{margin-left:-6.148267pt;}
._17{margin-left:-4.992499pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._13{width:4.569735pt;}
._11{width:5.467943pt;}
._4{width:6.394632pt;}
._12{width:8.043200pt;}
._9{width:9.122617pt;}
._16{width:10.612993pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._14{width:14.678400pt;}
._1a{width:15.757941pt;}
._5{width:18.215901pt;}
._19{width:19.160533pt;}
._1{width:25.167863pt;}
._7{width:29.479839pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y34{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y33{bottom:90.708667pt;}
.y69{bottom:90.806533pt;}
.y79{bottom:92.951067pt;}
.y41{bottom:98.016800pt;}
.y9e{bottom:102.159200pt;}
.yc5{bottom:103.592400pt;}
.yb4{bottom:105.711067pt;}
.y68{bottom:109.213200pt;}
.y1b{bottom:109.706068pt;}
.y78{bottom:111.357733pt;}
.y40{bottom:116.196800pt;}
.yc4{bottom:118.124400pt;}
.y9d{bottom:120.565867pt;}
.y21{bottom:121.581067pt;}
.yb3{bottom:124.117733pt;}
.y28{bottom:126.612800pt;}
.y67{bottom:127.619867pt;}
.y77{bottom:129.764400pt;}
.y3f{bottom:130.596800pt;}
.yc3{bottom:132.656400pt;}
.y9c{bottom:138.972533pt;}
.yb2{bottom:142.524400pt;}
.y3e{bottom:144.996800pt;}
.y66{bottom:146.026533pt;}
.yc2{bottom:147.188400pt;}
.y76{bottom:148.171067pt;}
.y9b{bottom:157.379200pt;}
.y3d{bottom:159.396800pt;}
.y1a{bottom:159.645796pt;}
.yb1{bottom:160.931067pt;}
.yc1{bottom:161.720400pt;}
.y27{bottom:163.939467pt;}
.y65{bottom:164.433200pt;}
.y75{bottom:166.577733pt;}
.y19{bottom:168.550509pt;}
.y3c{bottom:173.796800pt;}
.y9a{bottom:175.785867pt;}
.yc0{bottom:176.252400pt;}
.y18{bottom:176.721893pt;}
.yb0{bottom:179.337733pt;}
.y26{bottom:182.610133pt;}
.y64{bottom:182.839867pt;}
.y17{bottom:184.138996pt;}
.y74{bottom:184.984400pt;}
.y3b{bottom:188.196800pt;}
.ybf{bottom:190.784400pt;}
.y16{bottom:191.566574pt;}
.y99{bottom:194.192533pt;}
.yaf{bottom:197.744400pt;}
.y15{bottom:198.994153pt;}
.y63{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y73{bottom:203.391067pt;}
.ybe{bottom:205.316400pt;}
.y14{bottom:206.411255pt;}
.y98{bottom:212.599200pt;}
.y13{bottom:213.838834pt;}
.yae{bottom:216.151067pt;}
.y62{bottom:219.653200pt;}
.ybd{bottom:219.848400pt;}
.y12{bottom:221.266412pt;}
.y72{bottom:221.797733pt;}
.y11{bottom:228.683515pt;}
.y97{bottom:231.005867pt;}
.ybc{bottom:234.380400pt;}
.yad{bottom:234.557733pt;}
.y10{bottom:236.111093pt;}
.y61{bottom:238.059867pt;}
.y71{bottom:240.204400pt;}
.yf{bottom:243.538672pt;}
.ybb{bottom:248.912400pt;}
.y96{bottom:249.412533pt;}
.y32{bottom:252.826400pt;}
.yac{bottom:252.964400pt;}
.y60{bottom:256.466533pt;}
.y70{bottom:258.611067pt;}
.ye{bottom:258.812874pt;}
.yba{bottom:263.444400pt;}
.y95{bottom:267.819200pt;}
.yab{bottom:271.371067pt;}
.y31{bottom:271.497067pt;}
.y5f{bottom:274.873200pt;}
.y6f{bottom:277.017733pt;}
.yb9{bottom:277.976400pt;}
.y94{bottom:286.225867pt;}
.yaa{bottom:289.777733pt;}
.y30{bottom:290.167733pt;}
.yb8{bottom:292.508400pt;}
.y5e{bottom:293.279867pt;}
.y6e{bottom:295.424400pt;}
.y93{bottom:304.632533pt;}
.yb7{bottom:307.040400pt;}
.ya9{bottom:308.184400pt;}
.y2f{bottom:308.838400pt;}
.y5d{bottom:311.686533pt;}
.y6d{bottom:313.831067pt;}
.yb6{bottom:321.572400pt;}
.y92{bottom:323.039200pt;}
.ya8{bottom:326.591067pt;}
.y2e{bottom:327.509067pt;}
.y5c{bottom:330.093200pt;}
.y6c{bottom:332.237733pt;}
.yb5{bottom:336.104400pt;}
.y91{bottom:341.445867pt;}
.ya7{bottom:344.997733pt;}
.y2d{bottom:346.179733pt;}
.y5b{bottom:348.499867pt;}
.y90{bottom:359.852533pt;}
.ya6{bottom:363.404400pt;}
.y2c{bottom:364.850400pt;}
.yd{bottom:366.444668pt;}
.y6b{bottom:366.511867pt;}
.y5a{bottom:366.906533pt;}
.y8f{bottom:378.259200pt;}
.ya5{bottom:381.811067pt;}
.y59{bottom:385.313200pt;}
.y8e{bottom:396.665867pt;}
.ya4{bottom:400.217733pt;}
.y58{bottom:403.719867pt;}
.y8d{bottom:415.072533pt;}
.ya3{bottom:418.624400pt;}
.y57{bottom:422.126533pt;}
.y8c{bottom:433.479200pt;}
.ya2{bottom:437.031067pt;}
.y56{bottom:440.533200pt;}
.y2b{bottom:442.717067pt;}
.y8b{bottom:451.885867pt;}
.ya1{bottom:455.437733pt;}
.y55{bottom:458.939867pt;}
.y8a{bottom:470.292533pt;}
.y2a{bottom:473.117067pt;}
.y54{bottom:477.346533pt;}
.y89{bottom:488.699200pt;}
.ya0{bottom:489.711867pt;}
.y53{bottom:495.753200pt;}
.y29{bottom:503.517067pt;}
.y88{bottom:507.105867pt;}
.yc{bottom:510.596263pt;}
.y9f{bottom:513.711867pt;}
.y52{bottom:514.159867pt;}
.y87{bottom:525.512533pt;}
.y51{bottom:532.566533pt;}
.yb{bottom:533.497090pt;}
.y86{bottom:543.919200pt;}
.ya{bottom:545.377025pt;}
.y50{bottom:550.973200pt;}
.yd3{bottom:556.087867pt;}
.y85{bottom:562.325867pt;}
.y9{bottom:568.508328pt;}
.y4f{bottom:569.379867pt;}
.yd2{bottom:572.515867pt;}
.y3a{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y84{bottom:580.732533pt;}
.y24{bottom:584.157200pt;}
.yd1{bottom:587.047867pt;}
.y4e{bottom:587.786533pt;}
.y7{bottom:592.268198pt;}
.y83{bottom:599.139200pt;}
.yd0{bottom:601.579867pt;}
.y6{bottom:604.148133pt;}
.y4d{bottom:606.193200pt;}
.y39{bottom:612.259867pt;}
.ycf{bottom:616.111867pt;}
.y82{bottom:617.545867pt;}
.y4c{bottom:624.599867pt;}
.yce{bottom:630.643867pt;}
.y81{bottom:635.952533pt;}
.y23{bottom:642.845200pt;}
.y4b{bottom:643.006533pt;}
.ycd{bottom:645.175867pt;}
.y38{bottom:645.859867pt;}
.y80{bottom:654.359200pt;}
.y5{bottom:659.504022pt;}
.ycc{bottom:659.707867pt;}
.y4a{bottom:661.413200pt;}
.y7f{bottom:672.765867pt;}
.ycb{bottom:674.239867pt;}
.y4{bottom:677.124878pt;}
.y37{bottom:679.459867pt;}
.y49{bottom:679.819867pt;}
.y7e{bottom:691.172533pt;}
.y3{bottom:697.909527pt;}
.y48{bottom:698.226533pt;}
.y7d{bottom:709.579200pt;}
.y47{bottom:716.633200pt;}
.y2{bottom:718.704651pt;}
.y22{bottom:721.511867pt;}
.y7c{bottom:727.985867pt;}
.yca{bottom:734.131867pt;}
.y46{bottom:735.039867pt;}
.y6a{bottom:743.236267pt;}
.y36{bottom:746.659867pt;}
.yc9{bottom:748.663867pt;}
.y45{bottom:753.446533pt;}
.y7b{bottom:762.259867pt;}
.yc8{bottom:763.195867pt;}
.y44{bottom:771.853200pt;}
.yc7{bottom:777.727867pt;}
.y35{bottom:780.259867pt;}
.y7a{bottom:786.259867pt;}
.y43{bottom:790.259867pt;}
.yc6{bottom:792.259867pt;}
.y42{bottom:846.236267pt;}
.h7{height:24.841007pt;}
.ha{height:26.810520pt;}
.h17{height:27.093750pt;}
.h9{height:30.908784pt;}
.h8{height:31.051259pt;}
.h5{height:34.156385pt;}
.hd{height:34.470669pt;}
.h6{height:38.300743pt;}
.hb{height:38.635980pt;}
.h1e{height:38.812500pt;}
.h1b{height:40.640625pt;}
.hc{height:42.896833pt;}
.h13{height:46.520833pt;}
.h16{height:48.242188pt;}
.h14{height:49.671875pt;}
.h3{height:53.621041pt;}
.h4{height:54.090372pt;}
.h1c{height:54.187500pt;}
.h1d{height:64.687500pt;}
.h18{height:77.929688pt;}
.h15{height:85.796875pt;}
.h19{height:88.812500pt;}
.h1a{height:94.828125pt;}
.h10{height:153.125000pt;}
.h12{height:203.000000pt;}
.h11{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.hf{height:888.000000pt;}
.he{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x15{left:41.574800pt;}
.x1b{left:53.574800pt;}
.x1a{left:68.031467pt;}
.x8{left:71.294000pt;}
.x13{left:76.518133pt;}
.x1c{left:86.931467pt;}
.xd{left:95.037067pt;}
.x14{left:101.510133pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x12{left:116.748800pt;}
.x9{left:120.852667pt;}
.x17{left:143.622000pt;}
.x11{left:162.479467pt;}
.x7{left:169.238000pt;}
.xf{left:204.103467pt;}
.x10{left:226.690133pt;}
.xa{left:250.242000pt;}
.xe{left:273.007467pt;}
.x4{left:305.871665pt;}
.x16{left:361.852267pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x18{left:564.697067pt;}
.x19{left:570.047200pt;}
}




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