
    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_511d90decc08c727c8c83023.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_2fbd234543a4a6d00b0df6e2.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_30a119b877b84e7ed54dee94.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_089f8fd737fe2179d0cafaa5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_7ad4f96c1fb78c0dbbdeefab.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_8bec3a1b2e9328de61f1ce62.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_753dc84a05685f1d2823888a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.897949;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_e7275cbd68a1921b220c6601.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_b21371e1b55c147a3b5d9666.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b2492e50a7da68ed29197132.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_42c3a58717b4f3b30d926490.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064453;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.608000px;}
.ls10{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.384000px;}
.lsa{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls13{letter-spacing:0.060000px;}
.lse{letter-spacing:0.084000px;}
.ls3{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.lsd{letter-spacing:0.204000px;}
.ls6{letter-spacing:0.432000px;}
.lsb{letter-spacing:10.800000px;}
.ls8{letter-spacing:13.200000px;}
.ls11{letter-spacing:52.800000px;}
.lsc{letter-spacing:83.448000px;}
.ls7{letter-spacing:125.448000px;}
.ls12{letter-spacing:249.198000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws6{word-spacing:-71.976000px;}
.ws8{word-spacing:-21.000000px;}
.ws5{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.616000px;}
.ws3{word-spacing:-17.568000px;}
.wsa{word-spacing:-16.800000px;}
.ws0{word-spacing:-13.140000px;}
.ws4{word-spacing:0.000000px;}
._3a{margin-left:-8.856000px;}
._38{margin-left:-7.032000px;}
._2{margin-left:-5.328000px;}
._4{margin-left:-3.768000px;}
._3{margin-left:-2.766000px;}
._0{margin-left:-1.080000px;}
._1{width:1.380000px;}
._5{width:2.490000px;}
._11{width:3.516000px;}
._6{width:4.536000px;}
._7{width:5.556000px;}
._8{width:6.816000px;}
._e{width:8.412000px;}
._f{width:9.522000px;}
._b{width:10.998000px;}
._13{width:12.138000px;}
._c{width:13.164000px;}
._d{width:14.544000px;}
._10{width:16.200000px;}
._a{width:19.428000px;}
._9{width:20.952000px;}
._12{width:22.164000px;}
._16{width:24.060000px;}
._22{width:25.560000px;}
._30{width:26.658000px;}
._14{width:27.750000px;}
._28{width:28.920000px;}
._21{width:30.696000px;}
._1f{width:31.752000px;}
._1e{width:32.784000px;}
._1b{width:34.908000px;}
._1a{width:36.630000px;}
._3c{width:37.656000px;}
._15{width:39.540000px;}
._23{width:41.748000px;}
._24{width:42.798000px;}
._17{width:48.120000px;}
._1d{width:50.328000px;}
._1c{width:51.390000px;}
._25{width:53.010000px;}
._33{width:55.008000px;}
._34{width:56.148000px;}
._42{width:57.588000px;}
._37{width:58.596000px;}
._39{width:60.120000px;}
._27{width:63.600000px;}
._32{width:73.704000px;}
._31{width:74.976000px;}
._26{width:80.580000px;}
._3b{width:92.244000px;}
._2a{width:93.864000px;}
._29{width:95.424000px;}
._2e{width:99.840000px;}
._2d{width:101.400000px;}
._20{width:107.160000px;}
._19{width:110.418000px;}
._18{width:111.474000px;}
._41{width:113.772000px;}
._35{width:124.644000px;}
._36{width:126.648000px;}
._3d{width:141.492000px;}
._3e{width:143.208000px;}
._3f{width:173.964000px;}
._40{width:175.842000px;}
._2f{width:186.948000px;}
._2b{width:230.964000px;}
._2c{width:232.488000px;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:57.337500px;}
.y33{bottom:99.337500px;}
.y63{bottom:102.037500px;}
.y81{bottom:104.737500px;}
.y32{bottom:123.037500px;}
.y62{bottom:125.737500px;}
.y80{bottom:128.437500px;}
.y39{bottom:141.337500px;}
.y31{bottom:146.737500px;}
.y61{bottom:149.437500px;}
.y8e{bottom:149.737500px;}
.y7f{bottom:155.130000px;}
.y38{bottom:165.030000px;}
.y30{bottom:170.775000px;}
.y8d{bottom:173.175000px;}
.y60{bottom:176.175000px;}
.y7e{bottom:179.175000px;}
.y37{bottom:188.775000px;}
.y2f{bottom:194.475000px;}
.y5f{bottom:200.175000px;}
.y7d{bottom:202.575000px;}
.y36{bottom:215.475000px;}
.y2e{bottom:218.175000px;}
.y5e{bottom:223.575000px;}
.y7c{bottom:229.575000px;}
.y35{bottom:239.175000px;}
.y2d{bottom:242.175000px;}
.y5d{bottom:250.575000px;}
.y7b{bottom:253.275000px;}
.y34{bottom:262.875000px;}
.y2c{bottom:265.875000px;}
.y8c{bottom:273.975000px;}
.y5c{bottom:274.275000px;}
.y7a{bottom:276.975000px;}
.y2b{bottom:289.575000px;}
.y5b{bottom:297.975000px;}
.y8b{bottom:300.975000px;}
.y79{bottom:303.675000px;}
.y2a{bottom:313.575000px;}
.y8a{bottom:324.375000px;}
.y5a{bottom:324.675000px;}
.y78{bottom:327.375000px;}
.y29{bottom:337.275000px;}
.y59{bottom:348.420000px;}
.y89{bottom:351.405000px;}
.y77{bottom:354.105000px;}
.y28{bottom:361.005000px;}
.y58{bottom:375.120000px;}
.y76{bottom:377.805000px;}
.y27{bottom:385.005000px;}
.y57{bottom:398.820000px;}
.y75{bottom:401.505000px;}
.y26{bottom:408.705000px;}
.y56{bottom:422.505000px;}
.y88{bottom:425.505000px;}
.y74{bottom:428.205000px;}
.y25{bottom:432.405000px;}
.y55{bottom:449.205000px;}
.y73{bottom:452.205000px;}
.y24{bottom:456.420000px;}
.y9c{bottom:472.905000px;}
.y54{bottom:473.205000px;}
.y72{bottom:475.620000px;}
.y87{bottom:475.905000px;}
.y23{bottom:480.120000px;}
.y53{bottom:496.605000px;}
.y86{bottom:499.605000px;}
.y71{bottom:502.620000px;}
.y22{bottom:503.805000px;}
.y52{bottom:523.650000px;}
.y70{bottom:526.350000px;}
.y21{bottom:527.850000px;}
.y85{bottom:547.050000px;}
.y51{bottom:547.350000px;}
.y6f{bottom:550.050000px;}
.y20{bottom:551.550000px;}
.y50{bottom:571.050000px;}
.y6e{bottom:574.050000px;}
.y1f{bottom:575.250000px;}
.y4f{bottom:594.750000px;}
.y6d{bottom:597.450000px;}
.y84{bottom:597.750000px;}
.y1e{bottom:599.250000px;}
.y4e{bottom:621.450000px;}
.y1d{bottom:622.950000px;}
.y6c{bottom:624.450000px;}
.y4d{bottom:645.150000px;}
.y1c{bottom:646.650000px;}
.y9b{bottom:647.850000px;}
.y6b{bottom:648.150000px;}
.y1b{bottom:670.650000px;}
.y4c{bottom:671.850000px;}
.y9a{bottom:674.850000px;}
.y1a{bottom:694.380000px;}
.y4b{bottom:695.580000px;}
.y99{bottom:698.280000px;}
.y6a{bottom:698.595000px;}
.y19{bottom:718.080000px;}
.y4a{bottom:722.280000px;}
.y98{bottom:725.280000px;}
.y18{bottom:742.080000px;}
.y69{bottom:745.980000px;}
.y49{bottom:746.280000px;}
.y97{bottom:748.995000px;}
.y17{bottom:765.780000px;}
.y48{bottom:769.980000px;}
.y96{bottom:772.695000px;}
.y68{bottom:772.980000px;}
.y16{bottom:789.795000px;}
.y67{bottom:796.380000px;}
.y47{bottom:796.695000px;}
.y95{bottom:799.380000px;}
.y15{bottom:813.480000px;}
.y46{bottom:820.380000px;}
.y66{bottom:823.380000px;}
.y14{bottom:837.195000px;}
.y83{bottom:844.080000px;}
.y94{bottom:846.825000px;}
.y45{bottom:847.125000px;}
.y13{bottom:861.225000px;}
.y44{bottom:870.825000px;}
.y93{bottom:873.825000px;}
.y12{bottom:884.925000px;}
.y82{bottom:894.525000px;}
.y92{bottom:897.225000px;}
.y43{bottom:897.525000px;}
.y11{bottom:908.625000px;}
.y42{bottom:921.225000px;}
.y91{bottom:924.225000px;}
.y10{bottom:932.625000px;}
.y41{bottom:944.925000px;}
.y90{bottom:947.925000px;}
.yf{bottom:956.325000px;}
.y40{bottom:971.625000px;}
.ye{bottom:980.025000px;}
.y3f{bottom:995.325000px;}
.y8f{bottom:998.325000px;}
.yd{bottom:1004.025000px;}
.y3e{bottom:1022.070000px;}
.yc{bottom:1027.755000px;}
.y3d{bottom:1045.755000px;}
.y65{bottom:1046.070000px;}
.yb{bottom:1051.455000px;}
.y64{bottom:1069.455000px;}
.y3c{bottom:1072.455000px;}
.ya{bottom:1075.455000px;}
.y3b{bottom:1096.455000px;}
.y9{bottom:1099.155000px;}
.y3a{bottom:1119.855000px;}
.y8{bottom:1122.855000px;}
.y6{bottom:1143.570000px;}
.y5{bottom:1164.255000px;}
.y4{bottom:1182.570000px;}
.y3{bottom:1200.900000px;}
.y2{bottom:1219.200000px;}
.y1{bottom:1237.500000px;}
.h5{height:50.800781px;}
.h9{height:61.101562px;}
.h2{height:61.435547px;}
.ha{height:63.457031px;}
.h4{height:65.645508px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h3{height:84.656250px;}
.h8{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:84.937487px;}
.x5{left:95.437487px;}
.x9{left:126.337487px;}
.xa{left:183.074987px;}
.x6{left:225.074987px;}
.x3{left:350.504987px;}
.x8{left:358.319987px;}
.xc{left:383.819987px;}
.x4{left:433.949987px;}
.x7{left:446.249987px;}
.x2{left:457.049987px;}
.x1{left:510.449987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.429333pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.341333pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls13{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.074667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.lsd{letter-spacing:0.181333pt;}
.ls6{letter-spacing:0.384000pt;}
.lsb{letter-spacing:9.600000pt;}
.ls8{letter-spacing:11.733333pt;}
.ls11{letter-spacing:46.933333pt;}
.lsc{letter-spacing:74.176000pt;}
.ls7{letter-spacing:111.509333pt;}
.ls12{letter-spacing:221.509333pt;}
.ws7{word-spacing:-64.000000pt;}
.ws6{word-spacing:-63.978667pt;}
.ws8{word-spacing:-18.666667pt;}
.ws5{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.658667pt;}
.ws3{word-spacing:-15.616000pt;}
.wsa{word-spacing:-14.933333pt;}
.ws0{word-spacing:-11.680000pt;}
.ws4{word-spacing:0.000000pt;}
._3a{margin-left:-7.872000pt;}
._38{margin-left:-6.250667pt;}
._2{margin-left:-4.736000pt;}
._4{margin-left:-3.349333pt;}
._3{margin-left:-2.458667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.226667pt;}
._5{width:2.213333pt;}
._11{width:3.125333pt;}
._6{width:4.032000pt;}
._7{width:4.938667pt;}
._8{width:6.058667pt;}
._e{width:7.477333pt;}
._f{width:8.464000pt;}
._b{width:9.776000pt;}
._13{width:10.789333pt;}
._c{width:11.701333pt;}
._d{width:12.928000pt;}
._10{width:14.400000pt;}
._a{width:17.269333pt;}
._9{width:18.624000pt;}
._12{width:19.701333pt;}
._16{width:21.386667pt;}
._22{width:22.720000pt;}
._30{width:23.696000pt;}
._14{width:24.666667pt;}
._28{width:25.706667pt;}
._21{width:27.285333pt;}
._1f{width:28.224000pt;}
._1e{width:29.141333pt;}
._1b{width:31.029333pt;}
._1a{width:32.560000pt;}
._3c{width:33.472000pt;}
._15{width:35.146667pt;}
._23{width:37.109333pt;}
._24{width:38.042667pt;}
._17{width:42.773333pt;}
._1d{width:44.736000pt;}
._1c{width:45.680000pt;}
._25{width:47.120000pt;}
._33{width:48.896000pt;}
._34{width:49.909333pt;}
._42{width:51.189333pt;}
._37{width:52.085333pt;}
._39{width:53.440000pt;}
._27{width:56.533333pt;}
._32{width:65.514667pt;}
._31{width:66.645333pt;}
._26{width:71.626667pt;}
._3b{width:81.994667pt;}
._2a{width:83.434667pt;}
._29{width:84.821333pt;}
._2e{width:88.746667pt;}
._2d{width:90.133333pt;}
._20{width:95.253333pt;}
._19{width:98.149333pt;}
._18{width:99.088000pt;}
._41{width:101.130667pt;}
._35{width:110.794667pt;}
._36{width:112.576000pt;}
._3d{width:125.770667pt;}
._3e{width:127.296000pt;}
._3f{width:154.634667pt;}
._40{width:156.304000pt;}
._2f{width:166.176000pt;}
._2b{width:205.301333pt;}
._2c{width:206.656000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:50.966667pt;}
.y33{bottom:88.300000pt;}
.y63{bottom:90.700000pt;}
.y81{bottom:93.100000pt;}
.y32{bottom:109.366667pt;}
.y62{bottom:111.766667pt;}
.y80{bottom:114.166667pt;}
.y39{bottom:125.633333pt;}
.y31{bottom:130.433333pt;}
.y61{bottom:132.833333pt;}
.y8e{bottom:133.100000pt;}
.y7f{bottom:137.893333pt;}
.y38{bottom:146.693333pt;}
.y30{bottom:151.800000pt;}
.y8d{bottom:153.933333pt;}
.y60{bottom:156.600000pt;}
.y7e{bottom:159.266667pt;}
.y37{bottom:167.800000pt;}
.y2f{bottom:172.866667pt;}
.y5f{bottom:177.933333pt;}
.y7d{bottom:180.066667pt;}
.y36{bottom:191.533333pt;}
.y2e{bottom:193.933333pt;}
.y5e{bottom:198.733333pt;}
.y7c{bottom:204.066667pt;}
.y35{bottom:212.600000pt;}
.y2d{bottom:215.266667pt;}
.y5d{bottom:222.733333pt;}
.y7b{bottom:225.133333pt;}
.y34{bottom:233.666667pt;}
.y2c{bottom:236.333333pt;}
.y8c{bottom:243.533333pt;}
.y5c{bottom:243.800000pt;}
.y7a{bottom:246.200000pt;}
.y2b{bottom:257.400000pt;}
.y5b{bottom:264.866667pt;}
.y8b{bottom:267.533333pt;}
.y79{bottom:269.933333pt;}
.y2a{bottom:278.733333pt;}
.y8a{bottom:288.333333pt;}
.y5a{bottom:288.600000pt;}
.y78{bottom:291.000000pt;}
.y29{bottom:299.800000pt;}
.y59{bottom:309.706667pt;}
.y89{bottom:312.360000pt;}
.y77{bottom:314.760000pt;}
.y28{bottom:320.893333pt;}
.y58{bottom:333.440000pt;}
.y76{bottom:335.826667pt;}
.y27{bottom:342.226667pt;}
.y57{bottom:354.506667pt;}
.y75{bottom:356.893333pt;}
.y26{bottom:363.293333pt;}
.y56{bottom:375.560000pt;}
.y88{bottom:378.226667pt;}
.y74{bottom:380.626667pt;}
.y25{bottom:384.360000pt;}
.y55{bottom:399.293333pt;}
.y73{bottom:401.960000pt;}
.y24{bottom:405.706667pt;}
.y9c{bottom:420.360000pt;}
.y54{bottom:420.626667pt;}
.y72{bottom:422.773333pt;}
.y87{bottom:423.026667pt;}
.y23{bottom:426.773333pt;}
.y53{bottom:441.426667pt;}
.y86{bottom:444.093333pt;}
.y71{bottom:446.773333pt;}
.y22{bottom:447.826667pt;}
.y52{bottom:465.466667pt;}
.y70{bottom:467.866667pt;}
.y21{bottom:469.200000pt;}
.y85{bottom:486.266667pt;}
.y51{bottom:486.533333pt;}
.y6f{bottom:488.933333pt;}
.y20{bottom:490.266667pt;}
.y50{bottom:507.600000pt;}
.y6e{bottom:510.266667pt;}
.y1f{bottom:511.333333pt;}
.y4f{bottom:528.666667pt;}
.y6d{bottom:531.066667pt;}
.y84{bottom:531.333333pt;}
.y1e{bottom:532.666667pt;}
.y4e{bottom:552.400000pt;}
.y1d{bottom:553.733333pt;}
.y6c{bottom:555.066667pt;}
.y4d{bottom:573.466667pt;}
.y1c{bottom:574.800000pt;}
.y9b{bottom:575.866667pt;}
.y6b{bottom:576.133333pt;}
.y1b{bottom:596.133333pt;}
.y4c{bottom:597.200000pt;}
.y9a{bottom:599.866667pt;}
.y1a{bottom:617.226667pt;}
.y4b{bottom:618.293333pt;}
.y99{bottom:620.693333pt;}
.y6a{bottom:620.973333pt;}
.y19{bottom:638.293333pt;}
.y4a{bottom:642.026667pt;}
.y98{bottom:644.693333pt;}
.y18{bottom:659.626667pt;}
.y69{bottom:663.093333pt;}
.y49{bottom:663.360000pt;}
.y97{bottom:665.773333pt;}
.y17{bottom:680.693333pt;}
.y48{bottom:684.426667pt;}
.y96{bottom:686.840000pt;}
.y68{bottom:687.093333pt;}
.y16{bottom:702.040000pt;}
.y67{bottom:707.893333pt;}
.y47{bottom:708.173333pt;}
.y95{bottom:710.560000pt;}
.y15{bottom:723.093333pt;}
.y46{bottom:729.226667pt;}
.y66{bottom:731.893333pt;}
.y14{bottom:744.173333pt;}
.y83{bottom:750.293333pt;}
.y94{bottom:752.733333pt;}
.y45{bottom:753.000000pt;}
.y13{bottom:765.533333pt;}
.y44{bottom:774.066667pt;}
.y93{bottom:776.733333pt;}
.y12{bottom:786.600000pt;}
.y82{bottom:795.133333pt;}
.y92{bottom:797.533333pt;}
.y43{bottom:797.800000pt;}
.y11{bottom:807.666667pt;}
.y42{bottom:818.866667pt;}
.y91{bottom:821.533333pt;}
.y10{bottom:829.000000pt;}
.y41{bottom:839.933333pt;}
.y90{bottom:842.600000pt;}
.yf{bottom:850.066667pt;}
.y40{bottom:863.666667pt;}
.ye{bottom:871.133333pt;}
.y3f{bottom:884.733333pt;}
.y8f{bottom:887.400000pt;}
.yd{bottom:892.466667pt;}
.y3e{bottom:908.506667pt;}
.yc{bottom:913.560000pt;}
.y3d{bottom:929.560000pt;}
.y65{bottom:929.840000pt;}
.yb{bottom:934.626667pt;}
.y64{bottom:950.626667pt;}
.y3c{bottom:953.293333pt;}
.ya{bottom:955.960000pt;}
.y3b{bottom:974.626667pt;}
.y9{bottom:977.026667pt;}
.y3a{bottom:995.426667pt;}
.y8{bottom:998.093333pt;}
.y6{bottom:1016.506667pt;}
.y5{bottom:1034.893333pt;}
.y4{bottom:1051.173333pt;}
.y3{bottom:1067.466667pt;}
.y2{bottom:1083.733333pt;}
.y1{bottom:1100.000000pt;}
.h5{height:45.156250pt;}
.h9{height:54.312500pt;}
.h2{height:54.609375pt;}
.ha{height:56.406250pt;}
.h4{height:58.351562pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h3{height:75.250000pt;}
.h8{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:75.499988pt;}
.x5{left:84.833322pt;}
.x9{left:112.299988pt;}
.xa{left:162.733322pt;}
.x6{left:200.066655pt;}
.x3{left:311.559988pt;}
.x8{left:318.506655pt;}
.xc{left:341.173322pt;}
.x4{left:385.733322pt;}
.x7{left:396.666655pt;}
.x2{left:406.266655pt;}
.x1{left:453.733322pt;}
}




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