
    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_41cc99cf9544991624cdd680.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972000;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_bd9a2910db25c39ab5d470bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_768597a6ae892ddcac39d2ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972000;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_6554f4851cbb45edbd1ccde5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_a4aba14c26a5bee8aafbee65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_f951b0e5613b322700854e6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972000;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_91e445e4a983f7536bf8eb60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972000;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_3c38204eeac348b991edcc7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968000;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_edf6674b62dfcc86edeb40ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.968000;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_bf90a3d775a5e7bf4eabb24f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e78adec1cd000d25f16d02d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972000;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_473fc3520bb0a53272c52438.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b3303d05c2fc5efd8f22cef3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.968000;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_a765bc7df013e1bcf99d137e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.972000;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:fff;src:url('chunks/assets/font_d7da51037f599969b63eb251.woff2')format("woff");}.fff{font-family:fff;line-height:0.907000;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:ff10;src:url('chunks/assets/font_1a8f224cc3acbdfc1d747fbc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.866000;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:ff11;src:url('chunks/assets/font_0f8b43178234741ec4c5f4bc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.956000;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:ff12;src:url('chunks/assets/font_0bd78cd1974fb52caa054881.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.968000;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:ff13;src:url('chunks/assets/font_b10b90556f0735f7d520524e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.766000;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);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:64.800000px;}
.v3{vertical-align:67.680000px;}
.ls19{letter-spacing:-0.345600px;}
.lsc{letter-spacing:-0.334800px;}
.ls6{letter-spacing:-0.307200px;}
.lsb{letter-spacing:-0.302400px;}
.ls27{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.256200px;}
.ls9{letter-spacing:-0.244800px;}
.ls11{letter-spacing:-0.211200px;}
.ls28{letter-spacing:-0.204000px;}
.ls18{letter-spacing:-0.183600px;}
.ls7{letter-spacing:-0.172800px;}
.ls14{letter-spacing:-0.171600px;}
.ls23{letter-spacing:-0.158400px;}
.ls15{letter-spacing:-0.140400px;}
.ls22{letter-spacing:-0.132000px;}
.ls3{letter-spacing:-0.115200px;}
.lse{letter-spacing:-0.097200px;}
.ls2b{letter-spacing:-0.084000px;}
.ls2e{letter-spacing:-0.081600px;}
.ls17{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.057600px;}
.ls1d{letter-spacing:-0.052800px;}
.ls2a{letter-spacing:-0.036000px;}
.ls32{letter-spacing:-0.019200px;}
.ls4{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.046800px;}
.ls13{letter-spacing:0.062400px;}
.ls0{letter-spacing:0.066019px;}
.lsf{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.079200px;}
.ls2f{letter-spacing:0.081600px;}
.lsa{letter-spacing:0.115200px;}
.ls10{letter-spacing:0.158400px;}
.ls2{letter-spacing:0.204000px;}
.ls1{letter-spacing:0.204060px;}
.ls1a{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.244800px;}
.ls1b{letter-spacing:0.248400px;}
.ls16{letter-spacing:0.259200px;}
.ls2c{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.326400px;}
.ls30{letter-spacing:0.353400px;}
.ls25{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.372019px;}
.ls2d{letter-spacing:65.999942px;}
.ls1c{letter-spacing:66.000002px;}
.ls21{letter-spacing:124.200000px;}
.ls20{letter-spacing:178.200000px;}
.ls1f{letter-spacing:178.200060px;}
.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;}
}
.wsb{word-spacing:-69.115187px;}
.wsc{word-spacing:-69.009587px;}
.ws15{word-spacing:-53.448013px;}
.ws17{word-spacing:-50.284787px;}
.ws0{word-spacing:-50.246387px;}
.ws16{word-spacing:-50.131187px;}
.ws8{word-spacing:-40.700387px;}
.ws1{word-spacing:-37.843200px;}
.wsd{word-spacing:-31.799999px;}
.ws12{word-spacing:-31.679999px;}
.ws11{word-spacing:-31.655999px;}
.wse{word-spacing:-31.439999px;}
.ws10{word-spacing:-31.235999px;}
.wsf{word-spacing:-31.175999px;}
.ws9{word-spacing:-28.296000px;}
.ws2{word-spacing:-27.993600px;}
.ws3{word-spacing:-27.961200px;}
.ws5{word-spacing:-9.334800px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:432.171600px;}
.ws14{word-spacing:469.545029px;}
.ws13{word-spacing:555.105021px;}
.ws6{word-spacing:912.617892px;}
.ws7{word-spacing:1210.619642px;}
._3{margin-left:-833.737860px;}
._2{margin-left:-1.072980px;}
._0{width:1.188000px;}
._8{width:526.905023px;}
._4{width:562.788000px;}
._6{width:608.886600px;}
._7{width:662.130000px;}
._9{width:687.223824px;}
._5{width:694.902600px;}
._1{width:3850.609140px;}
.fc3{color:rgb(0,115,229);}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:36.000000px;}
.fs2{font-size:42.000005px;}
.fs1{font-size:59.999990px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:119.999995px;}
.fs4{font-size:144.000000px;}
.fs7{font-size:155.999952px;}
.fsa{font-size:186.000048px;}
.fs3{font-size:191.999952px;}
.fs9{font-size:204.000048px;}
.fs6{font-size:263.999952px;}
.fsb{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:15.840015px;}
.y2{bottom:36.720000px;}
.y1{bottom:41.040000px;}
.y11{bottom:96.120015px;}
.y3e{bottom:101.520000px;}
.y12{bottom:104.039985px;}
.yd{bottom:104.040000px;}
.y15{bottom:104.399985px;}
.ya{bottom:104.400000px;}
.y16{bottom:120.240000px;}
.y1f{bottom:141.840000px;}
.y3d{bottom:142.200000px;}
.yf{bottom:176.400000px;}
.y1e{bottom:182.160000px;}
.y3c{bottom:184.320000px;}
.y2c{bottom:194.760000px;}
.y13{bottom:200.160000px;}
.y34{bottom:206.280000px;}
.y1d{bottom:224.280000px;}
.y25{bottom:225.000000px;}
.y6{bottom:225.360000px;}
.y2b{bottom:230.760000px;}
.y45{bottom:233.640000px;}
.y31{bottom:247.320000px;}
.y3b{bottom:253.440000px;}
.yc{bottom:256.680000px;}
.y24{bottom:261.000000px;}
.y5{bottom:261.360000px;}
.y30{bottom:279.000000px;}
.y10{bottom:280.440000px;}
.y1c{bottom:293.760000px;}
.y44{bottom:308.880000px;}
.y2a{bottom:326.880000px;}
.y9{bottom:336.600000px;}
.y23{bottom:356.760000px;}
.ye{bottom:360.720000px;}
.y3a{bottom:362.520000px;}
.y29{bottom:362.880000px;}
.y43{bottom:383.760000px;}
.y2f{bottom:389.880000px;}
.y46{bottom:404.280000px;}
.y39{bottom:404.640000px;}
.y33{bottom:407.160000px;}
.y1b{bottom:423.360000px;}
.y32{bottom:440.280000px;}
.yb{bottom:441.000000px;}
.y38{bottom:445.320000px;}
.y22{bottom:452.880000px;}
.y42{bottom:458.640000px;}
.y28{bottom:459.000000px;}
.y1a{bottom:463.680000px;}
.y2e{bottom:466.200000px;}
.y37{bottom:487.080000px;}
.y21{bottom:488.880000px;}
.y27{bottom:495.000000px;}
.y2d{bottom:499.320000px;}
.y4{bottom:503.640000px;}
.y19{bottom:505.800000px;}
.y8{bottom:518.040000px;}
.y3{bottom:560.880000px;}
.y41{bottom:564.480000px;}
.y36{bottom:565.200000px;}
.y18{bottom:585.360000px;}
.y20{bottom:586.440000px;}
.y26{bottom:590.760000px;}
.y17{bottom:612.000000px;}
.y7{bottom:694.800015px;}
.y35{bottom:707.040015px;}
.y40{bottom:709.920015px;}
.y3f{bottom:711.360015px;}
.h1{height:27.144000px;}
.h2{height:31.668004px;}
.h9{height:81.000000px;}
.h5{height:81.432000px;}
.hb{height:89.999996px;}
.ha{height:90.479996px;}
.h4{height:108.000000px;}
.he{height:108.576000px;}
.h7{height:116.999964px;}
.h10{height:139.500036px;}
.h3{height:144.767964px;}
.hf{height:153.000036px;}
.hd{height:155.279996px;}
.h6{height:199.055964px;}
.h11{height:216.000000px;}
.hc{height:222.959996px;}
.h8{height:227.160000px;}
.h0{height:810.000000px;}
.w1{width:231.840000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:14.790465px;}
.x4{left:28.017405px;}
.x3{left:30.114570px;}
.x1c{left:48.648660px;}
.x5{left:57.405465px;}
.xd{left:68.205465px;}
.x18{left:72.000000px;}
.xe{left:73.441530px;}
.x19{left:75.107130px;}
.x1a{left:77.136735px;}
.xf{left:86.303850px;}
.x1b{left:95.331375px;}
.x16{left:96.937500px;}
.x15{left:103.267500px;}
.x10{left:111.405480px;}
.x6{left:124.507560px;}
.x1{left:145.573815px;}
.x2{left:148.808850px;}
.xb{left:331.224450px;}
.xa{left:352.130700px;}
.x9{left:354.568200px;}
.xc{left:364.693200px;}
.x8{left:369.193200px;}
.x11{left:529.078950px;}
.x12{left:583.078950px;}
.x17{left:914.695950px;}
.x13{left:1000.752450px;}
.x14{left:1041.252450px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:57.600000pt;}
.v3{vertical-align:60.160000pt;}
.ls19{letter-spacing:-0.307200pt;}
.lsc{letter-spacing:-0.297600pt;}
.ls6{letter-spacing:-0.273067pt;}
.lsb{letter-spacing:-0.268800pt;}
.ls27{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.227733pt;}
.ls9{letter-spacing:-0.217600pt;}
.ls11{letter-spacing:-0.187733pt;}
.ls28{letter-spacing:-0.181333pt;}
.ls18{letter-spacing:-0.163200pt;}
.ls7{letter-spacing:-0.153600pt;}
.ls14{letter-spacing:-0.152533pt;}
.ls23{letter-spacing:-0.140800pt;}
.ls15{letter-spacing:-0.124800pt;}
.ls22{letter-spacing:-0.117333pt;}
.ls3{letter-spacing:-0.102400pt;}
.lse{letter-spacing:-0.086400pt;}
.ls2b{letter-spacing:-0.074667pt;}
.ls2e{letter-spacing:-0.072533pt;}
.ls17{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051200pt;}
.ls1d{letter-spacing:-0.046933pt;}
.ls2a{letter-spacing:-0.032000pt;}
.ls32{letter-spacing:-0.017067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.041600pt;}
.ls13{letter-spacing:0.055467pt;}
.ls0{letter-spacing:0.058684pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.070400pt;}
.ls2f{letter-spacing:0.072533pt;}
.lsa{letter-spacing:0.102400pt;}
.ls10{letter-spacing:0.140800pt;}
.ls2{letter-spacing:0.181333pt;}
.ls1{letter-spacing:0.181387pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.217600pt;}
.ls1b{letter-spacing:0.220800pt;}
.ls16{letter-spacing:0.230400pt;}
.ls2c{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.290133pt;}
.ls30{letter-spacing:0.314133pt;}
.ls25{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.330684pt;}
.ls2d{letter-spacing:58.666615pt;}
.ls1c{letter-spacing:58.666668pt;}
.ls21{letter-spacing:110.400000pt;}
.ls20{letter-spacing:158.400000pt;}
.ls1f{letter-spacing:158.400053pt;}
.wsb{word-spacing:-61.435722pt;}
.wsc{word-spacing:-61.341856pt;}
.ws15{word-spacing:-47.509345pt;}
.ws17{word-spacing:-44.697589pt;}
.ws0{word-spacing:-44.663456pt;}
.ws16{word-spacing:-44.561056pt;}
.ws8{word-spacing:-36.178122pt;}
.ws1{word-spacing:-33.638400pt;}
.wsd{word-spacing:-28.266666pt;}
.ws12{word-spacing:-28.159999pt;}
.ws11{word-spacing:-28.138666pt;}
.wse{word-spacing:-27.946666pt;}
.ws10{word-spacing:-27.765332pt;}
.wsf{word-spacing:-27.711999pt;}
.ws9{word-spacing:-25.152000pt;}
.ws2{word-spacing:-24.883200pt;}
.ws3{word-spacing:-24.854400pt;}
.ws5{word-spacing:-8.297600pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:384.152533pt;}
.ws14{word-spacing:417.373359pt;}
.ws13{word-spacing:493.426685pt;}
.ws6{word-spacing:811.215904pt;}
.ws7{word-spacing:1076.106349pt;}
._3{margin-left:-741.100320pt;}
._2{margin-left:-0.953760pt;}
._0{width:1.056000pt;}
._8{width:468.360021pt;}
._4{width:500.256000pt;}
._6{width:541.232533pt;}
._7{width:588.560000pt;}
._9{width:610.865622pt;}
._5{width:617.691200pt;}
._1{width:3422.763680pt;}
.fs0{font-size:32.000000pt;}
.fs2{font-size:37.333338pt;}
.fs1{font-size:53.333325pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:106.666662pt;}
.fs4{font-size:128.000000pt;}
.fs7{font-size:138.666624pt;}
.fsa{font-size:165.333376pt;}
.fs3{font-size:170.666624pt;}
.fs9{font-size:181.333376pt;}
.fs6{font-size:234.666624pt;}
.fsb{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:14.080013pt;}
.y2{bottom:32.640000pt;}
.y1{bottom:36.480000pt;}
.y11{bottom:85.440013pt;}
.y3e{bottom:90.240000pt;}
.y12{bottom:92.479987pt;}
.yd{bottom:92.480000pt;}
.y15{bottom:92.799987pt;}
.ya{bottom:92.800000pt;}
.y16{bottom:106.880000pt;}
.y1f{bottom:126.080000pt;}
.y3d{bottom:126.400000pt;}
.yf{bottom:156.800000pt;}
.y1e{bottom:161.920000pt;}
.y3c{bottom:163.840000pt;}
.y2c{bottom:173.120000pt;}
.y13{bottom:177.920000pt;}
.y34{bottom:183.360000pt;}
.y1d{bottom:199.360000pt;}
.y25{bottom:200.000000pt;}
.y6{bottom:200.320000pt;}
.y2b{bottom:205.120000pt;}
.y45{bottom:207.680000pt;}
.y31{bottom:219.840000pt;}
.y3b{bottom:225.280000pt;}
.yc{bottom:228.160000pt;}
.y24{bottom:232.000000pt;}
.y5{bottom:232.320000pt;}
.y30{bottom:248.000000pt;}
.y10{bottom:249.280000pt;}
.y1c{bottom:261.120000pt;}
.y44{bottom:274.560000pt;}
.y2a{bottom:290.560000pt;}
.y9{bottom:299.200000pt;}
.y23{bottom:317.120000pt;}
.ye{bottom:320.640000pt;}
.y3a{bottom:322.240000pt;}
.y29{bottom:322.560000pt;}
.y43{bottom:341.120000pt;}
.y2f{bottom:346.560000pt;}
.y46{bottom:359.360000pt;}
.y39{bottom:359.680000pt;}
.y33{bottom:361.920000pt;}
.y1b{bottom:376.320000pt;}
.y32{bottom:391.360000pt;}
.yb{bottom:392.000000pt;}
.y38{bottom:395.840000pt;}
.y22{bottom:402.560000pt;}
.y42{bottom:407.680000pt;}
.y28{bottom:408.000000pt;}
.y1a{bottom:412.160000pt;}
.y2e{bottom:414.400000pt;}
.y37{bottom:432.960000pt;}
.y21{bottom:434.560000pt;}
.y27{bottom:440.000000pt;}
.y2d{bottom:443.840000pt;}
.y4{bottom:447.680000pt;}
.y19{bottom:449.600000pt;}
.y8{bottom:460.480000pt;}
.y3{bottom:498.560000pt;}
.y41{bottom:501.760000pt;}
.y36{bottom:502.400000pt;}
.y18{bottom:520.320000pt;}
.y20{bottom:521.280000pt;}
.y26{bottom:525.120000pt;}
.y17{bottom:544.000000pt;}
.y7{bottom:617.600013pt;}
.y35{bottom:628.480013pt;}
.y40{bottom:631.040013pt;}
.y3f{bottom:632.320013pt;}
.h1{height:24.128000pt;}
.h2{height:28.149337pt;}
.h9{height:72.000000pt;}
.h5{height:72.384000pt;}
.hb{height:79.999997pt;}
.ha{height:80.426663pt;}
.h4{height:96.000000pt;}
.he{height:96.512000pt;}
.h7{height:103.999968pt;}
.h10{height:124.000032pt;}
.h3{height:128.682634pt;}
.hf{height:136.000032pt;}
.hd{height:138.026663pt;}
.h6{height:176.938634pt;}
.h11{height:192.000000pt;}
.hc{height:198.186663pt;}
.h8{height:201.920000pt;}
.h0{height:720.000000pt;}
.w1{width:206.080000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:13.147080pt;}
.x4{left:24.904360pt;}
.x3{left:26.768507pt;}
.x1c{left:43.243253pt;}
.x5{left:51.027080pt;}
.xd{left:60.627080pt;}
.x18{left:64.000000pt;}
.xe{left:65.281360pt;}
.x19{left:66.761893pt;}
.x1a{left:68.565987pt;}
.xf{left:76.714533pt;}
.x1b{left:84.739000pt;}
.x16{left:86.166667pt;}
.x15{left:91.793333pt;}
.x10{left:99.027093pt;}
.x6{left:110.673387pt;}
.x1{left:129.398947pt;}
.x2{left:132.274533pt;}
.xb{left:294.421733pt;}
.xa{left:313.005067pt;}
.x9{left:315.171733pt;}
.xc{left:324.171733pt;}
.x8{left:328.171733pt;}
.x11{left:470.292400pt;}
.x12{left:518.292400pt;}
.x17{left:813.063067pt;}
.x13{left:889.557733pt;}
.x14{left:925.557733pt;}
}




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