
    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_5cf5dbe43815d5452251b018.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_c4292813a6aedc25e7748993.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_7b9d61c543eac18b69317957.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917480;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_7f0a6098a9c0f387ea8326c1.woff2')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_cb16f6cf9e3e712c0e0dfaaf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2136b0c3d9d962b2b14fc023.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0fd87ce67e81ee85c09420ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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;}
.m2{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:85.686000px;}
.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;}
}
.ws5{word-spacing:-82.942500px;}
.ws2b{word-spacing:-55.944000px;}
.ws2c{word-spacing:-44.289000px;}
.ws76{word-spacing:-43.625400px;}
.ws2d{word-spacing:-42.695100px;}
.ws69{word-spacing:-41.752800px;}
.ws5c{word-spacing:-41.666700px;}
.ws6b{word-spacing:-39.602400px;}
.ws6a{word-spacing:-39.592800px;}
.ws3f{word-spacing:-39.369600px;}
.ws39{word-spacing:-39.315300px;}
.ws65{word-spacing:-38.876400px;}
.ws12{word-spacing:-38.875500px;}
.ws6f{word-spacing:-38.873100px;}
.ws6d{word-spacing:-38.871900px;}
.ws64{word-spacing:-38.866800px;}
.ws4a{word-spacing:-38.660400px;}
.ws74{word-spacing:-38.655600px;}
.ws38{word-spacing:-38.652000px;}
.ws86{word-spacing:-38.650500px;}
.ws53{word-spacing:-38.645400px;}
.ws29{word-spacing:-38.588400px;}
.ws3e{word-spacing:-38.584800px;}
.ws2f{word-spacing:-38.438100px;}
.ws32{word-spacing:-38.437200px;}
.ws10{word-spacing:-38.160000px;}
.ws21{word-spacing:-38.159100px;}
.ws1e{word-spacing:-38.156400px;}
.ws2{word-spacing:-38.151900px;}
.ws57{word-spacing:-38.150400px;}
.ws44{word-spacing:-38.086200px;}
.ws6e{word-spacing:-38.079900px;}
.ws5b{word-spacing:-37.944000px;}
.ws68{word-spacing:-37.940400px;}
.ws30{word-spacing:-37.935900px;}
.ws3c{word-spacing:-37.933200px;}
.ws31{word-spacing:-37.869300px;}
.ws20{word-spacing:-37.722600px;}
.ws6c{word-spacing:-37.638300px;}
.ws62{word-spacing:-37.436400px;}
.ws36{word-spacing:-37.422300px;}
.ws18{word-spacing:-37.422000px;}
.ws55{word-spacing:-37.230000px;}
.ws40{word-spacing:-37.220400px;}
.ws63{word-spacing:-37.218000px;}
.ws80{word-spacing:-37.207800px;}
.ws9{word-spacing:-36.934800px;}
.ws50{word-spacing:-36.720000px;}
.ws58{word-spacing:-36.712800px;}
.ws72{word-spacing:-36.710400px;}
.ws1c{word-spacing:-36.642000px;}
.ws34{word-spacing:-36.504000px;}
.ws46{word-spacing:-36.500400px;}
.ws45{word-spacing:-36.496800px;}
.ws5e{word-spacing:-36.493200px;}
.ws26{word-spacing:-36.483600px;}
.ws17{word-spacing:-35.996400px;}
.ws59{word-spacing:-35.774100px;}
.ws1f{word-spacing:-35.280000px;}
.ws42{word-spacing:-35.276400px;}
.ws33{word-spacing:-34.844400px;}
.ws14{word-spacing:-34.560000px;}
.wse{word-spacing:-34.557300px;}
.ws47{word-spacing:-34.554600px;}
.ws51{word-spacing:-34.340400px;}
.ws27{word-spacing:-33.836400px;}
.ws54{word-spacing:-33.614400px;}
.ws16{word-spacing:-33.613200px;}
.wsa{word-spacing:-33.604200px;}
.ws41{word-spacing:-33.543000px;}
.ws22{word-spacing:-33.124200px;}
.ws49{word-spacing:-33.116400px;}
.ws73{word-spacing:-32.900400px;}
.ws5a{word-spacing:-32.880600px;}
.ws3d{word-spacing:-32.400000px;}
.wsf{word-spacing:-32.396400px;}
.wsb{word-spacing:-32.394000px;}
.ws15{word-spacing:-32.108400px;}
.ws28{word-spacing:-31.455600px;}
.ws66{word-spacing:-30.956400px;}
.ws4b{word-spacing:-30.953700px;}
.wsd{word-spacing:-30.947700px;}
.ws67{word-spacing:-30.740400px;}
.ws56{word-spacing:-30.524400px;}
.ws6{word-spacing:-30.249000px;}
.ws19{word-spacing:-30.237300px;}
.ws52{word-spacing:-30.234600px;}
.ws2a{word-spacing:-30.144600px;}
.ws4e{word-spacing:-30.022200px;}
.ws8{word-spacing:-29.862600px;}
.ws4{word-spacing:-29.802300px;}
.ws4f{word-spacing:-29.520000px;}
.ws70{word-spacing:-29.516400px;}
.ws82{word-spacing:-29.515500px;}
.ws4d{word-spacing:-29.514600px;}
.ws7{word-spacing:-29.330100px;}
.ws1a{word-spacing:-29.230800px;}
.ws1b{word-spacing:-28.796400px;}
.ws37{word-spacing:-28.560600px;}
.ws60{word-spacing:-28.074600px;}
.wsc{word-spacing:-27.579300px;}
.ws7c{word-spacing:-27.360000px;}
.ws2e{word-spacing:-27.357300px;}
.ws79{word-spacing:-27.144000px;}
.ws84{word-spacing:-26.415600px;}
.ws43{word-spacing:-25.920000px;}
.ws48{word-spacing:-25.695900px;}
.ws35{word-spacing:-25.487100px;}
.ws5f{word-spacing:-24.978600px;}
.ws75{word-spacing:-24.757200px;}
.ws0{word-spacing:-24.417600px;}
.ws1{word-spacing:-24.327900px;}
.ws71{word-spacing:-24.264000px;}
.ws1d{word-spacing:-24.039900px;}
.ws3b{word-spacing:-23.756400px;}
.ws85{word-spacing:-23.535900px;}
.ws7b{word-spacing:-21.703800px;}
.ws7e{word-spacing:-21.384000px;}
.ws3a{word-spacing:-21.369600px;}
.ws23{word-spacing:-20.876400px;}
.ws4c{word-spacing:-20.160000px;}
.ws7f{word-spacing:-17.383800px;}
.ws5d{word-spacing:-17.276400px;}
.ws7d{word-spacing:-17.046000px;}
.ws25{word-spacing:-14.883600px;}
.ws61{word-spacing:-13.682400px;}
.ws81{word-spacing:-11.629800px;}
.ws83{word-spacing:-8.743800px;}
.ws11{word-spacing:-5.025000px;}
.ws78{word-spacing:-4.086900px;}
.ws24{word-spacing:0.000000px;}
.ws77{word-spacing:2.056200px;}
.ws13{word-spacing:11.738700px;}
.ws7a{word-spacing:89.510400px;}
.ws3{word-spacing:628.839600px;}
._a{margin-left:-2.358600px;}
._1{margin-left:-1.102200px;}
._2{width:1.056300px;}
._6{width:13.379700px;}
._5{width:14.570100px;}
._15{width:15.681900px;}
._11{width:17.181600px;}
._d{width:18.290400px;}
._0{width:19.296000px;}
._7{width:21.022800px;}
._b{width:22.426200px;}
._9{width:23.462700px;}
._4{width:24.501000px;}
._c{width:25.541400px;}
._e{width:27.288600px;}
._8{width:29.457300px;}
._17{width:31.709700px;}
._f{width:32.973900px;}
._10{width:33.980400px;}
._19{width:35.055300px;}
._12{width:36.283200px;}
._18{width:37.910700px;}
._16{width:40.326000px;}
._14{width:42.264000px;}
._13{width:44.121600px;}
._1a{width:48.905400px;}
._1b{width:53.093400px;}
._1c{width:147.109500px;}
._3{width:738.273900px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs4{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:59.700000px;}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.fs3{font-size:156.300000px;}
.y0{bottom:0.000000px;}
.y76{bottom:14.190000px;}
.y7f{bottom:14.221500px;}
.y74{bottom:14.250000px;}
.y7c{bottom:14.461500px;}
.y79{bottom:14.490000px;}
.y7d{bottom:14.640000px;}
.y77{bottom:14.730000px;}
.y80{bottom:14.761500px;}
.y7a{bottom:14.850000px;}
.y82{bottom:15.346500px;}
.y83{bottom:15.705000px;}
.y3{bottom:25.425000px;}
.y73{bottom:45.571500px;}
.y24{bottom:67.005000px;}
.y48{bottom:75.465000px;}
.y8b{bottom:88.786500px;}
.y23{bottom:98.146500px;}
.y66{bottom:105.346500px;}
.y47{bottom:106.605000px;}
.y8a{bottom:119.746500px;}
.y22{bottom:129.105000px;}
.y65{bottom:136.305000px;}
.y46{bottom:137.205000px;}
.y89{bottom:150.886500px;}
.y64{bottom:167.446500px;}
.y45{bottom:168.525000px;}
.y6e{bottom:178.065000px;}
.y88{bottom:181.846500px;}
.y21{bottom:192.286500px;}
.y63{bottom:198.405000px;}
.y44{bottom:199.665000px;}
.y87{bottom:212.986500px;}
.y20{bottom:223.246500px;}
.y62{bottom:229.546500px;}
.y43{bottom:230.625000px;}
.y86{bottom:243.945000px;}
.y1f{bottom:254.386500px;}
.y61{bottom:260.505000px;}
.y42{bottom:261.765000px;}
.y85{bottom:275.086500px;}
.y1e{bottom:285.346500px;}
.y60{bottom:291.465000px;}
.y41{bottom:292.725000px;}
.y84{bottom:306.225000px;}
.y1d{bottom:316.486500px;}
.y5f{bottom:322.605000px;}
.y40{bottom:323.325000px;}
.y81{bottom:343.800000px;}
.y1c{bottom:347.445000px;}
.y3f{bottom:354.825000px;}
.y5e{bottom:359.686500px;}
.y7e{bottom:376.425000px;}
.y1b{bottom:378.586500px;}
.y3e{bottom:385.965000px;}
.y5d{bottom:396.405000px;}
.y7b{bottom:408.225000px;}
.y1a{bottom:409.546500px;}
.y3d{bottom:416.925000px;}
.y5c{bottom:427.365000px;}
.y78{bottom:439.875000px;}
.y19{bottom:440.865000px;}
.y3c{bottom:448.065000px;}
.y5b{bottom:458.505000px;}
.y75{bottom:471.675000px;}
.y18{bottom:471.825000px;}
.y6d{bottom:474.705000px;}
.y3b{bottom:479.025000px;}
.y5a{bottom:489.465000px;}
.y17{bottom:502.965000px;}
.y72{bottom:503.475000px;}
.y6c{bottom:505.845000px;}
.y3a{bottom:509.625000px;}
.y59{bottom:520.065000px;}
.y16{bottom:533.925000px;}
.y6b{bottom:536.805000px;}
.y39{bottom:541.125000px;}
.y58{bottom:551.565000px;}
.y15{bottom:565.065000px;}
.y6a{bottom:567.946500px;}
.y38{bottom:572.265000px;}
.y57{bottom:582.705000px;}
.y71{bottom:585.586500px;}
.y14{bottom:596.025000px;}
.y69{bottom:598.905000px;}
.y37{bottom:603.225000px;}
.y56{bottom:613.665000px;}
.y13{bottom:627.165000px;}
.y70{bottom:632.565000px;}
.y36{bottom:634.365000px;}
.y68{bottom:638.865000px;}
.y55{bottom:644.805000px;}
.y12{bottom:658.125000px;}
.y35{bottom:665.325000px;}
.y54{bottom:675.765000px;}
.y67{bottom:686.025000px;}
.y34{bottom:696.465000px;}
.y53{bottom:706.365000px;}
.y11{bottom:706.725000px;}
.y93{bottom:706.905000px;}
.y33{bottom:727.246500px;}
.y92{bottom:737.865000px;}
.y52{bottom:738.045000px;}
.y10{bottom:755.865000px;}
.y32{bottom:756.945000px;}
.y51{bottom:769.005000px;}
.y31{bottom:786.646500px;}
.yf{bottom:786.825000px;}
.y91{bottom:799.965000px;}
.y50{bottom:800.146500px;}
.y30{bottom:815.986500px;}
.ye{bottom:817.965000px;}
.y4f{bottom:831.105000px;}
.y2f{bottom:845.686500px;}
.yd{bottom:848.925000px;}
.y90{bottom:862.065000px;}
.y4e{bottom:862.246500px;}
.y2e{bottom:875.025000px;}
.yc{bottom:880.065000px;}
.y4d{bottom:893.205000px;}
.y2d{bottom:906.165000px;}
.yb{bottom:911.025000px;}
.y6f{bottom:913.005000px;}
.y4c{bottom:924.345000px;}
.y2c{bottom:937.305000px;}
.ya{bottom:942.165000px;}
.y4b{bottom:955.305000px;}
.y9{bottom:973.125000px;}
.y2b{bottom:974.386500px;}
.y8f{bottom:986.265000px;}
.y4a{bottom:986.445000px;}
.y8{bottom:1004.265000px;}
.y49{bottom:1017.045000px;}
.y2a{bottom:1017.586500px;}
.y8e{bottom:1017.765000px;}
.y29{bottom:1048.545000px;}
.y7{bottom:1057.905000px;}
.y8d{bottom:1079.505000px;}
.y28{bottom:1079.686500px;}
.y6{bottom:1081.125000px;}
.y5{bottom:1104.525000px;}
.y8c{bottom:1110.465000px;}
.y27{bottom:1110.645000px;}
.y26{bottom:1141.786500px;}
.y4{bottom:1148.625000px;}
.y25{bottom:1172.745000px;}
.y2{bottom:1195.786500px;}
.y1{bottom:1221.345000px;}
.ha{height:31.650000px;}
.h9{height:31.800000px;}
.hb{height:32.625000px;}
.h4{height:37.494141px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h7{height:50.741344px;}
.h6{height:50.747344px;}
.h1{height:57.626953px;}
.h8{height:62.775000px;}
.h3{height:108.524707px;}
.h0{height:1263.000000px;}
.w3{width:123.750000px;}
.w2{width:127.725000px;}
.w1{width:220.050000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:8.938500px;}
.x20{left:11.430000px;}
.x24{left:24.570000px;}
.x23{left:26.400000px;}
.x2c{left:29.070000px;}
.x2b{left:30.900000px;}
.x21{left:37.888500px;}
.x1d{left:39.000000px;}
.x22{left:46.935000px;}
.x25{left:48.735000px;}
.x28{left:53.550000px;}
.x27{left:55.200000px;}
.x29{left:57.013500px;}
.x3{left:63.720000px;}
.x1{left:65.338500px;}
.x8{left:68.038500px;}
.x1b{left:69.975000px;}
.x4{left:75.238500px;}
.xd{left:84.600000px;}
.x13{left:86.220000px;}
.xe{left:87.660000px;}
.xa{left:89.638500px;}
.x10{left:90.900000px;}
.x2a{left:92.835000px;}
.x26{left:97.155000px;}
.xf{left:103.138500px;}
.x2f{left:115.380000px;}
.x11{left:116.638500px;}
.x30{left:142.380000px;}
.x5{left:172.260000px;}
.x1a{left:220.725000px;}
.xc{left:264.960000px;}
.x7{left:279.900000px;}
.x18{left:316.260000px;}
.x6{left:342.180000px;}
.x16{left:344.338500px;}
.x17{left:346.680000px;}
.x14{left:356.038500px;}
.x12{left:368.638500px;}
.xb{left:370.438500px;}
.x2{left:372.600000px;}
.x2d{left:377.638500px;}
.x9{left:378.900000px;}
.x19{left:388.800000px;}
.x2e{left:395.820000px;}
.x15{left:404.460000px;}
.x1c{left:440.700000px;}
.x1f{left:568.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:76.165333pt;}
.ws5{word-spacing:-73.726667pt;}
.ws2b{word-spacing:-49.728000pt;}
.ws2c{word-spacing:-39.368000pt;}
.ws76{word-spacing:-38.778133pt;}
.ws2d{word-spacing:-37.951200pt;}
.ws69{word-spacing:-37.113600pt;}
.ws5c{word-spacing:-37.037067pt;}
.ws6b{word-spacing:-35.202133pt;}
.ws6a{word-spacing:-35.193600pt;}
.ws3f{word-spacing:-34.995200pt;}
.ws39{word-spacing:-34.946933pt;}
.ws65{word-spacing:-34.556800pt;}
.ws12{word-spacing:-34.556000pt;}
.ws6f{word-spacing:-34.553867pt;}
.ws6d{word-spacing:-34.552800pt;}
.ws64{word-spacing:-34.548267pt;}
.ws4a{word-spacing:-34.364800pt;}
.ws74{word-spacing:-34.360533pt;}
.ws38{word-spacing:-34.357333pt;}
.ws86{word-spacing:-34.356000pt;}
.ws53{word-spacing:-34.351467pt;}
.ws29{word-spacing:-34.300800pt;}
.ws3e{word-spacing:-34.297600pt;}
.ws2f{word-spacing:-34.167200pt;}
.ws32{word-spacing:-34.166400pt;}
.ws10{word-spacing:-33.920000pt;}
.ws21{word-spacing:-33.919200pt;}
.ws1e{word-spacing:-33.916800pt;}
.ws2{word-spacing:-33.912800pt;}
.ws57{word-spacing:-33.911467pt;}
.ws44{word-spacing:-33.854400pt;}
.ws6e{word-spacing:-33.848800pt;}
.ws5b{word-spacing:-33.728000pt;}
.ws68{word-spacing:-33.724800pt;}
.ws30{word-spacing:-33.720800pt;}
.ws3c{word-spacing:-33.718400pt;}
.ws31{word-spacing:-33.661600pt;}
.ws20{word-spacing:-33.531200pt;}
.ws6c{word-spacing:-33.456267pt;}
.ws62{word-spacing:-33.276800pt;}
.ws36{word-spacing:-33.264267pt;}
.ws18{word-spacing:-33.264000pt;}
.ws55{word-spacing:-33.093333pt;}
.ws40{word-spacing:-33.084800pt;}
.ws63{word-spacing:-33.082667pt;}
.ws80{word-spacing:-33.073600pt;}
.ws9{word-spacing:-32.830933pt;}
.ws50{word-spacing:-32.640000pt;}
.ws58{word-spacing:-32.633600pt;}
.ws72{word-spacing:-32.631467pt;}
.ws1c{word-spacing:-32.570667pt;}
.ws34{word-spacing:-32.448000pt;}
.ws46{word-spacing:-32.444800pt;}
.ws45{word-spacing:-32.441600pt;}
.ws5e{word-spacing:-32.438400pt;}
.ws26{word-spacing:-32.429867pt;}
.ws17{word-spacing:-31.996800pt;}
.ws59{word-spacing:-31.799200pt;}
.ws1f{word-spacing:-31.360000pt;}
.ws42{word-spacing:-31.356800pt;}
.ws33{word-spacing:-30.972800pt;}
.ws14{word-spacing:-30.720000pt;}
.wse{word-spacing:-30.717600pt;}
.ws47{word-spacing:-30.715200pt;}
.ws51{word-spacing:-30.524800pt;}
.ws27{word-spacing:-30.076800pt;}
.ws54{word-spacing:-29.879467pt;}
.ws16{word-spacing:-29.878400pt;}
.wsa{word-spacing:-29.870400pt;}
.ws41{word-spacing:-29.816000pt;}
.ws22{word-spacing:-29.443733pt;}
.ws49{word-spacing:-29.436800pt;}
.ws73{word-spacing:-29.244800pt;}
.ws5a{word-spacing:-29.227200pt;}
.ws3d{word-spacing:-28.800000pt;}
.wsf{word-spacing:-28.796800pt;}
.wsb{word-spacing:-28.794667pt;}
.ws15{word-spacing:-28.540800pt;}
.ws28{word-spacing:-27.960533pt;}
.ws66{word-spacing:-27.516800pt;}
.ws4b{word-spacing:-27.514400pt;}
.wsd{word-spacing:-27.509067pt;}
.ws67{word-spacing:-27.324800pt;}
.ws56{word-spacing:-27.132800pt;}
.ws6{word-spacing:-26.888000pt;}
.ws19{word-spacing:-26.877600pt;}
.ws52{word-spacing:-26.875200pt;}
.ws2a{word-spacing:-26.795200pt;}
.ws4e{word-spacing:-26.686400pt;}
.ws8{word-spacing:-26.544533pt;}
.ws4{word-spacing:-26.490933pt;}
.ws4f{word-spacing:-26.240000pt;}
.ws70{word-spacing:-26.236800pt;}
.ws82{word-spacing:-26.236000pt;}
.ws4d{word-spacing:-26.235200pt;}
.ws7{word-spacing:-26.071200pt;}
.ws1a{word-spacing:-25.982933pt;}
.ws1b{word-spacing:-25.596800pt;}
.ws37{word-spacing:-25.387200pt;}
.ws60{word-spacing:-24.955200pt;}
.wsc{word-spacing:-24.514933pt;}
.ws7c{word-spacing:-24.320000pt;}
.ws2e{word-spacing:-24.317600pt;}
.ws79{word-spacing:-24.128000pt;}
.ws84{word-spacing:-23.480533pt;}
.ws43{word-spacing:-23.040000pt;}
.ws48{word-spacing:-22.840800pt;}
.ws35{word-spacing:-22.655200pt;}
.ws5f{word-spacing:-22.203200pt;}
.ws75{word-spacing:-22.006400pt;}
.ws0{word-spacing:-21.704533pt;}
.ws1{word-spacing:-21.624800pt;}
.ws71{word-spacing:-21.568000pt;}
.ws1d{word-spacing:-21.368800pt;}
.ws3b{word-spacing:-21.116800pt;}
.ws85{word-spacing:-20.920800pt;}
.ws7b{word-spacing:-19.292267pt;}
.ws7e{word-spacing:-19.008000pt;}
.ws3a{word-spacing:-18.995200pt;}
.ws23{word-spacing:-18.556800pt;}
.ws4c{word-spacing:-17.920000pt;}
.ws7f{word-spacing:-15.452267pt;}
.ws5d{word-spacing:-15.356800pt;}
.ws7d{word-spacing:-15.152000pt;}
.ws25{word-spacing:-13.229867pt;}
.ws61{word-spacing:-12.162133pt;}
.ws81{word-spacing:-10.337600pt;}
.ws83{word-spacing:-7.772267pt;}
.ws11{word-spacing:-4.466667pt;}
.ws78{word-spacing:-3.632800pt;}
.ws24{word-spacing:0.000000pt;}
.ws77{word-spacing:1.827733pt;}
.ws13{word-spacing:10.434400pt;}
.ws7a{word-spacing:79.564800pt;}
.ws3{word-spacing:558.968533pt;}
._a{margin-left:-2.096533pt;}
._1{margin-left:-0.979733pt;}
._2{width:0.938933pt;}
._6{width:11.893067pt;}
._5{width:12.951200pt;}
._15{width:13.939467pt;}
._11{width:15.272533pt;}
._d{width:16.258133pt;}
._0{width:17.152000pt;}
._7{width:18.686933pt;}
._b{width:19.934400pt;}
._9{width:20.855733pt;}
._4{width:21.778667pt;}
._c{width:22.703467pt;}
._e{width:24.256533pt;}
._8{width:26.184267pt;}
._17{width:28.186400pt;}
._f{width:29.310133pt;}
._10{width:30.204800pt;}
._19{width:31.160267pt;}
._12{width:32.251733pt;}
._18{width:33.698400pt;}
._16{width:35.845333pt;}
._14{width:37.568000pt;}
._13{width:39.219200pt;}
._1a{width:43.471467pt;}
._1b{width:47.194133pt;}
._1c{width:130.764000pt;}
._3{width:656.243467pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.066667pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.fs3{font-size:138.933333pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:12.613333pt;}
.y7f{bottom:12.641333pt;}
.y74{bottom:12.666667pt;}
.y7c{bottom:12.854667pt;}
.y79{bottom:12.880000pt;}
.y7d{bottom:13.013333pt;}
.y77{bottom:13.093333pt;}
.y80{bottom:13.121333pt;}
.y7a{bottom:13.200000pt;}
.y82{bottom:13.641333pt;}
.y83{bottom:13.960000pt;}
.y3{bottom:22.600000pt;}
.y73{bottom:40.508000pt;}
.y24{bottom:59.560000pt;}
.y48{bottom:67.080000pt;}
.y8b{bottom:78.921333pt;}
.y23{bottom:87.241333pt;}
.y66{bottom:93.641333pt;}
.y47{bottom:94.760000pt;}
.y8a{bottom:106.441333pt;}
.y22{bottom:114.760000pt;}
.y65{bottom:121.160000pt;}
.y46{bottom:121.960000pt;}
.y89{bottom:134.121333pt;}
.y64{bottom:148.841333pt;}
.y45{bottom:149.800000pt;}
.y6e{bottom:158.280000pt;}
.y88{bottom:161.641333pt;}
.y21{bottom:170.921333pt;}
.y63{bottom:176.360000pt;}
.y44{bottom:177.480000pt;}
.y87{bottom:189.321333pt;}
.y20{bottom:198.441333pt;}
.y62{bottom:204.041333pt;}
.y43{bottom:205.000000pt;}
.y86{bottom:216.840000pt;}
.y1f{bottom:226.121333pt;}
.y61{bottom:231.560000pt;}
.y42{bottom:232.680000pt;}
.y85{bottom:244.521333pt;}
.y1e{bottom:253.641333pt;}
.y60{bottom:259.080000pt;}
.y41{bottom:260.200000pt;}
.y84{bottom:272.200000pt;}
.y1d{bottom:281.321333pt;}
.y5f{bottom:286.760000pt;}
.y40{bottom:287.400000pt;}
.y81{bottom:305.600000pt;}
.y1c{bottom:308.840000pt;}
.y3f{bottom:315.400000pt;}
.y5e{bottom:319.721333pt;}
.y7e{bottom:334.600000pt;}
.y1b{bottom:336.521333pt;}
.y3e{bottom:343.080000pt;}
.y5d{bottom:352.360000pt;}
.y7b{bottom:362.866667pt;}
.y1a{bottom:364.041333pt;}
.y3d{bottom:370.600000pt;}
.y5c{bottom:379.880000pt;}
.y78{bottom:391.000000pt;}
.y19{bottom:391.880000pt;}
.y3c{bottom:398.280000pt;}
.y5b{bottom:407.560000pt;}
.y75{bottom:419.266667pt;}
.y18{bottom:419.400000pt;}
.y6d{bottom:421.960000pt;}
.y3b{bottom:425.800000pt;}
.y5a{bottom:435.080000pt;}
.y17{bottom:447.080000pt;}
.y72{bottom:447.533333pt;}
.y6c{bottom:449.640000pt;}
.y3a{bottom:453.000000pt;}
.y59{bottom:462.280000pt;}
.y16{bottom:474.600000pt;}
.y6b{bottom:477.160000pt;}
.y39{bottom:481.000000pt;}
.y58{bottom:490.280000pt;}
.y15{bottom:502.280000pt;}
.y6a{bottom:504.841333pt;}
.y38{bottom:508.680000pt;}
.y57{bottom:517.960000pt;}
.y71{bottom:520.521333pt;}
.y14{bottom:529.800000pt;}
.y69{bottom:532.360000pt;}
.y37{bottom:536.200000pt;}
.y56{bottom:545.480000pt;}
.y13{bottom:557.480000pt;}
.y70{bottom:562.280000pt;}
.y36{bottom:563.880000pt;}
.y68{bottom:567.880000pt;}
.y55{bottom:573.160000pt;}
.y12{bottom:585.000000pt;}
.y35{bottom:591.400000pt;}
.y54{bottom:600.680000pt;}
.y67{bottom:609.800000pt;}
.y34{bottom:619.080000pt;}
.y53{bottom:627.880000pt;}
.y11{bottom:628.200000pt;}
.y93{bottom:628.360000pt;}
.y33{bottom:646.441333pt;}
.y92{bottom:655.880000pt;}
.y52{bottom:656.040000pt;}
.y10{bottom:671.880000pt;}
.y32{bottom:672.840000pt;}
.y51{bottom:683.560000pt;}
.y31{bottom:699.241333pt;}
.yf{bottom:699.400000pt;}
.y91{bottom:711.080000pt;}
.y50{bottom:711.241333pt;}
.y30{bottom:725.321333pt;}
.ye{bottom:727.080000pt;}
.y4f{bottom:738.760000pt;}
.y2f{bottom:751.721333pt;}
.yd{bottom:754.600000pt;}
.y90{bottom:766.280000pt;}
.y4e{bottom:766.441333pt;}
.y2e{bottom:777.800000pt;}
.yc{bottom:782.280000pt;}
.y4d{bottom:793.960000pt;}
.y2d{bottom:805.480000pt;}
.yb{bottom:809.800000pt;}
.y6f{bottom:811.560000pt;}
.y4c{bottom:821.640000pt;}
.y2c{bottom:833.160000pt;}
.ya{bottom:837.480000pt;}
.y4b{bottom:849.160000pt;}
.y9{bottom:865.000000pt;}
.y2b{bottom:866.121333pt;}
.y8f{bottom:876.680000pt;}
.y4a{bottom:876.840000pt;}
.y8{bottom:892.680000pt;}
.y49{bottom:904.040000pt;}
.y2a{bottom:904.521333pt;}
.y8e{bottom:904.680000pt;}
.y29{bottom:932.040000pt;}
.y7{bottom:940.360000pt;}
.y8d{bottom:959.560000pt;}
.y28{bottom:959.721333pt;}
.y6{bottom:961.000000pt;}
.y5{bottom:981.800000pt;}
.y8c{bottom:987.080000pt;}
.y27{bottom:987.240000pt;}
.y26{bottom:1014.921333pt;}
.y4{bottom:1021.000000pt;}
.y25{bottom:1042.440000pt;}
.y2{bottom:1062.921333pt;}
.y1{bottom:1085.640000pt;}
.ha{height:28.133333pt;}
.h9{height:28.266667pt;}
.hb{height:29.000000pt;}
.h4{height:33.328125pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h7{height:45.103417pt;}
.h6{height:45.108750pt;}
.h1{height:51.223958pt;}
.h8{height:55.800000pt;}
.h3{height:96.466406pt;}
.h0{height:1122.666667pt;}
.w3{width:110.000000pt;}
.w2{width:113.533333pt;}
.w1{width:195.600000pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.945333pt;}
.x20{left:10.160000pt;}
.x24{left:21.840000pt;}
.x23{left:23.466667pt;}
.x2c{left:25.840000pt;}
.x2b{left:27.466667pt;}
.x21{left:33.678667pt;}
.x1d{left:34.666667pt;}
.x22{left:41.720000pt;}
.x25{left:43.320000pt;}
.x28{left:47.600000pt;}
.x27{left:49.066667pt;}
.x29{left:50.678667pt;}
.x3{left:56.640000pt;}
.x1{left:58.078667pt;}
.x8{left:60.478667pt;}
.x1b{left:62.200000pt;}
.x4{left:66.878667pt;}
.xd{left:75.200000pt;}
.x13{left:76.640000pt;}
.xe{left:77.920000pt;}
.xa{left:79.678667pt;}
.x10{left:80.800000pt;}
.x2a{left:82.520000pt;}
.x26{left:86.360000pt;}
.xf{left:91.678667pt;}
.x2f{left:102.560000pt;}
.x11{left:103.678667pt;}
.x30{left:126.560000pt;}
.x5{left:153.120000pt;}
.x1a{left:196.200000pt;}
.xc{left:235.520000pt;}
.x7{left:248.800000pt;}
.x18{left:281.120000pt;}
.x6{left:304.160000pt;}
.x16{left:306.078667pt;}
.x17{left:308.160000pt;}
.x14{left:316.478667pt;}
.x12{left:327.678667pt;}
.xb{left:329.278667pt;}
.x2{left:331.200000pt;}
.x2d{left:335.678667pt;}
.x9{left:336.800000pt;}
.x19{left:345.600000pt;}
.x2e{left:351.840000pt;}
.x15{left:359.520000pt;}
.x1c{left:391.733333pt;}
.x1f{left:505.200000pt;}
}




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