
    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_f0e1d6e88b5439cdbba6057c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_13c4e40de2272ffd3239184f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_0d81a9e038d1ad948156f80e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_873175a38dc99f542b53a174.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f34daa8a810059bb388a0da9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_297ef93a5d7882cdc16b09d4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_4fb278bc49443c339ff00c65.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cefdfe54894adc874630c789.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a07e1a78ca3c91d8f191255.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5a07e1a78ca3c91d8f191255.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5a07e1a78ca3c91d8f191255.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls3{letter-spacing:57.037202px;}
.ls1{letter-spacing:64.669275px;}
.ls2{letter-spacing:68.249024px;}
.ls4{letter-spacing:82.900125px;}
.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;}
}
.ws18{word-spacing:-19.941394px;}
.ws11{word-spacing:-0.059719px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.012056px;}
.ws17{word-spacing:0.083831px;}
.ws22{word-spacing:4.390331px;}
.ws8{word-spacing:4.462106px;}
.wsa{word-spacing:4.533881px;}
.ws1d{word-spacing:4.605656px;}
.ws1a{word-spacing:8.912156px;}
.ws4{word-spacing:8.983931px;}
.ws5{word-spacing:9.055706px;}
.ws19{word-spacing:13.362206px;}
.ws9{word-spacing:13.433981px;}
.wsc{word-spacing:13.505756px;}
.ws12{word-spacing:13.577531px;}
.ws1f{word-spacing:17.884031px;}
.wsb{word-spacing:17.955806px;}
.ws6{word-spacing:18.027581px;}
.ws1c{word-spacing:18.099356px;}
.wsd{word-spacing:22.477631px;}
.ws20{word-spacing:22.549406px;}
.ws1b{word-spacing:26.927681px;}
.wse{word-spacing:26.999456px;}
.ws1e{word-spacing:27.071231px;}
.ws14{word-spacing:28.219631px;}
.ws13{word-spacing:31.449506px;}
.wsf{word-spacing:31.521281px;}
.ws10{word-spacing:35.971331px;}
.ws15{word-spacing:36.043106px;}
.ws21{word-spacing:40.421381px;}
.ws16{word-spacing:40.493156px;}
.ws0{word-spacing:80.471831px;}
.ws3{word-spacing:2359.105390px;}
.ws2{word-spacing:2390.962556px;}
._4{margin-left:-7.117875px;}
._12{margin-left:-4.935938px;}
._1d{margin-left:-3.804075px;}
._1{margin-left:-2.655675px;}
._2{margin-left:-1.291950px;}
._23{width:1.212863px;}
._1b{width:19.594575px;}
._1c{width:20.599425px;}
._18{width:24.331725px;}
._19{width:28.997100px;}
._16{width:33.518925px;}
._1a{width:38.040750px;}
._17{width:42.490800px;}
._22{width:47.156175px;}
._25{width:50.601375px;}
._21{width:51.606225px;}
._20{width:55.912725px;}
._27{width:60.506325px;}
._26{width:65.028150px;}
._1f{width:68.114475px;}
._0{width:72.420975px;}
._1e{width:82.900125px;}
._24{width:84.120300px;}
._3{width:120.223125px;}
._5{width:1469.670330px;}
._7{width:1509.708545px;}
._15{width:1668.936896px;}
._11{width:1676.976010px;}
._f{width:1706.186439px;}
._14{width:1724.870929px;}
._e{width:1770.111049px;}
._b{width:1772.031369px;}
._9{width:1958.446561px;}
._a{width:1973.480764px;}
._d{width:1984.218839px;}
._6{width:1995.849592px;}
._10{width:2008.597780px;}
._8{width:2047.659898px;}
._13{width:2080.482474px;}
._c{width:2163.242978px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(113,151,74);}
.fs2{font-size:65.812500px;}
.fs1{font-size:71.775000px;}
.fs3{font-size:84.375000px;}
.fs0{font-size:96.187500px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.125000px;}
.y46{bottom:77.294861px;}
.ybf{bottom:113.700612px;}
.y45{bottom:114.440333px;}
.y8f{bottom:124.423043px;}
.y6e{bottom:130.904508px;}
.ybe{bottom:134.398853px;}
.y44{bottom:135.138575px;}
.y8e{bottom:145.121284px;}
.y6d{bottom:151.602749px;}
.ye4{bottom:152.387103px;}
.ybd{bottom:155.097095px;}
.y43{bottom:155.836816px;}
.y8d{bottom:165.819525px;}
.yfe{bottom:169.937417px;}
.y6c{bottom:172.300991px;}
.ye3{bottom:173.085345px;}
.ybc{bottom:175.795336px;}
.y42{bottom:176.535057px;}
.y8c{bottom:186.517766px;}
.yfd{bottom:190.635658px;}
.y6b{bottom:192.999232px;}
.ye2{bottom:193.783586px;}
.ybb{bottom:196.493577px;}
.y41{bottom:197.233298px;}
.y8b{bottom:207.216008px;}
.y6a{bottom:213.697473px;}
.ye1{bottom:214.481827px;}
.yba{bottom:217.191818px;}
.y40{bottom:217.931540px;}
.yfc{bottom:221.605362px;}
.y69{bottom:234.395714px;}
.yb9{bottom:237.890060px;}
.y3f{bottom:238.629781px;}
.y8a{bottom:244.414281px;}
.ye0{bottom:253.815834px;}
.yb8{bottom:258.588301px;}
.y3e{bottom:259.328022px;}
.y68{bottom:261.729699px;}
.yb7{bottom:279.286542px;}
.y3d{bottom:280.026263px;}
.yfb{bottom:283.931565px;}
.y89{bottom:285.724525px;}
.yb6{bottom:299.984783px;}
.y3c{bottom:300.724505px;}
.ydf{bottom:304.328015px;}
.yfa{bottom:304.629807px;}
.y88{bottom:313.058510px;}
.y67{bottom:313.880655px;}
.yb5{bottom:320.683025px;}
.y3b{bottom:321.422746px;}
.yde{bottom:325.026257px;}
.yf9{bottom:325.328048px;}
.y66{bottom:336.217448px;}
.yb4{bottom:341.381266px;}
.y3a{bottom:342.120987px;}
.ydd{bottom:345.724498px;}
.yf8{bottom:346.026289px;}
.y65{bottom:358.554294px;}
.yb3{bottom:362.079507px;}
.y87{bottom:363.570697px;}
.yf7{bottom:366.724530px;}
.ydc{bottom:367.058510px;}
.y39{bottom:369.454971px;}
.y64{bottom:380.891141px;}
.yb2{bottom:382.777748px;}
.y86{bottom:384.268938px;}
.yf6{bottom:387.422771px;}
.ydb{bottom:390.570696px;}
.y63{bottom:403.227987px;}
.y85{bottom:404.967180px;}
.yf5{bottom:408.121013px;}
.yda{bottom:411.268937px;}
.y38{bottom:419.967157px;}
.yb1{bottom:419.975949px;}
.y62{bottom:425.564834px;}
.y84{bottom:425.665421px;}
.yd9{bottom:431.967178px;}
.y37{bottom:440.665398px;}
.yb0{bottom:440.674191px;}
.yf4{bottom:446.819258px;}
.y61{bottom:447.901680px;}
.yd8{bottom:452.665420px;}
.y83{bottom:456.635124px;}
.y36{bottom:461.363640px;}
.yf3{bottom:467.517499px;}
.y60{bottom:477.147354px;}
.yaf{bottom:477.872464px;}
.yf2{bottom:488.215740px;}
.y35{bottom:488.697624px;}
.yd7{bottom:491.363665px;}
.yae{bottom:498.570705px;}
.yf1{bottom:508.913981px;}
.yd6{bottom:512.061888px;}
.y82{bottom:518.961332px;}
.yad{bottom:519.268946px;}
.y5f{bottom:527.659544px;}
.yf0{bottom:529.612222px;}
.y1b{bottom:536.415658px;}
.y34{bottom:539.209882px;}
.y107{bottom:539.659563px;}
.yac{bottom:539.967187px;}
.y5e{bottom:548.357785px;}
.yd5{bottom:550.760151px;}
.y33{bottom:559.908123px;}
.y106{bottom:560.357805px;}
.y81{bottom:560.357815px;}
.yab{bottom:560.665429px;}
.y1a{bottom:566.113892px;}
.yef{bottom:568.310467px;}
.y5d{bottom:569.056026px;}
.yd4{bottom:571.458392px;}
.y32{bottom:580.606364px;}
.y105{bottom:581.056046px;}
.y80{bottom:581.056056px;}
.yaa{bottom:581.363670px;}
.yee{bottom:589.008709px;}
.y5c{bottom:589.754267px;}
.yd3{bottom:592.156633px;}
.y19{bottom:595.812126px;}
.y31{bottom:601.304606px;}
.y7f{bottom:601.754297px;}
.ya9{bottom:602.061911px;}
.yed{bottom:609.706950px;}
.y5b{bottom:610.452509px;}
.y104{bottom:612.025749px;}
.yd2{bottom:612.854874px;}
.y30{bottom:622.002847px;}
.y7e{bottom:622.452538px;}
.ya8{bottom:622.760152px;}
.y18{bottom:625.192519px;}
.yec{bottom:630.405191px;}
.y5a{bottom:631.150750px;}
.yd1{bottom:633.553116px;}
.y2f{bottom:642.701088px;}
.ya7{bottom:643.458394px;}
.y59{bottom:651.848991px;}
.y17{bottom:653.165908px;}
.yd0{bottom:654.251357px;}
.y7d{bottom:663.849021px;}
.ya6{bottom:664.156635px;}
.yeb{bottom:669.103436px;}
.y2e{bottom:670.035072px;}
.y58{bottom:672.547268px;}
.y103{bottom:674.351946px;}
.ycf{bottom:674.949598px;}
.y16{bottom:681.139297px;}
.ya5{bottom:684.854876px;}
.yea{bottom:689.801677px;}
.y102{bottom:695.050187px;}
.y57{bottom:699.881218px;}
.y7c{bottom:705.245467px;}
.ya4{bottom:705.553117px;}
.y15{bottom:709.430550px;}
.ye9{bottom:710.499918px;}
.yce{bottom:713.647807px;}
.y101{bottom:715.748428px;}
.y2d{bottom:720.547222px;}
.y7b{bottom:725.943709px;}
.ya3{bottom:726.251323px;}
.ye8{bottom:731.198160px;}
.y14{bottom:739.128784px;}
.y2c{bottom:741.245499px;}
.y100{bottom:746.718132px;}
.ya2{bottom:746.949564px;}
.y56{bottom:750.393480px;}
.ye7{bottom:751.896401px;}
.ycd{bottom:752.346052px;}
.y2b{bottom:761.943741px;}
.y7a{bottom:767.340191px;}
.ya1{bottom:767.647805px;}
.y13{bottom:768.827018px;}
.y55{bottom:771.091721px;}
.ye6{bottom:772.594642px;}
.ycc{bottom:773.044329px;}
.ya0{bottom:788.346082px;}
.y54{bottom:791.789962px;}
.y2a{bottom:792.913445px;}
.ycb{bottom:793.742570px;}
.y12{bottom:798.207378px;}
.ye5{bottom:799.928626px;}
.y79{bottom:808.736709px;}
.y9f{bottom:809.044323px;}
.y53{bottom:812.488204px;}
.yca{bottom:814.440811px;}
.y11{bottom:826.180800px;}
.y9e{bottom:829.742565px;}
.y52{bottom:833.186445px;}
.yc9{bottom:835.139040px;}
.y9d{bottom:850.440806px;}
.y51{bottom:853.884686px;}
.y10{bottom:854.154189px;}
.y29{bottom:855.239641px;}
.yc8{bottom:855.837281px;}
.y78{bottom:860.404690px;}
.y9c{bottom:871.139047px;}
.y50{bottom:874.582927px;}
.y28{bottom:875.937882px;}
.yc7{bottom:876.535522px;}
.yf{bottom:882.127578px;}
.y9b{bottom:891.837288px;}
.y4f{bottom:895.281168px;}
.y27{bottom:896.636123px;}
.yc6{bottom:897.233763px;}
.ye{bottom:910.418850px;}
.y9a{bottom:912.535530px;}
.y4e{bottom:915.979410px;}
.y26{bottom:917.334365px;}
.yc5{bottom:917.932005px;}
.y77{bottom:922.730851px;}
.y99{bottom:933.233771px;}
.y4d{bottom:936.677651px;}
.y25{bottom:938.032606px;}
.yc4{bottom:938.630246px;}
.yd{bottom:939.799209px;}
.y76{bottom:943.429092px;}
.y98{bottom:953.932012px;}
.y4c{bottom:957.375892px;}
.y24{bottom:958.730865px;}
.yc3{bottom:959.328487px;}
.y6{bottom:964.127336px;}
.y75{bottom:964.127351px;}
.yc{bottom:967.772599px;}
.y97{bottom:974.630253px;}
.y23{bottom:979.429106px;}
.yc2{bottom:980.026764px;}
.y4b{bottom:984.709860px;}
.y5{bottom:984.825613px;}
.y74{bottom:995.097072px;}
.y96{bottom:995.328512px;}
.yb{bottom:995.746021px;}
.y22{bottom:1000.127348px;}
.yc1{bottom:1000.725006px;}
.y4{bottom:1005.523854px;}
.y95{bottom:1016.026754px;}
.yff{bottom:1016.026772px;}
.y21{bottom:1020.825589px;}
.ya{bottom:1024.037275px;}
.y3{bottom:1026.222095px;}
.y4a{bottom:1036.493557px;}
.y94{bottom:1036.724995px;}
.yc0{bottom:1039.423232px;}
.y20{bottom:1041.523830px;}
.y9{bottom:1053.735509px;}
.y93{bottom:1057.423236px;}
.y73{bottom:1057.423245px;}
.y1f{bottom:1062.222071px;}
.y92{bottom:1078.121477px;}
.y72{bottom:1078.121486px;}
.y1e{bottom:1082.920313px;}
.y8{bottom:1083.433743px;}
.y2{bottom:1098.588284px;}
.y91{bottom:1098.819719px;}
.y71{bottom:1098.819728px;}
.y49{bottom:1098.819737px;}
.y1d{bottom:1103.618554px;}
.y7{bottom:1116.588284px;}
.y90{bottom:1119.517960px;}
.y70{bottom:1119.517969px;}
.y48{bottom:1119.517978px;}
.y1c{bottom:1134.588292px;}
.y6f{bottom:1140.216210px;}
.y47{bottom:1140.216219px;}
.h7{height:47.302734px;}
.h5{height:47.913300px;}
.h4{height:52.254163px;}
.h3{height:52.289209px;}
.h8{height:56.236267px;}
.h6{height:61.427307px;}
.h2{height:70.027130px;}
.h1{height:1263.375000px;}
.h0{height:1264.500000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:106.275000px;}
.x2{left:124.274993px;}
.x3{left:133.274997px;}
.x4{left:160.274993px;}
.x6{left:187.274993px;}
.x5{left:777.497772px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:50.699735pt;}
.ls1{letter-spacing:57.483800pt;}
.ls2{letter-spacing:60.665799pt;}
.ls4{letter-spacing:73.689000pt;}
.ws18{word-spacing:-17.725684pt;}
.ws11{word-spacing:-0.053084pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.010716pt;}
.ws17{word-spacing:0.074516pt;}
.ws22{word-spacing:3.902516pt;}
.ws8{word-spacing:3.966316pt;}
.wsa{word-spacing:4.030116pt;}
.ws1d{word-spacing:4.093916pt;}
.ws1a{word-spacing:7.921916pt;}
.ws4{word-spacing:7.985716pt;}
.ws5{word-spacing:8.049516pt;}
.ws19{word-spacing:11.877516pt;}
.ws9{word-spacing:11.941316pt;}
.wsc{word-spacing:12.005116pt;}
.ws12{word-spacing:12.068916pt;}
.ws1f{word-spacing:15.896916pt;}
.wsb{word-spacing:15.960716pt;}
.ws6{word-spacing:16.024516pt;}
.ws1c{word-spacing:16.088316pt;}
.wsd{word-spacing:19.980116pt;}
.ws20{word-spacing:20.043916pt;}
.ws1b{word-spacing:23.935716pt;}
.wse{word-spacing:23.999516pt;}
.ws1e{word-spacing:24.063316pt;}
.ws14{word-spacing:25.084116pt;}
.ws13{word-spacing:27.955116pt;}
.wsf{word-spacing:28.018916pt;}
.ws10{word-spacing:31.974516pt;}
.ws15{word-spacing:32.038316pt;}
.ws21{word-spacing:35.930116pt;}
.ws16{word-spacing:35.993916pt;}
.ws0{word-spacing:71.530516pt;}
.ws3{word-spacing:2096.982569pt;}
.ws2{word-spacing:2125.300049pt;}
._4{margin-left:-6.327000pt;}
._12{margin-left:-4.387500pt;}
._1d{margin-left:-3.381400pt;}
._1{margin-left:-2.360600pt;}
._2{margin-left:-1.148400pt;}
._23{width:1.078100pt;}
._1b{width:17.417400pt;}
._1c{width:18.310600pt;}
._18{width:21.628200pt;}
._19{width:25.775200pt;}
._16{width:29.794600pt;}
._1a{width:33.814000pt;}
._17{width:37.769600pt;}
._22{width:41.916600pt;}
._25{width:44.979000pt;}
._21{width:45.872200pt;}
._20{width:49.700200pt;}
._27{width:53.783400pt;}
._26{width:57.802800pt;}
._1f{width:60.546200pt;}
._0{width:64.374200pt;}
._1e{width:73.689000pt;}
._24{width:74.773600pt;}
._3{width:106.865000pt;}
._5{width:1306.373627pt;}
._7{width:1341.963151pt;}
._15{width:1483.499463pt;}
._11{width:1490.645343pt;}
._f{width:1516.610168pt;}
._14{width:1533.218604pt;}
._e{width:1573.432043pt;}
._b{width:1575.138995pt;}
._9{width:1740.841388pt;}
._a{width:1754.205124pt;}
._d{width:1763.750079pt;}
._6{width:1774.088526pt;}
._10{width:1785.420249pt;}
._8{width:1820.142131pt;}
._13{width:1849.317755pt;}
._c{width:1922.882647pt;}
.fs2{font-size:58.500000pt;}
.fs1{font-size:63.800000pt;}
.fs3{font-size:75.000000pt;}
.fs0{font-size:85.500000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.000000pt;}
.y46{bottom:68.706543pt;}
.ybf{bottom:101.067211pt;}
.y45{bottom:101.724741pt;}
.y8f{bottom:110.598260pt;}
.y6e{bottom:116.359563pt;}
.ybe{bottom:119.465648pt;}
.y44{bottom:120.123177pt;}
.y8e{bottom:128.996697pt;}
.y6d{bottom:134.757999pt;}
.ye4{bottom:135.455203pt;}
.ybd{bottom:137.864084pt;}
.y43{bottom:138.521614pt;}
.y8d{bottom:147.395134pt;}
.yfe{bottom:151.055481pt;}
.y6c{bottom:153.156436pt;}
.ye3{bottom:153.853640pt;}
.ybc{bottom:156.262521pt;}
.y42{bottom:156.920051pt;}
.y8c{bottom:165.793570pt;}
.yfd{bottom:169.453918pt;}
.y6b{bottom:171.554873pt;}
.ye2{bottom:172.252076pt;}
.ybb{bottom:174.660958pt;}
.y41{bottom:175.318487pt;}
.y8b{bottom:184.192007pt;}
.y6a{bottom:189.953309pt;}
.ye1{bottom:190.650513pt;}
.yba{bottom:193.059394pt;}
.y40{bottom:193.716924pt;}
.yfc{bottom:196.982544pt;}
.y69{bottom:208.351746pt;}
.yb9{bottom:211.457831pt;}
.y3f{bottom:212.115361pt;}
.y8a{bottom:217.257138pt;}
.ye0{bottom:225.614075pt;}
.yb8{bottom:229.856267pt;}
.y3e{bottom:230.513797pt;}
.y68{bottom:232.648621pt;}
.yb7{bottom:248.254704pt;}
.y3d{bottom:248.912234pt;}
.yfb{bottom:252.383614pt;}
.y89{bottom:253.977356pt;}
.yb6{bottom:266.653141pt;}
.y3c{bottom:267.310671pt;}
.ydf{bottom:270.513792pt;}
.yfa{bottom:270.782050pt;}
.y88{bottom:278.274231pt;}
.y67{bottom:279.005027pt;}
.yb5{bottom:285.051577pt;}
.y3b{bottom:285.709107pt;}
.yde{bottom:288.912228pt;}
.yf9{bottom:289.180487pt;}
.y66{bottom:298.859953pt;}
.yb4{bottom:303.450014pt;}
.y3a{bottom:304.107544pt;}
.ydd{bottom:307.310665pt;}
.yf8{bottom:307.578924pt;}
.y65{bottom:318.714928pt;}
.yb3{bottom:321.848451pt;}
.y87{bottom:323.173953pt;}
.yf7{bottom:325.977360pt;}
.ydc{bottom:326.274231pt;}
.y39{bottom:328.404419pt;}
.y64{bottom:338.569903pt;}
.yb2{bottom:340.246887pt;}
.y86{bottom:341.572390pt;}
.yf6{bottom:344.375797pt;}
.ydb{bottom:347.173952pt;}
.y63{bottom:358.424878pt;}
.y85{bottom:359.970826pt;}
.yf5{bottom:362.774233pt;}
.yda{bottom:365.572389pt;}
.y38{bottom:373.304140pt;}
.yb1{bottom:373.311955pt;}
.y62{bottom:378.279852pt;}
.y84{bottom:378.369263pt;}
.yd9{bottom:383.970825pt;}
.y37{bottom:391.702576pt;}
.yb0{bottom:391.710392pt;}
.yf4{bottom:397.172673pt;}
.y61{bottom:398.134827pt;}
.yd8{bottom:402.369262pt;}
.y83{bottom:405.897888pt;}
.y36{bottom:410.101013pt;}
.yf3{bottom:415.571110pt;}
.y60{bottom:424.130981pt;}
.yaf{bottom:424.775523pt;}
.yf2{bottom:433.969547pt;}
.y35{bottom:434.397888pt;}
.yd7{bottom:436.767702pt;}
.yae{bottom:443.173960pt;}
.yf1{bottom:452.367983pt;}
.yd6{bottom:455.166122pt;}
.y82{bottom:461.298962pt;}
.yad{bottom:461.572397pt;}
.y5f{bottom:469.030706pt;}
.yf0{bottom:470.766420pt;}
.y1b{bottom:476.813918pt;}
.y34{bottom:479.297673pt;}
.y107{bottom:479.697390pt;}
.yac{bottom:479.970833pt;}
.y5e{bottom:487.429142pt;}
.yd5{bottom:489.564578pt;}
.y33{bottom:497.696109pt;}
.y106{bottom:498.095826pt;}
.y81{bottom:498.095835pt;}
.yab{bottom:498.369270pt;}
.y1a{bottom:503.212349pt;}
.yef{bottom:505.164860pt;}
.y5d{bottom:505.827579pt;}
.yd4{bottom:507.963015pt;}
.y32{bottom:516.094546pt;}
.y105{bottom:516.494263pt;}
.y80{bottom:516.494272pt;}
.yaa{bottom:516.767707pt;}
.yee{bottom:523.563297pt;}
.y5c{bottom:524.226015pt;}
.yd3{bottom:526.361452pt;}
.y19{bottom:529.610779pt;}
.y31{bottom:534.492983pt;}
.y7f{bottom:534.892708pt;}
.ya9{bottom:535.166143pt;}
.yed{bottom:541.961733pt;}
.y5b{bottom:542.624452pt;}
.y104{bottom:544.022888pt;}
.yd2{bottom:544.759888pt;}
.y30{bottom:552.891419pt;}
.y7e{bottom:553.291145pt;}
.ya8{bottom:553.564580pt;}
.y18{bottom:555.726683pt;}
.yec{bottom:560.360170pt;}
.y5a{bottom:561.022889pt;}
.yd1{bottom:563.158325pt;}
.y2f{bottom:571.289856pt;}
.ya7{bottom:571.963016pt;}
.y59{bottom:579.421325pt;}
.y17{bottom:580.591918pt;}
.yd0{bottom:581.556762pt;}
.y7d{bottom:590.088018pt;}
.ya6{bottom:590.361453pt;}
.yeb{bottom:594.758610pt;}
.y2e{bottom:595.586731pt;}
.y58{bottom:597.819794pt;}
.y103{bottom:599.423952pt;}
.ycf{bottom:599.955198pt;}
.y16{bottom:605.457153pt;}
.ya5{bottom:608.759890pt;}
.yea{bottom:613.157046pt;}
.y102{bottom:617.822388pt;}
.y57{bottom:622.116638pt;}
.y7c{bottom:626.884860pt;}
.ya4{bottom:627.158326pt;}
.y15{bottom:630.604933pt;}
.ye9{bottom:631.555483pt;}
.yce{bottom:634.353606pt;}
.y101{bottom:636.220825pt;}
.y2d{bottom:640.486420pt;}
.y7b{bottom:645.283296pt;}
.ya3{bottom:645.556731pt;}
.ye8{bottom:649.953920pt;}
.y14{bottom:657.003364pt;}
.y2c{bottom:658.884888pt;}
.y100{bottom:663.749451pt;}
.ya2{bottom:663.955168pt;}
.y56{bottom:667.016426pt;}
.ye7{bottom:668.352356pt;}
.ycd{bottom:668.752046pt;}
.y2b{bottom:677.283325pt;}
.y7a{bottom:682.080170pt;}
.ya1{bottom:682.353604pt;}
.y13{bottom:683.401794pt;}
.y55{bottom:685.414863pt;}
.ye6{bottom:686.750793pt;}
.ycc{bottom:687.150515pt;}
.ya0{bottom:700.752073pt;}
.y54{bottom:703.813300pt;}
.y2a{bottom:704.811951pt;}
.ycb{bottom:705.548951pt;}
.y12{bottom:709.517669pt;}
.ye5{bottom:711.047668pt;}
.y79{bottom:718.877075pt;}
.y9f{bottom:719.150510pt;}
.y53{bottom:722.211736pt;}
.yca{bottom:723.947388pt;}
.y11{bottom:734.382933pt;}
.y9e{bottom:737.548946pt;}
.y52{bottom:740.610173pt;}
.yc9{bottom:742.345813pt;}
.y9d{bottom:755.947383pt;}
.y51{bottom:759.008610pt;}
.y10{bottom:759.248168pt;}
.y29{bottom:760.213014pt;}
.yc8{bottom:760.744250pt;}
.y78{bottom:764.804169pt;}
.y9c{bottom:774.345820pt;}
.y50{bottom:777.407046pt;}
.y28{bottom:778.611451pt;}
.yc7{bottom:779.142686pt;}
.yf{bottom:784.113403pt;}
.y9b{bottom:792.744256pt;}
.y4f{bottom:795.805483pt;}
.y27{bottom:797.009888pt;}
.yc6{bottom:797.541123pt;}
.ye{bottom:809.261200pt;}
.y9a{bottom:811.142693pt;}
.y4e{bottom:814.203920pt;}
.y26{bottom:815.408324pt;}
.yc5{bottom:815.939560pt;}
.y77{bottom:820.205201pt;}
.y99{bottom:829.541130pt;}
.y4d{bottom:832.602356pt;}
.y25{bottom:833.806761pt;}
.yc4{bottom:834.337996pt;}
.yd{bottom:835.377075pt;}
.y76{bottom:838.603637pt;}
.y98{bottom:847.939566pt;}
.y4c{bottom:851.000793pt;}
.y24{bottom:852.205213pt;}
.yc3{bottom:852.736433pt;}
.y6{bottom:857.002076pt;}
.y75{bottom:857.002090pt;}
.yc{bottom:860.242310pt;}
.y97{bottom:866.338003pt;}
.y23{bottom:870.603650pt;}
.yc2{bottom:871.134902pt;}
.y4b{bottom:875.297653pt;}
.y5{bottom:875.400545pt;}
.y74{bottom:884.530731pt;}
.y96{bottom:884.736455pt;}
.yb{bottom:885.107574pt;}
.y22{bottom:889.002087pt;}
.yc1{bottom:889.533338pt;}
.y4{bottom:893.798981pt;}
.y95{bottom:903.134892pt;}
.yff{bottom:903.134908pt;}
.y21{bottom:907.400523pt;}
.ya{bottom:910.255355pt;}
.y3{bottom:912.197418pt;}
.y4a{bottom:921.327606pt;}
.y94{bottom:921.533329pt;}
.yc0{bottom:923.931762pt;}
.y20{bottom:925.798960pt;}
.y9{bottom:936.653786pt;}
.y93{bottom:939.931765pt;}
.y73{bottom:939.931773pt;}
.y1f{bottom:944.197397pt;}
.y92{bottom:958.330202pt;}
.y72{bottom:958.330210pt;}
.y1e{bottom:962.595833pt;}
.y8{bottom:963.052216pt;}
.y2{bottom:976.522919pt;}
.y91{bottom:976.728639pt;}
.y71{bottom:976.728647pt;}
.y49{bottom:976.728655pt;}
.y1d{bottom:980.994270pt;}
.y7{bottom:992.522919pt;}
.y90{bottom:995.127075pt;}
.y70{bottom:995.127083pt;}
.y48{bottom:995.127091pt;}
.y1c{bottom:1008.522926pt;}
.y6f{bottom:1013.525520pt;}
.y47{bottom:1013.525528pt;}
.h7{height:42.046875pt;}
.h5{height:42.589600pt;}
.h4{height:46.448145pt;}
.h3{height:46.479297pt;}
.h8{height:49.987793pt;}
.h6{height:54.602051pt;}
.h2{height:62.246338pt;}
.h1{height:1123.000000pt;}
.h0{height:1124.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:94.466667pt;}
.x2{left:110.466660pt;}
.x3{left:118.466664pt;}
.x4{left:142.466661pt;}
.x6{left:166.466660pt;}
.x5{left:691.109131pt;}
}




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