
    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_8ab67ac45d587f1c4a8c37a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_7772c5a962761e88c4115bd3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.176000;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_d4da32bd51fc2f7540dbc70f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_f24a044938295d208e89bcd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914000;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_15dbdbdd56aadd0523be8276.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_f5c96b0e265a9a789607c853.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;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_bcf92277d5a0a1d53dac34cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935083;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_6dcf3f18ff4675fcb2eda4a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.013000;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_51e5b8bdcd41a7b6558415c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.996000;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_7a2f3ccc2a27e650873dd9c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.170190;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_4914a90cb103334bedce7819.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.108000;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_fa745db2af2b5a5706e8a3fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929000;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_351d1439926c378438be868f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_85c6460b8bc84e7884d82d9f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.990000;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.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);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:17.100000px;}
.ls7{letter-spacing:-12.870000px;}
.ls25{letter-spacing:-9.945000px;}
.ls8{letter-spacing:-9.801000px;}
.ls13{letter-spacing:-8.775000px;}
.ls26{letter-spacing:-8.032500px;}
.ls14{letter-spacing:-7.526250px;}
.ls5{letter-spacing:-3.168000px;}
.ls9{letter-spacing:-1.140000px;}
.lsa{letter-spacing:-0.969000px;}
.lsb{letter-spacing:-0.900000px;}
.ls22{letter-spacing:-0.855000px;}
.ls21{letter-spacing:-0.741000px;}
.ls20{letter-spacing:-0.057000px;}
.ls6{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.034500px;}
.ls1e{letter-spacing:0.048900px;}
.ls17{letter-spacing:0.057000px;}
.ls1f{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.114000px;}
.ls10{letter-spacing:0.171000px;}
.ls1c{letter-spacing:0.228000px;}
.ls4{letter-spacing:0.285000px;}
.ls1b{letter-spacing:0.342000px;}
.ls12{letter-spacing:0.399000px;}
.ls19{letter-spacing:0.456000px;}
.ls24{letter-spacing:0.513000px;}
.lsd{letter-spacing:0.570000px;}
.ls23{letter-spacing:0.627000px;}
.ls1{letter-spacing:0.684000px;}
.ls11{letter-spacing:0.741000px;}
.lse{letter-spacing:0.855000px;}
.ls1a{letter-spacing:0.912000px;}
.ls2{letter-spacing:0.969000px;}
.lsf{letter-spacing:1.026000px;}
.ls18{letter-spacing:1.083000px;}
.ls0{letter-spacing:10.656000px;}
.ls15{letter-spacing:903.285000px;}
.ls16{letter-spacing:1249.547400px;}
.lsc{letter-spacing:1423.968000px;}
.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;}
}
.ws0{word-spacing:-32.832000px;}
.ws24{word-spacing:-27.780000px;}
.ws18{word-spacing:-27.474000px;}
.ws19{word-spacing:-27.360000px;}
.ws1a{word-spacing:-27.303000px;}
.ws12{word-spacing:-27.132000px;}
.ws4{word-spacing:-27.075000px;}
.ws23{word-spacing:-27.018000px;}
.ws10{word-spacing:-26.961000px;}
.ws20{word-spacing:-26.847000px;}
.ws22{word-spacing:-26.790000px;}
.ws1b{word-spacing:-26.733000px;}
.ws6{word-spacing:-26.676000px;}
.ws1c{word-spacing:-26.619000px;}
.ws14{word-spacing:-26.562000px;}
.ws25{word-spacing:-26.505000px;}
.ws1e{word-spacing:-26.448000px;}
.ws5{word-spacing:-26.391000px;}
.ws7{word-spacing:-25.251000px;}
.ws28{word-spacing:-23.613000px;}
.ws16{word-spacing:-20.835000px;}
.ws1{word-spacing:-18.942000px;}
.wse{word-spacing:-17.220000px;}
.ws11{word-spacing:-17.154150px;}
.ws21{word-spacing:-16.530000px;}
.ws1d{word-spacing:-16.416000px;}
.ws13{word-spacing:-16.359000px;}
.ws26{word-spacing:-14.637000px;}
.ws15{word-spacing:-13.542750px;}
.wsb{word-spacing:-12.915000px;}
.ws9{word-spacing:-12.015000px;}
.ws17{word-spacing:-11.676000px;}
.ws1f{word-spacing:-11.340000px;}
.ws8{word-spacing:-10.350000px;}
.wsf{word-spacing:-0.042000px;}
.wsa{word-spacing:0.000000px;}
.ws29{word-spacing:5.087250px;}
.wsd{word-spacing:5.366250px;}
.ws3{word-spacing:5.395500px;}
.wsc{word-spacing:7.863750px;}
.ws27{word-spacing:8.912250px;}
.ws2{word-spacing:11.533500px;}
._c{margin-left:-28.614000px;}
._b{margin-left:-23.370000px;}
._2{margin-left:-10.662600px;}
._4{margin-left:-3.552000px;}
._3{margin-left:-1.920000px;}
._0{width:1.584000px;}
._9{width:3.477000px;}
._8{width:4.617000px;}
._7{width:5.643000px;}
._5{width:6.897000px;}
._6{width:8.322000px;}
._a{width:10.323600px;}
._1{width:13.344000px;}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:29.250000px;}
.fs7{font-size:31.200000px;}
.fsb{font-size:33.750000px;}
.fsd{font-size:37.050000px;}
.fsf{font-size:38.250000px;}
.fsc{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fsa{font-size:51.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:72.281550px;}
.y2{bottom:72.281850px;}
.y4f{bottom:110.549250px;}
.y24{bottom:110.549400px;}
.y4e{bottom:124.941750px;}
.y5d{bottom:128.316750px;}
.y86{bottom:128.318100px;}
.yaf{bottom:128.527500px;}
.y4d{bottom:142.709250px;}
.y85{bottom:146.086950px;}
.yae{bottom:146.505750px;}
.y84{bottom:163.855650px;}
.yad{bottom:164.484000px;}
.y23{bottom:170.198700px;}
.y83{bottom:181.624500px;}
.yac{bottom:182.462250px;}
.y22{bottom:187.795200px;}
.y5c{bottom:188.171700px;}
.y4c{bottom:196.970850px;}
.y82{bottom:199.393200px;}
.yab{bottom:200.440500px;}
.y21{bottom:205.391550px;}
.y5b{bottom:205.768200px;}
.ybf{bottom:208.190550px;}
.y4b{bottom:214.567350px;}
.y81{bottom:217.162050px;}
.yaa{bottom:218.418750px;}
.y20{bottom:222.988050px;}
.y5a{bottom:223.364550px;}
.ybe{bottom:225.959400px;}
.y80{bottom:234.930750px;}
.ya9{bottom:236.397000px;}
.y1f{bottom:240.584550px;}
.y4a{bottom:240.961050px;}
.ybd{bottom:243.728100px;}
.y7f{bottom:252.699600px;}
.ya8{bottom:254.375250px;}
.y1e{bottom:258.181050px;}
.y49{bottom:258.557550px;}
.ybc{bottom:261.496950px;}
.y7e{bottom:270.468450px;}
.ya7{bottom:272.353500px;}
.y1d{bottom:275.777550px;}
.y48{bottom:276.154050px;}
.ybb{bottom:279.265650px;}
.y7d{bottom:288.237150px;}
.ya6{bottom:290.331600px;}
.y1c{bottom:293.374050px;}
.y47{bottom:293.750550px;}
.yba{bottom:297.034500px;}
.y7c{bottom:306.006000px;}
.ya5{bottom:308.309850px;}
.y1b{bottom:310.970550px;}
.y46{bottom:311.347050px;}
.yb9{bottom:314.803200px;}
.y7b{bottom:323.774700px;}
.ya4{bottom:326.288100px;}
.y1a{bottom:328.567050px;}
.y45{bottom:328.943550px;}
.yb8{bottom:332.572050px;}
.y7a{bottom:341.543400px;}
.ya3{bottom:344.266350px;}
.y19{bottom:346.163550px;}
.y44{bottom:346.540050px;}
.yb7{bottom:350.340750px;}
.y79{bottom:359.312250px;}
.ya2{bottom:362.244600px;}
.y18{bottom:363.759900px;}
.y43{bottom:364.136400px;}
.yb6{bottom:368.109600px;}
.y78{bottom:377.081100px;}
.ya1{bottom:380.222850px;}
.y17{bottom:381.356400px;}
.y42{bottom:381.732900px;}
.yb5{bottom:385.878450px;}
.y77{bottom:394.849800px;}
.ya0{bottom:398.201100px;}
.y41{bottom:399.329400px;}
.yb4{bottom:403.647150px;}
.y16{bottom:407.750250px;}
.y9f{bottom:416.179350px;}
.y40{bottom:416.925900px;}
.y76{bottom:421.415850px;}
.y15{bottom:425.346750px;}
.y9e{bottom:434.157600px;}
.y3f{bottom:434.522400px;}
.y75{bottom:439.184700px;}
.y14{bottom:442.943250px;}
.y59{bottom:452.118900px;}
.y9d{bottom:452.135850px;}
.y74{bottom:456.953550px;}
.y13{bottom:460.539750px;}
.y3e{bottom:460.916250px;}
.y58{bottom:469.715400px;}
.y9c{bottom:470.114100px;}
.y73{bottom:474.722250px;}
.y12{bottom:478.136100px;}
.y3d{bottom:478.512750px;}
.y57{bottom:487.311750px;}
.y9b{bottom:488.092200px;}
.y72{bottom:492.491100px;}
.y11{bottom:495.732600px;}
.y3c{bottom:496.109100px;}
.y9a{bottom:506.070450px;}
.y71{bottom:510.259800px;}
.y10{bottom:513.329100px;}
.y3b{bottom:513.705600px;}
.y99{bottom:524.048700px;}
.y70{bottom:528.028500px;}
.yf{bottom:530.925600px;}
.y3a{bottom:531.302100px;}
.y98{bottom:542.026950px;}
.y6f{bottom:545.797350px;}
.ye{bottom:548.522100px;}
.y39{bottom:548.898600px;}
.y97{bottom:560.005200px;}
.y6e{bottom:563.566200px;}
.yd{bottom:566.118600px;}
.y38{bottom:566.495100px;}
.y96{bottom:577.983450px;}
.y6d{bottom:581.334900px;}
.yc{bottom:583.715100px;}
.y37{bottom:584.091600px;}
.y56{bottom:592.888800px;}
.y95{bottom:595.961700px;}
.y6c{bottom:599.103750px;}
.yb{bottom:601.311600px;}
.y36{bottom:601.688100px;}
.yc8{bottom:605.047950px;}
.y55{bottom:610.485300px;}
.y94{bottom:613.939950px;}
.y6b{bottom:616.872450px;}
.ya{bottom:618.907950px;}
.y35{bottom:619.284600px;}
.yc7{bottom:620.968200px;}
.y54{bottom:628.081800px;}
.y6a{bottom:634.641300px;}
.y34{bottom:636.880950px;}
.y93{bottom:640.715550px;}
.y53{bottom:645.678300px;}
.yc6{bottom:645.685800px;}
.y69{bottom:652.410000px;}
.y33{bottom:654.477450px;}
.y92{bottom:658.693800px;}
.y52{bottom:663.274800px;}
.yb3{bottom:670.178700px;}
.y68{bottom:670.178850px;}
.y32{bottom:672.073950px;}
.y91{bottom:676.672050px;}
.y51{bottom:680.871300px;}
.y67{bottom:687.947550px;}
.y31{bottom:689.670450px;}
.y90{bottom:694.650150px;}
.y50{bottom:698.467800px;}
.yc5{bottom:698.471550px;}
.yb2{bottom:705.716250px;}
.y8f{bottom:712.628400px;}
.y66{bottom:714.513750px;}
.y30{bottom:716.064300px;}
.yb1{bottom:723.485100px;}
.yc4{bottom:724.865250px;}
.y8e{bottom:730.606650px;}
.y65{bottom:732.282450px;}
.y2f{bottom:733.660800px;}
.yb0{bottom:741.253950px;}
.y8d{bottom:748.584900px;}
.y64{bottom:750.051150px;}
.y2e{bottom:751.257150px;}
.yc3{bottom:760.056450px;}
.y8c{bottom:766.563150px;}
.y9{bottom:767.807100px;}
.y63{bottom:767.820000px;}
.y2d{bottom:768.853800px;}
.yc2{bottom:777.652950px;}
.y8b{bottom:784.541400px;}
.y62{bottom:785.588700px;}
.y2c{bottom:786.450150px;}
.y8{bottom:791.781600px;}
.yc1{bottom:795.249450px;}
.y8a{bottom:802.519650px;}
.y61{bottom:803.357550px;}
.y2b{bottom:804.046650px;}
.yc0{bottom:812.845800px;}
.y89{bottom:820.497900px;}
.y60{bottom:821.126250px;}
.y2a{bottom:821.643150px;}
.y7{bottom:828.562950px;}
.y88{bottom:838.476150px;}
.y5f{bottom:838.895100px;}
.y29{bottom:839.239650px;}
.y87{bottom:856.454250px;}
.y5e{bottom:856.663800px;}
.y28{bottom:856.836150px;}
.y6{bottom:868.657500px;}
.y27{bottom:874.432650px;}
.y3{bottom:911.861400px;}
.y25{bottom:913.304250px;}
.y1{bottom:944.572950px;}
.y5{bottom:949.384950px;}
.y4{bottom:962.884950px;}
.hf{height:27.085500px;}
.h11{height:28.170000px;}
.h10{height:33.570000px;}
.h4{height:35.328000px;}
.hd{height:38.046000px;}
.h8{height:38.205600px;}
.hc{height:41.670000px;}
.h9{height:42.522000px;}
.he{height:44.760000px;}
.h13{height:47.226000px;}
.h12{height:48.774000px;}
.h7{height:50.358000px;}
.hb{height:52.098000px;}
.ha{height:52.782000px;}
.h6{height:53.712000px;}
.h3{height:55.560000px;}
.h5{height:68.760000px;}
.h2{height:99.984375px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:106.299150px;}
.xa{left:127.559100px;}
.x9{left:131.811000px;}
.x6{left:137.581200px;}
.x8{left:200.483250px;}
.x5{left:271.677600px;}
.x7{left:285.054600px;}
.xc{left:318.771300px;}
.xb{left:335.779350px;}
.xd{left:387.054900px;}
.x3{left:445.299000px;}
.xf{left:474.274800px;}
.xe{left:523.323000px;}
.x1{left:525.935250px;}
.x2{left:590.705550px;}
@media print{
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:15.200000pt;}
.ls7{letter-spacing:-11.440000pt;}
.ls25{letter-spacing:-8.840000pt;}
.ls8{letter-spacing:-8.712000pt;}
.ls13{letter-spacing:-7.800000pt;}
.ls26{letter-spacing:-7.140000pt;}
.ls14{letter-spacing:-6.690000pt;}
.ls5{letter-spacing:-2.816000pt;}
.ls9{letter-spacing:-1.013333pt;}
.lsa{letter-spacing:-0.861333pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls22{letter-spacing:-0.760000pt;}
.ls21{letter-spacing:-0.658667pt;}
.ls20{letter-spacing:-0.050667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.030667pt;}
.ls1e{letter-spacing:0.043467pt;}
.ls17{letter-spacing:0.050667pt;}
.ls1f{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.101333pt;}
.ls10{letter-spacing:0.152000pt;}
.ls1c{letter-spacing:0.202667pt;}
.ls4{letter-spacing:0.253333pt;}
.ls1b{letter-spacing:0.304000pt;}
.ls12{letter-spacing:0.354667pt;}
.ls19{letter-spacing:0.405333pt;}
.ls24{letter-spacing:0.456000pt;}
.lsd{letter-spacing:0.506667pt;}
.ls23{letter-spacing:0.557333pt;}
.ls1{letter-spacing:0.608000pt;}
.ls11{letter-spacing:0.658667pt;}
.lse{letter-spacing:0.760000pt;}
.ls1a{letter-spacing:0.810667pt;}
.ls2{letter-spacing:0.861333pt;}
.lsf{letter-spacing:0.912000pt;}
.ls18{letter-spacing:0.962667pt;}
.ls0{letter-spacing:9.472000pt;}
.ls15{letter-spacing:802.920000pt;}
.ls16{letter-spacing:1110.708800pt;}
.lsc{letter-spacing:1265.749333pt;}
.ws0{word-spacing:-29.184000pt;}
.ws24{word-spacing:-24.693333pt;}
.ws18{word-spacing:-24.421333pt;}
.ws19{word-spacing:-24.320000pt;}
.ws1a{word-spacing:-24.269333pt;}
.ws12{word-spacing:-24.117333pt;}
.ws4{word-spacing:-24.066667pt;}
.ws23{word-spacing:-24.016000pt;}
.ws10{word-spacing:-23.965333pt;}
.ws20{word-spacing:-23.864000pt;}
.ws22{word-spacing:-23.813333pt;}
.ws1b{word-spacing:-23.762667pt;}
.ws6{word-spacing:-23.712000pt;}
.ws1c{word-spacing:-23.661333pt;}
.ws14{word-spacing:-23.610667pt;}
.ws25{word-spacing:-23.560000pt;}
.ws1e{word-spacing:-23.509333pt;}
.ws5{word-spacing:-23.458667pt;}
.ws7{word-spacing:-22.445333pt;}
.ws28{word-spacing:-20.989333pt;}
.ws16{word-spacing:-18.520000pt;}
.ws1{word-spacing:-16.837333pt;}
.wse{word-spacing:-15.306667pt;}
.ws11{word-spacing:-15.248133pt;}
.ws21{word-spacing:-14.693333pt;}
.ws1d{word-spacing:-14.592000pt;}
.ws13{word-spacing:-14.541333pt;}
.ws26{word-spacing:-13.010667pt;}
.ws15{word-spacing:-12.038000pt;}
.wsb{word-spacing:-11.480000pt;}
.ws9{word-spacing:-10.680000pt;}
.ws17{word-spacing:-10.378667pt;}
.ws1f{word-spacing:-10.080000pt;}
.ws8{word-spacing:-9.200000pt;}
.wsf{word-spacing:-0.037333pt;}
.wsa{word-spacing:0.000000pt;}
.ws29{word-spacing:4.522000pt;}
.wsd{word-spacing:4.770000pt;}
.ws3{word-spacing:4.796000pt;}
.wsc{word-spacing:6.990000pt;}
.ws27{word-spacing:7.922000pt;}
.ws2{word-spacing:10.252000pt;}
._c{margin-left:-25.434667pt;}
._b{margin-left:-20.773333pt;}
._2{margin-left:-9.477867pt;}
._4{margin-left:-3.157333pt;}
._3{margin-left:-1.706667pt;}
._0{width:1.408000pt;}
._9{width:3.090667pt;}
._8{width:4.104000pt;}
._7{width:5.016000pt;}
._5{width:6.130667pt;}
._6{width:7.397333pt;}
._a{width:9.176533pt;}
._1{width:11.861333pt;}
.fse{font-size:26.000000pt;}
.fs7{font-size:27.733333pt;}
.fsb{font-size:30.000000pt;}
.fsd{font-size:32.933333pt;}
.fsf{font-size:34.000000pt;}
.fsc{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fsa{font-size:45.333333pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:64.250267pt;}
.y2{bottom:64.250533pt;}
.y4f{bottom:98.266000pt;}
.y24{bottom:98.266133pt;}
.y4e{bottom:111.059333pt;}
.y5d{bottom:114.059333pt;}
.y86{bottom:114.060533pt;}
.yaf{bottom:114.246667pt;}
.y4d{bottom:126.852667pt;}
.y85{bottom:129.855067pt;}
.yae{bottom:130.227333pt;}
.y84{bottom:145.649467pt;}
.yad{bottom:146.208000pt;}
.y23{bottom:151.287733pt;}
.y83{bottom:161.444000pt;}
.yac{bottom:162.188667pt;}
.y22{bottom:166.929067pt;}
.y5c{bottom:167.263733pt;}
.y4c{bottom:175.085200pt;}
.y82{bottom:177.238400pt;}
.yab{bottom:178.169333pt;}
.y21{bottom:182.570267pt;}
.y5b{bottom:182.905067pt;}
.ybf{bottom:185.058267pt;}
.y4b{bottom:190.726533pt;}
.y81{bottom:193.032933pt;}
.yaa{bottom:194.150000pt;}
.y20{bottom:198.211600pt;}
.y5a{bottom:198.546267pt;}
.ybe{bottom:200.852800pt;}
.y80{bottom:208.827333pt;}
.ya9{bottom:210.130667pt;}
.y1f{bottom:213.852933pt;}
.y4a{bottom:214.187600pt;}
.ybd{bottom:216.647200pt;}
.y7f{bottom:224.621867pt;}
.ya8{bottom:226.111333pt;}
.y1e{bottom:229.494267pt;}
.y49{bottom:229.828933pt;}
.ybc{bottom:232.441733pt;}
.y7e{bottom:240.416400pt;}
.ya7{bottom:242.092000pt;}
.y1d{bottom:245.135600pt;}
.y48{bottom:245.470267pt;}
.ybb{bottom:248.236133pt;}
.y7d{bottom:256.210800pt;}
.ya6{bottom:258.072533pt;}
.y1c{bottom:260.776933pt;}
.y47{bottom:261.111600pt;}
.yba{bottom:264.030667pt;}
.y7c{bottom:272.005333pt;}
.ya5{bottom:274.053200pt;}
.y1b{bottom:276.418267pt;}
.y46{bottom:276.752933pt;}
.yb9{bottom:279.825067pt;}
.y7b{bottom:287.799733pt;}
.ya4{bottom:290.033867pt;}
.y1a{bottom:292.059600pt;}
.y45{bottom:292.394267pt;}
.yb8{bottom:295.619600pt;}
.y7a{bottom:303.594133pt;}
.ya3{bottom:306.014533pt;}
.y19{bottom:307.700933pt;}
.y44{bottom:308.035600pt;}
.yb7{bottom:311.414000pt;}
.y79{bottom:319.388667pt;}
.ya2{bottom:321.995200pt;}
.y18{bottom:323.342133pt;}
.y43{bottom:323.676800pt;}
.yb6{bottom:327.208533pt;}
.y78{bottom:335.183200pt;}
.ya1{bottom:337.975867pt;}
.y17{bottom:338.983467pt;}
.y42{bottom:339.318133pt;}
.yb5{bottom:343.003067pt;}
.y77{bottom:350.977600pt;}
.ya0{bottom:353.956533pt;}
.y41{bottom:354.959467pt;}
.yb4{bottom:358.797467pt;}
.y16{bottom:362.444667pt;}
.y9f{bottom:369.937200pt;}
.y40{bottom:370.600800pt;}
.y76{bottom:374.591867pt;}
.y15{bottom:378.086000pt;}
.y9e{bottom:385.917867pt;}
.y3f{bottom:386.242133pt;}
.y75{bottom:390.386400pt;}
.y14{bottom:393.727333pt;}
.y59{bottom:401.883467pt;}
.y9d{bottom:401.898533pt;}
.y74{bottom:406.180933pt;}
.y13{bottom:409.368667pt;}
.y3e{bottom:409.703333pt;}
.y58{bottom:417.524800pt;}
.y9c{bottom:417.879200pt;}
.y73{bottom:421.975333pt;}
.y12{bottom:425.009867pt;}
.y3d{bottom:425.344667pt;}
.y57{bottom:433.166000pt;}
.y9b{bottom:433.859733pt;}
.y72{bottom:437.769867pt;}
.y11{bottom:440.651200pt;}
.y3c{bottom:440.985867pt;}
.y9a{bottom:449.840400pt;}
.y71{bottom:453.564267pt;}
.y10{bottom:456.292533pt;}
.y3b{bottom:456.627200pt;}
.y99{bottom:465.821067pt;}
.y70{bottom:469.358667pt;}
.yf{bottom:471.933867pt;}
.y3a{bottom:472.268533pt;}
.y98{bottom:481.801733pt;}
.y6f{bottom:485.153200pt;}
.ye{bottom:487.575200pt;}
.y39{bottom:487.909867pt;}
.y97{bottom:497.782400pt;}
.y6e{bottom:500.947733pt;}
.yd{bottom:503.216533pt;}
.y38{bottom:503.551200pt;}
.y96{bottom:513.763067pt;}
.y6d{bottom:516.742133pt;}
.yc{bottom:518.857867pt;}
.y37{bottom:519.192533pt;}
.y56{bottom:527.012267pt;}
.y95{bottom:529.743733pt;}
.y6c{bottom:532.536667pt;}
.yb{bottom:534.499200pt;}
.y36{bottom:534.833867pt;}
.yc8{bottom:537.820400pt;}
.y55{bottom:542.653600pt;}
.y94{bottom:545.724400pt;}
.y6b{bottom:548.331067pt;}
.ya{bottom:550.140400pt;}
.y35{bottom:550.475200pt;}
.yc7{bottom:551.971733pt;}
.y54{bottom:558.294933pt;}
.y6a{bottom:564.125600pt;}
.y34{bottom:566.116400pt;}
.y93{bottom:569.524933pt;}
.y53{bottom:573.936267pt;}
.yc6{bottom:573.942933pt;}
.y69{bottom:579.920000pt;}
.y33{bottom:581.757733pt;}
.y92{bottom:585.505600pt;}
.y52{bottom:589.577600pt;}
.yb3{bottom:595.714400pt;}
.y68{bottom:595.714533pt;}
.y32{bottom:597.399067pt;}
.y91{bottom:601.486267pt;}
.y51{bottom:605.218933pt;}
.y67{bottom:611.508933pt;}
.y31{bottom:613.040400pt;}
.y90{bottom:617.466800pt;}
.y50{bottom:620.860267pt;}
.yc5{bottom:620.863600pt;}
.yb2{bottom:627.303333pt;}
.y8f{bottom:633.447467pt;}
.y66{bottom:635.123333pt;}
.y30{bottom:636.501600pt;}
.yb1{bottom:643.097867pt;}
.yc4{bottom:644.324667pt;}
.y8e{bottom:649.428133pt;}
.y65{bottom:650.917733pt;}
.y2f{bottom:652.142933pt;}
.yb0{bottom:658.892400pt;}
.y8d{bottom:665.408800pt;}
.y64{bottom:666.712133pt;}
.y2e{bottom:667.784133pt;}
.yc3{bottom:675.605733pt;}
.y8c{bottom:681.389467pt;}
.y9{bottom:682.495200pt;}
.y63{bottom:682.506667pt;}
.y2d{bottom:683.425600pt;}
.yc2{bottom:691.247067pt;}
.y8b{bottom:697.370133pt;}
.y62{bottom:698.301067pt;}
.y2c{bottom:699.066800pt;}
.y8{bottom:703.805867pt;}
.yc1{bottom:706.888400pt;}
.y8a{bottom:713.350800pt;}
.y61{bottom:714.095600pt;}
.y2b{bottom:714.708133pt;}
.yc0{bottom:722.529600pt;}
.y89{bottom:729.331467pt;}
.y60{bottom:729.890000pt;}
.y2a{bottom:730.349467pt;}
.y7{bottom:736.500400pt;}
.y88{bottom:745.312133pt;}
.y5f{bottom:745.684533pt;}
.y29{bottom:745.990800pt;}
.y87{bottom:761.292667pt;}
.y5e{bottom:761.478933pt;}
.y28{bottom:761.632133pt;}
.y6{bottom:772.140000pt;}
.y27{bottom:777.273467pt;}
.y3{bottom:810.543467pt;}
.y25{bottom:811.826000pt;}
.y1{bottom:839.620400pt;}
.y5{bottom:843.897733pt;}
.y4{bottom:855.897733pt;}
.hf{height:24.076000pt;}
.h11{height:25.040000pt;}
.h10{height:29.840000pt;}
.h4{height:31.402667pt;}
.hd{height:33.818667pt;}
.h8{height:33.960533pt;}
.hc{height:37.040000pt;}
.h9{height:37.797333pt;}
.he{height:39.786667pt;}
.h13{height:41.978667pt;}
.h12{height:43.354667pt;}
.h7{height:44.762667pt;}
.hb{height:46.309333pt;}
.ha{height:46.917333pt;}
.h6{height:47.744000pt;}
.h3{height:49.386667pt;}
.h5{height:61.120000pt;}
.h2{height:88.875000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:94.488133pt;}
.xa{left:113.385867pt;}
.x9{left:117.165333pt;}
.x6{left:122.294400pt;}
.x8{left:178.207333pt;}
.x5{left:241.491200pt;}
.x7{left:253.381867pt;}
.xc{left:283.352267pt;}
.xb{left:298.470533pt;}
.xd{left:344.048800pt;}
.x3{left:395.821333pt;}
.xf{left:421.577600pt;}
.xe{left:465.176000pt;}
.x1{left:467.498000pt;}
.x2{left:525.071600pt;}
}




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