
    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_848a6835d5bef9a096ac2de5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.860352;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_58e6c86c2cd806e070cbe921.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_dbfdc324ecb4fad19aa871a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_21bbd860bc8fc4374960673c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_6ff33f2f5d603808dcc64f8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_5f7b8674813c53824735434b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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_dbfdc324ecb4fad19aa871a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls9{letter-spacing:-6.090000px;}
.ls7{letter-spacing:-5.460000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004608px;}
.ls5{letter-spacing:0.005208px;}
.ls0{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.017400px;}
.ls2{letter-spacing:0.023400px;}
.lsa{letter-spacing:0.420000px;}
.ls8{letter-spacing:8.256000px;}
.ls3{letter-spacing:70.027800px;}
.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;}
}
.ws3{word-spacing:-15.012000px;}
.ws2{word-spacing:-13.344000px;}
.ws1{word-spacing:-8.751996px;}
.ws7{word-spacing:-3.078000px;}
.wsc{word-spacing:-0.420000px;}
.ws0{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:5.460000px;}
.ws9{word-spacing:6.090000px;}
.ws6{word-spacing:6.264000px;}
.ws8{word-spacing:12.312000px;}
.wsb{word-spacing:13.932000px;}
.wsa{word-spacing:20.628000px;}
._f{margin-left:-6.960600px;}
._2{margin-left:-5.602800px;}
._3{margin-left:-4.460400px;}
._11{margin-left:-3.364200px;}
._4{margin-left:-1.994400px;}
._c{width:1.252800px;}
._1{width:2.872800px;}
._6{width:4.455000px;}
._0{width:5.468400px;}
._9{width:7.178400px;}
._10{width:8.564400px;}
._17{width:9.784800px;}
._e{width:10.962000px;}
._16{width:12.560400px;}
._5{width:13.975200px;}
._1b{width:14.994000px;}
._b{width:16.502400px;}
._15{width:17.614800px;}
._13{width:19.121400px;}
._8{width:20.687400px;}
._18{width:22.685400px;}
._14{width:24.123000px;}
._d{width:25.374600px;}
._12{width:27.583200px;}
._7{width:28.652400px;}
._19{width:29.937600px;}
._1a{width:38.346000px;}
._a{width:70.038000px;}
.fc4{color:transparent;}
.fc3{color:rgb(37,74,165);}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs3{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:45.676500px;}
.y1{bottom:46.480200px;}
.y2{bottom:46.780950px;}
.y38{bottom:47.572200px;}
.ye{bottom:85.313850px;}
.yd{bottom:98.813850px;}
.yc{bottom:112.313850px;}
.yb{bottom:125.813850px;}
.ya{bottom:139.313850px;}
.y9{bottom:152.813850px;}
.y8{bottom:166.313850px;}
.y7{bottom:179.813850px;}
.y6{bottom:193.313850px;}
.y37{bottom:218.703150px;}
.y36{bottom:236.703150px;}
.y35{bottom:254.703150px;}
.y34{bottom:272.703150px;}
.y33{bottom:290.703150px;}
.y32{bottom:308.703150px;}
.y31{bottom:326.703150px;}
.y30{bottom:344.703150px;}
.y2f{bottom:362.703150px;}
.y2e{bottom:380.703150px;}
.y2d{bottom:398.703150px;}
.y2c{bottom:416.703150px;}
.y2b{bottom:434.703150px;}
.y2a{bottom:452.703150px;}
.y29{bottom:470.703150px;}
.y28{bottom:488.703150px;}
.y27{bottom:506.703150px;}
.y26{bottom:524.703150px;}
.y25{bottom:542.703150px;}
.y24{bottom:560.703150px;}
.y23{bottom:578.703150px;}
.y22{bottom:596.703150px;}
.y21{bottom:614.703150px;}
.y20{bottom:632.703150px;}
.y1f{bottom:650.703150px;}
.y6c{bottom:658.426500px;}
.y65{bottom:658.427550px;}
.y1e{bottom:668.703150px;}
.y6b{bottom:671.926500px;}
.y64{bottom:671.927550px;}
.y6a{bottom:685.426500px;}
.y63{bottom:685.427550px;}
.y1d{bottom:686.703150px;}
.y69{bottom:698.926500px;}
.y62{bottom:698.927550px;}
.y1c{bottom:704.703150px;}
.y68{bottom:712.426500px;}
.y61{bottom:712.427550px;}
.y1b{bottom:722.703150px;}
.y67{bottom:725.926500px;}
.y60{bottom:725.927550px;}
.y66{bottom:739.426500px;}
.y5f{bottom:739.427550px;}
.y1a{bottom:740.703150px;}
.y5e{bottom:752.927550px;}
.y19{bottom:758.703150px;}
.y18{bottom:776.703150px;}
.y4c{bottom:789.683400px;}
.y17{bottom:794.703150px;}
.y5d{bottom:807.435450px;}
.y4b{bottom:807.683400px;}
.y16{bottom:812.703150px;}
.y5c{bottom:825.435450px;}
.y4a{bottom:825.683400px;}
.y15{bottom:830.703150px;}
.y5b{bottom:843.435450px;}
.y49{bottom:843.683400px;}
.y14{bottom:848.703150px;}
.y5a{bottom:861.435450px;}
.y48{bottom:861.683400px;}
.y13{bottom:866.703150px;}
.y59{bottom:879.435450px;}
.y47{bottom:879.683400px;}
.y12{bottom:895.871400px;}
.y58{bottom:897.435450px;}
.y46{bottom:897.683400px;}
.y11{bottom:910.871400px;}
.y57{bottom:915.435450px;}
.y45{bottom:915.683400px;}
.y56{bottom:933.435450px;}
.y44{bottom:933.683400px;}
.y10{bottom:938.843550px;}
.y55{bottom:951.435450px;}
.y43{bottom:951.683400px;}
.yf{bottom:952.343550px;}
.y54{bottom:969.435450px;}
.y42{bottom:969.683400px;}
.y53{bottom:987.435450px;}
.y41{bottom:987.683400px;}
.y52{bottom:1005.435450px;}
.y40{bottom:1005.683400px;}
.y3a{bottom:1006.428150px;}
.y51{bottom:1023.435450px;}
.y3f{bottom:1023.683400px;}
.y5{bottom:1027.826550px;}
.y50{bottom:1041.435450px;}
.y3e{bottom:1041.683400px;}
.y4f{bottom:1059.435450px;}
.y3d{bottom:1059.683400px;}
.y3{bottom:1062.630000px;}
.y4e{bottom:1077.435450px;}
.y3c{bottom:1077.683400px;}
.y4{bottom:1087.826550px;}
.y4d{bottom:1095.435450px;}
.y3b{bottom:1095.683400px;}
.y6d{bottom:1137.906900px;}
.h6{height:26.244141px;}
.h4{height:30.577148px;}
.h3{height:30.618164px;}
.h2{height:34.500000px;}
.h8{height:34.992188px;}
.ha{height:39.313477px;}
.h9{height:39.366211px;}
.h7{height:40.609687px;}
.h5{height:69.890625px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:850.500000px;}
.w0{width:850.692000px;}
.x0{left:0.000000px;}
.x3{left:7.333800px;}
.xa{left:42.810300px;}
.xc{left:63.779550px;}
.x4{left:85.440900px;}
.x5{left:99.921300px;}
.x7{left:194.512050px;}
.xd{left:198.052350px;}
.x2{left:237.140400px;}
.x8{left:392.924400px;}
.xb{left:413.085900px;}
.x1{left:435.177450px;}
.x6{left:455.595150px;}
.x9{left:843.544950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls9{letter-spacing:-5.413333pt;}
.ls7{letter-spacing:-4.853333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004096pt;}
.ls5{letter-spacing:0.004629pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.015467pt;}
.ls2{letter-spacing:0.020800pt;}
.lsa{letter-spacing:0.373333pt;}
.ls8{letter-spacing:7.338667pt;}
.ls3{letter-spacing:62.246933pt;}
.ws3{word-spacing:-13.344000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws1{word-spacing:-7.779552pt;}
.ws7{word-spacing:-2.736000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws0{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:4.853333pt;}
.ws9{word-spacing:5.413333pt;}
.ws6{word-spacing:5.568000pt;}
.ws8{word-spacing:10.944000pt;}
.wsb{word-spacing:12.384000pt;}
.wsa{word-spacing:18.336000pt;}
._f{margin-left:-6.187200pt;}
._2{margin-left:-4.980267pt;}
._3{margin-left:-3.964800pt;}
._11{margin-left:-2.990400pt;}
._4{margin-left:-1.772800pt;}
._c{width:1.113600pt;}
._1{width:2.553600pt;}
._6{width:3.960000pt;}
._0{width:4.860800pt;}
._9{width:6.380800pt;}
._10{width:7.612800pt;}
._17{width:8.697600pt;}
._e{width:9.744000pt;}
._16{width:11.164800pt;}
._5{width:12.422400pt;}
._1b{width:13.328000pt;}
._b{width:14.668800pt;}
._15{width:15.657600pt;}
._13{width:16.996800pt;}
._8{width:18.388800pt;}
._18{width:20.164800pt;}
._14{width:21.442667pt;}
._d{width:22.555200pt;}
._12{width:24.518400pt;}
._7{width:25.468800pt;}
._19{width:26.611200pt;}
._1a{width:34.085333pt;}
._a{width:62.256000pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:40.601333pt;}
.y1{bottom:41.315733pt;}
.y2{bottom:41.583067pt;}
.y38{bottom:42.286400pt;}
.ye{bottom:75.834533pt;}
.yd{bottom:87.834533pt;}
.yc{bottom:99.834533pt;}
.yb{bottom:111.834533pt;}
.ya{bottom:123.834533pt;}
.y9{bottom:135.834533pt;}
.y8{bottom:147.834533pt;}
.y7{bottom:159.834533pt;}
.y6{bottom:171.834533pt;}
.y37{bottom:194.402800pt;}
.y36{bottom:210.402800pt;}
.y35{bottom:226.402800pt;}
.y34{bottom:242.402800pt;}
.y33{bottom:258.402800pt;}
.y32{bottom:274.402800pt;}
.y31{bottom:290.402800pt;}
.y30{bottom:306.402800pt;}
.y2f{bottom:322.402800pt;}
.y2e{bottom:338.402800pt;}
.y2d{bottom:354.402800pt;}
.y2c{bottom:370.402800pt;}
.y2b{bottom:386.402800pt;}
.y2a{bottom:402.402800pt;}
.y29{bottom:418.402800pt;}
.y28{bottom:434.402800pt;}
.y27{bottom:450.402800pt;}
.y26{bottom:466.402800pt;}
.y25{bottom:482.402800pt;}
.y24{bottom:498.402800pt;}
.y23{bottom:514.402800pt;}
.y22{bottom:530.402800pt;}
.y21{bottom:546.402800pt;}
.y20{bottom:562.402800pt;}
.y1f{bottom:578.402800pt;}
.y6c{bottom:585.268000pt;}
.y65{bottom:585.268933pt;}
.y1e{bottom:594.402800pt;}
.y6b{bottom:597.268000pt;}
.y64{bottom:597.268933pt;}
.y6a{bottom:609.268000pt;}
.y63{bottom:609.268933pt;}
.y1d{bottom:610.402800pt;}
.y69{bottom:621.268000pt;}
.y62{bottom:621.268933pt;}
.y1c{bottom:626.402800pt;}
.y68{bottom:633.268000pt;}
.y61{bottom:633.268933pt;}
.y1b{bottom:642.402800pt;}
.y67{bottom:645.268000pt;}
.y60{bottom:645.268933pt;}
.y66{bottom:657.268000pt;}
.y5f{bottom:657.268933pt;}
.y1a{bottom:658.402800pt;}
.y5e{bottom:669.268933pt;}
.y19{bottom:674.402800pt;}
.y18{bottom:690.402800pt;}
.y4c{bottom:701.940800pt;}
.y17{bottom:706.402800pt;}
.y5d{bottom:717.720400pt;}
.y4b{bottom:717.940800pt;}
.y16{bottom:722.402800pt;}
.y5c{bottom:733.720400pt;}
.y4a{bottom:733.940800pt;}
.y15{bottom:738.402800pt;}
.y5b{bottom:749.720400pt;}
.y49{bottom:749.940800pt;}
.y14{bottom:754.402800pt;}
.y5a{bottom:765.720400pt;}
.y48{bottom:765.940800pt;}
.y13{bottom:770.402800pt;}
.y59{bottom:781.720400pt;}
.y47{bottom:781.940800pt;}
.y12{bottom:796.330133pt;}
.y58{bottom:797.720400pt;}
.y46{bottom:797.940800pt;}
.y11{bottom:809.663467pt;}
.y57{bottom:813.720400pt;}
.y45{bottom:813.940800pt;}
.y56{bottom:829.720400pt;}
.y44{bottom:829.940800pt;}
.y10{bottom:834.527600pt;}
.y55{bottom:845.720400pt;}
.y43{bottom:845.940800pt;}
.yf{bottom:846.527600pt;}
.y54{bottom:861.720400pt;}
.y42{bottom:861.940800pt;}
.y53{bottom:877.720400pt;}
.y41{bottom:877.940800pt;}
.y52{bottom:893.720400pt;}
.y40{bottom:893.940800pt;}
.y3a{bottom:894.602800pt;}
.y51{bottom:909.720400pt;}
.y3f{bottom:909.940800pt;}
.y5{bottom:913.623600pt;}
.y50{bottom:925.720400pt;}
.y3e{bottom:925.940800pt;}
.y4f{bottom:941.720400pt;}
.y3d{bottom:941.940800pt;}
.y3{bottom:944.560000pt;}
.y4e{bottom:957.720400pt;}
.y3c{bottom:957.940800pt;}
.y4{bottom:966.956933pt;}
.y4d{bottom:973.720400pt;}
.y3b{bottom:973.940800pt;}
.y6d{bottom:1011.472800pt;}
.h6{height:23.328125pt;}
.h4{height:27.179688pt;}
.h3{height:27.216146pt;}
.h2{height:30.666667pt;}
.h8{height:31.104167pt;}
.ha{height:34.945312pt;}
.h9{height:34.992188pt;}
.h7{height:36.097500pt;}
.h5{height:62.125000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:756.000000pt;}
.w0{width:756.170667pt;}
.x0{left:0.000000pt;}
.x3{left:6.518933pt;}
.xa{left:38.053600pt;}
.xc{left:56.692933pt;}
.x4{left:75.947467pt;}
.x5{left:88.818933pt;}
.x7{left:172.899600pt;}
.xd{left:176.046533pt;}
.x2{left:210.791467pt;}
.x8{left:349.266133pt;}
.xb{left:367.187467pt;}
.x1{left:386.824400pt;}
.x6{left:404.973467pt;}
.x9{left:749.817733pt;}
}




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