
    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_e41709e824419d0ac0a385ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_e41709e824419d0ac0a385ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_8b16092a8d93711c4b1a44f5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_34e681ce5eea762fb09011f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_e34ccf1031df3d48d65abc19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_54679b55c83023e0383ecfb2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921420;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_bd37811194bcd9d9c1dba591.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_e8f0246521db0429f60af801.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cd68660d729839b52616e958.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a591f3fda7d9eb5190831a94.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f08cf3cf3b60b6b8dc5166a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_09875a2f4ff25e5df03adfd6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707000;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_a262244acad54b4b0e2da795.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;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_5e29d6a3a6661d57c1db5285.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692871;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_8b16092a8d93711c4b1a44f5.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d0b77f60d192546e257c7bba.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.945813;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;}
.m7{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws7{word-spacing:-18.720000px;}
.ws3{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws5{word-spacing:33.621000px;}
.ws6{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._2b{margin-left:-18.734400px;}
._26{margin-left:-11.196000px;}
._42{margin-left:-9.835200px;}
._b{margin-left:-8.834400px;}
._22{margin-left:-7.771200px;}
._3b{margin-left:-5.925600px;}
._2{margin-left:-4.386000px;}
._14{margin-left:-3.303600px;}
._1b{margin-left:-2.244000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._d{width:3.242400px;}
._25{width:4.569600px;}
._19{width:6.472800px;}
._16{width:7.718400px;}
._e{width:9.093600px;}
._13{width:10.130400px;}
._3a{width:12.002400px;}
._5a{width:13.053600px;}
._23{width:14.148000px;}
._7{width:15.465600px;}
._6{width:16.596000px;}
._28{width:17.683200px;}
._4{width:20.678400px;}
._1a{width:21.722400px;}
._11{width:23.342400px;}
._9{width:25.164000px;}
._10{width:26.611200px;}
._2c{width:27.871200px;}
._f{width:29.001600px;}
._54{width:30.492000px;}
._12{width:31.903200px;}
._2a{width:33.580800px;}
._18{width:36.000000px;}
._8{width:37.072800px;}
._a{width:38.109600px;}
._24{width:39.621600px;}
._1f{width:42.523200px;}
._c{width:44.049600px;}
._5{width:45.086400px;}
._15{width:46.108800px;}
._60{width:47.124000px;}
._17{width:48.160800px;}
._38{width:50.076000px;}
._5e{width:51.271200px;}
._29{width:52.272000px;}
._4b{width:53.784000px;}
._4c{width:55.303200px;}
._53{width:56.880000px;}
._51{width:58.795200px;}
._41{width:59.839200px;}
._52{width:61.106400px;}
._33{width:63.021600px;}
._64{width:64.152000px;}
._3{width:65.304000px;}
._1c{width:66.312000px;}
._55{width:68.479200px;}
._2d{width:70.293600px;}
._20{width:71.668800px;}
._1d{width:74.016000px;}
._4f{width:75.744000px;}
._27{width:76.867200px;}
._37{width:78.235200px;}
._32{width:80.524800px;}
._3e{width:82.296000px;}
._5d{width:85.104000px;}
._5f{width:86.832000px;}
._61{width:87.847200px;}
._3f{width:88.927200px;}
._3c{width:90.792000px;}
._36{width:93.866400px;}
._50{width:95.940000px;}
._45{width:97.970400px;}
._58{width:99.604800px;}
._5c{width:101.865600px;}
._44{width:103.629600px;}
._46{width:106.848000px;}
._56{width:111.787200px;}
._48{width:113.148000px;}
._57{width:114.775200px;}
._21{width:120.384000px;}
._59{width:121.464000px;}
._4e{width:123.552000px;}
._47{width:126.504000px;}
._39{width:131.832000px;}
._1e{width:132.991200px;}
._2e{width:134.661600px;}
._43{width:136.353600px;}
._40{width:138.636000px;}
._4a{width:140.076000px;}
._2f{width:147.312000px;}
._5b{width:156.564000px;}
._4d{width:159.084000px;}
._63{width:167.695200px;}
._30{width:184.903200px;}
._31{width:187.279200px;}
._65{width:198.295200px;}
._35{width:212.479200px;}
._62{width:285.271200px;}
._34{width:298.159200px;}
._49{width:572.688000px;}
._3d{width:784.656000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y29{bottom:92.443050px;}
.y85{bottom:93.960150px;}
.y5c{bottom:94.538400px;}
.y28{bottom:114.943050px;}
.y84{bottom:116.460150px;}
.y5b{bottom:117.038400px;}
.y27{bottom:137.443050px;}
.y83{bottom:138.960150px;}
.y5a{bottom:139.538400px;}
.y26{bottom:159.943050px;}
.y82{bottom:161.460150px;}
.y59{bottom:162.038400px;}
.y25{bottom:182.443050px;}
.y81{bottom:183.960150px;}
.y58{bottom:184.538400px;}
.y24{bottom:204.943050px;}
.y80{bottom:206.460150px;}
.y57{bottom:207.038400px;}
.y23{bottom:227.443050px;}
.y7f{bottom:228.960150px;}
.y56{bottom:229.538400px;}
.y22{bottom:249.943050px;}
.y7e{bottom:251.460150px;}
.y55{bottom:252.038400px;}
.y21{bottom:272.443050px;}
.y7d{bottom:273.960150px;}
.y5d{bottom:274.538400px;}
.y20{bottom:294.943050px;}
.y7c{bottom:296.460150px;}
.y54{bottom:297.038400px;}
.y1f{bottom:317.443050px;}
.y7b{bottom:318.960150px;}
.y53{bottom:319.538400px;}
.y1e{bottom:339.943050px;}
.y7a{bottom:341.460150px;}
.y52{bottom:342.038400px;}
.y1d{bottom:362.443050px;}
.y79{bottom:363.960150px;}
.y51{bottom:364.538400px;}
.y1c{bottom:384.943050px;}
.y78{bottom:386.460150px;}
.y50{bottom:387.038400px;}
.y1b{bottom:407.443050px;}
.y77{bottom:408.960150px;}
.y4f{bottom:409.538400px;}
.y76{bottom:431.460150px;}
.y4e{bottom:432.038400px;}
.y1a{bottom:452.443050px;}
.y75{bottom:453.960150px;}
.y4d{bottom:454.538400px;}
.y32{bottom:456.139950px;}
.y19{bottom:474.943050px;}
.y74{bottom:476.460150px;}
.y4c{bottom:477.038400px;}
.y31{bottom:478.639950px;}
.y18{bottom:497.443050px;}
.y73{bottom:498.960150px;}
.y4b{bottom:499.538400px;}
.y30{bottom:501.139950px;}
.y17{bottom:519.943050px;}
.y72{bottom:521.460150px;}
.y4a{bottom:522.038400px;}
.y2f{bottom:541.639950px;}
.y16{bottom:542.443050px;}
.y71{bottom:543.960150px;}
.y49{bottom:544.538400px;}
.y15{bottom:564.943050px;}
.y70{bottom:566.460150px;}
.y48{bottom:567.038400px;}
.y2e{bottom:586.639950px;}
.y14{bottom:587.443050px;}
.y86{bottom:588.960150px;}
.y47{bottom:589.538400px;}
.y13{bottom:609.943050px;}
.y6f{bottom:611.460150px;}
.y46{bottom:612.038400px;}
.y2d{bottom:627.139950px;}
.y12{bottom:632.443050px;}
.y6e{bottom:633.960150px;}
.y45{bottom:634.538400px;}
.y11{bottom:654.943050px;}
.y6d{bottom:656.460150px;}
.y44{bottom:657.038400px;}
.y2c{bottom:663.139950px;}
.y10{bottom:677.443050px;}
.y6c{bottom:678.960150px;}
.y43{bottom:679.538400px;}
.y2b{bottom:699.139950px;}
.yf{bottom:699.943050px;}
.y6b{bottom:701.460150px;}
.y42{bottom:702.038400px;}
.ye{bottom:722.443050px;}
.y6a{bottom:723.960150px;}
.y41{bottom:724.538400px;}
.y2a{bottom:735.139950px;}
.yd{bottom:744.943050px;}
.y69{bottom:746.460150px;}
.y40{bottom:747.038400px;}
.yc{bottom:767.443050px;}
.y68{bottom:768.960150px;}
.y3f{bottom:769.538400px;}
.yb{bottom:789.943050px;}
.y67{bottom:791.460150px;}
.y3e{bottom:792.038400px;}
.y66{bottom:813.960150px;}
.y3d{bottom:814.538400px;}
.ya{bottom:834.929550px;}
.y65{bottom:836.460150px;}
.y3c{bottom:837.038400px;}
.y9{bottom:855.934050px;}
.y64{bottom:858.960150px;}
.y3b{bottom:859.538400px;}
.y8{bottom:876.938550px;}
.y63{bottom:881.460150px;}
.y3a{bottom:882.038400px;}
.y7{bottom:897.943050px;}
.y62{bottom:903.960150px;}
.y39{bottom:904.538400px;}
.y6{bottom:918.943050px;}
.y61{bottom:926.460150px;}
.y38{bottom:927.038400px;}
.y60{bottom:948.960150px;}
.y37{bottom:949.538400px;}
.y5{bottom:968.443050px;}
.y5f{bottom:971.460150px;}
.y36{bottom:972.038400px;}
.y5e{bottom:993.960150px;}
.y35{bottom:994.538400px;}
.y4{bottom:1024.374150px;}
.y34{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xd{left:71.253150px;}
.xc{left:73.559100px;}
.x18{left:79.213950px;}
.x10{left:85.039350px;}
.x12{left:91.425150px;}
.xb{left:224.187900px;}
.x5{left:252.057300px;}
.x9{left:312.741600px;}
.x17{left:326.304750px;}
.x8{left:352.506600px;}
.xf{left:368.383200px;}
.x11{left:370.035000px;}
.x19{left:374.424150px;}
.x13{left:399.927150px;}
.x4{left:412.272150px;}
.x14{left:421.195650px;}
.x7{left:460.499100px;}
.x1b{left:507.152850px;}
.x1c{left:523.849950px;}
.x6{left:554.135850px;}
.x15{left:555.351750px;}
.xa{left:589.265100px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x1a{left:705.131400px;}
.x16{left:710.580450px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws5{word-spacing:29.885333pt;}
.ws6{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._2b{margin-left:-16.652800pt;}
._26{margin-left:-9.952000pt;}
._42{margin-left:-8.742400pt;}
._b{margin-left:-7.852800pt;}
._22{margin-left:-6.907733pt;}
._3b{margin-left:-5.267200pt;}
._2{margin-left:-3.898667pt;}
._14{margin-left:-2.936533pt;}
._1b{margin-left:-1.994667pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._d{width:2.882133pt;}
._25{width:4.061867pt;}
._19{width:5.753600pt;}
._16{width:6.860800pt;}
._e{width:8.083200pt;}
._13{width:9.004800pt;}
._3a{width:10.668800pt;}
._5a{width:11.603200pt;}
._23{width:12.576000pt;}
._7{width:13.747200pt;}
._6{width:14.752000pt;}
._28{width:15.718400pt;}
._4{width:18.380800pt;}
._1a{width:19.308800pt;}
._11{width:20.748800pt;}
._9{width:22.368000pt;}
._10{width:23.654400pt;}
._2c{width:24.774400pt;}
._f{width:25.779200pt;}
._54{width:27.104000pt;}
._12{width:28.358400pt;}
._2a{width:29.849600pt;}
._18{width:32.000000pt;}
._8{width:32.953600pt;}
._a{width:33.875200pt;}
._24{width:35.219200pt;}
._1f{width:37.798400pt;}
._c{width:39.155200pt;}
._5{width:40.076800pt;}
._15{width:40.985600pt;}
._60{width:41.888000pt;}
._17{width:42.809600pt;}
._38{width:44.512000pt;}
._5e{width:45.574400pt;}
._29{width:46.464000pt;}
._4b{width:47.808000pt;}
._4c{width:49.158400pt;}
._53{width:50.560000pt;}
._51{width:52.262400pt;}
._41{width:53.190400pt;}
._52{width:54.316800pt;}
._33{width:56.019200pt;}
._64{width:57.024000pt;}
._3{width:58.048000pt;}
._1c{width:58.944000pt;}
._55{width:60.870400pt;}
._2d{width:62.483200pt;}
._20{width:63.705600pt;}
._1d{width:65.792000pt;}
._4f{width:67.328000pt;}
._27{width:68.326400pt;}
._37{width:69.542400pt;}
._32{width:71.577600pt;}
._3e{width:73.152000pt;}
._5d{width:75.648000pt;}
._5f{width:77.184000pt;}
._61{width:78.086400pt;}
._3f{width:79.046400pt;}
._3c{width:80.704000pt;}
._36{width:83.436800pt;}
._50{width:85.280000pt;}
._45{width:87.084800pt;}
._58{width:88.537600pt;}
._5c{width:90.547200pt;}
._44{width:92.115200pt;}
._46{width:94.976000pt;}
._56{width:99.366400pt;}
._48{width:100.576000pt;}
._57{width:102.022400pt;}
._21{width:107.008000pt;}
._59{width:107.968000pt;}
._4e{width:109.824000pt;}
._47{width:112.448000pt;}
._39{width:117.184000pt;}
._1e{width:118.214400pt;}
._2e{width:119.699200pt;}
._43{width:121.203200pt;}
._40{width:123.232000pt;}
._4a{width:124.512000pt;}
._2f{width:130.944000pt;}
._5b{width:139.168000pt;}
._4d{width:141.408000pt;}
._63{width:149.062400pt;}
._30{width:164.358400pt;}
._31{width:166.470400pt;}
._65{width:176.262400pt;}
._35{width:188.870400pt;}
._62{width:253.574400pt;}
._34{width:265.030400pt;}
._49{width:509.056000pt;}
._3d{width:697.472000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y29{bottom:82.171600pt;}
.y85{bottom:83.520133pt;}
.y5c{bottom:84.034133pt;}
.y28{bottom:102.171600pt;}
.y84{bottom:103.520133pt;}
.y5b{bottom:104.034133pt;}
.y27{bottom:122.171600pt;}
.y83{bottom:123.520133pt;}
.y5a{bottom:124.034133pt;}
.y26{bottom:142.171600pt;}
.y82{bottom:143.520133pt;}
.y59{bottom:144.034133pt;}
.y25{bottom:162.171600pt;}
.y81{bottom:163.520133pt;}
.y58{bottom:164.034133pt;}
.y24{bottom:182.171600pt;}
.y80{bottom:183.520133pt;}
.y57{bottom:184.034133pt;}
.y23{bottom:202.171600pt;}
.y7f{bottom:203.520133pt;}
.y56{bottom:204.034133pt;}
.y22{bottom:222.171600pt;}
.y7e{bottom:223.520133pt;}
.y55{bottom:224.034133pt;}
.y21{bottom:242.171600pt;}
.y7d{bottom:243.520133pt;}
.y5d{bottom:244.034133pt;}
.y20{bottom:262.171600pt;}
.y7c{bottom:263.520133pt;}
.y54{bottom:264.034133pt;}
.y1f{bottom:282.171600pt;}
.y7b{bottom:283.520133pt;}
.y53{bottom:284.034133pt;}
.y1e{bottom:302.171600pt;}
.y7a{bottom:303.520133pt;}
.y52{bottom:304.034133pt;}
.y1d{bottom:322.171600pt;}
.y79{bottom:323.520133pt;}
.y51{bottom:324.034133pt;}
.y1c{bottom:342.171600pt;}
.y78{bottom:343.520133pt;}
.y50{bottom:344.034133pt;}
.y1b{bottom:362.171600pt;}
.y77{bottom:363.520133pt;}
.y4f{bottom:364.034133pt;}
.y76{bottom:383.520133pt;}
.y4e{bottom:384.034133pt;}
.y1a{bottom:402.171600pt;}
.y75{bottom:403.520133pt;}
.y4d{bottom:404.034133pt;}
.y32{bottom:405.457733pt;}
.y19{bottom:422.171600pt;}
.y74{bottom:423.520133pt;}
.y4c{bottom:424.034133pt;}
.y31{bottom:425.457733pt;}
.y18{bottom:442.171600pt;}
.y73{bottom:443.520133pt;}
.y4b{bottom:444.034133pt;}
.y30{bottom:445.457733pt;}
.y17{bottom:462.171600pt;}
.y72{bottom:463.520133pt;}
.y4a{bottom:464.034133pt;}
.y2f{bottom:481.457733pt;}
.y16{bottom:482.171600pt;}
.y71{bottom:483.520133pt;}
.y49{bottom:484.034133pt;}
.y15{bottom:502.171600pt;}
.y70{bottom:503.520133pt;}
.y48{bottom:504.034133pt;}
.y2e{bottom:521.457733pt;}
.y14{bottom:522.171600pt;}
.y86{bottom:523.520133pt;}
.y47{bottom:524.034133pt;}
.y13{bottom:542.171600pt;}
.y6f{bottom:543.520133pt;}
.y46{bottom:544.034133pt;}
.y2d{bottom:557.457733pt;}
.y12{bottom:562.171600pt;}
.y6e{bottom:563.520133pt;}
.y45{bottom:564.034133pt;}
.y11{bottom:582.171600pt;}
.y6d{bottom:583.520133pt;}
.y44{bottom:584.034133pt;}
.y2c{bottom:589.457733pt;}
.y10{bottom:602.171600pt;}
.y6c{bottom:603.520133pt;}
.y43{bottom:604.034133pt;}
.y2b{bottom:621.457733pt;}
.yf{bottom:622.171600pt;}
.y6b{bottom:623.520133pt;}
.y42{bottom:624.034133pt;}
.ye{bottom:642.171600pt;}
.y6a{bottom:643.520133pt;}
.y41{bottom:644.034133pt;}
.y2a{bottom:653.457733pt;}
.yd{bottom:662.171600pt;}
.y69{bottom:663.520133pt;}
.y40{bottom:664.034133pt;}
.yc{bottom:682.171600pt;}
.y68{bottom:683.520133pt;}
.y3f{bottom:684.034133pt;}
.yb{bottom:702.171600pt;}
.y67{bottom:703.520133pt;}
.y3e{bottom:704.034133pt;}
.y66{bottom:723.520133pt;}
.y3d{bottom:724.034133pt;}
.ya{bottom:742.159600pt;}
.y65{bottom:743.520133pt;}
.y3c{bottom:744.034133pt;}
.y9{bottom:760.830267pt;}
.y64{bottom:763.520133pt;}
.y3b{bottom:764.034133pt;}
.y8{bottom:779.500933pt;}
.y63{bottom:783.520133pt;}
.y3a{bottom:784.034133pt;}
.y7{bottom:798.171600pt;}
.y62{bottom:803.520133pt;}
.y39{bottom:804.034133pt;}
.y6{bottom:816.838267pt;}
.y61{bottom:823.520133pt;}
.y38{bottom:824.034133pt;}
.y60{bottom:843.520133pt;}
.y37{bottom:844.034133pt;}
.y5{bottom:860.838267pt;}
.y5f{bottom:863.520133pt;}
.y36{bottom:864.034133pt;}
.y5e{bottom:883.520133pt;}
.y35{bottom:884.034133pt;}
.y4{bottom:910.554800pt;}
.y34{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xd{left:63.336133pt;}
.xc{left:65.385867pt;}
.x18{left:70.412400pt;}
.x10{left:75.590533pt;}
.x12{left:81.266800pt;}
.xb{left:199.278133pt;}
.x5{left:224.050933pt;}
.x9{left:277.992533pt;}
.x17{left:290.048667pt;}
.x8{left:313.339200pt;}
.xf{left:327.451733pt;}
.x11{left:328.920000pt;}
.x19{left:332.821467pt;}
.x13{left:355.490800pt;}
.x4{left:366.464133pt;}
.x14{left:374.396133pt;}
.x7{left:409.332533pt;}
.x1b{left:450.802533pt;}
.x1c{left:465.644400pt;}
.x6{left:492.565200pt;}
.x15{left:493.646000pt;}
.xa{left:523.791200pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x1a{left:626.783467pt;}
.x16{left:631.627067pt;}
}




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