
    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_17c01da7dc70fda991662e78.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_10cb8f53d419664427c54db8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_81a340df70b2fd9aa40a27c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999512;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_34ca6cea41fbaa271a818df0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_b66fc9a860b2adde8e2aafaf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_81df50b333189e661fda3178.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.996094;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_7dc2cbf90e5799579a739f40.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8e57f7cc58d506b14a1a63ca.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d1a3daaf151f7041f1e21d6e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975098;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:ffd;src:url('chunks/assets/font_afcb3211c82129e04d490b7c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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:ffe;src:url('chunks/assets/font_58d618332a7f1b8350dee92f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.955078;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:fff;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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:ff10;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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:ff11;src:url('chunks/assets/font_9682d3b929df48750ab38bc2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999512;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:ff12;src:url('chunks/assets/font_35dab6d77c36bba0c91d09d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999512;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:ff13;src:url('chunks/assets/font_a922ef2d1444be1e4567fbdc.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.624000px;}
.lse{letter-spacing:-0.282000px;}
.ls10{letter-spacing:-0.155400px;}
.ls7{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.101400px;}
.ls11{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.025920px;}
.lsa{letter-spacing:0.034560px;}
.ls8{letter-spacing:0.074880px;}
.ls0{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.265200px;}
.ls6{letter-spacing:0.354000px;}
.lsc{letter-spacing:38.465280px;}
.lsb{letter-spacing:42.785280px;}
.ls4{letter-spacing:55.386720px;}
.ls2{letter-spacing:64.026720px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws3{word-spacing:-59.760000px;}
.ws2{word-spacing:-48.240000px;}
.ws6{word-spacing:-14.728080px;}
.ws5{word-spacing:-13.645440px;}
.ws7{word-spacing:-13.513200px;}
.ws0{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.363440px;}
.wsc{word-spacing:-13.248000px;}
.wsb{word-spacing:-13.239360px;}
.wsa{word-spacing:-13.092600px;}
.ws9{word-spacing:-13.021440px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.589760px;}
._1{width:1.085760px;}
.fc3{color:rgb(0,0,204);}
.fc1{color:rgb(84,141,212);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:56.520000px;}
.y2{bottom:57.780000px;}
.y1a{bottom:72.036000px;}
.y1{bottom:79.776000px;}
.y19{bottom:88.956000px;}
.y40{bottom:110.916000px;}
.ya4{bottom:113.616000px;}
.y17{bottom:116.316000px;}
.ya3{bottom:133.776000px;}
.y16{bottom:135.936000px;}
.y70{bottom:150.510000px;}
.ya2{bottom:153.930000px;}
.y15{bottom:157.170000px;}
.y6f{bottom:170.670000px;}
.ya1{bottom:174.090000px;}
.y14{bottom:177.330000px;}
.y6e{bottom:190.830000px;}
.ya0{bottom:194.070000px;}
.y13{bottom:197.310000px;}
.y6d{bottom:210.990000px;}
.y9f{bottom:214.230000px;}
.y12{bottom:226.830000px;}
.y6c{bottom:231.150000px;}
.y9e{bottom:234.390000px;}
.y6b{bottom:251.310000px;}
.y9d{bottom:254.550000px;}
.y11{bottom:257.430000px;}
.y6a{bottom:271.290000px;}
.y9c{bottom:274.710000px;}
.y10{bottom:286.590000px;}
.y69{bottom:291.450000px;}
.y9b{bottom:294.870000px;}
.y68{bottom:311.610000px;}
.y9a{bottom:315.030000px;}
.yf{bottom:315.750000px;}
.y67{bottom:331.770000px;}
.y99{bottom:335.190000px;}
.ye{bottom:344.955000px;}
.y66{bottom:351.975000px;}
.y98{bottom:355.395000px;}
.y65{bottom:372.135000px;}
.yd{bottom:374.115000px;}
.y97{bottom:375.555000px;}
.y64{bottom:392.295000px;}
.y96{bottom:395.535000px;}
.yc{bottom:404.355000px;}
.y63{bottom:412.455000px;}
.y3e{bottom:413.535000px;}
.y95{bottom:415.695000px;}
.y62{bottom:432.615000px;}
.y3d{bottom:433.695000px;}
.y94{bottom:435.855000px;}
.yb{bottom:438.195000px;}
.y61{bottom:452.775000px;}
.y3c{bottom:453.855000px;}
.y93{bottom:456.015000px;}
.ya{bottom:460.155000px;}
.y60{bottom:472.755000px;}
.y3b{bottom:474.015000px;}
.y92{bottom:476.175000px;}
.y9{bottom:491.295000px;}
.y5f{bottom:492.915000px;}
.y3a{bottom:494.175000px;}
.y91{bottom:496.335000px;}
.y5e{bottom:513.075000px;}
.y39{bottom:514.335000px;}
.y90{bottom:516.495000px;}
.y8{bottom:525.315000px;}
.y5d{bottom:533.235000px;}
.y38{bottom:534.495000px;}
.y8f{bottom:536.655000px;}
.y5c{bottom:553.395000px;}
.y37{bottom:554.475000px;}
.y8e{bottom:556.815000px;}
.y7{bottom:570.855000px;}
.y5b{bottom:573.555000px;}
.y36{bottom:574.635000px;}
.y8d{bottom:576.975000px;}
.y5a{bottom:593.715000px;}
.y35{bottom:594.795000px;}
.y8c{bottom:596.955000px;}
.y59{bottom:613.905000px;}
.y34{bottom:614.985000px;}
.y6{bottom:616.605000px;}
.y8b{bottom:617.145000px;}
.y58{bottom:634.065000px;}
.y33{bottom:635.145000px;}
.y8a{bottom:637.305000px;}
.y5{bottom:654.225000px;}
.y32{bottom:655.305000px;}
.y89{bottom:657.465000px;}
.y57{bottom:674.205000px;}
.y31{bottom:675.465000px;}
.y88{bottom:677.625000px;}
.y56{bottom:694.365000px;}
.y30{bottom:695.625000px;}
.y87{bottom:697.785000px;}
.y55{bottom:714.525000px;}
.y2f{bottom:715.785000px;}
.y86{bottom:717.945000px;}
.y54{bottom:734.685000px;}
.y2e{bottom:735.765000px;}
.y85{bottom:738.105000px;}
.y53{bottom:754.845000px;}
.y2d{bottom:755.925000px;}
.y84{bottom:758.265000px;}
.y52{bottom:775.005000px;}
.y2c{bottom:776.085000px;}
.y83{bottom:778.425000px;}
.y51{bottom:795.165000px;}
.y2b{bottom:796.245000px;}
.y82{bottom:798.405000px;}
.y50{bottom:815.325000px;}
.y2a{bottom:816.405000px;}
.y81{bottom:818.565000px;}
.y4f{bottom:835.485000px;}
.y29{bottom:836.565000px;}
.y80{bottom:838.725000px;}
.y4e{bottom:855.465000px;}
.y28{bottom:856.725000px;}
.y7f{bottom:858.885000px;}
.y4d{bottom:875.670000px;}
.y7e{bottom:879.090000px;}
.y27{bottom:891.510000px;}
.y4c{bottom:895.830000px;}
.y7d{bottom:899.250000px;}
.y4b{bottom:915.990000px;}
.y7c{bottom:919.410000px;}
.y26{bottom:920.490000px;}
.y4a{bottom:936.150000px;}
.y7b{bottom:939.570000px;}
.y25{bottom:940.650000px;}
.y49{bottom:956.310000px;}
.y7a{bottom:959.730000px;}
.y24{bottom:960.810000px;}
.y48{bottom:976.470000px;}
.y79{bottom:979.890000px;}
.y23{bottom:980.970000px;}
.y47{bottom:996.630000px;}
.y78{bottom:999.870000px;}
.y22{bottom:1001.130000px;}
.y46{bottom:1016.790000px;}
.y77{bottom:1020.030000px;}
.y21{bottom:1021.290000px;}
.y45{bottom:1036.950000px;}
.y76{bottom:1040.190000px;}
.y20{bottom:1041.450000px;}
.y44{bottom:1056.930000px;}
.y75{bottom:1060.350000px;}
.y1f{bottom:1061.430000px;}
.y43{bottom:1077.090000px;}
.y74{bottom:1080.510000px;}
.y1e{bottom:1081.590000px;}
.y42{bottom:1097.250000px;}
.y73{bottom:1100.670000px;}
.y1d{bottom:1101.750000px;}
.y4{bottom:1104.630000px;}
.y72{bottom:1120.830000px;}
.y41{bottom:1132.170000px;}
.y3{bottom:1133.250000px;}
.y1c{bottom:1136.670000px;}
.y71{bottom:1141.020000px;}
.y3f{bottom:1182.780000px;}
.y18{bottom:1189.080000px;}
.hc{height:41.456250px;}
.hf{height:47.868750px;}
.ha{height:49.992188px;}
.hb{height:50.359219px;}
.he{height:53.076094px;}
.h2{height:54.738281px;}
.h6{height:57.867188px;}
.h8{height:65.884219px;}
.h7{height:67.704609px;}
.h3{height:67.824844px;}
.h9{height:73.722656px;}
.hd{height:86.255508px;}
.h5{height:91.412930px;}
.h4{height:123.116836px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959987px;}
.x13{left:111.995987px;}
.x14{left:138.995987px;}
.x11{left:155.369987px;}
.x17{left:161.489987px;}
.x15{left:165.989987px;}
.x8{left:186.329987px;}
.xa{left:187.949987px;}
.x19{left:192.989987px;}
.x16{left:219.989987px;}
.x4{left:243.029987px;}
.xb{left:261.749987px;}
.xf{left:270.029987px;}
.x7{left:309.674987px;}
.x10{left:350.894987px;}
.xe{left:387.614987px;}
.x9{left:419.834987px;}
.x3{left:431.534987px;}
.xd{left:446.474987px;}
.x6{left:457.274987px;}
.xc{left:462.494987px;}
.x5{left:649.904987px;}
.x12{left:798.809987px;}
.x18{left:799.889987px;}
.x2{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.554667pt;}
.lse{letter-spacing:-0.250667pt;}
.ls10{letter-spacing:-0.138133pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.090133pt;}
.ls11{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.023040pt;}
.lsa{letter-spacing:0.030720pt;}
.ls8{letter-spacing:0.066560pt;}
.ls0{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.235733pt;}
.ls6{letter-spacing:0.314667pt;}
.lsc{letter-spacing:34.191360pt;}
.lsb{letter-spacing:38.031360pt;}
.ls4{letter-spacing:49.232640pt;}
.ls2{letter-spacing:56.912640pt;}
.ws4{word-spacing:-58.880000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws2{word-spacing:-42.880000pt;}
.ws6{word-spacing:-13.091627pt;}
.ws5{word-spacing:-12.129280pt;}
.ws7{word-spacing:-12.011733pt;}
.ws0{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.878613pt;}
.wsc{word-spacing:-11.776000pt;}
.wsb{word-spacing:-11.768320pt;}
.wsa{word-spacing:-11.637867pt;}
.ws9{word-spacing:-11.574613pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.413120pt;}
._1{width:0.965120pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:50.240000pt;}
.y2{bottom:51.360000pt;}
.y1a{bottom:64.032000pt;}
.y1{bottom:70.912000pt;}
.y19{bottom:79.072000pt;}
.y40{bottom:98.592000pt;}
.ya4{bottom:100.992000pt;}
.y17{bottom:103.392000pt;}
.ya3{bottom:118.912000pt;}
.y16{bottom:120.832000pt;}
.y70{bottom:133.786667pt;}
.ya2{bottom:136.826667pt;}
.y15{bottom:139.706667pt;}
.y6f{bottom:151.706667pt;}
.ya1{bottom:154.746667pt;}
.y14{bottom:157.626667pt;}
.y6e{bottom:169.626667pt;}
.ya0{bottom:172.506667pt;}
.y13{bottom:175.386667pt;}
.y6d{bottom:187.546667pt;}
.y9f{bottom:190.426667pt;}
.y12{bottom:201.626667pt;}
.y6c{bottom:205.466667pt;}
.y9e{bottom:208.346667pt;}
.y6b{bottom:223.386667pt;}
.y9d{bottom:226.266667pt;}
.y11{bottom:228.826667pt;}
.y6a{bottom:241.146667pt;}
.y9c{bottom:244.186667pt;}
.y10{bottom:254.746667pt;}
.y69{bottom:259.066667pt;}
.y9b{bottom:262.106667pt;}
.y68{bottom:276.986667pt;}
.y9a{bottom:280.026667pt;}
.yf{bottom:280.666667pt;}
.y67{bottom:294.906667pt;}
.y99{bottom:297.946667pt;}
.ye{bottom:306.626667pt;}
.y66{bottom:312.866667pt;}
.y98{bottom:315.906667pt;}
.y65{bottom:330.786667pt;}
.yd{bottom:332.546667pt;}
.y97{bottom:333.826667pt;}
.y64{bottom:348.706667pt;}
.y96{bottom:351.586667pt;}
.yc{bottom:359.426667pt;}
.y63{bottom:366.626667pt;}
.y3e{bottom:367.586667pt;}
.y95{bottom:369.506667pt;}
.y62{bottom:384.546667pt;}
.y3d{bottom:385.506667pt;}
.y94{bottom:387.426667pt;}
.yb{bottom:389.506667pt;}
.y61{bottom:402.466667pt;}
.y3c{bottom:403.426667pt;}
.y93{bottom:405.346667pt;}
.ya{bottom:409.026667pt;}
.y60{bottom:420.226667pt;}
.y3b{bottom:421.346667pt;}
.y92{bottom:423.266667pt;}
.y9{bottom:436.706667pt;}
.y5f{bottom:438.146667pt;}
.y3a{bottom:439.266667pt;}
.y91{bottom:441.186667pt;}
.y5e{bottom:456.066667pt;}
.y39{bottom:457.186667pt;}
.y90{bottom:459.106667pt;}
.y8{bottom:466.946667pt;}
.y5d{bottom:473.986667pt;}
.y38{bottom:475.106667pt;}
.y8f{bottom:477.026667pt;}
.y5c{bottom:491.906667pt;}
.y37{bottom:492.866667pt;}
.y8e{bottom:494.946667pt;}
.y7{bottom:507.426667pt;}
.y5b{bottom:509.826667pt;}
.y36{bottom:510.786667pt;}
.y8d{bottom:512.866667pt;}
.y5a{bottom:527.746667pt;}
.y35{bottom:528.706667pt;}
.y8c{bottom:530.626667pt;}
.y59{bottom:545.693333pt;}
.y34{bottom:546.653333pt;}
.y6{bottom:548.093333pt;}
.y8b{bottom:548.573333pt;}
.y58{bottom:563.613333pt;}
.y33{bottom:564.573333pt;}
.y8a{bottom:566.493333pt;}
.y5{bottom:581.533333pt;}
.y32{bottom:582.493333pt;}
.y89{bottom:584.413333pt;}
.y57{bottom:599.293333pt;}
.y31{bottom:600.413333pt;}
.y88{bottom:602.333333pt;}
.y56{bottom:617.213333pt;}
.y30{bottom:618.333333pt;}
.y87{bottom:620.253333pt;}
.y55{bottom:635.133333pt;}
.y2f{bottom:636.253333pt;}
.y86{bottom:638.173333pt;}
.y54{bottom:653.053333pt;}
.y2e{bottom:654.013333pt;}
.y85{bottom:656.093333pt;}
.y53{bottom:670.973333pt;}
.y2d{bottom:671.933333pt;}
.y84{bottom:674.013333pt;}
.y52{bottom:688.893333pt;}
.y2c{bottom:689.853333pt;}
.y83{bottom:691.933333pt;}
.y51{bottom:706.813333pt;}
.y2b{bottom:707.773333pt;}
.y82{bottom:709.693333pt;}
.y50{bottom:724.733333pt;}
.y2a{bottom:725.693333pt;}
.y81{bottom:727.613333pt;}
.y4f{bottom:742.653333pt;}
.y29{bottom:743.613333pt;}
.y80{bottom:745.533333pt;}
.y4e{bottom:760.413333pt;}
.y28{bottom:761.533333pt;}
.y7f{bottom:763.453333pt;}
.y4d{bottom:778.373333pt;}
.y7e{bottom:781.413333pt;}
.y27{bottom:792.453333pt;}
.y4c{bottom:796.293333pt;}
.y7d{bottom:799.333333pt;}
.y4b{bottom:814.213333pt;}
.y7c{bottom:817.253333pt;}
.y26{bottom:818.213333pt;}
.y4a{bottom:832.133333pt;}
.y7b{bottom:835.173333pt;}
.y25{bottom:836.133333pt;}
.y49{bottom:850.053333pt;}
.y7a{bottom:853.093333pt;}
.y24{bottom:854.053333pt;}
.y48{bottom:867.973333pt;}
.y79{bottom:871.013333pt;}
.y23{bottom:871.973333pt;}
.y47{bottom:885.893333pt;}
.y78{bottom:888.773333pt;}
.y22{bottom:889.893333pt;}
.y46{bottom:903.813333pt;}
.y77{bottom:906.693333pt;}
.y21{bottom:907.813333pt;}
.y45{bottom:921.733333pt;}
.y76{bottom:924.613333pt;}
.y20{bottom:925.733333pt;}
.y44{bottom:939.493333pt;}
.y75{bottom:942.533333pt;}
.y1f{bottom:943.493333pt;}
.y43{bottom:957.413333pt;}
.y74{bottom:960.453333pt;}
.y1e{bottom:961.413333pt;}
.y42{bottom:975.333333pt;}
.y73{bottom:978.373333pt;}
.y1d{bottom:979.333333pt;}
.y4{bottom:981.893333pt;}
.y72{bottom:996.293333pt;}
.y41{bottom:1006.373333pt;}
.y3{bottom:1007.333333pt;}
.y1c{bottom:1010.373333pt;}
.y71{bottom:1014.240000pt;}
.y3f{bottom:1051.360000pt;}
.y18{bottom:1056.960000pt;}
.hc{height:36.850000pt;}
.hf{height:42.550000pt;}
.ha{height:44.437500pt;}
.hb{height:44.763750pt;}
.he{height:47.178750pt;}
.h2{height:48.656250pt;}
.h6{height:51.437500pt;}
.h8{height:58.563750pt;}
.h7{height:60.181875pt;}
.h3{height:60.288750pt;}
.h9{height:65.531250pt;}
.hd{height:76.671562pt;}
.h5{height:81.255937pt;}
.h4{height:109.437187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519988pt;}
.x13{left:99.551988pt;}
.x14{left:123.551988pt;}
.x11{left:138.106655pt;}
.x17{left:143.546655pt;}
.x15{left:147.546655pt;}
.x8{left:165.626655pt;}
.xa{left:167.066655pt;}
.x19{left:171.546655pt;}
.x16{left:195.546655pt;}
.x4{left:216.026655pt;}
.xb{left:232.666655pt;}
.xf{left:240.026655pt;}
.x7{left:275.266655pt;}
.x10{left:311.906655pt;}
.xe{left:344.546655pt;}
.x9{left:373.186655pt;}
.x3{left:383.586655pt;}
.xd{left:396.866655pt;}
.x6{left:406.466655pt;}
.xc{left:411.106655pt;}
.x5{left:577.693322pt;}
.x12{left:710.053322pt;}
.x18{left:711.013322pt;}
.x2{left:718.213322pt;}
}




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