
    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_009e738a6a1da25afdf92646.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_33ab469e918e0b15d18bb014.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_8fb9471b972ca89c07a749e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_3fde4002f1388e4aecadb4c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_c7b0b16c4d3f3ac3c6ddc590.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_c293a72e62198359ef90c35d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_bd4e0542f1fde95a9e6768f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_3e119280a9aefda8cfc64340.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682129;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_ee10958d107f2acb8e65352d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_4234a8303efbc49a1fe6b1c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_7664d3231f57e5f3b2d4c7ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.869629;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;}
.ls1{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.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:-19.800000px;}
.ws1{word-spacing:-14.916000px;}
.ws0{word-spacing:-13.560000px;}
.ws7{word-spacing:-3.036000px;}
.ws6{word-spacing:-2.772000px;}
.ws5{word-spacing:-2.046000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.660000px;}
.ws9{word-spacing:3.102000px;}
.ws4{word-spacing:15.312000px;}
._15{margin-left:-12.227400px;}
._18{margin-left:-10.612800px;}
._4{margin-left:-9.597600px;}
._3{margin-left:-8.415000px;}
._c{margin-left:-7.155000px;}
._10{margin-left:-5.458200px;}
._0{margin-left:-3.893400px;}
._2{margin-left:-2.554200px;}
._1{margin-left:-1.236600px;}
._9{width:1.447800px;}
._a{width:2.880600px;}
._8{width:4.318200px;}
._7{width:5.434200px;}
._d{width:6.797400px;}
._e{width:8.019600px;}
._f{width:9.230400px;}
._13{width:10.987200px;}
._5{width:12.091200px;}
._b{width:13.270800px;}
._6{width:16.209600px;}
._14{width:17.318400px;}
._11{width:18.678000px;}
._12{width:19.800600px;}
._1a{width:24.545400px;}
._17{width:25.786800px;}
._16{width:26.815800px;}
._19{width:65.472000px;}
.fc5{color:rgb(148,162,187);}
.fc4{color:rgb(104,125,159);}
.fc3{color:rgb(77,104,145);}
.fc2{color:rgb(88,89,91);}
.fc1{color:rgb(32,66,118);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.654550px;}
.y9f{bottom:89.528250px;}
.y44{bottom:90.208950px;}
.y43{bottom:112.714950px;}
.yba{bottom:116.832450px;}
.y70{bottom:117.989250px;}
.ya9{bottom:119.741100px;}
.y90{bottom:122.687100px;}
.yb9{bottom:139.338450px;}
.y6f{bottom:140.495250px;}
.ya8{bottom:142.247100px;}
.y5d{bottom:142.388550px;}
.y8f{bottom:145.193100px;}
.y42{bottom:147.975450px;}
.yb8{bottom:161.844450px;}
.y6e{bottom:163.001250px;}
.ya7{bottom:164.753100px;}
.y5c{bottom:164.894550px;}
.y8e{bottom:167.699100px;}
.y41{bottom:170.481450px;}
.y6d{bottom:185.507250px;}
.ya6{bottom:187.259100px;}
.y5b{bottom:187.400550px;}
.y8d{bottom:190.205100px;}
.yb7{bottom:192.847950px;}
.y40{bottom:192.987450px;}
.y6c{bottom:208.013250px;}
.y5a{bottom:209.906550px;}
.yb6{bottom:215.353950px;}
.y3f{bottom:215.493450px;}
.ya5{bottom:222.514950px;}
.y8c{bottom:225.465600px;}
.y6b{bottom:230.519250px;}
.y59{bottom:232.412550px;}
.y3e{bottom:237.999450px;}
.yb5{bottom:246.357450px;}
.y8b{bottom:247.971600px;}
.y58{bottom:254.918550px;}
.y1c{bottom:257.787450px;}
.y3d{bottom:260.505450px;}
.y6a{bottom:265.779750px;}
.yb4{bottom:268.863450px;}
.y8a{bottom:270.477600px;}
.y57{bottom:277.424550px;}
.y69{bottom:288.285750px;}
.y1b{bottom:288.791400px;}
.yb3{bottom:291.369450px;}
.y89{bottom:292.983600px;}
.y3c{bottom:295.765950px;}
.y68{bottom:310.791750px;}
.y56{bottom:312.685050px;}
.y3b{bottom:318.271950px;}
.yb2{bottom:322.372950px;}
.y88{bottom:328.244100px;}
.y67{bottom:333.297750px;}
.y55{bottom:335.191050px;}
.y1a{bottom:338.232600px;}
.y3a{bottom:340.777950px;}
.yb1{bottom:344.878950px;}
.y87{bottom:350.750100px;}
.y54{bottom:357.697050px;}
.y19{bottom:360.738600px;}
.y39{bottom:363.283950px;}
.y66{bottom:364.301550px;}
.y86{bottom:373.256100px;}
.yb0{bottom:375.882450px;}
.y53{bottom:380.203050px;}
.y18{bottom:383.244600px;}
.y38{bottom:385.789950px;}
.y85{bottom:395.762100px;}
.yaf{bottom:398.388450px;}
.y17{bottom:405.750600px;}
.y65{bottom:413.813400px;}
.y52{bottom:415.458900px;}
.y9e{bottom:419.049000px;}
.yae{bottom:420.894450px;}
.y37{bottom:421.050450px;}
.y16{bottom:428.256600px;}
.y84{bottom:431.022600px;}
.y9d{bottom:441.555000px;}
.yad{bottom:443.400450px;}
.y36{bottom:443.556450px;}
.y83{bottom:453.528600px;}
.y15{bottom:463.517100px;}
.y9c{bottom:464.061000px;}
.y35{bottom:466.062450px;}
.yac{bottom:474.404400px;}
.y82{bottom:476.034600px;}
.y14{bottom:486.023100px;}
.y9b{bottom:486.567000px;}
.y34{bottom:488.568450px;}
.y81{bottom:498.540600px;}
.y13{bottom:508.529100px;}
.y33{bottom:511.074450px;}
.y9a{bottom:517.570950px;}
.ya4{bottom:519.052950px;}
.y80{bottom:521.046600px;}
.yab{bottom:523.828950px;}
.y12{bottom:531.035100px;}
.ya3{bottom:541.558950px;}
.y7f{bottom:543.552600px;}
.y2b{bottom:546.156300px;}
.y32{bottom:546.334950px;}
.y11{bottom:553.541100px;}
.y99{bottom:562.830750px;}
.ya2{bottom:564.064950px;}
.y31{bottom:568.840950px;}
.y7e{bottom:574.556550px;}
.y10{bottom:576.047100px;}
.y2a{bottom:577.160250px;}
.ya1{bottom:586.570950px;}
.y30{bottom:591.346950px;}
.yf{bottom:598.553100px;}
.y64{bottom:601.670250px;}
.y2f{bottom:613.852950px;}
.y7d{bottom:617.353200px;}
.y51{bottom:617.518350px;}
.ye{bottom:621.059100px;}
.ya0{bottom:621.826800px;}
.y63{bottom:624.176250px;}
.y29{bottom:626.607450px;}
.y7c{bottom:639.859200px;}
.y50{bottom:640.024350px;}
.y62{bottom:646.682250px;}
.y28{bottom:649.113450px;}
.yd{bottom:652.063050px;}
.y7b{bottom:662.365200px;}
.y4f{bottom:662.530350px;}
.y61{bottom:669.188250px;}
.y27{bottom:671.619450px;}
.y7a{bottom:684.871200px;}
.y4e{bottom:685.036350px;}
.y60{bottom:691.694250px;}
.y26{bottom:694.125450px;}
.yc1{bottom:695.011650px;}
.yc{bottom:706.904250px;}
.y4d{bottom:707.542350px;}
.y2e{bottom:716.631450px;}
.yc0{bottom:717.517650px;}
.y79{bottom:720.131700px;}
.y5f{bottom:722.698200px;}
.y25{bottom:729.385950px;}
.yb{bottom:735.140550px;}
.y4c{bottom:738.546300px;}
.y2d{bottom:739.137450px;}
.ybf{bottom:740.023650px;}
.y78{bottom:742.637700px;}
.y24{bottom:751.891950px;}
.y98{bottom:756.559350px;}
.ya{bottom:757.646550px;}
.y2c{bottom:761.643450px;}
.y5e{bottom:765.516150px;}
.ybe{bottom:771.027150px;}
.y23{bottom:774.397950px;}
.y77{bottom:777.898200px;}
.y97{bottom:779.065350px;}
.y9{bottom:780.152550px;}
.yaa{bottom:784.149450px;}
.y4b{bottom:788.022150px;}
.ybd{bottom:793.533150px;}
.y22{bottom:796.903950px;}
.y76{bottom:800.404200px;}
.y96{bottom:801.571350px;}
.y8{bottom:809.539050px;}
.y4a{bottom:810.528150px;}
.y21{bottom:819.409950px;}
.y75{bottom:822.910200px;}
.y95{bottom:824.077350px;}
.ybc{bottom:824.536650px;}
.y7{bottom:832.045050px;}
.y49{bottom:833.034150px;}
.y20{bottom:841.915950px;}
.y74{bottom:845.416200px;}
.y94{bottom:846.583350px;}
.ybb{bottom:847.042650px;}
.y48{bottom:855.540150px;}
.y6{bottom:861.412950px;}
.y1f{bottom:864.421950px;}
.y73{bottom:867.922200px;}
.y93{bottom:869.089350px;}
.y47{bottom:878.046150px;}
.y5{bottom:885.420450px;}
.y1e{bottom:886.927950px;}
.y72{bottom:890.428200px;}
.y92{bottom:891.595350px;}
.y46{bottom:900.552150px;}
.y4{bottom:909.427950px;}
.y1d{bottom:917.931900px;}
.y71{bottom:921.432150px;}
.y91{bottom:922.598850px;}
.y45{bottom:923.058150px;}
.y3{bottom:951.189000px;}
.y2{bottom:967.686000px;}
.h2{height:44.534180px;}
.h8{height:47.534180px;}
.h5{height:49.482422px;}
.h4{height:54.430664px;}
.h6{height:60.688477px;}
.h7{height:63.210938px;}
.h3{height:79.013672px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x5{left:96.689700px;}
.xc{left:102.047250px;}
.x6{left:116.624700px;}
.x7{left:119.074650px;}
.x12{left:123.302850px;}
.x4{left:128.639700px;}
.xd{left:153.325350px;}
.x8{left:176.313150px;}
.xb{left:201.705450px;}
.x10{left:204.854850px;}
.xf{left:220.411500px;}
.x11{left:273.757350px;}
.xa{left:278.057400px;}
.x9{left:323.575650px;}
.xe{left:351.153900px;}
.x1{left:354.575100px;}
.x3{left:553.907850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-17.600000pt;}
.ws1{word-spacing:-13.258667pt;}
.ws0{word-spacing:-12.053333pt;}
.ws7{word-spacing:-2.698667pt;}
.ws6{word-spacing:-2.464000pt;}
.ws5{word-spacing:-1.818667pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.586667pt;}
.ws9{word-spacing:2.757333pt;}
.ws4{word-spacing:13.610667pt;}
._15{margin-left:-10.868800pt;}
._18{margin-left:-9.433600pt;}
._4{margin-left:-8.531200pt;}
._3{margin-left:-7.480000pt;}
._c{margin-left:-6.360000pt;}
._10{margin-left:-4.851733pt;}
._0{margin-left:-3.460800pt;}
._2{margin-left:-2.270400pt;}
._1{margin-left:-1.099200pt;}
._9{width:1.286933pt;}
._a{width:2.560533pt;}
._8{width:3.838400pt;}
._7{width:4.830400pt;}
._d{width:6.042133pt;}
._e{width:7.128533pt;}
._f{width:8.204800pt;}
._13{width:9.766400pt;}
._5{width:10.747733pt;}
._b{width:11.796267pt;}
._6{width:14.408533pt;}
._14{width:15.394133pt;}
._11{width:16.602667pt;}
._12{width:17.600533pt;}
._1a{width:21.818133pt;}
._17{width:22.921600pt;}
._16{width:23.836267pt;}
._19{width:58.197333pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.692933pt;}
.y9f{bottom:79.580667pt;}
.y44{bottom:80.185733pt;}
.y43{bottom:100.191067pt;}
.yba{bottom:103.851067pt;}
.y70{bottom:104.879333pt;}
.ya9{bottom:106.436533pt;}
.y90{bottom:109.055200pt;}
.yb9{bottom:123.856400pt;}
.y6f{bottom:124.884667pt;}
.ya8{bottom:126.441867pt;}
.y5d{bottom:126.567600pt;}
.y8f{bottom:129.060533pt;}
.y42{bottom:131.533733pt;}
.yb8{bottom:143.861733pt;}
.y6e{bottom:144.890000pt;}
.ya7{bottom:146.447200pt;}
.y5c{bottom:146.572933pt;}
.y8e{bottom:149.065867pt;}
.y41{bottom:151.539067pt;}
.y6d{bottom:164.895333pt;}
.ya6{bottom:166.452533pt;}
.y5b{bottom:166.578267pt;}
.y8d{bottom:169.071200pt;}
.yb7{bottom:171.420400pt;}
.y40{bottom:171.544400pt;}
.y6c{bottom:184.900667pt;}
.y5a{bottom:186.583600pt;}
.yb6{bottom:191.425733pt;}
.y3f{bottom:191.549733pt;}
.ya5{bottom:197.791067pt;}
.y8c{bottom:200.413867pt;}
.y6b{bottom:204.906000pt;}
.y59{bottom:206.588933pt;}
.y3e{bottom:211.555067pt;}
.yb5{bottom:218.984400pt;}
.y8b{bottom:220.419200pt;}
.y58{bottom:226.594267pt;}
.y1c{bottom:229.144400pt;}
.y3d{bottom:231.560400pt;}
.y6a{bottom:236.248667pt;}
.yb4{bottom:238.989733pt;}
.y8a{bottom:240.424533pt;}
.y57{bottom:246.599600pt;}
.y69{bottom:256.254000pt;}
.y1b{bottom:256.703467pt;}
.yb3{bottom:258.995067pt;}
.y89{bottom:260.429867pt;}
.y3c{bottom:262.903067pt;}
.y68{bottom:276.259333pt;}
.y56{bottom:277.942267pt;}
.y3b{bottom:282.908400pt;}
.yb2{bottom:286.553733pt;}
.y88{bottom:291.772533pt;}
.y67{bottom:296.264667pt;}
.y55{bottom:297.947600pt;}
.y1a{bottom:300.651200pt;}
.y3a{bottom:302.913733pt;}
.yb1{bottom:306.559067pt;}
.y87{bottom:311.777867pt;}
.y54{bottom:317.952933pt;}
.y19{bottom:320.656533pt;}
.y39{bottom:322.919067pt;}
.y66{bottom:323.823600pt;}
.y86{bottom:331.783200pt;}
.yb0{bottom:334.117733pt;}
.y53{bottom:337.958267pt;}
.y18{bottom:340.661867pt;}
.y38{bottom:342.924400pt;}
.y85{bottom:351.788533pt;}
.yaf{bottom:354.123067pt;}
.y17{bottom:360.667200pt;}
.y65{bottom:367.834133pt;}
.y52{bottom:369.296800pt;}
.y9e{bottom:372.488000pt;}
.yae{bottom:374.128400pt;}
.y37{bottom:374.267067pt;}
.y16{bottom:380.672533pt;}
.y84{bottom:383.131200pt;}
.y9d{bottom:392.493333pt;}
.yad{bottom:394.133733pt;}
.y36{bottom:394.272400pt;}
.y83{bottom:403.136533pt;}
.y15{bottom:412.015200pt;}
.y9c{bottom:412.498667pt;}
.y35{bottom:414.277733pt;}
.yac{bottom:421.692800pt;}
.y82{bottom:423.141867pt;}
.y14{bottom:432.020533pt;}
.y9b{bottom:432.504000pt;}
.y34{bottom:434.283067pt;}
.y81{bottom:443.147200pt;}
.y13{bottom:452.025867pt;}
.y33{bottom:454.288400pt;}
.y9a{bottom:460.063067pt;}
.ya4{bottom:461.380400pt;}
.y80{bottom:463.152533pt;}
.yab{bottom:465.625733pt;}
.y12{bottom:472.031200pt;}
.ya3{bottom:481.385733pt;}
.y7f{bottom:483.157867pt;}
.y2b{bottom:485.472267pt;}
.y32{bottom:485.631067pt;}
.y11{bottom:492.036533pt;}
.y99{bottom:500.294000pt;}
.ya2{bottom:501.391067pt;}
.y31{bottom:505.636400pt;}
.y7e{bottom:510.716933pt;}
.y10{bottom:512.041867pt;}
.y2a{bottom:513.031333pt;}
.ya1{bottom:521.396400pt;}
.y30{bottom:525.641733pt;}
.yf{bottom:532.047200pt;}
.y64{bottom:534.818000pt;}
.y2f{bottom:545.647067pt;}
.y7d{bottom:548.758400pt;}
.y51{bottom:548.905200pt;}
.ye{bottom:552.052533pt;}
.ya0{bottom:552.734933pt;}
.y63{bottom:554.823333pt;}
.y29{bottom:556.984400pt;}
.y7c{bottom:568.763733pt;}
.y50{bottom:568.910533pt;}
.y62{bottom:574.828667pt;}
.y28{bottom:576.989733pt;}
.yd{bottom:579.611600pt;}
.y7b{bottom:588.769067pt;}
.y4f{bottom:588.915867pt;}
.y61{bottom:594.834000pt;}
.y27{bottom:596.995067pt;}
.y7a{bottom:608.774400pt;}
.y4e{bottom:608.921200pt;}
.y60{bottom:614.839333pt;}
.y26{bottom:617.000400pt;}
.yc1{bottom:617.788133pt;}
.yc{bottom:628.359333pt;}
.y4d{bottom:628.926533pt;}
.y2e{bottom:637.005733pt;}
.yc0{bottom:637.793467pt;}
.y79{bottom:640.117067pt;}
.y5f{bottom:642.398400pt;}
.y25{bottom:648.343067pt;}
.yb{bottom:653.458267pt;}
.y4c{bottom:656.485600pt;}
.y2d{bottom:657.011067pt;}
.ybf{bottom:657.798800pt;}
.y78{bottom:660.122400pt;}
.y24{bottom:668.348400pt;}
.y98{bottom:672.497200pt;}
.ya{bottom:673.463600pt;}
.y2c{bottom:677.016400pt;}
.y5e{bottom:680.458800pt;}
.ybe{bottom:685.357467pt;}
.y23{bottom:688.353733pt;}
.y77{bottom:691.465067pt;}
.y97{bottom:692.502533pt;}
.y9{bottom:693.468933pt;}
.yaa{bottom:697.021733pt;}
.y4b{bottom:700.464133pt;}
.ybd{bottom:705.362800pt;}
.y22{bottom:708.359067pt;}
.y76{bottom:711.470400pt;}
.y96{bottom:712.507867pt;}
.y8{bottom:719.590267pt;}
.y4a{bottom:720.469467pt;}
.y21{bottom:728.364400pt;}
.y75{bottom:731.475733pt;}
.y95{bottom:732.513200pt;}
.ybc{bottom:732.921467pt;}
.y7{bottom:739.595600pt;}
.y49{bottom:740.474800pt;}
.y20{bottom:748.369733pt;}
.y74{bottom:751.481067pt;}
.y94{bottom:752.518533pt;}
.ybb{bottom:752.926800pt;}
.y48{bottom:760.480133pt;}
.y6{bottom:765.700400pt;}
.y1f{bottom:768.375067pt;}
.y73{bottom:771.486400pt;}
.y93{bottom:772.523867pt;}
.y47{bottom:780.485467pt;}
.y5{bottom:787.040400pt;}
.y1e{bottom:788.380400pt;}
.y72{bottom:791.491733pt;}
.y92{bottom:792.529200pt;}
.y46{bottom:800.490800pt;}
.y4{bottom:808.380400pt;}
.y1d{bottom:815.939467pt;}
.y71{bottom:819.050800pt;}
.y91{bottom:820.087867pt;}
.y45{bottom:820.496133pt;}
.y3{bottom:845.501333pt;}
.y2{bottom:860.165333pt;}
.h2{height:39.585938pt;}
.h8{height:42.252604pt;}
.h5{height:43.984375pt;}
.h4{height:48.382812pt;}
.h6{height:53.945312pt;}
.h7{height:56.187500pt;}
.h3{height:70.234375pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x5{left:85.946400pt;}
.xc{left:90.708667pt;}
.x6{left:103.666400pt;}
.x7{left:105.844133pt;}
.x12{left:109.602533pt;}
.x4{left:114.346400pt;}
.xd{left:136.289200pt;}
.x8{left:156.722800pt;}
.xb{left:179.293733pt;}
.x10{left:182.093200pt;}
.xf{left:195.921333pt;}
.x11{left:243.339867pt;}
.xa{left:247.162133pt;}
.x9{left:287.622800pt;}
.xe{left:312.136800pt;}
.x1{left:315.177867pt;}
.x3{left:492.362533pt;}
}




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