
    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_7477e13dc2b22f023a194518.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.220000;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_3a469fca3215d14c3f82b3f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.025000;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_fc23879112db7477e7d6b8ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.204000;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_aa14c7e59d9d8ca880be5b72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_10a6e9dc011bffbbb10b974e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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_ba016173bee53d8dd8930af6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.015000;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_650d3245ab10ef85dd059444.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.204000;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;}
.ls2{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.600000px;}
.ls5{letter-spacing:3.600000px;}
.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;}
}
.ws1{word-spacing:-16.020000px;}
.ws5{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.280000px;}
.ws8{word-spacing:-3.600000px;}
.ws2{word-spacing:-0.600000px;}
.ws7{word-spacing:-0.300000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.300000px;}
.ws9{word-spacing:0.540000px;}
.ws3{word-spacing:0.600000px;}
._8{margin-left:-1722.052800px;}
._5{margin-left:-1718.812800px;}
._9{margin-left:-1717.072800px;}
._0{margin-left:-34.272000px;}
._2{margin-left:-32.880000px;}
._7{margin-left:-26.304000px;}
._1{margin-left:-24.652800px;}
._6{margin-left:-1.200000px;}
._4{width:1.200000px;}
._3{width:65.220000px;}
.fc4{color:transparent;}
.fc3{color:rgb(13,163,245);}
.fc2{color:rgb(134,209,250);}
.fc1{color:rgb(27,28,30);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:34.644750px;}
.ya5{bottom:172.042650px;}
.ya4{bottom:199.446600px;}
.ya3{bottom:218.346600px;}
.y87{bottom:218.976450px;}
.ya2{bottom:237.246600px;}
.y86{bottom:251.976450px;}
.ya1{bottom:256.146600px;}
.ya0{bottom:279.298500px;}
.y85{bottom:284.976450px;}
.y6c{bottom:300.092250px;}
.y84{bottom:317.976450px;}
.y6b{bottom:321.092250px;}
.y2e{bottom:333.529650px;}
.y6a{bottom:342.092250px;}
.y83{bottom:350.976450px;}
.y2d{bottom:354.529650px;}
.y69{bottom:363.092400px;}
.y2c{bottom:375.529650px;}
.y82{bottom:383.976450px;}
.y68{bottom:384.092400px;}
.y2b{bottom:396.529650px;}
.y67{bottom:405.092400px;}
.y2a{bottom:421.781700px;}
.y66{bottom:426.092400px;}
.y29{bottom:442.781700px;}
.y65{bottom:447.092400px;}
.y28{bottom:463.781700px;}
.y64{bottom:468.092400px;}
.y9e{bottom:483.702450px;}
.y27{bottom:484.781700px;}
.y63{bottom:497.596200px;}
.y9d{bottom:504.702450px;}
.y26{bottom:510.033750px;}
.y62{bottom:518.596200px;}
.y25{bottom:531.033750px;}
.y9c{bottom:534.206400px;}
.y61{bottom:539.596200px;}
.y24{bottom:552.033750px;}
.y9b{bottom:555.206400px;}
.y17{bottom:555.443550px;}
.y60{bottom:560.596200px;}
.y55{bottom:563.461800px;}
.y3{bottom:564.361650px;}
.y23{bottom:573.033750px;}
.y9a{bottom:576.206400px;}
.y16{bottom:576.443550px;}
.y73{bottom:576.612000px;}
.y5f{bottom:581.596200px;}
.y54{bottom:596.461800px;}
.y15{bottom:597.443550px;}
.y72{bottom:597.612000px;}
.y22{bottom:598.285650px;}
.y99{bottom:605.710350px;}
.y5e{bottom:611.100150px;}
.y14{bottom:618.443550px;}
.y71{bottom:618.612000px;}
.y2{bottom:618.673500px;}
.y21{bottom:619.285650px;}
.y98{bottom:626.710350px;}
.y53{bottom:629.461800px;}
.y5d{bottom:632.100150px;}
.y13{bottom:639.443550px;}
.y70{bottom:639.612000px;}
.y20{bottom:640.285650px;}
.y97{bottom:647.710350px;}
.y5c{bottom:653.100150px;}
.y12{bottom:660.443550px;}
.y44{bottom:660.612000px;}
.y1f{bottom:661.285650px;}
.y1{bottom:661.873500px;}
.y52{bottom:662.461800px;}
.y96{bottom:668.710350px;}
.y5b{bottom:674.100150px;}
.y11{bottom:681.443550px;}
.y43{bottom:681.612000px;}
.y1e{bottom:686.537550px;}
.y95{bottom:689.710350px;}
.y5a{bottom:695.100150px;}
.y51{bottom:695.461800px;}
.y10{bottom:702.443550px;}
.y42{bottom:702.612000px;}
.y1d{bottom:707.537550px;}
.y59{bottom:716.100150px;}
.y94{bottom:719.214150px;}
.yf{bottom:723.443550px;}
.y41{bottom:723.612000px;}
.ya6{bottom:727.086600px;}
.y50{bottom:728.461800px;}
.y1c{bottom:728.537550px;}
.y81{bottom:733.108050px;}
.y93{bottom:740.214150px;}
.ye{bottom:744.443550px;}
.y40{bottom:744.612000px;}
.y58{bottom:745.604100px;}
.y1b{bottom:753.789600px;}
.y80{bottom:754.108050px;}
.yd{bottom:765.443550px;}
.y3f{bottom:765.612000px;}
.y57{bottom:769.604100px;}
.y92{bottom:769.718100px;}
.y1a{bottom:774.789600px;}
.y7f{bottom:775.108050px;}
.yc{bottom:786.443550px;}
.y3e{bottom:786.612000px;}
.y91{bottom:790.718100px;}
.y19{bottom:795.789600px;}
.y7e{bottom:796.108050px;}
.yb{bottom:807.443550px;}
.y3d{bottom:807.612000px;}
.y56{bottom:810.612000px;}
.y90{bottom:811.718100px;}
.y18{bottom:825.293550px;}
.y7d{bottom:825.612000px;}
.ya{bottom:828.443550px;}
.y3c{bottom:828.612000px;}
.y4f{bottom:831.612000px;}
.y8f{bottom:832.718100px;}
.y6f{bottom:837.115950px;}
.y7c{bottom:846.612000px;}
.y3b{bottom:849.612000px;}
.y4e{bottom:852.612000px;}
.y8e{bottom:853.718100px;}
.y6e{bottom:858.115950px;}
.y7b{bottom:867.612000px;}
.y3a{bottom:870.612000px;}
.y4d{bottom:873.612000px;}
.y8d{bottom:874.718100px;}
.y6d{bottom:879.115950px;}
.y7a{bottom:888.612000px;}
.y4c{bottom:894.612000px;}
.y8c{bottom:895.718100px;}
.y39{bottom:900.115950px;}
.y4b{bottom:915.612000px;}
.y8b{bottom:916.718100px;}
.y79{bottom:918.115950px;}
.y38{bottom:921.115950px;}
.y8a{bottom:937.718100px;}
.y78{bottom:939.115950px;}
.y9{bottom:941.988600px;}
.y37{bottom:942.115950px;}
.y4a{bottom:945.115950px;}
.y89{bottom:958.718100px;}
.y77{bottom:960.115950px;}
.y8{bottom:962.988600px;}
.y36{bottom:963.115950px;}
.y49{bottom:966.115950px;}
.y88{bottom:979.718100px;}
.y76{bottom:981.115950px;}
.y35{bottom:984.115950px;}
.y48{bottom:987.115950px;}
.y75{bottom:1002.115950px;}
.y34{bottom:1005.115950px;}
.y47{bottom:1008.115950px;}
.y7{bottom:1009.500300px;}
.y33{bottom:1026.115950px;}
.y9f{bottom:1027.038150px;}
.y46{bottom:1029.115950px;}
.y74{bottom:1031.619900px;}
.y6{bottom:1048.500300px;}
.y45{bottom:1050.115950px;}
.y32{bottom:1055.619900px;}
.y31{bottom:1079.619900px;}
.y5{bottom:1095.868800px;}
.y30{bottom:1103.619900px;}
.y4{bottom:1122.868800px;}
.h9{height:45.420000px;}
.h7{height:46.200000px;}
.hf{height:50.436000px;}
.he{height:51.138000px;}
.h8{height:56.040000px;}
.hb{height:56.820000px;}
.ha{height:68.184000px;}
.h3{height:72.672000px;}
.h5{height:78.456000px;}
.h4{height:79.548000px;}
.hd{height:88.800000px;}
.hc{height:89.664000px;}
.h6{height:90.840000px;}
.h2{height:136.368000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:46.438350px;}
.x2{left:63.609900px;}
.x9{left:66.413400px;}
.x8{left:71.987400px;}
.x3{left:106.299150px;}
.x5{left:114.803100px;}
.x4{left:116.559000px;}
.xa{left:127.559100px;}
.xb{left:196.452900px;}
.x6{left:488.976450px;}
.x7{left:515.976450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.533333pt;}
.ls5{letter-spacing:3.200000pt;}
.ws1{word-spacing:-14.240000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.693333pt;}
.ws8{word-spacing:-3.200000pt;}
.ws2{word-spacing:-0.533333pt;}
.ws7{word-spacing:-0.266667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.266667pt;}
.ws9{word-spacing:0.480000pt;}
.ws3{word-spacing:0.533333pt;}
._8{margin-left:-1530.713600pt;}
._5{margin-left:-1527.833600pt;}
._9{margin-left:-1526.286933pt;}
._0{margin-left:-30.464000pt;}
._2{margin-left:-29.226667pt;}
._7{margin-left:-23.381333pt;}
._1{margin-left:-21.913600pt;}
._6{margin-left:-1.066667pt;}
._4{width:1.066667pt;}
._3{width:57.973333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:30.795333pt;}
.ya5{bottom:152.926800pt;}
.ya4{bottom:177.285867pt;}
.ya3{bottom:194.085867pt;}
.y87{bottom:194.645733pt;}
.ya2{bottom:210.885867pt;}
.y86{bottom:223.979067pt;}
.ya1{bottom:227.685867pt;}
.ya0{bottom:248.265333pt;}
.y85{bottom:253.312400pt;}
.y6c{bottom:266.748667pt;}
.y84{bottom:282.645733pt;}
.y6b{bottom:285.415333pt;}
.y2e{bottom:296.470800pt;}
.y6a{bottom:304.082000pt;}
.y83{bottom:311.979067pt;}
.y2d{bottom:315.137467pt;}
.y69{bottom:322.748800pt;}
.y2c{bottom:333.804133pt;}
.y82{bottom:341.312400pt;}
.y68{bottom:341.415467pt;}
.y2b{bottom:352.470800pt;}
.y67{bottom:360.082133pt;}
.y2a{bottom:374.917067pt;}
.y66{bottom:378.748800pt;}
.y29{bottom:393.583733pt;}
.y65{bottom:397.415467pt;}
.y28{bottom:412.250400pt;}
.y64{bottom:416.082133pt;}
.y9e{bottom:429.957733pt;}
.y27{bottom:430.917067pt;}
.y63{bottom:442.307733pt;}
.y9d{bottom:448.624400pt;}
.y26{bottom:453.363333pt;}
.y62{bottom:460.974400pt;}
.y25{bottom:472.030000pt;}
.y9c{bottom:474.850133pt;}
.y61{bottom:479.641067pt;}
.y24{bottom:490.696667pt;}
.y9b{bottom:493.516800pt;}
.y17{bottom:493.727600pt;}
.y60{bottom:498.307733pt;}
.y55{bottom:500.854933pt;}
.y3{bottom:501.654800pt;}
.y23{bottom:509.363333pt;}
.y9a{bottom:512.183467pt;}
.y16{bottom:512.394267pt;}
.y73{bottom:512.544000pt;}
.y5f{bottom:516.974400pt;}
.y54{bottom:530.188267pt;}
.y15{bottom:531.060933pt;}
.y72{bottom:531.210667pt;}
.y22{bottom:531.809467pt;}
.y99{bottom:538.409200pt;}
.y5e{bottom:543.200133pt;}
.y14{bottom:549.727600pt;}
.y71{bottom:549.877333pt;}
.y2{bottom:549.932000pt;}
.y21{bottom:550.476133pt;}
.y98{bottom:557.075867pt;}
.y53{bottom:559.521600pt;}
.y5d{bottom:561.866800pt;}
.y13{bottom:568.394267pt;}
.y70{bottom:568.544000pt;}
.y20{bottom:569.142800pt;}
.y97{bottom:575.742533pt;}
.y5c{bottom:580.533467pt;}
.y12{bottom:587.060933pt;}
.y44{bottom:587.210667pt;}
.y1f{bottom:587.809467pt;}
.y1{bottom:588.332000pt;}
.y52{bottom:588.854933pt;}
.y96{bottom:594.409200pt;}
.y5b{bottom:599.200133pt;}
.y11{bottom:605.727600pt;}
.y43{bottom:605.877333pt;}
.y1e{bottom:610.255600pt;}
.y95{bottom:613.075867pt;}
.y5a{bottom:617.866800pt;}
.y51{bottom:618.188267pt;}
.y10{bottom:624.394267pt;}
.y42{bottom:624.544000pt;}
.y1d{bottom:628.922267pt;}
.y59{bottom:636.533467pt;}
.y94{bottom:639.301467pt;}
.yf{bottom:643.060933pt;}
.y41{bottom:643.210667pt;}
.ya6{bottom:646.299200pt;}
.y50{bottom:647.521600pt;}
.y1c{bottom:647.588933pt;}
.y81{bottom:651.651600pt;}
.y93{bottom:657.968133pt;}
.ye{bottom:661.727600pt;}
.y40{bottom:661.877333pt;}
.y58{bottom:662.759200pt;}
.y1b{bottom:670.035200pt;}
.y80{bottom:670.318267pt;}
.yd{bottom:680.394267pt;}
.y3f{bottom:680.544000pt;}
.y57{bottom:684.092533pt;}
.y92{bottom:684.193867pt;}
.y1a{bottom:688.701867pt;}
.y7f{bottom:688.984933pt;}
.yc{bottom:699.060933pt;}
.y3e{bottom:699.210667pt;}
.y91{bottom:702.860533pt;}
.y19{bottom:707.368533pt;}
.y7e{bottom:707.651600pt;}
.yb{bottom:717.727600pt;}
.y3d{bottom:717.877333pt;}
.y56{bottom:720.544000pt;}
.y90{bottom:721.527200pt;}
.y18{bottom:733.594267pt;}
.y7d{bottom:733.877333pt;}
.ya{bottom:736.394267pt;}
.y3c{bottom:736.544000pt;}
.y4f{bottom:739.210667pt;}
.y8f{bottom:740.193867pt;}
.y6f{bottom:744.103067pt;}
.y7c{bottom:752.544000pt;}
.y3b{bottom:755.210667pt;}
.y4e{bottom:757.877333pt;}
.y8e{bottom:758.860533pt;}
.y6e{bottom:762.769733pt;}
.y7b{bottom:771.210667pt;}
.y3a{bottom:773.877333pt;}
.y4d{bottom:776.544000pt;}
.y8d{bottom:777.527200pt;}
.y6d{bottom:781.436400pt;}
.y7a{bottom:789.877333pt;}
.y4c{bottom:795.210667pt;}
.y8c{bottom:796.193867pt;}
.y39{bottom:800.103067pt;}
.y4b{bottom:813.877333pt;}
.y8b{bottom:814.860533pt;}
.y79{bottom:816.103067pt;}
.y38{bottom:818.769733pt;}
.y8a{bottom:833.527200pt;}
.y78{bottom:834.769733pt;}
.y9{bottom:837.323200pt;}
.y37{bottom:837.436400pt;}
.y4a{bottom:840.103067pt;}
.y89{bottom:852.193867pt;}
.y77{bottom:853.436400pt;}
.y8{bottom:855.989867pt;}
.y36{bottom:856.103067pt;}
.y49{bottom:858.769733pt;}
.y88{bottom:870.860533pt;}
.y76{bottom:872.103067pt;}
.y35{bottom:874.769733pt;}
.y48{bottom:877.436400pt;}
.y75{bottom:890.769733pt;}
.y34{bottom:893.436400pt;}
.y47{bottom:896.103067pt;}
.y7{bottom:897.333600pt;}
.y33{bottom:912.103067pt;}
.y9f{bottom:912.922800pt;}
.y46{bottom:914.769733pt;}
.y74{bottom:916.995467pt;}
.y6{bottom:932.000267pt;}
.y45{bottom:933.436400pt;}
.y32{bottom:938.328800pt;}
.y31{bottom:959.662133pt;}
.y5{bottom:974.105600pt;}
.y30{bottom:980.995467pt;}
.y4{bottom:998.105600pt;}
.h9{height:40.373333pt;}
.h7{height:41.066667pt;}
.hf{height:44.832000pt;}
.he{height:45.456000pt;}
.h8{height:49.813333pt;}
.hb{height:50.506667pt;}
.ha{height:60.608000pt;}
.h3{height:64.597333pt;}
.h5{height:69.738667pt;}
.h4{height:70.709333pt;}
.hd{height:78.933333pt;}
.hc{height:79.701333pt;}
.h6{height:80.746667pt;}
.h2{height:121.216000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:41.278533pt;}
.x2{left:56.542133pt;}
.x9{left:59.034133pt;}
.x8{left:63.988800pt;}
.x3{left:94.488133pt;}
.x5{left:102.047200pt;}
.x4{left:103.608000pt;}
.xa{left:113.385867pt;}
.xb{left:174.624800pt;}
.x6{left:434.645733pt;}
.x7{left:458.645733pt;}
}




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