
    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_7571b4d230dd53b73be43757.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_d73f9156bc371e0f03d3aad4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_0da29fd0f8057c70fe9cad2f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e8b9491c4270ddc20e5a1ca7.woff')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_57365e54b90aa269d71a7214.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_6370f26c1aa228288b5dec11.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.722016px;}
.ls0{letter-spacing:846.086409px;}
.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;}
}
.ws2{word-spacing:-66.239400px;}
.ws3{word-spacing:-18.414553px;}
.ws0{word-spacing:-13.210560px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-15.753591px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.022400px;}
._0{width:1.440000px;}
._5{width:2.782055px;}
._3{width:3.841885px;}
._4{width:5.129243px;}
._24{width:6.160264px;}
._23{width:7.891122px;}
._8{width:9.141037px;}
._c{width:10.474459px;}
._26{width:11.525656px;}
._27{width:12.576853px;}
._10{width:13.645316px;}
._25{width:15.632498px;}
._f{width:17.305750px;}
._11{width:20.410369px;}
._14{width:21.801396px;}
._16{width:23.212599px;}
._22{width:24.390457px;}
._15{width:25.551142px;}
._1b{width:26.685845px;}
._38{width:27.698015px;}
._12{width:28.802609px;}
._13{width:30.547894px;}
._e{width:31.910483px;}
._d{width:33.421915px;}
._21{width:34.718079px;}
._20{width:35.967994px;}
._1d{width:37.652788px;}
._1c{width:39.081246px;}
._18{width:40.141076px;}
._19{width:41.544313px;}
._2c{width:42.715780px;}
._31{width:44.057834px;}
._17{width:45.117665px;}
._2a{width:46.770834px;}
._2b{width:47.862289px;}
._29{width:48.968183px;}
._a{width:50.465789px;}
._9{width:52.147675px;}
._37{width:53.181605px;}
._2d{width:54.684519px;}
._33{width:56.596455px;}
._32{width:57.959475px;}
._28{width:59.126124px;}
._2e{width:60.139090px;}
._36{width:61.818627px;}
._1e{width:63.987260px;}
._1f{width:65.435894px;}
._34{width:67.232991px;}
._35{width:68.255391px;}
._7{width:73.445137px;}
._6{width:74.867789px;}
._b{width:76.638986px;}
._3b{width:80.293695px;}
._30{width:81.673180px;}
._2f{width:84.066432px;}
._40{width:86.716008px;}
._43{width:114.064247px;}
._42{width:115.115444px;}
._44{width:116.293315px;}
._4c{width:119.248187px;}
._4d{width:120.826471px;}
._41{width:140.030092px;}
._47{width:141.642926px;}
._48{width:143.071372px;}
._4e{width:183.151941px;}
._49{width:205.872055px;}
._4b{width:206.931886px;}
._4a{width:208.248040px;}
._39{width:214.033951px;}
._3a{width:215.335656px;}
._3c{width:319.622372px;}
._3d{width:321.696479px;}
._3e{width:368.772007px;}
._3f{width:370.597436px;}
._45{width:382.532535px;}
._46{width:613.834703px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs3{font-size:66.239400px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:0.360000px;}
.y6e{bottom:3.960000px;}
.y2{bottom:4.320000px;}
.y22{bottom:111.960000px;}
.y68{bottom:114.120000px;}
.y9f{bottom:118.080000px;}
.y87{bottom:119.520000px;}
.yb9{bottom:126.720000px;}
.y80{bottom:128.520000px;}
.y67{bottom:132.840000px;}
.y21{bottom:136.080000px;}
.y9e{bottom:137.160000px;}
.y86{bottom:138.600000px;}
.ybd{bottom:138.960000px;}
.yb8{bottom:145.800000px;}
.y20{bottom:146.880000px;}
.y7f{bottom:147.600000px;}
.y66{bottom:151.920000px;}
.y9d{bottom:155.880000px;}
.y85{bottom:157.680000px;}
.yb7{bottom:164.520000px;}
.y7e{bottom:166.320000px;}
.y65{bottom:171.000000px;}
.y9c{bottom:174.960000px;}
.y84{bottom:176.400000px;}
.yb6{bottom:183.600000px;}
.y7d{bottom:185.400000px;}
.y64{bottom:190.080000px;}
.y9b{bottom:194.040000px;}
.y83{bottom:195.480000px;}
.yb5{bottom:202.680000px;}
.y7c{bottom:204.480000px;}
.y63{bottom:208.800000px;}
.y9a{bottom:212.760000px;}
.y82{bottom:214.560000px;}
.yb4{bottom:221.760000px;}
.y7b{bottom:223.200000px;}
.y62{bottom:227.879850px;}
.y99{bottom:231.840000px;}
.y81{bottom:233.280000px;}
.yb3{bottom:240.480000px;}
.y7a{bottom:242.280000px;}
.y61{bottom:246.959850px;}
.y98{bottom:250.920000px;}
.y6c{bottom:252.360000px;}
.yb2{bottom:259.560000px;}
.y79{bottom:261.360000px;}
.y60{bottom:265.680000px;}
.y97{bottom:270.000000px;}
.y6b{bottom:271.440000px;}
.yb1{bottom:278.640000px;}
.y78{bottom:280.080000px;}
.y5f{bottom:284.760000px;}
.y96{bottom:288.720000px;}
.y6a{bottom:290.160000px;}
.y1f{bottom:295.920000px;}
.yb0{bottom:297.360000px;}
.y77{bottom:299.160000px;}
.y5e{bottom:303.840000px;}
.y95{bottom:307.800000px;}
.y69{bottom:309.240000px;}
.y1e{bottom:315.000000px;}
.yaf{bottom:316.440000px;}
.y76{bottom:318.240000px;}
.y5d{bottom:322.560000px;}
.y94{bottom:326.880000px;}
.y41{bottom:328.320000px;}
.y1d{bottom:333.720000px;}
.yae{bottom:335.520000px;}
.y75{bottom:337.320000px;}
.y5c{bottom:341.640000px;}
.y93{bottom:345.600000px;}
.y40{bottom:347.400000px;}
.y1c{bottom:353.160000px;}
.yad{bottom:354.600000px;}
.y74{bottom:356.040000px;}
.y5b{bottom:360.720000px;}
.y92{bottom:364.680000px;}
.y3f{bottom:366.120000px;}
.y1b{bottom:371.880000px;}
.yac{bottom:373.320000px;}
.y73{bottom:375.120000px;}
.y5a{bottom:379.800000px;}
.y91{bottom:383.760000px;}
.y3e{bottom:385.200000px;}
.y1a{bottom:390.960000px;}
.yab{bottom:392.400000px;}
.y72{bottom:394.200000px;}
.y59{bottom:398.520000px;}
.y90{bottom:402.480000px;}
.y3d{bottom:404.280000px;}
.ya0{bottom:404.640000px;}
.y19{bottom:409.680000px;}
.yaa{bottom:411.480000px;}
.y71{bottom:412.919850px;}
.y58{bottom:417.600000px;}
.y8f{bottom:421.560000px;}
.y3c{bottom:423.000000px;}
.y18{bottom:428.759850px;}
.ya9{bottom:430.200000px;}
.y70{bottom:432.000000px;}
.y57{bottom:436.680000px;}
.y8e{bottom:441.000000px;}
.y3b{bottom:442.080000px;}
.y6f{bottom:447.480000px;}
.y17{bottom:447.840000px;}
.ya8{bottom:449.280000px;}
.y56{bottom:455.759850px;}
.y8d{bottom:459.720000px;}
.y3a{bottom:461.160000px;}
.y16{bottom:466.560000px;}
.ya7{bottom:468.360000px;}
.y55{bottom:474.480000px;}
.y8c{bottom:478.440000px;}
.y39{bottom:480.240000px;}
.y15{bottom:485.640000px;}
.ya6{bottom:487.080000px;}
.y54{bottom:493.560000px;}
.y8b{bottom:497.520000px;}
.y38{bottom:498.960000px;}
.y14{bottom:504.720000px;}
.ya5{bottom:506.160000px;}
.y53{bottom:512.280000px;}
.y8a{bottom:516.600000px;}
.y37{bottom:518.040000px;}
.y13{bottom:523.800000px;}
.ya4{bottom:525.240000px;}
.y52{bottom:531.360000px;}
.y89{bottom:535.320000px;}
.y36{bottom:537.120000px;}
.y12{bottom:542.520000px;}
.ya3{bottom:544.320000px;}
.y51{bottom:550.440000px;}
.y88{bottom:550.800000px;}
.y35{bottom:555.840000px;}
.ybb{bottom:556.200000px;}
.y11{bottom:561.600000px;}
.ya2{bottom:563.040000px;}
.y50{bottom:569.520000px;}
.y34{bottom:574.919850px;}
.ya1{bottom:578.520000px;}
.y10{bottom:580.680000px;}
.y4f{bottom:588.240000px;}
.y33{bottom:594.000000px;}
.yba{bottom:594.360000px;}
.yf{bottom:599.400000px;}
.y4e{bottom:607.320000px;}
.y32{bottom:612.720000px;}
.ye{bottom:618.480000px;}
.y4d{bottom:626.400000px;}
.y31{bottom:631.800000px;}
.yd{bottom:637.560000px;}
.y4c{bottom:646.200000px;}
.y30{bottom:650.880000px;}
.ybc{bottom:651.240000px;}
.yc{bottom:656.280000px;}
.y4b{bottom:665.280000px;}
.y2f{bottom:669.960000px;}
.yb{bottom:675.360000px;}
.y4a{bottom:685.440000px;}
.y2e{bottom:688.680000px;}
.ya{bottom:694.440000px;}
.y49{bottom:704.520000px;}
.y2d{bottom:707.760000px;}
.y9{bottom:713.520000px;}
.y48{bottom:723.240000px;}
.y2c{bottom:726.840000px;}
.y8{bottom:732.600000px;}
.y47{bottom:743.400000px;}
.y2b{bottom:745.560000px;}
.y46{bottom:762.480000px;}
.y2a{bottom:764.640000px;}
.y45{bottom:782.640000px;}
.y29{bottom:783.720000px;}
.y7{bottom:787.680000px;}
.y44{bottom:801.360000px;}
.y28{bottom:802.440000px;}
.y43{bottom:820.440000px;}
.y27{bottom:821.519850px;}
.y3{bottom:830.160000px;}
.y26{bottom:840.600000px;}
.y6{bottom:845.280000px;}
.y25{bottom:859.680000px;}
.y5{bottom:869.400000px;}
.y24{bottom:878.400000px;}
.y4{bottom:893.519850px;}
.y42{bottom:897.480000px;}
.y23{bottom:897.839850px;}
.y1{bottom:987.480000px;}
.h7{height:20.160000px;}
.h5{height:38.158594px;}
.h8{height:59.188526px;}
.h6{height:59.357813px;}
.h4{height:69.085624px;}
.h1{height:70.664062px;}
.h9{height:72.562500px;}
.h3{height:82.681875px;}
.h2{height:87.108750px;}
.h0{height:1020.000000px;}
.w1{width:7.920000px;}
.w0{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x5{left:119.880000px;}
.xc{left:126.000000px;}
.x8{left:135.000000px;}
.x4{left:140.400000px;}
.x9{left:162.000000px;}
.x6{left:208.440000px;}
.x7{left:263.520000px;}
.x2{left:361.440000px;}
.xb{left:639.000000px;}
.xa{left:641.160000px;}
.x3{left:654.120000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.641792pt;}
.ls0{letter-spacing:752.076808pt;}
.ws2{word-spacing:-58.879467pt;}
.ws3{word-spacing:-16.368492pt;}
.ws0{word-spacing:-11.742720pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-14.003192pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.908800pt;}
._0{width:1.280000pt;}
._5{width:2.472938pt;}
._3{width:3.415009pt;}
._4{width:4.559327pt;}
._24{width:5.475790pt;}
._23{width:7.014331pt;}
._8{width:8.125366pt;}
._c{width:9.310630pt;}
._26{width:10.245027pt;}
._27{width:11.179425pt;}
._10{width:12.129170pt;}
._25{width:13.895554pt;}
._f{width:15.382889pt;}
._11{width:18.142550pt;}
._14{width:19.379019pt;}
._16{width:20.633421pt;}
._22{width:21.680406pt;}
._15{width:22.712126pt;}
._1b{width:23.720751pt;}
._38{width:24.620458pt;}
._12{width:25.602319pt;}
._13{width:27.153683pt;}
._e{width:28.364874pt;}
._d{width:29.708369pt;}
._21{width:30.860515pt;}
._20{width:31.971550pt;}
._1d{width:33.469145pt;}
._1c{width:34.738885pt;}
._18{width:35.680957pt;}
._19{width:36.928278pt;}
._2c{width:37.969582pt;}
._31{width:39.162519pt;}
._17{width:40.104591pt;}
._2a{width:41.574075pt;}
._2b{width:42.544257pt;}
._29{width:43.527274pt;}
._a{width:44.858479pt;}
._9{width:46.353489pt;}
._37{width:47.272538pt;}
._2d{width:48.608462pt;}
._33{width:50.307960pt;}
._32{width:51.519533pt;}
._28{width:52.556555pt;}
._2e{width:53.456969pt;}
._36{width:54.949891pt;}
._1e{width:56.877565pt;}
._1f{width:58.165239pt;}
._34{width:59.762659pt;}
._35{width:60.671459pt;}
._7{width:65.284566pt;}
._6{width:66.549146pt;}
._b{width:68.123543pt;}
._3b{width:71.372173pt;}
._30{width:72.598382pt;}
._2f{width:74.725717pt;}
._40{width:77.080896pt;}
._43{width:101.390442pt;}
._42{width:102.324839pt;}
._44{width:103.371836pt;}
._4c{width:105.998388pt;}
._4d{width:107.401308pt;}
._41{width:124.471193pt;}
._47{width:125.904823pt;}
._48{width:127.174552pt;}
._4e{width:162.801725pt;}
._49{width:182.997382pt;}
._4b{width:183.939454pt;}
._4a{width:185.109369pt;}
._39{width:190.252401pt;}
._3a{width:191.409472pt;}
._3c{width:284.108775pt;}
._3d{width:285.952426pt;}
._3e{width:327.797339pt;}
._3f{width:329.419943pt;}
._45{width:340.028920pt;}
._46{width:545.630848pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs3{font-size:58.879467pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:0.320000pt;}
.y6e{bottom:3.520000pt;}
.y2{bottom:3.840000pt;}
.y22{bottom:99.520000pt;}
.y68{bottom:101.440000pt;}
.y9f{bottom:104.960000pt;}
.y87{bottom:106.240000pt;}
.yb9{bottom:112.640000pt;}
.y80{bottom:114.240000pt;}
.y67{bottom:118.080000pt;}
.y21{bottom:120.960000pt;}
.y9e{bottom:121.920000pt;}
.y86{bottom:123.200000pt;}
.ybd{bottom:123.520000pt;}
.yb8{bottom:129.600000pt;}
.y20{bottom:130.560000pt;}
.y7f{bottom:131.200000pt;}
.y66{bottom:135.040000pt;}
.y9d{bottom:138.560000pt;}
.y85{bottom:140.160000pt;}
.yb7{bottom:146.240000pt;}
.y7e{bottom:147.840000pt;}
.y65{bottom:152.000000pt;}
.y9c{bottom:155.520000pt;}
.y84{bottom:156.800000pt;}
.yb6{bottom:163.200000pt;}
.y7d{bottom:164.800000pt;}
.y64{bottom:168.960000pt;}
.y9b{bottom:172.480000pt;}
.y83{bottom:173.760000pt;}
.yb5{bottom:180.160000pt;}
.y7c{bottom:181.760000pt;}
.y63{bottom:185.600000pt;}
.y9a{bottom:189.120000pt;}
.y82{bottom:190.720000pt;}
.yb4{bottom:197.120000pt;}
.y7b{bottom:198.400000pt;}
.y62{bottom:202.559867pt;}
.y99{bottom:206.080000pt;}
.y81{bottom:207.360000pt;}
.yb3{bottom:213.760000pt;}
.y7a{bottom:215.360000pt;}
.y61{bottom:219.519867pt;}
.y98{bottom:223.040000pt;}
.y6c{bottom:224.320000pt;}
.yb2{bottom:230.720000pt;}
.y79{bottom:232.320000pt;}
.y60{bottom:236.160000pt;}
.y97{bottom:240.000000pt;}
.y6b{bottom:241.280000pt;}
.yb1{bottom:247.680000pt;}
.y78{bottom:248.960000pt;}
.y5f{bottom:253.120000pt;}
.y96{bottom:256.640000pt;}
.y6a{bottom:257.920000pt;}
.y1f{bottom:263.040000pt;}
.yb0{bottom:264.320000pt;}
.y77{bottom:265.920000pt;}
.y5e{bottom:270.080000pt;}
.y95{bottom:273.600000pt;}
.y69{bottom:274.880000pt;}
.y1e{bottom:280.000000pt;}
.yaf{bottom:281.280000pt;}
.y76{bottom:282.880000pt;}
.y5d{bottom:286.720000pt;}
.y94{bottom:290.560000pt;}
.y41{bottom:291.840000pt;}
.y1d{bottom:296.640000pt;}
.yae{bottom:298.240000pt;}
.y75{bottom:299.840000pt;}
.y5c{bottom:303.680000pt;}
.y93{bottom:307.200000pt;}
.y40{bottom:308.800000pt;}
.y1c{bottom:313.920000pt;}
.yad{bottom:315.200000pt;}
.y74{bottom:316.480000pt;}
.y5b{bottom:320.640000pt;}
.y92{bottom:324.160000pt;}
.y3f{bottom:325.440000pt;}
.y1b{bottom:330.560000pt;}
.yac{bottom:331.840000pt;}
.y73{bottom:333.440000pt;}
.y5a{bottom:337.600000pt;}
.y91{bottom:341.120000pt;}
.y3e{bottom:342.400000pt;}
.y1a{bottom:347.520000pt;}
.yab{bottom:348.800000pt;}
.y72{bottom:350.400000pt;}
.y59{bottom:354.240000pt;}
.y90{bottom:357.760000pt;}
.y3d{bottom:359.360000pt;}
.ya0{bottom:359.680000pt;}
.y19{bottom:364.160000pt;}
.yaa{bottom:365.760000pt;}
.y71{bottom:367.039867pt;}
.y58{bottom:371.200000pt;}
.y8f{bottom:374.720000pt;}
.y3c{bottom:376.000000pt;}
.y18{bottom:381.119867pt;}
.ya9{bottom:382.400000pt;}
.y70{bottom:384.000000pt;}
.y57{bottom:388.160000pt;}
.y8e{bottom:392.000000pt;}
.y3b{bottom:392.960000pt;}
.y6f{bottom:397.760000pt;}
.y17{bottom:398.080000pt;}
.ya8{bottom:399.360000pt;}
.y56{bottom:405.119867pt;}
.y8d{bottom:408.640000pt;}
.y3a{bottom:409.920000pt;}
.y16{bottom:414.720000pt;}
.ya7{bottom:416.320000pt;}
.y55{bottom:421.760000pt;}
.y8c{bottom:425.280000pt;}
.y39{bottom:426.880000pt;}
.y15{bottom:431.680000pt;}
.ya6{bottom:432.960000pt;}
.y54{bottom:438.720000pt;}
.y8b{bottom:442.240000pt;}
.y38{bottom:443.520000pt;}
.y14{bottom:448.640000pt;}
.ya5{bottom:449.920000pt;}
.y53{bottom:455.360000pt;}
.y8a{bottom:459.200000pt;}
.y37{bottom:460.480000pt;}
.y13{bottom:465.600000pt;}
.ya4{bottom:466.880000pt;}
.y52{bottom:472.320000pt;}
.y89{bottom:475.840000pt;}
.y36{bottom:477.440000pt;}
.y12{bottom:482.240000pt;}
.ya3{bottom:483.840000pt;}
.y51{bottom:489.280000pt;}
.y88{bottom:489.600000pt;}
.y35{bottom:494.080000pt;}
.ybb{bottom:494.400000pt;}
.y11{bottom:499.200000pt;}
.ya2{bottom:500.480000pt;}
.y50{bottom:506.240000pt;}
.y34{bottom:511.039867pt;}
.ya1{bottom:514.240000pt;}
.y10{bottom:516.160000pt;}
.y4f{bottom:522.880000pt;}
.y33{bottom:528.000000pt;}
.yba{bottom:528.320000pt;}
.yf{bottom:532.800000pt;}
.y4e{bottom:539.840000pt;}
.y32{bottom:544.640000pt;}
.ye{bottom:549.760000pt;}
.y4d{bottom:556.800000pt;}
.y31{bottom:561.600000pt;}
.yd{bottom:566.720000pt;}
.y4c{bottom:574.400000pt;}
.y30{bottom:578.560000pt;}
.ybc{bottom:578.880000pt;}
.yc{bottom:583.360000pt;}
.y4b{bottom:591.360000pt;}
.y2f{bottom:595.520000pt;}
.yb{bottom:600.320000pt;}
.y4a{bottom:609.280000pt;}
.y2e{bottom:612.160000pt;}
.ya{bottom:617.280000pt;}
.y49{bottom:626.240000pt;}
.y2d{bottom:629.120000pt;}
.y9{bottom:634.240000pt;}
.y48{bottom:642.880000pt;}
.y2c{bottom:646.080000pt;}
.y8{bottom:651.200000pt;}
.y47{bottom:660.800000pt;}
.y2b{bottom:662.720000pt;}
.y46{bottom:677.760000pt;}
.y2a{bottom:679.680000pt;}
.y45{bottom:695.680000pt;}
.y29{bottom:696.640000pt;}
.y7{bottom:700.160000pt;}
.y44{bottom:712.320000pt;}
.y28{bottom:713.280000pt;}
.y43{bottom:729.280000pt;}
.y27{bottom:730.239867pt;}
.y3{bottom:737.920000pt;}
.y26{bottom:747.200000pt;}
.y6{bottom:751.360000pt;}
.y25{bottom:764.160000pt;}
.y5{bottom:772.800000pt;}
.y24{bottom:780.800000pt;}
.y4{bottom:794.239867pt;}
.y42{bottom:797.760000pt;}
.y23{bottom:798.079867pt;}
.y1{bottom:877.760000pt;}
.h7{height:17.920000pt;}
.h5{height:33.918750pt;}
.h8{height:52.612023pt;}
.h6{height:52.762500pt;}
.h4{height:61.409444pt;}
.h1{height:62.812500pt;}
.h9{height:64.500000pt;}
.h3{height:73.495000pt;}
.h2{height:77.430000pt;}
.h0{height:906.666667pt;}
.w1{width:7.040000pt;}
.w0{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x5{left:106.560000pt;}
.xc{left:112.000000pt;}
.x8{left:120.000000pt;}
.x4{left:124.800000pt;}
.x9{left:144.000000pt;}
.x6{left:185.280000pt;}
.x7{left:234.240000pt;}
.x2{left:321.280000pt;}
.xb{left:568.000000pt;}
.xa{left:569.920000pt;}
.x3{left:581.440000pt;}
}




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