
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_77d48ba197e795a9ec6805e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5b93a74ad7cbaea041311d1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_f8f6fe271e128240f5dfea87.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_544ade352688c7b8103b9d6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_c5c98b4c38754bfde3b85f87.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_c77347a7bd6b53e088651217.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_8d3b8517fdeb61df5f930e68.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_bd6e15d041c13751dc2380ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.431400px;}
.lsf{letter-spacing:-0.414000px;}
.ls8{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.186600px;}
.ls1f{letter-spacing:-0.143400px;}
.lsa{letter-spacing:-0.115800px;}
.ls15{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.174240px;}
.ls23{letter-spacing:0.179280px;}
.lsc{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.190200px;}
.ls1d{letter-spacing:0.195120px;}
.lse{letter-spacing:0.288600px;}
.lsb{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.314640px;}
.ls11{letter-spacing:0.617760px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls20{letter-spacing:2.106720px;}
.ls10{letter-spacing:5.706720px;}
.ls1e{letter-spacing:8.094240px;}
.ls22{letter-spacing:12.186720px;}
.ls1a{letter-spacing:13.134240px;}
.ls12{letter-spacing:15.066720px;}
.lsd{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls21{letter-spacing:42.570720px;}
.ls17{letter-spacing:46.026720px;}
.ls4{letter-spacing:202.638240px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws5{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.362360px;}
.ws8{word-spacing:-13.319160px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.wsa{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.105360px;}
._17{margin-left:-9.757920px;}
._1f{margin-left:-7.710480px;}
._e{margin-left:-3.484800px;}
._7{margin-left:-2.373120px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._6{width:2.974560px;}
._8{width:4.609920px;}
._d{width:5.840160px;}
._c{width:7.171200px;}
._12{width:8.199360px;}
._b{width:9.292080px;}
._a{width:10.709040px;}
._9{width:11.712960px;}
._19{width:14.700960px;}
._f{width:15.716880px;}
._14{width:17.748720px;}
._10{width:18.851760px;}
._13{width:20.243760px;}
._22{width:23.742960px;}
._23{width:24.841920px;}
._24{width:25.901520px;}
._21{width:28.716720px;}
._20{width:29.898240px;}
._1d{width:36.679200px;}
._18{width:41.212800px;}
._25{width:42.630480px;}
._1c{width:46.427520px;}
._15{width:51.863760px;}
._1b{width:66.292080px;}
._16{width:81.200400px;}
._1a{width:107.674080px;}
._1e{width:113.111520px;}
._11{width:202.638240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y87{bottom:6.480000px;}
.y65{bottom:6.660000px;}
.y98{bottom:6.690000px;}
.yb0{bottom:7.380000px;}
.y90{bottom:27.540000px;}
.y89{bottom:27.720000px;}
.y8d{bottom:27.750000px;}
.yaf{bottom:28.440000px;}
.y6{bottom:61.236000px;}
.yc3{bottom:90.036000px;}
.yad{bottom:105.516000px;}
.y85{bottom:106.236000px;}
.y63{bottom:109.296000px;}
.y30{bottom:115.956000px;}
.yc2{bottom:125.856000px;}
.yac{bottom:126.576000px;}
.y84{bottom:127.296000px;}
.y62{bottom:130.356000px;}
.y2f{bottom:137.016000px;}
.yc1{bottom:146.916000px;}
.yab{bottom:147.636000px;}
.y83{bottom:148.356000px;}
.y61{bottom:151.410000px;}
.y2e{bottom:158.070000px;}
.yc0{bottom:167.970000px;}
.yaa{bottom:168.690000px;}
.y82{bottom:169.410000px;}
.y60{bottom:172.470000px;}
.y2d{bottom:179.130000px;}
.ybf{bottom:189.030000px;}
.ya9{bottom:189.750000px;}
.y81{bottom:190.470000px;}
.y5f{bottom:193.530000px;}
.y2c{bottom:200.190000px;}
.ybe{bottom:210.090000px;}
.ya8{bottom:210.810000px;}
.y80{bottom:211.530000px;}
.y5e{bottom:214.590000px;}
.y2b{bottom:221.250000px;}
.ybd{bottom:231.150000px;}
.ya7{bottom:231.870000px;}
.y7f{bottom:232.590000px;}
.y5d{bottom:235.650000px;}
.y2a{bottom:242.310000px;}
.y95{bottom:247.890000px;}
.ybc{bottom:252.210000px;}
.ya6{bottom:252.930000px;}
.y7e{bottom:253.650000px;}
.y5c{bottom:256.710000px;}
.y29{bottom:263.370000px;}
.ybb{bottom:273.270000px;}
.ya5{bottom:273.990000px;}
.y7d{bottom:274.710000px;}
.y5b{bottom:277.770000px;}
.y28{bottom:284.475000px;}
.y94{bottom:290.775000px;}
.yba{bottom:294.375000px;}
.ya4{bottom:295.095000px;}
.y7c{bottom:295.815000px;}
.y5a{bottom:298.875000px;}
.y27{bottom:305.535000px;}
.yb9{bottom:315.435000px;}
.ya3{bottom:316.155000px;}
.y7b{bottom:316.875000px;}
.y59{bottom:319.935000px;}
.y26{bottom:326.595000px;}
.y93{bottom:332.895000px;}
.yb8{bottom:336.495000px;}
.ya2{bottom:337.215000px;}
.y7a{bottom:337.935000px;}
.y58{bottom:340.995000px;}
.y25{bottom:347.655000px;}
.yb6{bottom:351.615000px;}
.ya1{bottom:358.275000px;}
.y79{bottom:358.995000px;}
.y57{bottom:362.055000px;}
.y24{bottom:368.715000px;}
.yb7{bottom:373.395000px;}
.y92{bottom:375.015000px;}
.ya0{bottom:379.335000px;}
.y78{bottom:380.055000px;}
.y56{bottom:383.115000px;}
.y23{bottom:389.775000px;}
.yb5{bottom:395.175000px;}
.y9f{bottom:400.395000px;}
.y77{bottom:401.115000px;}
.y55{bottom:404.175000px;}
.y22{bottom:410.835000px;}
.yb4{bottom:416.235000px;}
.y91{bottom:417.135000px;}
.y9e{bottom:421.455000px;}
.y76{bottom:422.175000px;}
.y54{bottom:425.235000px;}
.y21{bottom:431.895000px;}
.yb3{bottom:437.295000px;}
.y9d{bottom:442.515000px;}
.y75{bottom:443.235000px;}
.y53{bottom:446.295000px;}
.y20{bottom:452.955000px;}
.yb2{bottom:458.355000px;}
.y8f{bottom:459.255000px;}
.y9c{bottom:463.575000px;}
.y74{bottom:464.295000px;}
.y52{bottom:467.355000px;}
.y1f{bottom:474.015000px;}
.yae{bottom:480.315000px;}
.y9b{bottom:484.635000px;}
.y73{bottom:485.355000px;}
.y51{bottom:488.415000px;}
.y1e{bottom:495.075000px;}
.y8e{bottom:501.195000px;}
.yb1{bottom:502.095000px;}
.y9a{bottom:505.695000px;}
.y72{bottom:506.415000px;}
.y50{bottom:509.475000px;}
.y1d{bottom:516.135000px;}
.y99{bottom:526.755000px;}
.y71{bottom:527.475000px;}
.y4f{bottom:530.535000px;}
.y1c{bottom:537.195000px;}
.y8c{bottom:543.315000px;}
.y70{bottom:548.535000px;}
.y4e{bottom:551.595000px;}
.y1b{bottom:558.255000px;}
.y97{bottom:564.375000px;}
.y6f{bottom:569.625000px;}
.y4d{bottom:572.685000px;}
.y8b{bottom:585.465000px;}
.y6e{bottom:590.685000px;}
.y4c{bottom:593.745000px;}
.y1a{bottom:602.745000px;}
.y96{bottom:607.425000px;}
.y6d{bottom:611.745000px;}
.y4b{bottom:614.805000px;}
.y8a{bottom:627.585000px;}
.y19{bottom:632.625000px;}
.y6c{bottom:632.805000px;}
.y4a{bottom:635.865000px;}
.y18{bottom:653.685000px;}
.y6b{bottom:653.865000px;}
.y49{bottom:656.925000px;}
.y88{bottom:669.705000px;}
.y17{bottom:674.745000px;}
.y6a{bottom:674.925000px;}
.y48{bottom:677.985000px;}
.y69{bottom:690.045000px;}
.y16{bottom:695.805000px;}
.y47{bottom:699.045000px;}
.y68{bottom:711.825000px;}
.y86{bottom:712.725000px;}
.y15{bottom:716.865000px;}
.y46{bottom:720.105000px;}
.y67{bottom:732.885000px;}
.y14{bottom:737.925000px;}
.y45{bottom:741.165000px;}
.y66{bottom:753.945000px;}
.y13{bottom:758.985000px;}
.y44{bottom:762.225000px;}
.y64{bottom:775.725000px;}
.y12{bottom:780.045000px;}
.y43{bottom:783.285000px;}
.y11{bottom:801.105000px;}
.y42{bottom:804.345000px;}
.y10{bottom:822.165000px;}
.y41{bottom:825.405000px;}
.yf{bottom:843.225000px;}
.y40{bottom:846.465000px;}
.ye{bottom:864.330000px;}
.y3f{bottom:867.570000px;}
.yd{bottom:885.390000px;}
.y3e{bottom:888.630000px;}
.yc{bottom:908.610000px;}
.y3d{bottom:909.690000px;}
.y3c{bottom:930.570000px;}
.yb{bottom:934.890000px;}
.y3b{bottom:951.630000px;}
.ya{bottom:955.950000px;}
.y9{bottom:972.690000px;}
.y3a{bottom:993.750000px;}
.y8{bottom:995.010000px;}
.y39{bottom:1014.810000px;}
.y7{bottom:1020.210000px;}
.y38{bottom:1035.870000px;}
.y37{bottom:1056.930000px;}
.y5{bottom:1060.350000px;}
.y36{bottom:1077.990000px;}
.y4{bottom:1092.570000px;}
.y35{bottom:1099.050000px;}
.y34{bottom:1120.110000px;}
.y3{bottom:1124.610000px;}
.y33{bottom:1141.200000px;}
.y2{bottom:1156.860000px;}
.y32{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.hc{height:20.880000px;}
.hb{height:21.060000px;}
.h11{height:21.096000px;}
.h7{height:38.671172px;}
.hf{height:41.940000px;}
.h10{height:41.976000px;}
.hd{height:42.120000px;}
.he{height:42.156000px;}
.h13{height:42.840000px;}
.h12{height:48.088125px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:20.160000px;}
.wa{width:51.840000px;}
.w9{width:60.660000px;}
.w5{width:61.596000px;}
.we{width:66.996000px;}
.wf{width:70.200000px;}
.w1a{width:70.560000px;}
.w17{width:71.820000px;}
.w4{width:74.700000px;}
.w11{width:84.276000px;}
.w19{width:95.400000px;}
.wb{width:106.596000px;}
.w16{width:107.316000px;}
.wc{width:112.860000px;}
.w18{width:117.216000px;}
.w12{width:117.540000px;}
.w14{width:141.120000px;}
.w6{width:154.080000px;}
.w7{width:215.130000px;}
.wd{width:221.430000px;}
.w10{width:224.670000px;}
.w13{width:237.855000px;}
.w3{width:280.335000px;}
.w8{width:450.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x16{left:10.080000px;}
.x1a{left:14.400000px;}
.x26{left:16.560000px;}
.x13{left:18.000000px;}
.x1f{left:21.240000px;}
.x22{left:28.080000px;}
.x20{left:30.960000px;}
.x24{left:32.790000px;}
.xc{left:35.100000px;}
.x27{left:36.570000px;}
.x25{left:41.445000px;}
.x18{left:46.110000px;}
.x1e{left:47.700000px;}
.x23{left:49.710000px;}
.x1{left:53.999987px;}
.x1c{left:58.545000px;}
.xd{left:62.136000px;}
.x2a{left:74.339987px;}
.x28{left:80.999987px;}
.x29{left:94.535987px;}
.x2b{left:101.375987px;}
.x2{left:108.035987px;}
.xe{left:275.430000px;}
.x14{left:291.855000px;}
.x4{left:334.335000px;}
.xf{left:342.435000px;}
.x21{left:362.415000px;}
.x5{left:409.035000px;}
.x10{left:412.815000px;}
.x15{left:432.975000px;}
.x17{left:453.135000px;}
.x6{left:470.625000px;}
.x8{left:504.645000px;}
.x19{left:560.445000px;}
.x9{left:565.305000px;}
.xa{left:617.145000px;}
.x7{left:624.705000px;}
.x1b{left:632.265000px;}
.x11{left:637.485000px;}
.x12{left:721.770000px;}
.xb{left:723.750000px;}
.x1d{left:749.490000px;}
.x2c{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.383467pt;}
.lsf{letter-spacing:-0.368000pt;}
.ls8{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls1f{letter-spacing:-0.127467pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.154880pt;}
.ls23{letter-spacing:0.159360pt;}
.lsc{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.169067pt;}
.ls1d{letter-spacing:0.173440pt;}
.lse{letter-spacing:0.256533pt;}
.lsb{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.279680pt;}
.ls11{letter-spacing:0.549120pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls20{letter-spacing:1.872640pt;}
.ls10{letter-spacing:5.072640pt;}
.ls1e{letter-spacing:7.194880pt;}
.ls22{letter-spacing:10.832640pt;}
.ls1a{letter-spacing:11.674880pt;}
.ls12{letter-spacing:13.392640pt;}
.lsd{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls21{letter-spacing:37.840640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls4{letter-spacing:180.122880pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.877653pt;}
.ws8{word-spacing:-11.839253pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.wsa{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.426987pt;}
._17{margin-left:-8.673707pt;}
._1f{margin-left:-6.853760pt;}
._e{margin-left:-3.097600pt;}
._7{margin-left:-2.109440pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._6{width:2.644053pt;}
._8{width:4.097707pt;}
._d{width:5.191253pt;}
._c{width:6.374400pt;}
._12{width:7.288320pt;}
._b{width:8.259627pt;}
._a{width:9.519147pt;}
._9{width:10.411520pt;}
._19{width:13.067520pt;}
._f{width:13.970560pt;}
._14{width:15.776640pt;}
._10{width:16.757120pt;}
._13{width:17.994453pt;}
._22{width:21.104853pt;}
._23{width:22.081707pt;}
._24{width:23.023573pt;}
._21{width:25.525973pt;}
._20{width:26.576213pt;}
._1d{width:32.603733pt;}
._18{width:36.633600pt;}
._25{width:37.893760pt;}
._1c{width:41.268907pt;}
._15{width:46.101120pt;}
._1b{width:58.926293pt;}
._16{width:72.178133pt;}
._1a{width:95.710293pt;}
._1e{width:100.543573pt;}
._11{width:180.122880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:5.760000pt;}
.y65{bottom:5.920000pt;}
.y98{bottom:5.946667pt;}
.yb0{bottom:6.560000pt;}
.y90{bottom:24.480000pt;}
.y89{bottom:24.640000pt;}
.y8d{bottom:24.666667pt;}
.yaf{bottom:25.280000pt;}
.y6{bottom:54.432000pt;}
.yc3{bottom:80.032000pt;}
.yad{bottom:93.792000pt;}
.y85{bottom:94.432000pt;}
.y63{bottom:97.152000pt;}
.y30{bottom:103.072000pt;}
.yc2{bottom:111.872000pt;}
.yac{bottom:112.512000pt;}
.y84{bottom:113.152000pt;}
.y62{bottom:115.872000pt;}
.y2f{bottom:121.792000pt;}
.yc1{bottom:130.592000pt;}
.yab{bottom:131.232000pt;}
.y83{bottom:131.872000pt;}
.y61{bottom:134.586667pt;}
.y2e{bottom:140.506667pt;}
.yc0{bottom:149.306667pt;}
.yaa{bottom:149.946667pt;}
.y82{bottom:150.586667pt;}
.y60{bottom:153.306667pt;}
.y2d{bottom:159.226667pt;}
.ybf{bottom:168.026667pt;}
.ya9{bottom:168.666667pt;}
.y81{bottom:169.306667pt;}
.y5f{bottom:172.026667pt;}
.y2c{bottom:177.946667pt;}
.ybe{bottom:186.746667pt;}
.ya8{bottom:187.386667pt;}
.y80{bottom:188.026667pt;}
.y5e{bottom:190.746667pt;}
.y2b{bottom:196.666667pt;}
.ybd{bottom:205.466667pt;}
.ya7{bottom:206.106667pt;}
.y7f{bottom:206.746667pt;}
.y5d{bottom:209.466667pt;}
.y2a{bottom:215.386667pt;}
.y95{bottom:220.346667pt;}
.ybc{bottom:224.186667pt;}
.ya6{bottom:224.826667pt;}
.y7e{bottom:225.466667pt;}
.y5c{bottom:228.186667pt;}
.y29{bottom:234.106667pt;}
.ybb{bottom:242.906667pt;}
.ya5{bottom:243.546667pt;}
.y7d{bottom:244.186667pt;}
.y5b{bottom:246.906667pt;}
.y28{bottom:252.866667pt;}
.y94{bottom:258.466667pt;}
.yba{bottom:261.666667pt;}
.ya4{bottom:262.306667pt;}
.y7c{bottom:262.946667pt;}
.y5a{bottom:265.666667pt;}
.y27{bottom:271.586667pt;}
.yb9{bottom:280.386667pt;}
.ya3{bottom:281.026667pt;}
.y7b{bottom:281.666667pt;}
.y59{bottom:284.386667pt;}
.y26{bottom:290.306667pt;}
.y93{bottom:295.906667pt;}
.yb8{bottom:299.106667pt;}
.ya2{bottom:299.746667pt;}
.y7a{bottom:300.386667pt;}
.y58{bottom:303.106667pt;}
.y25{bottom:309.026667pt;}
.yb6{bottom:312.546667pt;}
.ya1{bottom:318.466667pt;}
.y79{bottom:319.106667pt;}
.y57{bottom:321.826667pt;}
.y24{bottom:327.746667pt;}
.yb7{bottom:331.906667pt;}
.y92{bottom:333.346667pt;}
.ya0{bottom:337.186667pt;}
.y78{bottom:337.826667pt;}
.y56{bottom:340.546667pt;}
.y23{bottom:346.466667pt;}
.yb5{bottom:351.266667pt;}
.y9f{bottom:355.906667pt;}
.y77{bottom:356.546667pt;}
.y55{bottom:359.266667pt;}
.y22{bottom:365.186667pt;}
.yb4{bottom:369.986667pt;}
.y91{bottom:370.786667pt;}
.y9e{bottom:374.626667pt;}
.y76{bottom:375.266667pt;}
.y54{bottom:377.986667pt;}
.y21{bottom:383.906667pt;}
.yb3{bottom:388.706667pt;}
.y9d{bottom:393.346667pt;}
.y75{bottom:393.986667pt;}
.y53{bottom:396.706667pt;}
.y20{bottom:402.626667pt;}
.yb2{bottom:407.426667pt;}
.y8f{bottom:408.226667pt;}
.y9c{bottom:412.066667pt;}
.y74{bottom:412.706667pt;}
.y52{bottom:415.426667pt;}
.y1f{bottom:421.346667pt;}
.yae{bottom:426.946667pt;}
.y9b{bottom:430.786667pt;}
.y73{bottom:431.426667pt;}
.y51{bottom:434.146667pt;}
.y1e{bottom:440.066667pt;}
.y8e{bottom:445.506667pt;}
.yb1{bottom:446.306667pt;}
.y9a{bottom:449.506667pt;}
.y72{bottom:450.146667pt;}
.y50{bottom:452.866667pt;}
.y1d{bottom:458.786667pt;}
.y99{bottom:468.226667pt;}
.y71{bottom:468.866667pt;}
.y4f{bottom:471.586667pt;}
.y1c{bottom:477.506667pt;}
.y8c{bottom:482.946667pt;}
.y70{bottom:487.586667pt;}
.y4e{bottom:490.306667pt;}
.y1b{bottom:496.226667pt;}
.y97{bottom:501.666667pt;}
.y6f{bottom:506.333333pt;}
.y4d{bottom:509.053333pt;}
.y8b{bottom:520.413333pt;}
.y6e{bottom:525.053333pt;}
.y4c{bottom:527.773333pt;}
.y1a{bottom:535.773333pt;}
.y96{bottom:539.933333pt;}
.y6d{bottom:543.773333pt;}
.y4b{bottom:546.493333pt;}
.y8a{bottom:557.853333pt;}
.y19{bottom:562.333333pt;}
.y6c{bottom:562.493333pt;}
.y4a{bottom:565.213333pt;}
.y18{bottom:581.053333pt;}
.y6b{bottom:581.213333pt;}
.y49{bottom:583.933333pt;}
.y88{bottom:595.293333pt;}
.y17{bottom:599.773333pt;}
.y6a{bottom:599.933333pt;}
.y48{bottom:602.653333pt;}
.y69{bottom:613.373333pt;}
.y16{bottom:618.493333pt;}
.y47{bottom:621.373333pt;}
.y68{bottom:632.733333pt;}
.y86{bottom:633.533333pt;}
.y15{bottom:637.213333pt;}
.y46{bottom:640.093333pt;}
.y67{bottom:651.453333pt;}
.y14{bottom:655.933333pt;}
.y45{bottom:658.813333pt;}
.y66{bottom:670.173333pt;}
.y13{bottom:674.653333pt;}
.y44{bottom:677.533333pt;}
.y64{bottom:689.533333pt;}
.y12{bottom:693.373333pt;}
.y43{bottom:696.253333pt;}
.y11{bottom:712.093333pt;}
.y42{bottom:714.973333pt;}
.y10{bottom:730.813333pt;}
.y41{bottom:733.693333pt;}
.yf{bottom:749.533333pt;}
.y40{bottom:752.413333pt;}
.ye{bottom:768.293333pt;}
.y3f{bottom:771.173333pt;}
.yd{bottom:787.013333pt;}
.y3e{bottom:789.893333pt;}
.yc{bottom:807.653333pt;}
.y3d{bottom:808.613333pt;}
.y3c{bottom:827.173333pt;}
.yb{bottom:831.013333pt;}
.y3b{bottom:845.893333pt;}
.ya{bottom:849.733333pt;}
.y9{bottom:864.613333pt;}
.y3a{bottom:883.333333pt;}
.y8{bottom:884.453333pt;}
.y39{bottom:902.053333pt;}
.y7{bottom:906.853333pt;}
.y38{bottom:920.773333pt;}
.y37{bottom:939.493333pt;}
.y5{bottom:942.533333pt;}
.y36{bottom:958.213333pt;}
.y4{bottom:971.173333pt;}
.y35{bottom:976.933333pt;}
.y34{bottom:995.653333pt;}
.y3{bottom:999.653333pt;}
.y33{bottom:1014.400000pt;}
.y2{bottom:1028.320000pt;}
.y32{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.hc{height:18.560000pt;}
.hb{height:18.720000pt;}
.h11{height:18.752000pt;}
.h7{height:34.374375pt;}
.hf{height:37.280000pt;}
.h10{height:37.312000pt;}
.hd{height:37.440000pt;}
.he{height:37.472000pt;}
.h13{height:38.080000pt;}
.h12{height:42.745000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:17.920000pt;}
.wa{width:46.080000pt;}
.w9{width:53.920000pt;}
.w5{width:54.752000pt;}
.we{width:59.552000pt;}
.wf{width:62.400000pt;}
.w1a{width:62.720000pt;}
.w17{width:63.840000pt;}
.w4{width:66.400000pt;}
.w11{width:74.912000pt;}
.w19{width:84.800000pt;}
.wb{width:94.752000pt;}
.w16{width:95.392000pt;}
.wc{width:100.320000pt;}
.w18{width:104.192000pt;}
.w12{width:104.480000pt;}
.w14{width:125.440000pt;}
.w6{width:136.960000pt;}
.w7{width:191.226667pt;}
.wd{width:196.826667pt;}
.w10{width:199.706667pt;}
.w13{width:211.426667pt;}
.w3{width:249.186667pt;}
.w8{width:400.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x16{left:8.960000pt;}
.x1a{left:12.800000pt;}
.x26{left:14.720000pt;}
.x13{left:16.000000pt;}
.x1f{left:18.880000pt;}
.x22{left:24.960000pt;}
.x20{left:27.520000pt;}
.x24{left:29.146667pt;}
.xc{left:31.200000pt;}
.x27{left:32.506667pt;}
.x25{left:36.840000pt;}
.x18{left:40.986667pt;}
.x1e{left:42.400000pt;}
.x23{left:44.186667pt;}
.x1{left:47.999988pt;}
.x1c{left:52.040000pt;}
.xd{left:55.232000pt;}
.x2a{left:66.079988pt;}
.x28{left:71.999988pt;}
.x29{left:84.031988pt;}
.x2b{left:90.111988pt;}
.x2{left:96.031988pt;}
.xe{left:244.826667pt;}
.x14{left:259.426667pt;}
.x4{left:297.186667pt;}
.xf{left:304.386667pt;}
.x21{left:322.146667pt;}
.x5{left:363.586667pt;}
.x10{left:366.946667pt;}
.x15{left:384.866667pt;}
.x17{left:402.786667pt;}
.x6{left:418.333333pt;}
.x8{left:448.573333pt;}
.x19{left:498.173333pt;}
.x9{left:502.493333pt;}
.xa{left:548.573333pt;}
.x7{left:555.293333pt;}
.x1b{left:562.013333pt;}
.x11{left:566.653333pt;}
.x12{left:641.573333pt;}
.xb{left:643.333333pt;}
.x1d{left:666.213333pt;}
.x2c{left:746.053322pt;}
}




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