
    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_05bf9d4f55ae86274faf2c76.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_b206491aff7200585f77ae6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.692871;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_a2e744d447a574529da44e63.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_70dfcdbef345ba4875a4fd91.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138672;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_a38b7c7a9cfef498a3437042.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_2eff158741b5be88acacf174.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_2c0731eb0db8e421be1ecdf4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856934;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_eae22035ae6a5f6e17a3d004.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_abac835e5dcd8630c27bb590.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_12aec79f1da0604bf399ecbf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_9a9efbfee96e4301558f8e91.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_c559548915ecc019cd1aaa5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_3fbe18e2ee5336a34e782fa3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.021238px;}
.ls8{letter-spacing:0.021240px;}
.ls6{letter-spacing:0.021282px;}
.ls2{letter-spacing:11.716270px;}
.ls4{letter-spacing:20.146587px;}
.ls7{letter-spacing:33.980686px;}
.ls5{letter-spacing:34.015846px;}
.ls0{letter-spacing:1281.084288px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-32.418587px;}
.ws9{word-spacing:-18.021275px;}
.wsa{word-spacing:-18.021231px;}
.ws8{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws3{word-spacing:-13.505755px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-8.934356px;}
._26{margin-left:-7.218398px;}
._3{margin-left:-6.016791px;}
._2{margin-left:-4.228596px;}
._d{margin-left:-3.063789px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._e{width:2.197400px;}
._c{width:3.475437px;}
._b{width:4.572332px;}
._16{width:5.628124px;}
._1a{width:7.441834px;}
._14{width:8.539622px;}
._15{width:9.591371px;}
._4{width:10.647611px;}
._f{width:12.175591px;}
._17{width:13.481976px;}
._1f{width:14.947790px;}
._6{width:16.205679px;}
._5{width:17.324050px;}
._1e{width:19.382175px;}
._1d{width:20.621800px;}
._7{width:21.796110px;}
._8{width:22.798769px;}
._a{width:24.306829px;}
._9{width:25.464257px;}
._10{width:26.988775px;}
._11{width:28.203996px;}
._12{width:30.311833px;}
._1c{width:31.853771px;}
._28{width:33.748483px;}
._18{width:35.190881px;}
._19{width:36.304791px;}
._1b{width:37.423673px;}
._2b{width:39.244216px;}
._2c{width:40.283160px;}
._27{width:41.610979px;}
._24{width:45.937132px;}
._25{width:47.033776px;}
._23{width:50.575099px;}
._22{width:63.308436px;}
._21{width:64.719749px;}
._2e{width:68.971683px;}
._13{width:88.030772px;}
._2d{width:323.480887px;}
._2a{width:330.862479px;}
._29{width:331.925477px;}
.fcd{color:rgb(0,101,204);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(51,51,51);}
.fcc{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(5,99,193);}
.fc7{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc8{color:rgb(0,32,96);}
.fcb{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y6{bottom:-9.539991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y17{bottom:4.319099px;}
.y3e{bottom:4.498959px;}
.y19{bottom:4.499099px;}
.y28{bottom:4.499112px;}
.yb{bottom:4.500038px;}
.y15{bottom:5.579099px;}
.yc{bottom:33.240287px;}
.ya{bottom:51.060240px;}
.y8{bottom:55.560278px;}
.y9{bottom:56.460277px;}
.y62{bottom:177.059929px;}
.y38{bottom:185.699926px;}
.y61{bottom:208.199917px;}
.y37{bottom:220.079912px;}
.y60{bottom:239.159904px;}
.y36{bottom:249.419900px;}
.y26{bottom:269.579892px;}
.y5f{bottom:270.299892px;}
.y35{bottom:273.359891px;}
.y5e{bottom:301.259879px;}
.y43{bottom:310.259876px;}
.y42{bottom:328.799868px;}
.y5d{bottom:332.399867px;}
.y41{bottom:347.339861px;}
.y5c{bottom:363.359855px;}
.y40{bottom:366.059854px;}
.y3f{bottom:385.499846px;}
.y5b{bottom:394.499842px;}
.y25{bottom:415.919834px;}
.y5a{bottom:425.459830px;}
.y34{bottom:427.079829px;}
.y33{bottom:452.819819px;}
.y59{bottom:456.599817px;}
.y32{bottom:478.739809px;}
.y58{bottom:487.559805px;}
.y24{bottom:506.819797px;}
.y31{bottom:513.659795px;}
.y57{bottom:518.699793px;}
.y23{bottom:537.059785px;}
.y30{bottom:539.579784px;}
.y56{bottom:549.659780px;}
.y22{bottom:553.439779px;}
.y2f{bottom:565.319774px;}
.y21{bottom:569.999772px;}
.y55{bottom:580.799768px;}
.y20{bottom:585.299766px;}
.y2e{bottom:591.239764px;}
.y54{bottom:611.759755px;}
.y1f{bottom:613.919754px;}
.y2d{bottom:617.159753px;}
.y1e{bottom:642.719743px;}
.y53{bottom:642.899743px;}
.y2c{bottom:643.079743px;}
.y2b{bottom:668.819732px;}
.y1d{bottom:671.339731px;}
.y52{bottom:673.859730px;}
.y1c{bottom:688.439725px;}
.y2a{bottom:694.739722px;}
.y51{bottom:704.819718px;}
.y27{bottom:714.540600px;}
.y29{bottom:720.659712px;}
.y1b{bottom:721.919711px;}
.y50{bottom:735.959706px;}
.y14{bottom:747.120600px;}
.y16{bottom:748.200600px;}
.y18{bottom:752.699699px;}
.y1a{bottom:754.139698px;}
.y4f{bottom:766.919693px;}
.y13{bottom:783.479687px;}
.y4e{bottom:798.059681px;}
.y12{bottom:820.739672px;}
.y4d{bottom:829.019668px;}
.y11{bottom:846.479661px;}
.y4c{bottom:860.159656px;}
.y10{bottom:884.459646px;}
.y4b{bottom:891.119644px;}
.yf{bottom:912.719635px;}
.y4a{bottom:922.259631px;}
.ye{bottom:952.859619px;}
.y49{bottom:953.219619px;}
.yd{bottom:983.819606px;}
.y48{bottom:984.359606px;}
.y47{bottom:1015.319594px;}
.y3c{bottom:1030.439588px;}
.y46{bottom:1046.459581px;}
.y3b{bottom:1050.779580px;}
.y3a{bottom:1072.739571px;}
.y45{bottom:1077.419569px;}
.y3d{bottom:1098.300600px;}
.y39{bottom:1098.839560px;}
.y44{bottom:1108.559557px;}
.y4{bottom:1129.799548px;}
.y7{bottom:1158.959536px;}
.y3{bottom:1161.299535px;}
.y2{bottom:1178.579529px;}
.y1{bottom:1195.859522px;}
.h3{height:6.300000px;}
.hc{height:20.160000px;}
.h6{height:20.340000px;}
.ha{height:21.240000px;}
.h11{height:36.624009px;}
.h4{height:36.703110px;}
.he{height:36.914048px;}
.h10{height:39.339828px;}
.h12{height:39.830258px;}
.h7{height:40.851546px;}
.h1{height:41.522679px;}
.h15{height:43.536076px;}
.hd{height:44.149201px;}
.hf{height:45.022482px;}
.h2{height:45.281232px;}
.h14{height:46.025138px;}
.h8{height:48.796855px;}
.h9{height:50.027324px;}
.h5{height:50.305761px;}
.h16{height:52.453104px;}
.h13{height:57.092321px;}
.hb{height:57.585914px;}
.h0{height:1263.000000px;}
.w6{width:3.600000px;}
.w3{width:5.580000px;}
.w8{width:8.280000px;}
.w2{width:9.720000px;}
.w9{width:15.300000px;}
.w4{width:18.900000px;}
.w7{width:33.840000px;}
.w5{width:58.500000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:87.299965px;}
.x1a{left:98.819960px;}
.x18{left:104.939958px;}
.x1{left:107.999957px;}
.xb{left:110.339956px;}
.x5{left:112.679955px;}
.x16{left:116.279953px;}
.xe{left:118.440000px;}
.x1c{left:119.879952px;}
.x17{left:122.579951px;}
.x25{left:134.999946px;}
.xf{left:137.340000px;}
.x1b{left:159.659936px;}
.x19{left:161.639935px;}
.x8{left:179.639928px;}
.x10{left:195.840000px;}
.x11{left:199.440000px;}
.x9{left:206.819922px;}
.x1f{left:228.239909px;}
.x12{left:233.279907px;}
.x13{left:236.160000px;}
.x21{left:243.719903px;}
.x1d{left:245.879855px;}
.x14{left:270.540000px;}
.xa{left:277.199889px;}
.x1e{left:291.599883px;}
.x15{left:293.759882px;}
.x24{left:294.839882px;}
.x2{left:302.579879px;}
.xd{left:314.639367px;}
.xc{left:316.259361px;}
.x22{left:404.279766px;}
.x20{left:410.580438px;}
.x6{left:461.159816px;}
.x3{left:666.179734px;}
.x23{left:724.680000px;}
.x7{left:810.000000px;}
@media print{
.v1{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.018878pt;}
.ls8{letter-spacing:0.018880pt;}
.ls6{letter-spacing:0.018917pt;}
.ls2{letter-spacing:10.414462pt;}
.ls4{letter-spacing:17.908077pt;}
.ls7{letter-spacing:30.205055pt;}
.ls5{letter-spacing:30.236308pt;}
.ls0{letter-spacing:1138.741590pt;}
.ws5{word-spacing:-28.816521pt;}
.ws9{word-spacing:-16.018911pt;}
.wsa{word-spacing:-16.018872pt;}
.ws8{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws3{word-spacing:-12.005115pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-7.941650pt;}
._26{margin-left:-6.416354pt;}
._3{margin-left:-5.348258pt;}
._2{margin-left:-3.758752pt;}
._d{margin-left:-2.723368pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._e{width:1.953244pt;}
._c{width:3.089277pt;}
._b{width:4.064295pt;}
._16{width:5.002777pt;}
._1a{width:6.614964pt;}
._14{width:7.590775pt;}
._15{width:8.525663pt;}
._4{width:9.464543pt;}
._f{width:10.822747pt;}
._17{width:11.983979pt;}
._1f{width:13.286924pt;}
._6{width:14.405048pt;}
._5{width:15.399156pt;}
._1e{width:17.228600pt;}
._1d{width:18.330489pt;}
._7{width:19.374320pt;}
._8{width:20.265572pt;}
._a{width:21.606070pt;}
._9{width:22.634895pt;}
._10{width:23.990022pt;}
._11{width:25.070219pt;}
._12{width:26.943852pt;}
._1c{width:28.314463pt;}
._28{width:29.998652pt;}
._18{width:31.280783pt;}
._19{width:32.270925pt;}
._1b{width:33.265487pt;}
._2b{width:34.883747pt;}
._2c{width:35.807253pt;}
._27{width:36.987537pt;}
._24{width:40.833006pt;}
._25{width:41.807801pt;}
._23{width:44.955643pt;}
._22{width:56.274165pt;}
._21{width:57.528666pt;}
._2e{width:61.308163pt;}
._13{width:78.249575pt;}
._2d{width:287.538567pt;}
._2a{width:294.099981pt;}
._29{width:295.044868pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y6{bottom:-8.479992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y17{bottom:3.839199pt;}
.y3e{bottom:3.999075pt;}
.y19{bottom:3.999199pt;}
.y28{bottom:3.999211pt;}
.yb{bottom:4.000034pt;}
.y15{bottom:4.959199pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:45.386880pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:50.186913pt;}
.y62{bottom:157.386604pt;}
.y38{bottom:165.066601pt;}
.y61{bottom:185.066593pt;}
.y37{bottom:195.626588pt;}
.y60{bottom:212.586582pt;}
.y36{bottom:221.706578pt;}
.y26{bottom:239.626571pt;}
.y5f{bottom:240.266571pt;}
.y35{bottom:242.986569pt;}
.y5e{bottom:267.786560pt;}
.y43{bottom:275.786556pt;}
.y42{bottom:292.266550pt;}
.y5d{bottom:295.466548pt;}
.y41{bottom:308.746543pt;}
.y5c{bottom:322.986537pt;}
.y40{bottom:325.386537pt;}
.y3f{bottom:342.666530pt;}
.y5b{bottom:350.666526pt;}
.y25{bottom:369.706519pt;}
.y5a{bottom:378.186515pt;}
.y34{bottom:379.626515pt;}
.y33{bottom:402.506506pt;}
.y59{bottom:405.866504pt;}
.y32{bottom:425.546496pt;}
.y58{bottom:433.386493pt;}
.y24{bottom:450.506486pt;}
.y31{bottom:456.586484pt;}
.y57{bottom:461.066482pt;}
.y23{bottom:477.386476pt;}
.y30{bottom:479.626475pt;}
.y56{bottom:488.586471pt;}
.y22{bottom:491.946470pt;}
.y2f{bottom:502.506466pt;}
.y21{bottom:506.666464pt;}
.y55{bottom:516.266460pt;}
.y20{bottom:520.266459pt;}
.y2e{bottom:525.546456pt;}
.y54{bottom:543.786449pt;}
.y1f{bottom:545.706448pt;}
.y2d{bottom:548.586447pt;}
.y1e{bottom:571.306438pt;}
.y53{bottom:571.466438pt;}
.y2c{bottom:571.626438pt;}
.y2b{bottom:594.506429pt;}
.y1d{bottom:596.746428pt;}
.y52{bottom:598.986427pt;}
.y1c{bottom:611.946422pt;}
.y2a{bottom:617.546420pt;}
.y51{bottom:626.506416pt;}
.y27{bottom:635.147200pt;}
.y29{bottom:640.586410pt;}
.y1b{bottom:641.706410pt;}
.y50{bottom:654.186405pt;}
.y14{bottom:664.107200pt;}
.y16{bottom:665.067200pt;}
.y18{bottom:669.066399pt;}
.y1a{bottom:670.346399pt;}
.y4f{bottom:681.706394pt;}
.y13{bottom:696.426388pt;}
.y4e{bottom:709.386383pt;}
.y12{bottom:729.546375pt;}
.y4d{bottom:736.906372pt;}
.y11{bottom:752.426366pt;}
.y4c{bottom:764.586361pt;}
.y10{bottom:786.186352pt;}
.y4b{bottom:792.106350pt;}
.yf{bottom:811.306342pt;}
.y4a{bottom:819.786339pt;}
.ye{bottom:846.986328pt;}
.y49{bottom:847.306328pt;}
.yd{bottom:874.506317pt;}
.y48{bottom:874.986317pt;}
.y47{bottom:902.506306pt;}
.y3c{bottom:915.946300pt;}
.y46{bottom:930.186295pt;}
.y3b{bottom:934.026293pt;}
.y3a{bottom:953.546285pt;}
.y45{bottom:957.706284pt;}
.y3d{bottom:976.267200pt;}
.y39{bottom:976.746276pt;}
.y44{bottom:985.386273pt;}
.y4{bottom:1004.266265pt;}
.y7{bottom:1030.186255pt;}
.y3{bottom:1032.266254pt;}
.y2{bottom:1047.626248pt;}
.y1{bottom:1062.986241pt;}
.h3{height:5.600000pt;}
.hc{height:17.920000pt;}
.h6{height:18.080000pt;}
.ha{height:18.880000pt;}
.h11{height:32.554674pt;}
.h4{height:32.624987pt;}
.he{height:32.812487pt;}
.h10{height:34.968736pt;}
.h12{height:35.404673pt;}
.h7{height:36.312485pt;}
.h1{height:36.909048pt;}
.h15{height:38.698735pt;}
.hd{height:39.243734pt;}
.hf{height:40.019984pt;}
.h2{height:40.249984pt;}
.h14{height:40.911234pt;}
.h8{height:43.374983pt;}
.h9{height:44.468732pt;}
.h5{height:44.716232pt;}
.h16{height:46.624981pt;}
.h13{height:50.748730pt;}
.hb{height:51.187480pt;}
.h0{height:1122.666667pt;}
.w6{width:3.200000pt;}
.w3{width:4.960000pt;}
.w8{width:7.360000pt;}
.w2{width:8.640000pt;}
.w9{width:13.600000pt;}
.w4{width:16.800000pt;}
.w7{width:30.080000pt;}
.w5{width:52.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:77.599969pt;}
.x1a{left:87.839965pt;}
.x18{left:93.279963pt;}
.x1{left:95.999962pt;}
.xb{left:98.079961pt;}
.x5{left:100.159960pt;}
.x16{left:103.359959pt;}
.xe{left:105.280000pt;}
.x1c{left:106.559957pt;}
.x17{left:108.959956pt;}
.x25{left:119.999952pt;}
.xf{left:122.080000pt;}
.x1b{left:141.919943pt;}
.x19{left:143.679943pt;}
.x8{left:159.679936pt;}
.x10{left:174.080000pt;}
.x11{left:177.280000pt;}
.x9{left:183.839930pt;}
.x1f{left:202.879919pt;}
.x12{left:207.359917pt;}
.x13{left:209.920000pt;}
.x21{left:216.639913pt;}
.x1d{left:218.559871pt;}
.x14{left:240.480000pt;}
.xa{left:246.399901pt;}
.x1e{left:259.199896pt;}
.x15{left:261.119896pt;}
.x24{left:262.079895pt;}
.x2{left:268.959892pt;}
.xd{left:279.679438pt;}
.xc{left:281.119432pt;}
.x22{left:359.359792pt;}
.x20{left:364.960389pt;}
.x6{left:409.919836pt;}
.x3{left:592.159763pt;}
.x23{left:644.160000pt;}
.x7{left:720.000000pt;}
}




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