
    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_66a770aabe0fe6ea59b3e23a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_8c703eff647edc15a7edce21.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_d8990008bff39c1904753717.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_1783c3503b7e0defb87480e0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_766d8b082295629d629b9aba.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_1c8b77fc3da8d856c833c3c8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_a9b411e0a3bd2f147bfa57ab.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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;}
.lsa{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-0.990000px;}
.lse{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.017280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:3.780000px;}
.lsb{letter-spacing:31.265280px;}
.lsd{letter-spacing:39.881280px;}
.lsc{letter-spacing:43.481280px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.422720px;}
.ws8{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.059520px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.070000px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-4.846080px;}
._10{margin-left:-3.588480px;}
._b{margin-left:-2.270400px;}
._0{margin-left:-1.258560px;}
._3{width:1.233600px;}
._a{width:2.383200px;}
._5{width:3.463680px;}
._4{width:5.095920px;}
._8{width:6.181680px;}
._d{width:7.882560px;}
._18{width:9.124320px;}
._12{width:10.128480px;}
._7{width:11.294640px;}
._6{width:12.489840px;}
._19{width:13.507680px;}
._13{width:14.711520px;}
._9{width:16.156560px;}
._2{width:18.180000px;}
._14{width:19.239360px;}
._15{width:20.931840px;}
._1a{width:21.991680px;}
._11{width:23.057280px;}
._21{width:24.508800px;}
._c{width:26.694720px;}
._f{width:28.019520px;}
._e{width:29.410560px;}
._1b{width:31.132800px;}
._17{width:32.807040px;}
._16{width:33.914880px;}
._23{width:43.254720px;}
._1f{width:53.919360px;}
._20{width:55.262400px;}
._1d{width:58.754880px;}
._1e{width:59.958240px;}
._22{width:130.360320px;}
._1{width:1099.053120px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.600000px;}
.y7b{bottom:3.780000px;}
.y2{bottom:7.560000px;}
.y77{bottom:22.500000px;}
.y4{bottom:55.620000px;}
.ya3{bottom:111.960000px;}
.y3e{bottom:113.220000px;}
.y75{bottom:115.020000px;}
.ya2{bottom:131.040000px;}
.y3d{bottom:132.300000px;}
.y74{bottom:133.920000px;}
.ye0{bottom:146.916000px;}
.ya1{bottom:149.976000px;}
.y3c{bottom:151.230000px;}
.y73{bottom:153.030000px;}
.ydf{bottom:165.990000px;}
.ya0{bottom:169.050000px;}
.y3b{bottom:170.310000px;}
.y72{bottom:171.930000px;}
.yde{bottom:184.890000px;}
.y9f{bottom:187.950000px;}
.y3a{bottom:189.210000px;}
.y71{bottom:191.010000px;}
.ydd{bottom:203.970000px;}
.y9e{bottom:206.850000px;}
.y39{bottom:208.110000px;}
.y70{bottom:209.910000px;}
.ydc{bottom:222.870000px;}
.y9d{bottom:225.930000px;}
.y38{bottom:227.190000px;}
.y6f{bottom:228.810000px;}
.ydb{bottom:241.950000px;}
.y9c{bottom:244.830000px;}
.y37{bottom:246.090000px;}
.y6e{bottom:247.890000px;}
.yda{bottom:260.850000px;}
.y9b{bottom:263.910000px;}
.y36{bottom:265.170000px;}
.y6d{bottom:266.790000px;}
.yd9{bottom:279.750000px;}
.y9a{bottom:282.810000px;}
.y35{bottom:284.070000px;}
.y6c{bottom:285.870000px;}
.yd8{bottom:298.830000px;}
.y99{bottom:301.710000px;}
.y34{bottom:302.970000px;}
.y6b{bottom:304.770000px;}
.yd7{bottom:317.730000px;}
.y98{bottom:320.790000px;}
.y33{bottom:322.050000px;}
.y6a{bottom:323.670000px;}
.yd6{bottom:336.810000px;}
.y97{bottom:339.690000px;}
.y32{bottom:340.950000px;}
.y69{bottom:342.750000px;}
.yd5{bottom:355.710000px;}
.y96{bottom:358.770000px;}
.y31{bottom:360.030000px;}
.y68{bottom:361.650000px;}
.yd4{bottom:374.610000px;}
.y95{bottom:377.670000px;}
.y30{bottom:378.930000px;}
.y67{bottom:380.730000px;}
.yd3{bottom:393.735000px;}
.y94{bottom:396.615000px;}
.y2f{bottom:398.055000px;}
.y66{bottom:399.675000px;}
.yd2{bottom:412.635000px;}
.y93{bottom:415.695000px;}
.y2e{bottom:416.955000px;}
.y65{bottom:418.755000px;}
.yd1{bottom:431.715000px;}
.y92{bottom:434.595000px;}
.y2d{bottom:435.855000px;}
.y64{bottom:437.655000px;}
.yd0{bottom:450.615000px;}
.y91{bottom:453.675000px;}
.y2c{bottom:454.935000px;}
.y63{bottom:456.555000px;}
.ycf{bottom:469.515000px;}
.y90{bottom:472.575000px;}
.y2b{bottom:473.835000px;}
.y62{bottom:475.635000px;}
.yce{bottom:488.595000px;}
.y8f{bottom:491.475000px;}
.y2a{bottom:492.915000px;}
.y61{bottom:494.535000px;}
.ycd{bottom:507.495000px;}
.y8e{bottom:510.555000px;}
.y29{bottom:510.735000px;}
.y60{bottom:513.615000px;}
.y28{bottom:524.415000px;}
.ycc{bottom:526.575000px;}
.y8d{bottom:529.455000px;}
.y5f{bottom:532.515000px;}
.y27{bottom:538.995000px;}
.ycb{bottom:545.475000px;}
.y8c{bottom:548.535000px;}
.y5e{bottom:551.415000px;}
.y26{bottom:556.275000px;}
.yca{bottom:564.375000px;}
.y8b{bottom:567.435000px;}
.y5d{bottom:570.495000px;}
.y25{bottom:573.555000px;}
.yc9{bottom:583.455000px;}
.y8a{bottom:586.515000px;}
.y5c{bottom:589.395000px;}
.y24{bottom:590.655000px;}
.yc8{bottom:602.355000px;}
.y89{bottom:605.415000px;}
.y23{bottom:607.935000px;}
.y5b{bottom:608.475000px;}
.yc7{bottom:621.435000px;}
.y88{bottom:624.315000px;}
.y22{bottom:625.215000px;}
.y5a{bottom:627.375000px;}
.yc6{bottom:640.365000px;}
.y21{bottom:642.525000px;}
.y87{bottom:643.425000px;}
.y59{bottom:646.305000px;}
.yc5{bottom:659.265000px;}
.y20{bottom:659.805000px;}
.y86{bottom:662.325000px;}
.y58{bottom:665.385000px;}
.y1f{bottom:676.905000px;}
.yc4{bottom:678.345000px;}
.y85{bottom:681.405000px;}
.y57{bottom:684.285000px;}
.y1e{bottom:694.185000px;}
.yc3{bottom:697.245000px;}
.y84{bottom:700.305000px;}
.y56{bottom:703.365000px;}
.y1d{bottom:711.465000px;}
.yc2{bottom:716.325000px;}
.y83{bottom:719.205000px;}
.y55{bottom:722.265000px;}
.y1c{bottom:728.745000px;}
.yc1{bottom:735.225000px;}
.y82{bottom:738.285000px;}
.y54{bottom:741.165000px;}
.y1b{bottom:746.025000px;}
.yc0{bottom:754.305000px;}
.y81{bottom:757.185000px;}
.y53{bottom:760.245000px;}
.y1a{bottom:763.305000px;}
.ybf{bottom:773.205000px;}
.y80{bottom:776.265000px;}
.y52{bottom:779.145000px;}
.y19{bottom:780.405000px;}
.ybe{bottom:792.105000px;}
.y7f{bottom:795.165000px;}
.y18{bottom:797.685000px;}
.y51{bottom:798.225000px;}
.ybd{bottom:811.185000px;}
.y7e{bottom:814.065000px;}
.y17{bottom:814.965000px;}
.y50{bottom:817.125000px;}
.ybc{bottom:830.085000px;}
.y16{bottom:832.245000px;}
.y7d{bottom:833.145000px;}
.y4f{bottom:836.025000px;}
.ybb{bottom:849.165000px;}
.y15{bottom:849.525000px;}
.y7c{bottom:852.045000px;}
.y4e{bottom:855.105000px;}
.y14{bottom:866.805000px;}
.y7a{bottom:868.065000px;}
.yb0{bottom:871.125000px;}
.y4d{bottom:874.005000px;}
.y13{bottom:883.905000px;}
.yba{bottom:886.965000px;}
.y79{bottom:887.865000px;}
.yaf{bottom:890.025000px;}
.y4c{bottom:893.130000px;}
.y12{bottom:901.230000px;}
.yb9{bottom:906.090000px;}
.y76{bottom:907.710000px;}
.yae{bottom:908.970000px;}
.y4b{bottom:912.030000px;}
.y11{bottom:918.870000px;}
.yb8{bottom:924.990000px;}
.yad{bottom:928.050000px;}
.y4a{bottom:931.110000px;}
.y10{bottom:937.410000px;}
.yb7{bottom:941.010000px;}
.yac{bottom:946.950000px;}
.y49{bottom:950.010000px;}
.yf{bottom:954.690000px;}
.yb6{bottom:960.810000px;}
.yab{bottom:966.030000px;}
.y48{bottom:968.910000px;}
.ye{bottom:972.330000px;}
.yb5{bottom:980.430000px;}
.yaa{bottom:984.930000px;}
.y47{bottom:987.990000px;}
.yd{bottom:991.410000px;}
.yb4{bottom:1000.230000px;}
.ya9{bottom:1003.830000px;}
.y46{bottom:1006.890000px;}
.yc{bottom:1010.850000px;}
.yb3{bottom:1020.030000px;}
.ya8{bottom:1022.910000px;}
.y45{bottom:1025.970000px;}
.yb{bottom:1033.170000px;}
.yb2{bottom:1039.650000px;}
.ya7{bottom:1041.810000px;}
.y44{bottom:1044.870000px;}
.ya{bottom:1054.770000px;}
.ya6{bottom:1057.830000px;}
.yb1{bottom:1059.450000px;}
.y43{bottom:1063.770000px;}
.y9{bottom:1072.050000px;}
.ya5{bottom:1077.630000px;}
.y42{bottom:1082.850000px;}
.y8{bottom:1089.330000px;}
.ya4{bottom:1097.430000px;}
.y41{bottom:1101.750000px;}
.y7{bottom:1106.610000px;}
.y40{bottom:1120.830000px;}
.y6{bottom:1123.710000px;}
.y3f{bottom:1139.730000px;}
.y5{bottom:1140.990000px;}
.y3{bottom:1168.020000px;}
.y1{bottom:1183.680000px;}
.h13{height:18.900000px;}
.h11{height:18.936000px;}
.h12{height:19.080000px;}
.h2{height:26.280000px;}
.hd{height:34.036523px;}
.h10{height:37.800000px;}
.h5{height:39.760312px;}
.h7{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:43.156758px;}
.ha{height:46.251562px;}
.h9{height:46.736719px;}
.hf{height:48.224531px;}
.hb{height:49.255313px;}
.h3{height:50.068125px;}
.he{height:54.596250px;}
.h8{height:56.155781px;}
.h4{height:65.884219px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:61.200000px;}
.wb{width:98.280000px;}
.we{width:98.316000px;}
.wf{width:122.940000px;}
.wa{width:131.256000px;}
.w7{width:155.910000px;}
.w5{width:156.060000px;}
.w6{width:164.190000px;}
.wc{width:164.370000px;}
.w10{width:180.930000px;}
.w8{width:185.790000px;}
.wd{width:255.090000px;}
.w9{width:263.370000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x23{left:10.980000px;}
.x2{left:13.860000px;}
.x19{left:18.720000px;}
.x21{left:19.800000px;}
.x16{left:21.240000px;}
.x2b{left:23.400000px;}
.x13{left:25.065000px;}
.x2c{left:26.460000px;}
.x1f{left:28.440000px;}
.x11{left:41.754000px;}
.x24{left:49.905000px;}
.x17{left:62.490000px;}
.x14{left:66.645000px;}
.x1a{left:75.285000px;}
.x28{left:76.854000px;}
.x1d{left:95.394000px;}
.x1{left:108.036000px;}
.x5{left:111.815987px;}
.x10{left:116.856000px;}
.xc{left:132.875987px;}
.xd{left:135.035987px;}
.x2d{left:140.075987px;}
.xe{left:159.869987px;}
.x2e{left:162.029987px;}
.x3{left:169.230000px;}
.x27{left:174.629987px;}
.x1c{left:224.489987px;}
.x12{left:273.630000px;}
.xf{left:284.114987px;}
.x6{left:292.214987px;}
.x9{left:300.134987px;}
.x26{left:312.554987px;}
.xa{left:335.054987px;}
.x8{left:359.894987px;}
.x1b{left:366.374987px;}
.x29{left:372.675000px;}
.x1e{left:380.955000px;}
.xb{left:420.194987px;}
.x15{left:438.735000px;}
.x7{left:446.474987px;}
.x25{left:458.894987px;}
.x2a{left:471.705000px;}
.x20{left:512.925000px;}
.x18{left:595.365000px;}
.x22{left:611.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.880000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:3.360000pt;}
.lsb{letter-spacing:27.791360pt;}
.lsd{letter-spacing:35.450027pt;}
.lsc{letter-spacing:38.650027pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.264640pt;}
.ws8{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.386240pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.840000pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-4.307627pt;}
._10{margin-left:-3.189760pt;}
._b{margin-left:-2.018133pt;}
._0{margin-left:-1.118720pt;}
._3{width:1.096533pt;}
._a{width:2.118400pt;}
._5{width:3.078827pt;}
._4{width:4.529707pt;}
._8{width:5.494827pt;}
._d{width:7.006720pt;}
._18{width:8.110507pt;}
._12{width:9.003093pt;}
._7{width:10.039680pt;}
._6{width:11.102080pt;}
._19{width:12.006827pt;}
._13{width:13.076907pt;}
._9{width:14.361387pt;}
._2{width:16.160000pt;}
._14{width:17.101653pt;}
._15{width:18.606080pt;}
._1a{width:19.548160pt;}
._11{width:20.495360pt;}
._21{width:21.785600pt;}
._c{width:23.728640pt;}
._f{width:24.906240pt;}
._e{width:26.142720pt;}
._1b{width:27.673600pt;}
._17{width:29.161813pt;}
._16{width:30.146560pt;}
._23{width:38.448640pt;}
._1f{width:47.928320pt;}
._20{width:49.122133pt;}
._1d{width:52.226560pt;}
._1e{width:53.296213pt;}
._22{width:115.875840pt;}
._1{width:976.936107pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:3.200000pt;}
.y7b{bottom:3.360000pt;}
.y2{bottom:6.720000pt;}
.y77{bottom:20.000000pt;}
.y4{bottom:49.440000pt;}
.ya3{bottom:99.520000pt;}
.y3e{bottom:100.640000pt;}
.y75{bottom:102.240000pt;}
.ya2{bottom:116.480000pt;}
.y3d{bottom:117.600000pt;}
.y74{bottom:119.040000pt;}
.ye0{bottom:130.592000pt;}
.ya1{bottom:133.312000pt;}
.y3c{bottom:134.426667pt;}
.y73{bottom:136.026667pt;}
.ydf{bottom:147.546667pt;}
.ya0{bottom:150.266667pt;}
.y3b{bottom:151.386667pt;}
.y72{bottom:152.826667pt;}
.yde{bottom:164.346667pt;}
.y9f{bottom:167.066667pt;}
.y3a{bottom:168.186667pt;}
.y71{bottom:169.786667pt;}
.ydd{bottom:181.306667pt;}
.y9e{bottom:183.866667pt;}
.y39{bottom:184.986667pt;}
.y70{bottom:186.586667pt;}
.ydc{bottom:198.106667pt;}
.y9d{bottom:200.826667pt;}
.y38{bottom:201.946667pt;}
.y6f{bottom:203.386667pt;}
.ydb{bottom:215.066667pt;}
.y9c{bottom:217.626667pt;}
.y37{bottom:218.746667pt;}
.y6e{bottom:220.346667pt;}
.yda{bottom:231.866667pt;}
.y9b{bottom:234.586667pt;}
.y36{bottom:235.706667pt;}
.y6d{bottom:237.146667pt;}
.yd9{bottom:248.666667pt;}
.y9a{bottom:251.386667pt;}
.y35{bottom:252.506667pt;}
.y6c{bottom:254.106667pt;}
.yd8{bottom:265.626667pt;}
.y99{bottom:268.186667pt;}
.y34{bottom:269.306667pt;}
.y6b{bottom:270.906667pt;}
.yd7{bottom:282.426667pt;}
.y98{bottom:285.146667pt;}
.y33{bottom:286.266667pt;}
.y6a{bottom:287.706667pt;}
.yd6{bottom:299.386667pt;}
.y97{bottom:301.946667pt;}
.y32{bottom:303.066667pt;}
.y69{bottom:304.666667pt;}
.yd5{bottom:316.186667pt;}
.y96{bottom:318.906667pt;}
.y31{bottom:320.026667pt;}
.y68{bottom:321.466667pt;}
.yd4{bottom:332.986667pt;}
.y95{bottom:335.706667pt;}
.y30{bottom:336.826667pt;}
.y67{bottom:338.426667pt;}
.yd3{bottom:349.986667pt;}
.y94{bottom:352.546667pt;}
.y2f{bottom:353.826667pt;}
.y66{bottom:355.266667pt;}
.yd2{bottom:366.786667pt;}
.y93{bottom:369.506667pt;}
.y2e{bottom:370.626667pt;}
.y65{bottom:372.226667pt;}
.yd1{bottom:383.746667pt;}
.y92{bottom:386.306667pt;}
.y2d{bottom:387.426667pt;}
.y64{bottom:389.026667pt;}
.yd0{bottom:400.546667pt;}
.y91{bottom:403.266667pt;}
.y2c{bottom:404.386667pt;}
.y63{bottom:405.826667pt;}
.ycf{bottom:417.346667pt;}
.y90{bottom:420.066667pt;}
.y2b{bottom:421.186667pt;}
.y62{bottom:422.786667pt;}
.yce{bottom:434.306667pt;}
.y8f{bottom:436.866667pt;}
.y2a{bottom:438.146667pt;}
.y61{bottom:439.586667pt;}
.ycd{bottom:451.106667pt;}
.y8e{bottom:453.826667pt;}
.y29{bottom:453.986667pt;}
.y60{bottom:456.546667pt;}
.y28{bottom:466.146667pt;}
.ycc{bottom:468.066667pt;}
.y8d{bottom:470.626667pt;}
.y5f{bottom:473.346667pt;}
.y27{bottom:479.106667pt;}
.ycb{bottom:484.866667pt;}
.y8c{bottom:487.586667pt;}
.y5e{bottom:490.146667pt;}
.y26{bottom:494.466667pt;}
.yca{bottom:501.666667pt;}
.y8b{bottom:504.386667pt;}
.y5d{bottom:507.106667pt;}
.y25{bottom:509.826667pt;}
.yc9{bottom:518.626667pt;}
.y8a{bottom:521.346667pt;}
.y5c{bottom:523.906667pt;}
.y24{bottom:525.026667pt;}
.yc8{bottom:535.426667pt;}
.y89{bottom:538.146667pt;}
.y23{bottom:540.386667pt;}
.y5b{bottom:540.866667pt;}
.yc7{bottom:552.386667pt;}
.y88{bottom:554.946667pt;}
.y22{bottom:555.746667pt;}
.y5a{bottom:557.666667pt;}
.yc6{bottom:569.213333pt;}
.y21{bottom:571.133333pt;}
.y87{bottom:571.933333pt;}
.y59{bottom:574.493333pt;}
.yc5{bottom:586.013333pt;}
.y20{bottom:586.493333pt;}
.y86{bottom:588.733333pt;}
.y58{bottom:591.453333pt;}
.y1f{bottom:601.693333pt;}
.yc4{bottom:602.973333pt;}
.y85{bottom:605.693333pt;}
.y57{bottom:608.253333pt;}
.y1e{bottom:617.053333pt;}
.yc3{bottom:619.773333pt;}
.y84{bottom:622.493333pt;}
.y56{bottom:625.213333pt;}
.y1d{bottom:632.413333pt;}
.yc2{bottom:636.733333pt;}
.y83{bottom:639.293333pt;}
.y55{bottom:642.013333pt;}
.y1c{bottom:647.773333pt;}
.yc1{bottom:653.533333pt;}
.y82{bottom:656.253333pt;}
.y54{bottom:658.813333pt;}
.y1b{bottom:663.133333pt;}
.yc0{bottom:670.493333pt;}
.y81{bottom:673.053333pt;}
.y53{bottom:675.773333pt;}
.y1a{bottom:678.493333pt;}
.ybf{bottom:687.293333pt;}
.y80{bottom:690.013333pt;}
.y52{bottom:692.573333pt;}
.y19{bottom:693.693333pt;}
.ybe{bottom:704.093333pt;}
.y7f{bottom:706.813333pt;}
.y18{bottom:709.053333pt;}
.y51{bottom:709.533333pt;}
.ybd{bottom:721.053333pt;}
.y7e{bottom:723.613333pt;}
.y17{bottom:724.413333pt;}
.y50{bottom:726.333333pt;}
.ybc{bottom:737.853333pt;}
.y16{bottom:739.773333pt;}
.y7d{bottom:740.573333pt;}
.y4f{bottom:743.133333pt;}
.ybb{bottom:754.813333pt;}
.y15{bottom:755.133333pt;}
.y7c{bottom:757.373333pt;}
.y4e{bottom:760.093333pt;}
.y14{bottom:770.493333pt;}
.y7a{bottom:771.613333pt;}
.yb0{bottom:774.333333pt;}
.y4d{bottom:776.893333pt;}
.y13{bottom:785.693333pt;}
.yba{bottom:788.413333pt;}
.y79{bottom:789.213333pt;}
.yaf{bottom:791.133333pt;}
.y4c{bottom:793.893333pt;}
.y12{bottom:801.093333pt;}
.yb9{bottom:805.413333pt;}
.y76{bottom:806.853333pt;}
.yae{bottom:807.973333pt;}
.y4b{bottom:810.693333pt;}
.y11{bottom:816.773333pt;}
.yb8{bottom:822.213333pt;}
.yad{bottom:824.933333pt;}
.y4a{bottom:827.653333pt;}
.y10{bottom:833.253333pt;}
.yb7{bottom:836.453333pt;}
.yac{bottom:841.733333pt;}
.y49{bottom:844.453333pt;}
.yf{bottom:848.613333pt;}
.yb6{bottom:854.053333pt;}
.yab{bottom:858.693333pt;}
.y48{bottom:861.253333pt;}
.ye{bottom:864.293333pt;}
.yb5{bottom:871.493333pt;}
.yaa{bottom:875.493333pt;}
.y47{bottom:878.213333pt;}
.yd{bottom:881.253333pt;}
.yb4{bottom:889.093333pt;}
.ya9{bottom:892.293333pt;}
.y46{bottom:895.013333pt;}
.yc{bottom:898.533333pt;}
.yb3{bottom:906.693333pt;}
.ya8{bottom:909.253333pt;}
.y45{bottom:911.973333pt;}
.yb{bottom:918.373333pt;}
.yb2{bottom:924.133333pt;}
.ya7{bottom:926.053333pt;}
.y44{bottom:928.773333pt;}
.ya{bottom:937.573333pt;}
.ya6{bottom:940.293333pt;}
.yb1{bottom:941.733333pt;}
.y43{bottom:945.573333pt;}
.y9{bottom:952.933333pt;}
.ya5{bottom:957.893333pt;}
.y42{bottom:962.533333pt;}
.y8{bottom:968.293333pt;}
.ya4{bottom:975.493333pt;}
.y41{bottom:979.333333pt;}
.y7{bottom:983.653333pt;}
.y40{bottom:996.293333pt;}
.y6{bottom:998.853333pt;}
.y3f{bottom:1013.093333pt;}
.y5{bottom:1014.213333pt;}
.y3{bottom:1038.240000pt;}
.y1{bottom:1052.160000pt;}
.h13{height:16.800000pt;}
.h11{height:16.832000pt;}
.h12{height:16.960000pt;}
.h2{height:23.360000pt;}
.hd{height:30.254687pt;}
.h10{height:33.600000pt;}
.h5{height:35.342500pt;}
.h7{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:38.361562pt;}
.ha{height:41.112500pt;}
.h9{height:41.543750pt;}
.hf{height:42.866250pt;}
.hb{height:43.782500pt;}
.h3{height:44.505000pt;}
.he{height:48.530000pt;}
.h8{height:49.916250pt;}
.h4{height:58.563750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:54.400000pt;}
.wb{width:87.360000pt;}
.we{width:87.392000pt;}
.wf{width:109.280000pt;}
.wa{width:116.672000pt;}
.w7{width:138.586667pt;}
.w5{width:138.720000pt;}
.w6{width:145.946667pt;}
.wc{width:146.106667pt;}
.w10{width:160.826667pt;}
.w8{width:165.146667pt;}
.wd{width:226.746667pt;}
.w9{width:234.106667pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x23{left:9.760000pt;}
.x2{left:12.320000pt;}
.x19{left:16.640000pt;}
.x21{left:17.600000pt;}
.x16{left:18.880000pt;}
.x2b{left:20.800000pt;}
.x13{left:22.280000pt;}
.x2c{left:23.520000pt;}
.x1f{left:25.280000pt;}
.x11{left:37.114667pt;}
.x24{left:44.360000pt;}
.x17{left:55.546667pt;}
.x14{left:59.240000pt;}
.x1a{left:66.920000pt;}
.x28{left:68.314667pt;}
.x1d{left:84.794667pt;}
.x1{left:96.032000pt;}
.x5{left:99.391988pt;}
.x10{left:103.872000pt;}
.xc{left:118.111988pt;}
.xd{left:120.031988pt;}
.x2d{left:124.511988pt;}
.xe{left:142.106655pt;}
.x2e{left:144.026655pt;}
.x3{left:150.426667pt;}
.x27{left:155.226655pt;}
.x1c{left:199.546655pt;}
.x12{left:243.226667pt;}
.xf{left:252.546655pt;}
.x6{left:259.746655pt;}
.x9{left:266.786655pt;}
.x26{left:277.826655pt;}
.xa{left:297.826655pt;}
.x8{left:319.906655pt;}
.x1b{left:325.666655pt;}
.x29{left:331.266667pt;}
.x1e{left:338.626667pt;}
.xb{left:373.506655pt;}
.x15{left:389.986667pt;}
.x7{left:396.866655pt;}
.x25{left:407.906655pt;}
.x2a{left:419.293333pt;}
.x20{left:455.933333pt;}
.x18{left:529.213333pt;}
.x22{left:543.933333pt;}
}




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