
    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_486a099780ac87539ec5e9a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.212000;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_3a95c1e0d07cfe123aa5fe71.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.048000;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_a181222be88d0838b768428e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_b10e94b6d38079b294b15d15.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_487af0e7ca16b270b225fb9b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740000;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_d57693d5550af7e8edb5cef7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740000;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_66c81dc594a091584f068092.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_1ac59265a4205c70e2b5cde5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.098000;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_7137b7f7454283b5ae2cdaa5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_ff7540e2053be1c23a08521e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.076000;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_896f6a36b2031cd9b7de8ace.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.034000;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_7bfcec4520237906d1af5141.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.034000;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_7ff37eb3719c337239cb6906.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001953;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.320000px;}
.ls3{letter-spacing:8.352000px;}
.ls4{letter-spacing:20.016000px;}
.ls1{letter-spacing:37.056000px;}
.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;}
}
.wsf{word-spacing:-23.184000px;}
.ws1{word-spacing:-13.248000px;}
.ws2{word-spacing:-2.208000px;}
.ws3{word-spacing:-2.160000px;}
.ws7{word-spacing:-1.104000px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:1.392000px;}
.wsc{word-spacing:1.488000px;}
.ws5{word-spacing:4.752000px;}
.ws6{word-spacing:5.136000px;}
.wsa{word-spacing:5.280000px;}
.ws4{word-spacing:5.664000px;}
.ws9{word-spacing:5.712000px;}
.ws8{word-spacing:6.480000px;}
.wsd{word-spacing:8.640000px;}
.wse{word-spacing:9.312000px;}
._0{margin-left:-60.816000px;}
._f{margin-left:-58.176000px;}
._b{margin-left:-5.534400px;}
._7{margin-left:-4.512000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.204800px;}
._8{width:1.041600px;}
._5{width:2.078400px;}
._4{width:3.427200px;}
._3{width:4.833600px;}
._a{width:6.110400px;}
._6{width:7.694400px;}
._9{width:9.091200px;}
._d{width:10.358400px;}
._c{width:11.409600px;}
._12{width:14.222400px;}
._10{width:16.291200px;}
._13{width:18.292800px;}
._11{width:19.579200px;}
._e{width:20.755200px;}
._14{width:23.025600px;}
._16{width:94.500000px;}
._15{width:102.144000px;}
._17{width:115.500000px;}
._18{width:228.816000px;}
.fc3{color:rgb(0,84,209);}
.fc4{color:rgb(3,3,3);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,6,60);}
.fc0{color:rgb(255,180,31);}
.fs2{font-size:48.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:31.456950px;}
.y7{bottom:46.849650px;}
.y73{bottom:126.720600px;}
.y72{bottom:144.720600px;}
.y71{bottom:162.720600px;}
.y70{bottom:187.104600px;}
.ya1{bottom:200.760300px;}
.y6f{bottom:211.488600px;}
.ya0{bottom:218.760300px;}
.y6e{bottom:229.488600px;}
.y9f{bottom:236.760300px;}
.y6d{bottom:247.488600px;}
.y9e{bottom:261.132300px;}
.y6c{bottom:265.488600px;}
.y9d{bottom:279.132300px;}
.y6b{bottom:283.488600px;}
.y4c{bottom:291.843000px;}
.y9c{bottom:297.132300px;}
.y6a{bottom:307.860600px;}
.y4b{bottom:309.843000px;}
.y9b{bottom:315.132300px;}
.y69{bottom:325.860600px;}
.y4a{bottom:327.843000px;}
.y9a{bottom:333.132300px;}
.y68{bottom:343.860600px;}
.y49{bottom:347.967000px;}
.y99{bottom:351.132300px;}
.y27{bottom:357.532950px;}
.y48{bottom:365.967000px;}
.y67{bottom:368.232600px;}
.y26{bottom:375.532950px;}
.y47{bottom:383.967000px;}
.y66{bottom:386.232600px;}
.y25{bottom:393.532950px;}
.y98{bottom:394.644150px;}
.y6{bottom:396.156450px;}
.y46{bottom:401.967000px;}
.y65{bottom:404.232600px;}
.y24{bottom:411.532950px;}
.y5{bottom:421.356450px;}
.y45{bottom:422.091000px;}
.y64{bottom:422.232600px;}
.y23{bottom:429.532950px;}
.y44{bottom:440.091000px;}
.y63{bottom:446.604600px;}
.ybc{bottom:446.988000px;}
.y22{bottom:447.532950px;}
.y43{bottom:458.091000px;}
.y97{bottom:462.911550px;}
.y62{bottom:464.604600px;}
.ybb{bottom:464.988000px;}
.y21{bottom:465.532950px;}
.y96{bottom:480.911550px;}
.y42{bottom:482.091000px;}
.y61{bottom:482.604600px;}
.yba{bottom:482.988000px;}
.y20{bottom:483.532950px;}
.y95{bottom:498.911550px;}
.y60{bottom:500.604600px;}
.y1f{bottom:501.532950px;}
.yb9{bottom:513.744000px;}
.y5f{bottom:524.988600px;}
.y1e{bottom:525.532950px;}
.y41{bottom:526.480800px;}
.y94{bottom:529.667550px;}
.yb8{bottom:531.744000px;}
.y5e{bottom:542.988600px;}
.y40{bottom:544.480800px;}
.y93{bottom:547.667550px;}
.yb7{bottom:549.744000px;}
.y5d{bottom:560.988600px;}
.y3f{bottom:562.480800px;}
.y92{bottom:565.667550px;}
.yb6{bottom:567.744000px;}
.y1d{bottom:574.170750px;}
.y5c{bottom:578.988600px;}
.y3e{bottom:580.480800px;}
.y91{bottom:583.667550px;}
.yb5{bottom:585.744000px;}
.y1c{bottom:598.170750px;}
.y3d{bottom:600.604800px;}
.y90{bottom:601.667550px;}
.yb4{bottom:603.744000px;}
.yc3{bottom:614.599200px;}
.y3c{bottom:618.604800px;}
.y8f{bottom:619.667550px;}
.yb3{bottom:621.744000px;}
.y5b{bottom:622.500450px;}
.y8e{bottom:637.667550px;}
.y3b{bottom:638.728800px;}
.yb2{bottom:639.744000px;}
.y1b{bottom:646.808550px;}
.yc2{bottom:647.968200px;}
.y3a{bottom:656.728800px;}
.y8d{bottom:668.423550px;}
.yb1{bottom:670.500000px;}
.y1a{bottom:670.808550px;}
.y39{bottom:674.728800px;}
.yc1{bottom:681.337200px;}
.y5a{bottom:684.384000px;}
.y8c{bottom:686.423550px;}
.yb0{bottom:688.500000px;}
.y38{bottom:698.728800px;}
.y59{bottom:702.384000px;}
.y8b{bottom:704.423550px;}
.yaf{bottom:706.500000px;}
.yc0{bottom:714.706200px;}
.y19{bottom:715.198500px;}
.y58{bottom:720.384000px;}
.y8a{bottom:722.423550px;}
.y18{bottom:735.322500px;}
.yae{bottom:737.256000px;}
.y89{bottom:740.423550px;}
.y4{bottom:743.993400px;}
.y57{bottom:744.768000px;}
.y37{bottom:747.366600px;}
.ybf{bottom:748.075200px;}
.yad{bottom:755.256000px;}
.y17{bottom:755.446500px;}
.y88{bottom:758.423550px;}
.y56{bottom:762.768000px;}
.y36{bottom:765.366600px;}
.yac{bottom:773.256000px;}
.y87{bottom:776.423550px;}
.y16{bottom:779.446350px;}
.y55{bottom:780.768000px;}
.y35{bottom:783.366600px;}
.yab{bottom:791.256000px;}
.y3{bottom:792.008400px;}
.y54{bottom:798.768000px;}
.ybe{bottom:800.587050px;}
.y86{bottom:807.179550px;}
.yaa{bottom:809.256000px;}
.y53{bottom:816.768000px;}
.y15{bottom:823.857900px;}
.y85{bottom:825.179550px;}
.y34{bottom:826.878450px;}
.ybd{bottom:830.587050px;}
.y52{bottom:834.768000px;}
.ya9{bottom:840.012000px;}
.y2{bottom:840.023400px;}
.y84{bottom:843.179550px;}
.y14{bottom:843.981900px;}
.y51{bottom:852.768000px;}
.ya8{bottom:858.012000px;}
.y83{bottom:861.179550px;}
.y13{bottom:864.105900px;}
.y50{bottom:870.768000px;}
.ya7{bottom:876.012000px;}
.y82{bottom:879.179550px;}
.y12{bottom:884.229900px;}
.y1{bottom:888.038400px;}
.y33{bottom:888.768000px;}
.ya6{bottom:894.012000px;}
.y4f{bottom:895.152000px;}
.y81{bottom:897.179550px;}
.y11{bottom:904.353900px;}
.y32{bottom:906.768000px;}
.ya5{bottom:912.012000px;}
.y4e{bottom:913.152000px;}
.y80{bottom:915.179550px;}
.y10{bottom:924.477900px;}
.y31{bottom:924.768000px;}
.ya4{bottom:930.012000px;}
.y4d{bottom:931.152000px;}
.y7f{bottom:933.179550px;}
.yf{bottom:944.601900px;}
.y30{bottom:949.152000px;}
.y7e{bottom:951.179550px;}
.ya3{bottom:960.768000px;}
.ye{bottom:964.725900px;}
.y2f{bottom:967.152000px;}
.y7d{bottom:969.179550px;}
.yd{bottom:984.849900px;}
.y2e{bottom:985.152000px;}
.y7c{bottom:987.179550px;}
.y2d{bottom:1003.152000px;}
.yc{bottom:1009.221900px;}
.ya2{bottom:1009.524000px;}
.y7b{bottom:1017.935550px;}
.y2c{bottom:1027.524000px;}
.y7a{bottom:1035.935550px;}
.yb{bottom:1037.853900px;}
.y2b{bottom:1045.524000px;}
.y79{bottom:1053.935550px;}
.ya{bottom:1062.225900px;}
.y2a{bottom:1063.524000px;}
.y78{bottom:1071.935550px;}
.y29{bottom:1081.524000px;}
.y9{bottom:1086.225900px;}
.y77{bottom:1089.935550px;}
.y76{bottom:1107.935550px;}
.y28{bottom:1125.035850px;}
.y75{bottom:1125.935550px;}
.y74{bottom:1143.935550px;}
.h8{height:36.672000px;}
.h4{height:38.448000px;}
.h9{height:42.912000px;}
.h6{height:45.216000px;}
.h3{height:65.856000px;}
.ha{height:75.096000px;}
.h5{height:79.128000px;}
.h7{height:113.040000px;}
.h2{height:169.560000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:80.681400px;}
.x1{left:85.039350px;}
.x6{left:97.039350px;}
.x9{left:102.043350px;}
.x8{left:106.303350px;}
.x3{left:198.533400px;}
.x7{left:443.739300px;}
.x4{left:444.909450px;}
.x5{left:643.453200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls3{letter-spacing:7.424000pt;}
.ls4{letter-spacing:17.792000pt;}
.ls1{letter-spacing:32.938667pt;}
.wsf{word-spacing:-20.608000pt;}
.ws1{word-spacing:-11.776000pt;}
.ws2{word-spacing:-1.962667pt;}
.ws3{word-spacing:-1.920000pt;}
.ws7{word-spacing:-0.981333pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:1.237333pt;}
.wsc{word-spacing:1.322667pt;}
.ws5{word-spacing:4.224000pt;}
.ws6{word-spacing:4.565333pt;}
.wsa{word-spacing:4.693333pt;}
.ws4{word-spacing:5.034667pt;}
.ws9{word-spacing:5.077333pt;}
.ws8{word-spacing:5.760000pt;}
.wsd{word-spacing:7.680000pt;}
.wse{word-spacing:8.277333pt;}
._0{margin-left:-54.058667pt;}
._f{margin-left:-51.712000pt;}
._b{margin-left:-4.919467pt;}
._7{margin-left:-4.010667pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.070933pt;}
._8{width:0.925867pt;}
._5{width:1.847467pt;}
._4{width:3.046400pt;}
._3{width:4.296533pt;}
._a{width:5.431467pt;}
._6{width:6.839467pt;}
._9{width:8.081067pt;}
._d{width:9.207467pt;}
._c{width:10.141867pt;}
._12{width:12.642133pt;}
._10{width:14.481067pt;}
._13{width:16.260267pt;}
._11{width:17.403733pt;}
._e{width:18.449067pt;}
._14{width:20.467200pt;}
._16{width:84.000000pt;}
._15{width:90.794667pt;}
._17{width:102.666667pt;}
._18{width:203.392000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:27.961733pt;}
.y7{bottom:41.644133pt;}
.y73{bottom:112.640533pt;}
.y72{bottom:128.640533pt;}
.y71{bottom:144.640533pt;}
.y70{bottom:166.315200pt;}
.ya1{bottom:178.453600pt;}
.y6f{bottom:187.989867pt;}
.ya0{bottom:194.453600pt;}
.y6e{bottom:203.989867pt;}
.y9f{bottom:210.453600pt;}
.y6d{bottom:219.989867pt;}
.y9e{bottom:232.117600pt;}
.y6c{bottom:235.989867pt;}
.y9d{bottom:248.117600pt;}
.y6b{bottom:251.989867pt;}
.y4c{bottom:259.416000pt;}
.y9c{bottom:264.117600pt;}
.y6a{bottom:273.653867pt;}
.y4b{bottom:275.416000pt;}
.y9b{bottom:280.117600pt;}
.y69{bottom:289.653867pt;}
.y4a{bottom:291.416000pt;}
.y9a{bottom:296.117600pt;}
.y68{bottom:305.653867pt;}
.y49{bottom:309.304000pt;}
.y99{bottom:312.117600pt;}
.y27{bottom:317.807067pt;}
.y48{bottom:325.304000pt;}
.y67{bottom:327.317867pt;}
.y26{bottom:333.807067pt;}
.y47{bottom:341.304000pt;}
.y66{bottom:343.317867pt;}
.y25{bottom:349.807067pt;}
.y98{bottom:350.794800pt;}
.y6{bottom:352.139067pt;}
.y46{bottom:357.304000pt;}
.y65{bottom:359.317867pt;}
.y24{bottom:365.807067pt;}
.y5{bottom:374.539067pt;}
.y45{bottom:375.192000pt;}
.y64{bottom:375.317867pt;}
.y23{bottom:381.807067pt;}
.y44{bottom:391.192000pt;}
.y63{bottom:396.981867pt;}
.ybc{bottom:397.322667pt;}
.y22{bottom:397.807067pt;}
.y43{bottom:407.192000pt;}
.y97{bottom:411.476933pt;}
.y62{bottom:412.981867pt;}
.ybb{bottom:413.322667pt;}
.y21{bottom:413.807067pt;}
.y96{bottom:427.476933pt;}
.y42{bottom:428.525333pt;}
.y61{bottom:428.981867pt;}
.yba{bottom:429.322667pt;}
.y20{bottom:429.807067pt;}
.y95{bottom:443.476933pt;}
.y60{bottom:444.981867pt;}
.y1f{bottom:445.807067pt;}
.yb9{bottom:456.661333pt;}
.y5f{bottom:466.656533pt;}
.y1e{bottom:467.140400pt;}
.y41{bottom:467.982933pt;}
.y94{bottom:470.815600pt;}
.yb8{bottom:472.661333pt;}
.y5e{bottom:482.656533pt;}
.y40{bottom:483.982933pt;}
.y93{bottom:486.815600pt;}
.yb7{bottom:488.661333pt;}
.y5d{bottom:498.656533pt;}
.y3f{bottom:499.982933pt;}
.y92{bottom:502.815600pt;}
.yb6{bottom:504.661333pt;}
.y1d{bottom:510.374000pt;}
.y5c{bottom:514.656533pt;}
.y3e{bottom:515.982933pt;}
.y91{bottom:518.815600pt;}
.yb5{bottom:520.661333pt;}
.y1c{bottom:531.707333pt;}
.y3d{bottom:533.870933pt;}
.y90{bottom:534.815600pt;}
.yb4{bottom:536.661333pt;}
.yc3{bottom:546.310400pt;}
.y3c{bottom:549.870933pt;}
.y8f{bottom:550.815600pt;}
.yb3{bottom:552.661333pt;}
.y5b{bottom:553.333733pt;}
.y8e{bottom:566.815600pt;}
.y3b{bottom:567.758933pt;}
.yb2{bottom:568.661333pt;}
.y1b{bottom:574.940933pt;}
.yc2{bottom:575.971733pt;}
.y3a{bottom:583.758933pt;}
.y8d{bottom:594.154267pt;}
.yb1{bottom:596.000000pt;}
.y1a{bottom:596.274267pt;}
.y39{bottom:599.758933pt;}
.yc1{bottom:605.633067pt;}
.y5a{bottom:608.341333pt;}
.y8c{bottom:610.154267pt;}
.yb0{bottom:612.000000pt;}
.y38{bottom:621.092267pt;}
.y59{bottom:624.341333pt;}
.y8b{bottom:626.154267pt;}
.yaf{bottom:628.000000pt;}
.yc0{bottom:635.294400pt;}
.y19{bottom:635.732000pt;}
.y58{bottom:640.341333pt;}
.y8a{bottom:642.154267pt;}
.y18{bottom:653.620000pt;}
.yae{bottom:655.338667pt;}
.y89{bottom:658.154267pt;}
.y4{bottom:661.327467pt;}
.y57{bottom:662.016000pt;}
.y37{bottom:664.325867pt;}
.ybf{bottom:664.955733pt;}
.yad{bottom:671.338667pt;}
.y17{bottom:671.508000pt;}
.y88{bottom:674.154267pt;}
.y56{bottom:678.016000pt;}
.y36{bottom:680.325867pt;}
.yac{bottom:687.338667pt;}
.y87{bottom:690.154267pt;}
.y16{bottom:692.841200pt;}
.y55{bottom:694.016000pt;}
.y35{bottom:696.325867pt;}
.yab{bottom:703.338667pt;}
.y3{bottom:704.007467pt;}
.y54{bottom:710.016000pt;}
.ybe{bottom:711.632933pt;}
.y86{bottom:717.492933pt;}
.yaa{bottom:719.338667pt;}
.y53{bottom:726.016000pt;}
.y15{bottom:732.318133pt;}
.y85{bottom:733.492933pt;}
.y34{bottom:735.003067pt;}
.ybd{bottom:738.299600pt;}
.y52{bottom:742.016000pt;}
.ya9{bottom:746.677333pt;}
.y2{bottom:746.687467pt;}
.y84{bottom:749.492933pt;}
.y14{bottom:750.206133pt;}
.y51{bottom:758.016000pt;}
.ya8{bottom:762.677333pt;}
.y83{bottom:765.492933pt;}
.y13{bottom:768.094133pt;}
.y50{bottom:774.016000pt;}
.ya7{bottom:778.677333pt;}
.y82{bottom:781.492933pt;}
.y12{bottom:785.982133pt;}
.y1{bottom:789.367467pt;}
.y33{bottom:790.016000pt;}
.ya6{bottom:794.677333pt;}
.y4f{bottom:795.690667pt;}
.y81{bottom:797.492933pt;}
.y11{bottom:803.870133pt;}
.y32{bottom:806.016000pt;}
.ya5{bottom:810.677333pt;}
.y4e{bottom:811.690667pt;}
.y80{bottom:813.492933pt;}
.y10{bottom:821.758133pt;}
.y31{bottom:822.016000pt;}
.ya4{bottom:826.677333pt;}
.y4d{bottom:827.690667pt;}
.y7f{bottom:829.492933pt;}
.yf{bottom:839.646133pt;}
.y30{bottom:843.690667pt;}
.y7e{bottom:845.492933pt;}
.ya3{bottom:854.016000pt;}
.ye{bottom:857.534133pt;}
.y2f{bottom:859.690667pt;}
.y7d{bottom:861.492933pt;}
.yd{bottom:875.422133pt;}
.y2e{bottom:875.690667pt;}
.y7c{bottom:877.492933pt;}
.y2d{bottom:891.690667pt;}
.yc{bottom:897.086133pt;}
.ya2{bottom:897.354667pt;}
.y7b{bottom:904.831600pt;}
.y2c{bottom:913.354667pt;}
.y7a{bottom:920.831600pt;}
.yb{bottom:922.536800pt;}
.y2b{bottom:929.354667pt;}
.y79{bottom:936.831600pt;}
.ya{bottom:944.200800pt;}
.y2a{bottom:945.354667pt;}
.y78{bottom:952.831600pt;}
.y29{bottom:961.354667pt;}
.y9{bottom:965.534133pt;}
.y77{bottom:968.831600pt;}
.y76{bottom:984.831600pt;}
.y28{bottom:1000.031867pt;}
.y75{bottom:1000.831600pt;}
.y74{bottom:1016.831600pt;}
.h8{height:32.597333pt;}
.h4{height:34.176000pt;}
.h9{height:38.144000pt;}
.h6{height:40.192000pt;}
.h3{height:58.538667pt;}
.ha{height:66.752000pt;}
.h5{height:70.336000pt;}
.h7{height:100.480000pt;}
.h2{height:150.720000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:71.716800pt;}
.x1{left:75.590533pt;}
.x6{left:86.257200pt;}
.x9{left:90.705200pt;}
.x8{left:94.491867pt;}
.x3{left:176.474133pt;}
.x7{left:394.434933pt;}
.x4{left:395.475067pt;}
.x5{left:571.958400pt;}
}




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