
    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_c8f51b3edcea1583078a7d5e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_59bd217cc0456b00c38d3dac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_faaa5c99e3cbacc2413d653b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_cb049bd8c90840d8b6c0804c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_8b7e7ba0339f3e225f6059c3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_59bd217cc0456b00c38d3dac.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_59bd217cc0456b00c38d3dac.woff')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_59bd217cc0456b00c38d3dac.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_59bd217cc0456b00c38d3dac.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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);}
.v1{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:152.791200px;}
.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;}
}
.ws2{word-spacing:-81.216000px;}
.ws5{word-spacing:-40.608000px;}
.ws1{word-spacing:-21.996000px;}
.wsb{word-spacing:-0.726000px;}
.ws8{word-spacing:-0.528000px;}
.ws9{word-spacing:-0.462000px;}
.ws3{word-spacing:-0.132000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:2091.095400px;}
.wsd{word-spacing:3649.761600px;}
.ws7{word-spacing:3658.803600px;}
.wsa{word-spacing:3659.661600px;}
.ws6{word-spacing:3662.136600px;}
.wsc{word-spacing:3662.334600px;}
.ws4{word-spacing:3683.553600px;}
._e{margin-left:-14.400000px;}
._3{margin-left:-11.448000px;}
._1{margin-left:-10.368000px;}
._d{margin-left:-6.913200px;}
._6{margin-left:-5.664000px;}
._8{margin-left:-4.320000px;}
._b{margin-left:-3.306000px;}
._0{margin-left:-1.728000px;}
._5{width:2.028000px;}
._7{width:3.562800px;}
._4{width:4.968000px;}
._9{width:6.624000px;}
._2{width:10.368000px;}
._f{width:13.824000px;}
._10{width:3071.301000px;}
._a{width:3236.745000px;}
._c{width:3238.323000px;}
.fc4{color:transparent;}
.fc3{color:rgb(178,179,163);}
.fc1{color:rgb(239,52,75);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:132.000000px;}
.fs8{font-size:144.000000px;}
.fs9{font-size:180.000000px;}
.fs0{font-size:216.000000px;}
.fs6{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:58.664700px;}
.y109{bottom:118.346100px;}
.ydb{bottom:131.509800px;}
.yc5{bottom:132.651000px;}
.y92{bottom:133.423800px;}
.y108{bottom:137.846100px;}
.yda{bottom:151.309800px;}
.yc4{bottom:152.451000px;}
.y91{bottom:153.223800px;}
.y13e{bottom:153.258750px;}
.y27{bottom:153.899100px;}
.y107{bottom:157.346100px;}
.ye8{bottom:166.018350px;}
.yd9{bottom:171.109800px;}
.yc3{bottom:172.251000px;}
.y90{bottom:173.023800px;}
.y26{bottom:173.699100px;}
.y106{bottom:176.846100px;}
.yd8{bottom:190.909800px;}
.yc2{bottom:192.050850px;}
.y8f{bottom:192.823800px;}
.y13d{bottom:192.858600px;}
.y25{bottom:193.499100px;}
.y105{bottom:196.346100px;}
.yd7{bottom:210.709800px;}
.yc1{bottom:211.850850px;}
.y8e{bottom:212.623650px;}
.y13c{bottom:212.658750px;}
.y24{bottom:213.299100px;}
.y104{bottom:215.846100px;}
.y60{bottom:224.658750px;}
.yd6{bottom:230.509800px;}
.yc0{bottom:231.651000px;}
.y8d{bottom:232.423800px;}
.y13b{bottom:232.458750px;}
.y23{bottom:239.099100px;}
.y5f{bottom:244.158750px;}
.yd5{bottom:250.309800px;}
.ybf{bottom:251.451000px;}
.y8c{bottom:252.223800px;}
.y5e{bottom:263.658750px;}
.y103{bottom:266.739750px;}
.yd4{bottom:270.109800px;}
.ybe{bottom:271.251000px;}
.y8b{bottom:272.023800px;}
.y13a{bottom:272.058750px;}
.y11d{bottom:276.489750px;}
.y5d{bottom:283.158750px;}
.y102{bottom:286.239750px;}
.yd3{bottom:289.909800px;}
.ybd{bottom:291.050850px;}
.y8a{bottom:291.823800px;}
.y139{bottom:291.858600px;}
.y11c{bottom:295.989750px;}
.y5c{bottom:302.658750px;}
.y22{bottom:302.699100px;}
.y101{bottom:305.739750px;}
.yd2{bottom:309.709800px;}
.ybc{bottom:310.850850px;}
.y89{bottom:311.623800px;}
.y138{bottom:311.658750px;}
.ye7{bottom:314.866800px;}
.y11b{bottom:315.489750px;}
.y5b{bottom:322.158750px;}
.y100{bottom:325.239750px;}
.y21{bottom:328.499100px;}
.yd1{bottom:329.509800px;}
.ybb{bottom:330.651000px;}
.y88{bottom:331.423800px;}
.y137{bottom:331.458750px;}
.y11a{bottom:334.989750px;}
.yff{bottom:344.739750px;}
.yc8{bottom:349.268550px;}
.yd0{bottom:349.309800px;}
.yba{bottom:350.451000px;}
.y87{bottom:351.223800px;}
.y119{bottom:354.489750px;}
.y5a{bottom:361.158750px;}
.yfe{bottom:364.239750px;}
.ycf{bottom:369.109800px;}
.yb9{bottom:370.251000px;}
.y86{bottom:371.023800px;}
.y136{bottom:371.058750px;}
.y118{bottom:373.989900px;}
.y59{bottom:380.658750px;}
.y20{bottom:382.499100px;}
.yce{bottom:388.909800px;}
.yb8{bottom:390.051000px;}
.y85{bottom:390.823800px;}
.y135{bottom:390.858600px;}
.y58{bottom:400.158750px;}
.y1f{bottom:402.299100px;}
.yb7{bottom:409.850850px;}
.y84{bottom:410.623800px;}
.y134{bottom:410.658750px;}
.y57{bottom:419.658750px;}
.y1e{bottom:422.099100px;}
.yfd{bottom:424.777200px;}
.yb6{bottom:429.651000px;}
.y83{bottom:430.423800px;}
.y133{bottom:430.458750px;}
.y56{bottom:439.158750px;}
.y1d{bottom:441.899100px;}
.yfc{bottom:444.277200px;}
.yb5{bottom:449.451000px;}
.y82{bottom:450.223800px;}
.y132{bottom:450.258750px;}
.y55{bottom:458.658750px;}
.y1c{bottom:461.699100px;}
.ye6{bottom:463.041900px;}
.yfb{bottom:463.777200px;}
.yc7{bottom:469.251000px;}
.y81{bottom:470.023800px;}
.y8{bottom:472.765200px;}
.y54{bottom:478.158750px;}
.y1b{bottom:481.499100px;}
.yfa{bottom:483.277200px;}
.yb4{bottom:489.051000px;}
.y94{bottom:489.823800px;}
.y131{bottom:489.858600px;}
.y53{bottom:497.658750px;}
.y1a{bottom:501.299100px;}
.yf9{bottom:502.777200px;}
.yb3{bottom:508.850850px;}
.y80{bottom:509.623800px;}
.y130{bottom:509.658750px;}
.yc9{bottom:510.843300px;}
.y19{bottom:521.099100px;}
.yb2{bottom:528.651000px;}
.y7f{bottom:529.423800px;}
.y12f{bottom:529.458750px;}
.y7{bottom:532.765200px;}
.y52{bottom:536.658750px;}
.y18{bottom:540.899100px;}
.yb1{bottom:548.451000px;}
.y7e{bottom:549.223800px;}
.y12e{bottom:549.258750px;}
.y51{bottom:556.158750px;}
.y17{bottom:560.699100px;}
.yf8{bottom:563.668950px;}
.yb0{bottom:568.251000px;}
.y7d{bottom:569.023800px;}
.y117{bottom:573.418950px;}
.y50{bottom:575.658750px;}
.yca{bottom:578.629050px;}
.yf7{bottom:583.168950px;}
.y16{bottom:586.499100px;}
.yaf{bottom:588.051000px;}
.y7c{bottom:588.823800px;}
.y12d{bottom:588.858600px;}
.y6{bottom:592.765200px;}
.y116{bottom:592.918950px;}
.yf6{bottom:602.668950px;}
.yae{bottom:607.850850px;}
.y7b{bottom:608.623800px;}
.y12c{bottom:608.658750px;}
.ye5{bottom:611.217150px;}
.y115{bottom:612.418950px;}
.y4f{bottom:614.658750px;}
.yf5{bottom:622.168950px;}
.yad{bottom:627.651000px;}
.y7a{bottom:628.423800px;}
.y15{bottom:630.299100px;}
.y114{bottom:631.918950px;}
.y4e{bottom:634.158750px;}
.yf4{bottom:641.668950px;}
.yac{bottom:647.451000px;}
.y79{bottom:648.223800px;}
.y12b{bottom:648.258750px;}
.y14{bottom:650.099100px;}
.y113{bottom:651.418950px;}
.y5{bottom:652.765200px;}
.y4d{bottom:653.658750px;}
.yf3{bottom:661.168950px;}
.yab{bottom:667.251000px;}
.y78{bottom:668.023800px;}
.y12a{bottom:668.058750px;}
.y13{bottom:668.099100px;}
.y4c{bottom:673.158750px;}
.yaa{bottom:687.051000px;}
.y77{bottom:687.823800px;}
.y4b{bottom:692.658750px;}
.y112{bottom:702.171000px;}
.ycd{bottom:702.840450px;}
.y12{bottom:705.899100px;}
.ya9{bottom:706.850850px;}
.y76{bottom:707.623800px;}
.y129{bottom:707.658750px;}
.y4a{bottom:712.158750px;}
.y4{bottom:712.765200px;}
.yf2{bottom:721.671000px;}
.y11{bottom:725.699100px;}
.ya8{bottom:726.651000px;}
.y75{bottom:727.423800px;}
.y128{bottom:727.458750px;}
.y49{bottom:731.658750px;}
.yf1{bottom:741.171000px;}
.y10{bottom:745.499100px;}
.y3b{bottom:745.665750px;}
.ya7{bottom:746.451000px;}
.y74{bottom:747.223800px;}
.y127{bottom:747.258750px;}
.y48{bottom:751.158750px;}
.ye4{bottom:759.392400px;}
.yf0{bottom:760.671000px;}
.y3a{bottom:765.165750px;}
.yf{bottom:765.299100px;}
.ya6{bottom:766.251000px;}
.y73{bottom:767.023800px;}
.y126{bottom:767.058750px;}
.y62{bottom:770.658750px;}
.y3{bottom:772.765200px;}
.yef{bottom:780.171000px;}
.ye{bottom:785.099100px;}
.ya5{bottom:786.050850px;}
.y72{bottom:786.823800px;}
.y47{bottom:790.158750px;}
.yee{bottom:799.671000px;}
.y39{bottom:804.165750px;}
.yd{bottom:804.899100px;}
.ya4{bottom:805.850850px;}
.y93{bottom:806.623650px;}
.y125{bottom:806.658750px;}
.y46{bottom:809.658750px;}
.ycc{bottom:810.840450px;}
.y111{bottom:819.171000px;}
.y38{bottom:823.665750px;}
.yc{bottom:824.699100px;}
.ya3{bottom:825.651000px;}
.y71{bottom:826.423650px;}
.y124{bottom:826.458750px;}
.y45{bottom:829.158750px;}
.y2{bottom:832.765200px;}
.y37{bottom:843.165750px;}
.yb{bottom:844.499100px;}
.ya2{bottom:845.451000px;}
.y70{bottom:846.223650px;}
.y123{bottom:846.258750px;}
.y61{bottom:848.658750px;}
.ya{bottom:864.299100px;}
.ya1{bottom:865.251000px;}
.y6f{bottom:866.023650px;}
.y44{bottom:868.158750px;}
.yed{bottom:869.639400px;}
.y36{bottom:882.165750px;}
.ya0{bottom:885.050850px;}
.y6e{bottom:885.823650px;}
.y122{bottom:885.858600px;}
.y43{bottom:887.658750px;}
.yec{bottom:889.139400px;}
.y9{bottom:890.099100px;}
.y1{bottom:892.765200px;}
.y35{bottom:901.665750px;}
.y9f{bottom:904.850850px;}
.y6d{bottom:905.623650px;}
.y121{bottom:905.658750px;}
.y42{bottom:907.158750px;}
.ye3{bottom:907.567500px;}
.yeb{bottom:908.639400px;}
.ycb{bottom:918.840450px;}
.y34{bottom:921.165750px;}
.y9e{bottom:924.650850px;}
.y6c{bottom:925.423650px;}
.y120{bottom:925.458750px;}
.y41{bottom:926.658750px;}
.yea{bottom:928.139400px;}
.y9d{bottom:944.450850px;}
.y6b{bottom:945.223650px;}
.y11f{bottom:945.258750px;}
.y40{bottom:946.158750px;}
.ye9{bottom:947.639400px;}
.y2c{bottom:950.535600px;}
.y33{bottom:960.165750px;}
.y9c{bottom:964.250850px;}
.y6a{bottom:965.023650px;}
.y3f{bottom:965.658750px;}
.y32{bottom:979.665750px;}
.y9b{bottom:984.050850px;}
.y69{bottom:984.823650px;}
.y11e{bottom:984.858600px;}
.y3e{bottom:985.158750px;}
.y2b{bottom:990.135750px;}
.y110{bottom:998.958450px;}
.y31{bottom:999.165750px;}
.y9a{bottom:1003.850850px;}
.y68{bottom:1004.623650px;}
.y3d{bottom:1004.658750px;}
.ye2{bottom:1008.708450px;}
.y10f{bottom:1018.458450px;}
.y99{bottom:1023.650850px;}
.y67{bottom:1024.423650px;}
.ye1{bottom:1028.208450px;}
.y2a{bottom:1029.735600px;}
.y10e{bottom:1037.958450px;}
.y30{bottom:1038.165750px;}
.y98{bottom:1043.450850px;}
.y66{bottom:1044.223650px;}
.ye0{bottom:1047.708450px;}
.ydc{bottom:1055.742750px;}
.y10d{bottom:1057.458450px;}
.y2f{bottom:1057.665750px;}
.y97{bottom:1063.250850px;}
.ydf{bottom:1067.208450px;}
.y29{bottom:1069.335600px;}
.y10c{bottom:1076.958450px;}
.y2e{bottom:1077.165750px;}
.yc6{bottom:1083.050850px;}
.y3c{bottom:1084.453050px;}
.yde{bottom:1086.708450px;}
.y10b{bottom:1096.458450px;}
.y65{bottom:1099.995750px;}
.y96{bottom:1102.850850px;}
.ydd{bottom:1106.208450px;}
.y28{bottom:1108.935600px;}
.y10a{bottom:1115.958450px;}
.y2d{bottom:1122.165750px;}
.y95{bottom:1122.650850px;}
.y63{bottom:1205.677200px;}
.h9{height:39.042000px;}
.hc{height:43.380000px;}
.h5{height:45.966797px;}
.ha{height:47.718000px;}
.he{height:49.170000px;}
.h4{height:50.563477px;}
.h3{height:58.110000px;}
.h7{height:95.436000px;}
.h6{height:98.340000px;}
.hb{height:107.280000px;}
.hd{height:130.140000px;}
.h2{height:160.920000px;}
.h8{height:214.560000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:43.582650px;}
.x12{left:83.338500px;}
.x2{left:85.039350px;}
.xd{left:123.307050px;}
.x5{left:127.559100px;}
.x4{left:180.708600px;}
.x11{left:223.228350px;}
.xe{left:235.559100px;}
.x9{left:416.715900px;}
.x6{left:420.007650px;}
.x7{left:446.456700px;}
.xa{left:977.952750px;}
.x3{left:1020.472350px;}
.xf{left:1058.740200px;}
.x10{left:1170.992100px;}
.xb{left:1234.133850px;}
.xc{left:1352.817300px;}
.x8{left:1381.889700px;}
@media print{
.v1{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:135.814400pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-72.192000pt;}
.ws5{word-spacing:-36.096000pt;}
.ws1{word-spacing:-19.552000pt;}
.wsb{word-spacing:-0.645333pt;}
.ws8{word-spacing:-0.469333pt;}
.ws9{word-spacing:-0.410667pt;}
.ws3{word-spacing:-0.117333pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:1858.751467pt;}
.wsd{word-spacing:3244.232533pt;}
.ws7{word-spacing:3252.269867pt;}
.wsa{word-spacing:3253.032533pt;}
.ws6{word-spacing:3255.232533pt;}
.wsc{word-spacing:3255.408533pt;}
.ws4{word-spacing:3274.269867pt;}
._e{margin-left:-12.800000pt;}
._3{margin-left:-10.176000pt;}
._1{margin-left:-9.216000pt;}
._d{margin-left:-6.145067pt;}
._6{margin-left:-5.034667pt;}
._8{margin-left:-3.840000pt;}
._b{margin-left:-2.938667pt;}
._0{margin-left:-1.536000pt;}
._5{width:1.802667pt;}
._7{width:3.166933pt;}
._4{width:4.416000pt;}
._9{width:5.888000pt;}
._2{width:9.216000pt;}
._f{width:12.288000pt;}
._10{width:2730.045333pt;}
._a{width:2877.106667pt;}
._c{width:2878.509333pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:117.333333pt;}
.fs8{font-size:128.000000pt;}
.fs9{font-size:160.000000pt;}
.fs0{font-size:192.000000pt;}
.fs6{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:52.146400pt;}
.y109{bottom:105.196533pt;}
.ydb{bottom:116.897600pt;}
.yc5{bottom:117.912000pt;}
.y92{bottom:118.598933pt;}
.y108{bottom:122.529867pt;}
.yda{bottom:134.497600pt;}
.yc4{bottom:135.512000pt;}
.y91{bottom:136.198933pt;}
.y13e{bottom:136.230000pt;}
.y27{bottom:136.799200pt;}
.y107{bottom:139.863200pt;}
.ye8{bottom:147.571867pt;}
.yd9{bottom:152.097600pt;}
.yc3{bottom:153.112000pt;}
.y90{bottom:153.798933pt;}
.y26{bottom:154.399200pt;}
.y106{bottom:157.196533pt;}
.yd8{bottom:169.697600pt;}
.yc2{bottom:170.711867pt;}
.y8f{bottom:171.398933pt;}
.y13d{bottom:171.429867pt;}
.y25{bottom:171.999200pt;}
.y105{bottom:174.529867pt;}
.yd7{bottom:187.297600pt;}
.yc1{bottom:188.311867pt;}
.y8e{bottom:188.998800pt;}
.y13c{bottom:189.030000pt;}
.y24{bottom:189.599200pt;}
.y104{bottom:191.863200pt;}
.y60{bottom:199.696667pt;}
.yd6{bottom:204.897600pt;}
.yc0{bottom:205.912000pt;}
.y8d{bottom:206.598933pt;}
.y13b{bottom:206.630000pt;}
.y23{bottom:212.532533pt;}
.y5f{bottom:217.030000pt;}
.yd5{bottom:222.497600pt;}
.ybf{bottom:223.512000pt;}
.y8c{bottom:224.198933pt;}
.y5e{bottom:234.363333pt;}
.y103{bottom:237.102000pt;}
.yd4{bottom:240.097600pt;}
.ybe{bottom:241.112000pt;}
.y8b{bottom:241.798933pt;}
.y13a{bottom:241.830000pt;}
.y11d{bottom:245.768667pt;}
.y5d{bottom:251.696667pt;}
.y102{bottom:254.435333pt;}
.yd3{bottom:257.697600pt;}
.ybd{bottom:258.711867pt;}
.y8a{bottom:259.398933pt;}
.y139{bottom:259.429867pt;}
.y11c{bottom:263.102000pt;}
.y5c{bottom:269.030000pt;}
.y22{bottom:269.065867pt;}
.y101{bottom:271.768667pt;}
.yd2{bottom:275.297600pt;}
.ybc{bottom:276.311867pt;}
.y89{bottom:276.998933pt;}
.y138{bottom:277.030000pt;}
.ye7{bottom:279.881600pt;}
.y11b{bottom:280.435333pt;}
.y5b{bottom:286.363333pt;}
.y100{bottom:289.102000pt;}
.y21{bottom:291.999200pt;}
.yd1{bottom:292.897600pt;}
.ybb{bottom:293.912000pt;}
.y88{bottom:294.598933pt;}
.y137{bottom:294.630000pt;}
.y11a{bottom:297.768667pt;}
.yff{bottom:306.435333pt;}
.yc8{bottom:310.460933pt;}
.yd0{bottom:310.497600pt;}
.yba{bottom:311.512000pt;}
.y87{bottom:312.198933pt;}
.y119{bottom:315.102000pt;}
.y5a{bottom:321.030000pt;}
.yfe{bottom:323.768667pt;}
.ycf{bottom:328.097600pt;}
.yb9{bottom:329.112000pt;}
.y86{bottom:329.798933pt;}
.y136{bottom:329.830000pt;}
.y118{bottom:332.435467pt;}
.y59{bottom:338.363333pt;}
.y20{bottom:339.999200pt;}
.yce{bottom:345.697600pt;}
.yb8{bottom:346.712000pt;}
.y85{bottom:347.398933pt;}
.y135{bottom:347.429867pt;}
.y58{bottom:355.696667pt;}
.y1f{bottom:357.599200pt;}
.yb7{bottom:364.311867pt;}
.y84{bottom:364.998933pt;}
.y134{bottom:365.030000pt;}
.y57{bottom:373.030000pt;}
.y1e{bottom:375.199200pt;}
.yfd{bottom:377.579733pt;}
.yb6{bottom:381.912000pt;}
.y83{bottom:382.598933pt;}
.y133{bottom:382.630000pt;}
.y56{bottom:390.363333pt;}
.y1d{bottom:392.799200pt;}
.yfc{bottom:394.913067pt;}
.yb5{bottom:399.512000pt;}
.y82{bottom:400.198933pt;}
.y132{bottom:400.230000pt;}
.y55{bottom:407.696667pt;}
.y1c{bottom:410.399200pt;}
.ye6{bottom:411.592800pt;}
.yfb{bottom:412.246400pt;}
.yc7{bottom:417.112000pt;}
.y81{bottom:417.798933pt;}
.y8{bottom:420.235733pt;}
.y54{bottom:425.030000pt;}
.y1b{bottom:427.999200pt;}
.yfa{bottom:429.579733pt;}
.yb4{bottom:434.712000pt;}
.y94{bottom:435.398933pt;}
.y131{bottom:435.429867pt;}
.y53{bottom:442.363333pt;}
.y1a{bottom:445.599200pt;}
.yf9{bottom:446.913067pt;}
.yb3{bottom:452.311867pt;}
.y80{bottom:452.998933pt;}
.y130{bottom:453.030000pt;}
.yc9{bottom:454.082933pt;}
.y19{bottom:463.199200pt;}
.yb2{bottom:469.912000pt;}
.y7f{bottom:470.598933pt;}
.y12f{bottom:470.630000pt;}
.y7{bottom:473.569067pt;}
.y52{bottom:477.030000pt;}
.y18{bottom:480.799200pt;}
.yb1{bottom:487.512000pt;}
.y7e{bottom:488.198933pt;}
.y12e{bottom:488.230000pt;}
.y51{bottom:494.363333pt;}
.y17{bottom:498.399200pt;}
.yf8{bottom:501.039067pt;}
.yb0{bottom:505.112000pt;}
.y7d{bottom:505.798933pt;}
.y117{bottom:509.705733pt;}
.y50{bottom:511.696667pt;}
.yca{bottom:514.336933pt;}
.yf7{bottom:518.372400pt;}
.y16{bottom:521.332533pt;}
.yaf{bottom:522.712000pt;}
.y7c{bottom:523.398933pt;}
.y12d{bottom:523.429867pt;}
.y6{bottom:526.902400pt;}
.y116{bottom:527.039067pt;}
.yf6{bottom:535.705733pt;}
.yae{bottom:540.311867pt;}
.y7b{bottom:540.998933pt;}
.y12c{bottom:541.030000pt;}
.ye5{bottom:543.304133pt;}
.y115{bottom:544.372400pt;}
.y4f{bottom:546.363333pt;}
.yf5{bottom:553.039067pt;}
.yad{bottom:557.912000pt;}
.y7a{bottom:558.598933pt;}
.y15{bottom:560.265867pt;}
.y114{bottom:561.705733pt;}
.y4e{bottom:563.696667pt;}
.yf4{bottom:570.372400pt;}
.yac{bottom:575.512000pt;}
.y79{bottom:576.198933pt;}
.y12b{bottom:576.230000pt;}
.y14{bottom:577.865867pt;}
.y113{bottom:579.039067pt;}
.y5{bottom:580.235733pt;}
.y4d{bottom:581.030000pt;}
.yf3{bottom:587.705733pt;}
.yab{bottom:593.112000pt;}
.y78{bottom:593.798933pt;}
.y12a{bottom:593.830000pt;}
.y13{bottom:593.865867pt;}
.y4c{bottom:598.363333pt;}
.yaa{bottom:610.712000pt;}
.y77{bottom:611.398933pt;}
.y4b{bottom:615.696667pt;}
.y112{bottom:624.152000pt;}
.ycd{bottom:624.747067pt;}
.y12{bottom:627.465867pt;}
.ya9{bottom:628.311867pt;}
.y76{bottom:628.998933pt;}
.y129{bottom:629.030000pt;}
.y4a{bottom:633.030000pt;}
.y4{bottom:633.569067pt;}
.yf2{bottom:641.485333pt;}
.y11{bottom:645.065867pt;}
.ya8{bottom:645.912000pt;}
.y75{bottom:646.598933pt;}
.y128{bottom:646.630000pt;}
.y49{bottom:650.363333pt;}
.yf1{bottom:658.818667pt;}
.y10{bottom:662.665867pt;}
.y3b{bottom:662.814000pt;}
.ya7{bottom:663.512000pt;}
.y74{bottom:664.198933pt;}
.y127{bottom:664.230000pt;}
.y48{bottom:667.696667pt;}
.ye4{bottom:675.015467pt;}
.yf0{bottom:676.152000pt;}
.y3a{bottom:680.147333pt;}
.yf{bottom:680.265867pt;}
.ya6{bottom:681.112000pt;}
.y73{bottom:681.798933pt;}
.y126{bottom:681.830000pt;}
.y62{bottom:685.030000pt;}
.y3{bottom:686.902400pt;}
.yef{bottom:693.485333pt;}
.ye{bottom:697.865867pt;}
.ya5{bottom:698.711867pt;}
.y72{bottom:699.398933pt;}
.y47{bottom:702.363333pt;}
.yee{bottom:710.818667pt;}
.y39{bottom:714.814000pt;}
.yd{bottom:715.465867pt;}
.ya4{bottom:716.311867pt;}
.y93{bottom:716.998800pt;}
.y125{bottom:717.030000pt;}
.y46{bottom:719.696667pt;}
.ycc{bottom:720.747067pt;}
.y111{bottom:728.152000pt;}
.y38{bottom:732.147333pt;}
.yc{bottom:733.065867pt;}
.ya3{bottom:733.912000pt;}
.y71{bottom:734.598800pt;}
.y124{bottom:734.630000pt;}
.y45{bottom:737.030000pt;}
.y2{bottom:740.235733pt;}
.y37{bottom:749.480667pt;}
.yb{bottom:750.665867pt;}
.ya2{bottom:751.512000pt;}
.y70{bottom:752.198800pt;}
.y123{bottom:752.230000pt;}
.y61{bottom:754.363333pt;}
.ya{bottom:768.265867pt;}
.ya1{bottom:769.112000pt;}
.y6f{bottom:769.798800pt;}
.y44{bottom:771.696667pt;}
.yed{bottom:773.012800pt;}
.y36{bottom:784.147333pt;}
.ya0{bottom:786.711867pt;}
.y6e{bottom:787.398800pt;}
.y122{bottom:787.429867pt;}
.y43{bottom:789.030000pt;}
.yec{bottom:790.346133pt;}
.y9{bottom:791.199200pt;}
.y1{bottom:793.569067pt;}
.y35{bottom:801.480667pt;}
.y9f{bottom:804.311867pt;}
.y6d{bottom:804.998800pt;}
.y121{bottom:805.030000pt;}
.y42{bottom:806.363333pt;}
.ye3{bottom:806.726667pt;}
.yeb{bottom:807.679467pt;}
.ycb{bottom:816.747067pt;}
.y34{bottom:818.814000pt;}
.y9e{bottom:821.911867pt;}
.y6c{bottom:822.598800pt;}
.y120{bottom:822.630000pt;}
.y41{bottom:823.696667pt;}
.yea{bottom:825.012800pt;}
.y9d{bottom:839.511867pt;}
.y6b{bottom:840.198800pt;}
.y11f{bottom:840.230000pt;}
.y40{bottom:841.030000pt;}
.ye9{bottom:842.346133pt;}
.y2c{bottom:844.920533pt;}
.y33{bottom:853.480667pt;}
.y9c{bottom:857.111867pt;}
.y6a{bottom:857.798800pt;}
.y3f{bottom:858.363333pt;}
.y32{bottom:870.814000pt;}
.y9b{bottom:874.711867pt;}
.y69{bottom:875.398800pt;}
.y11e{bottom:875.429867pt;}
.y3e{bottom:875.696667pt;}
.y2b{bottom:880.120667pt;}
.y110{bottom:887.963067pt;}
.y31{bottom:888.147333pt;}
.y9a{bottom:892.311867pt;}
.y68{bottom:892.998800pt;}
.y3d{bottom:893.030000pt;}
.ye2{bottom:896.629733pt;}
.y10f{bottom:905.296400pt;}
.y99{bottom:909.911867pt;}
.y67{bottom:910.598800pt;}
.ye1{bottom:913.963067pt;}
.y2a{bottom:915.320533pt;}
.y10e{bottom:922.629733pt;}
.y30{bottom:922.814000pt;}
.y98{bottom:927.511867pt;}
.y66{bottom:928.198800pt;}
.ye0{bottom:931.296400pt;}
.ydc{bottom:938.438000pt;}
.y10d{bottom:939.963067pt;}
.y2f{bottom:940.147333pt;}
.y97{bottom:945.111867pt;}
.ydf{bottom:948.629733pt;}
.y29{bottom:950.520533pt;}
.y10c{bottom:957.296400pt;}
.y2e{bottom:957.480667pt;}
.yc6{bottom:962.711867pt;}
.y3c{bottom:963.958267pt;}
.yde{bottom:965.963067pt;}
.y10b{bottom:974.629733pt;}
.y65{bottom:977.774000pt;}
.y96{bottom:980.311867pt;}
.ydd{bottom:983.296400pt;}
.y28{bottom:985.720533pt;}
.y10a{bottom:991.963067pt;}
.y2d{bottom:997.480667pt;}
.y95{bottom:997.911867pt;}
.y63{bottom:1071.713067pt;}
.h9{height:34.704000pt;}
.hc{height:38.560000pt;}
.h5{height:40.859375pt;}
.ha{height:42.416000pt;}
.he{height:43.706667pt;}
.h4{height:44.945312pt;}
.h3{height:51.653333pt;}
.h7{height:84.832000pt;}
.h6{height:87.413333pt;}
.hb{height:95.360000pt;}
.hd{height:115.680000pt;}
.h2{height:143.040000pt;}
.h8{height:190.720000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:38.740133pt;}
.x12{left:74.078667pt;}
.x2{left:75.590533pt;}
.xd{left:109.606267pt;}
.x5{left:113.385867pt;}
.x4{left:160.629867pt;}
.x11{left:198.425200pt;}
.xe{left:209.385867pt;}
.x9{left:370.414133pt;}
.x6{left:373.340133pt;}
.x7{left:396.850400pt;}
.xa{left:869.291333pt;}
.x3{left:907.086533pt;}
.xf{left:941.102400pt;}
.x10{left:1040.881867pt;}
.xb{left:1097.007867pt;}
.xc{left:1202.504267pt;}
.x8{left:1228.346400pt;}
}




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