
    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_d89bf2b38101beabe30ae497.woff')format("woff");}.ff1{font-family:ff1;line-height:0.683594;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_08535f87f6c70e4324527704.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_9ea60ed8e0fa5dfe08a2cbf3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_18ad7f5809e47d5eb05ded84.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_8e3e4509a29ddeeedd4b687e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_2b39417e21e8bb73ac913b53.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_cead24569de1b9818d64518b.woff')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:23.976000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000600px;}
.ls15{letter-spacing:0.012000px;}
.ls17{letter-spacing:0.016200px;}
.lsc{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.018600px;}
.lse{letter-spacing:1.147200px;}
.lsd{letter-spacing:1.147800px;}
.ls16{letter-spacing:1.664400px;}
.lsf{letter-spacing:1.989000px;}
.ls13{letter-spacing:2.199000px;}
.lsa{letter-spacing:2.976000px;}
.ls2{letter-spacing:3.000000px;}
.ls10{letter-spacing:3.600000px;}
.ls11{letter-spacing:3.621000px;}
.ls7{letter-spacing:4.197333px;}
.ls5{letter-spacing:4.200000px;}
.ls8{letter-spacing:4.210000px;}
.lsb{letter-spacing:4.306200px;}
.ls6{letter-spacing:5.400000px;}
.ls0{letter-spacing:6.600000px;}
.ls14{letter-spacing:7.807200px;}
.ls3{letter-spacing:8.400000px;}
.ls1{letter-spacing:10.800000px;}
.ls18{letter-spacing:19.800000px;}
.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;}
}
.wsb{word-spacing:-36.102000px;}
.ws9{word-spacing:-32.004000px;}
.ws1{word-spacing:-23.604000px;}
.wsc{word-spacing:-20.460000px;}
.ws6{word-spacing:-20.232000px;}
.ws2{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.860000px;}
.wsa{word-spacing:-16.302000px;}
.ws8{word-spacing:-11.795256px;}
.ws5{word-spacing:-10.368072px;}
.ws7{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-19.800000px;}
._15{margin-left:-14.794800px;}
._14{margin-left:-12.566000px;}
._9{margin-left:-10.908000px;}
._7{margin-left:-8.748000px;}
._16{margin-left:-7.644000px;}
._3{margin-left:-6.480000px;}
._6{margin-left:-5.280000px;}
._8{margin-left:-3.360000px;}
._d{margin-left:-2.298000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._b{width:2.670000px;}
._13{width:3.978000px;}
._10{width:5.322000px;}
._c{width:7.272000px;}
._a{width:8.400000px;}
._12{width:9.474000px;}
._e{width:10.494000px;}
._f{width:11.502000px;}
._18{width:13.248000px;}
._19{width:14.281800px;}
._1a{width:18.216000px;}
._1c{width:55.298400px;}
._17{width:57.719820px;}
._11{width:61.920000px;}
._0{width:68.706000px;}
._2{width:369.208200px;}
._5{width:738.306000px;}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs8{font-size:34.980000px;}
.fs7{font-size:41.976000px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:58.081050px;}
.y2{bottom:58.081200px;}
.y20{bottom:58.081350px;}
.yaa{bottom:58.081800px;}
.y49{bottom:79.381050px;}
.y1{bottom:79.381200px;}
.y1f{bottom:79.381350px;}
.ya9{bottom:79.381800px;}
.y73{bottom:132.553950px;}
.y48{bottom:132.554250px;}
.y7b{bottom:133.304850px;}
.y1e{bottom:145.560750px;}
.y7a{bottom:155.804850px;}
.y72{bottom:165.750900px;}
.y1d{bottom:168.060750px;}
.y79{bottom:178.304850px;}
.y47{bottom:180.771150px;}
.y71{bottom:188.250900px;}
.y78{bottom:200.804850px;}
.y1c{bottom:201.190650px;}
.y46{bottom:203.271150px;}
.y70{bottom:210.750900px;}
.y77{bottom:223.304850px;}
.y45{bottom:225.771150px;}
.y1b{bottom:234.190650px;}
.y76{bottom:245.804850px;}
.y44{bottom:248.271150px;}
.y94{bottom:253.800900px;}
.y1a{bottom:256.690650px;}
.y6f{bottom:264.254850px;}
.y75{bottom:268.304850px;}
.y43{bottom:270.771150px;}
.y93{bottom:276.300900px;}
.y7d{bottom:290.804850px;}
.y42{bottom:293.271150px;}
.y92{bottom:299.100900px;}
.y19{bottom:310.194600px;}
.y74{bottom:313.304850px;}
.y41{bottom:315.771150px;}
.y91{bottom:321.900900px;}
.y7c{bottom:335.804850px;}
.y40{bottom:338.271150px;}
.y90{bottom:344.700900px;}
.y6e{bottom:358.304850px;}
.y3f{bottom:360.771150px;}
.y8f{bottom:367.500900px;}
.y6d{bottom:380.804850px;}
.y3e{bottom:383.271150px;}
.y8e{bottom:390.300900px;}
.yc9{bottom:391.006500px;}
.y18{bottom:402.894600px;}
.y6c{bottom:403.304850px;}
.y3d{bottom:405.771150px;}
.y8d{bottom:413.100900px;}
.yc8{bottom:413.506500px;}
.y17{bottom:425.394600px;}
.y6b{bottom:425.804850px;}
.y3c{bottom:428.271150px;}
.y8c{bottom:435.900900px;}
.yc7{bottom:436.006500px;}
.y16{bottom:447.894600px;}
.y6a{bottom:448.304850px;}
.y3b{bottom:450.771150px;}
.yc6{bottom:458.506500px;}
.y8b{bottom:458.700900px;}
.y15{bottom:470.394600px;}
.y69{bottom:470.804850px;}
.y3a{bottom:473.271150px;}
.y8a{bottom:481.500900px;}
.y14{bottom:492.894600px;}
.y68{bottom:493.304850px;}
.y39{bottom:495.771150px;}
.y89{bottom:504.300900px;}
.y13{bottom:515.394600px;}
.y67{bottom:515.804850px;}
.y38{bottom:518.271150px;}
.y88{bottom:527.100900px;}
.yc5{bottom:529.606500px;}
.y12{bottom:537.894600px;}
.y66{bottom:538.304850px;}
.y37{bottom:540.771150px;}
.y87{bottom:549.900900px;}
.y11{bottom:560.394600px;}
.y65{bottom:560.804850px;}
.y36{bottom:563.271150px;}
.y86{bottom:572.700900px;}
.y10{bottom:582.894600px;}
.y64{bottom:583.304850px;}
.y35{bottom:585.771150px;}
.yc4{bottom:592.606500px;}
.yf{bottom:605.394600px;}
.y63{bottom:605.804850px;}
.y34{bottom:608.271150px;}
.yc3{bottom:612.406500px;}
.y85{bottom:626.504850px;}
.ye{bottom:627.894600px;}
.y62{bottom:628.304850px;}
.y33{bottom:630.771150px;}
.yc2{bottom:632.206500px;}
.yd{bottom:650.394600px;}
.y61{bottom:650.804850px;}
.yc1{bottom:652.006500px;}
.y32{bottom:653.271150px;}
.yc0{bottom:671.806500px;}
.yc{bottom:672.894600px;}
.y60{bottom:673.304850px;}
.y31{bottom:675.771150px;}
.ybf{bottom:691.606500px;}
.yb{bottom:695.394600px;}
.y5f{bottom:695.804850px;}
.ya8{bottom:697.298400px;}
.y30{bottom:698.271150px;}
.ybe{bottom:711.406500px;}
.ya{bottom:717.894600px;}
.y5e{bottom:718.304850px;}
.y84{bottom:719.204850px;}
.y2f{bottom:720.771150px;}
.ybd{bottom:731.206500px;}
.ya7{bottom:736.898400px;}
.y9{bottom:740.394600px;}
.y5d{bottom:740.804850px;}
.y83{bottom:741.704850px;}
.y2e{bottom:743.271150px;}
.ybc{bottom:751.006500px;}
.ya6{bottom:756.698400px;}
.y8{bottom:762.894600px;}
.y5c{bottom:763.304850px;}
.y82{bottom:764.204850px;}
.y2d{bottom:765.771150px;}
.ybb{bottom:770.806500px;}
.ya5{bottom:776.498400px;}
.y5b{bottom:785.804850px;}
.y81{bottom:786.704700px;}
.y2c{bottom:788.271150px;}
.yba{bottom:790.606500px;}
.ya4{bottom:796.298400px;}
.y5a{bottom:808.304850px;}
.y80{bottom:809.204700px;}
.yb9{bottom:810.406500px;}
.y2b{bottom:810.771150px;}
.ya3{bottom:816.098400px;}
.y7{bottom:816.398550px;}
.yb8{bottom:830.206500px;}
.y59{bottom:830.804850px;}
.y7f{bottom:831.704700px;}
.y2a{bottom:833.271150px;}
.ya2{bottom:835.898400px;}
.yb7{bottom:850.006500px;}
.y58{bottom:853.304850px;}
.y7e{bottom:854.204700px;}
.ya1{bottom:855.698400px;}
.y29{bottom:855.771150px;}
.yb6{bottom:869.806500px;}
.ya0{bottom:875.498400px;}
.y57{bottom:875.804850px;}
.yb5{bottom:889.606500px;}
.y9f{bottom:895.298400px;}
.y56{bottom:898.304850px;}
.y6{bottom:909.098550px;}
.y28{bottom:909.274950px;}
.yb4{bottom:909.406500px;}
.y9e{bottom:915.098400px;}
.y55{bottom:920.804850px;}
.yb3{bottom:929.206500px;}
.y9d{bottom:934.898400px;}
.y54{bottom:943.304850px;}
.yb2{bottom:949.006500px;}
.y9c{bottom:954.698400px;}
.y53{bottom:965.804850px;}
.yb1{bottom:968.806500px;}
.y5{bottom:972.098550px;}
.y9b{bottom:974.498400px;}
.y52{bottom:988.304850px;}
.yb0{bottom:988.606500px;}
.y9a{bottom:994.298400px;}
.y27{bottom:1001.975100px;}
.yaf{bottom:1008.406500px;}
.y51{bottom:1010.804850px;}
.y99{bottom:1014.098400px;}
.y26{bottom:1023.575100px;}
.yae{bottom:1028.206500px;}
.y50{bottom:1033.304850px;}
.y98{bottom:1033.898400px;}
.y97{bottom:1053.698400px;}
.y4f{bottom:1055.804850px;}
.y25{bottom:1055.805000px;}
.y96{bottom:1073.498400px;}
.y4e{bottom:1078.304850px;}
.y24{bottom:1078.305000px;}
.yad{bottom:1090.306500px;}
.y4d{bottom:1100.804850px;}
.y23{bottom:1100.805000px;}
.y4{bottom:1103.002500px;}
.yac{bottom:1121.310450px;}
.y4c{bottom:1123.304850px;}
.y22{bottom:1123.305000px;}
.y95{bottom:1124.302350px;}
.y3{bottom:1124.302500px;}
.y4b{bottom:1176.323550px;}
.y21{bottom:1176.323700px;}
.yab{bottom:1176.324300px;}
.h9{height:29.702256px;}
.h2{height:43.989258px;}
.h3{height:45.852539px;}
.ha{height:48.399902px;}
.h8{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x2{left:127.559100px;}
.x3{left:154.559100px;}
.x4{left:475.499700px;}
.x8{left:522.854400px;}
.x6{left:608.706000px;}
.x9{left:634.932450px;}
.x7{left:640.003800px;}
.x5{left:683.524350px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:21.312000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000533pt;}
.ls15{letter-spacing:0.010667pt;}
.ls17{letter-spacing:0.014400pt;}
.lsc{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.016533pt;}
.lse{letter-spacing:1.019733pt;}
.lsd{letter-spacing:1.020267pt;}
.ls16{letter-spacing:1.479467pt;}
.lsf{letter-spacing:1.768000pt;}
.ls13{letter-spacing:1.954667pt;}
.lsa{letter-spacing:2.645333pt;}
.ls2{letter-spacing:2.666667pt;}
.ls10{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.218667pt;}
.ls7{letter-spacing:3.730963pt;}
.ls5{letter-spacing:3.733333pt;}
.ls8{letter-spacing:3.742222pt;}
.lsb{letter-spacing:3.827733pt;}
.ls6{letter-spacing:4.800000pt;}
.ls0{letter-spacing:5.866667pt;}
.ls14{letter-spacing:6.939733pt;}
.ls3{letter-spacing:7.466667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls18{letter-spacing:17.600000pt;}
.wsb{word-spacing:-32.090667pt;}
.ws9{word-spacing:-28.448000pt;}
.ws1{word-spacing:-20.981333pt;}
.wsc{word-spacing:-18.186667pt;}
.ws6{word-spacing:-17.984000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.986667pt;}
.wsa{word-spacing:-14.490667pt;}
.ws8{word-spacing:-10.484672pt;}
.ws5{word-spacing:-9.216064pt;}
.ws7{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-17.600000pt;}
._15{margin-left:-13.150933pt;}
._14{margin-left:-11.169778pt;}
._9{margin-left:-9.696000pt;}
._7{margin-left:-7.776000pt;}
._16{margin-left:-6.794667pt;}
._3{margin-left:-5.760000pt;}
._6{margin-left:-4.693333pt;}
._8{margin-left:-2.986667pt;}
._d{margin-left:-2.042667pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._b{width:2.373333pt;}
._13{width:3.536000pt;}
._10{width:4.730667pt;}
._c{width:6.464000pt;}
._a{width:7.466667pt;}
._12{width:8.421333pt;}
._e{width:9.328000pt;}
._f{width:10.224000pt;}
._18{width:11.776000pt;}
._19{width:12.694933pt;}
._1a{width:16.192000pt;}
._1c{width:49.154133pt;}
._17{width:51.306507pt;}
._11{width:55.040000pt;}
._0{width:61.072000pt;}
._2{width:328.185067pt;}
._5{width:656.272000pt;}
.fs8{font-size:31.093333pt;}
.fs7{font-size:37.312000pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:51.627600pt;}
.y2{bottom:51.627733pt;}
.y20{bottom:51.627867pt;}
.yaa{bottom:51.628267pt;}
.y49{bottom:70.560933pt;}
.y1{bottom:70.561067pt;}
.y1f{bottom:70.561200pt;}
.ya9{bottom:70.561600pt;}
.y73{bottom:117.825733pt;}
.y48{bottom:117.826000pt;}
.y7b{bottom:118.493200pt;}
.y1e{bottom:129.387333pt;}
.y7a{bottom:138.493200pt;}
.y72{bottom:147.334133pt;}
.y1d{bottom:149.387333pt;}
.y79{bottom:158.493200pt;}
.y47{bottom:160.685467pt;}
.y71{bottom:167.334133pt;}
.y78{bottom:178.493200pt;}
.y1c{bottom:178.836133pt;}
.y46{bottom:180.685467pt;}
.y70{bottom:187.334133pt;}
.y77{bottom:198.493200pt;}
.y45{bottom:200.685467pt;}
.y1b{bottom:208.169467pt;}
.y76{bottom:218.493200pt;}
.y44{bottom:220.685467pt;}
.y94{bottom:225.600800pt;}
.y1a{bottom:228.169467pt;}
.y6f{bottom:234.893200pt;}
.y75{bottom:238.493200pt;}
.y43{bottom:240.685467pt;}
.y93{bottom:245.600800pt;}
.y7d{bottom:258.493200pt;}
.y42{bottom:260.685467pt;}
.y92{bottom:265.867467pt;}
.y19{bottom:275.728533pt;}
.y74{bottom:278.493200pt;}
.y41{bottom:280.685467pt;}
.y91{bottom:286.134133pt;}
.y7c{bottom:298.493200pt;}
.y40{bottom:300.685467pt;}
.y90{bottom:306.400800pt;}
.y6e{bottom:318.493200pt;}
.y3f{bottom:320.685467pt;}
.y8f{bottom:326.667467pt;}
.y6d{bottom:338.493200pt;}
.y3e{bottom:340.685467pt;}
.y8e{bottom:346.934133pt;}
.yc9{bottom:347.561333pt;}
.y18{bottom:358.128533pt;}
.y6c{bottom:358.493200pt;}
.y3d{bottom:360.685467pt;}
.y8d{bottom:367.200800pt;}
.yc8{bottom:367.561333pt;}
.y17{bottom:378.128533pt;}
.y6b{bottom:378.493200pt;}
.y3c{bottom:380.685467pt;}
.y8c{bottom:387.467467pt;}
.yc7{bottom:387.561333pt;}
.y16{bottom:398.128533pt;}
.y6a{bottom:398.493200pt;}
.y3b{bottom:400.685467pt;}
.yc6{bottom:407.561333pt;}
.y8b{bottom:407.734133pt;}
.y15{bottom:418.128533pt;}
.y69{bottom:418.493200pt;}
.y3a{bottom:420.685467pt;}
.y8a{bottom:428.000800pt;}
.y14{bottom:438.128533pt;}
.y68{bottom:438.493200pt;}
.y39{bottom:440.685467pt;}
.y89{bottom:448.267467pt;}
.y13{bottom:458.128533pt;}
.y67{bottom:458.493200pt;}
.y38{bottom:460.685467pt;}
.y88{bottom:468.534133pt;}
.yc5{bottom:470.761333pt;}
.y12{bottom:478.128533pt;}
.y66{bottom:478.493200pt;}
.y37{bottom:480.685467pt;}
.y87{bottom:488.800800pt;}
.y11{bottom:498.128533pt;}
.y65{bottom:498.493200pt;}
.y36{bottom:500.685467pt;}
.y86{bottom:509.067467pt;}
.y10{bottom:518.128533pt;}
.y64{bottom:518.493200pt;}
.y35{bottom:520.685467pt;}
.yc4{bottom:526.761333pt;}
.yf{bottom:538.128533pt;}
.y63{bottom:538.493200pt;}
.y34{bottom:540.685467pt;}
.yc3{bottom:544.361333pt;}
.y85{bottom:556.893200pt;}
.ye{bottom:558.128533pt;}
.y62{bottom:558.493200pt;}
.y33{bottom:560.685467pt;}
.yc2{bottom:561.961333pt;}
.yd{bottom:578.128533pt;}
.y61{bottom:578.493200pt;}
.yc1{bottom:579.561333pt;}
.y32{bottom:580.685467pt;}
.yc0{bottom:597.161333pt;}
.yc{bottom:598.128533pt;}
.y60{bottom:598.493200pt;}
.y31{bottom:600.685467pt;}
.ybf{bottom:614.761333pt;}
.yb{bottom:618.128533pt;}
.y5f{bottom:618.493200pt;}
.ya8{bottom:619.820800pt;}
.y30{bottom:620.685467pt;}
.ybe{bottom:632.361333pt;}
.ya{bottom:638.128533pt;}
.y5e{bottom:638.493200pt;}
.y84{bottom:639.293200pt;}
.y2f{bottom:640.685467pt;}
.ybd{bottom:649.961333pt;}
.ya7{bottom:655.020800pt;}
.y9{bottom:658.128533pt;}
.y5d{bottom:658.493200pt;}
.y83{bottom:659.293200pt;}
.y2e{bottom:660.685467pt;}
.ybc{bottom:667.561333pt;}
.ya6{bottom:672.620800pt;}
.y8{bottom:678.128533pt;}
.y5c{bottom:678.493200pt;}
.y82{bottom:679.293200pt;}
.y2d{bottom:680.685467pt;}
.ybb{bottom:685.161333pt;}
.ya5{bottom:690.220800pt;}
.y5b{bottom:698.493200pt;}
.y81{bottom:699.293067pt;}
.y2c{bottom:700.685467pt;}
.yba{bottom:702.761333pt;}
.ya4{bottom:707.820800pt;}
.y5a{bottom:718.493200pt;}
.y80{bottom:719.293067pt;}
.yb9{bottom:720.361333pt;}
.y2b{bottom:720.685467pt;}
.ya3{bottom:725.420800pt;}
.y7{bottom:725.687600pt;}
.yb8{bottom:737.961333pt;}
.y59{bottom:738.493200pt;}
.y7f{bottom:739.293067pt;}
.y2a{bottom:740.685467pt;}
.ya2{bottom:743.020800pt;}
.yb7{bottom:755.561333pt;}
.y58{bottom:758.493200pt;}
.y7e{bottom:759.293067pt;}
.ya1{bottom:760.620800pt;}
.y29{bottom:760.685467pt;}
.yb6{bottom:773.161333pt;}
.ya0{bottom:778.220800pt;}
.y57{bottom:778.493200pt;}
.yb5{bottom:790.761333pt;}
.y9f{bottom:795.820800pt;}
.y56{bottom:798.493200pt;}
.y6{bottom:808.087600pt;}
.y28{bottom:808.244400pt;}
.yb4{bottom:808.361333pt;}
.y9e{bottom:813.420800pt;}
.y55{bottom:818.493200pt;}
.yb3{bottom:825.961333pt;}
.y9d{bottom:831.020800pt;}
.y54{bottom:838.493200pt;}
.yb2{bottom:843.561333pt;}
.y9c{bottom:848.620800pt;}
.y53{bottom:858.493200pt;}
.yb1{bottom:861.161333pt;}
.y5{bottom:864.087600pt;}
.y9b{bottom:866.220800pt;}
.y52{bottom:878.493200pt;}
.yb0{bottom:878.761333pt;}
.y9a{bottom:883.820800pt;}
.y27{bottom:890.644533pt;}
.yaf{bottom:896.361333pt;}
.y51{bottom:898.493200pt;}
.y99{bottom:901.420800pt;}
.y26{bottom:909.844533pt;}
.yae{bottom:913.961333pt;}
.y50{bottom:918.493200pt;}
.y98{bottom:919.020800pt;}
.y97{bottom:936.620800pt;}
.y4f{bottom:938.493200pt;}
.y25{bottom:938.493333pt;}
.y96{bottom:954.220800pt;}
.y4e{bottom:958.493200pt;}
.y24{bottom:958.493333pt;}
.yad{bottom:969.161333pt;}
.y4d{bottom:978.493200pt;}
.y23{bottom:978.493333pt;}
.y4{bottom:980.446667pt;}
.yac{bottom:996.720400pt;}
.y4c{bottom:998.493200pt;}
.y22{bottom:998.493333pt;}
.y95{bottom:999.379867pt;}
.y3{bottom:999.380000pt;}
.y4b{bottom:1045.620933pt;}
.y21{bottom:1045.621067pt;}
.yab{bottom:1045.621600pt;}
.h9{height:26.402005pt;}
.h2{height:39.101562pt;}
.h3{height:40.757812pt;}
.ha{height:43.022135pt;}
.h8{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x2{left:113.385867pt;}
.x3{left:137.385867pt;}
.x4{left:422.666400pt;}
.x8{left:464.759467pt;}
.x6{left:541.072000pt;}
.x9{left:564.384400pt;}
.x7{left:568.892267pt;}
.x5{left:607.577200pt;}
}




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