
    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_be1430a2300bcf61ac022574.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_cfcd63a0f7711725af9a30f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_9e07030f40e712e78405f261.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_d6fc86f11eeefb6204edd029.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_11c0bdbcca535f7974180980.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.169000;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_d6fc86f11eeefb6204edd029.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_ef6ea1813372e7e996303384.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.170000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a422c8e9342a762f30a5e462.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.168000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1e5acc564f2fb09ce819043e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200000;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);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-4.266000px;}
.ls20{letter-spacing:-3.120000px;}
.ls1b{letter-spacing:-2.640000px;}
.ls12{letter-spacing:-2.106000px;}
.ls13{letter-spacing:-1.728000px;}
.ls1c{letter-spacing:-0.948600px;}
.ls1d{letter-spacing:-0.510000px;}
.ls14{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.120000px;}
.ls15{letter-spacing:-0.060000px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.022200px;}
.ls6{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.lse{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.240000px;}
.ls1f{letter-spacing:0.258000px;}
.ls1{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.420000px;}
.ls17{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.510000px;}
.ls3{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.690000px;}
.ls7{letter-spacing:0.732600px;}
.ls1a{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.200000px;}
.ls21{letter-spacing:2.373600px;}
.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;}
}
.ws43{word-spacing:-11.997000px;}
.ws2b{word-spacing:-11.070000px;}
.ws56{word-spacing:-10.140000px;}
.ws5f{word-spacing:-8.532000px;}
.ws1c{word-spacing:-2.520000px;}
.ws5b{word-spacing:-2.373600px;}
.ws2f{word-spacing:-2.220000px;}
.ws55{word-spacing:-2.160000px;}
.ws8{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.980000px;}
.ws5{word-spacing:-1.920000px;}
.ws9{word-spacing:-1.860000px;}
.ws1e{word-spacing:-1.800000px;}
.ws27{word-spacing:-1.740000px;}
.ws53{word-spacing:-1.680000px;}
.ws4e{word-spacing:-1.620000px;}
.ws4b{word-spacing:-1.560000px;}
.ws2a{word-spacing:-1.500000px;}
.ws29{word-spacing:-1.380000px;}
.ws19{word-spacing:-1.200000px;}
.ws3d{word-spacing:-1.140000px;}
.ws2e{word-spacing:-1.080000px;}
.ws4a{word-spacing:-1.020000px;}
.wsd{word-spacing:-0.900000px;}
.ws26{word-spacing:-0.840000px;}
.ws0{word-spacing:-0.754800px;}
.ws5e{word-spacing:-0.722400px;}
.ws61{word-spacing:-0.670800px;}
.ws25{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.480000px;}
.ws4f{word-spacing:-0.420000px;}
.ws5d{word-spacing:-0.412800px;}
.ws35{word-spacing:-0.300000px;}
.ws4{word-spacing:-0.240000px;}
.ws48{word-spacing:-0.223200px;}
.ws5c{word-spacing:-0.206400px;}
.ws49{word-spacing:-0.204000px;}
.ws58{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.044400px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.060000px;}
.wsc{word-spacing:0.120000px;}
.ws24{word-spacing:0.300000px;}
.ws37{word-spacing:0.360000px;}
.ws3a{word-spacing:0.420000px;}
.ws18{word-spacing:0.540000px;}
.ws13{word-spacing:0.720000px;}
.ws3b{word-spacing:0.780000px;}
.ws4d{word-spacing:0.840000px;}
.ws54{word-spacing:1.020000px;}
.wse{word-spacing:1.080000px;}
.ws47{word-spacing:1.200000px;}
.ws30{word-spacing:1.380000px;}
.ws50{word-spacing:1.500000px;}
.ws4c{word-spacing:1.560000px;}
.ws38{word-spacing:1.620000px;}
.ws51{word-spacing:1.680000px;}
.ws12{word-spacing:1.740000px;}
.ws39{word-spacing:1.800000px;}
.wsb{word-spacing:1.860000px;}
.ws1d{word-spacing:1.920000px;}
.ws11{word-spacing:1.980000px;}
.ws36{word-spacing:2.040000px;}
.ws3e{word-spacing:2.100000px;}
.ws1a{word-spacing:2.106000px;}
.ws3c{word-spacing:2.160000px;}
.wsf{word-spacing:2.220000px;}
.ws28{word-spacing:2.340000px;}
.ws46{word-spacing:2.400000px;}
.ws5a{word-spacing:2.520000px;}
.ws33{word-spacing:2.580000px;}
.ws16{word-spacing:2.640000px;}
.ws59{word-spacing:2.760000px;}
.ws1f{word-spacing:2.820000px;}
.ws22{word-spacing:2.880000px;}
.ws32{word-spacing:2.940000px;}
.ws34{word-spacing:3.000000px;}
.ws14{word-spacing:3.060000px;}
.ws17{word-spacing:3.120000px;}
.ws31{word-spacing:3.240000px;}
.ws2d{word-spacing:3.600000px;}
.ws20{word-spacing:4.020000px;}
.ws23{word-spacing:4.080000px;}
.ws15{word-spacing:4.500000px;}
.ws52{word-spacing:4.800000px;}
.ws3f{word-spacing:5.400000px;}
.ws21{word-spacing:5.580000px;}
.ws41{word-spacing:25.723800px;}
.ws42{word-spacing:171.808200px;}
.ws44{word-spacing:173.035800px;}
.ws40{word-spacing:198.480600px;}
.ws57{word-spacing:1052.352000px;}
.ws1b{word-spacing:1053.000000px;}
.ws45{word-spacing:1054.350000px;}
.ws2c{word-spacing:1235.142000px;}
.ws60{word-spacing:1241.190000px;}
._10{margin-left:-1241.571000px;}
._f{margin-left:-1240.484400px;}
._b{margin-left:-1234.933800px;}
._e{margin-left:-8.431080px;}
._2{margin-left:-7.200000px;}
._3{margin-left:-5.400000px;}
._1{margin-left:-3.369600px;}
._0{margin-left:-1.440000px;}
._4{width:1.884000px;}
._5{width:3.087600px;}
._9{width:4.345200px;}
._a{width:5.365200px;}
._d{width:22.200000px;}
._7{width:27.600000px;}
._8{width:29.820000px;}
._c{width:32.640000px;}
._6{width:35.340000px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:22.200000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:51.600000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:55.800000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:64.842450px;}
.y77{bottom:75.019350px;}
.y63{bottom:75.038250px;}
.y27{bottom:83.442450px;}
.y76{bottom:92.421450px;}
.y62{bottom:92.440350px;}
.y26{bottom:102.042450px;}
.y75{bottom:109.823550px;}
.y61{bottom:109.842450px;}
.y33{bottom:120.642450px;}
.y60{bottom:127.204650px;}
.y74{bottom:127.225650px;}
.y25{bottom:139.242450px;}
.y5f{bottom:144.606750px;}
.y73{bottom:144.627750px;}
.y24{bottom:157.842450px;}
.y5e{bottom:162.008850px;}
.y72{bottom:162.029850px;}
.y23{bottom:176.442450px;}
.y5d{bottom:179.410950px;}
.y71{bottom:179.431950px;}
.y22{bottom:195.042450px;}
.y5c{bottom:196.813050px;}
.y70{bottom:196.834050px;}
.y21{bottom:213.642450px;}
.y5b{bottom:214.215150px;}
.y6f{bottom:214.236150px;}
.y5a{bottom:231.617250px;}
.y6e{bottom:231.638250px;}
.y20{bottom:232.242450px;}
.y59{bottom:249.019350px;}
.y6d{bottom:249.040350px;}
.y1f{bottom:250.842450px;}
.y58{bottom:266.421450px;}
.y6c{bottom:266.442450px;}
.y4e{bottom:266.852100px;}
.y1e{bottom:269.442450px;}
.y57{bottom:283.823550px;}
.y6b{bottom:283.840350px;}
.y4d{bottom:284.102850px;}
.y1d{bottom:288.042450px;}
.y56{bottom:301.225650px;}
.y6a{bottom:301.242450px;}
.y1c{bottom:306.642450px;}
.y4c{bottom:309.280500px;}
.y55{bottom:318.627750px;}
.y69{bottom:318.642450px;}
.y1b{bottom:325.242450px;}
.y4b{bottom:325.783350px;}
.y54{bottom:336.029850px;}
.y68{bottom:336.031050px;}
.y1a{bottom:343.842450px;}
.y4a{bottom:344.755350px;}
.y53{bottom:353.431950px;}
.y67{bottom:353.433150px;}
.y19{bottom:362.442450px;}
.y49{bottom:363.727350px;}
.y52{bottom:370.834050px;}
.y66{bottom:370.835250px;}
.y48{bottom:380.230200px;}
.y18{bottom:381.042450px;}
.y51{bottom:388.236150px;}
.y65{bottom:388.237350px;}
.y47{bottom:399.202200px;}
.y17{bottom:399.642450px;}
.y50{bottom:405.638250px;}
.y64{bottom:405.639450px;}
.y46{bottom:415.705050px;}
.y16{bottom:418.242450px;}
.y45{bottom:434.677050px;}
.y15{bottom:436.842450px;}
.y4f{bottom:440.442450px;}
.y44{bottom:453.649050px;}
.y14{bottom:455.442450px;}
.y91{bottom:469.487700px;}
.y43{bottom:470.151900px;}
.y13{bottom:474.042450px;}
.y90{bottom:486.889800px;}
.y42{bottom:489.123900px;}
.y12{bottom:492.642450px;}
.y8f{bottom:504.291900px;}
.y41{bottom:505.626750px;}
.y11{bottom:511.242450px;}
.y8e{bottom:521.694000px;}
.y40{bottom:524.598750px;}
.y10{bottom:529.842450px;}
.y8d{bottom:539.096100px;}
.y3f{bottom:541.101600px;}
.yf{bottom:548.442450px;}
.y8c{bottom:556.498200px;}
.y3e{bottom:560.073600px;}
.ye{bottom:567.042450px;}
.y8b{bottom:573.894000px;}
.y3d{bottom:576.576450px;}
.yd{bottom:585.642450px;}
.y8a{bottom:591.296100px;}
.y3c{bottom:595.548450px;}
.yc{bottom:604.242450px;}
.y89{bottom:608.698200px;}
.y3b{bottom:612.051300px;}
.yb{bottom:622.842450px;}
.ya2{bottom:626.055000px;}
.y88{bottom:626.096100px;}
.y3a{bottom:628.554150px;}
.ya{bottom:641.442450px;}
.ya1{bottom:643.457100px;}
.y87{bottom:643.498200px;}
.y39{bottom:647.526150px;}
.y9{bottom:660.042450px;}
.ya0{bottom:660.859200px;}
.y86{bottom:660.885600px;}
.y38{bottom:666.498150px;}
.y9f{bottom:678.261300px;}
.y85{bottom:678.287700px;}
.y8{bottom:678.642450px;}
.y37{bottom:683.001000px;}
.y9e{bottom:695.663400px;}
.y84{bottom:695.689800px;}
.y7{bottom:697.242450px;}
.y36{bottom:701.973000px;}
.y9d{bottom:713.065500px;}
.y83{bottom:713.091900px;}
.y6{bottom:715.842450px;}
.y35{bottom:720.945000px;}
.y9c{bottom:730.467600px;}
.y82{bottom:730.494000px;}
.y5{bottom:734.442450px;}
.y9b{bottom:747.869700px;}
.y81{bottom:747.896100px;}
.y4{bottom:753.042450px;}
.y9a{bottom:765.271800px;}
.y80{bottom:765.298200px;}
.y32{bottom:771.642450px;}
.y99{bottom:782.673900px;}
.y7f{bottom:782.685600px;}
.y31{bottom:790.242450px;}
.y98{bottom:800.076000px;}
.y7e{bottom:800.087700px;}
.y30{bottom:808.842450px;}
.y97{bottom:817.478100px;}
.y7d{bottom:817.489800px;}
.y3{bottom:818.445300px;}
.y34{bottom:827.442450px;}
.y96{bottom:834.880200px;}
.y7c{bottom:834.891900px;}
.y2f{bottom:846.042450px;}
.y95{bottom:852.282300px;}
.y7b{bottom:852.294000px;}
.y2a{bottom:857.391000px;}
.y2e{bottom:864.642450px;}
.y29{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.y94{bottom:869.684400px;}
.y7a{bottom:869.696100px;}
.y2d{bottom:883.242450px;}
.y93{bottom:887.086500px;}
.y79{bottom:887.098200px;}
.y1{bottom:895.453200px;}
.y2c{bottom:901.842450px;}
.y92{bottom:904.488600px;}
.y78{bottom:904.498200px;}
.y2b{bottom:955.942350px;}
.h5{height:15.295800px;}
.hb{height:45.747000px;}
.he{height:46.285200px;}
.ha{height:46.308000px;}
.hd{height:46.646400px;}
.h11{height:46.654800px;}
.h15{height:46.663200px;}
.h10{height:46.692000px;}
.h12{height:46.696800px;}
.hf{height:46.797600px;}
.h14{height:46.819200px;}
.h13{height:46.852800px;}
.hc{height:48.762000px;}
.h9{height:50.443200px;}
.h8{height:50.666400px;}
.h6{height:50.868000px;}
.h4{height:54.000000px;}
.h7{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:25.546350px;}
.x3{left:28.615500px;}
.x1{left:72.283500px;}
.x5{left:80.787450px;}
.xc{left:85.039350px;}
.x2{left:93.538500px;}
.x6{left:102.042450px;}
.x9{left:157.428750px;}
.xe{left:353.410950px;}
.xb{left:361.914900px;}
.xd{left:366.169050px;}
.xa{left:374.673000px;}
.x8{left:651.223500px;}
.x7{left:654.292650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-3.792000pt;}
.ls20{letter-spacing:-2.773333pt;}
.ls1b{letter-spacing:-2.346667pt;}
.ls12{letter-spacing:-1.872000pt;}
.ls13{letter-spacing:-1.536000pt;}
.ls1c{letter-spacing:-0.843200pt;}
.ls1d{letter-spacing:-0.453333pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.019733pt;}
.ls6{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls1f{letter-spacing:0.229333pt;}
.ls1{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.373333pt;}
.ls17{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.453333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.613333pt;}
.ls7{letter-spacing:0.651200pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.066667pt;}
.ls21{letter-spacing:2.109867pt;}
.ws43{word-spacing:-10.664000pt;}
.ws2b{word-spacing:-9.840000pt;}
.ws56{word-spacing:-9.013333pt;}
.ws5f{word-spacing:-7.584000pt;}
.ws1c{word-spacing:-2.240000pt;}
.ws5b{word-spacing:-2.109867pt;}
.ws2f{word-spacing:-1.973333pt;}
.ws55{word-spacing:-1.920000pt;}
.ws8{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.760000pt;}
.ws5{word-spacing:-1.706667pt;}
.ws9{word-spacing:-1.653333pt;}
.ws1e{word-spacing:-1.600000pt;}
.ws27{word-spacing:-1.546667pt;}
.ws53{word-spacing:-1.493333pt;}
.ws4e{word-spacing:-1.440000pt;}
.ws4b{word-spacing:-1.386667pt;}
.ws2a{word-spacing:-1.333333pt;}
.ws29{word-spacing:-1.226667pt;}
.ws19{word-spacing:-1.066667pt;}
.ws3d{word-spacing:-1.013333pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.906667pt;}
.wsd{word-spacing:-0.800000pt;}
.ws26{word-spacing:-0.746667pt;}
.ws0{word-spacing:-0.670933pt;}
.ws5e{word-spacing:-0.642133pt;}
.ws61{word-spacing:-0.596267pt;}
.ws25{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws4f{word-spacing:-0.373333pt;}
.ws5d{word-spacing:-0.366933pt;}
.ws35{word-spacing:-0.266667pt;}
.ws4{word-spacing:-0.213333pt;}
.ws48{word-spacing:-0.198400pt;}
.ws5c{word-spacing:-0.183467pt;}
.ws49{word-spacing:-0.181333pt;}
.ws58{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.039467pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.053333pt;}
.wsc{word-spacing:0.106667pt;}
.ws24{word-spacing:0.266667pt;}
.ws37{word-spacing:0.320000pt;}
.ws3a{word-spacing:0.373333pt;}
.ws18{word-spacing:0.480000pt;}
.ws13{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.693333pt;}
.ws4d{word-spacing:0.746667pt;}
.ws54{word-spacing:0.906667pt;}
.wse{word-spacing:0.960000pt;}
.ws47{word-spacing:1.066667pt;}
.ws30{word-spacing:1.226667pt;}
.ws50{word-spacing:1.333333pt;}
.ws4c{word-spacing:1.386667pt;}
.ws38{word-spacing:1.440000pt;}
.ws51{word-spacing:1.493333pt;}
.ws12{word-spacing:1.546667pt;}
.ws39{word-spacing:1.600000pt;}
.wsb{word-spacing:1.653333pt;}
.ws1d{word-spacing:1.706667pt;}
.ws11{word-spacing:1.760000pt;}
.ws36{word-spacing:1.813333pt;}
.ws3e{word-spacing:1.866667pt;}
.ws1a{word-spacing:1.872000pt;}
.ws3c{word-spacing:1.920000pt;}
.wsf{word-spacing:1.973333pt;}
.ws28{word-spacing:2.080000pt;}
.ws46{word-spacing:2.133333pt;}
.ws5a{word-spacing:2.240000pt;}
.ws33{word-spacing:2.293333pt;}
.ws16{word-spacing:2.346667pt;}
.ws59{word-spacing:2.453333pt;}
.ws1f{word-spacing:2.506667pt;}
.ws22{word-spacing:2.560000pt;}
.ws32{word-spacing:2.613333pt;}
.ws34{word-spacing:2.666667pt;}
.ws14{word-spacing:2.720000pt;}
.ws17{word-spacing:2.773333pt;}
.ws31{word-spacing:2.880000pt;}
.ws2d{word-spacing:3.200000pt;}
.ws20{word-spacing:3.573333pt;}
.ws23{word-spacing:3.626667pt;}
.ws15{word-spacing:4.000000pt;}
.ws52{word-spacing:4.266667pt;}
.ws3f{word-spacing:4.800000pt;}
.ws21{word-spacing:4.960000pt;}
.ws41{word-spacing:22.865600pt;}
.ws42{word-spacing:152.718400pt;}
.ws44{word-spacing:153.809600pt;}
.ws40{word-spacing:176.427200pt;}
.ws57{word-spacing:935.424000pt;}
.ws1b{word-spacing:936.000000pt;}
.ws45{word-spacing:937.200000pt;}
.ws2c{word-spacing:1097.904000pt;}
.ws60{word-spacing:1103.280000pt;}
._10{margin-left:-1103.618667pt;}
._f{margin-left:-1102.652800pt;}
._b{margin-left:-1097.718933pt;}
._e{margin-left:-7.494293pt;}
._2{margin-left:-6.400000pt;}
._3{margin-left:-4.800000pt;}
._1{margin-left:-2.995200pt;}
._0{margin-left:-1.280000pt;}
._4{width:1.674667pt;}
._5{width:2.744533pt;}
._9{width:3.862400pt;}
._a{width:4.769067pt;}
._d{width:19.733333pt;}
._7{width:24.533333pt;}
._8{width:26.506667pt;}
._c{width:29.013333pt;}
._6{width:31.413333pt;}
.fs3{font-size:19.733333pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:45.866667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:49.600000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:57.637733pt;}
.y77{bottom:66.683867pt;}
.y63{bottom:66.700667pt;}
.y27{bottom:74.171067pt;}
.y76{bottom:82.152400pt;}
.y62{bottom:82.169200pt;}
.y26{bottom:90.704400pt;}
.y75{bottom:97.620933pt;}
.y61{bottom:97.637733pt;}
.y33{bottom:107.237733pt;}
.y60{bottom:113.070800pt;}
.y74{bottom:113.089467pt;}
.y25{bottom:123.771067pt;}
.y5f{bottom:128.539333pt;}
.y73{bottom:128.558000pt;}
.y24{bottom:140.304400pt;}
.y5e{bottom:144.007867pt;}
.y72{bottom:144.026533pt;}
.y23{bottom:156.837733pt;}
.y5d{bottom:159.476400pt;}
.y71{bottom:159.495067pt;}
.y22{bottom:173.371067pt;}
.y5c{bottom:174.944933pt;}
.y70{bottom:174.963600pt;}
.y21{bottom:189.904400pt;}
.y5b{bottom:190.413467pt;}
.y6f{bottom:190.432133pt;}
.y5a{bottom:205.882000pt;}
.y6e{bottom:205.900667pt;}
.y20{bottom:206.437733pt;}
.y59{bottom:221.350533pt;}
.y6d{bottom:221.369200pt;}
.y1f{bottom:222.971067pt;}
.y58{bottom:236.819067pt;}
.y6c{bottom:236.837733pt;}
.y4e{bottom:237.201867pt;}
.y1e{bottom:239.504400pt;}
.y57{bottom:252.287600pt;}
.y6b{bottom:252.302533pt;}
.y4d{bottom:252.535867pt;}
.y1d{bottom:256.037733pt;}
.y56{bottom:267.756133pt;}
.y6a{bottom:267.771067pt;}
.y1c{bottom:272.571067pt;}
.y4c{bottom:274.916000pt;}
.y55{bottom:283.224667pt;}
.y69{bottom:283.237733pt;}
.y1b{bottom:289.104400pt;}
.y4b{bottom:289.585200pt;}
.y54{bottom:298.693200pt;}
.y68{bottom:298.694267pt;}
.y1a{bottom:305.637733pt;}
.y4a{bottom:306.449200pt;}
.y53{bottom:314.161733pt;}
.y67{bottom:314.162800pt;}
.y19{bottom:322.171067pt;}
.y49{bottom:323.313200pt;}
.y52{bottom:329.630267pt;}
.y66{bottom:329.631333pt;}
.y48{bottom:337.982400pt;}
.y18{bottom:338.704400pt;}
.y51{bottom:345.098800pt;}
.y65{bottom:345.099867pt;}
.y47{bottom:354.846400pt;}
.y17{bottom:355.237733pt;}
.y50{bottom:360.567333pt;}
.y64{bottom:360.568400pt;}
.y46{bottom:369.515600pt;}
.y16{bottom:371.771067pt;}
.y45{bottom:386.379600pt;}
.y15{bottom:388.304400pt;}
.y4f{bottom:391.504400pt;}
.y44{bottom:403.243600pt;}
.y14{bottom:404.837733pt;}
.y91{bottom:417.322400pt;}
.y43{bottom:417.912800pt;}
.y13{bottom:421.371067pt;}
.y90{bottom:432.790933pt;}
.y42{bottom:434.776800pt;}
.y12{bottom:437.904400pt;}
.y8f{bottom:448.259467pt;}
.y41{bottom:449.446000pt;}
.y11{bottom:454.437733pt;}
.y8e{bottom:463.728000pt;}
.y40{bottom:466.310000pt;}
.y10{bottom:470.971067pt;}
.y8d{bottom:479.196533pt;}
.y3f{bottom:480.979200pt;}
.yf{bottom:487.504400pt;}
.y8c{bottom:494.665067pt;}
.y3e{bottom:497.843200pt;}
.ye{bottom:504.037733pt;}
.y8b{bottom:510.128000pt;}
.y3d{bottom:512.512400pt;}
.yd{bottom:520.571067pt;}
.y8a{bottom:525.596533pt;}
.y3c{bottom:529.376400pt;}
.yc{bottom:537.104400pt;}
.y89{bottom:541.065067pt;}
.y3b{bottom:544.045600pt;}
.yb{bottom:553.637733pt;}
.ya2{bottom:556.493333pt;}
.y88{bottom:556.529867pt;}
.y3a{bottom:558.714800pt;}
.ya{bottom:570.171067pt;}
.ya1{bottom:571.961867pt;}
.y87{bottom:571.998400pt;}
.y39{bottom:575.578800pt;}
.y9{bottom:586.704400pt;}
.ya0{bottom:587.430400pt;}
.y86{bottom:587.453867pt;}
.y38{bottom:592.442800pt;}
.y9f{bottom:602.898933pt;}
.y85{bottom:602.922400pt;}
.y8{bottom:603.237733pt;}
.y37{bottom:607.112000pt;}
.y9e{bottom:618.367467pt;}
.y84{bottom:618.390933pt;}
.y7{bottom:619.771067pt;}
.y36{bottom:623.976000pt;}
.y9d{bottom:633.836000pt;}
.y83{bottom:633.859467pt;}
.y6{bottom:636.304400pt;}
.y35{bottom:640.840000pt;}
.y9c{bottom:649.304533pt;}
.y82{bottom:649.328000pt;}
.y5{bottom:652.837733pt;}
.y9b{bottom:664.773067pt;}
.y81{bottom:664.796533pt;}
.y4{bottom:669.371067pt;}
.y9a{bottom:680.241600pt;}
.y80{bottom:680.265067pt;}
.y32{bottom:685.904400pt;}
.y99{bottom:695.710133pt;}
.y7f{bottom:695.720533pt;}
.y31{bottom:702.437733pt;}
.y98{bottom:711.178667pt;}
.y7e{bottom:711.189067pt;}
.y30{bottom:718.971067pt;}
.y97{bottom:726.647200pt;}
.y7d{bottom:726.657600pt;}
.y3{bottom:727.506933pt;}
.y34{bottom:735.504400pt;}
.y96{bottom:742.115733pt;}
.y7c{bottom:742.126133pt;}
.y2f{bottom:752.037733pt;}
.y95{bottom:757.584267pt;}
.y7b{bottom:757.594667pt;}
.y2a{bottom:762.125333pt;}
.y2e{bottom:768.571067pt;}
.y29{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.y94{bottom:773.052800pt;}
.y7a{bottom:773.063200pt;}
.y2d{bottom:785.104400pt;}
.y93{bottom:788.521333pt;}
.y79{bottom:788.531733pt;}
.y1{bottom:795.958400pt;}
.y2c{bottom:801.637733pt;}
.y92{bottom:803.989867pt;}
.y78{bottom:803.998400pt;}
.y2b{bottom:849.726533pt;}
.h5{height:13.596267pt;}
.hb{height:40.664000pt;}
.he{height:41.142400pt;}
.ha{height:41.162667pt;}
.hd{height:41.463467pt;}
.h11{height:41.470933pt;}
.h15{height:41.478400pt;}
.h10{height:41.504000pt;}
.h12{height:41.508267pt;}
.hf{height:41.597867pt;}
.h14{height:41.617067pt;}
.h13{height:41.646933pt;}
.hc{height:43.344000pt;}
.h9{height:44.838400pt;}
.h8{height:45.036800pt;}
.h6{height:45.216000pt;}
.h4{height:48.000000pt;}
.h7{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:22.707867pt;}
.x3{left:25.436000pt;}
.x1{left:64.252000pt;}
.x5{left:71.811067pt;}
.xc{left:75.590533pt;}
.x2{left:83.145333pt;}
.x6{left:90.704400pt;}
.x9{left:139.936667pt;}
.xe{left:314.143067pt;}
.xb{left:321.702133pt;}
.xd{left:325.483600pt;}
.xa{left:333.042667pt;}
.x8{left:578.865333pt;}
.x7{left:581.593467pt;}
}




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