
    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_957e109be21a5a52b3617b33.woff')format("woff");}.ff1{font-family:ff1;line-height:1.024414;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_5fbea382a215759cf0787eb7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_c3843433e8100afac03c031d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_a042e8d44c819847b6d6e7f1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.902344;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_07da2bec084682d4f9c9d1c9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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_5afed38b87908bcc9d6bb591.woff')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.ls4{letter-spacing:-2.400000px;}
.ls14{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.300000px;}
.lsb{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.300000px;}
.ls3{letter-spacing:3.150000px;}
.ls15{letter-spacing:3.960000px;}
.ls16{letter-spacing:4.200000px;}
.ls1{letter-spacing:5.400000px;}
.lsa{letter-spacing:5.700000px;}
.ls6{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.300000px;}
.ls0{letter-spacing:7.200000px;}
.lse{letter-spacing:10.200000px;}
.ls2{letter-spacing:15.600000px;}
.lsf{letter-spacing:16.860000px;}
.ls12{letter-spacing:18.900000px;}
.ls11{letter-spacing:66.462000px;}
.ls10{letter-spacing:66.493200px;}
.ls13{letter-spacing:71.160000px;}
.ls5{letter-spacing:625.440000px;}
.ls7{letter-spacing:639.240000px;}
.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:-93.600000px;}
.ws11{word-spacing:-71.160000px;}
.wse{word-spacing:-38.862000px;}
.ws16{word-spacing:-36.603000px;}
.ws10{word-spacing:-18.900000px;}
.wsf{word-spacing:-16.920000px;}
.ws12{word-spacing:-16.860000px;}
.ws3{word-spacing:-15.600000px;}
.wsd{word-spacing:-13.488000px;}
.ws9{word-spacing:-6.300000px;}
.ws7{word-spacing:-6.000000px;}
.wsb{word-spacing:-5.700000px;}
.ws2{word-spacing:-5.400000px;}
.ws17{word-spacing:-4.200000px;}
.ws15{word-spacing:-3.960000px;}
.wsa{word-spacing:-0.300000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.300000px;}
.ws8{word-spacing:0.600000px;}
.ws14{word-spacing:0.660000px;}
.ws5{word-spacing:2.400000px;}
.ws6{word-spacing:3.720000px;}
.ws4{word-spacing:7.938000px;}
.ws13{word-spacing:70.860000px;}
._19{margin-left:-67.260000px;}
._1b{margin-left:-18.912000px;}
._3{margin-left:-15.568800px;}
._4{margin-left:-11.200800px;}
._f{margin-left:-8.001000px;}
._c{margin-left:-6.579000px;}
._0{margin-left:-5.169600px;}
._2{margin-left:-4.050000px;}
._6{margin-left:-2.889000px;}
._5{margin-left:-1.533600px;}
._10{width:1.522800px;}
._14{width:2.731200px;}
._9{width:4.170000px;}
._1{width:5.400000px;}
._17{width:8.140800px;}
._11{width:9.822000px;}
._7{width:11.178000px;}
._1a{width:12.891000px;}
._1c{width:18.849000px;}
._18{width:35.040000px;}
._15{width:41.691000px;}
._12{width:66.495000px;}
._16{width:68.160000px;}
._13{width:70.236600px;}
._8{width:226.950000px;}
._b{width:244.440000px;}
._e{width:274.389000px;}
._a{width:282.219000px;}
._d{width:284.520000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs8{font-size:102.000000px;}
.fs3{font-size:126.000000px;}
.fs0{font-size:144.000000px;}
.fs4{font-size:240.000000px;}
.fs2{font-size:312.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:76.339350px;}
.y8{bottom:142.103400px;}
.y42{bottom:144.399000px;}
.y2{bottom:146.218800px;}
.y41{bottom:165.394500px;}
.y7{bottom:167.105400px;}
.y40{bottom:186.399000px;}
.y3f{bottom:215.902800px;}
.y3e{bottom:236.902800px;}
.y3d{bottom:257.898300px;}
.y27{bottom:265.034550px;}
.y3c{bottom:278.902800px;}
.y26{bottom:304.383450px;}
.y3b{bottom:308.406900px;}
.y25{bottom:322.383450px;}
.y3a{bottom:329.402400px;}
.y24{bottom:340.383450px;}
.y39{bottom:350.406900px;}
.y23{bottom:358.383450px;}
.y22{bottom:376.383450px;}
.y38{bottom:379.910700px;}
.y21{bottom:394.383450px;}
.y37{bottom:400.906200px;}
.y20{bottom:412.383450px;}
.y36{bottom:421.910700px;}
.y1f{bottom:430.383450px;}
.y1e{bottom:448.383450px;}
.y35{bottom:451.414650px;}
.y1d{bottom:466.383450px;}
.y34{bottom:472.410150px;}
.y55{bottom:480.800700px;}
.y1c{bottom:484.383450px;}
.y33{bottom:493.414650px;}
.y54{bottom:501.805200px;}
.y1b{bottom:502.383450px;}
.y1a{bottom:520.383450px;}
.y53{bottom:522.809700px;}
.y32{bottom:522.918600px;}
.y19{bottom:538.383450px;}
.y52{bottom:543.814200px;}
.y31{bottom:543.918600px;}
.y18{bottom:556.383450px;}
.y30{bottom:564.909600px;}
.y5{bottom:571.697250px;}
.y51{bottom:573.313650px;}
.y17{bottom:574.383450px;}
.y2f{bottom:585.914100px;}
.y16{bottom:592.383450px;}
.y50{bottom:594.318150px;}
.y2e{bottom:606.918600px;}
.y15{bottom:610.383450px;}
.y4f{bottom:623.817600px;}
.y14{bottom:628.383450px;}
.y2d{bottom:636.422550px;}
.y4e{bottom:644.822100px;}
.y13{bottom:646.383450px;}
.y6{bottom:653.473050px;}
.y2c{bottom:657.418050px;}
.y12{bottom:664.383450px;}
.y4d{bottom:674.326050px;}
.y2b{bottom:678.422550px;}
.y11{bottom:690.888450px;}
.y2a{bottom:707.926500px;}
.y4c{bottom:724.830000px;}
.y10{bottom:735.888450px;}
.y4b{bottom:745.830000px;}
.y4{bottom:750.064650px;}
.yf{bottom:753.888450px;}
.y4a{bottom:766.821000px;}
.ye{bottom:771.888450px;}
.y49{bottom:787.825500px;}
.yd{bottom:798.393450px;}
.y48{bottom:808.830000px;}
.y3{bottom:832.588650px;}
.y47{bottom:836.207850px;}
.y1{bottom:838.998750px;}
.yc{bottom:843.393450px;}
.y46{bottom:857.198850px;}
.yb{bottom:861.393450px;}
.y45{bottom:878.203350px;}
.ya{bottom:879.393450px;}
.y44{bottom:899.207850px;}
.y9{bottom:905.898450px;}
.y29{bottom:922.726500px;}
.y43{bottom:928.711800px;}
.he{height:35.663086px;}
.h8{height:39.990234px;}
.ha{height:40.757812px;}
.h3{height:45.852539px;}
.h9{height:48.399902px;}
.h7{height:50.947266px;}
.hc{height:53.494629px;}
.hd{height:56.041992px;}
.hb{height:86.610352px;}
.h5{height:106.804688px;}
.h2{height:122.062500px;}
.h6{height:203.437500px;}
.h4{height:264.468750px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x7{left:97.795350px;}
.x8{left:119.035350px;}
.xc{left:135.670350px;}
.x3{left:150.916200px;}
.x5{left:184.288050px;}
.x1{left:194.313900px;}
.x4{left:225.250200px;}
.x2{left:233.697300px;}
.x6{left:321.087450px;}
.x9{left:557.427600px;}
.xa{left:590.539350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.ls4{letter-spacing:-2.133333pt;}
.ls14{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls3{letter-spacing:2.800000pt;}
.ls15{letter-spacing:3.520000pt;}
.ls16{letter-spacing:3.733333pt;}
.ls1{letter-spacing:4.800000pt;}
.lsa{letter-spacing:5.066667pt;}
.ls6{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.600000pt;}
.ls0{letter-spacing:6.400000pt;}
.lse{letter-spacing:9.066667pt;}
.ls2{letter-spacing:13.866667pt;}
.lsf{letter-spacing:14.986667pt;}
.ls12{letter-spacing:16.800000pt;}
.ls11{letter-spacing:59.077333pt;}
.ls10{letter-spacing:59.105067pt;}
.ls13{letter-spacing:63.253333pt;}
.ls5{letter-spacing:555.946667pt;}
.ls7{letter-spacing:568.213333pt;}
.ws1{word-spacing:-83.200000pt;}
.ws11{word-spacing:-63.253333pt;}
.wse{word-spacing:-34.544000pt;}
.ws16{word-spacing:-32.536000pt;}
.ws10{word-spacing:-16.800000pt;}
.wsf{word-spacing:-15.040000pt;}
.ws12{word-spacing:-14.986667pt;}
.ws3{word-spacing:-13.866667pt;}
.wsd{word-spacing:-11.989333pt;}
.ws9{word-spacing:-5.600000pt;}
.ws7{word-spacing:-5.333333pt;}
.wsb{word-spacing:-5.066667pt;}
.ws2{word-spacing:-4.800000pt;}
.ws17{word-spacing:-3.733333pt;}
.ws15{word-spacing:-3.520000pt;}
.wsa{word-spacing:-0.266667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.266667pt;}
.ws8{word-spacing:0.533333pt;}
.ws14{word-spacing:0.586667pt;}
.ws5{word-spacing:2.133333pt;}
.ws6{word-spacing:3.306667pt;}
.ws4{word-spacing:7.056000pt;}
.ws13{word-spacing:62.986667pt;}
._19{margin-left:-59.786667pt;}
._1b{margin-left:-16.810667pt;}
._3{margin-left:-13.838933pt;}
._4{margin-left:-9.956267pt;}
._f{margin-left:-7.112000pt;}
._c{margin-left:-5.848000pt;}
._0{margin-left:-4.595200pt;}
._2{margin-left:-3.600000pt;}
._6{margin-left:-2.568000pt;}
._5{margin-left:-1.363200pt;}
._10{width:1.353600pt;}
._14{width:2.427733pt;}
._9{width:3.706667pt;}
._1{width:4.800000pt;}
._17{width:7.236267pt;}
._11{width:8.730667pt;}
._7{width:9.936000pt;}
._1a{width:11.458667pt;}
._1c{width:16.754667pt;}
._18{width:31.146667pt;}
._15{width:37.058667pt;}
._12{width:59.106667pt;}
._16{width:60.586667pt;}
._13{width:62.432533pt;}
._8{width:201.733333pt;}
._b{width:217.280000pt;}
._e{width:243.901333pt;}
._a{width:250.861333pt;}
._d{width:252.906667pt;}
.fsb{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs8{font-size:90.666667pt;}
.fs3{font-size:112.000000pt;}
.fs0{font-size:128.000000pt;}
.fs4{font-size:213.333333pt;}
.fs2{font-size:277.333333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:67.857200pt;}
.y8{bottom:126.314133pt;}
.y42{bottom:128.354667pt;}
.y2{bottom:129.972267pt;}
.y41{bottom:147.017333pt;}
.y7{bottom:148.538133pt;}
.y40{bottom:165.688000pt;}
.y3f{bottom:191.913600pt;}
.y3e{bottom:210.580267pt;}
.y3d{bottom:229.242933pt;}
.y27{bottom:235.586267pt;}
.y3c{bottom:247.913600pt;}
.y26{bottom:270.563067pt;}
.y3b{bottom:274.139467pt;}
.y25{bottom:286.563067pt;}
.y3a{bottom:292.802133pt;}
.y24{bottom:302.563067pt;}
.y39{bottom:311.472800pt;}
.y23{bottom:318.563067pt;}
.y22{bottom:334.563067pt;}
.y38{bottom:337.698400pt;}
.y21{bottom:350.563067pt;}
.y37{bottom:356.361067pt;}
.y20{bottom:366.563067pt;}
.y36{bottom:375.031733pt;}
.y1f{bottom:382.563067pt;}
.y1e{bottom:398.563067pt;}
.y35{bottom:401.257467pt;}
.y1d{bottom:414.563067pt;}
.y34{bottom:419.920133pt;}
.y55{bottom:427.378400pt;}
.y1c{bottom:430.563067pt;}
.y33{bottom:438.590800pt;}
.y54{bottom:446.049067pt;}
.y1b{bottom:446.563067pt;}
.y1a{bottom:462.563067pt;}
.y53{bottom:464.719733pt;}
.y32{bottom:464.816533pt;}
.y19{bottom:478.563067pt;}
.y52{bottom:483.390400pt;}
.y31{bottom:483.483200pt;}
.y18{bottom:494.563067pt;}
.y30{bottom:502.141867pt;}
.y5{bottom:508.175333pt;}
.y51{bottom:509.612133pt;}
.y17{bottom:510.563067pt;}
.y2f{bottom:520.812533pt;}
.y16{bottom:526.563067pt;}
.y50{bottom:528.282800pt;}
.y2e{bottom:539.483200pt;}
.y15{bottom:542.563067pt;}
.y4f{bottom:554.504533pt;}
.y14{bottom:558.563067pt;}
.y2d{bottom:565.708933pt;}
.y4e{bottom:573.175200pt;}
.y13{bottom:574.563067pt;}
.y6{bottom:580.864933pt;}
.y2c{bottom:584.371600pt;}
.y12{bottom:590.563067pt;}
.y4d{bottom:599.400933pt;}
.y2b{bottom:603.042267pt;}
.y11{bottom:614.123067pt;}
.y2a{bottom:629.268000pt;}
.y4c{bottom:644.293333pt;}
.y10{bottom:654.123067pt;}
.y4b{bottom:662.960000pt;}
.y4{bottom:666.724133pt;}
.yf{bottom:670.123067pt;}
.y4a{bottom:681.618667pt;}
.ye{bottom:686.123067pt;}
.y49{bottom:700.289333pt;}
.yd{bottom:709.683067pt;}
.y48{bottom:718.960000pt;}
.y3{bottom:740.078800pt;}
.y47{bottom:743.295867pt;}
.y1{bottom:745.776667pt;}
.yc{bottom:749.683067pt;}
.y46{bottom:761.954533pt;}
.yb{bottom:765.683067pt;}
.y45{bottom:780.625200pt;}
.ya{bottom:781.683067pt;}
.y44{bottom:799.295867pt;}
.y9{bottom:805.243067pt;}
.y29{bottom:820.201333pt;}
.y43{bottom:825.521600pt;}
.he{height:31.700521pt;}
.h8{height:35.546875pt;}
.ha{height:36.229167pt;}
.h3{height:40.757812pt;}
.h9{height:43.022135pt;}
.h7{height:45.286458pt;}
.hc{height:47.550781pt;}
.hd{height:49.815104pt;}
.hb{height:76.986979pt;}
.h5{height:94.937500pt;}
.h2{height:108.500000pt;}
.h6{height:180.833333pt;}
.h4{height:235.083333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x7{left:86.929200pt;}
.x8{left:105.809200pt;}
.xc{left:120.595867pt;}
.x3{left:134.147733pt;}
.x5{left:163.811600pt;}
.x1{left:172.723467pt;}
.x4{left:200.222400pt;}
.x2{left:207.730933pt;}
.x6{left:285.411067pt;}
.x9{left:495.491200pt;}
.xa{left:524.923867pt;}
}




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