
    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_e5bd783226a8e0d08e6fc953.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941778;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_059ec26ec769fcb7b9281b11.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065333;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_d2bc47b929b8c0c6a1bafa93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908444;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_aa8094ce7ca07c3f2d0eb71d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941778;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_b9e6931b32a13c741ac30047.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908444;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_6313325f20a46e0f9f4d4d9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941778;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_1c360a78ce731262313793c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_878b8882bcefe7f563deacd4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_20937fc29a16b4da9097cfe1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_37046038f5dc478ac24f3636.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_84cd2a4193e8a2749ab9f158.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-20.879992px;}
.v1{vertical-align:-5.756398px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.879992px;}
.ls13{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.396000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.063867px;}
.lsc{letter-spacing:0.149766px;}
.lsf{letter-spacing:0.151874px;}
.ls0{letter-spacing:0.158400px;}
.lsd{letter-spacing:0.179970px;}
.ls9{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.490974px;}
.ls4{letter-spacing:0.806367px;}
.lsb{letter-spacing:1.688365px;}
.ls6{letter-spacing:5.967323px;}
.ls8{letter-spacing:6.008363px;}
.ls7{letter-spacing:11.768361px;}
.ls15{letter-spacing:16.808359px;}
.ls11{letter-spacing:28.943988px;}
.lse{letter-spacing:30.383988px;}
.ls10{letter-spacing:31.103988px;}
.ls12{letter-spacing:32.543987px;}
.lsa{letter-spacing:39.743984px;}
.ls16{letter-spacing:845.391262px;}
.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;}
}
.ws12{word-spacing:-37.587009px;}
.wsd{word-spacing:-37.511985px;}
.ws10{word-spacing:-32.348212px;}
.ws4{word-spacing:-32.270452px;}
.wsf{word-spacing:-27.000049px;}
.ws11{word-spacing:-26.127350px;}
.wsc{word-spacing:-26.049654px;}
.ws5{word-spacing:-20.995192px;}
.ws2{word-spacing:-20.519992px;}
.wse{word-spacing:-19.439992px;}
.wsa{word-spacing:-17.671708px;}
.ws3{word-spacing:-17.629228px;}
.ws9{word-spacing:-17.072667px;}
.ws6{word-spacing:-17.031627px;}
.ws0{word-spacing:-15.714028px;}
.wsb{word-spacing:-15.588028px;}
.ws1{word-spacing:-15.390028px;}
.ws8{word-spacing:-14.994028px;}
.ws13{word-spacing:-14.670028px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-12.686180px;}
._21{margin-left:-5.542761px;}
._4{margin-left:-4.466470px;}
._2{margin-left:-3.453839px;}
._3{margin-left:-2.174065px;}
._0{margin-left:-1.027618px;}
._1{width:1.114187px;}
._8{width:2.289993px;}
._5{width:3.445977px;}
._12{width:4.700117px;}
._d{width:5.985811px;}
._f{width:7.109461px;}
._e{width:8.338119px;}
._c{width:9.506561px;}
._b{width:10.925833px;}
._a{width:12.435243px;}
._9{width:13.685483px;}
._17{width:15.205438px;}
._16{width:16.302310px;}
._7{width:18.285192px;}
._6{width:19.425187px;}
._13{width:20.620279px;}
._18{width:21.772844px;}
._11{width:23.842014px;}
._10{width:24.952501px;}
._19{width:26.830419px;}
._1a{width:28.515326px;}
._20{width:29.852829px;}
._29{width:31.151211px;}
._23{width:35.242397px;}
._24{width:36.246610px;}
._1f{width:38.402422px;}
._28{width:41.527522px;}
._26{width:50.497413px;}
._25{width:56.719130px;}
._1e{width:57.737900px;}
._14{width:86.187940px;}
._22{width:224.370012px;}
._1d{width:226.530011px;}
._15{width:227.970011px;}
._1b{width:232.290009px;}
._27{width:233.730008px;}
.fc2{color:rgb(32,33,34);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs7{font-size:48.240101px;}
.fs8{font-size:48.383981px;}
.fs0{font-size:54.000098px;}
.fs2{font-size:59.760096px;}
.fs6{font-size:59.904096px;}
.fs3{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs9{font-size:72.143971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.600382px;}
.yf{bottom:22.320375px;}
.ye{bottom:41.040367px;}
.y3{bottom:56.374477px;}
.y25{bottom:57.635977px;}
.yd{bottom:59.940360px;}
.y2{bottom:73.294471px;}
.yc{bottom:78.705352px;}
.yb{bottom:97.425345px;}
.y4d{bottom:109.476556px;}
.y24{bottom:112.537005px;}
.y9{bottom:118.229736px;}
.y79{bottom:120.276402px;}
.y6c{bottom:120.276852px;}
.y48{bottom:120.277152px;}
.y44{bottom:124.597150px;}
.y4c{bottom:124.956550px;}
.y23{bottom:134.136996px;}
.y6b{bottom:141.876093px;}
.y78{bottom:141.876393px;}
.y7f{bottom:141.876993px;}
.y47{bottom:141.877143px;}
.y4b{bottom:146.196542px;}
.y43{bottom:146.197142px;}
.y22{bottom:155.729938px;}
.y4a{bottom:159.149936px;}
.y6a{bottom:163.289035px;}
.y77{bottom:163.289335px;}
.y7e{bottom:163.289935px;}
.y46{bottom:163.290085px;}
.y42{bottom:167.610083px;}
.y21{bottom:177.329929px;}
.y69{bottom:184.889026px;}
.y76{bottom:184.889326px;}
.y7d{bottom:184.889926px;}
.y45{bottom:186.150076px;}
.y49{bottom:189.209924px;}
.y41{bottom:189.210074px;}
.y20{bottom:198.749921px;}
.y68{bottom:206.489017px;}
.y75{bottom:206.489317px;}
.y7c{bottom:206.489917px;}
.y40{bottom:210.810066px;}
.y1f{bottom:220.349912px;}
.y67{bottom:228.089009px;}
.y74{bottom:228.089309px;}
.y7b{bottom:228.089909px;}
.y3f{bottom:232.410057px;}
.y1e{bottom:241.994903px;}
.y66{bottom:249.734000px;}
.y73{bottom:249.734300px;}
.y7a{bottom:250.994900px;}
.y3e{bottom:254.055048px;}
.y1d{bottom:263.596395px;}
.y65{bottom:271.333991px;}
.y72{bottom:271.334291px;}
.y3d{bottom:275.475040px;}
.y1c{bottom:285.195636px;}
.y64{bottom:292.753983px;}
.y71{bottom:292.754283px;}
.y3c{bottom:297.075031px;}
.y1b{bottom:306.794877px;}
.y63{bottom:314.353974px;}
.y70{bottom:314.354274px;}
.y3b{bottom:318.676373px;}
.y1a{bottom:328.214869px;}
.y62{bottom:335.953966px;}
.y6f{bottom:335.954266px;}
.y3a{bottom:340.276364px;}
.y19{bottom:349.814860px;}
.y61{bottom:357.553957px;}
.y6e{bottom:358.814256px;}
.y39{bottom:361.876355px;}
.y18{bottom:371.413951px;}
.y60{bottom:379.153948px;}
.y38{bottom:383.476347px;}
.y17{bottom:393.013943px;}
.y5f{bottom:400.573940px;}
.y81{bottom:404.714838px;}
.y37{bottom:404.896338px;}
.y16{bottom:414.613934px;}
.y5e{bottom:422.173931px;}
.y36{bottom:426.524829px;}
.y15{bottom:436.064826px;}
.y5d{bottom:443.804822px;}
.y35{bottom:448.124821px;}
.y14{bottom:457.664817px;}
.y5c{bottom:465.404814px;}
.y34{bottom:469.724812px;}
.y13{bottom:478.904808px;}
.y5b{bottom:487.004805px;}
.y33{bottom:491.324803px;}
.y12{bottom:503.204799px;}
.y5a{bottom:508.424797px;}
.y32{bottom:512.744795px;}
.y11{bottom:524.984790px;}
.y59{bottom:530.024788px;}
.y6d{bottom:531.284787px;}
.y31{bottom:534.344786px;}
.ya{bottom:541.184400px;}
.y8{bottom:541.260000px;}
.y58{bottom:551.624779px;}
.y30{bottom:555.944778px;}
.y57{bottom:573.224771px;}
.y2f{bottom:577.544769px;}
.y56{bottom:594.824762px;}
.y2e{bottom:599.144760px;}
.y55{bottom:616.469753px;}
.y2d{bottom:620.609752px;}
.y54{bottom:637.889745px;}
.y80{bottom:639.149744px;}
.y2c{bottom:642.209743px;}
.y53{bottom:659.489736px;}
.y2b{bottom:663.809734px;}
.y7{bottom:680.549728px;}
.y52{bottom:681.089728px;}
.y2a{bottom:685.409726px;}
.y6{bottom:702.329719px;}
.y51{bottom:702.689719px;}
.y29{bottom:707.009717px;}
.y5{bottom:722.849711px;}
.y50{bottom:724.289710px;}
.y28{bottom:728.609709px;}
.y4f{bottom:745.709702px;}
.y4{bottom:747.509701px;}
.y27{bottom:750.029700px;}
.y4e{bottom:768.569693px;}
.y26{bottom:771.629691px;}
.y1{bottom:826.379669px;}
.h10{height:26.995770px;}
.h11{height:37.494209px;}
.h7{height:40.384752px;}
.h12{height:41.493582px;}
.h4{height:43.160069px;}
.h5{height:44.149201px;}
.h2{height:45.672083px;}
.h9{height:47.988262px;}
.hb{height:50.543761px;}
.hc{height:50.547361px;}
.he{height:50.665553px;}
.ha{height:51.999979px;}
.h13{height:52.103979px;}
.hd{height:53.757818px;}
.hf{height:53.763218px;}
.h14{height:56.024298px;}
.h3{height:60.839976px;}
.h6{height:132.300000px;}
.h8{height:132.335820px;}
.h0{height:892.979700px;}
.h1{height:893.250000px;}
.w2{width:415.080000px;}
.w3{width:415.184400px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x5{left:7.776554px;}
.x4{left:106.416557px;}
.x6{left:127.657149px;}
.x3{left:163.826934px;}
.x2{left:188.171925px;}
.x7{left:212.654915px;}
.x1{left:508.109797px;}
@media print{
.v3{vertical-align:-18.559993pt;}
.v1{vertical-align:-5.116798pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.559993pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.352000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.056771pt;}
.lsc{letter-spacing:0.133125pt;}
.lsf{letter-spacing:0.134999pt;}
.ls0{letter-spacing:0.140800pt;}
.lsd{letter-spacing:0.159973pt;}
.ls9{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.436422pt;}
.ls4{letter-spacing:0.716770pt;}
.lsb{letter-spacing:1.500769pt;}
.ls6{letter-spacing:5.304287pt;}
.ls8{letter-spacing:5.340767pt;}
.ls7{letter-spacing:10.460765pt;}
.ls15{letter-spacing:14.940764pt;}
.ls11{letter-spacing:25.727990pt;}
.lse{letter-spacing:27.007989pt;}
.ls10{letter-spacing:27.647989pt;}
.ls12{letter-spacing:28.927988pt;}
.lsa{letter-spacing:35.327986pt;}
.ls16{letter-spacing:751.458899pt;}
.ws12{word-spacing:-33.410675pt;}
.wsd{word-spacing:-33.343987pt;}
.ws10{word-spacing:-28.753966pt;}
.ws4{word-spacing:-28.684846pt;}
.wsf{word-spacing:-24.000044pt;}
.ws11{word-spacing:-23.224311pt;}
.wsc{word-spacing:-23.155248pt;}
.ws5{word-spacing:-18.662393pt;}
.ws2{word-spacing:-18.239993pt;}
.wse{word-spacing:-17.279993pt;}
.wsa{word-spacing:-15.708185pt;}
.ws3{word-spacing:-15.670425pt;}
.ws9{word-spacing:-15.175704pt;}
.ws6{word-spacing:-15.139224pt;}
.ws0{word-spacing:-13.968025pt;}
.wsb{word-spacing:-13.856025pt;}
.ws1{word-spacing:-13.680025pt;}
.ws8{word-spacing:-13.328025pt;}
.ws13{word-spacing:-13.040025pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-11.276605pt;}
._21{margin-left:-4.926899pt;}
._4{margin-left:-3.970196pt;}
._2{margin-left:-3.070079pt;}
._3{margin-left:-1.932502pt;}
._0{margin-left:-0.913438pt;}
._1{width:0.990388pt;}
._8{width:2.035549pt;}
._5{width:3.063091pt;}
._12{width:4.177882pt;}
._d{width:5.320721pt;}
._f{width:6.319521pt;}
._e{width:7.411661pt;}
._c{width:8.450277pt;}
._b{width:9.711852pt;}
._a{width:11.053549pt;}
._9{width:12.164874pt;}
._17{width:13.515945pt;}
._16{width:14.490942pt;}
._7{width:16.253504pt;}
._6{width:17.266833pt;}
._13{width:18.329137pt;}
._18{width:19.353639pt;}
._11{width:21.192901pt;}
._10{width:22.180000pt;}
._19{width:23.849262pt;}
._1a{width:25.346956pt;}
._20{width:26.535848pt;}
._29{width:27.689965pt;}
._23{width:31.326575pt;}
._24{width:32.219209pt;}
._1f{width:34.135486pt;}
._28{width:36.913353pt;}
._26{width:44.886589pt;}
._25{width:50.417005pt;}
._1e{width:51.322578pt;}
._14{width:76.611503pt;}
._22{width:199.440011pt;}
._1d{width:201.360010pt;}
._15{width:202.640009pt;}
._1b{width:206.480008pt;}
._27{width:207.760007pt;}
.fs5{font-size:34.559986pt;}
.fs7{font-size:42.880090pt;}
.fs8{font-size:43.007983pt;}
.fs0{font-size:48.000087pt;}
.fs2{font-size:53.120085pt;}
.fs6{font-size:53.248085pt;}
.fs3{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs9{font-size:64.127974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:3.200340pt;}
.yf{bottom:19.840333pt;}
.ye{bottom:36.480326pt;}
.y3{bottom:50.110647pt;}
.y25{bottom:51.231980pt;}
.yd{bottom:53.280320pt;}
.y2{bottom:65.150641pt;}
.yc{bottom:69.960313pt;}
.yb{bottom:86.600306pt;}
.y4d{bottom:97.312494pt;}
.y24{bottom:100.032893pt;}
.y9{bottom:105.093099pt;}
.y79{bottom:106.912357pt;}
.y6c{bottom:106.912757pt;}
.y48{bottom:106.913024pt;}
.y44{bottom:110.753022pt;}
.y4c{bottom:111.072489pt;}
.y23{bottom:119.232886pt;}
.y6b{bottom:126.112083pt;}
.y78{bottom:126.112350pt;}
.y7f{bottom:126.112883pt;}
.y47{bottom:126.113016pt;}
.y4b{bottom:129.952481pt;}
.y43{bottom:129.953015pt;}
.y22{bottom:138.426611pt;}
.y4a{bottom:141.466610pt;}
.y6a{bottom:145.145809pt;}
.y77{bottom:145.146075pt;}
.y7e{bottom:145.146609pt;}
.y46{bottom:145.146742pt;}
.y42{bottom:148.986740pt;}
.y21{bottom:157.626604pt;}
.y69{bottom:164.345801pt;}
.y76{bottom:164.346068pt;}
.y7d{bottom:164.346601pt;}
.y45{bottom:165.466734pt;}
.y49{bottom:168.186599pt;}
.y41{bottom:168.186733pt;}
.y20{bottom:176.666596pt;}
.y68{bottom:183.545793pt;}
.y75{bottom:183.546060pt;}
.y7c{bottom:183.546593pt;}
.y40{bottom:187.386725pt;}
.y1f{bottom:195.866588pt;}
.y67{bottom:202.745786pt;}
.y74{bottom:202.746052pt;}
.y7b{bottom:202.746586pt;}
.y3f{bottom:206.586717pt;}
.y1e{bottom:215.106581pt;}
.y66{bottom:221.985778pt;}
.y73{bottom:221.986045pt;}
.y7a{bottom:223.106577pt;}
.y3e{bottom:225.826710pt;}
.y1d{bottom:234.307906pt;}
.y65{bottom:241.185770pt;}
.y72{bottom:241.186037pt;}
.y3d{bottom:244.866702pt;}
.y1c{bottom:253.507232pt;}
.y64{bottom:260.225763pt;}
.y71{bottom:260.226029pt;}
.y3c{bottom:264.066694pt;}
.y1b{bottom:272.706558pt;}
.y63{bottom:279.425755pt;}
.y70{bottom:279.426022pt;}
.y3b{bottom:283.267887pt;}
.y1a{bottom:291.746550pt;}
.y62{bottom:298.625747pt;}
.y6f{bottom:298.626014pt;}
.y3a{bottom:302.467879pt;}
.y19{bottom:310.946542pt;}
.y61{bottom:317.825740pt;}
.y6e{bottom:318.946006pt;}
.y39{bottom:321.667871pt;}
.y18{bottom:330.145735pt;}
.y60{bottom:337.025732pt;}
.y38{bottom:340.867864pt;}
.y17{bottom:349.345727pt;}
.y5f{bottom:356.065724pt;}
.y81{bottom:359.746523pt;}
.y37{bottom:359.907856pt;}
.y16{bottom:368.545719pt;}
.y5e{bottom:375.265717pt;}
.y36{bottom:379.133182pt;}
.y15{bottom:387.613178pt;}
.y5d{bottom:394.493176pt;}
.y35{bottom:398.333174pt;}
.y14{bottom:406.813171pt;}
.y5c{bottom:413.693168pt;}
.y34{bottom:417.533166pt;}
.y13{bottom:425.693163pt;}
.y5b{bottom:432.893160pt;}
.y33{bottom:436.733159pt;}
.y12{bottom:447.293154pt;}
.y5a{bottom:451.933153pt;}
.y32{bottom:455.773151pt;}
.y11{bottom:466.653147pt;}
.y59{bottom:471.133145pt;}
.y6d{bottom:472.253144pt;}
.y31{bottom:474.973143pt;}
.ya{bottom:481.052800pt;}
.y8{bottom:481.120000pt;}
.y58{bottom:490.333137pt;}
.y30{bottom:494.173136pt;}
.y57{bottom:509.533130pt;}
.y2f{bottom:513.373128pt;}
.y56{bottom:528.733122pt;}
.y2e{bottom:532.573120pt;}
.y55{bottom:547.973114pt;}
.y2d{bottom:551.653113pt;}
.y54{bottom:567.013107pt;}
.y80{bottom:568.133106pt;}
.y2c{bottom:570.853105pt;}
.y53{bottom:586.213099pt;}
.y2b{bottom:590.053097pt;}
.y7{bottom:604.933091pt;}
.y52{bottom:605.413091pt;}
.y2a{bottom:609.253090pt;}
.y6{bottom:624.293084pt;}
.y51{bottom:624.613083pt;}
.y29{bottom:628.453082pt;}
.y5{bottom:642.533076pt;}
.y50{bottom:643.813076pt;}
.y28{bottom:647.653074pt;}
.y4f{bottom:662.853068pt;}
.y4{bottom:664.453068pt;}
.y27{bottom:666.693067pt;}
.y4e{bottom:683.173060pt;}
.y26{bottom:685.893059pt;}
.y1{bottom:734.559706pt;}
.h10{height:23.996240pt;}
.h11{height:33.328186pt;}
.h7{height:35.897558pt;}
.h12{height:36.883184pt;}
.h4{height:38.364506pt;}
.h5{height:39.243734pt;}
.h2{height:40.597407pt;}
.h9{height:42.656233pt;}
.hb{height:44.927788pt;}
.hc{height:44.930988pt;}
.he{height:45.036047pt;}
.ha{height:46.222204pt;}
.h13{height:46.314648pt;}
.hd{height:47.784728pt;}
.hf{height:47.789528pt;}
.h14{height:49.799376pt;}
.h3{height:54.079978pt;}
.h6{height:117.600000pt;}
.h8{height:117.631840pt;}
.h0{height:793.759733pt;}
.h1{height:794.000000pt;}
.w2{width:368.960000pt;}
.w3{width:369.052800pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x5{left:6.912492pt;}
.x4{left:94.592495pt;}
.x6{left:113.473021pt;}
.x3{left:145.623942pt;}
.x2{left:167.263933pt;}
.x7{left:189.026591pt;}
.x1{left:451.653153pt;}
}




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