
    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_1b794f9f81435762114205f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_4279653890ae6085b499874b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ef7367a6a877fab8f8d36ac6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_2304f7df2e9f527b9366920b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_910767c7c3341cdbb9c305c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_971a7c35943fc7fc8235c492.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d7961b6897e5ff7bc35b66c5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ec8d626d4b83a4b0d01eac8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_22fcd012f5f7904deb1b06f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.955078;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_38546cadad7b65ebcffa6de2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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);}
.v1{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.746000px;}
.lsb{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsc{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:7.920000px;}
.ls4{letter-spacing:202.680000px;}
.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;}
}
.wsc{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.304544px;}
.wsf{word-spacing:-16.272000px;}
.ws9{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.534000px;}
.ws2{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.814000px;}
.ws7{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-6.478080px;}
._1{margin-left:-5.016960px;}
._6{margin-left:-3.314400px;}
._11{margin-left:-2.241600px;}
._2{margin-left:-1.206000px;}
._0{width:1.195200px;}
._5{width:2.388000px;}
._b{width:3.824640px;}
._f{width:4.907760px;}
._e{width:5.976000px;}
._10{width:7.171200px;}
._d{width:8.507040px;}
._c{width:10.377120px;}
._12{width:11.473920px;}
._13{width:12.609360px;}
._18{width:13.768080px;}
._15{width:15.485040px;}
._14{width:18.132480px;}
._9{width:19.182960px;}
._8{width:20.378160px;}
._a{width:21.692880px;}
._24{width:22.891920px;}
._16{width:24.347760px;}
._17{width:25.430640px;}
._1a{width:27.158400px;}
._19{width:28.647600px;}
._20{width:30.445680px;}
._21{width:31.670640px;}
._1f{width:32.997600px;}
._1e{width:34.246080px;}
._1b{width:35.956800px;}
._1d{width:40.008960px;}
._1c{width:41.607600px;}
._27{width:70.346880px;}
._28{width:71.406720px;}
._29{width:120.020160px;}
._2a{width:121.966560px;}
._25{width:170.501760px;}
._26{width:171.575280px;}
._23{width:258.207360px;}
._22{width:259.371840px;}
._4{width:263.820000px;}
._3{width:1026.257520px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.120000px;}
.ya0{bottom:6.270000px;}
.ya2{bottom:6.660000px;}
.y9e{bottom:24.990000px;}
.y4{bottom:56.340000px;}
.yaa{bottom:114.876000px;}
.y9a{bottom:116.070000px;}
.y3e{bottom:116.676000px;}
.y98{bottom:120.816000px;}
.ya9{bottom:133.776000px;}
.y3d{bottom:135.576000px;}
.y97{bottom:139.896000px;}
.ya8{bottom:152.850000px;}
.y3c{bottom:154.470000px;}
.y96{bottom:158.790000px;}
.ya7{bottom:171.750000px;}
.y3b{bottom:173.550000px;}
.y95{bottom:177.690000px;}
.ya6{bottom:190.830000px;}
.y3a{bottom:192.450000px;}
.y94{bottom:196.770000px;}
.ya5{bottom:209.730000px;}
.y39{bottom:211.530000px;}
.y93{bottom:215.670000px;}
.ya4{bottom:228.630000px;}
.y38{bottom:230.430000px;}
.y92{bottom:234.750000px;}
.ya3{bottom:247.710000px;}
.y37{bottom:249.330000px;}
.y91{bottom:253.650000px;}
.y6d{bottom:266.610000px;}
.y36{bottom:268.410000px;}
.y90{bottom:272.550000px;}
.y6c{bottom:285.690000px;}
.y35{bottom:287.310000px;}
.y8f{bottom:291.630000px;}
.y6b{bottom:304.590000px;}
.y34{bottom:306.390000px;}
.y8e{bottom:310.530000px;}
.y6a{bottom:323.490000px;}
.y33{bottom:325.290000px;}
.y8d{bottom:329.610000px;}
.y69{bottom:342.615000px;}
.y32{bottom:344.235000px;}
.y8c{bottom:348.555000px;}
.y68{bottom:361.515000px;}
.y31{bottom:363.315000px;}
.y8b{bottom:367.635000px;}
.y67{bottom:380.595000px;}
.y30{bottom:382.215000px;}
.y8a{bottom:386.535000px;}
.y66{bottom:399.495000px;}
.y2f{bottom:401.295000px;}
.y89{bottom:405.435000px;}
.y65{bottom:418.575000px;}
.y2e{bottom:420.195000px;}
.y88{bottom:424.515000px;}
.y64{bottom:437.475000px;}
.y2d{bottom:439.095000px;}
.y87{bottom:443.415000px;}
.y63{bottom:456.375000px;}
.y2c{bottom:456.915000px;}
.y86{bottom:462.495000px;}
.y2b{bottom:470.775000px;}
.y62{bottom:475.455000px;}
.y85{bottom:481.395000px;}
.y2a{bottom:485.715000px;}
.y61{bottom:494.355000px;}
.y84{bottom:500.295000px;}
.y29{bottom:504.255000px;}
.y60{bottom:513.435000px;}
.y83{bottom:519.375000px;}
.y28{bottom:521.535000px;}
.y5f{bottom:532.335000px;}
.y82{bottom:538.275000px;}
.y27{bottom:538.815000px;}
.y5e{bottom:551.235000px;}
.y26{bottom:556.095000px;}
.y81{bottom:557.355000px;}
.y5d{bottom:570.315000px;}
.y25{bottom:573.375000px;}
.y80{bottom:576.255000px;}
.y5c{bottom:589.215000px;}
.y24{bottom:590.475000px;}
.y7f{bottom:595.155000px;}
.y23{bottom:607.785000px;}
.y5b{bottom:608.325000px;}
.y7e{bottom:614.265000px;}
.y22{bottom:625.065000px;}
.y5a{bottom:627.225000px;}
.y7d{bottom:633.165000px;}
.y21{bottom:642.345000px;}
.y59{bottom:646.125000px;}
.y7c{bottom:652.245000px;}
.y20{bottom:659.625000px;}
.y58{bottom:665.205000px;}
.y7b{bottom:671.145000px;}
.y1f{bottom:676.725000px;}
.y57{bottom:684.105000px;}
.y7a{bottom:690.045000px;}
.y1e{bottom:694.005000px;}
.y56{bottom:703.185000px;}
.y79{bottom:709.125000px;}
.y1d{bottom:711.285000px;}
.y55{bottom:722.085000px;}
.y78{bottom:728.025000px;}
.y1c{bottom:728.565000px;}
.y54{bottom:740.985000px;}
.y1b{bottom:745.845000px;}
.y77{bottom:747.105000px;}
.y53{bottom:760.065000px;}
.y1a{bottom:763.125000px;}
.y76{bottom:766.005000px;}
.y52{bottom:778.965000px;}
.y19{bottom:780.225000px;}
.y75{bottom:784.905000px;}
.y18{bottom:797.505000px;}
.y51{bottom:798.045000px;}
.y74{bottom:803.985000px;}
.y17{bottom:814.785000px;}
.y50{bottom:816.945000px;}
.y73{bottom:822.885000px;}
.y16{bottom:832.065000px;}
.y4f{bottom:835.845000px;}
.y72{bottom:841.965000px;}
.y15{bottom:849.345000px;}
.y4e{bottom:854.925000px;}
.y71{bottom:860.865000px;}
.y14{bottom:866.625000px;}
.y4d{bottom:873.870000px;}
.y70{bottom:879.990000px;}
.y13{bottom:883.770000px;}
.y4c{bottom:892.950000px;}
.y6f{bottom:898.890000px;}
.y12{bottom:901.590000px;}
.y4b{bottom:911.850000px;}
.y6e{bottom:914.190000px;}
.y9d{bottom:914.940000px;}
.y11{bottom:920.130000px;}
.y4a{bottom:930.930000px;}
.y10{bottom:937.230000px;}
.y49{bottom:949.830000px;}
.y99{bottom:952.740000px;}
.yf{bottom:959.730000px;}
.y48{bottom:968.730000px;}
.ye{bottom:977.010000px;}
.y9c{bottom:983.850000px;}
.y47{bottom:987.810000px;}
.yd{bottom:995.370000px;}
.y46{bottom:1006.710000px;}
.yc{bottom:1008.510000px;}
.y45{bottom:1025.790000px;}
.yb{bottom:1027.950000px;}
.y9b{bottom:1031.370000px;}
.y44{bottom:1044.690000px;}
.ya{bottom:1050.270000px;}
.y43{bottom:1063.590000px;}
.y9{bottom:1071.870000px;}
.y42{bottom:1082.670000px;}
.y9f{bottom:1086.840000px;}
.y8{bottom:1089.150000px;}
.y41{bottom:1101.570000px;}
.y7{bottom:1106.430000px;}
.y40{bottom:1120.650000px;}
.y6{bottom:1123.530000px;}
.ya1{bottom:1131.660000px;}
.y3f{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1168.560000px;}
.y1{bottom:1185.660000px;}
.h14{height:22.860000px;}
.h2{height:23.220000px;}
.hb{height:27.147656px;}
.ha{height:29.464453px;}
.hf{height:34.036523px;}
.h5{height:39.760312px;}
.h13{height:41.580000px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h3{height:43.156758px;}
.h9{height:46.251562px;}
.h11{height:46.736719px;}
.hd{height:49.255313px;}
.h10{height:50.800781px;}
.he{height:54.596250px;}
.h7{height:54.864844px;}
.h8{height:56.155781px;}
.h4{height:71.613281px;}
.h15{height:71.756508px;}
.h12{height:134.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:61.200000px;}
.w7{width:100.800000px;}
.w8{width:117.900000px;}
.w5{width:160.380000px;}
.w6{width:283.500000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:15.660000px;}
.x17{left:24.915000px;}
.x15{left:44.175000px;}
.x1{left:108.036000px;}
.x6{left:114.155987px;}
.x9{left:127.295987px;}
.x18{left:144.035987px;}
.x8{left:147.275987px;}
.x11{left:150.509987px;}
.xe{left:162.029987px;}
.x3{left:169.230000px;}
.x10{left:217.649987px;}
.xb{left:252.209987px;}
.x14{left:344.520000px;}
.x7{left:346.394987px;}
.xd{left:405.254987px;}
.xa{left:417.314987px;}
.x12{left:419.114987px;}
.xc{left:420.194987px;}
.x13{left:428.114987px;}
.x16{left:435.600000px;}
.x5{left:446.474987px;}
.xf{left:628.304987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.552000pt;}
.lsb{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsc{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:7.040000pt;}
.ls4{letter-spacing:180.160000pt;}
.wsc{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.492928pt;}
.wsf{word-spacing:-14.464000pt;}
.ws9{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.808000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.168000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-5.758293pt;}
._1{margin-left:-4.459520pt;}
._6{margin-left:-2.946133pt;}
._11{margin-left:-1.992533pt;}
._2{margin-left:-1.072000pt;}
._0{width:1.062400pt;}
._5{width:2.122667pt;}
._b{width:3.399680pt;}
._f{width:4.362453pt;}
._e{width:5.312000pt;}
._10{width:6.374400pt;}
._d{width:7.561813pt;}
._c{width:9.224107pt;}
._12{width:10.199040pt;}
._13{width:11.208320pt;}
._18{width:12.238293pt;}
._15{width:13.764480pt;}
._14{width:16.117760pt;}
._9{width:17.051520pt;}
._8{width:18.113920pt;}
._a{width:19.282560pt;}
._24{width:20.348373pt;}
._16{width:21.642453pt;}
._17{width:22.605013pt;}
._1a{width:24.140800pt;}
._19{width:25.464533pt;}
._20{width:27.062827pt;}
._21{width:28.151680pt;}
._1f{width:29.331200pt;}
._1e{width:30.440960pt;}
._1b{width:31.961600pt;}
._1d{width:35.563520pt;}
._1c{width:36.984533pt;}
._27{width:62.530560pt;}
._28{width:63.472640pt;}
._29{width:106.684587pt;}
._2a{width:108.414720pt;}
._25{width:151.557120pt;}
._26{width:152.511360pt;}
._23{width:229.517653pt;}
._22{width:230.552747pt;}
._4{width:234.506667pt;}
._3{width:912.228907pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.440000pt;}
.ya0{bottom:5.573333pt;}
.ya2{bottom:5.920000pt;}
.y9e{bottom:22.213333pt;}
.y4{bottom:50.080000pt;}
.yaa{bottom:102.112000pt;}
.y9a{bottom:103.173333pt;}
.y3e{bottom:103.712000pt;}
.y98{bottom:107.392000pt;}
.ya9{bottom:118.912000pt;}
.y3d{bottom:120.512000pt;}
.y97{bottom:124.352000pt;}
.ya8{bottom:135.866667pt;}
.y3c{bottom:137.306667pt;}
.y96{bottom:141.146667pt;}
.ya7{bottom:152.666667pt;}
.y3b{bottom:154.266667pt;}
.y95{bottom:157.946667pt;}
.ya6{bottom:169.626667pt;}
.y3a{bottom:171.066667pt;}
.y94{bottom:174.906667pt;}
.ya5{bottom:186.426667pt;}
.y39{bottom:188.026667pt;}
.y93{bottom:191.706667pt;}
.ya4{bottom:203.226667pt;}
.y38{bottom:204.826667pt;}
.y92{bottom:208.666667pt;}
.ya3{bottom:220.186667pt;}
.y37{bottom:221.626667pt;}
.y91{bottom:225.466667pt;}
.y6d{bottom:236.986667pt;}
.y36{bottom:238.586667pt;}
.y90{bottom:242.266667pt;}
.y6c{bottom:253.946667pt;}
.y35{bottom:255.386667pt;}
.y8f{bottom:259.226667pt;}
.y6b{bottom:270.746667pt;}
.y34{bottom:272.346667pt;}
.y8e{bottom:276.026667pt;}
.y6a{bottom:287.546667pt;}
.y33{bottom:289.146667pt;}
.y8d{bottom:292.986667pt;}
.y69{bottom:304.546667pt;}
.y32{bottom:305.986667pt;}
.y8c{bottom:309.826667pt;}
.y68{bottom:321.346667pt;}
.y31{bottom:322.946667pt;}
.y8b{bottom:326.786667pt;}
.y67{bottom:338.306667pt;}
.y30{bottom:339.746667pt;}
.y8a{bottom:343.586667pt;}
.y66{bottom:355.106667pt;}
.y2f{bottom:356.706667pt;}
.y89{bottom:360.386667pt;}
.y65{bottom:372.066667pt;}
.y2e{bottom:373.506667pt;}
.y88{bottom:377.346667pt;}
.y64{bottom:388.866667pt;}
.y2d{bottom:390.306667pt;}
.y87{bottom:394.146667pt;}
.y63{bottom:405.666667pt;}
.y2c{bottom:406.146667pt;}
.y86{bottom:411.106667pt;}
.y2b{bottom:418.466667pt;}
.y62{bottom:422.626667pt;}
.y85{bottom:427.906667pt;}
.y2a{bottom:431.746667pt;}
.y61{bottom:439.426667pt;}
.y84{bottom:444.706667pt;}
.y29{bottom:448.226667pt;}
.y60{bottom:456.386667pt;}
.y83{bottom:461.666667pt;}
.y28{bottom:463.586667pt;}
.y5f{bottom:473.186667pt;}
.y82{bottom:478.466667pt;}
.y27{bottom:478.946667pt;}
.y5e{bottom:489.986667pt;}
.y26{bottom:494.306667pt;}
.y81{bottom:495.426667pt;}
.y5d{bottom:506.946667pt;}
.y25{bottom:509.666667pt;}
.y80{bottom:512.226667pt;}
.y5c{bottom:523.746667pt;}
.y24{bottom:524.866667pt;}
.y7f{bottom:529.026667pt;}
.y23{bottom:540.253333pt;}
.y5b{bottom:540.733333pt;}
.y7e{bottom:546.013333pt;}
.y22{bottom:555.613333pt;}
.y5a{bottom:557.533333pt;}
.y7d{bottom:562.813333pt;}
.y21{bottom:570.973333pt;}
.y59{bottom:574.333333pt;}
.y7c{bottom:579.773333pt;}
.y20{bottom:586.333333pt;}
.y58{bottom:591.293333pt;}
.y7b{bottom:596.573333pt;}
.y1f{bottom:601.533333pt;}
.y57{bottom:608.093333pt;}
.y7a{bottom:613.373333pt;}
.y1e{bottom:616.893333pt;}
.y56{bottom:625.053333pt;}
.y79{bottom:630.333333pt;}
.y1d{bottom:632.253333pt;}
.y55{bottom:641.853333pt;}
.y78{bottom:647.133333pt;}
.y1c{bottom:647.613333pt;}
.y54{bottom:658.653333pt;}
.y1b{bottom:662.973333pt;}
.y77{bottom:664.093333pt;}
.y53{bottom:675.613333pt;}
.y1a{bottom:678.333333pt;}
.y76{bottom:680.893333pt;}
.y52{bottom:692.413333pt;}
.y19{bottom:693.533333pt;}
.y75{bottom:697.693333pt;}
.y18{bottom:708.893333pt;}
.y51{bottom:709.373333pt;}
.y74{bottom:714.653333pt;}
.y17{bottom:724.253333pt;}
.y50{bottom:726.173333pt;}
.y73{bottom:731.453333pt;}
.y16{bottom:739.613333pt;}
.y4f{bottom:742.973333pt;}
.y72{bottom:748.413333pt;}
.y15{bottom:754.973333pt;}
.y4e{bottom:759.933333pt;}
.y71{bottom:765.213333pt;}
.y14{bottom:770.333333pt;}
.y4d{bottom:776.773333pt;}
.y70{bottom:782.213333pt;}
.y13{bottom:785.573333pt;}
.y4c{bottom:793.733333pt;}
.y6f{bottom:799.013333pt;}
.y12{bottom:801.413333pt;}
.y4b{bottom:810.533333pt;}
.y6e{bottom:812.613333pt;}
.y9d{bottom:813.280000pt;}
.y11{bottom:817.893333pt;}
.y4a{bottom:827.493333pt;}
.y10{bottom:833.093333pt;}
.y49{bottom:844.293333pt;}
.y99{bottom:846.880000pt;}
.yf{bottom:853.093333pt;}
.y48{bottom:861.093333pt;}
.ye{bottom:868.453333pt;}
.y9c{bottom:874.533333pt;}
.y47{bottom:878.053333pt;}
.yd{bottom:884.773333pt;}
.y46{bottom:894.853333pt;}
.yc{bottom:896.453333pt;}
.y45{bottom:911.813333pt;}
.yb{bottom:913.733333pt;}
.y9b{bottom:916.773333pt;}
.y44{bottom:928.613333pt;}
.ya{bottom:933.573333pt;}
.y43{bottom:945.413333pt;}
.y9{bottom:952.773333pt;}
.y42{bottom:962.373333pt;}
.y9f{bottom:966.080000pt;}
.y8{bottom:968.133333pt;}
.y41{bottom:979.173333pt;}
.y7{bottom:983.493333pt;}
.y40{bottom:996.133333pt;}
.y6{bottom:998.693333pt;}
.ya1{bottom:1005.920000pt;}
.y3f{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1038.720000pt;}
.y1{bottom:1053.920000pt;}
.h14{height:20.320000pt;}
.h2{height:20.640000pt;}
.hb{height:24.131250pt;}
.ha{height:26.190625pt;}
.hf{height:30.254687pt;}
.h5{height:35.342500pt;}
.h13{height:36.960000pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h3{height:38.361562pt;}
.h9{height:41.112500pt;}
.h11{height:41.543750pt;}
.hd{height:43.782500pt;}
.h10{height:45.156250pt;}
.he{height:48.530000pt;}
.h7{height:48.768750pt;}
.h8{height:49.916250pt;}
.h4{height:63.656250pt;}
.h15{height:63.783562pt;}
.h12{height:119.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:54.400000pt;}
.w7{width:89.600000pt;}
.w8{width:104.800000pt;}
.w5{width:142.560000pt;}
.w6{width:252.000000pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:13.920000pt;}
.x17{left:22.146667pt;}
.x15{left:39.266667pt;}
.x1{left:96.032000pt;}
.x6{left:101.471988pt;}
.x9{left:113.151988pt;}
.x18{left:128.031988pt;}
.x8{left:130.911988pt;}
.x11{left:133.786655pt;}
.xe{left:144.026655pt;}
.x3{left:150.426667pt;}
.x10{left:193.466655pt;}
.xb{left:224.186655pt;}
.x14{left:306.240000pt;}
.x7{left:307.906655pt;}
.xd{left:360.226655pt;}
.xa{left:370.946655pt;}
.x12{left:372.546655pt;}
.xc{left:373.506655pt;}
.x13{left:380.546655pt;}
.x16{left:387.200000pt;}
.x5{left:396.866655pt;}
.xf{left:558.493322pt;}
}




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