
    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_d8bfe03ecbf7a5fa45a94991.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_d5e4bec3825d726ae57831f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_30486bf7e33a86da397c59fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_79028a61a8d2d1cfb521ae8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725000;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_28a26e65f62dae44a9a72613.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d1a7d91b155e4a4718de678.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_5b0b0a8c7bcf7ff4e6728d98.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_3f45eb79246b195ec29c5fa7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_f290bb8469b8028476d70cf6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_0d5570820cb80f4bb2ded31f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.604000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:46.134000px;}
.v7{vertical-align:52.446000px;}
.v6{vertical-align:98.580000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.007026px;}
.lsd{letter-spacing:1.793925px;}
.ls12{letter-spacing:1.802888px;}
.ls6{letter-spacing:1.814137px;}
.ls2{letter-spacing:1.820137px;}
.lsa{letter-spacing:2.356366px;}
.ls11{letter-spacing:2.880002px;}
.ls0{letter-spacing:2.986053px;}
.lsb{letter-spacing:2.986834px;}
.ls13{letter-spacing:2.988877px;}
.lsc{letter-spacing:10.930918px;}
.lse{letter-spacing:13.902877px;}
.ls9{letter-spacing:18.196379px;}
.ls14{letter-spacing:19.905275px;}
.ls3{letter-spacing:21.168877px;}
.ls5{letter-spacing:23.884834px;}
.ls4{letter-spacing:25.355412px;}
.ls10{letter-spacing:32.727300px;}
.lsf{letter-spacing:853.397075px;}
.ls7{letter-spacing:949.026245px;}
.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;}
}
.ws37{word-spacing:-15.278643px;}
.ws14{word-spacing:-3.456003px;}
.ws17{word-spacing:-2.801457px;}
.ws30{word-spacing:-2.081456px;}
.ws32{word-spacing:-1.688729px;}
.ws1e{word-spacing:-1.230546px;}
.ws2e{word-spacing:-0.772364px;}
.ws13{word-spacing:-0.641455px;}
.wse{word-spacing:-0.071731px;}
.ws1b{word-spacing:-0.065455px;}
.wsd{word-spacing:0.000000px;}
.wsb{word-spacing:0.340364px;}
.ws8{word-spacing:0.733092px;}
.ws21{word-spacing:0.798546px;}
.ws29{word-spacing:0.864001px;}
.wsa{word-spacing:1.060365px;}
.ws1d{word-spacing:1.322183px;}
.wsc{word-spacing:2.042184px;}
.ws2c{word-spacing:2.762184px;}
.ws19{word-spacing:2.958548px;}
.ws20{word-spacing:3.285821px;}
.ws33{word-spacing:3.299613px;}
.ws15{word-spacing:3.482185px;}
.ws4{word-spacing:3.613094px;}
.ws10{word-spacing:3.678549px;}
.ws22{word-spacing:3.940367px;}
.ws18{word-spacing:4.464004px;}
.ws36{word-spacing:4.686407px;}
.ws24{word-spacing:4.725822px;}
.ws23{word-spacing:5.642187px;}
.ws2d{word-spacing:5.707641px;}
.ws28{word-spacing:5.773096px;}
.ws9{word-spacing:6.034914px;}
.ws34{word-spacing:6.121021px;}
.ws16{word-spacing:6.820369px;}
.ws2b{word-spacing:7.016733px;}
.ws1f{word-spacing:7.052943px;}
.ws25{word-spacing:8.194916px;}
.ws1a{word-spacing:8.456734px;}
.ws2f{word-spacing:10.551282px;}
.ws7{word-spacing:10.747645px;}
.ws5{word-spacing:10.878555px;}
.ws2a{word-spacing:12.384010px;}
.ws31{word-spacing:12.449465px;}
.ws1c{word-spacing:15.512943px;}
.ws35{word-spacing:19.905275px;}
.wsf{word-spacing:25.003657px;}
.ws26{word-spacing:25.069112px;}
.ws2{word-spacing:26.253619px;}
.ws12{word-spacing:26.827469px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws1{word-spacing:54.432472px;}
.ws11{word-spacing:60.480050px;}
.ws6{word-spacing:79.390153px;}
.ws27{word-spacing:80.625869px;}
._1c{margin-left:-6.410972px;}
._0{margin-left:-4.610401px;}
._1a{margin-left:-3.600003px;}
._2{margin-left:-2.223667px;}
._7{margin-left:-1.050852px;}
._9{width:1.043695px;}
._3{width:2.223667px;}
._1{width:4.461678px;}
._19{width:15.747769px;}
._5{width:18.194590px;}
._1f{width:20.123506px;}
._20{width:21.677671px;}
._1d{width:25.269054px;}
._8{width:27.517721px;}
._6{width:28.861900px;}
._1e{width:32.697253px;}
._4{width:36.261848px;}
._a{width:60.545505px;}
._11{width:66.894601px;}
._1b{width:75.272790px;}
._18{width:80.697600px;}
._c{width:1212.116861px;}
._13{width:1229.113636px;}
._d{width:1232.184634px;}
._10{width:1560.825024px;}
._f{width:1685.130466px;}
._e{width:1716.090492px;}
._14{width:1854.390694px;}
._12{width:1933.790702px;}
._b{width:1937.781644px;}
._16{width:2028.567174px;}
._17{width:2134.278142px;}
._15{width:2251.989534px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y30{bottom:93.813000px;}
.y54{bottom:202.134000px;}
.y2f{bottom:215.893500px;}
.y53{bottom:222.457500px;}
.y2e{bottom:236.217000px;}
.y52{bottom:251.236500px;}
.y2d{bottom:256.540500px;}
.y75{bottom:260.535000px;}
.y2c{bottom:276.865500px;}
.y74{bottom:285.939000px;}
.y51{bottom:287.764500px;}
.y2b{bottom:297.189000px;}
.y73{bottom:303.873000px;}
.y50{bottom:308.088000px;}
.y2a{bottom:317.512500px;}
.y72{bottom:329.277000px;}
.y4f{bottom:336.867000px;}
.y29{bottom:337.836000px;}
.y71{bottom:354.682500px;}
.y70{bottom:372.615000px;}
.y4e{bottom:373.395000px;}
.y28{bottom:374.364000px;}
.y6f{bottom:398.019000px;}
.y10{bottom:401.002500px;}
.y4d{bottom:409.923000px;}
.y6e{bottom:415.951500px;}
.y27{bottom:419.944500px;}
.yf{bottom:421.327500px;}
.y26{bottom:440.269500px;}
.y6d{bottom:441.357000px;}
.ye{bottom:441.651000px;}
.y4c{bottom:455.503500px;}
.y6c{bottom:459.289500px;}
.y25{bottom:460.593000px;}
.yd{bottom:461.974500px;}
.y24{bottom:480.916500px;}
.yc{bottom:482.298000px;}
.y4b{bottom:489.277500px;}
.y6b{bottom:493.426500px;}
.y23{bottom:501.240000px;}
.yb{bottom:502.621500px;}
.y4a{bottom:517.899000px;}
.y22{bottom:521.563500px;}
.ya{bottom:522.946500px;}
.y49{bottom:523.050000px;}
.y6a{bottom:539.007000px;}
.y21{bottom:541.888500px;}
.y9{bottom:543.270000px;}
.y48{bottom:556.824000px;}
.y69{bottom:559.332000px;}
.y20{bottom:562.212000px;}
.y68{bottom:579.655500px;}
.y8{bottom:583.020000px;}
.y47{bottom:590.596500px;}
.y1f{bottom:598.740000px;}
.y67{bottom:599.979000px;}
.y46{bottom:610.921500px;}
.y7{bottom:619.743000px;}
.y66{bottom:620.302500px;}
.y65{bottom:640.626000px;}
.y1e{bottom:644.320500px;}
.y45{bottom:647.449500px;}
.y6{bottom:648.475500px;}
.y64{bottom:660.949500px;}
.y1d{bottom:690.847500px;}
.y44{bottom:693.030000px;}
.y63{bottom:697.479000px;}
.y43{bottom:713.353500px;}
.y1c{bottom:727.534500px;}
.y42{bottom:733.677000px;}
.y62{bottom:743.059500px;}
.y41{bottom:754.000500px;}
.y61{bottom:763.383000px;}
.y1b{bottom:764.223000px;}
.y5{bottom:769.410000px;}
.y60{bottom:783.706500px;}
.y40{bottom:790.530000px;}
.y1a{bottom:800.910000px;}
.y5f{bottom:804.030000px;}
.y4{bottom:806.691000px;}
.y19{bottom:821.233500px;}
.y5e{bottom:824.353500px;}
.y3f{bottom:836.110500px;}
.y18{bottom:841.557000px;}
.y3{bottom:851.523000px;}
.y3e{bottom:856.434000px;}
.y5d{bottom:860.883000px;}
.y17{bottom:861.882000px;}
.y3d{bottom:888.045000px;}
.y3c{bottom:893.196000px;}
.y2{bottom:896.355000px;}
.y16{bottom:898.569000px;}
.y5c{bottom:906.463500px;}
.y5b{bottom:926.787000px;}
.y3b{bottom:929.958000px;}
.y15{bottom:935.256000px;}
.y5a{bottom:947.110500px;}
.y3a{bottom:950.281500px;}
.y59{bottom:967.434000px;}
.y39{bottom:970.605000px;}
.y14{bottom:971.944500px;}
.y58{bottom:987.757500px;}
.y38{bottom:990.930000px;}
.y57{bottom:1008.082500px;}
.y13{bottom:1008.631500px;}
.y37{bottom:1020.225000px;}
.y36{bottom:1025.377500px;}
.y34{bottom:1031.533500px;}
.y33{bottom:1036.684500px;}
.y35{bottom:1043.067000px;}
.y56{bottom:1044.610500px;}
.y12{bottom:1045.318500px;}
.y11{bottom:1082.007000px;}
.y32{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y55{bottom:1090.191000px;}
.y31{bottom:1118.968500px;}
.h6{height:33.665702px;}
.h2{height:41.484266px;}
.hf{height:44.831700px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.hd{height:65.985908px;}
.ha{height:65.991908px;}
.he{height:69.694950px;}
.h5{height:72.062735px;}
.hc{height:86.589908px;}
.h3{height:106.485382px;}
.hb{height:132.723908px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x12{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x13{left:161.064000px;}
.x6{left:164.010000px;}
.x1{left:286.581000px;}
.xf{left:374.410500px;}
.x8{left:398.328000px;}
.x9{left:411.876000px;}
.x11{left:431.202000px;}
.x7{left:438.466500px;}
.xc{left:463.900500px;}
.xa{left:464.955000px;}
.xd{left:477.448500px;}
.x10{left:489.330000px;}
.xb{left:493.111500px;}
.xe{left:509.515500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.314667pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:41.008000pt;}
.v7{vertical-align:46.618667pt;}
.v6{vertical-align:87.626667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.006245pt;}
.lsd{letter-spacing:1.594600pt;}
.ls12{letter-spacing:1.602567pt;}
.ls6{letter-spacing:1.612566pt;}
.ls2{letter-spacing:1.617899pt;}
.lsa{letter-spacing:2.094547pt;}
.ls11{letter-spacing:2.560002pt;}
.ls0{letter-spacing:2.654270pt;}
.lsb{letter-spacing:2.654964pt;}
.ls13{letter-spacing:2.656779pt;}
.lsc{letter-spacing:9.716372pt;}
.lse{letter-spacing:12.358112pt;}
.ls9{letter-spacing:16.174559pt;}
.ls14{letter-spacing:17.693578pt;}
.ls3{letter-spacing:18.816779pt;}
.ls5{letter-spacing:21.230964pt;}
.ls4{letter-spacing:22.538144pt;}
.ls10{letter-spacing:29.090933pt;}
.lsf{letter-spacing:758.575178pt;}
.ls7{letter-spacing:843.578885pt;}
.ws37{word-spacing:-13.581016pt;}
.ws14{word-spacing:-3.072003pt;}
.ws17{word-spacing:-2.490184pt;}
.ws30{word-spacing:-1.850183pt;}
.ws32{word-spacing:-1.501092pt;}
.ws1e{word-spacing:-1.093819pt;}
.ws2e{word-spacing:-0.686546pt;}
.ws13{word-spacing:-0.570182pt;}
.wse{word-spacing:-0.063761pt;}
.ws1b{word-spacing:-0.058182pt;}
.wsd{word-spacing:0.000000pt;}
.wsb{word-spacing:0.302546pt;}
.ws8{word-spacing:0.651637pt;}
.ws21{word-spacing:0.709819pt;}
.ws29{word-spacing:0.768001pt;}
.wsa{word-spacing:0.942546pt;}
.ws1d{word-spacing:1.175274pt;}
.wsc{word-spacing:1.815274pt;}
.ws2c{word-spacing:2.455275pt;}
.ws19{word-spacing:2.629820pt;}
.ws20{word-spacing:2.920730pt;}
.ws33{word-spacing:2.932989pt;}
.ws15{word-spacing:3.095275pt;}
.ws4{word-spacing:3.211639pt;}
.ws10{word-spacing:3.269821pt;}
.ws22{word-spacing:3.502548pt;}
.ws18{word-spacing:3.968003pt;}
.ws36{word-spacing:4.165695pt;}
.ws24{word-spacing:4.200731pt;}
.ws23{word-spacing:5.015277pt;}
.ws2d{word-spacing:5.073459pt;}
.ws28{word-spacing:5.131641pt;}
.ws9{word-spacing:5.364368pt;}
.ws34{word-spacing:5.440908pt;}
.ws16{word-spacing:6.062551pt;}
.ws2b{word-spacing:6.237096pt;}
.ws1f{word-spacing:6.269282pt;}
.ws25{word-spacing:7.284370pt;}
.ws1a{word-spacing:7.517097pt;}
.ws2f{word-spacing:9.378917pt;}
.ws7{word-spacing:9.553463pt;}
.ws5{word-spacing:9.669826pt;}
.ws2a{word-spacing:11.008009pt;}
.ws31{word-spacing:11.066191pt;}
.ws1c{word-spacing:13.789282pt;}
.ws35{word-spacing:17.693578pt;}
.wsf{word-spacing:22.225473pt;}
.ws26{word-spacing:22.283655pt;}
.ws2{word-spacing:23.336550pt;}
.ws12{word-spacing:23.846639pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws1{word-spacing:48.384419pt;}
.ws11{word-spacing:53.760045pt;}
.ws6{word-spacing:70.569025pt;}
.ws27{word-spacing:71.667439pt;}
._1c{margin-left:-5.698642pt;}
._0{margin-left:-4.098134pt;}
._1a{margin-left:-3.200003pt;}
._2{margin-left:-1.976593pt;}
._7{margin-left:-0.934091pt;}
._9{width:0.927729pt;}
._3{width:1.976593pt;}
._1{width:3.965936pt;}
._19{width:13.998017pt;}
._5{width:16.172969pt;}
._1f{width:17.887561pt;}
._20{width:19.269041pt;}
._1d{width:22.461381pt;}
._8{width:24.460197pt;}
._6{width:25.655022pt;}
._1e{width:29.064225pt;}
._4{width:32.232754pt;}
._a{width:53.818227pt;}
._11{width:59.461868pt;}
._1b{width:66.909147pt;}
._18{width:71.731200pt;}
._c{width:1077.437210pt;}
._13{width:1092.545454pt;}
._d{width:1095.275230pt;}
._10{width:1387.400021pt;}
._f{width:1497.893748pt;}
._e{width:1525.413771pt;}
._14{width:1648.347284pt;}
._12{width:1718.925069pt;}
._b{width:1722.472572pt;}
._16{width:1803.170821pt;}
._17{width:1897.136126pt;}
._15{width:2001.768475pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:83.389333pt;}
.y54{bottom:179.674667pt;}
.y2f{bottom:191.905333pt;}
.y53{bottom:197.740000pt;}
.y2e{bottom:209.970667pt;}
.y52{bottom:223.321333pt;}
.y2d{bottom:228.036000pt;}
.y75{bottom:231.586667pt;}
.y2c{bottom:246.102667pt;}
.y74{bottom:254.168000pt;}
.y51{bottom:255.790667pt;}
.y2b{bottom:264.168000pt;}
.y73{bottom:270.109333pt;}
.y50{bottom:273.856000pt;}
.y2a{bottom:282.233333pt;}
.y72{bottom:292.690667pt;}
.y4f{bottom:299.437333pt;}
.y29{bottom:300.298667pt;}
.y71{bottom:315.273333pt;}
.y70{bottom:331.213333pt;}
.y4e{bottom:331.906667pt;}
.y28{bottom:332.768000pt;}
.y6f{bottom:353.794667pt;}
.y10{bottom:356.446667pt;}
.y4d{bottom:364.376000pt;}
.y6e{bottom:369.734667pt;}
.y27{bottom:373.284000pt;}
.yf{bottom:374.513333pt;}
.y26{bottom:391.350667pt;}
.y6d{bottom:392.317333pt;}
.ye{bottom:392.578667pt;}
.y4c{bottom:404.892000pt;}
.y6c{bottom:408.257333pt;}
.y25{bottom:409.416000pt;}
.yd{bottom:410.644000pt;}
.y24{bottom:427.481333pt;}
.yc{bottom:428.709333pt;}
.y4b{bottom:434.913333pt;}
.y6b{bottom:438.601333pt;}
.y23{bottom:445.546667pt;}
.yb{bottom:446.774667pt;}
.y4a{bottom:460.354667pt;}
.y22{bottom:463.612000pt;}
.ya{bottom:464.841333pt;}
.y49{bottom:464.933333pt;}
.y6a{bottom:479.117333pt;}
.y21{bottom:481.678667pt;}
.y9{bottom:482.906667pt;}
.y48{bottom:494.954667pt;}
.y69{bottom:497.184000pt;}
.y20{bottom:499.744000pt;}
.y68{bottom:515.249333pt;}
.y8{bottom:518.240000pt;}
.y47{bottom:524.974667pt;}
.y1f{bottom:532.213333pt;}
.y67{bottom:533.314667pt;}
.y46{bottom:543.041333pt;}
.y7{bottom:550.882667pt;}
.y66{bottom:551.380000pt;}
.y65{bottom:569.445333pt;}
.y1e{bottom:572.729333pt;}
.y45{bottom:575.510667pt;}
.y6{bottom:576.422667pt;}
.y64{bottom:587.510667pt;}
.y1d{bottom:614.086667pt;}
.y44{bottom:616.026667pt;}
.y63{bottom:619.981333pt;}
.y43{bottom:634.092000pt;}
.y1c{bottom:646.697333pt;}
.y42{bottom:652.157333pt;}
.y62{bottom:660.497333pt;}
.y41{bottom:670.222667pt;}
.y61{bottom:678.562667pt;}
.y1b{bottom:679.309333pt;}
.y5{bottom:683.920000pt;}
.y60{bottom:696.628000pt;}
.y40{bottom:702.693333pt;}
.y1a{bottom:711.920000pt;}
.y5f{bottom:714.693333pt;}
.y4{bottom:717.058667pt;}
.y19{bottom:729.985333pt;}
.y5e{bottom:732.758667pt;}
.y3f{bottom:743.209333pt;}
.y18{bottom:748.050667pt;}
.y3{bottom:756.909333pt;}
.y3e{bottom:761.274667pt;}
.y5d{bottom:765.229333pt;}
.y17{bottom:766.117333pt;}
.y3d{bottom:789.373333pt;}
.y3c{bottom:793.952000pt;}
.y2{bottom:796.760000pt;}
.y16{bottom:798.728000pt;}
.y5c{bottom:805.745333pt;}
.y5b{bottom:823.810667pt;}
.y3b{bottom:826.629333pt;}
.y15{bottom:831.338667pt;}
.y5a{bottom:841.876000pt;}
.y3a{bottom:844.694667pt;}
.y59{bottom:859.941333pt;}
.y39{bottom:862.760000pt;}
.y14{bottom:863.950667pt;}
.y58{bottom:878.006667pt;}
.y38{bottom:880.826667pt;}
.y57{bottom:896.073333pt;}
.y13{bottom:896.561333pt;}
.y37{bottom:906.866667pt;}
.y36{bottom:911.446667pt;}
.y34{bottom:916.918667pt;}
.y33{bottom:921.497333pt;}
.y35{bottom:927.170667pt;}
.y56{bottom:928.542667pt;}
.y12{bottom:929.172000pt;}
.y11{bottom:961.784000pt;}
.y32{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y55{bottom:969.058667pt;}
.y31{bottom:994.638667pt;}
.h6{height:29.925069pt;}
.h2{height:36.874903pt;}
.hf{height:39.850400pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.hd{height:58.654141pt;}
.ha{height:58.659474pt;}
.he{height:61.951067pt;}
.h5{height:64.055764pt;}
.hc{height:76.968807pt;}
.h3{height:94.653673pt;}
.hb{height:117.976807pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x12{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x13{left:143.168000pt;}
.x6{left:145.786667pt;}
.x1{left:254.738667pt;}
.xf{left:332.809333pt;}
.x8{left:354.069333pt;}
.x9{left:366.112000pt;}
.x11{left:383.290667pt;}
.x7{left:389.748000pt;}
.xc{left:412.356000pt;}
.xa{left:413.293333pt;}
.xd{left:424.398667pt;}
.x10{left:434.960000pt;}
.xb{left:438.321333pt;}
.xe{left:452.902667pt;}
}




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