
    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_eedb3814a681cd9ec2486898.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_00443be17542c11c7b42770b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_45ddea006113d7155bc2890f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_e1950702c983ddda05447e16.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c18c043bf71d72892c545c84.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6cec06bac5269533eced59bf.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b9b21520d3788f7d7953aca6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918457;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_748f5c6b6f74a015e98b7c76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707000;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_5013798675ba39d7ac74f8bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_eedb3814a681cd9ec2486898.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_00443be17542c11c7b42770b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.720000;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_d98b8315efd68d6cdf0aa339.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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:ffd;src:url('chunks/assets/font_41c4e0001de7997a3b12eba3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws3b{word-spacing:-51.720000px;}
.ws47{word-spacing:-51.660000px;}
.ws58{word-spacing:-51.240000px;}
.wsf{word-spacing:-51.180000px;}
.ws45{word-spacing:-51.120000px;}
.ws56{word-spacing:-51.060000px;}
.ws21{word-spacing:-50.940000px;}
.ws36{word-spacing:-50.880000px;}
.ws44{word-spacing:-50.760000px;}
.ws2c{word-spacing:-50.640000px;}
.ws62{word-spacing:-50.340000px;}
.ws41{word-spacing:-50.280000px;}
.ws33{word-spacing:-50.100000px;}
.ws2b{word-spacing:-50.040000px;}
.ws5f{word-spacing:-49.680000px;}
.ws28{word-spacing:-49.620000px;}
.ws38{word-spacing:-49.380000px;}
.ws15{word-spacing:-48.720000px;}
.ws19{word-spacing:-48.660000px;}
.ws59{word-spacing:-48.480000px;}
.ws18{word-spacing:-48.420000px;}
.ws6a{word-spacing:-48.360000px;}
.ws2d{word-spacing:-48.000000px;}
.ws5a{word-spacing:-47.880000px;}
.ws17{word-spacing:-47.700000px;}
.ws5{word-spacing:-47.640000px;}
.ws39{word-spacing:-47.580000px;}
.ws5d{word-spacing:-47.460000px;}
.ws63{word-spacing:-47.340000px;}
.ws3d{word-spacing:-47.280000px;}
.ws46{word-spacing:-46.980000px;}
.ws30{word-spacing:-46.740000px;}
.ws69{word-spacing:-46.602000px;}
.ws55{word-spacing:-46.500000px;}
.ws26{word-spacing:-46.200000px;}
.ws6b{word-spacing:-46.080000px;}
.ws54{word-spacing:-45.960000px;}
.ws4a{word-spacing:-45.900000px;}
.ws3c{word-spacing:-45.720000px;}
.ws31{word-spacing:-45.660000px;}
.ws53{word-spacing:-45.600000px;}
.ws3e{word-spacing:-45.360000px;}
.ws1d{word-spacing:-45.300000px;}
.ws4b{word-spacing:-45.180000px;}
.ws2e{word-spacing:-45.000000px;}
.ws61{word-spacing:-44.820000px;}
.ws1f{word-spacing:-44.760000px;}
.ws29{word-spacing:-44.460000px;}
.ws42{word-spacing:-43.980000px;}
.ws6d{word-spacing:-43.740000px;}
.ws3f{word-spacing:-43.440000px;}
.ws49{word-spacing:-43.260000px;}
.ws67{word-spacing:-43.140000px;}
.ws48{word-spacing:-42.720000px;}
.ws1c{word-spacing:-42.660000px;}
.ws6{word-spacing:-42.480000px;}
.ws4d{word-spacing:-42.420000px;}
.ws7{word-spacing:-42.300000px;}
.ws34{word-spacing:-42.000000px;}
.ws43{word-spacing:-41.220000px;}
.ws1e{word-spacing:-41.100000px;}
.ws35{word-spacing:-40.680000px;}
.ws5b{word-spacing:-40.500000px;}
.ws14{word-spacing:-40.080000px;}
.ws52{word-spacing:-39.900000px;}
.ws3a{word-spacing:-39.720000px;}
.ws8{word-spacing:-39.360000px;}
.ws2f{word-spacing:-39.000000px;}
.ws60{word-spacing:-38.520000px;}
.ws50{word-spacing:-38.040000px;}
.ws2a{word-spacing:-37.440000px;}
.ws1b{word-spacing:-37.020000px;}
.ws4c{word-spacing:-36.480000px;}
.ws22{word-spacing:-36.360000px;}
.ws24{word-spacing:-36.180000px;}
.ws65{word-spacing:-36.060000px;}
.wse{word-spacing:-35.820000px;}
.ws6c{word-spacing:-35.700000px;}
.ws40{word-spacing:-35.580000px;}
.ws66{word-spacing:-34.980000px;}
.ws57{word-spacing:-34.620000px;}
.ws10{word-spacing:-33.360000px;}
.ws20{word-spacing:-32.760000px;}
.ws32{word-spacing:-31.560000px;}
.ws27{word-spacing:-30.900000px;}
.ws23{word-spacing:-29.520000px;}
.ws13{word-spacing:-29.460000px;}
.ws1a{word-spacing:-28.860000px;}
.ws11{word-spacing:-24.120000px;}
.ws16{word-spacing:-23.520000px;}
.ws51{word-spacing:-23.160000px;}
.ws37{word-spacing:-22.440000px;}
.ws4e{word-spacing:-22.200000px;}
.ws68{word-spacing:-21.780000px;}
.ws25{word-spacing:-20.100000px;}
.ws64{word-spacing:-19.080000px;}
.ws2{word-spacing:-15.000000px;}
.ws5c{word-spacing:-13.740000px;}
.ws4f{word-spacing:-11.520000px;}
.ws5e{word-spacing:-0.240000px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:0.720000px;}
.wsa{word-spacing:2.052000px;}
.ws6e{word-spacing:4.380000px;}
.wsb{word-spacing:8.586000px;}
.ws3{word-spacing:9.000000px;}
.ws12{word-spacing:10.038000px;}
.ws0{word-spacing:33.621000px;}
.ws1{word-spacing:386.314800px;}
.wsc{word-spacing:1699.977600px;}
._8{margin-left:-14.185800px;}
._16{margin-left:-9.960000px;}
._15{margin-left:-8.880000px;}
._2{margin-left:-6.687000px;}
._0{margin-left:-5.022000px;}
._6{margin-left:-3.056400px;}
._1{margin-left:-1.656000px;}
._5{width:1.085400px;}
._7{width:3.049200px;}
._4{width:4.973400px;}
._c{width:6.044400px;}
._9{width:7.138800px;}
._a{width:8.481600px;}
._b{width:9.513000px;}
._13{width:10.796400px;}
._3{width:12.258000px;}
._10{width:14.220000px;}
._14{width:16.140000px;}
._18{width:18.960000px;}
._11{width:21.176400px;}
._f{width:25.500000px;}
._12{width:27.162000px;}
._17{width:35.820000px;}
._1b{width:46.768200px;}
._1a{width:63.598800px;}
._19{width:65.341200px;}
._d{width:69.000000px;}
._e{width:70.038000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y34{bottom:64.760550px;}
.y33{bottom:65.586600px;}
.y63{bottom:98.241150px;}
.y93{bottom:98.870550px;}
.y62{bottom:117.741150px;}
.y92{bottom:118.370550px;}
.y61{bottom:137.241150px;}
.y91{bottom:137.870550px;}
.y29{bottom:153.142650px;}
.y60{bottom:156.741150px;}
.y90{bottom:157.370550px;}
.y28{bottom:172.642650px;}
.y5f{bottom:176.241150px;}
.y8f{bottom:176.870550px;}
.y27{bottom:192.142650px;}
.y5e{bottom:195.741150px;}
.y94{bottom:196.370550px;}
.y26{bottom:211.642650px;}
.y5d{bottom:215.241150px;}
.y8e{bottom:215.870550px;}
.y5c{bottom:234.741150px;}
.y8d{bottom:235.370550px;}
.y25{bottom:250.642650px;}
.y5b{bottom:254.241150px;}
.yb9{bottom:254.649300px;}
.y8c{bottom:254.870550px;}
.y24{bottom:270.142650px;}
.y5a{bottom:273.741150px;}
.yb8{bottom:274.149300px;}
.y8b{bottom:274.370550px;}
.y23{bottom:289.642650px;}
.y59{bottom:293.241150px;}
.yb7{bottom:293.649300px;}
.y8a{bottom:293.870550px;}
.y58{bottom:312.741150px;}
.ybb{bottom:313.149300px;}
.y89{bottom:313.370550px;}
.y22{bottom:328.642650px;}
.y57{bottom:332.241150px;}
.yb6{bottom:332.649300px;}
.y88{bottom:332.870550px;}
.y21{bottom:348.142650px;}
.y65{bottom:351.741150px;}
.yb5{bottom:352.149300px;}
.y87{bottom:352.370550px;}
.y20{bottom:367.642650px;}
.y56{bottom:371.241150px;}
.yb4{bottom:371.649300px;}
.y86{bottom:371.870550px;}
.y1f{bottom:387.142650px;}
.y55{bottom:390.741150px;}
.yb3{bottom:391.149300px;}
.y85{bottom:391.370550px;}
.y1e{bottom:406.642650px;}
.y54{bottom:410.241150px;}
.yb2{bottom:410.649300px;}
.y84{bottom:410.870550px;}
.y1d{bottom:426.142650px;}
.y53{bottom:429.741150px;}
.yb1{bottom:430.149300px;}
.y83{bottom:430.370550px;}
.y1c{bottom:445.642650px;}
.y52{bottom:449.241150px;}
.yb0{bottom:449.649300px;}
.y82{bottom:449.870550px;}
.y32{bottom:456.139950px;}
.y1b{bottom:465.142650px;}
.y51{bottom:468.741150px;}
.yaf{bottom:469.149300px;}
.y81{bottom:469.370550px;}
.y31{bottom:478.639950px;}
.y1a{bottom:484.642650px;}
.y50{bottom:488.241150px;}
.yae{bottom:488.649300px;}
.y80{bottom:488.870550px;}
.y30{bottom:501.139950px;}
.y19{bottom:504.142650px;}
.y4f{bottom:507.741150px;}
.yad{bottom:508.149300px;}
.y7f{bottom:508.370550px;}
.y18{bottom:523.642650px;}
.y4e{bottom:527.241150px;}
.yac{bottom:527.649300px;}
.y7e{bottom:527.870550px;}
.y2f{bottom:541.639950px;}
.y17{bottom:543.142650px;}
.y4d{bottom:546.741150px;}
.yab{bottom:547.149300px;}
.y7d{bottom:547.370550px;}
.y4c{bottom:566.241150px;}
.yaa{bottom:566.649300px;}
.y7c{bottom:566.870550px;}
.y16{bottom:582.202650px;}
.y4b{bottom:585.741150px;}
.ya9{bottom:586.149300px;}
.y7b{bottom:586.370550px;}
.y2e{bottom:586.639950px;}
.y15{bottom:601.696650px;}
.y4a{bottom:605.241150px;}
.ya8{bottom:605.649300px;}
.y7a{bottom:605.870550px;}
.y14{bottom:619.692150px;}
.y49{bottom:624.741150px;}
.ya7{bottom:625.149300px;}
.y79{bottom:625.370550px;}
.y2d{bottom:627.139950px;}
.y13{bottom:637.687650px;}
.y48{bottom:644.241150px;}
.ya6{bottom:644.649300px;}
.y78{bottom:644.870550px;}
.y12{bottom:655.683150px;}
.y2c{bottom:663.139950px;}
.y47{bottom:663.741150px;}
.yba{bottom:664.149300px;}
.y77{bottom:664.370550px;}
.y11{bottom:673.678650px;}
.y46{bottom:683.241150px;}
.ya5{bottom:683.649300px;}
.y76{bottom:683.870550px;}
.y10{bottom:691.674150px;}
.y2b{bottom:699.139950px;}
.y45{bottom:702.741150px;}
.ya4{bottom:703.149300px;}
.y75{bottom:703.370550px;}
.yf{bottom:709.669650px;}
.y44{bottom:722.241150px;}
.ya3{bottom:722.649300px;}
.y74{bottom:722.870550px;}
.ye{bottom:727.665150px;}
.y2a{bottom:735.139950px;}
.y43{bottom:741.741150px;}
.ya2{bottom:742.149300px;}
.y73{bottom:742.370550px;}
.yd{bottom:745.660650px;}
.y42{bottom:761.241150px;}
.ya1{bottom:761.649300px;}
.y72{bottom:761.870550px;}
.yc{bottom:763.656150px;}
.y41{bottom:780.741150px;}
.ya0{bottom:781.149300px;}
.y71{bottom:781.370550px;}
.yb{bottom:781.651650px;}
.ya{bottom:799.647150px;}
.y40{bottom:800.241150px;}
.y9f{bottom:800.649300px;}
.y70{bottom:800.870550px;}
.y9{bottom:817.642650px;}
.y3f{bottom:819.741150px;}
.y9e{bottom:820.149300px;}
.y6f{bottom:820.370550px;}
.y8{bottom:835.642650px;}
.y3e{bottom:839.241150px;}
.y9d{bottom:839.649300px;}
.y6e{bottom:839.870550px;}
.y64{bottom:858.741150px;}
.y9c{bottom:859.149300px;}
.y6d{bottom:859.370550px;}
.y7{bottom:874.653150px;}
.y3d{bottom:878.241150px;}
.y9b{bottom:878.649300px;}
.y6c{bottom:878.870550px;}
.y6{bottom:894.147150px;}
.y3c{bottom:897.741150px;}
.y9a{bottom:898.149300px;}
.y6b{bottom:898.370550px;}
.y5{bottom:912.142650px;}
.y3b{bottom:917.241150px;}
.y99{bottom:917.649300px;}
.y6a{bottom:917.870550px;}
.y4{bottom:930.142650px;}
.y3a{bottom:936.741150px;}
.y98{bottom:937.149300px;}
.y69{bottom:937.370550px;}
.y39{bottom:956.241150px;}
.y97{bottom:956.649300px;}
.y68{bottom:956.870550px;}
.y3{bottom:969.142650px;}
.y38{bottom:975.741150px;}
.y96{bottom:976.149300px;}
.y67{bottom:976.370550px;}
.y37{bottom:995.241150px;}
.y95{bottom:995.649300px;}
.y66{bottom:995.870550px;}
.y36{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y35{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.hb{height:42.000000px;}
.h7{height:42.158203px;}
.ha{height:42.720000px;}
.h9{height:46.200000px;}
.h8{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.x9{left:73.559100px;}
.x8{left:224.187900px;}
.x3{left:250.574700px;}
.xe{left:399.794550px;}
.xd{left:412.272150px;}
.x6{left:414.669600px;}
.xf{left:426.959550px;}
.x5{left:432.435600px;}
.x7{left:557.607600px;}
.x4{left:571.461000px;}
.xc{left:614.196150px;}
.xb{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws3b{word-spacing:-45.973333pt;}
.ws47{word-spacing:-45.920000pt;}
.ws58{word-spacing:-45.546667pt;}
.wsf{word-spacing:-45.493333pt;}
.ws45{word-spacing:-45.440000pt;}
.ws56{word-spacing:-45.386667pt;}
.ws21{word-spacing:-45.280000pt;}
.ws36{word-spacing:-45.226667pt;}
.ws44{word-spacing:-45.120000pt;}
.ws2c{word-spacing:-45.013333pt;}
.ws62{word-spacing:-44.746667pt;}
.ws41{word-spacing:-44.693333pt;}
.ws33{word-spacing:-44.533333pt;}
.ws2b{word-spacing:-44.480000pt;}
.ws5f{word-spacing:-44.160000pt;}
.ws28{word-spacing:-44.106667pt;}
.ws38{word-spacing:-43.893333pt;}
.ws15{word-spacing:-43.306667pt;}
.ws19{word-spacing:-43.253333pt;}
.ws59{word-spacing:-43.093333pt;}
.ws18{word-spacing:-43.040000pt;}
.ws6a{word-spacing:-42.986667pt;}
.ws2d{word-spacing:-42.666667pt;}
.ws5a{word-spacing:-42.560000pt;}
.ws17{word-spacing:-42.400000pt;}
.ws5{word-spacing:-42.346667pt;}
.ws39{word-spacing:-42.293333pt;}
.ws5d{word-spacing:-42.186667pt;}
.ws63{word-spacing:-42.080000pt;}
.ws3d{word-spacing:-42.026667pt;}
.ws46{word-spacing:-41.760000pt;}
.ws30{word-spacing:-41.546667pt;}
.ws69{word-spacing:-41.424000pt;}
.ws55{word-spacing:-41.333333pt;}
.ws26{word-spacing:-41.066667pt;}
.ws6b{word-spacing:-40.960000pt;}
.ws54{word-spacing:-40.853333pt;}
.ws4a{word-spacing:-40.800000pt;}
.ws3c{word-spacing:-40.640000pt;}
.ws31{word-spacing:-40.586667pt;}
.ws53{word-spacing:-40.533333pt;}
.ws3e{word-spacing:-40.320000pt;}
.ws1d{word-spacing:-40.266667pt;}
.ws4b{word-spacing:-40.160000pt;}
.ws2e{word-spacing:-40.000000pt;}
.ws61{word-spacing:-39.840000pt;}
.ws1f{word-spacing:-39.786667pt;}
.ws29{word-spacing:-39.520000pt;}
.ws42{word-spacing:-39.093333pt;}
.ws6d{word-spacing:-38.880000pt;}
.ws3f{word-spacing:-38.613333pt;}
.ws49{word-spacing:-38.453333pt;}
.ws67{word-spacing:-38.346667pt;}
.ws48{word-spacing:-37.973333pt;}
.ws1c{word-spacing:-37.920000pt;}
.ws6{word-spacing:-37.760000pt;}
.ws4d{word-spacing:-37.706667pt;}
.ws7{word-spacing:-37.600000pt;}
.ws34{word-spacing:-37.333333pt;}
.ws43{word-spacing:-36.640000pt;}
.ws1e{word-spacing:-36.533333pt;}
.ws35{word-spacing:-36.160000pt;}
.ws5b{word-spacing:-36.000000pt;}
.ws14{word-spacing:-35.626667pt;}
.ws52{word-spacing:-35.466667pt;}
.ws3a{word-spacing:-35.306667pt;}
.ws8{word-spacing:-34.986667pt;}
.ws2f{word-spacing:-34.666667pt;}
.ws60{word-spacing:-34.240000pt;}
.ws50{word-spacing:-33.813333pt;}
.ws2a{word-spacing:-33.280000pt;}
.ws1b{word-spacing:-32.906667pt;}
.ws4c{word-spacing:-32.426667pt;}
.ws22{word-spacing:-32.320000pt;}
.ws24{word-spacing:-32.160000pt;}
.ws65{word-spacing:-32.053333pt;}
.wse{word-spacing:-31.840000pt;}
.ws6c{word-spacing:-31.733333pt;}
.ws40{word-spacing:-31.626667pt;}
.ws66{word-spacing:-31.093333pt;}
.ws57{word-spacing:-30.773333pt;}
.ws10{word-spacing:-29.653333pt;}
.ws20{word-spacing:-29.120000pt;}
.ws32{word-spacing:-28.053333pt;}
.ws27{word-spacing:-27.466667pt;}
.ws23{word-spacing:-26.240000pt;}
.ws13{word-spacing:-26.186667pt;}
.ws1a{word-spacing:-25.653333pt;}
.ws11{word-spacing:-21.440000pt;}
.ws16{word-spacing:-20.906667pt;}
.ws51{word-spacing:-20.586667pt;}
.ws37{word-spacing:-19.946667pt;}
.ws4e{word-spacing:-19.733333pt;}
.ws68{word-spacing:-19.360000pt;}
.ws25{word-spacing:-17.866667pt;}
.ws64{word-spacing:-16.960000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5c{word-spacing:-12.213333pt;}
.ws4f{word-spacing:-10.240000pt;}
.ws5e{word-spacing:-0.213333pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:0.640000pt;}
.wsa{word-spacing:1.824000pt;}
.ws6e{word-spacing:3.893333pt;}
.wsb{word-spacing:7.632000pt;}
.ws3{word-spacing:8.000000pt;}
.ws12{word-spacing:8.922667pt;}
.ws0{word-spacing:29.885333pt;}
.ws1{word-spacing:343.390933pt;}
.wsc{word-spacing:1511.091200pt;}
._8{margin-left:-12.609600pt;}
._16{margin-left:-8.853333pt;}
._15{margin-left:-7.893333pt;}
._2{margin-left:-5.944000pt;}
._0{margin-left:-4.464000pt;}
._6{margin-left:-2.716800pt;}
._1{margin-left:-1.472000pt;}
._5{width:0.964800pt;}
._7{width:2.710400pt;}
._4{width:4.420800pt;}
._c{width:5.372800pt;}
._9{width:6.345600pt;}
._a{width:7.539200pt;}
._b{width:8.456000pt;}
._13{width:9.596800pt;}
._3{width:10.896000pt;}
._10{width:12.640000pt;}
._14{width:14.346667pt;}
._18{width:16.853333pt;}
._11{width:18.823467pt;}
._f{width:22.666667pt;}
._12{width:24.144000pt;}
._17{width:31.840000pt;}
._1b{width:41.571733pt;}
._1a{width:56.532267pt;}
._19{width:58.081067pt;}
._d{width:61.333333pt;}
._e{width:62.256000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y34{bottom:57.564933pt;}
.y33{bottom:58.299200pt;}
.y63{bottom:87.325467pt;}
.y93{bottom:87.884933pt;}
.y62{bottom:104.658800pt;}
.y92{bottom:105.218267pt;}
.y61{bottom:121.992133pt;}
.y91{bottom:122.551600pt;}
.y29{bottom:136.126800pt;}
.y60{bottom:139.325467pt;}
.y90{bottom:139.884933pt;}
.y28{bottom:153.460133pt;}
.y5f{bottom:156.658800pt;}
.y8f{bottom:157.218267pt;}
.y27{bottom:170.793467pt;}
.y5e{bottom:173.992133pt;}
.y94{bottom:174.551600pt;}
.y26{bottom:188.126800pt;}
.y5d{bottom:191.325467pt;}
.y8e{bottom:191.884933pt;}
.y5c{bottom:208.658800pt;}
.y8d{bottom:209.218267pt;}
.y25{bottom:222.793467pt;}
.y5b{bottom:225.992133pt;}
.yb9{bottom:226.354933pt;}
.y8c{bottom:226.551600pt;}
.y24{bottom:240.126800pt;}
.y5a{bottom:243.325467pt;}
.yb8{bottom:243.688267pt;}
.y8b{bottom:243.884933pt;}
.y23{bottom:257.460133pt;}
.y59{bottom:260.658800pt;}
.yb7{bottom:261.021600pt;}
.y8a{bottom:261.218267pt;}
.y58{bottom:277.992133pt;}
.ybb{bottom:278.354933pt;}
.y89{bottom:278.551600pt;}
.y22{bottom:292.126800pt;}
.y57{bottom:295.325467pt;}
.yb6{bottom:295.688267pt;}
.y88{bottom:295.884933pt;}
.y21{bottom:309.460133pt;}
.y65{bottom:312.658800pt;}
.yb5{bottom:313.021600pt;}
.y87{bottom:313.218267pt;}
.y20{bottom:326.793467pt;}
.y56{bottom:329.992133pt;}
.yb4{bottom:330.354933pt;}
.y86{bottom:330.551600pt;}
.y1f{bottom:344.126800pt;}
.y55{bottom:347.325467pt;}
.yb3{bottom:347.688267pt;}
.y85{bottom:347.884933pt;}
.y1e{bottom:361.460133pt;}
.y54{bottom:364.658800pt;}
.yb2{bottom:365.021600pt;}
.y84{bottom:365.218267pt;}
.y1d{bottom:378.793467pt;}
.y53{bottom:381.992133pt;}
.yb1{bottom:382.354933pt;}
.y83{bottom:382.551600pt;}
.y1c{bottom:396.126800pt;}
.y52{bottom:399.325467pt;}
.yb0{bottom:399.688267pt;}
.y82{bottom:399.884933pt;}
.y32{bottom:405.457733pt;}
.y1b{bottom:413.460133pt;}
.y51{bottom:416.658800pt;}
.yaf{bottom:417.021600pt;}
.y81{bottom:417.218267pt;}
.y31{bottom:425.457733pt;}
.y1a{bottom:430.793467pt;}
.y50{bottom:433.992133pt;}
.yae{bottom:434.354933pt;}
.y80{bottom:434.551600pt;}
.y30{bottom:445.457733pt;}
.y19{bottom:448.126800pt;}
.y4f{bottom:451.325467pt;}
.yad{bottom:451.688267pt;}
.y7f{bottom:451.884933pt;}
.y18{bottom:465.460133pt;}
.y4e{bottom:468.658800pt;}
.yac{bottom:469.021600pt;}
.y7e{bottom:469.218267pt;}
.y2f{bottom:481.457733pt;}
.y17{bottom:482.793467pt;}
.y4d{bottom:485.992133pt;}
.yab{bottom:486.354933pt;}
.y7d{bottom:486.551600pt;}
.y4c{bottom:503.325467pt;}
.yaa{bottom:503.688267pt;}
.y7c{bottom:503.884933pt;}
.y16{bottom:517.513467pt;}
.y4b{bottom:520.658800pt;}
.ya9{bottom:521.021600pt;}
.y7b{bottom:521.218267pt;}
.y2e{bottom:521.457733pt;}
.y15{bottom:534.841467pt;}
.y4a{bottom:537.992133pt;}
.ya8{bottom:538.354933pt;}
.y7a{bottom:538.551600pt;}
.y14{bottom:550.837467pt;}
.y49{bottom:555.325467pt;}
.ya7{bottom:555.688267pt;}
.y79{bottom:555.884933pt;}
.y2d{bottom:557.457733pt;}
.y13{bottom:566.833467pt;}
.y48{bottom:572.658800pt;}
.ya6{bottom:573.021600pt;}
.y78{bottom:573.218267pt;}
.y12{bottom:582.829467pt;}
.y2c{bottom:589.457733pt;}
.y47{bottom:589.992133pt;}
.yba{bottom:590.354933pt;}
.y77{bottom:590.551600pt;}
.y11{bottom:598.825467pt;}
.y46{bottom:607.325467pt;}
.ya5{bottom:607.688267pt;}
.y76{bottom:607.884933pt;}
.y10{bottom:614.821467pt;}
.y2b{bottom:621.457733pt;}
.y45{bottom:624.658800pt;}
.ya4{bottom:625.021600pt;}
.y75{bottom:625.218267pt;}
.yf{bottom:630.817467pt;}
.y44{bottom:641.992133pt;}
.ya3{bottom:642.354933pt;}
.y74{bottom:642.551600pt;}
.ye{bottom:646.813467pt;}
.y2a{bottom:653.457733pt;}
.y43{bottom:659.325467pt;}
.ya2{bottom:659.688267pt;}
.y73{bottom:659.884933pt;}
.yd{bottom:662.809467pt;}
.y42{bottom:676.658800pt;}
.ya1{bottom:677.021600pt;}
.y72{bottom:677.218267pt;}
.yc{bottom:678.805467pt;}
.y41{bottom:693.992133pt;}
.ya0{bottom:694.354933pt;}
.y71{bottom:694.551600pt;}
.yb{bottom:694.801467pt;}
.ya{bottom:710.797467pt;}
.y40{bottom:711.325467pt;}
.y9f{bottom:711.688267pt;}
.y70{bottom:711.884933pt;}
.y9{bottom:726.793467pt;}
.y3f{bottom:728.658800pt;}
.y9e{bottom:729.021600pt;}
.y6f{bottom:729.218267pt;}
.y8{bottom:742.793467pt;}
.y3e{bottom:745.992133pt;}
.y9d{bottom:746.354933pt;}
.y6e{bottom:746.551600pt;}
.y64{bottom:763.325467pt;}
.y9c{bottom:763.688267pt;}
.y6d{bottom:763.884933pt;}
.y7{bottom:777.469467pt;}
.y3d{bottom:780.658800pt;}
.y9b{bottom:781.021600pt;}
.y6c{bottom:781.218267pt;}
.y6{bottom:794.797467pt;}
.y3c{bottom:797.992133pt;}
.y9a{bottom:798.354933pt;}
.y6b{bottom:798.551600pt;}
.y5{bottom:810.793467pt;}
.y3b{bottom:815.325467pt;}
.y99{bottom:815.688267pt;}
.y6a{bottom:815.884933pt;}
.y4{bottom:826.793467pt;}
.y3a{bottom:832.658800pt;}
.y98{bottom:833.021600pt;}
.y69{bottom:833.218267pt;}
.y39{bottom:849.992133pt;}
.y97{bottom:850.354933pt;}
.y68{bottom:850.551600pt;}
.y3{bottom:861.460133pt;}
.y38{bottom:867.325467pt;}
.y96{bottom:867.688267pt;}
.y67{bottom:867.884933pt;}
.y37{bottom:884.658800pt;}
.y95{bottom:885.021600pt;}
.y66{bottom:885.218267pt;}
.y36{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y35{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.hb{height:37.333333pt;}
.h7{height:37.473958pt;}
.ha{height:37.973333pt;}
.h9{height:41.066667pt;}
.h8{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.x9{left:65.385867pt;}
.x8{left:199.278133pt;}
.x3{left:222.733067pt;}
.xe{left:355.372933pt;}
.xd{left:366.464133pt;}
.x6{left:368.595200pt;}
.xf{left:379.519600pt;}
.x5{left:384.387200pt;}
.x7{left:495.651200pt;}
.x4{left:507.965333pt;}
.xc{left:545.952133pt;}
.xb{left:562.556267pt;}
}




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