
    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_51992f36d87ec311b4d588fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_69a8553398180e8b9a173ca9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_e9ea5f9d6e501ae94b4ce83a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_bcfb3901e0277e47d05b5d99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_a2a39b6595048ab4edac1c3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_7823696f49e58d4eb785fb93.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_f20a12924874d455fb79c470.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.579000;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_4094498e909333062869bce0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_7f8bac9726f287aa35998865.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.663000;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;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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:-22.854000px;}
.v3{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.988607px;}
.ls5{letter-spacing:24.800915px;}
.ls6{letter-spacing:24.806915px;}
.ls4{letter-spacing:29.651412px;}
.ls3{letter-spacing:32.729412px;}
.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;}
}
.ws22{word-spacing:-35.119596px;}
.ws4{word-spacing:-32.727300px;}
.ws26{word-spacing:-21.796382px;}
.ws0{word-spacing:-14.082230px;}
.ws7{word-spacing:-14.034378px;}
.ws9{word-spacing:-13.996153px;}
.ws3{word-spacing:-11.735224px;}
.ws15{word-spacing:-11.650919px;}
.ws1b{word-spacing:-11.585464px;}
.ws19{word-spacing:-11.584474px;}
.ws28{word-spacing:-11.520031px;}
.ws18{word-spacing:-11.061827px;}
.ws29{word-spacing:-10.936839px;}
.ws1{word-spacing:-10.930918px;}
.ws1d{word-spacing:-10.917918px;}
.ws21{word-spacing:-10.865464px;}
.ws24{word-spacing:-10.734554px;}
.wse{word-spacing:-10.669100px;}
.ws12{word-spacing:-10.603645px;}
.ws2a{word-spacing:-10.538191px;}
.ws17{word-spacing:-10.472736px;}
.ws5{word-spacing:-9.818190px;}
.ws2b{word-spacing:-3.665458px;}
.wsd{word-spacing:-2.160002px;}
.ws1c{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.001164px;}
.ws2{word-spacing:0.000000px;}
.ws1e{word-spacing:0.001014px;}
.wsb{word-spacing:0.006471px;}
.wsa{word-spacing:0.196364px;}
.ws13{word-spacing:18.345254px;}
.ws6{word-spacing:18.399053px;}
.ws23{word-spacing:21.753662px;}
.wsf{word-spacing:21.994650px;}
.ws16{word-spacing:23.170928px;}
.ws1a{word-spacing:23.236383px;}
.ws2c{word-spacing:23.320429px;}
.wsc{word-spacing:23.890929px;}
.ws1f{word-spacing:23.956384px;}
.ws10{word-spacing:24.152747px;}
.ws11{word-spacing:24.218202px;}
.ws27{word-spacing:24.283657px;}
.ws14{word-spacing:26.253619px;}
.ws8{word-spacing:28.082611px;}
.ws25{word-spacing:34.298210px;}
._15{margin-left:-8.312734px;}
._e{margin-left:-6.972253px;}
._d{margin-left:-5.681999px;}
._f{margin-left:-4.169380px;}
._1{margin-left:-2.238007px;}
._8{margin-left:-1.006028px;}
._4{width:1.256188px;}
._0{width:2.324084px;}
._17{width:3.697739px;}
._14{width:6.696100px;}
._13{width:7.972910px;}
._5{width:10.669100px;}
._a{width:11.835624px;}
._12{width:21.534563px;}
._9{width:22.803302px;}
._7{width:23.956384px;}
._b{width:25.161556px;}
._3{width:29.086052px;}
._6{width:33.185482px;}
._11{width:37.529659px;}
._16{width:40.933334px;}
._10{width:43.846636px;}
._c{width:63.098234px;}
._2{width:87.635638px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,178);}
.fs4{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yf{bottom:11.691000px;}
.y6d{bottom:28.221000px;}
.y6c{bottom:46.465500px;}
.y4c{bottom:52.966500px;}
.y80{bottom:54.598500px;}
.y6b{bottom:66.789000px;}
.y41{bottom:72.526500px;}
.y4b{bottom:73.888500px;}
.y7f{bottom:74.922000px;}
.y33{bottom:83.263500px;}
.y6a{bottom:87.112500px;}
.y98{bottom:94.021500px;}
.y26{bottom:96.754500px;}
.y8b{bottom:96.915000px;}
.y4a{bottom:99.984000px;}
.y40{bottom:103.012500px;}
.y32{bottom:103.587000px;}
.y7e{bottom:105.408000px;}
.y69{bottom:107.436000px;}
.y74{bottom:109.473000px;}
.y59{bottom:113.931000px;}
.y97{bottom:114.345000px;}
.y52{bottom:119.845500px;}
.y4{bottom:121.327500px;}
.y3f{bottom:123.336000px;}
.y31{bottom:123.910500px;}
.y7d{bottom:125.731500px;}
.y30{bottom:125.778000px;}
.y8a{bottom:127.401000px;}
.y68{bottom:127.761000px;}
.y38{bottom:129.268500px;}
.y73{bottom:129.796500px;}
.y49{bottom:130.468500px;}
.y5e{bottom:133.861500px;}
.y96{bottom:134.668500px;}
.y1e{bottom:136.864500px;}
.ya0{bottom:139.959000px;}
.y2f{bottom:144.234000px;}
.y58{bottom:144.415500px;}
.y7c{bottom:146.056500px;}
.y89{bottom:147.724500px;}
.y67{bottom:148.084500px;}
.y51{bottom:150.331500px;}
.y48{bottom:150.793500px;}
.y25{bottom:150.852000px;}
.y18{bottom:152.152500px;}
.y3e{bottom:153.822000px;}
.y5d{bottom:154.185000px;}
.y95{bottom:154.992000px;}
.y1d{bottom:157.188000px;}
.y8f{bottom:157.887000px;}
.y37{bottom:159.754500px;}
.y72{bottom:160.282500px;}
.y14{bottom:164.347500px;}
.y2e{bottom:164.557500px;}
.y7b{bottom:166.380000px;}
.y9c{bottom:167.254500px;}
.y88{bottom:168.048000px;}
.y66{bottom:168.408000px;}
.y9f{bottom:170.445000px;}
.y3d{bottom:174.145500px;}
.y5c{bottom:174.510000px;}
.y57{bottom:174.901500px;}
.y1c{bottom:177.511500px;}
.y8e{bottom:178.210500px;}
.y94{bottom:178.479000px;}
.y24{bottom:180.142500px;}
.y71{bottom:180.606000px;}
.y50{bottom:180.817500px;}
.y47{bottom:181.278000px;}
.y17{bottom:182.638500px;}
.y2d{bottom:184.882500px;}
.y3{bottom:186.046500px;}
.y7a{bottom:186.703500px;}
.y87{bottom:188.373000px;}
.ya{bottom:188.394000px;}
.y65{bottom:188.731500px;}
.y36{bottom:190.240500px;}
.y82{bottom:190.398000px;}
.ye{bottom:191.344500px;}
.y13{bottom:194.833500px;}
.y56{bottom:195.225000px;}
.y9b{bottom:196.543500px;}
.y8d{bottom:198.534000px;}
.y23{bottom:200.466000px;}
.y9e{bottom:200.929500px;}
.y46{bottom:201.603000px;}
.y11{bottom:203.538000px;}
.y3c{bottom:204.631500px;}
.y2c{bottom:205.206000px;}
.y79{bottom:207.027000px;}
.y2b{bottom:207.073500px;}
.y1b{bottom:207.997500px;}
.y9{bottom:208.393500px;}
.y86{bottom:208.696500px;}
.y64{bottom:209.055000px;}
.y70{bottom:211.092000px;}
.y4f{bottom:211.302000px;}
.yd{bottom:211.668000px;}
.y81{bottom:212.017500px;}
.y93{bottom:212.253000px;}
.y5b{bottom:215.157000px;}
.y55{bottom:215.550000px;}
.y16{bottom:216.306000px;}
.y9a{bottom:216.868500px;}
.y8c{bottom:218.857500px;}
.y35{bottom:220.726500px;}
.y22{bottom:220.789500px;}
.y10{bottom:223.863000px;}
.y12{bottom:225.318000px;}
.y2a{bottom:225.529500px;}
.y78{bottom:227.350500px;}
.y1a{bottom:228.321000px;}
.y85{bottom:229.020000px;}
.y63{bottom:229.380000px;}
.y9d{bottom:231.415500px;}
.y4e{bottom:231.627000px;}
.yc{bottom:231.991500px;}
.y45{bottom:232.087500px;}
.y92{bottom:232.576500px;}
.y15{bottom:233.448000px;}
.y3b{bottom:235.117500px;}
.y99{bottom:237.192000px;}
.y6f{bottom:241.578000px;}
.y8{bottom:242.167500px;}
.y2{bottom:242.359500px;}
.y5a{bottom:245.643000px;}
.y29{bottom:245.853000px;}
.y54{bottom:246.034500px;}
.y77{bottom:247.675500px;}
.y19{bottom:248.646000px;}
.y84{bottom:249.343500px;}
.y62{bottom:249.703500px;}
.y34{bottom:251.211000px;}
.y21{bottom:251.275500px;}
.y91{bottom:252.900000px;}
.y6e{bottom:261.901500px;}
.y4d{bottom:262.111500px;}
.y7{bottom:262.491000px;}
.y44{bottom:262.573500px;}
.y3a{bottom:265.602000px;}
.y28{bottom:266.176500px;}
.y53{bottom:266.359500px;}
.y1{bottom:267.951000px;}
.y83{bottom:269.667000px;}
.y61{bottom:270.027000px;}
.y20{bottom:271.599000px;}
.y90{bottom:276.387000px;}
.y76{bottom:278.160000px;}
.y6{bottom:282.490500px;}
.y39{bottom:285.927000px;}
.y27{bottom:288.369000px;}
.y1f{bottom:291.922500px;}
.y43{bottom:293.059500px;}
.y75{bottom:298.485000px;}
.y60{bottom:300.513000px;}
.y42{bottom:313.383000px;}
.y5f{bottom:320.836500px;}
.y5{bottom:344.938500px;}
.yb{bottom:351.091500px;}
.h6{height:24.281011px;}
.h8{height:35.280029px;}
.ha{height:41.614950px;}
.h7{height:41.620950px;}
.hb{height:45.425492px;}
.h3{height:49.090950px;}
.h4{height:53.798400px;}
.h9{height:56.122546px;}
.h5{height:56.128546px;}
.h2{height:64.557900px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x6{left:12.756000px;}
.xd{left:39.427500px;}
.x10{left:41.149500px;}
.x5{left:42.519000px;}
.xf{left:51.111000px;}
.x9{left:52.837500px;}
.xa{left:54.337500px;}
.xb{left:59.701500px;}
.x8{left:61.890000px;}
.x7{left:75.247500px;}
.xe{left:76.882500px;}
.xc{left:85.474500px;}
.x2{left:112.578000px;}
.x1{left:194.529000px;}
.x3{left:210.916500px;}
.x4{left:301.975500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.656539pt;}
.ls5{letter-spacing:22.045258pt;}
.ls6{letter-spacing:22.050591pt;}
.ls4{letter-spacing:26.356811pt;}
.ls3{letter-spacing:29.092811pt;}
.ws22{word-spacing:-31.217418pt;}
.ws4{word-spacing:-29.090933pt;}
.ws26{word-spacing:-19.374562pt;}
.ws0{word-spacing:-12.517538pt;}
.ws7{word-spacing:-12.475002pt;}
.ws9{word-spacing:-12.441025pt;}
.ws3{word-spacing:-10.431311pt;}
.ws15{word-spacing:-10.356372pt;}
.ws1b{word-spacing:-10.298190pt;}
.ws19{word-spacing:-10.297311pt;}
.ws28{word-spacing:-10.240027pt;}
.ws18{word-spacing:-9.832735pt;}
.ws29{word-spacing:-9.721635pt;}
.ws1{word-spacing:-9.716372pt;}
.ws1d{word-spacing:-9.704816pt;}
.ws21{word-spacing:-9.658190pt;}
.ws24{word-spacing:-9.541826pt;}
.wse{word-spacing:-9.483644pt;}
.ws12{word-spacing:-9.425462pt;}
.ws2a{word-spacing:-9.367281pt;}
.ws17{word-spacing:-9.309099pt;}
.ws5{word-spacing:-8.727280pt;}
.ws2b{word-spacing:-3.258185pt;}
.wsd{word-spacing:-1.920002pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.001034pt;}
.ws2{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.000902pt;}
.wsb{word-spacing:0.005752pt;}
.wsa{word-spacing:0.174546pt;}
.ws13{word-spacing:16.306893pt;}
.ws6{word-spacing:16.354714pt;}
.ws23{word-spacing:19.336589pt;}
.wsf{word-spacing:19.550800pt;}
.ws16{word-spacing:20.596381pt;}
.ws1a{word-spacing:20.654563pt;}
.ws2c{word-spacing:20.729271pt;}
.wsc{word-spacing:21.236381pt;}
.ws1f{word-spacing:21.294563pt;}
.ws10{word-spacing:21.469109pt;}
.ws11{word-spacing:21.527291pt;}
.ws27{word-spacing:21.585473pt;}
.ws14{word-spacing:23.336550pt;}
.ws8{word-spacing:24.962321pt;}
.ws25{word-spacing:30.487298pt;}
._15{margin-left:-7.389097pt;}
._e{margin-left:-6.197558pt;}
._d{margin-left:-5.050666pt;}
._f{margin-left:-3.706115pt;}
._1{margin-left:-1.989340pt;}
._8{margin-left:-0.894247pt;}
._4{width:1.116612pt;}
._0{width:2.065853pt;}
._17{width:3.286879pt;}
._14{width:5.952089pt;}
._13{width:7.087031pt;}
._5{width:9.483644pt;}
._a{width:10.520555pt;}
._12{width:19.141834pt;}
._9{width:20.269602pt;}
._7{width:21.294563pt;}
._b{width:22.365827pt;}
._3{width:25.854268pt;}
._6{width:29.498206pt;}
._11{width:33.359697pt;}
._16{width:36.385186pt;}
._10{width:38.974788pt;}
._c{width:56.087319pt;}
._2{width:77.898345pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:10.392000pt;}
.y6d{bottom:25.085333pt;}
.y6c{bottom:41.302667pt;}
.y4c{bottom:47.081333pt;}
.y80{bottom:48.532000pt;}
.y6b{bottom:59.368000pt;}
.y41{bottom:64.468000pt;}
.y4b{bottom:65.678667pt;}
.y7f{bottom:66.597333pt;}
.y33{bottom:74.012000pt;}
.y6a{bottom:77.433333pt;}
.y98{bottom:83.574667pt;}
.y26{bottom:86.004000pt;}
.y8b{bottom:86.146667pt;}
.y4a{bottom:88.874667pt;}
.y40{bottom:91.566667pt;}
.y32{bottom:92.077333pt;}
.y7e{bottom:93.696000pt;}
.y69{bottom:95.498667pt;}
.y74{bottom:97.309333pt;}
.y59{bottom:101.272000pt;}
.y97{bottom:101.640000pt;}
.y52{bottom:106.529333pt;}
.y4{bottom:107.846667pt;}
.y3f{bottom:109.632000pt;}
.y31{bottom:110.142667pt;}
.y7d{bottom:111.761333pt;}
.y30{bottom:111.802667pt;}
.y8a{bottom:113.245333pt;}
.y68{bottom:113.565333pt;}
.y38{bottom:114.905333pt;}
.y73{bottom:115.374667pt;}
.y49{bottom:115.972000pt;}
.y5e{bottom:118.988000pt;}
.y96{bottom:119.705333pt;}
.y1e{bottom:121.657333pt;}
.ya0{bottom:124.408000pt;}
.y2f{bottom:128.208000pt;}
.y58{bottom:128.369333pt;}
.y7c{bottom:129.828000pt;}
.y89{bottom:131.310667pt;}
.y67{bottom:131.630667pt;}
.y51{bottom:133.628000pt;}
.y48{bottom:134.038667pt;}
.y25{bottom:134.090667pt;}
.y18{bottom:135.246667pt;}
.y3e{bottom:136.730667pt;}
.y5d{bottom:137.053333pt;}
.y95{bottom:137.770667pt;}
.y1d{bottom:139.722667pt;}
.y8f{bottom:140.344000pt;}
.y37{bottom:142.004000pt;}
.y72{bottom:142.473333pt;}
.y14{bottom:146.086667pt;}
.y2e{bottom:146.273333pt;}
.y7b{bottom:147.893333pt;}
.y9c{bottom:148.670667pt;}
.y88{bottom:149.376000pt;}
.y66{bottom:149.696000pt;}
.y9f{bottom:151.506667pt;}
.y3d{bottom:154.796000pt;}
.y5c{bottom:155.120000pt;}
.y57{bottom:155.468000pt;}
.y1c{bottom:157.788000pt;}
.y8e{bottom:158.409333pt;}
.y94{bottom:158.648000pt;}
.y24{bottom:160.126667pt;}
.y71{bottom:160.538667pt;}
.y50{bottom:160.726667pt;}
.y47{bottom:161.136000pt;}
.y17{bottom:162.345333pt;}
.y2d{bottom:164.340000pt;}
.y3{bottom:165.374667pt;}
.y7a{bottom:165.958667pt;}
.y87{bottom:167.442667pt;}
.ya{bottom:167.461333pt;}
.y65{bottom:167.761333pt;}
.y36{bottom:169.102667pt;}
.y82{bottom:169.242667pt;}
.ye{bottom:170.084000pt;}
.y13{bottom:173.185333pt;}
.y56{bottom:173.533333pt;}
.y9b{bottom:174.705333pt;}
.y8d{bottom:176.474667pt;}
.y23{bottom:178.192000pt;}
.y9e{bottom:178.604000pt;}
.y46{bottom:179.202667pt;}
.y11{bottom:180.922667pt;}
.y3c{bottom:181.894667pt;}
.y2c{bottom:182.405333pt;}
.y79{bottom:184.024000pt;}
.y2b{bottom:184.065333pt;}
.y1b{bottom:184.886667pt;}
.y9{bottom:185.238667pt;}
.y86{bottom:185.508000pt;}
.y64{bottom:185.826667pt;}
.y70{bottom:187.637333pt;}
.y4f{bottom:187.824000pt;}
.yd{bottom:188.149333pt;}
.y81{bottom:188.460000pt;}
.y93{bottom:188.669333pt;}
.y5b{bottom:191.250667pt;}
.y55{bottom:191.600000pt;}
.y16{bottom:192.272000pt;}
.y9a{bottom:192.772000pt;}
.y8c{bottom:194.540000pt;}
.y35{bottom:196.201333pt;}
.y22{bottom:196.257333pt;}
.y10{bottom:198.989333pt;}
.y12{bottom:200.282667pt;}
.y2a{bottom:200.470667pt;}
.y78{bottom:202.089333pt;}
.y1a{bottom:202.952000pt;}
.y85{bottom:203.573333pt;}
.y63{bottom:203.893333pt;}
.y9d{bottom:205.702667pt;}
.y4e{bottom:205.890667pt;}
.yc{bottom:206.214667pt;}
.y45{bottom:206.300000pt;}
.y92{bottom:206.734667pt;}
.y15{bottom:207.509333pt;}
.y3b{bottom:208.993333pt;}
.y99{bottom:210.837333pt;}
.y6f{bottom:214.736000pt;}
.y8{bottom:215.260000pt;}
.y2{bottom:215.430667pt;}
.y5a{bottom:218.349333pt;}
.y29{bottom:218.536000pt;}
.y54{bottom:218.697333pt;}
.y77{bottom:220.156000pt;}
.y19{bottom:221.018667pt;}
.y84{bottom:221.638667pt;}
.y62{bottom:221.958667pt;}
.y34{bottom:223.298667pt;}
.y21{bottom:223.356000pt;}
.y91{bottom:224.800000pt;}
.y6e{bottom:232.801333pt;}
.y4d{bottom:232.988000pt;}
.y7{bottom:233.325333pt;}
.y44{bottom:233.398667pt;}
.y3a{bottom:236.090667pt;}
.y28{bottom:236.601333pt;}
.y53{bottom:236.764000pt;}
.y1{bottom:238.178667pt;}
.y83{bottom:239.704000pt;}
.y61{bottom:240.024000pt;}
.y20{bottom:241.421333pt;}
.y90{bottom:245.677333pt;}
.y76{bottom:247.253333pt;}
.y6{bottom:251.102667pt;}
.y39{bottom:254.157333pt;}
.y27{bottom:256.328000pt;}
.y1f{bottom:259.486667pt;}
.y43{bottom:260.497333pt;}
.y75{bottom:265.320000pt;}
.y60{bottom:267.122667pt;}
.y42{bottom:278.562667pt;}
.y5f{bottom:285.188000pt;}
.y5{bottom:306.612000pt;}
.yb{bottom:312.081333pt;}
.h6{height:21.583121pt;}
.h8{height:31.360026pt;}
.ha{height:36.991067pt;}
.h7{height:36.996400pt;}
.hb{height:40.378215pt;}
.h3{height:43.636400pt;}
.h4{height:47.820800pt;}
.h9{height:49.886708pt;}
.h5{height:49.892041pt;}
.h2{height:57.384800pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x6{left:11.338667pt;}
.xd{left:35.046667pt;}
.x10{left:36.577333pt;}
.x5{left:37.794667pt;}
.xf{left:45.432000pt;}
.x9{left:46.966667pt;}
.xa{left:48.300000pt;}
.xb{left:53.068000pt;}
.x8{left:55.013333pt;}
.x7{left:66.886667pt;}
.xe{left:68.340000pt;}
.xc{left:75.977333pt;}
.x2{left:100.069333pt;}
.x1{left:172.914667pt;}
.x3{left:187.481333pt;}
.x4{left:268.422667pt;}
}




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