
    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_38ad8c517c35b212eb58c86d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_659c4b43635fc401be53e08a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908203;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_4b4d52fdf094d72ef917dfe4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ce20c7a5987cd3f92846b47d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862305;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_127c04cda76454595f3c0dca.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_0b17d918bbc161d3893dc50f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70c33dcb20d616152c07cce4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1fe79488b6ca8124bcee8911.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_958b62809810ce39be976500.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.791992;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_d4868c5b302d056a027e54a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.856934;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_515ee7a5bd543e81e604bd83.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;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_ca5ff2144efd1dc71a52320a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.844238;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_77a0a6bd76109a0d86f7b0ab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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_a69e1f945997c78dc472307d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717285;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_732b4d6bf030aa2e18e78ffd.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4bbd1dc4c63f9a62cd43ff4d.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_79bfdcaf61164fe59c5c8c1a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8eacdc4258315329b23f26bb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.706055;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);}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-2.238048px;}
.ls16{letter-spacing:-2.038176px;}
.ls2e{letter-spacing:-2.013696px;}
.ls28{letter-spacing:-0.585504px;}
.ls2f{letter-spacing:-0.492480px;}
.ls45{letter-spacing:-0.478080px;}
.ls2b{letter-spacing:-0.470592px;}
.ls13{letter-spacing:-0.426240px;}
.ls20{letter-spacing:-0.404928px;}
.ls46{letter-spacing:-0.403200px;}
.ls31{letter-spacing:-0.399456px;}
.lsa{letter-spacing:-0.393984px;}
.ls2a{letter-spacing:-0.383040px;}
.ls14{letter-spacing:-0.374400px;}
.ls2c{letter-spacing:-0.372096px;}
.lsc{letter-spacing:-0.361152px;}
.ls22{letter-spacing:-0.355680px;}
.ls23{letter-spacing:-0.344736px;}
.ls15{letter-spacing:-0.338688px;}
.ls21{letter-spacing:-0.333792px;}
.ls19{letter-spacing:-0.320544px;}
.ls26{letter-spacing:-0.311904px;}
.lse{letter-spacing:-0.308736px;}
.ls30{letter-spacing:-0.306432px;}
.ls1f{letter-spacing:-0.302400px;}
.ls25{letter-spacing:-0.273600px;}
.ls1e{letter-spacing:-0.260064px;}
.ls18{letter-spacing:-0.241920px;}
.lsd{letter-spacing:-0.240768px;}
.ls1b{letter-spacing:-0.223776px;}
.ls12{letter-spacing:-0.212256px;}
.ls29{letter-spacing:-0.207936px;}
.ls11{letter-spacing:-0.202608px;}
.ls3e{letter-spacing:-0.198720px;}
.lsb{letter-spacing:-0.180576px;}
.ls1d{letter-spacing:-0.175392px;}
.lsf{letter-spacing:-0.164016px;}
.ls3b{letter-spacing:-0.158976px;}
.ls27{letter-spacing:-0.158688px;}
.ls1c{letter-spacing:-0.157248px;}
.ls37{letter-spacing:-0.145728px;}
.ls17{letter-spacing:-0.145152px;}
.ls24{letter-spacing:-0.136800px;}
.ls34{letter-spacing:-0.132480px;}
.ls1a{letter-spacing:-0.120960px;}
.ls3c{letter-spacing:-0.119232px;}
.ls36{letter-spacing:-0.112608px;}
.ls35{letter-spacing:-0.099360px;}
.ls44{letter-spacing:-0.086112px;}
.ls3d{letter-spacing:-0.079488px;}
.ls43{letter-spacing:-0.059616px;}
.ls10{letter-spacing:-0.057888px;}
.ls38{letter-spacing:-0.014400px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.011520px;}
.ls2{letter-spacing:0.012096px;}
.ls39{letter-spacing:0.014400px;}
.ls5{letter-spacing:1.420416px;}
.ls3f{letter-spacing:1.647936px;}
.ls4{letter-spacing:4.001760px;}
.ls8{letter-spacing:4.468752px;}
.ls40{letter-spacing:5.821200px;}
.ls42{letter-spacing:5.821920px;}
.ls41{letter-spacing:5.822784px;}
.ls33{letter-spacing:7.483680px;}
.ls7{letter-spacing:8.388000px;}
.ls6{letter-spacing:8.388720px;}
.ls0{letter-spacing:353.068560px;}
.ls32{letter-spacing:358.501680px;}
.ls3a{letter-spacing:442.260000px;}
.ls1{letter-spacing:1747.893024px;}
.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:-21.640464px;}
.ws4{word-spacing:-21.601872px;}
.ws5{word-spacing:-21.592224px;}
.ws3{word-spacing:-21.495744px;}
.ws1e{word-spacing:-18.014400px;}
.ws8{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.985600px;}
.ws21{word-spacing:-16.560000px;}
.ws22{word-spacing:-16.473888px;}
.ws23{word-spacing:-16.440768px;}
.wsd{word-spacing:-15.120000px;}
.ws1a{word-spacing:-14.970240px;}
.wse{word-spacing:-14.944608px;}
.wsc{word-spacing:-14.878080px;}
.ws19{word-spacing:-14.837760px;}
.ws1b{word-spacing:-14.824512px;}
.wsf{word-spacing:-14.799456px;}
.wsb{word-spacing:-14.781312px;}
.ws7{word-spacing:-14.400000px;}
.ws9{word-spacing:-14.025600px;}
.ws25{word-spacing:-13.996800px;}
.ws6{word-spacing:-13.973760px;}
.ws24{word-spacing:-13.921920px;}
.ws1{word-spacing:-13.680000px;}
.ws1c{word-spacing:-13.439232px;}
.ws0{word-spacing:-13.318848px;}
.wsa{word-spacing:-13.081824px;}
.ws12{word-spacing:-12.366720px;}
.ws16{word-spacing:-12.093120px;}
.ws14{word-spacing:-12.021984px;}
.ws13{word-spacing:-12.011040px;}
.ws17{word-spacing:-11.967264px;}
.ws10{word-spacing:-11.961792px;}
.ws15{word-spacing:-10.128672px;}
.ws1f{word-spacing:-0.066240px;}
.ws18{word-spacing:0.000000px;}
.ws20{word-spacing:0.052992px;}
.ws11{word-spacing:0.306432px;}
._1c{margin-left:-5.237712px;}
._f{margin-left:-3.848688px;}
._7{margin-left:-2.300112px;}
._1{margin-left:-1.227168px;}
._0{width:1.039680px;}
._b{width:2.500848px;}
._8{width:4.322880px;}
._9{width:5.362560px;}
._e{width:6.594480px;}
._a{width:8.544672px;}
._2{width:9.766080px;}
._c{width:10.866240px;}
._13{width:11.992176px;}
._d{width:13.023360px;}
._1a{width:14.144400px;}
._11{width:15.264000px;}
._14{width:16.372368px;}
._10{width:19.879200px;}
._6{width:21.901968px;}
._5{width:23.345280px;}
._19{width:24.423840px;}
._1e{width:25.613280px;}
._22{width:26.794080px;}
._15{width:28.202400px;}
._1d{width:29.570400px;}
._21{width:31.406400px;}
._16{width:33.516000px;}
._18{width:35.442720px;}
._1f{width:37.116000px;}
._12{width:38.998512px;}
._20{width:41.214240px;}
._1b{width:47.844000px;}
._17{width:71.049600px;}
._4{width:80.504928px;}
._3{width:82.311840px;}
._23{width:114.638400px;}
._24{width:122.664240px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y4{bottom:45.360000px;}
.y3{bottom:60.840000px;}
.y2{bottom:76.320000px;}
.y55{bottom:98.280000px;}
.y63{bottom:105.480000px;}
.y83{bottom:106.920000px;}
.y2d{bottom:115.920000px;}
.y54{bottom:119.160000px;}
.ya5{bottom:120.960000px;}
.y62{bottom:126.000000px;}
.y82{bottom:127.800000px;}
.y2c{bottom:136.440000px;}
.y53{bottom:139.680000px;}
.ya4{bottom:141.480000px;}
.y61{bottom:146.880000px;}
.y81{bottom:148.320000px;}
.y52{bottom:160.560000px;}
.y2b{bottom:162.000000px;}
.ya3{bottom:162.360000px;}
.y60{bottom:167.400000px;}
.y80{bottom:169.200000px;}
.y2a{bottom:178.200000px;}
.y51{bottom:181.080000px;}
.ya2{bottom:182.880000px;}
.y5f{bottom:187.920000px;}
.y7f{bottom:189.720000px;}
.y29{bottom:194.760000px;}
.y50{bottom:201.960000px;}
.ya1{bottom:203.760000px;}
.y5e{bottom:208.800000px;}
.y7e{bottom:210.600000px;}
.y28{bottom:211.320000px;}
.y4f{bottom:222.480000px;}
.ya0{bottom:224.280000px;}
.y27{bottom:227.880000px;}
.y5d{bottom:229.320000px;}
.y7d{bottom:231.120000px;}
.y4e{bottom:243.360000px;}
.y26{bottom:244.080000px;}
.y9f{bottom:245.160000px;}
.y5c{bottom:250.200000px;}
.y7c{bottom:252.000000px;}
.y25{bottom:260.640000px;}
.y4d{bottom:263.880000px;}
.y9e{bottom:265.680000px;}
.y5b{bottom:270.720000px;}
.y7b{bottom:272.520000px;}
.y24{bottom:277.200000px;}
.y4c{bottom:284.760000px;}
.y9d{bottom:286.560000px;}
.y5a{bottom:291.600000px;}
.y7a{bottom:293.400000px;}
.y23{bottom:293.760000px;}
.y4b{bottom:305.280000px;}
.y9c{bottom:307.080000px;}
.y22{bottom:309.960000px;}
.y59{bottom:311.760000px;}
.y79{bottom:313.920000px;}
.y4a{bottom:326.160000px;}
.y21{bottom:326.520000px;}
.y9b{bottom:327.960000px;}
.y58{bottom:330.840000px;}
.y78{bottom:334.800000px;}
.y20{bottom:343.080000px;}
.y49{bottom:346.680000px;}
.y9a{bottom:348.480000px;}
.y57{bottom:349.560000px;}
.y77{bottom:355.320000px;}
.y1f{bottom:359.640000px;}
.y48{bottom:367.560000px;}
.y56{bottom:368.640000px;}
.y99{bottom:369.360000px;}
.y1e{bottom:375.840000px;}
.y76{bottom:376.200000px;}
.y47{bottom:388.080000px;}
.y98{bottom:389.880000px;}
.y1d{bottom:392.400000px;}
.y75{bottom:396.720000px;}
.y1c{bottom:408.960000px;}
.y97{bottom:410.760000px;}
.y74{bottom:417.600000px;}
.y1b{bottom:425.520000px;}
.y46{bottom:429.480000px;}
.y96{bottom:431.280000px;}
.y73{bottom:438.120000px;}
.y1a{bottom:442.080000px;}
.y45{bottom:450.360000px;}
.y95{bottom:452.160000px;}
.y19{bottom:458.280000px;}
.y72{bottom:459.000000px;}
.y44{bottom:470.880000px;}
.y94{bottom:472.680000px;}
.y18{bottom:474.840000px;}
.y71{bottom:479.520000px;}
.y17{bottom:491.400000px;}
.y43{bottom:491.760000px;}
.y93{bottom:493.560000px;}
.y70{bottom:500.400000px;}
.y16{bottom:507.960000px;}
.y42{bottom:512.280000px;}
.y92{bottom:514.080000px;}
.y6f{bottom:520.920000px;}
.y15{bottom:523.800000px;}
.y41{bottom:533.160000px;}
.y91{bottom:534.960000px;}
.y14{bottom:541.080000px;}
.y6e{bottom:541.800000px;}
.y40{bottom:553.680000px;}
.y90{bottom:555.480000px;}
.y13{bottom:558.360000px;}
.y6d{bottom:562.320000px;}
.y3f{bottom:574.560000px;}
.y12{bottom:575.640000px;}
.y8f{bottom:576.360000px;}
.y6c{bottom:583.200000px;}
.y11{bottom:592.920000px;}
.y3e{bottom:595.080000px;}
.y8e{bottom:596.880000px;}
.y6b{bottom:603.720000px;}
.y10{bottom:610.200000px;}
.y3d{bottom:615.960000px;}
.y8d{bottom:617.760000px;}
.y6a{bottom:624.600000px;}
.yf{bottom:627.480000px;}
.y3c{bottom:636.480000px;}
.y8c{bottom:638.280000px;}
.ye{bottom:644.760000px;}
.y69{bottom:645.120000px;}
.y3b{bottom:657.360000px;}
.y8b{bottom:659.160000px;}
.yd{bottom:662.040000px;}
.y68{bottom:666.000000px;}
.y3a{bottom:677.880000px;}
.yc{bottom:679.320000px;}
.y8a{bottom:679.680000px;}
.y67{bottom:686.160000px;}
.yb{bottom:697.320000px;}
.y39{bottom:698.760000px;}
.y89{bottom:700.560000px;}
.y66{bottom:704.880000px;}
.y38{bottom:719.280000px;}
.y88{bottom:721.080000px;}
.y65{bottom:723.960000px;}
.ya{bottom:732.600000px;}
.y37{bottom:740.160000px;}
.y87{bottom:741.600000px;}
.y64{bottom:743.040000px;}
.y36{bottom:760.680000px;}
.y9{bottom:761.760000px;}
.y86{bottom:762.480000px;}
.y35{bottom:781.560000px;}
.y85{bottom:783.000000px;}
.y8{bottom:790.920000px;}
.y34{bottom:802.080000px;}
.y84{bottom:803.160000px;}
.y7{bottom:820.080000px;}
.y33{bottom:822.960000px;}
.y32{bottom:843.480000px;}
.y6{bottom:849.600000px;}
.y31{bottom:864.360000px;}
.y5{bottom:878.760000px;}
.y30{bottom:884.880000px;}
.y2f{bottom:919.440000px;}
.y1{bottom:925.560000px;}
.y2e{bottom:936.720000px;}
.h8{height:37.913906px;}
.h3{height:37.994063px;}
.hb{height:39.249844px;}
.h7{height:42.022969px;}
.h2{height:45.345938px;}
.hd{height:46.025156px;}
.ha{height:48.761719px;}
.h9{height:50.027344px;}
.h6{height:50.540625px;}
.hc{height:51.159375px;}
.h5{height:64.304297px;}
.h4{height:66.047344px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.925000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.760144px;}
.x4{left:127.710216px;}
.x5{left:148.859964px;}
.x6{left:309.096684px;}
.x2{left:361.522692px;}
.x7{left:600.285240px;}
.x3{left:627.284880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-1.989376pt;}
.ls16{letter-spacing:-1.811712pt;}
.ls2e{letter-spacing:-1.789952pt;}
.ls28{letter-spacing:-0.520448pt;}
.ls2f{letter-spacing:-0.437760pt;}
.ls45{letter-spacing:-0.424960pt;}
.ls2b{letter-spacing:-0.418304pt;}
.ls13{letter-spacing:-0.378880pt;}
.ls20{letter-spacing:-0.359936pt;}
.ls46{letter-spacing:-0.358400pt;}
.ls31{letter-spacing:-0.355072pt;}
.lsa{letter-spacing:-0.350208pt;}
.ls2a{letter-spacing:-0.340480pt;}
.ls14{letter-spacing:-0.332800pt;}
.ls2c{letter-spacing:-0.330752pt;}
.lsc{letter-spacing:-0.321024pt;}
.ls22{letter-spacing:-0.316160pt;}
.ls23{letter-spacing:-0.306432pt;}
.ls15{letter-spacing:-0.301056pt;}
.ls21{letter-spacing:-0.296704pt;}
.ls19{letter-spacing:-0.284928pt;}
.ls26{letter-spacing:-0.277248pt;}
.lse{letter-spacing:-0.274432pt;}
.ls30{letter-spacing:-0.272384pt;}
.ls1f{letter-spacing:-0.268800pt;}
.ls25{letter-spacing:-0.243200pt;}
.ls1e{letter-spacing:-0.231168pt;}
.ls18{letter-spacing:-0.215040pt;}
.lsd{letter-spacing:-0.214016pt;}
.ls1b{letter-spacing:-0.198912pt;}
.ls12{letter-spacing:-0.188672pt;}
.ls29{letter-spacing:-0.184832pt;}
.ls11{letter-spacing:-0.180096pt;}
.ls3e{letter-spacing:-0.176640pt;}
.lsb{letter-spacing:-0.160512pt;}
.ls1d{letter-spacing:-0.155904pt;}
.lsf{letter-spacing:-0.145792pt;}
.ls3b{letter-spacing:-0.141312pt;}
.ls27{letter-spacing:-0.141056pt;}
.ls1c{letter-spacing:-0.139776pt;}
.ls37{letter-spacing:-0.129536pt;}
.ls17{letter-spacing:-0.129024pt;}
.ls24{letter-spacing:-0.121600pt;}
.ls34{letter-spacing:-0.117760pt;}
.ls1a{letter-spacing:-0.107520pt;}
.ls3c{letter-spacing:-0.105984pt;}
.ls36{letter-spacing:-0.100096pt;}
.ls35{letter-spacing:-0.088320pt;}
.ls44{letter-spacing:-0.076544pt;}
.ls3d{letter-spacing:-0.070656pt;}
.ls43{letter-spacing:-0.052992pt;}
.ls10{letter-spacing:-0.051456pt;}
.ls38{letter-spacing:-0.012800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010240pt;}
.ls2{letter-spacing:0.010752pt;}
.ls39{letter-spacing:0.012800pt;}
.ls5{letter-spacing:1.262592pt;}
.ls3f{letter-spacing:1.464832pt;}
.ls4{letter-spacing:3.557120pt;}
.ls8{letter-spacing:3.972224pt;}
.ls40{letter-spacing:5.174400pt;}
.ls42{letter-spacing:5.175040pt;}
.ls41{letter-spacing:5.175808pt;}
.ls33{letter-spacing:6.652160pt;}
.ls7{letter-spacing:7.456000pt;}
.ls6{letter-spacing:7.456640pt;}
.ls0{letter-spacing:313.838720pt;}
.ls32{letter-spacing:318.668160pt;}
.ls3a{letter-spacing:393.120000pt;}
.ls1{letter-spacing:1553.682688pt;}
.ws2{word-spacing:-19.235968pt;}
.ws4{word-spacing:-19.201664pt;}
.ws5{word-spacing:-19.193088pt;}
.ws3{word-spacing:-19.107328pt;}
.ws1e{word-spacing:-16.012800pt;}
.ws8{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.987200pt;}
.ws21{word-spacing:-14.720000pt;}
.ws22{word-spacing:-14.643456pt;}
.ws23{word-spacing:-14.614016pt;}
.wsd{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.284096pt;}
.wsc{word-spacing:-13.224960pt;}
.ws19{word-spacing:-13.189120pt;}
.ws1b{word-spacing:-13.177344pt;}
.wsf{word-spacing:-13.155072pt;}
.wsb{word-spacing:-13.138944pt;}
.ws7{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.467200pt;}
.ws25{word-spacing:-12.441600pt;}
.ws6{word-spacing:-12.421120pt;}
.ws24{word-spacing:-12.375040pt;}
.ws1{word-spacing:-12.160000pt;}
.ws1c{word-spacing:-11.945984pt;}
.ws0{word-spacing:-11.838976pt;}
.wsa{word-spacing:-11.628288pt;}
.ws12{word-spacing:-10.992640pt;}
.ws16{word-spacing:-10.749440pt;}
.ws14{word-spacing:-10.686208pt;}
.ws13{word-spacing:-10.676480pt;}
.ws17{word-spacing:-10.637568pt;}
.ws10{word-spacing:-10.632704pt;}
.ws15{word-spacing:-9.003264pt;}
.ws1f{word-spacing:-0.058880pt;}
.ws18{word-spacing:0.000000pt;}
.ws20{word-spacing:0.047104pt;}
.ws11{word-spacing:0.272384pt;}
._1c{margin-left:-4.655744pt;}
._f{margin-left:-3.421056pt;}
._7{margin-left:-2.044544pt;}
._1{margin-left:-1.090816pt;}
._0{width:0.924160pt;}
._b{width:2.222976pt;}
._8{width:3.842560pt;}
._9{width:4.766720pt;}
._e{width:5.861760pt;}
._a{width:7.595264pt;}
._2{width:8.680960pt;}
._c{width:9.658880pt;}
._13{width:10.659712pt;}
._d{width:11.576320pt;}
._1a{width:12.572800pt;}
._11{width:13.568000pt;}
._14{width:14.553216pt;}
._10{width:17.670400pt;}
._6{width:19.468416pt;}
._5{width:20.751360pt;}
._19{width:21.710080pt;}
._1e{width:22.767360pt;}
._22{width:23.816960pt;}
._15{width:25.068800pt;}
._1d{width:26.284800pt;}
._21{width:27.916800pt;}
._16{width:29.792000pt;}
._18{width:31.504640pt;}
._1f{width:32.992000pt;}
._12{width:34.665344pt;}
._20{width:36.634880pt;}
._1b{width:42.528000pt;}
._17{width:63.155200pt;}
._4{width:71.559936pt;}
._3{width:73.166080pt;}
._23{width:101.900800pt;}
._24{width:109.034880pt;}
.fs1{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:40.320000pt;}
.y3{bottom:54.080000pt;}
.y2{bottom:67.840000pt;}
.y55{bottom:87.360000pt;}
.y63{bottom:93.760000pt;}
.y83{bottom:95.040000pt;}
.y2d{bottom:103.040000pt;}
.y54{bottom:105.920000pt;}
.ya5{bottom:107.520000pt;}
.y62{bottom:112.000000pt;}
.y82{bottom:113.600000pt;}
.y2c{bottom:121.280000pt;}
.y53{bottom:124.160000pt;}
.ya4{bottom:125.760000pt;}
.y61{bottom:130.560000pt;}
.y81{bottom:131.840000pt;}
.y52{bottom:142.720000pt;}
.y2b{bottom:144.000000pt;}
.ya3{bottom:144.320000pt;}
.y60{bottom:148.800000pt;}
.y80{bottom:150.400000pt;}
.y2a{bottom:158.400000pt;}
.y51{bottom:160.960000pt;}
.ya2{bottom:162.560000pt;}
.y5f{bottom:167.040000pt;}
.y7f{bottom:168.640000pt;}
.y29{bottom:173.120000pt;}
.y50{bottom:179.520000pt;}
.ya1{bottom:181.120000pt;}
.y5e{bottom:185.600000pt;}
.y7e{bottom:187.200000pt;}
.y28{bottom:187.840000pt;}
.y4f{bottom:197.760000pt;}
.ya0{bottom:199.360000pt;}
.y27{bottom:202.560000pt;}
.y5d{bottom:203.840000pt;}
.y7d{bottom:205.440000pt;}
.y4e{bottom:216.320000pt;}
.y26{bottom:216.960000pt;}
.y9f{bottom:217.920000pt;}
.y5c{bottom:222.400000pt;}
.y7c{bottom:224.000000pt;}
.y25{bottom:231.680000pt;}
.y4d{bottom:234.560000pt;}
.y9e{bottom:236.160000pt;}
.y5b{bottom:240.640000pt;}
.y7b{bottom:242.240000pt;}
.y24{bottom:246.400000pt;}
.y4c{bottom:253.120000pt;}
.y9d{bottom:254.720000pt;}
.y5a{bottom:259.200000pt;}
.y7a{bottom:260.800000pt;}
.y23{bottom:261.120000pt;}
.y4b{bottom:271.360000pt;}
.y9c{bottom:272.960000pt;}
.y22{bottom:275.520000pt;}
.y59{bottom:277.120000pt;}
.y79{bottom:279.040000pt;}
.y4a{bottom:289.920000pt;}
.y21{bottom:290.240000pt;}
.y9b{bottom:291.520000pt;}
.y58{bottom:294.080000pt;}
.y78{bottom:297.600000pt;}
.y20{bottom:304.960000pt;}
.y49{bottom:308.160000pt;}
.y9a{bottom:309.760000pt;}
.y57{bottom:310.720000pt;}
.y77{bottom:315.840000pt;}
.y1f{bottom:319.680000pt;}
.y48{bottom:326.720000pt;}
.y56{bottom:327.680000pt;}
.y99{bottom:328.320000pt;}
.y1e{bottom:334.080000pt;}
.y76{bottom:334.400000pt;}
.y47{bottom:344.960000pt;}
.y98{bottom:346.560000pt;}
.y1d{bottom:348.800000pt;}
.y75{bottom:352.640000pt;}
.y1c{bottom:363.520000pt;}
.y97{bottom:365.120000pt;}
.y74{bottom:371.200000pt;}
.y1b{bottom:378.240000pt;}
.y46{bottom:381.760000pt;}
.y96{bottom:383.360000pt;}
.y73{bottom:389.440000pt;}
.y1a{bottom:392.960000pt;}
.y45{bottom:400.320000pt;}
.y95{bottom:401.920000pt;}
.y19{bottom:407.360000pt;}
.y72{bottom:408.000000pt;}
.y44{bottom:418.560000pt;}
.y94{bottom:420.160000pt;}
.y18{bottom:422.080000pt;}
.y71{bottom:426.240000pt;}
.y17{bottom:436.800000pt;}
.y43{bottom:437.120000pt;}
.y93{bottom:438.720000pt;}
.y70{bottom:444.800000pt;}
.y16{bottom:451.520000pt;}
.y42{bottom:455.360000pt;}
.y92{bottom:456.960000pt;}
.y6f{bottom:463.040000pt;}
.y15{bottom:465.600000pt;}
.y41{bottom:473.920000pt;}
.y91{bottom:475.520000pt;}
.y14{bottom:480.960000pt;}
.y6e{bottom:481.600000pt;}
.y40{bottom:492.160000pt;}
.y90{bottom:493.760000pt;}
.y13{bottom:496.320000pt;}
.y6d{bottom:499.840000pt;}
.y3f{bottom:510.720000pt;}
.y12{bottom:511.680000pt;}
.y8f{bottom:512.320000pt;}
.y6c{bottom:518.400000pt;}
.y11{bottom:527.040000pt;}
.y3e{bottom:528.960000pt;}
.y8e{bottom:530.560000pt;}
.y6b{bottom:536.640000pt;}
.y10{bottom:542.400000pt;}
.y3d{bottom:547.520000pt;}
.y8d{bottom:549.120000pt;}
.y6a{bottom:555.200000pt;}
.yf{bottom:557.760000pt;}
.y3c{bottom:565.760000pt;}
.y8c{bottom:567.360000pt;}
.ye{bottom:573.120000pt;}
.y69{bottom:573.440000pt;}
.y3b{bottom:584.320000pt;}
.y8b{bottom:585.920000pt;}
.yd{bottom:588.480000pt;}
.y68{bottom:592.000000pt;}
.y3a{bottom:602.560000pt;}
.yc{bottom:603.840000pt;}
.y8a{bottom:604.160000pt;}
.y67{bottom:609.920000pt;}
.yb{bottom:619.840000pt;}
.y39{bottom:621.120000pt;}
.y89{bottom:622.720000pt;}
.y66{bottom:626.560000pt;}
.y38{bottom:639.360000pt;}
.y88{bottom:640.960000pt;}
.y65{bottom:643.520000pt;}
.ya{bottom:651.200000pt;}
.y37{bottom:657.920000pt;}
.y87{bottom:659.200000pt;}
.y64{bottom:660.480000pt;}
.y36{bottom:676.160000pt;}
.y9{bottom:677.120000pt;}
.y86{bottom:677.760000pt;}
.y35{bottom:694.720000pt;}
.y85{bottom:696.000000pt;}
.y8{bottom:703.040000pt;}
.y34{bottom:712.960000pt;}
.y84{bottom:713.920000pt;}
.y7{bottom:728.960000pt;}
.y33{bottom:731.520000pt;}
.y32{bottom:749.760000pt;}
.y6{bottom:755.200000pt;}
.y31{bottom:768.320000pt;}
.y5{bottom:781.120000pt;}
.y30{bottom:786.560000pt;}
.y2f{bottom:817.280000pt;}
.y1{bottom:822.720000pt;}
.y2e{bottom:832.640000pt;}
.h8{height:33.701250pt;}
.h3{height:33.772500pt;}
.hb{height:34.888750pt;}
.h7{height:37.353750pt;}
.h2{height:40.307500pt;}
.hd{height:40.911250pt;}
.ha{height:43.343750pt;}
.h9{height:44.468750pt;}
.h6{height:44.925000pt;}
.hc{height:45.475000pt;}
.h5{height:57.159375pt;}
.h4{height:58.708750pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.600000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.120128pt;}
.x4{left:113.520192pt;}
.x5{left:132.319968pt;}
.x6{left:274.752608pt;}
.x2{left:321.353504pt;}
.x7{left:533.586880pt;}
.x3{left:557.586560pt;}
}




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