
    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_fd44944464a06f0a6749325c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.848145;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_dd683fbb34acb19edd16d0c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903809;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_36f0fb0045d3df0a85af2dea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_2008ea10bfefd7d8a745b523.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.845703;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_d2896e8e5f66cf0603612788.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_e5d60c89092f15340204159f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895508;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_26d667636bfd8521e0ffde17.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.693848;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_58ec48b8e14c1f79557a8d7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_2b1c97a3ec501ecbe9ad0d4a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689453;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_8efd98bd812bee079215b240.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_f542486b61c6c67eea9b948b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_0dd196212e8028394987d4bd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e3dcf9c189b48a60830e5aed.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;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_cfe99558afc0d7e96067a455.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_ea54571954dffc6bda28e2d6.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_4b828e9fd8c13ec40666388a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675293;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-2.914560px;}
.ls7{letter-spacing:-2.881440px;}
.lsa{letter-spacing:-1.046592px;}
.ls13{letter-spacing:-0.291456px;}
.ls22{letter-spacing:-0.247968px;}
.lse{letter-spacing:-0.247104px;}
.lsc{letter-spacing:-0.241920px;}
.ls16{letter-spacing:-0.240768px;}
.lsf{letter-spacing:-0.228096px;}
.lsd{letter-spacing:-0.211680px;}
.ls1f{letter-spacing:-0.198720px;}
.ls8{letter-spacing:-0.185472px;}
.ls14{letter-spacing:-0.177408px;}
.ls12{letter-spacing:-0.171072px;}
.ls6{letter-spacing:-0.165600px;}
.ls5{letter-spacing:-0.145728px;}
.ls15{letter-spacing:-0.133056px;}
.ls9{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.120384px;}
.ls4{letter-spacing:-0.119232px;}
.ls20{letter-spacing:-0.112608px;}
.ls21{letter-spacing:-0.108864px;}
.ls10{letter-spacing:-0.107712px;}
.lsb{letter-spacing:-0.092736px;}
.ls17{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.014400px;}
.ls1e{letter-spacing:0.136512px;}
.ls1c{letter-spacing:0.286704px;}
.ls1d{letter-spacing:0.295488px;}
.ls1{letter-spacing:0.334080px;}
.ls0{letter-spacing:0.359136px;}
.ls24{letter-spacing:28.007568px;}
.ls23{letter-spacing:32.050512px;}
.ls1a{letter-spacing:136.149552px;}
.ls19{letter-spacing:174.705696px;}
.ls18{letter-spacing:178.748640px;}
.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;}
}
.ws9{word-spacing:-18.014400px;}
.ws8{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.985600px;}
.ws5{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.662592px;}
.ws3{word-spacing:-15.592896px;}
.ws2{word-spacing:-14.784768px;}
.wsb{word-spacing:-13.334112px;}
.ws0{word-spacing:-13.327488px;}
.ws1{word-spacing:-13.281120px;}
.wsa{word-spacing:-13.248000px;}
.wsc{word-spacing:-12.277440px;}
.wsd{word-spacing:-12.029472px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-9.685296px;}
._e{margin-left:-8.259840px;}
._4{margin-left:-6.765120px;}
._1{margin-left:-5.512320px;}
._2{margin-left:-4.343040px;}
._5{margin-left:-3.090240px;}
._3{margin-left:-1.085760px;}
._6{width:1.126080px;}
._0{width:2.782080px;}
._8{width:3.921840px;}
._b{width:5.265360px;}
._d{width:6.730560px;}
._12{width:7.776000px;}
._1f{width:8.784144px;}
._9{width:9.820800px;}
._c{width:11.341440px;}
._18{width:13.118400px;}
._13{width:14.155200px;}
._29{width:15.796800px;}
._a{width:16.904448px;}
._2b{width:19.634400px;}
._11{width:20.930832px;}
._14{width:22.420800px;}
._10{width:24.984000px;}
._21{width:31.788000px;}
._1c{width:38.232000px;}
._31{width:49.226400px;}
._1d{width:50.875200px;}
._1a{width:53.510400px;}
._1b{width:69.796800px;}
._22{width:76.917600px;}
._16{width:95.313600px;}
._17{width:100.974528px;}
._19{width:107.251200px;}
._2e{width:112.687200px;}
._26{width:143.668800px;}
._25{width:186.492384px;}
._2a{width:187.772832px;}
._f{width:194.399568px;}
._1e{width:195.494832px;}
._24{width:224.100000px;}
._32{width:225.633600px;}
._2d{width:235.771200px;}
._30{width:252.525600px;}
._23{width:254.131200px;}
._27{width:271.159200px;}
._15{width:302.882400px;}
._28{width:318.153600px;}
._2f{width:391.125600px;}
._2c{width:747.338400px;}
._20{width:912.297600px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(70,120,134);}
.fc5{color:rgb(15,71,97);}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(58,124,34);}
.fc3{color:rgb(241,169,131);}
.fc2{color:rgb(33,94,153);}
.fc7{color:rgb(34,34,34);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y15{bottom:4.020000px;}
.y17{bottom:4.860000px;}
.y5{bottom:5.100000px;}
.y19{bottom:5.700000px;}
.yd{bottom:6.060000px;}
.y20{bottom:6.240000px;}
.y80{bottom:14.400000px;}
.y8e{bottom:14.460000px;}
.y9f{bottom:14.520000px;}
.y88{bottom:14.700000px;}
.ya2{bottom:14.880000px;}
.y82{bottom:14.940000px;}
.y90{bottom:15.000000px;}
.y7e{bottom:15.180000px;}
.y8a{bottom:15.240000px;}
.y7d{bottom:15.360000px;}
.y84{bottom:15.480000px;}
.y92{bottom:15.540000px;}
.ya4{bottom:15.600000px;}
.y86{bottom:15.660000px;}
.y8c{bottom:15.780000px;}
.yab{bottom:16.020000px;}
.y14{bottom:21.660000px;}
.y1f{bottom:25.680000px;}
.yc{bottom:25.860000px;}
.y13{bottom:41.820000px;}
.y9e{bottom:45.480000px;}
.ya1{bottom:45.840000px;}
.ya8{bottom:45.900000px;}
.ya6{bottom:46.140000px;}
.yb{bottom:46.380000px;}
.y1e{bottom:46.560000px;}
.yaa{bottom:46.980000px;}
.y4{bottom:52.500000px;}
.y3{bottom:57.960000px;}
.y12{bottom:61.980000px;}
.y1d{bottom:67.080000px;}
.ya{bottom:71.220000px;}
.ya7{bottom:76.860000px;}
.y11{bottom:81.420000px;}
.y1c{bottom:87.960000px;}
.y9{bottom:99.300000px;}
.y10{bottom:102.300000px;}
.y1b{bottom:107.760000px;}
.y7b{bottom:115.200000px;}
.yf{bottom:122.820000px;}
.y8{bottom:127.020000px;}
.y59{bottom:131.040000px;}
.ybb{bottom:144.000000px;}
.y7a{bottom:146.160000px;}
.y7{bottom:154.740000px;}
.y58{bottom:162.360000px;}
.yba{bottom:174.960000px;}
.y79{bottom:177.120000px;}
.y57{bottom:193.320000px;}
.y38{bottom:205.200000px;}
.yb9{bottom:205.920000px;}
.y78{bottom:208.440000px;}
.y37{bottom:223.920000px;}
.y56{bottom:224.280000px;}
.yb8{bottom:236.880000px;}
.y77{bottom:239.400000px;}
.y36{bottom:241.920000px;}
.y55{bottom:255.240000px;}
.y35{bottom:259.920000px;}
.yb7{bottom:268.200000px;}
.y76{bottom:270.360000px;}
.y34{bottom:278.280000px;}
.y54{bottom:286.560000px;}
.y33{bottom:296.280000px;}
.yb6{bottom:299.160000px;}
.y75{bottom:301.320000px;}
.y32{bottom:314.280000px;}
.y53{bottom:317.520000px;}
.yb5{bottom:330.120000px;}
.y74{bottom:332.280000px;}
.y31{bottom:332.640000px;}
.y52{bottom:348.480000px;}
.y30{bottom:350.640000px;}
.yb4{bottom:361.080000px;}
.y97{bottom:362.880000px;}
.y73{bottom:363.600000px;}
.y2f{bottom:368.640000px;}
.y51{bottom:379.440000px;}
.y2e{bottom:386.640000px;}
.yb3{bottom:392.040000px;}
.y96{bottom:393.840000px;}
.y72{bottom:394.560000px;}
.y50{bottom:410.760000px;}
.y2d{bottom:417.960000px;}
.yb2{bottom:423.360000px;}
.y95{bottom:424.800000px;}
.y71{bottom:425.520000px;}
.y2c{bottom:437.760000px;}
.y4f{bottom:441.720000px;}
.yb1{bottom:454.320000px;}
.y94{bottom:455.760000px;}
.y70{bottom:456.480000px;}
.y2b{bottom:458.640000px;}
.y4e{bottom:472.680000px;}
.y2a{bottom:479.520000px;}
.yb0{bottom:485.280000px;}
.y93{bottom:487.080000px;}
.y6f{bottom:487.800000px;}
.y29{bottom:500.400000px;}
.y91{bottom:502.500000px;}
.y4d{bottom:503.640000px;}
.yaf{bottom:516.240000px;}
.y6e{bottom:518.760000px;}
.y28{bottom:521.280000px;}
.y8f{bottom:534.000000px;}
.y4c{bottom:534.960000px;}
.y27{bottom:542.160000px;}
.yae{bottom:547.560000px;}
.y6d{bottom:549.720000px;}
.y26{bottom:563.040000px;}
.y8d{bottom:565.500000px;}
.y4b{bottom:565.920000px;}
.yad{bottom:578.520000px;}
.y6c{bottom:580.680000px;}
.y25{bottom:583.560000px;}
.y8b{bottom:595.500000px;}
.y4a{bottom:596.880000px;}
.y24{bottom:604.440000px;}
.yac{bottom:609.480000px;}
.y6b{bottom:612.000000px;}
.y23{bottom:625.320000px;}
.ya9{bottom:625.500000px;}
.y89{bottom:627.000000px;}
.y49{bottom:627.840000px;}
.y6a{bottom:642.960000px;}
.y22{bottom:646.200000px;}
.y87{bottom:658.500000px;}
.y48{bottom:658.800000px;}
.y21{bottom:667.080000px;}
.y69{bottom:673.920000px;}
.y1a{bottom:681.000000px;}
.y85{bottom:688.500000px;}
.y47{bottom:690.120000px;}
.y68{bottom:704.880000px;}
.y83{bottom:720.000000px;}
.y46{bottom:721.080000px;}
.y67{bottom:736.200000px;}
.y81{bottom:751.500000px;}
.y45{bottom:752.040000px;}
.y66{bottom:767.160000px;}
.ya5{bottom:781.500000px;}
.y44{bottom:783.000000px;}
.y65{bottom:798.120000px;}
.y18{bottom:802.500000px;}
.y7f{bottom:813.000000px;}
.y43{bottom:814.320000px;}
.y16{bottom:823.500000px;}
.y64{bottom:829.080000px;}
.ya3{bottom:843.000000px;}
.ye{bottom:844.500000px;}
.y42{bottom:845.280000px;}
.y63{bottom:860.400000px;}
.y7c{bottom:876.000000px;}
.y41{bottom:876.240000px;}
.y62{bottom:891.360000px;}
.ya0{bottom:906.000000px;}
.y40{bottom:907.200000px;}
.y61{bottom:922.320000px;}
.y3f{bottom:938.520000px;}
.y60{bottom:953.280000px;}
.y9d{bottom:969.000000px;}
.y3e{bottom:969.480000px;}
.y6{bottom:982.500000px;}
.y5f{bottom:984.600000px;}
.y3d{bottom:1000.440000px;}
.y5e{bottom:1015.560000px;}
.ybc{bottom:1017.000000px;}
.y3c{bottom:1031.400000px;}
.y5d{bottom:1046.520000px;}
.y3b{bottom:1062.720000px;}
.y5c{bottom:1077.480000px;}
.y3a{bottom:1093.680000px;}
.y9c{bottom:1099.080000px;}
.y5b{bottom:1108.800000px;}
.y9b{bottom:1118.880000px;}
.y9a{bottom:1138.680000px;}
.y39{bottom:1139.400000px;}
.y5a{bottom:1139.760000px;}
.y99{bottom:1164.240000px;}
.y2{bottom:1174.320000px;}
.y98{bottom:1190.160000px;}
.y1{bottom:1194.480000px;}
.h3{height:21.000000px;}
.hb{height:22.500000px;}
.h14{height:31.500000px;}
.h13{height:33.000000px;}
.h9{height:36.471094px;}
.hd{height:41.402813px;}
.hf{height:42.817500px;}
.h11{height:43.993125px;}
.h10{height:44.024063px;}
.h2{height:44.602031px;}
.h8{height:44.699063px;}
.ha{height:47.545313px;}
.h15{height:55.666406px;}
.h16{height:63.000000px;}
.he{height:63.175781px;}
.h6{height:63.351563px;}
.h12{height:63.949219px;}
.h17{height:64.500000px;}
.h5{height:74.181094px;}
.h18{height:94.500000px;}
.hc{height:123.000000px;}
.h7{height:139.500000px;}
.h4{height:175.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:28.500000px;}
.w8{width:93.000000px;}
.w7{width:103.500000px;}
.w6{width:130.500000px;}
.w5{width:132.000000px;}
.wa{width:136.500000px;}
.w9{width:186.000000px;}
.w4{width:319.500000px;}
.wb{width:504.000000px;}
.w3{width:637.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:8.566788px;}
.x25{left:10.759656px;}
.x16{left:11.911680px;}
.x23{left:12.922560px;}
.x1d{left:14.922000px;}
.x8{left:17.505264px;}
.x18{left:20.773320px;}
.x28{left:26.777712px;}
.x13{left:28.354620px;}
.x20{left:32.126592px;}
.x27{left:33.765024px;}
.x1e{left:37.274640px;}
.x1b{left:38.615844px;}
.x29{left:40.286496px;}
.x1c{left:41.618784px;}
.x22{left:45.112404px;}
.x21{left:51.568200px;}
.x1a{left:54.547920px;}
.x1f{left:65.551680px;}
.x4{left:71.274540px;}
.xd{left:114.355236px;}
.x1{left:127.439928px;}
.x12{left:169.965072px;}
.x11{left:180.614844px;}
.x2a{left:207.539820px;}
.x6{left:237.654480px;}
.x14{left:258.000000px;}
.x26{left:262.500000px;}
.x9{left:293.644560px;}
.x2{left:311.768532px;}
.x7{left:318.644760px;}
.x15{left:387.000000px;}
.xa{left:421.102920px;}
.xc{left:428.081520px;}
.x10{left:445.500000px;}
.xe{left:468.066000px;}
.xb{left:477.405840px;}
.x17{left:489.000000px;}
.x19{left:580.500000px;}
.xf{left:629.069880px;}
.x24{left:648.081720px;}
.x3{left:738.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-2.590720pt;}
.ls7{letter-spacing:-2.561280pt;}
.lsa{letter-spacing:-0.930304pt;}
.ls13{letter-spacing:-0.259072pt;}
.ls22{letter-spacing:-0.220416pt;}
.lse{letter-spacing:-0.219648pt;}
.lsc{letter-spacing:-0.215040pt;}
.ls16{letter-spacing:-0.214016pt;}
.lsf{letter-spacing:-0.202752pt;}
.lsd{letter-spacing:-0.188160pt;}
.ls1f{letter-spacing:-0.176640pt;}
.ls8{letter-spacing:-0.164864pt;}
.ls14{letter-spacing:-0.157696pt;}
.ls12{letter-spacing:-0.152064pt;}
.ls6{letter-spacing:-0.147200pt;}
.ls5{letter-spacing:-0.129536pt;}
.ls15{letter-spacing:-0.118272pt;}
.ls9{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.107008pt;}
.ls4{letter-spacing:-0.105984pt;}
.ls20{letter-spacing:-0.100096pt;}
.ls21{letter-spacing:-0.096768pt;}
.ls10{letter-spacing:-0.095744pt;}
.lsb{letter-spacing:-0.082432pt;}
.ls17{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.012800pt;}
.ls1e{letter-spacing:0.121344pt;}
.ls1c{letter-spacing:0.254848pt;}
.ls1d{letter-spacing:0.262656pt;}
.ls1{letter-spacing:0.296960pt;}
.ls0{letter-spacing:0.319232pt;}
.ls24{letter-spacing:24.895616pt;}
.ls23{letter-spacing:28.489344pt;}
.ls1a{letter-spacing:121.021824pt;}
.ls19{letter-spacing:155.293952pt;}
.ls18{letter-spacing:158.887680pt;}
.ws9{word-spacing:-16.012800pt;}
.ws8{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.987200pt;}
.ws5{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.922304pt;}
.ws3{word-spacing:-13.860352pt;}
.ws2{word-spacing:-13.142016pt;}
.wsb{word-spacing:-11.852544pt;}
.ws0{word-spacing:-11.846656pt;}
.ws1{word-spacing:-11.805440pt;}
.wsa{word-spacing:-11.776000pt;}
.wsc{word-spacing:-10.913280pt;}
.wsd{word-spacing:-10.692864pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-8.609152pt;}
._e{margin-left:-7.342080pt;}
._4{margin-left:-6.013440pt;}
._1{margin-left:-4.899840pt;}
._2{margin-left:-3.860480pt;}
._5{margin-left:-2.746880pt;}
._3{margin-left:-0.965120pt;}
._6{width:1.000960pt;}
._0{width:2.472960pt;}
._8{width:3.486080pt;}
._b{width:4.680320pt;}
._d{width:5.982720pt;}
._12{width:6.912000pt;}
._1f{width:7.808128pt;}
._9{width:8.729600pt;}
._c{width:10.081280pt;}
._18{width:11.660800pt;}
._13{width:12.582400pt;}
._29{width:14.041600pt;}
._a{width:15.026176pt;}
._2b{width:17.452800pt;}
._11{width:18.605184pt;}
._14{width:19.929600pt;}
._10{width:22.208000pt;}
._21{width:28.256000pt;}
._1c{width:33.984000pt;}
._31{width:43.756800pt;}
._1d{width:45.222400pt;}
._1a{width:47.564800pt;}
._1b{width:62.041600pt;}
._22{width:68.371200pt;}
._16{width:84.723200pt;}
._17{width:89.755136pt;}
._19{width:95.334400pt;}
._2e{width:100.166400pt;}
._26{width:127.705600pt;}
._25{width:165.771008pt;}
._2a{width:166.909184pt;}
._f{width:172.799616pt;}
._1e{width:173.773184pt;}
._24{width:199.200000pt;}
._32{width:200.563200pt;}
._2d{width:209.574400pt;}
._30{width:224.467200pt;}
._23{width:225.894400pt;}
._27{width:241.030400pt;}
._15{width:269.228800pt;}
._28{width:282.803200pt;}
._2f{width:347.667200pt;}
._2c{width:664.300800pt;}
._20{width:810.931200pt;}
.fs3{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:3.573333pt;}
.y17{bottom:4.320000pt;}
.y5{bottom:4.533333pt;}
.y19{bottom:5.066667pt;}
.yd{bottom:5.386667pt;}
.y20{bottom:5.546667pt;}
.y80{bottom:12.800000pt;}
.y8e{bottom:12.853333pt;}
.y9f{bottom:12.906667pt;}
.y88{bottom:13.066667pt;}
.ya2{bottom:13.226667pt;}
.y82{bottom:13.280000pt;}
.y90{bottom:13.333333pt;}
.y7e{bottom:13.493333pt;}
.y8a{bottom:13.546667pt;}
.y7d{bottom:13.653333pt;}
.y84{bottom:13.760000pt;}
.y92{bottom:13.813333pt;}
.ya4{bottom:13.866667pt;}
.y86{bottom:13.920000pt;}
.y8c{bottom:14.026667pt;}
.yab{bottom:14.240000pt;}
.y14{bottom:19.253333pt;}
.y1f{bottom:22.826667pt;}
.yc{bottom:22.986667pt;}
.y13{bottom:37.173333pt;}
.y9e{bottom:40.426667pt;}
.ya1{bottom:40.746667pt;}
.ya8{bottom:40.800000pt;}
.ya6{bottom:41.013333pt;}
.yb{bottom:41.226667pt;}
.y1e{bottom:41.386667pt;}
.yaa{bottom:41.760000pt;}
.y4{bottom:46.666667pt;}
.y3{bottom:51.520000pt;}
.y12{bottom:55.093333pt;}
.y1d{bottom:59.626667pt;}
.ya{bottom:63.306667pt;}
.ya7{bottom:68.320000pt;}
.y11{bottom:72.373333pt;}
.y1c{bottom:78.186667pt;}
.y9{bottom:88.266667pt;}
.y10{bottom:90.933333pt;}
.y1b{bottom:95.786667pt;}
.y7b{bottom:102.400000pt;}
.yf{bottom:109.173333pt;}
.y8{bottom:112.906667pt;}
.y59{bottom:116.480000pt;}
.ybb{bottom:128.000000pt;}
.y7a{bottom:129.920000pt;}
.y7{bottom:137.546667pt;}
.y58{bottom:144.320000pt;}
.yba{bottom:155.520000pt;}
.y79{bottom:157.440000pt;}
.y57{bottom:171.840000pt;}
.y38{bottom:182.400000pt;}
.yb9{bottom:183.040000pt;}
.y78{bottom:185.280000pt;}
.y37{bottom:199.040000pt;}
.y56{bottom:199.360000pt;}
.yb8{bottom:210.560000pt;}
.y77{bottom:212.800000pt;}
.y36{bottom:215.040000pt;}
.y55{bottom:226.880000pt;}
.y35{bottom:231.040000pt;}
.yb7{bottom:238.400000pt;}
.y76{bottom:240.320000pt;}
.y34{bottom:247.360000pt;}
.y54{bottom:254.720000pt;}
.y33{bottom:263.360000pt;}
.yb6{bottom:265.920000pt;}
.y75{bottom:267.840000pt;}
.y32{bottom:279.360000pt;}
.y53{bottom:282.240000pt;}
.yb5{bottom:293.440000pt;}
.y74{bottom:295.360000pt;}
.y31{bottom:295.680000pt;}
.y52{bottom:309.760000pt;}
.y30{bottom:311.680000pt;}
.yb4{bottom:320.960000pt;}
.y97{bottom:322.560000pt;}
.y73{bottom:323.200000pt;}
.y2f{bottom:327.680000pt;}
.y51{bottom:337.280000pt;}
.y2e{bottom:343.680000pt;}
.yb3{bottom:348.480000pt;}
.y96{bottom:350.080000pt;}
.y72{bottom:350.720000pt;}
.y50{bottom:365.120000pt;}
.y2d{bottom:371.520000pt;}
.yb2{bottom:376.320000pt;}
.y95{bottom:377.600000pt;}
.y71{bottom:378.240000pt;}
.y2c{bottom:389.120000pt;}
.y4f{bottom:392.640000pt;}
.yb1{bottom:403.840000pt;}
.y94{bottom:405.120000pt;}
.y70{bottom:405.760000pt;}
.y2b{bottom:407.680000pt;}
.y4e{bottom:420.160000pt;}
.y2a{bottom:426.240000pt;}
.yb0{bottom:431.360000pt;}
.y93{bottom:432.960000pt;}
.y6f{bottom:433.600000pt;}
.y29{bottom:444.800000pt;}
.y91{bottom:446.666667pt;}
.y4d{bottom:447.680000pt;}
.yaf{bottom:458.880000pt;}
.y6e{bottom:461.120000pt;}
.y28{bottom:463.360000pt;}
.y8f{bottom:474.666667pt;}
.y4c{bottom:475.520000pt;}
.y27{bottom:481.920000pt;}
.yae{bottom:486.720000pt;}
.y6d{bottom:488.640000pt;}
.y26{bottom:500.480000pt;}
.y8d{bottom:502.666667pt;}
.y4b{bottom:503.040000pt;}
.yad{bottom:514.240000pt;}
.y6c{bottom:516.160000pt;}
.y25{bottom:518.720000pt;}
.y8b{bottom:529.333333pt;}
.y4a{bottom:530.560000pt;}
.y24{bottom:537.280000pt;}
.yac{bottom:541.760000pt;}
.y6b{bottom:544.000000pt;}
.y23{bottom:555.840000pt;}
.ya9{bottom:556.000000pt;}
.y89{bottom:557.333333pt;}
.y49{bottom:558.080000pt;}
.y6a{bottom:571.520000pt;}
.y22{bottom:574.400000pt;}
.y87{bottom:585.333333pt;}
.y48{bottom:585.600000pt;}
.y21{bottom:592.960000pt;}
.y69{bottom:599.040000pt;}
.y1a{bottom:605.333333pt;}
.y85{bottom:612.000000pt;}
.y47{bottom:613.440000pt;}
.y68{bottom:626.560000pt;}
.y83{bottom:640.000000pt;}
.y46{bottom:640.960000pt;}
.y67{bottom:654.400000pt;}
.y81{bottom:668.000000pt;}
.y45{bottom:668.480000pt;}
.y66{bottom:681.920000pt;}
.ya5{bottom:694.666667pt;}
.y44{bottom:696.000000pt;}
.y65{bottom:709.440000pt;}
.y18{bottom:713.333333pt;}
.y7f{bottom:722.666667pt;}
.y43{bottom:723.840000pt;}
.y16{bottom:732.000000pt;}
.y64{bottom:736.960000pt;}
.ya3{bottom:749.333333pt;}
.ye{bottom:750.666667pt;}
.y42{bottom:751.360000pt;}
.y63{bottom:764.800000pt;}
.y7c{bottom:778.666667pt;}
.y41{bottom:778.880000pt;}
.y62{bottom:792.320000pt;}
.ya0{bottom:805.333333pt;}
.y40{bottom:806.400000pt;}
.y61{bottom:819.840000pt;}
.y3f{bottom:834.240000pt;}
.y60{bottom:847.360000pt;}
.y9d{bottom:861.333333pt;}
.y3e{bottom:861.760000pt;}
.y6{bottom:873.333333pt;}
.y5f{bottom:875.200000pt;}
.y3d{bottom:889.280000pt;}
.y5e{bottom:902.720000pt;}
.ybc{bottom:904.000000pt;}
.y3c{bottom:916.800000pt;}
.y5d{bottom:930.240000pt;}
.y3b{bottom:944.640000pt;}
.y5c{bottom:957.760000pt;}
.y3a{bottom:972.160000pt;}
.y9c{bottom:976.960000pt;}
.y5b{bottom:985.600000pt;}
.y9b{bottom:994.560000pt;}
.y9a{bottom:1012.160000pt;}
.y39{bottom:1012.800000pt;}
.y5a{bottom:1013.120000pt;}
.y99{bottom:1034.880000pt;}
.y2{bottom:1043.840000pt;}
.y98{bottom:1057.920000pt;}
.y1{bottom:1061.760000pt;}
.h3{height:18.666667pt;}
.hb{height:20.000000pt;}
.h14{height:28.000000pt;}
.h13{height:29.333333pt;}
.h9{height:32.418750pt;}
.hd{height:36.802500pt;}
.hf{height:38.060000pt;}
.h11{height:39.105000pt;}
.h10{height:39.132500pt;}
.h2{height:39.646250pt;}
.h8{height:39.732500pt;}
.ha{height:42.262500pt;}
.h15{height:49.481250pt;}
.h16{height:56.000000pt;}
.he{height:56.156250pt;}
.h6{height:56.312500pt;}
.h12{height:56.843750pt;}
.h17{height:57.333333pt;}
.h5{height:65.938750pt;}
.h18{height:84.000000pt;}
.hc{height:109.333333pt;}
.h7{height:124.000000pt;}
.h4{height:156.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:25.333333pt;}
.w8{width:82.666667pt;}
.w7{width:92.000000pt;}
.w6{width:116.000000pt;}
.w5{width:117.333333pt;}
.wa{width:121.333333pt;}
.w9{width:165.333333pt;}
.w4{width:284.000000pt;}
.wb{width:448.000000pt;}
.w3{width:566.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:7.614923pt;}
.x25{left:9.564139pt;}
.x16{left:10.588160pt;}
.x23{left:11.486720pt;}
.x1d{left:13.264000pt;}
.x8{left:15.560235pt;}
.x18{left:18.465173pt;}
.x28{left:23.802411pt;}
.x13{left:25.204107pt;}
.x20{left:28.556971pt;}
.x27{left:30.013355pt;}
.x1e{left:33.133013pt;}
.x1b{left:34.325195pt;}
.x29{left:35.810219pt;}
.x1c{left:36.994475pt;}
.x22{left:40.099915pt;}
.x21{left:45.838400pt;}
.x1a{left:48.487040pt;}
.x1f{left:58.268160pt;}
.x4{left:63.355147pt;}
.xd{left:101.649099pt;}
.x1{left:113.279936pt;}
.x12{left:151.080064pt;}
.x11{left:160.546528pt;}
.x2a{left:184.479840pt;}
.x6{left:211.248427pt;}
.x14{left:229.333333pt;}
.x26{left:233.333333pt;}
.x9{left:261.017387pt;}
.x2{left:277.127584pt;}
.x7{left:283.239787pt;}
.x15{left:344.000000pt;}
.xa{left:374.313707pt;}
.xc{left:380.516907pt;}
.x10{left:396.000000pt;}
.xe{left:416.058667pt;}
.xb{left:424.360747pt;}
.x17{left:434.666667pt;}
.x19{left:516.000000pt;}
.xf{left:559.173227pt;}
.x24{left:576.072640pt;}
.x3{left:656.000000pt;}
}




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