
    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_d64b8bf3d6fc97f6f4fc26f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_b2cb8772d62f118065a88645.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_41910948e6dd92f5ffa3c568.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_71a4a051ce1d4e21d360adb3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_3bb92a741756b10c92b4759b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_d8b324bc39422e7eaa45c7b1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_bbce97e9547f4dcc95509013.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_a4ac63b216e1bda61e97bd4f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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_a2e686307b0a7e050b67f37d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_4885b76e5af9e880eb44d77c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_d8b324bc39422e7eaa45c7b1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_442071ee9d2e1a5eb8a5e331.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2c32dfa987f8664a9c681c27.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fe0d90771d48d097ef16451c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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);}
.v3{vertical-align:-91.079586px;}
.v2{vertical-align:-23.760001px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.136003px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000025px;}
.ls2{letter-spacing:1.499998px;}
.ls3{letter-spacing:23.010000px;}
.ls4{letter-spacing:198.510000px;}
.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;}
}
.ws0{word-spacing:-19.080000px;}
.ws4{word-spacing:-15.900000px;}
.ws5{word-spacing:-15.642000px;}
.ws2{word-spacing:-10.494000px;}
.ws3{word-spacing:-9.540000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-15.634394px;}
._6{margin-left:-8.639464px;}
._14{margin-left:-7.314473px;}
._0{margin-left:-6.232912px;}
._1{margin-left:-4.814755px;}
._5{margin-left:-3.637427px;}
._3{margin-left:-2.368697px;}
._4{margin-left:-1.019017px;}
._12{width:1.187043px;}
._11{width:23.010000px;}
._13{width:49.798827px;}
._f{width:1796.187450px;}
._b{width:1797.374550px;}
._e{width:1812.586825px;}
._9{width:1865.428319px;}
._10{width:1973.339420px;}
._c{width:1980.396230px;}
._8{width:2018.139337px;}
._a{width:2149.039792px;}
._d{width:2253.533129px;}
._7{width:2383.550633px;}
.fc3{color:rgb(204,0,0);}
.fc2{color:rgb(17,85,204);}
.fc4{color:rgb(0,176,240);}
.fc1{color:rgb(69,84,107);}
.fc6{color:rgb(67,67,67);}
.fc5{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:39.600001px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000003px;}
.fs3{font-size:83.999997px;}
.fsa{font-size:96.000003px;}
.fs6{font-size:108.000000px;}
.fsb{font-size:119.999997px;}
.fs1{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.yb3{bottom:12.247062px;}
.ya9{bottom:12.247427px;}
.yaf{bottom:12.247793px;}
.yad{bottom:12.247794px;}
.y97{bottom:15.217398px;}
.ybc{bottom:15.217760px;}
.y9d{bottom:15.217764px;}
.ya2{bottom:15.217766px;}
.yb2{bottom:32.047362px;}
.yac{bottom:32.047719px;}
.ybb{bottom:37.987295px;}
.ya1{bottom:37.987301px;}
.y9c{bottom:37.987659px;}
.y96{bottom:37.987661px;}
.y2{bottom:38.572500px;}
.yb1{bottom:51.847647px;}
.ya0{bottom:60.757571px;}
.y9b{bottom:60.757929px;}
.y51{bottom:60.967395px;}
.y26{bottom:60.967485px;}
.y8e{bottom:60.967770px;}
.y9f{bottom:83.527091px;}
.y9a{bottom:83.527824px;}
.y99{bottom:106.298087px;}
.y4f{bottom:118.080165px;}
.ydf{bottom:118.080527px;}
.y7b{bottom:130.140165px;}
.y25{bottom:132.262528px;}
.y50{bottom:136.080167px;}
.ye0{bottom:136.080527px;}
.ye2{bottom:148.140527px;}
.y7a{bottom:154.080165px;}
.y24{bottom:155.032515px;}
.y4e{bottom:169.089165px;}
.y7c{bottom:172.080163px;}
.ye1{bottom:172.080527px;}
.y23{bottom:177.802515px;}
.y94{bottom:184.305291px;}
.y4d{bottom:191.859240px;}
.y22{bottom:200.572500px;}
.y4c{bottom:214.629143px;}
.y79{bottom:218.138905px;}
.y21{bottom:223.342485px;}
.ybe{bottom:225.299556px;}
.ybd{bottom:228.269528px;}
.y4b{bottom:237.399038px;}
.y106{bottom:237.599352px;}
.y78{bottom:240.909168px;}
.y8d{bottom:241.274655px;}
.y20{bottom:246.112485px;}
.y4a{bottom:260.169120px;}
.y105{bottom:260.368882px;}
.y77{bottom:263.679067px;}
.y8c{bottom:264.044910px;}
.yba{bottom:264.944831px;}
.yde{bottom:268.218982px;}
.y1f{bottom:268.882560px;}
.y49{bottom:282.939195px;}
.y104{bottom:283.139145px;}
.y76{bottom:286.448967px;}
.y8b{bottom:286.814805px;}
.yb9{bottom:290.684698px;}
.ydd{bottom:290.989245px;}
.y1e{bottom:291.652455px;}
.y48{bottom:305.709103px;}
.y103{bottom:305.909415px;}
.y75{bottom:309.226319px;}
.y8a{bottom:309.585075px;}
.ydc{bottom:313.758780px;}
.y1d{bottom:314.422530px;}
.yb8{bottom:327.359615px;}
.y47{bottom:328.479000px;}
.y102{bottom:328.678950px;}
.y74{bottom:332.045895px;}
.y89{bottom:332.354970px;}
.ydb{bottom:336.536129px;}
.y1c{bottom:337.192440px;}
.y46{bottom:351.249075px;}
.yb7{bottom:353.099849px;}
.y73{bottom:354.815778px;}
.y88{bottom:355.125224px;}
.yda{bottom:359.363519px;}
.y1b{bottom:359.962515px;}
.y101{bottom:363.786555px;}
.y45{bottom:374.019164px;}
.y72{bottom:377.585681px;}
.y87{bottom:377.894767px;}
.yd9{bottom:382.182372px;}
.y1a{bottom:382.732500px;}
.yb6{bottom:389.774779px;}
.y44{bottom:396.789060px;}
.y71{bottom:400.355944px;}
.y86{bottom:400.665030px;}
.yd8{bottom:404.959724px;}
.y19{bottom:405.502500px;}
.yb5{bottom:412.544676px;}
.y43{bottom:419.559135px;}
.y100{bottom:420.568599px;}
.y70{bottom:423.125838px;}
.y85{bottom:423.434556px;}
.yd7{bottom:427.786379px;}
.y18{bottom:428.272485px;}
.y42{bottom:442.329210px;}
.yff{bottom:443.339595px;}
.y6f{bottom:445.895737px;}
.y84{bottom:446.204823px;}
.yd6{bottom:450.605220px;}
.y17{bottom:451.042470px;}
.yb4{bottom:452.189939px;}
.y41{bottom:465.099112px;}
.yfe{bottom:466.109115px;}
.y6e{bottom:468.665637px;}
.y83{bottom:468.975088px;}
.yd5{bottom:473.376210px;}
.y16{bottom:473.812455px;}
.y40{bottom:487.869196px;}
.yb0{bottom:488.865228px;}
.yfd{bottom:488.879387px;}
.y6d{bottom:491.442989px;}
.y82{bottom:491.744985px;}
.y15{bottom:497.250000px;}
.yd4{bottom:504.148440px;}
.y3f{bottom:510.639090px;}
.yfc{bottom:511.648920px;}
.y6c{bottom:514.262193px;}
.y81{bottom:514.514880px;}
.y14{bottom:522.090045px;}
.yae{bottom:528.465083px;}
.y3e{bottom:533.409165px;}
.yfb{bottom:534.419175px;}
.y6b{bottom:537.032458px;}
.y80{bottom:537.285144px;}
.y13{bottom:546.929955px;}
.yd3{bottom:555.125482px;}
.y3d{bottom:556.179068px;}
.yfa{bottom:557.188710px;}
.y6a{bottom:559.802355px;}
.y7f{bottom:560.055042px;}
.yab{bottom:565.139646px;}
.y12{bottom:571.769985px;}
.yd2{bottom:577.895745px;}
.y3c{bottom:578.949148px;}
.yf9{bottom:579.958977px;}
.y69{bottom:582.572250px;}
.y7e{bottom:582.824938px;}
.yaa{bottom:584.939938px;}
.y11{bottom:596.610030px;}
.yd1{bottom:600.665271px;}
.y3b{bottom:601.719045px;}
.yf8{bottom:602.729237px;}
.y68{bottom:605.349614px;}
.y7d{bottom:605.594835px;}
.y10{bottom:621.450030px;}
.ya8{bottom:621.614864px;}
.yd0{bottom:623.436265px;}
.y3a{bottom:624.489128px;}
.yf7{bottom:625.498770px;}
.y67{bottom:628.169187px;}
.yf{bottom:645.622515px;}
.ycf{bottom:646.205802px;}
.y39{bottom:647.259023px;}
.yf6{bottom:648.269040px;}
.y66{bottom:650.946539px;}
.ya7{bottom:658.289794px;}
.ye{bottom:668.392500px;}
.yce{bottom:668.976062px;}
.y38{bottom:670.029105px;}
.yf5{bottom:671.039295px;}
.y65{bottom:673.766100px;}
.ya6{bottom:681.059691px;}
.y115{bottom:690.832269px;}
.yd{bottom:691.162498px;}
.ycd{bottom:691.745595px;}
.y37{bottom:692.799000px;}
.yf4{bottom:693.808829px;}
.y64{bottom:696.535998px;}
.y114{bottom:713.603265px;}
.yc{bottom:713.932485px;}
.y36{bottom:715.569083px;}
.yf3{bottom:716.579092px;}
.y63{bottom:719.305901px;}
.ya5{bottom:720.704959px;}
.ycc{bottom:722.517825px;}
.y113{bottom:736.372065px;}
.yb{bottom:738.037485px;}
.y35{bottom:738.339165px;}
.yf2{bottom:739.349355px;}
.y62{bottom:742.075795px;}
.ya4{bottom:743.474856px;}
.y112{bottom:759.142329px;}
.ya{bottom:763.612485px;}
.y61{bottom:764.845878px;}
.ycb{bottom:773.496332px;}
.yf1{bottom:774.456975px;}
.y34{bottom:774.781605px;}
.y111{bottom:781.912585px;}
.y9e{bottom:783.120109px;}
.y60{bottom:787.615957px;}
.yca{bottom:796.265865px;}
.y9{bottom:800.894984px;}
.y110{bottom:804.682852px;}
.y5f{bottom:810.385857px;}
.y10f{bottom:827.452382px;}
.yf0{bottom:831.239002px;}
.yc9{bottom:831.373470px;}
.y5e{bottom:833.163209px;}
.y33{bottom:837.369015px;}
.y10e{bottom:850.221915px;}
.ya3{bottom:851.429436px;}
.yef{bottom:854.009265px;}
.y5d{bottom:855.982410px;}
.y32{bottom:857.169120px;}
.y8{bottom:859.215012px;}
.yee{bottom:876.778800px;}
.y31{bottom:881.469045px;}
.y5c{bottom:882.090030px;}
.y10d{bottom:885.329535px;}
.yc8{bottom:888.155504px;}
.y98{bottom:891.074706px;}
.yed{bottom:899.556884px;}
.y30{bottom:904.893133px;}
.yc7{bottom:910.925767px;}
.y5b{bottom:911.872605px;}
.y7{bottom:913.034990px;}
.yec{bottom:922.375728px;}
.y2f{bottom:929.242545px;}
.yc6{bottom:933.696030px;}
.y5a{bottom:934.642693px;}
.y10c{bottom:942.113031px;}
.yeb{bottom:945.145997px;}
.y2e{bottom:953.542470px;}
.yc5{bottom:956.465565px;}
.y59{bottom:957.412590px;}
.y95{bottom:959.385132px;}
.y10b{bottom:964.882557px;}
.y6{bottom:966.854999px;}
.yea{bottom:967.916256px;}
.y2d{bottom:977.842395px;}
.yc4{bottom:979.242914px;}
.y58{bottom:980.182485px;}
.y10a{bottom:987.652091px;}
.ye9{bottom:990.692879px;}
.yc3{bottom:1002.069581px;}
.y2c{bottom:1002.142508px;}
.y57{bottom:1002.952566px;}
.y109{bottom:1010.423084px;}
.ye8{bottom:1013.512442px;}
.yc2{bottom:1024.896240px;}
.y5{bottom:1025.175014px;}
.y2b{bottom:1026.442434px;}
.y93{bottom:1029.142325px;}
.y108{bottom:1033.192617px;}
.ye7{bottom:1036.281975px;}
.yc1{bottom:1047.722901px;}
.y56{bottom:1048.492544px;}
.y2a{bottom:1050.742544px;}
.y92{bottom:1051.912590px;}
.ye6{bottom:1059.052971px;}
.y107{bottom:1068.300234px;}
.yc0{bottom:1070.542470px;}
.y55{bottom:1071.262442px;}
.y4{bottom:1072.147500px;}
.y91{bottom:1074.682120px;}
.y29{bottom:1075.042470px;}
.ye5{bottom:1081.822501px;}
.ybf{bottom:1093.312734px;}
.y54{bottom:1094.032523px;}
.y90{bottom:1097.452383px;}
.y28{bottom:1102.312551px;}
.ye4{bottom:1104.592764px;}
.y3{bottom:1106.625000px;}
.y53{bottom:1116.802603px;}
.y27{bottom:1129.754999px;}
.y8f{bottom:1132.560000px;}
.ye3{bottom:1135.365000px;}
.y52{bottom:1139.572500px;}
.y1{bottom:1155.000000px;}
.h15{height:35.549926px;}
.h17{height:35.550292px;}
.h14{height:38.520264px;}
.hb{height:39.239995px;}
.he{height:39.239998px;}
.ha{height:39.240003px;}
.h1c{height:39.240007px;}
.h10{height:39.240009px;}
.h9{height:48.049806px;}
.h16{height:55.350219px;}
.h4{height:56.700000px;}
.h19{height:61.289794px;}
.h11{height:61.290160px;}
.hf{height:62.999998px;}
.h2{height:69.300002px;}
.hc{height:69.300007px;}
.h18{height:75.150147px;}
.h6{height:75.600000px;}
.h5{height:81.900003px;}
.h1b{height:88.199997px;}
.hd{height:100.800003px;}
.h13{height:106.829591px;}
.h7{height:107.625000px;}
.h1{height:108.000000px;}
.h8{height:113.400000px;}
.h1a{height:125.999997px;}
.h12{height:129.600586px;}
.h3{height:163.800006px;}
.h0{height:1263.000000px;}
.w2{width:149.625000px;}
.w3{width:533.250000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xb{left:6.750000px;}
.x1{left:108.000000px;}
.xa{left:112.500000px;}
.x4{left:135.000000px;}
.x5{left:162.000000px;}
.x7{left:189.000000px;}
.x8{left:216.000000px;}
.x2{left:247.500000px;}
.xc{left:263.250000px;}
.x9{left:282.375000px;}
.x6{left:776.751660px;}
.x3{left:777.773936px;}
@media print{
.v3{vertical-align:-80.959632pt;}
.v2{vertical-align:-21.120001pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.232002pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000022pt;}
.ls2{letter-spacing:1.333332pt;}
.ls3{letter-spacing:20.453333pt;}
.ls4{letter-spacing:176.453333pt;}
.ws0{word-spacing:-16.960000pt;}
.ws4{word-spacing:-14.133333pt;}
.ws5{word-spacing:-13.904000pt;}
.ws2{word-spacing:-9.328000pt;}
.ws3{word-spacing:-8.480000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-13.897240pt;}
._6{margin-left:-7.679523pt;}
._14{margin-left:-6.501754pt;}
._0{margin-left:-5.540366pt;}
._1{margin-left:-4.279782pt;}
._5{margin-left:-3.233268pt;}
._3{margin-left:-2.105509pt;}
._4{margin-left:-0.905793pt;}
._12{width:1.055149pt;}
._11{width:20.453333pt;}
._13{width:44.265624pt;}
._f{width:1596.611066pt;}
._b{width:1597.666266pt;}
._e{width:1611.188289pt;}
._9{width:1658.158506pt;}
._10{width:1754.079485pt;}
._c{width:1760.352205pt;}
._8{width:1793.901633pt;}
._a{width:1910.257593pt;}
._d{width:2003.140560pt;}
._7{width:2118.711674pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:35.200001pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333336pt;}
.fs3{font-size:74.666664pt;}
.fsa{font-size:85.333336pt;}
.fs6{font-size:96.000000pt;}
.fsb{font-size:106.666664pt;}
.fs1{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:10.886278pt;}
.ya9{bottom:10.886602pt;}
.yaf{bottom:10.886927pt;}
.yad{bottom:10.886928pt;}
.y97{bottom:13.526576pt;}
.ybc{bottom:13.526898pt;}
.y9d{bottom:13.526902pt;}
.ya2{bottom:13.526903pt;}
.yb2{bottom:28.486544pt;}
.yac{bottom:28.486862pt;}
.ybb{bottom:33.766484pt;}
.ya1{bottom:33.766490pt;}
.y9c{bottom:33.766808pt;}
.y96{bottom:33.766810pt;}
.y2{bottom:34.286667pt;}
.yb1{bottom:46.086798pt;}
.ya0{bottom:54.006730pt;}
.y9b{bottom:54.007048pt;}
.y51{bottom:54.193240pt;}
.y26{bottom:54.193320pt;}
.y8e{bottom:54.193574pt;}
.y9f{bottom:74.246303pt;}
.y9a{bottom:74.246955pt;}
.y99{bottom:94.487188pt;}
.y4f{bottom:104.960147pt;}
.ydf{bottom:104.960468pt;}
.y7b{bottom:115.680147pt;}
.y25{bottom:117.566691pt;}
.y50{bottom:120.960149pt;}
.ye0{bottom:120.960468pt;}
.ye2{bottom:131.680468pt;}
.y7a{bottom:136.960147pt;}
.y24{bottom:137.806680pt;}
.y4e{bottom:150.301480pt;}
.y7c{bottom:152.960145pt;}
.ye1{bottom:152.960469pt;}
.y23{bottom:158.046680pt;}
.y94{bottom:163.826926pt;}
.y4d{bottom:170.541546pt;}
.y22{bottom:178.286667pt;}
.y4c{bottom:190.781460pt;}
.y79{bottom:193.901249pt;}
.y21{bottom:198.526654pt;}
.ybe{bottom:200.266272pt;}
.ybd{bottom:202.906247pt;}
.y4b{bottom:211.021367pt;}
.y106{bottom:211.199424pt;}
.y78{bottom:214.141483pt;}
.y8d{bottom:214.466360pt;}
.y20{bottom:218.766654pt;}
.y4a{bottom:231.261440pt;}
.y105{bottom:231.439006pt;}
.y77{bottom:234.381393pt;}
.y8c{bottom:234.706587pt;}
.yba{bottom:235.506516pt;}
.yde{bottom:238.416873pt;}
.y1f{bottom:239.006720pt;}
.y49{bottom:251.501507pt;}
.y104{bottom:251.679240pt;}
.y76{bottom:254.621304pt;}
.y8b{bottom:254.946494pt;}
.yb9{bottom:258.386399pt;}
.ydd{bottom:258.657107pt;}
.y1e{bottom:259.246627pt;}
.y48{bottom:271.741425pt;}
.y103{bottom:271.919480pt;}
.y75{bottom:274.867839pt;}
.y8a{bottom:275.186734pt;}
.ydc{bottom:278.896694pt;}
.y1d{bottom:279.486694pt;}
.yb8{bottom:290.986324pt;}
.y47{bottom:291.981334pt;}
.y102{bottom:292.159067pt;}
.y74{bottom:295.151907pt;}
.y89{bottom:295.426640pt;}
.ydb{bottom:299.143226pt;}
.y1c{bottom:299.726614pt;}
.y46{bottom:312.221400pt;}
.yb7{bottom:313.866532pt;}
.y73{bottom:315.391802pt;}
.y88{bottom:315.666866pt;}
.yda{bottom:319.434239pt;}
.y1b{bottom:319.966680pt;}
.y101{bottom:323.365826pt;}
.y45{bottom:332.461479pt;}
.y72{bottom:335.631716pt;}
.y87{bottom:335.906460pt;}
.yd9{bottom:339.717664pt;}
.y1a{bottom:340.206667pt;}
.yb6{bottom:346.466471pt;}
.y44{bottom:352.701387pt;}
.y71{bottom:355.871950pt;}
.y86{bottom:356.146694pt;}
.yd8{bottom:359.964199pt;}
.y19{bottom:360.446667pt;}
.yb5{bottom:366.706379pt;}
.y43{bottom:372.941454pt;}
.y100{bottom:373.838754pt;}
.y70{bottom:376.111856pt;}
.y85{bottom:376.386272pt;}
.yd7{bottom:380.254559pt;}
.y18{bottom:380.686654pt;}
.y42{bottom:393.181520pt;}
.yff{bottom:394.079640pt;}
.y6f{bottom:396.351766pt;}
.y84{bottom:396.626510pt;}
.yd6{bottom:400.537974pt;}
.y17{bottom:400.926640pt;}
.yb4{bottom:401.946612pt;}
.y41{bottom:413.421433pt;}
.yfe{bottom:414.319214pt;}
.y6e{bottom:416.591677pt;}
.y83{bottom:416.866745pt;}
.yd5{bottom:420.778854pt;}
.y16{bottom:421.166627pt;}
.y40{bottom:433.661508pt;}
.yb0{bottom:434.546869pt;}
.yfd{bottom:434.559455pt;}
.y6d{bottom:436.838212pt;}
.y82{bottom:437.106654pt;}
.y15{bottom:442.000000pt;}
.yd4{bottom:448.131946pt;}
.y3f{bottom:453.901414pt;}
.yfc{bottom:454.799040pt;}
.y6c{bottom:457.121950pt;}
.y81{bottom:457.346560pt;}
.y14{bottom:464.080040pt;}
.yae{bottom:469.746740pt;}
.y3e{bottom:474.141480pt;}
.yfb{bottom:475.039267pt;}
.y6b{bottom:477.362185pt;}
.y80{bottom:477.586794pt;}
.y13{bottom:486.159960pt;}
.yd3{bottom:493.444873pt;}
.y3d{bottom:494.381394pt;}
.yfa{bottom:495.278853pt;}
.y6a{bottom:497.602094pt;}
.y7f{bottom:497.826704pt;}
.yab{bottom:502.346352pt;}
.y12{bottom:508.239987pt;}
.yd2{bottom:513.685107pt;}
.y3c{bottom:514.621465pt;}
.yf9{bottom:515.519091pt;}
.y69{bottom:517.842000pt;}
.y7e{bottom:518.066611pt;}
.yaa{bottom:519.946612pt;}
.y11{bottom:530.320027pt;}
.yd1{bottom:533.924686pt;}
.y3b{bottom:534.861374pt;}
.yf8{bottom:535.759322pt;}
.y68{bottom:538.088546pt;}
.y7d{bottom:538.306520pt;}
.y10{bottom:552.400027pt;}
.ya8{bottom:552.546545pt;}
.yd0{bottom:554.165569pt;}
.y3a{bottom:555.101447pt;}
.yf7{bottom:555.998907pt;}
.y67{bottom:558.372611pt;}
.yf{bottom:573.886680pt;}
.ycf{bottom:574.405158pt;}
.y39{bottom:575.341354pt;}
.yf6{bottom:576.239147pt;}
.y66{bottom:578.619146pt;}
.ya7{bottom:585.146484pt;}
.ye{bottom:594.126667pt;}
.yce{bottom:594.645389pt;}
.y38{bottom:595.581427pt;}
.yf5{bottom:596.479373pt;}
.y65{bottom:598.903200pt;}
.ya6{bottom:605.386392pt;}
.y115{bottom:614.073128pt;}
.yd{bottom:614.366665pt;}
.ycd{bottom:614.884974pt;}
.y37{bottom:615.821334pt;}
.yf4{bottom:616.718959pt;}
.y64{bottom:619.143109pt;}
.y114{bottom:634.314014pt;}
.yc{bottom:634.606654pt;}
.y36{bottom:636.061407pt;}
.yf3{bottom:636.959193pt;}
.y63{bottom:639.383023pt;}
.ya5{bottom:640.626631pt;}
.ycc{bottom:642.238066pt;}
.y113{bottom:654.552947pt;}
.yb{bottom:656.033320pt;}
.y35{bottom:656.301480pt;}
.yf2{bottom:657.199427pt;}
.y62{bottom:659.622929pt;}
.ya4{bottom:660.866539pt;}
.y112{bottom:674.793182pt;}
.ya{bottom:678.766654pt;}
.y61{bottom:679.863003pt;}
.ycb{bottom:687.552295pt;}
.yf1{bottom:688.406200pt;}
.y34{bottom:688.694760pt;}
.y111{bottom:695.033409pt;}
.y9e{bottom:696.106764pt;}
.y60{bottom:700.103073pt;}
.yca{bottom:707.791880pt;}
.y9{bottom:711.906653pt;}
.y110{bottom:715.273647pt;}
.y5f{bottom:720.342984pt;}
.y10f{bottom:735.513229pt;}
.yf0{bottom:738.879113pt;}
.yc9{bottom:738.998640pt;}
.y5e{bottom:740.589519pt;}
.y33{bottom:744.328014pt;}
.y10e{bottom:755.752814pt;}
.ya3{bottom:756.826165pt;}
.yef{bottom:759.119347pt;}
.y5d{bottom:760.873254pt;}
.y32{bottom:761.928107pt;}
.y8{bottom:763.746677pt;}
.yee{bottom:779.358934pt;}
.y31{bottom:783.528040pt;}
.y5c{bottom:784.080026pt;}
.y10d{bottom:786.959587pt;}
.yc8{bottom:789.471559pt;}
.y98{bottom:792.066405pt;}
.yed{bottom:799.606119pt;}
.y30{bottom:804.349451pt;}
.yc7{bottom:809.711793pt;}
.y5b{bottom:810.553427pt;}
.y7{bottom:811.586658pt;}
.yec{bottom:819.889536pt;}
.y2f{bottom:825.993374pt;}
.yc6{bottom:829.952027pt;}
.y5a{bottom:830.793505pt;}
.y10c{bottom:837.433806pt;}
.yeb{bottom:840.129775pt;}
.y2e{bottom:847.593307pt;}
.yc5{bottom:850.191614pt;}
.y59{bottom:851.033414pt;}
.y95{bottom:852.786784pt;}
.y10b{bottom:857.673384pt;}
.y6{bottom:859.426666pt;}
.yea{bottom:860.370005pt;}
.y2d{bottom:869.193240pt;}
.yc4{bottom:870.438146pt;}
.y58{bottom:871.273320pt;}
.y10a{bottom:877.912970pt;}
.ye9{bottom:880.615892pt;}
.yc3{bottom:890.728516pt;}
.y2c{bottom:890.793340pt;}
.y57{bottom:891.513392pt;}
.y109{bottom:898.153853pt;}
.ye8{bottom:900.899948pt;}
.yc2{bottom:911.018880pt;}
.y5{bottom:911.266679pt;}
.y2b{bottom:912.393275pt;}
.y93{bottom:914.793178pt;}
.y108{bottom:918.393438pt;}
.ye7{bottom:921.139533pt;}
.yc1{bottom:931.309246pt;}
.y56{bottom:931.993372pt;}
.y2a{bottom:933.993372pt;}
.y92{bottom:935.033414pt;}
.ye6{bottom:941.380419pt;}
.y107{bottom:949.600208pt;}
.yc0{bottom:951.593307pt;}
.y55{bottom:952.233282pt;}
.y4{bottom:953.020000pt;}
.y91{bottom:955.272996pt;}
.y29{bottom:955.593307pt;}
.ye5{bottom:961.620001pt;}
.ybf{bottom:971.833542pt;}
.y54{bottom:972.473354pt;}
.y90{bottom:975.513230pt;}
.y28{bottom:979.833379pt;}
.ye4{bottom:981.860235pt;}
.y3{bottom:983.666667pt;}
.y53{bottom:992.713425pt;}
.y27{bottom:1004.226666pt;}
.y8f{bottom:1006.720000pt;}
.ye3{bottom:1009.213334pt;}
.y52{bottom:1012.953334pt;}
.y1{bottom:1026.666667pt;}
.h15{height:31.599935pt;}
.h17{height:31.600260pt;}
.h14{height:34.240235pt;}
.hb{height:34.879996pt;}
.he{height:34.879998pt;}
.ha{height:34.880003pt;}
.h1c{height:34.880007pt;}
.h10{height:34.880008pt;}
.h9{height:42.710938pt;}
.h16{height:49.200195pt;}
.h4{height:50.400000pt;}
.h19{height:54.479817pt;}
.h11{height:54.480143pt;}
.hf{height:55.999999pt;}
.h2{height:61.600001pt;}
.hc{height:61.600007pt;}
.h18{height:66.800131pt;}
.h6{height:67.200000pt;}
.h5{height:72.800003pt;}
.h1b{height:78.399997pt;}
.hd{height:89.600003pt;}
.h13{height:94.959636pt;}
.h7{height:95.666667pt;}
.h1{height:96.000000pt;}
.h8{height:100.800000pt;}
.h1a{height:111.999997pt;}
.h12{height:115.200521pt;}
.h3{height:145.600006pt;}
.h0{height:1122.666667pt;}
.w2{width:133.000000pt;}
.w3{width:474.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xb{left:6.000000pt;}
.x1{left:96.000000pt;}
.xa{left:100.000000pt;}
.x4{left:120.000000pt;}
.x5{left:144.000000pt;}
.x7{left:168.000000pt;}
.x8{left:192.000000pt;}
.x2{left:220.000000pt;}
.xc{left:234.000000pt;}
.x9{left:251.000000pt;}
.x6{left:690.445920pt;}
.x3{left:691.354610pt;}
}




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