
    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_6db5f033a14971da0533844a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.917969;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_1fba638eb93243fd6a8f2767.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.687500;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_06cb1a79e2abdaeb27fe3eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_999681353b5ea8fbc52f5495.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_7d2cfc3496314c77640a7ba1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.858398;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_8f9323bbb3af6d3fc9055f91.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_7321dc372cf3e61fa811d9ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_b67ebb785b42b6e300ff16a2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6706b0095ab11c4e5fcb31cc.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_92a02f0b9ce7ff9fc6fbe077.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_d128be63bf6e4910ff59e0ef.woff2')format("woff");}.ffb{font-family:ffb;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-3.556800px;}
.ls1b{letter-spacing:-3.196800px;}
.ls1e{letter-spacing:-2.732400px;}
.ls26{letter-spacing:-2.422080px;}
.ls27{letter-spacing:-2.171520px;}
.lsc{letter-spacing:-1.220400px;}
.lsd{letter-spacing:-1.188000px;}
.ls29{letter-spacing:-1.085760px;}
.ls25{letter-spacing:-0.960480px;}
.ls23{letter-spacing:-0.952128px;}
.ls1f{letter-spacing:-0.943776px;}
.ls28{letter-spacing:-0.910368px;}
.ls21{letter-spacing:-0.885312px;}
.ls20{letter-spacing:-0.793440px;}
.ls8{letter-spacing:-0.338400px;}
.ls1d{letter-spacing:-0.225216px;}
.ls2a{letter-spacing:-0.218592px;}
.ls24{letter-spacing:-0.205344px;}
.ls2b{letter-spacing:-0.172224px;}
.ls19{letter-spacing:-0.165600px;}
.lse{letter-spacing:-0.158976px;}
.ls18{letter-spacing:-0.152352px;}
.lsf{letter-spacing:-0.145728px;}
.ls13{letter-spacing:-0.139104px;}
.ls1a{letter-spacing:-0.132480px;}
.ls16{letter-spacing:-0.125856px;}
.ls22{letter-spacing:-0.119232px;}
.ls11{letter-spacing:-0.112608px;}
.ls15{letter-spacing:-0.105984px;}
.ls10{letter-spacing:-0.086112px;}
.ls1c{letter-spacing:-0.079488px;}
.ls14{letter-spacing:-0.066240px;}
.ls12{letter-spacing:-0.059616px;}
.ls17{letter-spacing:-0.046368px;}
.ls9{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005760px;}
.ls4{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.036000px;}
.lsb{letter-spacing:36.218016px;}
.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;}
}
.ws1b{word-spacing:-17.931744px;}
.ws1a{word-spacing:-17.923392px;}
.ws9{word-spacing:-17.222400px;}
.wsc{word-spacing:-17.176032px;}
.ws13{word-spacing:-17.156160px;}
.ws15{word-spacing:-17.142912px;}
.wse{word-spacing:-17.136288px;}
.ws1f{word-spacing:-17.109792px;}
.wsb{word-spacing:-17.096544px;}
.ws19{word-spacing:-17.089920px;}
.ws17{word-spacing:-17.083296px;}
.ws12{word-spacing:-17.076672px;}
.wsa{word-spacing:-17.070048px;}
.ws21{word-spacing:-17.063424px;}
.ws1e{word-spacing:-17.056800px;}
.ws4{word-spacing:-16.286400px;}
.ws2{word-spacing:-16.272000px;}
.ws1{word-spacing:-16.257600px;}
.ws3{word-spacing:-15.933600px;}
.ws0{word-spacing:-0.108000px;}
.ws6{word-spacing:-0.060480px;}
.wsd{word-spacing:-0.019872px;}
.ws5{word-spacing:0.000000px;}
.ws1d{word-spacing:0.013248px;}
.wsf{word-spacing:0.019872px;}
.ws1c{word-spacing:0.039744px;}
.ws18{word-spacing:0.059616px;}
.ws20{word-spacing:0.105984px;}
.ws14{word-spacing:0.158976px;}
.ws8{word-spacing:1.080000px;}
.ws7{word-spacing:1.112400px;}
.ws16{word-spacing:2.624400px;}
.ws11{word-spacing:3.088800px;}
.ws10{word-spacing:840.132000px;}
._2{margin-left:-8.791200px;}
._3{margin-left:-5.907600px;}
._1{margin-left:-3.996000px;}
._0{margin-left:-1.846800px;}
._7{width:1.126080px;}
._5{width:2.304000px;}
._4{width:3.528000px;}
._9{width:845.124480px;}
._6{width:3013.313904px;}
._8{width:3043.977264px;}
.fc2{color:rgb(2,77,69);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:108.000000px;}
.y24{bottom:-4.920000px;}
.y0{bottom:0.000000px;}
.y60{bottom:4.920000px;}
.y66{bottom:4.980000px;}
.y4c{bottom:5.340000px;}
.y54{bottom:5.400000px;}
.y5c{bottom:5.460000px;}
.y47{bottom:5.700000px;}
.y64{bottom:5.880000px;}
.y50{bottom:5.940000px;}
.y58{bottom:6.360000px;}
.y23{bottom:23.160000px;}
.y5f{bottom:27.240000px;}
.y4b{bottom:27.660000px;}
.y53{bottom:27.720000px;}
.y5b{bottom:28.140000px;}
.y63{bottom:28.200000px;}
.y46{bottom:28.380000px;}
.y4f{bottom:28.620000px;}
.y57{bottom:28.680000px;}
.y22{bottom:48.720000px;}
.y5e{bottom:49.920000px;}
.y4a{bottom:49.980000px;}
.y26{bottom:50.040000px;}
.y52{bottom:50.400000px;}
.y5a{bottom:50.460000px;}
.y62{bottom:50.520000px;}
.y45{bottom:50.700000px;}
.y4e{bottom:50.940000px;}
.y56{bottom:51.000000px;}
.y1{bottom:60.000000px;}
.y49{bottom:72.660000px;}
.y21{bottom:74.280000px;}
.y20{bottom:99.480000px;}
.y43{bottom:122.040000px;}
.y1f{bottom:125.040000px;}
.y42{bottom:148.320000px;}
.y1e{bottom:150.600000px;}
.ydb{bottom:174.960000px;}
.y1d{bottom:175.800000px;}
.y83{bottom:183.240000px;}
.yda{bottom:197.640000px;}
.y9c{bottom:201.240000px;}
.y1c{bottom:201.360000px;}
.y82{bottom:214.920000px;}
.y9b{bottom:223.560000px;}
.y1b{bottom:226.920000px;}
.yb8{bottom:228.960000px;}
.y81{bottom:237.240000px;}
.yca{bottom:237.960000px;}
.ye4{bottom:249.120000px;}
.yb7{bottom:251.640000px;}
.y1a{bottom:252.480000px;}
.y9a{bottom:255.240000px;}
.yc9{bottom:260.640000px;}
.y80{bottom:264.600000px;}
.y68{bottom:269.640000px;}
.yd9{bottom:273.960000px;}
.y41{bottom:275.400000px;}
.y99{bottom:277.560000px;}
.y19{bottom:277.680000px;}
.yb6{bottom:282.960000px;}
.y7f{bottom:294.120000px;}
.y67{bottom:298.440000px;}
.y18{bottom:303.240000px;}
.y98{bottom:304.920000px;}
.yb5{bottom:305.640000px;}
.y40{bottom:314.640000px;}
.y65{bottom:316.500000px;}
.yb4{bottom:327.960000px;}
.y7e{bottom:328.320000px;}
.y17{bottom:328.800000px;}
.y97{bottom:334.440000px;}
.yc8{bottom:336.960000px;}
.y3f{bottom:346.320000px;}
.yb3{bottom:350.280000px;}
.y16{bottom:354.000000px;}
.yc7{bottom:359.280000px;}
.y7d{bottom:359.640000px;}
.y96{bottom:368.280000px;}
.y3e{bottom:368.640000px;}
.y15{bottom:379.560000px;}
.y7c{bottom:381.960000px;}
.y61{bottom:384.000000px;}
.yc6{bottom:390.960000px;}
.y95{bottom:399.960000px;}
.y3d{bottom:400.320000px;}
.yb2{bottom:404.280000px;}
.y14{bottom:406.200000px;}
.yc5{bottom:413.280000px;}
.y94{bottom:422.280000px;}
.y3c{bottom:422.640000px;}
.yd8{bottom:426.960000px;}
.y7b{bottom:427.320000px;}
.yb1{bottom:435.960000px;}
.y13{bottom:436.080000px;}
.y5d{bottom:453.000000px;}
.y3b{bottom:453.960000px;}
.yb0{bottom:458.280000px;}
.yc4{bottom:458.640000px;}
.y7a{bottom:461.160000px;}
.y12{bottom:464.520000px;}
.y93{bottom:476.280000px;}
.y3a{bottom:476.640000px;}
.yaf{bottom:489.600000px;}
.y11{bottom:489.720000px;}
.yc3{bottom:492.480000px;}
.y79{bottom:492.840000px;}
.y92{bottom:507.600000px;}
.y39{bottom:507.960000px;}
.yae{bottom:512.280000px;}
.y78{bottom:515.160000px;}
.y10{bottom:515.280000px;}
.y59{bottom:520.500000px;}
.yc2{bottom:524.160000px;}
.y91{bottom:530.280000px;}
.y38{bottom:530.640000px;}
.yad{bottom:534.600000px;}
.ye3{bottom:534.960000px;}
.yd7{bottom:537.480000px;}
.yf{bottom:540.840000px;}
.y77{bottom:546.480000px;}
.yf2{bottom:559.080000px;}
.y90{bottom:561.600000px;}
.y37{bottom:561.960000px;}
.ye{bottom:566.040000px;}
.yac{bottom:566.280000px;}
.yd6{bottom:568.800000px;}
.y76{bottom:569.160000px;}
.yc1{bottom:577.800000px;}
.yf1{bottom:581.400000px;}
.y55{bottom:588.000000px;}
.yab{bottom:588.600000px;}
.y8f{bottom:588.960000px;}
.yd5{bottom:591.480000px;}
.yd{bottom:591.600000px;}
.y36{bottom:593.280000px;}
.y75{bottom:600.480000px;}
.yf0{bottom:604.080000px;}
.yd4{bottom:613.800000px;}
.y35{bottom:615.960000px;}
.yc{bottom:617.160000px;}
.y8e{bottom:622.800000px;}
.y74{bottom:623.160000px;}
.yaa{bottom:633.960000px;}
.y34{bottom:638.280000px;}
.yb{bottom:642.720000px;}
.yd3{bottom:645.480000px;}
.yef{bottom:649.080000px;}
.y73{bottom:654.480000px;}
.y51{bottom:657.000000px;}
.ya9{bottom:662.400000px;}
.yd2{bottom:667.800000px;}
.ya{bottom:667.920000px;}
.y33{bottom:669.960000px;}
.y8d{bottom:676.800000px;}
.y72{bottom:677.160000px;}
.yee{bottom:682.920000px;}
.ye2{bottom:690.120000px;}
.y32{bottom:692.280000px;}
.y9{bottom:693.480000px;}
.ya8{bottom:693.720000px;}
.yc0{bottom:699.120000px;}
.y8c{bottom:708.120000px;}
.y71{bottom:708.480000px;}
.yed{bottom:714.600000px;}
.y31{bottom:714.960000px;}
.ya7{bottom:716.400000px;}
.y8{bottom:719.040000px;}
.ye1{bottom:721.800000px;}
.y4d{bottom:724.500000px;}
.y70{bottom:730.800000px;}
.yec{bottom:736.920000px;}
.y30{bottom:737.280000px;}
.ye0{bottom:744.120000px;}
.y7{bottom:744.240000px;}
.yd1{bottom:744.480000px;}
.ya6{bottom:747.720000px;}
.ybf{bottom:753.120000px;}
.yeb{bottom:759.600000px;}
.y8b{bottom:762.120000px;}
.y6f{bottom:762.480000px;}
.y2f{bottom:768.600000px;}
.y6{bottom:769.800000px;}
.ybe{bottom:775.800000px;}
.yd0{bottom:778.320000px;}
.ya5{bottom:779.400000px;}
.yea{bottom:781.920000px;}
.y6e{bottom:784.800000px;}
.y2e{bottom:791.280000px;}
.y48{bottom:793.500000px;}
.y5{bottom:796.800000px;}
.ybd{bottom:798.120000px;}
.ya4{bottom:801.720000px;}
.y8a{bottom:807.120000px;}
.ycf{bottom:810.000000px;}
.y2d{bottom:813.600000px;}
.y6d{bottom:816.480000px;}
.ydf{bottom:820.800000px;}
.y4{bottom:826.320000px;}
.ye9{bottom:827.280000px;}
.ybc{bottom:829.800000px;}
.yce{bottom:832.320000px;}
.ya3{bottom:833.040000px;}
.y2c{bottom:836.280000px;}
.y6c{bottom:838.800000px;}
.ybb{bottom:852.120000px;}
.ycd{bottom:855.000000px;}
.y3{bottom:858.720000px;}
.ya2{bottom:860.400000px;}
.y6b{bottom:861.120000px;}
.y89{bottom:865.800000px;}
.y2b{bottom:867.600000px;}
.yde{bottom:874.440000px;}
.y44{bottom:883.500000px;}
.ycc{bottom:886.320000px;}
.y6a{bottom:887.400000px;}
.y2a{bottom:889.920000px;}
.ye8{bottom:892.440000px;}
.ya1{bottom:894.240000px;}
.y2{bottom:895.800000px;}
.yba{bottom:897.120000px;}
.y88{bottom:899.640000px;}
.ydd{bottom:906.120000px;}
.ycb{bottom:908.640000px;}
.y29{bottom:912.600000px;}
.ye7{bottom:915.120000px;}
.ya0{bottom:925.920000px;}
.y87{bottom:931.320000px;}
.y69{bottom:932.400000px;}
.y28{bottom:934.920000px;}
.ye6{bottom:937.440000px;}
.y9f{bottom:948.240000px;}
.ydc{bottom:951.120000px;}
.y86{bottom:953.640000px;}
.ye5{bottom:960.120000px;}
.yb9{bottom:962.640000px;}
.y9e{bottom:975.600000px;}
.y85{bottom:985.320000px;}
.y27{bottom:999.720000px;}
.y9d{bottom:1005.120000px;}
.y84{bottom:1007.640000px;}
.y25{bottom:1028.880000px;}
.h7{height:50.682656px;}
.h6{height:51.679688px;}
.h5{height:57.093750px;}
.ha{height:67.500000px;}
.h8{height:69.000000px;}
.h4{height:73.248047px;}
.h3{height:75.515625px;}
.h9{height:91.500000px;}
.h2{height:922.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:337.500000px;}
.w4{width:354.000000px;}
.w2{width:760.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x7{left:7.860000px;}
.x2{left:11.219964px;}
.x4{left:63.719964px;}
.x1{left:70.500000px;}
.x9{left:90.719964px;}
.x5{left:117.719964px;}
.x6{left:144.719964px;}
.x8{left:402.000000px;}
.x3{left:829.019880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-3.161600pt;}
.ls1b{letter-spacing:-2.841600pt;}
.ls1e{letter-spacing:-2.428800pt;}
.ls26{letter-spacing:-2.152960pt;}
.ls27{letter-spacing:-1.930240pt;}
.lsc{letter-spacing:-1.084800pt;}
.lsd{letter-spacing:-1.056000pt;}
.ls29{letter-spacing:-0.965120pt;}
.ls25{letter-spacing:-0.853760pt;}
.ls23{letter-spacing:-0.846336pt;}
.ls1f{letter-spacing:-0.838912pt;}
.ls28{letter-spacing:-0.809216pt;}
.ls21{letter-spacing:-0.786944pt;}
.ls20{letter-spacing:-0.705280pt;}
.ls8{letter-spacing:-0.300800pt;}
.ls1d{letter-spacing:-0.200192pt;}
.ls2a{letter-spacing:-0.194304pt;}
.ls24{letter-spacing:-0.182528pt;}
.ls2b{letter-spacing:-0.153088pt;}
.ls19{letter-spacing:-0.147200pt;}
.lse{letter-spacing:-0.141312pt;}
.ls18{letter-spacing:-0.135424pt;}
.lsf{letter-spacing:-0.129536pt;}
.ls13{letter-spacing:-0.123648pt;}
.ls1a{letter-spacing:-0.117760pt;}
.ls16{letter-spacing:-0.111872pt;}
.ls22{letter-spacing:-0.105984pt;}
.ls11{letter-spacing:-0.100096pt;}
.ls15{letter-spacing:-0.094208pt;}
.ls10{letter-spacing:-0.076544pt;}
.ls1c{letter-spacing:-0.070656pt;}
.ls14{letter-spacing:-0.058880pt;}
.ls12{letter-spacing:-0.052992pt;}
.ls17{letter-spacing:-0.041216pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005120pt;}
.ls4{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.032000pt;}
.lsb{letter-spacing:32.193792pt;}
.ws1b{word-spacing:-15.939328pt;}
.ws1a{word-spacing:-15.931904pt;}
.ws9{word-spacing:-15.308800pt;}
.wsc{word-spacing:-15.267584pt;}
.ws13{word-spacing:-15.249920pt;}
.ws15{word-spacing:-15.238144pt;}
.wse{word-spacing:-15.232256pt;}
.ws1f{word-spacing:-15.208704pt;}
.wsb{word-spacing:-15.196928pt;}
.ws19{word-spacing:-15.191040pt;}
.ws17{word-spacing:-15.185152pt;}
.ws12{word-spacing:-15.179264pt;}
.wsa{word-spacing:-15.173376pt;}
.ws21{word-spacing:-15.167488pt;}
.ws1e{word-spacing:-15.161600pt;}
.ws4{word-spacing:-14.476800pt;}
.ws2{word-spacing:-14.464000pt;}
.ws1{word-spacing:-14.451200pt;}
.ws3{word-spacing:-14.163200pt;}
.ws0{word-spacing:-0.096000pt;}
.ws6{word-spacing:-0.053760pt;}
.wsd{word-spacing:-0.017664pt;}
.ws5{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.011776pt;}
.wsf{word-spacing:0.017664pt;}
.ws1c{word-spacing:0.035328pt;}
.ws18{word-spacing:0.052992pt;}
.ws20{word-spacing:0.094208pt;}
.ws14{word-spacing:0.141312pt;}
.ws8{word-spacing:0.960000pt;}
.ws7{word-spacing:0.988800pt;}
.ws16{word-spacing:2.332800pt;}
.ws11{word-spacing:2.745600pt;}
.ws10{word-spacing:746.784000pt;}
._2{margin-left:-7.814400pt;}
._3{margin-left:-5.251200pt;}
._1{margin-left:-3.552000pt;}
._0{margin-left:-1.641600pt;}
._7{width:1.000960pt;}
._5{width:2.048000pt;}
._4{width:3.136000pt;}
._9{width:751.221760pt;}
._6{width:2678.501248pt;}
._8{width:2705.757568pt;}
.fs5{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:96.000000pt;}
.y24{bottom:-4.373333pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:4.373333pt;}
.y66{bottom:4.426667pt;}
.y4c{bottom:4.746667pt;}
.y54{bottom:4.800000pt;}
.y5c{bottom:4.853333pt;}
.y47{bottom:5.066667pt;}
.y64{bottom:5.226667pt;}
.y50{bottom:5.280000pt;}
.y58{bottom:5.653333pt;}
.y23{bottom:20.586667pt;}
.y5f{bottom:24.213333pt;}
.y4b{bottom:24.586667pt;}
.y53{bottom:24.640000pt;}
.y5b{bottom:25.013333pt;}
.y63{bottom:25.066667pt;}
.y46{bottom:25.226667pt;}
.y4f{bottom:25.440000pt;}
.y57{bottom:25.493333pt;}
.y22{bottom:43.306667pt;}
.y5e{bottom:44.373333pt;}
.y4a{bottom:44.426667pt;}
.y26{bottom:44.480000pt;}
.y52{bottom:44.800000pt;}
.y5a{bottom:44.853333pt;}
.y62{bottom:44.906667pt;}
.y45{bottom:45.066667pt;}
.y4e{bottom:45.280000pt;}
.y56{bottom:45.333333pt;}
.y1{bottom:53.333333pt;}
.y49{bottom:64.586667pt;}
.y21{bottom:66.026667pt;}
.y20{bottom:88.426667pt;}
.y43{bottom:108.480000pt;}
.y1f{bottom:111.146667pt;}
.y42{bottom:131.840000pt;}
.y1e{bottom:133.866667pt;}
.ydb{bottom:155.520000pt;}
.y1d{bottom:156.266667pt;}
.y83{bottom:162.880000pt;}
.yda{bottom:175.680000pt;}
.y9c{bottom:178.880000pt;}
.y1c{bottom:178.986667pt;}
.y82{bottom:191.040000pt;}
.y9b{bottom:198.720000pt;}
.y1b{bottom:201.706667pt;}
.yb8{bottom:203.520000pt;}
.y81{bottom:210.880000pt;}
.yca{bottom:211.520000pt;}
.ye4{bottom:221.440000pt;}
.yb7{bottom:223.680000pt;}
.y1a{bottom:224.426667pt;}
.y9a{bottom:226.880000pt;}
.yc9{bottom:231.680000pt;}
.y80{bottom:235.200000pt;}
.y68{bottom:239.680000pt;}
.yd9{bottom:243.520000pt;}
.y41{bottom:244.800000pt;}
.y99{bottom:246.720000pt;}
.y19{bottom:246.826667pt;}
.yb6{bottom:251.520000pt;}
.y7f{bottom:261.440000pt;}
.y67{bottom:265.280000pt;}
.y18{bottom:269.546667pt;}
.y98{bottom:271.040000pt;}
.yb5{bottom:271.680000pt;}
.y40{bottom:279.680000pt;}
.y65{bottom:281.333333pt;}
.yb4{bottom:291.520000pt;}
.y7e{bottom:291.840000pt;}
.y17{bottom:292.266667pt;}
.y97{bottom:297.280000pt;}
.yc8{bottom:299.520000pt;}
.y3f{bottom:307.840000pt;}
.yb3{bottom:311.360000pt;}
.y16{bottom:314.666667pt;}
.yc7{bottom:319.360000pt;}
.y7d{bottom:319.680000pt;}
.y96{bottom:327.360000pt;}
.y3e{bottom:327.680000pt;}
.y15{bottom:337.386667pt;}
.y7c{bottom:339.520000pt;}
.y61{bottom:341.333333pt;}
.yc6{bottom:347.520000pt;}
.y95{bottom:355.520000pt;}
.y3d{bottom:355.840000pt;}
.yb2{bottom:359.360000pt;}
.y14{bottom:361.066667pt;}
.yc5{bottom:367.360000pt;}
.y94{bottom:375.360000pt;}
.y3c{bottom:375.680000pt;}
.yd8{bottom:379.520000pt;}
.y7b{bottom:379.840000pt;}
.yb1{bottom:387.520000pt;}
.y13{bottom:387.626667pt;}
.y5d{bottom:402.666667pt;}
.y3b{bottom:403.520000pt;}
.yb0{bottom:407.360000pt;}
.yc4{bottom:407.680000pt;}
.y7a{bottom:409.920000pt;}
.y12{bottom:412.906667pt;}
.y93{bottom:423.360000pt;}
.y3a{bottom:423.680000pt;}
.yaf{bottom:435.200000pt;}
.y11{bottom:435.306667pt;}
.yc3{bottom:437.760000pt;}
.y79{bottom:438.080000pt;}
.y92{bottom:451.200000pt;}
.y39{bottom:451.520000pt;}
.yae{bottom:455.360000pt;}
.y78{bottom:457.920000pt;}
.y10{bottom:458.026667pt;}
.y59{bottom:462.666667pt;}
.yc2{bottom:465.920000pt;}
.y91{bottom:471.360000pt;}
.y38{bottom:471.680000pt;}
.yad{bottom:475.200000pt;}
.ye3{bottom:475.520000pt;}
.yd7{bottom:477.760000pt;}
.yf{bottom:480.746667pt;}
.y77{bottom:485.760000pt;}
.yf2{bottom:496.960000pt;}
.y90{bottom:499.200000pt;}
.y37{bottom:499.520000pt;}
.ye{bottom:503.146667pt;}
.yac{bottom:503.360000pt;}
.yd6{bottom:505.600000pt;}
.y76{bottom:505.920000pt;}
.yc1{bottom:513.600000pt;}
.yf1{bottom:516.800000pt;}
.y55{bottom:522.666667pt;}
.yab{bottom:523.200000pt;}
.y8f{bottom:523.520000pt;}
.yd5{bottom:525.760000pt;}
.yd{bottom:525.866667pt;}
.y36{bottom:527.360000pt;}
.y75{bottom:533.760000pt;}
.yf0{bottom:536.960000pt;}
.yd4{bottom:545.600000pt;}
.y35{bottom:547.520000pt;}
.yc{bottom:548.586667pt;}
.y8e{bottom:553.600000pt;}
.y74{bottom:553.920000pt;}
.yaa{bottom:563.520000pt;}
.y34{bottom:567.360000pt;}
.yb{bottom:571.306667pt;}
.yd3{bottom:573.760000pt;}
.yef{bottom:576.960000pt;}
.y73{bottom:581.760000pt;}
.y51{bottom:584.000000pt;}
.ya9{bottom:588.800000pt;}
.yd2{bottom:593.600000pt;}
.ya{bottom:593.706667pt;}
.y33{bottom:595.520000pt;}
.y8d{bottom:601.600000pt;}
.y72{bottom:601.920000pt;}
.yee{bottom:607.040000pt;}
.ye2{bottom:613.440000pt;}
.y32{bottom:615.360000pt;}
.y9{bottom:616.426667pt;}
.ya8{bottom:616.640000pt;}
.yc0{bottom:621.440000pt;}
.y8c{bottom:629.440000pt;}
.y71{bottom:629.760000pt;}
.yed{bottom:635.200000pt;}
.y31{bottom:635.520000pt;}
.ya7{bottom:636.800000pt;}
.y8{bottom:639.146667pt;}
.ye1{bottom:641.600000pt;}
.y4d{bottom:644.000000pt;}
.y70{bottom:649.600000pt;}
.yec{bottom:655.040000pt;}
.y30{bottom:655.360000pt;}
.ye0{bottom:661.440000pt;}
.y7{bottom:661.546667pt;}
.yd1{bottom:661.760000pt;}
.ya6{bottom:664.640000pt;}
.ybf{bottom:669.440000pt;}
.yeb{bottom:675.200000pt;}
.y8b{bottom:677.440000pt;}
.y6f{bottom:677.760000pt;}
.y2f{bottom:683.200000pt;}
.y6{bottom:684.266667pt;}
.ybe{bottom:689.600000pt;}
.yd0{bottom:691.840000pt;}
.ya5{bottom:692.800000pt;}
.yea{bottom:695.040000pt;}
.y6e{bottom:697.600000pt;}
.y2e{bottom:703.360000pt;}
.y48{bottom:705.333333pt;}
.y5{bottom:708.266667pt;}
.ybd{bottom:709.440000pt;}
.ya4{bottom:712.640000pt;}
.y8a{bottom:717.440000pt;}
.ycf{bottom:720.000000pt;}
.y2d{bottom:723.200000pt;}
.y6d{bottom:725.760000pt;}
.ydf{bottom:729.600000pt;}
.y4{bottom:734.506667pt;}
.ye9{bottom:735.360000pt;}
.ybc{bottom:737.600000pt;}
.yce{bottom:739.840000pt;}
.ya3{bottom:740.480000pt;}
.y2c{bottom:743.360000pt;}
.y6c{bottom:745.600000pt;}
.ybb{bottom:757.440000pt;}
.ycd{bottom:760.000000pt;}
.y3{bottom:763.306667pt;}
.ya2{bottom:764.800000pt;}
.y6b{bottom:765.440000pt;}
.y89{bottom:769.600000pt;}
.y2b{bottom:771.200000pt;}
.yde{bottom:777.280000pt;}
.y44{bottom:785.333333pt;}
.ycc{bottom:787.840000pt;}
.y6a{bottom:788.800000pt;}
.y2a{bottom:791.040000pt;}
.ye8{bottom:793.280000pt;}
.ya1{bottom:794.880000pt;}
.y2{bottom:796.266667pt;}
.yba{bottom:797.440000pt;}
.y88{bottom:799.680000pt;}
.ydd{bottom:805.440000pt;}
.ycb{bottom:807.680000pt;}
.y29{bottom:811.200000pt;}
.ye7{bottom:813.440000pt;}
.ya0{bottom:823.040000pt;}
.y87{bottom:827.840000pt;}
.y69{bottom:828.800000pt;}
.y28{bottom:831.040000pt;}
.ye6{bottom:833.280000pt;}
.y9f{bottom:842.880000pt;}
.ydc{bottom:845.440000pt;}
.y86{bottom:847.680000pt;}
.ye5{bottom:853.440000pt;}
.yb9{bottom:855.680000pt;}
.y9e{bottom:867.200000pt;}
.y85{bottom:875.840000pt;}
.y27{bottom:888.640000pt;}
.y9d{bottom:893.440000pt;}
.y84{bottom:895.680000pt;}
.y25{bottom:914.560000pt;}
.h7{height:45.051250pt;}
.h6{height:45.937500pt;}
.h5{height:50.750000pt;}
.ha{height:60.000000pt;}
.h8{height:61.333333pt;}
.h4{height:65.109375pt;}
.h3{height:67.125000pt;}
.h9{height:81.333333pt;}
.h2{height:820.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:300.000000pt;}
.w4{width:314.666667pt;}
.w2{width:676.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x7{left:6.986667pt;}
.x2{left:9.973301pt;}
.x4{left:56.639968pt;}
.x1{left:62.666667pt;}
.x9{left:80.639968pt;}
.x5{left:104.639968pt;}
.x6{left:128.639968pt;}
.x8{left:357.333333pt;}
.x3{left:736.906560pt;}
}




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