
    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_aa250e61e9feb276c59c6689.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_8fd1327f1e2a6dc7e4c93dd8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_e6e25403dd044b8402dfd108.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_c9e39324b8ffeb68ce87f677.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_69e5726da354b41c93d2c2f7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2d76d463bd9355d839ff82d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_c7b172680a3c414cc1b15ea2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_5d970ccc7e348d766b7194da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d44e3c8de2c0a348e68cceca.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_276fe600f592ff62d1526604.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_d3f09fd793ca78aa1127200e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_0c786baccb79e962e36f342a.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.232615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232615,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275371,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.793400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.682000px;}
.lsb{letter-spacing:-0.014392px;}
.ls1b{letter-spacing:-0.008635px;}
.ls13{letter-spacing:-0.007915px;}
.ls1d{letter-spacing:-0.007676px;}
.lsf{letter-spacing:-0.005937px;}
.ls1f{letter-spacing:-0.005757px;}
.ls12{letter-spacing:-0.003958px;}
.ls20{letter-spacing:-0.003473px;}
.ls11{letter-spacing:-0.001979px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000480px;}
.ls9{letter-spacing:0.001025px;}
.ls1e{letter-spacing:0.001919px;}
.ls16{letter-spacing:0.001979px;}
.ls1{letter-spacing:0.002159px;}
.lsa{letter-spacing:0.003473px;}
.ls0{letter-spacing:0.003598px;}
.ls15{letter-spacing:0.003958px;}
.ls1a{letter-spacing:0.004317px;}
.ls7{letter-spacing:0.005757px;}
.lsd{letter-spacing:0.005997px;}
.ls8{letter-spacing:0.007676px;}
.ls14{letter-spacing:0.007915px;}
.lse{letter-spacing:0.008635px;}
.ls3{letter-spacing:0.009361px;}
.ls17{letter-spacing:0.009894px;}
.ls10{letter-spacing:0.182054px;}
.ls2{letter-spacing:0.349236px;}
.ls19{letter-spacing:0.389833px;}
.ls18{letter-spacing:0.538246px;}
.ls1c{letter-spacing:0.669689px;}
.ls5{letter-spacing:2.151005px;}
.ls4{letter-spacing:6.833858px;}
.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;}
}
.ws30{word-spacing:-4.344583px;}
.ws2f{word-spacing:-4.341110px;}
.ws31{word-spacing:-4.337638px;}
.ws1d{word-spacing:-2.170793px;}
.ws28{word-spacing:-0.688878px;}
.ws15{word-spacing:-0.558034px;}
.ws16{word-spacing:-0.409621px;}
.ws6{word-spacing:-0.368425px;}
.ws8{word-spacing:-0.201842px;}
.ws0{word-spacing:-0.039577px;}
.ws5{word-spacing:-0.030222px;}
.ws2{word-spacing:-0.029983px;}
.ws1a{word-spacing:-0.029683px;}
.ws14{word-spacing:-0.027704px;}
.ws1f{word-spacing:-0.026864px;}
.ws1c{word-spacing:-0.025905px;}
.ws21{word-spacing:-0.024945px;}
.ws4{word-spacing:-0.023746px;}
.ws11{word-spacing:-0.021767px;}
.ws1{word-spacing:-0.021587px;}
.wsa{word-spacing:-0.019788px;}
.ws1b{word-spacing:-0.019189px;}
.wsb{word-spacing:-0.017810px;}
.wsc{word-spacing:-0.015831px;}
.ws7{word-spacing:-0.013852px;}
.ws2e{word-spacing:-0.013432px;}
.ws1e{word-spacing:-0.012952px;}
.wsd{word-spacing:-0.011873px;}
.ws29{word-spacing:-0.011513px;}
.ws32{word-spacing:0.000000px;}
.ws2c{word-spacing:2.847618px;}
.ws12{word-spacing:2.974204px;}
.ws2d{word-spacing:3.018399px;}
.ws13{word-spacing:3.156258px;}
.ws9{word-spacing:3.825108px;}
.ws18{word-spacing:3.965606px;}
.ws19{word-spacing:4.282221px;}
.ws27{word-spacing:4.415343px;}
.ws17{word-spacing:4.687884px;}
.wsf{word-spacing:4.715588px;}
.wse{word-spacing:4.757144px;}
.ws26{word-spacing:4.964143px;}
.ws10{word-spacing:5.710947px;}
.ws2a{word-spacing:7.736925px;}
.ws20{word-spacing:8.007487px;}
.ws2b{word-spacing:8.032433px;}
.ws22{word-spacing:8.366318px;}
.ws25{word-spacing:9.194135px;}
.ws23{word-spacing:9.206787px;}
.ws24{word-spacing:9.208706px;}
.ws3{word-spacing:631.930658px;}
._1{margin-left:-1.076552px;}
._0{width:1.081469px;}
._2{width:2.994952px;}
._3{width:84.000539px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:11.576294px;}
.fs6{font-size:14.391602px;}
.fs7{font-size:17.364442px;}
.fs3{font-size:19.188803px;}
.fs5{font-size:19.233007px;}
.fs4{font-size:19.788453px;}
.fs2{font-size:21.587403px;}
.fs1{font-size:29.982504px;}
.fs0{font-size:35.979005px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.299976px;}
.y58{bottom:1.085250px;}
.y60{bottom:1.085280px;}
.y5a{bottom:1.446900px;}
.y5d{bottom:1.447035px;}
.y56{bottom:1.447050px;}
.y2e{bottom:1.602750px;}
.y2b{bottom:2.003400px;}
.y54{bottom:4.082032px;}
.y29{bottom:5.934346px;}
.y53{bottom:9.928594px;}
.y28{bottom:11.930836px;}
.y52{bottom:15.625279px;}
.y27{bottom:17.927371px;}
.y51{bottom:21.321949px;}
.y26{bottom:23.773936px;}
.y50{bottom:27.168544px;}
.y25{bottom:29.770456px;}
.y4f{bottom:32.865229px;}
.y24{bottom:35.617021px;}
.y4e{bottom:38.561884px;}
.y23{bottom:41.613556px;}
.y4d{bottom:44.408479px;}
.y22{bottom:47.610046px;}
.y4c{bottom:50.105179px;}
.y21{bottom:53.456611px;}
.y4b{bottom:55.951744px;}
.y20{bottom:59.453131px;}
.y4a{bottom:61.648429px;}
.y1f{bottom:65.299696px;}
.y49{bottom:67.345084px;}
.yc{bottom:73.223829px;}
.yb{bottom:74.243484px;}
.y6a{bottom:80.180490px;}
.y35{bottom:81.325404px;}
.y69{bottom:85.606875px;}
.y32{bottom:86.136559px;}
.y68{bottom:90.671505px;}
.y67{bottom:95.736135px;}
.y66{bottom:100.800765px;}
.y65{bottom:105.865395px;}
.y64{bottom:110.568255px;}
.y63{bottom:115.632885px;}
.y62{bottom:120.697515px;}
.y61{bottom:125.762145px;}
.y5f{bottom:130.826775px;}
.y5e{bottom:135.529650px;}
.y5c{bottom:140.594280px;}
.y5b{bottom:145.658895px;}
.y59{bottom:150.723600px;}
.y57{bottom:155.788200px;}
.y55{bottom:160.852800px;}
.y34{bottom:169.923024px;}
.y33{bottom:176.369274px;}
.y31{bottom:183.770100px;}
.y36{bottom:185.752824px;}
.y30{bottom:189.780450px;}
.y2f{bottom:195.390000px;}
.y2d{bottom:200.999700px;}
.y2c{bottom:206.609250px;}
.y2a{bottom:212.619600px;}
.ya{bottom:222.976674px;}
.y48{bottom:230.721274px;}
.y1e{bottom:234.314461px;}
.y47{bottom:236.417974px;}
.y1d{bottom:240.311011px;}
.y46{bottom:242.264524px;}
.y1c{bottom:246.157561px;}
.y45{bottom:247.961224px;}
.y1b{bottom:252.154111px;}
.y44{bottom:253.807774px;}
.y1a{bottom:258.150511px;}
.y43{bottom:259.654374px;}
.y19{bottom:263.997061px;}
.y42{bottom:265.950724px;}
.y18{bottom:269.993611px;}
.y41{bottom:271.797274px;}
.y17{bottom:275.840161px;}
.y40{bottom:277.493974px;}
.y16{bottom:281.836711px;}
.y3f{bottom:283.190524px;}
.y15{bottom:287.833261px;}
.y3e{bottom:289.037224px;}
.y14{bottom:293.679811px;}
.y3d{bottom:294.733924px;}
.y13{bottom:299.676361px;}
.y3c{bottom:300.430624px;}
.y12{bottom:305.522911px;}
.y3b{bottom:306.277174px;}
.y11{bottom:311.519461px;}
.y3a{bottom:313.922724px;}
.y10{bottom:317.515861px;}
.y39{bottom:322.167811px;}
.yf{bottom:323.362411px;}
.y38{bottom:328.014511px;}
.ye{bottom:329.358961px;}
.y37{bottom:334.910424px;}
.yd{bottom:335.205511px;}
.y9{bottom:342.440574px;}
.y8{bottom:355.052499px;}
.y7{bottom:361.048998px;}
.y6{bottom:370.043748px;}
.y5{bottom:379.188348px;}
.y4{bottom:388.183111px;}
.y3{bottom:396.878123px;}
.y2{bottom:407.671823px;}
.h17{height:4.702869px;}
.h13{height:5.064600px;}
.h18{height:5.064628px;}
.h9{height:5.609619px;}
.ha{height:5.609631px;}
.h7{height:6.010323px;}
.hf{height:9.992606px;}
.h1a{height:11.573468px;}
.h16{height:11.734564px;}
.h14{height:12.056756px;}
.hc{height:12.818874px;}
.h11{height:13.295367px;}
.hd{height:13.342214px;}
.h8{height:13.354168px;}
.h6{height:13.759158px;}
.he{height:14.778095px;}
.h12{height:14.957287px;}
.h5{height:15.009991px;}
.h10{height:15.600272px;}
.h15{height:16.505043px;}
.h4{height:20.774010px;}
.h3{height:20.847210px;}
.h2{height:25.016652px;}
.hb{height:34.859820px;}
.h19{height:85.736910px;}
.h1{height:420.709050px;}
.h0{height:421.500000px;}
.w3{width:25.724820px;}
.wa{width:32.276220px;}
.w8{width:33.073155px;}
.w9{width:35.065515px;}
.w4{width:41.383410px;}
.w5{width:41.756235px;}
.w2{width:57.414825px;}
.w7{width:59.372310px;}
.w6{width:167.024850px;}
.wb{width:174.132150px;}
.w1{width:382.418100px;}
.w0{width:382.500000px;}
.x0{left:0.000000px;}
.xa{left:1.864116px;}
.x12{left:4.615140px;}
.x13{left:6.361806px;}
.x7{left:7.560729px;}
.x9{left:8.682208px;}
.x1b{left:9.762570px;}
.xc{left:11.697345px;}
.x11{left:13.720650px;}
.x18{left:15.982665px;}
.x1a{left:17.443065px;}
.xe{left:19.498680px;}
.x10{left:20.617140px;}
.xb{left:66.097020px;}
.x16{left:68.766870px;}
.x1{left:77.772438px;}
.xd{left:91.821840px;}
.x17{left:101.840025px;}
.x4{left:105.434954px;}
.x2{left:126.883333px;}
.xf{left:133.205250px;}
.x19{left:136.905555px;}
.x5{left:151.865402px;}
.x6{left:164.270623px;}
.x15{left:189.871350px;}
.x8{left:191.333100px;}
.x3{left:193.844880px;}
.x14{left:203.012850px;}
@media print{
.v1{vertical-align:-1.594133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.717333pt;}
.lsb{letter-spacing:-0.012793pt;}
.ls1b{letter-spacing:-0.007676pt;}
.ls13{letter-spacing:-0.007036pt;}
.ls1d{letter-spacing:-0.006823pt;}
.lsf{letter-spacing:-0.005277pt;}
.ls1f{letter-spacing:-0.005117pt;}
.ls12{letter-spacing:-0.003518pt;}
.ls20{letter-spacing:-0.003087pt;}
.ls11{letter-spacing:-0.001759pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000426pt;}
.ls9{letter-spacing:0.000911pt;}
.ls1e{letter-spacing:0.001706pt;}
.ls16{letter-spacing:0.001759pt;}
.ls1{letter-spacing:0.001919pt;}
.lsa{letter-spacing:0.003087pt;}
.ls0{letter-spacing:0.003198pt;}
.ls15{letter-spacing:0.003518pt;}
.ls1a{letter-spacing:0.003838pt;}
.ls7{letter-spacing:0.005117pt;}
.lsd{letter-spacing:0.005330pt;}
.ls8{letter-spacing:0.006823pt;}
.ls14{letter-spacing:0.007036pt;}
.lse{letter-spacing:0.007676pt;}
.ls3{letter-spacing:0.008320pt;}
.ls17{letter-spacing:0.008795pt;}
.ls10{letter-spacing:0.161826pt;}
.ls2{letter-spacing:0.310432pt;}
.ls19{letter-spacing:0.346518pt;}
.ls18{letter-spacing:0.478441pt;}
.ls1c{letter-spacing:0.595279pt;}
.ls5{letter-spacing:1.912004pt;}
.ls4{letter-spacing:6.074541pt;}
.ws30{word-spacing:-3.861852pt;}
.ws2f{word-spacing:-3.858765pt;}
.ws31{word-spacing:-3.855678pt;}
.ws1d{word-spacing:-1.929594pt;}
.ws28{word-spacing:-0.612336pt;}
.ws15{word-spacing:-0.496031pt;}
.ws16{word-spacing:-0.364108pt;}
.ws6{word-spacing:-0.327489pt;}
.ws8{word-spacing:-0.179415pt;}
.ws0{word-spacing:-0.035179pt;}
.ws5{word-spacing:-0.026864pt;}
.ws2{word-spacing:-0.026651pt;}
.ws1a{word-spacing:-0.026385pt;}
.ws14{word-spacing:-0.024626pt;}
.ws1f{word-spacing:-0.023879pt;}
.ws1c{word-spacing:-0.023027pt;}
.ws21{word-spacing:-0.022174pt;}
.ws4{word-spacing:-0.021108pt;}
.ws11{word-spacing:-0.019349pt;}
.ws1{word-spacing:-0.019189pt;}
.wsa{word-spacing:-0.017590pt;}
.ws1b{word-spacing:-0.017057pt;}
.wsb{word-spacing:-0.015831pt;}
.wsc{word-spacing:-0.014072pt;}
.ws7{word-spacing:-0.012313pt;}
.ws2e{word-spacing:-0.011940pt;}
.ws1e{word-spacing:-0.011513pt;}
.wsd{word-spacing:-0.010554pt;}
.ws29{word-spacing:-0.010234pt;}
.ws32{word-spacing:0.000000pt;}
.ws2c{word-spacing:2.531216pt;}
.ws12{word-spacing:2.643737pt;}
.ws2d{word-spacing:2.683021pt;}
.ws13{word-spacing:2.805563pt;}
.ws9{word-spacing:3.400096pt;}
.ws18{word-spacing:3.524983pt;}
.ws19{word-spacing:3.806419pt;}
.ws27{word-spacing:3.924750pt;}
.ws17{word-spacing:4.167008pt;}
.wsf{word-spacing:4.191634pt;}
.wse{word-spacing:4.228572pt;}
.ws26{word-spacing:4.412572pt;}
.ws10{word-spacing:5.076398pt;}
.ws2a{word-spacing:6.877267pt;}
.ws20{word-spacing:7.117766pt;}
.ws2b{word-spacing:7.139940pt;}
.ws22{word-spacing:7.436727pt;}
.ws25{word-spacing:8.172564pt;}
.ws23{word-spacing:8.183811pt;}
.ws24{word-spacing:8.185517pt;}
.ws3{word-spacing:561.716140pt;}
._1{margin-left:-0.956935pt;}
._0{width:0.961306pt;}
._2{width:2.662180pt;}
._3{width:74.667146pt;}
.fs8{font-size:10.290039pt;}
.fs6{font-size:12.792535pt;}
.fs7{font-size:15.435059pt;}
.fs3{font-size:17.056713pt;}
.fs5{font-size:17.096006pt;}
.fs4{font-size:17.589736pt;}
.fs2{font-size:19.188803pt;}
.fs1{font-size:26.651115pt;}
.fs0{font-size:31.981338pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.266645pt;}
.y58{bottom:0.964667pt;}
.y60{bottom:0.964693pt;}
.y5a{bottom:1.286133pt;}
.y5d{bottom:1.286253pt;}
.y56{bottom:1.286267pt;}
.y2e{bottom:1.424667pt;}
.y2b{bottom:1.780800pt;}
.y54{bottom:3.628473pt;}
.y29{bottom:5.274974pt;}
.y53{bottom:8.825417pt;}
.y28{bottom:10.605188pt;}
.y52{bottom:13.889137pt;}
.y27{bottom:15.935441pt;}
.y51{bottom:18.952843pt;}
.y26{bottom:21.132388pt;}
.y50{bottom:24.149817pt;}
.y25{bottom:26.462628pt;}
.y4f{bottom:29.213537pt;}
.y24{bottom:31.659574pt;}
.y4e{bottom:34.277230pt;}
.y23{bottom:36.989828pt;}
.y4d{bottom:39.474203pt;}
.y22{bottom:42.320041pt;}
.y4c{bottom:44.537937pt;}
.y21{bottom:47.516988pt;}
.y4b{bottom:49.734883pt;}
.y20{bottom:52.847228pt;}
.y4a{bottom:54.798603pt;}
.y1f{bottom:58.044174pt;}
.y49{bottom:59.862297pt;}
.yc{bottom:65.087848pt;}
.yb{bottom:65.994208pt;}
.y6a{bottom:71.271547pt;}
.y35{bottom:72.289248pt;}
.y69{bottom:76.095000pt;}
.y32{bottom:76.565830pt;}
.y68{bottom:80.596893pt;}
.y67{bottom:85.098787pt;}
.y66{bottom:89.600680pt;}
.y65{bottom:94.102573pt;}
.y64{bottom:98.282893pt;}
.y63{bottom:102.784787pt;}
.y62{bottom:107.286680pt;}
.y61{bottom:111.788573pt;}
.y5f{bottom:116.290467pt;}
.y5e{bottom:120.470800pt;}
.y5c{bottom:124.972693pt;}
.y5b{bottom:129.474573pt;}
.y59{bottom:133.976533pt;}
.y57{bottom:138.478400pt;}
.y55{bottom:142.980267pt;}
.y34{bottom:151.042688pt;}
.y33{bottom:156.772688pt;}
.y31{bottom:163.351200pt;}
.y36{bottom:165.113621pt;}
.y30{bottom:168.693733pt;}
.y2f{bottom:173.680000pt;}
.y2d{bottom:178.666400pt;}
.y2c{bottom:183.652667pt;}
.y2a{bottom:188.995200pt;}
.ya{bottom:198.201488pt;}
.y48{bottom:205.085577pt;}
.y1e{bottom:208.279521pt;}
.y47{bottom:210.149310pt;}
.y1d{bottom:213.609788pt;}
.y46{bottom:215.346243pt;}
.y1c{bottom:218.806721pt;}
.y45{bottom:220.409977pt;}
.y1b{bottom:224.136988pt;}
.y44{bottom:225.606910pt;}
.y1a{bottom:229.467121pt;}
.y43{bottom:230.803888pt;}
.y19{bottom:234.664054pt;}
.y42{bottom:236.400643pt;}
.y18{bottom:239.994321pt;}
.y41{bottom:241.597577pt;}
.y17{bottom:245.191254pt;}
.y40{bottom:246.661310pt;}
.y16{bottom:250.521521pt;}
.y3f{bottom:251.724910pt;}
.y15{bottom:255.851788pt;}
.y3e{bottom:256.921977pt;}
.y14{bottom:261.048721pt;}
.y3d{bottom:261.985710pt;}
.y13{bottom:266.378988pt;}
.y3c{bottom:267.049443pt;}
.y12{bottom:271.575921pt;}
.y3b{bottom:272.246377pt;}
.y11{bottom:276.906188pt;}
.y3a{bottom:279.042421pt;}
.y10{bottom:282.236321pt;}
.y39{bottom:286.371388pt;}
.yf{bottom:287.433254pt;}
.y38{bottom:291.568454pt;}
.ye{bottom:292.763521pt;}
.y37{bottom:297.698154pt;}
.yd{bottom:297.960454pt;}
.y9{bottom:304.391621pt;}
.y8{bottom:315.602221pt;}
.y7{bottom:320.932443pt;}
.y6{bottom:328.927776pt;}
.y5{bottom:337.056310pt;}
.y4{bottom:345.051654pt;}
.y3{bottom:352.780554pt;}
.y2{bottom:362.374954pt;}
.h17{height:4.180328pt;}
.h13{height:4.501867pt;}
.h18{height:4.501892pt;}
.h9{height:4.986328pt;}
.ha{height:4.986339pt;}
.h7{height:5.342509pt;}
.hf{height:8.882317pt;}
.h1a{height:10.287527pt;}
.h16{height:10.430724pt;}
.h14{height:10.717116pt;}
.hc{height:11.394555pt;}
.h11{height:11.818104pt;}
.hd{height:11.859746pt;}
.h8{height:11.870372pt;}
.h6{height:12.230363pt;}
.he{height:13.136085pt;}
.h12{height:13.295367pt;}
.h5{height:13.342214pt;}
.h10{height:13.866908pt;}
.h15{height:14.671149pt;}
.h4{height:18.465787pt;}
.h3{height:18.530853pt;}
.h2{height:22.237024pt;}
.hb{height:30.986507pt;}
.h19{height:76.210587pt;}
.h1{height:373.963600pt;}
.h0{height:374.666667pt;}
.w3{width:22.866507pt;}
.wa{width:28.689973pt;}
.w8{width:29.398360pt;}
.w9{width:31.169347pt;}
.w4{width:36.785253pt;}
.w5{width:37.116653pt;}
.w2{width:51.035400pt;}
.w7{width:52.775387pt;}
.w6{width:148.466533pt;}
.wb{width:154.784133pt;}
.w1{width:339.927200pt;}
.w0{width:340.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.656992pt;}
.x12{left:4.102347pt;}
.x13{left:5.654939pt;}
.x7{left:6.720648pt;}
.x9{left:7.717519pt;}
.x1b{left:8.677840pt;}
.xc{left:10.397640pt;}
.x11{left:12.196133pt;}
.x18{left:14.206813pt;}
.x1a{left:15.504947pt;}
.xe{left:17.332160pt;}
.x10{left:18.326347pt;}
.xb{left:58.752907pt;}
.x16{left:61.126107pt;}
.x1{left:69.131056pt;}
.xd{left:81.619413pt;}
.x17{left:90.524467pt;}
.x4{left:93.719959pt;}
.x2{left:112.785185pt;}
.xf{left:118.404667pt;}
.x19{left:121.693827pt;}
.x5{left:134.991468pt;}
.x6{left:146.018332pt;}
.x15{left:168.774533pt;}
.x8{left:170.073867pt;}
.x3{left:172.306560pt;}
.x14{left:180.455867pt;}
}




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