
    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_4185eb9d093dcf276927a7b3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_ed600d5d12207d9800c9df62.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_fa5481c8ef706cc4c31bf5ab.woff')format("woff");}.ff3{font-family:ff3;line-height:0.911621;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_94b8499c11a63e27e0eb2c34.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_1ba3d05fa199dc7788f90c96.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_236a4b5392121c140e1358d0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dcd35ca8f6d98cd2c848f2cf.woff')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_295ab37748e12a601307dd03.woff')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_f436281af10d827a81932b33.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0e1dc96e69e3cee1b6fb33db.woff')format("woff");}.ffa{font-family:ffa;line-height:0.918945;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_2c6649b64e4834a885d61d19.woff')format("woff");}.ffb{font-family:ffb;line-height:0.911621;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_842a33371f621b59361949e6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4f2834e97c78c7cf906ba1ea.woff')format("woff");}.ffd{font-family:ffd;line-height:0.918945;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:ffe;src:url('chunks/assets/font_c7298fb14d87c2d09117e488.woff')format("woff");}.ffe{font-family:ffe;line-height:0.924316;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:fff;src:url('chunks/assets/font_91543e33bcbba75655dc7781.woff')format("woff");}.fff{font-family:fff;line-height:0.922852;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:ff10;src:url('chunks/assets/font_060303dd572a373cd2b8b0db.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.520000px;}
.ls2{letter-spacing:13.680000px;}
.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;}
}
.ws3{word-spacing:-20.520000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws6{word-spacing:-2.520000px;}
.ws2d{word-spacing:-1.872000px;}
.ws26{word-spacing:-1.584000px;}
.ws21{word-spacing:-1.260000px;}
.ws5{word-spacing:-1.224000px;}
.ws2c{word-spacing:-1.152000px;}
.ws7{word-spacing:-1.080000px;}
.ws3e{word-spacing:-0.624000px;}
.ws2e{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.360000px;}
.ws3b{word-spacing:-0.300000px;}
.ws49{word-spacing:-0.240000px;}
.ws20{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws15{word-spacing:0.180000px;}
.ws36{word-spacing:0.288000px;}
.ws2a{word-spacing:0.528000px;}
.ws47{word-spacing:0.576000px;}
.ws8{word-spacing:0.672000px;}
.ws9{word-spacing:0.768000px;}
.ws1e{word-spacing:0.780000px;}
.wsf{word-spacing:0.840000px;}
.ws16{word-spacing:0.900000px;}
.wsb{word-spacing:1.152000px;}
.ws29{word-spacing:1.296000px;}
.ws1a{word-spacing:1.500000px;}
.ws28{word-spacing:2.064000px;}
.wsa{word-spacing:2.208000px;}
.ws3d{word-spacing:2.520000px;}
.ws32{word-spacing:3.024000px;}
.ws38{word-spacing:3.060000px;}
.ws31{word-spacing:3.456000px;}
.ws10{word-spacing:3.540000px;}
.ws30{word-spacing:3.648000px;}
.ws46{word-spacing:3.840000px;}
.ws11{word-spacing:4.560000px;}
.ws39{word-spacing:4.656000px;}
.ws25{word-spacing:5.712000px;}
.ws1b{word-spacing:5.880000px;}
.ws2b{word-spacing:6.240000px;}
.ws48{word-spacing:6.672000px;}
.ws13{word-spacing:6.900000px;}
.ws27{word-spacing:7.296000px;}
.ws19{word-spacing:7.620000px;}
.ws22{word-spacing:7.980000px;}
.ws14{word-spacing:8.400000px;}
.ws24{word-spacing:8.448000px;}
.ws3f{word-spacing:8.976000px;}
.ws45{word-spacing:9.072000px;}
.ws23{word-spacing:9.168000px;}
.ws35{word-spacing:9.180000px;}
.ws37{word-spacing:9.300000px;}
.ws3c{word-spacing:9.840000px;}
.wsc{word-spacing:10.020000px;}
.ws44{word-spacing:10.464000px;}
.ws42{word-spacing:10.608000px;}
.ws2f{word-spacing:10.992000px;}
.ws43{word-spacing:11.856000px;}
.ws4a{word-spacing:12.432000px;}
.ws12{word-spacing:13.380000px;}
.ws1c{word-spacing:13.620000px;}
.ws1d{word-spacing:13.680000px;}
.ws17{word-spacing:14.940000px;}
.ws41{word-spacing:15.504000px;}
.ws34{word-spacing:16.512000px;}
.ws3a{word-spacing:16.752000px;}
.ws18{word-spacing:16.920000px;}
.ws40{word-spacing:17.664000px;}
.wse{word-spacing:18.180000px;}
.wsd{word-spacing:23.880000px;}
.ws0{word-spacing:24.456000px;}
.ws4b{word-spacing:24.768000px;}
.ws4d{word-spacing:24.912000px;}
.ws33{word-spacing:27.216000px;}
.ws4c{word-spacing:27.840000px;}
._5{margin-left:-6.642000px;}
._e{margin-left:-5.408400px;}
._4{margin-left:-3.967200px;}
._2{margin-left:-2.556000px;}
._3{margin-left:-1.281600px;}
._9{width:1.063200px;}
._6{width:2.198400px;}
._12{width:3.216000px;}
._7{width:4.224000px;}
._8{width:5.904000px;}
._c{width:7.878000px;}
._d{width:9.750000px;}
._f{width:10.980000px;}
._b{width:13.296000px;}
._10{width:16.428000px;}
._15{width:17.536800px;}
._11{width:20.412000px;}
._a{width:21.666000px;}
._14{width:27.186000px;}
._16{width:28.662000px;}
._13{width:29.838000px;}
._0{width:201.000000px;}
._1{width:471.864000px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.232200px;}
.y41{bottom:75.229650px;}
.y2{bottom:75.232200px;}
.y3a{bottom:127.548750px;}
.y28{bottom:127.608900px;}
.y74{bottom:129.545100px;}
.yad{bottom:130.796850px;}
.y3f{bottom:137.938200px;}
.y73{bottom:143.945100px;}
.y39{bottom:150.618750px;}
.y27{bottom:151.968900px;}
.y72{bottom:158.345100px;}
.y38{bottom:173.688750px;}
.y26{bottom:176.328900px;}
.y37{bottom:196.759350px;}
.y25{bottom:200.688900px;}
.y36{bottom:215.971350px;}
.y24{bottom:225.048900px;}
.y35{bottom:230.935350px;}
.y23{bottom:249.408900px;}
.y34{bottom:250.143900px;}
.y22{bottom:273.768900px;}
.y33{bottom:286.713900px;}
.y21{bottom:298.128900px;}
.y32{bottom:309.783900px;}
.y20{bottom:322.488900px;}
.y31{bottom:332.853900px;}
.y1f{bottom:346.848900px;}
.y30{bottom:355.923900px;}
.y1e{bottom:371.208900px;}
.y2f{bottom:378.993900px;}
.y1d{bottom:395.568900px;}
.y2e{bottom:402.063900px;}
.y1c{bottom:419.928900px;}
.y2d{bottom:425.133900px;}
.y1b{bottom:444.288900px;}
.y2c{bottom:448.203900px;}
.y1a{bottom:468.648900px;}
.y2b{bottom:471.273900px;}
.y19{bottom:493.008900px;}
.y2a{bottom:494.343900px;}
.y18{bottom:535.368900px;}
.y29{bottom:535.413900px;}
.yac{bottom:562.616850px;}
.y8b{bottom:565.556400px;}
.y17{bottom:573.608100px;}
.yab{bottom:577.592850px;}
.y8a{bottom:589.841400px;}
.yaa{bottom:592.568850px;}
.y16{bottom:606.416100px;}
.ya9{bottom:607.544850px;}
.y15{bottom:621.704100px;}
.ya8{bottom:626.780850px;}
.y14{bottom:636.992100px;}
.y89{bottom:638.411400px;}
.ya7{bottom:641.756850px;}
.y13{bottom:652.280100px;}
.ya6{bottom:656.732850px;}
.y88{bottom:662.696400px;}
.ya5{bottom:671.708850px;}
.y12{bottom:685.088100px;}
.y87{bottom:686.981400px;}
.ya4{bottom:690.944850px;}
.ya3{bottom:705.920850px;}
.y86{bottom:711.266400px;}
.y3e{bottom:712.870200px;}
.y11{bottom:717.896100px;}
.ya2{bottom:720.896850px;}
.y3d{bottom:727.270200px;}
.y71{bottom:733.022850px;}
.y58{bottom:733.070250px;}
.y10{bottom:733.184100px;}
.y85{bottom:735.551400px;}
.ya1{bottom:740.132850px;}
.y57{bottom:747.794250px;}
.yf{bottom:748.472100px;}
.ya0{bottom:755.108850px;}
.y70{bottom:755.822850px;}
.y84{bottom:759.836400px;}
.y56{bottom:762.518250px;}
.ye{bottom:763.760100px;}
.y9f{bottom:770.084850px;}
.y55{bottom:777.242250px;}
.y6f{bottom:778.622850px;}
.y83{bottom:784.121400px;}
.y9e{bottom:789.320850px;}
.y54{bottom:791.966250px;}
.yd{bottom:796.064100px;}
.y6e{bottom:801.422850px;}
.y9d{bottom:804.296850px;}
.y53{bottom:806.690250px;}
.y82{bottom:808.406400px;}
.yc{bottom:815.612100px;}
.y9c{bottom:819.272850px;}
.y52{bottom:821.414250px;}
.y6d{bottom:824.195700px;}
.y81{bottom:832.691400px;}
.y9b{bottom:834.248850px;}
.yb{bottom:835.160100px;}
.y51{bottom:836.138250px;}
.y6c{bottom:838.895700px;}
.y9a{bottom:849.224850px;}
.ya{bottom:850.448100px;}
.y50{bottom:850.862250px;}
.y6b{bottom:853.595700px;}
.y80{bottom:856.976400px;}
.y4f{bottom:865.586250px;}
.y9{bottom:865.736100px;}
.y6a{bottom:868.295700px;}
.y99{bottom:868.460850px;}
.y4e{bottom:880.310250px;}
.y7f{bottom:881.261400px;}
.y69{bottom:882.995700px;}
.y98{bottom:883.436850px;}
.y8{bottom:885.279450px;}
.y4d{bottom:895.005000px;}
.y97{bottom:898.412850px;}
.y7e{bottom:905.546400px;}
.y68{bottom:906.194100px;}
.y96{bottom:917.648850px;}
.y4c{bottom:917.835000px;}
.y7d{bottom:929.835150px;}
.y95{bottom:932.624850px;}
.y4b{bottom:940.665000px;}
.y67{bottom:942.446250px;}
.y7c{bottom:946.023150px;}
.y7{bottom:947.414250px;}
.y94{bottom:947.600850px;}
.y66{bottom:957.146250px;}
.y7b{bottom:962.211150px;}
.y93{bottom:962.576850px;}
.y4a{bottom:963.495000px;}
.y65{bottom:971.846250px;}
.y6{bottom:975.314250px;}
.y92{bottom:981.812850px;}
.y49{bottom:986.325000px;}
.y64{bottom:986.546250px;}
.y7a{bottom:986.925000px;}
.y91{bottom:996.788850px;}
.y63{bottom:1001.246250px;}
.y48{bottom:1009.155000px;}
.y90{bottom:1011.764850px;}
.y62{bottom:1015.946250px;}
.y79{bottom:1024.710000px;}
.y8f{bottom:1026.740850px;}
.y61{bottom:1030.646250px;}
.y47{bottom:1031.985000px;}
.y60{bottom:1045.346250px;}
.y78{bottom:1048.995000px;}
.y46{bottom:1054.815000px;}
.y5f{bottom:1060.046250px;}
.y8e{bottom:1064.006400px;}
.y77{bottom:1073.280000px;}
.y5e{bottom:1074.746250px;}
.y45{bottom:1077.645000px;}
.y5d{bottom:1089.446250px;}
.y76{bottom:1097.565000px;}
.y44{bottom:1100.475000px;}
.y5c{bottom:1104.146250px;}
.y5{bottom:1117.219050px;}
.y5b{bottom:1118.846250px;}
.y75{bottom:1121.850000px;}
.y8d{bottom:1123.091400px;}
.y43{bottom:1123.305000px;}
.y5a{bottom:1133.546250px;}
.y42{bottom:1146.135000px;}
.y8c{bottom:1146.176400px;}
.y4{bottom:1148.215050px;}
.y59{bottom:1148.246250px;}
.y3c{bottom:1179.681000px;}
.y3b{bottom:1180.747200px;}
.y40{bottom:1182.019650px;}
.y1{bottom:1204.129800px;}
.h6{height:33.328125px;}
.h3{height:33.351562px;}
.h2{height:39.990234px;}
.h7{height:40.031250px;}
.h8{height:40.664062px;}
.h5{height:41.689453px;}
.h4{height:48.796875px;}
.h9{height:50.039062px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xf{left:99.631350px;}
.x9{left:113.539350px;}
.x8{left:127.559100px;}
.x6{left:151.113450px;}
.x7{left:193.827450px;}
.xd{left:259.774950px;}
.x11{left:261.379350px;}
.x5{left:264.744900px;}
.xe{left:321.223350px;}
.xc{left:330.799950px;}
.x2{left:336.611700px;}
.x4{left:349.404900px;}
.x3{left:397.076700px;}
.xa{left:457.099350px;}
.xb{left:485.599350px;}
.x10{left:793.811400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.240000pt;}
.ls2{letter-spacing:12.160000pt;}
.ws3{word-spacing:-18.240000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws6{word-spacing:-2.240000pt;}
.ws2d{word-spacing:-1.664000pt;}
.ws26{word-spacing:-1.408000pt;}
.ws21{word-spacing:-1.120000pt;}
.ws5{word-spacing:-1.088000pt;}
.ws2c{word-spacing:-1.024000pt;}
.ws7{word-spacing:-0.960000pt;}
.ws3e{word-spacing:-0.554667pt;}
.ws2e{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws3b{word-spacing:-0.266667pt;}
.ws49{word-spacing:-0.213333pt;}
.ws20{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws15{word-spacing:0.160000pt;}
.ws36{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.469333pt;}
.ws47{word-spacing:0.512000pt;}
.ws8{word-spacing:0.597333pt;}
.ws9{word-spacing:0.682667pt;}
.ws1e{word-spacing:0.693333pt;}
.wsf{word-spacing:0.746667pt;}
.ws16{word-spacing:0.800000pt;}
.wsb{word-spacing:1.024000pt;}
.ws29{word-spacing:1.152000pt;}
.ws1a{word-spacing:1.333333pt;}
.ws28{word-spacing:1.834667pt;}
.wsa{word-spacing:1.962667pt;}
.ws3d{word-spacing:2.240000pt;}
.ws32{word-spacing:2.688000pt;}
.ws38{word-spacing:2.720000pt;}
.ws31{word-spacing:3.072000pt;}
.ws10{word-spacing:3.146667pt;}
.ws30{word-spacing:3.242667pt;}
.ws46{word-spacing:3.413333pt;}
.ws11{word-spacing:4.053333pt;}
.ws39{word-spacing:4.138667pt;}
.ws25{word-spacing:5.077333pt;}
.ws1b{word-spacing:5.226667pt;}
.ws2b{word-spacing:5.546667pt;}
.ws48{word-spacing:5.930667pt;}
.ws13{word-spacing:6.133333pt;}
.ws27{word-spacing:6.485333pt;}
.ws19{word-spacing:6.773333pt;}
.ws22{word-spacing:7.093333pt;}
.ws14{word-spacing:7.466667pt;}
.ws24{word-spacing:7.509333pt;}
.ws3f{word-spacing:7.978667pt;}
.ws45{word-spacing:8.064000pt;}
.ws23{word-spacing:8.149333pt;}
.ws35{word-spacing:8.160000pt;}
.ws37{word-spacing:8.266667pt;}
.ws3c{word-spacing:8.746667pt;}
.wsc{word-spacing:8.906667pt;}
.ws44{word-spacing:9.301333pt;}
.ws42{word-spacing:9.429333pt;}
.ws2f{word-spacing:9.770667pt;}
.ws43{word-spacing:10.538667pt;}
.ws4a{word-spacing:11.050667pt;}
.ws12{word-spacing:11.893333pt;}
.ws1c{word-spacing:12.106667pt;}
.ws1d{word-spacing:12.160000pt;}
.ws17{word-spacing:13.280000pt;}
.ws41{word-spacing:13.781333pt;}
.ws34{word-spacing:14.677333pt;}
.ws3a{word-spacing:14.890667pt;}
.ws18{word-spacing:15.040000pt;}
.ws40{word-spacing:15.701333pt;}
.wse{word-spacing:16.160000pt;}
.wsd{word-spacing:21.226667pt;}
.ws0{word-spacing:21.738667pt;}
.ws4b{word-spacing:22.016000pt;}
.ws4d{word-spacing:22.144000pt;}
.ws33{word-spacing:24.192000pt;}
.ws4c{word-spacing:24.746667pt;}
._5{margin-left:-5.904000pt;}
._e{margin-left:-4.807467pt;}
._4{margin-left:-3.526400pt;}
._2{margin-left:-2.272000pt;}
._3{margin-left:-1.139200pt;}
._9{width:0.945067pt;}
._6{width:1.954133pt;}
._12{width:2.858667pt;}
._7{width:3.754667pt;}
._8{width:5.248000pt;}
._c{width:7.002667pt;}
._d{width:8.666667pt;}
._f{width:9.760000pt;}
._b{width:11.818667pt;}
._10{width:14.602667pt;}
._15{width:15.588267pt;}
._11{width:18.144000pt;}
._a{width:19.258667pt;}
._14{width:24.165333pt;}
._16{width:25.477333pt;}
._13{width:26.522667pt;}
._0{width:178.666667pt;}
._1{width:419.434667pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.873067pt;}
.y41{bottom:66.870800pt;}
.y2{bottom:66.873067pt;}
.y3a{bottom:113.376667pt;}
.y28{bottom:113.430133pt;}
.y74{bottom:115.151200pt;}
.yad{bottom:116.263867pt;}
.y3f{bottom:122.611733pt;}
.y73{bottom:127.951200pt;}
.y39{bottom:133.883333pt;}
.y27{bottom:135.083467pt;}
.y72{bottom:140.751200pt;}
.y38{bottom:154.390000pt;}
.y26{bottom:156.736800pt;}
.y37{bottom:174.897200pt;}
.y25{bottom:178.390133pt;}
.y36{bottom:191.974533pt;}
.y24{bottom:200.043467pt;}
.y35{bottom:205.275867pt;}
.y23{bottom:221.696800pt;}
.y34{bottom:222.350133pt;}
.y22{bottom:243.350133pt;}
.y33{bottom:254.856800pt;}
.y21{bottom:265.003467pt;}
.y32{bottom:275.363467pt;}
.y20{bottom:286.656800pt;}
.y31{bottom:295.870133pt;}
.y1f{bottom:308.310133pt;}
.y30{bottom:316.376800pt;}
.y1e{bottom:329.963467pt;}
.y2f{bottom:336.883467pt;}
.y1d{bottom:351.616800pt;}
.y2e{bottom:357.390133pt;}
.y1c{bottom:373.270133pt;}
.y2d{bottom:377.896800pt;}
.y1b{bottom:394.923467pt;}
.y2c{bottom:398.403467pt;}
.y1a{bottom:416.576800pt;}
.y2b{bottom:418.910133pt;}
.y19{bottom:438.230133pt;}
.y2a{bottom:439.416800pt;}
.y18{bottom:475.883467pt;}
.y29{bottom:475.923467pt;}
.yac{bottom:500.103867pt;}
.y8b{bottom:502.716800pt;}
.y17{bottom:509.873867pt;}
.yab{bottom:513.415867pt;}
.y8a{bottom:524.303467pt;}
.yaa{bottom:526.727867pt;}
.y16{bottom:539.036533pt;}
.ya9{bottom:540.039867pt;}
.y15{bottom:552.625867pt;}
.ya8{bottom:557.138533pt;}
.y14{bottom:566.215200pt;}
.y89{bottom:567.476800pt;}
.ya7{bottom:570.450533pt;}
.y13{bottom:579.804533pt;}
.ya6{bottom:583.762533pt;}
.y88{bottom:589.063467pt;}
.ya5{bottom:597.074533pt;}
.y12{bottom:608.967200pt;}
.y87{bottom:610.650133pt;}
.ya4{bottom:614.173200pt;}
.ya3{bottom:627.485200pt;}
.y86{bottom:632.236800pt;}
.y3e{bottom:633.662400pt;}
.y11{bottom:638.129867pt;}
.ya2{bottom:640.797200pt;}
.y3d{bottom:646.462400pt;}
.y71{bottom:651.575867pt;}
.y58{bottom:651.618000pt;}
.y10{bottom:651.719200pt;}
.y85{bottom:653.823467pt;}
.ya1{bottom:657.895867pt;}
.y57{bottom:664.706000pt;}
.yf{bottom:665.308533pt;}
.ya0{bottom:671.207867pt;}
.y70{bottom:671.842533pt;}
.y84{bottom:675.410133pt;}
.y56{bottom:677.794000pt;}
.ye{bottom:678.897867pt;}
.y9f{bottom:684.519867pt;}
.y55{bottom:690.882000pt;}
.y6f{bottom:692.109200pt;}
.y83{bottom:696.996800pt;}
.y9e{bottom:701.618533pt;}
.y54{bottom:703.970000pt;}
.yd{bottom:707.612533pt;}
.y6e{bottom:712.375867pt;}
.y9d{bottom:714.930533pt;}
.y53{bottom:717.058000pt;}
.y82{bottom:718.583467pt;}
.yc{bottom:724.988533pt;}
.y9c{bottom:728.242533pt;}
.y52{bottom:730.146000pt;}
.y6d{bottom:732.618400pt;}
.y81{bottom:740.170133pt;}
.y9b{bottom:741.554533pt;}
.yb{bottom:742.364533pt;}
.y51{bottom:743.234000pt;}
.y6c{bottom:745.685067pt;}
.y9a{bottom:754.866533pt;}
.ya{bottom:755.953867pt;}
.y50{bottom:756.322000pt;}
.y6b{bottom:758.751733pt;}
.y80{bottom:761.756800pt;}
.y4f{bottom:769.410000pt;}
.y9{bottom:769.543200pt;}
.y6a{bottom:771.818400pt;}
.y99{bottom:771.965200pt;}
.y4e{bottom:782.498000pt;}
.y7f{bottom:783.343467pt;}
.y69{bottom:784.885067pt;}
.y98{bottom:785.277200pt;}
.y8{bottom:786.915067pt;}
.y4d{bottom:795.560000pt;}
.y97{bottom:798.589200pt;}
.y7e{bottom:804.930133pt;}
.y68{bottom:805.505867pt;}
.y96{bottom:815.687867pt;}
.y4c{bottom:815.853333pt;}
.y7d{bottom:826.520133pt;}
.y95{bottom:828.999867pt;}
.y4b{bottom:836.146667pt;}
.y67{bottom:837.730000pt;}
.y7c{bottom:840.909467pt;}
.y7{bottom:842.146000pt;}
.y94{bottom:842.311867pt;}
.y66{bottom:850.796667pt;}
.y7b{bottom:855.298800pt;}
.y93{bottom:855.623867pt;}
.y4a{bottom:856.440000pt;}
.y65{bottom:863.863333pt;}
.y6{bottom:866.946000pt;}
.y92{bottom:872.722533pt;}
.y49{bottom:876.733333pt;}
.y64{bottom:876.930000pt;}
.y7a{bottom:877.266667pt;}
.y91{bottom:886.034533pt;}
.y63{bottom:889.996667pt;}
.y48{bottom:897.026667pt;}
.y90{bottom:899.346533pt;}
.y62{bottom:903.063333pt;}
.y79{bottom:910.853333pt;}
.y8f{bottom:912.658533pt;}
.y61{bottom:916.130000pt;}
.y47{bottom:917.320000pt;}
.y60{bottom:929.196667pt;}
.y78{bottom:932.440000pt;}
.y46{bottom:937.613333pt;}
.y5f{bottom:942.263333pt;}
.y8e{bottom:945.783467pt;}
.y77{bottom:954.026667pt;}
.y5e{bottom:955.330000pt;}
.y45{bottom:957.906667pt;}
.y5d{bottom:968.396667pt;}
.y76{bottom:975.613333pt;}
.y44{bottom:978.200000pt;}
.y5c{bottom:981.463333pt;}
.y5{bottom:993.083600pt;}
.y5b{bottom:994.530000pt;}
.y75{bottom:997.200000pt;}
.y8d{bottom:998.303467pt;}
.y43{bottom:998.493333pt;}
.y5a{bottom:1007.596667pt;}
.y42{bottom:1018.786667pt;}
.y8c{bottom:1018.823467pt;}
.y4{bottom:1020.635600pt;}
.y59{bottom:1020.663333pt;}
.y3c{bottom:1048.605333pt;}
.y3b{bottom:1049.553067pt;}
.y40{bottom:1050.684133pt;}
.y1{bottom:1070.337600pt;}
.h6{height:29.625000pt;}
.h3{height:29.645833pt;}
.h2{height:35.546875pt;}
.h7{height:35.583333pt;}
.h8{height:36.145833pt;}
.h5{height:37.057292pt;}
.h4{height:43.375000pt;}
.h9{height:44.479167pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xf{left:88.561200pt;}
.x9{left:100.923867pt;}
.x8{left:113.385867pt;}
.x6{left:134.323067pt;}
.x7{left:172.291067pt;}
.xd{left:230.911067pt;}
.x11{left:232.337200pt;}
.x5{left:235.328800pt;}
.xe{left:285.531867pt;}
.xc{left:294.044400pt;}
.x2{left:299.210400pt;}
.x4{left:310.582133pt;}
.x3{left:352.957067pt;}
.xa{left:406.310533pt;}
.xb{left:431.643867pt;}
.x10{left:705.610133pt;}
}




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