
    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_2962d3d75b99e24c5b769568.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_aba4465df9f4ab12300a9ccb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.696000;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_6249a82d1847357b42bcc3f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_d0cb0953790c6067a7aa9f58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.590000;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_0a0bba1ea0ef27bbe2a97c6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207000;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_46a3964e134a2a4a11c1f654.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.807000;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_7938303fb02f3c2a2ed6f6d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_57199b4f9ce265bf893f3963.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.066000;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(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-13.057200px;}
.ls9{letter-spacing:-1.176000px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.955200px;}
.ls7{letter-spacing:13.977600px;}
.ls4{letter-spacing:14.160000px;}
.ls1{letter-spacing:15.204000px;}
.ls6{letter-spacing:16.464000px;}
.ls0{letter-spacing:17.436000px;}
.ls3{letter-spacing:20.214000px;}
.ls5{letter-spacing:30.528000px;}
.ls2{letter-spacing:32.130000px;}
.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;}
}
.ws4a{word-spacing:-15.012000px;}
.ws5c{word-spacing:-12.955200px;}
.ws60{word-spacing:-12.000000px;}
.ws10{word-spacing:-1.806000px;}
.wse{word-spacing:-1.692000px;}
.ws6f{word-spacing:-1.430400px;}
.ws5d{word-spacing:-1.296000px;}
.ws25{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.852000px;}
.ws28{word-spacing:-0.840000px;}
.ws24{word-spacing:-0.804000px;}
.ws3a{word-spacing:-0.546000px;}
.ws16{word-spacing:-0.342000px;}
.ws5e{word-spacing:-0.340800px;}
.ws14{word-spacing:-0.060000px;}
.ws72{word-spacing:-0.054000px;}
.ws4e{word-spacing:-0.042000px;}
.ws4f{word-spacing:0.000000px;}
.ws65{word-spacing:0.014400px;}
.ws53{word-spacing:0.150000px;}
.ws1f{word-spacing:0.204000px;}
.ws2e{word-spacing:0.444000px;}
.ws5a{word-spacing:0.782400px;}
.ws2f{word-spacing:0.852000px;}
.ws44{word-spacing:0.972000px;}
.ws69{word-spacing:1.041600px;}
.ws42{word-spacing:1.326000px;}
.ws2b{word-spacing:1.464000px;}
.ws67{word-spacing:1.689600px;}
.wsc{word-spacing:1.824000px;}
.ws46{word-spacing:1.872000px;}
.ws2c{word-spacing:1.908000px;}
.ws50{word-spacing:2.316000px;}
.ws1e{word-spacing:2.436000px;}
.ws45{word-spacing:2.520000px;}
.ws8{word-spacing:2.538000px;}
.ws71{word-spacing:2.692800px;}
.ws59{word-spacing:2.860800px;}
.ws55{word-spacing:3.288000px;}
.ws61{word-spacing:3.307200px;}
.ws57{word-spacing:3.628800px;}
.ws52{word-spacing:3.630000px;}
.ws6c{word-spacing:3.969600px;}
.wsa{word-spacing:3.990000px;}
.ws1a{word-spacing:4.548000px;}
.ws17{word-spacing:4.602000px;}
.ws58{word-spacing:4.603200px;}
.ws5{word-spacing:4.704000px;}
.ws68{word-spacing:4.756800px;}
.wsf{word-spacing:4.974000px;}
.ws3{word-spacing:5.130000px;}
.ws6{word-spacing:5.148000px;}
.wsb{word-spacing:5.166000px;}
.ws27{word-spacing:5.214000px;}
.ws1b{word-spacing:5.370000px;}
.ws4{word-spacing:5.418000px;}
.ws39{word-spacing:5.592000px;}
.ws2d{word-spacing:5.658000px;}
.ws7{word-spacing:5.724000px;}
.ws3d{word-spacing:5.760000px;}
.ws66{word-spacing:5.846400px;}
.ws19{word-spacing:5.862000px;}
.ws2{word-spacing:5.964000px;}
.ws30{word-spacing:6.000000px;}
.ws26{word-spacing:6.222000px;}
.ws47{word-spacing:6.306000px;}
.ws3c{word-spacing:6.342000px;}
.ws35{word-spacing:6.372000px;}
.ws32{word-spacing:6.576000px;}
.ws6b{word-spacing:6.681600px;}
.ws21{word-spacing:6.750000px;}
.ws3e{word-spacing:6.798000px;}
.ws6a{word-spacing:6.816000px;}
.ws70{word-spacing:6.888000px;}
.ws11{word-spacing:7.002000px;}
.ws3b{word-spacing:7.038000px;}
.ws33{word-spacing:7.296000px;}
.ws6d{word-spacing:7.584000px;}
.ws6e{word-spacing:7.924800px;}
.ws38{word-spacing:8.010000px;}
.ws56{word-spacing:8.011200px;}
.ws36{word-spacing:8.028000px;}
.ws5b{word-spacing:8.587200px;}
.ws5f{word-spacing:8.899200px;}
.ws23{word-spacing:9.510000px;}
.ws9{word-spacing:9.564000px;}
.ws64{word-spacing:9.936000px;}
.ws63{word-spacing:10.536000px;}
.ws3f{word-spacing:10.890000px;}
.ws54{word-spacing:11.102400px;}
.ws20{word-spacing:11.352000px;}
.ws41{word-spacing:11.436000px;}
.ws1c{word-spacing:11.538000px;}
.ws37{word-spacing:11.622000px;}
.ws1d{word-spacing:12.372000px;}
.ws43{word-spacing:12.576000px;}
.ws62{word-spacing:12.614400px;}
.wsd{word-spacing:12.732000px;}
.ws4c{word-spacing:13.935600px;}
.ws12{word-spacing:14.370000px;}
.ws15{word-spacing:14.706000px;}
.ws2a{word-spacing:15.528000px;}
.ws40{word-spacing:16.002000px;}
.ws18{word-spacing:16.224000px;}
.ws13{word-spacing:16.344000px;}
.ws22{word-spacing:17.130000px;}
.ws51{word-spacing:17.808000px;}
.ws48{word-spacing:17.911800px;}
.ws34{word-spacing:18.000000px;}
.ws31{word-spacing:18.234000px;}
.ws1{word-spacing:19.914000px;}
.ws0{word-spacing:23.896800px;}
.ws49{word-spacing:293.463000px;}
.ws4b{word-spacing:327.801600px;}
.ws4d{word-spacing:2075.650800px;}
._14{margin-left:-2916.023400px;}
._f{margin-left:-2736.111000px;}
._0{margin-left:-5.382000px;}
._13{margin-left:-4.310400px;}
._11{width:5.745600px;}
._1{width:53.989200px;}
._10{width:58.089600px;}
._12{width:60.000000px;}
._2{width:279.298800px;}
._3{width:298.360800px;}
._a{width:327.866400px;}
._9{width:446.331600px;}
._6{width:465.642000px;}
._5{width:595.409400px;}
._4{width:598.924800px;}
._d{width:629.764200px;}
._b{width:633.258000px;}
._7{width:740.388600px;}
._c{width:774.716400px;}
._8{width:798.233400px;}
._e{width:832.561200px;}
._15{width:1560.417600px;}
.fc1{color:rgb(0,0,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:86.825250px;}
.y51{bottom:113.826900px;}
.y50{bottom:128.826750px;}
.y4f{bottom:143.826600px;}
.y4e{bottom:158.826450px;}
.y4d{bottom:173.826300px;}
.y4c{bottom:188.826150px;}
.y4b{bottom:203.826000px;}
.y4a{bottom:218.825850px;}
.y49{bottom:233.825700px;}
.y48{bottom:248.825550px;}
.y47{bottom:272.075250px;}
.y46{bottom:301.325250px;}
.y2c{bottom:367.325550px;}
.y2b{bottom:385.325550px;}
.y2a{bottom:403.325550px;}
.y29{bottom:421.325550px;}
.y45{bottom:439.321050px;}
.y28{bottom:439.325550px;}
.y44{bottom:445.700250px;}
.y27{bottom:457.325550px;}
.y26{bottom:475.325550px;}
.y25{bottom:493.325550px;}
.y24{bottom:511.325550px;}
.y43{bottom:529.321050px;}
.y41{bottom:529.325250px;}
.y23{bottom:529.325550px;}
.y42{bottom:535.700250px;}
.y40{bottom:547.325250px;}
.y22{bottom:547.325550px;}
.y3f{bottom:565.325250px;}
.y21{bottom:565.325550px;}
.y3e{bottom:583.325250px;}
.y20{bottom:583.325550px;}
.y1f{bottom:601.321050px;}
.y3d{bottom:601.325250px;}
.y1d{bottom:601.325550px;}
.y1e{bottom:607.700250px;}
.y86{bottom:613.330950px;}
.y3c{bottom:619.325250px;}
.y1c{bottom:619.325550px;}
.y68{bottom:622.325250px;}
.y85{bottom:628.501350px;}
.y3b{bottom:637.325250px;}
.y1b{bottom:637.325550px;}
.y84{bottom:643.671750px;}
.y67{bottom:652.325250px;}
.y1a{bottom:655.325550px;}
.y83{bottom:658.842150px;}
.y3a{bottom:661.700250px;}
.y19{bottom:673.325550px;}
.y82{bottom:674.012550px;}
.y66{bottom:674.829150px;}
.y81{bottom:689.182950px;}
.y18{bottom:691.325550px;}
.y65{bottom:691.328850px;}
.y80{bottom:704.353350px;}
.y64{bottom:707.828550px;}
.y17{bottom:709.325550px;}
.y7f{bottom:719.523750px;}
.y63{bottom:724.328250px;}
.y16{bottom:727.325550px;}
.y7e{bottom:734.694150px;}
.y62{bottom:740.827950px;}
.y15{bottom:745.325550px;}
.y7d{bottom:749.864550px;}
.y61{bottom:757.327650px;}
.y14{bottom:763.325550px;}
.y7c{bottom:765.034950px;}
.y7b{bottom:780.205350px;}
.y13{bottom:781.321050px;}
.y11{bottom:781.325550px;}
.y60{bottom:784.327650px;}
.y12{bottom:787.700250px;}
.y7a{bottom:795.392550px;}
.y10{bottom:799.325550px;}
.y5f{bottom:800.827350px;}
.y79{bottom:810.579750px;}
.yf{bottom:817.325550px;}
.y5e{bottom:817.327050px;}
.y78{bottom:825.766950px;}
.y5d{bottom:833.826750px;}
.ye{bottom:835.325550px;}
.y77{bottom:840.954150px;}
.y5c{bottom:850.326450px;}
.yd{bottom:853.321050px;}
.yb{bottom:853.325250px;}
.y39{bottom:853.325550px;}
.y76{bottom:856.141350px;}
.yc{bottom:859.700250px;}
.y5b{bottom:866.826150px;}
.ya{bottom:871.325250px;}
.y38{bottom:871.325550px;}
.y75{bottom:871.328550px;}
.y5a{bottom:883.325850px;}
.y74{bottom:886.515750px;}
.y9{bottom:889.325250px;}
.y37{bottom:889.325550px;}
.y59{bottom:899.825550px;}
.y73{bottom:901.702950px;}
.y8{bottom:907.325250px;}
.y36{bottom:907.325550px;}
.y58{bottom:916.325250px;}
.y72{bottom:916.890150px;}
.y7{bottom:925.325250px;}
.y35{bottom:925.325550px;}
.y71{bottom:932.077350px;}
.y6{bottom:943.325250px;}
.y34{bottom:943.325550px;}
.y70{bottom:947.264550px;}
.y5{bottom:961.325250px;}
.y33{bottom:961.325550px;}
.y6f{bottom:962.451750px;}
.y6e{bottom:977.638950px;}
.y4{bottom:979.325250px;}
.y32{bottom:979.325550px;}
.y6d{bottom:992.826150px;}
.y3{bottom:997.325250px;}
.y31{bottom:997.325550px;}
.y6c{bottom:1008.013350px;}
.y57{bottom:1015.325250px;}
.y30{bottom:1015.325550px;}
.y6b{bottom:1023.200550px;}
.y2{bottom:1025.824650px;}
.y56{bottom:1033.325250px;}
.y2f{bottom:1033.325550px;}
.y6a{bottom:1038.387750px;}
.y1{bottom:1046.825250px;}
.y55{bottom:1051.325250px;}
.y2e{bottom:1051.325550px;}
.y69{bottom:1067.825250px;}
.y54{bottom:1069.325250px;}
.y2d{bottom:1069.325550px;}
.y53{bottom:1126.325250px;}
.h4{height:26.832000px;}
.h9{height:33.024000px;}
.h2{height:40.980000px;}
.h3{height:41.280000px;}
.h5{height:41.298000px;}
.h7{height:41.310000px;}
.h8{height:42.000000px;}
.h6{height:54.000000px;}
.h1{height:55.080000px;}
.h0{height:1174.500000px;}
.w0{width:877.500000px;}
.x0{left:0.000000px;}
.x1{left:75.247050px;}
.x11{left:88.751700px;}
.x6{left:93.247650px;}
.x1d{left:171.126450px;}
.x2{left:185.382450px;}
.x4{left:191.167350px;}
.x18{left:197.667450px;}
.x3{left:205.585500px;}
.x17{left:210.967650px;}
.x5{left:212.163150px;}
.x14{left:246.170250px;}
.x1c{left:250.020450px;}
.x13{left:260.152200px;}
.x12{left:261.298350px;}
.x16{left:278.450100px;}
.x19{left:284.928750px;}
.x15{left:288.719550px;}
.x1b{left:290.239650px;}
.x10{left:295.776900px;}
.x7{left:312.601950px;}
.x1a{left:313.604100px;}
.x8{left:323.127600px;}
.x9{left:453.248100px;}
.xa{left:471.248100px;}
.x1e{left:477.247200px;}
.xc{left:610.874550px;}
.xd{left:621.689850px;}
.xe{left:664.596750px;}
.xf{left:674.214750px;}
.x1f{left:775.457400px;}
.xb{left:798.649350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-11.606400pt;}
.ls9{letter-spacing:-1.045333pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.849067pt;}
.ls7{letter-spacing:12.424533pt;}
.ls4{letter-spacing:12.586667pt;}
.ls1{letter-spacing:13.514667pt;}
.ls6{letter-spacing:14.634667pt;}
.ls0{letter-spacing:15.498667pt;}
.ls3{letter-spacing:17.968000pt;}
.ls5{letter-spacing:27.136000pt;}
.ls2{letter-spacing:28.560000pt;}
.ws4a{word-spacing:-13.344000pt;}
.ws5c{word-spacing:-11.515733pt;}
.ws60{word-spacing:-10.666667pt;}
.ws10{word-spacing:-1.605333pt;}
.wse{word-spacing:-1.504000pt;}
.ws6f{word-spacing:-1.271467pt;}
.ws5d{word-spacing:-1.152000pt;}
.ws25{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.757333pt;}
.ws28{word-spacing:-0.746667pt;}
.ws24{word-spacing:-0.714667pt;}
.ws3a{word-spacing:-0.485333pt;}
.ws16{word-spacing:-0.304000pt;}
.ws5e{word-spacing:-0.302933pt;}
.ws14{word-spacing:-0.053333pt;}
.ws72{word-spacing:-0.048000pt;}
.ws4e{word-spacing:-0.037333pt;}
.ws4f{word-spacing:0.000000pt;}
.ws65{word-spacing:0.012800pt;}
.ws53{word-spacing:0.133333pt;}
.ws1f{word-spacing:0.181333pt;}
.ws2e{word-spacing:0.394667pt;}
.ws5a{word-spacing:0.695467pt;}
.ws2f{word-spacing:0.757333pt;}
.ws44{word-spacing:0.864000pt;}
.ws69{word-spacing:0.925867pt;}
.ws42{word-spacing:1.178667pt;}
.ws2b{word-spacing:1.301333pt;}
.ws67{word-spacing:1.501867pt;}
.wsc{word-spacing:1.621333pt;}
.ws46{word-spacing:1.664000pt;}
.ws2c{word-spacing:1.696000pt;}
.ws50{word-spacing:2.058667pt;}
.ws1e{word-spacing:2.165333pt;}
.ws45{word-spacing:2.240000pt;}
.ws8{word-spacing:2.256000pt;}
.ws71{word-spacing:2.393600pt;}
.ws59{word-spacing:2.542933pt;}
.ws55{word-spacing:2.922667pt;}
.ws61{word-spacing:2.939733pt;}
.ws57{word-spacing:3.225600pt;}
.ws52{word-spacing:3.226667pt;}
.ws6c{word-spacing:3.528533pt;}
.wsa{word-spacing:3.546667pt;}
.ws1a{word-spacing:4.042667pt;}
.ws17{word-spacing:4.090667pt;}
.ws58{word-spacing:4.091733pt;}
.ws5{word-spacing:4.181333pt;}
.ws68{word-spacing:4.228267pt;}
.wsf{word-spacing:4.421333pt;}
.ws3{word-spacing:4.560000pt;}
.ws6{word-spacing:4.576000pt;}
.wsb{word-spacing:4.592000pt;}
.ws27{word-spacing:4.634667pt;}
.ws1b{word-spacing:4.773333pt;}
.ws4{word-spacing:4.816000pt;}
.ws39{word-spacing:4.970667pt;}
.ws2d{word-spacing:5.029333pt;}
.ws7{word-spacing:5.088000pt;}
.ws3d{word-spacing:5.120000pt;}
.ws66{word-spacing:5.196800pt;}
.ws19{word-spacing:5.210667pt;}
.ws2{word-spacing:5.301333pt;}
.ws30{word-spacing:5.333333pt;}
.ws26{word-spacing:5.530667pt;}
.ws47{word-spacing:5.605333pt;}
.ws3c{word-spacing:5.637333pt;}
.ws35{word-spacing:5.664000pt;}
.ws32{word-spacing:5.845333pt;}
.ws6b{word-spacing:5.939200pt;}
.ws21{word-spacing:6.000000pt;}
.ws3e{word-spacing:6.042667pt;}
.ws6a{word-spacing:6.058667pt;}
.ws70{word-spacing:6.122667pt;}
.ws11{word-spacing:6.224000pt;}
.ws3b{word-spacing:6.256000pt;}
.ws33{word-spacing:6.485333pt;}
.ws6d{word-spacing:6.741333pt;}
.ws6e{word-spacing:7.044267pt;}
.ws38{word-spacing:7.120000pt;}
.ws56{word-spacing:7.121067pt;}
.ws36{word-spacing:7.136000pt;}
.ws5b{word-spacing:7.633067pt;}
.ws5f{word-spacing:7.910400pt;}
.ws23{word-spacing:8.453333pt;}
.ws9{word-spacing:8.501333pt;}
.ws64{word-spacing:8.832000pt;}
.ws63{word-spacing:9.365333pt;}
.ws3f{word-spacing:9.680000pt;}
.ws54{word-spacing:9.868800pt;}
.ws20{word-spacing:10.090667pt;}
.ws41{word-spacing:10.165333pt;}
.ws1c{word-spacing:10.256000pt;}
.ws37{word-spacing:10.330667pt;}
.ws1d{word-spacing:10.997333pt;}
.ws43{word-spacing:11.178667pt;}
.ws62{word-spacing:11.212800pt;}
.wsd{word-spacing:11.317333pt;}
.ws4c{word-spacing:12.387200pt;}
.ws12{word-spacing:12.773333pt;}
.ws15{word-spacing:13.072000pt;}
.ws2a{word-spacing:13.802667pt;}
.ws40{word-spacing:14.224000pt;}
.ws18{word-spacing:14.421333pt;}
.ws13{word-spacing:14.528000pt;}
.ws22{word-spacing:15.226667pt;}
.ws51{word-spacing:15.829333pt;}
.ws48{word-spacing:15.921600pt;}
.ws34{word-spacing:16.000000pt;}
.ws31{word-spacing:16.208000pt;}
.ws1{word-spacing:17.701333pt;}
.ws0{word-spacing:21.241600pt;}
.ws49{word-spacing:260.856000pt;}
.ws4b{word-spacing:291.379200pt;}
.ws4d{word-spacing:1845.022933pt;}
._14{margin-left:-2592.020800pt;}
._f{margin-left:-2432.098667pt;}
._0{margin-left:-4.784000pt;}
._13{margin-left:-3.831467pt;}
._11{width:5.107200pt;}
._1{width:47.990400pt;}
._10{width:51.635200pt;}
._12{width:53.333333pt;}
._2{width:248.265600pt;}
._3{width:265.209600pt;}
._a{width:291.436800pt;}
._9{width:396.739200pt;}
._6{width:413.904000pt;}
._5{width:529.252800pt;}
._4{width:532.377600pt;}
._d{width:559.790400pt;}
._b{width:562.896000pt;}
._7{width:658.123200pt;}
._c{width:688.636800pt;}
._8{width:709.540800pt;}
._e{width:740.054400pt;}
._15{width:1387.037867pt;}
.fs2{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:77.178000pt;}
.y51{bottom:101.179467pt;}
.y50{bottom:114.512667pt;}
.y4f{bottom:127.845867pt;}
.y4e{bottom:141.179067pt;}
.y4d{bottom:154.512267pt;}
.y4c{bottom:167.845467pt;}
.y4b{bottom:181.178667pt;}
.y4a{bottom:194.511867pt;}
.y49{bottom:207.845067pt;}
.y48{bottom:221.178267pt;}
.y47{bottom:241.844667pt;}
.y46{bottom:267.844667pt;}
.y2c{bottom:326.511600pt;}
.y2b{bottom:342.511600pt;}
.y2a{bottom:358.511600pt;}
.y29{bottom:374.511600pt;}
.y45{bottom:390.507600pt;}
.y28{bottom:390.511600pt;}
.y44{bottom:396.178000pt;}
.y27{bottom:406.511600pt;}
.y26{bottom:422.511600pt;}
.y25{bottom:438.511600pt;}
.y24{bottom:454.511600pt;}
.y43{bottom:470.507600pt;}
.y41{bottom:470.511333pt;}
.y23{bottom:470.511600pt;}
.y42{bottom:476.178000pt;}
.y40{bottom:486.511333pt;}
.y22{bottom:486.511600pt;}
.y3f{bottom:502.511333pt;}
.y21{bottom:502.511600pt;}
.y3e{bottom:518.511333pt;}
.y20{bottom:518.511600pt;}
.y1f{bottom:534.507600pt;}
.y3d{bottom:534.511333pt;}
.y1d{bottom:534.511600pt;}
.y1e{bottom:540.178000pt;}
.y86{bottom:545.183067pt;}
.y3c{bottom:550.511333pt;}
.y1c{bottom:550.511600pt;}
.y68{bottom:553.178000pt;}
.y85{bottom:558.667867pt;}
.y3b{bottom:566.511333pt;}
.y1b{bottom:566.511600pt;}
.y84{bottom:572.152667pt;}
.y67{bottom:579.844667pt;}
.y1a{bottom:582.511600pt;}
.y83{bottom:585.637467pt;}
.y3a{bottom:588.178000pt;}
.y19{bottom:598.511600pt;}
.y82{bottom:599.122267pt;}
.y66{bottom:599.848133pt;}
.y81{bottom:612.607067pt;}
.y18{bottom:614.511600pt;}
.y65{bottom:614.514533pt;}
.y80{bottom:626.091867pt;}
.y64{bottom:629.180933pt;}
.y17{bottom:630.511600pt;}
.y7f{bottom:639.576667pt;}
.y63{bottom:643.847333pt;}
.y16{bottom:646.511600pt;}
.y7e{bottom:653.061467pt;}
.y62{bottom:658.513733pt;}
.y15{bottom:662.511600pt;}
.y7d{bottom:666.546267pt;}
.y61{bottom:673.180133pt;}
.y14{bottom:678.511600pt;}
.y7c{bottom:680.031067pt;}
.y7b{bottom:693.515867pt;}
.y13{bottom:694.507600pt;}
.y11{bottom:694.511600pt;}
.y60{bottom:697.180133pt;}
.y12{bottom:700.178000pt;}
.y7a{bottom:707.015600pt;}
.y10{bottom:710.511600pt;}
.y5f{bottom:711.846533pt;}
.y79{bottom:720.515333pt;}
.yf{bottom:726.511600pt;}
.y5e{bottom:726.512933pt;}
.y78{bottom:734.015067pt;}
.y5d{bottom:741.179333pt;}
.ye{bottom:742.511600pt;}
.y77{bottom:747.514800pt;}
.y5c{bottom:755.845733pt;}
.yd{bottom:758.507600pt;}
.yb{bottom:758.511333pt;}
.y39{bottom:758.511600pt;}
.y76{bottom:761.014533pt;}
.yc{bottom:764.178000pt;}
.y5b{bottom:770.512133pt;}
.ya{bottom:774.511333pt;}
.y38{bottom:774.511600pt;}
.y75{bottom:774.514267pt;}
.y5a{bottom:785.178533pt;}
.y74{bottom:788.014000pt;}
.y9{bottom:790.511333pt;}
.y37{bottom:790.511600pt;}
.y59{bottom:799.844933pt;}
.y73{bottom:801.513733pt;}
.y8{bottom:806.511333pt;}
.y36{bottom:806.511600pt;}
.y58{bottom:814.511333pt;}
.y72{bottom:815.013467pt;}
.y7{bottom:822.511333pt;}
.y35{bottom:822.511600pt;}
.y71{bottom:828.513200pt;}
.y6{bottom:838.511333pt;}
.y34{bottom:838.511600pt;}
.y70{bottom:842.012933pt;}
.y5{bottom:854.511333pt;}
.y33{bottom:854.511600pt;}
.y6f{bottom:855.512667pt;}
.y6e{bottom:869.012400pt;}
.y4{bottom:870.511333pt;}
.y32{bottom:870.511600pt;}
.y6d{bottom:882.512133pt;}
.y3{bottom:886.511333pt;}
.y31{bottom:886.511600pt;}
.y6c{bottom:896.011867pt;}
.y57{bottom:902.511333pt;}
.y30{bottom:902.511600pt;}
.y6b{bottom:909.511600pt;}
.y2{bottom:911.844133pt;}
.y56{bottom:918.511333pt;}
.y2f{bottom:918.511600pt;}
.y6a{bottom:923.011333pt;}
.y1{bottom:930.511333pt;}
.y55{bottom:934.511333pt;}
.y2e{bottom:934.511600pt;}
.y69{bottom:949.178000pt;}
.y54{bottom:950.511333pt;}
.y2d{bottom:950.511600pt;}
.y53{bottom:1001.178000pt;}
.h4{height:23.850667pt;}
.h9{height:29.354667pt;}
.h2{height:36.426667pt;}
.h3{height:36.693333pt;}
.h5{height:36.709333pt;}
.h7{height:36.720000pt;}
.h8{height:37.333333pt;}
.h6{height:48.000000pt;}
.h1{height:48.960000pt;}
.h0{height:1044.000000pt;}
.w0{width:780.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.886267pt;}
.x11{left:78.890400pt;}
.x6{left:82.886800pt;}
.x1d{left:152.112400pt;}
.x2{left:164.784400pt;}
.x4{left:169.926533pt;}
.x18{left:175.704400pt;}
.x3{left:182.742667pt;}
.x17{left:187.526800pt;}
.x5{left:188.589467pt;}
.x14{left:218.818000pt;}
.x1c{left:222.240400pt;}
.x13{left:231.246400pt;}
.x12{left:232.265200pt;}
.x16{left:247.511200pt;}
.x19{left:253.270000pt;}
.x15{left:256.639600pt;}
.x1b{left:257.990800pt;}
.x10{left:262.912800pt;}
.x7{left:277.868400pt;}
.x1a{left:278.759200pt;}
.x8{left:287.224533pt;}
.x9{left:402.887200pt;}
.xa{left:418.887200pt;}
.x1e{left:424.219733pt;}
.xc{left:542.999600pt;}
.xd{left:552.613200pt;}
.xe{left:590.752667pt;}
.xf{left:599.302000pt;}
.x1f{left:689.295467pt;}
.xb{left:709.910533pt;}
}




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