
    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_e9c2a312d816dc263d3691ec.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_be5c0c4c9dae194ea5279288.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.696777;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_caf312e03fccb82ff6a0936a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3cc45aa8cee780691440751c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f57f11433984456a2cc93934.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_02769c88a26f66162927dad1.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_969910c0ab8f21d9c13c4141.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_46cee89cbe1aea4d60635447.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9d19dbfd019615deb2f7cede.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_81e0a4e3abb2e447cabed22e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_a1846a4b3e6d7ed211b87aa1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.821777;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);}
.v2{vertical-align:-46.097982px;}
.v6{vertical-align:-33.113987px;}
.v4{vertical-align:-27.359989px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.359989px;}
.v3{vertical-align:33.119987px;}
.v1{vertical-align:46.097982px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.120960px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.181440px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.511999px;}
.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;}
}
.ws0{word-spacing:-65.652287px;}
.ws1{word-spacing:-40.031817px;}
.ws5{word-spacing:-20.015992px;}
.wsa{word-spacing:-17.999993px;}
.ws9{word-spacing:-14.939994px;}
.ws7{word-spacing:-12.059995px;}
.ws8{word-spacing:-9.719996px;}
.ws3{word-spacing:-0.147167px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:14.311299px;}
.ws2{word-spacing:14.341944px;}
._2{margin-left:-2.153195px;}
._0{margin-left:-1.023134px;}
._1{width:1.848868px;}
._f{width:10.133796px;}
._c{width:11.530148px;}
._4{width:12.547522px;}
._3{width:13.621354px;}
._5{width:19.104015px;}
._8{width:21.084037px;}
._9{width:22.186940px;}
._a{width:23.369344px;}
._d{width:25.811120px;}
._b{width:38.791944px;}
._6{width:54.190147px;}
._7{width:55.415210px;}
._e{width:1363.414495px;}
.fc4{color:rgb(59,75,167);}
.fc2{color:rgb(76,81,91);}
.fc1{color:rgb(16,15,13);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:38.879984px;}
.fs8{font-size:48.239981px;}
.fsa{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:95.759362px;}
.fs6{font-size:95.759962px;}
.fs7{font-size:107.999957px;}
.fs2{font-size:143.999342px;}
.fs1{font-size:201.600519px;}
.fs0{font-size:236.159306px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.120938px;}
.y9c{bottom:4.665472px;}
.y89{bottom:4.665769px;}
.y8c{bottom:4.665778px;}
.y91{bottom:4.665796px;}
.y94{bottom:4.665805px;}
.y6e{bottom:4.678563px;}
.y75{bottom:4.679347px;}
.y2f{bottom:4.679556px;}
.y32{bottom:4.679565px;}
.y38{bottom:4.679592px;}
.y3e{bottom:4.679610px;}
.y40{bottom:4.679619px;}
.y43{bottom:4.679628px;}
.y48{bottom:4.679637px;}
.y50{bottom:4.679664px;}
.y52{bottom:4.679673px;}
.y57{bottom:4.679691px;}
.y5b{bottom:4.679700px;}
.y61{bottom:4.679727px;}
.y64{bottom:4.679736px;}
.y67{bottom:4.679745px;}
.y6b{bottom:4.679754px;}
.ya0{bottom:4.679920px;}
.y79{bottom:4.680115px;}
.y80{bottom:4.680142px;}
.y83{bottom:4.680151px;}
.y8d{bottom:5.925778px;}
.y92{bottom:5.925796px;}
.y95{bottom:5.925805px;}
.y7a{bottom:5.938615px;}
.y39{bottom:5.939592px;}
.y41{bottom:5.939619px;}
.y44{bottom:5.939628px;}
.y49{bottom:5.939637px;}
.y53{bottom:5.939673px;}
.y58{bottom:5.939691px;}
.y5d{bottom:5.939709px;}
.y62{bottom:5.939727px;}
.y65{bottom:5.939736px;}
.y68{bottom:5.939745px;}
.ya1{bottom:5.939920px;}
.y81{bottom:5.940142px;}
.y85{bottom:5.940151px;}
.y46{bottom:5.954028px;}
.y8a{bottom:5.970769px;}
.y9b{bottom:7.005472px;}
.y8f{bottom:7.005787px;}
.y97{bottom:7.005814px;}
.y99{bottom:7.005823px;}
.y6d{bottom:7.018562px;}
.y70{bottom:7.018571px;}
.y72{bottom:7.018580px;}
.y2e{bottom:7.019555px;}
.y31{bottom:7.019564px;}
.y34{bottom:7.019573px;}
.y36{bottom:7.019582px;}
.y3b{bottom:7.019600px;}
.y3d{bottom:7.019609px;}
.y4b{bottom:7.019645px;}
.y4f{bottom:7.019663px;}
.y55{bottom:7.019681px;}
.y5a{bottom:7.019699px;}
.y5f{bottom:7.019717px;}
.y6a{bottom:7.019753px;}
.y9e{bottom:7.019911px;}
.y77{bottom:7.020106px;}
.y7c{bottom:7.020124px;}
.y7e{bottom:7.020133px;}
.y84{bottom:7.020151px;}
.y87{bottom:7.020160px;}
.y4d{bottom:7.064654px;}
.y7{bottom:12.001630px;}
.y74{bottom:24.838589px;}
.y2b{bottom:111.577005px;}
.y9f{bottom:119.136780px;}
.y2a{bottom:128.676999px;}
.y9d{bottom:141.636780px;}
.y29{bottom:145.956992px;}
.y28{bottom:163.231435px;}
.y9a{bottom:164.145960px;}
.y27{bottom:180.511428px;}
.y98{bottom:186.645600px;}
.y2{bottom:190.393574px;}
.y96{bottom:209.145600px;}
.y26{bottom:215.431414px;}
.y93{bottom:231.645600px;}
.y1{bottom:250.154900px;}
.y25{bottom:251.071400px;}
.y90{bottom:254.145600px;}
.y24{bottom:268.171393px;}
.y8e{bottom:276.645600px;}
.y8b{bottom:299.145600px;}
.y23{bottom:304.171378px;}
.y88{bottom:321.645600px;}
.y4{bottom:327.890869px;}
.y22{bottom:342.916363px;}
.y86{bottom:344.176200px;}
.y21{bottom:363.616355px;}
.y82{bottom:366.676200px;}
.y7f{bottom:389.176200px;}
.y20{bottom:393.316343px;}
.y3{bottom:394.681342px;}
.y7d{bottom:411.676200px;}
.y1f{bottom:414.016334px;}
.y7b{bottom:434.176200px;}
.y1e{bottom:434.716326px;}
.y78{bottom:456.676200px;}
.y1d{bottom:468.194813px;}
.y76{bottom:479.176200px;}
.y73{bottom:501.676200px;}
.y71{bottom:541.996200px;}
.y6f{bottom:564.496200px;}
.y6c{bottom:586.996200px;}
.y69{bottom:609.525000px;}
.y66{bottom:632.025000px;}
.y63{bottom:654.525000px;}
.y1c{bottom:672.884731px;}
.y60{bottom:677.025000px;}
.y1b{bottom:694.304722px;}
.y5e{bottom:699.525000px;}
.y1a{bottom:715.004714px;}
.y5c{bottom:722.025000px;}
.y19{bottom:735.704706px;}
.y59{bottom:744.525000px;}
.y18{bottom:756.404697px;}
.y56{bottom:767.025000px;}
.y17{bottom:777.104689px;}
.y54{bottom:789.525000px;}
.y16{bottom:797.804681px;}
.y6{bottom:807.429127px;}
.y51{bottom:812.025000px;}
.y15{bottom:818.504673px;}
.y4e{bottom:834.525000px;}
.y14{bottom:839.204664px;}
.y5{bottom:854.573658px;}
.y4c{bottom:857.025000px;}
.y13{bottom:859.904656px;}
.y4a{bottom:879.570000px;}
.y12{bottom:882.089647px;}
.y47{bottom:902.070000px;}
.y11{bottom:902.789639px;}
.y10{bottom:923.489631px;}
.y45{bottom:924.555600px;}
.y42{bottom:924.570000px;}
.y3f{bottom:947.070000px;}
.yf{bottom:961.469615px;}
.y3c{bottom:969.570000px;}
.ye{bottom:985.409606px;}
.y3a{bottom:992.070000px;}
.yd{bottom:1011.509595px;}
.y37{bottom:1014.570000px;}
.yc{bottom:1032.389587px;}
.y35{bottom:1037.070000px;}
.y33{bottom:1059.570000px;}
.yb{bottom:1071.809571px;}
.y30{bottom:1082.070000px;}
.ya{bottom:1099.349560px;}
.y2d{bottom:1104.570000px;}
.y2c{bottom:1131.658610px;}
.y9{bottom:1147.318604px;}
.h11{height:22.484520px;}
.h13{height:22.485240px;}
.h12{height:22.500000px;}
.h18{height:22.521060px;}
.h15{height:22.535820px;}
.h14{height:22.536000px;}
.h16{height:22.536540px;}
.hb{height:26.995770px;}
.he{height:33.494752px;}
.h17{height:40.304520px;}
.hf{height:40.472210px;}
.hc{height:41.493499px;}
.h7{height:47.988262px;}
.hd{height:49.992168px;}
.h5{height:52.417948px;}
.h10{height:54.628572px;}
.h8{height:64.899818px;}
.ha{height:66.614739px;}
.h9{height:73.195283px;}
.h4{height:104.835459px;}
.h3{height:115.813415px;}
.h2{height:146.770691px;}
.h1{height:171.930432px;}
.h6{height:1262.879062px;}
.h0{height:1263.000000px;}
.w4{width:147.990240px;}
.w5{width:148.005000px;}
.w2{width:213.679800px;}
.w6{width:213.690780px;}
.w3{width:404.175600px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:5.209357px;}
.x4{left:21.603441px;}
.xf{left:126.586440px;}
.xe{left:127.655799px;}
.xb{left:129.095798px;}
.x7{left:131.975797px;}
.x9{left:146.195942px;}
.xd{left:148.895790px;}
.x3{left:152.455439px;}
.xc{left:191.371513px;}
.x1{left:233.824406px;}
.x2{left:236.880190px;}
.x8{left:239.430204px;}
.x5{left:313.558375px;}
.x6{left:336.674865px;}
.x11{left:340.273800px;}
.xa{left:373.754850px;}
.x12{left:744.449400px;}
@media print{
.v2{vertical-align:-40.975984pt;}
.v6{vertical-align:-29.434655pt;}
.v4{vertical-align:-24.319990pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.319990pt;}
.v3{vertical-align:29.439988pt;}
.v1{vertical-align:40.975984pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.107520pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.161280pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.343999pt;}
.ws0{word-spacing:-58.357588pt;}
.ws1{word-spacing:-35.583837pt;}
.ws5{word-spacing:-17.791993pt;}
.wsa{word-spacing:-15.999994pt;}
.ws9{word-spacing:-13.279995pt;}
.ws7{word-spacing:-10.719996pt;}
.ws8{word-spacing:-8.639997pt;}
.ws3{word-spacing:-0.130815pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:12.721155pt;}
.ws2{word-spacing:12.748394pt;}
._2{margin-left:-1.913951pt;}
._0{margin-left:-0.909453pt;}
._1{width:1.643438pt;}
._f{width:9.007819pt;}
._c{width:10.249021pt;}
._4{width:11.153353pt;}
._3{width:12.107870pt;}
._5{width:16.981346pt;}
._8{width:18.741366pt;}
._9{width:19.721725pt;}
._a{width:20.772750pt;}
._d{width:22.943218pt;}
._b{width:34.481728pt;}
._6{width:48.169020pt;}
._7{width:49.257964pt;}
._e{width:1211.923995pt;}
.fs9{font-size:34.559986pt;}
.fs8{font-size:42.879983pt;}
.fsa{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:85.119433pt;}
.fs6{font-size:85.119966pt;}
.fs7{font-size:95.999962pt;}
.fs2{font-size:127.999415pt;}
.fs1{font-size:179.200462pt;}
.fs0{font-size:209.919383pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.107500pt;}
.y9c{bottom:4.147087pt;}
.y89{bottom:4.147351pt;}
.y8c{bottom:4.147359pt;}
.y91{bottom:4.147375pt;}
.y94{bottom:4.147383pt;}
.y6e{bottom:4.158723pt;}
.y75{bottom:4.159420pt;}
.y2f{bottom:4.159606pt;}
.y32{bottom:4.159614pt;}
.y38{bottom:4.159638pt;}
.y3e{bottom:4.159654pt;}
.y40{bottom:4.159662pt;}
.y43{bottom:4.159670pt;}
.y48{bottom:4.159678pt;}
.y50{bottom:4.159702pt;}
.y52{bottom:4.159710pt;}
.y57{bottom:4.159726pt;}
.y5b{bottom:4.159734pt;}
.y61{bottom:4.159758pt;}
.y64{bottom:4.159766pt;}
.y67{bottom:4.159774pt;}
.y6b{bottom:4.159782pt;}
.ya0{bottom:4.159929pt;}
.y79{bottom:4.160103pt;}
.y80{bottom:4.160127pt;}
.y83{bottom:4.160135pt;}
.y8d{bottom:5.267358pt;}
.y92{bottom:5.267374pt;}
.y95{bottom:5.267382pt;}
.y7a{bottom:5.278769pt;}
.y39{bottom:5.279637pt;}
.y41{bottom:5.279661pt;}
.y44{bottom:5.279669pt;}
.y49{bottom:5.279677pt;}
.y53{bottom:5.279709pt;}
.y58{bottom:5.279725pt;}
.y5d{bottom:5.279741pt;}
.y62{bottom:5.279757pt;}
.y65{bottom:5.279765pt;}
.y68{bottom:5.279773pt;}
.ya1{bottom:5.279929pt;}
.y81{bottom:5.280126pt;}
.y85{bottom:5.280134pt;}
.y46{bottom:5.292469pt;}
.y8a{bottom:5.307350pt;}
.y9b{bottom:6.227086pt;}
.y8f{bottom:6.227366pt;}
.y97{bottom:6.227390pt;}
.y99{bottom:6.227398pt;}
.y6d{bottom:6.238722pt;}
.y70{bottom:6.238730pt;}
.y72{bottom:6.238738pt;}
.y2e{bottom:6.239605pt;}
.y31{bottom:6.239613pt;}
.y34{bottom:6.239621pt;}
.y36{bottom:6.239629pt;}
.y3b{bottom:6.239645pt;}
.y3d{bottom:6.239653pt;}
.y4b{bottom:6.239685pt;}
.y4f{bottom:6.239701pt;}
.y55{bottom:6.239717pt;}
.y5a{bottom:6.239733pt;}
.y5f{bottom:6.239749pt;}
.y6a{bottom:6.239781pt;}
.y9e{bottom:6.239920pt;}
.y77{bottom:6.240094pt;}
.y7c{bottom:6.240110pt;}
.y7e{bottom:6.240118pt;}
.y84{bottom:6.240134pt;}
.y87{bottom:6.240142pt;}
.y4d{bottom:6.279693pt;}
.y7{bottom:10.668116pt;}
.y74{bottom:22.078746pt;}
.y2b{bottom:99.179560pt;}
.y9f{bottom:105.899360pt;}
.y2a{bottom:114.379554pt;}
.y9d{bottom:125.899360pt;}
.y29{bottom:129.739548pt;}
.y28{bottom:145.094609pt;}
.y9a{bottom:145.907520pt;}
.y27{bottom:160.454602pt;}
.y98{bottom:165.907200pt;}
.y2{bottom:169.238732pt;}
.y96{bottom:185.907200pt;}
.y26{bottom:191.494590pt;}
.y93{bottom:205.907200pt;}
.y1{bottom:222.359911pt;}
.y25{bottom:223.174577pt;}
.y90{bottom:225.907200pt;}
.y24{bottom:238.374571pt;}
.y8e{bottom:245.907200pt;}
.y8b{bottom:265.907200pt;}
.y23{bottom:270.374559pt;}
.y88{bottom:285.907200pt;}
.y4{bottom:291.458550pt;}
.y22{bottom:304.814545pt;}
.y86{bottom:305.934400pt;}
.y21{bottom:323.214537pt;}
.y82{bottom:325.934400pt;}
.y7f{bottom:345.934400pt;}
.y20{bottom:349.614527pt;}
.y3{bottom:350.827860pt;}
.y7d{bottom:365.934400pt;}
.y1f{bottom:368.014519pt;}
.y7b{bottom:385.934400pt;}
.y1e{bottom:386.414512pt;}
.y78{bottom:405.934400pt;}
.y1d{bottom:416.173167pt;}
.y76{bottom:425.934400pt;}
.y73{bottom:445.934400pt;}
.y71{bottom:481.774400pt;}
.y6f{bottom:501.774400pt;}
.y6c{bottom:521.774400pt;}
.y69{bottom:541.800000pt;}
.y66{bottom:561.800000pt;}
.y63{bottom:581.800000pt;}
.y1c{bottom:598.119761pt;}
.y60{bottom:601.800000pt;}
.y1b{bottom:617.159753pt;}
.y5e{bottom:621.800000pt;}
.y1a{bottom:635.559746pt;}
.y5c{bottom:641.800000pt;}
.y19{bottom:653.959738pt;}
.y59{bottom:661.800000pt;}
.y18{bottom:672.359731pt;}
.y56{bottom:681.800000pt;}
.y17{bottom:690.759724pt;}
.y54{bottom:701.800000pt;}
.y16{bottom:709.159716pt;}
.y6{bottom:717.714780pt;}
.y51{bottom:721.800000pt;}
.y15{bottom:727.559709pt;}
.y4e{bottom:741.800000pt;}
.y14{bottom:745.959702pt;}
.y5{bottom:759.621029pt;}
.y4c{bottom:761.800000pt;}
.y13{bottom:764.359694pt;}
.y4a{bottom:781.840000pt;}
.y12{bottom:784.079686pt;}
.y47{bottom:801.840000pt;}
.y11{bottom:802.479679pt;}
.y10{bottom:820.879672pt;}
.y45{bottom:821.827200pt;}
.y42{bottom:821.840000pt;}
.y3f{bottom:841.840000pt;}
.yf{bottom:854.639658pt;}
.y3c{bottom:861.840000pt;}
.ye{bottom:875.919650pt;}
.y3a{bottom:881.840000pt;}
.yd{bottom:899.119640pt;}
.y37{bottom:901.840000pt;}
.yc{bottom:917.679633pt;}
.y35{bottom:921.840000pt;}
.y33{bottom:941.840000pt;}
.yb{bottom:952.719619pt;}
.y30{bottom:961.840000pt;}
.ya{bottom:977.199609pt;}
.y2d{bottom:981.840000pt;}
.y2c{bottom:1005.918764pt;}
.y9{bottom:1019.838759pt;}
.h11{height:19.986240pt;}
.h13{height:19.986880pt;}
.h12{height:20.000000pt;}
.h18{height:20.018720pt;}
.h15{height:20.031840pt;}
.h14{height:20.032000pt;}
.h16{height:20.032480pt;}
.hb{height:23.996240pt;}
.he{height:29.773113pt;}
.h17{height:35.826240pt;}
.hf{height:35.975298pt;}
.hc{height:36.883110pt;}
.h7{height:42.656233pt;}
.hd{height:44.437482pt;}
.h5{height:46.593731pt;}
.h10{height:48.558731pt;}
.h8{height:57.688727pt;}
.ha{height:59.213101pt;}
.h9{height:65.062474pt;}
.h4{height:93.187074pt;}
.h3{height:102.945258pt;}
.h2{height:130.462836pt;}
.h1{height:152.827051pt;}
.h6{height:1122.559167pt;}
.h0{height:1122.666667pt;}
.w4{width:131.546880pt;}
.w5{width:131.560000pt;}
.w2{width:189.937600pt;}
.w6{width:189.947360pt;}
.w3{width:359.267200pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:4.630540pt;}
.x4{left:19.203059pt;}
.xf{left:112.521280pt;}
.xe{left:113.471821pt;}
.xb{left:114.751821pt;}
.x7{left:117.311820pt;}
.x9{left:129.951948pt;}
.xd{left:132.351814pt;}
.x3{left:135.515946pt;}
.xc{left:170.108012pt;}
.x1{left:207.843917pt;}
.x2{left:210.560169pt;}
.x8{left:212.826848pt;}
.x5{left:278.718555pt;}
.x6{left:299.266547pt;}
.x11{left:302.465600pt;}
.xa{left:332.226534pt;}
.x12{left:661.732800pt;}
}




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