
    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_00fbec0dc27db891d84c44a1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_90ff0e6af931861ddbdefb06.woff')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_7fa391c472cafd3841643a00.woff')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d8df27705cebe84a25219d0f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f9019822370d4bfe003436a3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.002441;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_342046e03ed05fac5e8a8f7e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.870605;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_44428e778b222c5baa093713.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1ae58374fb9c497fdd4ca2d0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.904297;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_b219342fdf7d8432ed689fc4.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0e13389efb3cc149344c0de9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.281250;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);}
.v1{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.861120px;}
.lsd{letter-spacing:-0.794880px;}
.ls12{letter-spacing:-0.596160px;}
.ls1f{letter-spacing:-0.537840px;}
.ls36{letter-spacing:-0.463680px;}
.ls38{letter-spacing:-0.397440px;}
.ls2b{letter-spacing:-0.298800px;}
.ls9{letter-spacing:-0.287280px;}
.ls31{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.264960px;}
.ls1c{letter-spacing:-0.239040px;}
.ls29{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.198720px;}
.ls2c{letter-spacing:-0.179280px;}
.ls1b{letter-spacing:-0.119520px;}
.lsb{letter-spacing:-0.066240px;}
.ls1e{letter-spacing:-0.059760px;}
.ls8{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.059760px;}
.ls37{letter-spacing:0.066240px;}
.ls23{letter-spacing:0.074880px;}
.lse{letter-spacing:0.084240px;}
.ls22{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.132480px;}
.lsc{letter-spacing:0.168480px;}
.ls7{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.179280px;}
.ls2a{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.239040px;}
.lsf{letter-spacing:0.264960px;}
.ls13{letter-spacing:0.269280px;}
.ls1{letter-spacing:0.278208px;}
.ls35{letter-spacing:0.287280px;}
.ls1d{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.331200px;}
.ls1a{letter-spacing:0.358560px;}
.ls2d{letter-spacing:0.393840px;}
.ls32{letter-spacing:0.418320px;}
.ls26{letter-spacing:0.666720px;}
.ls24{letter-spacing:0.794880px;}
.ls25{letter-spacing:0.896400px;}
.ls4{letter-spacing:15.301440px;}
.ls3{letter-spacing:15.963840px;}
.ls27{letter-spacing:16.014240px;}
.ls21{letter-spacing:16.734240px;}
.ls20{letter-spacing:31.626720px;}
.ls2e{letter-spacing:33.047280px;}
.ls2f{letter-spacing:33.066720px;}
.ls6{letter-spacing:39.214080px;}
.ls34{letter-spacing:50.011200px;}
.ls2{letter-spacing:56.436480px;}
.ls33{letter-spacing:59.351040px;}
.ls16{letter-spacing:64.002960px;}
.ls17{letter-spacing:64.026720px;}
.ls18{letter-spacing:847.728000px;}
.ls30{letter-spacing:854.576640px;}
.ls0{letter-spacing:1326.414240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.240000px;}
.ws17{word-spacing:-59.760000px;}
.ws38{word-spacing:-39.744000px;}
.ws2{word-spacing:-19.122480px;}
.ws27{word-spacing:-16.488000px;}
.ws5{word-spacing:-15.301440px;}
.ws3{word-spacing:-15.235200px;}
.ws8{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.904000px;}
.ws4{word-spacing:-14.771520px;}
.ws0{word-spacing:-14.705280px;}
.ws39{word-spacing:-14.572800px;}
.ws37{word-spacing:-14.506560px;}
.ws6{word-spacing:-14.374080px;}
.ws29{word-spacing:-13.864320px;}
.ws16{word-spacing:-13.744800px;}
.ws2d{word-spacing:-13.685040px;}
.ws2c{word-spacing:-13.625280px;}
.ws2e{word-spacing:-13.565520px;}
.ws18{word-spacing:-13.505760px;}
.ws28{word-spacing:-13.446000px;}
.ws2a{word-spacing:-13.386240px;}
.ws2b{word-spacing:-13.206960px;}
.ws19{word-spacing:-12.967920px;}
.ws3c{word-spacing:-2.649600px;}
.ws42{word-spacing:-1.920960px;}
.ws13{word-spacing:-0.861120px;}
.ws23{word-spacing:-0.836640px;}
.ws34{word-spacing:-0.717120px;}
.ws14{word-spacing:-0.529920px;}
.wse{word-spacing:-0.505440px;}
.ws3b{word-spacing:-0.421200px;}
.wsd{word-spacing:-0.331200px;}
.ws25{word-spacing:-0.298800px;}
.ws3a{word-spacing:-0.287280px;}
.ws1a{word-spacing:-0.264960px;}
.ws22{word-spacing:-0.239040px;}
.ws1d{word-spacing:-0.179280px;}
.ws12{word-spacing:-0.132480px;}
.ws30{word-spacing:-0.119520px;}
.ws41{word-spacing:-0.066240px;}
.ws20{word-spacing:-0.059760px;}
.ws9{word-spacing:0.000000px;}
.ws26{word-spacing:0.059760px;}
.ws1e{word-spacing:0.119520px;}
.wsb{word-spacing:0.198720px;}
.ws24{word-spacing:0.239040px;}
.ws1b{word-spacing:0.264960px;}
.ws35{word-spacing:0.270000px;}
.wsa{word-spacing:0.287280px;}
.ws31{word-spacing:0.298800px;}
.ws36{word-spacing:0.324000px;}
.ws1f{word-spacing:0.331200px;}
.ws33{word-spacing:0.358560px;}
.wsc{word-spacing:0.397440px;}
.ws21{word-spacing:0.418320px;}
.ws43{word-spacing:0.463680px;}
.ws32{word-spacing:0.478080px;}
.ws2f{word-spacing:0.504000px;}
.ws15{word-spacing:0.596160px;}
.ws1c{word-spacing:0.861120px;}
.ws3d{word-spacing:1.126080px;}
.ws40{word-spacing:3.841920px;}
.ws11{word-spacing:15.831360px;}
.wsf{word-spacing:16.030080px;}
.ws10{word-spacing:16.758720px;}
.ws3e{word-spacing:25.966080px;}
.ws3f{word-spacing:26.164800px;}
._5{margin-left:-7.710336px;}
._3{margin-left:-5.398560px;}
._2{margin-left:-4.108464px;}
._4{margin-left:-2.914560px;}
._1{margin-left:-1.059840px;}
._0{width:1.398096px;}
._6{width:16.014240px;}
._7{width:17.454240px;}
.fc9{color:rgb(0,32,96);}
.fc6{color:rgb(17,83,27);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(10,129,52);}
.fc8{color:rgb(68,68,68);}
.fc7{color:rgb(51,51,51);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,52,87);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y33{bottom:2.880000px;}
.y2a{bottom:3.960000px;}
.y89{bottom:4.140000px;}
.y29{bottom:5.400000px;}
.y76{bottom:6.660000px;}
.y4{bottom:6.840000px;}
.y48{bottom:8.100000px;}
.y7a{bottom:8.280000px;}
.y4a{bottom:27.720000px;}
.y35{bottom:32.940000px;}
.y57{bottom:48.780000px;}
.y5{bottom:55.980000px;}
.y5b{bottom:69.840000px;}
.y3{bottom:71.640000px;}
.y4f{bottom:90.720000px;}
.y62{bottom:90.900000px;}
.y3a{bottom:99.000000px;}
.y2d{bottom:112.500000px;}
.y2c{bottom:115.200000px;}
.y70{bottom:147.420000px;}
.y71{bottom:154.080000px;}
.y80{bottom:163.440000px;}
.y22{bottom:179.820000px;}
.y6b{bottom:190.440000px;}
.yab{bottom:194.040000px;}
.y6f{bottom:197.083800px;}
.y21{bottom:209.005200px;}
.y6e{bottom:218.149200px;}
.yaa{bottom:223.017840px;}
.y20{bottom:229.158720px;}
.y6d{bottom:239.214600px;}
.ya9{bottom:252.180000px;}
.y1f{bottom:258.138720px;}
.y6c{bottom:260.280000px;}
.ya8{bottom:282.244320px;}
.y1e{bottom:287.300880px;}
.y69{bottom:296.460000px;}
.y6a{bottom:303.120000px;}
.y1d{bottom:307.454400px;}
.ya7{bottom:311.406480px;}
.ya6{bottom:331.560000px;}
.y1c{bottom:336.616560px;}
.y67{bottom:339.300000px;}
.y68{bottom:345.960000px;}
.y1b{bottom:356.770080px;}
.ya5{bottom:362.700000px;}
.y1a{bottom:376.923600px;}
.y61{bottom:382.140000px;}
.y66{bottom:388.783800px;}
.ya4{bottom:405.180000px;}
.y19{bottom:406.085760px;}
.y65{bottom:409.849200px;}
.y64{bottom:430.914600px;}
.ya3{bottom:431.280000px;}
.y18{bottom:444.240000px;}
.ya2{bottom:451.440000px;}
.y63{bottom:451.980000px;}
.ya1{bottom:471.600000px;}
.y17{bottom:474.480000px;}
.y5f{bottom:488.160000px;}
.ya0{bottom:491.961600px;}
.y60{bottom:494.820000px;}
.y16{bottom:516.060000px;}
.y9f{bottom:521.653680px;}
.y5a{bottom:531.000000px;}
.y5e{bottom:537.649200px;}
.y15{bottom:545.402160px;}
.y9e{bottom:551.892240px;}
.y5d{bottom:558.714600px;}
.y14{bottom:568.619280px;}
.y9d{bottom:572.045760px;}
.y5c{bottom:579.780000px;}
.y8d{bottom:581.762880px;}
.y13{bottom:591.836400px;}
.y8c{bottom:594.541440px;}
.y41{bottom:598.320000px;}
.y9c{bottom:601.920000px;}
.y8b{bottom:607.320000px;}
.y12{bottom:614.871360px;}
.y56{bottom:615.960000px;}
.y8a{bottom:617.940000px;}
.y59{bottom:622.614600px;}
.y9b{bottom:631.980000px;}
.y40{bottom:636.840000px;}
.y7f{bottom:639.720000px;}
.y58{bottom:643.680000px;}
.y88{bottom:643.860000px;}
.y11{bottom:647.097120px;}
.y87{bottom:662.938560px;}
.y3f{bottom:662.940000px;}
.y9a{bottom:663.120000px;}
.y10{bottom:679.322880px;}
.y54{bottom:679.860000px;}
.y39{bottom:681.300000px;}
.y86{bottom:682.016940px;}
.y55{bottom:686.520000px;}
.y85{bottom:701.095320px;}
.yf{bottom:702.540000px;}
.y3e{bottom:704.340000px;}
.y99{bottom:705.060000px;}
.y84{bottom:720.173700px;}
.y4e{bottom:722.880000px;}
.y53{bottom:729.343800px;}
.y3d{bottom:731.700000px;}
.ye{bottom:732.780000px;}
.y83{bottom:739.252080px;}
.y98{bottom:741.985920px;}
.y52{bottom:750.409200px;}
.y3c{bottom:750.780000px;}
.y82{bottom:761.034600px;}
.y97{bottom:762.139440px;}
.y3b{bottom:769.860000px;}
.y51{bottom:771.474600px;}
.yd{bottom:774.180000px;}
.y81{bottom:782.100000px;}
.y96{bottom:782.292960px;}
.y50{bottom:792.540000px;}
.y34{bottom:793.260000px;}
.y36{bottom:799.200000px;}
.y38{bottom:801.720000px;}
.y95{bottom:802.446480px;}
.yc{bottom:809.640000px;}
.y7b{bottom:818.460000px;}
.y37{bottom:820.080000px;}
.y94{bottom:822.600000px;}
.y7e{bottom:825.103080px;}
.y4c{bottom:828.900000px;}
.yb{bottom:829.800000px;}
.y4d{bottom:835.560000px;}
.y2b{bottom:839.160000px;}
.y7d{bottom:846.168480px;}
.y93{bottom:852.840000px;}
.y32{bottom:855.900000px;}
.y7c{bottom:867.233880px;}
.ya{bottom:867.966480px;}
.y49{bottom:871.740000px;}
.y31{bottom:874.080000px;}
.y4b{bottom:878.400000px;}
.y9{bottom:888.120000px;}
.y30{bottom:892.440000px;}
.y92{bottom:895.320000px;}
.y2f{bottom:911.340000px;}
.y47{bottom:914.580000px;}
.y79{bottom:924.480000px;}
.y8{bottom:928.247760px;}
.y2e{bottom:931.500000px;}
.y91{bottom:933.498720px;}
.y77{bottom:946.260000px;}
.y46{bottom:946.623600px;}
.y78{bottom:952.920000px;}
.y7{bottom:957.598200px;}
.y28{bottom:967.320000px;}
.y45{bottom:968.400000px;}
.y90{bottom:971.652960px;}
.y75{bottom:989.100000px;}
.y44{bottom:990.180000px;}
.y8f{bottom:991.806480px;}
.y6{bottom:1004.760000px;}
.y27{bottom:1008.360000px;}
.y72{bottom:1010.880000px;}
.y43{bottom:1011.780000px;}
.y8e{bottom:1011.960000px;}
.y74{bottom:1017.534600px;}
.y2{bottom:1032.120000px;}
.y73{bottom:1038.600000px;}
.y26{bottom:1038.960000px;}
.y42{bottom:1051.920000px;}
.y25{bottom:1059.120000px;}
.y1{bottom:1076.220000px;}
.y24{bottom:1079.286480px;}
.y23{bottom:1099.440000px;}
.h9{height:18.180000px;}
.h11{height:18.360000px;}
.h19{height:21.060000px;}
.h3{height:22.498500px;}
.h12{height:25.198500px;}
.hd{height:34.439766px;}
.h1b{height:39.830273px;}
.h13{height:42.120000px;}
.h15{height:42.894141px;}
.h5{height:44.534180px;}
.he{height:45.900000px;}
.ha{height:49.284492px;}
.hc{height:50.312812px;}
.h2{height:54.628594px;}
.h8{height:59.378906px;}
.h10{height:62.327813px;}
.h16{height:63.180000px;}
.h1{height:67.453945px;}
.h7{height:69.086250px;}
.h1c{height:69.398440px;}
.h6{height:69.473320px;}
.h4{height:78.973945px;}
.h17{height:84.240000px;}
.h14{height:105.118500px;}
.h18{height:105.300000px;}
.hf{height:111.960000px;}
.hb{height:128.160000px;}
.h1a{height:177.840000px;}
.h0{height:1188.000000px;}
.w2{width:71.100000px;}
.w4{width:81.360000px;}
.w1{width:216.000000px;}
.w5{width:296.818500px;}
.w6{width:382.138500px;}
.w3{width:765.538500px;}
.w0{width:918.000000px;}
.xd{left:-14.040000px;}
.x0{left:0.000000px;}
.x11{left:4.680000px;}
.xf{left:8.100000px;}
.x1d{left:19.620000px;}
.x16{left:35.100000px;}
.x17{left:65.520000px;}
.xe{left:71.100000px;}
.x12{left:79.200000px;}
.x15{left:106.200000px;}
.x4{left:108.000000px;}
.x7{left:124.200000px;}
.x1a{left:132.300000px;}
.x2{left:134.820000px;}
.x19{left:139.140000px;}
.x1c{left:140.397480px;}
.x8{left:156.028320px;}
.x9{left:161.829360px;}
.x13{left:178.200000px;}
.xa{left:188.838720px;}
.x14{left:196.200000px;}
.x6{left:216.540000px;}
.x1{left:295.920000px;}
.x3{left:350.820000px;}
.x18{left:422.100000px;}
.x1b{left:429.840000px;}
.x5{left:566.820000px;}
.xb{left:774.900000px;}
.xc{left:783.180000px;}
.x10{left:836.640000px;}
@media print{
.v1{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.765440pt;}
.lsd{letter-spacing:-0.706560pt;}
.ls12{letter-spacing:-0.529920pt;}
.ls1f{letter-spacing:-0.478080pt;}
.ls36{letter-spacing:-0.412160pt;}
.ls38{letter-spacing:-0.353280pt;}
.ls2b{letter-spacing:-0.265600pt;}
.ls9{letter-spacing:-0.255360pt;}
.ls31{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.235520pt;}
.ls1c{letter-spacing:-0.212480pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.176640pt;}
.ls2c{letter-spacing:-0.159360pt;}
.ls1b{letter-spacing:-0.106240pt;}
.lsb{letter-spacing:-0.058880pt;}
.ls1e{letter-spacing:-0.053120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.053120pt;}
.ls37{letter-spacing:0.058880pt;}
.ls23{letter-spacing:0.066560pt;}
.lse{letter-spacing:0.074880pt;}
.ls22{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.117760pt;}
.lsc{letter-spacing:0.149760pt;}
.ls7{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.159360pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.212480pt;}
.lsf{letter-spacing:0.235520pt;}
.ls13{letter-spacing:0.239360pt;}
.ls1{letter-spacing:0.247296pt;}
.ls35{letter-spacing:0.255360pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.294400pt;}
.ls1a{letter-spacing:0.318720pt;}
.ls2d{letter-spacing:0.350080pt;}
.ls32{letter-spacing:0.371840pt;}
.ls26{letter-spacing:0.592640pt;}
.ls24{letter-spacing:0.706560pt;}
.ls25{letter-spacing:0.796800pt;}
.ls4{letter-spacing:13.601280pt;}
.ls3{letter-spacing:14.190080pt;}
.ls27{letter-spacing:14.234880pt;}
.ls21{letter-spacing:14.874880pt;}
.ls20{letter-spacing:28.112640pt;}
.ls2e{letter-spacing:29.375360pt;}
.ls2f{letter-spacing:29.392640pt;}
.ls6{letter-spacing:34.856960pt;}
.ls34{letter-spacing:44.454400pt;}
.ls2{letter-spacing:50.165760pt;}
.ls33{letter-spacing:52.756480pt;}
.ls16{letter-spacing:56.891520pt;}
.ls17{letter-spacing:56.912640pt;}
.ls18{letter-spacing:753.536000pt;}
.ls30{letter-spacing:759.623680pt;}
.ls0{letter-spacing:1179.034880pt;}
.ws1{word-spacing:-58.880000pt;}
.ws17{word-spacing:-53.120000pt;}
.ws38{word-spacing:-35.328000pt;}
.ws2{word-spacing:-16.997760pt;}
.ws27{word-spacing:-14.656000pt;}
.ws5{word-spacing:-13.601280pt;}
.ws3{word-spacing:-13.542400pt;}
.ws8{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.248000pt;}
.ws4{word-spacing:-13.130240pt;}
.ws0{word-spacing:-13.071360pt;}
.ws39{word-spacing:-12.953600pt;}
.ws37{word-spacing:-12.894720pt;}
.ws6{word-spacing:-12.776960pt;}
.ws29{word-spacing:-12.323840pt;}
.ws16{word-spacing:-12.217600pt;}
.ws2d{word-spacing:-12.164480pt;}
.ws2c{word-spacing:-12.111360pt;}
.ws2e{word-spacing:-12.058240pt;}
.ws18{word-spacing:-12.005120pt;}
.ws28{word-spacing:-11.952000pt;}
.ws2a{word-spacing:-11.898880pt;}
.ws2b{word-spacing:-11.739520pt;}
.ws19{word-spacing:-11.527040pt;}
.ws3c{word-spacing:-2.355200pt;}
.ws42{word-spacing:-1.707520pt;}
.ws13{word-spacing:-0.765440pt;}
.ws23{word-spacing:-0.743680pt;}
.ws34{word-spacing:-0.637440pt;}
.ws14{word-spacing:-0.471040pt;}
.wse{word-spacing:-0.449280pt;}
.ws3b{word-spacing:-0.374400pt;}
.wsd{word-spacing:-0.294400pt;}
.ws25{word-spacing:-0.265600pt;}
.ws3a{word-spacing:-0.255360pt;}
.ws1a{word-spacing:-0.235520pt;}
.ws22{word-spacing:-0.212480pt;}
.ws1d{word-spacing:-0.159360pt;}
.ws12{word-spacing:-0.117760pt;}
.ws30{word-spacing:-0.106240pt;}
.ws41{word-spacing:-0.058880pt;}
.ws20{word-spacing:-0.053120pt;}
.ws9{word-spacing:0.000000pt;}
.ws26{word-spacing:0.053120pt;}
.ws1e{word-spacing:0.106240pt;}
.wsb{word-spacing:0.176640pt;}
.ws24{word-spacing:0.212480pt;}
.ws1b{word-spacing:0.235520pt;}
.ws35{word-spacing:0.240000pt;}
.wsa{word-spacing:0.255360pt;}
.ws31{word-spacing:0.265600pt;}
.ws36{word-spacing:0.288000pt;}
.ws1f{word-spacing:0.294400pt;}
.ws33{word-spacing:0.318720pt;}
.wsc{word-spacing:0.353280pt;}
.ws21{word-spacing:0.371840pt;}
.ws43{word-spacing:0.412160pt;}
.ws32{word-spacing:0.424960pt;}
.ws2f{word-spacing:0.448000pt;}
.ws15{word-spacing:0.529920pt;}
.ws1c{word-spacing:0.765440pt;}
.ws3d{word-spacing:1.000960pt;}
.ws40{word-spacing:3.415040pt;}
.ws11{word-spacing:14.072320pt;}
.wsf{word-spacing:14.248960pt;}
.ws10{word-spacing:14.896640pt;}
.ws3e{word-spacing:23.080960pt;}
.ws3f{word-spacing:23.257600pt;}
._5{margin-left:-6.853632pt;}
._3{margin-left:-4.798720pt;}
._2{margin-left:-3.651968pt;}
._4{margin-left:-2.590720pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.242752pt;}
._6{width:14.234880pt;}
._7{width:15.514880pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.560000pt;}
.y2a{bottom:3.520000pt;}
.y89{bottom:3.680000pt;}
.y29{bottom:4.800000pt;}
.y76{bottom:5.920000pt;}
.y4{bottom:6.080000pt;}
.y48{bottom:7.200000pt;}
.y7a{bottom:7.360000pt;}
.y4a{bottom:24.640000pt;}
.y35{bottom:29.280000pt;}
.y57{bottom:43.360000pt;}
.y5{bottom:49.760000pt;}
.y5b{bottom:62.080000pt;}
.y3{bottom:63.680000pt;}
.y4f{bottom:80.640000pt;}
.y62{bottom:80.800000pt;}
.y3a{bottom:88.000000pt;}
.y2d{bottom:100.000000pt;}
.y2c{bottom:102.400000pt;}
.y70{bottom:131.040000pt;}
.y71{bottom:136.960000pt;}
.y80{bottom:145.280000pt;}
.y22{bottom:159.840000pt;}
.y6b{bottom:169.280000pt;}
.yab{bottom:172.480000pt;}
.y6f{bottom:175.185600pt;}
.y21{bottom:185.782400pt;}
.y6e{bottom:193.910400pt;}
.yaa{bottom:198.238080pt;}
.y20{bottom:203.696640pt;}
.y6d{bottom:212.635200pt;}
.ya9{bottom:224.160000pt;}
.y1f{bottom:229.456640pt;}
.y6c{bottom:231.360000pt;}
.ya8{bottom:250.883840pt;}
.y1e{bottom:255.378560pt;}
.y69{bottom:263.520000pt;}
.y6a{bottom:269.440000pt;}
.y1d{bottom:273.292800pt;}
.ya7{bottom:276.805760pt;}
.ya6{bottom:294.720000pt;}
.y1c{bottom:299.214720pt;}
.y67{bottom:301.600000pt;}
.y68{bottom:307.520000pt;}
.y1b{bottom:317.128960pt;}
.ya5{bottom:322.400000pt;}
.y1a{bottom:335.043200pt;}
.y61{bottom:339.680000pt;}
.y66{bottom:345.585600pt;}
.ya4{bottom:360.160000pt;}
.y19{bottom:360.965120pt;}
.y65{bottom:364.310400pt;}
.y64{bottom:383.035200pt;}
.ya3{bottom:383.360000pt;}
.y18{bottom:394.880000pt;}
.ya2{bottom:401.280000pt;}
.y63{bottom:401.760000pt;}
.ya1{bottom:419.200000pt;}
.y17{bottom:421.760000pt;}
.y5f{bottom:433.920000pt;}
.ya0{bottom:437.299200pt;}
.y60{bottom:439.840000pt;}
.y16{bottom:458.720000pt;}
.y9f{bottom:463.692160pt;}
.y5a{bottom:472.000000pt;}
.y5e{bottom:477.910400pt;}
.y15{bottom:484.801920pt;}
.y9e{bottom:490.570880pt;}
.y5d{bottom:496.635200pt;}
.y14{bottom:505.439360pt;}
.y9d{bottom:508.485120pt;}
.y5c{bottom:515.360000pt;}
.y8d{bottom:517.122560pt;}
.y13{bottom:526.076800pt;}
.y8c{bottom:528.481280pt;}
.y41{bottom:531.840000pt;}
.y9c{bottom:535.040000pt;}
.y8b{bottom:539.840000pt;}
.y12{bottom:546.552320pt;}
.y56{bottom:547.520000pt;}
.y8a{bottom:549.280000pt;}
.y59{bottom:553.435200pt;}
.y9b{bottom:561.760000pt;}
.y40{bottom:566.080000pt;}
.y7f{bottom:568.640000pt;}
.y58{bottom:572.160000pt;}
.y88{bottom:572.320000pt;}
.y11{bottom:575.197440pt;}
.y87{bottom:589.278720pt;}
.y3f{bottom:589.280000pt;}
.y9a{bottom:589.440000pt;}
.y10{bottom:603.842560pt;}
.y54{bottom:604.320000pt;}
.y39{bottom:605.600000pt;}
.y86{bottom:606.237280pt;}
.y55{bottom:610.240000pt;}
.y85{bottom:623.195840pt;}
.yf{bottom:624.480000pt;}
.y3e{bottom:626.080000pt;}
.y99{bottom:626.720000pt;}
.y84{bottom:640.154400pt;}
.y4e{bottom:642.560000pt;}
.y53{bottom:648.305600pt;}
.y3d{bottom:650.400000pt;}
.ye{bottom:651.360000pt;}
.y83{bottom:657.112960pt;}
.y98{bottom:659.543040pt;}
.y52{bottom:667.030400pt;}
.y3c{bottom:667.360000pt;}
.y82{bottom:676.475200pt;}
.y97{bottom:677.457280pt;}
.y3b{bottom:684.320000pt;}
.y51{bottom:685.755200pt;}
.yd{bottom:688.160000pt;}
.y81{bottom:695.200000pt;}
.y96{bottom:695.371520pt;}
.y50{bottom:704.480000pt;}
.y34{bottom:705.120000pt;}
.y36{bottom:710.400000pt;}
.y38{bottom:712.640000pt;}
.y95{bottom:713.285760pt;}
.yc{bottom:719.680000pt;}
.y7b{bottom:727.520000pt;}
.y37{bottom:728.960000pt;}
.y94{bottom:731.200000pt;}
.y7e{bottom:733.424960pt;}
.y4c{bottom:736.800000pt;}
.yb{bottom:737.600000pt;}
.y4d{bottom:742.720000pt;}
.y2b{bottom:745.920000pt;}
.y7d{bottom:752.149760pt;}
.y93{bottom:758.080000pt;}
.y32{bottom:760.800000pt;}
.y7c{bottom:770.874560pt;}
.ya{bottom:771.525760pt;}
.y49{bottom:774.880000pt;}
.y31{bottom:776.960000pt;}
.y4b{bottom:780.800000pt;}
.y9{bottom:789.440000pt;}
.y30{bottom:793.280000pt;}
.y92{bottom:795.840000pt;}
.y2f{bottom:810.080000pt;}
.y47{bottom:812.960000pt;}
.y79{bottom:821.760000pt;}
.y8{bottom:825.109120pt;}
.y2e{bottom:828.000000pt;}
.y91{bottom:829.776640pt;}
.y77{bottom:841.120000pt;}
.y46{bottom:841.443200pt;}
.y78{bottom:847.040000pt;}
.y7{bottom:851.198400pt;}
.y28{bottom:859.840000pt;}
.y45{bottom:860.800000pt;}
.y90{bottom:863.691520pt;}
.y75{bottom:879.200000pt;}
.y44{bottom:880.160000pt;}
.y8f{bottom:881.605760pt;}
.y6{bottom:893.120000pt;}
.y27{bottom:896.320000pt;}
.y72{bottom:898.560000pt;}
.y43{bottom:899.360000pt;}
.y8e{bottom:899.520000pt;}
.y74{bottom:904.475200pt;}
.y2{bottom:917.440000pt;}
.y73{bottom:923.200000pt;}
.y26{bottom:923.520000pt;}
.y42{bottom:935.040000pt;}
.y25{bottom:941.440000pt;}
.y1{bottom:956.640000pt;}
.y24{bottom:959.365760pt;}
.y23{bottom:977.280000pt;}
.h9{height:16.160000pt;}
.h11{height:16.320000pt;}
.h19{height:18.720000pt;}
.h3{height:19.998667pt;}
.h12{height:22.398667pt;}
.hd{height:30.613125pt;}
.h1b{height:35.404688pt;}
.h13{height:37.440000pt;}
.h15{height:38.128125pt;}
.h5{height:39.585938pt;}
.he{height:40.800000pt;}
.ha{height:43.808438pt;}
.hc{height:44.722500pt;}
.h2{height:48.558750pt;}
.h8{height:52.781250pt;}
.h10{height:55.402500pt;}
.h16{height:56.160000pt;}
.h1{height:59.959062pt;}
.h7{height:61.410000pt;}
.h1c{height:61.687502pt;}
.h6{height:61.754062pt;}
.h4{height:70.199062pt;}
.h17{height:74.880000pt;}
.h14{height:93.438667pt;}
.h18{height:93.600000pt;}
.hf{height:99.520000pt;}
.hb{height:113.920000pt;}
.h1a{height:158.080000pt;}
.h0{height:1056.000000pt;}
.w2{width:63.200000pt;}
.w4{width:72.320000pt;}
.w1{width:192.000000pt;}
.w5{width:263.838667pt;}
.w6{width:339.678667pt;}
.w3{width:680.478667pt;}
.w0{width:816.000000pt;}
.xd{left:-12.480000pt;}
.x0{left:0.000000pt;}
.x11{left:4.160000pt;}
.xf{left:7.200000pt;}
.x1d{left:17.440000pt;}
.x16{left:31.200000pt;}
.x17{left:58.240000pt;}
.xe{left:63.200000pt;}
.x12{left:70.400000pt;}
.x15{left:94.400000pt;}
.x4{left:96.000000pt;}
.x7{left:110.400000pt;}
.x1a{left:117.600000pt;}
.x2{left:119.840000pt;}
.x19{left:123.680000pt;}
.x1c{left:124.797760pt;}
.x8{left:138.691840pt;}
.x9{left:143.848320pt;}
.x13{left:158.400000pt;}
.xa{left:167.856640pt;}
.x14{left:174.400000pt;}
.x6{left:192.480000pt;}
.x1{left:263.040000pt;}
.x3{left:311.840000pt;}
.x18{left:375.200000pt;}
.x1b{left:382.080000pt;}
.x5{left:503.840000pt;}
.xb{left:688.800000pt;}
.xc{left:696.160000pt;}
.x10{left:743.680000pt;}
}




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