
    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_00efa9b66c53289d207d1a1b.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_2ae26304fd7bba9ab521a994.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_28550390534e575d2715af75.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_6c3b55c594dc9ed36800a5c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_6ba1947974fbe5ca06a63f4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_2e54414ad9ed49d9e60f7fad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8b17b9e246c0802f7a765eb6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ae9db1bebcbadc85c56b874f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2ef3f0e4bb490ee09a03b5fc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9ee702687d43bc48f8144413.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_9a88a189610e0fe02eada1e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_77e0430aca0b9833ae120ac8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7ff43b296da6156d7be859ed.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b1eeefc4a2eb20394a4678f4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9ee702687d43bc48f8144413.woff2')format("woff");}.fff{font-family:fff;line-height:0.937500;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_756ab1f0fc4267212b7feefa.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0c6464ea5c3cc68d2607f691.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_efa78091b06ae71368ac6e7e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_bfd6c5645860c39954fde0ff.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_7f3bda8c4326785bef127477.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9ee702687d43bc48f8144413.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.937500;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);}
.v5{vertical-align:-79.920000px;}
.v3{vertical-align:-78.480000px;}
.v2{vertical-align:-76.320000px;}
.v4{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.ls8{letter-spacing:-0.109200px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.720000px;}
.ls2{letter-spacing:27.540000px;}
.ls0{letter-spacing:32.580000px;}
.ls9{letter-spacing:199.056000px;}
.ls1{letter-spacing:240.636000px;}
.ls3{letter-spacing:254.496000px;}
.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;}
}
.ws3{word-spacing:-95.760000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.450800px;}
.ws4{word-spacing:-12.204000px;}
.ws6{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2.679840px;}
._0{margin-left:-1.136160px;}
._10{width:1.383840px;}
._12{width:2.448000px;}
._11{width:3.672000px;}
._13{width:4.776480px;}
._6{width:5.784480px;}
._7{width:7.359840px;}
._e{width:8.937120px;}
._f{width:10.390560px;}
._9{width:11.423520px;}
._8{width:13.407840px;}
._1b{width:15.360480px;}
._c{width:19.728000px;}
._d{width:20.848320px;}
._2{width:22.072320px;}
._19{width:24.048000px;}
._4{width:25.328160px;}
._1a{width:26.496000px;}
._b{width:27.735840px;}
._a{width:29.376000px;}
._18{width:30.880800px;}
._1f{width:31.896000px;}
._20{width:33.631200px;}
._21{width:34.632000px;}
._22{width:35.928000px;}
._14{width:37.512000px;}
._1c{width:40.248000px;}
._1d{width:41.328000px;}
._1e{width:42.984000px;}
._3{width:59.616000px;}
._5{width:61.359840px;}
._17{width:63.933120px;}
._16{width:64.984800px;}
._15{width:66.928320px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,128);}
.fs8{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:113.760000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.212500px;}
.y2{bottom:6.300000px;}
.y3{bottom:52.243500px;}
.y6{bottom:57.636000px;}
.y86{bottom:131.796000px;}
.y5c{bottom:135.756000px;}
.y31{bottom:138.996000px;}
.y30{bottom:146.556000px;}
.y5b{bottom:155.550000px;}
.y85{bottom:155.730000px;}
.y2f{bottom:159.150000px;}
.y5a{bottom:175.170000px;}
.y2e{bottom:190.290000px;}
.y59{bottom:194.970000px;}
.y84{bottom:199.470000px;}
.y2d{bottom:214.050000px;}
.y58{bottom:214.770000px;}
.y83{bottom:214.950000px;}
.y57{bottom:235.830000px;}
.y2c{bottom:237.810000px;}
.y82{bottom:238.530000px;}
.y56{bottom:259.590000px;}
.y2b{bottom:261.390000px;}
.y81{bottom:262.290000px;}
.y55{bottom:283.215000px;}
.y2a{bottom:285.195000px;}
.y80{bottom:306.255000px;}
.y54{bottom:306.975000px;}
.y29{bottom:308.955000px;}
.y7f{bottom:329.835000px;}
.y53{bottom:330.735000px;}
.y28{bottom:350.355000px;}
.y7e{bottom:353.595000px;}
.y52{bottom:354.495000px;}
.y27{bottom:364.035000px;}
.y7d{bottom:377.355000px;}
.y51{bottom:378.075000px;}
.y26{bottom:387.795000px;}
.y50{bottom:401.835000px;}
.y7c{bottom:421.095000px;}
.y4f{bottom:425.595000px;}
.y25{bottom:430.995000px;}
.y7b{bottom:436.215000px;}
.y24{bottom:446.295000px;}
.y4e{bottom:449.355000px;}
.y7a{bottom:459.975000px;}
.y22{bottom:465.915000px;}
.y4d{bottom:472.935000px;}
.y23{bottom:474.195000px;}
.y79{bottom:483.735000px;}
.y21{bottom:489.675000px;}
.y4c{bottom:496.695000px;}
.y78{bottom:506.595000px;}
.y20{bottom:513.435000px;}
.y4b{bottom:520.455000px;}
.y77{bottom:527.475000px;}
.y1f{bottom:537.375000px;}
.y4a{bottom:544.215000px;}
.y76{bottom:551.235000px;}
.y1e{bottom:561.165000px;}
.y49{bottom:567.825000px;}
.y75{bottom:575.025000px;}
.y1d{bottom:584.925000px;}
.y48{bottom:591.585000px;}
.y74{bottom:598.785000px;}
.y1c{bottom:608.685000px;}
.y47{bottom:615.345000px;}
.y73{bottom:622.365000px;}
.y1b{bottom:632.625000px;}
.y46{bottom:639.105000px;}
.y72{bottom:646.125000px;}
.y1a{bottom:656.385000px;}
.y45{bottom:662.865000px;}
.y71{bottom:669.885000px;}
.y19{bottom:680.145000px;}
.y44{bottom:686.445000px;}
.y70{bottom:693.645000px;}
.y18{bottom:703.905000px;}
.y43{bottom:710.205000px;}
.y6f{bottom:717.225000px;}
.y17{bottom:727.665000px;}
.y42{bottom:733.965000px;}
.y6e{bottom:740.985000px;}
.y16{bottom:751.605000px;}
.y41{bottom:757.725000px;}
.y6d{bottom:760.965000px;}
.y15{bottom:775.365000px;}
.y6c{bottom:776.265000px;}
.y40{bottom:781.305000px;}
.y14{bottom:799.125000px;}
.y6b{bottom:800.025000px;}
.y3f{bottom:805.065000px;}
.y13{bottom:822.885000px;}
.y6a{bottom:823.605000px;}
.y3e{bottom:828.825000px;}
.y69{bottom:846.510000px;}
.y12{bottom:846.870000px;}
.y3d{bottom:852.630000px;}
.y68{bottom:867.570000px;}
.y11{bottom:870.630000px;}
.y3c{bottom:876.210000px;}
.y67{bottom:891.330000px;}
.y10{bottom:894.390000px;}
.y3b{bottom:899.970000px;}
.y66{bottom:914.910000px;}
.yf{bottom:918.150000px;}
.y65{bottom:938.670000px;}
.ye{bottom:942.090000px;}
.y3a{bottom:943.710000px;}
.y39{bottom:959.010000px;}
.y64{bottom:962.430000px;}
.yd{bottom:985.110000px;}
.y63{bottom:986.190000px;}
.yc{bottom:999.690000px;}
.y38{bottom:1002.210000px;}
.y62{bottom:1009.770000px;}
.y37{bottom:1021.650000px;}
.yb{bottom:1032.810000px;}
.y61{bottom:1033.530000px;}
.y8b{bottom:1044.870000px;}
.y36{bottom:1045.410000px;}
.ya{bottom:1047.750000px;}
.y60{bottom:1057.290000px;}
.y9{bottom:1067.010000px;}
.y8a{bottom:1068.630000px;}
.y35{bottom:1069.170000px;}
.y5f{bottom:1081.050000px;}
.y89{bottom:1092.570000px;}
.y34{bottom:1092.930000px;}
.y8{bottom:1103.370000px;}
.y88{bottom:1116.330000px;}
.y33{bottom:1116.510000px;}
.y7{bottom:1123.380000px;}
.y5e{bottom:1124.640000px;}
.y5d{bottom:1139.940000px;}
.y87{bottom:1140.120000px;}
.y32{bottom:1140.300000px;}
.y1{bottom:1192.680000px;}
.y5{bottom:1236.780000px;}
.h2{height:20.700000px;}
.h4{height:20.872500px;}
.h11{height:31.707422px;}
.h10{height:35.332031px;}
.h13{height:36.281250px;}
.hc{height:47.344922px;}
.h6{height:50.294531px;}
.ha{height:52.998047px;}
.h8{height:54.421875px;}
.hb{height:58.651172px;}
.hd{height:64.546875px;}
.h3{height:66.757500px;}
.hf{height:70.628906px;}
.h5{height:70.664062px;}
.h12{height:72.562500px;}
.h7{height:114.529219px;}
.h9{height:145.125000px;}
.he{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:69.105000px;}
.w2{width:76.309500px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.429500px;}
.x4{left:3.060000px;}
.x1{left:112.546500px;}
.x5{left:127.656000px;}
.xc{left:132.876000px;}
.xe{left:138.276000px;}
.x6{left:139.536000px;}
.xa{left:148.896000px;}
.xd{left:159.690000px;}
.x7{left:191.550000px;}
.xb{left:343.695000px;}
.x8{left:710.608125px;}
.x9{left:716.730000px;}
.x3{left:767.490000px;}
@media print{
.v5{vertical-align:-71.040000pt;}
.v3{vertical-align:-69.760000pt;}
.v2{vertical-align:-67.840000pt;}
.v4{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:24.480000pt;}
.ls0{letter-spacing:28.960000pt;}
.ls9{letter-spacing:176.938667pt;}
.ls1{letter-spacing:213.898667pt;}
.ls3{letter-spacing:226.218667pt;}
.ws3{word-spacing:-85.120000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.622933pt;}
.ws4{word-spacing:-10.848000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2.382080pt;}
._0{margin-left:-1.009920pt;}
._10{width:1.230080pt;}
._12{width:2.176000pt;}
._11{width:3.264000pt;}
._13{width:4.245760pt;}
._6{width:5.141760pt;}
._7{width:6.542080pt;}
._e{width:7.944107pt;}
._f{width:9.236053pt;}
._9{width:10.154240pt;}
._8{width:11.918080pt;}
._1b{width:13.653760pt;}
._c{width:17.536000pt;}
._d{width:18.531840pt;}
._2{width:19.619840pt;}
._19{width:21.376000pt;}
._4{width:22.513920pt;}
._1a{width:23.552000pt;}
._b{width:24.654080pt;}
._a{width:26.112000pt;}
._18{width:27.449600pt;}
._1f{width:28.352000pt;}
._20{width:29.894400pt;}
._21{width:30.784000pt;}
._22{width:31.936000pt;}
._14{width:33.344000pt;}
._1c{width:35.776000pt;}
._1d{width:36.736000pt;}
._1e{width:38.208000pt;}
._3{width:52.992000pt;}
._5{width:54.542080pt;}
._17{width:56.829440pt;}
._16{width:57.764267pt;}
._15{width:59.491840pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:101.120000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.633333pt;}
.y2{bottom:5.600000pt;}
.y3{bottom:46.438667pt;}
.y6{bottom:51.232000pt;}
.y86{bottom:117.152000pt;}
.y5c{bottom:120.672000pt;}
.y31{bottom:123.552000pt;}
.y30{bottom:130.272000pt;}
.y5b{bottom:138.266667pt;}
.y85{bottom:138.426667pt;}
.y2f{bottom:141.466667pt;}
.y5a{bottom:155.706667pt;}
.y2e{bottom:169.146667pt;}
.y59{bottom:173.306667pt;}
.y84{bottom:177.306667pt;}
.y2d{bottom:190.266667pt;}
.y58{bottom:190.906667pt;}
.y83{bottom:191.066667pt;}
.y57{bottom:209.626667pt;}
.y2c{bottom:211.386667pt;}
.y82{bottom:212.026667pt;}
.y56{bottom:230.746667pt;}
.y2b{bottom:232.346667pt;}
.y81{bottom:233.146667pt;}
.y55{bottom:251.746667pt;}
.y2a{bottom:253.506667pt;}
.y80{bottom:272.226667pt;}
.y54{bottom:272.866667pt;}
.y29{bottom:274.626667pt;}
.y7f{bottom:293.186667pt;}
.y53{bottom:293.986667pt;}
.y28{bottom:311.426667pt;}
.y7e{bottom:314.306667pt;}
.y52{bottom:315.106667pt;}
.y27{bottom:323.586667pt;}
.y7d{bottom:335.426667pt;}
.y51{bottom:336.066667pt;}
.y26{bottom:344.706667pt;}
.y50{bottom:357.186667pt;}
.y7c{bottom:374.306667pt;}
.y4f{bottom:378.306667pt;}
.y25{bottom:383.106667pt;}
.y7b{bottom:387.746667pt;}
.y24{bottom:396.706667pt;}
.y4e{bottom:399.426667pt;}
.y7a{bottom:408.866667pt;}
.y22{bottom:414.146667pt;}
.y4d{bottom:420.386667pt;}
.y23{bottom:421.506667pt;}
.y79{bottom:429.986667pt;}
.y21{bottom:435.266667pt;}
.y4c{bottom:441.506667pt;}
.y78{bottom:450.306667pt;}
.y20{bottom:456.386667pt;}
.y4b{bottom:462.626667pt;}
.y77{bottom:468.866667pt;}
.y1f{bottom:477.666667pt;}
.y4a{bottom:483.746667pt;}
.y76{bottom:489.986667pt;}
.y1e{bottom:498.813333pt;}
.y49{bottom:504.733333pt;}
.y75{bottom:511.133333pt;}
.y1d{bottom:519.933333pt;}
.y48{bottom:525.853333pt;}
.y74{bottom:532.253333pt;}
.y1c{bottom:541.053333pt;}
.y47{bottom:546.973333pt;}
.y73{bottom:553.213333pt;}
.y1b{bottom:562.333333pt;}
.y46{bottom:568.093333pt;}
.y72{bottom:574.333333pt;}
.y1a{bottom:583.453333pt;}
.y45{bottom:589.213333pt;}
.y71{bottom:595.453333pt;}
.y19{bottom:604.573333pt;}
.y44{bottom:610.173333pt;}
.y70{bottom:616.573333pt;}
.y18{bottom:625.693333pt;}
.y43{bottom:631.293333pt;}
.y6f{bottom:637.533333pt;}
.y17{bottom:646.813333pt;}
.y42{bottom:652.413333pt;}
.y6e{bottom:658.653333pt;}
.y16{bottom:668.093333pt;}
.y41{bottom:673.533333pt;}
.y6d{bottom:676.413333pt;}
.y15{bottom:689.213333pt;}
.y6c{bottom:690.013333pt;}
.y40{bottom:694.493333pt;}
.y14{bottom:710.333333pt;}
.y6b{bottom:711.133333pt;}
.y3f{bottom:715.613333pt;}
.y13{bottom:731.453333pt;}
.y6a{bottom:732.093333pt;}
.y3e{bottom:736.733333pt;}
.y69{bottom:752.453333pt;}
.y12{bottom:752.773333pt;}
.y3d{bottom:757.893333pt;}
.y68{bottom:771.173333pt;}
.y11{bottom:773.893333pt;}
.y3c{bottom:778.853333pt;}
.y67{bottom:792.293333pt;}
.y10{bottom:795.013333pt;}
.y3b{bottom:799.973333pt;}
.y66{bottom:813.253333pt;}
.yf{bottom:816.133333pt;}
.y65{bottom:834.373333pt;}
.ye{bottom:837.413333pt;}
.y3a{bottom:838.853333pt;}
.y39{bottom:852.453333pt;}
.y64{bottom:855.493333pt;}
.yd{bottom:875.653333pt;}
.y63{bottom:876.613333pt;}
.yc{bottom:888.613333pt;}
.y38{bottom:890.853333pt;}
.y62{bottom:897.573333pt;}
.y37{bottom:908.133333pt;}
.yb{bottom:918.053333pt;}
.y61{bottom:918.693333pt;}
.y8b{bottom:928.773333pt;}
.y36{bottom:929.253333pt;}
.ya{bottom:931.333333pt;}
.y60{bottom:939.813333pt;}
.y9{bottom:948.453333pt;}
.y8a{bottom:949.893333pt;}
.y35{bottom:950.373333pt;}
.y5f{bottom:960.933333pt;}
.y89{bottom:971.173333pt;}
.y34{bottom:971.493333pt;}
.y8{bottom:980.773333pt;}
.y88{bottom:992.293333pt;}
.y33{bottom:992.453333pt;}
.y7{bottom:998.560000pt;}
.y5e{bottom:999.680000pt;}
.y5d{bottom:1013.280000pt;}
.y87{bottom:1013.440000pt;}
.y32{bottom:1013.600000pt;}
.y1{bottom:1060.160000pt;}
.y5{bottom:1099.360000pt;}
.h2{height:18.400000pt;}
.h4{height:18.553333pt;}
.h11{height:28.184375pt;}
.h10{height:31.406250pt;}
.h13{height:32.250000pt;}
.hc{height:42.084375pt;}
.h6{height:44.706250pt;}
.ha{height:47.109375pt;}
.h8{height:48.375000pt;}
.hb{height:52.134375pt;}
.hd{height:57.375000pt;}
.h3{height:59.340000pt;}
.hf{height:62.781250pt;}
.h5{height:62.812500pt;}
.h12{height:64.500000pt;}
.h7{height:101.803750pt;}
.h9{height:129.000000pt;}
.he{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:61.426667pt;}
.w2{width:67.830667pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.270667pt;}
.x4{left:2.720000pt;}
.x1{left:100.041333pt;}
.x5{left:113.472000pt;}
.xc{left:118.112000pt;}
.xe{left:122.912000pt;}
.x6{left:124.032000pt;}
.xa{left:132.352000pt;}
.xd{left:141.946667pt;}
.x7{left:170.266667pt;}
.xb{left:305.506667pt;}
.x8{left:631.651667pt;}
.x9{left:637.093333pt;}
.x3{left:682.213333pt;}
}




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