
    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_79cba90ca91ba0dd459d5c5a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_dab794d22df57ab37198cf14.woff')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_2cdbb6782aca446df735aa00.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_47487939630cae6750c832d1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_f793fd016aada0d4b7d4d58f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f41b4a986cb0699a3a48cfb9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ca0033c02a9c57d203e19b58.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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;}
.ls2{letter-spacing:155.232000px;}
.ls1{letter-spacing:179.352000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.wsc{word-spacing:-45.860400px;}
.ws9{word-spacing:-45.276000px;}
.wsa{word-spacing:-44.901900px;}
.ws6{word-spacing:-40.968000px;}
.ws5a{word-spacing:-38.661000px;}
.ws57{word-spacing:-38.656800px;}
.wsb{word-spacing:-38.654100px;}
.ws54{word-spacing:-38.653200px;}
.ws5d{word-spacing:-38.649000px;}
.ws78{word-spacing:-38.646000px;}
.wse{word-spacing:-38.446800px;}
.ws8e{word-spacing:-38.444100px;}
.ws8b{word-spacing:-38.440800px;}
.ws7b{word-spacing:-38.435400px;}
.ws19{word-spacing:-38.422800px;}
.ws87{word-spacing:-38.359800px;}
.ws4c{word-spacing:-38.166000px;}
.wsf{word-spacing:-38.160000px;}
.ws74{word-spacing:-38.154600px;}
.ws23{word-spacing:-38.152800px;}
.ws56{word-spacing:-38.150400px;}
.ws2a{word-spacing:-38.142000px;}
.ws2f{word-spacing:-38.141100px;}
.ws8c{word-spacing:-38.134200px;}
.ws0{word-spacing:-38.096400px;}
.ws1{word-spacing:-37.944000px;}
.ws15{word-spacing:-37.942800px;}
.ws25{word-spacing:-37.935000px;}
.ws3{word-spacing:-37.931400px;}
.ws46{word-spacing:-37.923300px;}
.wsd{word-spacing:-37.922700px;}
.ws63{word-spacing:-37.862100px;}
.ws89{word-spacing:-37.720800px;}
.ws82{word-spacing:-37.713600px;}
.ws61{word-spacing:-37.704600px;}
.ws43{word-spacing:-37.440000px;}
.ws3a{word-spacing:-37.429200px;}
.ws6c{word-spacing:-37.224000px;}
.ws3f{word-spacing:-37.221000px;}
.ws52{word-spacing:-37.206000px;}
.ws34{word-spacing:-36.997200px;}
.ws3e{word-spacing:-36.498600px;}
.ws30{word-spacing:-36.490200px;}
.ws40{word-spacing:-36.275400px;}
.ws1b{word-spacing:-35.983800px;}
.ws67{word-spacing:-35.981100px;}
.ws66{word-spacing:-35.790000px;}
.ws84{word-spacing:-35.272800px;}
.ws39{word-spacing:-35.268000px;}
.ws2c{word-spacing:-35.055000px;}
.ws4f{word-spacing:-35.047800px;}
.ws85{word-spacing:-34.336800px;}
.ws20{word-spacing:-33.840000px;}
.ws77{word-spacing:-33.624000px;}
.ws75{word-spacing:-33.613200px;}
.ws26{word-spacing:-33.606000px;}
.ws8{word-spacing:-33.547800px;}
.ws76{word-spacing:-33.126000px;}
.ws18{word-spacing:-32.904000px;}
.ws83{word-spacing:-32.895000px;}
.ws32{word-spacing:-32.680800px;}
.ws51{word-spacing:-32.184000px;}
.ws41{word-spacing:-31.960800px;}
.ws7a{word-spacing:-31.464600px;}
.ws53{word-spacing:-31.464000px;}
.ws1f{word-spacing:-31.456800px;}
.ws3b{word-spacing:-31.240800px;}
.ws69{word-spacing:-30.953400px;}
.ws31{word-spacing:-30.741300px;}
.ws49{word-spacing:-30.735000px;}
.ws80{word-spacing:-30.013200px;}
.ws4a{word-spacing:-29.520000px;}
.ws36{word-spacing:-29.509200px;}
.ws11{word-spacing:-29.301300px;}
.ws10{word-spacing:-28.781100px;}
.ws6b{word-spacing:-28.072800px;}
.ws6d{word-spacing:-28.065300px;}
.ws5f{word-spacing:-27.855000px;}
.ws5e{word-spacing:-27.144000px;}
.ws3c{word-spacing:-27.135000px;}
.ws7e{word-spacing:-26.640000px;}
.ws12{word-spacing:-26.629200px;}
.ws1e{word-spacing:-25.920000px;}
.ws21{word-spacing:-25.189200px;}
.ws8f{word-spacing:-24.263100px;}
.ws5c{word-spacing:-24.253200px;}
.ws5b{word-spacing:-24.252000px;}
.ws8a{word-spacing:-24.240900px;}
.ws5{word-spacing:-23.687700px;}
.ws38{word-spacing:-23.544000px;}
.ws65{word-spacing:-23.526000px;}
.ws7f{word-spacing:-23.326800px;}
.ws58{word-spacing:-23.041500px;}
.ws17{word-spacing:-23.040000px;}
.ws1a{word-spacing:-23.035200px;}
.ws50{word-spacing:-23.028600px;}
.ws6e{word-spacing:-22.824600px;}
.ws59{word-spacing:-22.820100px;}
.ws64{word-spacing:-22.817400px;}
.ws1d{word-spacing:-22.600800px;}
.ws8d{word-spacing:-21.595200px;}
.ws4d{word-spacing:-21.587400px;}
.ws4e{word-spacing:-21.378600px;}
.ws68{word-spacing:-21.371400px;}
.ws33{word-spacing:-20.876400px;}
.ws71{word-spacing:-20.657700px;}
.ws6f{word-spacing:-19.946400px;}
.ws44{word-spacing:-19.939200px;}
.ws86{word-spacing:-19.436400px;}
.ws37{word-spacing:-19.425600px;}
.ws73{word-spacing:-18.701100px;}
.ws7d{word-spacing:-17.781000px;}
.ws7c{word-spacing:-17.705700px;}
.ws6a{word-spacing:-17.280000px;}
.ws24{word-spacing:-16.119000px;}
.ws79{word-spacing:-15.120600px;}
.ws22{word-spacing:-14.182200px;}
.ws70{word-spacing:-14.171400px;}
.ws27{word-spacing:-13.962600px;}
.ws35{word-spacing:-13.961100px;}
.ws81{word-spacing:-12.954600px;}
.ws16{word-spacing:-12.735000px;}
.ws42{word-spacing:-12.722400px;}
.ws2e{word-spacing:-12.240000px;}
.ws45{word-spacing:-11.520000px;}
.ws47{word-spacing:-11.304000px;}
.ws48{word-spacing:-11.295000px;}
.ws72{word-spacing:-10.080000px;}
.ws29{word-spacing:-8.406000px;}
.ws2b{word-spacing:-6.987300px;}
.ws4b{word-spacing:-6.979200px;}
.ws4{word-spacing:-5.177700px;}
.ws28{word-spacing:-4.093200px;}
.ws3d{word-spacing:-3.880800px;}
.ws62{word-spacing:-1.932300px;}
.ws55{word-spacing:0.000000px;}
.ws1c{word-spacing:2.601000px;}
.ws2d{word-spacing:3.820500px;}
.ws14{word-spacing:4.549500px;}
.ws13{word-spacing:5.047200px;}
.ws60{word-spacing:23.763600px;}
.ws88{word-spacing:102.456000px;}
.ws2{word-spacing:537.269400px;}
._5{margin-left:-3.455700px;}
._6{margin-left:-2.389800px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._22{width:2.171700px;}
._7{width:11.751000px;}
._4{width:18.775200px;}
._19{width:20.597700px;}
._e{width:21.629700px;}
._18{width:22.685100px;}
._c{width:24.042000px;}
._10{width:26.010900px;}
._8{width:28.058400px;}
._1f{width:30.213000px;}
._b{width:31.818000px;}
._24{width:33.224100px;}
._d{width:34.262400px;}
._23{width:35.752800px;}
._1a{width:36.928800px;}
._21{width:38.511300px;}
._1b{width:39.746700px;}
._13{width:40.931100px;}
._11{width:42.838200px;}
._12{width:43.903200px;}
._a{width:45.070800px;}
._27{width:47.042400px;}
._15{width:49.143000px;}
._17{width:50.253900px;}
._14{width:52.904100px;}
._f{width:59.823000px;}
._9{width:61.890300px;}
._1d{width:65.025600px;}
._1e{width:66.086100px;}
._1{width:71.928000px;}
._1c{width:78.978000px;}
._25{width:80.891400px;}
._28{width:87.954300px;}
._20{width:105.177600px;}
._16{width:145.944000px;}
._26{width:158.400000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y81{bottom:110.236500px;}
.y56{bottom:111.496500px;}
.y2f{bottom:113.836500px;}
.y80{bottom:130.936500px;}
.y55{bottom:132.196500px;}
.y2e{bottom:134.536500px;}
.y7f{bottom:151.636500px;}
.y54{bottom:154.155000px;}
.y2d{bottom:170.175000px;}
.y7e{bottom:172.336500px;}
.y53{bottom:174.855000px;}
.y2c{bottom:190.875000px;}
.y7d{bottom:193.036500px;}
.y52{bottom:195.555000px;}
.y2b{bottom:211.575000px;}
.y7c{bottom:213.555000px;}
.y51{bottom:216.255000px;}
.y2a{bottom:232.275000px;}
.y7b{bottom:234.255000px;}
.y50{bottom:236.955000px;}
.y29{bottom:252.975000px;}
.y7a{bottom:254.955000px;}
.y4f{bottom:257.655000px;}
.y79{bottom:275.655000px;}
.y4e{bottom:279.615000px;}
.y28{bottom:288.615000px;}
.y78{bottom:296.355000px;}
.y4d{bottom:300.315000px;}
.y27{bottom:309.315000px;}
.y77{bottom:317.055000px;}
.y4c{bottom:321.015000px;}
.y26{bottom:330.015000px;}
.y76{bottom:337.755000px;}
.y4b{bottom:341.715000px;}
.y75{bottom:358.455000px;}
.y4a{bottom:362.415000px;}
.y25{bottom:365.836500px;}
.y74{bottom:379.155000px;}
.y49{bottom:383.115000px;}
.y24{bottom:386.536500px;}
.y73{bottom:399.855000px;}
.y48{bottom:420.015000px;}
.y72{bottom:420.555000px;}
.y23{bottom:422.175000px;}
.y47{bottom:440.715000px;}
.y71{bottom:441.255000px;}
.y22{bottom:442.875000px;}
.y46{bottom:461.415000px;}
.y70{bottom:461.955000px;}
.y21{bottom:463.575000px;}
.y45{bottom:482.115000px;}
.y6f{bottom:482.655000px;}
.y20{bottom:484.275000px;}
.y44{bottom:502.815000px;}
.y6e{bottom:503.355000px;}
.y1f{bottom:504.975000px;}
.y43{bottom:523.515000px;}
.y6d{bottom:524.055000px;}
.y1e{bottom:525.675000px;}
.y42{bottom:544.215000px;}
.y6c{bottom:544.755000px;}
.y1d{bottom:546.375000px;}
.y41{bottom:564.915000px;}
.y6b{bottom:565.455000px;}
.y1c{bottom:567.075000px;}
.y40{bottom:585.615000px;}
.y6a{bottom:586.155000px;}
.y1b{bottom:587.775000px;}
.y3f{bottom:606.315000px;}
.y69{bottom:606.855000px;}
.y94{bottom:609.915000px;}
.y1a{bottom:623.415000px;}
.y3e{bottom:627.015000px;}
.y68{bottom:627.555000px;}
.y93{bottom:630.615000px;}
.y19{bottom:644.115000px;}
.y3d{bottom:647.715000px;}
.y67{bottom:648.255000px;}
.y92{bottom:651.315000px;}
.y18{bottom:664.815000px;}
.y3c{bottom:668.415000px;}
.y66{bottom:668.955000px;}
.y91{bottom:672.015000px;}
.y17{bottom:685.515000px;}
.y65{bottom:689.655000px;}
.y90{bottom:692.715000px;}
.y3b{bottom:704.236500px;}
.y8f{bottom:713.415000px;}
.y16{bottom:721.336500px;}
.y3a{bottom:724.936500px;}
.y8e{bottom:734.115000px;}
.y39{bottom:745.636500px;}
.y8d{bottom:754.815000px;}
.y64{bottom:761.115000px;}
.y15{bottom:762.736500px;}
.y38{bottom:766.336500px;}
.y8c{bottom:775.515000px;}
.y63{bottom:781.815000px;}
.y14{bottom:783.436500px;}
.y37{bottom:787.036500px;}
.y8b{bottom:796.215000px;}
.y62{bottom:802.515000px;}
.y36{bottom:807.736500px;}
.y8a{bottom:816.915000px;}
.y13{bottom:819.075000px;}
.y61{bottom:823.215000px;}
.y35{bottom:828.436500px;}
.y12{bottom:839.775000px;}
.y34{bottom:849.136500px;}
.y89{bottom:858.315000px;}
.y60{bottom:858.855000px;}
.y11{bottom:860.475000px;}
.y33{bottom:869.836500px;}
.y88{bottom:879.015000px;}
.y5f{bottom:879.555000px;}
.y32{bottom:890.536500px;}
.y10{bottom:896.115000px;}
.y87{bottom:899.715000px;}
.y31{bottom:911.236500px;}
.y5e{bottom:915.375000px;}
.y86{bottom:920.415000px;}
.yf{bottom:931.936500px;}
.y5d{bottom:936.075000px;}
.y85{bottom:941.115000px;}
.y30{bottom:946.875000px;}
.y5c{bottom:958.036500px;}
.y84{bottom:961.815000px;}
.ye{bottom:967.575000px;}
.y5b{bottom:978.736500px;}
.y83{bottom:982.515000px;}
.yd{bottom:988.275000px;}
.y5a{bottom:1000.695000px;}
.y82{bottom:1003.215000px;}
.y59{bottom:1021.395000px;}
.yc{bottom:1023.915000px;}
.y58{bottom:1043.355000px;}
.yb{bottom:1044.615000px;}
.y57{bottom:1064.055000px;}
.ya{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.h6{height:45.225146px;}
.h4{height:48.761719px;}
.h3{height:48.796875px;}
.h7{height:50.027344px;}
.h8{height:52.031250px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.xb{left:150.120000px;}
.xd{left:154.620000px;}
.xe{left:159.120000px;}
.xc{left:168.120000px;}
.x3{left:174.780000px;}
.xa{left:181.620000px;}
.x1{left:201.060000px;}
.xf{left:325.620000px;}
.x4{left:368.820000px;}
.x7{left:544.138500px;}
.x8{left:599.580000px;}
.x6{left:614.520000px;}
.x5{left:615.600000px;}
.x9{left:685.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:137.984000pt;}
.ls1{letter-spacing:159.424000pt;}
.ws7{word-spacing:-49.728000pt;}
.wsc{word-spacing:-40.764800pt;}
.ws9{word-spacing:-40.245333pt;}
.wsa{word-spacing:-39.912800pt;}
.ws6{word-spacing:-36.416000pt;}
.ws5a{word-spacing:-34.365333pt;}
.ws57{word-spacing:-34.361600pt;}
.wsb{word-spacing:-34.359200pt;}
.ws54{word-spacing:-34.358400pt;}
.ws5d{word-spacing:-34.354667pt;}
.ws78{word-spacing:-34.352000pt;}
.wse{word-spacing:-34.174933pt;}
.ws8e{word-spacing:-34.172533pt;}
.ws8b{word-spacing:-34.169600pt;}
.ws7b{word-spacing:-34.164800pt;}
.ws19{word-spacing:-34.153600pt;}
.ws87{word-spacing:-34.097600pt;}
.ws4c{word-spacing:-33.925333pt;}
.wsf{word-spacing:-33.920000pt;}
.ws74{word-spacing:-33.915200pt;}
.ws23{word-spacing:-33.913600pt;}
.ws56{word-spacing:-33.911467pt;}
.ws2a{word-spacing:-33.904000pt;}
.ws2f{word-spacing:-33.903200pt;}
.ws8c{word-spacing:-33.897067pt;}
.ws0{word-spacing:-33.863467pt;}
.ws1{word-spacing:-33.728000pt;}
.ws15{word-spacing:-33.726933pt;}
.ws25{word-spacing:-33.720000pt;}
.ws3{word-spacing:-33.716800pt;}
.ws46{word-spacing:-33.709600pt;}
.wsd{word-spacing:-33.709067pt;}
.ws63{word-spacing:-33.655200pt;}
.ws89{word-spacing:-33.529600pt;}
.ws82{word-spacing:-33.523200pt;}
.ws61{word-spacing:-33.515200pt;}
.ws43{word-spacing:-33.280000pt;}
.ws3a{word-spacing:-33.270400pt;}
.ws6c{word-spacing:-33.088000pt;}
.ws3f{word-spacing:-33.085333pt;}
.ws52{word-spacing:-33.072000pt;}
.ws34{word-spacing:-32.886400pt;}
.ws3e{word-spacing:-32.443200pt;}
.ws30{word-spacing:-32.435733pt;}
.ws40{word-spacing:-32.244800pt;}
.ws1b{word-spacing:-31.985600pt;}
.ws67{word-spacing:-31.983200pt;}
.ws66{word-spacing:-31.813333pt;}
.ws84{word-spacing:-31.353600pt;}
.ws39{word-spacing:-31.349333pt;}
.ws2c{word-spacing:-31.160000pt;}
.ws4f{word-spacing:-31.153600pt;}
.ws85{word-spacing:-30.521600pt;}
.ws20{word-spacing:-30.080000pt;}
.ws77{word-spacing:-29.888000pt;}
.ws75{word-spacing:-29.878400pt;}
.ws26{word-spacing:-29.872000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws76{word-spacing:-29.445333pt;}
.ws18{word-spacing:-29.248000pt;}
.ws83{word-spacing:-29.240000pt;}
.ws32{word-spacing:-29.049600pt;}
.ws51{word-spacing:-28.608000pt;}
.ws41{word-spacing:-28.409600pt;}
.ws7a{word-spacing:-27.968533pt;}
.ws53{word-spacing:-27.968000pt;}
.ws1f{word-spacing:-27.961600pt;}
.ws3b{word-spacing:-27.769600pt;}
.ws69{word-spacing:-27.514133pt;}
.ws31{word-spacing:-27.325600pt;}
.ws49{word-spacing:-27.320000pt;}
.ws80{word-spacing:-26.678400pt;}
.ws4a{word-spacing:-26.240000pt;}
.ws36{word-spacing:-26.230400pt;}
.ws11{word-spacing:-26.045600pt;}
.ws10{word-spacing:-25.583200pt;}
.ws6b{word-spacing:-24.953600pt;}
.ws6d{word-spacing:-24.946933pt;}
.ws5f{word-spacing:-24.760000pt;}
.ws5e{word-spacing:-24.128000pt;}
.ws3c{word-spacing:-24.120000pt;}
.ws7e{word-spacing:-23.680000pt;}
.ws12{word-spacing:-23.670400pt;}
.ws1e{word-spacing:-23.040000pt;}
.ws21{word-spacing:-22.390400pt;}
.ws8f{word-spacing:-21.567200pt;}
.ws5c{word-spacing:-21.558400pt;}
.ws5b{word-spacing:-21.557333pt;}
.ws8a{word-spacing:-21.547467pt;}
.ws5{word-spacing:-21.055733pt;}
.ws38{word-spacing:-20.928000pt;}
.ws65{word-spacing:-20.912000pt;}
.ws7f{word-spacing:-20.734933pt;}
.ws58{word-spacing:-20.481333pt;}
.ws17{word-spacing:-20.480000pt;}
.ws1a{word-spacing:-20.475733pt;}
.ws50{word-spacing:-20.469867pt;}
.ws6e{word-spacing:-20.288533pt;}
.ws59{word-spacing:-20.284533pt;}
.ws64{word-spacing:-20.282133pt;}
.ws1d{word-spacing:-20.089600pt;}
.ws8d{word-spacing:-19.195733pt;}
.ws4d{word-spacing:-19.188800pt;}
.ws4e{word-spacing:-19.003200pt;}
.ws68{word-spacing:-18.996800pt;}
.ws33{word-spacing:-18.556800pt;}
.ws71{word-spacing:-18.362400pt;}
.ws6f{word-spacing:-17.730133pt;}
.ws44{word-spacing:-17.723733pt;}
.ws86{word-spacing:-17.276800pt;}
.ws37{word-spacing:-17.267200pt;}
.ws73{word-spacing:-16.623200pt;}
.ws7d{word-spacing:-15.805333pt;}
.ws7c{word-spacing:-15.738400pt;}
.ws6a{word-spacing:-15.360000pt;}
.ws24{word-spacing:-14.328000pt;}
.ws79{word-spacing:-13.440533pt;}
.ws22{word-spacing:-12.606400pt;}
.ws70{word-spacing:-12.596800pt;}
.ws27{word-spacing:-12.411200pt;}
.ws35{word-spacing:-12.409867pt;}
.ws81{word-spacing:-11.515200pt;}
.ws16{word-spacing:-11.320000pt;}
.ws42{word-spacing:-11.308800pt;}
.ws2e{word-spacing:-10.880000pt;}
.ws45{word-spacing:-10.240000pt;}
.ws47{word-spacing:-10.048000pt;}
.ws48{word-spacing:-10.040000pt;}
.ws72{word-spacing:-8.960000pt;}
.ws29{word-spacing:-7.472000pt;}
.ws2b{word-spacing:-6.210933pt;}
.ws4b{word-spacing:-6.203733pt;}
.ws4{word-spacing:-4.602400pt;}
.ws28{word-spacing:-3.638400pt;}
.ws3d{word-spacing:-3.449600pt;}
.ws62{word-spacing:-1.717600pt;}
.ws55{word-spacing:0.000000pt;}
.ws1c{word-spacing:2.312000pt;}
.ws2d{word-spacing:3.396000pt;}
.ws14{word-spacing:4.044000pt;}
.ws13{word-spacing:4.486400pt;}
.ws60{word-spacing:21.123200pt;}
.ws88{word-spacing:91.072000pt;}
.ws2{word-spacing:477.572800pt;}
._5{margin-left:-3.071733pt;}
._6{margin-left:-2.124267pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._22{width:1.930400pt;}
._7{width:10.445333pt;}
._4{width:16.689067pt;}
._19{width:18.309067pt;}
._e{width:19.226400pt;}
._18{width:20.164533pt;}
._c{width:21.370667pt;}
._10{width:23.120800pt;}
._8{width:24.940800pt;}
._1f{width:26.856000pt;}
._b{width:28.282667pt;}
._24{width:29.532533pt;}
._d{width:30.455467pt;}
._23{width:31.780267pt;}
._1a{width:32.825600pt;}
._21{width:34.232267pt;}
._1b{width:35.330400pt;}
._13{width:36.383200pt;}
._11{width:38.078400pt;}
._12{width:39.025067pt;}
._a{width:40.062933pt;}
._27{width:41.815467pt;}
._15{width:43.682667pt;}
._17{width:44.670133pt;}
._14{width:47.025867pt;}
._f{width:53.176000pt;}
._9{width:55.013600pt;}
._1d{width:57.800533pt;}
._1e{width:58.743200pt;}
._1{width:63.936000pt;}
._1c{width:70.202667pt;}
._25{width:71.903467pt;}
._28{width:78.181600pt;}
._20{width:93.491200pt;}
._16{width:129.728000pt;}
._26{width:140.800000pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y81{bottom:97.988000pt;}
.y56{bottom:99.108000pt;}
.y2f{bottom:101.188000pt;}
.y80{bottom:116.388000pt;}
.y55{bottom:117.508000pt;}
.y2e{bottom:119.588000pt;}
.y7f{bottom:134.788000pt;}
.y54{bottom:137.026667pt;}
.y2d{bottom:151.266667pt;}
.y7e{bottom:153.188000pt;}
.y53{bottom:155.426667pt;}
.y2c{bottom:169.666667pt;}
.y7d{bottom:171.588000pt;}
.y52{bottom:173.826667pt;}
.y2b{bottom:188.066667pt;}
.y7c{bottom:189.826667pt;}
.y51{bottom:192.226667pt;}
.y2a{bottom:206.466667pt;}
.y7b{bottom:208.226667pt;}
.y50{bottom:210.626667pt;}
.y29{bottom:224.866667pt;}
.y7a{bottom:226.626667pt;}
.y4f{bottom:229.026667pt;}
.y79{bottom:245.026667pt;}
.y4e{bottom:248.546667pt;}
.y28{bottom:256.546667pt;}
.y78{bottom:263.426667pt;}
.y4d{bottom:266.946667pt;}
.y27{bottom:274.946667pt;}
.y77{bottom:281.826667pt;}
.y4c{bottom:285.346667pt;}
.y26{bottom:293.346667pt;}
.y76{bottom:300.226667pt;}
.y4b{bottom:303.746667pt;}
.y75{bottom:318.626667pt;}
.y4a{bottom:322.146667pt;}
.y25{bottom:325.188000pt;}
.y74{bottom:337.026667pt;}
.y49{bottom:340.546667pt;}
.y24{bottom:343.588000pt;}
.y73{bottom:355.426667pt;}
.y48{bottom:373.346667pt;}
.y72{bottom:373.826667pt;}
.y23{bottom:375.266667pt;}
.y47{bottom:391.746667pt;}
.y71{bottom:392.226667pt;}
.y22{bottom:393.666667pt;}
.y46{bottom:410.146667pt;}
.y70{bottom:410.626667pt;}
.y21{bottom:412.066667pt;}
.y45{bottom:428.546667pt;}
.y6f{bottom:429.026667pt;}
.y20{bottom:430.466667pt;}
.y44{bottom:446.946667pt;}
.y6e{bottom:447.426667pt;}
.y1f{bottom:448.866667pt;}
.y43{bottom:465.346667pt;}
.y6d{bottom:465.826667pt;}
.y1e{bottom:467.266667pt;}
.y42{bottom:483.746667pt;}
.y6c{bottom:484.226667pt;}
.y1d{bottom:485.666667pt;}
.y41{bottom:502.146667pt;}
.y6b{bottom:502.626667pt;}
.y1c{bottom:504.066667pt;}
.y40{bottom:520.546667pt;}
.y6a{bottom:521.026667pt;}
.y1b{bottom:522.466667pt;}
.y3f{bottom:538.946667pt;}
.y69{bottom:539.426667pt;}
.y94{bottom:542.146667pt;}
.y1a{bottom:554.146667pt;}
.y3e{bottom:557.346667pt;}
.y68{bottom:557.826667pt;}
.y93{bottom:560.546667pt;}
.y19{bottom:572.546667pt;}
.y3d{bottom:575.746667pt;}
.y67{bottom:576.226667pt;}
.y92{bottom:578.946667pt;}
.y18{bottom:590.946667pt;}
.y3c{bottom:594.146667pt;}
.y66{bottom:594.626667pt;}
.y91{bottom:597.346667pt;}
.y17{bottom:609.346667pt;}
.y65{bottom:613.026667pt;}
.y90{bottom:615.746667pt;}
.y3b{bottom:625.988000pt;}
.y8f{bottom:634.146667pt;}
.y16{bottom:641.188000pt;}
.y3a{bottom:644.388000pt;}
.y8e{bottom:652.546667pt;}
.y39{bottom:662.788000pt;}
.y8d{bottom:670.946667pt;}
.y64{bottom:676.546667pt;}
.y15{bottom:677.988000pt;}
.y38{bottom:681.188000pt;}
.y8c{bottom:689.346667pt;}
.y63{bottom:694.946667pt;}
.y14{bottom:696.388000pt;}
.y37{bottom:699.588000pt;}
.y8b{bottom:707.746667pt;}
.y62{bottom:713.346667pt;}
.y36{bottom:717.988000pt;}
.y8a{bottom:726.146667pt;}
.y13{bottom:728.066667pt;}
.y61{bottom:731.746667pt;}
.y35{bottom:736.388000pt;}
.y12{bottom:746.466667pt;}
.y34{bottom:754.788000pt;}
.y89{bottom:762.946667pt;}
.y60{bottom:763.426667pt;}
.y11{bottom:764.866667pt;}
.y33{bottom:773.188000pt;}
.y88{bottom:781.346667pt;}
.y5f{bottom:781.826667pt;}
.y32{bottom:791.588000pt;}
.y10{bottom:796.546667pt;}
.y87{bottom:799.746667pt;}
.y31{bottom:809.988000pt;}
.y5e{bottom:813.666667pt;}
.y86{bottom:818.146667pt;}
.yf{bottom:828.388000pt;}
.y5d{bottom:832.066667pt;}
.y85{bottom:836.546667pt;}
.y30{bottom:841.666667pt;}
.y5c{bottom:851.588000pt;}
.y84{bottom:854.946667pt;}
.ye{bottom:860.066667pt;}
.y5b{bottom:869.988000pt;}
.y83{bottom:873.346667pt;}
.yd{bottom:878.466667pt;}
.y5a{bottom:889.506667pt;}
.y82{bottom:891.746667pt;}
.y59{bottom:907.906667pt;}
.yc{bottom:910.146667pt;}
.y58{bottom:927.426667pt;}
.yb{bottom:928.546667pt;}
.y57{bottom:945.826667pt;}
.ya{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.h6{height:40.200130pt;}
.h4{height:43.343750pt;}
.h3{height:43.375000pt;}
.h7{height:44.468750pt;}
.h8{height:46.250000pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.xb{left:133.440000pt;}
.xd{left:137.440000pt;}
.xe{left:141.440000pt;}
.xc{left:149.440000pt;}
.x3{left:155.360000pt;}
.xa{left:161.440000pt;}
.x1{left:178.720000pt;}
.xf{left:289.440000pt;}
.x4{left:327.840000pt;}
.x7{left:483.678667pt;}
.x8{left:532.960000pt;}
.x6{left:546.240000pt;}
.x5{left:547.200000pt;}
.x9{left:609.440000pt;}
}




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