
    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_6927b07afd479845b14d60d4.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_33430610b94817624fdf2ef6.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_76519919271a3ae79dc4a548.woff')format("woff");}.ff3{font-family:ff3;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cdbfd449936bd766f26f0467.woff')format("woff");}.ff4{font-family:ff4;line-height:0.894531;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_8bd6e00e9599f5512cacc268.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_f48188cdccbab0cc965c84af.woff')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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_7e5c36eeec00c9af0e09dfee.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e2964ac5770438309ffbe3b7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_a04f8087e610f4645169baa8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9b71b29df3a3e2a177f9fcb7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.694824;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_e32d22d8fe22d1c0c9e22e50.woff')format("woff");}.ffb{font-family:ffb;line-height:0.905762;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_de2dff8fd081f0fb38786d62.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.014400px;}
.lse{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.014400px;}
.ls22{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.054432px;}
.ls19{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.069984px;}
.ls1e{letter-spacing:0.077760px;}
.ls6{letter-spacing:0.093312px;}
.ls18{letter-spacing:0.108864px;}
.ls1b{letter-spacing:0.132192px;}
.ls1c{letter-spacing:0.145320px;}
.ls1d{letter-spacing:0.147744px;}
.ls1a{letter-spacing:0.173520px;}
.ls21{letter-spacing:0.186624px;}
.ls1{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.298080px;}
.ls3{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.300600px;}
.ls0{letter-spacing:0.320280px;}
.lsb{letter-spacing:0.323136px;}
.ls12{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.399600px;}
.ls10{letter-spacing:0.401760px;}
.ls13{letter-spacing:0.524880px;}
.lsd{letter-spacing:0.551232px;}
.lsa{letter-spacing:0.570240px;}
.ls4{letter-spacing:0.602640px;}
.lsc{letter-spacing:0.636768px;}
.ls14{letter-spacing:0.680400px;}
.ls9{letter-spacing:0.712800px;}
.ls15{letter-spacing:0.725760px;}
.ls11{letter-spacing:0.797040px;}
.lsf{letter-spacing:0.874800px;}
.ls7{letter-spacing:54.867000px;}
.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;}
}
.ws0{word-spacing:-24.083136px;}
.ws8{word-spacing:-19.548864px;}
.ws3{word-spacing:-19.533312px;}
.ws9{word-spacing:-19.517760px;}
.wsa{word-spacing:-18.036000px;}
.ws6{word-spacing:-18.014400px;}
.wsb{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws2{word-spacing:-16.997040px;}
.ws1{word-spacing:-16.802640px;}
.wsc{word-spacing:-0.209952px;}
.wsd{word-spacing:-0.077760px;}
.ws4{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.425600px;}
._1{width:1.272600px;}
._2{width:846.000000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(52,90,138);}
.fs1{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:13.320000px;}
.y1{bottom:18.000000px;}
.y87{bottom:107.640030px;}
.yb5{bottom:108.720030px;}
.y5b{bottom:112.320015px;}
.y2c{bottom:113.040030px;}
.yd8{bottom:114.120030px;}
.y86{bottom:128.520030px;}
.yb4{bottom:129.600030px;}
.y5a{bottom:133.200000px;}
.y2b{bottom:133.560000px;}
.yfb{bottom:133.920000px;}
.yd7{bottom:134.640000px;}
.y85{bottom:149.040000px;}
.yb3{bottom:150.120000px;}
.y59{bottom:153.720000px;}
.y2a{bottom:154.440000px;}
.yfa{bottom:155.160000px;}
.yd6{bottom:155.520000px;}
.y106{bottom:155.880000px;}
.y84{bottom:169.920000px;}
.yb2{bottom:171.000000px;}
.y101{bottom:172.080000px;}
.y58{bottom:174.600000px;}
.y29{bottom:174.960000px;}
.yd5{bottom:176.040000px;}
.y105{bottom:177.120000px;}
.y83{bottom:190.800000px;}
.yb1{bottom:191.520000px;}
.y57{bottom:195.120000px;}
.y28{bottom:195.840000px;}
.yd4{bottom:196.920000px;}
.y104{bottom:198.360000px;}
.yb0{bottom:212.400000px;}
.y82{bottom:213.480000px;}
.y103{bottom:215.280000px;}
.y56{bottom:216.000000px;}
.y27{bottom:216.360000px;}
.yd3{bottom:217.440000px;}
.yf9{bottom:217.800000px;}
.yaf{bottom:232.920000px;}
.y55{bottom:236.520000px;}
.y26{bottom:237.240000px;}
.yd2{bottom:238.320000px;}
.y81{bottom:250.200000px;}
.yae{bottom:253.800000px;}
.y54{bottom:257.400000px;}
.y25{bottom:257.760000px;}
.yd1{bottom:258.840000px;}
.yf8{bottom:259.200000px;}
.y80{bottom:271.440000px;}
.yad{bottom:274.320000px;}
.y53{bottom:277.920000px;}
.y24{bottom:278.640000px;}
.yd0{bottom:279.720000px;}
.yf7{bottom:280.080000px;}
.y7f{bottom:291.960000px;}
.yac{bottom:295.200000px;}
.y52{bottom:298.440000px;}
.y23{bottom:299.160000px;}
.ycf{bottom:300.240000px;}
.yf6{bottom:300.960000px;}
.y7e{bottom:312.840000px;}
.yab{bottom:315.720000px;}
.y22{bottom:320.040000px;}
.y51{bottom:320.760000px;}
.yce{bottom:321.120000px;}
.yf5{bottom:321.480000px;}
.y7d{bottom:333.360000px;}
.yaa{bottom:336.600000px;}
.y21{bottom:340.560000px;}
.y50{bottom:341.280000px;}
.ycd{bottom:341.640000px;}
.yf4{bottom:342.360000px;}
.y7c{bottom:354.240000px;}
.ya9{bottom:357.120000px;}
.y20{bottom:361.440000px;}
.y4f{bottom:362.160000px;}
.ycc{bottom:362.520000px;}
.yf3{bottom:363.240000px;}
.y7b{bottom:374.760000px;}
.ya8{bottom:378.000000px;}
.y1f{bottom:381.960000px;}
.y4e{bottom:382.680000px;}
.ycb{bottom:383.040000px;}
.yf2{bottom:384.120000px;}
.y7a{bottom:395.640000px;}
.ya7{bottom:398.520000px;}
.y1e{bottom:402.840000px;}
.y4d{bottom:403.560000px;}
.yca{bottom:403.920000px;}
.yf1{bottom:404.640000px;}
.y79{bottom:416.160000px;}
.ya6{bottom:419.400000px;}
.y1d{bottom:423.360000px;}
.y4c{bottom:424.080000px;}
.yc9{bottom:424.440000px;}
.yf0{bottom:425.520000px;}
.y78{bottom:438.120000px;}
.ya5{bottom:439.920000px;}
.y1c{bottom:444.240000px;}
.yc8{bottom:445.320000px;}
.y4b{bottom:446.040000px;}
.yef{bottom:446.400000px;}
.y77{bottom:459.000000px;}
.ya4{bottom:460.800000px;}
.y1b{bottom:464.760000px;}
.yc7{bottom:465.840000px;}
.y4a{bottom:466.920000px;}
.y76{bottom:479.520000px;}
.ya3{bottom:481.320000px;}
.y1a{bottom:485.640000px;}
.yc6{bottom:486.720000px;}
.y49{bottom:487.440000px;}
.yee{bottom:487.800000px;}
.y75{bottom:500.400000px;}
.ya2{bottom:502.200000px;}
.y19{bottom:506.160000px;}
.yc5{bottom:507.240000px;}
.y48{bottom:508.320000px;}
.yed{bottom:508.680000px;}
.y74{bottom:520.920000px;}
.ya1{bottom:522.720000px;}
.y18{bottom:528.120000px;}
.y47{bottom:528.840000px;}
.yec{bottom:529.560000px;}
.y73{bottom:541.800000px;}
.ya0{bottom:543.600000px;}
.yc4{bottom:548.640000px;}
.y17{bottom:549.000000px;}
.y46{bottom:549.720000px;}
.yeb{bottom:550.080000px;}
.y72{bottom:562.320000px;}
.y9f{bottom:564.120000px;}
.y16{bottom:569.520000px;}
.y45{bottom:570.240000px;}
.yea{bottom:570.960000px;}
.y71{bottom:583.200000px;}
.y9e{bottom:585.000000px;}
.yc3{bottom:590.040000px;}
.y15{bottom:590.400000px;}
.y44{bottom:591.120000px;}
.ye9{bottom:591.840000px;}
.y70{bottom:605.160000px;}
.y9d{bottom:605.520000px;}
.y14{bottom:610.920000px;}
.y43{bottom:611.640000px;}
.ye8{bottom:612.720000px;}
.y6f{bottom:626.040000px;}
.y9c{bottom:626.400000px;}
.y13{bottom:631.440000px;}
.y42{bottom:632.160000px;}
.ye7{bottom:633.240000px;}
.y6e{bottom:646.560000px;}
.y9b{bottom:646.920000px;}
.y100{bottom:647.280000px;}
.yc2{bottom:652.320000px;}
.y12{bottom:653.760000px;}
.ye6{bottom:654.120000px;}
.y41{bottom:654.480000px;}
.y6d{bottom:667.080000px;}
.y9a{bottom:667.800000px;}
.yff{bottom:668.160000px;}
.yc1{bottom:672.840000px;}
.y11{bottom:674.280000px;}
.y40{bottom:675.000000px;}
.y99{bottom:688.320000px;}
.yfe{bottom:688.680000px;}
.y6c{bottom:689.400000px;}
.yc0{bottom:693.720000px;}
.y10{bottom:695.160000px;}
.y3f{bottom:695.880000px;}
.y98{bottom:709.200000px;}
.yfd{bottom:709.560000px;}
.y6b{bottom:709.920000px;}
.ybf{bottom:714.240000px;}
.y3e{bottom:716.400000px;}
.yf{bottom:717.120000px;}
.yfc{bottom:726.120000px;}
.y97{bottom:729.720000px;}
.y6a{bottom:730.440000px;}
.ybe{bottom:735.120000px;}
.y3d{bottom:737.280000px;}
.ye{bottom:737.640000px;}
.y96{bottom:750.600000px;}
.y69{bottom:752.760000px;}
.ybd{bottom:755.640000px;}
.y3c{bottom:757.800000px;}
.ye5{bottom:758.160000px;}
.yd{bottom:758.520000px;}
.y95{bottom:771.120000px;}
.y68{bottom:773.280000px;}
.ybc{bottom:776.520000px;}
.y3b{bottom:778.680000px;}
.ye4{bottom:779.040000px;}
.yc{bottom:780.480000px;}
.y94{bottom:792.000000px;}
.y67{bottom:794.160000px;}
.ybb{bottom:797.040000px;}
.y3a{bottom:799.200000px;}
.ye3{bottom:799.560000px;}
.yb{bottom:801.000000px;}
.y93{bottom:812.520000px;}
.y66{bottom:814.680000px;}
.yba{bottom:817.920000px;}
.y39{bottom:820.080000px;}
.ye2{bottom:820.440000px;}
.ya{bottom:823.680000px;}
.y92{bottom:833.400000px;}
.y65{bottom:836.640000px;}
.yb9{bottom:838.440000px;}
.y38{bottom:840.600000px;}
.ye1{bottom:841.320000px;}
.y91{bottom:853.920000px;}
.y64{bottom:857.520000px;}
.yb8{bottom:859.320000px;}
.y9{bottom:860.760000px;}
.y37{bottom:861.480000px;}
.ye0{bottom:862.200000px;}
.y90{bottom:874.800000px;}
.y63{bottom:878.040000px;}
.y8{bottom:879.840000px;}
.y36{bottom:882.360000px;}
.ydf{bottom:882.720000px;}
.y8f{bottom:895.320000px;}
.y7{bottom:898.920000px;}
.yb7{bottom:900.720000px;}
.yde{bottom:903.600000px;}
.y35{bottom:905.040000px;}
.y8e{bottom:915.840000px;}
.y6{bottom:918.000000px;}
.y62{bottom:919.440000px;}
.yb6{bottom:921.240000px;}
.ydd{bottom:924.480000px;}
.y5{bottom:937.080000px;}
.y8d{bottom:938.160000px;}
.y61{bottom:940.320000px;}
.y34{bottom:942.120000px;}
.ydc{bottom:945.000000px;}
.y4{bottom:956.160000px;}
.y8c{bottom:958.680000px;}
.y60{bottom:960.840000px;}
.y33{bottom:962.640000px;}
.y2d{bottom:964.080000px;}
.ydb{bottom:965.880000px;}
.y3{bottom:975.960000px;}
.y8b{bottom:979.200000px;}
.y5f{bottom:981.720000px;}
.y32{bottom:983.520000px;}
.yda{bottom:986.040000px;}
.y8a{bottom:1001.160000px;}
.y5e{bottom:1002.240000px;}
.y2{bottom:1003.680000px;}
.y31{bottom:1004.040000px;}
.yd9{bottom:1008.360000px;}
.y5d{bottom:1023.120000px;}
.y89{bottom:1023.480000px;}
.y30{bottom:1024.920000px;}
.y88{bottom:1044.000000px;}
.y5c{bottom:1044.360000px;}
.y102{bottom:1045.080000px;}
.y2f{bottom:1045.440000px;}
.h4{height:44.455078px;}
.hd{height:47.988281px;}
.hc{height:49.394531px;}
.hb{height:49.464844px;}
.h8{height:49.992188px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h6{height:50.765625px;}
.h5{height:52.700625px;}
.ha{height:53.156250px;}
.h2{height:64.411875px;}
.h9{height:110.519985px;}
.h1{height:1152.000000px;}
.h0{height:1188.000000px;}
.w2{width:108.000000px;}
.w1{width:864.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:27.000000px;}
.x9{left:97.920000px;}
.x6{left:108.000000px;}
.x7{left:135.000000px;}
.x8{left:162.000000px;}
.x5{left:229.680150px;}
.x2{left:247.686000px;}
.x3{left:304.926300px;}
.x4{left:381.112050px;}
.xc{left:432.000000px;}
.xa{left:588.750000px;}
.xb{left:704.024850px;}
.xd{left:756.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.012800pt;}
.lse{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.012800pt;}
.ls22{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.048384pt;}
.ls19{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.062208pt;}
.ls1e{letter-spacing:0.069120pt;}
.ls6{letter-spacing:0.082944pt;}
.ls18{letter-spacing:0.096768pt;}
.ls1b{letter-spacing:0.117504pt;}
.ls1c{letter-spacing:0.129173pt;}
.ls1d{letter-spacing:0.131328pt;}
.ls1a{letter-spacing:0.154240pt;}
.ls21{letter-spacing:0.165888pt;}
.ls1{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.264960pt;}
.ls3{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.267200pt;}
.ls0{letter-spacing:0.284693pt;}
.lsb{letter-spacing:0.287232pt;}
.ls12{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.355200pt;}
.ls10{letter-spacing:0.357120pt;}
.ls13{letter-spacing:0.466560pt;}
.lsd{letter-spacing:0.489984pt;}
.lsa{letter-spacing:0.506880pt;}
.ls4{letter-spacing:0.535680pt;}
.lsc{letter-spacing:0.566016pt;}
.ls14{letter-spacing:0.604800pt;}
.ls9{letter-spacing:0.633600pt;}
.ls15{letter-spacing:0.645120pt;}
.ls11{letter-spacing:0.708480pt;}
.lsf{letter-spacing:0.777600pt;}
.ls7{letter-spacing:48.770667pt;}
.ws0{word-spacing:-21.407232pt;}
.ws8{word-spacing:-17.376768pt;}
.ws3{word-spacing:-17.362944pt;}
.ws9{word-spacing:-17.349120pt;}
.wsa{word-spacing:-16.032000pt;}
.ws6{word-spacing:-16.012800pt;}
.wsb{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws2{word-spacing:-15.108480pt;}
.ws1{word-spacing:-14.935680pt;}
.wsc{word-spacing:-0.186624pt;}
.wsd{word-spacing:-0.069120pt;}
.ws4{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.267200pt;}
._1{width:1.131200pt;}
._2{width:752.000000pt;}
.fs1{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:11.840000pt;}
.y1{bottom:16.000000pt;}
.y87{bottom:95.680027pt;}
.yb5{bottom:96.640027pt;}
.y5b{bottom:99.840013pt;}
.y2c{bottom:100.480027pt;}
.yd8{bottom:101.440027pt;}
.y86{bottom:114.240027pt;}
.yb4{bottom:115.200027pt;}
.y5a{bottom:118.400000pt;}
.y2b{bottom:118.720000pt;}
.yfb{bottom:119.040000pt;}
.yd7{bottom:119.680000pt;}
.y85{bottom:132.480000pt;}
.yb3{bottom:133.440000pt;}
.y59{bottom:136.640000pt;}
.y2a{bottom:137.280000pt;}
.yfa{bottom:137.920000pt;}
.yd6{bottom:138.240000pt;}
.y106{bottom:138.560000pt;}
.y84{bottom:151.040000pt;}
.yb2{bottom:152.000000pt;}
.y101{bottom:152.960000pt;}
.y58{bottom:155.200000pt;}
.y29{bottom:155.520000pt;}
.yd5{bottom:156.480000pt;}
.y105{bottom:157.440000pt;}
.y83{bottom:169.600000pt;}
.yb1{bottom:170.240000pt;}
.y57{bottom:173.440000pt;}
.y28{bottom:174.080000pt;}
.yd4{bottom:175.040000pt;}
.y104{bottom:176.320000pt;}
.yb0{bottom:188.800000pt;}
.y82{bottom:189.760000pt;}
.y103{bottom:191.360000pt;}
.y56{bottom:192.000000pt;}
.y27{bottom:192.320000pt;}
.yd3{bottom:193.280000pt;}
.yf9{bottom:193.600000pt;}
.yaf{bottom:207.040000pt;}
.y55{bottom:210.240000pt;}
.y26{bottom:210.880000pt;}
.yd2{bottom:211.840000pt;}
.y81{bottom:222.400000pt;}
.yae{bottom:225.600000pt;}
.y54{bottom:228.800000pt;}
.y25{bottom:229.120000pt;}
.yd1{bottom:230.080000pt;}
.yf8{bottom:230.400000pt;}
.y80{bottom:241.280000pt;}
.yad{bottom:243.840000pt;}
.y53{bottom:247.040000pt;}
.y24{bottom:247.680000pt;}
.yd0{bottom:248.640000pt;}
.yf7{bottom:248.960000pt;}
.y7f{bottom:259.520000pt;}
.yac{bottom:262.400000pt;}
.y52{bottom:265.280000pt;}
.y23{bottom:265.920000pt;}
.ycf{bottom:266.880000pt;}
.yf6{bottom:267.520000pt;}
.y7e{bottom:278.080000pt;}
.yab{bottom:280.640000pt;}
.y22{bottom:284.480000pt;}
.y51{bottom:285.120000pt;}
.yce{bottom:285.440000pt;}
.yf5{bottom:285.760000pt;}
.y7d{bottom:296.320000pt;}
.yaa{bottom:299.200000pt;}
.y21{bottom:302.720000pt;}
.y50{bottom:303.360000pt;}
.ycd{bottom:303.680000pt;}
.yf4{bottom:304.320000pt;}
.y7c{bottom:314.880000pt;}
.ya9{bottom:317.440000pt;}
.y20{bottom:321.280000pt;}
.y4f{bottom:321.920000pt;}
.ycc{bottom:322.240000pt;}
.yf3{bottom:322.880000pt;}
.y7b{bottom:333.120000pt;}
.ya8{bottom:336.000000pt;}
.y1f{bottom:339.520000pt;}
.y4e{bottom:340.160000pt;}
.ycb{bottom:340.480000pt;}
.yf2{bottom:341.440000pt;}
.y7a{bottom:351.680000pt;}
.ya7{bottom:354.240000pt;}
.y1e{bottom:358.080000pt;}
.y4d{bottom:358.720000pt;}
.yca{bottom:359.040000pt;}
.yf1{bottom:359.680000pt;}
.y79{bottom:369.920000pt;}
.ya6{bottom:372.800000pt;}
.y1d{bottom:376.320000pt;}
.y4c{bottom:376.960000pt;}
.yc9{bottom:377.280000pt;}
.yf0{bottom:378.240000pt;}
.y78{bottom:389.440000pt;}
.ya5{bottom:391.040000pt;}
.y1c{bottom:394.880000pt;}
.yc8{bottom:395.840000pt;}
.y4b{bottom:396.480000pt;}
.yef{bottom:396.800000pt;}
.y77{bottom:408.000000pt;}
.ya4{bottom:409.600000pt;}
.y1b{bottom:413.120000pt;}
.yc7{bottom:414.080000pt;}
.y4a{bottom:415.040000pt;}
.y76{bottom:426.240000pt;}
.ya3{bottom:427.840000pt;}
.y1a{bottom:431.680000pt;}
.yc6{bottom:432.640000pt;}
.y49{bottom:433.280000pt;}
.yee{bottom:433.600000pt;}
.y75{bottom:444.800000pt;}
.ya2{bottom:446.400000pt;}
.y19{bottom:449.920000pt;}
.yc5{bottom:450.880000pt;}
.y48{bottom:451.840000pt;}
.yed{bottom:452.160000pt;}
.y74{bottom:463.040000pt;}
.ya1{bottom:464.640000pt;}
.y18{bottom:469.440000pt;}
.y47{bottom:470.080000pt;}
.yec{bottom:470.720000pt;}
.y73{bottom:481.600000pt;}
.ya0{bottom:483.200000pt;}
.yc4{bottom:487.680000pt;}
.y17{bottom:488.000000pt;}
.y46{bottom:488.640000pt;}
.yeb{bottom:488.960000pt;}
.y72{bottom:499.840000pt;}
.y9f{bottom:501.440000pt;}
.y16{bottom:506.240000pt;}
.y45{bottom:506.880000pt;}
.yea{bottom:507.520000pt;}
.y71{bottom:518.400000pt;}
.y9e{bottom:520.000000pt;}
.yc3{bottom:524.480000pt;}
.y15{bottom:524.800000pt;}
.y44{bottom:525.440000pt;}
.ye9{bottom:526.080000pt;}
.y70{bottom:537.920000pt;}
.y9d{bottom:538.240000pt;}
.y14{bottom:543.040000pt;}
.y43{bottom:543.680000pt;}
.ye8{bottom:544.640000pt;}
.y6f{bottom:556.480000pt;}
.y9c{bottom:556.800000pt;}
.y13{bottom:561.280000pt;}
.y42{bottom:561.920000pt;}
.ye7{bottom:562.880000pt;}
.y6e{bottom:574.720000pt;}
.y9b{bottom:575.040000pt;}
.y100{bottom:575.360000pt;}
.yc2{bottom:579.840000pt;}
.y12{bottom:581.120000pt;}
.ye6{bottom:581.440000pt;}
.y41{bottom:581.760000pt;}
.y6d{bottom:592.960000pt;}
.y9a{bottom:593.600000pt;}
.yff{bottom:593.920000pt;}
.yc1{bottom:598.080000pt;}
.y11{bottom:599.360000pt;}
.y40{bottom:600.000000pt;}
.y99{bottom:611.840000pt;}
.yfe{bottom:612.160000pt;}
.y6c{bottom:612.800000pt;}
.yc0{bottom:616.640000pt;}
.y10{bottom:617.920000pt;}
.y3f{bottom:618.560000pt;}
.y98{bottom:630.400000pt;}
.yfd{bottom:630.720000pt;}
.y6b{bottom:631.040000pt;}
.ybf{bottom:634.880000pt;}
.y3e{bottom:636.800000pt;}
.yf{bottom:637.440000pt;}
.yfc{bottom:645.440000pt;}
.y97{bottom:648.640000pt;}
.y6a{bottom:649.280000pt;}
.ybe{bottom:653.440000pt;}
.y3d{bottom:655.360000pt;}
.ye{bottom:655.680000pt;}
.y96{bottom:667.200000pt;}
.y69{bottom:669.120000pt;}
.ybd{bottom:671.680000pt;}
.y3c{bottom:673.600000pt;}
.ye5{bottom:673.920000pt;}
.yd{bottom:674.240000pt;}
.y95{bottom:685.440000pt;}
.y68{bottom:687.360000pt;}
.ybc{bottom:690.240000pt;}
.y3b{bottom:692.160000pt;}
.ye4{bottom:692.480000pt;}
.yc{bottom:693.760000pt;}
.y94{bottom:704.000000pt;}
.y67{bottom:705.920000pt;}
.ybb{bottom:708.480000pt;}
.y3a{bottom:710.400000pt;}
.ye3{bottom:710.720000pt;}
.yb{bottom:712.000000pt;}
.y93{bottom:722.240000pt;}
.y66{bottom:724.160000pt;}
.yba{bottom:727.040000pt;}
.y39{bottom:728.960000pt;}
.ye2{bottom:729.280000pt;}
.ya{bottom:732.160000pt;}
.y92{bottom:740.800000pt;}
.y65{bottom:743.680000pt;}
.yb9{bottom:745.280000pt;}
.y38{bottom:747.200000pt;}
.ye1{bottom:747.840000pt;}
.y91{bottom:759.040000pt;}
.y64{bottom:762.240000pt;}
.yb8{bottom:763.840000pt;}
.y9{bottom:765.120000pt;}
.y37{bottom:765.760000pt;}
.ye0{bottom:766.400000pt;}
.y90{bottom:777.600000pt;}
.y63{bottom:780.480000pt;}
.y8{bottom:782.080000pt;}
.y36{bottom:784.320000pt;}
.ydf{bottom:784.640000pt;}
.y8f{bottom:795.840000pt;}
.y7{bottom:799.040000pt;}
.yb7{bottom:800.640000pt;}
.yde{bottom:803.200000pt;}
.y35{bottom:804.480000pt;}
.y8e{bottom:814.080000pt;}
.y6{bottom:816.000000pt;}
.y62{bottom:817.280000pt;}
.yb6{bottom:818.880000pt;}
.ydd{bottom:821.760000pt;}
.y5{bottom:832.960000pt;}
.y8d{bottom:833.920000pt;}
.y61{bottom:835.840000pt;}
.y34{bottom:837.440000pt;}
.ydc{bottom:840.000000pt;}
.y4{bottom:849.920000pt;}
.y8c{bottom:852.160000pt;}
.y60{bottom:854.080000pt;}
.y33{bottom:855.680000pt;}
.y2d{bottom:856.960000pt;}
.ydb{bottom:858.560000pt;}
.y3{bottom:867.520000pt;}
.y8b{bottom:870.400000pt;}
.y5f{bottom:872.640000pt;}
.y32{bottom:874.240000pt;}
.yda{bottom:876.480000pt;}
.y8a{bottom:889.920000pt;}
.y5e{bottom:890.880000pt;}
.y2{bottom:892.160000pt;}
.y31{bottom:892.480000pt;}
.yd9{bottom:896.320000pt;}
.y5d{bottom:909.440000pt;}
.y89{bottom:909.760000pt;}
.y30{bottom:911.040000pt;}
.y88{bottom:928.000000pt;}
.y5c{bottom:928.320000pt;}
.y102{bottom:928.960000pt;}
.y2f{bottom:929.280000pt;}
.h4{height:39.515625pt;}
.hd{height:42.656250pt;}
.hc{height:43.906250pt;}
.hb{height:43.968750pt;}
.h8{height:44.437500pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h6{height:45.125000pt;}
.h5{height:46.845000pt;}
.ha{height:47.250000pt;}
.h2{height:57.255000pt;}
.h9{height:98.239987pt;}
.h1{height:1024.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:96.000000pt;}
.w1{width:768.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:24.000000pt;}
.x9{left:87.040000pt;}
.x6{left:96.000000pt;}
.x7{left:120.000000pt;}
.x8{left:144.000000pt;}
.x5{left:204.160133pt;}
.x2{left:220.165333pt;}
.x3{left:271.045600pt;}
.x4{left:338.766267pt;}
.xc{left:384.000000pt;}
.xa{left:523.333333pt;}
.xb{left:625.799867pt;}
.xd{left:672.000000pt;}
}




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