
    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_c094cb3f0a8242d216279a58.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985352;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_6398167338de681c4c25df4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_5673b6cb049dda1210507f8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.025879;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_f35026480d849e9bea8fad4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.159667;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_0a2a3597d4381ad8370c1f7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.019531;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_d52ed4d4cf1b2ee81ed5c471.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104980;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_c589901e93e5a92f9ac95a09.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_22efa6b754328f2632e99b4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133118;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:ff9;src:url('chunks/assets/font_ff64b1ea59c0f4ac4166c72b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142090;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;}
.ls1{letter-spacing:-2.856000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws13{word-spacing:-20.298000px;}
.ws0{word-spacing:-17.928000px;}
.ws2b{word-spacing:-16.716000px;}
.ws9{word-spacing:-3.570000px;}
.ws21{word-spacing:-3.366000px;}
.ws24{word-spacing:-3.060000px;}
.ws29{word-spacing:-2.958000px;}
.wsf{word-spacing:-2.346000px;}
.ws2d{word-spacing:-2.244000px;}
.ws1f{word-spacing:-1.836000px;}
.ws2a{word-spacing:-1.734000px;}
.ws2{word-spacing:-1.530000px;}
.ws3{word-spacing:-1.428000px;}
.ws20{word-spacing:-1.326000px;}
.ws10{word-spacing:-1.224000px;}
.wsa{word-spacing:-1.020000px;}
.ws22{word-spacing:-0.816000px;}
.ws1b{word-spacing:-0.714000px;}
.ws28{word-spacing:-0.510000px;}
.ws2c{word-spacing:-0.306000px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:0.306000px;}
.ws25{word-spacing:0.408000px;}
.ws1a{word-spacing:0.510000px;}
.wse{word-spacing:0.612000px;}
.ws2e{word-spacing:1.020000px;}
.ws18{word-spacing:1.122000px;}
.ws30{word-spacing:1.428000px;}
.ws23{word-spacing:1.632000px;}
.ws8{word-spacing:1.836000px;}
.ws11{word-spacing:2.142000px;}
.ws37{word-spacing:2.184000px;}
.ws14{word-spacing:2.244000px;}
.ws12{word-spacing:2.550000px;}
.wsd{word-spacing:2.652000px;}
.ws34{word-spacing:2.958000px;}
.ws17{word-spacing:3.468000px;}
.wsb{word-spacing:3.570000px;}
.ws16{word-spacing:3.774000px;}
.ws1d{word-spacing:3.876000px;}
.ws32{word-spacing:4.182000px;}
.ws2f{word-spacing:4.488000px;}
.ws7{word-spacing:4.794000px;}
.ws19{word-spacing:4.998000px;}
.ws33{word-spacing:5.304000px;}
.ws31{word-spacing:6.222000px;}
.ws27{word-spacing:6.732000px;}
.ws1e{word-spacing:6.834000px;}
.ws26{word-spacing:6.936000px;}
.ws35{word-spacing:7.038000px;}
.ws4{word-spacing:7.140000px;}
.ws15{word-spacing:8.160000px;}
.wsc{word-spacing:8.874000px;}
.ws6{word-spacing:9.078000px;}
.ws36{word-spacing:9.894000px;}
.ws5{word-spacing:10.098000px;}
._0{margin-left:-2224.872000px;}
._a{margin-left:-14.382000px;}
._c{margin-left:-10.832400px;}
._6{margin-left:-9.465600px;}
._d{margin-left:-6.681000px;}
._3{margin-left:-5.620200px;}
._9{margin-left:-4.539000px;}
._7{margin-left:-3.264000px;}
._4{margin-left:-1.632000px;}
._2{width:1.734000px;}
._b{width:2.805000px;}
._8{width:4.029000px;}
._5{width:5.181600px;}
._1{width:3425.665800px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(88,89,91);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(147,149,152);}
.fc0{color:rgb(167,169,172);}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs1{font-size:102.000000px;}
.fs3{font-size:120.000000px;}
.fs2{font-size:222.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:26.304000px;}
.y53{bottom:71.477550px;}
.y52{bottom:96.677550px;}
.y51{bottom:121.877550px;}
.y17{bottom:165.103500px;}
.y3c{bottom:165.193500px;}
.y16{bottom:196.596000px;}
.y3b{bottom:196.686000px;}
.y50{bottom:204.927600px;}
.y15{bottom:228.088500px;}
.y3a{bottom:228.178500px;}
.y4f{bottom:229.205100px;}
.y39{bottom:259.671000px;}
.y4e{bottom:265.475100px;}
.y4d{bottom:289.752600px;}
.y14{bottom:291.099000px;}
.y38{bottom:291.163500px;}
.y13{bottom:322.591500px;}
.y37{bottom:322.656000px;}
.y4c{bottom:326.022600px;}
.y12{bottom:354.084000px;}
.y36{bottom:354.148500px;}
.y11{bottom:385.576500px;}
.y35{bottom:385.641000px;}
.y10{bottom:417.069000px;}
.yf{bottom:448.561500px;}
.y4b{bottom:448.626000px;}
.y34{bottom:448.651500px;}
.ye{bottom:480.054000px;}
.y33{bottom:480.144000px;}
.y4a{bottom:496.617000px;}
.yd{bottom:511.546500px;}
.y32{bottom:511.636500px;}
.y49{bottom:528.109500px;}
.yc{bottom:543.039000px;}
.y31{bottom:543.129000px;}
.yb{bottom:574.531500px;}
.y30{bottom:574.621500px;}
.ya{bottom:606.024000px;}
.y2f{bottom:606.114000px;}
.y9{bottom:637.516500px;}
.y2e{bottom:637.606500px;}
.y8{bottom:669.009000px;}
.y48{bottom:669.124500px;}
.y7{bottom:700.501500px;}
.y2d{bottom:700.617000px;}
.y6{bottom:731.994000px;}
.y2c{bottom:732.109500px;}
.y47{bottom:732.135000px;}
.y2b{bottom:763.602000px;}
.y46{bottom:763.627500px;}
.y5{bottom:795.004500px;}
.y2a{bottom:795.094500px;}
.y45{bottom:795.120000px;}
.y4{bottom:826.497000px;}
.y29{bottom:826.587000px;}
.y44{bottom:826.612500px;}
.y28{bottom:858.079500px;}
.y43{bottom:858.105000px;}
.y3{bottom:889.507500px;}
.y27{bottom:889.572000px;}
.y42{bottom:889.597500px;}
.y2{bottom:921.000000px;}
.y26{bottom:921.064500px;}
.y41{bottom:921.090000px;}
.y25{bottom:952.557000px;}
.y40{bottom:952.582500px;}
.y24{bottom:984.049500px;}
.y3f{bottom:984.075000px;}
.y23{bottom:1015.542000px;}
.y3e{bottom:1015.567500px;}
.y3d{bottom:1047.060000px;}
.y1a{bottom:1047.064500px;}
.y22{bottom:1078.552500px;}
.y21{bottom:1110.045000px;}
.y20{bottom:1141.537500px;}
.y19{bottom:1158.950250px;}
.y1f{bottom:1173.030000px;}
.y1e{bottom:1204.522500px;}
.y18{bottom:1209.344250px;}
.y1d{bottom:1236.015000px;}
.y1c{bottom:1267.507500px;}
.y1b{bottom:1299.000000px;}
.h1{height:58.500000px;}
.h9{height:69.188000px;}
.h8{height:70.149882px;}
.h7{height:82.441406px;}
.h5{height:82.722000px;}
.h2{height:84.014000px;}
.h6{height:85.182000px;}
.h4{height:106.992188px;}
.h3{height:176.147461px;}
.h0{height:1536.000000px;}
.w0{width:1200.000000px;}
.x0{left:0.000000px;}
.x7{left:55.555350px;}
.xb{left:57.874050px;}
.x6{left:153.538200px;}
.x2{left:155.654700px;}
.x8{left:182.483850px;}
.x9{left:472.346250px;}
.xa{left:499.248900px;}
.x1{left:589.769550px;}
.x4{left:591.475200px;}
.x5{left:647.243700px;}
.x3{left:652.547700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-2.538667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws13{word-spacing:-18.042667pt;}
.ws0{word-spacing:-15.936000pt;}
.ws2b{word-spacing:-14.858667pt;}
.ws9{word-spacing:-3.173333pt;}
.ws21{word-spacing:-2.992000pt;}
.ws24{word-spacing:-2.720000pt;}
.ws29{word-spacing:-2.629333pt;}
.wsf{word-spacing:-2.085333pt;}
.ws2d{word-spacing:-1.994667pt;}
.ws1f{word-spacing:-1.632000pt;}
.ws2a{word-spacing:-1.541333pt;}
.ws2{word-spacing:-1.360000pt;}
.ws3{word-spacing:-1.269333pt;}
.ws20{word-spacing:-1.178667pt;}
.ws10{word-spacing:-1.088000pt;}
.wsa{word-spacing:-0.906667pt;}
.ws22{word-spacing:-0.725333pt;}
.ws1b{word-spacing:-0.634667pt;}
.ws28{word-spacing:-0.453333pt;}
.ws2c{word-spacing:-0.272000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.272000pt;}
.ws25{word-spacing:0.362667pt;}
.ws1a{word-spacing:0.453333pt;}
.wse{word-spacing:0.544000pt;}
.ws2e{word-spacing:0.906667pt;}
.ws18{word-spacing:0.997333pt;}
.ws30{word-spacing:1.269333pt;}
.ws23{word-spacing:1.450667pt;}
.ws8{word-spacing:1.632000pt;}
.ws11{word-spacing:1.904000pt;}
.ws37{word-spacing:1.941333pt;}
.ws14{word-spacing:1.994667pt;}
.ws12{word-spacing:2.266667pt;}
.wsd{word-spacing:2.357333pt;}
.ws34{word-spacing:2.629333pt;}
.ws17{word-spacing:3.082667pt;}
.wsb{word-spacing:3.173333pt;}
.ws16{word-spacing:3.354667pt;}
.ws1d{word-spacing:3.445333pt;}
.ws32{word-spacing:3.717333pt;}
.ws2f{word-spacing:3.989333pt;}
.ws7{word-spacing:4.261333pt;}
.ws19{word-spacing:4.442667pt;}
.ws33{word-spacing:4.714667pt;}
.ws31{word-spacing:5.530667pt;}
.ws27{word-spacing:5.984000pt;}
.ws1e{word-spacing:6.074667pt;}
.ws26{word-spacing:6.165333pt;}
.ws35{word-spacing:6.256000pt;}
.ws4{word-spacing:6.346667pt;}
.ws15{word-spacing:7.253333pt;}
.wsc{word-spacing:7.888000pt;}
.ws6{word-spacing:8.069333pt;}
.ws36{word-spacing:8.794667pt;}
.ws5{word-spacing:8.976000pt;}
._0{margin-left:-1977.664000pt;}
._a{margin-left:-12.784000pt;}
._c{margin-left:-9.628800pt;}
._6{margin-left:-8.413867pt;}
._d{margin-left:-5.938667pt;}
._3{margin-left:-4.995733pt;}
._9{margin-left:-4.034667pt;}
._7{margin-left:-2.901333pt;}
._4{margin-left:-1.450667pt;}
._2{width:1.541333pt;}
._b{width:2.493333pt;}
._8{width:3.581333pt;}
._5{width:4.605867pt;}
._1{width:3045.036267pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs1{font-size:90.666667pt;}
.fs3{font-size:106.666667pt;}
.fs2{font-size:197.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:23.381333pt;}
.y53{bottom:63.535600pt;}
.y52{bottom:85.935600pt;}
.y51{bottom:108.335600pt;}
.y17{bottom:146.758667pt;}
.y3c{bottom:146.838667pt;}
.y16{bottom:174.752000pt;}
.y3b{bottom:174.832000pt;}
.y50{bottom:182.157867pt;}
.y15{bottom:202.745333pt;}
.y3a{bottom:202.825333pt;}
.y4f{bottom:203.737867pt;}
.y39{bottom:230.818667pt;}
.y4e{bottom:235.977867pt;}
.y4d{bottom:257.557867pt;}
.y14{bottom:258.754667pt;}
.y38{bottom:258.812000pt;}
.y13{bottom:286.748000pt;}
.y37{bottom:286.805333pt;}
.y4c{bottom:289.797867pt;}
.y12{bottom:314.741333pt;}
.y36{bottom:314.798667pt;}
.y11{bottom:342.734667pt;}
.y35{bottom:342.792000pt;}
.y10{bottom:370.728000pt;}
.yf{bottom:398.721333pt;}
.y4b{bottom:398.778667pt;}
.y34{bottom:398.801333pt;}
.ye{bottom:426.714667pt;}
.y33{bottom:426.794667pt;}
.y4a{bottom:441.437333pt;}
.yd{bottom:454.708000pt;}
.y32{bottom:454.788000pt;}
.y49{bottom:469.430667pt;}
.yc{bottom:482.701333pt;}
.y31{bottom:482.781333pt;}
.yb{bottom:510.694667pt;}
.y30{bottom:510.774667pt;}
.ya{bottom:538.688000pt;}
.y2f{bottom:538.768000pt;}
.y9{bottom:566.681333pt;}
.y2e{bottom:566.761333pt;}
.y8{bottom:594.674667pt;}
.y48{bottom:594.777333pt;}
.y7{bottom:622.668000pt;}
.y2d{bottom:622.770667pt;}
.y6{bottom:650.661333pt;}
.y2c{bottom:650.764000pt;}
.y47{bottom:650.786667pt;}
.y2b{bottom:678.757333pt;}
.y46{bottom:678.780000pt;}
.y5{bottom:706.670667pt;}
.y2a{bottom:706.750667pt;}
.y45{bottom:706.773333pt;}
.y4{bottom:734.664000pt;}
.y29{bottom:734.744000pt;}
.y44{bottom:734.766667pt;}
.y28{bottom:762.737333pt;}
.y43{bottom:762.760000pt;}
.y3{bottom:790.673333pt;}
.y27{bottom:790.730667pt;}
.y42{bottom:790.753333pt;}
.y2{bottom:818.666667pt;}
.y26{bottom:818.724000pt;}
.y41{bottom:818.746667pt;}
.y25{bottom:846.717333pt;}
.y40{bottom:846.740000pt;}
.y24{bottom:874.710667pt;}
.y3f{bottom:874.733333pt;}
.y23{bottom:902.704000pt;}
.y3e{bottom:902.726667pt;}
.y3d{bottom:930.720000pt;}
.y1a{bottom:930.724000pt;}
.y22{bottom:958.713333pt;}
.y21{bottom:986.706667pt;}
.y20{bottom:1014.700000pt;}
.y19{bottom:1030.178000pt;}
.y1f{bottom:1042.693333pt;}
.y1e{bottom:1070.686667pt;}
.y18{bottom:1074.972667pt;}
.y1d{bottom:1098.680000pt;}
.y1c{bottom:1126.673333pt;}
.y1b{bottom:1154.666667pt;}
.h1{height:52.000000pt;}
.h9{height:61.500444pt;}
.h8{height:62.355451pt;}
.h7{height:73.281250pt;}
.h5{height:73.530667pt;}
.h2{height:74.679111pt;}
.h6{height:75.717333pt;}
.h4{height:95.104167pt;}
.h3{height:156.575521pt;}
.h0{height:1365.333333pt;}
.w0{width:1066.666667pt;}
.x0{left:0.000000pt;}
.x7{left:49.382533pt;}
.xb{left:51.443600pt;}
.x6{left:136.478400pt;}
.x2{left:138.359733pt;}
.x8{left:162.207867pt;}
.x9{left:419.863333pt;}
.xa{left:443.776800pt;}
.x1{left:524.239600pt;}
.x4{left:525.755733pt;}
.x5{left:575.327733pt;}
.x3{left:580.042400pt;}
}




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