
    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_078080a81e8cac7d1f0238d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_07b914cc4484ed0e2c174fee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_613ea7d6411f697eb3948bee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707000;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_7f93ea3df84bb78395879f75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_d2b293f725b022a49ffa731b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3531d9ac5161e51ed7e90a2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_c9fff4049fc68add2832596b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c3c29d60ba1f665607f16dbf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_452af2141d0f51560d9fa910.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.716000;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_ced8e6a33e234682b2216215.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.389000;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:-23.754000px;}
.v3{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.078000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.002692px;}
.lsd{letter-spacing:0.011656px;}
.ls3{letter-spacing:0.025153px;}
.ls0{letter-spacing:2.986053px;}
.ls6{letter-spacing:4.647277px;}
.lse{letter-spacing:4.712731px;}
.ls4{letter-spacing:9.098189px;}
.ls13{letter-spacing:27.425477px;}
.ls7{letter-spacing:29.127297px;}
.ls12{letter-spacing:29.781843px;}
.ls2{letter-spacing:31.221844px;}
.lsf{letter-spacing:32.007299px;}
.ls8{letter-spacing:32.203663px;}
.ls5{letter-spacing:32.596391px;}
.ls11{letter-spacing:32.727300px;}
.lsc{letter-spacing:32.858209px;}
.ls9{letter-spacing:33.250937px;}
.lsb{letter-spacing:33.316391px;}
.lsa{letter-spacing:34.429120px;}
.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;}
}
.ws13{word-spacing:-42.637126px;}
.ws7{word-spacing:-22.416000px;}
.ws35{word-spacing:-18.183288px;}
.ws22{word-spacing:-7.345954px;}
.ws56{word-spacing:-7.339954px;}
.ws4f{word-spacing:-3.652367px;}
.ws12{word-spacing:-1.950547px;}
.ws5c{word-spacing:-1.819638px;}
.ws44{word-spacing:-1.426910px;}
.ws2a{word-spacing:-1.296001px;}
.ws2c{word-spacing:-0.837819px;}
.ws10{word-spacing:-0.576000px;}
.ws30{word-spacing:-0.445091px;}
.ws59{word-spacing:-0.183273px;}
.ws25{word-spacing:-0.117818px;}
.ws6{word-spacing:0.000000px;}
.ws2f{word-spacing:0.078546px;}
.ws4c{word-spacing:0.144000px;}
.ws29{word-spacing:0.340364px;}
.ws58{word-spacing:0.602182px;}
.ws20{word-spacing:1.191274px;}
.ws19{word-spacing:1.322183px;}
.ws17{word-spacing:1.518547px;}
.ws31{word-spacing:1.584001px;}
.ws4e{word-spacing:1.780365px;}
.ws42{word-spacing:2.173093px;}
.ws2d{word-spacing:2.434911px;}
.ws33{word-spacing:2.762184px;}
.ws3b{word-spacing:3.089457px;}
.ws53{word-spacing:3.416730px;}
.ws52{word-spacing:3.547639px;}
.ws4{word-spacing:3.613094px;}
.wsb{word-spacing:3.678549px;}
.ws15{word-spacing:3.874912px;}
.wsf{word-spacing:3.940367px;}
.ws9{word-spacing:4.162913px;}
.wsa{word-spacing:4.228367px;}
.ws1b{word-spacing:4.267640px;}
.ws28{word-spacing:4.483200px;}
.ws27{word-spacing:4.725822px;}
.ws5a{word-spacing:4.856731px;}
.ws11{word-spacing:4.922186px;}
.ws34{word-spacing:5.053095px;}
.ws23{word-spacing:5.118550px;}
.ws26{word-spacing:5.511277px;}
.wsd{word-spacing:5.707641px;}
.ws47{word-spacing:5.904005px;}
.ws24{word-spacing:6.165823px;}
.ws1d{word-spacing:6.231278px;}
.ws1e{word-spacing:6.624006px;}
.ws39{word-spacing:6.820369px;}
.ws55{word-spacing:6.951279px;}
.ws1f{word-spacing:7.082188px;}
.ws1c{word-spacing:7.605825px;}
.ws18{word-spacing:7.671279px;}
.ws4d{word-spacing:7.736734px;}
.ws38{word-spacing:7.802188px;}
.ws37{word-spacing:7.867643px;}
.ws2{word-spacing:7.990856px;}
.ws54{word-spacing:8.914917px;}
.ws36{word-spacing:9.006553px;}
.ws41{word-spacing:9.045826px;}
.ws21{word-spacing:9.176735px;}
.ws5b{word-spacing:9.242190px;}
.ws46{word-spacing:9.438553px;}
.ws3{word-spacing:9.589000px;}
.ws4b{word-spacing:9.765826px;}
.wsc{word-spacing:9.831281px;}
.ws45{word-spacing:10.224009px;}
.ws5{word-spacing:10.878555px;}
.ws16{word-spacing:11.009464px;}
.ws3a{word-spacing:11.232009px;}
.ws3f{word-spacing:11.297464px;}
.ws49{word-spacing:11.402191px;}
.ws3d{word-spacing:11.860374px;}
.ws3e{word-spacing:11.925828px;}
.ws43{word-spacing:13.000046px;}
.wse{word-spacing:13.038556px;}
.ws2e{word-spacing:13.270046px;}
.ws3c{word-spacing:13.653830px;}
.ws2b{word-spacing:14.413103px;}
.ws50{word-spacing:14.476046px;}
.ws14{word-spacing:14.746046px;}
.ws1{word-spacing:16.418975px;}
.ws4a{word-spacing:20.626046px;}
.ws57{word-spacing:27.556387px;}
.ws32{word-spacing:29.585479px;}
.ws51{word-spacing:30.305480px;}
.ws0{word-spacing:31.322414px;}
.ws48{word-spacing:34.036392px;}
.ws40{word-spacing:35.345484px;}
.ws8{word-spacing:39.639306px;}
.ws1a{word-spacing:58.281600px;}
._14{margin-left:-6.283642px;}
._a{margin-left:-4.252760px;}
._1{margin-left:-2.223667px;}
._f{margin-left:-1.114517px;}
._1f{width:1.109150px;}
._2{width:2.223667px;}
._0{width:4.610401px;}
._1d{width:18.658139px;}
._25{width:19.763711px;}
._28{width:21.990956px;}
._1b{width:23.081516px;}
._1a{width:24.349111px;}
._20{width:26.309171px;}
._17{width:29.127297px;}
._1c{width:31.547328px;}
._26{width:34.212435px;}
._18{width:35.867332px;}
._21{width:39.338215px;}
._1e{width:41.098332px;}
._22{width:46.731006px;}
._19{width:48.500069px;}
._4{width:60.545505px;}
._27{width:62.243746px;}
._6{width:66.894601px;}
._24{width:75.272790px;}
._23{width:80.697600px;}
._c{width:792.000660px;}
._b{width:1142.510043px;}
._5{width:1366.624804px;}
._13{width:1379.782968px;}
._10{width:1464.348522px;}
._11{width:1555.657689px;}
._12{width:1606.910430px;}
._d{width:1663.655990px;}
._15{width:1733.630536px;}
._7{width:1780.692393px;}
._9{width:1828.014280px;}
._8{width:1859.043338px;}
._e{width:1885.488786px;}
._3{width:2079.361733px;}
._16{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2c{bottom:93.813000px;}
.y2b{bottom:176.005500px;}
.y2a{bottom:196.329000px;}
.y71{bottom:210.433500px;}
.y29{bottom:216.652500px;}
.y51{bottom:229.527000px;}
.y28{bottom:236.976000px;}
.y70{bottom:247.434000px;}
.y50{bottom:249.852000px;}
.y4f{bottom:270.175500px;}
.y27{bottom:274.849500px;}
.y6f{bottom:294.181500px;}
.y4e{bottom:303.373500px;}
.y6e{bottom:314.505000px;}
.y4d{bottom:323.697000px;}
.y26{bottom:323.754000px;}
.y6d{bottom:343.678500px;}
.y4c{bottom:344.022000px;}
.y25{bottom:344.077500px;}
.y24{bottom:364.401000px;}
.y4b{bottom:380.332500px;}
.y6c{bottom:381.142500px;}
.y23{bottom:384.724500px;}
.y6b{bottom:401.467500px;}
.y22{bottom:405.514500px;}
.y6a{bottom:421.791000px;}
.y4a{bottom:425.533500px;}
.y21{bottom:425.838000px;}
.y49{bottom:445.858500px;}
.y20{bottom:446.161500px;}
.y69{bottom:450.964500px;}
.y48{bottom:466.182000px;}
.y1f{bottom:466.486500px;}
.y1e{bottom:486.810000px;}
.y68{bottom:488.428500px;}
.y47{bottom:492.943500px;}
.y1d{bottom:507.133500px;}
.y67{bottom:508.752000px;}
.y46{bottom:513.267000px;}
.y1c{bottom:527.923500px;}
.y66{bottom:529.075500px;}
.y7{bottom:532.603500px;}
.y45{bottom:533.590500px;}
.y1b{bottom:548.247000px;}
.y65{bottom:558.249000px;}
.y44{bottom:562.206000px;}
.y1a{bottom:568.570500px;}
.y6{bottom:569.326500px;}
.y19{bottom:588.895500px;}
.y64{bottom:595.713000px;}
.y5{bottom:598.059000px;}
.y43{bottom:598.464000px;}
.y84{bottom:602.821500px;}
.y18{bottom:609.219000px;}
.y63{bottom:616.036500px;}
.y42{bottom:618.787500px;}
.y83{bottom:623.145000px;}
.y17{bottom:631.545000px;}
.y62{bottom:636.360000px;}
.y41{bottom:639.111000px;}
.y82{bottom:643.468500px;}
.y40{bottom:659.434500px;}
.y81{bottom:663.792000px;}
.y61{bottom:665.533500px;}
.y16{bottom:669.163500px;}
.y80{bottom:684.117000px;}
.y3f{bottom:688.050000px;}
.y60{bottom:702.534000px;}
.y7f{bottom:704.440500px;}
.y15{bottom:706.783500px;}
.y3e{bottom:724.308000px;}
.y7e{bottom:724.764000px;}
.y14{bottom:744.403500px;}
.y3d{bottom:744.631500px;}
.y5f{bottom:749.281500px;}
.y4{bottom:759.814500px;}
.y7d{bottom:761.292000px;}
.y3c{bottom:764.955000px;}
.y13{bottom:765.286500px;}
.y5e{bottom:769.606500px;}
.y12{bottom:786.169500px;}
.y3b{bottom:793.570500px;}
.y5d{bottom:797.064000px;}
.y3{bottom:797.095500px;}
.y7c{bottom:806.872500px;}
.y11{bottom:807.052500px;}
.y5c{bottom:817.387500px;}
.y7b{bottom:827.196000px;}
.y10{bottom:827.935500px;}
.y3a{bottom:829.882500px;}
.y5b{bottom:837.711000px;}
.y2{bottom:841.927500px;}
.y7a{bottom:854.245500px;}
.y5a{bottom:858.199500px;}
.yf{bottom:865.555500px;}
.y79{bottom:874.569000px;}
.y39{bottom:875.083500px;}
.y59{bottom:878.523000px;}
.y78{bottom:894.892500px;}
.y38{bottom:895.407000px;}
.y58{bottom:899.010000px;}
.ye{bottom:903.175500px;}
.y77{bottom:915.216000px;}
.y37{bottom:915.730500px;}
.y57{bottom:919.333500px;}
.y36{bottom:936.055500px;}
.y56{bottom:939.822000px;}
.yd{bottom:940.795500px;}
.y76{bottom:951.745500px;}
.y35{bottom:956.379000px;}
.y55{bottom:960.145500px;}
.yc{bottom:961.678500px;}
.y34{bottom:976.702500px;}
.yb{bottom:982.561500px;}
.y33{bottom:997.026000px;}
.y54{bottom:997.146000px;}
.y75{bottom:997.326000px;}
.ya{bottom:1003.444500px;}
.y32{bottom:1017.349500px;}
.y74{bottom:1017.649500px;}
.y31{bottom:1037.674500px;}
.y9{bottom:1041.064500px;}
.y53{bottom:1043.893500px;}
.y73{bottom:1051.422000px;}
.y30{bottom:1057.998000px;}
.y52{bottom:1064.217000px;}
.y2f{bottom:1078.321500px;}
.y8{bottom:1078.683000px;}
.y72{bottom:1085.196000px;}
.y1{bottom:1087.587000px;}
.y2e{bottom:1098.645000px;}
.y2d{bottom:1118.968500px;}
.h6{height:25.336950px;}
.h2{height:41.484266px;}
.h9{height:45.818220px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:61.168950px;}
.h5{height:72.720266px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x6{left:164.010000px;}
.x8{left:260.590500px;}
.x1{left:286.581000px;}
.x7{left:438.466500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.736000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.002393pt;}
.lsd{letter-spacing:0.010361pt;}
.ls3{letter-spacing:0.022358pt;}
.ls0{letter-spacing:2.654270pt;}
.ls6{letter-spacing:4.130913pt;}
.lse{letter-spacing:4.189094pt;}
.ls4{letter-spacing:8.087279pt;}
.ls13{letter-spacing:24.378202pt;}
.ls7{letter-spacing:25.890931pt;}
.ls12{letter-spacing:26.472749pt;}
.ls2{letter-spacing:27.752750pt;}
.lsf{letter-spacing:28.450933pt;}
.ls8{letter-spacing:28.625478pt;}
.ls5{letter-spacing:28.974570pt;}
.ls11{letter-spacing:29.090933pt;}
.lsc{letter-spacing:29.207297pt;}
.ls9{letter-spacing:29.556388pt;}
.lsb{letter-spacing:29.614570pt;}
.lsa{letter-spacing:30.603662pt;}
.ws13{word-spacing:-37.899668pt;}
.ws7{word-spacing:-19.925333pt;}
.ws35{word-spacing:-16.162923pt;}
.ws22{word-spacing:-6.529737pt;}
.ws56{word-spacing:-6.524404pt;}
.ws4f{word-spacing:-3.246548pt;}
.ws12{word-spacing:-1.733820pt;}
.ws5c{word-spacing:-1.617456pt;}
.ws44{word-spacing:-1.268365pt;}
.ws2a{word-spacing:-1.152001pt;}
.ws2c{word-spacing:-0.744728pt;}
.ws10{word-spacing:-0.512000pt;}
.ws30{word-spacing:-0.395637pt;}
.ws59{word-spacing:-0.162909pt;}
.ws25{word-spacing:-0.104727pt;}
.ws6{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.069818pt;}
.ws4c{word-spacing:0.128000pt;}
.ws29{word-spacing:0.302546pt;}
.ws58{word-spacing:0.535273pt;}
.ws20{word-spacing:1.058910pt;}
.ws19{word-spacing:1.175274pt;}
.ws17{word-spacing:1.349819pt;}
.ws31{word-spacing:1.408001pt;}
.ws4e{word-spacing:1.582547pt;}
.ws42{word-spacing:1.931638pt;}
.ws2d{word-spacing:2.164365pt;}
.ws33{word-spacing:2.455275pt;}
.ws3b{word-spacing:2.746184pt;}
.ws53{word-spacing:3.037093pt;}
.ws52{word-spacing:3.153457pt;}
.ws4{word-spacing:3.211639pt;}
.wsb{word-spacing:3.269821pt;}
.ws15{word-spacing:3.444367pt;}
.wsf{word-spacing:3.502548pt;}
.ws9{word-spacing:3.700367pt;}
.wsa{word-spacing:3.758549pt;}
.ws1b{word-spacing:3.793458pt;}
.ws28{word-spacing:3.985067pt;}
.ws27{word-spacing:4.200731pt;}
.ws5a{word-spacing:4.317095pt;}
.ws11{word-spacing:4.375276pt;}
.ws34{word-spacing:4.491640pt;}
.ws23{word-spacing:4.549822pt;}
.ws26{word-spacing:4.898913pt;}
.wsd{word-spacing:5.073459pt;}
.ws47{word-spacing:5.248004pt;}
.ws24{word-spacing:5.480732pt;}
.ws1d{word-spacing:5.538914pt;}
.ws1e{word-spacing:5.888005pt;}
.ws39{word-spacing:6.062551pt;}
.ws55{word-spacing:6.178914pt;}
.ws1f{word-spacing:6.295278pt;}
.ws1c{word-spacing:6.760733pt;}
.ws18{word-spacing:6.818915pt;}
.ws4d{word-spacing:6.877097pt;}
.ws38{word-spacing:6.935279pt;}
.ws37{word-spacing:6.993460pt;}
.ws2{word-spacing:7.102983pt;}
.ws54{word-spacing:7.924370pt;}
.ws36{word-spacing:8.005825pt;}
.ws41{word-spacing:8.040734pt;}
.ws21{word-spacing:8.157098pt;}
.ws5b{word-spacing:8.215280pt;}
.ws46{word-spacing:8.389825pt;}
.ws3{word-spacing:8.523556pt;}
.ws4b{word-spacing:8.680735pt;}
.wsc{word-spacing:8.738916pt;}
.ws45{word-spacing:9.088008pt;}
.ws5{word-spacing:9.669826pt;}
.ws16{word-spacing:9.786190pt;}
.ws3a{word-spacing:9.984008pt;}
.ws3f{word-spacing:10.042190pt;}
.ws49{word-spacing:10.135281pt;}
.ws3d{word-spacing:10.542554pt;}
.ws3e{word-spacing:10.600736pt;}
.ws43{word-spacing:11.555596pt;}
.wse{word-spacing:11.589828pt;}
.ws2e{word-spacing:11.795596pt;}
.ws3c{word-spacing:12.136737pt;}
.ws2b{word-spacing:12.811647pt;}
.ws50{word-spacing:12.867596pt;}
.ws14{word-spacing:13.107596pt;}
.ws1{word-spacing:14.594644pt;}
.ws4a{word-spacing:18.334263pt;}
.ws57{word-spacing:24.494566pt;}
.ws32{word-spacing:26.298204pt;}
.ws51{word-spacing:26.938204pt;}
.ws0{word-spacing:27.842146pt;}
.ws48{word-spacing:30.254571pt;}
.ws40{word-spacing:31.418208pt;}
.ws8{word-spacing:35.234938pt;}
.ws1a{word-spacing:51.805867pt;}
._14{margin-left:-5.585459pt;}
._a{margin-left:-3.780231pt;}
._1{margin-left:-1.976593pt;}
._f{margin-left:-0.990682pt;}
._1f{width:0.985911pt;}
._2{width:1.976593pt;}
._0{width:4.098134pt;}
._1d{width:16.585013pt;}
._25{width:17.567743pt;}
._28{width:19.547517pt;}
._1b{width:20.516903pt;}
._1a{width:21.643654pt;}
._20{width:23.385930pt;}
._17{width:25.890931pt;}
._1c{width:28.042069pt;}
._26{width:30.411053pt;}
._18{width:31.882073pt;}
._21{width:34.967302pt;}
._1e{width:36.531851pt;}
._22{width:41.538672pt;}
._19{width:43.111173pt;}
._4{width:53.818227pt;}
._27{width:55.327774pt;}
._6{width:59.461868pt;}
._24{width:66.909147pt;}
._23{width:71.731200pt;}
._c{width:704.000587pt;}
._b{width:1015.564483pt;}
._5{width:1214.777604pt;}
._13{width:1226.473749pt;}
._10{width:1301.643131pt;}
._11{width:1382.806835pt;}
._12{width:1428.364827pt;}
._d{width:1478.805324pt;}
._15{width:1541.004921pt;}
._7{width:1582.837683pt;}
._9{width:1624.901582pt;}
._8{width:1652.482967pt;}
._e{width:1675.990032pt;}
._3{width:1848.321540pt;}
._16{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:83.389333pt;}
.y2b{bottom:156.449333pt;}
.y2a{bottom:174.514667pt;}
.y71{bottom:187.052000pt;}
.y29{bottom:192.580000pt;}
.y51{bottom:204.024000pt;}
.y28{bottom:210.645333pt;}
.y70{bottom:219.941333pt;}
.y50{bottom:222.090667pt;}
.y4f{bottom:240.156000pt;}
.y27{bottom:244.310667pt;}
.y6f{bottom:261.494667pt;}
.y4e{bottom:269.665333pt;}
.y6e{bottom:279.560000pt;}
.y4d{bottom:287.730667pt;}
.y26{bottom:287.781333pt;}
.y6d{bottom:305.492000pt;}
.y4c{bottom:305.797333pt;}
.y25{bottom:305.846667pt;}
.y24{bottom:323.912000pt;}
.y4b{bottom:338.073333pt;}
.y6c{bottom:338.793333pt;}
.y23{bottom:341.977333pt;}
.y6b{bottom:356.860000pt;}
.y22{bottom:360.457333pt;}
.y6a{bottom:374.925333pt;}
.y4a{bottom:378.252000pt;}
.y21{bottom:378.522667pt;}
.y49{bottom:396.318667pt;}
.y20{bottom:396.588000pt;}
.y69{bottom:400.857333pt;}
.y48{bottom:414.384000pt;}
.y1f{bottom:414.654667pt;}
.y1e{bottom:432.720000pt;}
.y68{bottom:434.158667pt;}
.y47{bottom:438.172000pt;}
.y1d{bottom:450.785333pt;}
.y67{bottom:452.224000pt;}
.y46{bottom:456.237333pt;}
.y1c{bottom:469.265333pt;}
.y66{bottom:470.289333pt;}
.y7{bottom:473.425333pt;}
.y45{bottom:474.302667pt;}
.y1b{bottom:487.330667pt;}
.y65{bottom:496.221333pt;}
.y44{bottom:499.738667pt;}
.y1a{bottom:505.396000pt;}
.y6{bottom:506.068000pt;}
.y19{bottom:523.462667pt;}
.y64{bottom:529.522667pt;}
.y5{bottom:531.608000pt;}
.y43{bottom:531.968000pt;}
.y84{bottom:535.841333pt;}
.y18{bottom:541.528000pt;}
.y63{bottom:547.588000pt;}
.y42{bottom:550.033333pt;}
.y83{bottom:553.906667pt;}
.y17{bottom:561.373333pt;}
.y62{bottom:565.653333pt;}
.y41{bottom:568.098667pt;}
.y82{bottom:571.972000pt;}
.y40{bottom:586.164000pt;}
.y81{bottom:590.037333pt;}
.y61{bottom:591.585333pt;}
.y16{bottom:594.812000pt;}
.y80{bottom:608.104000pt;}
.y3f{bottom:611.600000pt;}
.y60{bottom:624.474667pt;}
.y7f{bottom:626.169333pt;}
.y15{bottom:628.252000pt;}
.y3e{bottom:643.829333pt;}
.y7e{bottom:644.234667pt;}
.y14{bottom:661.692000pt;}
.y3d{bottom:661.894667pt;}
.y5f{bottom:666.028000pt;}
.y4{bottom:675.390667pt;}
.y7d{bottom:676.704000pt;}
.y3c{bottom:679.960000pt;}
.y13{bottom:680.254667pt;}
.y5e{bottom:684.094667pt;}
.y12{bottom:698.817333pt;}
.y3b{bottom:705.396000pt;}
.y5d{bottom:708.501333pt;}
.y3{bottom:708.529333pt;}
.y7c{bottom:717.220000pt;}
.y11{bottom:717.380000pt;}
.y5c{bottom:726.566667pt;}
.y7b{bottom:735.285333pt;}
.y10{bottom:735.942667pt;}
.y3a{bottom:737.673333pt;}
.y5b{bottom:744.632000pt;}
.y2{bottom:748.380000pt;}
.y7a{bottom:759.329333pt;}
.y5a{bottom:762.844000pt;}
.yf{bottom:769.382667pt;}
.y79{bottom:777.394667pt;}
.y39{bottom:777.852000pt;}
.y59{bottom:780.909333pt;}
.y78{bottom:795.460000pt;}
.y38{bottom:795.917333pt;}
.y58{bottom:799.120000pt;}
.ye{bottom:802.822667pt;}
.y77{bottom:813.525333pt;}
.y37{bottom:813.982667pt;}
.y57{bottom:817.185333pt;}
.y36{bottom:832.049333pt;}
.y56{bottom:835.397333pt;}
.yd{bottom:836.262667pt;}
.y76{bottom:845.996000pt;}
.y35{bottom:850.114667pt;}
.y55{bottom:853.462667pt;}
.yc{bottom:854.825333pt;}
.y34{bottom:868.180000pt;}
.yb{bottom:873.388000pt;}
.y33{bottom:886.245333pt;}
.y54{bottom:886.352000pt;}
.y75{bottom:886.512000pt;}
.ya{bottom:891.950667pt;}
.y32{bottom:904.310667pt;}
.y74{bottom:904.577333pt;}
.y31{bottom:922.377333pt;}
.y9{bottom:925.390667pt;}
.y53{bottom:927.905333pt;}
.y73{bottom:934.597333pt;}
.y30{bottom:940.442667pt;}
.y52{bottom:945.970667pt;}
.y2f{bottom:958.508000pt;}
.y8{bottom:958.829333pt;}
.y72{bottom:964.618667pt;}
.y1{bottom:966.744000pt;}
.y2e{bottom:976.573333pt;}
.y2d{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.h2{height:36.874903pt;}
.h9{height:40.727307pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:54.372400pt;}
.h5{height:64.640237pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x6{left:145.786667pt;}
.x8{left:231.636000pt;}
.x1{left:254.738667pt;}
.x7{left:389.748000pt;}
}




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