
    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_2818a8599c36d820a0545db9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_eeaf8ef1cd6a68aa65ed06c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_f22c8bc4e17a4fa251b47e32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_d9e0182c8a7b6b1bebf1b5c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_ca06b2e00cab6161354cf643.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_221967e59a8fb534a5188a5d.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-72.000600px;}
.v3{vertical-align:-19.807200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:64.829400px;}
.v1{vertical-align:72.000000px;}
.ls27{letter-spacing:-4.708800px;}
.ls2c{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.168120px;}
.ls20{letter-spacing:-0.144072px;}
.ls2e{letter-spacing:-0.134568px;}
.ls29{letter-spacing:-0.100872px;}
.ls2b{letter-spacing:-0.086400px;}
.ls2f{letter-spacing:-0.076896px;}
.ls21{letter-spacing:-0.067248px;}
.ls2d{letter-spacing:-0.064800px;}
.ls1f{letter-spacing:-0.048024px;}
.ls26{letter-spacing:-0.043200px;}
.ls24{letter-spacing:-0.021600px;}
.ls1e{letter-spacing:0.000000px;}
.lse{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.038412px;}
.lsa{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.048024px;}
.ls1b{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.072036px;}
.lsc{letter-spacing:0.086400px;}
.ls5{letter-spacing:0.096120px;}
.ls1d{letter-spacing:0.100872px;}
.ls7{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.129600px;}
.ls9{letter-spacing:0.151200px;}
.ls8{letter-spacing:0.172800px;}
.ls14{letter-spacing:0.194400px;}
.ls15{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.237600px;}
.ls17{letter-spacing:0.259200px;}
.lsf{letter-spacing:0.302400px;}
.ls16{letter-spacing:0.345600px;}
.ls18{letter-spacing:0.367200px;}
.ls19{letter-spacing:0.388800px;}
.ls10{letter-spacing:0.453600px;}
.ls1c{letter-spacing:49.752600px;}
.ls28{letter-spacing:51.170400px;}
.ls11{letter-spacing:51.472800px;}
.ls2a{letter-spacing:51.818400px;}
.ls13{letter-spacing:51.840000px;}
.ls12{letter-spacing:51.904800px;}
.ls2{letter-spacing:54.139200px;}
.ls6{letter-spacing:54.819396px;}
.ls3{letter-spacing:54.858600px;}
.ls25{letter-spacing:87.328800px;}
.ls23{letter-spacing:88.862400px;}
.ls1a{letter-spacing:798.552000px;}
.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;}
}
.ws1{word-spacing:-384.158412px;}
.ws0{word-spacing:-384.120000px;}
.ws40{word-spacing:-336.139128px;}
.ws12{word-spacing:-304.862400px;}
.ws16{word-spacing:-303.328800px;}
.ws53{word-spacing:-267.818400px;}
.ws9{word-spacing:-260.115264px;}
.ws8{word-spacing:-258.501312px;}
.ws4{word-spacing:-240.192036px;}
.ws2{word-spacing:-240.168024px;}
.ws6{word-spacing:-240.071976px;}
.ws7{word-spacing:-239.975928px;}
.ws59{word-spacing:-216.043200px;}
.ws6a{word-spacing:-216.000000px;}
.ws5b{word-spacing:-215.978400px;}
.ws6b{word-spacing:-215.956800px;}
.ws5d{word-spacing:-215.913600px;}
.ws2a{word-spacing:-211.291200px;}
.ws6d{word-spacing:-192.163104px;}
.ws6c{word-spacing:-192.105432px;}
.ws3{word-spacing:-186.597252px;}
.ws18{word-spacing:-167.551200px;}
.ws5f{word-spacing:-167.313600px;}
.ws22{word-spacing:-167.227200px;}
.ws55{word-spacing:-167.011200px;}
.ws1b{word-spacing:-166.989600px;}
.ws45{word-spacing:-166.903200px;}
.ws4a{word-spacing:-166.860000px;}
.ws56{word-spacing:-166.644000px;}
.ws5c{word-spacing:-166.622400px;}
.ws3f{word-spacing:-166.557600px;}
.ws5a{word-spacing:-166.536000px;}
.ws4d{word-spacing:-166.514400px;}
.ws49{word-spacing:-166.471200px;}
.ws61{word-spacing:-166.449600px;}
.ws14{word-spacing:-166.104000px;}
.ws4e{word-spacing:-165.585600px;}
.ws32{word-spacing:-165.456000px;}
.ws30{word-spacing:-165.153600px;}
.ws2c{word-spacing:-165.024000px;}
.ws58{word-spacing:-164.872800px;}
.ws3b{word-spacing:-164.700000px;}
.ws54{word-spacing:-164.397600px;}
.ws2b{word-spacing:-164.354400px;}
.ws17{word-spacing:-162.712800px;}
.ws48{word-spacing:-161.827200px;}
.wsb{word-spacing:-161.762400px;}
.ws21{word-spacing:-160.876800px;}
.ws46{word-spacing:-160.552800px;}
.ws47{word-spacing:-160.423200px;}
.ws5{word-spacing:-160.296120px;}
.ws15{word-spacing:-159.559200px;}
.ws52{word-spacing:-157.896000px;}
.ws51{word-spacing:-157.852800px;}
.wsa{word-spacing:-157.053600px;}
.wse{word-spacing:-155.973600px;}
.ws37{word-spacing:-155.671200px;}
.ws26{word-spacing:-155.584800px;}
.ws4c{word-spacing:-151.956000px;}
.ws4b{word-spacing:-151.783200px;}
.ws1a{word-spacing:-150.573600px;}
.ws27{word-spacing:-149.839200px;}
.ws2f{word-spacing:-148.716000px;}
.ws2e{word-spacing:-148.651200px;}
.ws2d{word-spacing:-143.337600px;}
.ws35{word-spacing:-138.931200px;}
.ws34{word-spacing:-138.909600px;}
.ws33{word-spacing:-137.786400px;}
.ws1d{word-spacing:-128.584800px;}
.ws44{word-spacing:-127.332000px;}
.ws43{word-spacing:-127.245600px;}
.ws25{word-spacing:-124.135200px;}
.ws38{word-spacing:-123.076800px;}
.ws24{word-spacing:-122.644800px;}
.ws20{word-spacing:-121.413600px;}
.ws29{word-spacing:-117.892800px;}
.ws19{word-spacing:-116.229600px;}
.ws3d{word-spacing:-116.121600px;}
.ws23{word-spacing:-115.149600px;}
.ws10{word-spacing:-113.184000px;}
.ws1f{word-spacing:-111.650400px;}
.ws57{word-spacing:-107.373600px;}
.ws42{word-spacing:-100.245600px;}
.ws41{word-spacing:-99.770400px;}
.wsd{word-spacing:-97.653600px;}
.ws13{word-spacing:-96.616800px;}
.wsc{word-spacing:-95.623200px;}
.ws11{word-spacing:-88.387200px;}
.ws4f{word-spacing:-83.570400px;}
.ws3e{word-spacing:-83.462400px;}
.ws50{word-spacing:-83.289600px;}
.ws3c{word-spacing:-81.756000px;}
.ws28{word-spacing:-74.606400px;}
.ws1c{word-spacing:-68.796000px;}
.ws3a{word-spacing:-47.563200px;}
.ws36{word-spacing:-28.555200px;}
.ws63{word-spacing:-25.941600px;}
.ws64{word-spacing:-25.812000px;}
.ws62{word-spacing:-25.768800px;}
.ws69{word-spacing:-24.753600px;}
.ws66{word-spacing:-24.645600px;}
.ws6e{word-spacing:0.000000px;}
.ws39{word-spacing:1.512000px;}
.ws1e{word-spacing:13.003200px;}
.ws31{word-spacing:19.612200px;}
.wsf{word-spacing:41.882400px;}
.ws5e{word-spacing:157.744800px;}
.ws60{word-spacing:877.881600px;}
.ws67{word-spacing:2061.633600px;}
.ws68{word-spacing:2075.824800px;}
.ws65{word-spacing:2191.039200px;}
._13{margin-left:-94.564800px;}
._12{margin-left:-92.296800px;}
._14{margin-left:-90.309600px;}
._11{margin-left:-88.538400px;}
._18{margin-left:-86.810400px;}
._2c{margin-left:-55.900800px;}
._2b{margin-left:-53.676000px;}
._2d{margin-left:-52.056000px;}
._2a{margin-left:-50.889600px;}
._c{margin-left:-26.899200px;}
._5{margin-left:-25.044624px;}
._35{margin-left:-23.427108px;}
._6{margin-left:-21.322656px;}
._16{margin-left:-18.978624px;}
._34{margin-left:-16.830180px;}
._23{margin-left:-15.465852px;}
._9{margin-left:-14.141412px;}
._3{margin-left:-13.098492px;}
._3d{margin-left:-11.577600px;}
._2{margin-left:-9.218880px;}
._a{margin-left:-6.859296px;}
._4{margin-left:-4.955148px;}
._0{margin-left:-3.841200px;}
._7{margin-left:-2.786112px;}
._8{margin-left:-1.576116px;}
._1{width:1.882188px;}
._25{width:4.557600px;}
._21{width:9.615636px;}
._1a{width:49.572000px;}
._15{width:51.493716px;}
._31{width:52.934328px;}
._19{width:55.234620px;}
._17{width:57.607200px;}
._d{width:60.156000px;}
._f{width:62.247348px;}
._3c{width:65.505924px;}
._1d{width:67.281372px;}
._28{width:68.536800px;}
._26{width:71.647200px;}
._b{width:77.772312px;}
._2f{width:79.336800px;}
._38{width:87.833484px;}
._37{width:90.082116px;}
._22{width:94.545360px;}
._1b{width:98.784972px;}
._10{width:101.759652px;}
._20{width:105.725412px;}
._36{width:117.647748px;}
._e{width:120.415824px;}
._3b{width:129.124800px;}
._1c{width:131.846112px;}
._33{width:134.026452px;}
._32{width:135.762804px;}
._24{width:142.667424px;}
._1e{width:148.477248px;}
._30{width:167.634000px;}
._40{width:190.144800px;}
._39{width:199.609032px;}
._1f{width:231.020064px;}
._41{width:236.667924px;}
._3a{width:290.188800px;}
._2e{width:331.589112px;}
._27{width:373.290852px;}
._43{width:490.280400px;}
._42{width:659.635848px;}
._29{width:1032.040200px;}
._3f{width:1256.143752px;}
._3e{width:1914.364800px;}
._44{width:2433.477600px;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:144.000000px;}
.fs2{font-size:160.200000px;}
.fs6{font-size:192.240000px;}
.fs4{font-size:216.000000px;}
.fs1{font-size:240.120000px;}
.fs3{font-size:336.240000px;}
.fs0{font-size:384.120000px;}
.y0{bottom:0.000000px;}
.y47{bottom:218.754450px;}
.y46{bottom:283.646250px;}
.y45{bottom:348.446250px;}
.y44{bottom:413.246250px;}
.y43{bottom:478.138050px;}
.y42{bottom:542.938050px;}
.y41{bottom:607.738050px;}
.y40{bottom:672.629850px;}
.y3f{bottom:737.429850px;}
.y3e{bottom:801.866250px;}
.y3d{bottom:867.028050px;}
.y3c{bottom:931.919850px;}
.y3b{bottom:996.719850px;}
.y8{bottom:1174.112526px;}
.y4d{bottom:1405.939050px;}
.y39{bottom:1443.652650px;}
.y4c{bottom:1470.739050px;}
.y38{bottom:1508.452650px;}
.y4b{bottom:1535.630850px;}
.y37{bottom:1573.344450px;}
.y5b{bottom:1621.949850px;}
.y36{bottom:1638.144450px;}
.y5a{bottom:1686.742350px;}
.y35{bottom:1702.944450px;}
.y59{bottom:1751.542350px;}
.y34{bottom:1767.744450px;}
.y58{bottom:1816.434150px;}
.y33{bottom:1832.636250px;}
.y57{bottom:1890.954150px;}
.y32{bottom:1897.436250px;}
.y31{bottom:1962.236250px;}
.y56{bottom:1965.565950px;}
.y30{bottom:2027.128050px;}
.y55{bottom:2040.085950px;}
.y2f{bottom:2091.753150px;}
.y54{bottom:2104.977750px;}
.y2e{bottom:2156.731350px;}
.y53{bottom:2169.777750px;}
.y2d{bottom:2221.439700px;}
.y52{bottom:2234.577750px;}
.y2c{bottom:2286.241500px;}
.y51{bottom:2299.469700px;}
.y2b{bottom:2351.219700px;}
.y50{bottom:2364.181500px;}
.y2a{bottom:2416.019700px;}
.y4f{bottom:2429.159700px;}
.y4e{bottom:2493.959700px;}
.y4a{bottom:2572.792650px;}
.y29{bottom:2635.335300px;}
.y49{bottom:2637.684450px;}
.y28{bottom:2700.135300px;}
.y48{bottom:2702.484450px;}
.y27{bottom:2765.027100px;}
.y26{bottom:2829.827100px;}
.y3a{bottom:2848.109550px;}
.y25{bottom:2894.627100px;}
.y24{bottom:2959.427100px;}
.y17{bottom:3016.132500px;}
.y23{bottom:3024.318900px;}
.y16{bottom:3080.932500px;}
.y22{bottom:3089.118900px;}
.y15{bottom:3145.732500px;}
.y21{bottom:3153.918900px;}
.y14{bottom:3210.624300px;}
.y20{bottom:3218.810700px;}
.y13{bottom:3275.424300px;}
.y1f{bottom:3283.610700px;}
.y12{bottom:3340.224300px;}
.y1e{bottom:3348.410700px;}
.y11{bottom:3405.116100px;}
.y1d{bottom:3413.302500px;}
.y10{bottom:3469.916100px;}
.y1c{bottom:3478.102500px;}
.yf{bottom:3534.716100px;}
.y1b{bottom:3542.902500px;}
.ye{bottom:3599.607900px;}
.y1a{bottom:3607.702500px;}
.yd{bottom:3664.407900px;}
.y19{bottom:3672.594300px;}
.yc{bottom:3729.207900px;}
.y18{bottom:3737.394300px;}
.yb{bottom:3794.007900px;}
.ya{bottom:3858.899700px;}
.y9{bottom:3923.699700px;}
.y7{bottom:3939.089700px;}
.y6{bottom:4040.609550px;}
.y5{bottom:4092.359568px;}
.y4{bottom:4182.359700px;}
.y3{bottom:4236.449700px;}
.y2{bottom:4336.802112px;}
.y1{bottom:4451.999700px;}
.y5e{bottom:4578.539850px;}
.y5d{bottom:4792.470354px;}
.y5c{bottom:4850.339400px;}
.h3{height:110.997949px;}
.h6{height:149.660156px;}
.h7{height:149.673956px;}
.ha{height:149.975963px;}
.h9{height:150.012956px;}
.hc{height:158.541680px;}
.hb{height:164.602838px;}
.h4{height:166.372207px;}
.h8{height:178.136719px;}
.h2{height:204.118066px;}
.hd{height:244.791914px;}
.h5{height:277.299492px;}
.h1{height:316.786465px;}
.h0{height:5055.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x9{left:132.029850px;}
.xd{left:143.821800px;}
.xf{left:314.910000px;}
.x10{left:333.269850px;}
.xe{left:405.900000px;}
.xc{left:482.040000px;}
.x6{left:558.359850px;}
.xb{left:578.069850px;}
.x1{left:624.780000px;}
.x2{left:747.544752px;}
.x3{left:875.879850px;}
.x4{left:1072.077960px;}
.x13{left:1138.229850px;}
.x5{left:1182.147879px;}
.x8{left:1463.580666px;}
.x12{left:1564.650186px;}
.x11{left:1587.329700px;}
.xa{left:2064.868050px;}
.x7{left:2222.550000px;}
@media print{
.v2{vertical-align:-64.000533pt;}
.v3{vertical-align:-17.606400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:57.626133pt;}
.v1{vertical-align:64.000000pt;}
.ls27{letter-spacing:-4.185600pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.149440pt;}
.ls20{letter-spacing:-0.128064pt;}
.ls2e{letter-spacing:-0.119616pt;}
.ls29{letter-spacing:-0.089664pt;}
.ls2b{letter-spacing:-0.076800pt;}
.ls2f{letter-spacing:-0.068352pt;}
.ls21{letter-spacing:-0.059776pt;}
.ls2d{letter-spacing:-0.057600pt;}
.ls1f{letter-spacing:-0.042688pt;}
.ls26{letter-spacing:-0.038400pt;}
.ls24{letter-spacing:-0.019200pt;}
.ls1e{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.034144pt;}
.lsa{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.042688pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.064032pt;}
.lsc{letter-spacing:0.076800pt;}
.ls5{letter-spacing:0.085440pt;}
.ls1d{letter-spacing:0.089664pt;}
.ls7{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.115200pt;}
.ls9{letter-spacing:0.134400pt;}
.ls8{letter-spacing:0.153600pt;}
.ls14{letter-spacing:0.172800pt;}
.ls15{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.211200pt;}
.ls17{letter-spacing:0.230400pt;}
.lsf{letter-spacing:0.268800pt;}
.ls16{letter-spacing:0.307200pt;}
.ls18{letter-spacing:0.326400pt;}
.ls19{letter-spacing:0.345600pt;}
.ls10{letter-spacing:0.403200pt;}
.ls1c{letter-spacing:44.224533pt;}
.ls28{letter-spacing:45.484800pt;}
.ls11{letter-spacing:45.753600pt;}
.ls2a{letter-spacing:46.060800pt;}
.ls13{letter-spacing:46.080000pt;}
.ls12{letter-spacing:46.137600pt;}
.ls2{letter-spacing:48.123733pt;}
.ls6{letter-spacing:48.728352pt;}
.ls3{letter-spacing:48.763200pt;}
.ls25{letter-spacing:77.625600pt;}
.ls23{letter-spacing:78.988800pt;}
.ls1a{letter-spacing:709.824000pt;}
.ws1{word-spacing:-341.474144pt;}
.ws0{word-spacing:-341.440000pt;}
.ws40{word-spacing:-298.790336pt;}
.ws12{word-spacing:-270.988800pt;}
.ws16{word-spacing:-269.625600pt;}
.ws53{word-spacing:-238.060800pt;}
.ws9{word-spacing:-231.213568pt;}
.ws8{word-spacing:-229.778944pt;}
.ws4{word-spacing:-213.504032pt;}
.ws2{word-spacing:-213.482688pt;}
.ws6{word-spacing:-213.397312pt;}
.ws7{word-spacing:-213.311936pt;}
.ws59{word-spacing:-192.038400pt;}
.ws6a{word-spacing:-192.000000pt;}
.ws5b{word-spacing:-191.980800pt;}
.ws6b{word-spacing:-191.961600pt;}
.ws5d{word-spacing:-191.923200pt;}
.ws2a{word-spacing:-187.814400pt;}
.ws6d{word-spacing:-170.811648pt;}
.ws6c{word-spacing:-170.760384pt;}
.ws3{word-spacing:-165.864224pt;}
.ws18{word-spacing:-148.934400pt;}
.ws5f{word-spacing:-148.723200pt;}
.ws22{word-spacing:-148.646400pt;}
.ws55{word-spacing:-148.454400pt;}
.ws1b{word-spacing:-148.435200pt;}
.ws45{word-spacing:-148.358400pt;}
.ws4a{word-spacing:-148.320000pt;}
.ws56{word-spacing:-148.128000pt;}
.ws5c{word-spacing:-148.108800pt;}
.ws3f{word-spacing:-148.051200pt;}
.ws5a{word-spacing:-148.032000pt;}
.ws4d{word-spacing:-148.012800pt;}
.ws49{word-spacing:-147.974400pt;}
.ws61{word-spacing:-147.955200pt;}
.ws14{word-spacing:-147.648000pt;}
.ws4e{word-spacing:-147.187200pt;}
.ws32{word-spacing:-147.072000pt;}
.ws30{word-spacing:-146.803200pt;}
.ws2c{word-spacing:-146.688000pt;}
.ws58{word-spacing:-146.553600pt;}
.ws3b{word-spacing:-146.400000pt;}
.ws54{word-spacing:-146.131200pt;}
.ws2b{word-spacing:-146.092800pt;}
.ws17{word-spacing:-144.633600pt;}
.ws48{word-spacing:-143.846400pt;}
.wsb{word-spacing:-143.788800pt;}
.ws21{word-spacing:-143.001600pt;}
.ws46{word-spacing:-142.713600pt;}
.ws47{word-spacing:-142.598400pt;}
.ws5{word-spacing:-142.485440pt;}
.ws15{word-spacing:-141.830400pt;}
.ws52{word-spacing:-140.352000pt;}
.ws51{word-spacing:-140.313600pt;}
.wsa{word-spacing:-139.603200pt;}
.wse{word-spacing:-138.643200pt;}
.ws37{word-spacing:-138.374400pt;}
.ws26{word-spacing:-138.297600pt;}
.ws4c{word-spacing:-135.072000pt;}
.ws4b{word-spacing:-134.918400pt;}
.ws1a{word-spacing:-133.843200pt;}
.ws27{word-spacing:-133.190400pt;}
.ws2f{word-spacing:-132.192000pt;}
.ws2e{word-spacing:-132.134400pt;}
.ws2d{word-spacing:-127.411200pt;}
.ws35{word-spacing:-123.494400pt;}
.ws34{word-spacing:-123.475200pt;}
.ws33{word-spacing:-122.476800pt;}
.ws1d{word-spacing:-114.297600pt;}
.ws44{word-spacing:-113.184000pt;}
.ws43{word-spacing:-113.107200pt;}
.ws25{word-spacing:-110.342400pt;}
.ws38{word-spacing:-109.401600pt;}
.ws24{word-spacing:-109.017600pt;}
.ws20{word-spacing:-107.923200pt;}
.ws29{word-spacing:-104.793600pt;}
.ws19{word-spacing:-103.315200pt;}
.ws3d{word-spacing:-103.219200pt;}
.ws23{word-spacing:-102.355200pt;}
.ws10{word-spacing:-100.608000pt;}
.ws1f{word-spacing:-99.244800pt;}
.ws57{word-spacing:-95.443200pt;}
.ws42{word-spacing:-89.107200pt;}
.ws41{word-spacing:-88.684800pt;}
.wsd{word-spacing:-86.803200pt;}
.ws13{word-spacing:-85.881600pt;}
.wsc{word-spacing:-84.998400pt;}
.ws11{word-spacing:-78.566400pt;}
.ws4f{word-spacing:-74.284800pt;}
.ws3e{word-spacing:-74.188800pt;}
.ws50{word-spacing:-74.035200pt;}
.ws3c{word-spacing:-72.672000pt;}
.ws28{word-spacing:-66.316800pt;}
.ws1c{word-spacing:-61.152000pt;}
.ws3a{word-spacing:-42.278400pt;}
.ws36{word-spacing:-25.382400pt;}
.ws63{word-spacing:-23.059200pt;}
.ws64{word-spacing:-22.944000pt;}
.ws62{word-spacing:-22.905600pt;}
.ws69{word-spacing:-22.003200pt;}
.ws66{word-spacing:-21.907200pt;}
.ws6e{word-spacing:0.000000pt;}
.ws39{word-spacing:1.344000pt;}
.ws1e{word-spacing:11.558400pt;}
.ws31{word-spacing:17.433067pt;}
.wsf{word-spacing:37.228800pt;}
.ws5e{word-spacing:140.217600pt;}
.ws60{word-spacing:780.339200pt;}
.ws67{word-spacing:1832.563200pt;}
.ws68{word-spacing:1845.177600pt;}
.ws65{word-spacing:1947.590400pt;}
._13{margin-left:-84.057600pt;}
._12{margin-left:-82.041600pt;}
._14{margin-left:-80.275200pt;}
._11{margin-left:-78.700800pt;}
._18{margin-left:-77.164800pt;}
._2c{margin-left:-49.689600pt;}
._2b{margin-left:-47.712000pt;}
._2d{margin-left:-46.272000pt;}
._2a{margin-left:-45.235200pt;}
._c{margin-left:-23.910400pt;}
._5{margin-left:-22.261888pt;}
._35{margin-left:-20.824096pt;}
._6{margin-left:-18.953472pt;}
._16{margin-left:-16.869888pt;}
._34{margin-left:-14.960160pt;}
._23{margin-left:-13.747424pt;}
._9{margin-left:-12.570144pt;}
._3{margin-left:-11.643104pt;}
._3d{margin-left:-10.291200pt;}
._2{margin-left:-8.194560pt;}
._a{margin-left:-6.097152pt;}
._4{margin-left:-4.404576pt;}
._0{margin-left:-3.414400pt;}
._7{margin-left:-2.476544pt;}
._8{margin-left:-1.400992pt;}
._1{width:1.673056pt;}
._25{width:4.051200pt;}
._21{width:8.547232pt;}
._1a{width:44.064000pt;}
._15{width:45.772192pt;}
._31{width:47.052736pt;}
._19{width:49.097440pt;}
._17{width:51.206400pt;}
._d{width:53.472000pt;}
._f{width:55.330976pt;}
._3c{width:58.227488pt;}
._1d{width:59.805664pt;}
._28{width:60.921600pt;}
._26{width:63.686400pt;}
._b{width:69.130944pt;}
._2f{width:70.521600pt;}
._38{width:78.074208pt;}
._37{width:80.072992pt;}
._22{width:84.040320pt;}
._1b{width:87.808864pt;}
._10{width:90.453024pt;}
._20{width:93.978144pt;}
._36{width:104.575776pt;}
._e{width:107.036288pt;}
._3b{width:114.777600pt;}
._1c{width:117.196544pt;}
._33{width:119.134624pt;}
._32{width:120.678048pt;}
._24{width:126.815488pt;}
._1e{width:131.979776pt;}
._30{width:149.008000pt;}
._40{width:169.017600pt;}
._39{width:177.430251pt;}
._1f{width:205.351168pt;}
._41{width:210.371488pt;}
._3a{width:257.945600pt;}
._2e{width:294.745877pt;}
._27{width:331.814091pt;}
._43{width:435.804800pt;}
._42{width:586.342976pt;}
._29{width:917.369067pt;}
._3f{width:1116.572224pt;}
._3e{width:1701.657600pt;}
._44{width:2163.091200pt;}
.fs5{font-size:128.000000pt;}
.fs2{font-size:142.400000pt;}
.fs6{font-size:170.880000pt;}
.fs4{font-size:192.000000pt;}
.fs1{font-size:213.440000pt;}
.fs3{font-size:298.880000pt;}
.fs0{font-size:341.440000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:194.448400pt;}
.y46{bottom:252.130000pt;}
.y45{bottom:309.730000pt;}
.y44{bottom:367.330000pt;}
.y43{bottom:425.011600pt;}
.y42{bottom:482.611600pt;}
.y41{bottom:540.211600pt;}
.y40{bottom:597.893200pt;}
.y3f{bottom:655.493200pt;}
.y3e{bottom:712.770000pt;}
.y3d{bottom:770.691600pt;}
.y3c{bottom:828.373200pt;}
.y3b{bottom:885.973200pt;}
.y8{bottom:1043.655579pt;}
.y4d{bottom:1249.723600pt;}
.y39{bottom:1283.246800pt;}
.y4c{bottom:1307.323600pt;}
.y38{bottom:1340.846800pt;}
.y4b{bottom:1365.005200pt;}
.y37{bottom:1398.528400pt;}
.y5b{bottom:1441.733200pt;}
.y36{bottom:1456.128400pt;}
.y5a{bottom:1499.326533pt;}
.y35{bottom:1513.728400pt;}
.y59{bottom:1556.926533pt;}
.y34{bottom:1571.328400pt;}
.y58{bottom:1614.608133pt;}
.y33{bottom:1629.010000pt;}
.y57{bottom:1680.848133pt;}
.y32{bottom:1686.610000pt;}
.y31{bottom:1744.210000pt;}
.y56{bottom:1747.169733pt;}
.y30{bottom:1801.891600pt;}
.y55{bottom:1813.409733pt;}
.y2f{bottom:1859.336133pt;}
.y54{bottom:1871.091333pt;}
.y2e{bottom:1917.094533pt;}
.y53{bottom:1928.691333pt;}
.y2d{bottom:1974.613067pt;}
.y52{bottom:1986.291333pt;}
.y2c{bottom:2032.214667pt;}
.y51{bottom:2043.973067pt;}
.y2b{bottom:2089.973067pt;}
.y50{bottom:2101.494667pt;}
.y2a{bottom:2147.573067pt;}
.y4f{bottom:2159.253067pt;}
.y4e{bottom:2216.853067pt;}
.y4a{bottom:2286.926800pt;}
.y29{bottom:2342.520267pt;}
.y49{bottom:2344.608400pt;}
.y28{bottom:2400.120267pt;}
.y48{bottom:2402.208400pt;}
.y27{bottom:2457.801867pt;}
.y26{bottom:2515.401867pt;}
.y3a{bottom:2531.652933pt;}
.y25{bottom:2573.001867pt;}
.y24{bottom:2630.601867pt;}
.y17{bottom:2681.006667pt;}
.y23{bottom:2688.283467pt;}
.y16{bottom:2738.606667pt;}
.y22{bottom:2745.883467pt;}
.y15{bottom:2796.206667pt;}
.y21{bottom:2803.483467pt;}
.y14{bottom:2853.888267pt;}
.y20{bottom:2861.165067pt;}
.y13{bottom:2911.488267pt;}
.y1f{bottom:2918.765067pt;}
.y12{bottom:2969.088267pt;}
.y1e{bottom:2976.365067pt;}
.y11{bottom:3026.769867pt;}
.y1d{bottom:3034.046667pt;}
.y10{bottom:3084.369867pt;}
.y1c{bottom:3091.646667pt;}
.yf{bottom:3141.969867pt;}
.y1b{bottom:3149.246667pt;}
.ye{bottom:3199.651467pt;}
.y1a{bottom:3206.846667pt;}
.yd{bottom:3257.251467pt;}
.y19{bottom:3264.528267pt;}
.yc{bottom:3314.851467pt;}
.y18{bottom:3322.128267pt;}
.yb{bottom:3372.451467pt;}
.ya{bottom:3430.133067pt;}
.y9{bottom:3487.733067pt;}
.y7{bottom:3501.413067pt;}
.y6{bottom:3591.652933pt;}
.y5{bottom:3637.652949pt;}
.y4{bottom:3717.653067pt;}
.y3{bottom:3765.733067pt;}
.y2{bottom:3854.935211pt;}
.y1{bottom:3957.333067pt;}
.y5e{bottom:4069.813200pt;}
.y5d{bottom:4259.973648pt;}
.y5c{bottom:4311.412800pt;}
.h3{height:98.664844pt;}
.h6{height:133.031250pt;}
.h7{height:133.043517pt;}
.ha{height:133.311967pt;}
.h9{height:133.344850pt;}
.hc{height:140.925938pt;}
.hb{height:146.313633pt;}
.h4{height:147.886406pt;}
.h8{height:158.343750pt;}
.h2{height:181.438281pt;}
.hd{height:217.592813pt;}
.h5{height:246.488437pt;}
.h1{height:281.587969pt;}
.h0{height:4493.333333pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x9{left:117.359867pt;}
.xd{left:127.841600pt;}
.xf{left:279.920000pt;}
.x10{left:296.239867pt;}
.xe{left:360.800000pt;}
.xc{left:428.480000pt;}
.x6{left:496.319867pt;}
.xb{left:513.839867pt;}
.x1{left:555.360000pt;}
.x2{left:664.484224pt;}
.x3{left:778.559867pt;}
.x4{left:952.958187pt;}
.x13{left:1011.759867pt;}
.x5{left:1050.798115pt;}
.x8{left:1300.960592pt;}
.x12{left:1390.800165pt;}
.x11{left:1410.959733pt;}
.xa{left:1835.438267pt;}
.x7{left:1975.600000pt;}
}




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