
    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_be6f82210e8e186617328c34.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_d852122abd973b7a92a11756.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_2a9bdb2e1e2af86fffb4627f.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_42c67e32202de8d1676ea460.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_84769511f7ef285577e91428.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_583e83e87e89518dd8b13c6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_457a03274697a929a3f2a705.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26a53f9876626210abd9b4ac.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_4e5b4ae468f18e47bb3257bb.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_e0be24eb6ccc4eb0671790e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_5ed3d0a8907f0ad10c504c30.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_adcb6a8a4ec9136dbaee856e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6d240c8ce925e0983e9d08ba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881836;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls2a{letter-spacing:-0.115200px;}
.ls29{letter-spacing:-0.100800px;}
.ls2c{letter-spacing:-0.064800px;}
.ls2b{letter-spacing:-0.050400px;}
.lsb{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.014400px;}
.lsc{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000600px;}
.ls2{letter-spacing:0.006480px;}
.ls11{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.021600px;}
.ls17{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.059820px;}
.ls0{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.283968px;}
.ls6{letter-spacing:0.317376px;}
.ls26{letter-spacing:0.478224px;}
.ls9{letter-spacing:0.543168px;}
.ls25{letter-spacing:0.637632px;}
.ls24{letter-spacing:0.702576px;}
.ls1{letter-spacing:0.900000px;}
.lsa{letter-spacing:3.905400px;}
.ls1c{letter-spacing:6.070200px;}
.ls23{letter-spacing:13.945200px;}
.ls16{letter-spacing:13.980000px;}
.ls28{letter-spacing:14.353800px;}
.ls1b{letter-spacing:17.988000px;}
.ls1e{letter-spacing:21.960600px;}
.ls22{letter-spacing:22.030800px;}
.lse{letter-spacing:24.837600px;}
.ls20{letter-spacing:29.905800px;}
.ls1f{letter-spacing:29.976600px;}
.lsd{letter-spacing:30.383340px;}
.ls12{letter-spacing:33.984000px;}
.lsf{letter-spacing:33.984120px;}
.ls10{letter-spacing:38.026800px;}
.ls1a{letter-spacing:41.964600px;}
.ls13{letter-spacing:45.972600px;}
.ls19{letter-spacing:46.007400px;}
.ls27{letter-spacing:48.468360px;}
.ls15{letter-spacing:49.945200px;}
.ls14{letter-spacing:49.980000px;}
.ls21{letter-spacing:78.275400px;}
.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:-21.197376px;}
.ws6{word-spacing:-18.036000px;}
.ws7{word-spacing:-18.021600px;}
.ws5{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.985600px;}
.ws9{word-spacing:-17.949600px;}
.ws8{word-spacing:-0.072000px;}
.ws3{word-spacing:-0.071280px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-10.051200px;}
._e{margin-left:-5.025600px;}
._f{margin-left:-1.062720px;}
._3{width:1.281600px;}
._8{width:2.354400px;}
._1{width:4.003200px;}
._6{width:5.023440px;}
._5{width:6.091380px;}
._2{width:7.336800px;}
._0{width:8.546400px;}
._9{width:9.964800px;}
._a{width:11.174400px;}
._c{width:12.319200px;}
._1b{width:13.320000px;}
._11{width:14.328000px;}
._4{width:15.336000px;}
._7{width:16.488000px;}
._12{width:19.144800px;}
._14{width:20.167200px;}
._15{width:21.349980px;}
._b{width:22.723200px;}
._13{width:24.026400px;}
._1a{width:25.596000px;}
._1d{width:26.719200px;}
._1c{width:28.188000px;}
._10{width:32.976000px;}
._19{width:34.796940px;}
._16{width:38.887200px;}
._17{width:43.976580px;}
._18{width:75.523380px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs5{font-size:59.040000px;}
.fs3{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y67{bottom:45.375045px;}
.y6a{bottom:46.095045px;}
.y33{bottom:52.935045px;}
.y1{bottom:59.399970px;}
.y32{bottom:64.455045px;}
.y66{bottom:66.255030px;}
.y69{bottom:72.375045px;}
.y68{bottom:84.255030px;}
.y65{bottom:86.775030px;}
.y64{bottom:107.655030px;}
.y31{bottom:121.335030px;}
.y63{bottom:128.175030px;}
.y30{bottom:142.215030px;}
.y62{bottom:149.055030px;}
.y2f{bottom:162.735030px;}
.y61{bottom:169.575030px;}
.y2e{bottom:183.615030px;}
.y60{bottom:190.455030px;}
.y2d{bottom:204.135030px;}
.y5f{bottom:210.975030px;}
.y2c{bottom:225.015030px;}
.y5e{bottom:231.855030px;}
.y2b{bottom:245.535030px;}
.y5d{bottom:252.375030px;}
.y2a{bottom:266.415030px;}
.y5c{bottom:273.255030px;}
.y29{bottom:286.935030px;}
.y5b{bottom:293.775030px;}
.y8b{bottom:298.455030px;}
.y28{bottom:307.815030px;}
.y5a{bottom:314.655030px;}
.y8a{bottom:318.615030px;}
.y27{bottom:328.335030px;}
.y59{bottom:335.175030px;}
.y89{bottom:339.135030px;}
.y26{bottom:349.215030px;}
.y58{bottom:356.055030px;}
.y88{bottom:360.015030px;}
.y25{bottom:369.735030px;}
.y57{bottom:376.575030px;}
.y87{bottom:380.535030px;}
.y24{bottom:390.615030px;}
.y56{bottom:397.455030px;}
.y86{bottom:401.415030px;}
.y23{bottom:411.135030px;}
.y55{bottom:417.975030px;}
.y85{bottom:421.935030px;}
.y22{bottom:432.015030px;}
.y54{bottom:438.855030px;}
.y84{bottom:442.815030px;}
.y21{bottom:452.535030px;}
.y53{bottom:459.375030px;}
.y83{bottom:463.335030px;}
.y20{bottom:473.415030px;}
.y52{bottom:480.255030px;}
.y82{bottom:483.855030px;}
.y1f{bottom:493.935030px;}
.y51{bottom:500.775030px;}
.y81{bottom:506.175030px;}
.y1e{bottom:514.815030px;}
.y50{bottom:521.655030px;}
.y80{bottom:526.695030px;}
.y1d{bottom:535.335030px;}
.y4f{bottom:542.175030px;}
.y7f{bottom:548.655030px;}
.y1c{bottom:556.215030px;}
.y4e{bottom:563.055030px;}
.y7e{bottom:569.175030px;}
.y1b{bottom:576.735030px;}
.y4d{bottom:583.575030px;}
.y7d{bottom:591.495030px;}
.y1a{bottom:597.615030px;}
.y4c{bottom:604.455030px;}
.y7c{bottom:612.015030px;}
.y19{bottom:618.135030px;}
.y4b{bottom:624.975030px;}
.y7b{bottom:632.895030px;}
.y18{bottom:639.015030px;}
.y4a{bottom:645.855030px;}
.y7a{bottom:654.855030px;}
.y17{bottom:659.535030px;}
.y49{bottom:666.375030px;}
.y79{bottom:675.375030px;}
.y16{bottom:680.415030px;}
.y48{bottom:687.255030px;}
.y78{bottom:697.695030px;}
.y15{bottom:700.935030px;}
.y47{bottom:707.775030px;}
.y77{bottom:718.215030px;}
.y14{bottom:721.815030px;}
.y46{bottom:728.655030px;}
.y76{bottom:740.175030px;}
.y13{bottom:742.335030px;}
.y45{bottom:749.175030px;}
.y75{bottom:760.695030px;}
.y12{bottom:763.215030px;}
.y44{bottom:770.055030px;}
.y74{bottom:783.015030px;}
.y11{bottom:783.735030px;}
.y43{bottom:790.575030px;}
.y73{bottom:803.535030px;}
.y10{bottom:804.615030px;}
.y42{bottom:811.455030px;}
.yf{bottom:825.135030px;}
.y72{bottom:825.495030px;}
.y41{bottom:831.975030px;}
.ye{bottom:846.015030px;}
.y40{bottom:852.855030px;}
.yd{bottom:866.535030px;}
.y71{bottom:868.335030px;}
.y3f{bottom:873.375030px;}
.yc{bottom:887.415030px;}
.y70{bottom:888.855030px;}
.y3e{bottom:894.255030px;}
.yb{bottom:907.935030px;}
.y6f{bottom:911.175030px;}
.y3d{bottom:914.775030px;}
.ya{bottom:928.815030px;}
.y6e{bottom:931.695030px;}
.y3c{bottom:935.655030px;}
.y9{bottom:949.335030px;}
.y6d{bottom:953.655030px;}
.y3b{bottom:956.175030px;}
.y8{bottom:970.215030px;}
.y6c{bottom:975.615030px;}
.y3a{bottom:977.055030px;}
.y7{bottom:990.735030px;}
.y6b{bottom:996.135030px;}
.y39{bottom:997.575030px;}
.y6{bottom:1011.615030px;}
.y38{bottom:1018.455030px;}
.y5{bottom:1032.135030px;}
.y37{bottom:1038.975030px;}
.y4{bottom:1053.015030px;}
.y36{bottom:1059.855030px;}
.y3{bottom:1074.255030px;}
.y35{bottom:1080.375030px;}
.y2{bottom:1098.375030px;}
.y34{bottom:1101.255030px;}
.h7{height:27.014766px;}
.h9{height:41.022422px;}
.h6{height:43.189453px;}
.ha{height:49.992188px;}
.h3{height:50.027344px;}
.hb{height:50.765625px;}
.h4{height:63.949219px;}
.h8{height:66.138047px;}
.h2{height:74.181094px;}
.h5{height:75.326484px;}
.h1{height:1165.335000px;}
.h0{height:1263.000000px;}
.w1{width:866.700000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:12.900000px;}
.xb{left:73.079955px;}
.xc{left:100.079955px;}
.xa{left:115.605105px;}
.xd{left:121.304820px;}
.x4{left:127.079955px;}
.xe{left:148.304850px;}
.xf{left:175.304850px;}
.x10{left:202.304850px;}
.x3{left:203.806200px;}
.x7{left:212.244150px;}
.x6{left:309.647400px;}
.x2{left:461.092200px;}
.x8{left:530.970600px;}
.x5{left:708.984300px;}
.x9{left:796.005000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2a{letter-spacing:-0.102400pt;}
.ls29{letter-spacing:-0.089600pt;}
.ls2c{letter-spacing:-0.057600pt;}
.ls2b{letter-spacing:-0.044800pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000533pt;}
.ls2{letter-spacing:0.005760pt;}
.ls11{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.019200pt;}
.ls17{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.053173pt;}
.ls0{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.252416pt;}
.ls6{letter-spacing:0.282112pt;}
.ls26{letter-spacing:0.425088pt;}
.ls9{letter-spacing:0.482816pt;}
.ls25{letter-spacing:0.566784pt;}
.ls24{letter-spacing:0.624512pt;}
.ls1{letter-spacing:0.800000pt;}
.lsa{letter-spacing:3.471467pt;}
.ls1c{letter-spacing:5.395733pt;}
.ls23{letter-spacing:12.395733pt;}
.ls16{letter-spacing:12.426667pt;}
.ls28{letter-spacing:12.758933pt;}
.ls1b{letter-spacing:15.989333pt;}
.ls1e{letter-spacing:19.520533pt;}
.ls22{letter-spacing:19.582933pt;}
.lse{letter-spacing:22.077867pt;}
.ls20{letter-spacing:26.582933pt;}
.ls1f{letter-spacing:26.645867pt;}
.lsd{letter-spacing:27.007413pt;}
.ls12{letter-spacing:30.208000pt;}
.lsf{letter-spacing:30.208107pt;}
.ls10{letter-spacing:33.801600pt;}
.ls1a{letter-spacing:37.301867pt;}
.ls13{letter-spacing:40.864533pt;}
.ls19{letter-spacing:40.895467pt;}
.ls27{letter-spacing:43.082987pt;}
.ls15{letter-spacing:44.395733pt;}
.ls14{letter-spacing:44.426667pt;}
.ls21{letter-spacing:69.578133pt;}
.ws0{word-spacing:-18.842112pt;}
.ws6{word-spacing:-16.032000pt;}
.ws7{word-spacing:-16.019200pt;}
.ws5{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.987200pt;}
.ws9{word-spacing:-15.955200pt;}
.ws8{word-spacing:-0.064000pt;}
.ws3{word-spacing:-0.063360pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-8.934400pt;}
._e{margin-left:-4.467200pt;}
._f{margin-left:-0.944640pt;}
._3{width:1.139200pt;}
._8{width:2.092800pt;}
._1{width:3.558400pt;}
._6{width:4.465280pt;}
._5{width:5.414560pt;}
._2{width:6.521600pt;}
._0{width:7.596800pt;}
._9{width:8.857600pt;}
._a{width:9.932800pt;}
._c{width:10.950400pt;}
._1b{width:11.840000pt;}
._11{width:12.736000pt;}
._4{width:13.632000pt;}
._7{width:14.656000pt;}
._12{width:17.017600pt;}
._14{width:17.926400pt;}
._15{width:18.977760pt;}
._b{width:20.198400pt;}
._13{width:21.356800pt;}
._1a{width:22.752000pt;}
._1d{width:23.750400pt;}
._1c{width:25.056000pt;}
._10{width:29.312000pt;}
._19{width:30.930613pt;}
._16{width:34.566400pt;}
._17{width:39.090293pt;}
._18{width:67.131893pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:52.480000pt;}
.fs3{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:40.333373pt;}
.y6a{bottom:40.973373pt;}
.y33{bottom:47.053373pt;}
.y1{bottom:52.799973pt;}
.y32{bottom:57.293373pt;}
.y66{bottom:58.893360pt;}
.y69{bottom:64.333373pt;}
.y68{bottom:74.893360pt;}
.y65{bottom:77.133360pt;}
.y64{bottom:95.693360pt;}
.y31{bottom:107.853360pt;}
.y63{bottom:113.933360pt;}
.y30{bottom:126.413360pt;}
.y62{bottom:132.493360pt;}
.y2f{bottom:144.653360pt;}
.y61{bottom:150.733360pt;}
.y2e{bottom:163.213360pt;}
.y60{bottom:169.293360pt;}
.y2d{bottom:181.453360pt;}
.y5f{bottom:187.533360pt;}
.y2c{bottom:200.013360pt;}
.y5e{bottom:206.093360pt;}
.y2b{bottom:218.253360pt;}
.y5d{bottom:224.333360pt;}
.y2a{bottom:236.813360pt;}
.y5c{bottom:242.893360pt;}
.y29{bottom:255.053360pt;}
.y5b{bottom:261.133360pt;}
.y8b{bottom:265.293360pt;}
.y28{bottom:273.613360pt;}
.y5a{bottom:279.693360pt;}
.y8a{bottom:283.213360pt;}
.y27{bottom:291.853360pt;}
.y59{bottom:297.933360pt;}
.y89{bottom:301.453360pt;}
.y26{bottom:310.413360pt;}
.y58{bottom:316.493360pt;}
.y88{bottom:320.013360pt;}
.y25{bottom:328.653360pt;}
.y57{bottom:334.733360pt;}
.y87{bottom:338.253360pt;}
.y24{bottom:347.213360pt;}
.y56{bottom:353.293360pt;}
.y86{bottom:356.813360pt;}
.y23{bottom:365.453360pt;}
.y55{bottom:371.533360pt;}
.y85{bottom:375.053360pt;}
.y22{bottom:384.013360pt;}
.y54{bottom:390.093360pt;}
.y84{bottom:393.613360pt;}
.y21{bottom:402.253360pt;}
.y53{bottom:408.333360pt;}
.y83{bottom:411.853360pt;}
.y20{bottom:420.813360pt;}
.y52{bottom:426.893360pt;}
.y82{bottom:430.093360pt;}
.y1f{bottom:439.053360pt;}
.y51{bottom:445.133360pt;}
.y81{bottom:449.933360pt;}
.y1e{bottom:457.613360pt;}
.y50{bottom:463.693360pt;}
.y80{bottom:468.173360pt;}
.y1d{bottom:475.853360pt;}
.y4f{bottom:481.933360pt;}
.y7f{bottom:487.693360pt;}
.y1c{bottom:494.413360pt;}
.y4e{bottom:500.493360pt;}
.y7e{bottom:505.933360pt;}
.y1b{bottom:512.653360pt;}
.y4d{bottom:518.733360pt;}
.y7d{bottom:525.773360pt;}
.y1a{bottom:531.213360pt;}
.y4c{bottom:537.293360pt;}
.y7c{bottom:544.013360pt;}
.y19{bottom:549.453360pt;}
.y4b{bottom:555.533360pt;}
.y7b{bottom:562.573360pt;}
.y18{bottom:568.013360pt;}
.y4a{bottom:574.093360pt;}
.y7a{bottom:582.093360pt;}
.y17{bottom:586.253360pt;}
.y49{bottom:592.333360pt;}
.y79{bottom:600.333360pt;}
.y16{bottom:604.813360pt;}
.y48{bottom:610.893360pt;}
.y78{bottom:620.173360pt;}
.y15{bottom:623.053360pt;}
.y47{bottom:629.133360pt;}
.y77{bottom:638.413360pt;}
.y14{bottom:641.613360pt;}
.y46{bottom:647.693360pt;}
.y76{bottom:657.933360pt;}
.y13{bottom:659.853360pt;}
.y45{bottom:665.933360pt;}
.y75{bottom:676.173360pt;}
.y12{bottom:678.413360pt;}
.y44{bottom:684.493360pt;}
.y74{bottom:696.013360pt;}
.y11{bottom:696.653360pt;}
.y43{bottom:702.733360pt;}
.y73{bottom:714.253360pt;}
.y10{bottom:715.213360pt;}
.y42{bottom:721.293360pt;}
.yf{bottom:733.453360pt;}
.y72{bottom:733.773360pt;}
.y41{bottom:739.533360pt;}
.ye{bottom:752.013360pt;}
.y40{bottom:758.093360pt;}
.yd{bottom:770.253360pt;}
.y71{bottom:771.853360pt;}
.y3f{bottom:776.333360pt;}
.yc{bottom:788.813360pt;}
.y70{bottom:790.093360pt;}
.y3e{bottom:794.893360pt;}
.yb{bottom:807.053360pt;}
.y6f{bottom:809.933360pt;}
.y3d{bottom:813.133360pt;}
.ya{bottom:825.613360pt;}
.y6e{bottom:828.173360pt;}
.y3c{bottom:831.693360pt;}
.y9{bottom:843.853360pt;}
.y6d{bottom:847.693360pt;}
.y3b{bottom:849.933360pt;}
.y8{bottom:862.413360pt;}
.y6c{bottom:867.213360pt;}
.y3a{bottom:868.493360pt;}
.y7{bottom:880.653360pt;}
.y6b{bottom:885.453360pt;}
.y39{bottom:886.733360pt;}
.y6{bottom:899.213360pt;}
.y38{bottom:905.293360pt;}
.y5{bottom:917.453360pt;}
.y37{bottom:923.533360pt;}
.y4{bottom:936.013360pt;}
.y36{bottom:942.093360pt;}
.y3{bottom:954.893360pt;}
.y35{bottom:960.333360pt;}
.y2{bottom:976.333360pt;}
.y34{bottom:978.893360pt;}
.h7{height:24.013125pt;}
.h9{height:36.464375pt;}
.h6{height:38.390625pt;}
.ha{height:44.437500pt;}
.h3{height:44.468750pt;}
.hb{height:45.125000pt;}
.h4{height:56.843750pt;}
.h8{height:58.789375pt;}
.h2{height:65.938750pt;}
.h5{height:66.956875pt;}
.h1{height:1035.853333pt;}
.h0{height:1122.666667pt;}
.w1{width:770.400000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:11.466667pt;}
.xb{left:64.959960pt;}
.xc{left:88.959960pt;}
.xa{left:102.760093pt;}
.xd{left:107.826507pt;}
.x4{left:112.959960pt;}
.xe{left:131.826533pt;}
.xf{left:155.826533pt;}
.x10{left:179.826533pt;}
.x3{left:181.161067pt;}
.x7{left:188.661467pt;}
.x6{left:275.242133pt;}
.x2{left:409.859733pt;}
.x8{left:471.973867pt;}
.x5{left:630.208267pt;}
.x9{left:707.560000pt;}
}




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