
    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_12646b0157b1bc9ff13553ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.068000;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_a5e7131fe3d26a181b35b1f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731445;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_6c20b0fe32874d0a2a7d435e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721191;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_e0db93419bcddd8f5407fad9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.840000;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_a5b18f14384a01432564363a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.044000;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_a5e7131fe3d26a181b35b1f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_6c20b0fe32874d0a2a7d435e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721191;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_4b3dc47f875df5cfa76e2da6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.715000;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_a5e7131fe3d26a181b35b1f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_6c20b0fe32874d0a2a7d435e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.721191;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_fdfec94cd4c18ee666b0632c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.858000;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_f75e3590752c1d224bcb72ab.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7bfeb1f342105e019ccbd764.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.906000;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);}
.m1{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.741000px;}
.ls8{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.171000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.570000px;}
.ls0{letter-spacing:0.857385px;}
.ls1{letter-spacing:1.362630px;}
.lsa{letter-spacing:2.850000px;}
.ls7{letter-spacing:3.990000px;}
.ls6{letter-spacing:4.620000px;}
.ls4{letter-spacing:7.200000px;}
.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;}
}
.ws27{word-spacing:-54.000000px;}
.ws3{word-spacing:-12.939000px;}
.ws2{word-spacing:-10.215000px;}
.ws18{word-spacing:-7.182000px;}
.ws2f{word-spacing:-3.534000px;}
.ws14{word-spacing:-2.964000px;}
.ws2d{word-spacing:-1.881000px;}
.ws2c{word-spacing:-1.653000px;}
.ws5d{word-spacing:-1.596000px;}
.ws1{word-spacing:-1.417135px;}
.ws24{word-spacing:-1.362630px;}
.ws4c{word-spacing:-1.083000px;}
.ws0{word-spacing:-0.891680px;}
.ws5{word-spacing:-0.857385px;}
.ws8{word-spacing:-0.570000px;}
.ws3b{word-spacing:-0.399000px;}
.ws25{word-spacing:-0.285000px;}
.ws15{word-spacing:-0.228000px;}
.ws28{word-spacing:-0.210000px;}
.ws4{word-spacing:0.000000px;}
.ws26{word-spacing:0.285000px;}
.ws41{word-spacing:0.399000px;}
.ws4d{word-spacing:0.513000px;}
.wsa{word-spacing:0.741000px;}
.ws2b{word-spacing:0.855000px;}
.ws4b{word-spacing:0.912000px;}
.ws2a{word-spacing:1.140000px;}
.ws39{word-spacing:1.368000px;}
.ws5f{word-spacing:1.482000px;}
.ws63{word-spacing:1.539000px;}
.ws33{word-spacing:1.596000px;}
.ws23{word-spacing:1.653000px;}
.ws48{word-spacing:1.767000px;}
.ws53{word-spacing:1.824000px;}
.ws11{word-spacing:1.938000px;}
.ws9{word-spacing:1.995000px;}
.ws64{word-spacing:2.052000px;}
.ws13{word-spacing:2.109000px;}
.wsd{word-spacing:2.223000px;}
.ws35{word-spacing:2.736000px;}
.ws36{word-spacing:2.793000px;}
.ws54{word-spacing:2.907000px;}
.ws60{word-spacing:3.135000px;}
.ws3c{word-spacing:3.363000px;}
.ws46{word-spacing:3.420000px;}
.ws43{word-spacing:3.762000px;}
.ws32{word-spacing:3.819000px;}
.wse{word-spacing:3.876000px;}
.ws1b{word-spacing:3.933000px;}
.ws34{word-spacing:3.990000px;}
.ws5b{word-spacing:4.047000px;}
.ws3e{word-spacing:4.218000px;}
.ws3d{word-spacing:4.275000px;}
.ws3f{word-spacing:4.446000px;}
.ws52{word-spacing:4.503000px;}
.ws29{word-spacing:4.560000px;}
.ws61{word-spacing:4.617000px;}
.ws40{word-spacing:4.674000px;}
.ws7{word-spacing:4.731000px;}
.ws21{word-spacing:4.788000px;}
.ws5e{word-spacing:4.902000px;}
.ws44{word-spacing:4.959000px;}
.wsc{word-spacing:5.016000px;}
.wsb{word-spacing:5.073000px;}
.ws20{word-spacing:5.130000px;}
.ws37{word-spacing:5.187000px;}
.ws1d{word-spacing:5.244000px;}
.ws12{word-spacing:5.301000px;}
.ws10{word-spacing:5.415000px;}
.ws42{word-spacing:5.529000px;}
.ws30{word-spacing:5.586000px;}
.ws2e{word-spacing:5.643000px;}
.ws50{word-spacing:5.700000px;}
.ws59{word-spacing:5.757000px;}
.ws4e{word-spacing:5.871000px;}
.ws56{word-spacing:6.213000px;}
.ws1e{word-spacing:6.270000px;}
.ws3a{word-spacing:7.068000px;}
.ws5c{word-spacing:7.581000px;}
.ws4a{word-spacing:7.809000px;}
.ws5a{word-spacing:8.037000px;}
.ws47{word-spacing:8.094000px;}
.ws62{word-spacing:8.151000px;}
.ws49{word-spacing:8.379000px;}
.ws1c{word-spacing:8.493000px;}
.wsf{word-spacing:8.550000px;}
.ws4f{word-spacing:8.835000px;}
.ws1f{word-spacing:8.949000px;}
.ws1a{word-spacing:9.063000px;}
.ws31{word-spacing:9.633000px;}
.ws16{word-spacing:10.431000px;}
.ws57{word-spacing:10.716000px;}
.ws19{word-spacing:10.773000px;}
.ws22{word-spacing:10.887000px;}
.ws55{word-spacing:11.286000px;}
.ws6{word-spacing:12.027000px;}
.ws51{word-spacing:13.053000px;}
.ws38{word-spacing:13.338000px;}
.ws58{word-spacing:14.592000px;}
.ws45{word-spacing:15.162000px;}
.ws17{word-spacing:20.349000px;}
._5{margin-left:-6.361200px;}
._1{margin-left:-4.805100px;}
._4{margin-left:-2.907000px;}
._0{margin-left:-1.824000px;}
._2{width:1.140000px;}
._3{width:5.190600px;}
.fc4{color:rgb(102,109,107);}
.fc3{color:transparent;}
.fc5{color:rgb(235,153,153);}
.fc2{color:rgb(59,72,71);}
.fc1{color:rgb(50,50,56);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:34.295400px;}
.fs7{font-size:39.900000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs8{font-size:45.600000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:54.505200px;}
.fs3{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:4.928550px;}
.y5c{bottom:45.928950px;}
.y59{bottom:113.698650px;}
.y58{bottom:130.798650px;}
.y23{bottom:135.184200px;}
.y57{bottom:147.898650px;}
.y22{bottom:152.284200px;}
.y56{bottom:164.998650px;}
.y21{bottom:169.384200px;}
.y55{bottom:182.098650px;}
.y20{bottom:186.484200px;}
.y54{bottom:199.198650px;}
.y1f{bottom:203.584200px;}
.y53{bottom:216.298650px;}
.y1e{bottom:220.684200px;}
.y52{bottom:233.398650px;}
.y1d{bottom:237.784200px;}
.y5b{bottom:250.498650px;}
.y1c{bottom:254.884200px;}
.y51{bottom:267.598650px;}
.y1b{bottom:271.984200px;}
.y50{bottom:284.698650px;}
.y1a{bottom:289.084200px;}
.y4f{bottom:301.798650px;}
.y19{bottom:306.184200px;}
.y4e{bottom:318.898650px;}
.y18{bottom:323.284200px;}
.y4d{bottom:335.998650px;}
.y17{bottom:340.384200px;}
.y4c{bottom:353.098650px;}
.y16{bottom:357.484200px;}
.y4b{bottom:370.198650px;}
.y15{bottom:374.584200px;}
.y4a{bottom:387.298650px;}
.y14{bottom:391.684200px;}
.y49{bottom:404.398650px;}
.y48{bottom:421.498650px;}
.y13{bottom:425.884350px;}
.y5e{bottom:433.913400px;}
.y47{bottom:438.598650px;}
.y12{bottom:442.984200px;}
.y5d{bottom:452.998650px;}
.y46{bottom:455.698650px;}
.y11{bottom:460.084200px;}
.y45{bottom:472.798650px;}
.y10{bottom:477.184200px;}
.y44{bottom:489.898650px;}
.yf{bottom:494.284200px;}
.y43{bottom:506.998650px;}
.ye{bottom:511.384350px;}
.y5a{bottom:524.098650px;}
.yd{bottom:528.484200px;}
.y42{bottom:541.198650px;}
.yc{bottom:545.584200px;}
.y41{bottom:558.298650px;}
.yb{bottom:562.684200px;}
.y40{bottom:575.398650px;}
.ya{bottom:579.784200px;}
.y3f{bottom:592.498650px;}
.y31{bottom:596.786100px;}
.y9{bottom:596.884350px;}
.y3e{bottom:609.598650px;}
.y30{bottom:613.886100px;}
.y8{bottom:613.984200px;}
.y3d{bottom:626.698650px;}
.y2f{bottom:630.986100px;}
.y7{bottom:631.084200px;}
.y3c{bottom:643.798650px;}
.y2e{bottom:648.086100px;}
.y6{bottom:648.184200px;}
.y3b{bottom:660.898650px;}
.y2d{bottom:665.186100px;}
.y5{bottom:665.284200px;}
.y3a{bottom:677.998650px;}
.y2c{bottom:682.286100px;}
.y4{bottom:682.384200px;}
.y39{bottom:695.098650px;}
.y38{bottom:712.198650px;}
.y37{bottom:729.298650px;}
.y3{bottom:737.647650px;}
.y36{bottom:746.398650px;}
.y35{bottom:763.498650px;}
.y27{bottom:775.565400px;}
.y26{bottom:789.065400px;}
.y24{bottom:807.873000px;}
.y2b{bottom:813.183450px;}
.y34{bottom:821.409450px;}
.y2a{bottom:826.683450px;}
.y2{bottom:839.762250px;}
.y32{bottom:839.850900px;}
.y33{bottom:839.976450px;}
.y29{bottom:840.183450px;}
.y1{bottom:851.181750px;}
.y28{bottom:855.183450px;}
.h3{height:24.733548px;}
.h9{height:31.500000px;}
.hb{height:33.054000px;}
.h8{height:36.495000px;}
.hd{height:37.800000px;}
.hc{height:38.577600px;}
.h7{height:39.308682px;}
.ha{height:44.859000px;}
.h5{height:46.227000px;}
.h2{height:48.660000px;}
.he{height:50.958000px;}
.h4{height:59.400000px;}
.h6{height:62.715000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:88.548000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xb{left:25.873350px;}
.x2{left:84.876600px;}
.x7{left:88.486500px;}
.xd{left:100.984350px;}
.x5{left:138.446250px;}
.x6{left:167.529450px;}
.x4{left:182.132550px;}
.xa{left:267.020400px;}
.x8{left:292.185600px;}
.x9{left:336.922800px;}
.xf{left:364.030950px;}
.xe{left:373.683150px;}
.x12{left:652.841100px;}
.x3{left:667.559100px;}
.x10{left:784.609200px;}
.x11{left:1041.354450px;}
.xc{left:1122.314550px;}
.x1{left:1215.361500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.658667pt;}
.ls8{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.152000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.506667pt;}
.ls0{letter-spacing:0.762120pt;}
.ls1{letter-spacing:1.211227pt;}
.lsa{letter-spacing:2.533333pt;}
.ls7{letter-spacing:3.546667pt;}
.ls6{letter-spacing:4.106667pt;}
.ls4{letter-spacing:6.400000pt;}
.ws27{word-spacing:-48.000000pt;}
.ws3{word-spacing:-11.501333pt;}
.ws2{word-spacing:-9.080000pt;}
.ws18{word-spacing:-6.384000pt;}
.ws2f{word-spacing:-3.141333pt;}
.ws14{word-spacing:-2.634667pt;}
.ws2d{word-spacing:-1.672000pt;}
.ws2c{word-spacing:-1.469333pt;}
.ws5d{word-spacing:-1.418667pt;}
.ws1{word-spacing:-1.259676pt;}
.ws24{word-spacing:-1.211227pt;}
.ws4c{word-spacing:-0.962667pt;}
.ws0{word-spacing:-0.792605pt;}
.ws5{word-spacing:-0.762120pt;}
.ws8{word-spacing:-0.506667pt;}
.ws3b{word-spacing:-0.354667pt;}
.ws25{word-spacing:-0.253333pt;}
.ws15{word-spacing:-0.202667pt;}
.ws28{word-spacing:-0.186667pt;}
.ws4{word-spacing:0.000000pt;}
.ws26{word-spacing:0.253333pt;}
.ws41{word-spacing:0.354667pt;}
.ws4d{word-spacing:0.456000pt;}
.wsa{word-spacing:0.658667pt;}
.ws2b{word-spacing:0.760000pt;}
.ws4b{word-spacing:0.810667pt;}
.ws2a{word-spacing:1.013333pt;}
.ws39{word-spacing:1.216000pt;}
.ws5f{word-spacing:1.317333pt;}
.ws63{word-spacing:1.368000pt;}
.ws33{word-spacing:1.418667pt;}
.ws23{word-spacing:1.469333pt;}
.ws48{word-spacing:1.570667pt;}
.ws53{word-spacing:1.621333pt;}
.ws11{word-spacing:1.722667pt;}
.ws9{word-spacing:1.773333pt;}
.ws64{word-spacing:1.824000pt;}
.ws13{word-spacing:1.874667pt;}
.wsd{word-spacing:1.976000pt;}
.ws35{word-spacing:2.432000pt;}
.ws36{word-spacing:2.482667pt;}
.ws54{word-spacing:2.584000pt;}
.ws60{word-spacing:2.786667pt;}
.ws3c{word-spacing:2.989333pt;}
.ws46{word-spacing:3.040000pt;}
.ws43{word-spacing:3.344000pt;}
.ws32{word-spacing:3.394667pt;}
.wse{word-spacing:3.445333pt;}
.ws1b{word-spacing:3.496000pt;}
.ws34{word-spacing:3.546667pt;}
.ws5b{word-spacing:3.597333pt;}
.ws3e{word-spacing:3.749333pt;}
.ws3d{word-spacing:3.800000pt;}
.ws3f{word-spacing:3.952000pt;}
.ws52{word-spacing:4.002667pt;}
.ws29{word-spacing:4.053333pt;}
.ws61{word-spacing:4.104000pt;}
.ws40{word-spacing:4.154667pt;}
.ws7{word-spacing:4.205333pt;}
.ws21{word-spacing:4.256000pt;}
.ws5e{word-spacing:4.357333pt;}
.ws44{word-spacing:4.408000pt;}
.wsc{word-spacing:4.458667pt;}
.wsb{word-spacing:4.509333pt;}
.ws20{word-spacing:4.560000pt;}
.ws37{word-spacing:4.610667pt;}
.ws1d{word-spacing:4.661333pt;}
.ws12{word-spacing:4.712000pt;}
.ws10{word-spacing:4.813333pt;}
.ws42{word-spacing:4.914667pt;}
.ws30{word-spacing:4.965333pt;}
.ws2e{word-spacing:5.016000pt;}
.ws50{word-spacing:5.066667pt;}
.ws59{word-spacing:5.117333pt;}
.ws4e{word-spacing:5.218667pt;}
.ws56{word-spacing:5.522667pt;}
.ws1e{word-spacing:5.573333pt;}
.ws3a{word-spacing:6.282667pt;}
.ws5c{word-spacing:6.738667pt;}
.ws4a{word-spacing:6.941333pt;}
.ws5a{word-spacing:7.144000pt;}
.ws47{word-spacing:7.194667pt;}
.ws62{word-spacing:7.245333pt;}
.ws49{word-spacing:7.448000pt;}
.ws1c{word-spacing:7.549333pt;}
.wsf{word-spacing:7.600000pt;}
.ws4f{word-spacing:7.853333pt;}
.ws1f{word-spacing:7.954667pt;}
.ws1a{word-spacing:8.056000pt;}
.ws31{word-spacing:8.562667pt;}
.ws16{word-spacing:9.272000pt;}
.ws57{word-spacing:9.525333pt;}
.ws19{word-spacing:9.576000pt;}
.ws22{word-spacing:9.677333pt;}
.ws55{word-spacing:10.032000pt;}
.ws6{word-spacing:10.690667pt;}
.ws51{word-spacing:11.602667pt;}
.ws38{word-spacing:11.856000pt;}
.ws58{word-spacing:12.970667pt;}
.ws45{word-spacing:13.477333pt;}
.ws17{word-spacing:18.088000pt;}
._5{margin-left:-5.654400pt;}
._1{margin-left:-4.271200pt;}
._4{margin-left:-2.584000pt;}
._0{margin-left:-1.621333pt;}
._2{width:1.013333pt;}
._3{width:4.613867pt;}
.fs1{font-size:30.484800pt;}
.fs7{font-size:35.466667pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs8{font-size:40.533333pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:48.449067pt;}
.fs3{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:4.380933pt;}
.y5c{bottom:40.825733pt;}
.y59{bottom:101.065467pt;}
.y58{bottom:116.265467pt;}
.y23{bottom:120.163733pt;}
.y57{bottom:131.465467pt;}
.y22{bottom:135.363733pt;}
.y56{bottom:146.665467pt;}
.y21{bottom:150.563733pt;}
.y55{bottom:161.865467pt;}
.y20{bottom:165.763733pt;}
.y54{bottom:177.065467pt;}
.y1f{bottom:180.963733pt;}
.y53{bottom:192.265467pt;}
.y1e{bottom:196.163733pt;}
.y52{bottom:207.465467pt;}
.y1d{bottom:211.363733pt;}
.y5b{bottom:222.665467pt;}
.y1c{bottom:226.563733pt;}
.y51{bottom:237.865467pt;}
.y1b{bottom:241.763733pt;}
.y50{bottom:253.065467pt;}
.y1a{bottom:256.963733pt;}
.y4f{bottom:268.265467pt;}
.y19{bottom:272.163733pt;}
.y4e{bottom:283.465467pt;}
.y18{bottom:287.363733pt;}
.y4d{bottom:298.665467pt;}
.y17{bottom:302.563733pt;}
.y4c{bottom:313.865467pt;}
.y16{bottom:317.763733pt;}
.y4b{bottom:329.065467pt;}
.y15{bottom:332.963733pt;}
.y4a{bottom:344.265467pt;}
.y14{bottom:348.163733pt;}
.y49{bottom:359.465467pt;}
.y48{bottom:374.665467pt;}
.y13{bottom:378.563867pt;}
.y5e{bottom:385.700800pt;}
.y47{bottom:389.865467pt;}
.y12{bottom:393.763733pt;}
.y5d{bottom:402.665467pt;}
.y46{bottom:405.065467pt;}
.y11{bottom:408.963733pt;}
.y45{bottom:420.265467pt;}
.y10{bottom:424.163733pt;}
.y44{bottom:435.465467pt;}
.yf{bottom:439.363733pt;}
.y43{bottom:450.665467pt;}
.ye{bottom:454.563867pt;}
.y5a{bottom:465.865467pt;}
.yd{bottom:469.763733pt;}
.y42{bottom:481.065467pt;}
.yc{bottom:484.963733pt;}
.y41{bottom:496.265467pt;}
.yb{bottom:500.163733pt;}
.y40{bottom:511.465467pt;}
.ya{bottom:515.363733pt;}
.y3f{bottom:526.665467pt;}
.y31{bottom:530.476533pt;}
.y9{bottom:530.563867pt;}
.y3e{bottom:541.865467pt;}
.y30{bottom:545.676533pt;}
.y8{bottom:545.763733pt;}
.y3d{bottom:557.065467pt;}
.y2f{bottom:560.876533pt;}
.y7{bottom:560.963733pt;}
.y3c{bottom:572.265467pt;}
.y2e{bottom:576.076533pt;}
.y6{bottom:576.163733pt;}
.y3b{bottom:587.465467pt;}
.y2d{bottom:591.276533pt;}
.y5{bottom:591.363733pt;}
.y3a{bottom:602.665467pt;}
.y2c{bottom:606.476533pt;}
.y4{bottom:606.563733pt;}
.y39{bottom:617.865467pt;}
.y38{bottom:633.065467pt;}
.y37{bottom:648.265467pt;}
.y3{bottom:655.686800pt;}
.y36{bottom:663.465467pt;}
.y35{bottom:678.665467pt;}
.y27{bottom:689.391467pt;}
.y26{bottom:701.391467pt;}
.y24{bottom:718.109333pt;}
.y2b{bottom:722.829733pt;}
.y34{bottom:730.141733pt;}
.y2a{bottom:734.829733pt;}
.y2{bottom:746.455333pt;}
.y32{bottom:746.534133pt;}
.y33{bottom:746.645733pt;}
.y29{bottom:746.829733pt;}
.y1{bottom:756.606000pt;}
.y28{bottom:760.163067pt;}
.h3{height:21.985376pt;}
.h9{height:28.000000pt;}
.hb{height:29.381333pt;}
.h8{height:32.440000pt;}
.hd{height:33.600000pt;}
.hc{height:34.291200pt;}
.h7{height:34.941051pt;}
.ha{height:39.874667pt;}
.h5{height:41.090667pt;}
.h2{height:43.253333pt;}
.he{height:45.296000pt;}
.h4{height:52.800000pt;}
.h6{height:55.746667pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:78.709333pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb{left:22.998533pt;}
.x2{left:75.445867pt;}
.x7{left:78.654667pt;}
.xd{left:89.763867pt;}
.x5{left:123.063333pt;}
.x6{left:148.915067pt;}
.x4{left:161.895600pt;}
.xa{left:237.351467pt;}
.x8{left:259.720533pt;}
.x9{left:299.486933pt;}
.xf{left:323.583067pt;}
.xe{left:332.162800pt;}
.x12{left:580.303200pt;}
.x3{left:593.385867pt;}
.x10{left:697.430400pt;}
.x11{left:925.648400pt;}
.xc{left:997.612933pt;}
.x1{left:1080.321333pt;}
}




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