
    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_046aebf592ff79c9ce4bfc42.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_90c6b8fbdadc1ac2b470bd66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_a4a6dd1c7fd05d3704119be0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_47ea8a96e1735e3f0e61aa13.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_7c4ea59010bf906845fef62d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_1591c7a664a2152263ca3c72.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_82aad6fadb5ec931788ca31a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_718913027fca67fdf08edc80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v2{vertical-align:-22.620000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.620000px;}
.ls14{letter-spacing:-5.526000px;}
.ls8{letter-spacing:-4.524000px;}
.ls4{letter-spacing:-3.738000px;}
.ls12{letter-spacing:-1.572000px;}
.ls5{letter-spacing:-1.530000px;}
.ls6{letter-spacing:-1.482000px;}
.ls10{letter-spacing:-1.086000px;}
.ls13{letter-spacing:-1.026000px;}
.ls3{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.022500px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022500px;}
.ls0{letter-spacing:0.102000px;}
.ls7{letter-spacing:0.762000px;}
.ls11{letter-spacing:1.116000px;}
.lsb{letter-spacing:1.737000px;}
.lsf{letter-spacing:2.124000px;}
.lse{letter-spacing:6.240000px;}
.lsc{letter-spacing:118.857000px;}
.lsd{letter-spacing:123.357000px;}
.lsa{letter-spacing:150.357000px;}
.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;}
}
.wsc{word-spacing:-58.500000px;}
.ws2{word-spacing:-18.765000px;}
.ws7{word-spacing:-18.742500px;}
.ws3{word-spacing:-17.997000px;}
.ws5{word-spacing:-17.283000px;}
.ws4{word-spacing:-17.235000px;}
.wsa{word-spacing:-16.263000px;}
.wsb{word-spacing:-15.237000px;}
.ws1{word-spacing:-15.027000px;}
.ws6{word-spacing:-14.241000px;}
.ws9{word-spacing:-12.666000px;}
.ws0{word-spacing:-11.259000px;}
.wsd{word-spacing:-10.737000px;}
.ws8{word-spacing:0.000000px;}
._14{margin-left:-10.500000px;}
._15{margin-left:-9.277500px;}
._3{margin-left:-8.235000px;}
._6{margin-left:-6.660000px;}
._2{margin-left:-5.602500px;}
._8{margin-left:-3.645000px;}
._7{margin-left:-2.497500px;}
._1{margin-left:-1.417500px;}
._4{width:1.080000px;}
._5{width:2.160000px;}
._0{width:3.577500px;}
._a{width:5.263500px;}
._18{width:7.060500px;}
._9{width:8.239500px;}
._10{width:9.285000px;}
._1b{width:10.984500px;}
._17{width:12.006000px;}
._f{width:13.075500px;}
._19{width:14.715000px;}
._12{width:16.197000px;}
._13{width:17.482500px;}
._1a{width:18.672000px;}
._1c{width:20.448000px;}
._b{width:21.870000px;}
._11{width:23.151000px;}
._1d{width:24.547500px;}
._c{width:25.650000px;}
._e{width:27.097500px;}
._d{width:29.527500px;}
._16{width:30.787500px;}
._1e{width:41.677500px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:40.500000px;}
.fs4{font-size:58.500000px;}
.fs5{font-size:61.663798px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:117.112500px;}
.y54{bottom:118.237500px;}
.y2f{bottom:135.112500px;}
.y53{bottom:153.150000px;}
.y2e{bottom:156.525000px;}
.y52{bottom:170.025000px;}
.y2d{bottom:175.650000px;}
.y51{bottom:186.930000px;}
.y2c{bottom:194.820000px;}
.y50{bottom:204.945000px;}
.y2b{bottom:213.945000px;}
.y4f{bottom:221.820000px;}
.y2a{bottom:233.100000px;}
.y4e{bottom:238.725000px;}
.y29{bottom:251.100000px;}
.y4d{bottom:256.725000px;}
.y28{bottom:270.270000px;}
.y4c{bottom:273.645000px;}
.y4b{bottom:290.520000px;}
.y27{bottom:298.380000px;}
.y4a{bottom:308.550000px;}
.y26{bottom:317.550000px;}
.y49{bottom:325.425000px;}
.y25{bottom:336.675000px;}
.y48{bottom:342.300000px;}
.y24{bottom:355.830000px;}
.y47{bottom:360.330000px;}
.y23{bottom:374.970000px;}
.y46{bottom:377.205000px;}
.y22{bottom:393.000000px;}
.y45{bottom:394.125000px;}
.y21{bottom:412.125000px;}
.y44{bottom:429.030000px;}
.y20{bottom:431.295000px;}
.y43{bottom:445.905000px;}
.y1f{bottom:450.405000px;}
.y42{bottom:463.950000px;}
.y1e{bottom:469.575000px;}
.y41{bottom:480.825000px;}
.y1d{bottom:497.700000px;}
.y40{bottom:515.745000px;}
.y1c{bottom:516.855000px;}
.y3f{bottom:532.620000px;}
.y1b{bottom:535.995000px;}
.y3e{bottom:550.650000px;}
.y1a{bottom:554.025000px;}
.y3d{bottom:567.525000px;}
.y19{bottom:573.150000px;}
.y3c{bottom:585.570000px;}
.y18{bottom:592.320000px;}
.y3b{bottom:602.445000px;}
.y17{bottom:611.445000px;}
.y3a{bottom:619.350000px;}
.y16{bottom:630.600000px;}
.y39{bottom:637.350000px;}
.y38{bottom:654.225000px;}
.y15{bottom:658.755000px;}
.y14{bottom:677.895000px;}
.y37{bottom:691.395000px;}
.y13{bottom:695.880000px;}
.y12{bottom:715.050000px;}
.y36{bottom:718.425000px;}
.y11{bottom:734.175000px;}
.y35{bottom:737.595000px;}
.y10{bottom:753.330000px;}
.y34{bottom:756.720000px;}
.yf{bottom:772.455000px;}
.y33{bottom:775.875000px;}
.ye{bottom:791.625000px;}
.y32{bottom:795.000000px;}
.yd{bottom:810.750000px;}
.y31{bottom:814.125000px;}
.yc{bottom:828.795000px;}
.y62{bottom:841.170000px;}
.yb{bottom:847.920000px;}
.y61{bottom:859.200000px;}
.ya{bottom:867.075000px;}
.y60{bottom:876.075000px;}
.y9{bottom:886.200000px;}
.y5f{bottom:894.120000px;}
.y8{bottom:905.370000px;}
.y5e{bottom:910.995000px;}
.y7{bottom:924.495000px;}
.y5d{bottom:927.870000px;}
.y6{bottom:943.650000px;}
.y5c{bottom:945.900000px;}
.y5b{bottom:962.775000px;}
.y5{bottom:977.445000px;}
.y5a{bottom:979.695000px;}
.y4{bottom:995.445000px;}
.y59{bottom:997.695000px;}
.y3{bottom:1008.945000px;}
.y58{bottom:1014.600000px;}
.y57{bottom:1031.475000px;}
.y2{bottom:1038.225000px;}
.y56{bottom:1049.475000px;}
.y1{bottom:1057.380000px;}
.y55{bottom:1066.380000px;}
.ha{height:43.160889px;}
.hb{height:43.989258px;}
.h4{height:46.879363px;}
.h5{height:49.339600px;}
.h1{height:50.756836px;}
.h9{height:51.968611px;}
.h8{height:60.128782px;}
.h7{height:62.661621px;}
.hc{height:64.754072px;}
.h3{height:69.379363px;}
.h2{height:70.268555px;}
.h6{height:74.004654px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:108.150000px;}
.x1{left:112.650000px;}
.x8{left:162.180000px;}
.x4{left:173.475000px;}
.x3{left:215.145000px;}
.xb{left:221.895000px;}
.xc{left:226.380000px;}
.x2{left:271.470000px;}
.x5{left:279.345000px;}
.x9{left:622.875000px;}
.xa{left:627.375000px;}
.x7{left:809.850000px;}
@media print{
.v2{vertical-align:-20.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.106667pt;}
.ls14{letter-spacing:-4.912000pt;}
.ls8{letter-spacing:-4.021333pt;}
.ls4{letter-spacing:-3.322667pt;}
.ls12{letter-spacing:-1.397333pt;}
.ls5{letter-spacing:-1.360000pt;}
.ls6{letter-spacing:-1.317333pt;}
.ls10{letter-spacing:-0.965333pt;}
.ls13{letter-spacing:-0.912000pt;}
.ls3{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.020000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.020000pt;}
.ls0{letter-spacing:0.090667pt;}
.ls7{letter-spacing:0.677333pt;}
.ls11{letter-spacing:0.992000pt;}
.lsb{letter-spacing:1.544000pt;}
.lsf{letter-spacing:1.888000pt;}
.lse{letter-spacing:5.546667pt;}
.lsc{letter-spacing:105.650667pt;}
.lsd{letter-spacing:109.650667pt;}
.lsa{letter-spacing:133.650667pt;}
.wsc{word-spacing:-52.000000pt;}
.ws2{word-spacing:-16.680000pt;}
.ws7{word-spacing:-16.660000pt;}
.ws3{word-spacing:-15.997333pt;}
.ws5{word-spacing:-15.362667pt;}
.ws4{word-spacing:-15.320000pt;}
.wsa{word-spacing:-14.456000pt;}
.wsb{word-spacing:-13.544000pt;}
.ws1{word-spacing:-13.357333pt;}
.ws6{word-spacing:-12.658667pt;}
.ws9{word-spacing:-11.258667pt;}
.ws0{word-spacing:-10.008000pt;}
.wsd{word-spacing:-9.544000pt;}
.ws8{word-spacing:0.000000pt;}
._14{margin-left:-9.333333pt;}
._15{margin-left:-8.246667pt;}
._3{margin-left:-7.320000pt;}
._6{margin-left:-5.920000pt;}
._2{margin-left:-4.980000pt;}
._8{margin-left:-3.240000pt;}
._7{margin-left:-2.220000pt;}
._1{margin-left:-1.260000pt;}
._4{width:0.960000pt;}
._5{width:1.920000pt;}
._0{width:3.180000pt;}
._a{width:4.678667pt;}
._18{width:6.276000pt;}
._9{width:7.324000pt;}
._10{width:8.253333pt;}
._1b{width:9.764000pt;}
._17{width:10.672000pt;}
._f{width:11.622667pt;}
._19{width:13.080000pt;}
._12{width:14.397333pt;}
._13{width:15.540000pt;}
._1a{width:16.597333pt;}
._1c{width:18.176000pt;}
._b{width:19.440000pt;}
._11{width:20.578667pt;}
._1d{width:21.820000pt;}
._c{width:22.800000pt;}
._e{width:24.086667pt;}
._d{width:26.246667pt;}
._16{width:27.366667pt;}
._1e{width:37.046667pt;}
.fs1{font-size:36.000000pt;}
.fs4{font-size:52.000000pt;}
.fs5{font-size:54.812265pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:104.100000pt;}
.y54{bottom:105.100000pt;}
.y2f{bottom:120.100000pt;}
.y53{bottom:136.133333pt;}
.y2e{bottom:139.133333pt;}
.y52{bottom:151.133333pt;}
.y2d{bottom:156.133333pt;}
.y51{bottom:166.160000pt;}
.y2c{bottom:173.173333pt;}
.y50{bottom:182.173333pt;}
.y2b{bottom:190.173333pt;}
.y4f{bottom:197.173333pt;}
.y2a{bottom:207.200000pt;}
.y4e{bottom:212.200000pt;}
.y29{bottom:223.200000pt;}
.y4d{bottom:228.200000pt;}
.y28{bottom:240.240000pt;}
.y4c{bottom:243.240000pt;}
.y4b{bottom:258.240000pt;}
.y27{bottom:265.226667pt;}
.y4a{bottom:274.266667pt;}
.y26{bottom:282.266667pt;}
.y49{bottom:289.266667pt;}
.y25{bottom:299.266667pt;}
.y48{bottom:304.266667pt;}
.y24{bottom:316.293333pt;}
.y47{bottom:320.293333pt;}
.y23{bottom:333.306667pt;}
.y46{bottom:335.293333pt;}
.y22{bottom:349.333333pt;}
.y45{bottom:350.333333pt;}
.y21{bottom:366.333333pt;}
.y44{bottom:381.360000pt;}
.y20{bottom:383.373333pt;}
.y43{bottom:396.360000pt;}
.y1f{bottom:400.360000pt;}
.y42{bottom:412.400000pt;}
.y1e{bottom:417.400000pt;}
.y41{bottom:427.400000pt;}
.y1d{bottom:442.400000pt;}
.y40{bottom:458.440000pt;}
.y1c{bottom:459.426667pt;}
.y3f{bottom:473.440000pt;}
.y1b{bottom:476.440000pt;}
.y3e{bottom:489.466667pt;}
.y1a{bottom:492.466667pt;}
.y3d{bottom:504.466667pt;}
.y19{bottom:509.466667pt;}
.y3c{bottom:520.506667pt;}
.y18{bottom:526.506667pt;}
.y3b{bottom:535.506667pt;}
.y17{bottom:543.506667pt;}
.y3a{bottom:550.533333pt;}
.y16{bottom:560.533333pt;}
.y39{bottom:566.533333pt;}
.y38{bottom:581.533333pt;}
.y15{bottom:585.560000pt;}
.y14{bottom:602.573333pt;}
.y37{bottom:614.573333pt;}
.y13{bottom:618.560000pt;}
.y12{bottom:635.600000pt;}
.y36{bottom:638.600000pt;}
.y11{bottom:652.600000pt;}
.y35{bottom:655.640000pt;}
.y10{bottom:669.626667pt;}
.y34{bottom:672.640000pt;}
.yf{bottom:686.626667pt;}
.y33{bottom:689.666667pt;}
.ye{bottom:703.666667pt;}
.y32{bottom:706.666667pt;}
.yd{bottom:720.666667pt;}
.y31{bottom:723.666667pt;}
.yc{bottom:736.706667pt;}
.y62{bottom:747.706667pt;}
.yb{bottom:753.706667pt;}
.y61{bottom:763.733333pt;}
.ya{bottom:770.733333pt;}
.y60{bottom:778.733333pt;}
.y9{bottom:787.733333pt;}
.y5f{bottom:794.773333pt;}
.y8{bottom:804.773333pt;}
.y5e{bottom:809.773333pt;}
.y7{bottom:821.773333pt;}
.y5d{bottom:824.773333pt;}
.y6{bottom:838.800000pt;}
.y5c{bottom:840.800000pt;}
.y5b{bottom:855.800000pt;}
.y5{bottom:868.840000pt;}
.y5a{bottom:870.840000pt;}
.y4{bottom:884.840000pt;}
.y59{bottom:886.840000pt;}
.y3{bottom:896.840000pt;}
.y58{bottom:901.866667pt;}
.y57{bottom:916.866667pt;}
.y2{bottom:922.866667pt;}
.y56{bottom:932.866667pt;}
.y1{bottom:939.893333pt;}
.y55{bottom:947.893333pt;}
.ha{height:38.365234pt;}
.hb{height:39.101562pt;}
.h4{height:41.670545pt;}
.h5{height:43.857422pt;}
.h1{height:45.117188pt;}
.h9{height:46.194321pt;}
.h8{height:53.447806pt;}
.h7{height:55.699219pt;}
.hc{height:57.559176pt;}
.h3{height:61.670545pt;}
.h2{height:62.460938pt;}
.h6{height:65.781915pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.133333pt;}
.x1{left:100.133333pt;}
.x8{left:144.160000pt;}
.x4{left:154.200000pt;}
.x3{left:191.240000pt;}
.xb{left:197.240000pt;}
.xc{left:201.226667pt;}
.x2{left:241.306667pt;}
.x5{left:248.306667pt;}
.x9{left:553.666667pt;}
.xa{left:557.666667pt;}
.x7{left:719.866667pt;}
}




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