
    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_07122cd7c6640972f5cc3e5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003000;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_28df71f03bb2dc62fb80e09a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_e30cc7766f37f732a1eb4b18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.023000;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_6414e002c20dbf5a8892e407.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2a8fa4e8ee9ac592975e7927.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963667;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_61c9c4715f6df2c088be16c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_e881f89017e5e462ff3a4783.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2fbac1c7e4603d881876f23b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953000;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_916fe6373091acda6a635ad7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:107.972021px;}
.ls7{letter-spacing:107.972030px;}
.ls2{letter-spacing:107.972165px;}
.ls6{letter-spacing:107.986253px;}
.ls5{letter-spacing:108.000408px;}
.ls4{letter-spacing:108.000426px;}
.ls3{letter-spacing:108.000566px;}
.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;}
}
.wse{word-spacing:-91.656006px;}
.ws9{word-spacing:-64.800002px;}
.ws1{word-spacing:-41.040001px;}
.ws8{word-spacing:-36.720001px;}
.ws3{word-spacing:-30.600000px;}
.ws4{word-spacing:-27.540001px;}
.wsa{word-spacing:-24.624001px;}
.ws5{word-spacing:-23.904002px;}
.ws2{word-spacing:-19.152000px;}
.wsb{word-spacing:-17.784001px;}
.ws7{word-spacing:-16.218001px;}
.ws6{word-spacing:-15.836401px;}
.wsd{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.400000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-28.620001px;}
._e{margin-left:-20.158651px;}
._d{margin-left:-18.790381px;}
._b{margin-left:-15.888815px;}
._9{margin-left:-12.096000px;}
._a{margin-left:-9.756001px;}
._4{margin-left:-8.424000px;}
._5{margin-left:-7.368000px;}
._0{margin-left:-5.280000px;}
._3{margin-left:-3.864000px;}
._2{margin-left:-2.520000px;}
._1{margin-left:-1.440000px;}
._7{width:1.080000px;}
._c{width:3.900000px;}
._6{width:393.022767px;}
.fc6{color:rgb(0,151,167);}
.fc3{color:rgb(24,69,59);}
.fc5{color:rgb(63,63,63);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(66,66,66);}
.fc0{color:rgb(252,248,243);}
.fse{font-size:60.000000px;}
.fsb{font-size:63.600005px;}
.fsa{font-size:70.800005px;}
.fs4{font-size:72.000002px;}
.fs2{font-size:84.000000px;}
.fs9{font-size:96.000006px;}
.fs5{font-size:108.000003px;}
.fs1{font-size:120.000001px;}
.fs7{font-size:144.000005px;}
.fs8{font-size:167.999999px;}
.fs3{font-size:180.000006px;}
.fsd{font-size:228.000013px;}
.fsc{font-size:270.000009px;}
.fs6{font-size:299.999998px;}
.fs0{font-size:330.000023px;}
.fsf{font-size:402.000025px;}
.y0{bottom:0.000000px;}
.y2a{bottom:33.887345px;}
.y20{bottom:46.987956px;}
.y54{bottom:59.887962px;}
.y70{bottom:70.695433px;}
.y53{bottom:77.887963px;}
.y78{bottom:79.589861px;}
.y59{bottom:82.017731px;}
.y61{bottom:84.573600px;}
.y6f{bottom:88.695433px;}
.y8{bottom:95.830139px;}
.y52{bottom:95.887964px;}
.y44{bottom:96.843764px;}
.y77{bottom:101.189864px;}
.y29{bottom:102.963764px;}
.y12{bottom:110.566852px;}
.y6e{bottom:112.233764px;}
.y3c{bottom:115.968764px;}
.ya{bottom:116.576197px;}
.y7{bottom:120.580139px;}
.y76{bottom:122.789864px;}
.y11{bottom:131.941852px;}
.y51{bottom:132.496365px;}
.y43{bottom:133.968765px;}
.y6d{bottom:136.983765px;}
.y15{bottom:138.674732px;}
.y28{bottom:139.413765px;}
.y9{bottom:141.326200px;}
.y1e{bottom:144.075630px;}
.y6{bottom:145.330140px;}
.y32{bottom:146.838765px;}
.y3b{bottom:153.093765px;}
.y10{bottom:153.316853px;}
.y75{bottom:156.338018px;}
.y5{bottom:170.080143px;}
.y42{bottom:171.093766px;}
.y50{bottom:171.111766px;}
.y27{bottom:181.938766px;}
.y6c{bottom:183.108766px;}
.y31{bottom:188.463767px;}
.y3a{bottom:190.218767px;}
.y4f{bottom:194.736767px;}
.yb{bottom:198.044593px;}
.y6b{bottom:204.483767px;}
.y74{bottom:205.838020px;}
.y58{bottom:206.328767px;}
.y41{bottom:208.218767px;}
.y1d{bottom:213.411835px;}
.y4e{bottom:218.361768px;}
.y26{bottom:223.563768px;}
.y6a{bottom:225.858768px;}
.y39{bottom:227.343768px;}
.y30{bottom:230.088768px;}
.y1c{bottom:238.161838px;}
.y4d{bottom:241.986768px;}
.y40{bottom:245.343768px;}
.y60{bottom:246.552626px;}
.y4{bottom:253.090732px;}
.y73{bottom:255.338021px;}
.y57{bottom:255.828769px;}
.y38{bottom:264.468769px;}
.y25{bottom:265.188769px;}
.y4c{bottom:265.611769px;}
.y16{bottom:266.981211px;}
.y69{bottom:268.608769px;}
.y62{bottom:272.407669px;}
.y2f{bottom:273.828769px;}
.y3d{bottom:274.207665px;}
.y2b{bottom:274.209139px;}
.y1b{bottom:276.657334px;}
.y5c{bottom:280.347627px;}
.y3f{bottom:282.468770px;}
.y3{bottom:289.090734px;}
.y4b{bottom:289.236770px;}
.y68{bottom:289.983770px;}
.y72{bottom:304.838027px;}
.y56{bottom:305.328770px;}
.y24{bottom:306.588770px;}
.y67{bottom:311.358771px;}
.y4a{bottom:312.861771px;}
.y5f{bottom:315.177628px;}
.yf{bottom:315.760108px;}
.y37{bottom:319.593771px;}
.y2e{bottom:323.328771px;}
.y49{bottom:336.486771px;}
.y1a{bottom:336.772071px;}
.ye{bottom:337.135109px;}
.y23{bottom:343.038772px;}
.y66{bottom:354.108772px;}
.y55{bottom:354.828772px;}
.y36{bottom:356.718772px;}
.yd{bottom:358.510110px;}
.y48{bottom:360.750772px;}
.y5b{bottom:361.347630px;}
.y19{bottom:361.522074px;}
.y2d{bottom:372.828772px;}
.y65{bottom:375.483773px;}
.y2{bottom:380.355891px;}
.y5e{bottom:383.802630px;}
.y22{bottom:385.788773px;}
.y47{bottom:387.111773px;}
.y35{bottom:393.843773px;}
.y64{bottom:396.858773px;}
.y18{bottom:400.359447px;}
.y13{bottom:403.240820px;}
.y46{bottom:410.736774px;}
.y14{bottom:412.959956px;}
.y2c{bottom:422.328774px;}
.y21{bottom:428.088774px;}
.y71{bottom:428.968813px;}
.y34{bottom:430.968774px;}
.y45{bottom:435.000774px;}
.y17{bottom:436.359443px;}
.y63{bottom:439.608775px;}
.y5a{bottom:442.347632px;}
.y1f{bottom:447.612992px;}
.y5d{bottom:452.427633px;}
.y1{bottom:469.230894px;}
.yc{bottom:501.612990px;}
.y3e{bottom:504.492992px;}
.y33{bottom:510.252988px;}
.h16{height:44.640000px;}
.h12{height:47.064004px;}
.h11{height:52.392004px;}
.h6{height:53.568002px;}
.h10{height:62.160000px;}
.h3{height:62.496000px;}
.h7{height:65.520000px;}
.hf{height:71.040004px;}
.ha{height:79.920003px;}
.h8{height:84.240003px;}
.h9{height:88.800001px;}
.h2{height:89.280001px;}
.h4{height:93.600001px;}
.hc{height:106.560003px;}
.hd{height:112.320004px;}
.he{height:131.040000px;}
.h5{height:140.400004px;}
.h14{height:168.720010px;}
.h13{height:199.800006px;}
.h15{height:211.950007px;}
.hb{height:235.499998px;}
.h1{height:259.050018px;}
.h17{height:313.560019px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1f{left:89.489174px;}
.x1{left:94.364176px;}
.x2{left:100.077764px;}
.xd{left:104.051332px;}
.x12{left:105.856266px;}
.x16{left:107.671809px;}
.x20{left:123.008865px;}
.x1b{left:131.796263px;}
.xe{left:149.164374px;}
.xf{left:158.051334px;}
.x14{left:159.856273px;}
.x17{left:163.487368px;}
.x15{left:213.856274px;}
.x18{left:217.487369px;}
.x1e{left:241.223104px;}
.x11{left:288.414077px;}
.x1d{left:299.114087px;}
.xc{left:301.659163px;}
.x10{left:392.028166px;}
.x13{left:418.094912px;}
.x19{left:422.669061px;}
.x7{left:548.661910px;}
.x6{left:550.125018px;}
.x5{left:564.283886px;}
.x8{left:645.856333px;}
.xa{left:654.723471px;}
.xb{left:664.733271px;}
.x9{left:669.046467px;}
.x4{left:677.986239px;}
.x3{left:691.565580px;}
.x21{left:711.528548px;}
.x1c{left:786.309325px;}
.x1a{left:793.437325px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:95.975130pt;}
.ls7{letter-spacing:95.975138pt;}
.ls2{letter-spacing:95.975258pt;}
.ls6{letter-spacing:95.987780pt;}
.ls5{letter-spacing:96.000363pt;}
.ls4{letter-spacing:96.000379pt;}
.ls3{letter-spacing:96.000503pt;}
.wse{word-spacing:-81.472005pt;}
.ws9{word-spacing:-57.600002pt;}
.ws1{word-spacing:-36.480001pt;}
.ws8{word-spacing:-32.640001pt;}
.ws3{word-spacing:-27.200000pt;}
.ws4{word-spacing:-24.480001pt;}
.wsa{word-spacing:-21.888001pt;}
.ws5{word-spacing:-21.248001pt;}
.ws2{word-spacing:-17.024000pt;}
.wsb{word-spacing:-15.808001pt;}
.ws7{word-spacing:-14.416001pt;}
.ws6{word-spacing:-14.076801pt;}
.wsd{word-spacing:-13.600000pt;}
.wsc{word-spacing:-12.800000pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-25.440001pt;}
._e{margin-left:-17.918801pt;}
._d{margin-left:-16.702561pt;}
._b{margin-left:-14.123391pt;}
._9{margin-left:-10.752000pt;}
._a{margin-left:-8.672001pt;}
._4{margin-left:-7.488000pt;}
._5{margin-left:-6.549334pt;}
._0{margin-left:-4.693334pt;}
._3{margin-left:-3.434667pt;}
._2{margin-left:-2.240000pt;}
._1{margin-left:-1.280000pt;}
._7{width:0.960000pt;}
._c{width:3.466667pt;}
._6{width:349.353571pt;}
.fse{font-size:53.333334pt;}
.fsb{font-size:56.533338pt;}
.fsa{font-size:62.933338pt;}
.fs4{font-size:64.000002pt;}
.fs2{font-size:74.666666pt;}
.fs9{font-size:85.333339pt;}
.fs5{font-size:96.000003pt;}
.fs1{font-size:106.666667pt;}
.fs7{font-size:128.000004pt;}
.fs8{font-size:149.333333pt;}
.fs3{font-size:160.000005pt;}
.fsd{font-size:202.666678pt;}
.fsc{font-size:240.000008pt;}
.fs6{font-size:266.666665pt;}
.fs0{font-size:293.333353pt;}
.fsf{font-size:357.333355pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:30.122085pt;}
.y20{bottom:41.767072pt;}
.y54{bottom:53.233744pt;}
.y70{bottom:62.840385pt;}
.y53{bottom:69.233745pt;}
.y78{bottom:70.746543pt;}
.y59{bottom:72.904650pt;}
.y61{bottom:75.176533pt;}
.y6f{bottom:78.840385pt;}
.y8{bottom:85.182345pt;}
.y52{bottom:85.233745pt;}
.y44{bottom:86.083345pt;}
.y77{bottom:89.946546pt;}
.y29{bottom:91.523346pt;}
.y12{bottom:98.281646pt;}
.y6e{bottom:99.763346pt;}
.y3c{bottom:103.083346pt;}
.ya{bottom:103.623286pt;}
.y7{bottom:107.182346pt;}
.y76{bottom:109.146546pt;}
.y11{bottom:117.281646pt;}
.y51{bottom:117.774546pt;}
.y43{bottom:119.083347pt;}
.y6d{bottom:121.763347pt;}
.y15{bottom:123.266429pt;}
.y28{bottom:123.923347pt;}
.y9{bottom:125.623289pt;}
.y1e{bottom:128.067227pt;}
.y6{bottom:129.182347pt;}
.y32{bottom:130.523347pt;}
.y3b{bottom:136.083347pt;}
.y10{bottom:136.281647pt;}
.y75{bottom:138.967127pt;}
.y5{bottom:151.182350pt;}
.y42{bottom:152.083348pt;}
.y50{bottom:152.099348pt;}
.y27{bottom:161.723348pt;}
.y6c{bottom:162.763348pt;}
.y31{bottom:167.523348pt;}
.y3a{bottom:169.083348pt;}
.y4f{bottom:173.099348pt;}
.yb{bottom:176.039638pt;}
.y6b{bottom:181.763349pt;}
.y74{bottom:182.967129pt;}
.y58{bottom:183.403349pt;}
.y41{bottom:185.083349pt;}
.y1d{bottom:189.699409pt;}
.y4e{bottom:194.099349pt;}
.y26{bottom:198.723349pt;}
.y6a{bottom:200.763349pt;}
.y39{bottom:202.083349pt;}
.y30{bottom:204.523349pt;}
.y1c{bottom:211.699411pt;}
.y4d{bottom:215.099350pt;}
.y40{bottom:218.083350pt;}
.y60{bottom:219.157890pt;}
.y4{bottom:224.969540pt;}
.y73{bottom:226.967130pt;}
.y57{bottom:227.403350pt;}
.y38{bottom:235.083350pt;}
.y25{bottom:235.723350pt;}
.y4c{bottom:236.099350pt;}
.y16{bottom:237.316632pt;}
.y69{bottom:238.763350pt;}
.y62{bottom:242.140150pt;}
.y2f{bottom:243.403351pt;}
.y3d{bottom:243.740147pt;}
.y2b{bottom:243.741457pt;}
.y1b{bottom:245.917631pt;}
.y5c{bottom:249.197891pt;}
.y3f{bottom:251.083351pt;}
.y3{bottom:256.969541pt;}
.y4b{bottom:257.099351pt;}
.y68{bottom:257.763351pt;}
.y72{bottom:270.967135pt;}
.y56{bottom:271.403351pt;}
.y24{bottom:272.523351pt;}
.y67{bottom:276.763352pt;}
.y4a{bottom:278.099352pt;}
.y5f{bottom:280.157892pt;}
.yf{bottom:280.675652pt;}
.y37{bottom:284.083352pt;}
.y2e{bottom:287.403352pt;}
.y49{bottom:299.099352pt;}
.y1a{bottom:299.352952pt;}
.ye{bottom:299.675652pt;}
.y23{bottom:304.923352pt;}
.y66{bottom:314.763353pt;}
.y55{bottom:315.403353pt;}
.y36{bottom:317.083353pt;}
.yd{bottom:318.675653pt;}
.y48{bottom:320.667353pt;}
.y5b{bottom:321.197893pt;}
.y19{bottom:321.352955pt;}
.y2d{bottom:331.403353pt;}
.y65{bottom:333.763353pt;}
.y2{bottom:338.094126pt;}
.y5e{bottom:341.157894pt;}
.y22{bottom:342.923354pt;}
.y47{bottom:344.099354pt;}
.y35{bottom:350.083354pt;}
.y64{bottom:352.763354pt;}
.y18{bottom:355.875064pt;}
.y13{bottom:358.436284pt;}
.y46{bottom:365.099354pt;}
.y14{bottom:367.075516pt;}
.y2c{bottom:375.403355pt;}
.y21{bottom:380.523355pt;}
.y71{bottom:381.305612pt;}
.y34{bottom:383.083355pt;}
.y45{bottom:386.667355pt;}
.y17{bottom:387.875060pt;}
.y63{bottom:390.763355pt;}
.y5a{bottom:393.197895pt;}
.y1f{bottom:397.878215pt;}
.y5d{bottom:402.157896pt;}
.y1{bottom:417.094128pt;}
.yc{bottom:445.878213pt;}
.y3e{bottom:448.438215pt;}
.y33{bottom:453.558211pt;}
.h16{height:39.680000pt;}
.h12{height:41.834670pt;}
.h11{height:46.570670pt;}
.h6{height:47.616002pt;}
.h10{height:55.253333pt;}
.h3{height:55.552000pt;}
.h7{height:58.240000pt;}
.hf{height:63.146671pt;}
.ha{height:71.040002pt;}
.h8{height:74.880002pt;}
.h9{height:78.933334pt;}
.h2{height:79.360001pt;}
.h4{height:83.200001pt;}
.hc{height:94.720003pt;}
.hd{height:99.840003pt;}
.he{height:116.480000pt;}
.h5{height:124.800004pt;}
.h14{height:149.973342pt;}
.h13{height:177.600006pt;}
.h15{height:188.400006pt;}
.hb{height:209.333332pt;}
.h1{height:230.266682pt;}
.h17{height:278.720017pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:79.545933pt;}
.x1{left:83.879268pt;}
.x2{left:88.958013pt;}
.xd{left:92.490073pt;}
.x12{left:94.094459pt;}
.x16{left:95.708275pt;}
.x20{left:109.341213pt;}
.x1b{left:117.152234pt;}
.xe{left:132.590554pt;}
.xf{left:140.490074pt;}
.x14{left:142.094465pt;}
.x17{left:145.322105pt;}
.x15{left:190.094466pt;}
.x18{left:193.322106pt;}
.x1e{left:214.420537pt;}
.x11{left:256.368068pt;}
.x1d{left:265.879189pt;}
.xc{left:268.141479pt;}
.x10{left:348.469481pt;}
.x13{left:371.639922pt;}
.x19{left:375.705832pt;}
.x7{left:487.699476pt;}
.x6{left:489.000016pt;}
.x5{left:501.585676pt;}
.x8{left:574.094518pt;}
.xa{left:581.976419pt;}
.xb{left:590.874019pt;}
.x9{left:594.707971pt;}
.x4{left:602.654434pt;}
.x3{left:614.724960pt;}
.x21{left:632.469820pt;}
.x1c{left:698.941622pt;}
.x1a{left:705.277623pt;}
}




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