
    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_120e51c3c4d785c8b7f92a4f.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_120e51c3c4d785c8b7f92a4f.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_bf478b63cd5b8b584609f81b.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_b5a7a8bbae8cfc8d7d9587ac.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_adc9b5a56bce9a97f0221a83.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_c47b391a5062addbb70665d1.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_d6340b08b0ee3eefc91a00fb.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_c4e8cef32b50305133adab8e.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_96efa6e0cac9f4cd34507418.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_d2066b8bc5509acad983b06d.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_8e8d635e34dee2945d4fbeec.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_75d74328a03d8cebc17b5b0c.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_dab3d71326a4b57e95dedbb7.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_bf478b63cd5b8b584609f81b.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_fe49f2843d0ebaf37459e73f.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;}
.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;}
.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;}
.wsf{word-spacing:-4.440000px;}
.ws47{word-spacing:-4.380000px;}
.ws2b{word-spacing:-4.020000px;}
.ws3e{word-spacing:-2.700000px;}
.ws23{word-spacing:-2.520000px;}
.ws4b{word-spacing:-2.220000px;}
.ws21{word-spacing:-1.260000px;}
.ws50{word-spacing:-1.080000px;}
.ws18{word-spacing:-0.660000px;}
.ws24{word-spacing:-0.180000px;}
.ws3{word-spacing:0.000000px;}
.ws22{word-spacing:0.300000px;}
.ws1{word-spacing:0.720000px;}
.ws4a{word-spacing:0.780000px;}
.ws33{word-spacing:1.020000px;}
.ws20{word-spacing:1.080000px;}
.ws15{word-spacing:1.140000px;}
.ws4c{word-spacing:1.260000px;}
.ws26{word-spacing:1.320000px;}
.ws37{word-spacing:1.620000px;}
.ws1a{word-spacing:3.000000px;}
.ws2f{word-spacing:3.060000px;}
.ws3c{word-spacing:3.480000px;}
.ws53{word-spacing:3.720000px;}
.ws6{word-spacing:3.780000px;}
.ws4f{word-spacing:3.840000px;}
.ws1c{word-spacing:4.140000px;}
.ws19{word-spacing:4.260000px;}
.ws1d{word-spacing:4.740000px;}
.ws2d{word-spacing:4.920000px;}
.ws39{word-spacing:4.980000px;}
.ws3a{word-spacing:5.160000px;}
.wse{word-spacing:5.400000px;}
.ws1f{word-spacing:5.580000px;}
.ws28{word-spacing:6.120000px;}
.wsc{word-spacing:6.240000px;}
.ws1b{word-spacing:6.300000px;}
.ws14{word-spacing:6.780000px;}
.ws3f{word-spacing:7.200000px;}
.ws30{word-spacing:8.280000px;}
.ws45{word-spacing:8.460000px;}
.wsd{word-spacing:8.700000px;}
.ws52{word-spacing:8.880000px;}
.ws3b{word-spacing:9.000000px;}
.ws31{word-spacing:9.120000px;}
.ws10{word-spacing:9.480000px;}
.ws4{word-spacing:10.200000px;}
.ws7{word-spacing:10.320000px;}
.ws29{word-spacing:10.500000px;}
.ws17{word-spacing:10.560000px;}
.ws34{word-spacing:11.580000px;}
.ws49{word-spacing:11.880000px;}
.ws2a{word-spacing:12.600000px;}
.ws9{word-spacing:12.720000px;}
.ws2c{word-spacing:12.780000px;}
.ws42{word-spacing:12.840000px;}
.ws5{word-spacing:13.740000px;}
.ws25{word-spacing:14.220000px;}
.ws16{word-spacing:14.460000px;}
.ws12{word-spacing:14.940000px;}
.ws35{word-spacing:15.300000px;}
.ws38{word-spacing:15.780000px;}
.ws2e{word-spacing:15.840000px;}
.ws11{word-spacing:15.900000px;}
.ws8{word-spacing:16.380000px;}
.ws51{word-spacing:16.560000px;}
.ws48{word-spacing:16.800000px;}
.ws44{word-spacing:16.860000px;}
.ws3d{word-spacing:17.160000px;}
.ws32{word-spacing:18.840000px;}
.ws13{word-spacing:18.900000px;}
.ws41{word-spacing:19.620000px;}
.ws43{word-spacing:20.160000px;}
.ws27{word-spacing:20.220000px;}
.ws40{word-spacing:21.060000px;}
.ws54{word-spacing:21.240000px;}
.ws4e{word-spacing:22.680000px;}
.ws1e{word-spacing:23.940000px;}
.ws4d{word-spacing:28.560000px;}
.ws36{word-spacing:29.880000px;}
.ws46{word-spacing:30.720000px;}
.wsa{word-spacing:48.021000px;}
.ws55{word-spacing:48.720000px;}
.wsb{word-spacing:386.314800px;}
.ws0{word-spacing:1714.377600px;}
._25{margin-left:-39.810000px;}
._23{margin-left:-8.658000px;}
._3{margin-left:-6.971400px;}
._5{margin-left:-5.508000px;}
._2{margin-left:-4.386000px;}
._4{margin-left:-3.040200px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._9{width:2.394600px;}
._7{width:3.423600px;}
._8{width:4.951800px;}
._a{width:5.978400px;}
._d{width:7.096800px;}
._13{width:8.922000px;}
._12{width:10.734000px;}
._6{width:12.268800px;}
._15{width:13.543200px;}
._14{width:16.254000px;}
._17{width:17.556000px;}
._18{width:18.996000px;}
._11{width:20.394000px;}
._10{width:21.480000px;}
._19{width:22.896000px;}
._1c{width:24.090000px;}
._16{width:26.112000px;}
._24{width:30.240000px;}
._b{width:33.409800px;}
._1e{width:41.460000px;}
._22{width:42.540000px;}
._1a{width:46.080000px;}
._20{width:47.164200px;}
._21{width:48.276000px;}
._1b{width:49.800000px;}
._26{width:51.132000px;}
._1f{width:53.460000px;}
._e{width:56.280000px;}
._c{width:58.800000px;}
._f{width:70.020000px;}
._1d{width:74.400000px;}
.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;}
.y37{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y66{bottom:99.125550px;}
.y95{bottom:99.754950px;}
.y65{bottom:118.625550px;}
.y94{bottom:119.254950px;}
.y2d{bottom:130.642650px;}
.y64{bottom:138.125550px;}
.y93{bottom:138.754950px;}
.y2c{bottom:150.142650px;}
.y63{bottom:157.625550px;}
.y92{bottom:158.254950px;}
.y2b{bottom:169.642650px;}
.y62{bottom:177.125550px;}
.y91{bottom:177.754950px;}
.y2a{bottom:189.142650px;}
.y61{bottom:196.625550px;}
.y90{bottom:197.254950px;}
.y29{bottom:208.642650px;}
.y60{bottom:216.125550px;}
.y8f{bottom:216.754950px;}
.y28{bottom:228.142650px;}
.y5f{bottom:235.625550px;}
.y8e{bottom:236.254950px;}
.y27{bottom:247.642650px;}
.y5e{bottom:255.125550px;}
.y8d{bottom:255.754950px;}
.y26{bottom:267.142650px;}
.y5d{bottom:274.625550px;}
.y8c{bottom:275.254950px;}
.y25{bottom:286.642650px;}
.y5c{bottom:294.125550px;}
.y8b{bottom:294.754950px;}
.y24{bottom:306.142650px;}
.y5b{bottom:313.625550px;}
.y8a{bottom:314.254950px;}
.y23{bottom:325.642650px;}
.y5a{bottom:333.125550px;}
.y89{bottom:333.754950px;}
.y22{bottom:345.142650px;}
.y59{bottom:352.625550px;}
.y88{bottom:353.254950px;}
.y21{bottom:364.642650px;}
.y58{bottom:372.125550px;}
.y87{bottom:372.754950px;}
.y20{bottom:384.142650px;}
.y57{bottom:391.625550px;}
.y86{bottom:392.254950px;}
.y1f{bottom:403.642650px;}
.y56{bottom:411.125550px;}
.y85{bottom:411.754950px;}
.y55{bottom:430.625550px;}
.y96{bottom:431.254950px;}
.y1e{bottom:442.698150px;}
.y54{bottom:450.125550px;}
.y84{bottom:450.754950px;}
.y36{bottom:456.139950px;}
.y1d{bottom:462.192150px;}
.y67{bottom:469.625550px;}
.y83{bottom:470.254950px;}
.y35{bottom:478.639950px;}
.y1c{bottom:480.187650px;}
.y53{bottom:489.125550px;}
.y82{bottom:489.754950px;}
.y1b{bottom:498.183150px;}
.y34{bottom:501.139950px;}
.y52{bottom:508.625550px;}
.y81{bottom:509.254950px;}
.y1a{bottom:516.178650px;}
.y51{bottom:528.125550px;}
.y80{bottom:528.754950px;}
.y19{bottom:534.174150px;}
.y33{bottom:541.639950px;}
.y50{bottom:547.625550px;}
.y7f{bottom:548.254950px;}
.y18{bottom:552.169650px;}
.y4f{bottom:567.125550px;}
.y7e{bottom:567.754950px;}
.y17{bottom:570.165150px;}
.yac{bottom:586.183350px;}
.y4e{bottom:586.625550px;}
.y32{bottom:586.639950px;}
.y7d{bottom:587.254950px;}
.y16{bottom:588.160650px;}
.yab{bottom:605.683350px;}
.y4d{bottom:606.125550px;}
.y15{bottom:606.156150px;}
.y7c{bottom:606.754950px;}
.y14{bottom:624.151650px;}
.yaa{bottom:625.183350px;}
.y4c{bottom:625.625550px;}
.y7b{bottom:626.254950px;}
.y31{bottom:627.139950px;}
.y13{bottom:642.147150px;}
.ya9{bottom:644.683350px;}
.y4b{bottom:645.125550px;}
.y7a{bottom:645.754950px;}
.y12{bottom:660.142650px;}
.y30{bottom:663.139950px;}
.ya8{bottom:664.183350px;}
.y4a{bottom:664.625550px;}
.y79{bottom:665.254950px;}
.y11{bottom:678.142650px;}
.ya7{bottom:683.683350px;}
.y49{bottom:684.125550px;}
.y78{bottom:684.754950px;}
.y2f{bottom:699.139950px;}
.ya6{bottom:703.183350px;}
.y48{bottom:703.625550px;}
.y77{bottom:704.254950px;}
.y10{bottom:717.153150px;}
.ya5{bottom:722.683350px;}
.y47{bottom:723.125550px;}
.y76{bottom:723.754950px;}
.y2e{bottom:735.139950px;}
.yf{bottom:736.647150px;}
.ya4{bottom:742.183350px;}
.y46{bottom:742.625550px;}
.y75{bottom:743.254950px;}
.ye{bottom:754.642650px;}
.ya3{bottom:761.683350px;}
.y45{bottom:762.125550px;}
.y74{bottom:762.754950px;}
.yd{bottom:772.642650px;}
.ya2{bottom:781.183350px;}
.y44{bottom:781.625550px;}
.y73{bottom:782.254950px;}
.ya1{bottom:800.683350px;}
.y43{bottom:801.125550px;}
.y72{bottom:801.754950px;}
.yc{bottom:811.662150px;}
.ya0{bottom:820.183350px;}
.y42{bottom:820.625550px;}
.y71{bottom:821.254950px;}
.yb{bottom:831.156150px;}
.y9f{bottom:839.683350px;}
.y41{bottom:840.125550px;}
.y70{bottom:840.754950px;}
.ya{bottom:849.151650px;}
.y9e{bottom:859.183350px;}
.y40{bottom:859.625550px;}
.y6f{bottom:860.254950px;}
.y9{bottom:867.147150px;}
.y9d{bottom:878.683350px;}
.y3f{bottom:879.125550px;}
.y6e{bottom:879.754950px;}
.y8{bottom:885.142650px;}
.y9c{bottom:898.183350px;}
.y3e{bottom:898.625550px;}
.y6d{bottom:899.254950px;}
.y7{bottom:903.142650px;}
.y9b{bottom:917.683350px;}
.y3d{bottom:918.125550px;}
.y6c{bottom:918.754950px;}
.y9a{bottom:937.183350px;}
.y3c{bottom:937.625550px;}
.y6b{bottom:938.254950px;}
.y6{bottom:942.142650px;}
.y99{bottom:956.683350px;}
.y3b{bottom:957.125550px;}
.y6a{bottom:957.754950px;}
.y5{bottom:969.142650px;}
.y98{bottom:976.183350px;}
.y3a{bottom:976.625550px;}
.y69{bottom:977.254950px;}
.y97{bottom:995.683350px;}
.y39{bottom:996.125550px;}
.y68{bottom:996.754950px;}
.y4{bottom:1024.374150px;}
.y38{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;}
.x13{left:65.202600px;}
.x11{left:73.559100px;}
.x12{left:74.853150px;}
.x10{left:224.187900px;}
.x5{left:252.046800px;}
.xc{left:364.404300px;}
.x6{left:380.184300px;}
.xf{left:397.024500px;}
.x14{left:399.929550px;}
.x4{left:412.272150px;}
.x15{left:426.929550px;}
.xb{left:462.265800px;}
.xa{left:498.283800px;}
.xd{left:506.597700px;}
.x9{left:519.411300px;}
.xe{left:548.616000px;}
.x8{left:557.508300px;}
.x7{left:606.243750px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
@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;}
.ws2{word-spacing:-13.333333pt;}
.wsf{word-spacing:-3.946667pt;}
.ws47{word-spacing:-3.893333pt;}
.ws2b{word-spacing:-3.573333pt;}
.ws3e{word-spacing:-2.400000pt;}
.ws23{word-spacing:-2.240000pt;}
.ws4b{word-spacing:-1.973333pt;}
.ws21{word-spacing:-1.120000pt;}
.ws50{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.586667pt;}
.ws24{word-spacing:-0.160000pt;}
.ws3{word-spacing:0.000000pt;}
.ws22{word-spacing:0.266667pt;}
.ws1{word-spacing:0.640000pt;}
.ws4a{word-spacing:0.693333pt;}
.ws33{word-spacing:0.906667pt;}
.ws20{word-spacing:0.960000pt;}
.ws15{word-spacing:1.013333pt;}
.ws4c{word-spacing:1.120000pt;}
.ws26{word-spacing:1.173333pt;}
.ws37{word-spacing:1.440000pt;}
.ws1a{word-spacing:2.666667pt;}
.ws2f{word-spacing:2.720000pt;}
.ws3c{word-spacing:3.093333pt;}
.ws53{word-spacing:3.306667pt;}
.ws6{word-spacing:3.360000pt;}
.ws4f{word-spacing:3.413333pt;}
.ws1c{word-spacing:3.680000pt;}
.ws19{word-spacing:3.786667pt;}
.ws1d{word-spacing:4.213333pt;}
.ws2d{word-spacing:4.373333pt;}
.ws39{word-spacing:4.426667pt;}
.ws3a{word-spacing:4.586667pt;}
.wse{word-spacing:4.800000pt;}
.ws1f{word-spacing:4.960000pt;}
.ws28{word-spacing:5.440000pt;}
.wsc{word-spacing:5.546667pt;}
.ws1b{word-spacing:5.600000pt;}
.ws14{word-spacing:6.026667pt;}
.ws3f{word-spacing:6.400000pt;}
.ws30{word-spacing:7.360000pt;}
.ws45{word-spacing:7.520000pt;}
.wsd{word-spacing:7.733333pt;}
.ws52{word-spacing:7.893333pt;}
.ws3b{word-spacing:8.000000pt;}
.ws31{word-spacing:8.106667pt;}
.ws10{word-spacing:8.426667pt;}
.ws4{word-spacing:9.066667pt;}
.ws7{word-spacing:9.173333pt;}
.ws29{word-spacing:9.333333pt;}
.ws17{word-spacing:9.386667pt;}
.ws34{word-spacing:10.293333pt;}
.ws49{word-spacing:10.560000pt;}
.ws2a{word-spacing:11.200000pt;}
.ws9{word-spacing:11.306667pt;}
.ws2c{word-spacing:11.360000pt;}
.ws42{word-spacing:11.413333pt;}
.ws5{word-spacing:12.213333pt;}
.ws25{word-spacing:12.640000pt;}
.ws16{word-spacing:12.853333pt;}
.ws12{word-spacing:13.280000pt;}
.ws35{word-spacing:13.600000pt;}
.ws38{word-spacing:14.026667pt;}
.ws2e{word-spacing:14.080000pt;}
.ws11{word-spacing:14.133333pt;}
.ws8{word-spacing:14.560000pt;}
.ws51{word-spacing:14.720000pt;}
.ws48{word-spacing:14.933333pt;}
.ws44{word-spacing:14.986667pt;}
.ws3d{word-spacing:15.253333pt;}
.ws32{word-spacing:16.746667pt;}
.ws13{word-spacing:16.800000pt;}
.ws41{word-spacing:17.440000pt;}
.ws43{word-spacing:17.920000pt;}
.ws27{word-spacing:17.973333pt;}
.ws40{word-spacing:18.720000pt;}
.ws54{word-spacing:18.880000pt;}
.ws4e{word-spacing:20.160000pt;}
.ws1e{word-spacing:21.280000pt;}
.ws4d{word-spacing:25.386667pt;}
.ws36{word-spacing:26.560000pt;}
.ws46{word-spacing:27.306667pt;}
.wsa{word-spacing:42.685333pt;}
.ws55{word-spacing:43.306667pt;}
.wsb{word-spacing:343.390933pt;}
.ws0{word-spacing:1523.891200pt;}
._25{margin-left:-35.386667pt;}
._23{margin-left:-7.696000pt;}
._3{margin-left:-6.196800pt;}
._5{margin-left:-4.896000pt;}
._2{margin-left:-3.898667pt;}
._4{margin-left:-2.702400pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._9{width:2.128533pt;}
._7{width:3.043200pt;}
._8{width:4.401600pt;}
._a{width:5.314133pt;}
._d{width:6.308267pt;}
._13{width:7.930667pt;}
._12{width:9.541333pt;}
._6{width:10.905600pt;}
._15{width:12.038400pt;}
._14{width:14.448000pt;}
._17{width:15.605333pt;}
._18{width:16.885333pt;}
._11{width:18.128000pt;}
._10{width:19.093333pt;}
._19{width:20.352000pt;}
._1c{width:21.413333pt;}
._16{width:23.210667pt;}
._24{width:26.880000pt;}
._b{width:29.697600pt;}
._1e{width:36.853333pt;}
._22{width:37.813333pt;}
._1a{width:40.960000pt;}
._20{width:41.923733pt;}
._21{width:42.912000pt;}
._1b{width:44.266667pt;}
._26{width:45.450667pt;}
._1f{width:47.520000pt;}
._e{width:50.026667pt;}
._c{width:52.266667pt;}
._f{width:62.240000pt;}
._1d{width:66.133333pt;}
.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;}
.y37{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y66{bottom:88.111600pt;}
.y95{bottom:88.671067pt;}
.y65{bottom:105.444933pt;}
.y94{bottom:106.004400pt;}
.y2d{bottom:116.126800pt;}
.y64{bottom:122.778267pt;}
.y93{bottom:123.337733pt;}
.y2c{bottom:133.460133pt;}
.y63{bottom:140.111600pt;}
.y92{bottom:140.671067pt;}
.y2b{bottom:150.793467pt;}
.y62{bottom:157.444933pt;}
.y91{bottom:158.004400pt;}
.y2a{bottom:168.126800pt;}
.y61{bottom:174.778267pt;}
.y90{bottom:175.337733pt;}
.y29{bottom:185.460133pt;}
.y60{bottom:192.111600pt;}
.y8f{bottom:192.671067pt;}
.y28{bottom:202.793467pt;}
.y5f{bottom:209.444933pt;}
.y8e{bottom:210.004400pt;}
.y27{bottom:220.126800pt;}
.y5e{bottom:226.778267pt;}
.y8d{bottom:227.337733pt;}
.y26{bottom:237.460133pt;}
.y5d{bottom:244.111600pt;}
.y8c{bottom:244.671067pt;}
.y25{bottom:254.793467pt;}
.y5c{bottom:261.444933pt;}
.y8b{bottom:262.004400pt;}
.y24{bottom:272.126800pt;}
.y5b{bottom:278.778267pt;}
.y8a{bottom:279.337733pt;}
.y23{bottom:289.460133pt;}
.y5a{bottom:296.111600pt;}
.y89{bottom:296.671067pt;}
.y22{bottom:306.793467pt;}
.y59{bottom:313.444933pt;}
.y88{bottom:314.004400pt;}
.y21{bottom:324.126800pt;}
.y58{bottom:330.778267pt;}
.y87{bottom:331.337733pt;}
.y20{bottom:341.460133pt;}
.y57{bottom:348.111600pt;}
.y86{bottom:348.671067pt;}
.y1f{bottom:358.793467pt;}
.y56{bottom:365.444933pt;}
.y85{bottom:366.004400pt;}
.y55{bottom:382.778267pt;}
.y96{bottom:383.337733pt;}
.y1e{bottom:393.509467pt;}
.y54{bottom:400.111600pt;}
.y84{bottom:400.671067pt;}
.y36{bottom:405.457733pt;}
.y1d{bottom:410.837467pt;}
.y67{bottom:417.444933pt;}
.y83{bottom:418.004400pt;}
.y35{bottom:425.457733pt;}
.y1c{bottom:426.833467pt;}
.y53{bottom:434.778267pt;}
.y82{bottom:435.337733pt;}
.y1b{bottom:442.829467pt;}
.y34{bottom:445.457733pt;}
.y52{bottom:452.111600pt;}
.y81{bottom:452.671067pt;}
.y1a{bottom:458.825467pt;}
.y51{bottom:469.444933pt;}
.y80{bottom:470.004400pt;}
.y19{bottom:474.821467pt;}
.y33{bottom:481.457733pt;}
.y50{bottom:486.778267pt;}
.y7f{bottom:487.337733pt;}
.y18{bottom:490.817467pt;}
.y4f{bottom:504.111600pt;}
.y7e{bottom:504.671067pt;}
.y17{bottom:506.813467pt;}
.yac{bottom:521.051867pt;}
.y4e{bottom:521.444933pt;}
.y32{bottom:521.457733pt;}
.y7d{bottom:522.004400pt;}
.y16{bottom:522.809467pt;}
.yab{bottom:538.385200pt;}
.y4d{bottom:538.778267pt;}
.y15{bottom:538.805467pt;}
.y7c{bottom:539.337733pt;}
.y14{bottom:554.801467pt;}
.yaa{bottom:555.718533pt;}
.y4c{bottom:556.111600pt;}
.y7b{bottom:556.671067pt;}
.y31{bottom:557.457733pt;}
.y13{bottom:570.797467pt;}
.ya9{bottom:573.051867pt;}
.y4b{bottom:573.444933pt;}
.y7a{bottom:574.004400pt;}
.y12{bottom:586.793467pt;}
.y30{bottom:589.457733pt;}
.ya8{bottom:590.385200pt;}
.y4a{bottom:590.778267pt;}
.y79{bottom:591.337733pt;}
.y11{bottom:602.793467pt;}
.ya7{bottom:607.718533pt;}
.y49{bottom:608.111600pt;}
.y78{bottom:608.671067pt;}
.y2f{bottom:621.457733pt;}
.ya6{bottom:625.051867pt;}
.y48{bottom:625.444933pt;}
.y77{bottom:626.004400pt;}
.y10{bottom:637.469467pt;}
.ya5{bottom:642.385200pt;}
.y47{bottom:642.778267pt;}
.y76{bottom:643.337733pt;}
.y2e{bottom:653.457733pt;}
.yf{bottom:654.797467pt;}
.ya4{bottom:659.718533pt;}
.y46{bottom:660.111600pt;}
.y75{bottom:660.671067pt;}
.ye{bottom:670.793467pt;}
.ya3{bottom:677.051867pt;}
.y45{bottom:677.444933pt;}
.y74{bottom:678.004400pt;}
.yd{bottom:686.793467pt;}
.ya2{bottom:694.385200pt;}
.y44{bottom:694.778267pt;}
.y73{bottom:695.337733pt;}
.ya1{bottom:711.718533pt;}
.y43{bottom:712.111600pt;}
.y72{bottom:712.671067pt;}
.yc{bottom:721.477467pt;}
.ya0{bottom:729.051867pt;}
.y42{bottom:729.444933pt;}
.y71{bottom:730.004400pt;}
.yb{bottom:738.805467pt;}
.y9f{bottom:746.385200pt;}
.y41{bottom:746.778267pt;}
.y70{bottom:747.337733pt;}
.ya{bottom:754.801467pt;}
.y9e{bottom:763.718533pt;}
.y40{bottom:764.111600pt;}
.y6f{bottom:764.671067pt;}
.y9{bottom:770.797467pt;}
.y9d{bottom:781.051867pt;}
.y3f{bottom:781.444933pt;}
.y6e{bottom:782.004400pt;}
.y8{bottom:786.793467pt;}
.y9c{bottom:798.385200pt;}
.y3e{bottom:798.778267pt;}
.y6d{bottom:799.337733pt;}
.y7{bottom:802.793467pt;}
.y9b{bottom:815.718533pt;}
.y3d{bottom:816.111600pt;}
.y6c{bottom:816.671067pt;}
.y9a{bottom:833.051867pt;}
.y3c{bottom:833.444933pt;}
.y6b{bottom:834.004400pt;}
.y6{bottom:837.460133pt;}
.y99{bottom:850.385200pt;}
.y3b{bottom:850.778267pt;}
.y6a{bottom:851.337733pt;}
.y5{bottom:861.460133pt;}
.y98{bottom:867.718533pt;}
.y3a{bottom:868.111600pt;}
.y69{bottom:868.671067pt;}
.y97{bottom:885.051867pt;}
.y39{bottom:885.444933pt;}
.y68{bottom:886.004400pt;}
.y4{bottom:910.554800pt;}
.y38{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;}
.x13{left:57.957867pt;}
.x11{left:65.385867pt;}
.x12{left:66.536133pt;}
.x10{left:199.278133pt;}
.x5{left:224.041600pt;}
.xc{left:323.914933pt;}
.x6{left:337.941600pt;}
.xf{left:352.910667pt;}
.x14{left:355.492933pt;}
.x4{left:366.464133pt;}
.x15{left:379.492933pt;}
.xb{left:410.902933pt;}
.xa{left:442.918933pt;}
.xd{left:450.309067pt;}
.x9{left:461.698933pt;}
.xe{left:487.658667pt;}
.x8{left:495.562933pt;}
.x7{left:538.883333pt;}
.x3{left:545.952133pt;}
.x2{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; }
  