
    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_8ec36dd5e2d4615c5846c7f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_8ec36dd5e2d4615c5846c7f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_ba1b1618aff8c316e2bf1862.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.720000;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_a4eb66497f99494fc3b94c75.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_2ec0381624a1620feb18f8a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_6e09b7998c82027aa32d153e.woff2')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_a1f651eaa1fcaa9107226707.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e038e163201b7472a361fd7f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3cb02e8938dfbce546e54436.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_0b3fa28b0877e56b4fbc33a9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d3f9a9f5033a3bbae50a3789.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_83d8a3261a5b0a7af709512b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_053c223f2165ebf5f0b7477a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;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_ba1b1618aff8c316e2bf1862.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;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_289d8cb2b8522f9b1421ee5f.woff2')format("woff");}.fff{font-family:fff;line-height:0.945813;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_f8eb7d776856e837e81da109.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708000;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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.440000px;}
.ls5{letter-spacing:2.040000px;}
.ls4{letter-spacing:4.500000px;}
.ls2{letter-spacing:9.480000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws1d{word-spacing:-9.480000px;}
.wsb{word-spacing:-4.914000px;}
.ws1f{word-spacing:-4.500000px;}
.ws1c{word-spacing:-4.380000px;}
.ws4{word-spacing:-3.300000px;}
.ws17{word-spacing:-2.700000px;}
.ws20{word-spacing:-2.040000px;}
.wsa{word-spacing:-1.890000px;}
.wse{word-spacing:-1.728000px;}
.ws1e{word-spacing:-1.440000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.wsd{word-spacing:1.350000px;}
.ws11{word-spacing:2.430000px;}
.wsf{word-spacing:2.484000px;}
.ws5{word-spacing:2.862000px;}
.ws12{word-spacing:3.564000px;}
.ws7{word-spacing:3.726000px;}
.ws19{word-spacing:4.920000px;}
.ws9{word-spacing:5.130000px;}
.ws10{word-spacing:5.292000px;}
.ws14{word-spacing:5.940000px;}
.ws6{word-spacing:6.372000px;}
.ws8{word-spacing:6.966000px;}
.ws1a{word-spacing:7.140000px;}
.ws18{word-spacing:8.940000px;}
.wsc{word-spacing:21.438000px;}
.ws13{word-spacing:26.244000px;}
.ws15{word-spacing:33.621000px;}
.ws1b{word-spacing:54.900000px;}
.ws16{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._22{margin-left:-51.600000px;}
._a{margin-left:-39.528000px;}
._e{margin-left:-15.336000px;}
._2d{margin-left:-11.040000px;}
._3{margin-left:-8.769000px;}
._2c{margin-left:-7.722000px;}
._7{margin-left:-6.614400px;}
._4{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._6{margin-left:-2.752800px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._5{width:3.300000px;}
._8{width:4.390200px;}
._c{width:5.877600px;}
._f{width:7.188000px;}
._1a{width:8.250000px;}
._10{width:9.270000px;}
._d{width:10.644000px;}
._13{width:12.054000px;}
._19{width:13.164000px;}
._16{width:16.068000px;}
._1b{width:17.652000px;}
._17{width:19.428000px;}
._15{width:20.628000px;}
._1c{width:21.900000px;}
._21{width:23.244000px;}
._12{width:24.366000px;}
._9{width:26.244000px;}
._20{width:27.978000px;}
._18{width:30.042000px;}
._27{width:31.302000px;}
._1f{width:32.466000px;}
._24{width:34.188000px;}
._1d{width:36.150000px;}
._1e{width:37.236000px;}
._29{width:38.670000px;}
._28{width:40.344000px;}
._25{width:47.322000px;}
._23{width:49.020000px;}
._2b{width:50.124000px;}
._2a{width:51.492000px;}
._2f{width:56.040000px;}
._2e{width:58.248000px;}
._b{width:64.080000px;}
._11{width:70.020000px;}
._26{width:76.158000px;}
._14{width:105.438000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y64{bottom:92.496300px;}
.y90{bottom:92.700450px;}
.ybc{bottom:93.159600px;}
.y2e{bottom:99.942450px;}
.y63{bottom:113.496300px;}
.y8f{bottom:113.700450px;}
.ybb{bottom:114.159600px;}
.y2d{bottom:120.942450px;}
.y62{bottom:134.496300px;}
.y8e{bottom:134.700450px;}
.yba{bottom:135.159600px;}
.y2c{bottom:141.942450px;}
.y61{bottom:155.496300px;}
.y8d{bottom:155.700450px;}
.yb9{bottom:156.159600px;}
.y2b{bottom:162.192450px;}
.y60{bottom:176.496300px;}
.y8c{bottom:176.700450px;}
.yb8{bottom:177.159600px;}
.y2a{bottom:182.442450px;}
.y5f{bottom:197.496300px;}
.y8b{bottom:197.700450px;}
.yb7{bottom:198.159600px;}
.y29{bottom:202.692450px;}
.y5e{bottom:218.496300px;}
.y8a{bottom:218.700450px;}
.yb6{bottom:219.159600px;}
.y28{bottom:222.942450px;}
.y5d{bottom:239.496300px;}
.y89{bottom:239.700450px;}
.yb5{bottom:240.159600px;}
.y27{bottom:243.192450px;}
.y5c{bottom:260.496300px;}
.y88{bottom:260.700450px;}
.yb4{bottom:261.159600px;}
.y26{bottom:263.442450px;}
.y5b{bottom:281.496300px;}
.y87{bottom:281.700450px;}
.yb3{bottom:282.159600px;}
.y25{bottom:283.692450px;}
.y5a{bottom:302.496300px;}
.y86{bottom:302.700450px;}
.ybd{bottom:303.159600px;}
.y24{bottom:303.942450px;}
.y59{bottom:323.496300px;}
.y85{bottom:323.700450px;}
.yb2{bottom:324.159600px;}
.y23{bottom:324.942450px;}
.y58{bottom:344.496300px;}
.y84{bottom:344.700450px;}
.yb1{bottom:345.159600px;}
.y22{bottom:358.027950px;}
.y57{bottom:365.496300px;}
.y83{bottom:365.700450px;}
.yb0{bottom:366.159600px;}
.y21{bottom:376.023450px;}
.y56{bottom:386.496300px;}
.y82{bottom:386.700450px;}
.yaf{bottom:387.159600px;}
.y20{bottom:394.018950px;}
.y55{bottom:407.496300px;}
.y81{bottom:407.700450px;}
.yae{bottom:408.159600px;}
.y1f{bottom:412.014450px;}
.y54{bottom:428.496300px;}
.y80{bottom:428.700450px;}
.yad{bottom:429.159600px;}
.y1e{bottom:430.009950px;}
.y1d{bottom:448.005450px;}
.y53{bottom:449.496300px;}
.y7f{bottom:449.700450px;}
.yac{bottom:450.159600px;}
.y37{bottom:456.139950px;}
.y1c{bottom:466.000950px;}
.y52{bottom:470.496300px;}
.y7e{bottom:470.700450px;}
.yab{bottom:471.159600px;}
.y36{bottom:478.639950px;}
.y1b{bottom:483.996450px;}
.y51{bottom:491.496300px;}
.y7d{bottom:491.700450px;}
.yaa{bottom:492.159600px;}
.y35{bottom:501.139950px;}
.y1a{bottom:501.991950px;}
.y50{bottom:512.496300px;}
.y7c{bottom:512.700450px;}
.ya9{bottom:513.159600px;}
.y19{bottom:519.987450px;}
.y65{bottom:533.496300px;}
.y7b{bottom:533.700450px;}
.ya8{bottom:534.159600px;}
.y18{bottom:537.982950px;}
.y34{bottom:541.639950px;}
.y4f{bottom:554.496300px;}
.y7a{bottom:554.700450px;}
.ya7{bottom:555.159600px;}
.y17{bottom:555.978450px;}
.y16{bottom:573.973950px;}
.y4e{bottom:575.496300px;}
.y91{bottom:575.700450px;}
.ya6{bottom:576.159600px;}
.y33{bottom:586.639950px;}
.y15{bottom:591.969450px;}
.y4d{bottom:596.496300px;}
.y79{bottom:596.700450px;}
.ya5{bottom:597.159600px;}
.y14{bottom:609.964950px;}
.y4c{bottom:617.496300px;}
.y78{bottom:617.700450px;}
.ya4{bottom:618.159600px;}
.y32{bottom:627.139950px;}
.y13{bottom:627.960450px;}
.y4b{bottom:638.496300px;}
.y77{bottom:638.700450px;}
.ya3{bottom:639.159600px;}
.y12{bottom:645.955950px;}
.y4a{bottom:659.496300px;}
.y76{bottom:659.700450px;}
.ya2{bottom:660.159600px;}
.y31{bottom:663.139950px;}
.y11{bottom:663.951450px;}
.y49{bottom:680.496300px;}
.y75{bottom:680.700450px;}
.ya1{bottom:681.159600px;}
.y10{bottom:681.946950px;}
.y30{bottom:699.139950px;}
.yf{bottom:699.942450px;}
.y48{bottom:701.496300px;}
.y74{bottom:701.700450px;}
.ya0{bottom:702.159600px;}
.ye{bottom:717.942450px;}
.y47{bottom:722.496300px;}
.y73{bottom:722.700450px;}
.y9f{bottom:723.159600px;}
.y2f{bottom:735.139950px;}
.y46{bottom:743.496300px;}
.y72{bottom:743.700450px;}
.y9e{bottom:744.159600px;}
.yd{bottom:752.446950px;}
.y45{bottom:764.496300px;}
.y71{bottom:764.700450px;}
.y9d{bottom:765.159600px;}
.yc{bottom:770.442450px;}
.y44{bottom:785.496300px;}
.y70{bottom:785.700450px;}
.y9c{bottom:786.159600px;}
.yb{bottom:788.442450px;}
.y43{bottom:806.496300px;}
.y6f{bottom:806.700450px;}
.y9b{bottom:807.159600px;}
.y42{bottom:827.496300px;}
.y6e{bottom:827.700450px;}
.y9a{bottom:828.159600px;}
.ya{bottom:833.446950px;}
.y41{bottom:848.496300px;}
.y6d{bottom:848.700450px;}
.y99{bottom:849.159600px;}
.y9{bottom:851.442450px;}
.y8{bottom:869.442450px;}
.y40{bottom:869.496300px;}
.y6c{bottom:869.700450px;}
.y98{bottom:870.159600px;}
.y3f{bottom:890.496300px;}
.y6b{bottom:890.700450px;}
.y97{bottom:891.159600px;}
.y3e{bottom:911.496300px;}
.y6a{bottom:911.700450px;}
.y96{bottom:912.159600px;}
.y7{bottom:914.457450px;}
.y3d{bottom:932.496300px;}
.y69{bottom:932.700450px;}
.y95{bottom:933.159600px;}
.y6{bottom:939.949950px;}
.y3c{bottom:953.496300px;}
.y68{bottom:953.700450px;}
.y94{bottom:954.159600px;}
.y5{bottom:965.442450px;}
.y3b{bottom:974.496300px;}
.y67{bottom:974.700450px;}
.y93{bottom:975.159600px;}
.y3a{bottom:995.496300px;}
.y66{bottom:995.700450px;}
.y92{bottom:996.159600px;}
.y4{bottom:1024.374150px;}
.y39{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.h8{height:37.494141px;}
.h7{height:40.664062px;}
.h9{height:41.689453px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.hb{height:46.200000px;}
.ha{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h6{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x10{left:65.202600px;}
.xf{left:71.253150px;}
.xe{left:73.559100px;}
.x12{left:90.779550px;}
.xd{left:224.187900px;}
.x6{left:281.407950px;}
.x5{left:288.900450px;}
.x7{left:300.757950px;}
.x11{left:399.929550px;}
.x4{left:412.272150px;}
.x13{left:426.929550px;}
.xa{left:447.909450px;}
.xc{left:510.785700px;}
.x9{left:577.158450px;}
.xb{left:594.385800px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x8{left:647.991750px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.813333pt;}
.ls4{letter-spacing:4.000000pt;}
.ls2{letter-spacing:8.426667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-8.426667pt;}
.wsb{word-spacing:-4.368000pt;}
.ws1f{word-spacing:-4.000000pt;}
.ws1c{word-spacing:-3.893333pt;}
.ws4{word-spacing:-2.933333pt;}
.ws17{word-spacing:-2.400000pt;}
.ws20{word-spacing:-1.813333pt;}
.wsa{word-spacing:-1.680000pt;}
.wse{word-spacing:-1.536000pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.wsd{word-spacing:1.200000pt;}
.ws11{word-spacing:2.160000pt;}
.wsf{word-spacing:2.208000pt;}
.ws5{word-spacing:2.544000pt;}
.ws12{word-spacing:3.168000pt;}
.ws7{word-spacing:3.312000pt;}
.ws19{word-spacing:4.373333pt;}
.ws9{word-spacing:4.560000pt;}
.ws10{word-spacing:4.704000pt;}
.ws14{word-spacing:5.280000pt;}
.ws6{word-spacing:5.664000pt;}
.ws8{word-spacing:6.192000pt;}
.ws1a{word-spacing:6.346667pt;}
.ws18{word-spacing:7.946667pt;}
.wsc{word-spacing:19.056000pt;}
.ws13{word-spacing:23.328000pt;}
.ws15{word-spacing:29.885333pt;}
.ws1b{word-spacing:48.800000pt;}
.ws16{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._22{margin-left:-45.866667pt;}
._a{margin-left:-35.136000pt;}
._e{margin-left:-13.632000pt;}
._2d{margin-left:-9.813333pt;}
._3{margin-left:-7.794667pt;}
._2c{margin-left:-6.864000pt;}
._7{margin-left:-5.879467pt;}
._4{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._6{margin-left:-2.446933pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._5{width:2.933333pt;}
._8{width:3.902400pt;}
._c{width:5.224533pt;}
._f{width:6.389333pt;}
._1a{width:7.333333pt;}
._10{width:8.240000pt;}
._d{width:9.461333pt;}
._13{width:10.714667pt;}
._19{width:11.701333pt;}
._16{width:14.282667pt;}
._1b{width:15.690667pt;}
._17{width:17.269333pt;}
._15{width:18.336000pt;}
._1c{width:19.466667pt;}
._21{width:20.661333pt;}
._12{width:21.658667pt;}
._9{width:23.328000pt;}
._20{width:24.869333pt;}
._18{width:26.704000pt;}
._27{width:27.824000pt;}
._1f{width:28.858667pt;}
._24{width:30.389333pt;}
._1d{width:32.133333pt;}
._1e{width:33.098667pt;}
._29{width:34.373333pt;}
._28{width:35.861333pt;}
._25{width:42.064000pt;}
._23{width:43.573333pt;}
._2b{width:44.554667pt;}
._2a{width:45.770667pt;}
._2f{width:49.813333pt;}
._2e{width:51.776000pt;}
._b{width:56.960000pt;}
._11{width:62.240000pt;}
._26{width:67.696000pt;}
._14{width:93.722667pt;}
.fs1{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y64{bottom:82.218933pt;}
.y90{bottom:82.400400pt;}
.ybc{bottom:82.808533pt;}
.y2e{bottom:88.837733pt;}
.y63{bottom:100.885600pt;}
.y8f{bottom:101.067067pt;}
.ybb{bottom:101.475200pt;}
.y2d{bottom:107.504400pt;}
.y62{bottom:119.552267pt;}
.y8e{bottom:119.733733pt;}
.yba{bottom:120.141867pt;}
.y2c{bottom:126.171067pt;}
.y61{bottom:138.218933pt;}
.y8d{bottom:138.400400pt;}
.yb9{bottom:138.808533pt;}
.y2b{bottom:144.171067pt;}
.y60{bottom:156.885600pt;}
.y8c{bottom:157.067067pt;}
.yb8{bottom:157.475200pt;}
.y2a{bottom:162.171067pt;}
.y5f{bottom:175.552267pt;}
.y8b{bottom:175.733733pt;}
.yb7{bottom:176.141867pt;}
.y29{bottom:180.171067pt;}
.y5e{bottom:194.218933pt;}
.y8a{bottom:194.400400pt;}
.yb6{bottom:194.808533pt;}
.y28{bottom:198.171067pt;}
.y5d{bottom:212.885600pt;}
.y89{bottom:213.067067pt;}
.yb5{bottom:213.475200pt;}
.y27{bottom:216.171067pt;}
.y5c{bottom:231.552267pt;}
.y88{bottom:231.733733pt;}
.yb4{bottom:232.141867pt;}
.y26{bottom:234.171067pt;}
.y5b{bottom:250.218933pt;}
.y87{bottom:250.400400pt;}
.yb3{bottom:250.808533pt;}
.y25{bottom:252.171067pt;}
.y5a{bottom:268.885600pt;}
.y86{bottom:269.067067pt;}
.ybd{bottom:269.475200pt;}
.y24{bottom:270.171067pt;}
.y59{bottom:287.552267pt;}
.y85{bottom:287.733733pt;}
.yb2{bottom:288.141867pt;}
.y23{bottom:288.837733pt;}
.y58{bottom:306.218933pt;}
.y84{bottom:306.400400pt;}
.yb1{bottom:306.808533pt;}
.y22{bottom:318.247067pt;}
.y57{bottom:324.885600pt;}
.y83{bottom:325.067067pt;}
.yb0{bottom:325.475200pt;}
.y21{bottom:334.243067pt;}
.y56{bottom:343.552267pt;}
.y82{bottom:343.733733pt;}
.yaf{bottom:344.141867pt;}
.y20{bottom:350.239067pt;}
.y55{bottom:362.218933pt;}
.y81{bottom:362.400400pt;}
.yae{bottom:362.808533pt;}
.y1f{bottom:366.235067pt;}
.y54{bottom:380.885600pt;}
.y80{bottom:381.067067pt;}
.yad{bottom:381.475200pt;}
.y1e{bottom:382.231067pt;}
.y1d{bottom:398.227067pt;}
.y53{bottom:399.552267pt;}
.y7f{bottom:399.733733pt;}
.yac{bottom:400.141867pt;}
.y37{bottom:405.457733pt;}
.y1c{bottom:414.223067pt;}
.y52{bottom:418.218933pt;}
.y7e{bottom:418.400400pt;}
.yab{bottom:418.808533pt;}
.y36{bottom:425.457733pt;}
.y1b{bottom:430.219067pt;}
.y51{bottom:436.885600pt;}
.y7d{bottom:437.067067pt;}
.yaa{bottom:437.475200pt;}
.y35{bottom:445.457733pt;}
.y1a{bottom:446.215067pt;}
.y50{bottom:455.552267pt;}
.y7c{bottom:455.733733pt;}
.ya9{bottom:456.141867pt;}
.y19{bottom:462.211067pt;}
.y65{bottom:474.218933pt;}
.y7b{bottom:474.400400pt;}
.ya8{bottom:474.808533pt;}
.y18{bottom:478.207067pt;}
.y34{bottom:481.457733pt;}
.y4f{bottom:492.885600pt;}
.y7a{bottom:493.067067pt;}
.ya7{bottom:493.475200pt;}
.y17{bottom:494.203067pt;}
.y16{bottom:510.199067pt;}
.y4e{bottom:511.552267pt;}
.y91{bottom:511.733733pt;}
.ya6{bottom:512.141867pt;}
.y33{bottom:521.457733pt;}
.y15{bottom:526.195067pt;}
.y4d{bottom:530.218933pt;}
.y79{bottom:530.400400pt;}
.ya5{bottom:530.808533pt;}
.y14{bottom:542.191067pt;}
.y4c{bottom:548.885600pt;}
.y78{bottom:549.067067pt;}
.ya4{bottom:549.475200pt;}
.y32{bottom:557.457733pt;}
.y13{bottom:558.187067pt;}
.y4b{bottom:567.552267pt;}
.y77{bottom:567.733733pt;}
.ya3{bottom:568.141867pt;}
.y12{bottom:574.183067pt;}
.y4a{bottom:586.218933pt;}
.y76{bottom:586.400400pt;}
.ya2{bottom:586.808533pt;}
.y31{bottom:589.457733pt;}
.y11{bottom:590.179067pt;}
.y49{bottom:604.885600pt;}
.y75{bottom:605.067067pt;}
.ya1{bottom:605.475200pt;}
.y10{bottom:606.175067pt;}
.y30{bottom:621.457733pt;}
.yf{bottom:622.171067pt;}
.y48{bottom:623.552267pt;}
.y74{bottom:623.733733pt;}
.ya0{bottom:624.141867pt;}
.ye{bottom:638.171067pt;}
.y47{bottom:642.218933pt;}
.y73{bottom:642.400400pt;}
.y9f{bottom:642.808533pt;}
.y2f{bottom:653.457733pt;}
.y46{bottom:660.885600pt;}
.y72{bottom:661.067067pt;}
.y9e{bottom:661.475200pt;}
.yd{bottom:668.841733pt;}
.y45{bottom:679.552267pt;}
.y71{bottom:679.733733pt;}
.y9d{bottom:680.141867pt;}
.yc{bottom:684.837733pt;}
.y44{bottom:698.218933pt;}
.y70{bottom:698.400400pt;}
.y9c{bottom:698.808533pt;}
.yb{bottom:700.837733pt;}
.y43{bottom:716.885600pt;}
.y6f{bottom:717.067067pt;}
.y9b{bottom:717.475200pt;}
.y42{bottom:735.552267pt;}
.y6e{bottom:735.733733pt;}
.y9a{bottom:736.141867pt;}
.ya{bottom:740.841733pt;}
.y41{bottom:754.218933pt;}
.y6d{bottom:754.400400pt;}
.y99{bottom:754.808533pt;}
.y9{bottom:756.837733pt;}
.y8{bottom:772.837733pt;}
.y40{bottom:772.885600pt;}
.y6c{bottom:773.067067pt;}
.y98{bottom:773.475200pt;}
.y3f{bottom:791.552267pt;}
.y6b{bottom:791.733733pt;}
.y97{bottom:792.141867pt;}
.y3e{bottom:810.218933pt;}
.y6a{bottom:810.400400pt;}
.y96{bottom:810.808533pt;}
.y7{bottom:812.851067pt;}
.y3d{bottom:828.885600pt;}
.y69{bottom:829.067067pt;}
.y95{bottom:829.475200pt;}
.y6{bottom:835.511067pt;}
.y3c{bottom:847.552267pt;}
.y68{bottom:847.733733pt;}
.y94{bottom:848.141867pt;}
.y5{bottom:858.171067pt;}
.y3b{bottom:866.218933pt;}
.y67{bottom:866.400400pt;}
.y93{bottom:866.808533pt;}
.y3a{bottom:884.885600pt;}
.y66{bottom:885.067067pt;}
.y92{bottom:885.475200pt;}
.y4{bottom:910.554800pt;}
.y39{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.h8{height:33.328125pt;}
.h7{height:36.145833pt;}
.h9{height:37.057292pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.hb{height:41.066667pt;}
.ha{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h6{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x10{left:57.957867pt;}
.xf{left:63.336133pt;}
.xe{left:65.385867pt;}
.x12{left:80.692933pt;}
.xd{left:199.278133pt;}
.x6{left:250.140400pt;}
.x5{left:256.800400pt;}
.x7{left:267.340400pt;}
.x11{left:355.492933pt;}
.x4{left:366.464133pt;}
.x13{left:379.492933pt;}
.xa{left:398.141733pt;}
.xc{left:454.031733pt;}
.x9{left:513.029733pt;}
.xb{left:528.342933pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x8{left:575.992667pt;}
}




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