
    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_eb894edae763bcce10d0fd3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012000;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_0d493f227e6ef2dd72e1c0b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_da0b63912c4c6d3dde78ee63.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.855957;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_472b16c1210b5a4cb89b6e84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_6fbbae283b37aecb2baaf8f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_cccdf4aa2c089ccbbdae4946.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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;}
.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);}
.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);}
.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);}
.m3{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;}
.ls5{letter-spacing:-0.378600px;}
.lsf{letter-spacing:-0.350400px;}
.ls12{letter-spacing:-0.336000px;}
.ls1{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.037440px;}
.ls9{letter-spacing:-0.028080px;}
.lsa{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018720px;}
.ls3{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.195600px;}
.ls10{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.301200px;}
.lse{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.341400px;}
.lsb{letter-spacing:98.792064px;}
.ls4{letter-spacing:98.879040px;}
.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;}
}
.ws10{word-spacing:-54.938016px;}
.ws1{word-spacing:-54.905040px;}
.ws1c{word-spacing:-30.064032px;}
.ws1b{word-spacing:-30.024000px;}
.ws4{word-spacing:-23.458752px;}
.ws3{word-spacing:-23.418720px;}
.ws14{word-spacing:-18.414720px;}
.ws11{word-spacing:-2.969568px;}
.ws5{word-spacing:-2.926800px;}
.wsd{word-spacing:-2.778720px;}
.ws16{word-spacing:-2.554560px;}
.ws6{word-spacing:-2.446272px;}
.wsf{word-spacing:-2.441040px;}
.ws7{word-spacing:-1.858608px;}
.ws18{word-spacing:-1.725120px;}
.ws1a{word-spacing:-1.680480px;}
.ws9{word-spacing:-1.420800px;}
.ws8{word-spacing:-1.272000px;}
.ws19{word-spacing:-1.224000px;}
.ws13{word-spacing:-1.108800px;}
.ws2{word-spacing:-1.043280px;}
.wse{word-spacing:-1.014480px;}
.wsb{word-spacing:-0.990000px;}
.wsa{word-spacing:-0.800160px;}
.ws12{word-spacing:-0.777600px;}
.wsc{word-spacing:-0.663840px;}
.ws17{word-spacing:-0.444480px;}
.ws15{word-spacing:-0.370080px;}
.ws1d{word-spacing:-0.084384px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.707040px;}
._4{margin-left:-2.531520px;}
._0{margin-left:-1.512000px;}
._1{width:1.296000px;}
._9{width:14.915040px;}
._8{width:16.969200px;}
._7{width:18.803040px;}
._5{width:20.376240px;}
._3{width:22.137360px;}
._6{width:24.191952px;}
._a{width:25.554000px;}
.fc6{color:rgb(5,32,75);}
.fc3{color:rgb(0,151,167);}
.fc2{color:rgb(0,112,192);}
.fc7{color:rgb(127,127,127);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(67,67,67);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fsa{font-size:66.240000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs4{font-size:120.240000px;}
.fsb{font-size:126.000000px;}
.fs5{font-size:239.760000px;}
.fs9{font-size:239.904000px;}
.fs0{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.fsd{font-size:480.384000px;}
.y0{bottom:0.000000px;}
.y16{bottom:68.292000px;}
.y2e{bottom:71.784000px;}
.y2d{bottom:91.584000px;}
.y15{bottom:93.528000px;}
.y3a{bottom:106.884000px;}
.y2c{bottom:111.384000px;}
.y14{bottom:118.728000px;}
.y7{bottom:131.616000px;}
.y2b{bottom:132.300000px;}
.y13{bottom:143.928000px;}
.y1f{bottom:145.836000px;}
.y2a{bottom:157.500000px;}
.y37{bottom:168.480000px;}
.y1e{bottom:171.075000px;}
.y12{bottom:194.370000px;}
.y1d{bottom:196.275000px;}
.y29{bottom:201.420000px;}
.y6{bottom:203.250000px;}
.y11{bottom:219.570000px;}
.y28{bottom:221.220000px;}
.y1c{bottom:221.475000px;}
.y5{bottom:235.695000px;}
.y27{bottom:241.020000px;}
.y10{bottom:244.770000px;}
.y1b{bottom:246.675000px;}
.y26{bottom:261.930000px;}
.yf{bottom:269.970000px;}
.y35{bottom:279.570000px;}
.y25{bottom:287.130000px;}
.ye{bottom:295.170000px;}
.y2{bottom:296.100000px;}
.y1a{bottom:297.105000px;}
.y34{bottom:309.675000px;}
.y38{bottom:311.325000px;}
.y19{bottom:322.305000px;}
.y24{bottom:331.050000px;}
.y36{bottom:337.245000px;}
.yd{bottom:345.600000px;}
.y23{bottom:350.850000px;}
.yc{bottom:370.800000px;}
.y22{bottom:371.775000px;}
.y18{bottom:372.705000px;}
.y1{bottom:382.500000px;}
.yb{bottom:396.000000px;}
.y17{bottom:397.905000px;}
.y3b{bottom:405.870000px;}
.y2f{bottom:421.125000px;}
.y8{bottom:421.950000px;}
.y33{bottom:462.090000px;}
.y39{bottom:467.130000px;}
.ya{bottom:490.830000px;}
.y4{bottom:491.325000px;}
.y21{bottom:492.765000px;}
.y32{bottom:494.490000px;}
.y3{bottom:523.725000px;}
.y31{bottom:526.890000px;}
.y9{bottom:528.270000px;}
.y20{bottom:530.250000px;}
.y30{bottom:559.290000px;}
.h10{height:37.546875px;}
.he{height:63.632461px;}
.hd{height:63.741234px;}
.hb{height:69.086250px;}
.h5{height:80.140430px;}
.h8{height:87.859687px;}
.h9{height:88.009875px;}
.hf{height:95.176758px;}
.h7{height:99.874688px;}
.h3{height:112.640625px;}
.h4{height:112.790813px;}
.hc{height:125.406562px;}
.h6{height:197.082720px;}
.ha{height:197.201088px;}
.h1{height:236.736000px;}
.h2{height:236.854368px;}
.h11{height:394.875648px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x8{left:30.995984px;}
.x9{left:39.347984px;}
.xd{left:41.795984px;}
.x3{left:43.631984px;}
.xb{left:45.359984px;}
.x16{left:58.859984px;}
.x14{left:61.055984px;}
.x15{left:67.067984px;}
.x18{left:73.871984px;}
.xa{left:76.787984px;}
.xc{left:82.799984px;}
.x10{left:113.975984px;}
.x12{left:118.799984px;}
.xe{left:126.179984px;}
.x13{left:138.959984px;}
.x6{left:157.784984px;}
.xf{left:163.619984px;}
.x1{left:354.674984px;}
.x2{left:371.594984px;}
.x4{left:417.059984px;}
.x11{left:814.829984px;}
.x5{left:839.954984px;}
.x7{left:886.709984px;}
.x17{left:888.944984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.336533pt;}
.lsf{letter-spacing:-0.311467pt;}
.ls12{letter-spacing:-0.298667pt;}
.ls1{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.033280pt;}
.ls9{letter-spacing:-0.024960pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016640pt;}
.ls3{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.173867pt;}
.ls10{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.267733pt;}
.lse{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.303467pt;}
.lsb{letter-spacing:87.815168pt;}
.ls4{letter-spacing:87.892480pt;}
.ws10{word-spacing:-48.833792pt;}
.ws1{word-spacing:-48.804480pt;}
.ws1c{word-spacing:-26.723584pt;}
.ws1b{word-spacing:-26.688000pt;}
.ws4{word-spacing:-20.852224pt;}
.ws3{word-spacing:-20.816640pt;}
.ws14{word-spacing:-16.368640pt;}
.ws11{word-spacing:-2.639616pt;}
.ws5{word-spacing:-2.601600pt;}
.wsd{word-spacing:-2.469973pt;}
.ws16{word-spacing:-2.270720pt;}
.ws6{word-spacing:-2.174464pt;}
.wsf{word-spacing:-2.169813pt;}
.ws7{word-spacing:-1.652096pt;}
.ws18{word-spacing:-1.533440pt;}
.ws1a{word-spacing:-1.493760pt;}
.ws9{word-spacing:-1.262933pt;}
.ws8{word-spacing:-1.130667pt;}
.ws19{word-spacing:-1.088000pt;}
.ws13{word-spacing:-0.985600pt;}
.ws2{word-spacing:-0.927360pt;}
.wse{word-spacing:-0.901760pt;}
.wsb{word-spacing:-0.880000pt;}
.wsa{word-spacing:-0.711253pt;}
.ws12{word-spacing:-0.691200pt;}
.wsc{word-spacing:-0.590080pt;}
.ws17{word-spacing:-0.395093pt;}
.ws15{word-spacing:-0.328960pt;}
.ws1d{word-spacing:-0.075008pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.295147pt;}
._4{margin-left:-2.250240pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.152000pt;}
._9{width:13.257813pt;}
._8{width:15.083733pt;}
._7{width:16.713813pt;}
._5{width:18.112213pt;}
._3{width:19.677653pt;}
._6{width:21.503957pt;}
._a{width:22.714667pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:58.880000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs4{font-size:106.880000pt;}
.fsb{font-size:112.000000pt;}
.fs5{font-size:213.120000pt;}
.fs9{font-size:213.248000pt;}
.fs0{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.fsd{font-size:427.008000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:60.704000pt;}
.y2e{bottom:63.808000pt;}
.y2d{bottom:81.408000pt;}
.y15{bottom:83.136000pt;}
.y3a{bottom:95.008000pt;}
.y2c{bottom:99.008000pt;}
.y14{bottom:105.536000pt;}
.y7{bottom:116.992000pt;}
.y2b{bottom:117.600000pt;}
.y13{bottom:127.936000pt;}
.y1f{bottom:129.632000pt;}
.y2a{bottom:140.000000pt;}
.y37{bottom:149.760000pt;}
.y1e{bottom:152.066667pt;}
.y12{bottom:172.773333pt;}
.y1d{bottom:174.466667pt;}
.y29{bottom:179.040000pt;}
.y6{bottom:180.666667pt;}
.y11{bottom:195.173333pt;}
.y28{bottom:196.640000pt;}
.y1c{bottom:196.866667pt;}
.y5{bottom:209.506667pt;}
.y27{bottom:214.240000pt;}
.y10{bottom:217.573333pt;}
.y1b{bottom:219.266667pt;}
.y26{bottom:232.826667pt;}
.yf{bottom:239.973333pt;}
.y35{bottom:248.506667pt;}
.y25{bottom:255.226667pt;}
.ye{bottom:262.373333pt;}
.y2{bottom:263.200000pt;}
.y1a{bottom:264.093333pt;}
.y34{bottom:275.266667pt;}
.y38{bottom:276.733333pt;}
.y19{bottom:286.493333pt;}
.y24{bottom:294.266667pt;}
.y36{bottom:299.773333pt;}
.yd{bottom:307.200000pt;}
.y23{bottom:311.866667pt;}
.yc{bottom:329.600000pt;}
.y22{bottom:330.466667pt;}
.y18{bottom:331.293333pt;}
.y1{bottom:340.000000pt;}
.yb{bottom:352.000000pt;}
.y17{bottom:353.693333pt;}
.y3b{bottom:360.773333pt;}
.y2f{bottom:374.333333pt;}
.y8{bottom:375.066667pt;}
.y33{bottom:410.746667pt;}
.y39{bottom:415.226667pt;}
.ya{bottom:436.293333pt;}
.y4{bottom:436.733333pt;}
.y21{bottom:438.013333pt;}
.y32{bottom:439.546667pt;}
.y3{bottom:465.533333pt;}
.y31{bottom:468.346667pt;}
.y9{bottom:469.573333pt;}
.y20{bottom:471.333333pt;}
.y30{bottom:497.146667pt;}
.h10{height:33.375000pt;}
.he{height:56.562187pt;}
.hd{height:56.658875pt;}
.hb{height:61.410000pt;}
.h5{height:71.235938pt;}
.h8{height:78.097500pt;}
.h9{height:78.231000pt;}
.hf{height:84.601562pt;}
.h7{height:88.777500pt;}
.h3{height:100.125000pt;}
.h4{height:100.258500pt;}
.hc{height:111.472500pt;}
.h6{height:175.184640pt;}
.ha{height:175.289856pt;}
.h1{height:210.432000pt;}
.h2{height:210.537216pt;}
.h11{height:351.000576pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x8{left:27.551986pt;}
.x9{left:34.975986pt;}
.xd{left:37.151986pt;}
.x3{left:38.783986pt;}
.xb{left:40.319986pt;}
.x16{left:52.319986pt;}
.x14{left:54.271986pt;}
.x15{left:59.615986pt;}
.x18{left:65.663986pt;}
.xa{left:68.255986pt;}
.xc{left:73.599986pt;}
.x10{left:101.311986pt;}
.x12{left:105.599986pt;}
.xe{left:112.159986pt;}
.x13{left:123.519986pt;}
.x6{left:140.253319pt;}
.xf{left:145.439986pt;}
.x1{left:315.266652pt;}
.x2{left:330.306652pt;}
.x4{left:370.719986pt;}
.x11{left:724.293319pt;}
.x5{left:746.626652pt;}
.x7{left:788.186652pt;}
.x17{left:790.173319pt;}
}




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