
    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_f25a0e70a28a659d21d3c734.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c41fcbb0f44577241661d16a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_1a313eda08a2ad3e5ddaa667.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_477a2a7c08c409d47d2b00e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_38742c581899d0877d77c0da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_ce6e36abd667628286fe8276.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_d1edda6b5002dad6a0de0ae2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_ad61c5944e19583cb2d65d4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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;}
.m9{transform:matrix(0.125003,0.216505,-0.216505,0.125003,0,0);-ms-transform:matrix(0.125003,0.216505,-0.216505,0.125003,0,0);-webkit-transform:matrix(0.125003,0.216505,-0.216505,0.125003,0,0);}
.m8{transform:matrix(0.125003,-0.216505,0.216505,0.125003,0,0);-ms-transform:matrix(0.125003,-0.216505,0.216505,0.125003,0,0);-webkit-transform:matrix(0.125003,-0.216505,0.216505,0.125003,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);}
.m2{transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267325,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.272334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272334,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288375,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294550,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-3.629400px;}
.v2{vertical-align:-2.323885px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.216403px;}
.v4{vertical-align:2.517000px;}
.v3{vertical-align:5.512200px;}
.ls17{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002943px;}
.ls1{letter-spacing:0.004202px;}
.ls2{letter-spacing:0.105365px;}
.ls5{letter-spacing:0.106785px;}
.ls9{letter-spacing:0.188971px;}
.ls6{letter-spacing:0.226699px;}
.ls7{letter-spacing:0.236667px;}
.ls4{letter-spacing:0.237567px;}
.lsb{letter-spacing:0.294943px;}
.lse{letter-spacing:0.296743px;}
.lsd{letter-spacing:0.297262px;}
.ls3{letter-spacing:3.861918px;}
.ls0{letter-spacing:8.205600px;}
.lsf{letter-spacing:245.444400px;}
.ls13{letter-spacing:344.184000px;}
.ls10{letter-spacing:357.324600px;}
.lsa{letter-spacing:359.412764px;}
.lsc{letter-spacing:371.901735px;}
.ls14{letter-spacing:400.342200px;}
.ls15{letter-spacing:412.465200px;}
.ls16{letter-spacing:597.184800px;}
.ls11{letter-spacing:642.712800px;}
.ls12{letter-spacing:692.992800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-10.008000px;}
.ws5{word-spacing:-8.521812px;}
.ws4{word-spacing:-8.429887px;}
.ws6{word-spacing:-4.256642px;}
.ws9{word-spacing:0.000000px;}
.ws1{word-spacing:4.105734px;}
.ws2{word-spacing:46.172868px;}
.ws3{word-spacing:353.898055px;}
.ws7{word-spacing:371.259192px;}
.ws8{word-spacing:425.095992px;}
._24{margin-left:-923.911482px;}
._2e{margin-left:-640.903200px;}
._2c{margin-left:-388.629672px;}
._2b{margin-left:-326.484000px;}
._2a{margin-left:-18.033600px;}
._9{margin-left:-13.078188px;}
._6{margin-left:-7.243200px;}
._3{margin-left:-5.549400px;}
._4{margin-left:-4.060200px;}
._1{margin-left:-2.758200px;}
._2{margin-left:-1.291800px;}
._0{width:2.033400px;}
._5{width:3.280800px;}
._30{width:4.316400px;}
._29{width:5.349000px;}
._28{width:8.344200px;}
._2f{width:10.938000px;}
._12{width:31.345044px;}
._18{width:39.432534px;}
._27{width:42.495564px;}
._f{width:45.447138px;}
._11{width:48.099966px;}
._10{width:53.292864px;}
._7{width:55.528800px;}
._8{width:58.408200px;}
._25{width:59.855598px;}
._e{width:61.386366px;}
._1c{width:65.872104px;}
._14{width:67.182072px;}
._c{width:72.016938px;}
._1a{width:73.857792px;}
._d{width:79.860864px;}
._b{width:81.787380px;}
._22{width:87.076128px;}
._1d{width:91.695546px;}
._1e{width:93.251628px;}
._a{width:98.140530px;}
._20{width:103.082346px;}
._23{width:111.874458px;}
._16{width:116.366946px;}
._17{width:135.638340px;}
._19{width:137.054226px;}
._1b{width:148.016280px;}
._15{width:159.698094px;}
._1f{width:161.570028px;}
._13{width:168.893880px;}
._21{width:183.092616px;}
._26{width:371.764356px;}
._2d{width:438.102984px;}
.fc17{color:transparent;}
.fc13{color:rgb(47,49,146);}
.fc10{color:rgb(105,41,12);}
.fcf{color:rgb(0,43,95);}
.fc0{color:rgb(21,42,87);}
.fce{color:rgb(0,173,239);}
.fc2{color:rgb(19,40,85);}
.fc1{color:rgb(46,49,146);}
.fc3{color:rgb(255,255,255);}
.fc5{color:rgb(35,31,32);}
.fc14{color:rgb(123,29,144);}
.fc7{color:rgb(0,0,0);}
.fc4{color:rgb(153,222,249);}
.fc6{color:rgb(4,3,7);}
.fc16{color:rgb(237,28,36);}
.fc8{color:rgb(112,115,116);}
.fc15{color:rgb(146,13,44);}
.fc12{color:rgb(115,100,7);}
.fc11{color:rgb(20,69,23);}
.fc9{color:rgb(28,65,122);}
.fcd{color:rgb(157,101,185);}
.fcb{color:rgb(79,125,196);}
.fca{color:rgb(210,38,30);}
.fcc{color:rgb(97,53,133);}
.fs14{font-size:12.000000px;}
.fsf{font-size:15.311663px;}
.fs10{font-size:15.312000px;}
.fs16{font-size:24.000000px;}
.fs15{font-size:28.800000px;}
.fs6{font-size:30.000000px;}
.fs3{font-size:30.060000px;}
.fs8{font-size:30.162000px;}
.fsd{font-size:30.323333px;}
.fse{font-size:30.654000px;}
.fs7{font-size:33.000000px;}
.fsa{font-size:35.316000px;}
.fsb{font-size:35.364000px;}
.fs0{font-size:36.000000px;}
.fs11{font-size:36.468000px;}
.fs2{font-size:38.904000px;}
.fs13{font-size:40.800000px;}
.fs9{font-size:41.371022px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:42.444000px;}
.fs12{font-size:60.000000px;}
.fs1{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:4.515600px;}
.y21{bottom:14.569350px;}
.y7{bottom:21.131400px;}
.y20{bottom:24.623100px;}
.y6{bottom:30.051150px;}
.y1f{bottom:34.676850px;}
.y1e{bottom:44.730600px;}
.y2a{bottom:52.225650px;}
.y1d{bottom:54.784500px;}
.y81{bottom:57.198750px;}
.y29{bottom:60.718050px;}
.y4a{bottom:62.733600px;}
.y1c{bottom:64.837800px;}
.y80{bottom:65.241750px;}
.y49{bottom:72.787800px;}
.y28{bottom:73.456950px;}
.y23{bottom:74.891550px;}
.y27{bottom:81.949050px;}
.y26{bottom:94.687500px;}
.y25{bottom:103.179900px;}
.y24{bottom:111.672000px;}
.y2b{bottom:122.764050px;}
.y1a{bottom:138.876600px;}
.y19{bottom:150.765900px;}
.y18{bottom:159.258000px;}
.y17{bottom:171.271050px;}
.y83{bottom:188.951100px;}
.y82{bottom:197.330100px;}
.y86{bottom:279.060450px;}
.y85{bottom:340.480650px;}
.y84{bottom:436.159650px;}
.y7f{bottom:448.492050px;}
.y7e{bottom:460.041600px;}
.y7d{bottom:471.591150px;}
.y2{bottom:473.558700px;}
.y7c{bottom:483.141150px;}
.y1{bottom:483.612450px;}
.y7b{bottom:494.691150px;}
.y7a{bottom:506.240700px;}
.y79{bottom:517.790700px;}
.y78{bottom:529.340700px;}
.y77{bottom:540.890250px;}
.y76{bottom:552.440250px;}
.y75{bottom:563.990250px;}
.y74{bottom:575.539800px;}
.y73{bottom:587.089350px;}
.y72{bottom:598.639350px;}
.y71{bottom:610.188900px;}
.y70{bottom:621.738450px;}
.y6f{bottom:633.288450px;}
.y6e{bottom:644.838000px;}
.y6d{bottom:656.387550px;}
.y6c{bottom:667.937550px;}
.y6b{bottom:679.487100px;}
.y6a{bottom:689.521350px;}
.y69{bottom:694.466850px;}
.y48{bottom:704.292600px;}
.y16{bottom:712.670250px;}
.y4d{bottom:720.540750px;}
.y54{bottom:723.640350px;}
.y56{bottom:730.084200px;}
.y52{bottom:732.776100px;}
.y5b{bottom:734.162700px;}
.y57{bottom:735.223200px;}
.y4f{bottom:760.917900px;}
.y4c{bottom:770.787450px;}
.y50{bottom:782.044200px;}
.y4e{bottom:784.491600px;}
.y91{bottom:798.139350px;}
.y90{bottom:809.689350px;}
.y55{bottom:815.814150px;}
.y53{bottom:817.037850px;}
.y58{bottom:818.016600px;}
.y8f{bottom:821.238900px;}
.y59{bottom:826.825950px;}
.y8e{bottom:832.788450px;}
.y8d{bottom:844.338450px;}
.y8c{bottom:855.888450px;}
.y8b{bottom:867.438000px;}
.y61{bottom:878.182800px;}
.y8a{bottom:878.988000px;}
.y51{bottom:884.985150px;}
.y60{bottom:888.393900px;}
.y89{bottom:890.538000px;}
.y5f{bottom:898.604700px;}
.y88{bottom:902.087550px;}
.y5e{bottom:908.815800px;}
.y87{bottom:913.637550px;}
.y5d{bottom:919.026450px;}
.y5a{bottom:920.141700px;}
.y5c{bottom:929.237550px;}
.y1b{bottom:936.741450px;}
.y15{bottom:952.033050px;}
.y14{bottom:963.922350px;}
.y13{bottom:975.811350px;}
.y12{bottom:987.700350px;}
.y92{bottom:1002.470850px;}
.y11{bottom:1003.018950px;}
.y4b{bottom:1023.227250px;}
.y10{bottom:1024.923450px;}
.yf{bottom:1036.812750px;}
.y3f{bottom:1038.968250px;}
.y37{bottom:1039.678200px;}
.y41{bottom:1043.206950px;}
.y30{bottom:1048.158750px;}
.y36{bottom:1048.283700px;}
.ye{bottom:1048.701750px;}
.y3e{bottom:1049.770350px;}
.y40{bottom:1052.147100px;}
.y2f{bottom:1056.763950px;}
.y35{bottom:1056.889200px;}
.yd{bottom:1060.590750px;}
.y3d{bottom:1064.173050px;}
.y46{bottom:1064.291850px;}
.y2e{bottom:1065.369450px;}
.y34{bottom:1065.494400px;}
.yc{bottom:1072.480050px;}
.y45{bottom:1073.243550px;}
.y2d{bottom:1073.974650px;}
.y33{bottom:1074.099600px;}
.y3c{bottom:1078.576200px;}
.y2c{bottom:1082.580150px;}
.y32{bottom:1082.704800px;}
.yb{bottom:1084.369050px;}
.y44{bottom:1086.928500px;}
.y3b{bottom:1089.344250px;}
.y31{bottom:1091.310300px;}
.y43{bottom:1095.880200px;}
.ya{bottom:1096.258350px;}
.y3a{bottom:1096.545750px;}
.y42{bottom:1104.832350px;}
.y9{bottom:1108.147650px;}
.y39{bottom:1112.596050px;}
.y38{bottom:1112.658900px;}
.y8{bottom:1123.480200px;}
.y47{bottom:1126.635600px;}
.y63{bottom:1154.795400px;}
.y68{bottom:1161.681150px;}
.y66{bottom:1162.407900px;}
.y62{bottom:1171.552050px;}
.y64{bottom:1177.396500px;}
.y65{bottom:1178.774100px;}
.y67{bottom:1178.954400px;}
.y5{bottom:1205.032200px;}
.y4{bottom:1230.753600px;}
.y3{bottom:1256.475000px;}
.h24{height:8.736328px;}
.h1b{height:11.154786px;}
.h1c{height:11.155031px;}
.h1d{height:11.155533px;}
.h1e{height:11.156000px;}
.h29{height:17.472656px;}
.h27{height:20.967187px;}
.h26{height:20.981250px;}
.he{height:21.649482px;}
.h9{height:21.840820px;}
.hb{height:21.855469px;}
.hf{height:21.870117px;}
.h5{height:21.913857px;}
.h1a{height:22.091022px;}
.h19{height:22.091339px;}
.h17{height:22.091625px;}
.h18{height:22.092356px;}
.h16{height:22.331918px;}
.h15{height:23.309014px;}
.ha{height:24.024902px;}
.hd{height:24.874813px;}
.h12{height:25.745502px;}
.h13{height:25.780494px;}
.h2{height:26.208984px;}
.h1{height:26.226562px;}
.h10{height:26.244141px;}
.h1f{height:26.567508px;}
.h4{height:28.361168px;}
.h22{height:28.425384px;}
.h23{height:29.703516px;}
.h25{height:29.723437px;}
.h11{height:30.159637px;}
.h6{height:30.577148px;}
.h7{height:30.597656px;}
.h14{height:30.900393px;}
.h21{height:32.440584px;}
.h20{height:43.681641px;}
.h28{height:49.442241px;}
.h3{height:65.522461px;}
.h8{height:69.937500px;}
.hc{height:84.435150px;}
.h0{height:1296.000000px;}
.w1{width:423.834900px;}
.w0{width:972.000000px;}
.x0{left:0.000000px;}
.xf{left:2.923200px;}
.xe{left:15.259050px;}
.x8{left:39.599400px;}
.x1{left:41.654850px;}
.x3a{left:124.035000px;}
.x38{left:129.739050px;}
.x6{left:174.187066px;}
.x9{left:213.678450px;}
.x7{left:219.698400px;}
.x2{left:228.877500px;}
.x5{left:237.529350px;}
.x3c{left:264.476250px;}
.x39{left:268.409400px;}
.x10{left:274.781700px;}
.x3d{left:284.735250px;}
.x4{left:299.434800px;}
.x40{left:328.055550px;}
.xc{left:332.882850px;}
.x11{left:337.883100px;}
.x3{left:340.599600px;}
.x3b{left:366.815250px;}
.x3e{left:372.052800px;}
.xa{left:375.561000px;}
.x37{left:388.496400px;}
.x2f{left:395.288100px;}
.x28{left:416.251500px;}
.xb{left:436.774500px;}
.x29{left:441.701250px;}
.x30{left:449.287200px;}
.x12{left:452.020350px;}
.x41{left:459.531000px;}
.x2a{left:468.945300px;}
.x31{left:492.193050px;}
.x1f{left:495.052050px;}
.x1e{left:497.508750px;}
.xd{left:501.882000px;}
.x36{left:502.960200px;}
.x33{left:511.198500px;}
.x44{left:515.524800px;}
.x1d{left:524.896650px;}
.x2b{left:528.246750px;}
.x2e{left:529.470450px;}
.x2c{left:550.025700px;}
.x32{left:560.140350px;}
.x35{left:564.953100px;}
.x2d{left:587.792550px;}
.x43{left:590.399850px;}
.x34{left:612.671250px;}
.x26{left:619.784400px;}
.x42{left:623.079150px;}
.x3f{left:654.011850px;}
.x25{left:663.437258px;}
.x24{left:667.595635px;}
.x22{left:678.992100px;}
.x20{left:681.077700px;}
.x23{left:685.500608px;}
.x27{left:688.766550px;}
.x21{left:693.188961px;}
.x14{left:806.064450px;}
.x13{left:808.116450px;}
.x16{left:809.347050px;}
.x15{left:812.216250px;}
.x1c{left:840.505350px;}
.x1b{left:870.905550px;}
.x17{left:872.335500px;}
.x18{left:874.387500px;}
.x1a{left:876.033900px;}
.x19{left:878.695650px;}
@media print{
.v5{vertical-align:-3.226133pt;}
.v2{vertical-align:-2.065675pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.081247pt;}
.v4{vertical-align:2.237333pt;}
.v3{vertical-align:4.899733pt;}
.ls17{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002616pt;}
.ls1{letter-spacing:0.003735pt;}
.ls2{letter-spacing:0.093658pt;}
.ls5{letter-spacing:0.094920pt;}
.ls9{letter-spacing:0.167974pt;}
.ls6{letter-spacing:0.201511pt;}
.ls7{letter-spacing:0.210371pt;}
.ls4{letter-spacing:0.211171pt;}
.lsb{letter-spacing:0.262171pt;}
.lse{letter-spacing:0.263771pt;}
.lsd{letter-spacing:0.264233pt;}
.ls3{letter-spacing:3.432816pt;}
.ls0{letter-spacing:7.293867pt;}
.lsf{letter-spacing:218.172800pt;}
.ls13{letter-spacing:305.941333pt;}
.ls10{letter-spacing:317.621867pt;}
.lsa{letter-spacing:319.478012pt;}
.lsc{letter-spacing:330.579320pt;}
.ls14{letter-spacing:355.859733pt;}
.ls15{letter-spacing:366.635733pt;}
.ls16{letter-spacing:530.830933pt;}
.ls11{letter-spacing:571.300267pt;}
.ls12{letter-spacing:615.993600pt;}
.ws0{word-spacing:-8.896000pt;}
.ws5{word-spacing:-7.574944pt;}
.ws4{word-spacing:-7.493232pt;}
.ws6{word-spacing:-3.783682pt;}
.ws9{word-spacing:0.000000pt;}
.ws1{word-spacing:3.649541pt;}
.ws2{word-spacing:41.042549pt;}
.ws3{word-spacing:314.576049pt;}
.ws7{word-spacing:330.008171pt;}
.ws8{word-spacing:377.863104pt;}
._24{margin-left:-821.254651pt;}
._2e{margin-left:-569.691733pt;}
._2c{margin-left:-345.448597pt;}
._2b{margin-left:-290.208000pt;}
._2a{margin-left:-16.029867pt;}
._9{margin-left:-11.625056pt;}
._6{margin-left:-6.438400pt;}
._3{margin-left:-4.932800pt;}
._4{margin-left:-3.609067pt;}
._1{margin-left:-2.451733pt;}
._2{margin-left:-1.148267pt;}
._0{width:1.807467pt;}
._5{width:2.916267pt;}
._30{width:3.836800pt;}
._29{width:4.754667pt;}
._28{width:7.417067pt;}
._2f{width:9.722667pt;}
._12{width:27.862261pt;}
._18{width:35.051141pt;}
._27{width:37.773835pt;}
._f{width:40.397456pt;}
._11{width:42.755525pt;}
._10{width:47.371435pt;}
._7{width:49.358933pt;}
._8{width:51.918400pt;}
._25{width:53.204976pt;}
._e{width:54.565659pt;}
._1c{width:58.552981pt;}
._14{width:59.717397pt;}
._c{width:64.015056pt;}
._1a{width:65.651371pt;}
._d{width:70.987435pt;}
._b{width:72.699893pt;}
._22{width:77.401003pt;}
._1d{width:81.507152pt;}
._1e{width:82.890336pt;}
._a{width:87.236027pt;}
._20{width:91.628752pt;}
._23{width:99.443963pt;}
._16{width:103.437285pt;}
._17{width:120.567413pt;}
._19{width:121.825979pt;}
._1b{width:131.570027pt;}
._15{width:141.953861pt;}
._1f{width:143.617803pt;}
._13{width:150.127893pt;}
._21{width:162.748992pt;}
._26{width:330.457205pt;}
._2d{width:389.424875pt;}
.fs14{font-size:10.666667pt;}
.fsf{font-size:13.610367pt;}
.fs10{font-size:13.610667pt;}
.fs16{font-size:21.333333pt;}
.fs15{font-size:25.600000pt;}
.fs6{font-size:26.666667pt;}
.fs3{font-size:26.720000pt;}
.fs8{font-size:26.810667pt;}
.fsd{font-size:26.954074pt;}
.fse{font-size:27.248000pt;}
.fs7{font-size:29.333333pt;}
.fsa{font-size:31.392000pt;}
.fsb{font-size:31.434667pt;}
.fs0{font-size:32.000000pt;}
.fs11{font-size:32.416000pt;}
.fs2{font-size:34.581333pt;}
.fs13{font-size:36.266667pt;}
.fs9{font-size:36.774242pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:37.728000pt;}
.fs12{font-size:53.333333pt;}
.fs1{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:4.013867pt;}
.y21{bottom:12.950533pt;}
.y7{bottom:18.783467pt;}
.y20{bottom:21.887200pt;}
.y6{bottom:26.712133pt;}
.y1f{bottom:30.823867pt;}
.y1e{bottom:39.760533pt;}
.y2a{bottom:46.422800pt;}
.y1d{bottom:48.697333pt;}
.y81{bottom:50.843333pt;}
.y29{bottom:53.971600pt;}
.y4a{bottom:55.763200pt;}
.y1c{bottom:57.633600pt;}
.y80{bottom:57.992667pt;}
.y49{bottom:64.700267pt;}
.y28{bottom:65.295067pt;}
.y23{bottom:66.570267pt;}
.y27{bottom:72.843600pt;}
.y26{bottom:84.166667pt;}
.y25{bottom:91.715467pt;}
.y24{bottom:99.264000pt;}
.y2b{bottom:109.123600pt;}
.y1a{bottom:123.445867pt;}
.y19{bottom:134.014133pt;}
.y18{bottom:141.562667pt;}
.y17{bottom:152.240933pt;}
.y83{bottom:167.956533pt;}
.y82{bottom:175.404533pt;}
.y86{bottom:248.053733pt;}
.y85{bottom:302.649467pt;}
.y84{bottom:387.697467pt;}
.y7f{bottom:398.659600pt;}
.y7e{bottom:408.925867pt;}
.y7d{bottom:419.192133pt;}
.y2{bottom:420.941067pt;}
.y7c{bottom:429.458800pt;}
.y1{bottom:429.877733pt;}
.y7b{bottom:439.725467pt;}
.y7a{bottom:449.991733pt;}
.y79{bottom:460.258400pt;}
.y78{bottom:470.525067pt;}
.y77{bottom:480.791333pt;}
.y76{bottom:491.058000pt;}
.y75{bottom:501.324667pt;}
.y74{bottom:511.590933pt;}
.y73{bottom:521.857200pt;}
.y72{bottom:532.123867pt;}
.y71{bottom:542.390133pt;}
.y70{bottom:552.656400pt;}
.y6f{bottom:562.923067pt;}
.y6e{bottom:573.189333pt;}
.y6d{bottom:583.455600pt;}
.y6c{bottom:593.722267pt;}
.y6b{bottom:603.988533pt;}
.y6a{bottom:612.907867pt;}
.y69{bottom:617.303867pt;}
.y48{bottom:626.037867pt;}
.y16{bottom:633.484667pt;}
.y4d{bottom:640.480667pt;}
.y54{bottom:643.235867pt;}
.y56{bottom:648.963733pt;}
.y52{bottom:651.356533pt;}
.y5b{bottom:652.589067pt;}
.y57{bottom:653.531733pt;}
.y4f{bottom:676.371467pt;}
.y4c{bottom:685.144400pt;}
.y50{bottom:695.150400pt;}
.y4e{bottom:697.325867pt;}
.y91{bottom:709.457200pt;}
.y90{bottom:719.723867pt;}
.y55{bottom:725.168133pt;}
.y53{bottom:726.255867pt;}
.y58{bottom:727.125867pt;}
.y8f{bottom:729.990133pt;}
.y59{bottom:734.956400pt;}
.y8e{bottom:740.256400pt;}
.y8d{bottom:750.523067pt;}
.y8c{bottom:760.789733pt;}
.y8b{bottom:771.056000pt;}
.y61{bottom:780.606933pt;}
.y8a{bottom:781.322667pt;}
.y51{bottom:786.653467pt;}
.y60{bottom:789.683467pt;}
.y89{bottom:791.589333pt;}
.y5f{bottom:798.759733pt;}
.y88{bottom:801.855600pt;}
.y5e{bottom:807.836267pt;}
.y87{bottom:812.122267pt;}
.y5d{bottom:816.912400pt;}
.y5a{bottom:817.903733pt;}
.y5c{bottom:825.988933pt;}
.y1b{bottom:832.659067pt;}
.y15{bottom:846.251600pt;}
.y14{bottom:856.819867pt;}
.y13{bottom:867.387867pt;}
.y12{bottom:877.955867pt;}
.y92{bottom:891.085200pt;}
.y11{bottom:891.572400pt;}
.y4b{bottom:909.535333pt;}
.y10{bottom:911.043067pt;}
.yf{bottom:921.611333pt;}
.y3f{bottom:923.527333pt;}
.y37{bottom:924.158400pt;}
.y41{bottom:927.295067pt;}
.y30{bottom:931.696667pt;}
.y36{bottom:931.807733pt;}
.ye{bottom:932.179333pt;}
.y3e{bottom:933.129200pt;}
.y40{bottom:935.241867pt;}
.y2f{bottom:939.345733pt;}
.y35{bottom:939.457067pt;}
.yd{bottom:942.747333pt;}
.y3d{bottom:945.931600pt;}
.y46{bottom:946.037200pt;}
.y2e{bottom:946.995067pt;}
.y34{bottom:947.106133pt;}
.yc{bottom:953.315600pt;}
.y45{bottom:953.994267pt;}
.y2d{bottom:954.644133pt;}
.y33{bottom:954.755200pt;}
.y3c{bottom:958.734400pt;}
.y2c{bottom:962.293467pt;}
.y32{bottom:962.404267pt;}
.yb{bottom:963.883600pt;}
.y44{bottom:966.158667pt;}
.y3b{bottom:968.306000pt;}
.y31{bottom:970.053600pt;}
.y43{bottom:974.115733pt;}
.ya{bottom:974.451867pt;}
.y3a{bottom:974.707333pt;}
.y42{bottom:982.073200pt;}
.y9{bottom:985.020133pt;}
.y39{bottom:988.974267pt;}
.y38{bottom:989.030133pt;}
.y8{bottom:998.649067pt;}
.y47{bottom:1001.453867pt;}
.y63{bottom:1026.484800pt;}
.y68{bottom:1032.605467pt;}
.y66{bottom:1033.251467pt;}
.y62{bottom:1041.379600pt;}
.y64{bottom:1046.574667pt;}
.y65{bottom:1047.799200pt;}
.y67{bottom:1047.959467pt;}
.y5{bottom:1071.139733pt;}
.y4{bottom:1094.003200pt;}
.y3{bottom:1116.866667pt;}
.h24{height:7.765625pt;}
.h1b{height:9.915365pt;}
.h1c{height:9.915583pt;}
.h1d{height:9.916030pt;}
.h1e{height:9.916445pt;}
.h29{height:15.531250pt;}
.h27{height:18.637500pt;}
.h26{height:18.650000pt;}
.he{height:19.243984pt;}
.h9{height:19.414062pt;}
.hb{height:19.427083pt;}
.hf{height:19.440104pt;}
.h5{height:19.478984pt;}
.h1a{height:19.636464pt;}
.h19{height:19.636745pt;}
.h17{height:19.637000pt;}
.h18{height:19.637650pt;}
.h16{height:19.850594pt;}
.h15{height:20.719123pt;}
.ha{height:21.355469pt;}
.hd{height:22.110945pt;}
.h12{height:22.884891pt;}
.h13{height:22.915995pt;}
.h2{height:23.296875pt;}
.h1{height:23.312500pt;}
.h10{height:23.328125pt;}
.h1f{height:23.615563pt;}
.h4{height:25.209927pt;}
.h22{height:25.267008pt;}
.h23{height:26.403125pt;}
.h25{height:26.420833pt;}
.h11{height:26.808566pt;}
.h6{height:27.179688pt;}
.h7{height:27.197917pt;}
.h14{height:27.467016pt;}
.h21{height:28.836075pt;}
.h20{height:38.828125pt;}
.h28{height:43.948658pt;}
.h3{height:58.242188pt;}
.h8{height:62.166667pt;}
.hc{height:75.053467pt;}
.h0{height:1152.000000pt;}
.w1{width:376.742133pt;}
.w0{width:864.000000pt;}
.x0{left:0.000000pt;}
.xf{left:2.598400pt;}
.xe{left:13.563600pt;}
.x8{left:35.199467pt;}
.x1{left:37.026533pt;}
.x3a{left:110.253333pt;}
.x38{left:115.323600pt;}
.x6{left:154.832947pt;}
.x9{left:189.936400pt;}
.x7{left:195.287467pt;}
.x2{left:203.446667pt;}
.x5{left:211.137200pt;}
.x3c{left:235.090000pt;}
.x39{left:238.586133pt;}
.x10{left:244.250400pt;}
.x3d{left:253.098000pt;}
.x4{left:266.164267pt;}
.x40{left:291.604933pt;}
.xc{left:295.895867pt;}
.x11{left:300.340533pt;}
.x3{left:302.755200pt;}
.x3b{left:326.058000pt;}
.x3e{left:330.713600pt;}
.xa{left:333.832000pt;}
.x37{left:345.330133pt;}
.x2f{left:351.367200pt;}
.x28{left:370.001333pt;}
.xb{left:388.244000pt;}
.x29{left:392.623333pt;}
.x30{left:399.366400pt;}
.x12{left:401.795867pt;}
.x41{left:408.472000pt;}
.x2a{left:416.840267pt;}
.x31{left:437.504933pt;}
.x1f{left:440.046267pt;}
.x1e{left:442.230000pt;}
.xd{left:446.117333pt;}
.x36{left:447.075733pt;}
.x33{left:454.398667pt;}
.x44{left:458.244267pt;}
.x1d{left:466.574800pt;}
.x2b{left:469.552667pt;}
.x2e{left:470.640400pt;}
.x2c{left:488.911733pt;}
.x32{left:497.902533pt;}
.x35{left:502.180533pt;}
.x2d{left:522.482267pt;}
.x43{left:524.799867pt;}
.x34{left:544.596667pt;}
.x26{left:550.919467pt;}
.x42{left:553.848133pt;}
.x3f{left:581.343867pt;}
.x25{left:589.722007pt;}
.x24{left:593.418343pt;}
.x22{left:603.548533pt;}
.x20{left:605.402400pt;}
.x23{left:609.333874pt;}
.x27{left:612.236933pt;}
.x21{left:616.167965pt;}
.x14{left:716.501733pt;}
.x13{left:718.325733pt;}
.x16{left:719.419600pt;}
.x15{left:721.970000pt;}
.x1c{left:747.115867pt;}
.x1b{left:774.138267pt;}
.x17{left:775.409333pt;}
.x18{left:777.233333pt;}
.x1a{left:778.696800pt;}
.x19{left:781.062800pt;}
}




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