
    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_c27d590c47bd5c9928eedc65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_20bd12967bcaaf0563e169cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_3e2b59ef49e1526cc9e35769.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_90dd656e0173ab862fdbdf58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_2a2fa7fe51afacb884bc5b00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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;}
.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;}
}
.ws1c{word-spacing:-55.944000px;}
.ws62{word-spacing:-38.882400px;}
.ws7d{word-spacing:-38.865300px;}
.wsb{word-spacing:-38.781300px;}
.ws2f{word-spacing:-38.670000px;}
.ws3a{word-spacing:-38.659200px;}
.ws6{word-spacing:-38.657700px;}
.ws2a{word-spacing:-38.655900px;}
.ws44{word-spacing:-38.653200px;}
.wsc{word-spacing:-38.652300px;}
.ws5a{word-spacing:-38.651400px;}
.ws5{word-spacing:-38.647800px;}
.ws1b{word-spacing:-38.645400px;}
.ws3f{word-spacing:-38.640600px;}
.ws64{word-spacing:-38.640000px;}
.ws6a{word-spacing:-38.433000px;}
.ws3{word-spacing:-38.374200px;}
.ws6e{word-spacing:-38.359800px;}
.ws18{word-spacing:-38.166000px;}
.ws67{word-spacing:-38.160000px;}
.ws6c{word-spacing:-38.154600px;}
.ws41{word-spacing:-38.152200px;}
.ws49{word-spacing:-38.149200px;}
.ws5e{word-spacing:-38.145300px;}
.ws29{word-spacing:-38.145000px;}
.ws23{word-spacing:-38.142000px;}
.ws7e{word-spacing:-38.138700px;}
.wsa{word-spacing:-38.087700px;}
.ws0{word-spacing:-37.944000px;}
.ws6f{word-spacing:-37.943100px;}
.ws39{word-spacing:-37.941300px;}
.ws4{word-spacing:-37.938600px;}
.ws65{word-spacing:-37.933800px;}
.ws70{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.ws4c{word-spacing:-37.927800px;}
.ws9{word-spacing:-37.869300px;}
.ws59{word-spacing:-37.726800px;}
.wsd{word-spacing:-37.714800px;}
.ws63{word-spacing:-37.423800px;}
.ws40{word-spacing:-37.214100px;}
.ws35{word-spacing:-37.204200px;}
.ws4f{word-spacing:-36.991800px;}
.ws8c{word-spacing:-36.488700px;}
.ws57{word-spacing:-36.478800px;}
.ws38{word-spacing:-36.280800px;}
.ws8d{word-spacing:-35.982000px;}
.ws3e{word-spacing:-35.786400px;}
.ws88{word-spacing:-35.784000px;}
.ws51{word-spacing:-35.782200px;}
.ws28{word-spacing:-35.764800px;}
.ws89{word-spacing:-35.708400px;}
.ws46{word-spacing:-35.271000px;}
.ws3c{word-spacing:-35.054700px;}
.ws55{word-spacing:-33.621300px;}
.ws1a{word-spacing:-33.606000px;}
.ws8{word-spacing:-33.547800px;}
.ws53{word-spacing:-33.117900px;}
.ws19{word-spacing:-33.112800px;}
.ws4a{word-spacing:-33.102900px;}
.ws2b{word-spacing:-32.396400px;}
.ws1e{word-spacing:-31.449600px;}
.ws78{word-spacing:-31.215000px;}
.ws5b{word-spacing:-30.943800px;}
.ws77{word-spacing:-30.742200px;}
.ws84{word-spacing:-30.741900px;}
.ws31{word-spacing:-30.735000px;}
.ws85{word-spacing:-30.225600px;}
.ws5f{word-spacing:-30.004200px;}
.ws54{word-spacing:-29.511600px;}
.ws4b{word-spacing:-29.291400px;}
.ws43{word-spacing:-28.584000px;}
.ws48{word-spacing:-28.080000px;}
.ws90{word-spacing:-27.869100px;}
.ws69{word-spacing:-27.862200px;}
.ws91{word-spacing:-27.642000px;}
.ws17{word-spacing:-27.351000px;}
.ws26{word-spacing:-27.133200px;}
.ws80{word-spacing:-26.430000px;}
.ws7f{word-spacing:-26.423100px;}
.ws50{word-spacing:-24.977700px;}
.ws76{word-spacing:-24.480000px;}
.ws75{word-spacing:-24.459300px;}
.ws21{word-spacing:-24.253200px;}
.ws83{word-spacing:-23.549100px;}
.ws37{word-spacing:-23.544000px;}
.ws5d{word-spacing:-23.531400px;}
.ws4e{word-spacing:-23.321400px;}
.ws58{word-spacing:-22.821300px;}
.ws25{word-spacing:-21.879000px;}
.ws32{word-spacing:-21.382800px;}
.ws61{word-spacing:-21.161400px;}
.ws66{word-spacing:-20.869200px;}
.ws45{word-spacing:-20.430000px;}
.ws13{word-spacing:-19.948200px;}
.ws74{word-spacing:-19.944000px;}
.ws73{word-spacing:-19.943100px;}
.ws15{word-spacing:-19.931400px;}
.ws1d{word-spacing:-19.928400px;}
.ws47{word-spacing:-19.213200px;}
.ws20{word-spacing:-18.714600px;}
.ws10{word-spacing:-18.495000px;}
.ws7{word-spacing:-18.472500px;}
.ws60{word-spacing:-17.570400px;}
.ws27{word-spacing:-17.058600px;}
.ws6d{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.335600px;}
.ws11{word-spacing:-16.331400px;}
.ws24{word-spacing:-16.108200px;}
.ws33{word-spacing:-13.462200px;}
.ws14{word-spacing:-12.966000px;}
.ws2c{word-spacing:-12.017400px;}
.ws52{word-spacing:-11.514600px;}
.ws3b{word-spacing:-11.494800px;}
.ws2e{word-spacing:-10.361400px;}
.ws56{word-spacing:-8.913600px;}
.ws68{word-spacing:-8.411400px;}
.ws22{word-spacing:-7.693800px;}
.ws92{word-spacing:-7.200000px;}
.ws7c{word-spacing:-7.182000px;}
.ws7b{word-spacing:-6.983100px;}
.ws1f{word-spacing:-6.258000px;}
.ws2d{word-spacing:-6.247800px;}
.ws42{word-spacing:-6.035400px;}
.ws8b{word-spacing:-5.766000px;}
.ws8a{word-spacing:-5.544000px;}
.ws3d{word-spacing:-4.314600px;}
.ws30{word-spacing:-2.657400px;}
.ws6b{word-spacing:-1.942200px;}
.ws12{word-spacing:0.228600px;}
.ws4d{word-spacing:1.153200px;}
.ws81{word-spacing:1.443000px;}
.ws82{word-spacing:1.650000px;}
.ws7a{word-spacing:3.615300px;}
.ws79{word-spacing:3.832200px;}
.ws34{word-spacing:8.138700px;}
.wsf{word-spacing:21.324600px;}
.wse{word-spacing:21.600000px;}
.ws36{word-spacing:24.491700px;}
.ws5c{word-spacing:44.147700px;}
.ws8e{word-spacing:85.915800px;}
.ws8f{word-spacing:86.617200px;}
.ws86{word-spacing:103.686300px;}
.ws87{word-spacing:104.617200px;}
.ws71{word-spacing:106.795800px;}
.ws72{word-spacing:107.503200px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._22{width:17.479800px;}
._4{width:18.775800px;}
._19{width:19.815600px;}
._10{width:21.364800px;}
._17{width:22.587600px;}
._b{width:23.961600px;}
._c{width:25.689600px;}
._1f{width:27.495600px;}
._1a{width:28.500000px;}
._a{width:29.719800px;}
._26{width:31.044600px;}
._1e{width:32.171400px;}
._16{width:33.618000px;}
._1d{width:34.626600px;}
._1{width:36.000000px;}
._8{width:37.078200px;}
._1b{width:38.653200px;}
._f{width:39.955800px;}
._6{width:41.021400px;}
._9{width:44.352000px;}
._11{width:45.357000px;}
._12{width:46.781400px;}
._20{width:48.139200px;}
._e{width:49.491000px;}
._d{width:50.764800px;}
._18{width:53.064600px;}
._13{width:54.490800px;}
._7{width:57.895200px;}
._1c{width:59.326800px;}
._25{width:60.952200px;}
._14{width:65.517300px;}
._5{width:78.467400px;}
._15{width:81.564300px;}
._21{width:101.928600px;}
._29{width:122.400000px;}
._28{width:143.332200px;}
._23{width:158.400000px;}
._27{width:160.990200px;}
._24{width:163.832400px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.750000px;}
.y5e{bottom:3.780000px;}
.y3a{bottom:3.840000px;}
.y3e{bottom:3.871500px;}
.y40{bottom:3.900000px;}
.y7{bottom:4.471500px;}
.y44{bottom:4.605000px;}
.y60{bottom:4.636500px;}
.y3c{bottom:14.280000px;}
.y5a{bottom:14.340000px;}
.y38{bottom:24.540000px;}
.y58{bottom:24.600000px;}
.y3b{bottom:34.980000px;}
.y59{bottom:35.040000px;}
.y39{bottom:45.240000px;}
.y5b{bottom:45.300000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2f{bottom:100.875000px;}
.y52{bottom:116.896500px;}
.y2e{bottom:121.575000px;}
.y51{bottom:137.596500px;}
.y66{bottom:158.475000px;}
.y2d{bottom:163.336500px;}
.y50{bottom:179.175000px;}
.y2c{bottom:184.036500px;}
.y87{bottom:185.475000px;}
.y4f{bottom:199.875000px;}
.y65{bottom:200.055000px;}
.y2b{bottom:204.736500px;}
.y86{bottom:206.175000px;}
.y4e{bottom:220.575000px;}
.y2a{bottom:225.436500px;}
.y85{bottom:226.875000px;}
.y4d{bottom:241.275000px;}
.y29{bottom:246.136500px;}
.y84{bottom:247.575000px;}
.y83{bottom:268.275000px;}
.y4c{bottom:283.036500px;}
.y64{bottom:283.575000px;}
.y28{bottom:287.896500px;}
.y82{bottom:288.975000px;}
.y4b{bottom:303.736500px;}
.y63{bottom:304.275000px;}
.y81{bottom:309.675000px;}
.y4a{bottom:324.436500px;}
.y62{bottom:324.975000px;}
.y27{bottom:329.475000px;}
.y80{bottom:330.375000px;}
.y49{bottom:345.136500px;}
.y61{bottom:345.675000px;}
.y26{bottom:350.175000px;}
.y7f{bottom:351.075000px;}
.y48{bottom:365.836500px;}
.y25{bottom:370.875000px;}
.y7e{bottom:371.775000px;}
.y24{bottom:391.575000px;}
.y7d{bottom:392.475000px;}
.y47{bottom:407.596500px;}
.y23{bottom:412.275000px;}
.y7c{bottom:413.175000px;}
.y5f{bottom:425.100000px;}
.y46{bottom:428.295000px;}
.y22{bottom:432.975000px;}
.y7b{bottom:433.875000px;}
.y5d{bottom:447.375000px;}
.y45{bottom:448.996500px;}
.y7a{bottom:454.575000px;}
.y5c{bottom:468.825000px;}
.y21{bottom:474.736500px;}
.y79{bottom:475.275000px;}
.y57{bottom:490.275000px;}
.y20{bottom:495.436500px;}
.y78{bottom:495.975000px;}
.y1f{bottom:516.136500px;}
.y77{bottom:516.675000px;}
.y43{bottom:528.450000px;}
.y1e{bottom:536.836500px;}
.y76{bottom:537.375000px;}
.y41{bottom:550.725000px;}
.y1d{bottom:557.536500px;}
.y75{bottom:558.075000px;}
.y3f{bottom:572.175000px;}
.y56{bottom:577.875000px;}
.y1c{bottom:578.236500px;}
.y74{bottom:578.775000px;}
.y3d{bottom:593.625000px;}
.y1b{bottom:598.936500px;}
.y73{bottom:599.475000px;}
.y37{bottom:615.075000px;}
.y1a{bottom:619.636500px;}
.y72{bottom:620.175000px;}
.y71{bottom:640.875000px;}
.y19{bottom:661.396500px;}
.y70{bottom:661.575000px;}
.y55{bottom:682.096500px;}
.y6f{bottom:682.275000px;}
.y36{bottom:702.795000px;}
.y18{bottom:702.975000px;}
.y54{bottom:723.496500px;}
.y17{bottom:723.675000px;}
.y35{bottom:744.375000px;}
.y53{bottom:765.075000px;}
.y16{bottom:765.436500px;}
.y15{bottom:786.136500px;}
.y14{bottom:806.836500px;}
.y13{bottom:827.536500px;}
.y12{bottom:848.236500px;}
.y11{bottom:868.936500px;}
.y6e{bottom:869.475000px;}
.y10{bottom:889.636500px;}
.y6d{bottom:890.175000px;}
.yf{bottom:910.336500px;}
.y34{bottom:910.695000px;}
.y6c{bottom:910.875000px;}
.ye{bottom:931.036500px;}
.y33{bottom:931.395000px;}
.y6b{bottom:931.575000px;}
.yd{bottom:951.736500px;}
.y32{bottom:952.095000px;}
.y6a{bottom:952.275000px;}
.y31{bottom:972.795000px;}
.y69{bottom:972.975000px;}
.yc{bottom:993.495000px;}
.y68{bottom:993.675000px;}
.yb{bottom:1014.195000px;}
.y67{bottom:1014.375000px;}
.y30{bottom:1035.075000px;}
.ya{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h7{height:21.375000px;}
.h8{height:22.200000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h6{height:62.775000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.wd{width:78.300000px;}
.we{width:93.300000px;}
.w4{width:103.650000px;}
.w6{width:105.225000px;}
.w8{width:105.525000px;}
.w7{width:115.275000px;}
.w9{width:127.275000px;}
.wa{width:130.800000px;}
.w5{width:140.325000px;}
.wc{width:141.900000px;}
.w3{width:148.275000px;}
.wb{width:150.075000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.145000px;}
.x8{left:119.475000px;}
.x1{left:127.620000px;}
.x4{left:154.080000px;}
.xe{left:246.675000px;}
.xa{left:267.675000px;}
.x5{left:285.838500px;}
.xb{left:371.250000px;}
.xf{left:377.400000px;}
.x3{left:465.825000px;}
.xc{left:511.500000px;}
.x10{left:527.400000px;}
.x6{left:536.580000px;}
.x7{left:572.760000px;}
.xd{left:616.650000px;}
.x11{left:669.225000px;}
.x2{left:731.160000px;}
.x12{left:747.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1c{word-spacing:-49.728000pt;}
.ws62{word-spacing:-34.562133pt;}
.ws7d{word-spacing:-34.546933pt;}
.wsb{word-spacing:-34.472267pt;}
.ws2f{word-spacing:-34.373333pt;}
.ws3a{word-spacing:-34.363733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws2a{word-spacing:-34.360800pt;}
.ws44{word-spacing:-34.358400pt;}
.wsc{word-spacing:-34.357600pt;}
.ws5a{word-spacing:-34.356800pt;}
.ws5{word-spacing:-34.353600pt;}
.ws1b{word-spacing:-34.351467pt;}
.ws3f{word-spacing:-34.347200pt;}
.ws64{word-spacing:-34.346667pt;}
.ws6a{word-spacing:-34.162667pt;}
.ws3{word-spacing:-34.110400pt;}
.ws6e{word-spacing:-34.097600pt;}
.ws18{word-spacing:-33.925333pt;}
.ws67{word-spacing:-33.920000pt;}
.ws6c{word-spacing:-33.915200pt;}
.ws41{word-spacing:-33.913067pt;}
.ws49{word-spacing:-33.910400pt;}
.ws5e{word-spacing:-33.906933pt;}
.ws29{word-spacing:-33.906667pt;}
.ws23{word-spacing:-33.904000pt;}
.ws7e{word-spacing:-33.901067pt;}
.wsa{word-spacing:-33.855733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws6f{word-spacing:-33.727200pt;}
.ws39{word-spacing:-33.725600pt;}
.ws4{word-spacing:-33.723200pt;}
.ws65{word-spacing:-33.718933pt;}
.ws70{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.ws4c{word-spacing:-33.713600pt;}
.ws9{word-spacing:-33.661600pt;}
.ws59{word-spacing:-33.534933pt;}
.wsd{word-spacing:-33.524267pt;}
.ws63{word-spacing:-33.265600pt;}
.ws40{word-spacing:-33.079200pt;}
.ws35{word-spacing:-33.070400pt;}
.ws4f{word-spacing:-32.881600pt;}
.ws8c{word-spacing:-32.434400pt;}
.ws57{word-spacing:-32.425600pt;}
.ws38{word-spacing:-32.249600pt;}
.ws8d{word-spacing:-31.984000pt;}
.ws3e{word-spacing:-31.810133pt;}
.ws88{word-spacing:-31.808000pt;}
.ws51{word-spacing:-31.806400pt;}
.ws28{word-spacing:-31.790933pt;}
.ws89{word-spacing:-31.740800pt;}
.ws46{word-spacing:-31.352000pt;}
.ws3c{word-spacing:-31.159733pt;}
.ws55{word-spacing:-29.885600pt;}
.ws1a{word-spacing:-29.872000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws53{word-spacing:-29.438133pt;}
.ws19{word-spacing:-29.433600pt;}
.ws4a{word-spacing:-29.424800pt;}
.ws2b{word-spacing:-28.796800pt;}
.ws1e{word-spacing:-27.955200pt;}
.ws78{word-spacing:-27.746667pt;}
.ws5b{word-spacing:-27.505600pt;}
.ws77{word-spacing:-27.326400pt;}
.ws84{word-spacing:-27.326133pt;}
.ws31{word-spacing:-27.320000pt;}
.ws85{word-spacing:-26.867200pt;}
.ws5f{word-spacing:-26.670400pt;}
.ws54{word-spacing:-26.232533pt;}
.ws4b{word-spacing:-26.036800pt;}
.ws43{word-spacing:-25.408000pt;}
.ws48{word-spacing:-24.960000pt;}
.ws90{word-spacing:-24.772533pt;}
.ws69{word-spacing:-24.766400pt;}
.ws91{word-spacing:-24.570667pt;}
.ws17{word-spacing:-24.312000pt;}
.ws26{word-spacing:-24.118400pt;}
.ws80{word-spacing:-23.493333pt;}
.ws7f{word-spacing:-23.487200pt;}
.ws50{word-spacing:-22.202400pt;}
.ws76{word-spacing:-21.760000pt;}
.ws75{word-spacing:-21.741600pt;}
.ws21{word-spacing:-21.558400pt;}
.ws83{word-spacing:-20.932533pt;}
.ws37{word-spacing:-20.928000pt;}
.ws5d{word-spacing:-20.916800pt;}
.ws4e{word-spacing:-20.730133pt;}
.ws58{word-spacing:-20.285600pt;}
.ws25{word-spacing:-19.448000pt;}
.ws32{word-spacing:-19.006933pt;}
.ws61{word-spacing:-18.810133pt;}
.ws66{word-spacing:-18.550400pt;}
.ws45{word-spacing:-18.160000pt;}
.ws13{word-spacing:-17.731733pt;}
.ws74{word-spacing:-17.728000pt;}
.ws73{word-spacing:-17.727200pt;}
.ws15{word-spacing:-17.716800pt;}
.ws1d{word-spacing:-17.714133pt;}
.ws47{word-spacing:-17.078400pt;}
.ws20{word-spacing:-16.635200pt;}
.ws10{word-spacing:-16.440000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws60{word-spacing:-15.618133pt;}
.ws27{word-spacing:-15.163200pt;}
.ws6d{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.520533pt;}
.ws11{word-spacing:-14.516800pt;}
.ws24{word-spacing:-14.318400pt;}
.ws33{word-spacing:-11.966400pt;}
.ws14{word-spacing:-11.525333pt;}
.ws2c{word-spacing:-10.682133pt;}
.ws52{word-spacing:-10.235200pt;}
.ws3b{word-spacing:-10.217600pt;}
.ws2e{word-spacing:-9.210133pt;}
.ws56{word-spacing:-7.923200pt;}
.ws68{word-spacing:-7.476800pt;}
.ws22{word-spacing:-6.838933pt;}
.ws92{word-spacing:-6.400000pt;}
.ws7c{word-spacing:-6.384000pt;}
.ws7b{word-spacing:-6.207200pt;}
.ws1f{word-spacing:-5.562667pt;}
.ws2d{word-spacing:-5.553600pt;}
.ws42{word-spacing:-5.364800pt;}
.ws8b{word-spacing:-5.125333pt;}
.ws8a{word-spacing:-4.928000pt;}
.ws3d{word-spacing:-3.835200pt;}
.ws30{word-spacing:-2.362133pt;}
.ws6b{word-spacing:-1.726400pt;}
.ws12{word-spacing:0.203200pt;}
.ws4d{word-spacing:1.025067pt;}
.ws81{word-spacing:1.282667pt;}
.ws82{word-spacing:1.466667pt;}
.ws7a{word-spacing:3.213600pt;}
.ws79{word-spacing:3.406400pt;}
.ws34{word-spacing:7.234400pt;}
.wsf{word-spacing:18.955200pt;}
.wse{word-spacing:19.200000pt;}
.ws36{word-spacing:21.770400pt;}
.ws5c{word-spacing:39.242400pt;}
.ws8e{word-spacing:76.369600pt;}
.ws8f{word-spacing:76.993067pt;}
.ws86{word-spacing:92.165600pt;}
.ws87{word-spacing:92.993067pt;}
.ws71{word-spacing:94.929600pt;}
.ws72{word-spacing:95.558400pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._22{width:15.537600pt;}
._4{width:16.689600pt;}
._19{width:17.613867pt;}
._10{width:18.990933pt;}
._17{width:20.077867pt;}
._b{width:21.299200pt;}
._c{width:22.835200pt;}
._1f{width:24.440533pt;}
._1a{width:25.333333pt;}
._a{width:26.417600pt;}
._26{width:27.595200pt;}
._1e{width:28.596800pt;}
._16{width:29.882667pt;}
._1d{width:30.779200pt;}
._1{width:32.000000pt;}
._8{width:32.958400pt;}
._1b{width:34.358400pt;}
._f{width:35.516267pt;}
._6{width:36.463467pt;}
._9{width:39.424000pt;}
._11{width:40.317333pt;}
._12{width:41.583467pt;}
._20{width:42.790400pt;}
._e{width:43.992000pt;}
._d{width:45.124267pt;}
._18{width:47.168533pt;}
._13{width:48.436267pt;}
._7{width:51.462400pt;}
._1c{width:52.734933pt;}
._25{width:54.179733pt;}
._14{width:58.237600pt;}
._5{width:69.748800pt;}
._15{width:72.501600pt;}
._21{width:90.603200pt;}
._29{width:108.800000pt;}
._28{width:127.406400pt;}
._23{width:140.800000pt;}
._27{width:143.102400pt;}
._24{width:145.628800pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.333333pt;}
.y5e{bottom:3.360000pt;}
.y3a{bottom:3.413333pt;}
.y3e{bottom:3.441333pt;}
.y40{bottom:3.466667pt;}
.y7{bottom:3.974667pt;}
.y44{bottom:4.093333pt;}
.y60{bottom:4.121333pt;}
.y3c{bottom:12.693333pt;}
.y5a{bottom:12.746667pt;}
.y38{bottom:21.813333pt;}
.y58{bottom:21.866667pt;}
.y3b{bottom:31.093333pt;}
.y59{bottom:31.146667pt;}
.y39{bottom:40.213333pt;}
.y5b{bottom:40.266667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2f{bottom:89.666667pt;}
.y52{bottom:103.908000pt;}
.y2e{bottom:108.066667pt;}
.y51{bottom:122.308000pt;}
.y66{bottom:140.866667pt;}
.y2d{bottom:145.188000pt;}
.y50{bottom:159.266667pt;}
.y2c{bottom:163.588000pt;}
.y87{bottom:164.866667pt;}
.y4f{bottom:177.666667pt;}
.y65{bottom:177.826667pt;}
.y2b{bottom:181.988000pt;}
.y86{bottom:183.266667pt;}
.y4e{bottom:196.066667pt;}
.y2a{bottom:200.388000pt;}
.y85{bottom:201.666667pt;}
.y4d{bottom:214.466667pt;}
.y29{bottom:218.788000pt;}
.y84{bottom:220.066667pt;}
.y83{bottom:238.466667pt;}
.y4c{bottom:251.588000pt;}
.y64{bottom:252.066667pt;}
.y28{bottom:255.908000pt;}
.y82{bottom:256.866667pt;}
.y4b{bottom:269.988000pt;}
.y63{bottom:270.466667pt;}
.y81{bottom:275.266667pt;}
.y4a{bottom:288.388000pt;}
.y62{bottom:288.866667pt;}
.y27{bottom:292.866667pt;}
.y80{bottom:293.666667pt;}
.y49{bottom:306.788000pt;}
.y61{bottom:307.266667pt;}
.y26{bottom:311.266667pt;}
.y7f{bottom:312.066667pt;}
.y48{bottom:325.188000pt;}
.y25{bottom:329.666667pt;}
.y7e{bottom:330.466667pt;}
.y24{bottom:348.066667pt;}
.y7d{bottom:348.866667pt;}
.y47{bottom:362.308000pt;}
.y23{bottom:366.466667pt;}
.y7c{bottom:367.266667pt;}
.y5f{bottom:377.866667pt;}
.y46{bottom:380.706667pt;}
.y22{bottom:384.866667pt;}
.y7b{bottom:385.666667pt;}
.y5d{bottom:397.666667pt;}
.y45{bottom:399.108000pt;}
.y7a{bottom:404.066667pt;}
.y5c{bottom:416.733333pt;}
.y21{bottom:421.988000pt;}
.y79{bottom:422.466667pt;}
.y57{bottom:435.800000pt;}
.y20{bottom:440.388000pt;}
.y78{bottom:440.866667pt;}
.y1f{bottom:458.788000pt;}
.y77{bottom:459.266667pt;}
.y43{bottom:469.733333pt;}
.y1e{bottom:477.188000pt;}
.y76{bottom:477.666667pt;}
.y41{bottom:489.533333pt;}
.y1d{bottom:495.588000pt;}
.y75{bottom:496.066667pt;}
.y3f{bottom:508.600000pt;}
.y56{bottom:513.666667pt;}
.y1c{bottom:513.988000pt;}
.y74{bottom:514.466667pt;}
.y3d{bottom:527.666667pt;}
.y1b{bottom:532.388000pt;}
.y73{bottom:532.866667pt;}
.y37{bottom:546.733333pt;}
.y1a{bottom:550.788000pt;}
.y72{bottom:551.266667pt;}
.y71{bottom:569.666667pt;}
.y19{bottom:587.908000pt;}
.y70{bottom:588.066667pt;}
.y55{bottom:606.308000pt;}
.y6f{bottom:606.466667pt;}
.y36{bottom:624.706667pt;}
.y18{bottom:624.866667pt;}
.y54{bottom:643.108000pt;}
.y17{bottom:643.266667pt;}
.y35{bottom:661.666667pt;}
.y53{bottom:680.066667pt;}
.y16{bottom:680.388000pt;}
.y15{bottom:698.788000pt;}
.y14{bottom:717.188000pt;}
.y13{bottom:735.588000pt;}
.y12{bottom:753.988000pt;}
.y11{bottom:772.388000pt;}
.y6e{bottom:772.866667pt;}
.y10{bottom:790.788000pt;}
.y6d{bottom:791.266667pt;}
.yf{bottom:809.188000pt;}
.y34{bottom:809.506667pt;}
.y6c{bottom:809.666667pt;}
.ye{bottom:827.588000pt;}
.y33{bottom:827.906667pt;}
.y6b{bottom:828.066667pt;}
.yd{bottom:845.988000pt;}
.y32{bottom:846.306667pt;}
.y6a{bottom:846.466667pt;}
.y31{bottom:864.706667pt;}
.y69{bottom:864.866667pt;}
.yc{bottom:883.106667pt;}
.y68{bottom:883.266667pt;}
.yb{bottom:901.506667pt;}
.y67{bottom:901.666667pt;}
.y30{bottom:920.066667pt;}
.ya{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h7{height:19.000000pt;}
.h8{height:19.733333pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h6{height:55.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.wd{width:69.600000pt;}
.we{width:82.933333pt;}
.w4{width:92.133333pt;}
.w6{width:93.533333pt;}
.w8{width:93.800000pt;}
.w7{width:102.466667pt;}
.w9{width:113.133333pt;}
.wa{width:116.266667pt;}
.w5{width:124.733333pt;}
.wc{width:126.133333pt;}
.w3{width:131.800000pt;}
.wb{width:133.400000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.240000pt;}
.x8{left:106.200000pt;}
.x1{left:113.440000pt;}
.x4{left:136.960000pt;}
.xe{left:219.266667pt;}
.xa{left:237.933333pt;}
.x5{left:254.078667pt;}
.xb{left:330.000000pt;}
.xf{left:335.466667pt;}
.x3{left:414.066667pt;}
.xc{left:454.666667pt;}
.x10{left:468.800000pt;}
.x6{left:476.960000pt;}
.x7{left:509.120000pt;}
.xd{left:548.133333pt;}
.x11{left:594.866667pt;}
.x2{left:649.920000pt;}
.x12{left:664.400000pt;}
}




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