
    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_0a9827751240235bce071d54.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf27267f2ac2270f5d65526a.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_18558ef90dedcc68db3300b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_7244876a6f4a2d7379b739be.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_496ff61cafba531e0afe9654.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_63a64192ce19a7412ebf01e5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6e331edfdcb9bbd23d7a5231.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d53c48233453d6730930cdd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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_09a4846ee1b252494349fe81.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_52a2d7a6a0d183a5c23033bf.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01c698edd268041666e6199f.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.322800px;}
.lsc{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.229800px;}
.ls3{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.059040px;}
.lsb{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.187200px;}
.ls1{letter-spacing:0.360000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.737200px;}
.ws3{word-spacing:-19.038240px;}
.ws4{word-spacing:-18.808440px;}
.ws7{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-11.119680px;}
._4{margin-left:-4.633200px;}
._2{margin-left:-3.215040px;}
._1{margin-left:-1.347840px;}
._0{width:1.080000px;}
._14{width:2.784000px;}
._a{width:3.959520px;}
._8{width:5.040000px;}
._34{width:6.048000px;}
._9{width:7.056000px;}
._7{width:8.352000px;}
._24{width:9.380160px;}
._12{width:10.419840px;}
._13{width:11.900160px;}
._6{width:13.360320px;}
._5{width:14.955840px;}
._15{width:16.992000px;}
._28{width:19.056000px;}
._d{width:20.232000px;}
._e{width:21.507840px;}
._26{width:22.576320px;}
._25{width:23.832000px;}
._b{width:25.464000px;}
._c{width:26.715840px;}
._16{width:28.728000px;}
._2c{width:30.672000px;}
._36{width:31.875840px;}
._1e{width:33.336000px;}
._1f{width:34.632000px;}
._30{width:35.928000px;}
._32{width:37.152000px;}
._1c{width:38.232000px;}
._1d{width:39.384000px;}
._1b{width:40.824000px;}
._2b{width:42.079680px;}
._23{width:43.272000px;}
._17{width:44.568000px;}
._18{width:46.008000px;}
._21{width:47.952000px;}
._27{width:50.112000px;}
._f{width:52.104000px;}
._10{width:53.400000px;}
._29{width:56.259840px;}
._1a{width:58.608000px;}
._19{width:59.832000px;}
._22{width:60.840000px;}
._2e{width:62.712000px;}
._2f{width:64.152000px;}
._20{width:66.168000px;}
._35{width:68.400000px;}
._37{width:69.696000px;}
._38{width:71.136000px;}
._11{width:72.360000px;}
._2a{width:81.699840px;}
._2d{width:101.736000px;}
._31{width:104.523840px;}
._33{width:127.440000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:18.000000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:47.880000px;}
.y55{bottom:62.460000px;}
.y2f{bottom:72.000000px;}
.y97{bottom:90.180000px;}
.y2e{bottom:95.760000px;}
.y96{bottom:109.980000px;}
.y82{bottom:113.940000px;}
.y52{bottom:114.660000px;}
.y2d{bottom:122.220000px;}
.y95{bottom:133.920000px;}
.y51{bottom:135.900000px;}
.y81{bottom:137.700000px;}
.y2c{bottom:146.160000px;}
.y94{bottom:157.680000px;}
.y80{bottom:161.460000px;}
.y2b{bottom:169.920000px;}
.y50{bottom:178.380000px;}
.y93{bottom:181.470000px;}
.y7f{bottom:185.430000px;}
.y2a{bottom:193.680000px;}
.y4f{bottom:199.800000px;}
.y92{bottom:205.230000px;}
.y7e{bottom:209.190000px;}
.y29{bottom:217.440000px;}
.y4e{bottom:225.360000px;}
.y91{bottom:229.170000px;}
.y7d{bottom:232.950000px;}
.y28{bottom:241.410000px;}
.y90{bottom:252.930000px;}
.y99{bottom:256.350000px;}
.y7c{bottom:256.710000px;}
.y27{bottom:265.170000px;}
.y4d{bottom:267.870000px;}
.y8f{bottom:276.690000px;}
.y98{bottom:280.290000px;}
.y7b{bottom:280.650000px;}
.y26{bottom:288.930000px;}
.y4c{bottom:289.290000px;}
.y8e{bottom:300.450000px;}
.y84{bottom:304.050000px;}
.y7a{bottom:304.410000px;}
.y25{bottom:312.690000px;}
.y4b{bottom:314.850000px;}
.y8d{bottom:324.390000px;}
.y79{bottom:328.170000px;}
.y24{bottom:336.630000px;}
.y4a{bottom:341.490000px;}
.y8c{bottom:348.150000px;}
.y78{bottom:351.930000px;}
.y23{bottom:360.390000px;}
.y49{bottom:370.830000px;}
.y8b{bottom:371.910000px;}
.y77{bottom:375.870000px;}
.y22{bottom:384.150000px;}
.y76{bottom:399.270000px;}
.y83{bottom:399.630000px;}
.y48{bottom:399.990000px;}
.y21{bottom:407.910000px;}
.y75{bottom:423.435000px;}
.y47{bottom:429.330000px;}
.y20{bottom:431.850000px;}
.y74{bottom:447.195000px;}
.y1f{bottom:455.610000px;}
.y46{bottom:458.670000px;}
.y73{bottom:471.135000px;}
.y1e{bottom:479.415000px;}
.y45{bottom:481.395000px;}
.y72{bottom:494.895000px;}
.y1d{bottom:503.175000px;}
.y71{bottom:518.655000px;}
.y1c{bottom:527.115000px;}
.y70{bottom:542.415000px;}
.y1b{bottom:550.875000px;}
.y6f{bottom:566.355000px;}
.y1a{bottom:574.635000px;}
.y6e{bottom:590.115000px;}
.y19{bottom:598.395000px;}
.y6d{bottom:613.875000px;}
.y18{bottom:622.335000px;}
.y6c{bottom:637.635000px;}
.y17{bottom:646.095000px;}
.y44{bottom:654.555000px;}
.y6b{bottom:661.425000px;}
.y16{bottom:669.855000px;}
.y43{bottom:683.715000px;}
.y6a{bottom:685.365000px;}
.y15{bottom:693.645000px;}
.y69{bottom:709.125000px;}
.y42{bottom:711.645000px;}
.y14{bottom:717.405000px;}
.y68{bottom:732.885000px;}
.y41{bottom:735.405000px;}
.y13{bottom:741.345000px;}
.y67{bottom:756.645000px;}
.y40{bottom:759.885000px;}
.y12{bottom:765.105000px;}
.y66{bottom:780.585000px;}
.y3f{bottom:784.005000px;}
.y11{bottom:788.865000px;}
.y65{bottom:804.345000px;}
.y3e{bottom:807.765000px;}
.y10{bottom:812.625000px;}
.y64{bottom:828.105000px;}
.y3d{bottom:832.965000px;}
.yf{bottom:836.565000px;}
.y63{bottom:851.865000px;}
.ye{bottom:860.325000px;}
.y3c{bottom:860.685000px;}
.y62{bottom:875.805000px;}
.yd{bottom:884.085000px;}
.y3b{bottom:888.225000px;}
.y61{bottom:899.565000px;}
.yc{bottom:907.845000px;}
.y3a{bottom:915.765000px;}
.y60{bottom:923.370000px;}
.yb{bottom:931.830000px;}
.y39{bottom:943.710000px;}
.y5f{bottom:947.130000px;}
.ya{bottom:955.590000px;}
.y5e{bottom:971.070000px;}
.y38{bottom:974.670000px;}
.y9{bottom:979.350000px;}
.y5d{bottom:994.830000px;}
.y8{bottom:1003.110000px;}
.y37{bottom:1007.070000px;}
.y8a{bottom:1018.590000px;}
.y5c{bottom:1024.530000px;}
.y7{bottom:1027.050000px;}
.y36{bottom:1040.010000px;}
.y5b{bottom:1041.990000px;}
.y89{bottom:1042.350000px;}
.y6{bottom:1050.810000px;}
.y5a{bottom:1065.930000px;}
.y88{bottom:1066.290000px;}
.y35{bottom:1071.330000px;}
.y5{bottom:1074.570000px;}
.y59{bottom:1089.690000px;}
.y87{bottom:1090.050000px;}
.y34{bottom:1096.890000px;}
.y4{bottom:1098.330000px;}
.y58{bottom:1113.450000px;}
.y86{bottom:1113.810000px;}
.y3{bottom:1122.270000px;}
.y33{bottom:1122.630000px;}
.y57{bottom:1137.210000px;}
.y85{bottom:1137.570000px;}
.y2{bottom:1146.030000px;}
.y32{bottom:1147.470000px;}
.y56{bottom:1161.540000px;}
.y31{bottom:1169.460000px;}
.y1{bottom:1169.820000px;}
.y54{bottom:1184.580000px;}
.y53{bottom:1198.980000px;}
.h12{height:47.321367px;}
.he{height:48.616875px;}
.h13{height:63.457031px;}
.hc{height:63.632461px;}
.h4{height:65.884219px;}
.h10{height:70.664062px;}
.h11{height:71.081367px;}
.hf{height:71.324297px;}
.h2{height:72.562500px;}
.h5{height:73.722656px;}
.ha{height:82.676953px;}
.h3{height:84.898125px;}
.h6{height:86.255508px;}
.h9{height:93.983203px;}
.hb{height:95.245664px;}
.h8{height:108.843750px;}
.h7{height:110.583984px;}
.hd{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w5{width:892.980000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059957px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x12{left:126.035987px;}
.x1e{left:127.655987px;}
.x2{left:137.915987px;}
.x17{left:154.649987px;}
.x13{left:158.069987px;}
.x1d{left:159.689987px;}
.xb{left:179.309987px;}
.x15{left:191.729987px;}
.x19{left:195.329987px;}
.xa{left:197.309987px;}
.x4{left:198.389987px;}
.x6{left:212.069987px;}
.xc{left:219.449987px;}
.x23{left:231.869987px;}
.x10{left:257.609987px;}
.xf{left:281.774987px;}
.x20{left:292.394987px;}
.x9{left:294.374987px;}
.x8{left:298.514987px;}
.x7{left:345.854987px;}
.x5{left:350.894987px;}
.xd{left:356.654987px;}
.x1c{left:366.374987px;}
.x14{left:396.614987px;}
.x3{left:409.034987px;}
.x1b{left:414.614987px;}
.x1a{left:431.174987px;}
.x16{left:443.414987px;}
.x1{left:456.224987px;}
.x11{left:472.244987px;}
.x18{left:494.564987px;}
.x1f{left:499.964987px;}
.xe{left:543.884987px;}
.x22{left:603.644987px;}
.x21{left:664.664987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.286933pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.204267pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.052480pt;}
.lsb{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls1{letter-spacing:0.320000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.433067pt;}
.ws3{word-spacing:-16.922880pt;}
.ws4{word-spacing:-16.718613pt;}
.ws7{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-9.884160pt;}
._4{margin-left:-4.118400pt;}
._2{margin-left:-2.857813pt;}
._1{margin-left:-1.198080pt;}
._0{width:0.960000pt;}
._14{width:2.474667pt;}
._a{width:3.519573pt;}
._8{width:4.480000pt;}
._34{width:5.376000pt;}
._9{width:6.272000pt;}
._7{width:7.424000pt;}
._24{width:8.337920pt;}
._12{width:9.262080pt;}
._13{width:10.577920pt;}
._6{width:11.875840pt;}
._5{width:13.294080pt;}
._15{width:15.104000pt;}
._28{width:16.938667pt;}
._d{width:17.984000pt;}
._e{width:19.118080pt;}
._26{width:20.067840pt;}
._25{width:21.184000pt;}
._b{width:22.634667pt;}
._c{width:23.747413pt;}
._16{width:25.536000pt;}
._2c{width:27.264000pt;}
._36{width:28.334080pt;}
._1e{width:29.632000pt;}
._1f{width:30.784000pt;}
._30{width:31.936000pt;}
._32{width:33.024000pt;}
._1c{width:33.984000pt;}
._1d{width:35.008000pt;}
._1b{width:36.288000pt;}
._2b{width:37.404160pt;}
._23{width:38.464000pt;}
._17{width:39.616000pt;}
._18{width:40.896000pt;}
._21{width:42.624000pt;}
._27{width:44.544000pt;}
._f{width:46.314667pt;}
._10{width:47.466667pt;}
._29{width:50.008747pt;}
._1a{width:52.096000pt;}
._19{width:53.184000pt;}
._22{width:54.080000pt;}
._2e{width:55.744000pt;}
._2f{width:57.024000pt;}
._20{width:58.816000pt;}
._35{width:60.800000pt;}
._37{width:61.952000pt;}
._38{width:63.232000pt;}
._11{width:64.320000pt;}
._2a{width:72.622080pt;}
._2d{width:90.432000pt;}
._31{width:92.910080pt;}
._33{width:113.280000pt;}
.fs6{font-size:16.000000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:42.560000pt;}
.y55{bottom:55.520000pt;}
.y2f{bottom:64.000000pt;}
.y97{bottom:80.160000pt;}
.y2e{bottom:85.120000pt;}
.y96{bottom:97.760000pt;}
.y82{bottom:101.280000pt;}
.y52{bottom:101.920000pt;}
.y2d{bottom:108.640000pt;}
.y95{bottom:119.040000pt;}
.y51{bottom:120.800000pt;}
.y81{bottom:122.400000pt;}
.y2c{bottom:129.920000pt;}
.y94{bottom:140.160000pt;}
.y80{bottom:143.520000pt;}
.y2b{bottom:151.040000pt;}
.y50{bottom:158.560000pt;}
.y93{bottom:161.306667pt;}
.y7f{bottom:164.826667pt;}
.y2a{bottom:172.160000pt;}
.y4f{bottom:177.600000pt;}
.y92{bottom:182.426667pt;}
.y7e{bottom:185.946667pt;}
.y29{bottom:193.280000pt;}
.y4e{bottom:200.320000pt;}
.y91{bottom:203.706667pt;}
.y7d{bottom:207.066667pt;}
.y28{bottom:214.586667pt;}
.y90{bottom:224.826667pt;}
.y99{bottom:227.866667pt;}
.y7c{bottom:228.186667pt;}
.y27{bottom:235.706667pt;}
.y4d{bottom:238.106667pt;}
.y8f{bottom:245.946667pt;}
.y98{bottom:249.146667pt;}
.y7b{bottom:249.466667pt;}
.y26{bottom:256.826667pt;}
.y4c{bottom:257.146667pt;}
.y8e{bottom:267.066667pt;}
.y84{bottom:270.266667pt;}
.y7a{bottom:270.586667pt;}
.y25{bottom:277.946667pt;}
.y4b{bottom:279.866667pt;}
.y8d{bottom:288.346667pt;}
.y79{bottom:291.706667pt;}
.y24{bottom:299.226667pt;}
.y4a{bottom:303.546667pt;}
.y8c{bottom:309.466667pt;}
.y78{bottom:312.826667pt;}
.y23{bottom:320.346667pt;}
.y49{bottom:329.626667pt;}
.y8b{bottom:330.586667pt;}
.y77{bottom:334.106667pt;}
.y22{bottom:341.466667pt;}
.y76{bottom:354.906667pt;}
.y83{bottom:355.226667pt;}
.y48{bottom:355.546667pt;}
.y21{bottom:362.586667pt;}
.y75{bottom:376.386667pt;}
.y47{bottom:381.626667pt;}
.y20{bottom:383.866667pt;}
.y74{bottom:397.506667pt;}
.y1f{bottom:404.986667pt;}
.y46{bottom:407.706667pt;}
.y73{bottom:418.786667pt;}
.y1e{bottom:426.146667pt;}
.y45{bottom:427.906667pt;}
.y72{bottom:439.906667pt;}
.y1d{bottom:447.266667pt;}
.y71{bottom:461.026667pt;}
.y1c{bottom:468.546667pt;}
.y70{bottom:482.146667pt;}
.y1b{bottom:489.666667pt;}
.y6f{bottom:503.426667pt;}
.y1a{bottom:510.786667pt;}
.y6e{bottom:524.546667pt;}
.y19{bottom:531.906667pt;}
.y6d{bottom:545.666667pt;}
.y18{bottom:553.186667pt;}
.y6c{bottom:566.786667pt;}
.y17{bottom:574.306667pt;}
.y44{bottom:581.826667pt;}
.y6b{bottom:587.933333pt;}
.y16{bottom:595.426667pt;}
.y43{bottom:607.746667pt;}
.y6a{bottom:609.213333pt;}
.y15{bottom:616.573333pt;}
.y69{bottom:630.333333pt;}
.y42{bottom:632.573333pt;}
.y14{bottom:637.693333pt;}
.y68{bottom:651.453333pt;}
.y41{bottom:653.693333pt;}
.y13{bottom:658.973333pt;}
.y67{bottom:672.573333pt;}
.y40{bottom:675.453333pt;}
.y12{bottom:680.093333pt;}
.y66{bottom:693.853333pt;}
.y3f{bottom:696.893333pt;}
.y11{bottom:701.213333pt;}
.y65{bottom:714.973333pt;}
.y3e{bottom:718.013333pt;}
.y10{bottom:722.333333pt;}
.y64{bottom:736.093333pt;}
.y3d{bottom:740.413333pt;}
.yf{bottom:743.613333pt;}
.y63{bottom:757.213333pt;}
.ye{bottom:764.733333pt;}
.y3c{bottom:765.053333pt;}
.y62{bottom:778.493333pt;}
.yd{bottom:785.853333pt;}
.y3b{bottom:789.533333pt;}
.y61{bottom:799.613333pt;}
.yc{bottom:806.973333pt;}
.y3a{bottom:814.013333pt;}
.y60{bottom:820.773333pt;}
.yb{bottom:828.293333pt;}
.y39{bottom:838.853333pt;}
.y5f{bottom:841.893333pt;}
.ya{bottom:849.413333pt;}
.y5e{bottom:863.173333pt;}
.y38{bottom:866.373333pt;}
.y9{bottom:870.533333pt;}
.y5d{bottom:884.293333pt;}
.y8{bottom:891.653333pt;}
.y37{bottom:895.173333pt;}
.y8a{bottom:905.413333pt;}
.y5c{bottom:910.693333pt;}
.y7{bottom:912.933333pt;}
.y36{bottom:924.453333pt;}
.y5b{bottom:926.213333pt;}
.y89{bottom:926.533333pt;}
.y6{bottom:934.053333pt;}
.y5a{bottom:947.493333pt;}
.y88{bottom:947.813333pt;}
.y35{bottom:952.293333pt;}
.y5{bottom:955.173333pt;}
.y59{bottom:968.613333pt;}
.y87{bottom:968.933333pt;}
.y34{bottom:975.013333pt;}
.y4{bottom:976.293333pt;}
.y58{bottom:989.733333pt;}
.y86{bottom:990.053333pt;}
.y3{bottom:997.573333pt;}
.y33{bottom:997.893333pt;}
.y57{bottom:1010.853333pt;}
.y85{bottom:1011.173333pt;}
.y2{bottom:1018.693333pt;}
.y32{bottom:1019.973333pt;}
.y56{bottom:1032.480000pt;}
.y31{bottom:1039.520000pt;}
.y1{bottom:1039.840000pt;}
.y54{bottom:1052.960000pt;}
.y53{bottom:1065.760000pt;}
.h12{height:42.063437pt;}
.he{height:43.215000pt;}
.h13{height:56.406250pt;}
.hc{height:56.562187pt;}
.h4{height:58.563750pt;}
.h10{height:62.812500pt;}
.h11{height:63.183438pt;}
.hf{height:63.399375pt;}
.h2{height:64.500000pt;}
.h5{height:65.531250pt;}
.ha{height:73.490625pt;}
.h3{height:75.465000pt;}
.h6{height:76.671562pt;}
.h9{height:83.540625pt;}
.hb{height:84.662813pt;}
.h8{height:96.750000pt;}
.h7{height:98.296875pt;}
.hd{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w5{width:793.760000pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719961pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x12{left:112.031988pt;}
.x1e{left:113.471988pt;}
.x2{left:122.591988pt;}
.x17{left:137.466655pt;}
.x13{left:140.506655pt;}
.x1d{left:141.946655pt;}
.xb{left:159.386655pt;}
.x15{left:170.426655pt;}
.x19{left:173.626655pt;}
.xa{left:175.386655pt;}
.x4{left:176.346655pt;}
.x6{left:188.506655pt;}
.xc{left:195.066655pt;}
.x23{left:206.106655pt;}
.x10{left:228.986655pt;}
.xf{left:250.466655pt;}
.x20{left:259.906655pt;}
.x9{left:261.666655pt;}
.x8{left:265.346655pt;}
.x7{left:307.426655pt;}
.x5{left:311.906655pt;}
.xd{left:317.026655pt;}
.x1c{left:325.666655pt;}
.x14{left:352.546655pt;}
.x3{left:363.586655pt;}
.x1b{left:368.546655pt;}
.x1a{left:383.266655pt;}
.x16{left:394.146655pt;}
.x1{left:405.533321pt;}
.x11{left:419.773321pt;}
.x18{left:439.613322pt;}
.x1f{left:444.413322pt;}
.xe{left:483.453321pt;}
.x22{left:536.573322pt;}
.x21{left:590.813322pt;}
}




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