
    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_12e5480c2efc019e9748ac1c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.952148;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_cadc525d678ae346f2064bcc.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ecaf556c508f6855349e7616.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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_b6afd78c6682120be9b6fe12.woff')format("woff");}.ff4{font-family:ff4;line-height:0.869629;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_052607738815d11ecb2ac6f8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.858887;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_359e5e6f009252e6f09554aa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_847c0b723a1ae46991e2e9f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.858398;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_bbc8a524e02ee8d9c77fdb7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_eb4def28bd8db20693a10341.woff')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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:ffa;src:url('chunks/assets/font_1e77a95e699278ca06c4dded.woff')format("woff");}.ffa{font-family:ffa;line-height:0.718750;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);}
.v3{vertical-align:-33.120000px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.320000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.302400px;}
.ls2{letter-spacing:16.440480px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-33.261869px;}
.wsf{word-spacing:-19.689120px;}
.ws19{word-spacing:-16.597440px;}
.ws6{word-spacing:-9.337211px;}
.ws8{word-spacing:-8.757812px;}
.ws2{word-spacing:-0.713788px;}
.wsb{word-spacing:-0.152510px;}
.ws20{word-spacing:-0.116623px;}
.ws2f{word-spacing:0.000000px;}
.ws17{word-spacing:0.109572px;}
.ws3{word-spacing:0.213857px;}
.ws5{word-spacing:0.414838px;}
.ws22{word-spacing:0.767154px;}
.ws2b{word-spacing:0.829578px;}
.wse{word-spacing:0.863140px;}
.ws4{word-spacing:0.934451px;}
.ws27{word-spacing:1.075154px;}
.ws1{word-spacing:1.127524px;}
.ws9{word-spacing:1.254355px;}
.wsc{word-spacing:1.628366px;}
.ws0{word-spacing:2.111180px;}
.wsd{word-spacing:3.105806px;}
.ws18{word-spacing:5.149539px;}
.ws1e{word-spacing:5.326530px;}
.ws23{word-spacing:8.206553px;}
.ws29{word-spacing:9.682550px;}
.ws1f{word-spacing:10.366570px;}
.ws26{word-spacing:10.404318px;}
.ws2c{word-spacing:11.122561px;}
.ws14{word-spacing:12.054368px;}
.wsa{word-spacing:15.406537px;}
.ws2d{word-spacing:17.115339px;}
.ws2e{word-spacing:17.566554px;}
.ws24{word-spacing:21.048345px;}
.ws1a{word-spacing:22.134375px;}
.ws1b{word-spacing:22.508366px;}
.ws16{word-spacing:25.967136px;}
.ws25{word-spacing:28.909509px;}
.ws12{word-spacing:29.806505px;}
.ws21{word-spacing:31.789532px;}
.ws1d{word-spacing:33.263106px;}
.ws1c{word-spacing:33.324788px;}
.ws10{word-spacing:38.988929px;}
.ws28{word-spacing:40.429528px;}
.ws11{word-spacing:41.807703px;}
.ws13{word-spacing:48.774295px;}
.ws2a{word-spacing:49.966520px;}
.ws15{word-spacing:51.263764px;}
._a{margin-left:-8.293735px;}
._7{margin-left:-7.132248px;}
._0{margin-left:-6.079804px;}
._4{margin-left:-4.855118px;}
._6{margin-left:-3.334812px;}
._8{margin-left:-2.179452px;}
._1{margin-left:-1.008037px;}
._2{width:1.229708px;}
._3{width:15.598215px;}
._5{width:16.771202px;}
._b{width:19.425541px;}
._10{width:20.506476px;}
._9{width:22.750773px;}
._13{width:25.947600px;}
._17{width:27.311664px;}
._15{width:28.699121px;}
._d{width:29.806799px;}
._11{width:39.847297px;}
._f{width:43.762235px;}
._14{width:46.885198px;}
._12{width:51.355928px;}
._16{width:58.243722px;}
._c{width:67.129741px;}
._e{width:69.162047px;}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:32.400000px;}
.fs1{font-size:48.960000px;}
.fs7{font-size:53.280000px;}
.fs5{font-size:60.480000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:72.720000px;}
.fs0{font-size:73.440000px;}
.fs6{font-size:87.120000px;}
.fs4{font-size:106.560000px;}
.y0{bottom:0.000000px;}
.y33{bottom:5.849985px;}
.y31{bottom:40.439850px;}
.y1f{bottom:51.060000px;}
.y30{bottom:56.459850px;}
.y1e{bottom:73.200000px;}
.y1d{bottom:95.160000px;}
.y1c{bottom:117.300000px;}
.y1b{bottom:139.439700px;}
.y1a{bottom:161.399700px;}
.y19{bottom:193.439700px;}
.y2e{bottom:347.339850px;}
.y2d{bottom:369.479850px;}
.y2c{bottom:391.619850px;}
.y2b{bottom:413.579850px;}
.y2a{bottom:435.719850px;}
.y29{bottom:457.679850px;}
.y28{bottom:479.820000px;}
.y27{bottom:501.960000px;}
.y2f{bottom:505.379850px;}
.y32{bottom:517.402515px;}
.y26{bottom:523.920000px;}
.y25{bottom:546.060000px;}
.y17{bottom:548.039700px;}
.y24{bottom:568.200000px;}
.y16{bottom:569.999700px;}
.y23{bottom:590.160000px;}
.y15{bottom:592.139700px;}
.y22{bottom:612.300000px;}
.y14{bottom:614.279700px;}
.y21{bottom:634.440000px;}
.y13{bottom:636.239700px;}
.y20{bottom:656.400000px;}
.y12{bottom:658.379700px;}
.y11{bottom:680.519700px;}
.y18{bottom:696.899700px;}
.y10{bottom:702.479700px;}
.yf{bottom:738.839700px;}
.yd{bottom:781.859700px;}
.yc{bottom:803.999700px;}
.yb{bottom:825.959700px;}
.ye{bottom:853.859700px;}
.ya{bottom:913.979700px;}
.y7{bottom:977.879550px;}
.y6{bottom:997.679550px;}
.y5{bottom:1011.539550px;}
.y4{bottom:1031.339550px;}
.y3{bottom:1051.139550px;}
.y2{bottom:1067.519550px;}
.y1{bottom:1089.659550px;}
.y9{bottom:1156.259550px;}
.y8{bottom:1212.599550px;}
.h2{height:23.888672px;}
.hd{height:23.957985px;}
.h3{height:36.098438px;}
.hb{height:36.916172px;}
.h4{height:37.556719px;}
.hc{height:39.283594px;}
.h7{height:41.904844px;}
.h8{height:50.884453px;}
.ha{height:50.885653px;}
.he{height:51.750000px;}
.h5{height:54.326953px;}
.h1{height:58.896562px;}
.h9{height:59.214375px;}
.h6{height:73.676250px;}
.h0{height:1263.000000px;}
.w1{width:20.016000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xd{left:39.959850px;}
.x3{left:60.299850px;}
.x6{left:65.520000px;}
.x7{left:69.120000px;}
.xa{left:70.379850px;}
.xf{left:71.999850px;}
.x4{left:146.520000px;}
.x1{left:194.219850px;}
.x5{left:285.480000px;}
.x10{left:386.838000px;}
.x2{left:388.259850px;}
.xc{left:412.920000px;}
.xb{left:417.599850px;}
.x9{left:426.960000px;}
.xe{left:448.199850px;}
.x8{left:621.000000px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.840000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.268800pt;}
.ls2{letter-spacing:14.613760pt;}
.ws7{word-spacing:-29.566106pt;}
.wsf{word-spacing:-17.501440pt;}
.ws19{word-spacing:-14.753280pt;}
.ws6{word-spacing:-8.299743pt;}
.ws8{word-spacing:-7.784722pt;}
.ws2{word-spacing:-0.634478pt;}
.wsb{word-spacing:-0.135565pt;}
.ws20{word-spacing:-0.103665pt;}
.ws2f{word-spacing:0.000000pt;}
.ws17{word-spacing:0.097398pt;}
.ws3{word-spacing:0.190095pt;}
.ws5{word-spacing:0.368745pt;}
.ws22{word-spacing:0.681915pt;}
.ws2b{word-spacing:0.737403pt;}
.wse{word-spacing:0.767236pt;}
.ws4{word-spacing:0.830623pt;}
.ws27{word-spacing:0.955693pt;}
.ws1{word-spacing:1.002244pt;}
.ws9{word-spacing:1.114982pt;}
.wsc{word-spacing:1.447437pt;}
.ws0{word-spacing:1.876604pt;}
.wsd{word-spacing:2.760717pt;}
.ws18{word-spacing:4.577368pt;}
.ws1e{word-spacing:4.734693pt;}
.ws23{word-spacing:7.294714pt;}
.ws29{word-spacing:8.606711pt;}
.ws1f{word-spacing:9.214729pt;}
.ws26{word-spacing:9.248283pt;}
.ws2c{word-spacing:9.886721pt;}
.ws14{word-spacing:10.714994pt;}
.wsa{word-spacing:13.694700pt;}
.ws2d{word-spacing:15.213635pt;}
.ws2e{word-spacing:15.614715pt;}
.ws24{word-spacing:18.709640pt;}
.ws1a{word-spacing:19.675000pt;}
.ws1b{word-spacing:20.007437pt;}
.ws16{word-spacing:23.081898pt;}
.ws25{word-spacing:25.697341pt;}
.ws12{word-spacing:26.494671pt;}
.ws21{word-spacing:28.257362pt;}
.ws1d{word-spacing:29.567205pt;}
.ws1c{word-spacing:29.622034pt;}
.ws10{word-spacing:34.656826pt;}
.ws28{word-spacing:35.937358pt;}
.ws11{word-spacing:37.162403pt;}
.ws13{word-spacing:43.354929pt;}
.ws2a{word-spacing:44.414684pt;}
.ws15{word-spacing:45.567790pt;}
._a{margin-left:-7.372209pt;}
._7{margin-left:-6.339776pt;}
._0{margin-left:-5.404270pt;}
._4{margin-left:-4.315661pt;}
._6{margin-left:-2.964278pt;}
._8{margin-left:-1.937290pt;}
._1{margin-left:-0.896033pt;}
._2{width:1.093074pt;}
._3{width:13.865080pt;}
._5{width:14.907735pt;}
._b{width:17.267148pt;}
._10{width:18.227978pt;}
._9{width:20.222909pt;}
._13{width:23.064534pt;}
._17{width:24.277035pt;}
._15{width:25.510330pt;}
._d{width:26.494932pt;}
._11{width:35.419820pt;}
._f{width:38.899764pt;}
._14{width:41.675731pt;}
._12{width:45.649714pt;}
._16{width:51.772197pt;}
._c{width:59.670881pt;}
._e{width:61.477375pt;}
.fs2{font-size:28.800000pt;}
.fs1{font-size:43.520000pt;}
.fs7{font-size:47.360000pt;}
.fs5{font-size:53.760000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:64.640000pt;}
.fs0{font-size:65.280000pt;}
.fs6{font-size:77.440000pt;}
.fs4{font-size:94.720000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:5.199987pt;}
.y31{bottom:35.946533pt;}
.y1f{bottom:45.386667pt;}
.y30{bottom:50.186533pt;}
.y1e{bottom:65.066667pt;}
.y1d{bottom:84.586667pt;}
.y1c{bottom:104.266667pt;}
.y1b{bottom:123.946400pt;}
.y1a{bottom:143.466400pt;}
.y19{bottom:171.946400pt;}
.y2e{bottom:308.746533pt;}
.y2d{bottom:328.426533pt;}
.y2c{bottom:348.106533pt;}
.y2b{bottom:367.626533pt;}
.y2a{bottom:387.306533pt;}
.y29{bottom:406.826533pt;}
.y28{bottom:426.506667pt;}
.y27{bottom:446.186667pt;}
.y2f{bottom:449.226533pt;}
.y32{bottom:459.913347pt;}
.y26{bottom:465.706667pt;}
.y25{bottom:485.386667pt;}
.y17{bottom:487.146400pt;}
.y24{bottom:505.066667pt;}
.y16{bottom:506.666400pt;}
.y23{bottom:524.586667pt;}
.y15{bottom:526.346400pt;}
.y22{bottom:544.266667pt;}
.y14{bottom:546.026400pt;}
.y21{bottom:563.946667pt;}
.y13{bottom:565.546400pt;}
.y20{bottom:583.466667pt;}
.y12{bottom:585.226400pt;}
.y11{bottom:604.906400pt;}
.y18{bottom:619.466400pt;}
.y10{bottom:624.426400pt;}
.yf{bottom:656.746400pt;}
.yd{bottom:694.986400pt;}
.yc{bottom:714.666400pt;}
.yb{bottom:734.186400pt;}
.ye{bottom:758.986400pt;}
.ya{bottom:812.426400pt;}
.y7{bottom:869.226267pt;}
.y6{bottom:886.826267pt;}
.y5{bottom:899.146267pt;}
.y4{bottom:916.746267pt;}
.y3{bottom:934.346267pt;}
.y2{bottom:948.906267pt;}
.y1{bottom:968.586267pt;}
.y9{bottom:1027.786267pt;}
.y8{bottom:1077.866267pt;}
.h2{height:21.234375pt;}
.hd{height:21.295987pt;}
.h3{height:32.087500pt;}
.hb{height:32.814375pt;}
.h4{height:33.383750pt;}
.hc{height:34.918750pt;}
.h7{height:37.248750pt;}
.h8{height:45.230625pt;}
.ha{height:45.231692pt;}
.he{height:46.000000pt;}
.h5{height:48.290625pt;}
.h1{height:52.352500pt;}
.h9{height:52.635000pt;}
.h6{height:65.490000pt;}
.h0{height:1122.666667pt;}
.w1{width:17.792000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xd{left:35.519867pt;}
.x3{left:53.599867pt;}
.x6{left:58.240000pt;}
.x7{left:61.440000pt;}
.xa{left:62.559867pt;}
.xf{left:63.999867pt;}
.x4{left:130.240000pt;}
.x1{left:172.639867pt;}
.x5{left:253.760000pt;}
.x10{left:343.856000pt;}
.x2{left:345.119867pt;}
.xc{left:367.040000pt;}
.xb{left:371.199867pt;}
.x9{left:379.520000pt;}
.xe{left:398.399867pt;}
.x8{left:552.000000pt;}
}




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