
    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_032b68646d2c0c58a4cbe69b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_863b9401f8ea6dd0c6be757a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4c649b9c8c460c6578f18dcf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5d343d07473a42ddea6ddff4.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_703544ef4f027a3b51e990ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ad0510110945c9542bc8066f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_f9ec2e95c002150d5e5df5a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_e1fa46061d92a1562f53b73e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dd3b6e4649b554831fd0fe2a.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,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);}
.m3{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;}
.ls12{letter-spacing:-2.160000px;}
.ls18{letter-spacing:-2.016000px;}
.ls16{letter-spacing:-1.008000px;}
.ls4{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:2.160000px;}
.lse{letter-spacing:10.224000px;}
.ls7{letter-spacing:11.520000px;}
.lsd{letter-spacing:13.824000px;}
.lsf{letter-spacing:25.200000px;}
.ls11{letter-spacing:53.424000px;}
.ls15{letter-spacing:57.024000px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws4{word-spacing:-19.440000px;}
.wsb{word-spacing:-18.720000px;}
.wse{word-spacing:-18.576000px;}
.wsc{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.568000px;}
.ws7{word-spacing:-17.424000px;}
.wsf{word-spacing:-17.280000px;}
.ws11{word-spacing:-17.136000px;}
.ws10{word-spacing:-16.992000px;}
.ws0{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.984000px;}
.wsd{word-spacing:-15.840000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-4.992000px;}
._1{margin-left:-3.780000px;}
._2{margin-left:-1.932000px;}
._0{width:1.224000px;}
._e{width:2.436000px;}
._1b{width:3.444000px;}
._8{width:4.464000px;}
._5{width:5.616000px;}
._4{width:7.296000px;}
._11{width:8.520000px;}
._a{width:10.440000px;}
._b{width:11.532000px;}
._7{width:13.032000px;}
._d{width:15.084000px;}
._c{width:16.608000px;}
._f{width:19.272000px;}
._10{width:21.024000px;}
._6{width:22.464000px;}
._9{width:24.192000px;}
._18{width:25.404000px;}
._22{width:26.436000px;}
._21{width:27.576000px;}
._1e{width:29.520000px;}
._1f{width:31.056000px;}
._20{width:32.388000px;}
._1a{width:33.624000px;}
._19{width:34.836000px;}
._1c{width:41.172000px;}
._1d{width:42.348000px;}
._23{width:44.184000px;}
._15{width:78.024000px;}
._13{width:82.920000px;}
._12{width:95.088000px;}
._17{width:101.808000px;}
._16{width:104.364000px;}
._14{width:105.924000px;}
.fc6{color:rgb(4,98,193);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y6f{bottom:103.536000px;}
.y32{bottom:112.176000px;}
.y62{bottom:112.356000px;}
.y93{bottom:113.976000px;}
.y6e{bottom:127.296000px;}
.y31{bottom:135.936000px;}
.y61{bottom:136.116000px;}
.y92{bottom:137.736000px;}
.y6d{bottom:152.850000px;}
.y30{bottom:159.870000px;}
.y9d{bottom:160.230000px;}
.y91{bottom:161.490000px;}
.y6c{bottom:176.250000px;}
.y2f{bottom:183.630000px;}
.y90{bottom:185.430000px;}
.y6b{bottom:196.050000px;}
.y2e{bottom:207.390000px;}
.y60{bottom:207.570000px;}
.y9c{bottom:207.750000px;}
.y8f{bottom:209.190000px;}
.y2d{bottom:231.150000px;}
.y5f{bottom:231.330000px;}
.y8e{bottom:232.950000px;}
.y59{bottom:249.330000px;}
.y2c{bottom:255.090000px;}
.y8d{bottom:256.710000px;}
.y58{bottom:275.070000px;}
.y2b{bottom:278.850000px;}
.y8c{bottom:280.290000px;}
.y57{bottom:298.875000px;}
.y2a{bottom:302.655000px;}
.y5e{bottom:302.835000px;}
.y8b{bottom:304.455000px;}
.y56{bottom:322.275000px;}
.y29{bottom:326.415000px;}
.y5d{bottom:326.595000px;}
.y8a{bottom:328.215000px;}
.y55{bottom:346.395000px;}
.y28{bottom:350.355000px;}
.y89{bottom:351.615000px;}
.y54{bottom:370.335000px;}
.y27{bottom:374.115000px;}
.y88{bottom:375.555000px;}
.y53{bottom:394.095000px;}
.y5c{bottom:397.695000px;}
.y26{bottom:397.875000px;}
.y87{bottom:399.315000px;}
.y52{bottom:417.855000px;}
.y5b{bottom:421.455000px;}
.y25{bottom:421.635000px;}
.y86{bottom:423.075000px;}
.y51{bottom:441.615000px;}
.y24{bottom:445.575000px;}
.y85{bottom:446.835000px;}
.y50{bottom:465.375000px;}
.y23{bottom:469.335000px;}
.y84{bottom:470.775000px;}
.y4f{bottom:489.315000px;}
.y22{bottom:493.095000px;}
.y83{bottom:494.535000px;}
.y4e{bottom:513.075000px;}
.y21{bottom:516.855000px;}
.y82{bottom:518.295000px;}
.y4d{bottom:536.835000px;}
.y20{bottom:540.795000px;}
.y81{bottom:542.055000px;}
.y4c{bottom:560.595000px;}
.y1f{bottom:564.585000px;}
.y80{bottom:566.025000px;}
.y4b{bottom:584.565000px;}
.y1e{bottom:588.345000px;}
.y7f{bottom:589.785000px;}
.y6a{bottom:590.145000px;}
.y4a{bottom:608.325000px;}
.y9b{bottom:612.105000px;}
.y7e{bottom:613.545000px;}
.y1d{bottom:613.905000px;}
.y49{bottom:632.085000px;}
.y9a{bottom:635.865000px;}
.y7d{bottom:637.305000px;}
.y1c{bottom:637.665000px;}
.y48{bottom:655.845000px;}
.y99{bottom:659.805000px;}
.y7c{bottom:661.065000px;}
.y1b{bottom:661.425000px;}
.y47{bottom:679.425000px;}
.y98{bottom:683.565000px;}
.y7b{bottom:685.005000px;}
.y1a{bottom:685.365000px;}
.y46{bottom:706.245000px;}
.y97{bottom:707.325000px;}
.y7a{bottom:708.765000px;}
.y19{bottom:709.125000px;}
.y45{bottom:730.185000px;}
.y96{bottom:731.085000px;}
.y18{bottom:732.525000px;}
.y69{bottom:732.885000px;}
.y44{bottom:753.945000px;}
.y79{bottom:756.285000px;}
.y17{bottom:756.645000px;}
.y43{bottom:777.345000px;}
.y78{bottom:780.225000px;}
.y16{bottom:780.585000px;}
.y42{bottom:801.465000px;}
.y77{bottom:803.985000px;}
.y15{bottom:804.345000px;}
.y41{bottom:825.405000px;}
.y76{bottom:827.745000px;}
.y14{bottom:828.105000px;}
.y40{bottom:849.210000px;}
.y75{bottom:851.550000px;}
.y13{bottom:851.910000px;}
.y3f{bottom:872.610000px;}
.y5a{bottom:873.150000px;}
.y74{bottom:875.490000px;}
.y12{bottom:875.850000px;}
.y3e{bottom:896.730000px;}
.y73{bottom:899.250000px;}
.y11{bottom:899.610000px;}
.y3d{bottom:920.670000px;}
.y72{bottom:923.010000px;}
.y10{bottom:923.370000px;}
.y3c{bottom:944.430000px;}
.y68{bottom:946.770000px;}
.yf{bottom:947.130000px;}
.y3b{bottom:967.830000px;}
.ye{bottom:970.710000px;}
.y95{bottom:971.070000px;}
.y3a{bottom:991.950000px;}
.y71{bottom:994.470000px;}
.yd{bottom:994.830000px;}
.y39{bottom:1015.890000px;}
.yc{bottom:1018.230000px;}
.y94{bottom:1018.590000px;}
.y38{bottom:1039.650000px;}
.yb{bottom:1041.990000px;}
.y67{bottom:1042.350000px;}
.y37{bottom:1063.410000px;}
.y70{bottom:1065.930000px;}
.ya{bottom:1066.290000px;}
.y36{bottom:1087.170000px;}
.y66{bottom:1089.690000px;}
.y9{bottom:1090.050000px;}
.y35{bottom:1110.930000px;}
.y8{bottom:1113.450000px;}
.y65{bottom:1113.810000px;}
.y34{bottom:1134.540000px;}
.y7{bottom:1137.240000px;}
.y64{bottom:1137.600000px;}
.y33{bottom:1158.480000px;}
.y6{bottom:1161.180000px;}
.y63{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.hb{height:50.273438px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.hc{height:74.004654px;}
.hd{height:74.953125px;}
.h8{height:78.367500px;}
.h9{height:80.949375px;}
.ha{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:5.040000px;}
.x10{left:127.655987px;}
.x15{left:148.895987px;}
.x3{left:159.689987px;}
.xf{left:180.749987px;}
.x11{left:196.589987px;}
.x12{left:198.389987px;}
.x6{left:261.209987px;}
.x9{left:290.729987px;}
.xe{left:327.674987px;}
.xb{left:330.194987px;}
.xa{left:332.174987px;}
.x7{left:335.234987px;}
.x8{left:342.254987px;}
.xc{left:369.794987px;}
.xd{left:405.074987px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x13{left:656.564987px;}
.x14{left:698.909987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.920000pt;}
.ls18{letter-spacing:-1.792000pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls4{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.920000pt;}
.lse{letter-spacing:9.088000pt;}
.ls7{letter-spacing:10.240000pt;}
.lsd{letter-spacing:12.288000pt;}
.lsf{letter-spacing:22.400000pt;}
.ls11{letter-spacing:47.488000pt;}
.ls15{letter-spacing:50.688000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws4{word-spacing:-17.280000pt;}
.wsb{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.512000pt;}
.wsc{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.616000pt;}
.ws7{word-spacing:-15.488000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws11{word-spacing:-15.232000pt;}
.ws10{word-spacing:-15.104000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.208000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-4.437333pt;}
._1{margin-left:-3.360000pt;}
._2{margin-left:-1.717333pt;}
._0{width:1.088000pt;}
._e{width:2.165333pt;}
._1b{width:3.061333pt;}
._8{width:3.968000pt;}
._5{width:4.992000pt;}
._4{width:6.485333pt;}
._11{width:7.573333pt;}
._a{width:9.280000pt;}
._b{width:10.250667pt;}
._7{width:11.584000pt;}
._d{width:13.408000pt;}
._c{width:14.762667pt;}
._f{width:17.130667pt;}
._10{width:18.688000pt;}
._6{width:19.968000pt;}
._9{width:21.504000pt;}
._18{width:22.581333pt;}
._22{width:23.498667pt;}
._21{width:24.512000pt;}
._1e{width:26.240000pt;}
._1f{width:27.605333pt;}
._20{width:28.789333pt;}
._1a{width:29.888000pt;}
._19{width:30.965333pt;}
._1c{width:36.597333pt;}
._1d{width:37.642667pt;}
._23{width:39.274667pt;}
._15{width:69.354667pt;}
._13{width:73.706667pt;}
._12{width:84.522667pt;}
._17{width:90.496000pt;}
._16{width:92.768000pt;}
._14{width:94.154667pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y6f{bottom:92.032000pt;}
.y32{bottom:99.712000pt;}
.y62{bottom:99.872000pt;}
.y93{bottom:101.312000pt;}
.y6e{bottom:113.152000pt;}
.y31{bottom:120.832000pt;}
.y61{bottom:120.992000pt;}
.y92{bottom:122.432000pt;}
.y6d{bottom:135.866667pt;}
.y30{bottom:142.106667pt;}
.y9d{bottom:142.426667pt;}
.y91{bottom:143.546667pt;}
.y6c{bottom:156.666667pt;}
.y2f{bottom:163.226667pt;}
.y90{bottom:164.826667pt;}
.y6b{bottom:174.266667pt;}
.y2e{bottom:184.346667pt;}
.y60{bottom:184.506667pt;}
.y9c{bottom:184.666667pt;}
.y8f{bottom:185.946667pt;}
.y2d{bottom:205.466667pt;}
.y5f{bottom:205.626667pt;}
.y8e{bottom:207.066667pt;}
.y59{bottom:221.626667pt;}
.y2c{bottom:226.746667pt;}
.y8d{bottom:228.186667pt;}
.y58{bottom:244.506667pt;}
.y2b{bottom:247.866667pt;}
.y8c{bottom:249.146667pt;}
.y57{bottom:265.666667pt;}
.y2a{bottom:269.026667pt;}
.y5e{bottom:269.186667pt;}
.y8b{bottom:270.626667pt;}
.y56{bottom:286.466667pt;}
.y29{bottom:290.146667pt;}
.y5d{bottom:290.306667pt;}
.y8a{bottom:291.746667pt;}
.y55{bottom:307.906667pt;}
.y28{bottom:311.426667pt;}
.y89{bottom:312.546667pt;}
.y54{bottom:329.186667pt;}
.y27{bottom:332.546667pt;}
.y88{bottom:333.826667pt;}
.y53{bottom:350.306667pt;}
.y5c{bottom:353.506667pt;}
.y26{bottom:353.666667pt;}
.y87{bottom:354.946667pt;}
.y52{bottom:371.426667pt;}
.y5b{bottom:374.626667pt;}
.y25{bottom:374.786667pt;}
.y86{bottom:376.066667pt;}
.y51{bottom:392.546667pt;}
.y24{bottom:396.066667pt;}
.y85{bottom:397.186667pt;}
.y50{bottom:413.666667pt;}
.y23{bottom:417.186667pt;}
.y84{bottom:418.466667pt;}
.y4f{bottom:434.946667pt;}
.y22{bottom:438.306667pt;}
.y83{bottom:439.586667pt;}
.y4e{bottom:456.066667pt;}
.y21{bottom:459.426667pt;}
.y82{bottom:460.706667pt;}
.y4d{bottom:477.186667pt;}
.y20{bottom:480.706667pt;}
.y81{bottom:481.826667pt;}
.y4c{bottom:498.306667pt;}
.y1f{bottom:501.853333pt;}
.y80{bottom:503.133333pt;}
.y4b{bottom:519.613333pt;}
.y1e{bottom:522.973333pt;}
.y7f{bottom:524.253333pt;}
.y6a{bottom:524.573333pt;}
.y4a{bottom:540.733333pt;}
.y9b{bottom:544.093333pt;}
.y7e{bottom:545.373333pt;}
.y1d{bottom:545.693333pt;}
.y49{bottom:561.853333pt;}
.y9a{bottom:565.213333pt;}
.y7d{bottom:566.493333pt;}
.y1c{bottom:566.813333pt;}
.y48{bottom:582.973333pt;}
.y99{bottom:586.493333pt;}
.y7c{bottom:587.613333pt;}
.y1b{bottom:587.933333pt;}
.y47{bottom:603.933333pt;}
.y98{bottom:607.613333pt;}
.y7b{bottom:608.893333pt;}
.y1a{bottom:609.213333pt;}
.y46{bottom:627.773333pt;}
.y97{bottom:628.733333pt;}
.y7a{bottom:630.013333pt;}
.y19{bottom:630.333333pt;}
.y45{bottom:649.053333pt;}
.y96{bottom:649.853333pt;}
.y18{bottom:651.133333pt;}
.y69{bottom:651.453333pt;}
.y44{bottom:670.173333pt;}
.y79{bottom:672.253333pt;}
.y17{bottom:672.573333pt;}
.y43{bottom:690.973333pt;}
.y78{bottom:693.533333pt;}
.y16{bottom:693.853333pt;}
.y42{bottom:712.413333pt;}
.y77{bottom:714.653333pt;}
.y15{bottom:714.973333pt;}
.y41{bottom:733.693333pt;}
.y76{bottom:735.773333pt;}
.y14{bottom:736.093333pt;}
.y40{bottom:754.853333pt;}
.y75{bottom:756.933333pt;}
.y13{bottom:757.253333pt;}
.y3f{bottom:775.653333pt;}
.y5a{bottom:776.133333pt;}
.y74{bottom:778.213333pt;}
.y12{bottom:778.533333pt;}
.y3e{bottom:797.093333pt;}
.y73{bottom:799.333333pt;}
.y11{bottom:799.653333pt;}
.y3d{bottom:818.373333pt;}
.y72{bottom:820.453333pt;}
.y10{bottom:820.773333pt;}
.y3c{bottom:839.493333pt;}
.y68{bottom:841.573333pt;}
.yf{bottom:841.893333pt;}
.y3b{bottom:860.293333pt;}
.ye{bottom:862.853333pt;}
.y95{bottom:863.173333pt;}
.y3a{bottom:881.733333pt;}
.y71{bottom:883.973333pt;}
.yd{bottom:884.293333pt;}
.y39{bottom:903.013333pt;}
.yc{bottom:905.093333pt;}
.y94{bottom:905.413333pt;}
.y38{bottom:924.133333pt;}
.yb{bottom:926.213333pt;}
.y67{bottom:926.533333pt;}
.y37{bottom:945.253333pt;}
.y70{bottom:947.493333pt;}
.ya{bottom:947.813333pt;}
.y36{bottom:966.373333pt;}
.y66{bottom:968.613333pt;}
.y9{bottom:968.933333pt;}
.y35{bottom:987.493333pt;}
.y8{bottom:989.733333pt;}
.y65{bottom:990.053333pt;}
.y34{bottom:1008.480000pt;}
.y7{bottom:1010.880000pt;}
.y64{bottom:1011.200000pt;}
.y33{bottom:1029.760000pt;}
.y6{bottom:1032.160000pt;}
.y63{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.hb{height:44.687500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.hc{height:65.781915pt;}
.hd{height:66.625000pt;}
.h8{height:69.660000pt;}
.h9{height:71.955000pt;}
.ha{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.480000pt;}
.x10{left:113.471988pt;}
.x15{left:132.351988pt;}
.x3{left:141.946655pt;}
.xf{left:160.666655pt;}
.x11{left:174.746655pt;}
.x12{left:176.346655pt;}
.x6{left:232.186655pt;}
.x9{left:258.426655pt;}
.xe{left:291.266655pt;}
.xb{left:293.506655pt;}
.xa{left:295.266655pt;}
.x7{left:297.986655pt;}
.x8{left:304.226655pt;}
.xc{left:328.706655pt;}
.xd{left:360.066655pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x13{left:583.613322pt;}
.x14{left:621.253322pt;}
.x4{left:737.253322pt;}
}




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