
    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_9b612baa951fbbdb17710af0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_d8273f09be097d46a988faad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_003a494921f4b74a33e0d21a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_d2d1368f5e629781abc24bb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_fd1c5ea17001f7ccf72ebff5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.704000;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_aba51e80223a66a594f71d4e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.735000;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_ee47e85cbf4894bb1617de99.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738000;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_03e1d4d734d32d4c4f34471c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_87140d90bb6ee877e3f1f75f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.656000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9400d2680154608f145f0eca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.383000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6166a7e0f21179ce0ba78c06.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_38767977ade0a7bac6ff1e5e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.738000;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);}
.v2{vertical-align:-31.236000px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:13.974000px;}
.v6{vertical-align:24.732000px;}
.v4{vertical-align:26.034000px;}
.v5{vertical-align:28.242000px;}
.v9{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.va{vertical-align:48.522000px;}
.v8{vertical-align:54.348000px;}
.ls16{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.004391px;}
.ls1f{letter-spacing:1.865011px;}
.ls9{letter-spacing:2.985072px;}
.ls0{letter-spacing:2.986200px;}
.ls1e{letter-spacing:2.987971px;}
.ls19{letter-spacing:2.991072px;}
.ls20{letter-spacing:3.227904px;}
.lse{letter-spacing:4.160410px;}
.ls12{letter-spacing:6.641075px;}
.ls3{letter-spacing:6.643428px;}
.lsf{letter-spacing:6.645848px;}
.ls8{letter-spacing:7.172915px;}
.ls1b{letter-spacing:7.962163px;}
.ls1a{letter-spacing:10.959072px;}
.lsc{letter-spacing:15.637402px;}
.lsb{letter-spacing:15.924326px;}
.lsa{letter-spacing:18.926915px;}
.ls6{letter-spacing:19.941274px;}
.ls1d{letter-spacing:22.911072px;}
.ls13{letter-spacing:22.917072px;}
.ls1c{letter-spacing:23.384371px;}
.ls18{letter-spacing:23.456102px;}
.ls1{letter-spacing:24.173414px;}
.ls4{letter-spacing:25.029072px;}
.ls10{letter-spacing:26.403072px;}
.ls7{letter-spacing:27.077236px;}
.ls14{letter-spacing:27.095518px;}
.ls2{letter-spacing:27.201782px;}
.ls5{letter-spacing:27.616512px;}
.ls17{letter-spacing:35.148288px;}
.lsd{letter-spacing:902.880614px;}
.ls15{letter-spacing:979.704730px;}
.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;}
}
.ws20{word-spacing:-71.731200px;}
.ws32{word-spacing:-32.278875px;}
.ws3{word-spacing:-23.412998px;}
.ws17{word-spacing:-19.510886px;}
.ws33{word-spacing:-3.873485px;}
.ws2e{word-spacing:-2.510592px;}
.wsb{word-spacing:-2.408729px;}
.ws12{word-spacing:-1.219430px;}
.ws2f{word-spacing:-0.932506px;}
.ws9{word-spacing:-0.445091px;}
.ws4{word-spacing:-0.183273px;}
.ws16{word-spacing:-0.071731px;}
.ws1e{word-spacing:0.000000px;}
.ws2b{word-spacing:0.430387px;}
.wse{word-spacing:0.573850px;}
.ws21{word-spacing:1.040102px;}
.ws27{word-spacing:2.080205px;}
.ws1f{word-spacing:2.116070px;}
.ws8{word-spacing:2.369457px;}
.ws13{word-spacing:2.510592px;}
.ws2a{word-spacing:2.582323px;}
.ws25{word-spacing:2.940979px;}
.wsc{word-spacing:3.613094px;}
.ws2d{word-spacing:3.801754px;}
.ws14{word-spacing:3.873485px;}
.ws1d{word-spacing:3.945216px;}
.ws1{word-spacing:4.648169px;}
.ws5{word-spacing:5.314914px;}
.ws26{word-spacing:5.379840px;}
.ws35{word-spacing:5.738496px;}
.ws15{word-spacing:6.455775px;}
.ws6{word-spacing:7.147642px;}
.ws34{word-spacing:7.173120px;}
.ws0{word-spacing:7.748438px;}
.ws3b{word-spacing:8.787072px;}
.ws36{word-spacing:8.822938px;}
.ws3c{word-spacing:8.858803px;}
.wsa{word-spacing:8.980371px;}
.ws22{word-spacing:9.181594px;}
.ws19{word-spacing:9.325056px;}
.ws39{word-spacing:9.827174px;}
.ws7{word-spacing:10.813100px;}
.ws37{word-spacing:11.261798px;}
.ws24{word-spacing:11.336078px;}
.ws18{word-spacing:11.835648px;}
.ws1b{word-spacing:11.907379px;}
.ws2c{word-spacing:12.290078px;}
.ws29{word-spacing:12.481229px;}
.ws23{word-spacing:12.696422px;}
.ws10{word-spacing:13.088191px;}
.wsf{word-spacing:13.413734px;}
.ws31{word-spacing:14.131046px;}
.ws30{word-spacing:14.346240px;}
.ws1a{word-spacing:15.565670px;}
.ws11{word-spacing:15.852595px;}
.ws28{word-spacing:17.717606px;}
.ws38{word-spacing:19.152230px;}
.ws2{word-spacing:20.744605px;}
.ws3a{word-spacing:30.700954px;}
.wsd{word-spacing:83.925075px;}
.ws1c{word-spacing:107.990398px;}
._3{margin-left:-11.653650px;}
._12{margin-left:-9.709486px;}
._5{margin-left:-6.167309px;}
._7{margin-left:-4.942268px;}
._0{margin-left:-3.843225px;}
._4{margin-left:-2.324084px;}
._d{margin-left:-1.046381px;}
._6{width:2.324084px;}
._2{width:3.843225px;}
._18{width:7.818701px;}
._16{width:11.978575px;}
._e{width:17.083651px;}
._b{width:21.928183px;}
._1a{width:23.384371px;}
._14{width:26.899200px;}
._c{width:28.113197px;}
._10{width:29.516483px;}
._9{width:30.829117px;}
._1c{width:33.348803px;}
._8{width:34.365449px;}
._17{width:35.935757px;}
._13{width:47.521015px;}
._a{width:50.792770px;}
._1b{width:54.696567px;}
._19{width:56.838896px;}
._15{width:58.231375px;}
._f{width:59.895552px;}
._1{width:61.863525px;}
._11{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y22{bottom:61.467000px;}
.y21{bottom:106.299000px;}
.y20{bottom:126.669000px;}
.y1f{bottom:138.970500px;}
.y36{bottom:142.756500px;}
.y1e{bottom:169.533000px;}
.y35{bottom:179.214000px;}
.y1d{bottom:191.200500px;}
.y34{bottom:215.362500px;}
.y1c{bottom:216.939000px;}
.y1b{bottom:223.122000px;}
.y33{bottom:254.422500px;}
.y1a{bottom:255.043500px;}
.y32{bottom:280.573500px;}
.y19{bottom:294.471000px;}
.y31{bottom:306.726000px;}
.y30{bottom:345.784500px;}
.y18{bottom:353.238000px;}
.y17{bottom:374.905500px;}
.y2f{bottom:385.212000px;}
.y4d{bottom:394.344000px;}
.y16{bottom:396.574500px;}
.y4c{bottom:416.013000px;}
.y15{bottom:418.243500px;}
.y14{bottom:439.912500px;}
.y2e{bottom:445.032000px;}
.y2d{bottom:466.701000px;}
.y4b{bottom:474.667500px;}
.y13{bottom:479.340000px;}
.y2c{bottom:488.370000px;}
.y4a{bottom:496.336500px;}
.y2b{bottom:510.039000px;}
.y2a{bottom:531.708000px;}
.y49{bottom:532.948500px;}
.y12{bottom:538.105500px;}
.y29{bottom:553.377000px;}
.y48{bottom:554.617500px;}
.y11{bottom:558.430500px;}
.y28{bottom:575.044500px;}
.y10{bottom:578.754000px;}
.y47{bottom:591.231000px;}
.y27{bottom:596.713500px;}
.yf{bottom:599.077500px;}
.y46{bottom:612.898500px;}
.ye{bottom:619.401000px;}
.y26{bottom:636.141000px;}
.yd{bottom:639.724500px;}
.y45{bottom:649.512000px;}
.yc{bottom:660.049500px;}
.yb{bottom:680.373000px;}
.y44{bottom:688.939500px;}
.y25{bottom:695.961000px;}
.ya{bottom:700.696500px;}
.y9{bottom:722.260500px;}
.y24{bottom:732.418500px;}
.y43{bottom:748.839000px;}
.y23{bottom:768.877500px;}
.y42{bottom:770.508000px;}
.y8{bottom:779.572500px;}
.y41{bottom:809.935500px;}
.y7{bottom:829.450500px;}
.y6{bottom:864.159000px;}
.y40{bottom:869.835000px;}
.y3f{bottom:891.504000px;}
.y5{bottom:900.807000px;}
.y3e{bottom:913.173000px;}
.y3d{bottom:934.842000px;}
.y4{bottom:954.045000px;}
.y3c{bottom:974.269500px;}
.y3{bottom:991.405500px;}
.y2{bottom:1028.764500px;}
.y3b{bottom:1034.169000px;}
.y3a{bottom:1055.838000px;}
.y1{bottom:1066.125000px;}
.y39{bottom:1077.507000px;}
.y38{bottom:1099.176000px;}
.y37{bottom:1138.602000px;}
.h4{height:44.831700px;}
.h6{height:45.687311px;}
.h7{height:49.090950px;}
.hf{height:51.287808px;}
.h9{height:53.798400px;}
.he{height:60.171908px;}
.ha{height:62.385908px;}
.h5{height:64.557900px;}
.h8{height:72.304680px;}
.h3{height:76.067700px;}
.h2{height:86.782500px;}
.hb{height:88.491908px;}
.hc{height:102.320400px;}
.hd{height:103.004400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:106.299000px;}
.x15{left:127.759500px;}
.x11{left:132.639000px;}
.x4{left:140.493000px;}
.x2{left:144.447000px;}
.x3{left:146.205000px;}
.xb{left:150.196500px;}
.x1{left:151.729500px;}
.xa{left:174.742500px;}
.x6{left:214.474500px;}
.x13{left:234.876000px;}
.x12{left:236.098500px;}
.x7{left:266.385000px;}
.x14{left:292.189500px;}
.x5{left:354.150000px;}
.xe{left:373.656000px;}
.x8{left:384.708000px;}
.xd{left:392.236500px;}
.x9{left:410.455500px;}
.x10{left:442.066500px;}
.xf{left:466.327500px;}
@media print{
.v2{vertical-align:-27.765333pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.421333pt;}
.v6{vertical-align:21.984000pt;}
.v4{vertical-align:23.141333pt;}
.v5{vertical-align:25.104000pt;}
.v9{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.va{vertical-align:43.130667pt;}
.v8{vertical-align:48.309333pt;}
.ls16{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.003903pt;}
.ls1f{letter-spacing:1.657788pt;}
.ls9{letter-spacing:2.653398pt;}
.ls0{letter-spacing:2.654400pt;}
.ls1e{letter-spacing:2.655975pt;}
.ls19{letter-spacing:2.658731pt;}
.ls20{letter-spacing:2.869248pt;}
.lse{letter-spacing:3.698142pt;}
.ls12{letter-spacing:5.903177pt;}
.ls3{letter-spacing:5.905270pt;}
.lsf{letter-spacing:5.907420pt;}
.ls8{letter-spacing:6.375925pt;}
.ls1b{letter-spacing:7.077478pt;}
.ls1a{letter-spacing:9.741398pt;}
.lsc{letter-spacing:13.899913pt;}
.lsb{letter-spacing:14.154957pt;}
.lsa{letter-spacing:16.823925pt;}
.ls6{letter-spacing:17.725577pt;}
.ls1d{letter-spacing:20.365398pt;}
.ls13{letter-spacing:20.370731pt;}
.ls1c{letter-spacing:20.786108pt;}
.ls18{letter-spacing:20.849869pt;}
.ls1{letter-spacing:21.487479pt;}
.ls4{letter-spacing:22.248064pt;}
.ls10{letter-spacing:23.469398pt;}
.ls7{letter-spacing:24.068654pt;}
.ls14{letter-spacing:24.084905pt;}
.ls2{letter-spacing:24.179362pt;}
.ls5{letter-spacing:24.548011pt;}
.ls17{letter-spacing:31.242923pt;}
.lsd{letter-spacing:802.560546pt;}
.ls15{letter-spacing:870.848649pt;}
.ws20{word-spacing:-63.761067pt;}
.ws32{word-spacing:-28.692333pt;}
.ws3{word-spacing:-20.811554pt;}
.ws17{word-spacing:-17.343010pt;}
.ws33{word-spacing:-3.443098pt;}
.ws2e{word-spacing:-2.231637pt;}
.wsb{word-spacing:-2.141093pt;}
.ws12{word-spacing:-1.083938pt;}
.ws2f{word-spacing:-0.828894pt;}
.ws9{word-spacing:-0.395637pt;}
.ws4{word-spacing:-0.162909pt;}
.ws16{word-spacing:-0.063761pt;}
.ws1e{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.382566pt;}
.wse{word-spacing:0.510089pt;}
.ws21{word-spacing:0.924535pt;}
.ws27{word-spacing:1.849071pt;}
.ws1f{word-spacing:1.880951pt;}
.ws8{word-spacing:2.106184pt;}
.ws13{word-spacing:2.231637pt;}
.ws2a{word-spacing:2.295398pt;}
.ws25{word-spacing:2.614204pt;}
.wsc{word-spacing:3.211639pt;}
.ws2d{word-spacing:3.379337pt;}
.ws14{word-spacing:3.443098pt;}
.ws1d{word-spacing:3.506859pt;}
.ws1{word-spacing:4.131706pt;}
.ws5{word-spacing:4.724368pt;}
.ws26{word-spacing:4.782080pt;}
.ws35{word-spacing:5.100885pt;}
.ws15{word-spacing:5.738467pt;}
.ws6{word-spacing:6.353460pt;}
.ws34{word-spacing:6.376107pt;}
.ws0{word-spacing:6.887500pt;}
.ws3b{word-spacing:7.810731pt;}
.ws36{word-spacing:7.842611pt;}
.ws3c{word-spacing:7.874492pt;}
.wsa{word-spacing:7.982552pt;}
.ws22{word-spacing:8.161417pt;}
.ws19{word-spacing:8.288939pt;}
.ws39{word-spacing:8.735266pt;}
.ws7{word-spacing:9.611644pt;}
.ws37{word-spacing:10.010487pt;}
.ws24{word-spacing:10.076513pt;}
.ws18{word-spacing:10.520576pt;}
.ws1b{word-spacing:10.584337pt;}
.ws2c{word-spacing:10.924513pt;}
.ws29{word-spacing:11.094426pt;}
.ws23{word-spacing:11.285709pt;}
.ws10{word-spacing:11.633947pt;}
.wsf{word-spacing:11.923319pt;}
.ws31{word-spacing:12.560930pt;}
.ws30{word-spacing:12.752213pt;}
.ws1a{word-spacing:13.836151pt;}
.ws11{word-spacing:14.091196pt;}
.ws28{word-spacing:15.748983pt;}
.ws38{word-spacing:17.024205pt;}
.ws2{word-spacing:18.439649pt;}
.ws3a{word-spacing:27.289737pt;}
.wsd{word-spacing:74.600067pt;}
.ws1c{word-spacing:95.991465pt;}
._3{margin-left:-10.358800pt;}
._12{margin-left:-8.630654pt;}
._5{margin-left:-5.482053pt;}
._7{margin-left:-4.393127pt;}
._0{margin-left:-3.416200pt;}
._4{margin-left:-2.065853pt;}
._d{margin-left:-0.930117pt;}
._6{width:2.065853pt;}
._2{width:3.416200pt;}
._18{width:6.949956pt;}
._16{width:10.647622pt;}
._e{width:15.185467pt;}
._b{width:19.491718pt;}
._1a{width:20.786108pt;}
._14{width:23.910400pt;}
._c{width:24.989508pt;}
._10{width:26.236874pt;}
._9{width:27.403659pt;}
._1c{width:29.643381pt;}
._8{width:30.547066pt;}
._17{width:31.942895pt;}
._13{width:42.240902pt;}
._a{width:45.149129pt;}
._1b{width:48.619171pt;}
._19{width:50.523463pt;}
._15{width:51.761222pt;}
._f{width:53.240491pt;}
._1{width:54.989800pt;}
._11{width:103.292400pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:54.637333pt;}
.y21{bottom:94.488000pt;}
.y20{bottom:112.594667pt;}
.y1f{bottom:123.529333pt;}
.y36{bottom:126.894667pt;}
.y1e{bottom:150.696000pt;}
.y35{bottom:159.301333pt;}
.y1d{bottom:169.956000pt;}
.y34{bottom:191.433333pt;}
.y1c{bottom:192.834667pt;}
.y1b{bottom:198.330667pt;}
.y33{bottom:226.153333pt;}
.y1a{bottom:226.705333pt;}
.y32{bottom:249.398667pt;}
.y19{bottom:261.752000pt;}
.y31{bottom:272.645333pt;}
.y30{bottom:307.364000pt;}
.y18{bottom:313.989333pt;}
.y17{bottom:333.249333pt;}
.y2f{bottom:342.410667pt;}
.y4d{bottom:350.528000pt;}
.y16{bottom:352.510667pt;}
.y4c{bottom:369.789333pt;}
.y15{bottom:371.772000pt;}
.y14{bottom:391.033333pt;}
.y2e{bottom:395.584000pt;}
.y2d{bottom:414.845333pt;}
.y4b{bottom:421.926667pt;}
.y13{bottom:426.080000pt;}
.y2c{bottom:434.106667pt;}
.y4a{bottom:441.188000pt;}
.y2b{bottom:453.368000pt;}
.y2a{bottom:472.629333pt;}
.y49{bottom:473.732000pt;}
.y12{bottom:478.316000pt;}
.y29{bottom:491.890667pt;}
.y48{bottom:492.993333pt;}
.y11{bottom:496.382667pt;}
.y28{bottom:511.150667pt;}
.y10{bottom:514.448000pt;}
.y47{bottom:525.538667pt;}
.y27{bottom:530.412000pt;}
.yf{bottom:532.513333pt;}
.y46{bottom:544.798667pt;}
.ye{bottom:550.578667pt;}
.y26{bottom:565.458667pt;}
.yd{bottom:568.644000pt;}
.y45{bottom:577.344000pt;}
.yc{bottom:586.710667pt;}
.yb{bottom:604.776000pt;}
.y44{bottom:612.390667pt;}
.y25{bottom:618.632000pt;}
.ya{bottom:622.841333pt;}
.y9{bottom:642.009333pt;}
.y24{bottom:651.038667pt;}
.y43{bottom:665.634667pt;}
.y23{bottom:683.446667pt;}
.y42{bottom:684.896000pt;}
.y8{bottom:692.953333pt;}
.y41{bottom:719.942667pt;}
.y7{bottom:737.289333pt;}
.y6{bottom:768.141333pt;}
.y40{bottom:773.186667pt;}
.y3f{bottom:792.448000pt;}
.y5{bottom:800.717333pt;}
.y3e{bottom:811.709333pt;}
.y3d{bottom:830.970667pt;}
.y4{bottom:848.040000pt;}
.y3c{bottom:866.017333pt;}
.y3{bottom:881.249333pt;}
.y2{bottom:914.457333pt;}
.y3b{bottom:919.261333pt;}
.y3a{bottom:938.522667pt;}
.y1{bottom:947.666667pt;}
.y39{bottom:957.784000pt;}
.y38{bottom:977.045333pt;}
.y37{bottom:1012.090667pt;}
.h4{height:39.850400pt;}
.h6{height:40.610943pt;}
.h7{height:43.636400pt;}
.hf{height:45.589163pt;}
.h9{height:47.820800pt;}
.he{height:53.486141pt;}
.ha{height:55.454141pt;}
.h5{height:57.384800pt;}
.h8{height:64.270827pt;}
.h3{height:67.615733pt;}
.h2{height:77.140000pt;}
.hb{height:78.659474pt;}
.hc{height:90.951467pt;}
.hd{height:91.559467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:94.488000pt;}
.x15{left:113.564000pt;}
.x11{left:117.901333pt;}
.x4{left:124.882667pt;}
.x2{left:128.397333pt;}
.x3{left:129.960000pt;}
.xb{left:133.508000pt;}
.x1{left:134.870667pt;}
.xa{left:155.326667pt;}
.x6{left:190.644000pt;}
.x13{left:208.778667pt;}
.x12{left:209.865333pt;}
.x7{left:236.786667pt;}
.x14{left:259.724000pt;}
.x5{left:314.800000pt;}
.xe{left:332.138667pt;}
.x8{left:341.962667pt;}
.xd{left:348.654667pt;}
.x9{left:364.849333pt;}
.x10{left:392.948000pt;}
.xf{left:414.513333pt;}
}




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