
    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_994d49c9b938ee284d30d48f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_71a620bae097aa605ecb38ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fd76a0735d5dc453934666b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_5427015912f4f1e7d10556f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_ed86aab0e091f4354d556682.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_697bf4caad8a8497cfc1fa7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3eaa56cccdabe64ff34c0e68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c6eb9803b72e8064d4abc610.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v2{vertical-align:29.160000px;}
.lsa{letter-spacing:-1.800000px;}
.ls1{letter-spacing:-1.500000px;}
.ls5{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.349800px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.007200px;}
.ls7{letter-spacing:0.600000px;}
.ls9{letter-spacing:2.220000px;}
.ls4{letter-spacing:3.060000px;}
.ls8{letter-spacing:3.240000px;}
.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;}
}
.ws29{word-spacing:-18.240000px;}
.ws6{word-spacing:-16.500000px;}
.ws2b{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.400000px;}
.ws27{word-spacing:-14.250000px;}
.ws28{word-spacing:-13.200000px;}
.ws1{word-spacing:-12.000000px;}
.ws0{word-spacing:-8.745000px;}
.wsa{word-spacing:-8.395200px;}
.ws2d{word-spacing:-6.000000px;}
.ws1c{word-spacing:-3.630000px;}
.ws3{word-spacing:-3.300000px;}
.ws2f{word-spacing:-2.220000px;}
.ws1e{word-spacing:-1.574100px;}
.ws2e{word-spacing:-1.500000px;}
.ws4{word-spacing:-1.080000px;}
.ws18{word-spacing:-0.972000px;}
.wsb{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.600000px;}
.ws25{word-spacing:-0.300000px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:0.240000px;}
.ws21{word-spacing:0.349800px;}
.ws12{word-spacing:0.600000px;}
.ws20{word-spacing:0.720000px;}
.ws1d{word-spacing:0.840000px;}
.ws22{word-spacing:1.200000px;}
.ws5{word-spacing:1.500000px;}
.ws2c{word-spacing:1.800000px;}
.ws11{word-spacing:2.220000px;}
.ws24{word-spacing:2.880000px;}
.ws1a{word-spacing:3.120000px;}
.ws26{word-spacing:5.280000px;}
.ws10{word-spacing:6.120000px;}
.wsd{word-spacing:6.540000px;}
.ws23{word-spacing:6.720000px;}
.wse{word-spacing:13.020000px;}
.ws19{word-spacing:14.784000px;}
.wsc{word-spacing:24.684000px;}
.ws1f{word-spacing:50.640000px;}
.ws1b{word-spacing:84.150000px;}
.ws15{word-spacing:410.832000px;}
.ws13{word-spacing:428.814000px;}
.ws16{word-spacing:437.832000px;}
.ws17{word-spacing:470.880000px;}
.ws14{word-spacing:548.856000px;}
.ws8{word-spacing:1163.095200px;}
._30{margin-left:-230.760000px;}
._25{margin-left:-100.650000px;}
._1a{margin-left:-27.486000px;}
._6{margin-left:-16.092000px;}
._7{margin-left:-15.000000px;}
._9{margin-left:-13.461000px;}
._2{margin-left:-7.160400px;}
._5{margin-left:-5.508000px;}
._3{margin-left:-4.128000px;}
._16{margin-left:-3.090000px;}
._1{margin-left:-2.088000px;}
._0{margin-left:-1.056000px;}
._4{width:1.045800px;}
._13{width:2.176200px;}
._11{width:3.228000px;}
._f{width:5.100000px;}
._e{width:6.354000px;}
._b{width:8.316000px;}
._a{width:10.002000px;}
._8{width:11.115000px;}
._c{width:12.480000px;}
._10{width:13.626000px;}
._17{width:15.000000px;}
._15{width:16.656000px;}
._d{width:18.318000px;}
._12{width:20.016000px;}
._22{width:21.054000px;}
._14{width:22.128000px;}
._19{width:23.328000px;}
._28{width:24.582000px;}
._1b{width:26.136000px;}
._1c{width:27.534000px;}
._24{width:29.148000px;}
._2e{width:30.918000px;}
._2b{width:35.328000px;}
._21{width:38.280000px;}
._18{width:41.976000px;}
._2a{width:43.818000px;}
._23{width:45.672000px;}
._29{width:46.800000px;}
._2c{width:48.000000px;}
._27{width:50.040000px;}
._2d{width:51.600000px;}
._2f{width:53.430000px;}
._26{width:56.628000px;}
._1f{width:269.784000px;}
._1d{width:290.844000px;}
._20{width:344.844000px;}
._1e{width:347.814000px;}
.fc3{color:rgb(74,92,112);}
.fc2{color:rgb(111,129,147);}
.fc1{color:rgb(79,76,77);}
.fc5{color:rgb(180,180,180);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.000000px;}
.fs3{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:7.500000px;}
.y93{bottom:88.099950px;}
.y30{bottom:88.141800px;}
.y5e{bottom:88.157550px;}
.y92{bottom:103.105200px;}
.y2f{bottom:103.147050px;}
.y5d{bottom:106.157550px;}
.y91{bottom:118.110450px;}
.y2e{bottom:118.152300px;}
.y5c{bottom:124.157550px;}
.y90{bottom:133.115700px;}
.y2d{bottom:133.157550px;}
.y5b{bottom:142.157550px;}
.y8f{bottom:148.120950px;}
.y5a{bottom:160.157550px;}
.y8e{bottom:163.126200px;}
.y2c{bottom:163.157550px;}
.y2b{bottom:177.557550px;}
.y8d{bottom:178.131450px;}
.y59{bottom:178.157550px;}
.y2a{bottom:191.957550px;}
.y8c{bottom:193.136700px;}
.y58{bottom:196.157550px;}
.y8b{bottom:208.141950px;}
.y57{bottom:214.157550px;}
.y8a{bottom:223.147200px;}
.y29{bottom:232.157400px;}
.y56{bottom:232.157550px;}
.y89{bottom:238.152450px;}
.y28{bottom:250.157400px;}
.y55{bottom:250.157550px;}
.y88{bottom:253.157700px;}
.y27{bottom:268.157400px;}
.y54{bottom:268.157550px;}
.y26{bottom:286.157400px;}
.y53{bottom:286.157550px;}
.y25{bottom:304.157400px;}
.y52{bottom:304.157550px;}
.y24{bottom:322.157400px;}
.y51{bottom:322.157550px;}
.y86{bottom:340.156050px;}
.y23{bottom:340.157400px;}
.y50{bottom:340.157550px;}
.y22{bottom:358.157400px;}
.y4f{bottom:358.157550px;}
.y21{bottom:376.157400px;}
.y4e{bottom:376.157550px;}
.y20{bottom:394.157400px;}
.y4d{bottom:394.157550px;}
.y1f{bottom:412.157400px;}
.y4c{bottom:412.157550px;}
.y1e{bottom:430.157400px;}
.y4b{bottom:430.157550px;}
.y4a{bottom:448.157550px;}
.y85{bottom:464.655450px;}
.y49{bottom:466.157550px;}
.y84{bottom:477.603450px;}
.y1d{bottom:484.157400px;}
.y48{bottom:484.157550px;}
.y1c{bottom:502.157400px;}
.y47{bottom:502.157550px;}
.y81{bottom:502.725750px;}
.y83{bottom:502.739250px;}
.y80{bottom:517.292250px;}
.y82{bottom:517.305750px;}
.y1b{bottom:520.157400px;}
.y46{bottom:520.157550px;}
.y1a{bottom:538.157400px;}
.y45{bottom:538.157550px;}
.y7f{bottom:538.568250px;}
.y7e{bottom:545.844750px;}
.y19{bottom:556.157400px;}
.y44{bottom:556.157550px;}
.y18{bottom:574.157400px;}
.y43{bottom:574.157550px;}
.y7d{bottom:574.410750px;}
.y17{bottom:592.157400px;}
.y42{bottom:592.157550px;}
.y7c{bottom:595.686750px;}
.y7b{bottom:602.963250px;}
.y16{bottom:610.157400px;}
.y41{bottom:610.157550px;}
.y15{bottom:628.157400px;}
.y40{bottom:628.157550px;}
.y7a{bottom:631.515750px;}
.y79{bottom:638.792250px;}
.y14{bottom:646.157400px;}
.y3f{bottom:646.157550px;}
.y13{bottom:664.157400px;}
.y3e{bottom:664.157550px;}
.y78{bottom:667.344750px;}
.y77{bottom:674.621250px;}
.y12{bottom:682.157400px;}
.y3d{bottom:682.157550px;}
.y11{bottom:700.157400px;}
.y3c{bottom:700.157550px;}
.y76{bottom:703.173750px;}
.y75{bottom:710.450250px;}
.y10{bottom:718.157400px;}
.y3b{bottom:718.157550px;}
.yf{bottom:736.157400px;}
.y3a{bottom:736.157550px;}
.y74{bottom:739.002750px;}
.y73{bottom:746.279250px;}
.ye{bottom:754.157400px;}
.y39{bottom:754.157550px;}
.yd{bottom:772.157400px;}
.y38{bottom:772.157550px;}
.y72{bottom:774.831750px;}
.y71{bottom:782.108250px;}
.yc{bottom:790.157400px;}
.y37{bottom:790.157550px;}
.y6d{bottom:808.153050px;}
.y36{bottom:808.157550px;}
.y70{bottom:810.768750px;}
.y6c{bottom:826.154550px;}
.y35{bottom:826.157550px;}
.y34{bottom:844.157550px;}
.yb{bottom:844.166400px;}
.y33{bottom:862.157550px;}
.ya{bottom:862.161900px;}
.y9{bottom:880.157400px;}
.y6f{bottom:880.157550px;}
.y8{bottom:898.157400px;}
.y6e{bottom:898.157550px;}
.y7{bottom:916.157400px;}
.y67{bottom:916.157550px;}
.y66{bottom:934.157550px;}
.y6b{bottom:952.157550px;}
.y6{bottom:968.190750px;}
.y6a{bottom:970.157550px;}
.y65{bottom:988.157550px;}
.y5{bottom:993.390750px;}
.y64{bottom:1006.157550px;}
.y4{bottom:1018.590750px;}
.y69{bottom:1024.157550px;}
.y68{bottom:1042.157550px;}
.y3{bottom:1043.790750px;}
.y87{bottom:1060.156050px;}
.y63{bottom:1060.157550px;}
.y62{bottom:1078.157550px;}
.y2{bottom:1085.998650px;}
.y61{bottom:1096.157550px;}
.y60{bottom:1114.157550px;}
.y5f{bottom:1132.157550px;}
.y1{bottom:1142.052750px;}
.y32{bottom:1169.262450px;}
.y31{bottom:1169.475000px;}
.hf{height:25.031250px;}
.h2{height:36.852539px;}
.hd{height:37.494141px;}
.he{height:41.660156px;}
.h9{height:42.117188px;}
.h7{height:42.632812px;}
.h6{height:47.381836px;}
.hb{height:47.961914px;}
.h8{height:50.014160px;}
.h5{height:52.646484px;}
.h3{height:53.291016px;}
.ha{height:58.620117px;}
.h4{height:74.607422px;}
.hc{height:76.541836px;}
.h0{height:1262.835015px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:75.000000px;}
.x2{left:85.039350px;}
.x7{left:91.179600px;}
.xc{left:100.559100px;}
.xa{left:106.294350px;}
.x6{left:112.033350px;}
.x4{left:116.562150px;}
.x8{left:252.761100px;}
.x1{left:273.614100px;}
.x5{left:459.214350px;}
.xb{left:474.732300px;}
.xd{left:480.469350px;}
.x9{left:486.206550px;}
.x3{left:795.874050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v2{vertical-align:25.920000pt;}
.lsa{letter-spacing:-1.600000pt;}
.ls1{letter-spacing:-1.333333pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.310933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.006400pt;}
.ls7{letter-spacing:0.533333pt;}
.ls9{letter-spacing:1.973333pt;}
.ls4{letter-spacing:2.720000pt;}
.ls8{letter-spacing:2.880000pt;}
.ws29{word-spacing:-16.213333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws2b{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.800000pt;}
.ws27{word-spacing:-12.666667pt;}
.ws28{word-spacing:-11.733333pt;}
.ws1{word-spacing:-10.666667pt;}
.ws0{word-spacing:-7.773333pt;}
.wsa{word-spacing:-7.462400pt;}
.ws2d{word-spacing:-5.333333pt;}
.ws1c{word-spacing:-3.226667pt;}
.ws3{word-spacing:-2.933333pt;}
.ws2f{word-spacing:-1.973333pt;}
.ws1e{word-spacing:-1.399200pt;}
.ws2e{word-spacing:-1.333333pt;}
.ws4{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.864000pt;}
.wsb{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.533333pt;}
.ws25{word-spacing:-0.266667pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:0.213333pt;}
.ws21{word-spacing:0.310933pt;}
.ws12{word-spacing:0.533333pt;}
.ws20{word-spacing:0.640000pt;}
.ws1d{word-spacing:0.746667pt;}
.ws22{word-spacing:1.066667pt;}
.ws5{word-spacing:1.333333pt;}
.ws2c{word-spacing:1.600000pt;}
.ws11{word-spacing:1.973333pt;}
.ws24{word-spacing:2.560000pt;}
.ws1a{word-spacing:2.773333pt;}
.ws26{word-spacing:4.693333pt;}
.ws10{word-spacing:5.440000pt;}
.wsd{word-spacing:5.813333pt;}
.ws23{word-spacing:5.973333pt;}
.wse{word-spacing:11.573333pt;}
.ws19{word-spacing:13.141333pt;}
.wsc{word-spacing:21.941333pt;}
.ws1f{word-spacing:45.013333pt;}
.ws1b{word-spacing:74.800000pt;}
.ws15{word-spacing:365.184000pt;}
.ws13{word-spacing:381.168000pt;}
.ws16{word-spacing:389.184000pt;}
.ws17{word-spacing:418.560000pt;}
.ws14{word-spacing:487.872000pt;}
.ws8{word-spacing:1033.862400pt;}
._30{margin-left:-205.120000pt;}
._25{margin-left:-89.466667pt;}
._1a{margin-left:-24.432000pt;}
._6{margin-left:-14.304000pt;}
._7{margin-left:-13.333333pt;}
._9{margin-left:-11.965333pt;}
._2{margin-left:-6.364800pt;}
._5{margin-left:-4.896000pt;}
._3{margin-left:-3.669333pt;}
._16{margin-left:-2.746667pt;}
._1{margin-left:-1.856000pt;}
._0{margin-left:-0.938667pt;}
._4{width:0.929600pt;}
._13{width:1.934400pt;}
._11{width:2.869333pt;}
._f{width:4.533333pt;}
._e{width:5.648000pt;}
._b{width:7.392000pt;}
._a{width:8.890667pt;}
._8{width:9.880000pt;}
._c{width:11.093333pt;}
._10{width:12.112000pt;}
._17{width:13.333333pt;}
._15{width:14.805333pt;}
._d{width:16.282667pt;}
._12{width:17.792000pt;}
._22{width:18.714667pt;}
._14{width:19.669333pt;}
._19{width:20.736000pt;}
._28{width:21.850667pt;}
._1b{width:23.232000pt;}
._1c{width:24.474667pt;}
._24{width:25.909333pt;}
._2e{width:27.482667pt;}
._2b{width:31.402667pt;}
._21{width:34.026667pt;}
._18{width:37.312000pt;}
._2a{width:38.949333pt;}
._23{width:40.597333pt;}
._29{width:41.600000pt;}
._2c{width:42.666667pt;}
._27{width:44.480000pt;}
._2d{width:45.866667pt;}
._2f{width:47.493333pt;}
._26{width:50.336000pt;}
._1f{width:239.808000pt;}
._1d{width:258.528000pt;}
._20{width:306.528000pt;}
._1e{width:309.168000pt;}
.fs8{font-size:21.333333pt;}
.fs3{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:6.666667pt;}
.y93{bottom:78.311067pt;}
.y30{bottom:78.348267pt;}
.y5e{bottom:78.362267pt;}
.y92{bottom:91.649067pt;}
.y2f{bottom:91.686267pt;}
.y5d{bottom:94.362267pt;}
.y91{bottom:104.987067pt;}
.y2e{bottom:105.024267pt;}
.y5c{bottom:110.362267pt;}
.y90{bottom:118.325067pt;}
.y2d{bottom:118.362267pt;}
.y5b{bottom:126.362267pt;}
.y8f{bottom:131.663067pt;}
.y5a{bottom:142.362267pt;}
.y8e{bottom:145.001067pt;}
.y2c{bottom:145.028933pt;}
.y2b{bottom:157.828933pt;}
.y8d{bottom:158.339067pt;}
.y59{bottom:158.362267pt;}
.y2a{bottom:170.628933pt;}
.y8c{bottom:171.677067pt;}
.y58{bottom:174.362267pt;}
.y8b{bottom:185.015067pt;}
.y57{bottom:190.362267pt;}
.y8a{bottom:198.353067pt;}
.y29{bottom:206.362133pt;}
.y56{bottom:206.362267pt;}
.y89{bottom:211.691067pt;}
.y28{bottom:222.362133pt;}
.y55{bottom:222.362267pt;}
.y88{bottom:225.029067pt;}
.y27{bottom:238.362133pt;}
.y54{bottom:238.362267pt;}
.y26{bottom:254.362133pt;}
.y53{bottom:254.362267pt;}
.y25{bottom:270.362133pt;}
.y52{bottom:270.362267pt;}
.y24{bottom:286.362133pt;}
.y51{bottom:286.362267pt;}
.y86{bottom:302.360933pt;}
.y23{bottom:302.362133pt;}
.y50{bottom:302.362267pt;}
.y22{bottom:318.362133pt;}
.y4f{bottom:318.362267pt;}
.y21{bottom:334.362133pt;}
.y4e{bottom:334.362267pt;}
.y20{bottom:350.362133pt;}
.y4d{bottom:350.362267pt;}
.y1f{bottom:366.362133pt;}
.y4c{bottom:366.362267pt;}
.y1e{bottom:382.362133pt;}
.y4b{bottom:382.362267pt;}
.y4a{bottom:398.362267pt;}
.y85{bottom:413.027067pt;}
.y49{bottom:414.362267pt;}
.y84{bottom:424.536400pt;}
.y1d{bottom:430.362133pt;}
.y48{bottom:430.362267pt;}
.y1c{bottom:446.362133pt;}
.y47{bottom:446.362267pt;}
.y81{bottom:446.867333pt;}
.y83{bottom:446.879333pt;}
.y80{bottom:459.815333pt;}
.y82{bottom:459.827333pt;}
.y1b{bottom:462.362133pt;}
.y46{bottom:462.362267pt;}
.y1a{bottom:478.362133pt;}
.y45{bottom:478.362267pt;}
.y7f{bottom:478.727333pt;}
.y7e{bottom:485.195333pt;}
.y19{bottom:494.362133pt;}
.y44{bottom:494.362267pt;}
.y18{bottom:510.362133pt;}
.y43{bottom:510.362267pt;}
.y7d{bottom:510.587333pt;}
.y17{bottom:526.362133pt;}
.y42{bottom:526.362267pt;}
.y7c{bottom:529.499333pt;}
.y7b{bottom:535.967333pt;}
.y16{bottom:542.362133pt;}
.y41{bottom:542.362267pt;}
.y15{bottom:558.362133pt;}
.y40{bottom:558.362267pt;}
.y7a{bottom:561.347333pt;}
.y79{bottom:567.815333pt;}
.y14{bottom:574.362133pt;}
.y3f{bottom:574.362267pt;}
.y13{bottom:590.362133pt;}
.y3e{bottom:590.362267pt;}
.y78{bottom:593.195333pt;}
.y77{bottom:599.663333pt;}
.y12{bottom:606.362133pt;}
.y3d{bottom:606.362267pt;}
.y11{bottom:622.362133pt;}
.y3c{bottom:622.362267pt;}
.y76{bottom:625.043333pt;}
.y75{bottom:631.511333pt;}
.y10{bottom:638.362133pt;}
.y3b{bottom:638.362267pt;}
.yf{bottom:654.362133pt;}
.y3a{bottom:654.362267pt;}
.y74{bottom:656.891333pt;}
.y73{bottom:663.359333pt;}
.ye{bottom:670.362133pt;}
.y39{bottom:670.362267pt;}
.yd{bottom:686.362133pt;}
.y38{bottom:686.362267pt;}
.y72{bottom:688.739333pt;}
.y71{bottom:695.207333pt;}
.yc{bottom:702.362133pt;}
.y37{bottom:702.362267pt;}
.y6d{bottom:718.358267pt;}
.y36{bottom:718.362267pt;}
.y70{bottom:720.683333pt;}
.y6c{bottom:734.359600pt;}
.y35{bottom:734.362267pt;}
.y34{bottom:750.362267pt;}
.yb{bottom:750.370133pt;}
.y33{bottom:766.362267pt;}
.ya{bottom:766.366133pt;}
.y9{bottom:782.362133pt;}
.y6f{bottom:782.362267pt;}
.y8{bottom:798.362133pt;}
.y6e{bottom:798.362267pt;}
.y7{bottom:814.362133pt;}
.y67{bottom:814.362267pt;}
.y66{bottom:830.362267pt;}
.y6b{bottom:846.362267pt;}
.y6{bottom:860.614000pt;}
.y6a{bottom:862.362267pt;}
.y65{bottom:878.362267pt;}
.y5{bottom:883.014000pt;}
.y64{bottom:894.362267pt;}
.y4{bottom:905.414000pt;}
.y69{bottom:910.362267pt;}
.y68{bottom:926.362267pt;}
.y3{bottom:927.814000pt;}
.y87{bottom:942.360933pt;}
.y63{bottom:942.362267pt;}
.y62{bottom:958.362267pt;}
.y2{bottom:965.332133pt;}
.y61{bottom:974.362267pt;}
.y60{bottom:990.362267pt;}
.y5f{bottom:1006.362267pt;}
.y1{bottom:1015.158000pt;}
.y32{bottom:1039.344400pt;}
.y31{bottom:1039.533333pt;}
.hf{height:22.250000pt;}
.h2{height:32.757812pt;}
.hd{height:33.328125pt;}
.he{height:37.031250pt;}
.h9{height:37.437500pt;}
.h7{height:37.895833pt;}
.h6{height:42.117188pt;}
.hb{height:42.632812pt;}
.h8{height:44.457031pt;}
.h5{height:46.796875pt;}
.h3{height:47.369792pt;}
.ha{height:52.106771pt;}
.h4{height:66.317708pt;}
.hc{height:68.037187pt;}
.h0{height:1122.520013pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:66.666667pt;}
.x2{left:75.590533pt;}
.x7{left:81.048533pt;}
.xc{left:89.385867pt;}
.xa{left:94.483867pt;}
.x6{left:99.585200pt;}
.x4{left:103.610800pt;}
.x8{left:224.676533pt;}
.x1{left:243.212533pt;}
.x5{left:408.190533pt;}
.xb{left:421.984267pt;}
.xd{left:427.083867pt;}
.x9{left:432.183600pt;}
.x3{left:707.443600pt;}
}




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