
    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_0574ebdcaab22b3ad87bcdd6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003000;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_7154526a89155d566b781952.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_447d688998c2e01ff20e7eaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_3ab8f95013c9daec8e9421f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_12ae3a6ce4d1c12ab1f28e7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.822000;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_14245176e477a898bf98557c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_2e5db4505396e7a16f223c44.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7154526a89155d566b781952.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_447d688998c2e01ff20e7eaa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040000;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_3ab8f95013c9daec8e9421f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942000;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_12ae3a6ce4d1c12ab1f28e7b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.822000;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_14245176e477a898bf98557c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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_112fde766a6527c70d889339.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003000;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.998000px;}
.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;}
}
.ws6{word-spacing:-54.000000px;}
.ws3{word-spacing:-42.000000px;}
.ws4{word-spacing:-21.312000px;}
.ws5{word-spacing:-14.918400px;}
.ws0{word-spacing:-14.208000px;}
.ws7{word-spacing:-10.920000px;}
.ws1{word-spacing:-9.945600px;}
.ws50{word-spacing:-4.104000px;}
.ws48{word-spacing:-3.306000px;}
.ws55{word-spacing:-3.192000px;}
.ws57{word-spacing:-2.793000px;}
.ws35{word-spacing:-2.565000px;}
.ws3e{word-spacing:-2.394000px;}
.ws1a{word-spacing:-2.280000px;}
.ws13{word-spacing:-2.166000px;}
.ws11{word-spacing:-2.109000px;}
.ws10{word-spacing:-1.938000px;}
.ws1b{word-spacing:-1.881000px;}
.ws4b{word-spacing:-1.824000px;}
.ws28{word-spacing:-1.653000px;}
.ws4f{word-spacing:-1.425000px;}
.ws3d{word-spacing:-1.368000px;}
.ws5d{word-spacing:-1.311000px;}
.wsa{word-spacing:-1.254000px;}
.ws58{word-spacing:-1.083000px;}
.ws5c{word-spacing:-0.969000px;}
.ws3f{word-spacing:-0.912000px;}
.ws4d{word-spacing:-0.798000px;}
.ws56{word-spacing:-0.513000px;}
.ws52{word-spacing:-0.456000px;}
.ws2f{word-spacing:-0.399000px;}
.ws4a{word-spacing:-0.285000px;}
.ws2{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws61{word-spacing:0.114000px;}
.ws38{word-spacing:0.171000px;}
.ws4e{word-spacing:0.228000px;}
.ws22{word-spacing:0.627000px;}
.ws3c{word-spacing:0.798000px;}
.ws30{word-spacing:0.855000px;}
.ws51{word-spacing:1.197000px;}
.ws42{word-spacing:1.254000px;}
.ws41{word-spacing:1.425000px;}
.ws37{word-spacing:1.539000px;}
.ws5f{word-spacing:1.710000px;}
.ws24{word-spacing:1.767000px;}
.ws15{word-spacing:1.938000px;}
.ws44{word-spacing:1.995000px;}
.ws9{word-spacing:1.998000px;}
.wse{word-spacing:2.109000px;}
.ws29{word-spacing:2.166000px;}
.ws14{word-spacing:2.337000px;}
.ws54{word-spacing:2.394000px;}
.ws60{word-spacing:2.508000px;}
.ws39{word-spacing:2.850000px;}
.wsb{word-spacing:3.021000px;}
.ws47{word-spacing:3.135000px;}
.ws40{word-spacing:3.306000px;}
.ws4c{word-spacing:3.477000px;}
.ws1e{word-spacing:3.534000px;}
.ws53{word-spacing:3.705000px;}
.ws27{word-spacing:3.819000px;}
.wsf{word-spacing:3.990000px;}
.ws32{word-spacing:4.104000px;}
.ws26{word-spacing:4.503000px;}
.ws5b{word-spacing:4.560000px;}
.ws3a{word-spacing:4.845000px;}
.ws33{word-spacing:5.130000px;}
.ws2a{word-spacing:5.301000px;}
.ws19{word-spacing:5.415000px;}
.ws49{word-spacing:5.586000px;}
.ws3b{word-spacing:5.643000px;}
.ws23{word-spacing:5.757000px;}
.ws34{word-spacing:5.814000px;}
.ws59{word-spacing:5.985000px;}
.ws5e{word-spacing:6.042000px;}
.ws2c{word-spacing:6.099000px;}
.ws25{word-spacing:6.156000px;}
.ws2d{word-spacing:6.327000px;}
.ws16{word-spacing:6.612000px;}
.wsc{word-spacing:6.726000px;}
.ws1d{word-spacing:6.897000px;}
.ws21{word-spacing:6.954000px;}
.ws43{word-spacing:7.011000px;}
.ws36{word-spacing:7.524000px;}
.ws1c{word-spacing:7.980000px;}
.wsd{word-spacing:8.892000px;}
.ws2b{word-spacing:9.405000px;}
.ws31{word-spacing:9.462000px;}
.ws18{word-spacing:9.519000px;}
.ws46{word-spacing:9.747000px;}
.ws17{word-spacing:10.545000px;}
.ws45{word-spacing:11.058000px;}
.ws5a{word-spacing:11.286000px;}
.ws2e{word-spacing:11.457000px;}
.ws12{word-spacing:12.540000px;}
.ws20{word-spacing:13.338000px;}
.ws1f{word-spacing:17.442000px;}
._2{margin-left:-9.324000px;}
._0{margin-left:-6.308400px;}
._5{margin-left:-4.302000px;}
._1{margin-left:-3.108000px;}
._3{margin-left:-1.194600px;}
._4{width:1.998000px;}
.fc1{color:rgb(54,90,177);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:33.600000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:53.290200px;}
.y28{bottom:131.353650px;}
.y43{bottom:131.410650px;}
.y27{bottom:149.351400px;}
.y42{bottom:149.408400px;}
.y26{bottom:167.349150px;}
.y41{bottom:167.406150px;}
.y25{bottom:185.346900px;}
.y40{bottom:185.403900px;}
.y24{bottom:203.344650px;}
.y3f{bottom:203.401650px;}
.y23{bottom:221.342400px;}
.y3e{bottom:221.399400px;}
.y22{bottom:239.340150px;}
.y3d{bottom:239.397150px;}
.y21{bottom:257.337900px;}
.y3c{bottom:257.394900px;}
.y20{bottom:275.335650px;}
.y3b{bottom:275.392650px;}
.y1f{bottom:293.333400px;}
.y3a{bottom:293.390400px;}
.y1e{bottom:311.331150px;}
.y39{bottom:311.388150px;}
.y1d{bottom:329.328900px;}
.y38{bottom:329.385900px;}
.y1c{bottom:347.326650px;}
.y37{bottom:347.383650px;}
.y1b{bottom:365.324400px;}
.y36{bottom:365.381400px;}
.y1a{bottom:383.322150px;}
.y35{bottom:383.379150px;}
.y19{bottom:401.319900px;}
.y34{bottom:401.376900px;}
.y18{bottom:419.317650px;}
.y33{bottom:419.374650px;}
.y17{bottom:437.315400px;}
.y32{bottom:437.372400px;}
.y16{bottom:455.313150px;}
.y31{bottom:455.370150px;}
.y15{bottom:473.310900px;}
.y30{bottom:473.367900px;}
.y14{bottom:491.308650px;}
.y2f{bottom:491.365650px;}
.y13{bottom:509.306400px;}
.y2e{bottom:509.363400px;}
.y12{bottom:527.304150px;}
.y2d{bottom:527.361150px;}
.y11{bottom:545.301900px;}
.y2c{bottom:545.358900px;}
.y10{bottom:563.299650px;}
.y2b{bottom:563.356650px;}
.y61{bottom:577.746750px;}
.y7e{bottom:577.803750px;}
.yf{bottom:581.297400px;}
.y2a{bottom:581.354400px;}
.y60{bottom:595.744500px;}
.y7d{bottom:595.801500px;}
.ye{bottom:599.295150px;}
.y29{bottom:599.352150px;}
.y5f{bottom:613.742250px;}
.y7c{bottom:613.799250px;}
.y5e{bottom:631.740000px;}
.y7b{bottom:631.797000px;}
.y5d{bottom:649.737750px;}
.y7a{bottom:649.794750px;}
.y5c{bottom:667.735500px;}
.y79{bottom:667.792500px;}
.y5b{bottom:685.733250px;}
.y78{bottom:685.790250px;}
.y5a{bottom:703.731000px;}
.y77{bottom:703.788000px;}
.y59{bottom:721.728750px;}
.y76{bottom:721.785750px;}
.y58{bottom:739.726500px;}
.y75{bottom:739.783500px;}
.y57{bottom:757.724250px;}
.y74{bottom:757.781250px;}
.y56{bottom:775.722000px;}
.y73{bottom:775.779000px;}
.y7{bottom:780.054000px;}
.y6{bottom:792.654000px;}
.y55{bottom:793.719750px;}
.y72{bottom:793.776750px;}
.y5{bottom:807.054000px;}
.y54{bottom:811.717500px;}
.y71{bottom:811.774500px;}
.y53{bottom:829.715250px;}
.y70{bottom:829.772250px;}
.y52{bottom:847.713000px;}
.y6f{bottom:847.770000px;}
.y51{bottom:865.710750px;}
.y6e{bottom:865.767750px;}
.y50{bottom:883.708500px;}
.y6d{bottom:883.765500px;}
.y4{bottom:884.817150px;}
.y4f{bottom:901.706250px;}
.y6c{bottom:901.763250px;}
.y3{bottom:913.131000px;}
.y4e{bottom:919.704000px;}
.y6b{bottom:919.761000px;}
.y4d{bottom:937.701750px;}
.y6a{bottom:937.758750px;}
.y2{bottom:942.573000px;}
.y4c{bottom:955.699500px;}
.y69{bottom:955.756500px;}
.y1{bottom:967.773000px;}
.y4b{bottom:973.697250px;}
.y68{bottom:973.754250px;}
.y4a{bottom:991.695000px;}
.y67{bottom:991.752000px;}
.y49{bottom:1009.692750px;}
.y66{bottom:1009.749750px;}
.y48{bottom:1027.690500px;}
.y65{bottom:1027.747500px;}
.y47{bottom:1045.688250px;}
.y64{bottom:1045.745250px;}
.y46{bottom:1063.686000px;}
.y63{bottom:1063.743000px;}
.y45{bottom:1081.683750px;}
.y62{bottom:1081.740750px;}
.yd{bottom:1088.057100px;}
.yc{bottom:1106.054100px;}
.yb{bottom:1118.654100px;}
.ya{bottom:1133.054100px;}
.y9{bottom:1153.506000px;}
.y44{bottom:1169.291400px;}
.h7{height:33.642000px;}
.hc{height:33.936000px;}
.h6{height:38.448000px;}
.h5{height:38.784000px;}
.h8{height:43.536000px;}
.ha{height:43.578000px;}
.hb{height:45.657000px;}
.h4{height:52.866000px;}
.h9{height:65.304000px;}
.h2{height:67.284000px;}
.h3{height:67.872000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:106.510650px;}
.xe{left:127.771650px;}
.x3{left:169.659900px;}
.x1{left:214.935900px;}
.x4{left:226.643850px;}
.x8{left:399.966450px;}
.x2{left:420.798900px;}
.x5{left:458.052000px;}
.x10{left:459.212400px;}
.xc{left:462.343800px;}
.x7{left:470.322450px;}
.x9{left:475.228800px;}
.x11{left:480.473400px;}
.xa{left:502.916250px;}
.x6{left:577.584000px;}
.x12{left:582.832800px;}
.xb{left:606.515850px;}
.xd{left:683.893800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.776000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws3{word-spacing:-37.333333pt;}
.ws4{word-spacing:-18.944000pt;}
.ws5{word-spacing:-13.260800pt;}
.ws0{word-spacing:-12.629333pt;}
.ws7{word-spacing:-9.706667pt;}
.ws1{word-spacing:-8.840533pt;}
.ws50{word-spacing:-3.648000pt;}
.ws48{word-spacing:-2.938667pt;}
.ws55{word-spacing:-2.837333pt;}
.ws57{word-spacing:-2.482667pt;}
.ws35{word-spacing:-2.280000pt;}
.ws3e{word-spacing:-2.128000pt;}
.ws1a{word-spacing:-2.026667pt;}
.ws13{word-spacing:-1.925333pt;}
.ws11{word-spacing:-1.874667pt;}
.ws10{word-spacing:-1.722667pt;}
.ws1b{word-spacing:-1.672000pt;}
.ws4b{word-spacing:-1.621333pt;}
.ws28{word-spacing:-1.469333pt;}
.ws4f{word-spacing:-1.266667pt;}
.ws3d{word-spacing:-1.216000pt;}
.ws5d{word-spacing:-1.165333pt;}
.wsa{word-spacing:-1.114667pt;}
.ws58{word-spacing:-0.962667pt;}
.ws5c{word-spacing:-0.861333pt;}
.ws3f{word-spacing:-0.810667pt;}
.ws4d{word-spacing:-0.709333pt;}
.ws56{word-spacing:-0.456000pt;}
.ws52{word-spacing:-0.405333pt;}
.ws2f{word-spacing:-0.354667pt;}
.ws4a{word-spacing:-0.253333pt;}
.ws2{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws61{word-spacing:0.101333pt;}
.ws38{word-spacing:0.152000pt;}
.ws4e{word-spacing:0.202667pt;}
.ws22{word-spacing:0.557333pt;}
.ws3c{word-spacing:0.709333pt;}
.ws30{word-spacing:0.760000pt;}
.ws51{word-spacing:1.064000pt;}
.ws42{word-spacing:1.114667pt;}
.ws41{word-spacing:1.266667pt;}
.ws37{word-spacing:1.368000pt;}
.ws5f{word-spacing:1.520000pt;}
.ws24{word-spacing:1.570667pt;}
.ws15{word-spacing:1.722667pt;}
.ws44{word-spacing:1.773333pt;}
.ws9{word-spacing:1.776000pt;}
.wse{word-spacing:1.874667pt;}
.ws29{word-spacing:1.925333pt;}
.ws14{word-spacing:2.077333pt;}
.ws54{word-spacing:2.128000pt;}
.ws60{word-spacing:2.229333pt;}
.ws39{word-spacing:2.533333pt;}
.wsb{word-spacing:2.685333pt;}
.ws47{word-spacing:2.786667pt;}
.ws40{word-spacing:2.938667pt;}
.ws4c{word-spacing:3.090667pt;}
.ws1e{word-spacing:3.141333pt;}
.ws53{word-spacing:3.293333pt;}
.ws27{word-spacing:3.394667pt;}
.wsf{word-spacing:3.546667pt;}
.ws32{word-spacing:3.648000pt;}
.ws26{word-spacing:4.002667pt;}
.ws5b{word-spacing:4.053333pt;}
.ws3a{word-spacing:4.306667pt;}
.ws33{word-spacing:4.560000pt;}
.ws2a{word-spacing:4.712000pt;}
.ws19{word-spacing:4.813333pt;}
.ws49{word-spacing:4.965333pt;}
.ws3b{word-spacing:5.016000pt;}
.ws23{word-spacing:5.117333pt;}
.ws34{word-spacing:5.168000pt;}
.ws59{word-spacing:5.320000pt;}
.ws5e{word-spacing:5.370667pt;}
.ws2c{word-spacing:5.421333pt;}
.ws25{word-spacing:5.472000pt;}
.ws2d{word-spacing:5.624000pt;}
.ws16{word-spacing:5.877333pt;}
.wsc{word-spacing:5.978667pt;}
.ws1d{word-spacing:6.130667pt;}
.ws21{word-spacing:6.181333pt;}
.ws43{word-spacing:6.232000pt;}
.ws36{word-spacing:6.688000pt;}
.ws1c{word-spacing:7.093333pt;}
.wsd{word-spacing:7.904000pt;}
.ws2b{word-spacing:8.360000pt;}
.ws31{word-spacing:8.410667pt;}
.ws18{word-spacing:8.461333pt;}
.ws46{word-spacing:8.664000pt;}
.ws17{word-spacing:9.373333pt;}
.ws45{word-spacing:9.829333pt;}
.ws5a{word-spacing:10.032000pt;}
.ws2e{word-spacing:10.184000pt;}
.ws12{word-spacing:11.146667pt;}
.ws20{word-spacing:11.856000pt;}
.ws1f{word-spacing:15.504000pt;}
._2{margin-left:-8.288000pt;}
._0{margin-left:-5.607467pt;}
._5{margin-left:-3.824000pt;}
._1{margin-left:-2.762667pt;}
._3{margin-left:-1.061867pt;}
._4{width:1.776000pt;}
.fs4{font-size:29.866667pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:47.369067pt;}
.y28{bottom:116.758800pt;}
.y43{bottom:116.809467pt;}
.y27{bottom:132.756800pt;}
.y42{bottom:132.807467pt;}
.y26{bottom:148.754800pt;}
.y41{bottom:148.805467pt;}
.y25{bottom:164.752800pt;}
.y40{bottom:164.803467pt;}
.y24{bottom:180.750800pt;}
.y3f{bottom:180.801467pt;}
.y23{bottom:196.748800pt;}
.y3e{bottom:196.799467pt;}
.y22{bottom:212.746800pt;}
.y3d{bottom:212.797467pt;}
.y21{bottom:228.744800pt;}
.y3c{bottom:228.795467pt;}
.y20{bottom:244.742800pt;}
.y3b{bottom:244.793467pt;}
.y1f{bottom:260.740800pt;}
.y3a{bottom:260.791467pt;}
.y1e{bottom:276.738800pt;}
.y39{bottom:276.789467pt;}
.y1d{bottom:292.736800pt;}
.y38{bottom:292.787467pt;}
.y1c{bottom:308.734800pt;}
.y37{bottom:308.785467pt;}
.y1b{bottom:324.732800pt;}
.y36{bottom:324.783467pt;}
.y1a{bottom:340.730800pt;}
.y35{bottom:340.781467pt;}
.y19{bottom:356.728800pt;}
.y34{bottom:356.779467pt;}
.y18{bottom:372.726800pt;}
.y33{bottom:372.777467pt;}
.y17{bottom:388.724800pt;}
.y32{bottom:388.775467pt;}
.y16{bottom:404.722800pt;}
.y31{bottom:404.773467pt;}
.y15{bottom:420.720800pt;}
.y30{bottom:420.771467pt;}
.y14{bottom:436.718800pt;}
.y2f{bottom:436.769467pt;}
.y13{bottom:452.716800pt;}
.y2e{bottom:452.767467pt;}
.y12{bottom:468.714800pt;}
.y2d{bottom:468.765467pt;}
.y11{bottom:484.712800pt;}
.y2c{bottom:484.763467pt;}
.y10{bottom:500.710800pt;}
.y2b{bottom:500.761467pt;}
.y61{bottom:513.552667pt;}
.y7e{bottom:513.603333pt;}
.yf{bottom:516.708800pt;}
.y2a{bottom:516.759467pt;}
.y60{bottom:529.550667pt;}
.y7d{bottom:529.601333pt;}
.ye{bottom:532.706800pt;}
.y29{bottom:532.757467pt;}
.y5f{bottom:545.548667pt;}
.y7c{bottom:545.599333pt;}
.y5e{bottom:561.546667pt;}
.y7b{bottom:561.597333pt;}
.y5d{bottom:577.544667pt;}
.y7a{bottom:577.595333pt;}
.y5c{bottom:593.542667pt;}
.y79{bottom:593.593333pt;}
.y5b{bottom:609.540667pt;}
.y78{bottom:609.591333pt;}
.y5a{bottom:625.538667pt;}
.y77{bottom:625.589333pt;}
.y59{bottom:641.536667pt;}
.y76{bottom:641.587333pt;}
.y58{bottom:657.534667pt;}
.y75{bottom:657.585333pt;}
.y57{bottom:673.532667pt;}
.y74{bottom:673.583333pt;}
.y56{bottom:689.530667pt;}
.y73{bottom:689.581333pt;}
.y7{bottom:693.381333pt;}
.y6{bottom:704.581333pt;}
.y55{bottom:705.528667pt;}
.y72{bottom:705.579333pt;}
.y5{bottom:717.381333pt;}
.y54{bottom:721.526667pt;}
.y71{bottom:721.577333pt;}
.y53{bottom:737.524667pt;}
.y70{bottom:737.575333pt;}
.y52{bottom:753.522667pt;}
.y6f{bottom:753.573333pt;}
.y51{bottom:769.520667pt;}
.y6e{bottom:769.571333pt;}
.y50{bottom:785.518667pt;}
.y6d{bottom:785.569333pt;}
.y4{bottom:786.504133pt;}
.y4f{bottom:801.516667pt;}
.y6c{bottom:801.567333pt;}
.y3{bottom:811.672000pt;}
.y4e{bottom:817.514667pt;}
.y6b{bottom:817.565333pt;}
.y4d{bottom:833.512667pt;}
.y6a{bottom:833.563333pt;}
.y2{bottom:837.842667pt;}
.y4c{bottom:849.510667pt;}
.y69{bottom:849.561333pt;}
.y1{bottom:860.242667pt;}
.y4b{bottom:865.508667pt;}
.y68{bottom:865.559333pt;}
.y4a{bottom:881.506667pt;}
.y67{bottom:881.557333pt;}
.y49{bottom:897.504667pt;}
.y66{bottom:897.555333pt;}
.y48{bottom:913.502667pt;}
.y65{bottom:913.553333pt;}
.y47{bottom:929.500667pt;}
.y64{bottom:929.551333pt;}
.y46{bottom:945.498667pt;}
.y63{bottom:945.549333pt;}
.y45{bottom:961.496667pt;}
.y62{bottom:961.547333pt;}
.yd{bottom:967.161867pt;}
.yc{bottom:983.159200pt;}
.yb{bottom:994.359200pt;}
.ya{bottom:1007.159200pt;}
.y9{bottom:1025.338667pt;}
.y44{bottom:1039.370133pt;}
.h7{height:29.904000pt;}
.hc{height:30.165333pt;}
.h6{height:34.176000pt;}
.h5{height:34.474667pt;}
.h8{height:38.698667pt;}
.ha{height:38.736000pt;}
.hb{height:40.584000pt;}
.h4{height:46.992000pt;}
.h9{height:58.048000pt;}
.h2{height:59.808000pt;}
.h3{height:60.330667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:94.676133pt;}
.xe{left:113.574800pt;}
.x3{left:150.808800pt;}
.x1{left:191.054133pt;}
.x4{left:201.461200pt;}
.x8{left:355.525733pt;}
.x2{left:374.043467pt;}
.x5{left:407.157333pt;}
.x10{left:408.188800pt;}
.xc{left:410.972267pt;}
.x7{left:418.064400pt;}
.x9{left:422.425600pt;}
.x11{left:427.087467pt;}
.xa{left:447.036667pt;}
.x6{left:513.408000pt;}
.x12{left:518.073600pt;}
.xb{left:539.125200pt;}
.xd{left:607.905600pt;}
}




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