
    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_f1afc9aa44caf380cd7acfc7.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_43bae6596ba6f854e5764a00.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_64387a99da4c8ea885416cfd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f6e98a32a2ecd9cfe8aa3db3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921420;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_c89e7da187a53be93c3d6971.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_607107910bfbde075a55bdd2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c5c893c220acd3f8756871a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.974000;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_3dac6a90b82addd0cd20bc3f.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_216a5c5b3c8a05a1256cd4ec.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_66c5197201ea43db51006d07.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1b97c0649ba7e6adcdb3eee1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_f1afc9aa44caf380cd7acfc7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_43bae6596ba6f854e5764a00.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_85dfa7e31f8550304f85f07e.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_210697b4eddcfb5eb6eeaa91.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_25296c30cf7d7d21f6dfebf8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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;}
.m5{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:66.312000px;}
.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;}
}
.ws8{word-spacing:-66.312000px;}
.ws9{word-spacing:-18.720000px;}
.ws2{word-spacing:-15.000000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.720000px;}
.ws0{word-spacing:48.021000px;}
.ws4{word-spacing:71.550000px;}
.ws1{word-spacing:386.314800px;}
.ws5{word-spacing:1714.377600px;}
._51{margin-left:-66.312000px;}
._34{margin-left:-19.314000px;}
._33{margin-left:-17.812800px;}
._57{margin-left:-15.415200px;}
._13{margin-left:-12.664800px;}
._19{margin-left:-11.505600px;}
._25{margin-left:-9.763200px;}
._3c{margin-left:-7.848000px;}
._2f{margin-left:-5.989200px;}
._15{margin-left:-4.962000px;}
._3{margin-left:-3.794400px;}
._7{margin-left:-2.786400px;}
._14{margin-left:-1.134000px;}
._10{width:1.944000px;}
._44{width:3.456000px;}
._1b{width:4.752000px;}
._f{width:5.983200px;}
._2{width:7.351200px;}
._3b{width:8.496000px;}
._26{width:9.756000px;}
._54{width:11.088000px;}
._37{width:13.140000px;}
._1{width:14.493600px;}
._c{width:16.005600px;}
._17{width:17.697600px;}
._24{width:20.016000px;}
._9{width:21.088800px;}
._d{width:22.946400px;}
._6{width:24.818400px;}
._49{width:26.136000px;}
._43{width:27.468000px;}
._48{width:28.706400px;}
._21{width:30.117600px;}
._1c{width:31.248000px;}
._38{width:32.335200px;}
._56{width:33.724800px;}
._4c{width:35.272800px;}
._11{width:36.950400px;}
._50{width:38.088000px;}
._29{width:39.456000px;}
._40{width:40.802400px;}
._e{width:44.078400px;}
._b{width:45.669600px;}
._18{width:46.800000px;}
._a{width:48.088800px;}
._12{width:49.658400px;}
._3e{width:51.242400px;}
._5{width:52.322400px;}
._32{width:54.144000px;}
._8{width:55.764000px;}
._1d{width:57.312000px;}
._3d{width:58.831200px;}
._4{width:59.882400px;}
._16{width:61.711200px;}
._45{width:63.619200px;}
._3a{width:65.116800px;}
._0{width:66.312000px;}
._20{width:68.364000px;}
._39{width:69.818400px;}
._22{width:71.020800px;}
._2d{width:72.259200px;}
._30{width:73.756800px;}
._23{width:76.608000px;}
._2b{width:77.652000px;}
._3f{width:79.128000px;}
._41{width:80.618400px;}
._4f{width:82.036800px;}
._46{width:83.519400px;}
._4d{width:84.636000px;}
._2e{width:87.306600px;}
._27{width:90.799200px;}
._28{width:92.181600px;}
._4a{width:94.723200px;}
._42{width:96.444000px;}
._35{width:98.107200px;}
._31{width:99.972000px;}
._58{width:101.851200px;}
._52{width:107.136000px;}
._1a{width:110.995200px;}
._2c{width:115.459200px;}
._53{width:117.324000px;}
._55{width:120.175200px;}
._2a{width:123.840000px;}
._4e{width:131.911200px;}
._36{width:141.300000px;}
._47{width:143.287200px;}
._1e{width:156.715200px;}
._1f{width:188.791200px;}
._4b{width:255.391200px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y31{bottom:64.760550px;}
.y30{bottom:65.586600px;}
.y5b{bottom:86.460150px;}
.y89{bottom:87.216150px;}
.y88{bottom:93.960150px;}
.y75{bottom:101.460150px;}
.y5a{bottom:108.960150px;}
.y26{bottom:114.943050px;}
.y87{bottom:116.460150px;}
.y74{bottom:123.960150px;}
.y59{bottom:131.460150px;}
.y25{bottom:137.443050px;}
.y86{bottom:138.960150px;}
.y73{bottom:146.460150px;}
.y58{bottom:153.960150px;}
.y24{bottom:159.943050px;}
.y85{bottom:161.460150px;}
.y72{bottom:168.960150px;}
.y23{bottom:182.443050px;}
.y84{bottom:183.960150px;}
.y57{bottom:191.460150px;}
.y22{bottom:204.943050px;}
.y83{bottom:206.460150px;}
.y56{bottom:213.960150px;}
.y21{bottom:227.443050px;}
.y82{bottom:228.960150px;}
.y55{bottom:236.460150px;}
.y20{bottom:249.943050px;}
.y81{bottom:251.460150px;}
.y54{bottom:258.960150px;}
.y1f{bottom:272.443050px;}
.y80{bottom:273.960150px;}
.y53{bottom:281.460150px;}
.y1e{bottom:294.943050px;}
.y7f{bottom:296.460150px;}
.y52{bottom:303.960150px;}
.y1d{bottom:317.443050px;}
.y7e{bottom:318.960150px;}
.y51{bottom:326.460150px;}
.y1c{bottom:339.943050px;}
.y7d{bottom:341.460150px;}
.y50{bottom:348.960150px;}
.y1b{bottom:362.443050px;}
.y7c{bottom:363.960150px;}
.y4f{bottom:371.460150px;}
.y1a{bottom:384.943050px;}
.y7b{bottom:386.460150px;}
.y4e{bottom:393.960150px;}
.y19{bottom:407.443050px;}
.y7a{bottom:408.960150px;}
.y4d{bottom:416.460150px;}
.y18{bottom:429.943050px;}
.y79{bottom:431.460150px;}
.y4c{bottom:438.960150px;}
.y78{bottom:453.960150px;}
.y2f{bottom:456.139950px;}
.y4b{bottom:461.460150px;}
.y17{bottom:474.943050px;}
.y77{bottom:476.460150px;}
.y2e{bottom:478.639950px;}
.ya0{bottom:482.460150px;}
.y4a{bottom:483.960150px;}
.y16{bottom:497.443050px;}
.y76{bottom:498.960150px;}
.y2d{bottom:501.139950px;}
.y9f{bottom:503.454150px;}
.y71{bottom:506.460150px;}
.y15{bottom:519.943050px;}
.y49{bottom:521.460150px;}
.y9e{bottom:524.460150px;}
.y70{bottom:528.960150px;}
.y2c{bottom:541.639950px;}
.y14{bottom:542.443050px;}
.y48{bottom:543.960150px;}
.y9d{bottom:545.460150px;}
.y6f{bottom:551.460150px;}
.y13{bottom:564.943050px;}
.y47{bottom:566.460150px;}
.y6e{bottom:573.960150px;}
.y9c{bottom:583.038150px;}
.y2b{bottom:586.639950px;}
.y12{bottom:587.443050px;}
.y46{bottom:588.960150px;}
.y6d{bottom:596.460150px;}
.y9b{bottom:604.044150px;}
.y11{bottom:609.943050px;}
.y45{bottom:611.460150px;}
.y6c{bottom:618.960150px;}
.y9a{bottom:625.050150px;}
.y2a{bottom:627.139950px;}
.y10{bottom:632.443050px;}
.y44{bottom:633.960150px;}
.y6b{bottom:641.460150px;}
.y99{bottom:646.056150px;}
.yf{bottom:654.943050px;}
.y43{bottom:656.460150px;}
.y29{bottom:663.139950px;}
.y6a{bottom:663.960150px;}
.y98{bottom:667.800150px;}
.ye{bottom:677.443050px;}
.y42{bottom:678.960150px;}
.y69{bottom:686.460150px;}
.y97{bottom:689.544150px;}
.y28{bottom:699.139950px;}
.yd{bottom:699.943050px;}
.y41{bottom:701.460150px;}
.y68{bottom:708.960150px;}
.y96{bottom:711.288150px;}
.yc{bottom:722.443050px;}
.y40{bottom:723.960150px;}
.y67{bottom:731.460150px;}
.y95{bottom:733.032150px;}
.y27{bottom:735.139950px;}
.yb{bottom:744.943050px;}
.y3f{bottom:746.460150px;}
.y66{bottom:753.960150px;}
.y94{bottom:754.776150px;}
.ya{bottom:767.443050px;}
.y3e{bottom:768.960150px;}
.y65{bottom:776.460150px;}
.y93{bottom:776.520150px;}
.y9{bottom:789.943050px;}
.y3d{bottom:791.460150px;}
.y92{bottom:798.264150px;}
.y64{bottom:798.960150px;}
.y3c{bottom:813.960150px;}
.y91{bottom:820.008150px;}
.y8{bottom:834.929550px;}
.y3b{bottom:836.460150px;}
.y63{bottom:836.466150px;}
.y90{bottom:841.752150px;}
.y7{bottom:855.934050px;}
.y3a{bottom:858.960150px;}
.y62{bottom:858.966150px;}
.y8f{bottom:863.496150px;}
.y6{bottom:876.938550px;}
.y39{bottom:881.460150px;}
.y61{bottom:881.466150px;}
.y8e{bottom:885.240150px;}
.y5{bottom:897.943050px;}
.y38{bottom:903.960150px;}
.y60{bottom:903.966150px;}
.y8d{bottom:906.984150px;}
.y4{bottom:918.943050px;}
.y37{bottom:926.460150px;}
.y5f{bottom:926.466150px;}
.y8c{bottom:928.728150px;}
.y36{bottom:948.960150px;}
.y5e{bottom:948.966150px;}
.y8b{bottom:950.472150px;}
.y3{bottom:968.443050px;}
.y35{bottom:971.460150px;}
.y5d{bottom:971.466150px;}
.y8a{bottom:972.216150px;}
.y34{bottom:993.960150px;}
.y5c{bottom:993.966150px;}
.y33{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y32{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xb{left:63.779550px;}
.x2{left:65.202600px;}
.xa{left:73.559100px;}
.x1{left:74.853150px;}
.xf{left:85.039350px;}
.x9{left:224.187900px;}
.x3{left:245.341200px;}
.x7{left:312.741450px;}
.x6{left:342.342450px;}
.x10{left:374.424150px;}
.x11{left:399.929550px;}
.xe{left:412.272150px;}
.x12{left:421.195650px;}
.x13{left:426.935850px;}
.x5{left:479.011950px;}
.x4{left:493.707150px;}
.x8{left:585.238950px;}
.xd{left:614.196150px;}
.xc{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:58.944000pt;}
.ws8{word-spacing:-58.944000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.640000pt;}
.ws0{word-spacing:42.685333pt;}
.ws4{word-spacing:63.600000pt;}
.ws1{word-spacing:343.390933pt;}
.ws5{word-spacing:1523.891200pt;}
._51{margin-left:-58.944000pt;}
._34{margin-left:-17.168000pt;}
._33{margin-left:-15.833600pt;}
._57{margin-left:-13.702400pt;}
._13{margin-left:-11.257600pt;}
._19{margin-left:-10.227200pt;}
._25{margin-left:-8.678400pt;}
._3c{margin-left:-6.976000pt;}
._2f{margin-left:-5.323733pt;}
._15{margin-left:-4.410667pt;}
._3{margin-left:-3.372800pt;}
._7{margin-left:-2.476800pt;}
._14{margin-left:-1.008000pt;}
._10{width:1.728000pt;}
._44{width:3.072000pt;}
._1b{width:4.224000pt;}
._f{width:5.318400pt;}
._2{width:6.534400pt;}
._3b{width:7.552000pt;}
._26{width:8.672000pt;}
._54{width:9.856000pt;}
._37{width:11.680000pt;}
._1{width:12.883200pt;}
._c{width:14.227200pt;}
._17{width:15.731200pt;}
._24{width:17.792000pt;}
._9{width:18.745600pt;}
._d{width:20.396800pt;}
._6{width:22.060800pt;}
._49{width:23.232000pt;}
._43{width:24.416000pt;}
._48{width:25.516800pt;}
._21{width:26.771200pt;}
._1c{width:27.776000pt;}
._38{width:28.742400pt;}
._56{width:29.977600pt;}
._4c{width:31.353600pt;}
._11{width:32.844800pt;}
._50{width:33.856000pt;}
._29{width:35.072000pt;}
._40{width:36.268800pt;}
._e{width:39.180800pt;}
._b{width:40.595200pt;}
._18{width:41.600000pt;}
._a{width:42.745600pt;}
._12{width:44.140800pt;}
._3e{width:45.548800pt;}
._5{width:46.508800pt;}
._32{width:48.128000pt;}
._8{width:49.568000pt;}
._1d{width:50.944000pt;}
._3d{width:52.294400pt;}
._4{width:53.228800pt;}
._16{width:54.854400pt;}
._45{width:56.550400pt;}
._3a{width:57.881600pt;}
._0{width:58.944000pt;}
._20{width:60.768000pt;}
._39{width:62.060800pt;}
._22{width:63.129600pt;}
._2d{width:64.230400pt;}
._30{width:65.561600pt;}
._23{width:68.096000pt;}
._2b{width:69.024000pt;}
._3f{width:70.336000pt;}
._41{width:71.660800pt;}
._4f{width:72.921600pt;}
._46{width:74.239467pt;}
._4d{width:75.232000pt;}
._2e{width:77.605867pt;}
._27{width:80.710400pt;}
._28{width:81.939200pt;}
._4a{width:84.198400pt;}
._42{width:85.728000pt;}
._35{width:87.206400pt;}
._31{width:88.864000pt;}
._58{width:90.534400pt;}
._52{width:95.232000pt;}
._1a{width:98.662400pt;}
._2c{width:102.630400pt;}
._53{width:104.288000pt;}
._55{width:106.822400pt;}
._2a{width:110.080000pt;}
._4e{width:117.254400pt;}
._36{width:125.600000pt;}
._47{width:127.366400pt;}
._1e{width:139.302400pt;}
._1f{width:167.814400pt;}
._4b{width:227.014400pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y31{bottom:57.564933pt;}
.y30{bottom:58.299200pt;}
.y5b{bottom:76.853467pt;}
.y89{bottom:77.525467pt;}
.y88{bottom:83.520133pt;}
.y75{bottom:90.186800pt;}
.y5a{bottom:96.853467pt;}
.y26{bottom:102.171600pt;}
.y87{bottom:103.520133pt;}
.y74{bottom:110.186800pt;}
.y59{bottom:116.853467pt;}
.y25{bottom:122.171600pt;}
.y86{bottom:123.520133pt;}
.y73{bottom:130.186800pt;}
.y58{bottom:136.853467pt;}
.y24{bottom:142.171600pt;}
.y85{bottom:143.520133pt;}
.y72{bottom:150.186800pt;}
.y23{bottom:162.171600pt;}
.y84{bottom:163.520133pt;}
.y57{bottom:170.186800pt;}
.y22{bottom:182.171600pt;}
.y83{bottom:183.520133pt;}
.y56{bottom:190.186800pt;}
.y21{bottom:202.171600pt;}
.y82{bottom:203.520133pt;}
.y55{bottom:210.186800pt;}
.y20{bottom:222.171600pt;}
.y81{bottom:223.520133pt;}
.y54{bottom:230.186800pt;}
.y1f{bottom:242.171600pt;}
.y80{bottom:243.520133pt;}
.y53{bottom:250.186800pt;}
.y1e{bottom:262.171600pt;}
.y7f{bottom:263.520133pt;}
.y52{bottom:270.186800pt;}
.y1d{bottom:282.171600pt;}
.y7e{bottom:283.520133pt;}
.y51{bottom:290.186800pt;}
.y1c{bottom:302.171600pt;}
.y7d{bottom:303.520133pt;}
.y50{bottom:310.186800pt;}
.y1b{bottom:322.171600pt;}
.y7c{bottom:323.520133pt;}
.y4f{bottom:330.186800pt;}
.y1a{bottom:342.171600pt;}
.y7b{bottom:343.520133pt;}
.y4e{bottom:350.186800pt;}
.y19{bottom:362.171600pt;}
.y7a{bottom:363.520133pt;}
.y4d{bottom:370.186800pt;}
.y18{bottom:382.171600pt;}
.y79{bottom:383.520133pt;}
.y4c{bottom:390.186800pt;}
.y78{bottom:403.520133pt;}
.y2f{bottom:405.457733pt;}
.y4b{bottom:410.186800pt;}
.y17{bottom:422.171600pt;}
.y77{bottom:423.520133pt;}
.y2e{bottom:425.457733pt;}
.ya0{bottom:428.853467pt;}
.y4a{bottom:430.186800pt;}
.y16{bottom:442.171600pt;}
.y76{bottom:443.520133pt;}
.y2d{bottom:445.457733pt;}
.y9f{bottom:447.514800pt;}
.y71{bottom:450.186800pt;}
.y15{bottom:462.171600pt;}
.y49{bottom:463.520133pt;}
.y9e{bottom:466.186800pt;}
.y70{bottom:470.186800pt;}
.y2c{bottom:481.457733pt;}
.y14{bottom:482.171600pt;}
.y48{bottom:483.520133pt;}
.y9d{bottom:484.853467pt;}
.y6f{bottom:490.186800pt;}
.y13{bottom:502.171600pt;}
.y47{bottom:503.520133pt;}
.y6e{bottom:510.186800pt;}
.y9c{bottom:518.256133pt;}
.y2b{bottom:521.457733pt;}
.y12{bottom:522.171600pt;}
.y46{bottom:523.520133pt;}
.y6d{bottom:530.186800pt;}
.y9b{bottom:536.928133pt;}
.y11{bottom:542.171600pt;}
.y45{bottom:543.520133pt;}
.y6c{bottom:550.186800pt;}
.y9a{bottom:555.600133pt;}
.y2a{bottom:557.457733pt;}
.y10{bottom:562.171600pt;}
.y44{bottom:563.520133pt;}
.y6b{bottom:570.186800pt;}
.y99{bottom:574.272133pt;}
.yf{bottom:582.171600pt;}
.y43{bottom:583.520133pt;}
.y29{bottom:589.457733pt;}
.y6a{bottom:590.186800pt;}
.y98{bottom:593.600133pt;}
.ye{bottom:602.171600pt;}
.y42{bottom:603.520133pt;}
.y69{bottom:610.186800pt;}
.y97{bottom:612.928133pt;}
.y28{bottom:621.457733pt;}
.yd{bottom:622.171600pt;}
.y41{bottom:623.520133pt;}
.y68{bottom:630.186800pt;}
.y96{bottom:632.256133pt;}
.yc{bottom:642.171600pt;}
.y40{bottom:643.520133pt;}
.y67{bottom:650.186800pt;}
.y95{bottom:651.584133pt;}
.y27{bottom:653.457733pt;}
.yb{bottom:662.171600pt;}
.y3f{bottom:663.520133pt;}
.y66{bottom:670.186800pt;}
.y94{bottom:670.912133pt;}
.ya{bottom:682.171600pt;}
.y3e{bottom:683.520133pt;}
.y65{bottom:690.186800pt;}
.y93{bottom:690.240133pt;}
.y9{bottom:702.171600pt;}
.y3d{bottom:703.520133pt;}
.y92{bottom:709.568133pt;}
.y64{bottom:710.186800pt;}
.y3c{bottom:723.520133pt;}
.y91{bottom:728.896133pt;}
.y8{bottom:742.159600pt;}
.y3b{bottom:743.520133pt;}
.y63{bottom:743.525467pt;}
.y90{bottom:748.224133pt;}
.y7{bottom:760.830267pt;}
.y3a{bottom:763.520133pt;}
.y62{bottom:763.525467pt;}
.y8f{bottom:767.552133pt;}
.y6{bottom:779.500933pt;}
.y39{bottom:783.520133pt;}
.y61{bottom:783.525467pt;}
.y8e{bottom:786.880133pt;}
.y5{bottom:798.171600pt;}
.y38{bottom:803.520133pt;}
.y60{bottom:803.525467pt;}
.y8d{bottom:806.208133pt;}
.y4{bottom:816.838267pt;}
.y37{bottom:823.520133pt;}
.y5f{bottom:823.525467pt;}
.y8c{bottom:825.536133pt;}
.y36{bottom:843.520133pt;}
.y5e{bottom:843.525467pt;}
.y8b{bottom:844.864133pt;}
.y3{bottom:860.838267pt;}
.y35{bottom:863.520133pt;}
.y5d{bottom:863.525467pt;}
.y8a{bottom:864.192133pt;}
.y34{bottom:883.520133pt;}
.y5c{bottom:883.525467pt;}
.y33{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y32{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xb{left:56.692933pt;}
.x2{left:57.957867pt;}
.xa{left:65.385867pt;}
.x1{left:66.536133pt;}
.xf{left:75.590533pt;}
.x9{left:199.278133pt;}
.x3{left:218.081067pt;}
.x7{left:277.992400pt;}
.x6{left:304.304400pt;}
.x10{left:332.821467pt;}
.x11{left:355.492933pt;}
.xe{left:366.464133pt;}
.x12{left:374.396133pt;}
.x13{left:379.498533pt;}
.x5{left:425.788400pt;}
.x4{left:438.850800pt;}
.x8{left:520.212400pt;}
.xd{left:545.952133pt;}
.xc{left:562.556267pt;}
}




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