
    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_e593e81779999684a18ace61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_60a640c4d67c02ee92820b65.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_8f384538ed13ee37a8ea4b24.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_9357f0dc366871843a651f85.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945312;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_313d94a8aa93775768d360e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_30ef530d39539cc36e716504.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.081055;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_efe31e9aa61f389198eb07f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-11.525388px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.527575px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-51.839630px;}
.ws16{word-spacing:-33.120091px;}
.ws17{word-spacing:-25.454214px;}
.ws56{word-spacing:-24.376387px;}
.ws5c{word-spacing:-23.945826px;}
.ws59{word-spacing:-23.747106px;}
.wsa{word-spacing:-23.274877px;}
.wsc{word-spacing:-23.274739px;}
.ws2f{word-spacing:-22.534793px;}
.ws15{word-spacing:-19.733918px;}
.ws62{word-spacing:-18.204655px;}
.ws64{word-spacing:-18.167668px;}
.ws11{word-spacing:-16.632347px;}
.ws2b{word-spacing:-15.235242px;}
.ws5e{word-spacing:-14.771561px;}
.ws44{word-spacing:-14.569498px;}
.ws60{word-spacing:-14.241639px;}
.ws40{word-spacing:-11.545713px;}
.ws1f{word-spacing:-9.273626px;}
.ws7{word-spacing:-9.174265px;}
.ws1c{word-spacing:-8.038959px;}
.ws1b{word-spacing:-7.307981px;}
.ws0{word-spacing:-6.980464px;}
.ws1e{word-spacing:-5.700249px;}
.ws26{word-spacing:-5.210194px;}
.ws2a{word-spacing:-2.318406px;}
.ws2e{word-spacing:-1.788485px;}
.ws5b{word-spacing:-1.755365px;}
.ws14{word-spacing:-1.656005px;}
.ws25{word-spacing:-1.424164px;}
.ws39{word-spacing:-1.324804px;}
.wse{word-spacing:-1.225443px;}
.ws43{word-spacing:-1.092963px;}
.wsf{word-spacing:-0.993603px;}
.ws33{word-spacing:-0.761762px;}
.ws1{word-spacing:-0.563042px;}
.ws36{word-spacing:-0.463681px;}
.ws4b{word-spacing:-0.430561px;}
.ws4{word-spacing:-0.099360px;}
.ws66{word-spacing:0.000000px;}
.ws1a{word-spacing:0.435609px;}
.wsb{word-spacing:0.563032px;}
.ws22{word-spacing:0.563042px;}
.ws3f{word-spacing:0.695522px;}
.ws9{word-spacing:1.213152px;}
.wsd{word-spacing:1.225443px;}
.ws42{word-spacing:1.424164px;}
.ws30{word-spacing:1.854725px;}
.ws49{word-spacing:1.987205px;}
.ws52{word-spacing:2.517127px;}
.ws20{word-spacing:2.881448px;}
.ws58{word-spacing:3.080169px;}
.ws57{word-spacing:3.212649px;}
.ws46{word-spacing:3.841931px;}
.ws2{word-spacing:4.206252px;}
.ws13{word-spacing:4.868653px;}
.ws37{word-spacing:5.067374px;}
.ws51{word-spacing:5.531055px;}
.ws32{word-spacing:5.630416px;}
.ws61{word-spacing:6.060977px;}
.ws63{word-spacing:6.146240px;}
.ws5{word-spacing:6.193457px;}
.ws12{word-spacing:6.855859px;}
.ws10{word-spacing:7.385780px;}
.ws27{word-spacing:7.485141px;}
.ws23{word-spacing:8.147542px;}
.ws35{word-spacing:8.412503px;}
.ws5d{word-spacing:8.644344px;}
.ws5f{word-spacing:9.008732px;}
.ws3{word-spacing:9.041785px;}
.ws2c{word-spacing:9.372986px;}
.ws31{word-spacing:9.472346px;}
.ws45{word-spacing:9.803547px;}
.ws5a{word-spacing:9.836667px;}
.ws28{word-spacing:12.287554px;}
.ws41{word-spacing:12.453154px;}
.ws6{word-spacing:16.460685px;}
.ws50{word-spacing:17.785489px;}
.ws3e{word-spacing:18.447891px;}
.ws4c{word-spacing:18.593039px;}
.ws4a{word-spacing:19.772695px;}
.ws21{word-spacing:21.395579px;}
.ws34{word-spacing:21.428699px;}
.ws38{word-spacing:21.528059px;}
.ws2d{word-spacing:22.720383px;}
.ws24{word-spacing:25.270630px;}
.ws3d{word-spacing:28.152078px;}
.ws48{word-spacing:28.814480px;}
.ws4e{word-spacing:31.364727px;}
.ws47{word-spacing:33.650013px;}
.ws29{word-spacing:34.345535px;}
.ws3a{word-spacing:34.444895px;}
.ws3b{word-spacing:35.570978px;}
.ws4d{word-spacing:42.294357px;}
.ws54{word-spacing:43.751641px;}
.ws4f{word-spacing:44.281562px;}
.ws3c{word-spacing:53.190867px;}
.ws55{word-spacing:67.995548px;}
.ws65{word-spacing:106.667725px;}
.ws53{word-spacing:112.188026px;}
.ws1d{word-spacing:119.317158px;}
.ws19{word-spacing:122.089212px;}
.ws18{word-spacing:1436.550958px;}
._8{margin-left:-5.522553px;}
._5{margin-left:-3.057766px;}
._0{margin-left:-1.954074px;}
._1{width:1.784154px;}
._2{width:3.398389px;}
._3{width:4.927664px;}
._10{width:5.955826px;}
._6{width:7.465928px;}
._4{width:8.539134px;}
._b{width:10.234700px;}
._a{width:11.337889px;}
._d{width:12.445512px;}
._7{width:13.650905px;}
._e{width:14.985306px;}
._18{width:16.440511px;}
._c{width:17.624184px;}
._16{width:18.911572px;}
._9{width:20.041974px;}
._14{width:29.028237px;}
._15{width:32.987611px;}
._17{width:45.047632px;}
._19{width:123.551681px;}
._12{width:128.872463px;}
._11{width:137.889925px;}
._f{width:141.453995px;}
._13{width:190.251557px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:25.200230px;}
.fs7{font-size:28.080045px;}
.fs3{font-size:33.120091px;}
.fs6{font-size:35.999907px;}
.fs1{font-size:37.440552px;}
.fs5{font-size:39.600783px;}
.fs4{font-size:51.839630px;}
.fs8{font-size:56.160091px;}
.fs0{font-size:84.959722px;}
.y0{bottom:0.000000px;}
.y52{bottom:1.081590px;}
.y19{bottom:7.194587px;}
.y18{bottom:17.097421px;}
.ye{bottom:28.614880px;}
.y17{bottom:30.419020px;}
.yd{bottom:38.515048px;}
.y16{bottom:40.314253px;}
.yc{bottom:48.417881px;}
.y15{bottom:53.635853px;}
.yb{bottom:58.318148px;}
.y14{bottom:63.538587px;}
.ya{bottom:68.215849px;}
.y13{bottom:76.855153px;}
.y9{bottom:78.116116px;}
.y12{bottom:86.757986px;}
.y8{bottom:88.018851px;}
.y11{bottom:100.256466px;}
.yf{bottom:106.930573px;}
.y10{bottom:110.156733px;}
.y1a{bottom:126.907515px;}
.y26{bottom:150.098830px;}
.y25{bottom:158.583690px;}
.y24{bottom:163.779300px;}
.y65{bottom:174.776108px;}
.y1d{bottom:176.559399px;}
.y64{bottom:184.678942px;}
.y1e{bottom:190.961913px;}
.y63{bottom:194.579209px;}
.y2c{bottom:196.560561px;}
.y62{bottom:204.476909px;}
.y1f{bottom:205.177129px;}
.y61{bottom:214.377176px;}
.y2b{bottom:215.462469px;}
.y77{bottom:217.798509px;}
.y20{bottom:219.401433px;}
.y60{bottom:224.279911px;}
.y76{bottom:227.698776px;}
.y21{bottom:233.622669px;}
.y2a{bottom:234.183167px;}
.y5f{bottom:237.596476px;}
.y75{bottom:247.314829px;}
.y5e{bottom:247.496744px;}
.y22{bottom:247.837885px;}
.y29{bottom:253.082392px;}
.y5d{bottom:257.399478px;}
.y74{bottom:260.818343px;}
.y23{bottom:262.062189px;}
.y5c{bottom:267.297179px;}
.y73{bottom:270.716044px;}
.y28{bottom:276.840266px;}
.y5b{bottom:277.197446px;}
.y72{bottom:280.618877px;}
.y5a{bottom:287.097713px;}
.y27{bottom:287.642460px;}
.y59{bottom:296.995414px;}
.yb9{bottom:307.061443px;}
.yb8{bottom:314.822609px;}
.y51{bottom:318.403415px;}
.yb7{bottom:320.403628px;}
.yb1{bottom:331.724280px;}
.y53{bottom:332.101301px;}
.y4a{bottom:332.446382px;}
.ybf{bottom:338.742783px;}
.y4b{bottom:348.102794px;}
.y71{bottom:348.839032px;}
.yb2{bottom:349.184384px;}
.ybe{bottom:353.864389px;}
.y95{bottom:356.217470px;}
.y58{bottom:357.300098px;}
.y70{bottom:358.736831px;}
.y57{bottom:362.519620px;}
.y4c{bottom:363.943434px;}
.y94{bottom:366.117737px;}
.yb3{bottom:366.641479px;}
.y6f{bottom:368.637049px;}
.ybd{bottom:368.801709px;}
.y93{bottom:376.015487px;}
.y4d{bottom:379.602856px;}
.y6e{bottom:381.958648px;}
.y56{bottom:383.223323px;}
.ybc{bottom:383.923315px;}
.yb4{bottom:384.101583px;}
.y92{bottom:385.738825px;}
.y6d{bottom:391.856398px;}
.y4e{bottom:395.443497px;}
.y91{bottom:395.636575px;}
.yb5{bottom:401.561629px;}
.y6c{bottom:401.756616px;}
.y90{bottom:405.536792px;}
.y4f{bottom:411.105927px;}
.y6b{bottom:411.659400px;}
.y8f{bottom:418.858441px;}
.yb6{bottom:419.024743px;}
.y6a{bottom:424.975965px;}
.y50{bottom:426.946627px;}
.y8e{bottom:428.756142px;}
.ybb{bottom:433.622975px;}
.y69{bottom:434.878749px;}
.y55{bottom:442.082426px;}
.y8d{bottom:442.257188px;}
.yba{bottom:444.419750px;}
.y8c{bottom:452.157405px;}
.y54{bottom:452.879201px;}
.y45{bottom:477.526198px;}
.y44{bottom:481.846657px;}
.y3d{bottom:494.808034px;}
.y8b{bottom:501.838088px;}
.y3e{bottom:510.464388px;}
.y8a{bottom:511.738306px;}
.y49{bottom:515.698843px;}
.y89{bottom:521.641090px;}
.y3f{bottom:526.126818px;}
.y88{bottom:531.536274px;}
.y48{bottom:539.099662px;}
.y87{bottom:541.257143px;}
.y40{bottom:541.786240px;}
.y86{bottom:554.760657px;}
.y41{bottom:557.626881px;}
.y85{bottom:564.658407px;}
.y42{bottom:573.289311px;}
.y84{bottom:574.376710px;}
.y83{bottom:587.880274px;}
.y43{bottom:588.945723px;}
.y82{bottom:597.777974px;}
.y47{bottom:604.443471px;}
.y81{bottom:607.678241px;}
.y46{bottom:615.240247px;}
.y36{bottom:639.887851px;}
.y35{bottom:646.549818px;}
.y34{bottom:653.568262px;}
.y3c{bottom:664.018517px;}
.y2d{bottom:666.529639px;}
.y3b{bottom:678.779222px;}
.y2e{bottom:680.750934px;}
.y80{bottom:692.820873px;}
.y3a{bottom:693.719892px;}
.y2f{bottom:694.972169px;}
.y7f{bottom:702.716057px;}
.y39{bottom:708.480597px;}
.y30{bottom:709.190424px;}
.y7e{bottom:712.618841px;}
.y7d{bottom:722.519059px;}
.y31{bottom:723.411690px;}
.y7c{bottom:732.416809px;}
.y32{bottom:737.632925px;}
.y7b{bottom:742.317026px;}
.y33{bottom:751.851180px;}
.y7a{bottom:752.219810px;}
.y68{bottom:759.780212px;}
.y79{bottom:762.120077px;}
.y38{bottom:766.623199px;}
.y67{bottom:769.677913px;}
.y78{bottom:772.017778px;}
.y37{bottom:777.420002px;}
.y66{bottom:779.578155px;}
.y1c{bottom:799.202749px;}
.ya8{bottom:819.179149px;}
.ya7{bottom:829.079392px;}
.ya6{bottom:838.977117px;}
.yaf{bottom:846.360614px;}
.ya5{bottom:850.860947px;}
.yae{bottom:856.258340px;}
.ya4{bottom:862.737200px;}
.yad{bottom:866.158582px;}
.yaa{bottom:868.677869px;}
.ya3{bottom:872.639984px;}
.yac{bottom:876.058824px;}
.ya9{bottom:878.578111px;}
.ya2{bottom:884.339358px;}
.yab{bottom:885.961608px;}
.ya1{bottom:896.218128px;}
.ya0{bottom:906.118371px;}
.y9f{bottom:916.021155px;}
.y9e{bottom:927.899926px;}
.y9d{bottom:939.781238px;}
.y9c{bottom:949.678470px;}
.y9b{bottom:959.579724px;}
.y9a{bottom:971.458001px;}
.y99{bottom:983.340313px;}
.y98{bottom:993.237520px;}
.y97{bottom:1003.138786px;}
.y96{bottom:1015.021098px;}
.y1b{bottom:1033.740391px;}
.y7{bottom:1054.618032px;}
.y6{bottom:1068.297176px;}
.y5{bottom:1082.520174px;}
.y4{bottom:1096.018541px;}
.y3{bottom:1106.638093px;}
.yb0{bottom:1110.961544px;}
.y2{bottom:1130.575442px;}
.y1{bottom:1155.963796px;}
.hd{height:11.160635px;}
.h3{height:18.420285px;}
.h5{height:24.209364px;}
.hc{height:24.336953px;}
.h7{height:24.435771px;}
.hf{height:24.904756px;}
.h4{height:27.367435px;}
.h2{height:29.947860px;}
.h9{height:31.078045px;}
.hb{height:31.201091px;}
.ha{height:34.186613px;}
.h8{height:34.321967px;}
.h6{height:38.980972px;}
.he{height:48.481954px;}
.h1{height:64.093149px;}
.h0{height:1188.000000px;}
.w1{width:47.878577px;}
.w2{width:50.041756px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:55.256794px;}
.x32{left:63.360186px;}
.xf{left:64.621418px;}
.x9{left:66.240183px;}
.xc{left:68.400214px;}
.xd{left:69.659096px;}
.xb{left:71.102307px;}
.x2c{left:73.258796px;}
.x26{left:76.861093px;}
.xe{left:78.843848px;}
.x2d{left:80.641282px;}
.x10{left:96.837643px;}
.x11{left:108.900599px;}
.x33{left:124.918630px;}
.x2{left:130.675356px;}
.x5{left:162.361832px;}
.x1{left:167.222977px;}
.x4{left:183.243079px;}
.x3{left:215.644233px;}
.x27{left:271.620026px;}
.x12{left:300.057820px;}
.x34{left:302.583195px;}
.x28{left:343.981792px;}
.x29{left:345.780923px;}
.x6{left:368.464041px;}
.x7{left:387.368270px;}
.x1c{left:468.367974px;}
.x16{left:469.809141px;}
.x14{left:474.132609px;}
.x13{left:479.347361px;}
.x1d{left:485.819658px;}
.x15{left:488.710382px;}
.x18{left:492.661419px;}
.x22{left:500.939553px;}
.x1e{left:512.999807px;}
.x1b{left:517.690668px;}
.x20{left:519.850897px;}
.x2e{left:522.721928px;}
.x8{left:535.323421px;}
.x19{left:546.299239px;}
.x24{left:557.102021px;}
.x17{left:571.509108px;}
.x21{left:617.052196px;}
.x2f{left:649.080204px;}
.x1f{left:698.217828px;}
.x1a{left:702.183251px;}
.x23{left:707.218333px;}
.x2b{left:736.921545px;}
.x2a{left:739.082013px;}
.x25{left:762.121965px;}
.x30{left:780.840932px;}
.x31{left:800.280885px;}
@media print{
.v2{vertical-align:-10.244789pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.246734pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-46.079671pt;}
.ws16{word-spacing:-29.440081pt;}
.ws17{word-spacing:-22.625968pt;}
.ws56{word-spacing:-21.667900pt;}
.ws5c{word-spacing:-21.285179pt;}
.ws59{word-spacing:-21.108538pt;}
.wsa{word-spacing:-20.688780pt;}
.wsc{word-spacing:-20.688657pt;}
.ws2f{word-spacing:-20.030927pt;}
.ws15{word-spacing:-17.541261pt;}
.ws62{word-spacing:-16.181915pt;}
.ws64{word-spacing:-16.149038pt;}
.ws11{word-spacing:-14.784309pt;}
.ws2b{word-spacing:-13.542437pt;}
.ws5e{word-spacing:-13.130276pt;}
.ws44{word-spacing:-12.950665pt;}
.ws60{word-spacing:-12.659235pt;}
.ws40{word-spacing:-10.262856pt;}
.ws1f{word-spacing:-8.243223pt;}
.ws7{word-spacing:-8.154903pt;}
.ws1c{word-spacing:-7.145741pt;}
.ws1b{word-spacing:-6.495983pt;}
.ws0{word-spacing:-6.204857pt;}
.ws1e{word-spacing:-5.066888pt;}
.ws26{word-spacing:-4.631283pt;}
.ws2a{word-spacing:-2.060806pt;}
.ws2e{word-spacing:-1.589764pt;}
.ws5b{word-spacing:-1.560324pt;}
.ws14{word-spacing:-1.472004pt;}
.ws25{word-spacing:-1.265923pt;}
.ws39{word-spacing:-1.177603pt;}
.wse{word-spacing:-1.089283pt;}
.ws43{word-spacing:-0.971523pt;}
.wsf{word-spacing:-0.883202pt;}
.ws33{word-spacing:-0.677122pt;}
.ws1{word-spacing:-0.500481pt;}
.ws36{word-spacing:-0.412161pt;}
.ws4b{word-spacing:-0.382721pt;}
.ws4{word-spacing:-0.088320pt;}
.ws66{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.387208pt;}
.wsb{word-spacing:0.500473pt;}
.ws22{word-spacing:0.500481pt;}
.ws3f{word-spacing:0.618242pt;}
.ws9{word-spacing:1.078358pt;}
.wsd{word-spacing:1.089283pt;}
.ws42{word-spacing:1.265923pt;}
.ws30{word-spacing:1.648645pt;}
.ws49{word-spacing:1.766405pt;}
.ws52{word-spacing:2.237446pt;}
.ws20{word-spacing:2.561287pt;}
.ws58{word-spacing:2.737928pt;}
.ws57{word-spacing:2.855688pt;}
.ws46{word-spacing:3.415049pt;}
.ws2{word-spacing:3.738890pt;}
.ws13{word-spacing:4.327692pt;}
.ws37{word-spacing:4.504332pt;}
.ws51{word-spacing:4.916494pt;}
.ws32{word-spacing:5.004814pt;}
.ws61{word-spacing:5.387535pt;}
.ws63{word-spacing:5.463324pt;}
.ws5{word-spacing:5.505295pt;}
.ws12{word-spacing:6.094097pt;}
.ws10{word-spacing:6.565138pt;}
.ws27{word-spacing:6.653458pt;}
.ws23{word-spacing:7.242260pt;}
.ws35{word-spacing:7.477781pt;}
.ws5d{word-spacing:7.683861pt;}
.ws5f{word-spacing:8.007762pt;}
.ws3{word-spacing:8.037142pt;}
.ws2c{word-spacing:8.331543pt;}
.ws31{word-spacing:8.419863pt;}
.ws45{word-spacing:8.714264pt;}
.ws5a{word-spacing:8.743704pt;}
.ws28{word-spacing:10.922270pt;}
.ws41{word-spacing:11.069471pt;}
.ws6{word-spacing:14.631720pt;}
.ws50{word-spacing:15.809324pt;}
.ws3e{word-spacing:16.398125pt;}
.ws4c{word-spacing:16.527146pt;}
.ws4a{word-spacing:17.575729pt;}
.ws21{word-spacing:19.018293pt;}
.ws34{word-spacing:19.047733pt;}
.ws38{word-spacing:19.136053pt;}
.ws2d{word-spacing:20.195896pt;}
.ws24{word-spacing:22.462782pt;}
.ws3d{word-spacing:25.024069pt;}
.ws48{word-spacing:25.612871pt;}
.ws4e{word-spacing:27.879757pt;}
.ws47{word-spacing:29.911123pt;}
.ws29{word-spacing:30.529364pt;}
.ws3a{word-spacing:30.617685pt;}
.ws3b{word-spacing:31.618647pt;}
.ws4d{word-spacing:37.594984pt;}
.ws54{word-spacing:38.890347pt;}
.ws4f{word-spacing:39.361389pt;}
.ws3c{word-spacing:47.280771pt;}
.ws55{word-spacing:60.440487pt;}
.ws65{word-spacing:94.815755pt;}
.ws53{word-spacing:99.722690pt;}
.ws1d{word-spacing:106.059696pt;}
.ws19{word-spacing:108.523744pt;}
.ws18{word-spacing:1276.934185pt;}
._8{margin-left:-4.908936pt;}
._5{margin-left:-2.718014pt;}
._0{margin-left:-1.736954pt;}
._1{width:1.585915pt;}
._2{width:3.020790pt;}
._3{width:4.380146pt;}
._10{width:5.294067pt;}
._6{width:6.636380pt;}
._4{width:7.590341pt;}
._b{width:9.097512pt;}
._a{width:10.078124pt;}
._d{width:11.062677pt;}
._7{width:12.134138pt;}
._e{width:13.320272pt;}
._18{width:14.613787pt;}
._c{width:15.665941pt;}
._16{width:16.810286pt;}
._9{width:17.815088pt;}
._14{width:25.802877pt;}
._15{width:29.322321pt;}
._17{width:40.042339pt;}
._19{width:109.823717pt;}
._12{width:114.553300pt;}
._11{width:122.568822pt;}
._f{width:125.736885pt;}
._13{width:169.112495pt;}
.fs2{font-size:22.400204pt;}
.fs7{font-size:24.960040pt;}
.fs3{font-size:29.440081pt;}
.fs6{font-size:31.999917pt;}
.fs1{font-size:33.280491pt;}
.fs5{font-size:35.200696pt;}
.fs4{font-size:46.079671pt;}
.fs8{font-size:49.920081pt;}
.fs0{font-size:75.519753pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:0.961413pt;}
.y19{bottom:6.395189pt;}
.y18{bottom:15.197707pt;}
.ye{bottom:25.435449pt;}
.y17{bottom:27.039129pt;}
.yd{bottom:34.235598pt;}
.y16{bottom:35.834892pt;}
.yc{bottom:43.038117pt;}
.y15{bottom:47.676313pt;}
.yb{bottom:51.838354pt;}
.y14{bottom:56.478744pt;}
.ya{bottom:60.636310pt;}
.y13{bottom:68.315691pt;}
.y9{bottom:69.436548pt;}
.y12{bottom:77.118210pt;}
.y8{bottom:78.238978pt;}
.y11{bottom:89.116858pt;}
.yf{bottom:95.049398pt;}
.y10{bottom:97.917096pt;}
.y1a{bottom:112.806680pt;}
.y26{bottom:133.421182pt;}
.y25{bottom:140.963280pt;}
.y24{bottom:145.581600pt;}
.y65{bottom:155.356541pt;}
.y1d{bottom:156.941688pt;}
.y64{bottom:164.159059pt;}
.y1e{bottom:169.743922pt;}
.y63{bottom:172.959297pt;}
.y2c{bottom:174.720499pt;}
.y62{bottom:181.757253pt;}
.y1f{bottom:182.379670pt;}
.y61{bottom:190.557490pt;}
.y2b{bottom:191.522194pt;}
.y77{bottom:193.598674pt;}
.y20{bottom:195.023496pt;}
.y60{bottom:199.359921pt;}
.y76{bottom:202.398912pt;}
.y21{bottom:207.664594pt;}
.y2a{bottom:208.162815pt;}
.y5f{bottom:211.196868pt;}
.y75{bottom:219.835404pt;}
.y5e{bottom:219.997105pt;}
.y22{bottom:220.300342pt;}
.y29{bottom:224.962127pt;}
.y5d{bottom:228.799536pt;}
.y74{bottom:231.838527pt;}
.y23{bottom:232.944168pt;}
.y5c{bottom:237.597492pt;}
.y73{bottom:240.636483pt;}
.y28{bottom:246.080237pt;}
.y5b{bottom:246.397730pt;}
.y72{bottom:249.439002pt;}
.y5a{bottom:255.197967pt;}
.y27{bottom:255.682186pt;}
.y59{bottom:263.995923pt;}
.yb9{bottom:272.943505pt;}
.yb8{bottom:279.842319pt;}
.y51{bottom:283.025258pt;}
.yb7{bottom:284.803225pt;}
.yb1{bottom:294.866026pt;}
.y53{bottom:295.201157pt;}
.y4a{bottom:295.507895pt;}
.ybf{bottom:301.104696pt;}
.y4b{bottom:309.424706pt;}
.y71{bottom:310.079139pt;}
.yb2{bottom:310.386119pt;}
.ybe{bottom:314.546124pt;}
.y95{bottom:316.637751pt;}
.y58{bottom:317.600088pt;}
.y70{bottom:318.877183pt;}
.y57{bottom:322.239662pt;}
.y4c{bottom:323.505275pt;}
.y94{bottom:325.437989pt;}
.yb3{bottom:325.903537pt;}
.y6f{bottom:327.677377pt;}
.ybd{bottom:327.823741pt;}
.y93{bottom:334.235989pt;}
.y4d{bottom:337.424761pt;}
.y6e{bottom:339.518798pt;}
.y56{bottom:340.642954pt;}
.ybc{bottom:341.265169pt;}
.yb4{bottom:341.423630pt;}
.y92{bottom:342.878955pt;}
.y6d{bottom:348.316798pt;}
.y4e{bottom:351.505330pt;}
.y91{bottom:351.676955pt;}
.yb5{bottom:356.943670pt;}
.y6c{bottom:357.116992pt;}
.y90{bottom:360.477149pt;}
.y4f{bottom:365.427491pt;}
.y6b{bottom:365.919466pt;}
.y8f{bottom:372.318614pt;}
.yb6{bottom:372.466438pt;}
.y6a{bottom:377.756413pt;}
.y50{bottom:379.508113pt;}
.y8e{bottom:381.116570pt;}
.ybb{bottom:385.442644pt;}
.y69{bottom:386.558888pt;}
.y55{bottom:392.962156pt;}
.y8d{bottom:393.117500pt;}
.yba{bottom:395.039778pt;}
.y8c{bottom:401.917694pt;}
.y54{bottom:402.559290pt;}
.y45{bottom:424.467732pt;}
.y44{bottom:428.308140pt;}
.y3d{bottom:439.829364pt;}
.y8b{bottom:446.078301pt;}
.y3e{bottom:453.746122pt;}
.y8a{bottom:454.878494pt;}
.y49{bottom:458.398972pt;}
.y89{bottom:463.680969pt;}
.y3f{bottom:467.668283pt;}
.y88{bottom:472.476688pt;}
.y48{bottom:479.199700pt;}
.y87{bottom:481.117461pt;}
.y40{bottom:481.587769pt;}
.y86{bottom:493.120584pt;}
.y41{bottom:495.668338pt;}
.y85{bottom:501.918584pt;}
.y42{bottom:509.590499pt;}
.y84{bottom:510.557076pt;}
.y83{bottom:522.560243pt;}
.y43{bottom:523.507310pt;}
.y82{bottom:531.358199pt;}
.y47{bottom:537.283085pt;}
.y81{bottom:540.158437pt;}
.y46{bottom:546.880219pt;}
.y36{bottom:568.789201pt;}
.y35{bottom:574.710949pt;}
.y34{bottom:580.949566pt;}
.y3c{bottom:590.238681pt;}
.y2d{bottom:592.470790pt;}
.y3b{bottom:603.359308pt;}
.y2e{bottom:605.111941pt;}
.y80{bottom:615.840776pt;}
.y3a{bottom:616.639904pt;}
.y2f{bottom:617.753039pt;}
.y7f{bottom:624.636495pt;}
.y39{bottom:629.760531pt;}
.y30{bottom:630.391488pt;}
.y7e{bottom:633.438970pt;}
.y7d{bottom:642.239163pt;}
.y31{bottom:643.032613pt;}
.y7c{bottom:651.037163pt;}
.y32{bottom:655.673711pt;}
.y7b{bottom:659.837357pt;}
.y33{bottom:668.312160pt;}
.y7a{bottom:668.639831pt;}
.y68{bottom:675.360189pt;}
.y79{bottom:677.440069pt;}
.y38{bottom:681.442844pt;}
.y67{bottom:684.158145pt;}
.y78{bottom:686.238025pt;}
.y37{bottom:691.040002pt;}
.y66{bottom:692.958360pt;}
.y1c{bottom:710.402444pt;}
.ya8{bottom:728.159244pt;}
.ya7{bottom:736.959459pt;}
.ya6{bottom:745.757437pt;}
.yaf{bottom:752.320546pt;}
.ya5{bottom:756.320841pt;}
.yae{bottom:761.118524pt;}
.ya4{bottom:766.877511pt;}
.yad{bottom:769.918740pt;}
.yaa{bottom:772.158106pt;}
.ya3{bottom:775.679986pt;}
.yac{bottom:778.718955pt;}
.ya9{bottom:780.958321pt;}
.ya2{bottom:786.079429pt;}
.yab{bottom:787.521430pt;}
.ya1{bottom:796.638336pt;}
.ya0{bottom:805.438552pt;}
.y9f{bottom:814.241026pt;}
.y9e{bottom:824.799934pt;}
.y9d{bottom:835.361100pt;}
.y9c{bottom:844.158640pt;}
.y9b{bottom:852.959755pt;}
.y9a{bottom:863.518223pt;}
.y99{bottom:874.080278pt;}
.y98{bottom:882.877796pt;}
.y97{bottom:891.678921pt;}
.y96{bottom:902.240976pt;}
.y1b{bottom:918.880348pt;}
.y7{bottom:937.438250pt;}
.y6{bottom:949.597490pt;}
.y5{bottom:962.240154pt;}
.y4{bottom:974.238703pt;}
.y3{bottom:983.678305pt;}
.yb0{bottom:987.521372pt;}
.y2{bottom:1004.955948pt;}
.y1{bottom:1027.523374pt;}
.hd{height:9.920564pt;}
.h3{height:16.373587pt;}
.h5{height:21.519434pt;}
.hc{height:21.632848pt;}
.h7{height:21.720685pt;}
.hf{height:22.137561pt;}
.h4{height:24.326609pt;}
.h2{height:26.620320pt;}
.h9{height:27.624929pt;}
.hb{height:27.734303pt;}
.ha{height:30.388100pt;}
.h8{height:30.508415pt;}
.h6{height:34.649753pt;}
.he{height:43.095070pt;}
.h1{height:56.971688pt;}
.h0{height:1056.000000pt;}
.w1{width:42.558735pt;}
.w2{width:44.481561pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:49.117151pt;}
.x32{left:56.320165pt;}
.xf{left:57.441260pt;}
.x9{left:58.880163pt;}
.xc{left:60.800191pt;}
.xd{left:61.919196pt;}
.xb{left:63.202051pt;}
.x2c{left:65.118930pt;}
.x26{left:68.320972pt;}
.xe{left:70.083420pt;}
.x2d{left:71.681139pt;}
.x10{left:86.077905pt;}
.x11{left:96.800532pt;}
.x33{left:111.038782pt;}
.x2{left:116.155872pt;}
.x5{left:144.321629pt;}
.x1{left:148.642646pt;}
.x4{left:162.882737pt;}
.x3{left:191.683763pt;}
.x27{left:241.440023pt;}
.x12{left:266.718062pt;}
.x34{left:268.962840pt;}
.x28{left:305.761593pt;}
.x29{left:307.360821pt;}
.x6{left:327.523592pt;}
.x7{left:344.327351pt;}
.x1c{left:416.327088pt;}
.x16{left:417.608125pt;}
.x14{left:421.451208pt;}
.x13{left:426.086543pt;}
.x1d{left:431.839696pt;}
.x15{left:434.409228pt;}
.x18{left:437.921261pt;}
.x22{left:445.279603pt;}
.x1e{left:455.999828pt;}
.x1b{left:460.169482pt;}
.x20{left:462.089686pt;}
.x2e{left:464.641714pt;}
.x8{left:475.843041pt;}
.x19{left:485.599324pt;}
.x24{left:495.201797pt;}
.x17{left:508.008096pt;}
.x21{left:548.490841pt;}
.x2f{left:576.960182pt;}
.x1f{left:620.638069pt;}
.x1a{left:624.162890pt;}
.x23{left:628.638518pt;}
.x2b{left:655.041374pt;}
.x2a{left:656.961789pt;}
.x25{left:677.441746pt;}
.x30{left:694.080829pt;}
.x31{left:711.360787pt;}
}




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