
    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_bc9523ed4f9fd9117e1c86b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_adf188e9bc9814f270d91c68.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916000;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_a619cec994d54af3422fdad5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_1f62b3b13408b8fc1c8f313d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916000;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_ee2a21be27184aa6bb7cd0a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_eeb7c36ff60a87681137c7c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916000;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_0e9f5d7959057b97dfbf0050.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_8482b862bc058f1e76f26207.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_421104e1b8f4293e529c6935.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.720000;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_2780c6d69b9cc0207d9489f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925000;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:ffb;src:url('chunks/assets/font_98f38b63b8d654148bd7b04e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948000;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:ffc;src:url('chunks/assets/font_4d5682f9ca1d13494d36beab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933000;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);}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.lsd{letter-spacing:-1.350000px;}
.lsc{letter-spacing:-1.110000px;}
.ls16{letter-spacing:-1.065600px;}
.ls14{letter-spacing:-0.784800px;}
.ls13{letter-spacing:-0.669600px;}
.lsa{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.424800px;}
.ls20{letter-spacing:-0.280800px;}
.ls2b{letter-spacing:-0.273000px;}
.ls5{letter-spacing:-0.252000px;}
.ls1b{letter-spacing:-0.237600px;}
.ls10{letter-spacing:-0.230400px;}
.ls6{letter-spacing:-0.208800px;}
.ls18{letter-spacing:-0.165600px;}
.ls25{letter-spacing:-0.117000px;}
.ls1e{letter-spacing:-0.086400px;}
.ls29{letter-spacing:-0.062400px;}
.ls2a{letter-spacing:-0.054600px;}
.ls1c{letter-spacing:-0.021600px;}
.lsf{letter-spacing:-0.019800px;}
.ls9{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.028800px;}
.ls2{letter-spacing:0.066600px;}
.ls1d{letter-spacing:0.072000px;}
.lse{letter-spacing:0.092400px;}
.ls11{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.100800px;}
.ls1{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.136800px;}
.ls3{letter-spacing:0.150002px;}
.ls1a{letter-spacing:0.194400px;}
.ls23{letter-spacing:0.195000px;}
.ls22{letter-spacing:0.201600px;}
.ls26{letter-spacing:0.210600px;}
.ls1f{letter-spacing:0.259200px;}
.lsb{letter-spacing:0.260400px;}
.ls17{letter-spacing:0.280800px;}
.ls27{letter-spacing:0.304200px;}
.ls28{letter-spacing:0.312000px;}
.ls24{letter-spacing:0.351000px;}
.ls4{letter-spacing:0.354003px;}
.ls8{letter-spacing:0.837000px;}
.ls7{letter-spacing:1.004400px;}
.ls0{letter-spacing:61.200000px;}
.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;}
}
.ws0{word-spacing:-38.037010px;}
.ws11{word-spacing:-15.794998px;}
.wsa{word-spacing:-14.680800px;}
.wsd{word-spacing:-14.594400px;}
.wsc{word-spacing:-14.536800px;}
.ws7{word-spacing:-14.500800px;}
.ws6{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.400000px;}
.wse{word-spacing:-14.378400px;}
.wsb{word-spacing:-14.234400px;}
.ws9{word-spacing:-13.615200px;}
.ws10{word-spacing:-0.331200px;}
.ws12{word-spacing:0.000000px;}
.wsf{word-spacing:0.014400px;}
.ws2{word-spacing:1.050000px;}
.ws3{word-spacing:1.290000px;}
.ws5{word-spacing:47.419800px;}
.ws4{word-spacing:94.468140px;}
.ws1{word-spacing:1707.691237px;}
._1{margin-left:-1.204991px;}
._0{width:1.368000px;}
.fc6{color:rgb(30,140,200);}
.fc4{color:rgb(23,137,255);}
.fc3{color:rgb(15,70,100);}
.fc1{color:rgb(255,75,161);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(108,34,124);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:59.999990px;}
.fs5{font-size:65.999995px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.999990px;}
.fs3{font-size:83.999995px;}
.fs2{font-size:126.000000px;}
.fs6{font-size:144.000000px;}
.fs1{font-size:186.000048px;}
.y0{bottom:0.000000px;}
.yc{bottom:19.080000px;}
.yb{bottom:41.400000px;}
.y1e{bottom:86.760000px;}
.y1d{bottom:124.200000px;}
.y1c{bottom:148.320000px;}
.y1b{bottom:184.320000px;}
.y15{bottom:198.720000px;}
.y1a{bottom:208.080000px;}
.ya{bottom:261.360000px;}
.ye{bottom:271.800000px;}
.yd{bottom:294.120000px;}
.y16{bottom:347.760000px;}
.y10{bottom:525.960000px;}
.y19{bottom:561.240000px;}
.y14{bottom:623.160000px;}
.y13{bottom:644.040000px;}
.yf{bottom:647.640000px;}
.y18{bottom:648.000000px;}
.y12{bottom:666.720000px;}
.y17{bottom:739.440000px;}
.y11{bottom:768.960000px;}
.y2{bottom:869.400000px;}
.y1{bottom:892.080000px;}
.y5{bottom:900.360000px;}
.y7{bottom:935.280000px;}
.y6{bottom:947.160000px;}
.y9{bottom:955.800000px;}
.y8{bottom:976.680000px;}
.y4{bottom:1035.360000px;}
.y3{bottom:1077.480030px;}
.h6{height:43.319993px;}
.h7{height:47.651997px;}
.ha{height:50.976000px;}
.h8{height:51.984000px;}
.h1{height:52.128000px;}
.hb{height:56.471993px;}
.h4{height:60.647997px;}
.h5{height:67.799993px;}
.h3{height:90.972000px;}
.h9{height:101.952000px;}
.h2{height:134.292035px;}
.h0{height:1224.000000px;}
.w0{width:856.500000px;}
.x0{left:0.000000px;}
.x4{left:42.000000px;}
.x17{left:95.095860px;}
.xa{left:101.284365px;}
.x18{left:110.588625px;}
.x3{left:117.585000px;}
.x16{left:138.692115px;}
.x6{left:192.296100px;}
.x5{left:318.358350px;}
.x8{left:323.965500px;}
.x15{left:341.325900px;}
.x9{left:371.028000px;}
.xd{left:424.151700px;}
.xe{left:530.682600px;}
.xf{left:533.772600px;}
.x10{left:541.932600px;}
.xc{left:630.160050px;}
.xb{left:639.437550px;}
.x14{left:643.661550px;}
.x2{left:675.015000px;}
.x7{left:676.518900px;}
.x1{left:679.890000px;}
.x11{left:691.279950px;}
.x13{left:698.592450px;}
.x12{left:702.814950px;}
@media print{
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.lsd{letter-spacing:-1.200000pt;}
.lsc{letter-spacing:-0.986667pt;}
.ls16{letter-spacing:-0.947200pt;}
.ls14{letter-spacing:-0.697600pt;}
.ls13{letter-spacing:-0.595200pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.377600pt;}
.ls20{letter-spacing:-0.249600pt;}
.ls2b{letter-spacing:-0.242667pt;}
.ls5{letter-spacing:-0.224000pt;}
.ls1b{letter-spacing:-0.211200pt;}
.ls10{letter-spacing:-0.204800pt;}
.ls6{letter-spacing:-0.185600pt;}
.ls18{letter-spacing:-0.147200pt;}
.ls25{letter-spacing:-0.104000pt;}
.ls1e{letter-spacing:-0.076800pt;}
.ls29{letter-spacing:-0.055467pt;}
.ls2a{letter-spacing:-0.048533pt;}
.ls1c{letter-spacing:-0.019200pt;}
.lsf{letter-spacing:-0.017600pt;}
.ls9{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.025600pt;}
.ls2{letter-spacing:0.059200pt;}
.ls1d{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.082133pt;}
.ls11{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.089600pt;}
.ls1{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.121600pt;}
.ls3{letter-spacing:0.133335pt;}
.ls1a{letter-spacing:0.172800pt;}
.ls23{letter-spacing:0.173333pt;}
.ls22{letter-spacing:0.179200pt;}
.ls26{letter-spacing:0.187200pt;}
.ls1f{letter-spacing:0.230400pt;}
.lsb{letter-spacing:0.231467pt;}
.ls17{letter-spacing:0.249600pt;}
.ls27{letter-spacing:0.270400pt;}
.ls28{letter-spacing:0.277333pt;}
.ls24{letter-spacing:0.312000pt;}
.ls4{letter-spacing:0.314669pt;}
.ls8{letter-spacing:0.744000pt;}
.ls7{letter-spacing:0.892800pt;}
.ls0{letter-spacing:54.400000pt;}
.ws0{word-spacing:-33.810675pt;}
.ws11{word-spacing:-14.039998pt;}
.wsa{word-spacing:-13.049600pt;}
.wsd{word-spacing:-12.972800pt;}
.wsc{word-spacing:-12.921600pt;}
.ws7{word-spacing:-12.889600pt;}
.ws6{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.800000pt;}
.wse{word-spacing:-12.780800pt;}
.wsb{word-spacing:-12.652800pt;}
.ws9{word-spacing:-12.102400pt;}
.ws10{word-spacing:-0.294400pt;}
.ws12{word-spacing:0.000000pt;}
.wsf{word-spacing:0.012800pt;}
.ws2{word-spacing:0.933333pt;}
.ws3{word-spacing:1.146666pt;}
.ws5{word-spacing:42.150933pt;}
.ws4{word-spacing:83.971680pt;}
.ws1{word-spacing:1517.947766pt;}
._1{margin-left:-1.071103pt;}
._0{width:1.216000pt;}
.fs4{font-size:53.333325pt;}
.fs5{font-size:58.666662pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333325pt;}
.fs3{font-size:74.666662pt;}
.fs2{font-size:112.000000pt;}
.fs6{font-size:128.000000pt;}
.fs1{font-size:165.333376pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:16.960000pt;}
.yb{bottom:36.800000pt;}
.y1e{bottom:77.120000pt;}
.y1d{bottom:110.400000pt;}
.y1c{bottom:131.840000pt;}
.y1b{bottom:163.840000pt;}
.y15{bottom:176.640000pt;}
.y1a{bottom:184.960000pt;}
.ya{bottom:232.320000pt;}
.ye{bottom:241.600000pt;}
.yd{bottom:261.440000pt;}
.y16{bottom:309.120000pt;}
.y10{bottom:467.520000pt;}
.y19{bottom:498.880000pt;}
.y14{bottom:553.920000pt;}
.y13{bottom:572.480000pt;}
.yf{bottom:575.680000pt;}
.y18{bottom:576.000000pt;}
.y12{bottom:592.640000pt;}
.y17{bottom:657.280000pt;}
.y11{bottom:683.520000pt;}
.y2{bottom:772.800000pt;}
.y1{bottom:792.960000pt;}
.y5{bottom:800.320000pt;}
.y7{bottom:831.360000pt;}
.y6{bottom:841.920000pt;}
.y9{bottom:849.600000pt;}
.y8{bottom:868.160000pt;}
.y4{bottom:920.320000pt;}
.y3{bottom:957.760027pt;}
.h6{height:38.506661pt;}
.h7{height:42.357330pt;}
.ha{height:45.312000pt;}
.h8{height:46.208000pt;}
.h1{height:46.336000pt;}
.hb{height:50.197327pt;}
.h4{height:53.909330pt;}
.h5{height:60.266661pt;}
.h3{height:80.864000pt;}
.h9{height:90.624000pt;}
.h2{height:119.370697pt;}
.h0{height:1088.000000pt;}
.w0{width:761.333333pt;}
.x0{left:0.000000pt;}
.x4{left:37.333333pt;}
.x17{left:84.529653pt;}
.xa{left:90.030547pt;}
.x18{left:98.301000pt;}
.x3{left:104.520000pt;}
.x16{left:123.281880pt;}
.x6{left:170.929867pt;}
.x5{left:282.985200pt;}
.x8{left:287.969333pt;}
.x15{left:303.400800pt;}
.x9{left:329.802667pt;}
.xd{left:377.023733pt;}
.xe{left:471.717867pt;}
.xf{left:474.464533pt;}
.x10{left:481.717867pt;}
.xc{left:560.142267pt;}
.xb{left:568.388933pt;}
.x14{left:572.143600pt;}
.x2{left:600.013333pt;}
.x7{left:601.350133pt;}
.x1{left:604.346667pt;}
.x11{left:614.471067pt;}
.x13{left:620.971067pt;}
.x12{left:624.724400pt;}
}




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