
    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_3192f11b86dbafdafe0c0119.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.857000;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_947f6e10d88054a74155e8f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_8fd847f5e5bece27b389fb3f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.094000;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_2e101d085b4261e936b08889.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.859000;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_e17b744ccce144bac62be19f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.013000;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_f6b961e64223c604205f5e8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.105000;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_afc838916b2ef925a5431ed7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.105000;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_a4944d5803d01609943f9941.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;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_f6b961e64223c604205f5e8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.105000;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_912c10793f531148c5611725.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100000;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_dea786a2ef405895a6baac8d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_bb096477e7eda37682839a9c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.717285;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_e687cabec969900e7c17445d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.856000;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_28f8c52d7465cfbf8287908d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.725048;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_8fd847f5e5bece27b389fb3f.woff2')format("woff");}.fff{font-family:fff;line-height:1.094000;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_30cb60f66698d620e76d2061.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_83f7a105d422dbc89d55dac2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936000;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_d7a493c8b0070e1090fe7988.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.094000;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_47033d21b7148d081c63d618.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.934000;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_bb962aec9f2c172adce11aa6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.934000;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_bc2ba7813e753e2064e897cb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.957000;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:ff16;src:url('chunks/assets/font_3e653a4704a12b23ab3d1697.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.949000;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:ff17;src:url('chunks/assets/font_9c21043c784f90df3e81bb37.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.957000;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);}
.v2{vertical-align:-23.680200px;}
.v3{vertical-align:-17.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.680200px;}
.ls2{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.244200px;}
.ls4{letter-spacing:1.009800px;}
.ls5{letter-spacing:1.221000px;}
.ls3{letter-spacing:5.327190px;}
.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;}
}
.ws5{word-spacing:-21.120000px;}
.ws8{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.800000px;}
.wsf{word-spacing:-19.569000px;}
.ws6{word-spacing:-19.200000px;}
.wsb{word-spacing:-18.348000px;}
.ws1{word-spacing:-18.000000px;}
.wse{word-spacing:-16.896000px;}
.ws7{word-spacing:-16.012800px;}
.ws3{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.360000px;}
.wsa{word-spacing:-14.400000px;}
.ws9{word-spacing:-10.560000px;}
.ws4{word-spacing:-0.090000px;}
.wsc{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-10.035000px;}
._f{margin-left:-8.352000px;}
._3{margin-left:-7.296000px;}
._2{margin-left:-5.299200px;}
._1{margin-left:-4.117620px;}
._15{margin-left:-2.989800px;}
._0{margin-left:-1.944000px;}
._4{width:1.537800px;}
._8{width:3.445200px;}
._c{width:4.474800px;}
._14{width:6.435000px;}
._d{width:8.718600px;}
._b{width:10.899600px;}
._a{width:12.405000px;}
._e{width:13.942800px;}
._9{width:15.130800px;}
._11{width:20.763600px;}
._10{width:21.776400px;}
._5{width:27.746400px;}
._17{width:28.785600px;}
._7{width:29.944200px;}
._6{width:31.229400px;}
._13{width:33.109200px;}
._12{width:35.280360px;}
.fcf{color:rgb(20,20,20);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(103,103,103);}
.fc2{color:rgb(26,26,26);}
.fc3{color:rgb(38,38,38);}
.fc6{color:rgb(52,52,52);}
.fc7{color:rgb(128,128,128);}
.fc9{color:rgb(25,25,25);}
.fc4{color:rgb(0,0,153);}
.fcd{color:rgb(19,19,19);}
.fc5{color:rgb(0,90,124);}
.fce{color:rgb(34,34,34);}
.fca{color:rgb(0,10,155);}
.fc8{color:transparent;}
.fcb{color:rgb(0,0,255);}
.fcc{color:rgb(28,0,0);}
.fsd{font-size:48.000000px;}
.fs7{font-size:57.600000px;}
.fs8{font-size:60.000000px;}
.fsc{font-size:64.000020px;}
.fse{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:76.800000px;}
.fs3{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fsb{font-size:156.000000px;}
.fs1{font-size:216.000000px;}
.fsa{font-size:264.000000px;}
.fs9{font-size:384.000000px;}
.fs0{font-size:660.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.003342px;}
.y52{bottom:54.413403px;}
.y66{bottom:57.413403px;}
.y27{bottom:58.913358px;}
.y43{bottom:60.413358px;}
.y51{bottom:73.913403px;}
.y50{bottom:78.413358px;}
.y4f{bottom:97.913358px;}
.y47{bottom:108.413403px;}
.y3e{bottom:111.413358px;}
.y1c{bottom:115.913358px;}
.y25{bottom:117.413358px;}
.y61{bottom:118.913358px;}
.y6b{bottom:118.913403px;}
.y41{bottom:120.413358px;}
.y5e{bottom:132.413358px;}
.y4e{bottom:135.413358px;}
.y3d{bottom:136.853358px;}
.y1b{bottom:136.913358px;}
.y60{bottom:138.413358px;}
.y24{bottom:147.413358px;}
.y40{bottom:150.413358px;}
.y64{bottom:151.913358px;}
.y4d{bottom:154.913358px;}
.y1a{bottom:162.413358px;}
.y5d{bottom:166.913358px;}
.y46{bottom:168.413358px;}
.y63{bottom:171.413358px;}
.y23{bottom:178.913358px;}
.y3b{bottom:181.913358px;}
.y45{bottom:187.913358px;}
.y62{bottom:190.913358px;}
.y5c{bottom:196.913358px;}
.y19{bottom:199.913358px;}
.y44{bottom:207.413358px;}
.y22{bottom:208.913358px;}
.y3a{bottom:211.913358px;}
.y18{bottom:225.413358px;}
.y5b{bottom:228.413358px;}
.y21{bottom:240.413358px;}
.y39{bottom:243.413358px;}
.y17{bottom:249.413358px;}
.y5a{bottom:259.913358px;}
.y4c{bottom:268.913358px;}
.y20{bottom:271.913358px;}
.y16{bottom:274.913358px;}
.y5f{bottom:285.413358px;}
.y59{bottom:289.913358px;}
.y15{bottom:298.913358px;}
.y1f{bottom:301.913358px;}
.y38{bottom:304.913358px;}
.y54{bottom:318.412608px;}
.y6a{bottom:319.913358px;}
.y58{bottom:321.413358px;}
.y14{bottom:324.413358px;}
.y1e{bottom:333.413358px;}
.y37{bottom:336.413358px;}
.y53{bottom:337.912608px;}
.y69{bottom:340.913358px;}
.y13{bottom:348.413358px;}
.y57{bottom:351.413358px;}
.y68{bottom:354.413358px;}
.y1d{bottom:363.413358px;}
.y36{bottom:366.413358px;}
.y12{bottom:373.913358px;}
.y67{bottom:375.413358px;}
.y56{bottom:382.913358px;}
.y49{bottom:393.413358px;}
.y35{bottom:397.913358px;}
.y48{bottom:412.913358px;}
.y55{bottom:414.413358px;}
.y11{bottom:423.413358px;}
.y34{bottom:429.413358px;}
.y10{bottom:447.413358px;}
.y65{bottom:448.913358px;}
.y4{bottom:451.913358px;}
.y33{bottom:459.413358px;}
.yf{bottom:472.913358px;}
.y42{bottom:480.413358px;}
.y3f{bottom:490.913358px;}
.ye{bottom:496.913358px;}
.y32{bottom:520.913358px;}
.yd{bottom:546.413358px;}
.y31{bottom:552.413358px;}
.y2a{bottom:567.413358px;}
.yc{bottom:571.913358px;}
.y30{bottom:583.913358px;}
.yb{bottom:595.913358px;}
.y4b{bottom:603.413358px;}
.y3{bottom:610.913358px;}
.y2f{bottom:613.913358px;}
.ya{bottom:621.413358px;}
.y4a{bottom:622.913358px;}
.y9{bottom:645.413358px;}
.y29{bottom:649.913358px;}
.y2{bottom:669.413358px;}
.y8{bottom:670.913358px;}
.y2e{bottom:675.413358px;}
.y7{bottom:694.913358px;}
.y2d{bottom:706.913358px;}
.y28{bottom:715.913358px;}
.y2c{bottom:738.413358px;}
.y6{bottom:744.413358px;}
.y2b{bottom:768.413358px;}
.y5{bottom:769.913358px;}
.y3c{bottom:819.413358px;}
.y26{bottom:823.913358px;}
.hb{height:43.037109px;}
.h11{height:43.800000px;}
.h12{height:48.114000px;}
.ha{height:52.300800px;}
.h10{height:54.480000px;}
.h8{height:61.560000px;}
.hf{height:65.376000px;}
.h13{height:67.104000px;}
.h14{height:67.296000px;}
.h6{height:76.410000px;}
.h7{height:76.950000px;}
.h5{height:78.948000px;}
.h9{height:82.080000px;}
.he{height:132.288000px;}
.h4{height:183.168000px;}
.hd{height:188.496000px;}
.hc{height:325.632000px;}
.h3{height:559.680000px;}
.h2{height:892.913400px;}
.h0{height:892.920000px;}
.h1{height:893.250000px;}
.w2{width:1262.834700px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2f{left:40.499997px;}
.x18{left:58.499997px;}
.x25{left:70.499997px;}
.x35{left:82.499997px;}
.x20{left:86.999997px;}
.x3e{left:124.499997px;}
.xd{left:125.999997px;}
.x4{left:127.559055px;}
.x2a{left:128.999997px;}
.x1{left:159.090087px;}
.x7{left:241.800192px;}
.x2{left:362.862147px;}
.x16{left:439.500000px;}
.x17{left:440.911350px;}
.x3{left:451.732797px;}
.x1e{left:457.500000px;}
.x1d{left:460.248000px;}
.x23{left:465.000000px;}
.x22{left:467.283000px;}
.x3d{left:491.449200px;}
.x8{left:501.155847px;}
.x1b{left:518.999967px;}
.x10{left:588.883650px;}
.x31{left:594.916542px;}
.x13{left:598.499967px;}
.x11{left:600.544950px;}
.x21{left:608.999967px;}
.x37{left:622.499967px;}
.x14{left:659.999967px;}
.x32{left:690.000000px;}
.x33{left:692.161650px;}
.xb{left:732.513600px;}
.xc{left:743.229000px;}
.x2b{left:749.999967px;}
.x28{left:785.022450px;}
.x2e{left:828.758850px;}
.x27{left:830.999967px;}
.x3b{left:938.603937px;}
.xf{left:965.999967px;}
.x2d{left:971.999967px;}
.x5{left:995.783250px;}
.x9{left:998.238147px;}
.x3a{left:1035.736962px;}
.x39{left:1046.461722px;}
.x3c{left:1067.287317px;}
.x3f{left:1086.921150px;}
.x36{left:1092.758550px;}
.x38{left:1094.730600px;}
.x2c{left:1096.926000px;}
.x34{left:1100.010600px;}
.x30{left:1101.093450px;}
.x26{left:1102.763400px;}
.x29{left:1103.895600px;}
.x1a{left:1105.290600px;}
.x19{left:1106.930850px;}
.x24{left:1109.175600px;}
.x1c{left:1111.098300px;}
.x12{left:1112.768250px;}
.x15{left:1115.265900px;}
.x1f{left:1116.945600px;}
.xe{left:1118.340600px;}
.x6{left:1121.103300px;}
.xa{left:1126.110600px;}
@media print{
.v2{vertical-align:-21.049067pt;}
.v3{vertical-align:-15.786667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.049067pt;}
.ls2{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.217067pt;}
.ls4{letter-spacing:0.897600pt;}
.ls5{letter-spacing:1.085333pt;}
.ls3{letter-spacing:4.735280pt;}
.ws5{word-spacing:-18.773333pt;}
.ws8{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.600000pt;}
.wsf{word-spacing:-17.394667pt;}
.ws6{word-spacing:-17.066667pt;}
.wsb{word-spacing:-16.309333pt;}
.ws1{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.018667pt;}
.ws7{word-spacing:-14.233600pt;}
.ws3{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.653333pt;}
.wsa{word-spacing:-12.800000pt;}
.ws9{word-spacing:-9.386667pt;}
.ws4{word-spacing:-0.080000pt;}
.wsc{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-8.920000pt;}
._f{margin-left:-7.424000pt;}
._3{margin-left:-6.485333pt;}
._2{margin-left:-4.710400pt;}
._1{margin-left:-3.660107pt;}
._15{margin-left:-2.657600pt;}
._0{margin-left:-1.728000pt;}
._4{width:1.366933pt;}
._8{width:3.062400pt;}
._c{width:3.977600pt;}
._14{width:5.720000pt;}
._d{width:7.749867pt;}
._b{width:9.688533pt;}
._a{width:11.026667pt;}
._e{width:12.393600pt;}
._9{width:13.449600pt;}
._11{width:18.456533pt;}
._10{width:19.356800pt;}
._5{width:24.663467pt;}
._17{width:25.587200pt;}
._7{width:26.617067pt;}
._6{width:27.759467pt;}
._13{width:29.430400pt;}
._12{width:31.360320pt;}
.fsd{font-size:42.666667pt;}
.fs7{font-size:51.200000pt;}
.fs8{font-size:53.333333pt;}
.fsc{font-size:56.888907pt;}
.fse{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:68.266667pt;}
.fs3{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fsb{font-size:138.666667pt;}
.fs1{font-size:192.000000pt;}
.fsa{font-size:234.666667pt;}
.fs9{font-size:341.333333pt;}
.fs0{font-size:586.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.002970pt;}
.y52{bottom:48.367470pt;}
.y66{bottom:51.034136pt;}
.y27{bottom:52.367430pt;}
.y43{bottom:53.700763pt;}
.y51{bottom:65.700803pt;}
.y50{bottom:69.700763pt;}
.y4f{bottom:87.034096pt;}
.y47{bottom:96.367470pt;}
.y3e{bottom:99.034096pt;}
.y1c{bottom:103.034096pt;}
.y25{bottom:104.367430pt;}
.y61{bottom:105.700763pt;}
.y6b{bottom:105.700803pt;}
.y41{bottom:107.034096pt;}
.y5e{bottom:117.700763pt;}
.y4e{bottom:120.367430pt;}
.y3d{bottom:121.647430pt;}
.y1b{bottom:121.700763pt;}
.y60{bottom:123.034096pt;}
.y24{bottom:131.034096pt;}
.y40{bottom:133.700763pt;}
.y64{bottom:135.034096pt;}
.y4d{bottom:137.700763pt;}
.y1a{bottom:144.367430pt;}
.y5d{bottom:148.367430pt;}
.y46{bottom:149.700763pt;}
.y63{bottom:152.367430pt;}
.y23{bottom:159.034096pt;}
.y3b{bottom:161.700763pt;}
.y45{bottom:167.034096pt;}
.y62{bottom:169.700763pt;}
.y5c{bottom:175.034096pt;}
.y19{bottom:177.700763pt;}
.y44{bottom:184.367430pt;}
.y22{bottom:185.700763pt;}
.y3a{bottom:188.367430pt;}
.y18{bottom:200.367430pt;}
.y5b{bottom:203.034096pt;}
.y21{bottom:213.700763pt;}
.y39{bottom:216.367430pt;}
.y17{bottom:221.700763pt;}
.y5a{bottom:231.034096pt;}
.y4c{bottom:239.034096pt;}
.y20{bottom:241.700763pt;}
.y16{bottom:244.367430pt;}
.y5f{bottom:253.700763pt;}
.y59{bottom:257.700763pt;}
.y15{bottom:265.700763pt;}
.y1f{bottom:268.367430pt;}
.y38{bottom:271.034096pt;}
.y54{bottom:283.033430pt;}
.y6a{bottom:284.367430pt;}
.y58{bottom:285.700763pt;}
.y14{bottom:288.367430pt;}
.y1e{bottom:296.367430pt;}
.y37{bottom:299.034096pt;}
.y53{bottom:300.366763pt;}
.y69{bottom:303.034096pt;}
.y13{bottom:309.700763pt;}
.y57{bottom:312.367430pt;}
.y68{bottom:315.034096pt;}
.y1d{bottom:323.034096pt;}
.y36{bottom:325.700763pt;}
.y12{bottom:332.367430pt;}
.y67{bottom:333.700763pt;}
.y56{bottom:340.367430pt;}
.y49{bottom:349.700763pt;}
.y35{bottom:353.700763pt;}
.y48{bottom:367.034096pt;}
.y55{bottom:368.367430pt;}
.y11{bottom:376.367430pt;}
.y34{bottom:381.700763pt;}
.y10{bottom:397.700763pt;}
.y65{bottom:399.034096pt;}
.y4{bottom:401.700763pt;}
.y33{bottom:408.367430pt;}
.yf{bottom:420.367430pt;}
.y42{bottom:427.034096pt;}
.y3f{bottom:436.367430pt;}
.ye{bottom:441.700763pt;}
.y32{bottom:463.034096pt;}
.yd{bottom:485.700763pt;}
.y31{bottom:491.034096pt;}
.y2a{bottom:504.367430pt;}
.yc{bottom:508.367430pt;}
.y30{bottom:519.034096pt;}
.yb{bottom:529.700763pt;}
.y4b{bottom:536.367430pt;}
.y3{bottom:543.034096pt;}
.y2f{bottom:545.700763pt;}
.ya{bottom:552.367430pt;}
.y4a{bottom:553.700763pt;}
.y9{bottom:573.700763pt;}
.y29{bottom:577.700763pt;}
.y2{bottom:595.034096pt;}
.y8{bottom:596.367430pt;}
.y2e{bottom:600.367430pt;}
.y7{bottom:617.700763pt;}
.y2d{bottom:628.367430pt;}
.y28{bottom:636.367430pt;}
.y2c{bottom:656.367430pt;}
.y6{bottom:661.700763pt;}
.y2b{bottom:683.034096pt;}
.y5{bottom:684.367430pt;}
.y3c{bottom:728.367430pt;}
.y26{bottom:732.367430pt;}
.hb{height:38.255208pt;}
.h11{height:38.933333pt;}
.h12{height:42.768000pt;}
.ha{height:46.489600pt;}
.h10{height:48.426667pt;}
.h8{height:54.720000pt;}
.hf{height:58.112000pt;}
.h13{height:59.648000pt;}
.h14{height:59.818667pt;}
.h6{height:67.920000pt;}
.h7{height:68.400000pt;}
.h5{height:70.176000pt;}
.h9{height:72.960000pt;}
.he{height:117.589333pt;}
.h4{height:162.816000pt;}
.hd{height:167.552000pt;}
.hc{height:289.450667pt;}
.h3{height:497.493333pt;}
.h2{height:793.700800pt;}
.h0{height:793.706667pt;}
.h1{height:794.000000pt;}
.w2{width:1122.519733pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2f{left:35.999997pt;}
.x18{left:51.999997pt;}
.x25{left:62.666664pt;}
.x35{left:73.333331pt;}
.x20{left:77.333331pt;}
.x3e{left:110.666664pt;}
.xd{left:111.999997pt;}
.x4{left:113.385827pt;}
.x2a{left:114.666664pt;}
.x1{left:141.413411pt;}
.x7{left:214.933504pt;}
.x2{left:322.544131pt;}
.x16{left:390.666667pt;}
.x17{left:391.921200pt;}
.x3{left:401.540264pt;}
.x1e{left:406.666667pt;}
.x1d{left:409.109333pt;}
.x23{left:413.333333pt;}
.x22{left:415.362667pt;}
.x3d{left:436.843733pt;}
.x8{left:445.471864pt;}
.x1b{left:461.333304pt;}
.x10{left:523.452133pt;}
.x31{left:528.814704pt;}
.x13{left:531.999971pt;}
.x11{left:533.817733pt;}
.x21{left:541.333304pt;}
.x37{left:553.333304pt;}
.x14{left:586.666637pt;}
.x32{left:613.333333pt;}
.x33{left:615.254800pt;}
.xb{left:651.123200pt;}
.xc{left:660.648000pt;}
.x2b{left:666.666637pt;}
.x28{left:697.797733pt;}
.x2e{left:736.674533pt;}
.x27{left:738.666637pt;}
.x3b{left:834.314611pt;}
.xf{left:858.666637pt;}
.x2d{left:863.999971pt;}
.x5{left:885.140667pt;}
.x9{left:887.322797pt;}
.x3a{left:920.655077pt;}
.x39{left:930.188197pt;}
.x3c{left:948.699837pt;}
.x3f{left:966.152133pt;}
.x36{left:971.340933pt;}
.x38{left:973.093867pt;}
.x2c{left:975.045333pt;}
.x34{left:977.787200pt;}
.x30{left:978.749733pt;}
.x26{left:980.234133pt;}
.x29{left:981.240533pt;}
.x1a{left:982.480533pt;}
.x19{left:983.938533pt;}
.x24{left:985.933867pt;}
.x1c{left:987.642933pt;}
.x12{left:989.127333pt;}
.x15{left:991.347467pt;}
.x1f{left:992.840533pt;}
.xe{left:994.080533pt;}
.x6{left:996.536267pt;}
.xa{left:1000.987200pt;}
}




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