
    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_a43d45a0f1c7d24d45ecac91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_a728d916e44d10b2da8e4d34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946777;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_33f8d344b36acca815f3b29b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_011153b767d2766c5b80d349.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_3fa53b3bc5d16b8deb58d44c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.576000px;}
.ls4{letter-spacing:44.981280px;}
.ls0{letter-spacing:64.397280px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-4.404960px;}
._9{margin-left:-2.520000px;}
._0{margin-left:-1.481280px;}
._1{width:1.827360px;}
._e{width:2.924640px;}
._c{width:4.104000px;}
._d{width:5.129280px;}
._8{width:6.336000px;}
._11{width:7.488000px;}
._f{width:8.526720px;}
._7{width:10.265280px;}
._6{width:11.448000px;}
._3{width:12.888000px;}
._5{width:14.040000px;}
._4{width:15.768000px;}
._1c{width:16.824480px;}
._a{width:19.008000px;}
._b{width:20.016000px;}
._20{width:21.432000px;}
._17{width:22.752000px;}
._10{width:24.768000px;}
._1b{width:25.848000px;}
._14{width:28.080000px;}
._19{width:29.880000px;}
._1a{width:30.955200px;}
._15{width:32.040000px;}
._16{width:33.048000px;}
._13{width:34.282560px;}
._12{width:35.496000px;}
._18{width:36.541920px;}
._1d{width:49.872000px;}
._1e{width:54.903840px;}
._1f{width:56.192160px;}
._21{width:387.432000px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:76.176000px;}
.y3{bottom:96.516000px;}
.y2{bottom:115.596000px;}
.y1{bottom:134.496000px;}
.y90{bottom:155.910000px;}
.y87{bottom:157.170000px;}
.y2f{bottom:158.250000px;}
.yad{bottom:162.210000px;}
.ycf{bottom:170.670000px;}
.y75{bottom:178.950000px;}
.y79{bottom:183.630000px;}
.y8f{bottom:187.050000px;}
.y86{bottom:188.130000px;}
.yac{bottom:188.850000px;}
.y2e{bottom:189.210000px;}
.yce{bottom:191.370000px;}
.y74{bottom:209.910000px;}
.ycd{bottom:212.070000px;}
.y61{bottom:214.770000px;}
.yab{bottom:215.670000px;}
.y8e{bottom:218.010000px;}
.y85{bottom:219.270000px;}
.y2d{bottom:220.350000px;}
.ycc{bottom:239.250000px;}
.y73{bottom:241.050000px;}
.yaa{bottom:242.310000px;}
.y60{bottom:245.730000px;}
.y8d{bottom:249.150000px;}
.y84{bottom:250.230000px;}
.y2c{bottom:251.310000px;}
.ya9{bottom:268.950000px;}
.ycb{bottom:271.830000px;}
.y72{bottom:272.010000px;}
.y5f{bottom:276.870000px;}
.y2b{bottom:278.670000px;}
.y8c{bottom:280.110000px;}
.y83{bottom:281.370000px;}
.y43{bottom:282.450000px;}
.ya8{bottom:295.770000px;}
.yca{bottom:302.970000px;}
.y71{bottom:303.150000px;}
.y5e{bottom:307.830000px;}
.y2a{bottom:311.250000px;}
.y82{bottom:312.330000px;}
.y42{bottom:313.410000px;}
.ya7{bottom:322.410000px;}
.y29{bottom:331.950000px;}
.yc9{bottom:333.930000px;}
.y70{bottom:334.110000px;}
.y5d{bottom:339.015000px;}
.y8b{bottom:342.255000px;}
.y81{bottom:343.515000px;}
.y41{bottom:344.595000px;}
.ya6{bottom:349.095000px;}
.y28{bottom:352.695000px;}
.yc8{bottom:365.115000px;}
.y6f{bottom:365.295000px;}
.y5c{bottom:369.975000px;}
.y27{bottom:373.395000px;}
.y80{bottom:374.475000px;}
.y40{bottom:375.555000px;}
.ya5{bottom:375.915000px;}
.y26{bottom:394.095000px;}
.yc7{bottom:396.075000px;}
.y6e{bottom:396.255000px;}
.y5b{bottom:401.115000px;}
.ya4{bottom:402.555000px;}
.y8a{bottom:404.355000px;}
.y7f{bottom:405.615000px;}
.y3f{bottom:406.695000px;}
.y25{bottom:414.795000px;}
.yc6{bottom:427.215000px;}
.y6d{bottom:427.395000px;}
.ya3{bottom:429.195000px;}
.y5a{bottom:432.075000px;}
.y24{bottom:435.495000px;}
.y7e{bottom:436.575000px;}
.y3e{bottom:437.655000px;}
.ya2{bottom:456.015000px;}
.y23{bottom:456.195000px;}
.yc5{bottom:458.175000px;}
.y6c{bottom:458.355000px;}
.y59{bottom:463.215000px;}
.y89{bottom:466.455000px;}
.y7d{bottom:467.715000px;}
.y3d{bottom:468.795000px;}
.y22{bottom:476.895000px;}
.ya1{bottom:482.655000px;}
.y91{bottom:485.715000px;}
.yc4{bottom:489.315000px;}
.y6b{bottom:489.495000px;}
.y58{bottom:494.175000px;}
.y21{bottom:497.595000px;}
.y7c{bottom:498.675000px;}
.y3c{bottom:499.755000px;}
.ya0{bottom:509.295000px;}
.y20{bottom:518.295000px;}
.yc3{bottom:520.275000px;}
.y6a{bottom:520.455000px;}
.y57{bottom:525.315000px;}
.y3b{bottom:526.935000px;}
.y88{bottom:528.555000px;}
.y7b{bottom:529.815000px;}
.y9f{bottom:536.115000px;}
.y1f{bottom:538.995000px;}
.yc2{bottom:551.415000px;}
.y69{bottom:551.595000px;}
.y56{bottom:556.275000px;}
.y7a{bottom:556.995000px;}
.y1e{bottom:559.695000px;}
.y9e{bottom:562.755000px;}
.yc1{bottom:578.595000px;}
.y1d{bottom:580.395000px;}
.y68{bottom:582.555000px;}
.y55{bottom:587.415000px;}
.y9d{bottom:589.395000px;}
.y3a{bottom:590.655000px;}
.ydb{bottom:591.015000px;}
.y1c{bottom:601.095000px;}
.yc0{bottom:611.205000px;}
.y67{bottom:613.545000px;}
.yda{bottom:614.805000px;}
.y9c{bottom:616.245000px;}
.y54{bottom:618.405000px;}
.y1b{bottom:621.645000px;}
.yd9{bottom:634.785000px;}
.ybf{bottom:637.845000px;}
.y1a{bottom:642.345000px;}
.y9b{bottom:642.885000px;}
.y66{bottom:644.685000px;}
.y53{bottom:649.545000px;}
.y39{bottom:652.785000px;}
.y19{bottom:663.045000px;}
.ybe{bottom:664.665000px;}
.y9a{bottom:669.525000px;}
.yd8{bottom:673.485000px;}
.y65{bottom:675.645000px;}
.y52{bottom:680.505000px;}
.y18{bottom:683.745000px;}
.ybd{bottom:691.305000px;}
.yd7{bottom:694.185000px;}
.y99{bottom:696.345000px;}
.y17{bottom:704.445000px;}
.y64{bottom:706.785000px;}
.y51{bottom:711.645000px;}
.y38{bottom:714.885000px;}
.ybc{bottom:717.945000px;}
.y98{bottom:722.985000px;}
.y16{bottom:725.145000px;}
.y63{bottom:737.745000px;}
.y50{bottom:742.605000px;}
.ybb{bottom:744.765000px;}
.y15{bottom:745.845000px;}
.y97{bottom:749.625000px;}
.y62{bottom:765.105000px;}
.y14{bottom:766.545000px;}
.yba{bottom:771.405000px;}
.y4f{bottom:773.745000px;}
.y96{bottom:776.445000px;}
.y37{bottom:776.985000px;}
.y13{bottom:787.245000px;}
.yb9{bottom:798.045000px;}
.y95{bottom:803.085000px;}
.y4e{bottom:804.705000px;}
.y12{bottom:807.945000px;}
.yd6{bottom:818.385000px;}
.yb8{bottom:824.865000px;}
.y11{bottom:828.645000px;}
.y94{bottom:829.725000px;}
.y4d{bottom:835.845000px;}
.y36{bottom:839.085000px;}
.y10{bottom:849.345000px;}
.yb7{bottom:851.505000px;}
.y93{bottom:856.365000px;}
.yd5{bottom:859.785000px;}
.y4c{bottom:866.805000px;}
.yf{bottom:870.045000px;}
.yb6{bottom:878.190000px;}
.ye{bottom:890.790000px;}
.y78{bottom:894.210000px;}
.y92{bottom:895.110000px;}
.y4b{bottom:897.990000px;}
.y35{bottom:901.230000px;}
.yb5{bottom:905.010000px;}
.yd{bottom:911.490000px;}
.y77{bottom:918.330000px;}
.y4a{bottom:928.950000px;}
.yb4{bottom:931.650000px;}
.yc{bottom:932.190000px;}
.y76{bottom:951.450000px;}
.yd4{bottom:952.890000px;}
.yb{bottom:954.330000px;}
.yb3{bottom:958.290000px;}
.y49{bottom:959.910000px;}
.y34{bottom:963.330000px;}
.ya{bottom:981.870000px;}
.yd3{bottom:984.030000px;}
.yb2{bottom:985.110000px;}
.y48{bottom:991.050000px;}
.y33{bottom:994.290000px;}
.yd2{bottom:1004.730000px;}
.y9{bottom:1009.410000px;}
.yb1{bottom:1011.750000px;}
.y47{bottom:1022.010000px;}
.y32{bottom:1025.430000px;}
.y8{bottom:1037.130000px;}
.yb0{bottom:1038.390000px;}
.yd1{bottom:1046.130000px;}
.y46{bottom:1049.370000px;}
.y31{bottom:1056.390000px;}
.y7{bottom:1064.670000px;}
.yaf{bottom:1065.210000px;}
.yd0{bottom:1066.830000px;}
.y45{bottom:1082.490000px;}
.y30{bottom:1087.530000px;}
.yae{bottom:1091.850000px;}
.y6{bottom:1092.210000px;}
.y44{bottom:1115.610000px;}
.y5{bottom:1118.490000px;}
.h4{height:52.628906px;}
.h9{height:53.573906px;}
.h2{height:59.383125px;}
.h3{height:64.546875px;}
.h6{height:64.853086px;}
.h7{height:74.820586px;}
.h8{height:75.519844px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x2{left:170.129987px;}
.x5{left:174.089987px;}
.x9{left:178.589987px;}
.xa{left:243.749987px;}
.x8{left:248.789987px;}
.xb{left:251.849987px;}
.x7{left:334.154987px;}
.x6{left:391.034987px;}
.x3{left:467.924987px;}
.x4{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls4{letter-spacing:39.983360pt;}
.ls0{letter-spacing:57.242027pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-3.915520pt;}
._9{margin-left:-2.240000pt;}
._0{margin-left:-1.316693pt;}
._1{width:1.624320pt;}
._e{width:2.599680pt;}
._c{width:3.648000pt;}
._d{width:4.559360pt;}
._8{width:5.632000pt;}
._11{width:6.656000pt;}
._f{width:7.579307pt;}
._7{width:9.124693pt;}
._6{width:10.176000pt;}
._3{width:11.456000pt;}
._5{width:12.480000pt;}
._4{width:14.016000pt;}
._1c{width:14.955093pt;}
._a{width:16.896000pt;}
._b{width:17.792000pt;}
._20{width:19.050667pt;}
._17{width:20.224000pt;}
._10{width:22.016000pt;}
._1b{width:22.976000pt;}
._14{width:24.960000pt;}
._19{width:26.560000pt;}
._1a{width:27.515733pt;}
._15{width:28.480000pt;}
._16{width:29.376000pt;}
._13{width:30.473387pt;}
._12{width:31.552000pt;}
._18{width:32.481707pt;}
._1d{width:44.330667pt;}
._1e{width:48.803413pt;}
._1f{width:49.948587pt;}
._21{width:344.384000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:67.712000pt;}
.y3{bottom:85.792000pt;}
.y2{bottom:102.752000pt;}
.y1{bottom:119.552000pt;}
.y90{bottom:138.586667pt;}
.y87{bottom:139.706667pt;}
.y2f{bottom:140.666667pt;}
.yad{bottom:144.186667pt;}
.ycf{bottom:151.706667pt;}
.y75{bottom:159.066667pt;}
.y79{bottom:163.226667pt;}
.y8f{bottom:166.266667pt;}
.y86{bottom:167.226667pt;}
.yac{bottom:167.866667pt;}
.y2e{bottom:168.186667pt;}
.yce{bottom:170.106667pt;}
.y74{bottom:186.586667pt;}
.ycd{bottom:188.506667pt;}
.y61{bottom:190.906667pt;}
.yab{bottom:191.706667pt;}
.y8e{bottom:193.786667pt;}
.y85{bottom:194.906667pt;}
.y2d{bottom:195.866667pt;}
.ycc{bottom:212.666667pt;}
.y73{bottom:214.266667pt;}
.yaa{bottom:215.386667pt;}
.y60{bottom:218.426667pt;}
.y8d{bottom:221.466667pt;}
.y84{bottom:222.426667pt;}
.y2c{bottom:223.386667pt;}
.ya9{bottom:239.066667pt;}
.ycb{bottom:241.626667pt;}
.y72{bottom:241.786667pt;}
.y5f{bottom:246.106667pt;}
.y2b{bottom:247.706667pt;}
.y8c{bottom:248.986667pt;}
.y83{bottom:250.106667pt;}
.y43{bottom:251.066667pt;}
.ya8{bottom:262.906667pt;}
.yca{bottom:269.306667pt;}
.y71{bottom:269.466667pt;}
.y5e{bottom:273.626667pt;}
.y2a{bottom:276.666667pt;}
.y82{bottom:277.626667pt;}
.y42{bottom:278.586667pt;}
.ya7{bottom:286.586667pt;}
.y29{bottom:295.066667pt;}
.yc9{bottom:296.826667pt;}
.y70{bottom:296.986667pt;}
.y5d{bottom:301.346667pt;}
.y8b{bottom:304.226667pt;}
.y81{bottom:305.346667pt;}
.y41{bottom:306.306667pt;}
.ya6{bottom:310.306667pt;}
.y28{bottom:313.506667pt;}
.yc8{bottom:324.546667pt;}
.y6f{bottom:324.706667pt;}
.y5c{bottom:328.866667pt;}
.y27{bottom:331.906667pt;}
.y80{bottom:332.866667pt;}
.y40{bottom:333.826667pt;}
.ya5{bottom:334.146667pt;}
.y26{bottom:350.306667pt;}
.yc7{bottom:352.066667pt;}
.y6e{bottom:352.226667pt;}
.y5b{bottom:356.546667pt;}
.ya4{bottom:357.826667pt;}
.y8a{bottom:359.426667pt;}
.y7f{bottom:360.546667pt;}
.y3f{bottom:361.506667pt;}
.y25{bottom:368.706667pt;}
.yc6{bottom:379.746667pt;}
.y6d{bottom:379.906667pt;}
.ya3{bottom:381.506667pt;}
.y5a{bottom:384.066667pt;}
.y24{bottom:387.106667pt;}
.y7e{bottom:388.066667pt;}
.y3e{bottom:389.026667pt;}
.ya2{bottom:405.346667pt;}
.y23{bottom:405.506667pt;}
.yc5{bottom:407.266667pt;}
.y6c{bottom:407.426667pt;}
.y59{bottom:411.746667pt;}
.y89{bottom:414.626667pt;}
.y7d{bottom:415.746667pt;}
.y3d{bottom:416.706667pt;}
.y22{bottom:423.906667pt;}
.ya1{bottom:429.026667pt;}
.y91{bottom:431.746667pt;}
.yc4{bottom:434.946667pt;}
.y6b{bottom:435.106667pt;}
.y58{bottom:439.266667pt;}
.y21{bottom:442.306667pt;}
.y7c{bottom:443.266667pt;}
.y3c{bottom:444.226667pt;}
.ya0{bottom:452.706667pt;}
.y20{bottom:460.706667pt;}
.yc3{bottom:462.466667pt;}
.y6a{bottom:462.626667pt;}
.y57{bottom:466.946667pt;}
.y3b{bottom:468.386667pt;}
.y88{bottom:469.826667pt;}
.y7b{bottom:470.946667pt;}
.y9f{bottom:476.546667pt;}
.y1f{bottom:479.106667pt;}
.yc2{bottom:490.146667pt;}
.y69{bottom:490.306667pt;}
.y56{bottom:494.466667pt;}
.y7a{bottom:495.106667pt;}
.y1e{bottom:497.506667pt;}
.y9e{bottom:500.226667pt;}
.yc1{bottom:514.306667pt;}
.y1d{bottom:515.906667pt;}
.y68{bottom:517.826667pt;}
.y55{bottom:522.146667pt;}
.y9d{bottom:523.906667pt;}
.y3a{bottom:525.026667pt;}
.ydb{bottom:525.346667pt;}
.y1c{bottom:534.306667pt;}
.yc0{bottom:543.293333pt;}
.y67{bottom:545.373333pt;}
.yda{bottom:546.493333pt;}
.y9c{bottom:547.773333pt;}
.y54{bottom:549.693333pt;}
.y1b{bottom:552.573333pt;}
.yd9{bottom:564.253333pt;}
.ybf{bottom:566.973333pt;}
.y1a{bottom:570.973333pt;}
.y9b{bottom:571.453333pt;}
.y66{bottom:573.053333pt;}
.y53{bottom:577.373333pt;}
.y39{bottom:580.253333pt;}
.y19{bottom:589.373333pt;}
.ybe{bottom:590.813333pt;}
.y9a{bottom:595.133333pt;}
.yd8{bottom:598.653333pt;}
.y65{bottom:600.573333pt;}
.y52{bottom:604.893333pt;}
.y18{bottom:607.773333pt;}
.ybd{bottom:614.493333pt;}
.yd7{bottom:617.053333pt;}
.y99{bottom:618.973333pt;}
.y17{bottom:626.173333pt;}
.y64{bottom:628.253333pt;}
.y51{bottom:632.573333pt;}
.y38{bottom:635.453333pt;}
.ybc{bottom:638.173333pt;}
.y98{bottom:642.653333pt;}
.y16{bottom:644.573333pt;}
.y63{bottom:655.773333pt;}
.y50{bottom:660.093333pt;}
.ybb{bottom:662.013333pt;}
.y15{bottom:662.973333pt;}
.y97{bottom:666.333333pt;}
.y62{bottom:680.093333pt;}
.y14{bottom:681.373333pt;}
.yba{bottom:685.693333pt;}
.y4f{bottom:687.773333pt;}
.y96{bottom:690.173333pt;}
.y37{bottom:690.653333pt;}
.y13{bottom:699.773333pt;}
.yb9{bottom:709.373333pt;}
.y95{bottom:713.853333pt;}
.y4e{bottom:715.293333pt;}
.y12{bottom:718.173333pt;}
.yd6{bottom:727.453333pt;}
.yb8{bottom:733.213333pt;}
.y11{bottom:736.573333pt;}
.y94{bottom:737.533333pt;}
.y4d{bottom:742.973333pt;}
.y36{bottom:745.853333pt;}
.y10{bottom:754.973333pt;}
.yb7{bottom:756.893333pt;}
.y93{bottom:761.213333pt;}
.yd5{bottom:764.253333pt;}
.y4c{bottom:770.493333pt;}
.yf{bottom:773.373333pt;}
.yb6{bottom:780.613333pt;}
.ye{bottom:791.813333pt;}
.y78{bottom:794.853333pt;}
.y92{bottom:795.653333pt;}
.y4b{bottom:798.213333pt;}
.y35{bottom:801.093333pt;}
.yb5{bottom:804.453333pt;}
.yd{bottom:810.213333pt;}
.y77{bottom:816.293333pt;}
.y4a{bottom:825.733333pt;}
.yb4{bottom:828.133333pt;}
.yc{bottom:828.613333pt;}
.y76{bottom:845.733333pt;}
.yd4{bottom:847.013333pt;}
.yb{bottom:848.293333pt;}
.yb3{bottom:851.813333pt;}
.y49{bottom:853.253333pt;}
.y34{bottom:856.293333pt;}
.ya{bottom:872.773333pt;}
.yd3{bottom:874.693333pt;}
.yb2{bottom:875.653333pt;}
.y48{bottom:880.933333pt;}
.y33{bottom:883.813333pt;}
.yd2{bottom:893.093333pt;}
.y9{bottom:897.253333pt;}
.yb1{bottom:899.333333pt;}
.y47{bottom:908.453333pt;}
.y32{bottom:911.493333pt;}
.y8{bottom:921.893333pt;}
.yb0{bottom:923.013333pt;}
.yd1{bottom:929.893333pt;}
.y46{bottom:932.773333pt;}
.y31{bottom:939.013333pt;}
.y7{bottom:946.373333pt;}
.yaf{bottom:946.853333pt;}
.yd0{bottom:948.293333pt;}
.y45{bottom:962.213333pt;}
.y30{bottom:966.693333pt;}
.yae{bottom:970.533333pt;}
.y6{bottom:970.853333pt;}
.y44{bottom:991.653333pt;}
.y5{bottom:994.213333pt;}
.h4{height:46.781250pt;}
.h9{height:47.621250pt;}
.h2{height:52.785000pt;}
.h3{height:57.375000pt;}
.h6{height:57.647187pt;}
.h7{height:66.507188pt;}
.h8{height:67.128750pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x2{left:151.226655pt;}
.x5{left:154.746655pt;}
.x9{left:158.746655pt;}
.xa{left:216.666655pt;}
.x8{left:221.146655pt;}
.xb{left:223.866655pt;}
.x7{left:297.026655pt;}
.x6{left:347.586655pt;}
.x3{left:415.933322pt;}
.x4{left:718.373322pt;}
}




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