
    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_69259b80eef4edd3635c6466.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9dad8afe547d05b082d867a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a515e283d1e3657ef4a55136.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_acb3ab300c6578c1e9324d99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_f8ea49ac36f4c785e6181257.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_7bd80ece84f8ffcc6ae583ec.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.450600px;}
.lsb{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.269400px;}
.ls14{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.864000px;}
.ls1e{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.584000px;}
.ls11{letter-spacing:3.600000px;}
.ls19{letter-spacing:4.320000px;}
.ls13{letter-spacing:5.760000px;}
.lsd{letter-spacing:8.640000px;}
.lse{letter-spacing:9.360000px;}
.ls5{letter-spacing:30.384000px;}
.ls1a{letter-spacing:33.960000px;}
.ls18{letter-spacing:64.056000px;}
.ls1b{letter-spacing:194.376000px;}
.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;}
}
.wse{word-spacing:-19.584000px;}
.wsa{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.864000px;}
.wsc{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.280000px;}
.wsb{word-spacing:-17.064000px;}
.ws4{word-spacing:-12.329400px;}
.ws10{word-spacing:-11.836200px;}
.ws9{word-spacing:-11.609400px;}
.ws0{word-spacing:0.000000px;}
._18{margin-left:-3.636000px;}
._15{margin-left:-2.232000px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._c{width:2.088000px;}
._6{width:3.528000px;}
._2{width:5.112000px;}
._7{width:6.264000px;}
._3{width:7.272000px;}
._5{width:8.568000px;}
._d{width:10.488000px;}
._e{width:11.676000px;}
._f{width:13.512000px;}
._4{width:14.952000px;}
._17{width:16.704000px;}
._b{width:19.296000px;}
._8{width:20.736000px;}
._9{width:22.032000px;}
._a{width:23.904000px;}
._12{width:25.272000px;}
._11{width:28.512000px;}
._13{width:29.952000px;}
._14{width:31.824000px;}
._19{width:32.904000px;}
._1c{width:34.356000px;}
._24{width:41.328000px;}
._1a{width:42.408000px;}
._1b{width:43.488000px;}
._23{width:45.084000px;}
._1e{width:47.496000px;}
._1f{width:63.288000px;}
._20{width:64.440000px;}
._21{width:66.036000px;}
._10{width:118.224000px;}
._16{width:194.376000px;}
._22{width:201.684000px;}
._1d{width:319.536000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.500000px;}
.y2{bottom:52.920000px;}
.y1{bottom:57.420000px;}
.y28{bottom:110.736000px;}
.y86{bottom:114.876000px;}
.y4c{bottom:115.596000px;}
.ydb{bottom:125.856000px;}
.y27{bottom:131.436000px;}
.y26{bottom:135.936000px;}
.y85{bottom:146.016000px;}
.y4b{bottom:146.556000px;}
.y60{bottom:152.130000px;}
.y25{bottom:156.630000px;}
.yda{bottom:156.990000px;}
.y5f{bottom:172.830000px;}
.y84{bottom:176.970000px;}
.y24{bottom:177.330000px;}
.y4a{bottom:177.690000px;}
.y95{bottom:184.890000px;}
.yd9{bottom:187.950000px;}
.y7a{bottom:193.530000px;}
.y5e{bottom:198.030000px;}
.ya6{bottom:204.150000px;}
.y83{bottom:208.110000px;}
.y23{bottom:208.290000px;}
.y49{bottom:208.650000px;}
.y79{bottom:214.230000px;}
.y94{bottom:216.030000px;}
.y5d{bottom:218.730000px;}
.yd8{bottom:219.090000px;}
.ycd{bottom:234.930000px;}
.ya5{bottom:235.110000px;}
.y82{bottom:239.070000px;}
.yb7{bottom:239.250000px;}
.y22{bottom:239.430000px;}
.y48{bottom:239.790000px;}
.y77{bottom:243.930000px;}
.y93{bottom:246.990000px;}
.yd7{bottom:250.050000px;}
.y5c{bottom:260.130000px;}
.y76{bottom:264.630000px;}
.ya4{bottom:266.250000px;}
.y63{bottom:270.030000px;}
.y81{bottom:270.210000px;}
.y21{bottom:270.390000px;}
.yb6{bottom:270.570000px;}
.y47{bottom:270.750000px;}
.y92{bottom:278.130000px;}
.y5b{bottom:280.650000px;}
.yd6{bottom:281.010000px;}
.y75{bottom:285.150000px;}
.ya3{bottom:297.210000px;}
.y80{bottom:301.170000px;}
.y5a{bottom:301.350000px;}
.y20{bottom:301.530000px;}
.y46{bottom:301.710000px;}
.ycc{bottom:305.850000px;}
.y91{bottom:309.090000px;}
.yd5{bottom:312.150000px;}
.y59{bottom:322.050000px;}
.ycb{bottom:326.550000px;}
.ya2{bottom:328.395000px;}
.y74{bottom:332.355000px;}
.y1f{bottom:332.535000px;}
.yb5{bottom:332.715000px;}
.y45{bottom:332.895000px;}
.y90{bottom:340.095000px;}
.y58{bottom:342.795000px;}
.yd4{bottom:343.155000px;}
.ya1{bottom:359.355000px;}
.y73{bottom:363.315000px;}
.y57{bottom:363.495000px;}
.y1e{bottom:363.675000px;}
.y44{bottom:363.855000px;}
.yca{bottom:366.375000px;}
.y7d{bottom:367.995000px;}
.y8e{bottom:371.235000px;}
.yd3{bottom:374.295000px;}
.y8f{bottom:375.735000px;}
.y56{bottom:384.195000px;}
.y55{bottom:388.695000px;}
.ya0{bottom:390.495000px;}
.y72{bottom:394.455000px;}
.y1d{bottom:394.635000px;}
.yb4{bottom:394.815000px;}
.y43{bottom:394.995000px;}
.yc9{bottom:397.335000px;}
.y8d{bottom:402.555000px;}
.yd2{bottom:405.255000px;}
.y54{bottom:409.395000px;}
.y9f{bottom:421.455000px;}
.y71{bottom:425.415000px;}
.y1c{bottom:425.775000px;}
.y42{bottom:425.955000px;}
.yc8{bottom:428.475000px;}
.y8c{bottom:433.695000px;}
.yd1{bottom:436.395000px;}
.y9e{bottom:452.775000px;}
.y52{bottom:456.375000px;}
.y70{bottom:456.555000px;}
.y1b{bottom:456.735000px;}
.yb3{bottom:456.915000px;}
.y41{bottom:457.095000px;}
.yc7{bottom:459.435000px;}
.y53{bottom:460.875000px;}
.y8b{bottom:464.655000px;}
.yd0{bottom:467.355000px;}
.y9d{bottom:483.915000px;}
.y6f{bottom:487.515000px;}
.y64{bottom:487.695000px;}
.y1a{bottom:487.875000px;}
.y40{bottom:488.055000px;}
.yc6{bottom:490.215000px;}
.y8a{bottom:495.795000px;}
.ycf{bottom:508.935000px;}
.y9c{bottom:514.875000px;}
.y6e{bottom:518.655000px;}
.y19{bottom:518.835000px;}
.yb2{bottom:519.015000px;}
.y3f{bottom:519.195000px;}
.yc5{bottom:521.535000px;}
.y89{bottom:526.755000px;}
.y9b{bottom:546.015000px;}
.y7c{bottom:549.255000px;}
.y6d{bottom:549.615000px;}
.y18{bottom:549.975000px;}
.y3e{bottom:550.155000px;}
.yce{bottom:550.335000px;}
.yc4{bottom:552.675000px;}
.yb1{bottom:554.475000px;}
.y88{bottom:557.895000px;}
.y9a{bottom:576.975000px;}
.y7f{bottom:580.575000px;}
.y6c{bottom:580.755000px;}
.y17{bottom:580.935000px;}
.y3d{bottom:581.295000px;}
.yb0{bottom:581.475000px;}
.yc3{bottom:583.635000px;}
.y87{bottom:584.535000px;}
.y99{bottom:603.825000px;}
.y6b{bottom:611.745000px;}
.y16{bottom:612.105000px;}
.y3c{bottom:612.285000px;}
.yaf{bottom:612.465000px;}
.yc2{bottom:614.805000px;}
.y98{bottom:616.605000px;}
.y6a{bottom:642.705000px;}
.y15{bottom:643.065000px;}
.y3b{bottom:643.425000px;}
.yae{bottom:643.605000px;}
.yc1{bottom:645.765000px;}
.y78{bottom:647.565000px;}
.y97{bottom:647.745000px;}
.y69{bottom:673.845000px;}
.y14{bottom:674.205000px;}
.y3a{bottom:674.385000px;}
.yad{bottom:674.565000px;}
.ybf{bottom:676.725000px;}
.y96{bottom:678.705000px;}
.yc0{bottom:681.225000px;}
.y7e{bottom:700.665000px;}
.y68{bottom:704.805000px;}
.y13{bottom:705.165000px;}
.y39{bottom:705.525000px;}
.yac{bottom:705.705000px;}
.ybe{bottom:708.225000px;}
.y7b{bottom:709.305000px;}
.y67{bottom:735.945000px;}
.y12{bottom:736.305000px;}
.y38{bottom:736.485000px;}
.yab{bottom:736.665000px;}
.ybd{bottom:739.185000px;}
.y65{bottom:766.905000px;}
.y11{bottom:767.265000px;}
.y37{bottom:767.625000px;}
.yaa{bottom:767.805000px;}
.ybc{bottom:770.325000px;}
.y66{bottom:771.405000px;}
.y61{bottom:798.225000px;}
.y10{bottom:798.405000px;}
.y36{bottom:798.585000px;}
.ya9{bottom:798.765000px;}
.yba{bottom:801.285000px;}
.y62{bottom:802.725000px;}
.ybb{bottom:805.785000px;}
.yf{bottom:829.005000px;}
.y50{bottom:829.365000px;}
.y35{bottom:829.725000px;}
.ya8{bottom:829.905000px;}
.yb9{bottom:832.605000px;}
.ya7{bottom:856.545000px;}
.yb8{bottom:859.425000px;}
.ye{bottom:860.505000px;}
.y34{bottom:860.685000px;}
.yd{bottom:891.510000px;}
.y33{bottom:891.870000px;}
.y51{bottom:896.010000px;}
.yc{bottom:922.650000px;}
.y32{bottom:922.830000px;}
.y4f{bottom:953.250000px;}
.yb{bottom:953.610000px;}
.y31{bottom:953.970000px;}
.ya{bottom:984.570000px;}
.y30{bottom:984.930000px;}
.y9{bottom:1015.710000px;}
.y2f{bottom:1016.070000px;}
.y8{bottom:1046.670000px;}
.y2c{bottom:1047.030000px;}
.y7{bottom:1077.450000px;}
.y4d{bottom:1077.810000px;}
.y2b{bottom:1078.170000px;}
.y4e{bottom:1082.310000px;}
.y6{bottom:1108.410000px;}
.y2e{bottom:1108.770000px;}
.y2a{bottom:1109.130000px;}
.y4{bottom:1139.580000px;}
.y29{bottom:1139.940000px;}
.y2d{bottom:1140.300000px;}
.y5{bottom:1144.080000px;}
.h3{height:20.745000px;}
.h8{height:52.998047px;}
.h6{height:54.421875px;}
.h7{height:64.546875px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:74.004654px;}
.h9{height:74.704922px;}
.h5{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.000000px;}
.w4{width:18.000000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.xe{left:136.656000px;}
.x24{left:145.656000px;}
.x13{left:154.650000px;}
.x8{left:158.610000px;}
.x10{left:180.750000px;}
.x28{left:207.750000px;}
.x29{left:234.750000px;}
.x3{left:260.355000px;}
.x36{left:265.552500px;}
.x37{left:279.255000px;}
.xd{left:343.695000px;}
.x7{left:348.015000px;}
.x6{left:353.415000px;}
.x2f{left:403.462500px;}
.x30{left:417.165000px;}
.xa{left:424.005000px;}
.xf{left:426.705000px;}
.xc{left:434.445000px;}
.x25{left:437.685000px;}
.x11{left:447.742500px;}
.x12{left:454.605000px;}
.x31{left:464.145000px;}
.x26{left:467.925000px;}
.x2b{left:477.622500px;}
.x2c{left:491.325000px;}
.x1a{left:545.122500px;}
.x18{left:550.522500px;}
.x1b{left:551.985000px;}
.x19{left:557.385000px;}
.x16{left:564.247500px;}
.x9{left:569.310000px;}
.x17{left:571.110000px;}
.x35{left:575.250000px;}
.x1f{left:580.447500px;}
.x21{left:581.527500px;}
.x20{left:587.310000px;}
.x33{left:589.987500px;}
.x22{left:595.230000px;}
.x34{left:603.690000px;}
.x38{left:620.047500px;}
.x39{left:633.750000px;}
.x2d{left:661.290000px;}
.xb{left:664.710000px;}
.x4{left:668.467500px;}
.x5{left:675.330000px;}
.x32{left:686.850000px;}
.x2e{left:744.300000px;}
.x1e{left:747.540000px;}
.x2{left:756.540000px;}
.x2a{left:757.620000px;}
.x14{left:764.977500px;}
.x15{left:771.840000px;}
.x23{left:794.497500px;}
.x1c{left:801.337500px;}
.x1d{left:808.200000px;}
.x27{left:824.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.400533pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.239467pt;}
.ls14{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.408000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls19{letter-spacing:3.840000pt;}
.ls13{letter-spacing:5.120000pt;}
.lsd{letter-spacing:7.680000pt;}
.lse{letter-spacing:8.320000pt;}
.ls5{letter-spacing:27.008000pt;}
.ls1a{letter-spacing:30.186667pt;}
.ls18{letter-spacing:56.938667pt;}
.ls1b{letter-spacing:172.778667pt;}
.wse{word-spacing:-17.408000pt;}
.wsa{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.768000pt;}
.wsc{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.360000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws4{word-spacing:-10.959467pt;}
.ws10{word-spacing:-10.521067pt;}
.ws9{word-spacing:-10.319467pt;}
.ws0{word-spacing:0.000000pt;}
._18{margin-left:-3.232000pt;}
._15{margin-left:-1.984000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._c{width:1.856000pt;}
._6{width:3.136000pt;}
._2{width:4.544000pt;}
._7{width:5.568000pt;}
._3{width:6.464000pt;}
._5{width:7.616000pt;}
._d{width:9.322667pt;}
._e{width:10.378667pt;}
._f{width:12.010667pt;}
._4{width:13.290667pt;}
._17{width:14.848000pt;}
._b{width:17.152000pt;}
._8{width:18.432000pt;}
._9{width:19.584000pt;}
._a{width:21.248000pt;}
._12{width:22.464000pt;}
._11{width:25.344000pt;}
._13{width:26.624000pt;}
._14{width:28.288000pt;}
._19{width:29.248000pt;}
._1c{width:30.538667pt;}
._24{width:36.736000pt;}
._1a{width:37.696000pt;}
._1b{width:38.656000pt;}
._23{width:40.074667pt;}
._1e{width:42.218667pt;}
._1f{width:56.256000pt;}
._20{width:57.280000pt;}
._21{width:58.698667pt;}
._10{width:105.088000pt;}
._16{width:172.778667pt;}
._22{width:179.274667pt;}
._1d{width:284.032000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.000000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:51.040000pt;}
.y28{bottom:98.432000pt;}
.y86{bottom:102.112000pt;}
.y4c{bottom:102.752000pt;}
.ydb{bottom:111.872000pt;}
.y27{bottom:116.832000pt;}
.y26{bottom:120.832000pt;}
.y85{bottom:129.792000pt;}
.y4b{bottom:130.272000pt;}
.y60{bottom:135.226667pt;}
.y25{bottom:139.226667pt;}
.yda{bottom:139.546667pt;}
.y5f{bottom:153.626667pt;}
.y84{bottom:157.306667pt;}
.y24{bottom:157.626667pt;}
.y4a{bottom:157.946667pt;}
.y95{bottom:164.346667pt;}
.yd9{bottom:167.066667pt;}
.y7a{bottom:172.026667pt;}
.y5e{bottom:176.026667pt;}
.ya6{bottom:181.466667pt;}
.y83{bottom:184.986667pt;}
.y23{bottom:185.146667pt;}
.y49{bottom:185.466667pt;}
.y79{bottom:190.426667pt;}
.y94{bottom:192.026667pt;}
.y5d{bottom:194.426667pt;}
.yd8{bottom:194.746667pt;}
.ycd{bottom:208.826667pt;}
.ya5{bottom:208.986667pt;}
.y82{bottom:212.506667pt;}
.yb7{bottom:212.666667pt;}
.y22{bottom:212.826667pt;}
.y48{bottom:213.146667pt;}
.y77{bottom:216.826667pt;}
.y93{bottom:219.546667pt;}
.yd7{bottom:222.266667pt;}
.y5c{bottom:231.226667pt;}
.y76{bottom:235.226667pt;}
.ya4{bottom:236.666667pt;}
.y63{bottom:240.026667pt;}
.y81{bottom:240.186667pt;}
.y21{bottom:240.346667pt;}
.yb6{bottom:240.506667pt;}
.y47{bottom:240.666667pt;}
.y92{bottom:247.226667pt;}
.y5b{bottom:249.466667pt;}
.yd6{bottom:249.786667pt;}
.y75{bottom:253.466667pt;}
.ya3{bottom:264.186667pt;}
.y80{bottom:267.706667pt;}
.y5a{bottom:267.866667pt;}
.y20{bottom:268.026667pt;}
.y46{bottom:268.186667pt;}
.ycc{bottom:271.866667pt;}
.y91{bottom:274.746667pt;}
.yd5{bottom:277.466667pt;}
.y59{bottom:286.266667pt;}
.ycb{bottom:290.266667pt;}
.ya2{bottom:291.906667pt;}
.y74{bottom:295.426667pt;}
.y1f{bottom:295.586667pt;}
.yb5{bottom:295.746667pt;}
.y45{bottom:295.906667pt;}
.y90{bottom:302.306667pt;}
.y58{bottom:304.706667pt;}
.yd4{bottom:305.026667pt;}
.ya1{bottom:319.426667pt;}
.y73{bottom:322.946667pt;}
.y57{bottom:323.106667pt;}
.y1e{bottom:323.266667pt;}
.y44{bottom:323.426667pt;}
.yca{bottom:325.666667pt;}
.y7d{bottom:327.106667pt;}
.y8e{bottom:329.986667pt;}
.yd3{bottom:332.706667pt;}
.y8f{bottom:333.986667pt;}
.y56{bottom:341.506667pt;}
.y55{bottom:345.506667pt;}
.ya0{bottom:347.106667pt;}
.y72{bottom:350.626667pt;}
.y1d{bottom:350.786667pt;}
.yb4{bottom:350.946667pt;}
.y43{bottom:351.106667pt;}
.yc9{bottom:353.186667pt;}
.y8d{bottom:357.826667pt;}
.yd2{bottom:360.226667pt;}
.y54{bottom:363.906667pt;}
.y9f{bottom:374.626667pt;}
.y71{bottom:378.146667pt;}
.y1c{bottom:378.466667pt;}
.y42{bottom:378.626667pt;}
.yc8{bottom:380.866667pt;}
.y8c{bottom:385.506667pt;}
.yd1{bottom:387.906667pt;}
.y9e{bottom:402.466667pt;}
.y52{bottom:405.666667pt;}
.y70{bottom:405.826667pt;}
.y1b{bottom:405.986667pt;}
.yb3{bottom:406.146667pt;}
.y41{bottom:406.306667pt;}
.yc7{bottom:408.386667pt;}
.y53{bottom:409.666667pt;}
.y8b{bottom:413.026667pt;}
.yd0{bottom:415.426667pt;}
.y9d{bottom:430.146667pt;}
.y6f{bottom:433.346667pt;}
.y64{bottom:433.506667pt;}
.y1a{bottom:433.666667pt;}
.y40{bottom:433.826667pt;}
.yc6{bottom:435.746667pt;}
.y8a{bottom:440.706667pt;}
.ycf{bottom:452.386667pt;}
.y9c{bottom:457.666667pt;}
.y6e{bottom:461.026667pt;}
.y19{bottom:461.186667pt;}
.yb2{bottom:461.346667pt;}
.y3f{bottom:461.506667pt;}
.yc5{bottom:463.586667pt;}
.y89{bottom:468.226667pt;}
.y9b{bottom:485.346667pt;}
.y7c{bottom:488.226667pt;}
.y6d{bottom:488.546667pt;}
.y18{bottom:488.866667pt;}
.y3e{bottom:489.026667pt;}
.yce{bottom:489.186667pt;}
.yc4{bottom:491.266667pt;}
.yb1{bottom:492.866667pt;}
.y88{bottom:495.906667pt;}
.y9a{bottom:512.866667pt;}
.y7f{bottom:516.066667pt;}
.y6c{bottom:516.226667pt;}
.y17{bottom:516.386667pt;}
.y3d{bottom:516.706667pt;}
.yb0{bottom:516.866667pt;}
.yc3{bottom:518.786667pt;}
.y87{bottom:519.586667pt;}
.y99{bottom:536.733333pt;}
.y6b{bottom:543.773333pt;}
.y16{bottom:544.093333pt;}
.y3c{bottom:544.253333pt;}
.yaf{bottom:544.413333pt;}
.yc2{bottom:546.493333pt;}
.y98{bottom:548.093333pt;}
.y6a{bottom:571.293333pt;}
.y15{bottom:571.613333pt;}
.y3b{bottom:571.933333pt;}
.yae{bottom:572.093333pt;}
.yc1{bottom:574.013333pt;}
.y78{bottom:575.613333pt;}
.y97{bottom:575.773333pt;}
.y69{bottom:598.973333pt;}
.y14{bottom:599.293333pt;}
.y3a{bottom:599.453333pt;}
.yad{bottom:599.613333pt;}
.ybf{bottom:601.533333pt;}
.y96{bottom:603.293333pt;}
.yc0{bottom:605.533333pt;}
.y7e{bottom:622.813333pt;}
.y68{bottom:626.493333pt;}
.y13{bottom:626.813333pt;}
.y39{bottom:627.133333pt;}
.yac{bottom:627.293333pt;}
.ybe{bottom:629.533333pt;}
.y7b{bottom:630.493333pt;}
.y67{bottom:654.173333pt;}
.y12{bottom:654.493333pt;}
.y38{bottom:654.653333pt;}
.yab{bottom:654.813333pt;}
.ybd{bottom:657.053333pt;}
.y65{bottom:681.693333pt;}
.y11{bottom:682.013333pt;}
.y37{bottom:682.333333pt;}
.yaa{bottom:682.493333pt;}
.ybc{bottom:684.733333pt;}
.y66{bottom:685.693333pt;}
.y61{bottom:709.533333pt;}
.y10{bottom:709.693333pt;}
.y36{bottom:709.853333pt;}
.ya9{bottom:710.013333pt;}
.yba{bottom:712.253333pt;}
.y62{bottom:713.533333pt;}
.ybb{bottom:716.253333pt;}
.yf{bottom:736.893333pt;}
.y50{bottom:737.213333pt;}
.y35{bottom:737.533333pt;}
.ya8{bottom:737.693333pt;}
.yb9{bottom:740.093333pt;}
.ya7{bottom:761.373333pt;}
.yb8{bottom:763.933333pt;}
.ye{bottom:764.893333pt;}
.y34{bottom:765.053333pt;}
.yd{bottom:792.453333pt;}
.y33{bottom:792.773333pt;}
.y51{bottom:796.453333pt;}
.yc{bottom:820.133333pt;}
.y32{bottom:820.293333pt;}
.y4f{bottom:847.333333pt;}
.yb{bottom:847.653333pt;}
.y31{bottom:847.973333pt;}
.ya{bottom:875.173333pt;}
.y30{bottom:875.493333pt;}
.y9{bottom:902.853333pt;}
.y2f{bottom:903.173333pt;}
.y8{bottom:930.373333pt;}
.y2c{bottom:930.693333pt;}
.y7{bottom:957.733333pt;}
.y4d{bottom:958.053333pt;}
.y2b{bottom:958.373333pt;}
.y4e{bottom:962.053333pt;}
.y6{bottom:985.253333pt;}
.y2e{bottom:985.573333pt;}
.y2a{bottom:985.893333pt;}
.y4{bottom:1012.960000pt;}
.y29{bottom:1013.280000pt;}
.y2d{bottom:1013.600000pt;}
.y5{bottom:1016.960000pt;}
.h3{height:18.440000pt;}
.h8{height:47.109375pt;}
.h6{height:48.375000pt;}
.h7{height:57.375000pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:65.781915pt;}
.h9{height:66.404375pt;}
.h5{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w4{width:16.000000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.xe{left:121.472000pt;}
.x24{left:129.472000pt;}
.x13{left:137.466667pt;}
.x8{left:140.986667pt;}
.x10{left:160.666667pt;}
.x28{left:184.666667pt;}
.x29{left:208.666667pt;}
.x3{left:231.426667pt;}
.x36{left:236.046667pt;}
.x37{left:248.226667pt;}
.xd{left:305.506667pt;}
.x7{left:309.346667pt;}
.x6{left:314.146667pt;}
.x2f{left:358.633333pt;}
.x30{left:370.813333pt;}
.xa{left:376.893333pt;}
.xf{left:379.293333pt;}
.xc{left:386.173333pt;}
.x25{left:389.053333pt;}
.x11{left:397.993333pt;}
.x12{left:404.093333pt;}
.x31{left:412.573333pt;}
.x26{left:415.933333pt;}
.x2b{left:424.553333pt;}
.x2c{left:436.733333pt;}
.x1a{left:484.553333pt;}
.x18{left:489.353333pt;}
.x1b{left:490.653333pt;}
.x19{left:495.453333pt;}
.x16{left:501.553333pt;}
.x9{left:506.053333pt;}
.x17{left:507.653333pt;}
.x35{left:511.333333pt;}
.x1f{left:515.953333pt;}
.x21{left:516.913333pt;}
.x20{left:522.053333pt;}
.x33{left:524.433333pt;}
.x22{left:529.093333pt;}
.x34{left:536.613333pt;}
.x38{left:551.153333pt;}
.x39{left:563.333333pt;}
.x2d{left:587.813333pt;}
.xb{left:590.853333pt;}
.x4{left:594.193333pt;}
.x5{left:600.293333pt;}
.x32{left:610.533333pt;}
.x2e{left:661.600000pt;}
.x1e{left:664.480000pt;}
.x2{left:672.480000pt;}
.x2a{left:673.440000pt;}
.x14{left:679.980000pt;}
.x15{left:686.080000pt;}
.x23{left:706.220000pt;}
.x1c{left:712.300000pt;}
.x1d{left:718.400000pt;}
.x27{left:732.480000pt;}
}




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