
    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_0e7b12032b02d91449334f0e.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_700e0834e1c1674ecac47947.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0a25b18c7f3a4519b032fdb3.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f82a437caf7ed476d45dbb11.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b52f76c4b0033ef6bd88aed3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bd05ec95db6b1e82f4df7db6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5967280eeac0ff690bf9faae.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9bfcdccc2bb5513a5c683ce1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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_1087292b81ffccdaeb0e0cdb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c81371ed9976a1847c4b245c.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_9f8e09cdc2e51314c402e863.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_efa0c63f2e9022a6e5ef2a56.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c6ac7d56334062aa3f00bd0d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0e7b12032b02d91449334f0e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_700e0834e1c1674ecac47947.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_cc80542593681cf8a0ea5b19.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_00860aa93c54c494767b58da.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m2{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.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,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);}
.m6{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);}
.m1{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);}
.m9{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);}
.m7{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);}
.m4{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);}
.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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls2{letter-spacing:-0.768000px;}
.ls4{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.324000px;}
.ls3{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:41.832000px;}
.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:-15.000000px;}
.wsa{word-spacing:-13.500000px;}
.ws8{word-spacing:-10.800000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.072000px;}
.ws7{word-spacing:0.432000px;}
.wsd{word-spacing:0.702000px;}
.ws5{word-spacing:0.720000px;}
.ws9{word-spacing:3.186000px;}
.wsc{word-spacing:5.400000px;}
.ws0{word-spacing:33.621000px;}
.wsb{word-spacing:60.912000px;}
.ws1{word-spacing:386.314800px;}
.ws4{word-spacing:1699.977600px;}
._e{margin-left:-61.920000px;}
._b{margin-left:-18.698400px;}
._17{margin-left:-15.242400px;}
._16{margin-left:-13.622400px;}
._2{margin-left:-7.538400px;}
._1e{margin-left:-6.048000px;}
._18{margin-left:-3.664800px;}
._19{margin-left:-2.467200px;}
._11{margin-left:-1.252800px;}
._c{width:1.080000px;}
._9{width:2.325600px;}
._1{width:3.441600px;}
._41{width:4.514400px;}
._23{width:6.134400px;}
._5{width:7.250400px;}
._7{width:8.589600px;}
._3{width:9.655200px;}
._2f{width:10.915200px;}
._1d{width:11.944800px;}
._1c{width:13.550400px;}
._10{width:15.040800px;}
._f{width:16.653600px;}
._22{width:21.312000px;}
._6{width:22.442400px;}
._29{width:24.350400px;}
._1f{width:25.480800px;}
._3d{width:27.136800px;}
._2d{width:28.915200px;}
._4{width:30.434400px;}
._3f{width:35.085600px;}
._2b{width:36.518400px;}
._3c{width:37.684800px;}
._14{width:39.556800px;}
._d{width:41.191200px;}
._13{width:42.386400px;}
._28{width:43.884000px;}
._1b{width:45.712800px;}
._1a{width:47.318400px;}
._2e{width:48.744000px;}
._12{width:51.004800px;}
._a{width:52.696800px;}
._43{width:55.256400px;}
._39{width:57.225600px;}
._20{width:58.896000px;}
._3b{width:63.324000px;}
._40{width:64.418400px;}
._0{width:66.312000px;}
._25{width:68.104800px;}
._15{width:69.494400px;}
._37{width:71.928000px;}
._21{width:73.519200px;}
._8{width:76.852800px;}
._33{width:77.947200px;}
._24{width:79.776000px;}
._42{width:84.211200px;}
._35{width:87.926400px;}
._2c{width:88.999200px;}
._26{width:90.633600px;}
._34{width:93.924000px;}
._27{width:94.968000px;}
._36{width:97.221600px;}
._44{width:101.448000px;}
._32{width:105.847200px;}
._30{width:108.036000px;}
._31{width:109.627200px;}
._38{width:114.948000px;}
._3e{width:136.008000px;}
._3a{width:169.200000px;}
._2a{width:412.632000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y31{bottom:64.760550px;}
.y30{bottom:65.586600px;}
.y70{bottom:86.647200px;}
.y5b{bottom:94.147200px;}
.y6f{bottom:109.147200px;}
.y26{bottom:111.193050px;}
.y5a{bottom:116.647200px;}
.y6e{bottom:131.647200px;}
.y25{bottom:133.693050px;}
.y59{bottom:139.147200px;}
.y6d{bottom:154.147200px;}
.y24{bottom:156.193050px;}
.y58{bottom:161.647200px;}
.y6c{bottom:176.647200px;}
.y23{bottom:178.693050px;}
.y57{bottom:184.147200px;}
.y6b{bottom:199.147200px;}
.y22{bottom:201.193050px;}
.y56{bottom:206.647200px;}
.y6a{bottom:221.647200px;}
.y21{bottom:223.693050px;}
.y55{bottom:229.147200px;}
.y90{bottom:243.960150px;}
.y69{bottom:244.147200px;}
.y20{bottom:246.193050px;}
.y54{bottom:251.647200px;}
.ya5{bottom:254.460150px;}
.y8f{bottom:266.460150px;}
.y68{bottom:266.647200px;}
.y1f{bottom:268.693050px;}
.ya4{bottom:273.960150px;}
.y53{bottom:274.147200px;}
.y8e{bottom:288.960150px;}
.y67{bottom:289.147200px;}
.y1e{bottom:291.193050px;}
.ya3{bottom:296.460150px;}
.y52{bottom:296.647200px;}
.y8d{bottom:311.460150px;}
.y1d{bottom:313.693050px;}
.ya2{bottom:318.960150px;}
.y51{bottom:319.147200px;}
.y66{bottom:326.647200px;}
.y8c{bottom:333.960150px;}
.y1c{bottom:336.193050px;}
.ya1{bottom:341.460150px;}
.y50{bottom:341.647200px;}
.y65{bottom:349.147200px;}
.y8b{bottom:356.460150px;}
.y1b{bottom:358.693050px;}
.ya0{bottom:363.960150px;}
.y4f{bottom:364.147200px;}
.y64{bottom:371.647200px;}
.y8a{bottom:378.960150px;}
.y1a{bottom:381.193050px;}
.y9f{bottom:386.460150px;}
.y4e{bottom:386.647200px;}
.y63{bottom:394.147200px;}
.y89{bottom:401.460150px;}
.y19{bottom:403.693050px;}
.y9e{bottom:408.960150px;}
.y4d{bottom:409.147200px;}
.y62{bottom:416.647200px;}
.y88{bottom:423.960150px;}
.y9d{bottom:431.460150px;}
.y4c{bottom:431.647200px;}
.y18{bottom:438.223050px;}
.y61{bottom:439.147200px;}
.y87{bottom:446.460150px;}
.y9c{bottom:453.960150px;}
.y4b{bottom:454.147200px;}
.y2f{bottom:456.139950px;}
.y17{bottom:460.723050px;}
.y60{bottom:461.647200px;}
.y9b{bottom:476.460150px;}
.y4a{bottom:476.647200px;}
.y2e{bottom:478.639950px;}
.y16{bottom:482.467050px;}
.y86{bottom:483.960150px;}
.y5f{bottom:484.147200px;}
.y9a{bottom:498.960150px;}
.y49{bottom:499.147200px;}
.y2d{bottom:501.139950px;}
.y15{bottom:504.211050px;}
.y85{bottom:506.460150px;}
.y5e{bottom:506.647200px;}
.y99{bottom:521.460150px;}
.y48{bottom:521.647200px;}
.y14{bottom:525.955050px;}
.y84{bottom:528.960150px;}
.y5d{bottom:529.147200px;}
.y2c{bottom:541.639950px;}
.y98{bottom:543.960150px;}
.y47{bottom:544.147200px;}
.y13{bottom:547.699050px;}
.y83{bottom:551.460150px;}
.y97{bottom:566.460150px;}
.y46{bottom:566.647200px;}
.y12{bottom:569.443050px;}
.y82{bottom:573.960150px;}
.y2b{bottom:586.639950px;}
.y96{bottom:588.960150px;}
.y45{bottom:589.147200px;}
.y11{bottom:591.943050px;}
.y81{bottom:596.460150px;}
.y95{bottom:611.460150px;}
.y44{bottom:611.647200px;}
.y10{bottom:614.443050px;}
.y80{bottom:618.960150px;}
.y2a{bottom:627.139950px;}
.y94{bottom:633.960150px;}
.y43{bottom:634.147200px;}
.y7f{bottom:641.460150px;}
.yf{bottom:648.943050px;}
.y93{bottom:656.460150px;}
.y42{bottom:656.647200px;}
.y29{bottom:663.139950px;}
.y7e{bottom:663.960150px;}
.ye{bottom:671.443050px;}
.y92{bottom:678.960150px;}
.y41{bottom:679.147200px;}
.yd{bottom:693.943050px;}
.y28{bottom:699.139950px;}
.y7d{bottom:701.460150px;}
.y40{bottom:701.647200px;}
.yc{bottom:716.443050px;}
.y7c{bottom:723.960150px;}
.y5c{bottom:724.147200px;}
.y27{bottom:735.139950px;}
.yb{bottom:738.943050px;}
.y7b{bottom:746.460150px;}
.y3f{bottom:746.647200px;}
.ya{bottom:761.443050px;}
.y7a{bottom:768.960150px;}
.y3e{bottom:769.147200px;}
.y9{bottom:783.943050px;}
.y79{bottom:791.460150px;}
.y3d{bottom:791.647200px;}
.y8{bottom:806.443050px;}
.y78{bottom:813.960150px;}
.y3c{bottom:814.147200px;}
.y77{bottom:836.460150px;}
.y3b{bottom:836.647200px;}
.y7{bottom:851.438550px;}
.y76{bottom:858.960150px;}
.y3a{bottom:859.147200px;}
.y6{bottom:872.443050px;}
.y75{bottom:881.460150px;}
.y39{bottom:881.647200px;}
.y5{bottom:893.443050px;}
.y91{bottom:903.960150px;}
.y38{bottom:904.147200px;}
.y74{bottom:926.460150px;}
.y37{bottom:926.647200px;}
.y4{bottom:942.950550px;}
.y73{bottom:948.960150px;}
.y36{bottom:949.147200px;}
.y3{bottom:968.443050px;}
.y72{bottom:971.460150px;}
.y35{bottom:971.647200px;}
.y71{bottom:993.960150px;}
.y34{bottom:994.147200px;}
.y33{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y32{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.he{height:37.494141px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xd{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.xc{left:73.559100px;}
.x11{left:74.579550px;}
.x12{left:90.779550px;}
.x8{left:224.187750px;}
.x9{left:234.987750px;}
.xa{left:251.187750px;}
.x3{left:295.222950px;}
.x4{left:372.825450px;}
.x13{left:374.424150px;}
.x7{left:397.303950px;}
.x17{left:399.935850px;}
.x16{left:410.735700px;}
.x10{left:412.272150px;}
.x14{left:426.930150px;}
.x6{left:481.651950px;}
.x5{left:534.636450px;}
.x15{left:560.941650px;}
.xf{left:614.196150px;}
.xe{left:632.875800px;}
.xb{left:710.503950px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:37.184000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsa{word-spacing:-12.000000pt;}
.ws8{word-spacing:-9.600000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.064000pt;}
.ws7{word-spacing:0.384000pt;}
.wsd{word-spacing:0.624000pt;}
.ws5{word-spacing:0.640000pt;}
.ws9{word-spacing:2.832000pt;}
.wsc{word-spacing:4.800000pt;}
.ws0{word-spacing:29.885333pt;}
.wsb{word-spacing:54.144000pt;}
.ws1{word-spacing:343.390933pt;}
.ws4{word-spacing:1511.091200pt;}
._e{margin-left:-55.040000pt;}
._b{margin-left:-16.620800pt;}
._17{margin-left:-13.548800pt;}
._16{margin-left:-12.108800pt;}
._2{margin-left:-6.700800pt;}
._1e{margin-left:-5.376000pt;}
._18{margin-left:-3.257600pt;}
._19{margin-left:-2.193067pt;}
._11{margin-left:-1.113600pt;}
._c{width:0.960000pt;}
._9{width:2.067200pt;}
._1{width:3.059200pt;}
._41{width:4.012800pt;}
._23{width:5.452800pt;}
._5{width:6.444800pt;}
._7{width:7.635200pt;}
._3{width:8.582400pt;}
._2f{width:9.702400pt;}
._1d{width:10.617600pt;}
._1c{width:12.044800pt;}
._10{width:13.369600pt;}
._f{width:14.803200pt;}
._22{width:18.944000pt;}
._6{width:19.948800pt;}
._29{width:21.644800pt;}
._1f{width:22.649600pt;}
._3d{width:24.121600pt;}
._2d{width:25.702400pt;}
._4{width:27.052800pt;}
._3f{width:31.187200pt;}
._2b{width:32.460800pt;}
._3c{width:33.497600pt;}
._14{width:35.161600pt;}
._d{width:36.614400pt;}
._13{width:37.676800pt;}
._28{width:39.008000pt;}
._1b{width:40.633600pt;}
._1a{width:42.060800pt;}
._2e{width:43.328000pt;}
._12{width:45.337600pt;}
._a{width:46.841600pt;}
._43{width:49.116800pt;}
._39{width:50.867200pt;}
._20{width:52.352000pt;}
._3b{width:56.288000pt;}
._40{width:57.260800pt;}
._0{width:58.944000pt;}
._25{width:60.537600pt;}
._15{width:61.772800pt;}
._37{width:63.936000pt;}
._21{width:65.350400pt;}
._8{width:68.313600pt;}
._33{width:69.286400pt;}
._24{width:70.912000pt;}
._42{width:74.854400pt;}
._35{width:78.156800pt;}
._2c{width:79.110400pt;}
._26{width:80.563200pt;}
._34{width:83.488000pt;}
._27{width:84.416000pt;}
._36{width:86.419200pt;}
._44{width:90.176000pt;}
._32{width:94.086400pt;}
._30{width:96.032000pt;}
._31{width:97.446400pt;}
._38{width:102.176000pt;}
._3e{width:120.896000pt;}
._3a{width:150.400000pt;}
._2a{width:366.784000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y31{bottom:57.564933pt;}
.y30{bottom:58.299200pt;}
.y70{bottom:77.019733pt;}
.y5b{bottom:83.686400pt;}
.y6f{bottom:97.019733pt;}
.y26{bottom:98.838267pt;}
.y5a{bottom:103.686400pt;}
.y6e{bottom:117.019733pt;}
.y25{bottom:118.838267pt;}
.y59{bottom:123.686400pt;}
.y6d{bottom:137.019733pt;}
.y24{bottom:138.838267pt;}
.y58{bottom:143.686400pt;}
.y6c{bottom:157.019733pt;}
.y23{bottom:158.838267pt;}
.y57{bottom:163.686400pt;}
.y6b{bottom:177.019733pt;}
.y22{bottom:178.838267pt;}
.y56{bottom:183.686400pt;}
.y6a{bottom:197.019733pt;}
.y21{bottom:198.838267pt;}
.y55{bottom:203.686400pt;}
.y90{bottom:216.853467pt;}
.y69{bottom:217.019733pt;}
.y20{bottom:218.838267pt;}
.y54{bottom:223.686400pt;}
.ya5{bottom:226.186800pt;}
.y8f{bottom:236.853467pt;}
.y68{bottom:237.019733pt;}
.y1f{bottom:238.838267pt;}
.ya4{bottom:243.520133pt;}
.y53{bottom:243.686400pt;}
.y8e{bottom:256.853467pt;}
.y67{bottom:257.019733pt;}
.y1e{bottom:258.838267pt;}
.ya3{bottom:263.520133pt;}
.y52{bottom:263.686400pt;}
.y8d{bottom:276.853467pt;}
.y1d{bottom:278.838267pt;}
.ya2{bottom:283.520133pt;}
.y51{bottom:283.686400pt;}
.y66{bottom:290.353067pt;}
.y8c{bottom:296.853467pt;}
.y1c{bottom:298.838267pt;}
.ya1{bottom:303.520133pt;}
.y50{bottom:303.686400pt;}
.y65{bottom:310.353067pt;}
.y8b{bottom:316.853467pt;}
.y1b{bottom:318.838267pt;}
.ya0{bottom:323.520133pt;}
.y4f{bottom:323.686400pt;}
.y64{bottom:330.353067pt;}
.y8a{bottom:336.853467pt;}
.y1a{bottom:338.838267pt;}
.y9f{bottom:343.520133pt;}
.y4e{bottom:343.686400pt;}
.y63{bottom:350.353067pt;}
.y89{bottom:356.853467pt;}
.y19{bottom:358.838267pt;}
.y9e{bottom:363.520133pt;}
.y4d{bottom:363.686400pt;}
.y62{bottom:370.353067pt;}
.y88{bottom:376.853467pt;}
.y9d{bottom:383.520133pt;}
.y4c{bottom:383.686400pt;}
.y18{bottom:389.531600pt;}
.y61{bottom:390.353067pt;}
.y87{bottom:396.853467pt;}
.y9c{bottom:403.520133pt;}
.y4b{bottom:403.686400pt;}
.y2f{bottom:405.457733pt;}
.y17{bottom:409.531600pt;}
.y60{bottom:410.353067pt;}
.y9b{bottom:423.520133pt;}
.y4a{bottom:423.686400pt;}
.y2e{bottom:425.457733pt;}
.y16{bottom:428.859600pt;}
.y86{bottom:430.186800pt;}
.y5f{bottom:430.353067pt;}
.y9a{bottom:443.520133pt;}
.y49{bottom:443.686400pt;}
.y2d{bottom:445.457733pt;}
.y15{bottom:448.187600pt;}
.y85{bottom:450.186800pt;}
.y5e{bottom:450.353067pt;}
.y99{bottom:463.520133pt;}
.y48{bottom:463.686400pt;}
.y14{bottom:467.515600pt;}
.y84{bottom:470.186800pt;}
.y5d{bottom:470.353067pt;}
.y2c{bottom:481.457733pt;}
.y98{bottom:483.520133pt;}
.y47{bottom:483.686400pt;}
.y13{bottom:486.843600pt;}
.y83{bottom:490.186800pt;}
.y97{bottom:503.520133pt;}
.y46{bottom:503.686400pt;}
.y12{bottom:506.171600pt;}
.y82{bottom:510.186800pt;}
.y2b{bottom:521.457733pt;}
.y96{bottom:523.520133pt;}
.y45{bottom:523.686400pt;}
.y11{bottom:526.171600pt;}
.y81{bottom:530.186800pt;}
.y95{bottom:543.520133pt;}
.y44{bottom:543.686400pt;}
.y10{bottom:546.171600pt;}
.y80{bottom:550.186800pt;}
.y2a{bottom:557.457733pt;}
.y94{bottom:563.520133pt;}
.y43{bottom:563.686400pt;}
.y7f{bottom:570.186800pt;}
.yf{bottom:576.838267pt;}
.y93{bottom:583.520133pt;}
.y42{bottom:583.686400pt;}
.y29{bottom:589.457733pt;}
.y7e{bottom:590.186800pt;}
.ye{bottom:596.838267pt;}
.y92{bottom:603.520133pt;}
.y41{bottom:603.686400pt;}
.yd{bottom:616.838267pt;}
.y28{bottom:621.457733pt;}
.y7d{bottom:623.520133pt;}
.y40{bottom:623.686400pt;}
.yc{bottom:636.838267pt;}
.y7c{bottom:643.520133pt;}
.y5c{bottom:643.686400pt;}
.y27{bottom:653.457733pt;}
.yb{bottom:656.838267pt;}
.y7b{bottom:663.520133pt;}
.y3f{bottom:663.686400pt;}
.ya{bottom:676.838267pt;}
.y7a{bottom:683.520133pt;}
.y3e{bottom:683.686400pt;}
.y9{bottom:696.838267pt;}
.y79{bottom:703.520133pt;}
.y3d{bottom:703.686400pt;}
.y8{bottom:716.838267pt;}
.y78{bottom:723.520133pt;}
.y3c{bottom:723.686400pt;}
.y77{bottom:743.520133pt;}
.y3b{bottom:743.686400pt;}
.y7{bottom:756.834267pt;}
.y76{bottom:763.520133pt;}
.y3a{bottom:763.686400pt;}
.y6{bottom:775.504933pt;}
.y75{bottom:783.520133pt;}
.y39{bottom:783.686400pt;}
.y5{bottom:794.171600pt;}
.y91{bottom:803.520133pt;}
.y38{bottom:803.686400pt;}
.y74{bottom:823.520133pt;}
.y37{bottom:823.686400pt;}
.y4{bottom:838.178267pt;}
.y73{bottom:843.520133pt;}
.y36{bottom:843.686400pt;}
.y3{bottom:860.838267pt;}
.y72{bottom:863.520133pt;}
.y35{bottom:863.686400pt;}
.y71{bottom:883.520133pt;}
.y34{bottom:883.686400pt;}
.y33{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y32{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.he{height:33.328125pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xd{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.xc{left:65.385867pt;}
.x11{left:66.292933pt;}
.x12{left:80.692933pt;}
.x8{left:199.278000pt;}
.x9{left:208.878000pt;}
.xa{left:223.278000pt;}
.x3{left:262.420400pt;}
.x4{left:331.400400pt;}
.x13{left:332.821467pt;}
.x7{left:353.159067pt;}
.x17{left:355.498533pt;}
.x16{left:365.098400pt;}
.x10{left:366.464133pt;}
.x14{left:379.493467pt;}
.x6{left:428.135067pt;}
.x5{left:475.232400pt;}
.x15{left:498.614800pt;}
.xf{left:545.952133pt;}
.xe{left:562.556267pt;}
.xb{left:631.559067pt;}
}




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