
    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_c5de2079acbfe6ea00bacd78.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_7b844b2c37b084dae46a3c76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_4a74784a693695308a5c44b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961426;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_c5d05b55f0c1a6cd3387fe19.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_ff80654a56f59d234de72525.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_16d498784b344464da70ee31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_a7bf91810c490903a8bb348e.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_30cb44d1954cb9f660570b0b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_66290a9161b6e5c4448759c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694336;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:ffa;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.691406;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-47.520000px;}
.v3{vertical-align:-35.280000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:47.520000px;}
.ls1c{letter-spacing:-1.044000px;}
.ls1f{letter-spacing:-0.924000px;}
.ls1e{letter-spacing:-0.882000px;}
.ls20{letter-spacing:-0.654000px;}
.ls22{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.162600px;}
.ls18{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.006720px;}
.lsd{letter-spacing:0.042624px;}
.ls21{letter-spacing:0.064200px;}
.ls1b{letter-spacing:0.079800px;}
.ls19{letter-spacing:0.106800px;}
.ls24{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.184032px;}
.ls23{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.261600px;}
.lsa{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.306600px;}
.lsb{letter-spacing:0.325200px;}
.ls4{letter-spacing:0.333600px;}
.ls15{letter-spacing:0.345600px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.396000px;}
.lsf{letter-spacing:0.720000px;}
.ls3{letter-spacing:4.860000px;}
.ls10{letter-spacing:10.260000px;}
.ls8{letter-spacing:13.140000px;}
.ls6{letter-spacing:13.500000px;}
.ls11{letter-spacing:18.180000px;}
.ls5{letter-spacing:18.540000px;}
.ls0{letter-spacing:21.420000px;}
.ls7{letter-spacing:34.020000px;}
.lse{letter-spacing:39.780000px;}
.ls9{letter-spacing:41.940000px;}
.ls17{letter-spacing:165.549600px;}
.ls16{letter-spacing:165.600000px;}
.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:-90.036000px;}
.ws1{word-spacing:-60.300000px;}
.ws3{word-spacing:-60.273600px;}
.ws2{word-spacing:-60.246600px;}
.ws4{word-spacing:-60.046800px;}
.ws6{word-spacing:-60.019800px;}
.ws5{word-spacing:-59.580000px;}
.ws17{word-spacing:-54.216000px;}
.ws7{word-spacing:-54.000000px;}
.ws8{word-spacing:-48.420000px;}
.wsd{word-spacing:-48.385200px;}
.wse{word-spacing:-48.384000px;}
.ws10{word-spacing:-48.357600px;}
.ws12{word-spacing:-48.124200px;}
.ws15{word-spacing:-48.096000px;}
.ws16{word-spacing:-48.060000px;}
.wsb{word-spacing:-47.897400px;}
.ws9{word-spacing:-47.700000px;}
.ws14{word-spacing:-47.664000px;}
.ws11{word-spacing:-47.406000px;}
.wsc{word-spacing:-47.178000px;}
.wsf{word-spacing:-47.172000px;}
.wsa{word-spacing:-47.016000px;}
.ws18{word-spacing:-36.000000px;}
.ws13{word-spacing:-32.076000px;}
.ws19{word-spacing:-30.060000px;}
.ws1b{word-spacing:-27.360000px;}
.ws1a{word-spacing:-27.000000px;}
.ws1c{word-spacing:0.000000px;}
._3a{margin-left:-35.532000px;}
._39{margin-left:-34.218000px;}
._38{margin-left:-26.056800px;}
._37{margin-left:-23.770560px;}
._4{margin-left:-17.421840px;}
._3b{margin-left:-15.995760px;}
._18{margin-left:-14.930640px;}
._f{margin-left:-13.358880px;}
._34{margin-left:-11.342160px;}
._d{margin-left:-9.662160px;}
._15{margin-left:-7.587360px;}
._17{margin-left:-6.307680px;}
._a{margin-left:-4.920480px;}
._3{margin-left:-3.155832px;}
._11{margin-left:-1.830480px;}
._1{width:1.198800px;}
._23{width:2.199840px;}
._6{width:4.335120px;}
._5{width:5.537040px;}
._36{width:6.565920px;}
._30{width:7.952256px;}
._31{width:9.703248px;}
._16{width:11.494080px;}
._c{width:12.587040px;}
._b{width:13.985520px;}
._12{width:15.073200px;}
._10{width:16.633440px;}
._7{width:18.697200px;}
._0{width:20.734512px;}
._2{width:22.020960px;}
._1e{width:26.750640px;}
._1d{width:27.848160px;}
._1f{width:28.903920px;}
._14{width:33.265440px;}
._13{width:35.194560px;}
._20{width:37.110480px;}
._28{width:38.236320px;}
._27{width:39.308160px;}
._1c{width:41.040240px;}
._1b{width:42.462480px;}
._21{width:44.452080px;}
._2e{width:46.033200px;}
._29{width:56.682720px;}
._2a{width:57.763680px;}
._2c{width:65.275680px;}
._22{width:66.820080px;}
._e{width:68.017200px;}
._2b{width:78.852240px;}
._8{width:82.725360px;}
._9{width:83.858640px;}
._2f{width:84.884952px;}
._24{width:89.495280px;}
._25{width:90.563760px;}
._26{width:91.637280px;}
._19{width:105.506712px;}
._1a{width:106.805040px;}
._2d{width:107.842560px;}
._32{width:118.568160px;}
._33{width:119.658240px;}
._35{width:120.720240px;}
.fc4{color:transparent;}
.fc1{color:rgb(255,255,204);}
.fc3{color:rgb(242,242,242);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:95.760000px;}
.fsf{font-size:108.000000px;}
.fse{font-size:120.240000px;}
.fs8{font-size:128.304000px;}
.fsd{font-size:144.000000px;}
.fs12{font-size:144.144000px;}
.fs11{font-size:167.760000px;}
.fs5{font-size:192.240000px;}
.fs6{font-size:192.384000px;}
.fs4{font-size:216.000000px;}
.fs7{font-size:216.144000px;}
.fs1{font-size:239.760000px;}
.fsb{font-size:246.240000px;}
.fs10{font-size:264.240000px;}
.fs14{font-size:264.384000px;}
.fs2{font-size:288.000000px;}
.fs3{font-size:329.760000px;}
.fs9{font-size:360.000000px;}
.fs0{font-size:360.144000px;}
.fsc{font-size:455.363430px;}
.fsa{font-size:473.760000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:71.712000px;}
.y44{bottom:73.188000px;}
.y3e{bottom:97.848000px;}
.y3d{bottom:155.490000px;}
.y3c{bottom:213.090000px;}
.y66{bottom:243.720000px;}
.y3b{bottom:270.690000px;}
.y6b{bottom:290.085000px;}
.y3a{bottom:328.290000px;}
.y65{bottom:358.920000px;}
.y6a{bottom:376.485000px;}
.y39{bottom:385.890000px;}
.y38{bottom:443.490000px;}
.y69{bottom:462.885000px;}
.y47{bottom:463.860000px;}
.y37{bottom:501.090000px;}
.y46{bottom:501.300000px;}
.y45{bottom:544.500000px;}
.y68{bottom:549.285000px;}
.y36{bottom:560.130000px;}
.y64{bottom:568.830000px;}
.y35{bottom:624.930000px;}
.y67{bottom:635.685000px;}
.y63{bottom:657.390000px;}
.y34{bottom:688.290000px;}
.y62{bottom:745.770000px;}
.y33{bottom:745.890000px;}
.y49{bottom:784.950000px;}
.y32{bottom:803.490000px;}
.y48{bottom:819.510000px;}
.y61{bottom:834.150000px;}
.y31{bottom:861.090000px;}
.y30{bottom:918.690000px;}
.y60{bottom:922.710000px;}
.y2f{bottom:976.320000px;}
.y5f{bottom:1011.135000px;}
.y2e{bottom:1033.920000px;}
.y5e{bottom:1089.105000px;}
.y2d{bottom:1091.520000px;}
.y2c{bottom:1149.120000px;}
.y2b{bottom:1206.720000px;}
.y2a{bottom:1264.320000px;}
.y4c{bottom:1276.050000px;}
.y29{bottom:1321.920000px;}
.y4b{bottom:1348.050000px;}
.y28{bottom:1379.520000px;}
.y4a{bottom:1421.490000px;}
.y27{bottom:1437.120000px;}
.y26{bottom:1494.720000px;}
.y9{bottom:1546.740000px;}
.y25{bottom:1552.320000px;}
.y24{bottom:1609.920000px;}
.y23{bottom:1667.520000px;}
.y22{bottom:1725.120000px;}
.y21{bottom:1784.160000px;}
.y3f{bottom:1830.705000px;}
.y20{bottom:1847.550000px;}
.y1f{bottom:1905.150000px;}
.y1e{bottom:1962.750000px;}
.y1d{bottom:2020.350000px;}
.y1c{bottom:2077.950000px;}
.y1b{bottom:2136.990000px;}
.y5d{bottom:2173.065000px;}
.y1a{bottom:2200.350000px;}
.y5c{bottom:2230.665000px;}
.y19{bottom:2257.950000px;}
.y5b{bottom:2288.265000px;}
.y18{bottom:2315.550000px;}
.y17{bottom:2373.150000px;}
.y16{bottom:2430.750000px;}
.y5a{bottom:2463.690000px;}
.y15{bottom:2488.350000px;}
.y59{bottom:2521.290000px;}
.y14{bottom:2545.950000px;}
.y58{bottom:2578.890000px;}
.y13{bottom:2603.550000px;}
.y57{bottom:2636.490000px;}
.y12{bottom:2661.195000px;}
.y7{bottom:2673.435000px;}
.y56{bottom:2694.090000px;}
.y11{bottom:2718.795000px;}
.y6{bottom:2745.435000px;}
.y55{bottom:2751.690000px;}
.y10{bottom:2776.395000px;}
.y54{bottom:2809.290000px;}
.y5{bottom:2817.435000px;}
.yf{bottom:2833.995000px;}
.y53{bottom:2866.890000px;}
.y4{bottom:2889.435000px;}
.ye{bottom:2891.595000px;}
.y52{bottom:2924.490000px;}
.yd{bottom:2949.195000px;}
.y3{bottom:2961.435000px;}
.y51{bottom:2982.135000px;}
.yc{bottom:3006.795000px;}
.y2{bottom:3033.435000px;}
.y50{bottom:3039.735000px;}
.yb{bottom:3065.835000px;}
.y4f{bottom:3097.335000px;}
.y1{bottom:3112.455000px;}
.y4e{bottom:3154.935000px;}
.y8{bottom:3234.030000px;}
.ya{bottom:3238.230000px;}
.y4d{bottom:3241.005000px;}
.y43{bottom:3350.805000px;}
.y42{bottom:3429.465000px;}
.y41{bottom:3536.745000px;}
.y40{bottom:3678.945000px;}
.h12{height:111.006981px;}
.h11{height:123.587773px;}
.h15{height:141.328125px;}
.h16{height:141.469453px;}
.hf{height:145.125000px;}
.h10{height:148.009309px;}
.h14{height:169.070625px;}
.hd{height:180.952734px;}
.h7{height:188.673047px;}
.h9{height:188.814375px;}
.h8{height:193.741875px;}
.h4{height:211.640625px;}
.h6{height:217.687500px;}
.ha{height:217.832625px;}
.h3{height:235.311328px;}
.h5{height:242.328516px;}
.h17{height:259.478438px;}
.hb{height:264.550781px;}
.h13{height:266.304375px;}
.he{height:334.629864px;}
.h2{height:362.957625px;}
.hc{height:477.461250px;}
.h1{height:3827.250000px;}
.h0{height:3827.340000px;}
.w0{width:6048.000000px;}
.x0{left:0.000000px;}
.x1{left:104.544000px;}
.xe{left:144.108000px;}
.x15{left:255.495000px;}
.x14{left:308.595000px;}
.x7{left:529.560000px;}
.x9{left:815.040000px;}
.x4{left:957.630000px;}
.x3{left:970.275000px;}
.x13{left:1441.950000px;}
.x12{left:1526.580000px;}
.x8{left:1692.030000px;}
.x18{left:2211.765000px;}
.xc{left:2291.040000px;}
.xb{left:2879.970000px;}
.xa{left:2990.055000px;}
.x6{left:3264.405000px;}
.xd{left:3494.490000px;}
.x17{left:3504.960000px;}
.x16{left:3558.060000px;}
.x11{left:3587.475000px;}
.x10{left:3634.845000px;}
.xf{left:3934.650000px;}
.x5{left:4812.450000px;}
.x2{left:5123.910000px;}
@media print{
.v1{vertical-align:-42.240000pt;}
.v3{vertical-align:-31.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:42.240000pt;}
.ls1c{letter-spacing:-0.928000pt;}
.ls1f{letter-spacing:-0.821333pt;}
.ls1e{letter-spacing:-0.784000pt;}
.ls20{letter-spacing:-0.581333pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.144533pt;}
.ls18{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.005973pt;}
.lsd{letter-spacing:0.037888pt;}
.ls21{letter-spacing:0.057067pt;}
.ls1b{letter-spacing:0.070933pt;}
.ls19{letter-spacing:0.094933pt;}
.ls24{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.163584pt;}
.ls23{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.232533pt;}
.lsa{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.272533pt;}
.lsb{letter-spacing:0.289067pt;}
.ls4{letter-spacing:0.296533pt;}
.ls15{letter-spacing:0.307200pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.352000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls3{letter-spacing:4.320000pt;}
.ls10{letter-spacing:9.120000pt;}
.ls8{letter-spacing:11.680000pt;}
.ls6{letter-spacing:12.000000pt;}
.ls11{letter-spacing:16.160000pt;}
.ls5{letter-spacing:16.480000pt;}
.ls0{letter-spacing:19.040000pt;}
.ls7{letter-spacing:30.240000pt;}
.lse{letter-spacing:35.360000pt;}
.ls9{letter-spacing:37.280000pt;}
.ls17{letter-spacing:147.155200pt;}
.ls16{letter-spacing:147.200000pt;}
.ws0{word-spacing:-80.032000pt;}
.ws1{word-spacing:-53.600000pt;}
.ws3{word-spacing:-53.576533pt;}
.ws2{word-spacing:-53.552533pt;}
.ws4{word-spacing:-53.374933pt;}
.ws6{word-spacing:-53.350933pt;}
.ws5{word-spacing:-52.960000pt;}
.ws17{word-spacing:-48.192000pt;}
.ws7{word-spacing:-48.000000pt;}
.ws8{word-spacing:-43.040000pt;}
.wsd{word-spacing:-43.009067pt;}
.wse{word-spacing:-43.008000pt;}
.ws10{word-spacing:-42.984533pt;}
.ws12{word-spacing:-42.777067pt;}
.ws15{word-spacing:-42.752000pt;}
.ws16{word-spacing:-42.720000pt;}
.wsb{word-spacing:-42.575467pt;}
.ws9{word-spacing:-42.400000pt;}
.ws14{word-spacing:-42.368000pt;}
.ws11{word-spacing:-42.138667pt;}
.wsc{word-spacing:-41.936000pt;}
.wsf{word-spacing:-41.930667pt;}
.wsa{word-spacing:-41.792000pt;}
.ws18{word-spacing:-32.000000pt;}
.ws13{word-spacing:-28.512000pt;}
.ws19{word-spacing:-26.720000pt;}
.ws1b{word-spacing:-24.320000pt;}
.ws1a{word-spacing:-24.000000pt;}
.ws1c{word-spacing:0.000000pt;}
._3a{margin-left:-31.584000pt;}
._39{margin-left:-30.416000pt;}
._38{margin-left:-23.161600pt;}
._37{margin-left:-21.129387pt;}
._4{margin-left:-15.486080pt;}
._3b{margin-left:-14.218453pt;}
._18{margin-left:-13.271680pt;}
._f{margin-left:-11.874560pt;}
._34{margin-left:-10.081920pt;}
._d{margin-left:-8.588587pt;}
._15{margin-left:-6.744320pt;}
._17{margin-left:-5.606827pt;}
._a{margin-left:-4.373760pt;}
._3{margin-left:-2.805184pt;}
._11{margin-left:-1.627093pt;}
._1{width:1.065600pt;}
._23{width:1.955413pt;}
._6{width:3.853440pt;}
._5{width:4.921813pt;}
._36{width:5.836373pt;}
._30{width:7.068672pt;}
._31{width:8.625109pt;}
._16{width:10.216960pt;}
._c{width:11.188480pt;}
._b{width:12.431573pt;}
._12{width:13.398400pt;}
._10{width:14.785280pt;}
._7{width:16.619733pt;}
._0{width:18.430677pt;}
._2{width:19.574187pt;}
._1e{width:23.778347pt;}
._1d{width:24.753920pt;}
._1f{width:25.692373pt;}
._14{width:29.569280pt;}
._13{width:31.284053pt;}
._20{width:32.987093pt;}
._28{width:33.987840pt;}
._27{width:34.940587pt;}
._1c{width:36.480213pt;}
._1b{width:37.744427pt;}
._21{width:39.512960pt;}
._2e{width:40.918400pt;}
._29{width:50.384640pt;}
._2a{width:51.345493pt;}
._2c{width:58.022827pt;}
._22{width:59.395627pt;}
._e{width:60.459733pt;}
._2b{width:70.090880pt;}
._8{width:73.533653pt;}
._9{width:74.541013pt;}
._2f{width:75.453291pt;}
._24{width:79.551360pt;}
._25{width:80.501120pt;}
._26{width:81.455360pt;}
._19{width:93.783744pt;}
._1a{width:94.937813pt;}
._2d{width:95.860053pt;}
._32{width:105.393920pt;}
._33{width:106.362880pt;}
._35{width:107.306880pt;}
.fs13{font-size:85.120000pt;}
.fsf{font-size:96.000000pt;}
.fse{font-size:106.880000pt;}
.fs8{font-size:114.048000pt;}
.fsd{font-size:128.000000pt;}
.fs12{font-size:128.128000pt;}
.fs11{font-size:149.120000pt;}
.fs5{font-size:170.880000pt;}
.fs6{font-size:171.008000pt;}
.fs4{font-size:192.000000pt;}
.fs7{font-size:192.128000pt;}
.fs1{font-size:213.120000pt;}
.fsb{font-size:218.880000pt;}
.fs10{font-size:234.880000pt;}
.fs14{font-size:235.008000pt;}
.fs2{font-size:256.000000pt;}
.fs3{font-size:293.120000pt;}
.fs9{font-size:320.000000pt;}
.fs0{font-size:320.128000pt;}
.fsc{font-size:404.767493pt;}
.fsa{font-size:421.120000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:63.744000pt;}
.y44{bottom:65.056000pt;}
.y3e{bottom:86.976000pt;}
.y3d{bottom:138.213333pt;}
.y3c{bottom:189.413333pt;}
.y66{bottom:216.640000pt;}
.y3b{bottom:240.613333pt;}
.y6b{bottom:257.853333pt;}
.y3a{bottom:291.813333pt;}
.y65{bottom:319.040000pt;}
.y6a{bottom:334.653333pt;}
.y39{bottom:343.013333pt;}
.y38{bottom:394.213333pt;}
.y69{bottom:411.453333pt;}
.y47{bottom:412.320000pt;}
.y37{bottom:445.413333pt;}
.y46{bottom:445.600000pt;}
.y45{bottom:484.000000pt;}
.y68{bottom:488.253333pt;}
.y36{bottom:497.893333pt;}
.y64{bottom:505.626667pt;}
.y35{bottom:555.493333pt;}
.y67{bottom:565.053333pt;}
.y63{bottom:584.346667pt;}
.y34{bottom:611.813333pt;}
.y62{bottom:662.906667pt;}
.y33{bottom:663.013333pt;}
.y49{bottom:697.733333pt;}
.y32{bottom:714.213333pt;}
.y48{bottom:728.453333pt;}
.y61{bottom:741.466667pt;}
.y31{bottom:765.413333pt;}
.y30{bottom:816.613333pt;}
.y60{bottom:820.186667pt;}
.y2f{bottom:867.840000pt;}
.y5f{bottom:898.786667pt;}
.y2e{bottom:919.040000pt;}
.y5e{bottom:968.093333pt;}
.y2d{bottom:970.240000pt;}
.y2c{bottom:1021.440000pt;}
.y2b{bottom:1072.640000pt;}
.y2a{bottom:1123.840000pt;}
.y4c{bottom:1134.266667pt;}
.y29{bottom:1175.040000pt;}
.y4b{bottom:1198.266667pt;}
.y28{bottom:1226.240000pt;}
.y4a{bottom:1263.546667pt;}
.y27{bottom:1277.440000pt;}
.y26{bottom:1328.640000pt;}
.y9{bottom:1374.880000pt;}
.y25{bottom:1379.840000pt;}
.y24{bottom:1431.040000pt;}
.y23{bottom:1482.240000pt;}
.y22{bottom:1533.440000pt;}
.y21{bottom:1585.920000pt;}
.y3f{bottom:1627.293333pt;}
.y20{bottom:1642.266667pt;}
.y1f{bottom:1693.466667pt;}
.y1e{bottom:1744.666667pt;}
.y1d{bottom:1795.866667pt;}
.y1c{bottom:1847.066667pt;}
.y1b{bottom:1899.546667pt;}
.y5d{bottom:1931.613333pt;}
.y1a{bottom:1955.866667pt;}
.y5c{bottom:1982.813333pt;}
.y19{bottom:2007.066667pt;}
.y5b{bottom:2034.013333pt;}
.y18{bottom:2058.266667pt;}
.y17{bottom:2109.466667pt;}
.y16{bottom:2160.666667pt;}
.y5a{bottom:2189.946667pt;}
.y15{bottom:2211.866667pt;}
.y59{bottom:2241.146667pt;}
.y14{bottom:2263.066667pt;}
.y58{bottom:2292.346667pt;}
.y13{bottom:2314.266667pt;}
.y57{bottom:2343.546667pt;}
.y12{bottom:2365.506667pt;}
.y7{bottom:2376.386667pt;}
.y56{bottom:2394.746667pt;}
.y11{bottom:2416.706667pt;}
.y6{bottom:2440.386667pt;}
.y55{bottom:2445.946667pt;}
.y10{bottom:2467.906667pt;}
.y54{bottom:2497.146667pt;}
.y5{bottom:2504.386667pt;}
.yf{bottom:2519.106667pt;}
.y53{bottom:2548.346667pt;}
.y4{bottom:2568.386667pt;}
.ye{bottom:2570.306667pt;}
.y52{bottom:2599.546667pt;}
.yd{bottom:2621.506667pt;}
.y3{bottom:2632.386667pt;}
.y51{bottom:2650.786667pt;}
.yc{bottom:2672.706667pt;}
.y2{bottom:2696.386667pt;}
.y50{bottom:2701.986667pt;}
.yb{bottom:2725.186667pt;}
.y4f{bottom:2753.186667pt;}
.y1{bottom:2766.626667pt;}
.y4e{bottom:2804.386667pt;}
.y8{bottom:2874.693333pt;}
.ya{bottom:2878.426667pt;}
.y4d{bottom:2880.893333pt;}
.y43{bottom:2978.493333pt;}
.y42{bottom:3048.413333pt;}
.y41{bottom:3143.773333pt;}
.y40{bottom:3270.173333pt;}
.h12{height:98.672872pt;}
.h11{height:109.855798pt;}
.h15{height:125.625000pt;}
.h16{height:125.750625pt;}
.hf{height:129.000000pt;}
.h10{height:131.563830pt;}
.h14{height:150.285000pt;}
.hd{height:160.846875pt;}
.h7{height:167.709375pt;}
.h9{height:167.835000pt;}
.h8{height:172.215000pt;}
.h4{height:188.125000pt;}
.h6{height:193.500000pt;}
.ha{height:193.629000pt;}
.h3{height:209.165625pt;}
.h5{height:215.403125pt;}
.h17{height:230.647500pt;}
.hb{height:235.156250pt;}
.h13{height:236.715000pt;}
.he{height:297.448768pt;}
.h2{height:322.629000pt;}
.hc{height:424.410000pt;}
.h1{height:3402.000000pt;}
.h0{height:3402.080000pt;}
.w0{width:5376.000000pt;}
.x0{left:0.000000pt;}
.x1{left:92.928000pt;}
.xe{left:128.096000pt;}
.x15{left:227.106667pt;}
.x14{left:274.306667pt;}
.x7{left:470.720000pt;}
.x9{left:724.480000pt;}
.x4{left:851.226667pt;}
.x3{left:862.466667pt;}
.x13{left:1281.733333pt;}
.x12{left:1356.960000pt;}
.x8{left:1504.026667pt;}
.x18{left:1966.013333pt;}
.xc{left:2036.480000pt;}
.xb{left:2559.973333pt;}
.xa{left:2657.826667pt;}
.x6{left:2901.693333pt;}
.xd{left:3106.213333pt;}
.x17{left:3115.520000pt;}
.x16{left:3162.720000pt;}
.x11{left:3188.866667pt;}
.x10{left:3230.973333pt;}
.xf{left:3497.466667pt;}
.x5{left:4277.733333pt;}
.x2{left:4554.586667pt;}
}




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