
    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_9e3000890d390369da530b79.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87b85519ae67c8fde8827558.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7af10fcfa7d93eb651997e4f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_493d4acd42f330cf6b7e1b4c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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;}
.mb{transform:matrix(0.000000,-0.249853,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249853,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249853,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249863,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249863,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249863,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249866,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249869,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249869,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249869,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249874,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249874,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249874,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{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);}
.m0{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);}
.mc{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249869,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.010620px;}
.ls1{letter-spacing:46.065102px;}
.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;}
}
.ws9{word-spacing:-14.939994px;}
.ws0{word-spacing:-12.059995px;}
.ws6{word-spacing:-10.778936px;}
.ws2{word-spacing:-10.545476px;}
.ws7{word-spacing:-10.385096px;}
.ws3{word-spacing:-10.160096px;}
.ws8{word-spacing:-8.024757px;}
.ws4{word-spacing:-7.851057px;}
.wsa{word-spacing:0.000000px;}
.ws1{word-spacing:25.277548px;}
.ws5{word-spacing:26.017246px;}
._3{margin-left:-5.021231px;}
._2{margin-left:-3.868663px;}
._a{margin-left:-2.310116px;}
._4{margin-left:-1.125747px;}
._1{width:1.071751px;}
._5{width:2.249390px;}
._7{width:3.470269px;}
._9{width:4.875395px;}
._8{width:5.951198px;}
._e{width:7.360422px;}
._6{width:12.861342px;}
._b{width:14.541599px;}
._c{width:28.146162px;}
._d{width:29.459637px;}
._0{width:46.838141px;}
._f{width:56.715678px;}
._10{width:58.408897px;}
.fc9{color:transparent;}
.fc7{color:rgb(128,0,128);}
.fc5{color:rgb(128,0,0);}
.fc8{color:rgb(0,128,128);}
.fc6{color:rgb(255,0,255);}
.fc4{color:rgb(255,128,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:28.687669px;}
.fsb{font-size:29.323428px;}
.fs9{font-size:31.404227px;}
.fsf{font-size:31.820387px;}
.fse{font-size:32.099027px;}
.fs8{font-size:40.640384px;}
.fsd{font-size:41.540383px;}
.fs4{font-size:41.759983px;}
.fs5{font-size:42.181903px;}
.fsa{font-size:43.115743px;}
.fs7{font-size:47.106701px;}
.fsc{font-size:48.149981px;}
.fs2{font-size:48.239981px;}
.fs10{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y60{bottom:132.600247px;}
.y5f{bottom:152.579939px;}
.y5e{bottom:169.859932px;}
.y5d{bottom:186.959925px;}
.y5c{bottom:204.599918px;}
.y5b{bottom:224.219910px;}
.y5a{bottom:225.659910px;}
.y43{bottom:242.039903px;}
.y3b{bottom:247.799901px;}
.y2c{bottom:265.799894px;}
.y44{bottom:266.339893px;}
.y2d{bottom:286.679885px;}
.y45{bottom:287.759885px;}
.y59{bottom:297.659881px;}
.y42{bottom:299.999880px;}
.y35{bottom:302.879879px;}
.y4d{bottom:304.319878px;}
.y36{bottom:304.859878px;}
.y4e{bottom:306.299877px;}
.y58{bottom:309.179876px;}
.y41{bottom:311.339875px;}
.y2e{bottom:312.059875px;}
.y46{bottom:313.499875px;}
.y57{bottom:320.879872px;}
.y40{bottom:322.679871px;}
.y37{bottom:332.039867px;}
.y56{bottom:332.399867px;}
.y3f{bottom:334.019866px;}
.y38{bottom:337.079865px;}
.y2f{bottom:337.259865px;}
.y4f{bottom:339.239864px;}
.y47{bottom:339.419864px;}
.y55{bottom:343.919862px;}
.y3e{bottom:345.359862px;}
.y33{bottom:347.159861px;}
.y4b{bottom:349.499860px;}
.y54{bottom:355.619858px;}
.y3d{bottom:356.699857px;}
.y30{bottom:362.639855px;}
.y48{bottom:365.159854px;}
.y53{bottom:367.139853px;}
.y3c{bottom:368.039853px;}
.y52{bottom:378.659849px;}
.y39{bottom:381.719847px;}
.y50{bottom:384.779846px;}
.y31{bottom:387.839845px;}
.y3a{bottom:390.179844px;}
.y49{bottom:391.079844px;}
.y51{bottom:393.419843px;}
.y32{bottom:413.219835px;}
.y4a{bottom:416.999833px;}
.y34{bottom:436.619825px;}
.y4c{bottom:440.939824px;}
.y2a{bottom:462.359815px;}
.y2b{bottom:469.199812px;}
.y29{bottom:483.059807px;}
.y28{bottom:503.759798px;}
.y27{bottom:524.459790px;}
.y26{bottom:545.159782px;}
.y25{bottom:565.859774px;}
.y24{bottom:585.119766px;}
.y23{bottom:586.559765px;}
.y22{bottom:607.259757px;}
.y21{bottom:626.519749px;}
.y20{bottom:627.959749px;}
.y1f{bottom:648.659741px;}
.y1e{bottom:669.359732px;}
.y1d{bottom:690.059724px;}
.y1c{bottom:710.759716px;}
.y1b{bottom:731.459707px;}
.y1a{bottom:750.719700px;}
.y19{bottom:752.159699px;}
.y18{bottom:771.419691px;}
.y17{bottom:772.859691px;}
.y16{bottom:793.559683px;}
.y15{bottom:814.259674px;}
.y14{bottom:833.519667px;}
.y13{bottom:834.959666px;}
.y12{bottom:855.659658px;}
.y11{bottom:875.999650px;}
.y10{bottom:894.899642px;}
.yf{bottom:901.739639px;}
.ye{bottom:913.799634px;}
.yc{bottom:932.879627px;}
.yd{bottom:939.719624px;}
.y9{bottom:952.319619px;}
.yb{bottom:958.259617px;}
.ya{bottom:959.159616px;}
.y7{bottom:973.019611px;}
.y8{bottom:979.859608px;}
.y6{bottom:1012.979595px;}
.y5{bottom:1054.379578px;}
.y4{bottom:1131.599547px;}
.y3{bottom:1152.299539px;}
.y2{bottom:1172.999531px;}
.y1{bottom:1193.699523px;}
.h9{height:29.920342px;}
.he{height:30.583419px;}
.hc{height:31.649573px;}
.h11{height:32.349801px;}
.h12{height:33.187670px;}
.hb{height:40.957887px;}
.h7{height:40.964749px;}
.h10{height:41.864918px;}
.h8{height:42.511449px;}
.hd{height:43.452584px;}
.h4{height:47.344903px;}
.ha{height:47.474722px;}
.hf{height:48.526152px;}
.h5{height:48.616856px;}
.h15{height:58.651148px;}
.h14{height:62.327788px;}
.h2{height:64.899818px;}
.h6{height:64.978568px;}
.h1{height:70.664034px;}
.h13{height:72.562471px;}
.h3{height:96.508086px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:106.379957px;}
.x2c{left:115.379954px;}
.x2a{left:121.679951px;}
.x2b{left:126.359949px;}
.x27{left:127.439927px;}
.x4{left:132.479947px;}
.x12{left:135.719946px;}
.x13{left:140.939944px;}
.x2{left:147.599941px;}
.x3e{left:160.379848px;}
.x15{left:173.699931px;}
.x2d{left:177.299929px;}
.x16{left:178.919928px;}
.x21{left:213.839914px;}
.x1d{left:219.239912px;}
.x1e{left:225.359910px;}
.x22{left:228.779908px;}
.x23{left:238.859904px;}
.x29{left:244.439902px;}
.x3{left:256.139256px;}
.xd{left:277.019889px;}
.x5{left:304.199878px;}
.x6{left:310.319876px;}
.x3b{left:319.139837px;}
.x28{left:358.379857px;}
.x2e{left:361.619855px;}
.x17{left:363.958635px;}
.x24{left:382.319847px;}
.x25{left:388.439845px;}
.x14{left:391.679961px;}
.x26{left:397.259841px;}
.xe{left:401.939839px;}
.xf{left:408.059837px;}
.x1{left:409.139836px;}
.x7{left:414.359834px;}
.x8{left:420.479832px;}
.x2f{left:438.119825px;}
.x36{left:456.299817px;}
.x34{left:462.779815px;}
.x35{left:467.459813px;}
.x31{left:469.799742px;}
.x30{left:489.959804px;}
.x3c{left:505.619798px;}
.x3d{left:511.739795px;}
.x37{left:520.739792px;}
.x9{left:572.039771px;}
.xa{left:578.159769px;}
.x33{left:589.499764px;}
.x1b{left:593.819762px;}
.x1c{left:599.939760px;}
.x10{left:601.919759px;}
.x11{left:608.039757px;}
.x1f{left:618.839752px;}
.x20{left:624.959750px;}
.x19{left:663.839734px;}
.x1a{left:669.959732px;}
.x32{left:706.139718px;}
.x38{left:708.479717px;}
.x39{left:710.459716px;}
.xb{left:741.779703px;}
.xc{left:747.899701px;}
.x3a{left:786.599685px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.009440pt;}
.ls1{letter-spacing:40.946757pt;}
.ws9{word-spacing:-13.279995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws6{word-spacing:-9.581276pt;}
.ws2{word-spacing:-9.373756pt;}
.ws7{word-spacing:-9.231196pt;}
.ws3{word-spacing:-9.031196pt;}
.ws8{word-spacing:-7.133117pt;}
.ws4{word-spacing:-6.978717pt;}
.wsa{word-spacing:0.000000pt;}
.ws1{word-spacing:22.468931pt;}
.ws5{word-spacing:23.126441pt;}
._3{margin-left:-4.463316pt;}
._2{margin-left:-3.438811pt;}
._a{margin-left:-2.053436pt;}
._4{margin-left:-1.000664pt;}
._1{width:0.952668pt;}
._5{width:1.999458pt;}
._7{width:3.084683pt;}
._9{width:4.333685pt;}
._8{width:5.289953pt;}
._e{width:6.542597pt;}
._6{width:11.432304pt;}
._b{width:12.925866pt;}
._c{width:25.018811pt;}
._d{width:26.186344pt;}
._0{width:41.633903pt;}
._f{width:50.413936pt;}
._10{width:51.919019pt;}
.fs6{font-size:25.500150pt;}
.fsb{font-size:26.065270pt;}
.fs9{font-size:27.914869pt;}
.fsf{font-size:28.284789pt;}
.fse{font-size:28.532469pt;}
.fs8{font-size:36.124786pt;}
.fsd{font-size:36.924785pt;}
.fs4{font-size:37.119985pt;}
.fs5{font-size:37.495025pt;}
.fsa{font-size:38.325105pt;}
.fs7{font-size:41.872623pt;}
.fsc{font-size:42.799983pt;}
.fs2{font-size:42.879983pt;}
.fs10{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:117.866886pt;}
.y5f{bottom:135.626612pt;}
.y5e{bottom:150.986606pt;}
.y5d{bottom:166.186600pt;}
.y5c{bottom:181.866594pt;}
.y5b{bottom:199.306587pt;}
.y5a{bottom:200.586586pt;}
.y43{bottom:215.146581pt;}
.y3b{bottom:220.266579pt;}
.y2c{bottom:236.266572pt;}
.y44{bottom:236.746572pt;}
.y2d{bottom:254.826565pt;}
.y45{bottom:255.786564pt;}
.y59{bottom:264.586561pt;}
.y42{bottom:266.666560pt;}
.y35{bottom:269.226559pt;}
.y4d{bottom:270.506558pt;}
.y36{bottom:270.986558pt;}
.y4e{bottom:272.266558pt;}
.y58{bottom:274.826557pt;}
.y41{bottom:276.746556pt;}
.y2e{bottom:277.386556pt;}
.y46{bottom:278.666555pt;}
.y57{bottom:285.226553pt;}
.y40{bottom:286.826552pt;}
.y37{bottom:295.146549pt;}
.y56{bottom:295.466548pt;}
.y3f{bottom:296.906548pt;}
.y38{bottom:299.626547pt;}
.y2f{bottom:299.786547pt;}
.y4f{bottom:301.546546pt;}
.y47{bottom:301.706546pt;}
.y55{bottom:305.706544pt;}
.y3e{bottom:306.986544pt;}
.y33{bottom:308.586543pt;}
.y4b{bottom:310.666542pt;}
.y54{bottom:316.106540pt;}
.y3d{bottom:317.066540pt;}
.y30{bottom:322.346538pt;}
.y48{bottom:324.586537pt;}
.y53{bottom:326.346536pt;}
.y3c{bottom:327.146536pt;}
.y52{bottom:336.586532pt;}
.y39{bottom:339.306531pt;}
.y50{bottom:342.026530pt;}
.y31{bottom:344.746529pt;}
.y3a{bottom:346.826528pt;}
.y49{bottom:347.626528pt;}
.y51{bottom:349.706527pt;}
.y32{bottom:367.306520pt;}
.y4a{bottom:370.666518pt;}
.y34{bottom:388.106511pt;}
.y4c{bottom:391.946510pt;}
.y2a{bottom:410.986502pt;}
.y2b{bottom:417.066500pt;}
.y29{bottom:429.386495pt;}
.y28{bottom:447.786488pt;}
.y27{bottom:466.186480pt;}
.y26{bottom:484.586473pt;}
.y25{bottom:502.986465pt;}
.y24{bottom:520.106459pt;}
.y23{bottom:521.386458pt;}
.y22{bottom:539.786451pt;}
.y21{bottom:556.906444pt;}
.y20{bottom:558.186443pt;}
.y1f{bottom:576.586436pt;}
.y1e{bottom:594.986429pt;}
.y1d{bottom:613.386421pt;}
.y1c{bottom:631.786414pt;}
.y1b{bottom:650.186407pt;}
.y1a{bottom:667.306400pt;}
.y19{bottom:668.586399pt;}
.y18{bottom:685.706392pt;}
.y17{bottom:686.986392pt;}
.y16{bottom:705.386385pt;}
.y15{bottom:723.786377pt;}
.y14{bottom:740.906370pt;}
.y13{bottom:742.186370pt;}
.y12{bottom:760.586362pt;}
.y11{bottom:778.666355pt;}
.y10{bottom:795.466348pt;}
.yf{bottom:801.546346pt;}
.ye{bottom:812.266342pt;}
.yc{bottom:829.226335pt;}
.yd{bottom:835.306333pt;}
.y9{bottom:846.506328pt;}
.yb{bottom:851.786326pt;}
.ya{bottom:852.586326pt;}
.y7{bottom:864.906321pt;}
.y8{bottom:870.986318pt;}
.y6{bottom:900.426306pt;}
.y5{bottom:937.226292pt;}
.y4{bottom:1005.866264pt;}
.y3{bottom:1024.266257pt;}
.y2{bottom:1042.666250pt;}
.y1{bottom:1061.066242pt;}
.h9{height:26.595859pt;}
.he{height:27.185262pt;}
.hc{height:28.132954pt;}
.h11{height:28.755378pt;}
.h12{height:29.500151pt;}
.hb{height:36.407010pt;}
.h7{height:36.413110pt;}
.h10{height:37.213260pt;}
.h8{height:37.787955pt;}
.hd{height:38.624520pt;}
.h4{height:42.084358pt;}
.ha{height:42.199753pt;}
.hf{height:43.134358pt;}
.h5{height:43.214983pt;}
.h15{height:52.134354pt;}
.h14{height:55.402478pt;}
.h2{height:57.688727pt;}
.h6{height:57.758727pt;}
.h1{height:62.812475pt;}
.h13{height:64.499974pt;}
.h3{height:85.784966pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:94.559962pt;}
.x2c{left:102.559959pt;}
.x2a{left:108.159957pt;}
.x2b{left:112.319955pt;}
.x27{left:113.279935pt;}
.x4{left:117.759953pt;}
.x12{left:120.639952pt;}
.x13{left:125.279950pt;}
.x2{left:131.199948pt;}
.x3e{left:142.559865pt;}
.x15{left:154.399938pt;}
.x2d{left:157.599937pt;}
.x16{left:159.039936pt;}
.x21{left:190.079924pt;}
.x1d{left:194.879922pt;}
.x1e{left:200.319920pt;}
.x22{left:203.359919pt;}
.x23{left:212.319915pt;}
.x29{left:217.279913pt;}
.x3{left:227.679339pt;}
.xd{left:246.239902pt;}
.x5{left:270.399892pt;}
.x6{left:275.839890pt;}
.x3b{left:283.679855pt;}
.x28{left:318.559873pt;}
.x2e{left:321.439871pt;}
.x17{left:323.518787pt;}
.x24{left:339.839864pt;}
.x25{left:345.279862pt;}
.x14{left:348.159965pt;}
.x26{left:353.119859pt;}
.xe{left:357.279857pt;}
.xf{left:362.719855pt;}
.x1{left:363.679855pt;}
.x7{left:368.319853pt;}
.x8{left:373.759850pt;}
.x2f{left:389.439844pt;}
.x36{left:405.599838pt;}
.x34{left:411.359835pt;}
.x35{left:415.519834pt;}
.x31{left:417.599771pt;}
.x30{left:435.519826pt;}
.x3c{left:449.439820pt;}
.x3d{left:454.879818pt;}
.x37{left:462.879815pt;}
.x9{left:508.479797pt;}
.xa{left:513.919794pt;}
.x33{left:523.999790pt;}
.x1b{left:527.839789pt;}
.x1c{left:533.279787pt;}
.x10{left:535.039786pt;}
.x11{left:540.479784pt;}
.x1f{left:550.079780pt;}
.x20{left:555.519778pt;}
.x19{left:590.079764pt;}
.x1a{left:595.519762pt;}
.x32{left:627.679749pt;}
.x38{left:629.759748pt;}
.x39{left:631.519747pt;}
.xb{left:659.359736pt;}
.xc{left:664.799734pt;}
.x3a{left:699.199720pt;}
}




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