
    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_45fd086023b85ae48d93e754.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_70deafb801e54be3040ea234.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_76ce2c0d74efadb2f9a29769.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_aa7154946585c834e971cd6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_4b18012ffccae5bd9a025cd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_0fe3309bd0e34b196f66afe9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_01ce8cbd34e42b9a86a59126.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_85a3f4aae6cd383099252ff0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_d34c1e3cb21f4ab51f417003.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_df46af62196c598fdb82d1f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_6da157c9e87638990a8ef76c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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;}
.lsd{letter-spacing:-0.348600px;}
.ls9{letter-spacing:-0.224400px;}
.lse{letter-spacing:-0.092400px;}
.ls4{letter-spacing:-0.056880px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.233280px;}
.lsf{letter-spacing:0.960000px;}
.ls3{letter-spacing:1.128000px;}
.ls0{letter-spacing:1.598400px;}
.ls5{letter-spacing:1.673280px;}
.ls6{letter-spacing:2.393280px;}
.ls8{letter-spacing:3.113280px;}
.ls7{letter-spacing:3.833280px;}
.lsb{letter-spacing:34.841280px;}
.ls12{letter-spacing:55.386720px;}
.lsa{letter-spacing:59.321280px;}
.lsc{letter-spacing:64.002720px;}
.ls1{letter-spacing:845.741280px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.wsa{word-spacing:-59.760000px;}
.ws2{word-spacing:-25.536720px;}
.ws1{word-spacing:-24.408720px;}
.ws3{word-spacing:-24.351840px;}
.wsb{word-spacing:-17.100720px;}
.ws8{word-spacing:-15.012000px;}
.ws4{word-spacing:-14.616000px;}
.wsc{word-spacing:-14.406720px;}
.ws0{word-spacing:-13.446720px;}
.ws9{word-spacing:-13.354320px;}
.ws6{word-spacing:-13.222320px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-13.048080px;}
._5{margin-left:-10.103520px;}
._6{margin-left:-7.607040px;}
._1a{margin-left:-6.269280px;}
._2{margin-left:-4.767120px;}
._8{margin-left:-3.559920px;}
._0{margin-left:-2.327040px;}
._1{margin-left:-1.038480px;}
._3{width:1.456560px;}
._a{width:2.573280px;}
._c{width:3.706080px;}
._b{width:4.751040px;}
._1c{width:5.876880px;}
._19{width:7.550880px;}
._13{width:9.374400px;}
._14{width:10.800000px;}
._1d{width:12.230160px;}
._12{width:14.551440px;}
._11{width:15.897600px;}
._e{width:17.553600px;}
._d{width:19.179840px;}
._f{width:20.508480px;}
._10{width:22.608960px;}
._9{width:24.919680px;}
._7{width:25.974720px;}
._18{width:31.973520px;}
._17{width:33.255360px;}
._1e{width:36.216240px;}
._20{width:37.699200px;}
._1f{width:42.071040px;}
._16{width:74.898960px;}
._15{width:76.086000px;}
._21{width:192.761280px;}
._22{width:193.818240px;}
._1b{width:225.979200px;}
.fc6{color:rgb(70,120,134);}
.fc5{color:rgb(41,84,209);}
.fc3{color:rgb(15,158,213);}
.fc2{color:rgb(15,71,97);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.200000px;}
.y9a{bottom:18.180000px;}
.y9e{bottom:18.360000px;}
.y3{bottom:45.720000px;}
.y6{bottom:52.956000px;}
.y5{bottom:133.056000px;}
.y48{bottom:165.090000px;}
.y82{bottom:167.430000px;}
.y67{bottom:184.890000px;}
.y9b{bottom:188.310000px;}
.y81{bottom:189.210000px;}
.y47{bottom:198.930000px;}
.y80{bottom:210.990000px;}
.y66{bottom:214.230000px;}
.y46{bottom:220.710000px;}
.y99{bottom:226.470000px;}
.y7f{bottom:232.590000px;}
.y65{bottom:252.210000px;}
.y45{bottom:254.370000px;}
.y98{bottom:278.670000px;}
.y64{bottom:286.095000px;}
.y44{bottom:288.075000px;}
.y7e{bottom:288.255000px;}
.y7d{bottom:309.855000px;}
.y97{bottom:319.575000px;}
.y63{bottom:319.755000px;}
.y43{bottom:321.915000px;}
.y7c{bottom:331.635000px;}
.y62{bottom:341.535000px;}
.y96{bottom:353.235000px;}
.y42{bottom:355.575000px;}
.y7b{bottom:365.295000px;}
.y95{bottom:375.015000px;}
.y61{bottom:375.195000px;}
.y41{bottom:389.415000px;}
.y60{bottom:396.975000px;}
.y7a{bottom:399.135000px;}
.y94{bottom:405.615000px;}
.y40{bottom:411.015000px;}
.y5f{bottom:430.815000px;}
.y79{bottom:432.795000px;}
.y3f{bottom:444.855000px;}
.y93{bottom:446.295000px;}
.y5e{bottom:464.475000px;}
.y3e{bottom:466.635000px;}
.y92{bottom:480.135000px;}
.y78{bottom:488.235000px;}
.y16{bottom:494.355000px;}
.y3d{bottom:495.975000px;}
.y5d{bottom:498.135000px;}
.y91{bottom:513.795000px;}
.y5c{bottom:519.915000px;}
.y77{bottom:522.075000px;}
.y15{bottom:528.735000px;}
.y3c{bottom:538.995000px;}
.y76{bottom:543.855000px;}
.y90{bottom:544.395000px;}
.y5b{bottom:549.255000px;}
.y14{bottom:567.825000px;}
.y75{bottom:577.545000px;}
.y8f{bottom:585.105000px;}
.y5a{bottom:587.445000px;}
.y3b{bottom:597.165000px;}
.y74{bottom:599.325000px;}
.y13{bottom:615.345000px;}
.y8e{bottom:618.945000px;}
.y59{bottom:621.105000px;}
.y3a{bottom:623.985000px;}
.y73{bottom:632.985000px;}
.y39{bottom:639.465000px;}
.y8d{bottom:640.725000px;}
.y58{bottom:654.765000px;}
.y12{bottom:659.625000px;}
.y72{bottom:666.825000px;}
.y8c{bottom:670.065000px;}
.y38{bottom:670.425000px;}
.y25{bottom:687.705000px;}
.y57{bottom:688.605000px;}
.y37{bottom:692.025000px;}
.y11{bottom:698.685000px;}
.y71{bottom:700.485000px;}
.ya9{bottom:707.865000px;}
.y8b{bottom:708.045000px;}
.y36{bottom:714.885000px;}
.y24{bottom:721.365000px;}
.y56{bottom:722.265000px;}
.y70{bottom:734.325000px;}
.y35{bottom:736.665000px;}
.ya8{bottom:741.525000px;}
.y8a{bottom:741.705000px;}
.y10{bottom:746.205000px;}
.y23{bottom:750.705000px;}
.y6f{bottom:755.925000px;}
.y55{bottom:756.105000px;}
.y34{bottom:759.525000px;}
.ya7{bottom:763.305000px;}
.y89{bottom:775.545000px;}
.y22{bottom:779.865000px;}
.y33{bottom:781.305000px;}
.ya6{bottom:785.085000px;}
.y54{bottom:789.765000px;}
.yf{bottom:790.305000px;}
.y32{bottom:803.985000px;}
.y21{bottom:809.205000px;}
.y6e{bottom:811.365000px;}
.ye{bottom:814.065000px;}
.ya5{bottom:818.745000px;}
.y53{bottom:823.605000px;}
.y31{bottom:825.765000px;}
.yd{bottom:837.825000px;}
.y20{bottom:838.365000px;}
.y88{bottom:843.045000px;}
.y6d{bottom:845.205000px;}
.y30{bottom:848.670000px;}
.ya4{bottom:852.630000px;}
.y52{bottom:857.310000px;}
.y6c{bottom:867.030000px;}
.y1f{bottom:867.750000px;}
.yc{bottom:872.970000px;}
.ya3{bottom:874.230000px;}
.y87{bottom:876.750000px;}
.y51{bottom:879.090000px;}
.y2f{bottom:883.410000px;}
.y1e{bottom:896.910000px;}
.y6b{bottom:900.690000px;}
.y2e{bottom:905.190000px;}
.yb{bottom:906.810000px;}
.ya2{bottom:908.070000px;}
.y86{bottom:910.590000px;}
.y50{bottom:912.750000px;}
.y1d{bottom:926.070000px;}
.y6a{bottom:934.350000px;}
.y4f{bottom:934.530000px;}
.ya1{bottom:938.490000px;}
.y2d{bottom:939.030000px;}
.y85{bottom:944.250000px;}
.ya{bottom:945.690000px;}
.y1c{bottom:955.410000px;}
.y2c{bottom:960.630000px;}
.y4e{bottom:968.190000px;}
.ya0{bottom:976.470000px;}
.y84{bottom:977.910000px;}
.y2b{bottom:982.410000px;}
.y1b{bottom:984.570000px;}
.y4d{bottom:989.970000px;}
.y9{bottom:997.170000px;}
.y2a{bottom:1004.190000px;}
.y83{bottom:1011.750000px;}
.y1a{bottom:1013.910000px;}
.y9f{bottom:1014.810000px;}
.y4c{bottom:1023.630000px;}
.y29{bottom:1025.970000px;}
.y19{bottom:1043.070000px;}
.y69{bottom:1045.410000px;}
.y28{bottom:1047.570000px;}
.y8{bottom:1048.650000px;}
.y9d{bottom:1052.970000px;}
.y4b{bottom:1057.470000px;}
.y18{bottom:1067.730000px;}
.y27{bottom:1069.350000px;}
.y68{bottom:1079.070000px;}
.y4a{bottom:1079.250000px;}
.y26{bottom:1091.130000px;}
.y9c{bottom:1091.310000px;}
.y7{bottom:1100.310000px;}
.y49{bottom:1108.590000px;}
.y17{bottom:1112.910000px;}
.y4{bottom:1133.100000px;}
.y1{bottom:1148.580000px;}
.hf{height:33.660000px;}
.h10{height:33.840000px;}
.ha{height:56.320312px;}
.h3{height:57.410156px;}
.hd{height:57.507187px;}
.h2{height:61.200000px;}
.he{height:62.327813px;}
.h6{height:62.402344px;}
.hc{height:68.956875px;}
.h8{height:69.086250px;}
.hb{height:73.010742px;}
.h9{height:80.937773px;}
.h7{height:93.761719px;}
.h4{height:101.628633px;}
.h5{height:104.388047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:89.280000px;}
.w3{width:209.370000px;}
.w4{width:217.470000px;}
.w2{width:235.650000px;}
.w7{width:340.995000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.080000px;}
.x4{left:8.100000px;}
.x1{left:106.236000px;}
.x16{left:108.576000px;}
.xd{left:116.675987px;}
.x11{left:122.795987px;}
.xc{left:126.215987px;}
.x12{left:133.235987px;}
.x10{left:139.175987px;}
.x13{left:160.229987px;}
.x14{left:187.229987px;}
.x2{left:195.879000px;}
.x18{left:200.190000px;}
.x6{left:209.385000px;}
.x15{left:214.229987px;}
.xb{left:251.129987px;}
.xf{left:312.734987px;}
.xe{left:332.354987px;}
.x3{left:341.895000px;}
.xa{left:377.174987px;}
.x9{left:446.474987px;}
.x5{left:551.265000px;}
.x8{left:744.089987px;}
.x7{left:777.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.309867pt;}
.ls9{letter-spacing:-0.199467pt;}
.lse{letter-spacing:-0.082133pt;}
.ls4{letter-spacing:-0.050560pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.207360pt;}
.lsf{letter-spacing:0.853333pt;}
.ls3{letter-spacing:1.002667pt;}
.ls0{letter-spacing:1.420800pt;}
.ls5{letter-spacing:1.487360pt;}
.ls6{letter-spacing:2.127360pt;}
.ls8{letter-spacing:2.767360pt;}
.ls7{letter-spacing:3.407360pt;}
.lsb{letter-spacing:30.970027pt;}
.ls12{letter-spacing:49.232640pt;}
.lsa{letter-spacing:52.730027pt;}
.lsc{letter-spacing:56.891307pt;}
.ls1{letter-spacing:751.770027pt;}
.ws7{word-spacing:-58.880000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws2{word-spacing:-22.699307pt;}
.ws1{word-spacing:-21.696640pt;}
.ws3{word-spacing:-21.646080pt;}
.wsb{word-spacing:-15.200640pt;}
.ws8{word-spacing:-13.344000pt;}
.ws4{word-spacing:-12.992000pt;}
.wsc{word-spacing:-12.805973pt;}
.ws0{word-spacing:-11.952640pt;}
.ws9{word-spacing:-11.870507pt;}
.ws6{word-spacing:-11.753173pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-11.598293pt;}
._5{margin-left:-8.980907pt;}
._6{margin-left:-6.761813pt;}
._1a{margin-left:-5.572693pt;}
._2{margin-left:-4.237440pt;}
._8{margin-left:-3.164373pt;}
._0{margin-left:-2.068480pt;}
._1{margin-left:-0.923093pt;}
._3{width:1.294720pt;}
._a{width:2.287360pt;}
._c{width:3.294293pt;}
._b{width:4.223147pt;}
._1c{width:5.223893pt;}
._19{width:6.711893pt;}
._13{width:8.332800pt;}
._14{width:9.600000pt;}
._1d{width:10.871253pt;}
._12{width:12.934613pt;}
._11{width:14.131200pt;}
._e{width:15.603200pt;}
._d{width:17.048747pt;}
._f{width:18.229760pt;}
._10{width:20.096853pt;}
._9{width:22.150827pt;}
._7{width:23.088640pt;}
._18{width:28.420907pt;}
._17{width:29.560320pt;}
._1e{width:32.192213pt;}
._20{width:33.510400pt;}
._1f{width:37.396480pt;}
._16{width:66.576853pt;}
._15{width:67.632000pt;}
._21{width:171.343360pt;}
._22{width:172.282880pt;}
._1b{width:200.870400pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.400000pt;}
.y9a{bottom:16.160000pt;}
.y9e{bottom:16.320000pt;}
.y3{bottom:40.640000pt;}
.y6{bottom:47.072000pt;}
.y5{bottom:118.272000pt;}
.y48{bottom:146.746667pt;}
.y82{bottom:148.826667pt;}
.y67{bottom:164.346667pt;}
.y9b{bottom:167.386667pt;}
.y81{bottom:168.186667pt;}
.y47{bottom:176.826667pt;}
.y80{bottom:187.546667pt;}
.y66{bottom:190.426667pt;}
.y46{bottom:196.186667pt;}
.y99{bottom:201.306667pt;}
.y7f{bottom:206.746667pt;}
.y65{bottom:224.186667pt;}
.y45{bottom:226.106667pt;}
.y98{bottom:247.706667pt;}
.y64{bottom:254.306667pt;}
.y44{bottom:256.066667pt;}
.y7e{bottom:256.226667pt;}
.y7d{bottom:275.426667pt;}
.y97{bottom:284.066667pt;}
.y63{bottom:284.226667pt;}
.y43{bottom:286.146667pt;}
.y7c{bottom:294.786667pt;}
.y62{bottom:303.586667pt;}
.y96{bottom:313.986667pt;}
.y42{bottom:316.066667pt;}
.y7b{bottom:324.706667pt;}
.y95{bottom:333.346667pt;}
.y61{bottom:333.506667pt;}
.y41{bottom:346.146667pt;}
.y60{bottom:352.866667pt;}
.y7a{bottom:354.786667pt;}
.y94{bottom:360.546667pt;}
.y40{bottom:365.346667pt;}
.y5f{bottom:382.946667pt;}
.y79{bottom:384.706667pt;}
.y3f{bottom:395.426667pt;}
.y93{bottom:396.706667pt;}
.y5e{bottom:412.866667pt;}
.y3e{bottom:414.786667pt;}
.y92{bottom:426.786667pt;}
.y78{bottom:433.986667pt;}
.y16{bottom:439.426667pt;}
.y3d{bottom:440.866667pt;}
.y5d{bottom:442.786667pt;}
.y91{bottom:456.706667pt;}
.y5c{bottom:462.146667pt;}
.y77{bottom:464.066667pt;}
.y15{bottom:469.986667pt;}
.y3c{bottom:479.106667pt;}
.y76{bottom:483.426667pt;}
.y90{bottom:483.906667pt;}
.y5b{bottom:488.226667pt;}
.y14{bottom:504.733333pt;}
.y75{bottom:513.373333pt;}
.y8f{bottom:520.093333pt;}
.y5a{bottom:522.173333pt;}
.y3b{bottom:530.813333pt;}
.y74{bottom:532.733333pt;}
.y13{bottom:546.973333pt;}
.y8e{bottom:550.173333pt;}
.y59{bottom:552.093333pt;}
.y3a{bottom:554.653333pt;}
.y73{bottom:562.653333pt;}
.y39{bottom:568.413333pt;}
.y8d{bottom:569.533333pt;}
.y58{bottom:582.013333pt;}
.y12{bottom:586.333333pt;}
.y72{bottom:592.733333pt;}
.y8c{bottom:595.613333pt;}
.y38{bottom:595.933333pt;}
.y25{bottom:611.293333pt;}
.y57{bottom:612.093333pt;}
.y37{bottom:615.133333pt;}
.y11{bottom:621.053333pt;}
.y71{bottom:622.653333pt;}
.ya9{bottom:629.213333pt;}
.y8b{bottom:629.373333pt;}
.y36{bottom:635.453333pt;}
.y24{bottom:641.213333pt;}
.y56{bottom:642.013333pt;}
.y70{bottom:652.733333pt;}
.y35{bottom:654.813333pt;}
.ya8{bottom:659.133333pt;}
.y8a{bottom:659.293333pt;}
.y10{bottom:663.293333pt;}
.y23{bottom:667.293333pt;}
.y6f{bottom:671.933333pt;}
.y55{bottom:672.093333pt;}
.y34{bottom:675.133333pt;}
.ya7{bottom:678.493333pt;}
.y89{bottom:689.373333pt;}
.y22{bottom:693.213333pt;}
.y33{bottom:694.493333pt;}
.ya6{bottom:697.853333pt;}
.y54{bottom:702.013333pt;}
.yf{bottom:702.493333pt;}
.y32{bottom:714.653333pt;}
.y21{bottom:719.293333pt;}
.y6e{bottom:721.213333pt;}
.ye{bottom:723.613333pt;}
.ya5{bottom:727.773333pt;}
.y53{bottom:732.093333pt;}
.y31{bottom:734.013333pt;}
.yd{bottom:744.733333pt;}
.y20{bottom:745.213333pt;}
.y88{bottom:749.373333pt;}
.y6d{bottom:751.293333pt;}
.y30{bottom:754.373333pt;}
.ya4{bottom:757.893333pt;}
.y52{bottom:762.053333pt;}
.y6c{bottom:770.693333pt;}
.y1f{bottom:771.333333pt;}
.yc{bottom:775.973333pt;}
.ya3{bottom:777.093333pt;}
.y87{bottom:779.333333pt;}
.y51{bottom:781.413333pt;}
.y2f{bottom:785.253333pt;}
.y1e{bottom:797.253333pt;}
.y6b{bottom:800.613333pt;}
.y2e{bottom:804.613333pt;}
.yb{bottom:806.053333pt;}
.ya2{bottom:807.173333pt;}
.y86{bottom:809.413333pt;}
.y50{bottom:811.333333pt;}
.y1d{bottom:823.173333pt;}
.y6a{bottom:830.533333pt;}
.y4f{bottom:830.693333pt;}
.ya1{bottom:834.213333pt;}
.y2d{bottom:834.693333pt;}
.y85{bottom:839.333333pt;}
.ya{bottom:840.613333pt;}
.y1c{bottom:849.253333pt;}
.y2c{bottom:853.893333pt;}
.y4e{bottom:860.613333pt;}
.ya0{bottom:867.973333pt;}
.y84{bottom:869.253333pt;}
.y2b{bottom:873.253333pt;}
.y1b{bottom:875.173333pt;}
.y4d{bottom:879.973333pt;}
.y9{bottom:886.373333pt;}
.y2a{bottom:892.613333pt;}
.y83{bottom:899.333333pt;}
.y1a{bottom:901.253333pt;}
.y9f{bottom:902.053333pt;}
.y4c{bottom:909.893333pt;}
.y29{bottom:911.973333pt;}
.y19{bottom:927.173333pt;}
.y69{bottom:929.253333pt;}
.y28{bottom:931.173333pt;}
.y8{bottom:932.133333pt;}
.y9d{bottom:935.973333pt;}
.y4b{bottom:939.973333pt;}
.y18{bottom:949.093333pt;}
.y27{bottom:950.533333pt;}
.y68{bottom:959.173333pt;}
.y4a{bottom:959.333333pt;}
.y26{bottom:969.893333pt;}
.y9c{bottom:970.053333pt;}
.y7{bottom:978.053333pt;}
.y49{bottom:985.413333pt;}
.y17{bottom:989.253333pt;}
.y4{bottom:1007.200000pt;}
.y1{bottom:1020.960000pt;}
.hf{height:29.920000pt;}
.h10{height:30.080000pt;}
.ha{height:50.062500pt;}
.h3{height:51.031250pt;}
.hd{height:51.117500pt;}
.h2{height:54.400000pt;}
.he{height:55.402500pt;}
.h6{height:55.468750pt;}
.hc{height:61.295000pt;}
.h8{height:61.410000pt;}
.hb{height:64.898438pt;}
.h9{height:71.944688pt;}
.h7{height:83.343750pt;}
.h4{height:90.336562pt;}
.h5{height:92.789375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:79.360000pt;}
.w3{width:186.106667pt;}
.w4{width:193.306667pt;}
.w2{width:209.466667pt;}
.w7{width:303.106667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.960000pt;}
.x4{left:7.200000pt;}
.x1{left:94.432000pt;}
.x16{left:96.512000pt;}
.xd{left:103.711988pt;}
.x11{left:109.151988pt;}
.xc{left:112.191988pt;}
.x12{left:118.431988pt;}
.x10{left:123.711988pt;}
.x13{left:142.426655pt;}
.x14{left:166.426655pt;}
.x2{left:174.114667pt;}
.x18{left:177.946667pt;}
.x6{left:186.120000pt;}
.x15{left:190.426655pt;}
.xb{left:223.226655pt;}
.xf{left:277.986655pt;}
.xe{left:295.426655pt;}
.x3{left:303.906667pt;}
.xa{left:335.266655pt;}
.x9{left:396.866655pt;}
.x5{left:490.013333pt;}
.x8{left:661.413322pt;}
.x7{left:691.493322pt;}
}




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