
    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_48d40d6f0aca962cad135845.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.765137;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_9746dfd05e6ba44a2a385bc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_915bdb101a5679400fb80280.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_cc22e3386dfecd7626f6964d.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_1eb897b15df9e00221a6acb5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f08434c8821c860d00797866.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952148;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_8bbf7d1243328cf89e8e6d6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_33453c5adf059432b79f0c87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_50f9267c723156a4beea66b4.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_20e5f3485d134aa6fef0bda9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4d98def6521efa3e3650baca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.024902;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_f0b7fcff705679416d68671e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_8ae06b0151b5815853c722a6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952148;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_48ea812e78dab21fc8e22a07.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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_62f5c604ec07ee80251dcba8.woff2')format("woff");}.fff{font-family:fff;line-height:0.966309;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;}
.m5{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,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);}
.m2{transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261892,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.640000px;}
.ls2d{letter-spacing:-1.034208px;}
.ls2e{letter-spacing:-0.898128px;}
.ls9{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.015552px;}
.ls18{letter-spacing:0.036000px;}
.ls24{letter-spacing:0.036144px;}
.ls1e{letter-spacing:0.036288px;}
.ls20{letter-spacing:0.077760px;}
.ls1d{letter-spacing:0.085536px;}
.ls17{letter-spacing:0.093312px;}
.ls14{letter-spacing:0.101088px;}
.ls25{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.108864px;}
.ls22{letter-spacing:0.109008px;}
.ls26{letter-spacing:0.109152px;}
.ls23{letter-spacing:0.109440px;}
.ls13{letter-spacing:0.116640px;}
.ls2a{letter-spacing:0.123120px;}
.ls15{letter-spacing:0.124416px;}
.ls1f{letter-spacing:0.132192px;}
.ls12{letter-spacing:0.139968px;}
.ls2b{letter-spacing:0.147744px;}
.ls1a{letter-spacing:0.155520px;}
.ls29{letter-spacing:0.171072px;}
.ls28{letter-spacing:0.186624px;}
.ls1b{letter-spacing:0.328032px;}
.ls27{letter-spacing:0.424512px;}
.ls1c{letter-spacing:0.434160px;}
.ls21{letter-spacing:0.472752px;}
.ls2c{letter-spacing:0.562464px;}
.ls2{letter-spacing:0.773280px;}
.lsc{letter-spacing:1.439424px;}
.ls4{letter-spacing:1.518048px;}
.lsb{letter-spacing:3.229632px;}
.ls3{letter-spacing:3.314304px;}
.ls0{letter-spacing:3.465504px;}
.ls1{letter-spacing:3.473280px;}
.lsa{letter-spacing:4.965408px;}
.ls7{letter-spacing:5.971073px;}
.ls5{letter-spacing:5.971082px;}
.ls8{letter-spacing:5.971093px;}
.ls11{letter-spacing:5.985883px;}
.ls6{letter-spacing:6.070589px;}
.ls10{letter-spacing:7.369412px;}
.lsf{letter-spacing:11.563200px;}
.lse{letter-spacing:11.721600px;}
.lsd{letter-spacing:11.793600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-29.513232px;}
.ws9{word-spacing:-29.474640px;}
.wse{word-spacing:-29.464992px;}
.ws8{word-spacing:-29.368512px;}
.ws13{word-spacing:-27.497232px;}
.ws12{word-spacing:-24.494400px;}
.ws11{word-spacing:-24.478848px;}
.ws10{word-spacing:-24.463296px;}
.wsa{word-spacing:-24.455520px;}
.wsc{word-spacing:-24.447744px;}
.wsf{word-spacing:-24.439968px;}
.wsd{word-spacing:-24.432192px;}
.ws0{word-spacing:-24.077088px;}
.ws1{word-spacing:-22.577184px;}
.ws2{word-spacing:-22.425984px;}
.ws4{word-spacing:-20.629728px;}
.ws6{word-spacing:-6.141177px;}
.ws5{word-spacing:-6.056471px;}
.ws3{word-spacing:-0.060480px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-13.848192px;}
._0{margin-left:-1.028160px;}
._7{width:1.088640px;}
._6{width:6.111752px;}
._1{width:25.558661px;}
._4{width:71.788320px;}
._5{width:196.888320px;}
._3{width:1428.988320px;}
.fc4{color:rgb(235,231,231);}
.fc3{color:transparent;}
.fc2{color:rgb(0,129,129);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:70.588238px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:90.720000px;}
.fs8{font-size:96.480000px;}
.fs4{font-size:105.882350px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:22.860000px;}
.y43{bottom:23.100000px;}
.y6a{bottom:23.400000px;}
.y41{bottom:23.760000px;}
.y8{bottom:56.640000px;}
.y7{bottom:79.680000px;}
.ybd{bottom:89.040000px;}
.y6{bottom:102.720000px;}
.y5{bottom:125.760000px;}
.y4{bottom:148.800000px;}
.ybc{bottom:171.480000px;}
.y3f{bottom:175.800000px;}
.y9e{bottom:180.120000px;}
.y68{bottom:190.920000px;}
.ybb{bottom:198.120000px;}
.y3e{bottom:199.200000px;}
.y9d{bottom:203.520000px;}
.y67{bottom:214.320000px;}
.y3d{bottom:222.960000px;}
.yba{bottom:225.120000px;}
.y9c{bottom:227.280000px;}
.y66{bottom:237.720000px;}
.y3c{bottom:246.360000px;}
.y7c{bottom:247.440000px;}
.y9b{bottom:250.680000px;}
.yb9{bottom:252.480000px;}
.y65{bottom:261.480000px;}
.y3b{bottom:269.760000px;}
.y7b{bottom:271.200000px;}
.y9a{bottom:274.440000px;}
.y64{bottom:284.880000px;}
.y3a{bottom:293.520000px;}
.yb8{bottom:294.240000px;}
.y7a{bottom:294.600000px;}
.y99{bottom:297.840000px;}
.y63{bottom:308.280000px;}
.ya1{bottom:316.500000px;}
.y39{bottom:316.920000px;}
.y79{bottom:318.000000px;}
.y62{bottom:332.040000px;}
.yb7{bottom:336.000000px;}
.y1b{bottom:336.720000px;}
.y38{bottom:340.680000px;}
.y78{bottom:341.760000px;}
.y61{bottom:355.440000px;}
.y37{bottom:364.080000px;}
.y1a{bottom:364.800000px;}
.y77{bottom:365.160000px;}
.yb6{bottom:377.760000px;}
.y60{bottom:379.200000px;}
.y36{bottom:387.480000px;}
.y76{bottom:388.560000px;}
.y19{bottom:392.520000px;}
.y98{bottom:396.840000px;}
.y5f{bottom:402.600000px;}
.y35{bottom:411.240000px;}
.y75{bottom:412.320000px;}
.yb5{bottom:419.880000px;}
.y97{bottom:420.240000px;}
.y5e{bottom:426.000000px;}
.y18{bottom:427.072800px;}
.y34{bottom:434.640000px;}
.y74{bottom:435.720000px;}
.y96{bottom:444.000000px;}
.y5d{bottom:449.760000px;}
.y33{bottom:458.040000px;}
.y73{bottom:459.480000px;}
.yb4{bottom:461.640000px;}
.y95{bottom:467.400000px;}
.y17{bottom:468.832800px;}
.y5c{bottom:473.160000px;}
.y32{bottom:481.800000px;}
.y72{bottom:482.880000px;}
.y94{bottom:490.800000px;}
.y5b{bottom:496.560000px;}
.yb3{bottom:503.400000px;}
.y31{bottom:505.200000px;}
.y71{bottom:506.280000px;}
.y16{bottom:510.232800px;}
.y93{bottom:514.560000px;}
.y5a{bottom:520.320000px;}
.y7d{bottom:525.000000px;}
.y70{bottom:525.720000px;}
.y30{bottom:528.960000px;}
.y92{bottom:537.960000px;}
.y59{bottom:543.720000px;}
.yb2{bottom:545.520000px;}
.y14{bottom:547.584600px;}
.y15{bottom:547.672800px;}
.y2f{bottom:552.360000px;}
.y91{bottom:561.720000px;}
.y58{bottom:567.480000px;}
.y2e{bottom:575.760000px;}
.y13{bottom:579.352944px;}
.y90{bottom:585.120000px;}
.yb1{bottom:587.280000px;}
.y6f{bottom:588.360000px;}
.y57{bottom:590.880000px;}
.y2d{bottom:599.520000px;}
.y8f{bottom:608.520000px;}
.y6e{bottom:612.120000px;}
.y56{bottom:614.280000px;}
.y12{bottom:620.752944px;}
.y2c{bottom:622.920000px;}
.yb0{bottom:629.040000px;}
.y8e{bottom:632.280000px;}
.y69{bottom:633.000000px;}
.y6d{bottom:635.520000px;}
.y2b{bottom:646.320000px;}
.y8d{bottom:655.680000px;}
.y6c{bottom:658.920000px;}
.y11{bottom:660.720000px;}
.y2a{bottom:670.080000px;}
.yaf{bottom:670.800000px;}
.y8c{bottom:679.080000px;}
.y6b{bottom:682.680000px;}
.y29{bottom:693.480000px;}
.y8b{bottom:702.840000px;}
.y10{bottom:705.360000px;}
.y55{bottom:706.080000px;}
.y42{bottom:712.500000px;}
.yae{bottom:712.920000px;}
.y8a{bottom:726.240000px;}
.y54{bottom:729.840000px;}
.yf{bottom:750.000000px;}
.y53{bottom:753.240000px;}
.yad{bottom:754.680000px;}
.y89{bottom:773.400000px;}
.y28{bottom:775.920000px;}
.y52{bottom:776.640000px;}
.ye{bottom:792.120000px;}
.yac{bottom:796.440000px;}
.y88{bottom:796.800000px;}
.y27{bottom:799.680000px;}
.y51{bottom:800.400000px;}
.y87{bottom:820.560000px;}
.y26{bottom:823.080000px;}
.y50{bottom:823.800000px;}
.yab{bottom:838.200000px;}
.y86{bottom:843.960000px;}
.y25{bottom:846.840000px;}
.y4f{bottom:847.200000px;}
.y85{bottom:867.720000px;}
.y24{bottom:870.240000px;}
.y4e{bottom:870.960000px;}
.yd{bottom:875.280000px;}
.yaa{bottom:880.320000px;}
.y84{bottom:891.120000px;}
.y23{bottom:893.640000px;}
.y4d{bottom:894.360000px;}
.y83{bottom:914.520000px;}
.y22{bottom:917.400000px;}
.y4c{bottom:918.120000px;}
.yc{bottom:920.280000px;}
.ya9{bottom:922.080000px;}
.y82{bottom:938.280000px;}
.y21{bottom:940.800000px;}
.y4b{bottom:941.520000px;}
.y81{bottom:961.680000px;}
.ya8{bottom:963.840000px;}
.y20{bottom:964.200000px;}
.yb{bottom:964.920000px;}
.y80{bottom:985.080000px;}
.y1f{bottom:987.960000px;}
.y4a{bottom:988.680000px;}
.ya7{bottom:991.200000px;}
.y9{bottom:1004.160000px;}
.ya{bottom:1004.880000px;}
.y7f{bottom:1008.840000px;}
.y1e{bottom:1011.360000px;}
.y49{bottom:1012.080000px;}
.ya6{bottom:1018.200000px;}
.y7e{bottom:1032.240000px;}
.y1d{bottom:1035.120000px;}
.y48{bottom:1035.840000px;}
.ya5{bottom:1045.560000px;}
.y9f{bottom:1051.500000px;}
.y47{bottom:1059.240000px;}
.y1c{bottom:1063.200000px;}
.ya4{bottom:1072.560000px;}
.y46{bottom:1082.640000px;}
.y40{bottom:1083.000000px;}
.ya3{bottom:1099.920000px;}
.y45{bottom:1106.400000px;}
.ya2{bottom:1126.920000px;}
.y44{bottom:1129.800000px;}
.y3{bottom:1152.480000px;}
.y2{bottom:1172.640000px;}
.y1{bottom:1192.440000px;}
.h5{height:40.310156px;}
.h3{height:46.629844px;}
.h2{height:49.680000px;}
.hb{height:51.827344px;}
.h9{height:54.423256px;}
.hd{height:58.320000px;}
.he{height:60.000000px;}
.ha{height:60.465234px;}
.hc{height:63.635625px;}
.h10{height:68.925938px;}
.hf{height:72.077344px;}
.h8{height:81.634879px;}
.h4{height:91.269844px;}
.h6{height:103.654688px;}
.h7{height:107.578125px;}
.h1{height:1236.000000px;}
.h0{height:1263.000000px;}
.w2{width:298.500000px;}
.w3{width:300.000000px;}
.w4{width:306.000000px;}
.w1{width:865.500000px;}
.w0{width:892.500000px;}
.x2{left:-27.000000px;}
.x0{left:0.000000px;}
.xc{left:3.149801px;}
.x1{left:27.000000px;}
.x3{left:47.250000px;}
.x4{left:53.174927px;}
.x13{left:69.000000px;}
.x7{left:74.474856px;}
.xe{left:76.500000px;}
.x6{left:111.825072px;}
.x10{left:116.993784px;}
.xd{left:129.284544px;}
.x14{left:154.177752px;}
.xf{left:160.617924px;}
.x12{left:244.708392px;}
.x17{left:275.259888px;}
.x16{left:279.839340px;}
.x15{left:303.498405px;}
.x9{left:361.510969px;}
.x11{left:372.914820px;}
.x5{left:404.025120px;}
.xb{left:420.450120px;}
.x8{left:495.460836px;}
.xa{left:807.975061px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.680000pt;}
.ls2d{letter-spacing:-0.919296pt;}
.ls2e{letter-spacing:-0.798336pt;}
.ls9{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.013824pt;}
.ls18{letter-spacing:0.032000pt;}
.ls24{letter-spacing:0.032128pt;}
.ls1e{letter-spacing:0.032256pt;}
.ls20{letter-spacing:0.069120pt;}
.ls1d{letter-spacing:0.076032pt;}
.ls17{letter-spacing:0.082944pt;}
.ls14{letter-spacing:0.089856pt;}
.ls25{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.096768pt;}
.ls22{letter-spacing:0.096896pt;}
.ls26{letter-spacing:0.097024pt;}
.ls23{letter-spacing:0.097280pt;}
.ls13{letter-spacing:0.103680pt;}
.ls2a{letter-spacing:0.109440pt;}
.ls15{letter-spacing:0.110592pt;}
.ls1f{letter-spacing:0.117504pt;}
.ls12{letter-spacing:0.124416pt;}
.ls2b{letter-spacing:0.131328pt;}
.ls1a{letter-spacing:0.138240pt;}
.ls29{letter-spacing:0.152064pt;}
.ls28{letter-spacing:0.165888pt;}
.ls1b{letter-spacing:0.291584pt;}
.ls27{letter-spacing:0.377344pt;}
.ls1c{letter-spacing:0.385920pt;}
.ls21{letter-spacing:0.420224pt;}
.ls2c{letter-spacing:0.499968pt;}
.ls2{letter-spacing:0.687360pt;}
.lsc{letter-spacing:1.279488pt;}
.ls4{letter-spacing:1.349376pt;}
.lsb{letter-spacing:2.870784pt;}
.ls3{letter-spacing:2.946048pt;}
.ls0{letter-spacing:3.080448pt;}
.ls1{letter-spacing:3.087360pt;}
.lsa{letter-spacing:4.413696pt;}
.ls7{letter-spacing:5.307620pt;}
.ls5{letter-spacing:5.307628pt;}
.ls8{letter-spacing:5.307638pt;}
.ls11{letter-spacing:5.320785pt;}
.ls6{letter-spacing:5.396079pt;}
.ls10{letter-spacing:6.550588pt;}
.lsf{letter-spacing:10.278400pt;}
.lse{letter-spacing:10.419200pt;}
.lsd{letter-spacing:10.483200pt;}
.wsb{word-spacing:-26.233984pt;}
.ws9{word-spacing:-26.199680pt;}
.wse{word-spacing:-26.191104pt;}
.ws8{word-spacing:-26.105344pt;}
.ws13{word-spacing:-24.441984pt;}
.ws12{word-spacing:-21.772800pt;}
.ws11{word-spacing:-21.758976pt;}
.ws10{word-spacing:-21.745152pt;}
.wsa{word-spacing:-21.738240pt;}
.wsc{word-spacing:-21.731328pt;}
.wsf{word-spacing:-21.724416pt;}
.wsd{word-spacing:-21.717504pt;}
.ws0{word-spacing:-21.401856pt;}
.ws1{word-spacing:-20.068608pt;}
.ws2{word-spacing:-19.934208pt;}
.ws4{word-spacing:-18.337536pt;}
.ws6{word-spacing:-5.458824pt;}
.ws5{word-spacing:-5.383530pt;}
.ws3{word-spacing:-0.053760pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-12.309504pt;}
._0{margin-left:-0.913920pt;}
._7{width:0.967680pt;}
._6{width:5.432669pt;}
._1{width:22.718810pt;}
._4{width:63.811840pt;}
._5{width:175.011840pt;}
._3{width:1270.211840pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:62.745101pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:80.640000pt;}
.fs8{font-size:85.760000pt;}
.fs4{font-size:94.117645pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:20.320000pt;}
.y43{bottom:20.533333pt;}
.y6a{bottom:20.800000pt;}
.y41{bottom:21.120000pt;}
.y8{bottom:50.346667pt;}
.y7{bottom:70.826667pt;}
.ybd{bottom:79.146667pt;}
.y6{bottom:91.306667pt;}
.y5{bottom:111.786667pt;}
.y4{bottom:132.266667pt;}
.ybc{bottom:152.426667pt;}
.y3f{bottom:156.266667pt;}
.y9e{bottom:160.106667pt;}
.y68{bottom:169.706667pt;}
.ybb{bottom:176.106667pt;}
.y3e{bottom:177.066667pt;}
.y9d{bottom:180.906667pt;}
.y67{bottom:190.506667pt;}
.y3d{bottom:198.186667pt;}
.yba{bottom:200.106667pt;}
.y9c{bottom:202.026667pt;}
.y66{bottom:211.306667pt;}
.y3c{bottom:218.986667pt;}
.y7c{bottom:219.946667pt;}
.y9b{bottom:222.826667pt;}
.yb9{bottom:224.426667pt;}
.y65{bottom:232.426667pt;}
.y3b{bottom:239.786667pt;}
.y7b{bottom:241.066667pt;}
.y9a{bottom:243.946667pt;}
.y64{bottom:253.226667pt;}
.y3a{bottom:260.906667pt;}
.yb8{bottom:261.546667pt;}
.y7a{bottom:261.866667pt;}
.y99{bottom:264.746667pt;}
.y63{bottom:274.026667pt;}
.ya1{bottom:281.333333pt;}
.y39{bottom:281.706667pt;}
.y79{bottom:282.666667pt;}
.y62{bottom:295.146667pt;}
.yb7{bottom:298.666667pt;}
.y1b{bottom:299.306667pt;}
.y38{bottom:302.826667pt;}
.y78{bottom:303.786667pt;}
.y61{bottom:315.946667pt;}
.y37{bottom:323.626667pt;}
.y1a{bottom:324.266667pt;}
.y77{bottom:324.586667pt;}
.yb6{bottom:335.786667pt;}
.y60{bottom:337.066667pt;}
.y36{bottom:344.426667pt;}
.y76{bottom:345.386667pt;}
.y19{bottom:348.906667pt;}
.y98{bottom:352.746667pt;}
.y5f{bottom:357.866667pt;}
.y35{bottom:365.546667pt;}
.y75{bottom:366.506667pt;}
.yb5{bottom:373.226667pt;}
.y97{bottom:373.546667pt;}
.y5e{bottom:378.666667pt;}
.y18{bottom:379.620267pt;}
.y34{bottom:386.346667pt;}
.y74{bottom:387.306667pt;}
.y96{bottom:394.666667pt;}
.y5d{bottom:399.786667pt;}
.y33{bottom:407.146667pt;}
.y73{bottom:408.426667pt;}
.yb4{bottom:410.346667pt;}
.y95{bottom:415.466667pt;}
.y17{bottom:416.740267pt;}
.y5c{bottom:420.586667pt;}
.y32{bottom:428.266667pt;}
.y72{bottom:429.226667pt;}
.y94{bottom:436.266667pt;}
.y5b{bottom:441.386667pt;}
.yb3{bottom:447.466667pt;}
.y31{bottom:449.066667pt;}
.y71{bottom:450.026667pt;}
.y16{bottom:453.540267pt;}
.y93{bottom:457.386667pt;}
.y5a{bottom:462.506667pt;}
.y7d{bottom:466.666667pt;}
.y70{bottom:467.306667pt;}
.y30{bottom:470.186667pt;}
.y92{bottom:478.186667pt;}
.y59{bottom:483.306667pt;}
.yb2{bottom:484.906667pt;}
.y14{bottom:486.741867pt;}
.y15{bottom:486.820267pt;}
.y2f{bottom:490.986667pt;}
.y91{bottom:499.306667pt;}
.y58{bottom:504.426667pt;}
.y2e{bottom:511.786667pt;}
.y13{bottom:514.980395pt;}
.y90{bottom:520.106667pt;}
.yb1{bottom:522.026667pt;}
.y6f{bottom:522.986667pt;}
.y57{bottom:525.226667pt;}
.y2d{bottom:532.906667pt;}
.y8f{bottom:540.906667pt;}
.y6e{bottom:544.106667pt;}
.y56{bottom:546.026667pt;}
.y12{bottom:551.780395pt;}
.y2c{bottom:553.706667pt;}
.yb0{bottom:559.146667pt;}
.y8e{bottom:562.026667pt;}
.y69{bottom:562.666667pt;}
.y6d{bottom:564.906667pt;}
.y2b{bottom:574.506667pt;}
.y8d{bottom:582.826667pt;}
.y6c{bottom:585.706667pt;}
.y11{bottom:587.306667pt;}
.y2a{bottom:595.626667pt;}
.yaf{bottom:596.266667pt;}
.y8c{bottom:603.626667pt;}
.y6b{bottom:606.826667pt;}
.y29{bottom:616.426667pt;}
.y8b{bottom:624.746667pt;}
.y10{bottom:626.986667pt;}
.y55{bottom:627.626667pt;}
.y42{bottom:633.333333pt;}
.yae{bottom:633.706667pt;}
.y8a{bottom:645.546667pt;}
.y54{bottom:648.746667pt;}
.yf{bottom:666.666667pt;}
.y53{bottom:669.546667pt;}
.yad{bottom:670.826667pt;}
.y89{bottom:687.466667pt;}
.y28{bottom:689.706667pt;}
.y52{bottom:690.346667pt;}
.ye{bottom:704.106667pt;}
.yac{bottom:707.946667pt;}
.y88{bottom:708.266667pt;}
.y27{bottom:710.826667pt;}
.y51{bottom:711.466667pt;}
.y87{bottom:729.386667pt;}
.y26{bottom:731.626667pt;}
.y50{bottom:732.266667pt;}
.yab{bottom:745.066667pt;}
.y86{bottom:750.186667pt;}
.y25{bottom:752.746667pt;}
.y4f{bottom:753.066667pt;}
.y85{bottom:771.306667pt;}
.y24{bottom:773.546667pt;}
.y4e{bottom:774.186667pt;}
.yd{bottom:778.026667pt;}
.yaa{bottom:782.506667pt;}
.y84{bottom:792.106667pt;}
.y23{bottom:794.346667pt;}
.y4d{bottom:794.986667pt;}
.y83{bottom:812.906667pt;}
.y22{bottom:815.466667pt;}
.y4c{bottom:816.106667pt;}
.yc{bottom:818.026667pt;}
.ya9{bottom:819.626667pt;}
.y82{bottom:834.026667pt;}
.y21{bottom:836.266667pt;}
.y4b{bottom:836.906667pt;}
.y81{bottom:854.826667pt;}
.ya8{bottom:856.746667pt;}
.y20{bottom:857.066667pt;}
.yb{bottom:857.706667pt;}
.y80{bottom:875.626667pt;}
.y1f{bottom:878.186667pt;}
.y4a{bottom:878.826667pt;}
.ya7{bottom:881.066667pt;}
.y9{bottom:892.586667pt;}
.ya{bottom:893.226667pt;}
.y7f{bottom:896.746667pt;}
.y1e{bottom:898.986667pt;}
.y49{bottom:899.626667pt;}
.ya6{bottom:905.066667pt;}
.y7e{bottom:917.546667pt;}
.y1d{bottom:920.106667pt;}
.y48{bottom:920.746667pt;}
.ya5{bottom:929.386667pt;}
.y9f{bottom:934.666667pt;}
.y47{bottom:941.546667pt;}
.y1c{bottom:945.066667pt;}
.ya4{bottom:953.386667pt;}
.y46{bottom:962.346667pt;}
.y40{bottom:962.666667pt;}
.ya3{bottom:977.706667pt;}
.y45{bottom:983.466667pt;}
.ya2{bottom:1001.706667pt;}
.y44{bottom:1004.266667pt;}
.y3{bottom:1024.426667pt;}
.y2{bottom:1042.346667pt;}
.y1{bottom:1059.946667pt;}
.h5{height:35.831250pt;}
.h3{height:41.448750pt;}
.h2{height:44.160000pt;}
.hb{height:46.068750pt;}
.h9{height:48.376228pt;}
.hd{height:51.840000pt;}
.he{height:53.333333pt;}
.ha{height:53.746875pt;}
.hc{height:56.565000pt;}
.h10{height:61.267500pt;}
.hf{height:64.068750pt;}
.h8{height:72.564336pt;}
.h4{height:81.128750pt;}
.h6{height:92.137500pt;}
.h7{height:95.625000pt;}
.h1{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:265.333333pt;}
.w3{width:266.666667pt;}
.w4{width:272.000000pt;}
.w1{width:769.333333pt;}
.w0{width:793.333333pt;}
.x2{left:-24.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.799823pt;}
.x1{left:24.000000pt;}
.x3{left:42.000000pt;}
.x4{left:47.266602pt;}
.x13{left:61.333333pt;}
.x7{left:66.199872pt;}
.xe{left:68.000000pt;}
.x6{left:99.400064pt;}
.x10{left:103.994475pt;}
.xd{left:114.919595pt;}
.x14{left:137.046891pt;}
.xf{left:142.771488pt;}
.x12{left:217.518571pt;}
.x17{left:244.675456pt;}
.x16{left:248.746080pt;}
.x15{left:269.776360pt;}
.x9{left:321.343084pt;}
.x11{left:331.479840pt;}
.x5{left:359.133440pt;}
.xb{left:373.733440pt;}
.x8{left:440.409632pt;}
.xa{left:718.200055pt;}
}




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