
    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_307155c4a8dc0778f1ef69d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_60b58fa310cfdef20ab249ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_edba4ec300a8e956bf0a11f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149000;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_c53ab09248261b4ea60e0326.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_3f185c2a88ca4652ae664c05.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149000;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_2cc95fe2f71d6613cd67fa2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_2cc95fe2f71d6613cd67fa2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005000;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_3f701c9f366161e5642f8dd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.775000;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_fea0b93a5de6140c14244623.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_597bb3ca8c400d40d3bfad6c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.155000;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_ed347b3041652eaac57e3b83.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;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_3afacab2d34437470a74d598.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011000;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_bad1c150b84340578d023ffd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.010000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000162px;}
.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;}
}
.ws4{word-spacing:-32.760000px;}
.ws2{word-spacing:-14.040000px;}
.ws5{word-spacing:-10.920000px;}
.ws1{word-spacing:-8.185320px;}
.ws3{word-spacing:-0.324000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-10.932000px;}
._5{margin-left:-6.300000px;}
._3{margin-left:-4.854600px;}
._0{margin-left:-3.000000px;}
._1{margin-left:-1.200000px;}
._2{width:1.614600px;}
._7{width:44.183400px;}
._6{width:67.662000px;}
.fc3{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(28,55,116);}
.fs7{font-size:31.482000px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:126.000000px;}
.fs0{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:53.703150px;}
.y1a{bottom:82.169250px;}
.y6a{bottom:166.634550px;}
.y43{bottom:166.634700px;}
.y79{bottom:171.130200px;}
.ydf{bottom:181.177350px;}
.y69{bottom:185.534550px;}
.y42{bottom:185.534700px;}
.yac{bottom:186.958950px;}
.yde{bottom:202.203300px;}
.y68{bottom:204.434550px;}
.y41{bottom:204.434700px;}
.yab{bottom:205.858950px;}
.ydd{bottom:221.103300px;}
.y67{bottom:223.334550px;}
.y40{bottom:223.334700px;}
.yaa{bottom:224.758950px;}
.ydc{bottom:242.129250px;}
.y44{bottom:242.234550px;}
.ye1{bottom:242.234700px;}
.ya9{bottom:245.784900px;}
.ydb{bottom:261.029250px;}
.y66{bottom:261.134550px;}
.y19{bottom:261.134700px;}
.ya8{bottom:264.685050px;}
.y78{bottom:265.630200px;}
.y65{bottom:280.034550px;}
.y18{bottom:280.034700px;}
.yda{bottom:282.055350px;}
.ya7{bottom:283.584900px;}
.y17{bottom:298.934550px;}
.y3b{bottom:298.934700px;}
.yd9{bottom:300.955200px;}
.ya6{bottom:302.484900px;}
.y64{bottom:317.834550px;}
.y16{bottom:317.834700px;}
.yd8{bottom:321.981300px;}
.y77{bottom:322.330200px;}
.ya5{bottom:323.511000px;}
.y3a{bottom:336.734550px;}
.y15{bottom:336.734700px;}
.yd7{bottom:340.881300px;}
.ya4{bottom:342.411000px;}
.y63{bottom:355.634550px;}
.y14{bottom:355.634700px;}
.yd6{bottom:359.781300px;}
.ya3{bottom:361.311000px;}
.y62{bottom:374.534550px;}
.y39{bottom:374.534700px;}
.ya2{bottom:380.210850px;}
.yd5{bottom:380.807250px;}
.y13{bottom:393.434550px;}
.y38{bottom:393.434700px;}
.yd4{bottom:399.707250px;}
.ya1{bottom:401.236950px;}
.y6e{bottom:407.839050px;}
.y61{bottom:412.334550px;}
.y12{bottom:412.334700px;}
.y6f{bottom:416.830050px;}
.y76{bottom:416.830200px;}
.yd3{bottom:418.607250px;}
.ya0{bottom:420.136950px;}
.y11{bottom:431.234550px;}
.y37{bottom:431.234700px;}
.y75{bottom:435.730200px;}
.y9f{bottom:439.036950px;}
.yd2{bottom:439.633200px;}
.y60{bottom:450.134550px;}
.y10{bottom:450.134700px;}
.yd1{bottom:458.533200px;}
.y9e{bottom:460.062900px;}
.y6d{bottom:469.034550px;}
.yf{bottom:469.034700px;}
.yf0{bottom:477.433200px;}
.y9d{bottom:478.962900px;}
.yd0{bottom:479.559150px;}
.y6c{bottom:483.439050px;}
.y5f{bottom:487.934550px;}
.ye{bottom:487.934700px;}
.yef{bottom:496.333200px;}
.y9c{bottom:497.862900px;}
.ycf{bottom:498.459150px;}
.y5e{bottom:506.834550px;}
.y36{bottom:506.834700px;}
.yce{bottom:517.359150px;}
.y9b{bottom:518.888850px;}
.yd{bottom:525.734550px;}
.y35{bottom:525.734700px;}
.yee{bottom:536.259150px;}
.y9a{bottom:537.788850px;}
.ycd{bottom:538.385250px;}
.y5d{bottom:544.634550px;}
.yc{bottom:544.634700px;}
.ycc{bottom:557.285250px;}
.y99{bottom:558.814800px;}
.y7d{bottom:559.039200px;}
.y5c{bottom:563.534550px;}
.yb{bottom:563.534700px;}
.yed{bottom:576.185100px;}
.y98{bottom:577.714800px;}
.ycb{bottom:578.311200px;}
.y5b{bottom:582.434550px;}
.ya{bottom:582.434700px;}
.yec{bottom:595.085100px;}
.y97{bottom:596.614950px;}
.yca{bottom:597.211200px;}
.y5a{bottom:601.334550px;}
.y34{bottom:601.334700px;}
.yc9{bottom:616.111200px;}
.y96{bottom:617.640900px;}
.y9{bottom:620.234550px;}
.y33{bottom:620.234700px;}
.yeb{bottom:635.011200px;}
.y95{bottom:636.540900px;}
.yc8{bottom:637.137150px;}
.y59{bottom:639.134550px;}
.y32{bottom:639.134700px;}
.yc7{bottom:656.037150px;}
.y94{bottom:657.566850px;}
.y58{bottom:658.034550px;}
.y31{bottom:658.034700px;}
.yc6{bottom:674.937150px;}
.y93{bottom:676.466850px;}
.y57{bottom:676.934550px;}
.y30{bottom:676.934700px;}
.y7a{bottom:682.334700px;}
.yea{bottom:693.837150px;}
.y92{bottom:695.366850px;}
.y56{bottom:695.834550px;}
.y2f{bottom:695.834700px;}
.yc5{bottom:695.963100px;}
.y8{bottom:710.234550px;}
.ye9{bottom:712.737150px;}
.y91{bottom:714.266850px;}
.y55{bottom:714.734550px;}
.y2e{bottom:714.734700px;}
.yc4{bottom:714.863100px;}
.y7{bottom:729.134550px;}
.y54{bottom:733.634550px;}
.y2d{bottom:733.634700px;}
.yc3{bottom:733.763100px;}
.y90{bottom:735.292800px;}
.y6{bottom:748.034550px;}
.y53{bottom:752.534550px;}
.y2c{bottom:752.534700px;}
.ye8{bottom:752.663100px;}
.y8f{bottom:754.192800px;}
.yc2{bottom:754.789050px;}
.y5{bottom:771.434550px;}
.y2b{bottom:771.434700px;}
.ye7{bottom:771.563100px;}
.yc1{bottom:773.689050px;}
.y8e{bottom:775.218900px;}
.y52{bottom:790.334400px;}
.y72{bottom:790.334550px;}
.y3c{bottom:790.334700px;}
.ye6{bottom:790.463250px;}
.yc0{bottom:792.589050px;}
.y8d{bottom:794.118750px;}
.y2a{bottom:809.234550px;}
.ye0{bottom:809.234700px;}
.ye5{bottom:811.489050px;}
.ybf{bottom:813.615000px;}
.y8c{bottom:815.144850px;}
.y51{bottom:828.134550px;}
.y29{bottom:828.134700px;}
.ye4{bottom:830.389200px;}
.ybe{bottom:832.515150px;}
.y8b{bottom:834.044850px;}
.y4{bottom:835.334700px;}
.y50{bottom:847.034550px;}
.y28{bottom:847.034700px;}
.ybd{bottom:851.415000px;}
.y8a{bottom:852.944850px;}
.y4f{bottom:865.934550px;}
.y27{bottom:865.934700px;}
.ye3{bottom:870.315150px;}
.ybc{bottom:872.441100px;}
.y89{bottom:873.970800px;}
.y3{bottom:883.334700px;}
.y4e{bottom:884.834550px;}
.y26{bottom:884.834700px;}
.ybb{bottom:891.341100px;}
.y88{bottom:892.870800px;}
.y25{bottom:903.734550px;}
.y7c{bottom:903.734700px;}
.yba{bottom:910.241100px;}
.y87{bottom:911.770800px;}
.y4d{bottom:922.634550px;}
.y24{bottom:922.634700px;}
.ye2{bottom:929.141100px;}
.y86{bottom:930.670800px;}
.yb9{bottom:931.267050px;}
.y2{bottom:931.334700px;}
.y4c{bottom:941.534550px;}
.y23{bottom:941.534700px;}
.yb8{bottom:950.167050px;}
.y85{bottom:951.696750px;}
.y4b{bottom:960.434550px;}
.y22{bottom:960.434700px;}
.yb7{bottom:969.067050px;}
.y84{bottom:970.596750px;}
.y4a{bottom:979.334550px;}
.y1{bottom:979.334700px;}
.yb6{bottom:987.967050px;}
.y83{bottom:991.622700px;}
.y3f{bottom:998.234550px;}
.y21{bottom:998.234700px;}
.yb5{bottom:1008.993000px;}
.y82{bottom:1012.648800px;}
.y49{bottom:1017.134550px;}
.y20{bottom:1017.134700px;}
.yb4{bottom:1027.893000px;}
.y81{bottom:1031.548800px;}
.y48{bottom:1036.034550px;}
.y1f{bottom:1036.034700px;}
.yb3{bottom:1046.793150px;}
.y80{bottom:1050.448800px;}
.y6b{bottom:1054.934550px;}
.y3e{bottom:1054.934700px;}
.y1e{bottom:1054.934850px;}
.yb2{bottom:1067.818950px;}
.y7f{bottom:1071.474750px;}
.y47{bottom:1073.834550px;}
.y1d{bottom:1073.834700px;}
.yb1{bottom:1086.719100px;}
.y7e{bottom:1090.374900px;}
.y3d{bottom:1092.734550px;}
.y7b{bottom:1092.734700px;}
.yb0{bottom:1105.618950px;}
.y46{bottom:1111.634550px;}
.y74{bottom:1111.634700px;}
.yaf{bottom:1126.645050px;}
.y71{bottom:1130.534550px;}
.y1c{bottom:1130.534700px;}
.yae{bottom:1145.545050px;}
.y45{bottom:1149.434550px;}
.y73{bottom:1149.434700px;}
.yad{bottom:1166.571000px;}
.y70{bottom:1168.334550px;}
.hc{height:28.617138px;}
.hf{height:28.806030px;}
.h7{height:32.130000px;}
.h12{height:32.298000px;}
.h11{height:32.382000px;}
.hd{height:38.178000px;}
.h10{height:41.580000px;}
.h5{height:45.900000px;}
.h4{height:49.086000px;}
.he{height:49.410000px;}
.ha{height:51.240000px;}
.h9{height:52.785000px;}
.h3{height:55.368000px;}
.hb{height:58.926000px;}
.h6{height:82.620000px;}
.h8{height:96.390000px;}
.h2{height:114.750000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x20{left:-340.157550px;}
.x0{left:0.000000px;}
.x3{left:42.923700px;}
.x8{left:43.936950px;}
.x9{left:51.023550px;}
.x2d{left:68.031450px;}
.x33{left:76.535400px;}
.x2e{left:85.039350px;}
.x1{left:197.716500px;}
.x5{left:246.614100px;}
.x23{left:263.622000px;}
.x31{left:272.125950px;}
.x10{left:274.158600px;}
.x24{left:280.629900px;}
.x11{left:293.332950px;}
.x2f{left:302.511750px;}
.x1a{left:311.347650px;}
.x1b{left:314.047650px;}
.x4{left:345.666750px;}
.xa{left:357.165300px;}
.x2b{left:395.398800px;}
.x18{left:417.622200px;}
.x19{left:420.322200px;}
.x16{left:444.439800px;}
.x17{left:453.062850px;}
.x26{left:469.472850px;}
.x29{left:479.302500px;}
.x14{left:481.628700px;}
.x1c{left:490.149900px;}
.x12{left:493.654050px;}
.x30{left:496.090950px;}
.x15{left:500.803050px;}
.x13{left:502.277100px;}
.x6{left:552.755850px;}
.x27{left:579.227850px;}
.x28{left:583.539450px;}
.x2a{left:642.783300px;}
.x25{left:656.370900px;}
.x21{left:682.239000px;}
.xb{left:702.318600px;}
.xc{left:706.630200px;}
.xd{left:724.677000px;}
.xe{left:728.988450px;}
.xf{left:732.295950px;}
.x22{left:735.493950px;}
.x2{left:745.959150px;}
.x2c{left:774.963300px;}
.x32{left:821.611050px;}
.x7{left:837.054750px;}
.x1d{left:943.936950px;}
.x1e{left:1575.152550px;}
.x1f{left:1628.407500px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000144pt;}
.ws4{word-spacing:-29.120000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws5{word-spacing:-9.706667pt;}
.ws1{word-spacing:-7.275840pt;}
.ws3{word-spacing:-0.288000pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-9.717333pt;}
._5{margin-left:-5.600000pt;}
._3{margin-left:-4.315200pt;}
._0{margin-left:-2.666667pt;}
._1{margin-left:-1.066667pt;}
._2{width:1.435200pt;}
._7{width:39.274133pt;}
._6{width:60.144000pt;}
.fs7{font-size:27.984000pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:112.000000pt;}
.fs0{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:47.736133pt;}
.y1a{bottom:73.039333pt;}
.y6a{bottom:148.119600pt;}
.y43{bottom:148.119733pt;}
.y79{bottom:152.115733pt;}
.ydf{bottom:161.046533pt;}
.y69{bottom:164.919600pt;}
.y42{bottom:164.919733pt;}
.yac{bottom:166.185733pt;}
.yde{bottom:179.736267pt;}
.y68{bottom:181.719600pt;}
.y41{bottom:181.719733pt;}
.yab{bottom:182.985733pt;}
.ydd{bottom:196.536267pt;}
.y67{bottom:198.519600pt;}
.y40{bottom:198.519733pt;}
.yaa{bottom:199.785733pt;}
.ydc{bottom:215.226000pt;}
.y44{bottom:215.319600pt;}
.ye1{bottom:215.319733pt;}
.ya9{bottom:218.475467pt;}
.ydb{bottom:232.026000pt;}
.y66{bottom:232.119600pt;}
.y19{bottom:232.119733pt;}
.ya8{bottom:235.275600pt;}
.y78{bottom:236.115733pt;}
.y65{bottom:248.919600pt;}
.y18{bottom:248.919733pt;}
.yda{bottom:250.715867pt;}
.ya7{bottom:252.075467pt;}
.y17{bottom:265.719600pt;}
.y3b{bottom:265.719733pt;}
.yd9{bottom:267.515733pt;}
.ya6{bottom:268.875467pt;}
.y64{bottom:282.519600pt;}
.y16{bottom:282.519733pt;}
.yd8{bottom:286.205600pt;}
.y77{bottom:286.515733pt;}
.ya5{bottom:287.565333pt;}
.y3a{bottom:299.319600pt;}
.y15{bottom:299.319733pt;}
.yd7{bottom:303.005600pt;}
.ya4{bottom:304.365333pt;}
.y63{bottom:316.119600pt;}
.y14{bottom:316.119733pt;}
.yd6{bottom:319.805600pt;}
.ya3{bottom:321.165333pt;}
.y62{bottom:332.919600pt;}
.y39{bottom:332.919733pt;}
.ya2{bottom:337.965200pt;}
.yd5{bottom:338.495333pt;}
.y13{bottom:349.719600pt;}
.y38{bottom:349.719733pt;}
.yd4{bottom:355.295333pt;}
.ya1{bottom:356.655067pt;}
.y6e{bottom:362.523600pt;}
.y61{bottom:366.519600pt;}
.y12{bottom:366.519733pt;}
.y6f{bottom:370.515600pt;}
.y76{bottom:370.515733pt;}
.yd3{bottom:372.095333pt;}
.ya0{bottom:373.455067pt;}
.y11{bottom:383.319600pt;}
.y37{bottom:383.319733pt;}
.y75{bottom:387.315733pt;}
.y9f{bottom:390.255067pt;}
.yd2{bottom:390.785067pt;}
.y60{bottom:400.119600pt;}
.y10{bottom:400.119733pt;}
.yd1{bottom:407.585067pt;}
.y9e{bottom:408.944800pt;}
.y6d{bottom:416.919600pt;}
.yf{bottom:416.919733pt;}
.yf0{bottom:424.385067pt;}
.y9d{bottom:425.744800pt;}
.yd0{bottom:426.274800pt;}
.y6c{bottom:429.723600pt;}
.y5f{bottom:433.719600pt;}
.ye{bottom:433.719733pt;}
.yef{bottom:441.185067pt;}
.y9c{bottom:442.544800pt;}
.ycf{bottom:443.074800pt;}
.y5e{bottom:450.519600pt;}
.y36{bottom:450.519733pt;}
.yce{bottom:459.874800pt;}
.y9b{bottom:461.234533pt;}
.yd{bottom:467.319600pt;}
.y35{bottom:467.319733pt;}
.yee{bottom:476.674800pt;}
.y9a{bottom:478.034533pt;}
.ycd{bottom:478.564667pt;}
.y5d{bottom:484.119600pt;}
.yc{bottom:484.119733pt;}
.ycc{bottom:495.364667pt;}
.y99{bottom:496.724267pt;}
.y7d{bottom:496.923733pt;}
.y5c{bottom:500.919600pt;}
.yb{bottom:500.919733pt;}
.yed{bottom:512.164533pt;}
.y98{bottom:513.524267pt;}
.ycb{bottom:514.054400pt;}
.y5b{bottom:517.719600pt;}
.ya{bottom:517.719733pt;}
.yec{bottom:528.964533pt;}
.y97{bottom:530.324400pt;}
.yca{bottom:530.854400pt;}
.y5a{bottom:534.519600pt;}
.y34{bottom:534.519733pt;}
.yc9{bottom:547.654400pt;}
.y96{bottom:549.014133pt;}
.y9{bottom:551.319600pt;}
.y33{bottom:551.319733pt;}
.yeb{bottom:564.454400pt;}
.y95{bottom:565.814133pt;}
.yc8{bottom:566.344133pt;}
.y59{bottom:568.119600pt;}
.y32{bottom:568.119733pt;}
.yc7{bottom:583.144133pt;}
.y94{bottom:584.503867pt;}
.y58{bottom:584.919600pt;}
.y31{bottom:584.919733pt;}
.yc6{bottom:599.944133pt;}
.y93{bottom:601.303867pt;}
.y57{bottom:601.719600pt;}
.y30{bottom:601.719733pt;}
.y7a{bottom:606.519733pt;}
.yea{bottom:616.744133pt;}
.y92{bottom:618.103867pt;}
.y56{bottom:618.519600pt;}
.y2f{bottom:618.519733pt;}
.yc5{bottom:618.633867pt;}
.y8{bottom:631.319600pt;}
.ye9{bottom:633.544133pt;}
.y91{bottom:634.903867pt;}
.y55{bottom:635.319600pt;}
.y2e{bottom:635.319733pt;}
.yc4{bottom:635.433867pt;}
.y7{bottom:648.119600pt;}
.y54{bottom:652.119600pt;}
.y2d{bottom:652.119733pt;}
.yc3{bottom:652.233867pt;}
.y90{bottom:653.593600pt;}
.y6{bottom:664.919600pt;}
.y53{bottom:668.919600pt;}
.y2c{bottom:668.919733pt;}
.ye8{bottom:669.033867pt;}
.y8f{bottom:670.393600pt;}
.yc2{bottom:670.923600pt;}
.y5{bottom:685.719600pt;}
.y2b{bottom:685.719733pt;}
.ye7{bottom:685.833867pt;}
.yc1{bottom:687.723600pt;}
.y8e{bottom:689.083467pt;}
.y52{bottom:702.519467pt;}
.y72{bottom:702.519600pt;}
.y3c{bottom:702.519733pt;}
.ye6{bottom:702.634000pt;}
.yc0{bottom:704.523600pt;}
.y8d{bottom:705.883333pt;}
.y2a{bottom:719.319600pt;}
.ye0{bottom:719.319733pt;}
.ye5{bottom:721.323600pt;}
.ybf{bottom:723.213333pt;}
.y8c{bottom:724.573200pt;}
.y51{bottom:736.119600pt;}
.y29{bottom:736.119733pt;}
.ye4{bottom:738.123733pt;}
.ybe{bottom:740.013467pt;}
.y8b{bottom:741.373200pt;}
.y4{bottom:742.519733pt;}
.y50{bottom:752.919600pt;}
.y28{bottom:752.919733pt;}
.ybd{bottom:756.813333pt;}
.y8a{bottom:758.173200pt;}
.y4f{bottom:769.719600pt;}
.y27{bottom:769.719733pt;}
.ye3{bottom:773.613467pt;}
.ybc{bottom:775.503200pt;}
.y89{bottom:776.862933pt;}
.y3{bottom:785.186400pt;}
.y4e{bottom:786.519600pt;}
.y26{bottom:786.519733pt;}
.ybb{bottom:792.303200pt;}
.y88{bottom:793.662933pt;}
.y25{bottom:803.319600pt;}
.y7c{bottom:803.319733pt;}
.yba{bottom:809.103200pt;}
.y87{bottom:810.462933pt;}
.y4d{bottom:820.119600pt;}
.y24{bottom:820.119733pt;}
.ye2{bottom:825.903200pt;}
.y86{bottom:827.262933pt;}
.yb9{bottom:827.792933pt;}
.y2{bottom:827.853067pt;}
.y4c{bottom:836.919600pt;}
.y23{bottom:836.919733pt;}
.yb8{bottom:844.592933pt;}
.y85{bottom:845.952667pt;}
.y4b{bottom:853.719600pt;}
.y22{bottom:853.719733pt;}
.yb7{bottom:861.392933pt;}
.y84{bottom:862.752667pt;}
.y4a{bottom:870.519600pt;}
.y1{bottom:870.519733pt;}
.yb6{bottom:878.192933pt;}
.y83{bottom:881.442400pt;}
.y3f{bottom:887.319600pt;}
.y21{bottom:887.319733pt;}
.yb5{bottom:896.882667pt;}
.y82{bottom:900.132267pt;}
.y49{bottom:904.119600pt;}
.y20{bottom:904.119733pt;}
.yb4{bottom:913.682667pt;}
.y81{bottom:916.932267pt;}
.y48{bottom:920.919600pt;}
.y1f{bottom:920.919733pt;}
.yb3{bottom:930.482800pt;}
.y80{bottom:933.732267pt;}
.y6b{bottom:937.719600pt;}
.y3e{bottom:937.719733pt;}
.y1e{bottom:937.719867pt;}
.yb2{bottom:949.172400pt;}
.y7f{bottom:952.422000pt;}
.y47{bottom:954.519600pt;}
.y1d{bottom:954.519733pt;}
.yb1{bottom:965.972533pt;}
.y7e{bottom:969.222133pt;}
.y3d{bottom:971.319600pt;}
.y7b{bottom:971.319733pt;}
.yb0{bottom:982.772400pt;}
.y46{bottom:988.119600pt;}
.y74{bottom:988.119733pt;}
.yaf{bottom:1001.462267pt;}
.y71{bottom:1004.919600pt;}
.y1c{bottom:1004.919733pt;}
.yae{bottom:1018.262267pt;}
.y45{bottom:1021.719600pt;}
.y73{bottom:1021.719733pt;}
.yad{bottom:1036.952000pt;}
.y70{bottom:1038.519600pt;}
.hc{height:25.437456pt;}
.hf{height:25.605360pt;}
.h7{height:28.560000pt;}
.h12{height:28.709333pt;}
.h11{height:28.784000pt;}
.hd{height:33.936000pt;}
.h10{height:36.960000pt;}
.h5{height:40.800000pt;}
.h4{height:43.632000pt;}
.he{height:43.920000pt;}
.ha{height:45.546667pt;}
.h9{height:46.920000pt;}
.h3{height:49.216000pt;}
.hb{height:52.378667pt;}
.h6{height:73.440000pt;}
.h8{height:85.680000pt;}
.h2{height:102.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x20{left:-302.362267pt;}
.x0{left:0.000000pt;}
.x3{left:38.154400pt;}
.x8{left:39.055067pt;}
.x9{left:45.354267pt;}
.x2d{left:60.472400pt;}
.x33{left:68.031467pt;}
.x2e{left:75.590533pt;}
.x1{left:175.748000pt;}
.x5{left:219.212533pt;}
.x23{left:234.330667pt;}
.x31{left:241.889733pt;}
.x10{left:243.696533pt;}
.x24{left:249.448800pt;}
.x11{left:260.740400pt;}
.x2f{left:268.899333pt;}
.x1a{left:276.753467pt;}
.x1b{left:279.153467pt;}
.x4{left:307.259333pt;}
.xa{left:317.480267pt;}
.x2b{left:351.465600pt;}
.x18{left:371.219733pt;}
.x19{left:373.619733pt;}
.x16{left:395.057600pt;}
.x17{left:402.722533pt;}
.x26{left:417.309200pt;}
.x29{left:426.046667pt;}
.x14{left:428.114400pt;}
.x1c{left:435.688800pt;}
.x12{left:438.803600pt;}
.x30{left:440.969733pt;}
.x15{left:445.158267pt;}
.x13{left:446.468533pt;}
.x6{left:491.338533pt;}
.x27{left:514.869200pt;}
.x28{left:518.701733pt;}
.x2a{left:571.362933pt;}
.x25{left:583.440800pt;}
.x21{left:606.434667pt;}
.xb{left:624.283200pt;}
.xc{left:628.115733pt;}
.xd{left:644.157333pt;}
.xe{left:647.989733pt;}
.xf{left:650.929733pt;}
.x22{left:653.772400pt;}
.x2{left:663.074800pt;}
.x2c{left:688.856267pt;}
.x32{left:730.320933pt;}
.x7{left:744.048667pt;}
.x1d{left:839.055067pt;}
.x1e{left:1400.135600pt;}
.x1f{left:1447.473333pt;}
}




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