
    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_de4774f664b907011cf587a8.woff')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_e5b0b5e20d89380451fa3a07.woff')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_75cff33ed6b97475ef5c6a36.woff')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_52654dd7c3c056171a0b6af9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c87da978477f1760b8f246de.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_94d863bd19767b22e3bf116b.woff')format("woff");}.ff6{font-family:ff6;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:188.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;}
}
.wsd{word-spacing:-55.944000px;}
.ws94{word-spacing:-38.663100px;}
.ws97{word-spacing:-38.661300px;}
.ws93{word-spacing:-38.661000px;}
.ws55{word-spacing:-38.659200px;}
.ws6{word-spacing:-38.657700px;}
.ws65{word-spacing:-38.657400px;}
.ws4e{word-spacing:-38.656800px;}
.ws42{word-spacing:-38.656500px;}
.ws68{word-spacing:-38.655600px;}
.ws20{word-spacing:-38.655000px;}
.ws6b{word-spacing:-38.651700px;}
.ws57{word-spacing:-38.651400px;}
.ws66{word-spacing:-38.648700px;}
.ws5{word-spacing:-38.647800px;}
.ws5c{word-spacing:-38.443200px;}
.ws2f{word-spacing:-38.440800px;}
.ws41{word-spacing:-38.439600px;}
.ws34{word-spacing:-38.437200px;}
.ws6a{word-spacing:-38.435400px;}
.ws52{word-spacing:-38.433000px;}
.ws3{word-spacing:-38.374200px;}
.wsb{word-spacing:-38.359800px;}
.ws47{word-spacing:-38.160000px;}
.ws59{word-spacing:-38.157000px;}
.ws53{word-spacing:-38.154600px;}
.ws25{word-spacing:-38.149200px;}
.ws96{word-spacing:-38.142900px;}
.ws17{word-spacing:-38.142000px;}
.wsc{word-spacing:-38.141100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws39{word-spacing:-37.936800px;}
.ws75{word-spacing:-37.934100px;}
.ws38{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws5f{word-spacing:-37.930200px;}
.ws1a{word-spacing:-37.926000px;}
.ws91{word-spacing:-37.922400px;}
.wsa{word-spacing:-37.869000px;}
.ws61{word-spacing:-37.726200px;}
.ws9{word-spacing:-37.725300px;}
.ws70{word-spacing:-37.719900px;}
.ws46{word-spacing:-37.718100px;}
.ws5d{word-spacing:-37.716000px;}
.ws2c{word-spacing:-37.440000px;}
.ws6e{word-spacing:-37.432800px;}
.ws50{word-spacing:-37.431000px;}
.ws3e{word-spacing:-37.224000px;}
.ws77{word-spacing:-37.215300px;}
.ws7c{word-spacing:-37.213200px;}
.ws63{word-spacing:-36.990900px;}
.ws95{word-spacing:-36.495900px;}
.ws85{word-spacing:-36.493200px;}
.ws78{word-spacing:-36.475200px;}
.ws32{word-spacing:-35.775000px;}
.ws7b{word-spacing:-35.771400px;}
.ws28{word-spacing:-35.271000px;}
.ws72{word-spacing:-35.268600px;}
.ws5a{word-spacing:-34.337400px;}
.ws10{word-spacing:-34.305600px;}
.ws64{word-spacing:-33.840000px;}
.ws1d{word-spacing:-33.826500px;}
.ws8{word-spacing:-33.547800px;}
.ws23{word-spacing:-33.120600px;}
.ws87{word-spacing:-33.114000px;}
.ws8c{word-spacing:-32.864400px;}
.ws16{word-spacing:-32.400000px;}
.ws8d{word-spacing:-32.394000px;}
.ws1b{word-spacing:-32.380200px;}
.ws1f{word-spacing:-32.178600px;}
.ws4a{word-spacing:-32.171400px;}
.ws6c{word-spacing:-32.167200px;}
.ws22{word-spacing:-31.663800px;}
.ws40{word-spacing:-31.464000px;}
.ws2b{word-spacing:-30.744000px;}
.ws92{word-spacing:-30.743100px;}
.ws76{word-spacing:-30.739200px;}
.ws7f{word-spacing:-30.733200px;}
.ws89{word-spacing:-30.013200px;}
.ws8b{word-spacing:-29.304000px;}
.ws74{word-spacing:-29.293200px;}
.ws35{word-spacing:-29.291400px;}
.wse{word-spacing:-28.800000px;}
.wsf{word-spacing:-28.794600px;}
.ws62{word-spacing:-28.584000px;}
.ws14{word-spacing:-28.569600px;}
.ws82{word-spacing:-28.068600px;}
.ws8a{word-spacing:-27.853200px;}
.ws69{word-spacing:-27.360000px;}
.ws86{word-spacing:-27.144000px;}
.ws4d{word-spacing:-27.135000px;}
.ws26{word-spacing:-26.413200px;}
.ws27{word-spacing:-25.699200px;}
.ws8f{word-spacing:-25.682100px;}
.ws73{word-spacing:-24.982200px;}
.ws1e{word-spacing:-24.973200px;}
.ws4b{word-spacing:-24.971400px;}
.ws7d{word-spacing:-24.966000px;}
.ws29{word-spacing:-24.480000px;}
.ws4c{word-spacing:-24.264000px;}
.ws13{word-spacing:-23.539200px;}
.ws49{word-spacing:-23.526000px;}
.ws51{word-spacing:-21.378600px;}
.ws12{word-spacing:-21.369600px;}
.ws11{word-spacing:-20.651400px;}
.ws15{word-spacing:-19.918800px;}
.ws84{word-spacing:-19.440000px;}
.ws83{word-spacing:-19.217400px;}
.ws81{word-spacing:-18.712800px;}
.ws43{word-spacing:-18.694800px;}
.ws7e{word-spacing:-18.495000px;}
.ws4f{word-spacing:-18.487800px;}
.ws7{word-spacing:-18.472500px;}
.ws2d{word-spacing:-17.773200px;}
.ws1c{word-spacing:-17.044200px;}
.ws6d{word-spacing:-16.558200px;}
.ws2e{word-spacing:-16.336800px;}
.ws58{word-spacing:-16.126800px;}
.ws67{word-spacing:-15.840000px;}
.ws45{word-spacing:-15.822000px;}
.ws37{word-spacing:-15.613200px;}
.ws3a{word-spacing:-14.898000px;}
.ws7a{word-spacing:-14.171400px;}
.ws31{word-spacing:-13.951800px;}
.ws54{word-spacing:-13.455900px;}
.ws8e{word-spacing:-12.960000px;}
.ws60{word-spacing:-12.735000px;}
.ws33{word-spacing:-12.240000px;}
.ws21{word-spacing:-12.216600px;}
.ws24{word-spacing:-11.526000px;}
.ws6f{word-spacing:-10.802400px;}
.ws90{word-spacing:-9.785700px;}
.ws18{word-spacing:-9.351900px;}
.ws19{word-spacing:-9.126000px;}
.ws3c{word-spacing:-8.193600px;}
.ws79{word-spacing:-6.971400px;}
.ws5b{word-spacing:-4.813200px;}
.ws48{word-spacing:-4.092300px;}
.ws88{word-spacing:-3.873600px;}
.ws2a{word-spacing:-3.160800px;}
.ws5e{word-spacing:-2.876400px;}
.ws71{word-spacing:0.000000px;}
.ws30{word-spacing:1.658700px;}
.ws44{word-spacing:4.762800px;}
.ws80{word-spacing:7.650000px;}
.ws56{word-spacing:11.736000px;}
.ws3d{word-spacing:30.456000px;}
.ws36{word-spacing:36.226200px;}
.ws3b{word-spacing:342.226200px;}
.ws1{word-spacing:455.092800px;}
.ws3f{word-spacing:911.772900px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._4{width:18.775800px;}
._10{width:19.800000px;}
._14{width:21.273000px;}
._d{width:22.311000px;}
._6{width:23.340000px;}
._8{width:24.817200px;}
._f{width:26.712000px;}
._5{width:28.224000px;}
._1f{width:29.320800px;}
._c{width:30.739200px;}
._a{width:32.079600px;}
._7{width:33.631200px;}
._1{width:36.000000px;}
._18{width:38.286600px;}
._23{width:39.288000px;}
._9{width:40.294200px;}
._11{width:41.320800px;}
._1b{width:42.324000px;}
._13{width:43.400400px;}
._1e{width:44.541600px;}
._b{width:45.696600px;}
._20{width:47.116200px;}
._16{width:49.077600px;}
._21{width:50.367000px;}
._22{width:51.448800px;}
._1c{width:52.480800px;}
._e{width:53.786400px;}
._12{width:59.541300px;}
._19{width:62.125200px;}
._24{width:64.978800px;}
._1a{width:68.970000px;}
._17{width:87.673200px;}
._15{width:93.360000px;}
._1d{width:162.000000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.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;}
.y2d{bottom:100.336500px;}
.y2c{bottom:121.036500px;}
.y80{bottom:122.836500px;}
.y2b{bottom:141.736500px;}
.y7f{bottom:143.536500px;}
.y4f{bottom:162.975000px;}
.y7e{bottom:164.236500px;}
.y2a{bottom:183.496500px;}
.y4e{bottom:183.675000px;}
.y7d{bottom:184.936500px;}
.y29{bottom:204.196500px;}
.y4d{bottom:204.375000px;}
.y7c{bottom:205.636500px;}
.y28{bottom:224.896500px;}
.y4c{bottom:225.075000px;}
.y7b{bottom:226.336500px;}
.y27{bottom:245.596500px;}
.y26{bottom:266.295000px;}
.y4b{bottom:266.836500px;}
.y7a{bottom:268.096500px;}
.y25{bottom:286.996500px;}
.y4a{bottom:287.536500px;}
.y61{bottom:307.696500px;}
.y49{bottom:308.236500px;}
.y79{bottom:309.675000px;}
.y60{bottom:328.396500px;}
.y24{bottom:328.575000px;}
.y48{bottom:328.936500px;}
.y78{bottom:330.375000px;}
.y23{bottom:349.275000px;}
.y47{bottom:349.636500px;}
.y77{bottom:351.075000px;}
.y22{bottom:369.975000px;}
.y46{bottom:370.336500px;}
.y76{bottom:371.775000px;}
.y21{bottom:390.675000px;}
.y45{bottom:391.036500px;}
.y75{bottom:392.475000px;}
.y20{bottom:411.375000px;}
.y5f{bottom:411.736500px;}
.y74{bottom:413.175000px;}
.y44{bottom:432.795000px;}
.y73{bottom:433.875000px;}
.y1f{bottom:453.136500px;}
.y5e{bottom:453.496500px;}
.y72{bottom:454.575000px;}
.y1e{bottom:473.836500px;}
.y5d{bottom:474.196500px;}
.y43{bottom:474.375000px;}
.y71{bottom:475.275000px;}
.y1d{bottom:494.536500px;}
.y42{bottom:495.075000px;}
.y70{bottom:495.975000px;}
.y1c{bottom:515.236500px;}
.y41{bottom:515.775000px;}
.y6f{bottom:516.675000px;}
.y1b{bottom:535.936500px;}
.y40{bottom:536.475000px;}
.y6e{bottom:537.375000px;}
.y1a{bottom:556.636500px;}
.y5c{bottom:557.175000px;}
.y6d{bottom:558.075000px;}
.y5b{bottom:577.875000px;}
.y3f{bottom:578.236500px;}
.y6c{bottom:578.775000px;}
.y19{bottom:598.396500px;}
.y5a{bottom:598.575000px;}
.y6b{bottom:599.475000px;}
.y18{bottom:619.096500px;}
.y59{bottom:619.275000px;}
.y3e{bottom:619.996500px;}
.y6a{bottom:620.175000px;}
.y58{bottom:639.975000px;}
.y3d{bottom:640.695000px;}
.y69{bottom:640.875000px;}
.y17{bottom:660.675000px;}
.y3c{bottom:661.396500px;}
.y68{bottom:661.575000px;}
.y16{bottom:681.375000px;}
.y3b{bottom:682.096500px;}
.y67{bottom:682.275000px;}
.y15{bottom:702.075000px;}
.y57{bottom:702.436500px;}
.y3a{bottom:702.795000px;}
.y66{bottom:702.975000px;}
.y14{bottom:722.775000px;}
.y56{bottom:723.136500px;}
.y39{bottom:723.496500px;}
.y65{bottom:723.675000px;}
.y13{bottom:743.475000px;}
.y38{bottom:744.195000px;}
.y64{bottom:744.375000px;}
.y12{bottom:764.175000px;}
.y37{bottom:764.895000px;}
.y63{bottom:765.075000px;}
.y11{bottom:784.875000px;}
.y62{bottom:785.775000px;}
.y10{bottom:805.575000px;}
.y36{bottom:806.475000px;}
.yf{bottom:826.275000px;}
.y55{bottom:827.175000px;}
.y35{bottom:848.236500px;}
.ye{bottom:868.036500px;}
.y34{bottom:868.936500px;}
.y33{bottom:889.636500px;}
.yd{bottom:909.795000px;}
.y32{bottom:910.336500px;}
.y54{bottom:931.036500px;}
.yc{bottom:951.375000px;}
.y53{bottom:951.736500px;}
.y31{bottom:952.095000px;}
.y52{bottom:972.436500px;}
.y30{bottom:972.795000px;}
.yb{bottom:993.136500px;}
.y2f{bottom:993.495000px;}
.y51{bottom:1013.836500px;}
.y2e{bottom:1014.195000px;}
.ya{bottom:1034.895000px;}
.y50{bottom:1055.595000px;}
.y81{bottom:1055.775000px;}
.y9{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:49.992188px;}
.h6{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xb{left:132.120000px;}
.x4{left:133.738500px;}
.x5{left:137.338500px;}
.xc{left:141.120000px;}
.xd{left:145.620000px;}
.x8{left:339.660000px;}
.x3{left:470.025000px;}
.x7{left:480.780000px;}
.x6{left:544.680000px;}
.xa{left:592.200000px;}
.x9{left:709.020000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:167.642400pt;}
.wsd{word-spacing:-49.728000pt;}
.ws94{word-spacing:-34.367200pt;}
.ws97{word-spacing:-34.365600pt;}
.ws93{word-spacing:-34.365333pt;}
.ws55{word-spacing:-34.363733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws65{word-spacing:-34.362133pt;}
.ws4e{word-spacing:-34.361600pt;}
.ws42{word-spacing:-34.361333pt;}
.ws68{word-spacing:-34.360533pt;}
.ws20{word-spacing:-34.360000pt;}
.ws6b{word-spacing:-34.357067pt;}
.ws57{word-spacing:-34.356800pt;}
.ws66{word-spacing:-34.354400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws5c{word-spacing:-34.171733pt;}
.ws2f{word-spacing:-34.169600pt;}
.ws41{word-spacing:-34.168533pt;}
.ws34{word-spacing:-34.166400pt;}
.ws6a{word-spacing:-34.164800pt;}
.ws52{word-spacing:-34.162667pt;}
.ws3{word-spacing:-34.110400pt;}
.wsb{word-spacing:-34.097600pt;}
.ws47{word-spacing:-33.920000pt;}
.ws59{word-spacing:-33.917333pt;}
.ws53{word-spacing:-33.915200pt;}
.ws25{word-spacing:-33.910400pt;}
.ws96{word-spacing:-33.904800pt;}
.ws17{word-spacing:-33.904000pt;}
.wsc{word-spacing:-33.903200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws39{word-spacing:-33.721600pt;}
.ws75{word-spacing:-33.719200pt;}
.ws38{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws5f{word-spacing:-33.715733pt;}
.ws1a{word-spacing:-33.712000pt;}
.ws91{word-spacing:-33.708800pt;}
.wsa{word-spacing:-33.661333pt;}
.ws61{word-spacing:-33.534400pt;}
.ws9{word-spacing:-33.533600pt;}
.ws70{word-spacing:-33.528800pt;}
.ws46{word-spacing:-33.527200pt;}
.ws5d{word-spacing:-33.525333pt;}
.ws2c{word-spacing:-33.280000pt;}
.ws6e{word-spacing:-33.273600pt;}
.ws50{word-spacing:-33.272000pt;}
.ws3e{word-spacing:-33.088000pt;}
.ws77{word-spacing:-33.080267pt;}
.ws7c{word-spacing:-33.078400pt;}
.ws63{word-spacing:-32.880800pt;}
.ws95{word-spacing:-32.440800pt;}
.ws85{word-spacing:-32.438400pt;}
.ws78{word-spacing:-32.422400pt;}
.ws32{word-spacing:-31.800000pt;}
.ws7b{word-spacing:-31.796800pt;}
.ws28{word-spacing:-31.352000pt;}
.ws72{word-spacing:-31.349867pt;}
.ws5a{word-spacing:-30.522133pt;}
.ws10{word-spacing:-30.493867pt;}
.ws64{word-spacing:-30.080000pt;}
.ws1d{word-spacing:-30.068000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws23{word-spacing:-29.440533pt;}
.ws87{word-spacing:-29.434667pt;}
.ws8c{word-spacing:-29.212800pt;}
.ws16{word-spacing:-28.800000pt;}
.ws8d{word-spacing:-28.794667pt;}
.ws1b{word-spacing:-28.782400pt;}
.ws1f{word-spacing:-28.603200pt;}
.ws4a{word-spacing:-28.596800pt;}
.ws6c{word-spacing:-28.593067pt;}
.ws22{word-spacing:-28.145600pt;}
.ws40{word-spacing:-27.968000pt;}
.ws2b{word-spacing:-27.328000pt;}
.ws92{word-spacing:-27.327200pt;}
.ws76{word-spacing:-27.323733pt;}
.ws7f{word-spacing:-27.318400pt;}
.ws89{word-spacing:-26.678400pt;}
.ws8b{word-spacing:-26.048000pt;}
.ws74{word-spacing:-26.038400pt;}
.ws35{word-spacing:-26.036800pt;}
.wse{word-spacing:-25.600000pt;}
.wsf{word-spacing:-25.595200pt;}
.ws62{word-spacing:-25.408000pt;}
.ws14{word-spacing:-25.395200pt;}
.ws82{word-spacing:-24.949867pt;}
.ws8a{word-spacing:-24.758400pt;}
.ws69{word-spacing:-24.320000pt;}
.ws86{word-spacing:-24.128000pt;}
.ws4d{word-spacing:-24.120000pt;}
.ws26{word-spacing:-23.478400pt;}
.ws27{word-spacing:-22.843733pt;}
.ws8f{word-spacing:-22.828533pt;}
.ws73{word-spacing:-22.206400pt;}
.ws1e{word-spacing:-22.198400pt;}
.ws4b{word-spacing:-22.196800pt;}
.ws7d{word-spacing:-22.192000pt;}
.ws29{word-spacing:-21.760000pt;}
.ws4c{word-spacing:-21.568000pt;}
.ws13{word-spacing:-20.923733pt;}
.ws49{word-spacing:-20.912000pt;}
.ws51{word-spacing:-19.003200pt;}
.ws12{word-spacing:-18.995200pt;}
.ws11{word-spacing:-18.356800pt;}
.ws15{word-spacing:-17.705600pt;}
.ws84{word-spacing:-17.280000pt;}
.ws83{word-spacing:-17.082133pt;}
.ws81{word-spacing:-16.633600pt;}
.ws43{word-spacing:-16.617600pt;}
.ws7e{word-spacing:-16.440000pt;}
.ws4f{word-spacing:-16.433600pt;}
.ws7{word-spacing:-16.420000pt;}
.ws2d{word-spacing:-15.798400pt;}
.ws1c{word-spacing:-15.150400pt;}
.ws6d{word-spacing:-14.718400pt;}
.ws2e{word-spacing:-14.521600pt;}
.ws58{word-spacing:-14.334933pt;}
.ws67{word-spacing:-14.080000pt;}
.ws45{word-spacing:-14.064000pt;}
.ws37{word-spacing:-13.878400pt;}
.ws3a{word-spacing:-13.242667pt;}
.ws7a{word-spacing:-12.596800pt;}
.ws31{word-spacing:-12.401600pt;}
.ws54{word-spacing:-11.960800pt;}
.ws8e{word-spacing:-11.520000pt;}
.ws60{word-spacing:-11.320000pt;}
.ws33{word-spacing:-10.880000pt;}
.ws21{word-spacing:-10.859200pt;}
.ws24{word-spacing:-10.245333pt;}
.ws6f{word-spacing:-9.602133pt;}
.ws90{word-spacing:-8.698400pt;}
.ws18{word-spacing:-8.312800pt;}
.ws19{word-spacing:-8.112000pt;}
.ws3c{word-spacing:-7.283200pt;}
.ws79{word-spacing:-6.196800pt;}
.ws5b{word-spacing:-4.278400pt;}
.ws48{word-spacing:-3.637600pt;}
.ws88{word-spacing:-3.443200pt;}
.ws2a{word-spacing:-2.809600pt;}
.ws5e{word-spacing:-2.556800pt;}
.ws71{word-spacing:0.000000pt;}
.ws30{word-spacing:1.474400pt;}
.ws44{word-spacing:4.233600pt;}
.ws80{word-spacing:6.800000pt;}
.ws56{word-spacing:10.432000pt;}
.ws3d{word-spacing:27.072000pt;}
.ws36{word-spacing:32.201067pt;}
.ws3b{word-spacing:304.201067pt;}
.ws1{word-spacing:404.526933pt;}
.ws3f{word-spacing:810.464800pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._4{width:16.689600pt;}
._10{width:17.600000pt;}
._14{width:18.909333pt;}
._d{width:19.832000pt;}
._6{width:20.746667pt;}
._8{width:22.059733pt;}
._f{width:23.744000pt;}
._5{width:25.088000pt;}
._1f{width:26.062933pt;}
._c{width:27.323733pt;}
._a{width:28.515200pt;}
._7{width:29.894400pt;}
._1{width:32.000000pt;}
._18{width:34.032533pt;}
._23{width:34.922667pt;}
._9{width:35.817067pt;}
._11{width:36.729600pt;}
._1b{width:37.621333pt;}
._13{width:38.578133pt;}
._1e{width:39.592533pt;}
._b{width:40.619200pt;}
._20{width:41.881067pt;}
._16{width:43.624533pt;}
._21{width:44.770667pt;}
._22{width:45.732267pt;}
._1c{width:46.649600pt;}
._e{width:47.810133pt;}
._12{width:52.925600pt;}
._19{width:55.222400pt;}
._24{width:57.758933pt;}
._1a{width:61.306667pt;}
._17{width:77.931733pt;}
._15{width:82.986667pt;}
._1d{width:144.000000pt;}
._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;}
.y2d{bottom:89.188000pt;}
.y2c{bottom:107.588000pt;}
.y80{bottom:109.188000pt;}
.y2b{bottom:125.988000pt;}
.y7f{bottom:127.588000pt;}
.y4f{bottom:144.866667pt;}
.y7e{bottom:145.988000pt;}
.y2a{bottom:163.108000pt;}
.y4e{bottom:163.266667pt;}
.y7d{bottom:164.388000pt;}
.y29{bottom:181.508000pt;}
.y4d{bottom:181.666667pt;}
.y7c{bottom:182.788000pt;}
.y28{bottom:199.908000pt;}
.y4c{bottom:200.066667pt;}
.y7b{bottom:201.188000pt;}
.y27{bottom:218.308000pt;}
.y26{bottom:236.706667pt;}
.y4b{bottom:237.188000pt;}
.y7a{bottom:238.308000pt;}
.y25{bottom:255.108000pt;}
.y4a{bottom:255.588000pt;}
.y61{bottom:273.508000pt;}
.y49{bottom:273.988000pt;}
.y79{bottom:275.266667pt;}
.y60{bottom:291.908000pt;}
.y24{bottom:292.066667pt;}
.y48{bottom:292.388000pt;}
.y78{bottom:293.666667pt;}
.y23{bottom:310.466667pt;}
.y47{bottom:310.788000pt;}
.y77{bottom:312.066667pt;}
.y22{bottom:328.866667pt;}
.y46{bottom:329.188000pt;}
.y76{bottom:330.466667pt;}
.y21{bottom:347.266667pt;}
.y45{bottom:347.588000pt;}
.y75{bottom:348.866667pt;}
.y20{bottom:365.666667pt;}
.y5f{bottom:365.988000pt;}
.y74{bottom:367.266667pt;}
.y44{bottom:384.706667pt;}
.y73{bottom:385.666667pt;}
.y1f{bottom:402.788000pt;}
.y5e{bottom:403.108000pt;}
.y72{bottom:404.066667pt;}
.y1e{bottom:421.188000pt;}
.y5d{bottom:421.508000pt;}
.y43{bottom:421.666667pt;}
.y71{bottom:422.466667pt;}
.y1d{bottom:439.588000pt;}
.y42{bottom:440.066667pt;}
.y70{bottom:440.866667pt;}
.y1c{bottom:457.988000pt;}
.y41{bottom:458.466667pt;}
.y6f{bottom:459.266667pt;}
.y1b{bottom:476.388000pt;}
.y40{bottom:476.866667pt;}
.y6e{bottom:477.666667pt;}
.y1a{bottom:494.788000pt;}
.y5c{bottom:495.266667pt;}
.y6d{bottom:496.066667pt;}
.y5b{bottom:513.666667pt;}
.y3f{bottom:513.988000pt;}
.y6c{bottom:514.466667pt;}
.y19{bottom:531.908000pt;}
.y5a{bottom:532.066667pt;}
.y6b{bottom:532.866667pt;}
.y18{bottom:550.308000pt;}
.y59{bottom:550.466667pt;}
.y3e{bottom:551.108000pt;}
.y6a{bottom:551.266667pt;}
.y58{bottom:568.866667pt;}
.y3d{bottom:569.506667pt;}
.y69{bottom:569.666667pt;}
.y17{bottom:587.266667pt;}
.y3c{bottom:587.908000pt;}
.y68{bottom:588.066667pt;}
.y16{bottom:605.666667pt;}
.y3b{bottom:606.308000pt;}
.y67{bottom:606.466667pt;}
.y15{bottom:624.066667pt;}
.y57{bottom:624.388000pt;}
.y3a{bottom:624.706667pt;}
.y66{bottom:624.866667pt;}
.y14{bottom:642.466667pt;}
.y56{bottom:642.788000pt;}
.y39{bottom:643.108000pt;}
.y65{bottom:643.266667pt;}
.y13{bottom:660.866667pt;}
.y38{bottom:661.506667pt;}
.y64{bottom:661.666667pt;}
.y12{bottom:679.266667pt;}
.y37{bottom:679.906667pt;}
.y63{bottom:680.066667pt;}
.y11{bottom:697.666667pt;}
.y62{bottom:698.466667pt;}
.y10{bottom:716.066667pt;}
.y36{bottom:716.866667pt;}
.yf{bottom:734.466667pt;}
.y55{bottom:735.266667pt;}
.y35{bottom:753.988000pt;}
.ye{bottom:771.588000pt;}
.y34{bottom:772.388000pt;}
.y33{bottom:790.788000pt;}
.yd{bottom:808.706667pt;}
.y32{bottom:809.188000pt;}
.y54{bottom:827.588000pt;}
.yc{bottom:845.666667pt;}
.y53{bottom:845.988000pt;}
.y31{bottom:846.306667pt;}
.y52{bottom:864.388000pt;}
.y30{bottom:864.706667pt;}
.yb{bottom:882.788000pt;}
.y2f{bottom:883.106667pt;}
.y51{bottom:901.188000pt;}
.y2e{bottom:901.506667pt;}
.ya{bottom:919.906667pt;}
.y50{bottom:938.306667pt;}
.y81{bottom:938.466667pt;}
.y9{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:44.437500pt;}
.h6{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xb{left:117.440000pt;}
.x4{left:118.878667pt;}
.x5{left:122.078667pt;}
.xc{left:125.440000pt;}
.xd{left:129.440000pt;}
.x8{left:301.920000pt;}
.x3{left:417.800000pt;}
.x7{left:427.360000pt;}
.x6{left:484.160000pt;}
.xa{left:526.400000pt;}
.x9{left:630.240000pt;}
.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; }
  