
    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_3457e0c746e2dc357a93823f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c00d48efb506bea8e29647e2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c5da7d76bbed87e67ba78818.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_1d0b2ae0fac8eed5a2a4bf6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;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_e27ec884e1754fc5cc43fa51.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:80.597700px;}
.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;}
}
.ws10{word-spacing:-55.944000px;}
.ws6{word-spacing:-38.657700px;}
.ws19{word-spacing:-38.651400px;}
.ws6b{word-spacing:-38.649600px;}
.ws5{word-spacing:-38.647800px;}
.ws45{word-spacing:-38.643000px;}
.ws7a{word-spacing:-38.642400px;}
.ws49{word-spacing:-38.640600px;}
.ws2c{word-spacing:-38.584800px;}
.ws47{word-spacing:-38.579400px;}
.ws3{word-spacing:-38.374200px;}
.ws9{word-spacing:-38.367000px;}
.ws96{word-spacing:-38.363400px;}
.ws46{word-spacing:-38.166000px;}
.ws38{word-spacing:-38.162400px;}
.wsb{word-spacing:-38.160000px;}
.ws91{word-spacing:-38.157300px;}
.ws58{word-spacing:-38.156400px;}
.ws87{word-spacing:-38.155200px;}
.ws81{word-spacing:-38.154000px;}
.wsd{word-spacing:-38.152500px;}
.wsa0{word-spacing:-38.150100px;}
.wsf{word-spacing:-38.148300px;}
.ws36{word-spacing:-38.147400px;}
.ws37{word-spacing:-38.143800px;}
.ws54{word-spacing:-38.141100px;}
.ws28{word-spacing:-37.948200px;}
.ws64{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws8d{word-spacing:-37.942200px;}
.ws23{word-spacing:-37.940400px;}
.wse{word-spacing:-37.940100px;}
.ws4{word-spacing:-37.938600px;}
.wsa{word-spacing:-37.936800px;}
.ws51{word-spacing:-37.934100px;}
.ws2{word-spacing:-37.931400px;}
.ws1c{word-spacing:-37.930200px;}
.ws22{word-spacing:-37.926000px;}
.ws6d{word-spacing:-37.925700px;}
.ws8f{word-spacing:-37.868100px;}
.wsc{word-spacing:-37.716000px;}
.ws84{word-spacing:-37.440000px;}
.ws3d{word-spacing:-37.432800px;}
.ws7e{word-spacing:-37.223100px;}
.ws3c{word-spacing:-37.218600px;}
.ws29{word-spacing:-37.211400px;}
.ws7b{word-spacing:-37.148400px;}
.ws3e{word-spacing:-36.720000px;}
.ws2f{word-spacing:-36.714600px;}
.ws8b{word-spacing:-35.987400px;}
.ws68{word-spacing:-35.985600px;}
.ws66{word-spacing:-35.772000px;}
.ws18{word-spacing:-35.771400px;}
.ws4d{word-spacing:-35.766000px;}
.ws61{word-spacing:-35.707200px;}
.ws43{word-spacing:-35.269200px;}
.ws5e{word-spacing:-35.063100px;}
.ws63{word-spacing:-35.060400px;}
.ws7f{word-spacing:-35.047800px;}
.ws34{word-spacing:-34.549200px;}
.ws2e{word-spacing:-34.340400px;}
.ws7c{word-spacing:-34.337400px;}
.ws55{word-spacing:-34.335000px;}
.ws13{word-spacing:-33.840000px;}
.ws7d{word-spacing:-33.830400px;}
.ws59{word-spacing:-33.829200px;}
.ws20{word-spacing:-33.823200px;}
.ws74{word-spacing:-33.622200px;}
.ws56{word-spacing:-33.615000px;}
.ws60{word-spacing:-33.614400px;}
.ws2b{word-spacing:-33.613200px;}
.ws16{word-spacing:-33.612900px;}
.ws8{word-spacing:-33.547800px;}
.ws5d{word-spacing:-32.891400px;}
.ws5f{word-spacing:-32.406000px;}
.ws8e{word-spacing:-32.190000px;}
.ws79{word-spacing:-31.462200px;}
.ws53{word-spacing:-31.454400px;}
.ws88{word-spacing:-31.451400px;}
.ws71{word-spacing:-31.449600px;}
.ws2d{word-spacing:-30.955200px;}
.ws82{word-spacing:-30.242400px;}
.ws89{word-spacing:-30.226200px;}
.ws73{word-spacing:-30.022200px;}
.ws1d{word-spacing:-30.020400px;}
.ws80{word-spacing:-30.017400px;}
.ws26{word-spacing:-29.304000px;}
.ws3a{word-spacing:-29.298600px;}
.ws57{word-spacing:-29.295000px;}
.ws86{word-spacing:-29.292000px;}
.ws70{word-spacing:-29.286600px;}
.ws33{word-spacing:-28.796400px;}
.ws9a{word-spacing:-28.581300px;}
.ws75{word-spacing:-28.494000px;}
.ws4f{word-spacing:-28.072800px;}
.ws95{word-spacing:-27.989100px;}
.ws77{word-spacing:-27.852900px;}
.ws52{word-spacing:-26.640000px;}
.ws31{word-spacing:-26.430000px;}
.ws3b{word-spacing:-26.424600px;}
.ws27{word-spacing:-26.424000px;}
.ws5a{word-spacing:-26.422200px;}
.ws1f{word-spacing:-25.909200px;}
.ws67{word-spacing:-25.691400px;}
.ws24{word-spacing:-25.475400px;}
.ws9d{word-spacing:-24.263100px;}
.ws30{word-spacing:-24.259200px;}
.ws11{word-spacing:-23.766000px;}
.ws76{word-spacing:-23.760000px;}
.ws94{word-spacing:-23.676600px;}
.ws41{word-spacing:-23.027400px;}
.ws8a{word-spacing:-22.816800px;}
.ws5c{word-spacing:-22.815600px;}
.ws85{word-spacing:-22.320000px;}
.ws65{word-spacing:-22.309200px;}
.ws9f{word-spacing:-22.107300px;}
.ws1e{word-spacing:-21.606000px;}
.ws93{word-spacing:-21.390000px;}
.ws90{word-spacing:-21.382200px;}
.ws83{word-spacing:-21.369600px;}
.ws69{word-spacing:-21.366000px;}
.ws48{word-spacing:-21.357900px;}
.ws4b{word-spacing:-21.299400px;}
.ws2a{word-spacing:-20.882400px;}
.ws17{word-spacing:-19.226400px;}
.ws7{word-spacing:-18.472500px;}
.ws21{word-spacing:-17.070000px;}
.ws40{word-spacing:-16.335000px;}
.ws50{word-spacing:-15.822900px;}
.ws4c{word-spacing:-15.614400px;}
.ws6e{word-spacing:-15.107400px;}
.ws97{word-spacing:-14.325300px;}
.ws3f{word-spacing:-13.676400px;}
.ws35{word-spacing:-13.675200px;}
.ws62{word-spacing:-12.949200px;}
.ws32{word-spacing:-12.744000px;}
.ws15{word-spacing:-12.024000px;}
.ws4e{word-spacing:-12.003900px;}
.ws12{word-spacing:-11.522400px;}
.ws72{word-spacing:-9.117000px;}
.ws78{word-spacing:-8.420400px;}
.ws6f{word-spacing:-8.414400px;}
.ws14{word-spacing:-8.406000px;}
.ws42{word-spacing:-7.911900px;}
.ws39{word-spacing:-7.196400px;}
.ws44{word-spacing:-5.760000px;}
.ws1a{word-spacing:-5.750100px;}
.ws1b{word-spacing:-5.747400px;}
.ws6a{word-spacing:-3.386400px;}
.ws92{word-spacing:-1.944000px;}
.ws4a{word-spacing:0.000000px;}
.ws25{word-spacing:1.666800px;}
.ws6c{word-spacing:3.602700px;}
.ws8c{word-spacing:4.320000px;}
.ws98{word-spacing:8.858700px;}
.ws5b{word-spacing:9.357600px;}
.ws9b{word-spacing:21.680400px;}
.ws9e{word-spacing:26.153100px;}
.ws99{word-spacing:28.303200px;}
.ws9c{word-spacing:205.568100px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._15{width:19.999800px;}
._a{width:21.229800px;}
._9{width:22.235400px;}
._6{width:23.904000px;}
._1a{width:25.259400px;}
._f{width:26.330400px;}
._b{width:27.349200px;}
._12{width:28.665600px;}
._e{width:30.549600px;}
._c{width:31.658400px;}
._10{width:32.971200px;}
._16{width:34.403400px;}
._1{width:36.000000px;}
._8{width:37.940400px;}
._d{width:39.916800px;}
._18{width:41.397600px;}
._13{width:43.285200px;}
._11{width:44.355600px;}
._5{width:45.583200px;}
._7{width:48.618000px;}
._14{width:50.464800px;}
._17{width:54.000000px;}
._1b{width:60.906600px;}
._19{width:66.892800px;}
._1d{width:83.430900px;}
._1c{width:85.444800px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y4d{bottom:100.696500px;}
.y4c{bottom:121.396500px;}
.y72{bottom:143.175000px;}
.y8f{bottom:143.536500px;}
.y27{bottom:161.896500px;}
.y4b{bottom:162.975000px;}
.y71{bottom:163.875000px;}
.y8e{bottom:164.236500px;}
.y26{bottom:182.596500px;}
.y70{bottom:184.575000px;}
.y8d{bottom:184.936500px;}
.y25{bottom:203.295000px;}
.y4a{bottom:204.736500px;}
.y6f{bottom:205.275000px;}
.y8c{bottom:205.636500px;}
.y24{bottom:223.996500px;}
.y6e{bottom:225.975000px;}
.y8b{bottom:226.336500px;}
.y23{bottom:244.696500px;}
.y49{bottom:246.496500px;}
.y6d{bottom:246.675000px;}
.y8a{bottom:247.036500px;}
.y48{bottom:267.196500px;}
.y6c{bottom:267.375000px;}
.y89{bottom:267.736500px;}
.y22{bottom:286.275000px;}
.y47{bottom:287.896500px;}
.y6b{bottom:288.075000px;}
.y46{bottom:308.596500px;}
.y88{bottom:309.496500px;}
.y21{bottom:328.036500px;}
.y45{bottom:329.295000px;}
.y6a{bottom:329.836500px;}
.y87{bottom:330.196500px;}
.y20{bottom:348.736500px;}
.y69{bottom:350.536500px;}
.y86{bottom:350.896500px;}
.y1f{bottom:369.436500px;}
.y44{bottom:370.875000px;}
.y68{bottom:371.236500px;}
.y85{bottom:371.596500px;}
.y1e{bottom:390.136500px;}
.y43{bottom:391.575000px;}
.y67{bottom:391.936500px;}
.y84{bottom:392.295000px;}
.y1d{bottom:410.836500px;}
.y42{bottom:412.275000px;}
.y66{bottom:412.636500px;}
.y83{bottom:412.996500px;}
.y1c{bottom:431.536500px;}
.y41{bottom:432.975000px;}
.y65{bottom:433.336500px;}
.y1b{bottom:452.236500px;}
.y40{bottom:453.675000px;}
.y64{bottom:454.036500px;}
.y82{bottom:454.575000px;}
.y81{bottom:475.275000px;}
.y1a{bottom:493.996500px;}
.y3f{bottom:495.436500px;}
.y63{bottom:495.796500px;}
.y80{bottom:495.975000px;}
.y3e{bottom:516.136500px;}
.y62{bottom:516.496500px;}
.y7f{bottom:516.675000px;}
.y9f{bottom:517.396500px;}
.y19{bottom:535.575000px;}
.y3d{bottom:536.836500px;}
.y61{bottom:537.195000px;}
.y7e{bottom:537.375000px;}
.y9e{bottom:538.096500px;}
.y18{bottom:556.275000px;}
.y3c{bottom:557.536500px;}
.y60{bottom:557.896500px;}
.y7d{bottom:558.075000px;}
.y9d{bottom:558.796500px;}
.y3b{bottom:578.236500px;}
.y5f{bottom:578.596500px;}
.y7c{bottom:578.775000px;}
.y9c{bottom:579.496500px;}
.y17{bottom:598.036500px;}
.y3a{bottom:598.936500px;}
.y5e{bottom:599.295000px;}
.y9b{bottom:600.195000px;}
.y16{bottom:618.736500px;}
.y7b{bottom:620.536500px;}
.y9a{bottom:620.896500px;}
.y15{bottom:639.436500px;}
.y39{bottom:640.695000px;}
.y5d{bottom:640.875000px;}
.y7a{bottom:641.236500px;}
.y99{bottom:641.596500px;}
.y14{bottom:660.136500px;}
.y79{bottom:661.936500px;}
.y98{bottom:662.295000px;}
.y13{bottom:680.836500px;}
.y38{bottom:682.275000px;}
.y5c{bottom:682.636500px;}
.y97{bottom:682.996500px;}
.y12{bottom:701.536500px;}
.y37{bottom:702.975000px;}
.y5b{bottom:703.336500px;}
.y96{bottom:703.695000px;}
.y11{bottom:722.236500px;}
.y36{bottom:723.675000px;}
.y5a{bottom:724.036500px;}
.y95{bottom:724.396500px;}
.y10{bottom:742.936500px;}
.y59{bottom:744.736500px;}
.y94{bottom:745.096500px;}
.yf{bottom:763.636500px;}
.y35{bottom:765.436500px;}
.y93{bottom:765.795000px;}
.y34{bottom:786.136500px;}
.y58{bottom:786.496500px;}
.ye{bottom:805.395000px;}
.y33{bottom:806.836500px;}
.y78{bottom:807.195000px;}
.y32{bottom:827.536500px;}
.y77{bottom:827.895000px;}
.y57{bottom:828.075000px;}
.yd{bottom:846.975000px;}
.y31{bottom:848.236500px;}
.y76{bottom:848.596500px;}
.y56{bottom:848.775000px;}
.y30{bottom:868.936500px;}
.y75{bottom:869.295000px;}
.y55{bottom:869.475000px;}
.yc{bottom:888.736500px;}
.y2f{bottom:889.636500px;}
.y74{bottom:889.995000px;}
.y54{bottom:890.175000px;}
.y73{bottom:910.695000px;}
.y53{bottom:910.875000px;}
.yb{bottom:930.495000px;}
.y2e{bottom:931.395000px;}
.y52{bottom:931.575000px;}
.y2d{bottom:952.095000px;}
.y51{bottom:952.275000px;}
.ya{bottom:972.075000px;}
.y2c{bottom:972.795000px;}
.y50{bottom:972.975000px;}
.y2b{bottom:993.495000px;}
.y4f{bottom:993.675000px;}
.y9{bottom:1013.836500px;}
.y92{bottom:1014.195000px;}
.y4e{bottom:1014.375000px;}
.y91{bottom:1034.895000px;}
.y2a{bottom:1035.075000px;}
.y90{bottom:1055.595000px;}
.y29{bottom:1055.775000px;}
.y28{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:63.457031px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:136.080000px;}
.xb{left:154.620000px;}
.xc{left:181.620000px;}
.x8{left:398.700000px;}
.x9{left:442.800000px;}
.x3{left:461.625000px;}
.xa{left:516.780000px;}
.x6{left:524.700000px;}
.x7{left:534.600000px;}
.x5{left:540.720000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:71.642400pt;}
.ws10{word-spacing:-49.728000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws19{word-spacing:-34.356800pt;}
.ws6b{word-spacing:-34.355200pt;}
.ws5{word-spacing:-34.353600pt;}
.ws45{word-spacing:-34.349333pt;}
.ws7a{word-spacing:-34.348800pt;}
.ws49{word-spacing:-34.347200pt;}
.ws2c{word-spacing:-34.297600pt;}
.ws47{word-spacing:-34.292800pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9{word-spacing:-34.104000pt;}
.ws96{word-spacing:-34.100800pt;}
.ws46{word-spacing:-33.925333pt;}
.ws38{word-spacing:-33.922133pt;}
.wsb{word-spacing:-33.920000pt;}
.ws91{word-spacing:-33.917600pt;}
.ws58{word-spacing:-33.916800pt;}
.ws87{word-spacing:-33.915733pt;}
.ws81{word-spacing:-33.914667pt;}
.wsd{word-spacing:-33.913333pt;}
.wsa0{word-spacing:-33.911200pt;}
.wsf{word-spacing:-33.909600pt;}
.ws36{word-spacing:-33.908800pt;}
.ws37{word-spacing:-33.905600pt;}
.ws54{word-spacing:-33.903200pt;}
.ws28{word-spacing:-33.731733pt;}
.ws64{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws8d{word-spacing:-33.726400pt;}
.ws23{word-spacing:-33.724800pt;}
.wse{word-spacing:-33.724533pt;}
.ws4{word-spacing:-33.723200pt;}
.wsa{word-spacing:-33.721600pt;}
.ws51{word-spacing:-33.719200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws1c{word-spacing:-33.715733pt;}
.ws22{word-spacing:-33.712000pt;}
.ws6d{word-spacing:-33.711733pt;}
.ws8f{word-spacing:-33.660533pt;}
.wsc{word-spacing:-33.525333pt;}
.ws84{word-spacing:-33.280000pt;}
.ws3d{word-spacing:-33.273600pt;}
.ws7e{word-spacing:-33.087200pt;}
.ws3c{word-spacing:-33.083200pt;}
.ws29{word-spacing:-33.076800pt;}
.ws7b{word-spacing:-33.020800pt;}
.ws3e{word-spacing:-32.640000pt;}
.ws2f{word-spacing:-32.635200pt;}
.ws8b{word-spacing:-31.988800pt;}
.ws68{word-spacing:-31.987200pt;}
.ws66{word-spacing:-31.797333pt;}
.ws18{word-spacing:-31.796800pt;}
.ws4d{word-spacing:-31.792000pt;}
.ws61{word-spacing:-31.739733pt;}
.ws43{word-spacing:-31.350400pt;}
.ws5e{word-spacing:-31.167200pt;}
.ws63{word-spacing:-31.164800pt;}
.ws7f{word-spacing:-31.153600pt;}
.ws34{word-spacing:-30.710400pt;}
.ws2e{word-spacing:-30.524800pt;}
.ws7c{word-spacing:-30.522133pt;}
.ws55{word-spacing:-30.520000pt;}
.ws13{word-spacing:-30.080000pt;}
.ws7d{word-spacing:-30.071467pt;}
.ws59{word-spacing:-30.070400pt;}
.ws20{word-spacing:-30.065067pt;}
.ws74{word-spacing:-29.886400pt;}
.ws56{word-spacing:-29.880000pt;}
.ws60{word-spacing:-29.879467pt;}
.ws2b{word-spacing:-29.878400pt;}
.ws16{word-spacing:-29.878133pt;}
.ws8{word-spacing:-29.820267pt;}
.ws5d{word-spacing:-29.236800pt;}
.ws5f{word-spacing:-28.805333pt;}
.ws8e{word-spacing:-28.613333pt;}
.ws79{word-spacing:-27.966400pt;}
.ws53{word-spacing:-27.959467pt;}
.ws88{word-spacing:-27.956800pt;}
.ws71{word-spacing:-27.955200pt;}
.ws2d{word-spacing:-27.515733pt;}
.ws82{word-spacing:-26.882133pt;}
.ws89{word-spacing:-26.867733pt;}
.ws73{word-spacing:-26.686400pt;}
.ws1d{word-spacing:-26.684800pt;}
.ws80{word-spacing:-26.682133pt;}
.ws26{word-spacing:-26.048000pt;}
.ws3a{word-spacing:-26.043200pt;}
.ws57{word-spacing:-26.040000pt;}
.ws86{word-spacing:-26.037333pt;}
.ws70{word-spacing:-26.032533pt;}
.ws33{word-spacing:-25.596800pt;}
.ws9a{word-spacing:-25.405600pt;}
.ws75{word-spacing:-25.328000pt;}
.ws4f{word-spacing:-24.953600pt;}
.ws95{word-spacing:-24.879200pt;}
.ws77{word-spacing:-24.758133pt;}
.ws52{word-spacing:-23.680000pt;}
.ws31{word-spacing:-23.493333pt;}
.ws3b{word-spacing:-23.488533pt;}
.ws27{word-spacing:-23.488000pt;}
.ws5a{word-spacing:-23.486400pt;}
.ws1f{word-spacing:-23.030400pt;}
.ws67{word-spacing:-22.836800pt;}
.ws24{word-spacing:-22.644800pt;}
.ws9d{word-spacing:-21.567200pt;}
.ws30{word-spacing:-21.563733pt;}
.ws11{word-spacing:-21.125333pt;}
.ws76{word-spacing:-21.120000pt;}
.ws94{word-spacing:-21.045867pt;}
.ws41{word-spacing:-20.468800pt;}
.ws8a{word-spacing:-20.281600pt;}
.ws5c{word-spacing:-20.280533pt;}
.ws85{word-spacing:-19.840000pt;}
.ws65{word-spacing:-19.830400pt;}
.ws9f{word-spacing:-19.650933pt;}
.ws1e{word-spacing:-19.205333pt;}
.ws93{word-spacing:-19.013333pt;}
.ws90{word-spacing:-19.006400pt;}
.ws83{word-spacing:-18.995200pt;}
.ws69{word-spacing:-18.992000pt;}
.ws48{word-spacing:-18.984800pt;}
.ws4b{word-spacing:-18.932800pt;}
.ws2a{word-spacing:-18.562133pt;}
.ws17{word-spacing:-17.090133pt;}
.ws7{word-spacing:-16.420000pt;}
.ws21{word-spacing:-15.173333pt;}
.ws40{word-spacing:-14.520000pt;}
.ws50{word-spacing:-14.064800pt;}
.ws4c{word-spacing:-13.879467pt;}
.ws6e{word-spacing:-13.428800pt;}
.ws97{word-spacing:-12.733600pt;}
.ws3f{word-spacing:-12.156800pt;}
.ws35{word-spacing:-12.155733pt;}
.ws62{word-spacing:-11.510400pt;}
.ws32{word-spacing:-11.328000pt;}
.ws15{word-spacing:-10.688000pt;}
.ws4e{word-spacing:-10.670133pt;}
.ws12{word-spacing:-10.242133pt;}
.ws72{word-spacing:-8.104000pt;}
.ws78{word-spacing:-7.484800pt;}
.ws6f{word-spacing:-7.479467pt;}
.ws14{word-spacing:-7.472000pt;}
.ws42{word-spacing:-7.032800pt;}
.ws39{word-spacing:-6.396800pt;}
.ws44{word-spacing:-5.120000pt;}
.ws1a{word-spacing:-5.111200pt;}
.ws1b{word-spacing:-5.108800pt;}
.ws6a{word-spacing:-3.010133pt;}
.ws92{word-spacing:-1.728000pt;}
.ws4a{word-spacing:0.000000pt;}
.ws25{word-spacing:1.481600pt;}
.ws6c{word-spacing:3.202400pt;}
.ws8c{word-spacing:3.840000pt;}
.ws98{word-spacing:7.874400pt;}
.ws5b{word-spacing:8.317867pt;}
.ws9b{word-spacing:19.271467pt;}
.ws9e{word-spacing:23.247200pt;}
.ws99{word-spacing:25.158400pt;}
.ws9c{word-spacing:182.727200pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._15{width:17.777600pt;}
._a{width:18.870933pt;}
._9{width:19.764800pt;}
._6{width:21.248000pt;}
._1a{width:22.452800pt;}
._f{width:23.404800pt;}
._b{width:24.310400pt;}
._12{width:25.480533pt;}
._e{width:27.155200pt;}
._c{width:28.140800pt;}
._10{width:29.307733pt;}
._16{width:30.580800pt;}
._1{width:32.000000pt;}
._8{width:33.724800pt;}
._d{width:35.481600pt;}
._18{width:36.797867pt;}
._13{width:38.475733pt;}
._11{width:39.427200pt;}
._5{width:40.518400pt;}
._7{width:43.216000pt;}
._14{width:44.857600pt;}
._17{width:48.000000pt;}
._1b{width:54.139200pt;}
._19{width:59.460267pt;}
._1d{width:74.160800pt;}
._1c{width:75.950933pt;}
._0{width:544.128000pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y4d{bottom:89.508000pt;}
.y4c{bottom:107.908000pt;}
.y72{bottom:127.266667pt;}
.y8f{bottom:127.588000pt;}
.y27{bottom:143.908000pt;}
.y4b{bottom:144.866667pt;}
.y71{bottom:145.666667pt;}
.y8e{bottom:145.988000pt;}
.y26{bottom:162.308000pt;}
.y70{bottom:164.066667pt;}
.y8d{bottom:164.388000pt;}
.y25{bottom:180.706667pt;}
.y4a{bottom:181.988000pt;}
.y6f{bottom:182.466667pt;}
.y8c{bottom:182.788000pt;}
.y24{bottom:199.108000pt;}
.y6e{bottom:200.866667pt;}
.y8b{bottom:201.188000pt;}
.y23{bottom:217.508000pt;}
.y49{bottom:219.108000pt;}
.y6d{bottom:219.266667pt;}
.y8a{bottom:219.588000pt;}
.y48{bottom:237.508000pt;}
.y6c{bottom:237.666667pt;}
.y89{bottom:237.988000pt;}
.y22{bottom:254.466667pt;}
.y47{bottom:255.908000pt;}
.y6b{bottom:256.066667pt;}
.y46{bottom:274.308000pt;}
.y88{bottom:275.108000pt;}
.y21{bottom:291.588000pt;}
.y45{bottom:292.706667pt;}
.y6a{bottom:293.188000pt;}
.y87{bottom:293.508000pt;}
.y20{bottom:309.988000pt;}
.y69{bottom:311.588000pt;}
.y86{bottom:311.908000pt;}
.y1f{bottom:328.388000pt;}
.y44{bottom:329.666667pt;}
.y68{bottom:329.988000pt;}
.y85{bottom:330.308000pt;}
.y1e{bottom:346.788000pt;}
.y43{bottom:348.066667pt;}
.y67{bottom:348.388000pt;}
.y84{bottom:348.706667pt;}
.y1d{bottom:365.188000pt;}
.y42{bottom:366.466667pt;}
.y66{bottom:366.788000pt;}
.y83{bottom:367.108000pt;}
.y1c{bottom:383.588000pt;}
.y41{bottom:384.866667pt;}
.y65{bottom:385.188000pt;}
.y1b{bottom:401.988000pt;}
.y40{bottom:403.266667pt;}
.y64{bottom:403.588000pt;}
.y82{bottom:404.066667pt;}
.y81{bottom:422.466667pt;}
.y1a{bottom:439.108000pt;}
.y3f{bottom:440.388000pt;}
.y63{bottom:440.708000pt;}
.y80{bottom:440.866667pt;}
.y3e{bottom:458.788000pt;}
.y62{bottom:459.108000pt;}
.y7f{bottom:459.266667pt;}
.y9f{bottom:459.908000pt;}
.y19{bottom:476.066667pt;}
.y3d{bottom:477.188000pt;}
.y61{bottom:477.506667pt;}
.y7e{bottom:477.666667pt;}
.y9e{bottom:478.308000pt;}
.y18{bottom:494.466667pt;}
.y3c{bottom:495.588000pt;}
.y60{bottom:495.908000pt;}
.y7d{bottom:496.066667pt;}
.y9d{bottom:496.708000pt;}
.y3b{bottom:513.988000pt;}
.y5f{bottom:514.308000pt;}
.y7c{bottom:514.466667pt;}
.y9c{bottom:515.108000pt;}
.y17{bottom:531.588000pt;}
.y3a{bottom:532.388000pt;}
.y5e{bottom:532.706667pt;}
.y9b{bottom:533.506667pt;}
.y16{bottom:549.988000pt;}
.y7b{bottom:551.588000pt;}
.y9a{bottom:551.908000pt;}
.y15{bottom:568.388000pt;}
.y39{bottom:569.506667pt;}
.y5d{bottom:569.666667pt;}
.y7a{bottom:569.988000pt;}
.y99{bottom:570.308000pt;}
.y14{bottom:586.788000pt;}
.y79{bottom:588.388000pt;}
.y98{bottom:588.706667pt;}
.y13{bottom:605.188000pt;}
.y38{bottom:606.466667pt;}
.y5c{bottom:606.788000pt;}
.y97{bottom:607.108000pt;}
.y12{bottom:623.588000pt;}
.y37{bottom:624.866667pt;}
.y5b{bottom:625.188000pt;}
.y96{bottom:625.506667pt;}
.y11{bottom:641.988000pt;}
.y36{bottom:643.266667pt;}
.y5a{bottom:643.588000pt;}
.y95{bottom:643.908000pt;}
.y10{bottom:660.388000pt;}
.y59{bottom:661.988000pt;}
.y94{bottom:662.308000pt;}
.yf{bottom:678.788000pt;}
.y35{bottom:680.388000pt;}
.y93{bottom:680.706667pt;}
.y34{bottom:698.788000pt;}
.y58{bottom:699.108000pt;}
.ye{bottom:715.906667pt;}
.y33{bottom:717.188000pt;}
.y78{bottom:717.506667pt;}
.y32{bottom:735.588000pt;}
.y77{bottom:735.906667pt;}
.y57{bottom:736.066667pt;}
.yd{bottom:752.866667pt;}
.y31{bottom:753.988000pt;}
.y76{bottom:754.308000pt;}
.y56{bottom:754.466667pt;}
.y30{bottom:772.388000pt;}
.y75{bottom:772.706667pt;}
.y55{bottom:772.866667pt;}
.yc{bottom:789.988000pt;}
.y2f{bottom:790.788000pt;}
.y74{bottom:791.106667pt;}
.y54{bottom:791.266667pt;}
.y73{bottom:809.506667pt;}
.y53{bottom:809.666667pt;}
.yb{bottom:827.106667pt;}
.y2e{bottom:827.906667pt;}
.y52{bottom:828.066667pt;}
.y2d{bottom:846.306667pt;}
.y51{bottom:846.466667pt;}
.ya{bottom:864.066667pt;}
.y2c{bottom:864.706667pt;}
.y50{bottom:864.866667pt;}
.y2b{bottom:883.106667pt;}
.y4f{bottom:883.266667pt;}
.y9{bottom:901.188000pt;}
.y92{bottom:901.506667pt;}
.y4e{bottom:901.666667pt;}
.y91{bottom:919.906667pt;}
.y2a{bottom:920.066667pt;}
.y90{bottom:938.306667pt;}
.y29{bottom:938.466667pt;}
.y28{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:56.406250pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:120.960000pt;}
.xb{left:137.440000pt;}
.xc{left:161.440000pt;}
.x8{left:354.400000pt;}
.x9{left:393.600000pt;}
.x3{left:410.333333pt;}
.xa{left:459.360000pt;}
.x6{left:466.400000pt;}
.x7{left:475.200000pt;}
.x5{left:480.640000pt;}
.x2{left:649.920000pt;}
}




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