
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_656677b660cfb71be45c7c26.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a99719a0707f331231562dcd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_a112763771489ecd1316dc1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_724d8807349ec52d4b1d4e9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_3f1afe3ea435e35f58812a78.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_b723778cf1803a47fae45e9d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_89ec8e9e9137f266f60e48bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_707604e8c264938e6c067a65.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3f1416571812d28fe5d356be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_453aae78f825319d4304d529.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_30d547b9f58cd695b709a560.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8e97d4eac0289d45aaf1a18c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-81.360000px;}
.v3{vertical-align:-78.480000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.125760px;}
.ls0{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:1.980000px;}
.ls11{letter-spacing:2.700000px;}
.lsb{letter-spacing:4.140000px;}
.ls10{letter-spacing:7.740000px;}
.lse{letter-spacing:9.900000px;}
.lsa{letter-spacing:10.620000px;}
.lsd{letter-spacing:14.220000px;}
.ls2{letter-spacing:18.000000px;}
.lsc{letter-spacing:20.700000px;}
.ls9{letter-spacing:35.100000px;}
.ls12{letter-spacing:37.260000px;}
.ls15{letter-spacing:54.288000px;}
.ls1{letter-spacing:57.000000px;}
.ls7{letter-spacing:115.349760px;}
.ls16{letter-spacing:152.064000px;}
.ls14{letter-spacing:908.436000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.120240px;}
.ws2{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._24{margin-left:-2.378880px;}
._0{margin-left:-1.126080px;}
._1{width:1.231680px;}
._10{width:2.430480px;}
._25{width:3.453120px;}
._11{width:4.477200px;}
._12{width:5.697840px;}
._8{width:7.560000px;}
._d{width:8.856000px;}
._e{width:10.072320px;}
._3{width:11.520000px;}
._21{width:12.636960px;}
._13{width:13.845360px;}
._5{width:15.716160px;}
._4{width:16.896000px;}
._1e{width:18.195840px;}
._c{width:19.654080px;}
._b{width:20.712000px;}
._26{width:22.407840px;}
._1f{width:23.839920px;}
._20{width:25.819200px;}
._22{width:27.462240px;}
._f{width:28.560000px;}
._1b{width:30.157920px;}
._2{width:31.728000px;}
._18{width:32.746560px;}
._19{width:33.869760px;}
._1c{width:34.875360px;}
._1d{width:35.991840px;}
._29{width:37.981440px;}
._27{width:39.171600px;}
._1a{width:40.350960px;}
._28{width:41.929200px;}
._14{width:42.962400px;}
._15{width:44.266560px;}
._23{width:46.598400px;}
._9{width:47.664000px;}
._a{width:48.928320px;}
._16{width:55.501200px;}
._17{width:114.229440px;}
._6{width:117.576000px;}
._7{width:118.728000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:7.416000px;}
.y4{bottom:7.740000px;}
.y7{bottom:8.640000px;}
.y5{bottom:15.516000px;}
.y2{bottom:57.456000px;}
.y7f{bottom:88.056000px;}
.y5a{bottom:92.916000px;}
.y35{bottom:101.736000px;}
.y7e{bottom:115.776000px;}
.y59{bottom:120.636000px;}
.y34{bottom:125.856000px;}
.y7d{bottom:143.496000px;}
.y58{bottom:148.356000px;}
.y33{bottom:150.150000px;}
.y7c{bottom:171.390000px;}
.y32{bottom:174.270000px;}
.y57{bottom:176.250000px;}
.y31{bottom:198.390000px;}
.y7b{bottom:199.110000px;}
.y56{bottom:203.970000px;}
.y30{bottom:222.510000px;}
.y7a{bottom:226.830000px;}
.y55{bottom:231.690000px;}
.y2f{bottom:246.630000px;}
.y79{bottom:254.730000px;}
.y54{bottom:259.410000px;}
.y2e{bottom:270.750000px;}
.y78{bottom:282.495000px;}
.y53{bottom:287.355000px;}
.y2d{bottom:294.915000px;}
.y77{bottom:310.215000px;}
.y52{bottom:315.075000px;}
.y2c{bottom:319.215000px;}
.y76{bottom:337.935000px;}
.y51{bottom:342.795000px;}
.y2b{bottom:343.335000px;}
.y75{bottom:365.835000px;}
.y2a{bottom:367.455000px;}
.y50{bottom:370.695000px;}
.y29{bottom:391.575000px;}
.y74{bottom:393.555000px;}
.y4f{bottom:398.415000px;}
.y28{bottom:415.695000px;}
.y73{bottom:421.275000px;}
.y4e{bottom:426.135000px;}
.y8a{bottom:427.575000px;}
.y27{bottom:439.815000px;}
.y89{bottom:448.095000px;}
.y72{bottom:449.175000px;}
.y4d{bottom:453.855000px;}
.y26{bottom:464.115000px;}
.y88{bottom:468.795000px;}
.y71{bottom:476.895000px;}
.y4c{bottom:481.755000px;}
.y25{bottom:488.235000px;}
.y87{bottom:489.495000px;}
.y70{bottom:504.615000px;}
.y4b{bottom:509.475000px;}
.y86{bottom:510.195000px;}
.y24{bottom:512.355000px;}
.y85{bottom:530.895000px;}
.y6f{bottom:532.335000px;}
.y23{bottom:536.475000px;}
.y4a{bottom:537.195000px;}
.y84{bottom:551.595000px;}
.y22{bottom:560.055000px;}
.y6e{bottom:560.235000px;}
.y49{bottom:565.125000px;}
.y83{bottom:572.325000px;}
.y21{bottom:580.785000px;}
.y6d{bottom:587.985000px;}
.y48{bottom:592.845000px;}
.y82{bottom:593.025000px;}
.y20{bottom:601.485000px;}
.y81{bottom:613.725000px;}
.y6c{bottom:615.705000px;}
.y47{bottom:620.565000px;}
.y1f{bottom:622.185000px;}
.y1e{bottom:642.885000px;}
.y6b{bottom:643.605000px;}
.y46{bottom:648.285000px;}
.y80{bottom:654.765000px;}
.y1d{bottom:663.585000px;}
.y6a{bottom:671.325000px;}
.y45{bottom:676.185000px;}
.y1c{bottom:684.285000px;}
.y69{bottom:699.045000px;}
.y44{bottom:703.905000px;}
.y1b{bottom:704.985000px;}
.y1a{bottom:725.685000px;}
.y68{bottom:726.765000px;}
.y43{bottom:731.625000px;}
.y19{bottom:746.385000px;}
.y67{bottom:754.665000px;}
.y42{bottom:759.345000px;}
.y18{bottom:767.085000px;}
.y66{bottom:782.385000px;}
.y41{bottom:787.245000px;}
.y17{bottom:787.785000px;}
.y16{bottom:808.485000px;}
.y65{bottom:810.105000px;}
.y40{bottom:814.965000px;}
.y15{bottom:829.185000px;}
.y64{bottom:837.825000px;}
.y3f{bottom:842.685000px;}
.y14{bottom:849.930000px;}
.y63{bottom:865.770000px;}
.y13{bottom:870.630000px;}
.y12{bottom:891.330000px;}
.y62{bottom:893.490000px;}
.y3e{bottom:898.350000px;}
.y11{bottom:912.030000px;}
.y61{bottom:921.210000px;}
.y3d{bottom:922.470000px;}
.y10{bottom:932.730000px;}
.y3c{bottom:946.590000px;}
.y60{bottom:949.110000px;}
.yf{bottom:953.430000px;}
.y3b{bottom:970.710000px;}
.ye{bottom:974.130000px;}
.y5f{bottom:976.830000px;}
.y3a{bottom:994.830000px;}
.y5e{bottom:1004.550000px;}
.yd{bottom:1016.790000px;}
.y39{bottom:1019.130000px;}
.y5d{bottom:1032.270000px;}
.yc{bottom:1037.490000px;}
.y38{bottom:1043.250000px;}
.yb{bottom:1058.190000px;}
.y5c{bottom:1060.170000px;}
.y37{bottom:1067.370000px;}
.ya{bottom:1078.890000px;}
.y5b{bottom:1087.890000px;}
.y36{bottom:1091.490000px;}
.y9{bottom:1098.510000px;}
.y8{bottom:1115.610000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h3{height:33.120000px;}
.h12{height:35.332031px;}
.h7{height:38.520000px;}
.h5{height:44.136000px;}
.ha{height:54.421875px;}
.hf{height:58.819922px;}
.hd{height:59.343750px;}
.h2{height:65.884219px;}
.h10{height:69.432187px;}
.hc{height:70.628906px;}
.h14{height:70.664062px;}
.hb{height:72.562500px;}
.h13{height:74.004654px;}
.h8{height:78.626953px;}
.h11{height:82.635820px;}
.he{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.240000px;}
.w5{width:66.276000px;}
.w4{width:77.436000px;}
.w6{width:95.580000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x8{left:25.200000px;}
.x3{left:26.460000px;}
.x1{left:63.899987px;}
.xf{left:95.975987px;}
.xe{left:106.415987px;}
.x7{left:175.170000px;}
.x9{left:231.149987px;}
.xb{left:324.974987px;}
.xd{left:339.554987px;}
.xc{left:374.474987px;}
.x4{left:427.755000px;}
.xa{left:457.274987px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-72.320000pt;}
.v3{vertical-align:-69.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.111787pt;}
.ls0{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:1.760000pt;}
.ls11{letter-spacing:2.400000pt;}
.lsb{letter-spacing:3.680000pt;}
.ls10{letter-spacing:6.880000pt;}
.lse{letter-spacing:8.800000pt;}
.lsa{letter-spacing:9.440000pt;}
.lsd{letter-spacing:12.640000pt;}
.ls2{letter-spacing:16.000000pt;}
.lsc{letter-spacing:18.400000pt;}
.ls9{letter-spacing:31.200000pt;}
.ls12{letter-spacing:33.120000pt;}
.ls15{letter-spacing:48.256000pt;}
.ls1{letter-spacing:50.666667pt;}
.ls7{letter-spacing:102.533120pt;}
.ls16{letter-spacing:135.168000pt;}
.ls14{letter-spacing:807.498667pt;}
.ws4{word-spacing:-19.040000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.106880pt;}
.ws2{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._24{margin-left:-2.114560pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.094827pt;}
._10{width:2.160427pt;}
._25{width:3.069440pt;}
._11{width:3.979733pt;}
._12{width:5.064747pt;}
._8{width:6.720000pt;}
._d{width:7.872000pt;}
._e{width:8.953173pt;}
._3{width:10.240000pt;}
._21{width:11.232853pt;}
._13{width:12.306987pt;}
._5{width:13.969920pt;}
._4{width:15.018667pt;}
._1e{width:16.174080pt;}
._c{width:17.470293pt;}
._b{width:18.410667pt;}
._26{width:19.918080pt;}
._1f{width:21.191040pt;}
._20{width:22.950400pt;}
._22{width:24.410880pt;}
._f{width:25.386667pt;}
._1b{width:26.807040pt;}
._2{width:28.202667pt;}
._18{width:29.108053pt;}
._19{width:30.106453pt;}
._1c{width:31.000320pt;}
._1d{width:31.992747pt;}
._29{width:33.761280pt;}
._27{width:34.819200pt;}
._1a{width:35.867520pt;}
._28{width:37.270400pt;}
._14{width:38.188800pt;}
._15{width:39.348053pt;}
._23{width:41.420800pt;}
._9{width:42.368000pt;}
._a{width:43.491840pt;}
._16{width:49.334400pt;}
._17{width:101.537280pt;}
._6{width:104.512000pt;}
._7{width:105.536000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:6.592000pt;}
.y4{bottom:6.880000pt;}
.y7{bottom:7.680000pt;}
.y5{bottom:13.792000pt;}
.y2{bottom:51.072000pt;}
.y7f{bottom:78.272000pt;}
.y5a{bottom:82.592000pt;}
.y35{bottom:90.432000pt;}
.y7e{bottom:102.912000pt;}
.y59{bottom:107.232000pt;}
.y34{bottom:111.872000pt;}
.y7d{bottom:127.552000pt;}
.y58{bottom:131.872000pt;}
.y33{bottom:133.466667pt;}
.y7c{bottom:152.346667pt;}
.y32{bottom:154.906667pt;}
.y57{bottom:156.666667pt;}
.y31{bottom:176.346667pt;}
.y7b{bottom:176.986667pt;}
.y56{bottom:181.306667pt;}
.y30{bottom:197.786667pt;}
.y7a{bottom:201.626667pt;}
.y55{bottom:205.946667pt;}
.y2f{bottom:219.226667pt;}
.y79{bottom:226.426667pt;}
.y54{bottom:230.586667pt;}
.y2e{bottom:240.666667pt;}
.y78{bottom:251.106667pt;}
.y53{bottom:255.426667pt;}
.y2d{bottom:262.146667pt;}
.y77{bottom:275.746667pt;}
.y52{bottom:280.066667pt;}
.y2c{bottom:283.746667pt;}
.y76{bottom:300.386667pt;}
.y51{bottom:304.706667pt;}
.y2b{bottom:305.186667pt;}
.y75{bottom:325.186667pt;}
.y2a{bottom:326.626667pt;}
.y50{bottom:329.506667pt;}
.y29{bottom:348.066667pt;}
.y74{bottom:349.826667pt;}
.y4f{bottom:354.146667pt;}
.y28{bottom:369.506667pt;}
.y73{bottom:374.466667pt;}
.y4e{bottom:378.786667pt;}
.y8a{bottom:380.066667pt;}
.y27{bottom:390.946667pt;}
.y89{bottom:398.306667pt;}
.y72{bottom:399.266667pt;}
.y4d{bottom:403.426667pt;}
.y26{bottom:412.546667pt;}
.y88{bottom:416.706667pt;}
.y71{bottom:423.906667pt;}
.y4c{bottom:428.226667pt;}
.y25{bottom:433.986667pt;}
.y87{bottom:435.106667pt;}
.y70{bottom:448.546667pt;}
.y4b{bottom:452.866667pt;}
.y86{bottom:453.506667pt;}
.y24{bottom:455.426667pt;}
.y85{bottom:471.906667pt;}
.y6f{bottom:473.186667pt;}
.y23{bottom:476.866667pt;}
.y4a{bottom:477.506667pt;}
.y84{bottom:490.306667pt;}
.y22{bottom:497.826667pt;}
.y6e{bottom:497.986667pt;}
.y49{bottom:502.333333pt;}
.y83{bottom:508.733333pt;}
.y21{bottom:516.253333pt;}
.y6d{bottom:522.653333pt;}
.y48{bottom:526.973333pt;}
.y82{bottom:527.133333pt;}
.y20{bottom:534.653333pt;}
.y81{bottom:545.533333pt;}
.y6c{bottom:547.293333pt;}
.y47{bottom:551.613333pt;}
.y1f{bottom:553.053333pt;}
.y1e{bottom:571.453333pt;}
.y6b{bottom:572.093333pt;}
.y46{bottom:576.253333pt;}
.y80{bottom:582.013333pt;}
.y1d{bottom:589.853333pt;}
.y6a{bottom:596.733333pt;}
.y45{bottom:601.053333pt;}
.y1c{bottom:608.253333pt;}
.y69{bottom:621.373333pt;}
.y44{bottom:625.693333pt;}
.y1b{bottom:626.653333pt;}
.y1a{bottom:645.053333pt;}
.y68{bottom:646.013333pt;}
.y43{bottom:650.333333pt;}
.y19{bottom:663.453333pt;}
.y67{bottom:670.813333pt;}
.y42{bottom:674.973333pt;}
.y18{bottom:681.853333pt;}
.y66{bottom:695.453333pt;}
.y41{bottom:699.773333pt;}
.y17{bottom:700.253333pt;}
.y16{bottom:718.653333pt;}
.y65{bottom:720.093333pt;}
.y40{bottom:724.413333pt;}
.y15{bottom:737.053333pt;}
.y64{bottom:744.733333pt;}
.y3f{bottom:749.053333pt;}
.y14{bottom:755.493333pt;}
.y63{bottom:769.573333pt;}
.y13{bottom:773.893333pt;}
.y12{bottom:792.293333pt;}
.y62{bottom:794.213333pt;}
.y3e{bottom:798.533333pt;}
.y11{bottom:810.693333pt;}
.y61{bottom:818.853333pt;}
.y3d{bottom:819.973333pt;}
.y10{bottom:829.093333pt;}
.y3c{bottom:841.413333pt;}
.y60{bottom:843.653333pt;}
.yf{bottom:847.493333pt;}
.y3b{bottom:862.853333pt;}
.ye{bottom:865.893333pt;}
.y5f{bottom:868.293333pt;}
.y3a{bottom:884.293333pt;}
.y5e{bottom:892.933333pt;}
.yd{bottom:903.813333pt;}
.y39{bottom:905.893333pt;}
.y5d{bottom:917.573333pt;}
.yc{bottom:922.213333pt;}
.y38{bottom:927.333333pt;}
.yb{bottom:940.613333pt;}
.y5c{bottom:942.373333pt;}
.y37{bottom:948.773333pt;}
.ya{bottom:959.013333pt;}
.y5b{bottom:967.013333pt;}
.y36{bottom:970.213333pt;}
.y9{bottom:976.453333pt;}
.y8{bottom:991.653333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h3{height:29.440000pt;}
.h12{height:31.406250pt;}
.h7{height:34.240000pt;}
.h5{height:39.232000pt;}
.ha{height:48.375000pt;}
.hf{height:52.284375pt;}
.hd{height:52.750000pt;}
.h2{height:58.563750pt;}
.h10{height:61.717500pt;}
.hc{height:62.781250pt;}
.h14{height:62.812500pt;}
.hb{height:64.500000pt;}
.h13{height:65.781915pt;}
.h8{height:69.890625pt;}
.h11{height:73.454062pt;}
.he{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.880000pt;}
.w5{width:58.912000pt;}
.w4{width:68.832000pt;}
.w6{width:84.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x8{left:22.400000pt;}
.x3{left:23.520000pt;}
.x1{left:56.799988pt;}
.xf{left:85.311988pt;}
.xe{left:94.591988pt;}
.x7{left:155.706667pt;}
.x9{left:205.466655pt;}
.xb{left:288.866655pt;}
.xd{left:301.826655pt;}
.xc{left:332.866655pt;}
.x4{left:380.226667pt;}
.xa{left:406.466655pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
}




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