
    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_bc0dae4d131003c5cf3aef0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_30377d3c47e0ed6b734b8d42.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_b5af9b960a82507b38b1ff58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_6af5b6d17c0309f8b057779e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e1273e5595648f5a24ea0d9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_56e59b1f1bbcd0eb1fdb52e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls2e{letter-spacing:-0.718272px;}
.ls3{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.010800px;}
.ls3a{letter-spacing:0.012000px;}
.ls18{letter-spacing:0.012600px;}
.lsb{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.021600px;}
.ls31{letter-spacing:0.024180px;}
.ls37{letter-spacing:0.125400px;}
.ls8{letter-spacing:0.240540px;}
.ls24{letter-spacing:0.280800px;}
.ls39{letter-spacing:0.298080px;}
.ls16{letter-spacing:0.318600px;}
.ls2c{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.361200px;}
.ls19{letter-spacing:0.367800px;}
.ls7{letter-spacing:0.393000px;}
.ls29{letter-spacing:0.401760px;}
.ls25{letter-spacing:0.431568px;}
.ls34{letter-spacing:0.452400px;}
.ls36{letter-spacing:0.459000px;}
.ls22{letter-spacing:0.477360px;}
.ls2a{letter-spacing:0.479520px;}
.ls1a{letter-spacing:0.505440px;}
.ls20{letter-spacing:0.527472px;}
.ls26{letter-spacing:0.557280px;}
.ls23{letter-spacing:0.561600px;}
.ls30{letter-spacing:0.597600px;}
.ls21{letter-spacing:0.600000px;}
.ls27{letter-spacing:0.602640px;}
.ls1f{letter-spacing:0.616080px;}
.lsf{letter-spacing:0.616800px;}
.ls1b{letter-spacing:0.617760px;}
.lsc{letter-spacing:0.715800px;}
.ls15{letter-spacing:0.718272px;}
.ls12{letter-spacing:0.722304px;}
.ls2d{letter-spacing:0.797040px;}
.ls28{letter-spacing:0.874800px;}
.ls2b{letter-spacing:0.920160px;}
.lse{letter-spacing:0.950400px;}
.ls6{letter-spacing:1.348800px;}
.ls1d{letter-spacing:1.860600px;}
.ls1c{letter-spacing:1.861200px;}
.ls35{letter-spacing:2.182800px;}
.ls5{letter-spacing:2.920800px;}
.ls33{letter-spacing:2.937600px;}
.ls2f{letter-spacing:3.509700px;}
.ls32{letter-spacing:3.833520px;}
.ls38{letter-spacing:4.328400px;}
.ls13{letter-spacing:8.928000px;}
.ls1{letter-spacing:9.720600px;}
.ls11{letter-spacing:9.831960px;}
.ls10{letter-spacing:12.969660px;}
.ls3b{letter-spacing:13.267200px;}
.lsd{letter-spacing:16.901400px;}
.ls17{letter-spacing:18.924600px;}
.ls4{letter-spacing:22.878000px;}
.ls14{letter-spacing:25.516200px;}
.ls0{letter-spacing:194.399400px;}
.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;}
}
.ws3{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.985600px;}
.wsb{word-spacing:-16.997040px;}
.ws9{word-spacing:-14.657760px;}
.ws8{word-spacing:-14.601600px;}
.ws7{word-spacing:-14.545440px;}
.wsa{word-spacing:-14.320800px;}
.ws5{word-spacing:-12.602304px;}
.ws2{word-spacing:-11.880000px;}
.ws6{word-spacing:-11.158272px;}
.ws4{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.721728px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-194.399340px;}
._15{margin-left:-10.799400px;}
._17{margin-left:-1.008000px;}
._8{width:1.497600px;}
._7{width:2.534400px;}
._10{width:3.974400px;}
._f{width:5.112000px;}
._e{width:6.336000px;}
._d{width:7.970400px;}
._c{width:9.028800px;}
._6{width:10.339200px;}
._11{width:11.347200px;}
._a{width:12.427200px;}
._5{width:13.723200px;}
._0{width:14.918400px;}
._9{width:16.365600px;}
._12{width:19.058400px;}
._4{width:20.878380px;}
._b{width:21.945840px;}
._13{width:23.745360px;}
._16{width:25.257600px;}
._1a{width:27.072000px;}
._14{width:28.800000px;}
._19{width:30.125460px;}
._18{width:32.097600px;}
._1b{width:33.235200px;}
._1c{width:34.315200px;}
._1d{width:44.524800px;}
._3{width:87.765300px;}
._2{width:194.399460px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:53.280000px;}
.fs3{font-size:56.160000px;}
.fs5{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.319985px;}
.y2{bottom:5.040015px;}
.y1{bottom:52.199985px;}
.y3{bottom:52.920015px;}
.y4e{bottom:58.320030px;}
.ya6{bottom:62.280030px;}
.y71{bottom:62.640030px;}
.y53{bottom:66.600015px;}
.y4d{bottom:78.840030px;}
.y79{bottom:87.120015px;}
.y25{bottom:92.520015px;}
.ya5{bottom:93.240030px;}
.y70{bottom:93.600015px;}
.y4c{bottom:99.720015px;}
.y51{bottom:108.000015px;}
.y4b{bottom:120.240015px;}
.y24{bottom:123.840015px;}
.ya4{bottom:124.200015px;}
.y6f{bottom:124.560015px;}
.y52{bottom:128.520015px;}
.y4a{bottom:141.120015px;}
.y7c{bottom:149.400015px;}
.y23{bottom:154.800015px;}
.ya3{bottom:155.520015px;}
.y6e{bottom:155.880015px;}
.y78{bottom:156.600015px;}
.y49{bottom:161.640015px;}
.ya9{bottom:169.920015px;}
.y48{bottom:182.520015px;}
.yed{bottom:185.760015px;}
.y22{bottom:186.120015px;}
.ya2{bottom:186.480015px;}
.y6d{bottom:186.840015px;}
.yee{bottom:187.200015px;}
.y77{bottom:187.560015px;}
.y8f{bottom:190.800015px;}
.y47{bottom:203.040015px;}
.ya8{bottom:211.320015px;}
.yec{bottom:216.720015px;}
.ye1{bottom:217.080015px;}
.y21{bottom:217.440015px;}
.y6c{bottom:217.800015px;}
.y76{bottom:218.520015px;}
.y46{bottom:223.920015px;}
.ya7{bottom:232.200015px;}
.y45{bottom:244.440015px;}
.yeb{bottom:248.040015px;}
.y20{bottom:248.400015px;}
.y6b{bottom:248.760015px;}
.y75{bottom:249.480015px;}
.ydf{bottom:252.720015px;}
.y44{bottom:265.320015px;}
.y50{bottom:273.600015px;}
.y8e{bottom:278.280015px;}
.ycd{bottom:279.000015px;}
.y1f{bottom:279.360015px;}
.ya1{bottom:279.720015px;}
.y6a{bottom:280.080015px;}
.y74{bottom:280.440015px;}
.yce{bottom:280.800015px;}
.y43{bottom:285.840015px;}
.ydb{bottom:294.120015px;}
.y42{bottom:306.720015px;}
.y8d{bottom:309.600015px;}
.ycc{bottom:309.960015px;}
.ye0{bottom:310.320015px;}
.ya0{bottom:310.680015px;}
.y69{bottom:311.040015px;}
.y1e{bottom:311.400015px;}
.y73{bottom:311.760015px;}
.ye6{bottom:315.000015px;}
.y41{bottom:327.240015px;}
.y7b{bottom:335.520015px;}
.y8c{bottom:340.920015px;}
.ycb{bottom:341.280015px;}
.y9f{bottom:341.640015px;}
.y68{bottom:342.000015px;}
.y1d{bottom:342.360015px;}
.y72{bottom:342.720015px;}
.y40{bottom:348.120015px;}
.y3f{bottom:368.640015px;}
.y8b{bottom:371.880015px;}
.yca{bottom:372.240015px;}
.y9e{bottom:372.600015px;}
.y67{bottom:372.960015px;}
.y1c{bottom:373.680015px;}
.yda{bottom:376.920015px;}
.y3e{bottom:389.520015px;}
.yaa{bottom:397.800015px;}
.y8a{bottom:403.200015px;}
.y9d{bottom:403.920015px;}
.y66{bottom:404.280015px;}
.y4f{bottom:404.640015px;}
.y1b{bottom:405.000015px;}
.y3d{bottom:410.040015px;}
.ybc{bottom:418.320015px;}
.y3c{bottom:430.920015px;}
.yd9{bottom:431.640015px;}
.yc9{bottom:434.160015px;}
.y89{bottom:434.520015px;}
.y9c{bottom:434.880015px;}
.y65{bottom:435.240015px;}
.y7a{bottom:435.600015px;}
.y1a{bottom:435.960015px;}
.y3b{bottom:451.440015px;}
.ybb{bottom:459.720015px;}
.yd8{bottom:462.960015px;}
.yea{bottom:465.120015px;}
.y88{bottom:465.480015px;}
.y9b{bottom:465.840015px;}
.y64{bottom:466.200015px;}
.y19{bottom:466.920015px;}
.yba{bottom:472.320015px;}
.y3a{bottom:480.600015px;}
.y39{bottom:492.840015px;}
.yd7{bottom:493.920015px;}
.ye9{bottom:496.080015px;}
.y87{bottom:496.440015px;}
.y9a{bottom:496.800015px;}
.y63{bottom:497.160015px;}
.ye5{bottom:497.520015px;}
.y18{bottom:497.880015px;}
.yc1{bottom:513.720015px;}
.yb9{bottom:523.800015px;}
.yd6{bottom:525.240015px;}
.y38{bottom:526.320015px;}
.yc8{bottom:527.400015px;}
.y99{bottom:527.760015px;}
.y86{bottom:528.120015px;}
.y62{bottom:528.480015px;}
.y17{bottom:528.840015px;}
.yb8{bottom:554.760015px;}
.yd5{bottom:556.560015px;}
.y37{bottom:558.000015px;}
.yc7{bottom:558.360015px;}
.yc0{bottom:558.720015px;}
.y98{bottom:559.080015px;}
.y61{bottom:559.440015px;}
.ye4{bottom:559.800015px;}
.y16{bottom:560.160015px;}
.yb7{bottom:586.080015px;}
.yd4{bottom:587.520015px;}
.y36{bottom:589.320015px;}
.ybf{bottom:589.680015px;}
.y97{bottom:590.040015px;}
.y60{bottom:590.400015px;}
.ye3{bottom:590.760015px;}
.y15{bottom:591.120015px;}
.yb6{bottom:617.040015px;}
.yd3{bottom:618.840015px;}
.ye8{bottom:620.280015px;}
.y35{bottom:620.640015px;}
.y96{bottom:621.000015px;}
.y5f{bottom:621.360015px;}
.y14{bottom:622.080015px;}
.y85{bottom:622.440015px;}
.yb5{bottom:648.000015px;}
.yd2{bottom:650.160015px;}
.y34{bottom:651.600015px;}
.y95{bottom:651.960015px;}
.ybe{bottom:652.320015px;}
.y5e{bottom:652.680015px;}
.y13{bottom:653.040015px;}
.ye2{bottom:653.400015px;}
.y84{bottom:653.760015px;}
.yb4{bottom:677.520015px;}
.yd1{bottom:681.120015px;}
.yc6{bottom:682.560015px;}
.y33{bottom:682.920015px;}
.y94{bottom:683.280015px;}
.y5d{bottom:683.640015px;}
.y83{bottom:684.000015px;}
.y12{bottom:684.360015px;}
.yb3{bottom:705.960015px;}
.yd0{bottom:712.800015px;}
.ye7{bottom:713.520015px;}
.y32{bottom:713.880015px;}
.y93{bottom:714.240015px;}
.y5c{bottom:714.600015px;}
.y82{bottom:714.960015px;}
.y11{bottom:715.320015px;}
.yb2{bottom:734.400015px;}
.ycf{bottom:744.480015px;}
.yc5{bottom:744.840015px;}
.y31{bottom:745.200015px;}
.y5b{bottom:745.560015px;}
.y81{bottom:745.920015px;}
.y10{bottom:746.280015px;}
.yb1{bottom:762.840015px;}
.yc4{bottom:775.800015px;}
.y92{bottom:776.160015px;}
.y30{bottom:776.520015px;}
.y5a{bottom:776.880015px;}
.yf{bottom:777.240015px;}
.yb0{bottom:791.280015px;}
.yc3{bottom:806.760015px;}
.yef{bottom:807.120015px;}
.y2f{bottom:807.480015px;}
.y59{bottom:807.840015px;}
.y80{bottom:808.200015px;}
.ye{bottom:808.560015px;}
.yaf{bottom:819.720015px;}
.yc2{bottom:837.720015px;}
.y91{bottom:838.440015px;}
.y2e{bottom:838.800015px;}
.y7f{bottom:839.160015px;}
.yd{bottom:839.520015px;}
.yae{bottom:848.160015px;}
.yde{bottom:869.400015px;}
.y2d{bottom:869.760015px;}
.y7e{bottom:870.120015px;}
.yc{bottom:870.480015px;}
.yad{bottom:876.600015px;}
.ydd{bottom:900.360015px;}
.y2c{bottom:901.080015px;}
.yb{bottom:901.440015px;}
.ybd{bottom:901.800015px;}
.yac{bottom:905.400015px;}
.ydc{bottom:931.680015px;}
.y58{bottom:932.040015px;}
.y2b{bottom:932.400015px;}
.ya{bottom:932.760015px;}
.yab{bottom:933.840015px;}
.y2a{bottom:962.640015px;}
.y57{bottom:963.000015px;}
.y7d{bottom:963.360015px;}
.y9{bottom:963.720015px;}
.y56{bottom:993.960015px;}
.y29{bottom:994.320015px;}
.y8{bottom:994.680015px;}
.y90{bottom:995.040015px;}
.y55{bottom:1024.920015px;}
.y7{bottom:1025.640015px;}
.y28{bottom:1026.360015px;}
.y54{bottom:1056.240015px;}
.y6{bottom:1056.960015px;}
.y27{bottom:1057.320015px;}
.y5{bottom:1087.920015px;}
.y26{bottom:1088.640015px;}
.h4{height:20.880000px;}
.h8{height:41.696016px;}
.h5{height:49.289063px;}
.h6{height:49.464844px;}
.hd{height:49.992188px;}
.hb{height:56.858203px;}
.h9{height:58.848047px;}
.ha{height:58.929609px;}
.h3{height:63.175781px;}
.he{height:66.114844px;}
.hc{height:66.881953px;}
.h7{height:74.816016px;}
.h2{height:1197.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:9.000000px;}
.w4{width:18.000000px;}
.w2{width:865.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x2{left:113.760135px;}
.x12{left:126.510135px;}
.x10{left:135.000000px;}
.x13{left:139.260150px;}
.xf{left:140.760150px;}
.x11{left:156.285300px;}
.x4{left:166.860000px;}
.x9{left:188.160300px;}
.x7{left:219.960150px;}
.xa{left:347.917950px;}
.xe{left:351.770850px;}
.xd{left:358.516800px;}
.xb{left:361.299750px;}
.xc{left:372.000000px;}
.x6{left:419.159850px;}
.x8{left:437.220000px;}
.x3{left:441.900000px;}
.x5{left:445.709850px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls2e{letter-spacing:-0.638464pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.009600pt;}
.ls3a{letter-spacing:0.010667pt;}
.ls18{letter-spacing:0.011200pt;}
.lsb{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.019200pt;}
.ls31{letter-spacing:0.021493pt;}
.ls37{letter-spacing:0.111467pt;}
.ls8{letter-spacing:0.213813pt;}
.ls24{letter-spacing:0.249600pt;}
.ls39{letter-spacing:0.264960pt;}
.ls16{letter-spacing:0.283200pt;}
.ls2c{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.321067pt;}
.ls19{letter-spacing:0.326933pt;}
.ls7{letter-spacing:0.349333pt;}
.ls29{letter-spacing:0.357120pt;}
.ls25{letter-spacing:0.383616pt;}
.ls34{letter-spacing:0.402133pt;}
.ls36{letter-spacing:0.408000pt;}
.ls22{letter-spacing:0.424320pt;}
.ls2a{letter-spacing:0.426240pt;}
.ls1a{letter-spacing:0.449280pt;}
.ls20{letter-spacing:0.468864pt;}
.ls26{letter-spacing:0.495360pt;}
.ls23{letter-spacing:0.499200pt;}
.ls30{letter-spacing:0.531200pt;}
.ls21{letter-spacing:0.533333pt;}
.ls27{letter-spacing:0.535680pt;}
.ls1f{letter-spacing:0.547627pt;}
.lsf{letter-spacing:0.548267pt;}
.ls1b{letter-spacing:0.549120pt;}
.lsc{letter-spacing:0.636267pt;}
.ls15{letter-spacing:0.638464pt;}
.ls12{letter-spacing:0.642048pt;}
.ls2d{letter-spacing:0.708480pt;}
.ls28{letter-spacing:0.777600pt;}
.ls2b{letter-spacing:0.817920pt;}
.lse{letter-spacing:0.844800pt;}
.ls6{letter-spacing:1.198933pt;}
.ls1d{letter-spacing:1.653867pt;}
.ls1c{letter-spacing:1.654400pt;}
.ls35{letter-spacing:1.940267pt;}
.ls5{letter-spacing:2.596267pt;}
.ls33{letter-spacing:2.611200pt;}
.ls2f{letter-spacing:3.119733pt;}
.ls32{letter-spacing:3.407573pt;}
.ls38{letter-spacing:3.847467pt;}
.ls13{letter-spacing:7.936000pt;}
.ls1{letter-spacing:8.640533pt;}
.ls11{letter-spacing:8.739520pt;}
.ls10{letter-spacing:11.528587pt;}
.ls3b{letter-spacing:11.793067pt;}
.lsd{letter-spacing:15.023467pt;}
.ls17{letter-spacing:16.821867pt;}
.ls4{letter-spacing:20.336000pt;}
.ls14{letter-spacing:22.681067pt;}
.ls0{letter-spacing:172.799467pt;}
.ws3{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.987200pt;}
.wsb{word-spacing:-15.108480pt;}
.ws9{word-spacing:-13.029120pt;}
.ws8{word-spacing:-12.979200pt;}
.ws7{word-spacing:-12.929280pt;}
.wsa{word-spacing:-12.729600pt;}
.ws5{word-spacing:-11.202048pt;}
.ws2{word-spacing:-10.560000pt;}
.ws6{word-spacing:-9.918464pt;}
.ws4{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.641536pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-172.799413pt;}
._15{margin-left:-9.599467pt;}
._17{margin-left:-0.896000pt;}
._8{width:1.331200pt;}
._7{width:2.252800pt;}
._10{width:3.532800pt;}
._f{width:4.544000pt;}
._e{width:5.632000pt;}
._d{width:7.084800pt;}
._c{width:8.025600pt;}
._6{width:9.190400pt;}
._11{width:10.086400pt;}
._a{width:11.046400pt;}
._5{width:12.198400pt;}
._0{width:13.260800pt;}
._9{width:14.547200pt;}
._12{width:16.940800pt;}
._4{width:18.558560pt;}
._b{width:19.507413pt;}
._13{width:21.106987pt;}
._16{width:22.451200pt;}
._1a{width:24.064000pt;}
._14{width:25.600000pt;}
._19{width:26.778187pt;}
._18{width:28.531200pt;}
._1b{width:29.542400pt;}
._1c{width:30.502400pt;}
._1d{width:39.577600pt;}
._3{width:78.013600pt;}
._2{width:172.799520pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:47.360000pt;}
.fs3{font-size:49.920000pt;}
.fs5{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.839987pt;}
.y2{bottom:4.480013pt;}
.y1{bottom:46.399987pt;}
.y3{bottom:47.040013pt;}
.y4e{bottom:51.840027pt;}
.ya6{bottom:55.360027pt;}
.y71{bottom:55.680027pt;}
.y53{bottom:59.200013pt;}
.y4d{bottom:70.080027pt;}
.y79{bottom:77.440013pt;}
.y25{bottom:82.240013pt;}
.ya5{bottom:82.880027pt;}
.y70{bottom:83.200013pt;}
.y4c{bottom:88.640013pt;}
.y51{bottom:96.000013pt;}
.y4b{bottom:106.880013pt;}
.y24{bottom:110.080013pt;}
.ya4{bottom:110.400013pt;}
.y6f{bottom:110.720013pt;}
.y52{bottom:114.240013pt;}
.y4a{bottom:125.440013pt;}
.y7c{bottom:132.800013pt;}
.y23{bottom:137.600013pt;}
.ya3{bottom:138.240013pt;}
.y6e{bottom:138.560013pt;}
.y78{bottom:139.200013pt;}
.y49{bottom:143.680013pt;}
.ya9{bottom:151.040013pt;}
.y48{bottom:162.240013pt;}
.yed{bottom:165.120013pt;}
.y22{bottom:165.440013pt;}
.ya2{bottom:165.760013pt;}
.y6d{bottom:166.080013pt;}
.yee{bottom:166.400013pt;}
.y77{bottom:166.720013pt;}
.y8f{bottom:169.600013pt;}
.y47{bottom:180.480013pt;}
.ya8{bottom:187.840013pt;}
.yec{bottom:192.640013pt;}
.ye1{bottom:192.960013pt;}
.y21{bottom:193.280013pt;}
.y6c{bottom:193.600013pt;}
.y76{bottom:194.240013pt;}
.y46{bottom:199.040013pt;}
.ya7{bottom:206.400013pt;}
.y45{bottom:217.280013pt;}
.yeb{bottom:220.480013pt;}
.y20{bottom:220.800013pt;}
.y6b{bottom:221.120013pt;}
.y75{bottom:221.760013pt;}
.ydf{bottom:224.640013pt;}
.y44{bottom:235.840013pt;}
.y50{bottom:243.200013pt;}
.y8e{bottom:247.360013pt;}
.ycd{bottom:248.000013pt;}
.y1f{bottom:248.320013pt;}
.ya1{bottom:248.640013pt;}
.y6a{bottom:248.960013pt;}
.y74{bottom:249.280013pt;}
.yce{bottom:249.600013pt;}
.y43{bottom:254.080013pt;}
.ydb{bottom:261.440013pt;}
.y42{bottom:272.640013pt;}
.y8d{bottom:275.200013pt;}
.ycc{bottom:275.520013pt;}
.ye0{bottom:275.840013pt;}
.ya0{bottom:276.160013pt;}
.y69{bottom:276.480013pt;}
.y1e{bottom:276.800013pt;}
.y73{bottom:277.120013pt;}
.ye6{bottom:280.000013pt;}
.y41{bottom:290.880013pt;}
.y7b{bottom:298.240013pt;}
.y8c{bottom:303.040013pt;}
.ycb{bottom:303.360013pt;}
.y9f{bottom:303.680013pt;}
.y68{bottom:304.000013pt;}
.y1d{bottom:304.320013pt;}
.y72{bottom:304.640013pt;}
.y40{bottom:309.440013pt;}
.y3f{bottom:327.680013pt;}
.y8b{bottom:330.560013pt;}
.yca{bottom:330.880013pt;}
.y9e{bottom:331.200013pt;}
.y67{bottom:331.520013pt;}
.y1c{bottom:332.160013pt;}
.yda{bottom:335.040013pt;}
.y3e{bottom:346.240013pt;}
.yaa{bottom:353.600013pt;}
.y8a{bottom:358.400013pt;}
.y9d{bottom:359.040013pt;}
.y66{bottom:359.360013pt;}
.y4f{bottom:359.680013pt;}
.y1b{bottom:360.000013pt;}
.y3d{bottom:364.480013pt;}
.ybc{bottom:371.840013pt;}
.y3c{bottom:383.040013pt;}
.yd9{bottom:383.680013pt;}
.yc9{bottom:385.920013pt;}
.y89{bottom:386.240013pt;}
.y9c{bottom:386.560013pt;}
.y65{bottom:386.880013pt;}
.y7a{bottom:387.200013pt;}
.y1a{bottom:387.520013pt;}
.y3b{bottom:401.280013pt;}
.ybb{bottom:408.640013pt;}
.yd8{bottom:411.520013pt;}
.yea{bottom:413.440013pt;}
.y88{bottom:413.760013pt;}
.y9b{bottom:414.080013pt;}
.y64{bottom:414.400013pt;}
.y19{bottom:415.040013pt;}
.yba{bottom:419.840013pt;}
.y3a{bottom:427.200013pt;}
.y39{bottom:438.080013pt;}
.yd7{bottom:439.040013pt;}
.ye9{bottom:440.960013pt;}
.y87{bottom:441.280013pt;}
.y9a{bottom:441.600013pt;}
.y63{bottom:441.920013pt;}
.ye5{bottom:442.240013pt;}
.y18{bottom:442.560013pt;}
.yc1{bottom:456.640013pt;}
.yb9{bottom:465.600013pt;}
.yd6{bottom:466.880013pt;}
.y38{bottom:467.840013pt;}
.yc8{bottom:468.800013pt;}
.y99{bottom:469.120013pt;}
.y86{bottom:469.440013pt;}
.y62{bottom:469.760013pt;}
.y17{bottom:470.080013pt;}
.yb8{bottom:493.120013pt;}
.yd5{bottom:494.720013pt;}
.y37{bottom:496.000013pt;}
.yc7{bottom:496.320013pt;}
.yc0{bottom:496.640013pt;}
.y98{bottom:496.960013pt;}
.y61{bottom:497.280013pt;}
.ye4{bottom:497.600013pt;}
.y16{bottom:497.920013pt;}
.yb7{bottom:520.960013pt;}
.yd4{bottom:522.240013pt;}
.y36{bottom:523.840013pt;}
.ybf{bottom:524.160013pt;}
.y97{bottom:524.480013pt;}
.y60{bottom:524.800013pt;}
.ye3{bottom:525.120013pt;}
.y15{bottom:525.440013pt;}
.yb6{bottom:548.480013pt;}
.yd3{bottom:550.080013pt;}
.ye8{bottom:551.360013pt;}
.y35{bottom:551.680013pt;}
.y96{bottom:552.000013pt;}
.y5f{bottom:552.320013pt;}
.y14{bottom:552.960013pt;}
.y85{bottom:553.280013pt;}
.yb5{bottom:576.000013pt;}
.yd2{bottom:577.920013pt;}
.y34{bottom:579.200013pt;}
.y95{bottom:579.520013pt;}
.ybe{bottom:579.840013pt;}
.y5e{bottom:580.160013pt;}
.y13{bottom:580.480013pt;}
.ye2{bottom:580.800013pt;}
.y84{bottom:581.120013pt;}
.yb4{bottom:602.240013pt;}
.yd1{bottom:605.440013pt;}
.yc6{bottom:606.720013pt;}
.y33{bottom:607.040013pt;}
.y94{bottom:607.360013pt;}
.y5d{bottom:607.680013pt;}
.y83{bottom:608.000013pt;}
.y12{bottom:608.320013pt;}
.yb3{bottom:627.520013pt;}
.yd0{bottom:633.600013pt;}
.ye7{bottom:634.240013pt;}
.y32{bottom:634.560013pt;}
.y93{bottom:634.880013pt;}
.y5c{bottom:635.200013pt;}
.y82{bottom:635.520013pt;}
.y11{bottom:635.840013pt;}
.yb2{bottom:652.800013pt;}
.ycf{bottom:661.760013pt;}
.yc5{bottom:662.080013pt;}
.y31{bottom:662.400013pt;}
.y5b{bottom:662.720013pt;}
.y81{bottom:663.040013pt;}
.y10{bottom:663.360013pt;}
.yb1{bottom:678.080013pt;}
.yc4{bottom:689.600013pt;}
.y92{bottom:689.920013pt;}
.y30{bottom:690.240013pt;}
.y5a{bottom:690.560013pt;}
.yf{bottom:690.880013pt;}
.yb0{bottom:703.360013pt;}
.yc3{bottom:717.120013pt;}
.yef{bottom:717.440013pt;}
.y2f{bottom:717.760013pt;}
.y59{bottom:718.080013pt;}
.y80{bottom:718.400013pt;}
.ye{bottom:718.720013pt;}
.yaf{bottom:728.640013pt;}
.yc2{bottom:744.640013pt;}
.y91{bottom:745.280013pt;}
.y2e{bottom:745.600013pt;}
.y7f{bottom:745.920013pt;}
.yd{bottom:746.240013pt;}
.yae{bottom:753.920013pt;}
.yde{bottom:772.800013pt;}
.y2d{bottom:773.120013pt;}
.y7e{bottom:773.440013pt;}
.yc{bottom:773.760013pt;}
.yad{bottom:779.200013pt;}
.ydd{bottom:800.320013pt;}
.y2c{bottom:800.960013pt;}
.yb{bottom:801.280013pt;}
.ybd{bottom:801.600013pt;}
.yac{bottom:804.800013pt;}
.ydc{bottom:828.160013pt;}
.y58{bottom:828.480013pt;}
.y2b{bottom:828.800013pt;}
.ya{bottom:829.120013pt;}
.yab{bottom:830.080013pt;}
.y2a{bottom:855.680013pt;}
.y57{bottom:856.000013pt;}
.y7d{bottom:856.320013pt;}
.y9{bottom:856.640013pt;}
.y56{bottom:883.520013pt;}
.y29{bottom:883.840013pt;}
.y8{bottom:884.160013pt;}
.y90{bottom:884.480013pt;}
.y55{bottom:911.040013pt;}
.y7{bottom:911.680013pt;}
.y28{bottom:912.320013pt;}
.y54{bottom:938.880013pt;}
.y6{bottom:939.520013pt;}
.y27{bottom:939.840013pt;}
.y5{bottom:967.040013pt;}
.y26{bottom:967.680013pt;}
.h4{height:18.560000pt;}
.h8{height:37.063125pt;}
.h5{height:43.812500pt;}
.h6{height:43.968750pt;}
.hd{height:44.437500pt;}
.hb{height:50.540625pt;}
.h9{height:52.309375pt;}
.ha{height:52.381875pt;}
.h3{height:56.156250pt;}
.he{height:58.768750pt;}
.hc{height:59.450625pt;}
.h7{height:66.503125pt;}
.h2{height:1064.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.000000pt;}
.w4{width:16.000000pt;}
.w2{width:769.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x2{left:101.120120pt;}
.x12{left:112.453453pt;}
.x10{left:120.000000pt;}
.x13{left:123.786800pt;}
.xf{left:125.120133pt;}
.x11{left:138.920267pt;}
.x4{left:148.320000pt;}
.x9{left:167.253600pt;}
.x7{left:195.520133pt;}
.xa{left:309.260400pt;}
.xe{left:312.685200pt;}
.xd{left:318.681600pt;}
.xb{left:321.155333pt;}
.xc{left:330.666667pt;}
.x6{left:372.586533pt;}
.x8{left:388.640000pt;}
.x3{left:392.800000pt;}
.x5{left:396.186533pt;}
}




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