
    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_82e42c93eb03340541344746.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_0d4d41e9f1bed010bd2c039e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_36d87dd72ac66d4074e0f845.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_4523f98f001604dc5b4f1c1a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_9642472579ecc8e7848a701d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_865b2b1affbac0cc48c7454d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_97dd48244f3edbca14ca8ee2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_77b3de2d6af92aa67ceb21e2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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);}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.360000px;}
.v1{vertical-align:30.240000px;}
.v4{vertical-align:39.600000px;}
.lsf{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.690000px;}
.ls5{letter-spacing:-0.369600px;}
.ls8{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.028080px;}
.lse{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.004080px;}
.ls11{letter-spacing:0.021600px;}
.ls7{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.336000px;}
.lsb{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.369600px;}
.lsd{letter-spacing:0.378720px;}
.ls0{letter-spacing:8.460000px;}
.ls6{letter-spacing:9.180000px;}
.ls1{letter-spacing:36.540000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.300000px;}
.ws9{word-spacing:-21.429600px;}
.wsb{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.410400px;}
.ws2{word-spacing:-21.060000px;}
.wsc{word-spacing:-21.041280px;}
.ws3{word-spacing:-21.031920px;}
.ws4{word-spacing:-20.690400px;}
.ws6{word-spacing:-20.370000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-6.190800px;}
._2{margin-left:-4.970160px;}
._1c{margin-left:-3.916320px;}
._7{margin-left:-2.864160px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._9{width:2.580240px;}
._1f{width:3.611760px;}
._19{width:4.717440px;}
._16{width:6.464880px;}
._8{width:7.687440px;}
._14{width:8.841120px;}
._5{width:10.657200px;}
._4{width:11.793600px;}
._11{width:13.815360px;}
._17{width:14.826240px;}
._18{width:15.835200px;}
._25{width:17.004000px;}
._26{width:18.364320px;}
._6{width:19.545360px;}
._24{width:21.308160px;}
._1e{width:22.808400px;}
._21{width:24.324720px;}
._a{width:25.335600px;}
._e{width:26.514960px;}
._b{width:28.220400px;}
._c{width:29.394000px;}
._1a{width:31.491360px;}
._1b{width:32.911200px;}
._10{width:35.205360px;}
._f{width:36.371040px;}
._22{width:37.486800px;}
._23{width:38.982480px;}
._1d{width:42.015120px;}
._2a{width:43.258080px;}
._29{width:44.478720px;}
._27{width:50.375520px;}
._15{width:52.393920px;}
._d{width:55.682640px;}
._28{width:58.273440px;}
._2c{width:62.311440px;}
._2b{width:63.601200px;}
._20{width:82.682160px;}
._13{width:119.980080px;}
._12{width:121.874640px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,78,121);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:17.280000px;}
.y9{bottom:19.440000px;}
.y4{bottom:27.900000px;}
.y2{bottom:36.720000px;}
.y8{bottom:44.640000px;}
.y54{bottom:121.536000px;}
.y31{bottom:131.256000px;}
.y53{bottom:149.436000px;}
.y30{bottom:158.970000px;}
.y52{bottom:177.150000px;}
.y2f{bottom:186.870000px;}
.y51{bottom:204.870000px;}
.y2e{bottom:214.590000px;}
.y50{bottom:232.770000px;}
.y2d{bottom:242.310000px;}
.y4f{bottom:260.490000px;}
.y2c{bottom:270.210000px;}
.y4e{bottom:288.210000px;}
.y2b{bottom:297.930000px;}
.y4d{bottom:315.930000px;}
.y2a{bottom:325.650000px;}
.y4c{bottom:343.875000px;}
.y29{bottom:349.815000px;}
.y4b{bottom:371.595000px;}
.y28{bottom:377.535000px;}
.y4a{bottom:399.315000px;}
.y27{bottom:405.435000px;}
.y49{bottom:427.215000px;}
.y26{bottom:433.155000px;}
.y48{bottom:454.935000px;}
.y25{bottom:460.875000px;}
.y47{bottom:482.655000px;}
.y24{bottom:488.775000px;}
.y46{bottom:510.375000px;}
.y23{bottom:516.495000px;}
.y45{bottom:538.275000px;}
.y22{bottom:544.215000px;}
.y44{bottom:565.995000px;}
.y21{bottom:571.935000px;}
.y43{bottom:593.715000px;}
.y20{bottom:599.835000px;}
.y42{bottom:621.465000px;}
.y1f{bottom:627.585000px;}
.y41{bottom:649.365000px;}
.y1e{bottom:655.305000px;}
.y40{bottom:677.085000px;}
.y1d{bottom:679.425000px;}
.y1c{bottom:703.725000px;}
.y3f{bottom:704.805000px;}
.y1b{bottom:727.845000px;}
.y3e{bottom:732.705000px;}
.y1a{bottom:751.965000px;}
.y3d{bottom:760.425000px;}
.y19{bottom:776.085000px;}
.y3c{bottom:788.145000px;}
.y18{bottom:800.205000px;}
.y3b{bottom:815.865000px;}
.y17{bottom:824.325000px;}
.y3a{bottom:843.765000px;}
.y16{bottom:848.625000px;}
.y39{bottom:871.530000px;}
.y15{bottom:872.790000px;}
.y14{bottom:896.910000px;}
.y38{bottom:899.250000px;}
.y13{bottom:921.030000px;}
.y37{bottom:927.150000px;}
.y12{bottom:945.150000px;}
.y36{bottom:954.870000px;}
.y11{bottom:969.270000px;}
.y35{bottom:982.590000px;}
.y10{bottom:993.390000px;}
.y34{bottom:1010.310000px;}
.yf{bottom:1017.690000px;}
.y33{bottom:1038.210000px;}
.ye{bottom:1041.810000px;}
.y32{bottom:1065.930000px;}
.yd{bottom:1069.530000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.h7{height:39.636000px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.he{height:59.066719px;}
.hc{height:61.575820px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hb{height:82.635820px;}
.ha{height:82.676953px;}
.hd{height:83.238047px;}
.h6{height:84.898125px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x7{left:19.800000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x8{left:113.435987px;}
.x13{left:127.475987px;}
.x11{left:253.109987px;}
.xf{left:266.249987px;}
.xe{left:294.014987px;}
.xb{left:300.674987px;}
.x9{left:349.274987px;}
.xd{left:363.314987px;}
.x14{left:375.914987px;}
.x12{left:392.654987px;}
.xc{left:412.094987px;}
.x10{left:414.254987px;}
.xa{left:446.474987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.320000pt;}
.v1{vertical-align:26.880000pt;}
.v4{vertical-align:35.200000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.613333pt;}
.ls5{letter-spacing:-0.328533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.024960pt;}
.lse{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.003627pt;}
.ls11{letter-spacing:0.019200pt;}
.ls7{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.298667pt;}
.lsb{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.328533pt;}
.lsd{letter-spacing:0.336640pt;}
.ls0{letter-spacing:7.520000pt;}
.ls6{letter-spacing:8.160000pt;}
.ls1{letter-spacing:32.480000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws9{word-spacing:-19.048533pt;}
.wsb{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.031467pt;}
.ws2{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.703360pt;}
.ws3{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.391467pt;}
.ws6{word-spacing:-18.106667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-5.502933pt;}
._2{margin-left:-4.417920pt;}
._1c{margin-left:-3.481173pt;}
._7{margin-left:-2.545920pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._9{width:2.293547pt;}
._1f{width:3.210453pt;}
._19{width:4.193280pt;}
._16{width:5.746560pt;}
._8{width:6.833280pt;}
._14{width:7.858773pt;}
._5{width:9.473067pt;}
._4{width:10.483200pt;}
._11{width:12.280320pt;}
._17{width:13.178880pt;}
._18{width:14.075733pt;}
._25{width:15.114667pt;}
._26{width:16.323840pt;}
._6{width:17.373653pt;}
._24{width:18.940587pt;}
._1e{width:20.274133pt;}
._21{width:21.621973pt;}
._a{width:22.520533pt;}
._e{width:23.568853pt;}
._b{width:25.084800pt;}
._c{width:26.128000pt;}
._1a{width:27.992320pt;}
._1b{width:29.254400pt;}
._10{width:31.293653pt;}
._f{width:32.329813pt;}
._22{width:33.321600pt;}
._23{width:34.651093pt;}
._1d{width:37.346773pt;}
._2a{width:38.451627pt;}
._29{width:39.536640pt;}
._27{width:44.778240pt;}
._15{width:46.572373pt;}
._d{width:49.495680pt;}
._28{width:51.798613pt;}
._2c{width:55.387947pt;}
._2b{width:56.534400pt;}
._20{width:73.495253pt;}
._13{width:106.648960pt;}
._12{width:108.333013pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:15.360000pt;}
.y9{bottom:17.280000pt;}
.y4{bottom:24.800000pt;}
.y2{bottom:32.640000pt;}
.y8{bottom:39.680000pt;}
.y54{bottom:108.032000pt;}
.y31{bottom:116.672000pt;}
.y53{bottom:132.832000pt;}
.y30{bottom:141.306667pt;}
.y52{bottom:157.466667pt;}
.y2f{bottom:166.106667pt;}
.y51{bottom:182.106667pt;}
.y2e{bottom:190.746667pt;}
.y50{bottom:206.906667pt;}
.y2d{bottom:215.386667pt;}
.y4f{bottom:231.546667pt;}
.y2c{bottom:240.186667pt;}
.y4e{bottom:256.186667pt;}
.y2b{bottom:264.826667pt;}
.y4d{bottom:280.826667pt;}
.y2a{bottom:289.466667pt;}
.y4c{bottom:305.666667pt;}
.y29{bottom:310.946667pt;}
.y4b{bottom:330.306667pt;}
.y28{bottom:335.586667pt;}
.y4a{bottom:354.946667pt;}
.y27{bottom:360.386667pt;}
.y49{bottom:379.746667pt;}
.y26{bottom:385.026667pt;}
.y48{bottom:404.386667pt;}
.y25{bottom:409.666667pt;}
.y47{bottom:429.026667pt;}
.y24{bottom:434.466667pt;}
.y46{bottom:453.666667pt;}
.y23{bottom:459.106667pt;}
.y45{bottom:478.466667pt;}
.y22{bottom:483.746667pt;}
.y44{bottom:503.106667pt;}
.y21{bottom:508.386667pt;}
.y43{bottom:527.746667pt;}
.y20{bottom:533.186667pt;}
.y42{bottom:552.413333pt;}
.y1f{bottom:557.853333pt;}
.y41{bottom:577.213333pt;}
.y1e{bottom:582.493333pt;}
.y40{bottom:601.853333pt;}
.y1d{bottom:603.933333pt;}
.y1c{bottom:625.533333pt;}
.y3f{bottom:626.493333pt;}
.y1b{bottom:646.973333pt;}
.y3e{bottom:651.293333pt;}
.y1a{bottom:668.413333pt;}
.y3d{bottom:675.933333pt;}
.y19{bottom:689.853333pt;}
.y3c{bottom:700.573333pt;}
.y18{bottom:711.293333pt;}
.y3b{bottom:725.213333pt;}
.y17{bottom:732.733333pt;}
.y3a{bottom:750.013333pt;}
.y16{bottom:754.333333pt;}
.y39{bottom:774.693333pt;}
.y15{bottom:775.813333pt;}
.y14{bottom:797.253333pt;}
.y38{bottom:799.333333pt;}
.y13{bottom:818.693333pt;}
.y37{bottom:824.133333pt;}
.y12{bottom:840.133333pt;}
.y36{bottom:848.773333pt;}
.y11{bottom:861.573333pt;}
.y35{bottom:873.413333pt;}
.y10{bottom:883.013333pt;}
.y34{bottom:898.053333pt;}
.yf{bottom:904.613333pt;}
.y33{bottom:922.853333pt;}
.ye{bottom:926.053333pt;}
.y32{bottom:947.493333pt;}
.yd{bottom:950.693333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.h7{height:35.232000pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.he{height:52.503750pt;}
.hc{height:54.734062pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hb{height:73.454062pt;}
.ha{height:73.490625pt;}
.hd{height:73.989375pt;}
.h6{height:75.465000pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x7{left:17.600000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x8{left:100.831988pt;}
.x13{left:113.311988pt;}
.x11{left:224.986655pt;}
.xf{left:236.666655pt;}
.xe{left:261.346655pt;}
.xb{left:267.266655pt;}
.x9{left:310.466655pt;}
.xd{left:322.946655pt;}
.x14{left:334.146655pt;}
.x12{left:349.026655pt;}
.xc{left:366.306655pt;}
.x10{left:368.226655pt;}
.xa{left:396.866655pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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