
    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_2ccaa4e4aaa81db0cae95a2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_b41cf6c2a77b84ec6e985ac0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693359;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_3742368912617892ac02d43b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_24715e81d5862aceb280c128.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_5a4397ec1a565c29d04c6ab4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_87bafbdf1f00fa3fc32b6519.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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_4f2fa9ae312ec3aeacfe1d37.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c3fcbb68eca05ad4f20e4948.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_86b3f4cc106a68a4442035eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_67e433253469a7ce5e9ba4bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_b5170754050c0b63d9fcbc03.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a6ebd11717739472e617e2a1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;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_b237f463d5c9599e2a2d97ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_95777c579b3c31e5835dee3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6c1e3ed565ef5e12b09ab4d0.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_39e5b509d5aff84d0762ef22.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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;}
.ls34{letter-spacing:-6.344352px;}
.lse{letter-spacing:-5.974848px;}
.ls2a{letter-spacing:-4.762656px;}
.ls2f{letter-spacing:-4.753728px;}
.ls22{letter-spacing:-3.802176px;}
.ls23{letter-spacing:-3.762432px;}
.ls24{letter-spacing:-2.881440px;}
.ls1d{letter-spacing:-2.214144px;}
.ls21{letter-spacing:-0.558144px;}
.ls33{letter-spacing:-0.459648px;}
.ls31{letter-spacing:-0.417312px;}
.ls30{letter-spacing:-0.399168px;}
.ls2b{letter-spacing:-0.338688px;}
.ls2e{letter-spacing:-0.320544px;}
.ls35{letter-spacing:-0.302400px;}
.lsa{letter-spacing:-0.291456px;}
.ls2c{letter-spacing:-0.260064px;}
.ls32{letter-spacing:-0.241920px;}
.ls9{letter-spacing:-0.238464px;}
.ls8{letter-spacing:-0.198720px;}
.lsc{letter-spacing:-0.177408px;}
.lsd{letter-spacing:-0.171072px;}
.ls1{letter-spacing:-0.158976px;}
.ls2d{letter-spacing:-0.157248px;}
.ls2{letter-spacing:-0.125856px;}
.lsb{letter-spacing:-0.120384px;}
.ls5{letter-spacing:-0.119232px;}
.ls7{letter-spacing:-0.086112px;}
.ls6{letter-spacing:-0.079488px;}
.ls3{letter-spacing:-0.059616px;}
.ls4{letter-spacing:-0.033120px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.098208px;}
.ls29{letter-spacing:0.119952px;}
.ls1f{letter-spacing:0.147312px;}
.lsf{letter-spacing:0.165168px;}
.ls20{letter-spacing:0.178560px;}
.ls1c{letter-spacing:0.267840px;}
.ls1e{letter-spacing:0.272304px;}
.ls18{letter-spacing:0.383904px;}
.ls10{letter-spacing:1.987920px;}
.ls17{letter-spacing:2.168640px;}
.ls25{letter-spacing:2.521152px;}
.ls13{letter-spacing:3.231360px;}
.ls16{letter-spacing:3.780864px;}
.ls27{letter-spacing:4.335840px;}
.ls12{letter-spacing:4.454640px;}
.ls19{letter-spacing:5.050080px;}
.ls28{letter-spacing:5.251680px;}
.ls26{letter-spacing:5.962032px;}
.ls11{letter-spacing:8.756640px;}
.ls15{letter-spacing:9.712080px;}
.ls14{letter-spacing:13.489776px;}
.ls1a{letter-spacing:19.136160px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.480512px;}
.ws7{word-spacing:-16.440768px;}
.ws0{word-spacing:-16.401024px;}
.ws4{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.120000px;}
.ws2{word-spacing:-13.680000px;}
.ws8{word-spacing:-12.797568px;}
.wsa{word-spacing:-0.060480px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:0.199584px;}
.ws3{word-spacing:0.228096px;}
._0{margin-left:-5.940000px;}
._14{margin-left:-4.504320px;}
._1{margin-left:-3.312000px;}
._10{margin-left:-2.225376px;}
._2{margin-left:-1.192320px;}
._3{width:1.059840px;}
._12{width:2.740896px;}
._8{width:3.841920px;}
._4{width:5.630400px;}
._11{width:6.687360px;}
._d{width:8.478720px;}
._13{width:9.724896px;}
._c{width:10.863360px;}
._16{width:13.248000px;}
._15{width:14.639040px;}
._5{width:18.083520px;}
._e{width:19.938240px;}
._a{width:21.263040px;}
._7{width:24.243840px;}
._6{width:31.331520px;}
._9{width:35.040960px;}
._f{width:38.021760px;}
._b{width:61.801920px;}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(69,119,134);}
.fc4{color:rgb(116,116,116);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:44.640000px;}
.fs7{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:9.218700px;}
.y32{bottom:9.518700px;}
.y26{bottom:19.658700px;}
.y62{bottom:28.598700px;}
.y23{bottom:32.978700px;}
.y25{bottom:35.858700px;}
.y31{bottom:41.198700px;}
.y61{bottom:47.678700px;}
.y30{bottom:56.318700px;}
.y2{bottom:56.678700px;}
.y22{bottom:59.978700px;}
.y2f{bottom:69.278700px;}
.y1{bottom:75.758700px;}
.y60{bottom:78.998700px;}
.y2e{bottom:81.878700px;}
.y21{bottom:86.978700px;}
.y2d{bottom:94.838700px;}
.y20{bottom:113.978700px;}
.y5f{bottom:114.638700px;}
.y5e{bottom:135.518700px;}
.y1f{bottom:140.978700px;}
.y8f{bottom:145.598700px;}
.y5d{bottom:156.398700px;}
.y1e{bottom:167.978700px;}
.y2c{bottom:170.798700px;}
.y8e{bottom:174.758700px;}
.y1d{bottom:194.978700px;}
.y8d{bottom:195.278700px;}
.y2b{bottom:198.878700px;}
.y5c{bottom:207.878700px;}
.y1c{bottom:221.978700px;}
.y2a{bottom:225.878700px;}
.y5b{bottom:229.118700px;}
.y8c{bottom:236.318700px;}
.y1b{bottom:248.978700px;}
.y5a{bottom:250.358700px;}
.y8b{bottom:253.958700px;}
.y29{bottom:261.158700px;}
.y59{bottom:271.238700px;}
.y8a{bottom:272.678700px;}
.y1a{bottom:275.978700px;}
.y28{bottom:277.718700px;}
.y89{bottom:291.038700px;}
.y58{bottom:292.118700px;}
.y19{bottom:302.978700px;}
.y88{bottom:309.398700px;}
.y57{bottom:313.358700px;}
.y27{bottom:318.398700px;}
.y87{bottom:328.118700px;}
.y18{bottom:329.978700px;}
.y12{bottom:331.500000px;}
.y56{bottom:334.238700px;}
.y86{bottom:346.838700px;}
.y17{bottom:356.978700px;}
.y85{bottom:365.198700px;}
.y55{bottom:374.918700px;}
.y84{bottom:383.558700px;}
.y16{bottom:383.978700px;}
.y54{bottom:396.158700px;}
.y83{bottom:402.278700px;}
.y15{bottom:410.978700px;}
.y53{bottom:417.398700px;}
.y82{bottom:421.358700px;}
.y14{bottom:437.978700px;}
.y52{bottom:438.278700px;}
.y81{bottom:441.518700px;}
.y80{bottom:458.798700px;}
.y51{bottom:459.158700px;}
.y13{bottom:467.498700px;}
.y50{bottom:480.398700px;}
.y7f{bottom:486.878700px;}
.y4f{bottom:501.278700px;}
.y7e{bottom:508.478700px;}
.y4e{bottom:522.158700px;}
.y7d{bottom:530.438700px;}
.y4d{bottom:543.398700px;}
.y7c{bottom:563.918700px;}
.y4c{bottom:584.078700px;}
.y7b{bottom:585.158700px;}
.y4b{bottom:605.318700px;}
.y7a{bottom:606.038700px;}
.y4a{bottom:626.198700px;}
.y79{bottom:629.078700px;}
.y78{bottom:647.078700px;}
.y49{bottom:647.438700px;}
.y48{bottom:668.318700px;}
.y77{bottom:678.398700px;}
.y47{bottom:689.198700px;}
.y76{bottom:699.998700px;}
.y46{bottom:710.438700px;}
.y75{bottom:720.878700px;}
.y45{bottom:731.318700px;}
.y74{bottom:743.918700px;}
.y44{bottom:752.198700px;}
.y43{bottom:773.438700px;}
.y73{bottom:785.318700px;}
.y42{bottom:794.318700px;}
.y11{bottom:828.158700px;}
.y72{bottom:833.558700px;}
.y41{bottom:834.998700px;}
.y10{bottom:851.198700px;}
.y71{bottom:855.158700px;}
.y40{bottom:856.238700px;}
.yf{bottom:868.118700px;}
.y70{bottom:876.038700px;}
.y3f{bottom:877.478700px;}
.y6f{bottom:896.918700px;}
.y3e{bottom:898.358700px;}
.ye{bottom:901.238700px;}
.y3d{bottom:919.238700px;}
.yd{bottom:929.318700px;}
.y6e{bottom:937.598700px;}
.yc{bottom:952.718700px;}
.y6d{bottom:959.198700px;}
.y3c{bottom:959.918700px;}
.yb{bottom:976.118700px;}
.y6c{bottom:980.078700px;}
.y3b{bottom:981.518700px;}
.ya{bottom:999.518700px;}
.y6b{bottom:1000.958700px;}
.y3a{bottom:1002.398700px;}
.y6a{bottom:1022.198700px;}
.y9{bottom:1022.558700px;}
.y39{bottom:1023.278700px;}
.y69{bottom:1043.078700px;}
.y38{bottom:1044.518700px;}
.y8{bottom:1045.598700px;}
.y68{bottom:1063.958700px;}
.y37{bottom:1065.398700px;}
.y7{bottom:1069.358700px;}
.y67{bottom:1085.198700px;}
.y36{bottom:1086.278700px;}
.y6{bottom:1102.838700px;}
.y35{bottom:1107.518700px;}
.y66{bottom:1125.878700px;}
.y34{bottom:1128.398700px;}
.y5{bottom:1129.478700px;}
.y65{bottom:1147.118700px;}
.y33{bottom:1149.278700px;}
.y4{bottom:1157.918700px;}
.y64{bottom:1167.998700px;}
.y63{bottom:1189.238700px;}
.y3{bottom:1191.038700px;}
.h9{height:31.016953px;}
.h7{height:36.978750px;}
.ha{height:41.993438px;}
.h8{height:43.993125px;}
.h4{height:44.893125px;}
.h2{height:46.025156px;}
.h5{height:47.988281px;}
.h3{height:73.195313px;}
.h6{height:489.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:346.500000px;}
.w3{width:445.500000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.466054px;}
.x5{left:9.515994px;}
.x9{left:30.335970px;}
.x4{left:54.830922px;}
.x1{left:56.030982px;}
.xb{left:108.830922px;}
.x7{left:399.000000px;}
.x8{left:436.775970px;}
.xa{left:840.425730px;}
.x3{left:841.475850px;}
.x2{left:844.955970px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls34{letter-spacing:-5.639424pt;}
.lse{letter-spacing:-5.310976pt;}
.ls2a{letter-spacing:-4.233472pt;}
.ls2f{letter-spacing:-4.225536pt;}
.ls22{letter-spacing:-3.379712pt;}
.ls23{letter-spacing:-3.344384pt;}
.ls24{letter-spacing:-2.561280pt;}
.ls1d{letter-spacing:-1.968128pt;}
.ls21{letter-spacing:-0.496128pt;}
.ls33{letter-spacing:-0.408576pt;}
.ls31{letter-spacing:-0.370944pt;}
.ls30{letter-spacing:-0.354816pt;}
.ls2b{letter-spacing:-0.301056pt;}
.ls2e{letter-spacing:-0.284928pt;}
.ls35{letter-spacing:-0.268800pt;}
.lsa{letter-spacing:-0.259072pt;}
.ls2c{letter-spacing:-0.231168pt;}
.ls32{letter-spacing:-0.215040pt;}
.ls9{letter-spacing:-0.211968pt;}
.ls8{letter-spacing:-0.176640pt;}
.lsc{letter-spacing:-0.157696pt;}
.lsd{letter-spacing:-0.152064pt;}
.ls1{letter-spacing:-0.141312pt;}
.ls2d{letter-spacing:-0.139776pt;}
.ls2{letter-spacing:-0.111872pt;}
.lsb{letter-spacing:-0.107008pt;}
.ls5{letter-spacing:-0.105984pt;}
.ls7{letter-spacing:-0.076544pt;}
.ls6{letter-spacing:-0.070656pt;}
.ls3{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:-0.029440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.087296pt;}
.ls29{letter-spacing:0.106624pt;}
.ls1f{letter-spacing:0.130944pt;}
.lsf{letter-spacing:0.146816pt;}
.ls20{letter-spacing:0.158720pt;}
.ls1c{letter-spacing:0.238080pt;}
.ls1e{letter-spacing:0.242048pt;}
.ls18{letter-spacing:0.341248pt;}
.ls10{letter-spacing:1.767040pt;}
.ls17{letter-spacing:1.927680pt;}
.ls25{letter-spacing:2.241024pt;}
.ls13{letter-spacing:2.872320pt;}
.ls16{letter-spacing:3.360768pt;}
.ls27{letter-spacing:3.854080pt;}
.ls12{letter-spacing:3.959680pt;}
.ls19{letter-spacing:4.488960pt;}
.ls28{letter-spacing:4.668160pt;}
.ls26{letter-spacing:5.299584pt;}
.ls11{letter-spacing:7.783680pt;}
.ls15{letter-spacing:8.632960pt;}
.ls14{letter-spacing:11.990912pt;}
.ls1a{letter-spacing:17.009920pt;}
.ws1{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.649344pt;}
.ws7{word-spacing:-14.614016pt;}
.ws0{word-spacing:-14.578688pt;}
.ws4{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.375616pt;}
.wsa{word-spacing:-0.053760pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:0.177408pt;}
.ws3{word-spacing:0.202752pt;}
._0{margin-left:-5.280000pt;}
._14{margin-left:-4.003840pt;}
._1{margin-left:-2.944000pt;}
._10{margin-left:-1.978112pt;}
._2{margin-left:-1.059840pt;}
._3{width:0.942080pt;}
._12{width:2.436352pt;}
._8{width:3.415040pt;}
._4{width:5.004800pt;}
._11{width:5.944320pt;}
._d{width:7.536640pt;}
._13{width:8.644352pt;}
._c{width:9.656320pt;}
._16{width:11.776000pt;}
._15{width:13.012480pt;}
._5{width:16.074240pt;}
._e{width:17.722880pt;}
._a{width:18.900480pt;}
._7{width:21.550080pt;}
._6{width:27.850240pt;}
._9{width:31.147520pt;}
._f{width:33.797120pt;}
._b{width:54.935040pt;}
.fs5{font-size:39.680000pt;}
.fs7{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:8.194400pt;}
.y32{bottom:8.461067pt;}
.y26{bottom:17.474400pt;}
.y62{bottom:25.421067pt;}
.y23{bottom:29.314400pt;}
.y25{bottom:31.874400pt;}
.y31{bottom:36.621067pt;}
.y61{bottom:42.381067pt;}
.y30{bottom:50.061067pt;}
.y2{bottom:50.381067pt;}
.y22{bottom:53.314400pt;}
.y2f{bottom:61.581067pt;}
.y1{bottom:67.341067pt;}
.y60{bottom:70.221067pt;}
.y2e{bottom:72.781067pt;}
.y21{bottom:77.314400pt;}
.y2d{bottom:84.301067pt;}
.y20{bottom:101.314400pt;}
.y5f{bottom:101.901067pt;}
.y5e{bottom:120.461067pt;}
.y1f{bottom:125.314400pt;}
.y8f{bottom:129.421067pt;}
.y5d{bottom:139.021067pt;}
.y1e{bottom:149.314400pt;}
.y2c{bottom:151.821067pt;}
.y8e{bottom:155.341067pt;}
.y1d{bottom:173.314400pt;}
.y8d{bottom:173.581067pt;}
.y2b{bottom:176.781067pt;}
.y5c{bottom:184.781067pt;}
.y1c{bottom:197.314400pt;}
.y2a{bottom:200.781067pt;}
.y5b{bottom:203.661067pt;}
.y8c{bottom:210.061067pt;}
.y1b{bottom:221.314400pt;}
.y5a{bottom:222.541067pt;}
.y8b{bottom:225.741067pt;}
.y29{bottom:232.141067pt;}
.y59{bottom:241.101067pt;}
.y8a{bottom:242.381067pt;}
.y1a{bottom:245.314400pt;}
.y28{bottom:246.861067pt;}
.y89{bottom:258.701067pt;}
.y58{bottom:259.661067pt;}
.y19{bottom:269.314400pt;}
.y88{bottom:275.021067pt;}
.y57{bottom:278.541067pt;}
.y27{bottom:283.021067pt;}
.y87{bottom:291.661067pt;}
.y18{bottom:293.314400pt;}
.y12{bottom:294.666667pt;}
.y56{bottom:297.101067pt;}
.y86{bottom:308.301067pt;}
.y17{bottom:317.314400pt;}
.y85{bottom:324.621067pt;}
.y55{bottom:333.261067pt;}
.y84{bottom:340.941067pt;}
.y16{bottom:341.314400pt;}
.y54{bottom:352.141067pt;}
.y83{bottom:357.581067pt;}
.y15{bottom:365.314400pt;}
.y53{bottom:371.021067pt;}
.y82{bottom:374.541067pt;}
.y14{bottom:389.314400pt;}
.y52{bottom:389.581067pt;}
.y81{bottom:392.461067pt;}
.y80{bottom:407.821067pt;}
.y51{bottom:408.141067pt;}
.y13{bottom:415.554400pt;}
.y50{bottom:427.021067pt;}
.y7f{bottom:432.781067pt;}
.y4f{bottom:445.581067pt;}
.y7e{bottom:451.981067pt;}
.y4e{bottom:464.141067pt;}
.y7d{bottom:471.501067pt;}
.y4d{bottom:483.021067pt;}
.y7c{bottom:501.261067pt;}
.y4c{bottom:519.181067pt;}
.y7b{bottom:520.141067pt;}
.y4b{bottom:538.061067pt;}
.y7a{bottom:538.701067pt;}
.y4a{bottom:556.621067pt;}
.y79{bottom:559.181067pt;}
.y78{bottom:575.181067pt;}
.y49{bottom:575.501067pt;}
.y48{bottom:594.061067pt;}
.y77{bottom:603.021067pt;}
.y47{bottom:612.621067pt;}
.y76{bottom:622.221067pt;}
.y46{bottom:631.501067pt;}
.y75{bottom:640.781067pt;}
.y45{bottom:650.061067pt;}
.y74{bottom:661.261067pt;}
.y44{bottom:668.621067pt;}
.y43{bottom:687.501067pt;}
.y73{bottom:698.061067pt;}
.y42{bottom:706.061067pt;}
.y11{bottom:736.141067pt;}
.y72{bottom:740.941067pt;}
.y41{bottom:742.221067pt;}
.y10{bottom:756.621067pt;}
.y71{bottom:760.141067pt;}
.y40{bottom:761.101067pt;}
.yf{bottom:771.661067pt;}
.y70{bottom:778.701067pt;}
.y3f{bottom:779.981067pt;}
.y6f{bottom:797.261067pt;}
.y3e{bottom:798.541067pt;}
.ye{bottom:801.101067pt;}
.y3d{bottom:817.101067pt;}
.yd{bottom:826.061067pt;}
.y6e{bottom:833.421067pt;}
.yc{bottom:846.861067pt;}
.y6d{bottom:852.621067pt;}
.y3c{bottom:853.261067pt;}
.yb{bottom:867.661067pt;}
.y6c{bottom:871.181067pt;}
.y3b{bottom:872.461067pt;}
.ya{bottom:888.461067pt;}
.y6b{bottom:889.741067pt;}
.y3a{bottom:891.021067pt;}
.y6a{bottom:908.621067pt;}
.y9{bottom:908.941067pt;}
.y39{bottom:909.581067pt;}
.y69{bottom:927.181067pt;}
.y38{bottom:928.461067pt;}
.y8{bottom:929.421067pt;}
.y68{bottom:945.741067pt;}
.y37{bottom:947.021067pt;}
.y7{bottom:950.541067pt;}
.y67{bottom:964.621067pt;}
.y36{bottom:965.581067pt;}
.y6{bottom:980.301067pt;}
.y35{bottom:984.461067pt;}
.y66{bottom:1000.781067pt;}
.y34{bottom:1003.021067pt;}
.y5{bottom:1003.981067pt;}
.y65{bottom:1019.661067pt;}
.y33{bottom:1021.581067pt;}
.y4{bottom:1029.261067pt;}
.y64{bottom:1038.221067pt;}
.y63{bottom:1057.101067pt;}
.y3{bottom:1058.701067pt;}
.h9{height:27.570625pt;}
.h7{height:32.870000pt;}
.ha{height:37.327500pt;}
.h8{height:39.105000pt;}
.h4{height:39.905000pt;}
.h2{height:40.911250pt;}
.h5{height:42.656250pt;}
.h3{height:65.062500pt;}
.h6{height:434.666667pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:308.000000pt;}
.w3{width:396.000000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.525381pt;}
.x5{left:8.458661pt;}
.x9{left:26.965307pt;}
.x4{left:48.738597pt;}
.x1{left:49.805317pt;}
.xb{left:96.738597pt;}
.x7{left:354.666667pt;}
.x8{left:388.245307pt;}
.xa{left:747.045093pt;}
.x3{left:747.978533pt;}
.x2{left:751.071973pt;}
}




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