
    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_de67eda0ecb5e24c7ee9cc68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_24a2658b76f88f407df5a3b6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_63b7fea958bf216974958dac.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_f3dbaf0298c870cb9c597445.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4634285c5c9a68095f70871c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_7e83343976a72b857f298077.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_7a2d4140465122b34848fbd5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c39c9aa7784e42ba8badabf7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8579b4d1327afa1c0711ac57.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:ffd;src:url('chunks/assets/font_1ce947f3abe49ee8df07c28c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.112305;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:ffe;src:url('chunks/assets/font_9f6863d89909bb40ea4fdb30.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061035;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:fff;src:url('chunks/assets/font_d6bf2cb8885b7785452c155f.woff2')format("woff");}.fff{font-family:fff;line-height:0.854492;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:ff10;src:url('chunks/assets/font_5319efababd3edfe2b89262f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:ff11;src:url('chunks/assets/font_9ffc5094b469baffc387d8c8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.lsc{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.224400px;}
.ls8{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.978000px;}
.lsa{letter-spacing:22.500000px;}
.lsd{letter-spacing:25.380000px;}
.ls10{letter-spacing:71.922720px;}
.ls11{letter-spacing:71.946720px;}
.lse{letter-spacing:102.162720px;}
.lsb{letter-spacing:102.186720px;}
.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;}
}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws5{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.924560px;}
.ws4{word-spacing:-10.612800px;}
.ws6{word-spacing:0.000000px;}
._20{margin-left:-4.485840px;}
._12{margin-left:-3.030720px;}
._1{margin-left:-1.233600px;}
._0{width:1.434240px;}
._7{width:3.047760px;}
._6{width:4.123440px;}
._3{width:5.318640px;}
._2{width:6.334560px;}
._d{width:7.841280px;}
._c{width:9.433440px;}
._10{width:10.569360px;}
._13{width:12.169680px;}
._17{width:13.211280px;}
._e{width:14.700960px;}
._18{width:16.194960px;}
._19{width:17.330400px;}
._16{width:18.824400px;}
._11{width:19.959840px;}
._4{width:21.060000px;}
._1a{width:22.662960px;}
._1f{width:24.262560px;}
._8{width:25.398000px;}
._9{width:26.413920px;}
._f{width:27.848160px;}
._26{width:28.854480px;}
._b{width:29.928720px;}
._a{width:31.194720px;}
._25{width:32.368560px;}
._24{width:33.644880px;}
._1c{width:34.780320px;}
._1d{width:36.621120px;}
._23{width:37.648800px;}
._1b{width:38.844000px;}
._28{width:40.577040px;}
._2d{width:42.011280px;}
._30{width:43.983360px;}
._1e{width:45.298080px;}
._21{width:47.270160px;}
._22{width:48.489840px;}
._2c{width:50.120640px;}
._27{width:52.230240px;}
._2a{width:54.082800px;}
._14{width:57.608640px;}
._15{width:58.744080px;}
._2e{width:62.748000px;}
._31{width:70.437600px;}
._2b{width:73.743840px;}
._34{width:75.315600px;}
._35{width:77.173920px;}
._38{width:83.203920px;}
._39{width:85.209120px;}
._32{width:93.124080px;}
._29{width:94.600080px;}
._2f{width:97.827120px;}
._5{width:114.912000px;}
._3a{width:135.118080px;}
._37{width:167.958720px;}
._33{width:171.607440px;}
._36{width:239.392800px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs4{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.y40{bottom:4.500000px;}
.y56{bottom:5.400000px;}
.y59{bottom:8.640000px;}
.y3d{bottom:20.925000px;}
.y58{bottom:23.040000px;}
.y55{bottom:31.860000px;}
.y3c{bottom:38.385000px;}
.y3b{bottom:56.025000px;}
.y3{bottom:58.140000px;}
.y54{bottom:64.440000px;}
.y3a{bottom:73.665000px;}
.y2{bottom:80.100000px;}
.y39{bottom:91.305000px;}
.y38{bottom:108.765000px;}
.y57{bottom:113.220000px;}
.y93{bottom:123.300000px;}
.y37{bottom:126.405000px;}
.y92{bottom:140.580000px;}
.y36{bottom:144.045000px;}
.y91{bottom:157.860000px;}
.y51{bottom:158.400000px;}
.y35{bottom:161.505000px;}
.y90{bottom:175.140000px;}
.y50{bottom:175.680000px;}
.y34{bottom:179.145000px;}
.y9a{bottom:192.060000px;}
.y8f{bottom:192.420000px;}
.y4f{bottom:192.780000px;}
.y33{bottom:196.785000px;}
.y23{bottom:204.525000px;}
.y8e{bottom:209.700000px;}
.y4e{bottom:210.060000px;}
.y32{bottom:214.245000px;}
.y22{bottom:222.705000px;}
.y8d{bottom:226.830000px;}
.y4d{bottom:227.370000px;}
.y31{bottom:231.885000px;}
.y21{bottom:240.885000px;}
.y8c{bottom:244.110000px;}
.y4c{bottom:244.650000px;}
.y30{bottom:249.555000px;}
.y20{bottom:259.095000px;}
.y99{bottom:261.030000px;}
.y8b{bottom:261.390000px;}
.y4b{bottom:261.930000px;}
.y2f{bottom:267.015000px;}
.y1f{bottom:274.575000px;}
.y8a{bottom:278.670000px;}
.y4a{bottom:279.210000px;}
.y2e{bottom:284.655000px;}
.y1e{bottom:288.615000px;}
.y89{bottom:295.950000px;}
.y49{bottom:296.310000px;}
.y2d{bottom:302.295000px;}
.y1d{bottom:302.655000px;}
.y88{bottom:313.230000px;}
.y48{bottom:313.590000px;}
.y1c{bottom:316.875000px;}
.y2c{bottom:319.935000px;}
.y87{bottom:330.330000px;}
.y47{bottom:330.870000px;}
.y1b{bottom:330.915000px;}
.y2b{bottom:337.395000px;}
.y1a{bottom:344.595000px;}
.y86{bottom:347.610000px;}
.y46{bottom:348.150000px;}
.y2a{bottom:355.035000px;}
.y19{bottom:358.455000px;}
.y85{bottom:364.890000px;}
.y45{bottom:365.430000px;}
.y18{bottom:372.315000px;}
.y29{bottom:372.675000px;}
.y84{bottom:382.170000px;}
.y44{bottom:382.530000px;}
.y17{bottom:386.355000px;}
.y28{bottom:390.135000px;}
.y9f{bottom:399.090000px;}
.y43{bottom:399.450000px;}
.y52{bottom:399.810000px;}
.y16{bottom:400.395000px;}
.y27{bottom:407.775000px;}
.y15{bottom:414.435000px;}
.y42{bottom:416.730000px;}
.y26{bottom:425.415000px;}
.y14{bottom:429.015000px;}
.y41{bottom:431.130000px;}
.y3f{bottom:433.290000px;}
.y83{bottom:433.830000px;}
.y11{bottom:439.230000px;}
.y25{bottom:442.875000px;}
.y13{bottom:447.015000px;}
.y82{bottom:451.155000px;}
.y24{bottom:463.755000px;}
.y12{bottom:464.295000px;}
.y81{bottom:468.435000px;}
.y9e{bottom:485.355000px;}
.y80{bottom:485.715000px;}
.y7f{bottom:502.995000px;}
.y7e{bottom:520.095000px;}
.y7d{bottom:537.375000px;}
.y7c{bottom:554.655000px;}
.y9d{bottom:571.575000px;}
.y7b{bottom:571.935000px;}
.y7a{bottom:589.215000px;}
.y79{bottom:606.495000px;}
.y78{bottom:623.595000px;}
.y9c{bottom:640.515000px;}
.y77{bottom:640.875000px;}
.y9b{bottom:657.795000px;}
.y76{bottom:658.155000px;}
.y75{bottom:675.435000px;}
.y74{bottom:692.745000px;}
.y73{bottom:710.025000px;}
.y72{bottom:727.125000px;}
.y71{bottom:744.405000px;}
.y70{bottom:761.685000px;}
.y6f{bottom:778.965000px;}
.y6e{bottom:796.245000px;}
.y98{bottom:812.985000px;}
.y6d{bottom:813.345000px;}
.y97{bottom:830.265000px;}
.y6c{bottom:830.625000px;}
.y6b{bottom:847.905000px;}
.y6a{bottom:865.185000px;}
.y69{bottom:882.465000px;}
.y68{bottom:899.745000px;}
.y67{bottom:916.845000px;}
.y10{bottom:922.470000px;}
.y66{bottom:934.170000px;}
.yf{bottom:944.610000px;}
.y65{bottom:951.450000px;}
.ye{bottom:961.890000px;}
.y64{bottom:968.730000px;}
.yd{bottom:979.170000px;}
.y63{bottom:986.010000px;}
.yc{bottom:998.070000px;}
.y62{bottom:1003.290000px;}
.yb{bottom:1017.510000px;}
.y61{bottom:1020.390000px;}
.y60{bottom:1037.310000px;}
.y96{bottom:1037.670000px;}
.ya{bottom:1041.090000px;}
.y5f{bottom:1054.590000px;}
.y95{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.y53{bottom:1070.250000px;}
.y5e{bottom:1071.870000px;}
.y94{bottom:1072.230000px;}
.y8{bottom:1088.790000px;}
.y5d{bottom:1089.510000px;}
.y5c{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.y5b{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.y5a{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h11{height:5.653125px;}
.h12{height:5.805000px;}
.h13{height:5.920372px;}
.h10{height:5.940000px;}
.h4{height:17.280000px;}
.h19{height:34.200000px;}
.h1b{height:40.655391px;}
.hc{height:40.843828px;}
.h1d{height:42.164648px;}
.he{height:45.720703px;}
.hf{height:45.859856px;}
.h1a{height:47.321367px;}
.h3{height:47.980898px;}
.h18{height:48.616875px;}
.hb{height:49.583118px;}
.hd{height:50.218594px;}
.ha{height:50.597578px;}
.h1c{height:53.573906px;}
.h5{height:58.651172px;}
.h14{height:60.226875px;}
.h15{height:61.423863px;}
.h8{height:66.757500px;}
.h17{height:72.562500px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h16{height:81.180000px;}
.h9{height:477.975000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.065000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x13{left:10.800000px;}
.x9{left:20.700000px;}
.x2{left:27.000000px;}
.x3{left:31.140000px;}
.x6{left:53.999987px;}
.x10{left:62.994000px;}
.x1{left:108.035987px;}
.x15{left:114.875987px;}
.xf{left:140.616000px;}
.x11{left:157.539000px;}
.xc{left:197.310000px;}
.xd{left:201.450000px;}
.x8{left:267.195000px;}
.x12{left:312.549000px;}
.xa{left:357.015000px;}
.xb{left:361.155000px;}
.x5{left:446.504987px;}
.x4{left:467.204987px;}
.xe{left:473.144987px;}
.x14{left:479.984987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.lsc{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.199467pt;}
.ls8{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.869333pt;}
.lsa{letter-spacing:20.000000pt;}
.lsd{letter-spacing:22.560000pt;}
.ls10{letter-spacing:63.931307pt;}
.ls11{letter-spacing:63.952640pt;}
.lse{letter-spacing:90.811307pt;}
.lsb{letter-spacing:90.832640pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws5{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.710720pt;}
.ws4{word-spacing:-9.433600pt;}
.ws6{word-spacing:0.000000pt;}
._20{margin-left:-3.987413pt;}
._12{margin-left:-2.693973pt;}
._1{margin-left:-1.096533pt;}
._0{width:1.274880pt;}
._7{width:2.709120pt;}
._6{width:3.665280pt;}
._3{width:4.727680pt;}
._2{width:5.630720pt;}
._d{width:6.970027pt;}
._c{width:8.385280pt;}
._10{width:9.394987pt;}
._13{width:10.817493pt;}
._17{width:11.743360pt;}
._e{width:13.067520pt;}
._18{width:14.395520pt;}
._19{width:15.404800pt;}
._16{width:16.732800pt;}
._11{width:17.742080pt;}
._4{width:18.720000pt;}
._1a{width:20.144853pt;}
._1f{width:21.566720pt;}
._8{width:22.576000pt;}
._9{width:23.479040pt;}
._f{width:24.753920pt;}
._26{width:25.648427pt;}
._b{width:26.603307pt;}
._a{width:27.728640pt;}
._25{width:28.772053pt;}
._24{width:29.906560pt;}
._1c{width:30.915840pt;}
._1d{width:32.552107pt;}
._23{width:33.465600pt;}
._1b{width:34.528000pt;}
._28{width:36.068480pt;}
._2d{width:37.343360pt;}
._30{width:39.096320pt;}
._1e{width:40.264960pt;}
._21{width:42.017920pt;}
._22{width:43.102080pt;}
._2c{width:44.551680pt;}
._27{width:46.426880pt;}
._2a{width:48.073600pt;}
._14{width:51.207680pt;}
._15{width:52.216960pt;}
._2e{width:55.776000pt;}
._31{width:62.611200pt;}
._2b{width:65.550080pt;}
._34{width:66.947200pt;}
._35{width:68.599040pt;}
._38{width:73.959040pt;}
._39{width:75.741440pt;}
._32{width:82.776960pt;}
._29{width:84.088960pt;}
._2f{width:86.957440pt;}
._5{width:102.144000pt;}
._3a{width:120.104960pt;}
._37{width:149.296640pt;}
._33{width:152.539947pt;}
._36{width:212.793600pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs4{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.y40{bottom:4.000000pt;}
.y56{bottom:4.800000pt;}
.y59{bottom:7.680000pt;}
.y3d{bottom:18.600000pt;}
.y58{bottom:20.480000pt;}
.y55{bottom:28.320000pt;}
.y3c{bottom:34.120000pt;}
.y3b{bottom:49.800000pt;}
.y3{bottom:51.680000pt;}
.y54{bottom:57.280000pt;}
.y3a{bottom:65.480000pt;}
.y2{bottom:71.200000pt;}
.y39{bottom:81.160000pt;}
.y38{bottom:96.680000pt;}
.y57{bottom:100.640000pt;}
.y93{bottom:109.600000pt;}
.y37{bottom:112.360000pt;}
.y92{bottom:124.960000pt;}
.y36{bottom:128.040000pt;}
.y91{bottom:140.320000pt;}
.y51{bottom:140.800000pt;}
.y35{bottom:143.560000pt;}
.y90{bottom:155.680000pt;}
.y50{bottom:156.160000pt;}
.y34{bottom:159.240000pt;}
.y9a{bottom:170.720000pt;}
.y8f{bottom:171.040000pt;}
.y4f{bottom:171.360000pt;}
.y33{bottom:174.920000pt;}
.y23{bottom:181.800000pt;}
.y8e{bottom:186.400000pt;}
.y4e{bottom:186.720000pt;}
.y32{bottom:190.440000pt;}
.y22{bottom:197.960000pt;}
.y8d{bottom:201.626667pt;}
.y4d{bottom:202.106667pt;}
.y31{bottom:206.120000pt;}
.y21{bottom:214.120000pt;}
.y8c{bottom:216.986667pt;}
.y4c{bottom:217.466667pt;}
.y30{bottom:221.826667pt;}
.y20{bottom:230.306667pt;}
.y99{bottom:232.026667pt;}
.y8b{bottom:232.346667pt;}
.y4b{bottom:232.826667pt;}
.y2f{bottom:237.346667pt;}
.y1f{bottom:244.066667pt;}
.y8a{bottom:247.706667pt;}
.y4a{bottom:248.186667pt;}
.y2e{bottom:253.026667pt;}
.y1e{bottom:256.546667pt;}
.y89{bottom:263.066667pt;}
.y49{bottom:263.386667pt;}
.y2d{bottom:268.706667pt;}
.y1d{bottom:269.026667pt;}
.y88{bottom:278.426667pt;}
.y48{bottom:278.746667pt;}
.y1c{bottom:281.666667pt;}
.y2c{bottom:284.386667pt;}
.y87{bottom:293.626667pt;}
.y47{bottom:294.106667pt;}
.y1b{bottom:294.146667pt;}
.y2b{bottom:299.906667pt;}
.y1a{bottom:306.306667pt;}
.y86{bottom:308.986667pt;}
.y46{bottom:309.466667pt;}
.y2a{bottom:315.586667pt;}
.y19{bottom:318.626667pt;}
.y85{bottom:324.346667pt;}
.y45{bottom:324.826667pt;}
.y18{bottom:330.946667pt;}
.y29{bottom:331.266667pt;}
.y84{bottom:339.706667pt;}
.y44{bottom:340.026667pt;}
.y17{bottom:343.426667pt;}
.y28{bottom:346.786667pt;}
.y9f{bottom:354.746667pt;}
.y43{bottom:355.066667pt;}
.y52{bottom:355.386667pt;}
.y16{bottom:355.906667pt;}
.y27{bottom:362.466667pt;}
.y15{bottom:368.386667pt;}
.y42{bottom:370.426667pt;}
.y26{bottom:378.146667pt;}
.y14{bottom:381.346667pt;}
.y41{bottom:383.226667pt;}
.y3f{bottom:385.146667pt;}
.y83{bottom:385.626667pt;}
.y11{bottom:390.426667pt;}
.y25{bottom:393.666667pt;}
.y13{bottom:397.346667pt;}
.y82{bottom:401.026667pt;}
.y24{bottom:412.226667pt;}
.y12{bottom:412.706667pt;}
.y81{bottom:416.386667pt;}
.y9e{bottom:431.426667pt;}
.y80{bottom:431.746667pt;}
.y7f{bottom:447.106667pt;}
.y7e{bottom:462.306667pt;}
.y7d{bottom:477.666667pt;}
.y7c{bottom:493.026667pt;}
.y9d{bottom:508.066667pt;}
.y7b{bottom:508.386667pt;}
.y7a{bottom:523.746667pt;}
.y79{bottom:539.106667pt;}
.y78{bottom:554.306667pt;}
.y9c{bottom:569.346667pt;}
.y77{bottom:569.666667pt;}
.y9b{bottom:584.706667pt;}
.y76{bottom:585.026667pt;}
.y75{bottom:600.386667pt;}
.y74{bottom:615.773333pt;}
.y73{bottom:631.133333pt;}
.y72{bottom:646.333333pt;}
.y71{bottom:661.693333pt;}
.y70{bottom:677.053333pt;}
.y6f{bottom:692.413333pt;}
.y6e{bottom:707.773333pt;}
.y98{bottom:722.653333pt;}
.y6d{bottom:722.973333pt;}
.y97{bottom:738.013333pt;}
.y6c{bottom:738.333333pt;}
.y6b{bottom:753.693333pt;}
.y6a{bottom:769.053333pt;}
.y69{bottom:784.413333pt;}
.y68{bottom:799.773333pt;}
.y67{bottom:814.973333pt;}
.y10{bottom:819.973333pt;}
.y66{bottom:830.373333pt;}
.yf{bottom:839.653333pt;}
.y65{bottom:845.733333pt;}
.ye{bottom:855.013333pt;}
.y64{bottom:861.093333pt;}
.yd{bottom:870.373333pt;}
.y63{bottom:876.453333pt;}
.yc{bottom:887.173333pt;}
.y62{bottom:891.813333pt;}
.yb{bottom:904.453333pt;}
.y61{bottom:907.013333pt;}
.y60{bottom:922.053333pt;}
.y96{bottom:922.373333pt;}
.ya{bottom:925.413333pt;}
.y5f{bottom:937.413333pt;}
.y95{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.y53{bottom:951.333333pt;}
.y5e{bottom:952.773333pt;}
.y94{bottom:953.093333pt;}
.y8{bottom:967.813333pt;}
.y5d{bottom:968.453333pt;}
.y5c{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.y5b{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.y5a{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h11{height:5.025000pt;}
.h12{height:5.160000pt;}
.h13{height:5.262553pt;}
.h10{height:5.280000pt;}
.h4{height:15.360000pt;}
.h19{height:30.400000pt;}
.h1b{height:36.138125pt;}
.hc{height:36.305625pt;}
.h1d{height:37.479688pt;}
.he{height:40.640625pt;}
.hf{height:40.764316pt;}
.h1a{height:42.063437pt;}
.h3{height:42.649687pt;}
.h18{height:43.215000pt;}
.hb{height:44.073883pt;}
.hd{height:44.638750pt;}
.ha{height:44.975625pt;}
.h1c{height:47.621250pt;}
.h5{height:52.134375pt;}
.h14{height:53.535000pt;}
.h15{height:54.598989pt;}
.h8{height:59.340000pt;}
.h17{height:64.500000pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h16{height:72.160000pt;}
.h9{height:424.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:555.613333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x13{left:9.600000pt;}
.x9{left:18.400000pt;}
.x2{left:24.000000pt;}
.x3{left:27.680000pt;}
.x6{left:47.999988pt;}
.x10{left:55.994667pt;}
.x1{left:96.031988pt;}
.x15{left:102.111988pt;}
.xf{left:124.992000pt;}
.x11{left:140.034667pt;}
.xc{left:175.386667pt;}
.xd{left:179.066667pt;}
.x8{left:237.506667pt;}
.x12{left:277.821333pt;}
.xa{left:317.346667pt;}
.xb{left:321.026667pt;}
.x5{left:396.893322pt;}
.x4{left:415.293322pt;}
.xe{left:420.573322pt;}
.x14{left:426.653322pt;}
}




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