
    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_2e93a85d2533cfef158f0baf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.004395;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_12d0364d73b88ca089c8c48f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_500cbac265a061bee5309f81.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6e1773a11a83c622b6fd9075.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761230;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_0fea0afaa12f8d265de433d8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c278595609f495c35906a3ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_0e0a8951d4dfabd36010a4ca.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_676d37a77074d00e97e15259.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_3522646376002721c9aff086.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls2e{letter-spacing:-0.342144px;}
.ls1d{letter-spacing:-0.310464px;}
.ls1e{letter-spacing:-0.297792px;}
.ls30{letter-spacing:-0.285120px;}
.ls27{letter-spacing:-0.266112px;}
.ls3b{letter-spacing:-0.259776px;}
.ls36{letter-spacing:-0.253440px;}
.ls28{letter-spacing:-0.234432px;}
.ls16{letter-spacing:-0.221760px;}
.ls1b{letter-spacing:-0.215424px;}
.ls21{letter-spacing:-0.209088px;}
.ls1c{letter-spacing:-0.202752px;}
.lsc{letter-spacing:-0.196416px;}
.lsa{letter-spacing:-0.190080px;}
.ls29{letter-spacing:-0.183744px;}
.ls14{letter-spacing:-0.178848px;}
.ls11{letter-spacing:-0.177408px;}
.ls19{letter-spacing:-0.171072px;}
.lsd{letter-spacing:-0.164736px;}
.ls17{letter-spacing:-0.158400px;}
.ls13{letter-spacing:-0.152352px;}
.ls22{letter-spacing:-0.152064px;}
.ls1f{letter-spacing:-0.145728px;}
.ls2f{letter-spacing:-0.139392px;}
.ls8{letter-spacing:-0.133056px;}
.lsb{letter-spacing:-0.132480px;}
.ls12{letter-spacing:-0.120384px;}
.ls18{letter-spacing:-0.101376px;}
.ls20{letter-spacing:-0.095040px;}
.ls15{letter-spacing:-0.092736px;}
.ls1a{letter-spacing:-0.050688px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.113760px;}
.ls4{letter-spacing:0.114768px;}
.ls3{letter-spacing:0.115200px;}
.ls2{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.141984px;}
.ls3a{letter-spacing:0.173808px;}
.ls34{letter-spacing:0.291024px;}
.lsf{letter-spacing:0.325728px;}
.lse{letter-spacing:0.467712px;}
.ls32{letter-spacing:0.879840px;}
.ls2b{letter-spacing:1.078560px;}
.ls25{letter-spacing:2.213280px;}
.ls38{letter-spacing:2.731680px;}
.ls23{letter-spacing:3.533760px;}
.ls39{letter-spacing:3.566448px;}
.ls37{letter-spacing:3.759840px;}
.ls31{letter-spacing:7.424640px;}
.ls7{letter-spacing:8.271504px;}
.ls35{letter-spacing:8.566560px;}
.ls2d{letter-spacing:10.200960px;}
.ls6{letter-spacing:11.453760px;}
.ls26{letter-spacing:11.716704px;}
.ls2a{letter-spacing:14.932080px;}
.ls2c{letter-spacing:15.487344px;}
.ls33{letter-spacing:15.913584px;}
.ls24{letter-spacing:68.024016px;}
.ls1{letter-spacing:1205.214624px;}
.ls0{letter-spacing:2019.200400px;}
.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;}
}
.ws4{word-spacing:-21.205728px;}
.ws5{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837760px;}
.ws2{word-spacing:-14.319360px;}
.wsb{word-spacing:-14.268672px;}
.ws10{word-spacing:-14.224320px;}
.ws7{word-spacing:-14.198976px;}
.wse{word-spacing:-14.186304px;}
.wsf{word-spacing:-14.179968px;}
.ws8{word-spacing:-14.167296px;}
.ws3{word-spacing:-14.154624px;}
.ws11{word-spacing:-14.148288px;}
.wsc{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.wsd{word-spacing:-14.122944px;}
.ws16{word-spacing:-14.116608px;}
.ws14{word-spacing:-14.110272px;}
.ws17{word-spacing:-14.103936px;}
.ws6{word-spacing:-14.097600px;}
.ws15{word-spacing:-14.084928px;}
.ws18{word-spacing:-14.059584px;}
.ws13{word-spacing:-14.053248px;}
.ws12{word-spacing:-14.008896px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:0.082368px;}
._10{margin-left:-3.733920px;}
._5{margin-left:-2.661120px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._b{width:2.090880px;}
._e{width:3.294720px;}
._9{width:4.590000px;}
._3{width:6.145920px;}
._6{width:8.046720px;}
._c{width:9.123840px;}
._a{width:10.264320px;}
._8{width:11.278080px;}
._7{width:12.291840px;}
._11{width:15.181056px;}
._4{width:16.410240px;}
._d{width:17.930880px;}
._12{width:18.944640px;}
._16{width:19.979136px;}
._13{width:21.035520px;}
._14{width:22.302720px;}
._18{width:23.760000px;}
._19{width:25.217280px;}
._17{width:26.928000px;}
._f{width:30.286080px;}
._1a{width:33.264000px;}
._15{width:68.120784px;}
._1c{width:105.684480px;}
._1b{width:106.888320px;}
._1{width:2492.661312px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y36{bottom:92.520000px;}
.y6e{bottom:105.480000px;}
.y35{bottom:111.600000px;}
.y6d{bottom:124.920000px;}
.y34{bottom:131.040000px;}
.y6c{bottom:144.000000px;}
.y33{bottom:150.120000px;}
.y6b{bottom:163.440000px;}
.y32{bottom:169.200000px;}
.y6a{bottom:182.520000px;}
.y31{bottom:188.640000px;}
.y69{bottom:201.600000px;}
.y30{bottom:207.720000px;}
.y68{bottom:221.040000px;}
.y2f{bottom:227.160000px;}
.y67{bottom:240.120000px;}
.y2e{bottom:246.240000px;}
.y66{bottom:259.560000px;}
.y2d{bottom:265.320000px;}
.y65{bottom:278.640000px;}
.y2c{bottom:284.760000px;}
.y64{bottom:297.720000px;}
.y2b{bottom:303.840000px;}
.y63{bottom:317.160000px;}
.y2a{bottom:323.280000px;}
.y62{bottom:336.240000px;}
.y29{bottom:342.360000px;}
.y61{bottom:355.680000px;}
.y28{bottom:361.440000px;}
.y60{bottom:374.760000px;}
.y27{bottom:380.880000px;}
.y5f{bottom:394.200000px;}
.y26{bottom:399.960000px;}
.y5e{bottom:413.280000px;}
.y25{bottom:419.400000px;}
.y5d{bottom:432.360000px;}
.y24{bottom:438.480000px;}
.y5c{bottom:451.800000px;}
.y23{bottom:457.560000px;}
.y5b{bottom:470.880000px;}
.y22{bottom:477.000000px;}
.y5a{bottom:490.320000px;}
.y21{bottom:496.080000px;}
.y59{bottom:509.400000px;}
.y20{bottom:515.520000px;}
.y58{bottom:528.480000px;}
.y1f{bottom:534.600000px;}
.y57{bottom:547.920000px;}
.y1e{bottom:553.680000px;}
.y56{bottom:567.000000px;}
.y1d{bottom:573.840000px;}
.y55{bottom:586.440000px;}
.y1c{bottom:592.920000px;}
.y54{bottom:605.520000px;}
.y1b{bottom:613.440000px;}
.y53{bottom:624.600000px;}
.y1a{bottom:632.520000px;}
.y52{bottom:644.040000px;}
.y19{bottom:651.960000px;}
.y51{bottom:663.120000px;}
.y18{bottom:671.040000px;}
.y50{bottom:682.560000px;}
.y17{bottom:690.120000px;}
.y4f{bottom:701.640000px;}
.y16{bottom:709.560000px;}
.y4e{bottom:720.720000px;}
.y15{bottom:728.640000px;}
.y4d{bottom:740.160000px;}
.y14{bottom:748.080000px;}
.y4c{bottom:759.240000px;}
.y13{bottom:767.160000px;}
.y4b{bottom:778.680000px;}
.y12{bottom:786.240000px;}
.y4a{bottom:797.760000px;}
.y11{bottom:805.680000px;}
.y49{bottom:816.840000px;}
.y10{bottom:824.760000px;}
.y48{bottom:836.280000px;}
.yf{bottom:851.040000px;}
.y47{bottom:855.360000px;}
.ye{bottom:865.080000px;}
.y46{bottom:874.800000px;}
.yd{bottom:891.360000px;}
.y45{bottom:893.880000px;}
.y44{bottom:912.960000px;}
.yc{bottom:918.720000px;}
.y43{bottom:932.400000px;}
.yb{bottom:939.240000px;}
.y42{bottom:951.480000px;}
.ya{bottom:958.320000px;}
.y41{bottom:970.920000px;}
.y9{bottom:977.400000px;}
.y40{bottom:990.000000px;}
.y8{bottom:998.640000px;}
.y3f{bottom:1009.440000px;}
.y7{bottom:1024.200000px;}
.y3e{bottom:1028.520000px;}
.y3d{bottom:1047.600000px;}
.y6{bottom:1048.680000px;}
.y3c{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y3b{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y3a{bottom:1105.560000px;}
.y39{bottom:1124.640000px;}
.y38{bottom:1143.720000px;}
.y37{bottom:1163.160000px;}
.y1{bottom:1194.120000px;}
.h6{height:27.833203px;}
.h7{height:43.312500px;}
.h4{height:44.149219px;}
.h3{height:45.281250px;}
.h2{height:52.346250px;}
.h5{height:61.987500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:84.959856px;}
.x9{left:90.168084px;}
.x5{left:94.096440px;}
.x4{left:106.184700px;}
.x3{left:181.064592px;}
.x6{left:274.216536px;}
.xb{left:384.678720px;}
.x2{left:433.840680px;}
.xa{left:607.714920px;}
.x7{left:669.105000px;}
.x8{left:672.381360px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls2e{letter-spacing:-0.304128pt;}
.ls1d{letter-spacing:-0.275968pt;}
.ls1e{letter-spacing:-0.264704pt;}
.ls30{letter-spacing:-0.253440pt;}
.ls27{letter-spacing:-0.236544pt;}
.ls3b{letter-spacing:-0.230912pt;}
.ls36{letter-spacing:-0.225280pt;}
.ls28{letter-spacing:-0.208384pt;}
.ls16{letter-spacing:-0.197120pt;}
.ls1b{letter-spacing:-0.191488pt;}
.ls21{letter-spacing:-0.185856pt;}
.ls1c{letter-spacing:-0.180224pt;}
.lsc{letter-spacing:-0.174592pt;}
.lsa{letter-spacing:-0.168960pt;}
.ls29{letter-spacing:-0.163328pt;}
.ls14{letter-spacing:-0.158976pt;}
.ls11{letter-spacing:-0.157696pt;}
.ls19{letter-spacing:-0.152064pt;}
.lsd{letter-spacing:-0.146432pt;}
.ls17{letter-spacing:-0.140800pt;}
.ls13{letter-spacing:-0.135424pt;}
.ls22{letter-spacing:-0.135168pt;}
.ls1f{letter-spacing:-0.129536pt;}
.ls2f{letter-spacing:-0.123904pt;}
.ls8{letter-spacing:-0.118272pt;}
.lsb{letter-spacing:-0.117760pt;}
.ls12{letter-spacing:-0.107008pt;}
.ls18{letter-spacing:-0.090112pt;}
.ls20{letter-spacing:-0.084480pt;}
.ls15{letter-spacing:-0.082432pt;}
.ls1a{letter-spacing:-0.045056pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.101120pt;}
.ls4{letter-spacing:0.102016pt;}
.ls3{letter-spacing:0.102400pt;}
.ls2{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.126208pt;}
.ls3a{letter-spacing:0.154496pt;}
.ls34{letter-spacing:0.258688pt;}
.lsf{letter-spacing:0.289536pt;}
.lse{letter-spacing:0.415744pt;}
.ls32{letter-spacing:0.782080pt;}
.ls2b{letter-spacing:0.958720pt;}
.ls25{letter-spacing:1.967360pt;}
.ls38{letter-spacing:2.428160pt;}
.ls23{letter-spacing:3.141120pt;}
.ls39{letter-spacing:3.170176pt;}
.ls37{letter-spacing:3.342080pt;}
.ls31{letter-spacing:6.599680pt;}
.ls7{letter-spacing:7.352448pt;}
.ls35{letter-spacing:7.614720pt;}
.ls2d{letter-spacing:9.067520pt;}
.ls6{letter-spacing:10.181120pt;}
.ls26{letter-spacing:10.414848pt;}
.ls2a{letter-spacing:13.272960pt;}
.ls2c{letter-spacing:13.766528pt;}
.ls33{letter-spacing:14.145408pt;}
.ls24{letter-spacing:60.465792pt;}
.ls1{letter-spacing:1071.301888pt;}
.ls0{letter-spacing:1794.844800pt;}
.ws4{word-spacing:-18.849536pt;}
.ws5{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189120pt;}
.ws2{word-spacing:-12.728320pt;}
.wsb{word-spacing:-12.683264pt;}
.ws10{word-spacing:-12.643840pt;}
.ws7{word-spacing:-12.621312pt;}
.wse{word-spacing:-12.610048pt;}
.wsf{word-spacing:-12.604416pt;}
.ws8{word-spacing:-12.593152pt;}
.ws3{word-spacing:-12.581888pt;}
.ws11{word-spacing:-12.576256pt;}
.wsc{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.wsd{word-spacing:-12.553728pt;}
.ws16{word-spacing:-12.548096pt;}
.ws14{word-spacing:-12.542464pt;}
.ws17{word-spacing:-12.536832pt;}
.ws6{word-spacing:-12.531200pt;}
.ws15{word-spacing:-12.519936pt;}
.ws18{word-spacing:-12.497408pt;}
.ws13{word-spacing:-12.491776pt;}
.ws12{word-spacing:-12.452352pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:0.073216pt;}
._10{margin-left:-3.319040pt;}
._5{margin-left:-2.365440pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._b{width:1.858560pt;}
._e{width:2.928640pt;}
._9{width:4.080000pt;}
._3{width:5.463040pt;}
._6{width:7.152640pt;}
._c{width:8.110080pt;}
._a{width:9.123840pt;}
._8{width:10.024960pt;}
._7{width:10.926080pt;}
._11{width:13.494272pt;}
._4{width:14.586880pt;}
._d{width:15.938560pt;}
._12{width:16.839680pt;}
._16{width:17.759232pt;}
._13{width:18.698240pt;}
._14{width:19.824640pt;}
._18{width:21.120000pt;}
._19{width:22.415360pt;}
._17{width:23.936000pt;}
._f{width:26.920960pt;}
._1a{width:29.568000pt;}
._15{width:60.551808pt;}
._1c{width:93.941760pt;}
._1b{width:95.011840pt;}
._1{width:2215.698944pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y36{bottom:82.240000pt;}
.y6e{bottom:93.760000pt;}
.y35{bottom:99.200000pt;}
.y6d{bottom:111.040000pt;}
.y34{bottom:116.480000pt;}
.y6c{bottom:128.000000pt;}
.y33{bottom:133.440000pt;}
.y6b{bottom:145.280000pt;}
.y32{bottom:150.400000pt;}
.y6a{bottom:162.240000pt;}
.y31{bottom:167.680000pt;}
.y69{bottom:179.200000pt;}
.y30{bottom:184.640000pt;}
.y68{bottom:196.480000pt;}
.y2f{bottom:201.920000pt;}
.y67{bottom:213.440000pt;}
.y2e{bottom:218.880000pt;}
.y66{bottom:230.720000pt;}
.y2d{bottom:235.840000pt;}
.y65{bottom:247.680000pt;}
.y2c{bottom:253.120000pt;}
.y64{bottom:264.640000pt;}
.y2b{bottom:270.080000pt;}
.y63{bottom:281.920000pt;}
.y2a{bottom:287.360000pt;}
.y62{bottom:298.880000pt;}
.y29{bottom:304.320000pt;}
.y61{bottom:316.160000pt;}
.y28{bottom:321.280000pt;}
.y60{bottom:333.120000pt;}
.y27{bottom:338.560000pt;}
.y5f{bottom:350.400000pt;}
.y26{bottom:355.520000pt;}
.y5e{bottom:367.360000pt;}
.y25{bottom:372.800000pt;}
.y5d{bottom:384.320000pt;}
.y24{bottom:389.760000pt;}
.y5c{bottom:401.600000pt;}
.y23{bottom:406.720000pt;}
.y5b{bottom:418.560000pt;}
.y22{bottom:424.000000pt;}
.y5a{bottom:435.840000pt;}
.y21{bottom:440.960000pt;}
.y59{bottom:452.800000pt;}
.y20{bottom:458.240000pt;}
.y58{bottom:469.760000pt;}
.y1f{bottom:475.200000pt;}
.y57{bottom:487.040000pt;}
.y1e{bottom:492.160000pt;}
.y56{bottom:504.000000pt;}
.y1d{bottom:510.080000pt;}
.y55{bottom:521.280000pt;}
.y1c{bottom:527.040000pt;}
.y54{bottom:538.240000pt;}
.y1b{bottom:545.280000pt;}
.y53{bottom:555.200000pt;}
.y1a{bottom:562.240000pt;}
.y52{bottom:572.480000pt;}
.y19{bottom:579.520000pt;}
.y51{bottom:589.440000pt;}
.y18{bottom:596.480000pt;}
.y50{bottom:606.720000pt;}
.y17{bottom:613.440000pt;}
.y4f{bottom:623.680000pt;}
.y16{bottom:630.720000pt;}
.y4e{bottom:640.640000pt;}
.y15{bottom:647.680000pt;}
.y4d{bottom:657.920000pt;}
.y14{bottom:664.960000pt;}
.y4c{bottom:674.880000pt;}
.y13{bottom:681.920000pt;}
.y4b{bottom:692.160000pt;}
.y12{bottom:698.880000pt;}
.y4a{bottom:709.120000pt;}
.y11{bottom:716.160000pt;}
.y49{bottom:726.080000pt;}
.y10{bottom:733.120000pt;}
.y48{bottom:743.360000pt;}
.yf{bottom:756.480000pt;}
.y47{bottom:760.320000pt;}
.ye{bottom:768.960000pt;}
.y46{bottom:777.600000pt;}
.yd{bottom:792.320000pt;}
.y45{bottom:794.560000pt;}
.y44{bottom:811.520000pt;}
.yc{bottom:816.640000pt;}
.y43{bottom:828.800000pt;}
.yb{bottom:834.880000pt;}
.y42{bottom:845.760000pt;}
.ya{bottom:851.840000pt;}
.y41{bottom:863.040000pt;}
.y9{bottom:868.800000pt;}
.y40{bottom:880.000000pt;}
.y8{bottom:887.680000pt;}
.y3f{bottom:897.280000pt;}
.y7{bottom:910.400000pt;}
.y3e{bottom:914.240000pt;}
.y3d{bottom:931.200000pt;}
.y6{bottom:932.160000pt;}
.y3c{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y3b{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y3a{bottom:982.720000pt;}
.y39{bottom:999.680000pt;}
.y38{bottom:1016.640000pt;}
.y37{bottom:1033.920000pt;}
.y1{bottom:1061.440000pt;}
.h6{height:24.740625pt;}
.h7{height:38.500000pt;}
.h4{height:39.243750pt;}
.h3{height:40.250000pt;}
.h2{height:46.530000pt;}
.h5{height:55.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519872pt;}
.x9{left:80.149408pt;}
.x5{left:83.641280pt;}
.x4{left:94.386400pt;}
.x3{left:160.946304pt;}
.x6{left:243.748032pt;}
.xb{left:341.936640pt;}
.x2{left:385.636160pt;}
.xa{left:540.191040pt;}
.x7{left:594.760000pt;}
.x8{left:597.672320pt;}
}




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