
    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_e55a07c4bdadee4d80c8fdaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_4c4169cbbe3035a0fc96834a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_5b7f9a7cdaae491222e8fbaa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_ea0a2ac70dee35b9dc3f53a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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_f10d09b83e10e39993f08091.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_6faa89213b696d28c8ba92fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_53415ab6ec547ddefcfe5339.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.967773;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_48c7dac0aaa99a0a2ed6fe63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_33fa7d321aa456c3436efdb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.975586;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_e0072fdc1c08c220f36a1e21.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;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_d69c8574ef007a474333c714.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975586;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);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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;}
.v1{vertical-align:3.234945px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:16.167286px;}
.ls1{letter-spacing:16.363650px;}
.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;}
}
.wsb{word-spacing:-32.727300px;}
.ws16{word-spacing:-21.519300px;}
.ws15{word-spacing:-16.363650px;}
.ws10{word-spacing:-14.943900px;}
.ws5{word-spacing:-10.866286px;}
.wsd{word-spacing:-8.690810px;}
.ws4{word-spacing:-8.149715px;}
.wsf{word-spacing:-7.796969px;}
.wsc{word-spacing:-7.604447px;}
.ws13{word-spacing:-0.261818px;}
.ws14{word-spacing:-0.196364px;}
.ws3{word-spacing:-0.029316px;}
.ws9{word-spacing:-0.024974px;}
.ws8{word-spacing:-0.022405px;}
.wsa{word-spacing:-0.021852px;}
.ws12{word-spacing:-0.001247px;}
.ws11{word-spacing:-0.000643px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.001568px;}
.ws1{word-spacing:30.557363px;}
.ws17{word-spacing:39.665488px;}
.wse{word-spacing:42.784733px;}
.ws7{word-spacing:48.615677px;}
.ws6{word-spacing:82.427008px;}
._9{margin-left:-577.085783px;}
._c{margin-left:-16.494559px;}
._11{margin-left:-6.886176px;}
._4{margin-left:-5.078555px;}
._a{margin-left:-3.160478px;}
._5{margin-left:-1.549390px;}
._3{width:1.291158px;}
._6{width:3.726946px;}
._7{width:5.675122px;}
._e{width:7.963940px;}
._10{width:16.976270px;}
._b{width:18.523652px;}
._f{width:27.512453px;}
._12{width:72.805920px;}
._1{width:80.410675px;}
._d{width:314.875062px;}
._8{width:520.422751px;}
._2{width:582.312258px;}
._0{width:1041.122688px;}
.fc7{color:rgb(224,45,48);}
.fc5{color:rgb(210,32,39);}
.fc4{color:transparent;}
.fc8{color:rgb(235,109,93);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(82,86,109);}
.fc6{color:rgb(180,68,57);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:16.803873px;}
.fsf{font-size:21.851859px;}
.fsd{font-size:22.405083px;}
.fs6{font-size:23.530320px;}
.fse{font-size:24.973592px;}
.fsb{font-size:26.058240px;}
.fs7{font-size:29.315520px;}
.fsa{font-size:32.572800px;}
.fs3{font-size:35.865600px;}
.fs8{font-size:39.087360px;}
.fs4{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs9{font-size:124.069189px;}
.y9b{bottom:-222.504000px;}
.y9a{bottom:-197.697000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.873000px;}
.y9{bottom:16.317131px;}
.y40{bottom:19.451197px;}
.y17{bottom:25.428000px;}
.y1a{bottom:25.753500px;}
.y1d{bottom:26.850000px;}
.y3f{bottom:27.594397px;}
.y96{bottom:27.712500px;}
.y20{bottom:29.121000px;}
.y25{bottom:30.916585px;}
.yc2{bottom:32.847000px;}
.y22{bottom:32.908500px;}
.y43{bottom:33.450000px;}
.yaa{bottom:34.009500px;}
.y3e{bottom:35.737597px;}
.y1f{bottom:39.582000px;}
.yb6{bottom:42.030000px;}
.y3d{bottom:43.880797px;}
.y16{bottom:45.751500px;}
.y19{bottom:46.077000px;}
.y1c{bottom:47.173500px;}
.y35{bottom:47.472090px;}
.y2f{bottom:47.926426px;}
.y3b{bottom:51.805554px;}
.ya9{bottom:51.942000px;}
.y3c{bottom:52.023997px;}
.y42{bottom:53.775000px;}
.yc1{bottom:56.019000px;}
.y32{bottom:56.079133px;}
.y64{bottom:58.614045px;}
.y34{bottom:58.934837px;}
.y95{bottom:59.305367px;}
.y44{bottom:61.485000px;}
.y2e{bottom:63.408013px;}
.y39{bottom:63.741727px;}
.y24{bottom:64.628769px;}
.yb5{bottom:66.837000px;}
.ya8{bottom:69.876000px;}
.y3a{bottom:74.017330px;}
.y41{bottom:74.098500px;}
.y63{bottom:75.897094px;}
.y31{bottom:76.233553px;}
.y94{bottom:76.588416px;}
.y66{bottom:77.381365px;}
.y75{bottom:78.072687px;}
.y65{bottom:85.185700px;}
.y74{bottom:85.877022px;}
.y36{bottom:90.673358px;}
.yb4{bottom:91.645500px;}
.yc0{bottom:97.078500px;}
.ya7{bottom:97.327500px;}
.y55{bottom:99.647806px;}
.y86{bottom:100.339128px;}
.y27{bottom:105.456000px;}
.y54{bottom:107.452141px;}
.y85{bottom:108.143463px;}
.y5{bottom:109.417500px;}
.y26{bottom:110.689665px;}
.y2a{bottom:113.299486px;}
.ya6{bottom:115.260000px;}
.y5e{bottom:121.143084px;}
.y30{bottom:121.428313px;}
.y8f{bottom:121.834406px;}
.ybf{bottom:123.784500px;}
.y5d{bottom:127.971964px;}
.y51{bottom:128.496643px;}
.y8e{bottom:128.663286px;}
.y82{bottom:129.187965px;}
.y4{bottom:129.742500px;}
.y6e{bottom:131.184529px;}
.ya5{bottom:133.192500px;}
.y50{bottom:134.698845px;}
.y81{bottom:135.390167px;}
.y97{bottom:138.114000px;}
.yb3{bottom:138.915000px;}
.y46{bottom:148.245013px;}
.y5c{bottom:148.795963px;}
.y77{bottom:148.936335px;}
.y8d{bottom:149.487285px;}
.y6d{bottom:150.524268px;}
.y33{bottom:152.190612px;}
.y45{bottom:154.447215px;}
.y38{bottom:155.013419px;}
.y76{bottom:155.138537px;}
.y5b{bottom:155.624843px;}
.y8c{bottom:156.316165px;}
.y6c{bottom:157.353148px;}
.y4f{bottom:158.267213px;}
.y80{bottom:158.958535px;}
.ya4{bottom:160.645500px;}
.y1b{bottom:161.064000px;}
.y18{bottom:162.159000px;}
.y15{bottom:162.484500px;}
.yb2{bottom:163.722000px;}
.y48{bottom:165.709855px;}
.y79{bottom:166.401177px;}
.ybe{bottom:168.103500px;}
.y61{bottom:168.991200px;}
.y3{bottom:169.167000px;}
.y2b{bottom:169.676773px;}
.y92{bottom:169.682521px;}
.y71{bottom:170.191340px;}
.y4d{bottom:170.671617px;}
.y7e{bottom:171.362939px;}
.y49{bottom:171.912057px;}
.y7a{bottom:172.603379px;}
.y62{bottom:172.682172px;}
.y93{bottom:173.373494px;}
.y60{bottom:176.795534px;}
.y4e{bottom:176.873819px;}
.y91{bottom:177.486856px;}
.y7f{bottom:177.565141px;}
.y70{bottom:177.995675px;}
.y47{bottom:178.114259px;}
.ya3{bottom:178.578000px;}
.y78{bottom:178.805581px;}
.y2c{bottom:182.502313px;}
.yb1{bottom:184.047000px;}
.y5f{bottom:184.599869px;}
.y90{bottom:185.291191px;}
.y6f{bottom:185.800010px;}
.ybd{bottom:188.428500px;}
.y4a{bottom:190.518664px;}
.y7b{bottom:191.209985px;}
.y23{bottom:192.628219px;}
.y4b{bottom:195.480739px;}
.y7c{bottom:196.172061px;}
.ya2{bottom:196.510500px;}
.y6b{bottom:197.879823px;}
.y2d{bottom:200.213773px;}
.y37{bottom:202.491472px;}
.y2{bottom:203.103000px;}
.y5a{bottom:204.101721px;}
.y6a{bottom:204.708698px;}
.y8b{bottom:204.793043px;}
.yb{bottom:206.229000px;}
.y4c{bottom:207.884834px;}
.y7d{bottom:208.576156px;}
.yb0{bottom:208.854000px;}
.y59{bottom:210.930596px;}
.y8a{bottom:211.621918px;}
.ybc{bottom:213.235500px;}
.y29{bottom:219.146715px;}
.ya1{bottom:223.962000px;}
.y69{bottom:228.297990px;}
.yaf{bottom:229.177500px;}
.ya{bottom:230.956500px;}
.y53{bottom:231.763309px;}
.y84{bottom:232.454631px;}
.ybb{bottom:233.559000px;}
.y28{bottom:234.415213px;}
.y68{bottom:235.126865px;}
.y58{bottom:238.667820px;}
.y52{bottom:238.764976px;}
.y89{bottom:239.359142px;}
.y83{bottom:239.456298px;}
.ya0{bottom:241.896000px;}
.y57{bottom:245.496695px;}
.y88{bottom:246.188017px;}
.y56{bottom:252.529859px;}
.y87{bottom:253.221181px;}
.y73{bottom:253.956744px;}
.yae{bottom:253.984500px;}
.yba{bottom:258.366000px;}
.y9f{bottom:259.828500px;}
.y72{bottom:261.760942px;}
.y1{bottom:267.936000px;}
.y8{bottom:268.480500px;}
.yb9{bottom:278.689500px;}
.yad{bottom:278.793000px;}
.y9e{bottom:285.868500px;}
.yb8{bottom:303.496500px;}
.y9d{bottom:303.801000px;}
.yac{bottom:310.350000px;}
.y9c{bottom:321.733500px;}
.y21{bottom:321.862500px;}
.y1e{bottom:323.269500px;}
.yb7{bottom:323.820000px;}
.yab{bottom:330.673500px;}
.y7{bottom:362.751000px;}
.y99{bottom:2777.534685px;}
.y98{bottom:2802.341685px;}
.ye{bottom:3025.466685px;}
.y11{bottom:3025.792185px;}
.y14{bottom:3026.888685px;}
.y67{bottom:3027.751185px;}
.yd{bottom:3045.790185px;}
.y10{bottom:3046.115685px;}
.y13{bottom:3047.212185px;}
.y12{bottom:3161.102685px;}
.yf{bottom:3162.197685px;}
.yc{bottom:3162.523185px;}
.h14{height:12.767005px;}
.h17{height:16.602291px;}
.hb{height:16.706527px;}
.h15{height:17.022612px;}
.h16{height:18.974077px;}
.h12{height:19.798155px;}
.he{height:21.722800px;}
.hd{height:22.272924px;}
.h5{height:25.392845px;}
.h9{height:26.074291px;}
.h11{height:27.371390px;}
.h7{height:28.206206px;}
.hf{height:28.963734px;}
.h4{height:34.765576px;}
.h8{height:42.321125px;}
.h3{height:46.341857px;}
.h18{height:47.585494px;}
.h2{height:60.942658px;}
.h6{height:72.840146px;}
.h10{height:91.935269px;}
.ha{height:205.400085px;}
.hc{height:246.630013px;}
.h13{height:273.639687px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w3{width:291.677925px;}
.w2{width:333.363113px;}
.w5{width:458.346484px;}
.w4{width:595.276717px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x16{left:4.184426px;}
.x34{left:5.653104px;}
.x27{left:14.106881px;}
.x7{left:18.136500px;}
.x12{left:28.347000px;}
.xf{left:36.141000px;}
.x35{left:37.521946px;}
.xa{left:42.519000px;}
.x3c{left:51.381224px;}
.x13{left:54.498000px;}
.x4a{left:71.623500px;}
.x38{left:74.657280px;}
.x39{left:76.673885px;}
.x3a{left:80.791601px;}
.x3b{left:83.587104px;}
.x3f{left:84.987943px;}
.x36{left:87.832859px;}
.x37{left:90.500321px;}
.x9{left:96.786303px;}
.x24{left:98.638558px;}
.x18{left:100.108156px;}
.x3e{left:103.846177px;}
.x23{left:108.998260px;}
.x2b{left:110.976000px;}
.x1f{left:112.735681px;}
.x1a{left:125.747306px;}
.x19{left:130.472405px;}
.x17{left:132.489303px;}
.x6{left:136.401000px;}
.xb{left:141.831000px;}
.x1d{left:143.272681px;}
.x33{left:146.291804px;}
.x1b{left:149.380081px;}
.x3d{left:152.622452px;}
.x32{left:155.101655px;}
.x2c{left:158.292541px;}
.x31{left:161.696312px;}
.x30{left:165.111416px;}
.x2d{left:166.559377px;}
.x3{left:168.261000px;}
.x2e{left:171.470521px;}
.x8{left:173.481000px;}
.x2f{left:177.829625px;}
.x28{left:191.216674px;}
.x1e{left:204.346681px;}
.x48{left:205.408787px;}
.x44{left:211.032740px;}
.x43{left:212.670564px;}
.x42{left:215.300207px;}
.x45{left:219.143708px;}
.x1{left:220.629000px;}
.x4b{left:223.458000px;}
.x41{left:225.032222px;}
.x46{left:231.475474px;}
.x4{left:239.284500px;}
.x10{left:250.866000px;}
.x22{left:264.511018px;}
.x47{left:266.186719px;}
.x2{left:278.695500px;}
.x5{left:280.848000px;}
.x1c{left:293.478826px;}
.x20{left:299.402400px;}
.x26{left:335.157015px;}
.x14{left:354.331500px;}
.x15{left:358.813500px;}
.x25{left:362.978784px;}
.x21{left:446.079652px;}
.x11{left:465.589500px;}
.x2a{left:487.238394px;}
.x29{left:517.763165px;}
.xc{left:3036.179685px;}
.x40{left:3042.557685px;}
.x49{left:3075.286185px;}
.xd{left:3250.904685px;}
.xe{left:3465.628185px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.875507pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:14.370921pt;}
.ls1{letter-spacing:14.545467pt;}
.wsb{word-spacing:-29.090933pt;}
.ws16{word-spacing:-19.128267pt;}
.ws15{word-spacing:-14.545467pt;}
.ws10{word-spacing:-13.283467pt;}
.ws5{word-spacing:-9.658921pt;}
.wsd{word-spacing:-7.725164pt;}
.ws4{word-spacing:-7.244191pt;}
.wsf{word-spacing:-6.930639pt;}
.wsc{word-spacing:-6.759508pt;}
.ws13{word-spacing:-0.232727pt;}
.ws14{word-spacing:-0.174546pt;}
.ws3{word-spacing:-0.026058pt;}
.ws9{word-spacing:-0.022199pt;}
.ws8{word-spacing:-0.019916pt;}
.wsa{word-spacing:-0.019424pt;}
.ws12{word-spacing:-0.001109pt;}
.ws11{word-spacing:-0.000572pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.001394pt;}
.ws1{word-spacing:27.162101pt;}
.ws17{word-spacing:35.258211pt;}
.wse{word-spacing:38.030874pt;}
.ws7{word-spacing:43.213935pt;}
.ws6{word-spacing:73.268451pt;}
._9{margin-left:-512.965140pt;}
._c{margin-left:-14.661830pt;}
._11{margin-left:-6.121045pt;}
._4{margin-left:-4.514271pt;}
._a{margin-left:-2.809314pt;}
._5{margin-left:-1.377235pt;}
._3{width:1.147696pt;}
._6{width:3.312841pt;}
._7{width:5.044553pt;}
._e{width:7.079058pt;}
._10{width:15.090018pt;}
._b{width:16.465468pt;}
._f{width:24.455514pt;}
._12{width:64.716373pt;}
._1{width:71.476156pt;}
._d{width:279.888944pt;}
._8{width:462.598001pt;}
._2{width:517.610896pt;}
._0{width:925.442389pt;}
.fsc{font-size:14.936776pt;}
.fsf{font-size:19.423875pt;}
.fsd{font-size:19.915629pt;}
.fs6{font-size:20.915840pt;}
.fse{font-size:22.198748pt;}
.fsb{font-size:23.162880pt;}
.fs7{font-size:26.058240pt;}
.fsa{font-size:28.953600pt;}
.fs3{font-size:31.880533pt;}
.fs8{font-size:34.744320pt;}
.fs4{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs9{font-size:110.283724pt;}
.y9b{bottom:-197.781333pt;}
.y9a{bottom:-175.730667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.442667pt;}
.y9{bottom:14.504117pt;}
.y40{bottom:17.289953pt;}
.y17{bottom:22.602667pt;}
.y1a{bottom:22.892000pt;}
.y1d{bottom:23.866667pt;}
.y3f{bottom:24.528353pt;}
.y96{bottom:24.633333pt;}
.y20{bottom:25.885333pt;}
.y25{bottom:27.481409pt;}
.yc2{bottom:29.197333pt;}
.y22{bottom:29.252000pt;}
.y43{bottom:29.733333pt;}
.yaa{bottom:30.230667pt;}
.y3e{bottom:31.766753pt;}
.y1f{bottom:35.184000pt;}
.yb6{bottom:37.360000pt;}
.y3d{bottom:39.005153pt;}
.y16{bottom:40.668000pt;}
.y19{bottom:40.957333pt;}
.y1c{bottom:41.932000pt;}
.y35{bottom:42.197413pt;}
.y2f{bottom:42.601267pt;}
.y3b{bottom:46.049381pt;}
.ya9{bottom:46.170667pt;}
.y3c{bottom:46.243553pt;}
.y42{bottom:47.800000pt;}
.yc1{bottom:49.794667pt;}
.y32{bottom:49.848118pt;}
.y64{bottom:52.101374pt;}
.y34{bottom:52.386522pt;}
.y95{bottom:52.715882pt;}
.y44{bottom:54.653333pt;}
.y2e{bottom:56.362678pt;}
.y39{bottom:56.659313pt;}
.y24{bottom:57.447795pt;}
.yb5{bottom:59.410667pt;}
.ya8{bottom:62.112000pt;}
.y3a{bottom:65.793182pt;}
.y41{bottom:65.865333pt;}
.y63{bottom:67.464084pt;}
.y31{bottom:67.763158pt;}
.y94{bottom:68.078592pt;}
.y66{bottom:68.783435pt;}
.y75{bottom:69.397944pt;}
.y65{bottom:75.720622pt;}
.y74{bottom:76.335130pt;}
.y36{bottom:80.598540pt;}
.yb4{bottom:81.462667pt;}
.yc0{bottom:86.292000pt;}
.ya7{bottom:86.513333pt;}
.y55{bottom:88.575828pt;}
.y86{bottom:89.190336pt;}
.y27{bottom:93.738667pt;}
.y54{bottom:95.513014pt;}
.y85{bottom:96.127523pt;}
.y5{bottom:97.260000pt;}
.y26{bottom:98.390813pt;}
.y2a{bottom:100.710654pt;}
.ya6{bottom:102.453333pt;}
.y5e{bottom:107.682741pt;}
.y30{bottom:107.936278pt;}
.y8f{bottom:108.297249pt;}
.ybf{bottom:110.030667pt;}
.y5d{bottom:113.752857pt;}
.y51{bottom:114.219238pt;}
.y8e{bottom:114.367366pt;}
.y82{bottom:114.833747pt;}
.y4{bottom:115.326667pt;}
.y6e{bottom:116.608471pt;}
.ya5{bottom:118.393333pt;}
.y50{bottom:119.732307pt;}
.y81{bottom:120.346815pt;}
.y97{bottom:122.768000pt;}
.yb3{bottom:123.480000pt;}
.y46{bottom:131.773345pt;}
.y5c{bottom:132.263078pt;}
.y77{bottom:132.387853pt;}
.y8d{bottom:132.877586pt;}
.y6d{bottom:133.799349pt;}
.y33{bottom:135.280544pt;}
.y45{bottom:137.286413pt;}
.y38{bottom:137.789706pt;}
.y76{bottom:137.900922pt;}
.y5b{bottom:138.333194pt;}
.y8c{bottom:138.947703pt;}
.y6c{bottom:139.869465pt;}
.y4f{bottom:140.681967pt;}
.y80{bottom:141.296476pt;}
.ya4{bottom:142.796000pt;}
.y1b{bottom:143.168000pt;}
.y18{bottom:144.141333pt;}
.y15{bottom:144.430667pt;}
.yb2{bottom:145.530667pt;}
.y48{bottom:147.297649pt;}
.y79{bottom:147.912158pt;}
.ybe{bottom:149.425333pt;}
.y61{bottom:150.214400pt;}
.y3{bottom:150.370667pt;}
.y2b{bottom:150.823798pt;}
.y92{bottom:150.828908pt;}
.y71{bottom:151.281191pt;}
.y4d{bottom:151.708104pt;}
.y7e{bottom:152.322612pt;}
.y49{bottom:152.810718pt;}
.y7a{bottom:153.425226pt;}
.y62{bottom:153.495264pt;}
.y93{bottom:154.109772pt;}
.y60{bottom:157.151586pt;}
.y4e{bottom:157.221172pt;}
.y91{bottom:157.766095pt;}
.y7f{bottom:157.835681pt;}
.y70{bottom:158.218378pt;}
.y47{bottom:158.323786pt;}
.ya3{bottom:158.736000pt;}
.y78{bottom:158.938294pt;}
.y2c{bottom:162.224278pt;}
.yb1{bottom:163.597333pt;}
.y5f{bottom:164.088773pt;}
.y90{bottom:164.703281pt;}
.y6f{bottom:165.155564pt;}
.ybd{bottom:167.492000pt;}
.y4a{bottom:169.349923pt;}
.y7b{bottom:169.964432pt;}
.y23{bottom:171.225084pt;}
.y4b{bottom:173.760657pt;}
.y7c{bottom:174.375165pt;}
.ya2{bottom:174.676000pt;}
.y6b{bottom:175.893176pt;}
.y2d{bottom:177.967798pt;}
.y37{bottom:179.992420pt;}
.y2{bottom:180.536000pt;}
.y5a{bottom:181.423752pt;}
.y6a{bottom:181.963287pt;}
.y8b{bottom:182.038260pt;}
.yb{bottom:183.314667pt;}
.y4c{bottom:184.786519pt;}
.y7d{bottom:185.401027pt;}
.yb0{bottom:185.648000pt;}
.y59{bottom:187.493863pt;}
.y8a{bottom:188.108372pt;}
.ybc{bottom:189.542667pt;}
.y29{bottom:194.797080pt;}
.ya1{bottom:199.077333pt;}
.y69{bottom:202.931547pt;}
.yaf{bottom:203.713333pt;}
.ya{bottom:205.294667pt;}
.y53{bottom:206.011830pt;}
.y84{bottom:206.626339pt;}
.ybb{bottom:207.608000pt;}
.y28{bottom:208.369078pt;}
.y68{bottom:209.001658pt;}
.y58{bottom:212.149173pt;}
.y52{bottom:212.235534pt;}
.y89{bottom:212.763681pt;}
.y83{bottom:212.850042pt;}
.ya0{bottom:215.018667pt;}
.y57{bottom:218.219284pt;}
.y88{bottom:218.833793pt;}
.y56{bottom:224.470986pt;}
.y87{bottom:225.085494pt;}
.y73{bottom:225.739328pt;}
.yae{bottom:225.764000pt;}
.yba{bottom:229.658667pt;}
.y9f{bottom:230.958667pt;}
.y72{bottom:232.676393pt;}
.y1{bottom:238.165333pt;}
.y8{bottom:238.649333pt;}
.yb9{bottom:247.724000pt;}
.yad{bottom:247.816000pt;}
.y9e{bottom:254.105333pt;}
.yb8{bottom:269.774667pt;}
.y9d{bottom:270.045333pt;}
.yac{bottom:275.866667pt;}
.y9c{bottom:285.985333pt;}
.y21{bottom:286.100000pt;}
.y1e{bottom:287.350667pt;}
.yb7{bottom:287.840000pt;}
.yab{bottom:293.932000pt;}
.y7{bottom:322.445333pt;}
.y99{bottom:2468.919720pt;}
.y98{bottom:2490.970387pt;}
.ye{bottom:2689.303720pt;}
.y11{bottom:2689.593053pt;}
.y14{bottom:2690.567720pt;}
.y67{bottom:2691.334387pt;}
.yd{bottom:2707.369053pt;}
.y10{bottom:2707.658387pt;}
.y13{bottom:2708.633053pt;}
.y12{bottom:2809.869053pt;}
.yf{bottom:2810.842387pt;}
.yc{bottom:2811.131720pt;}
.h14{height:11.348449pt;}
.h17{height:14.757592pt;}
.hb{height:14.850246pt;}
.h15{height:15.131210pt;}
.h16{height:16.865846pt;}
.h12{height:17.598360pt;}
.he{height:19.309156pt;}
.hd{height:19.798155pt;}
.h5{height:22.571418pt;}
.h9{height:23.177148pt;}
.h11{height:24.330124pt;}
.h7{height:25.072183pt;}
.hf{height:25.745541pt;}
.h4{height:30.902734pt;}
.h8{height:37.618778pt;}
.h3{height:41.192762pt;}
.h18{height:42.298217pt;}
.h2{height:54.171251pt;}
.h6{height:64.746796pt;}
.h10{height:81.720239pt;}
.ha{height:182.577853pt;}
.hc{height:219.226678pt;}
.h13{height:243.235277pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w3{width:259.269267pt;}
.w2{width:296.322767pt;}
.w5{width:407.419097pt;}
.w4{width:529.134860pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x16{left:3.719490pt;}
.x34{left:5.024981pt;}
.x27{left:12.539450pt;}
.x7{left:16.121333pt;}
.x12{left:25.197333pt;}
.xf{left:32.125333pt;}
.x35{left:33.352841pt;}
.xa{left:37.794667pt;}
.x3c{left:45.672199pt;}
.x13{left:48.442667pt;}
.x4a{left:63.665333pt;}
.x38{left:66.362027pt;}
.x39{left:68.154564pt;}
.x3a{left:71.814756pt;}
.x3b{left:74.299648pt;}
.x3f{left:75.544838pt;}
.x36{left:78.073652pt;}
.x37{left:80.444729pt;}
.x9{left:86.032269pt;}
.x24{left:87.678718pt;}
.x18{left:88.985028pt;}
.x3e{left:92.307713pt;}
.x23{left:96.887342pt;}
.x2b{left:98.645333pt;}
.x1f{left:100.209495pt;}
.x1a{left:111.775383pt;}
.x19{left:115.975471pt;}
.x17{left:117.768269pt;}
.x6{left:121.245333pt;}
.xb{left:126.072000pt;}
.x1d{left:127.353495pt;}
.x33{left:130.037159pt;}
.x1b{left:132.782295pt;}
.x3d{left:135.664402pt;}
.x32{left:137.868138pt;}
.x2c{left:140.704481pt;}
.x31{left:143.730055pt;}
.x30{left:146.765704pt;}
.x2d{left:148.052779pt;}
.x3{left:149.565333pt;}
.x2e{left:152.418241pt;}
.x8{left:154.205333pt;}
.x2f{left:158.070778pt;}
.x28{left:169.970377pt;}
.x1e{left:181.641495pt;}
.x48{left:182.585588pt;}
.x44{left:187.584658pt;}
.x43{left:189.040502pt;}
.x42{left:191.377962pt;}
.x45{left:194.794407pt;}
.x1{left:196.114667pt;}
.x4b{left:198.629333pt;}
.x41{left:200.028642pt;}
.x46{left:205.755977pt;}
.x4{left:212.697333pt;}
.x10{left:222.992000pt;}
.x22{left:235.120905pt;}
.x47{left:236.610417pt;}
.x2{left:247.729333pt;}
.x5{left:249.642667pt;}
.x1c{left:260.870068pt;}
.x20{left:266.135467pt;}
.x26{left:297.917346pt;}
.x14{left:314.961333pt;}
.x15{left:318.945333pt;}
.x25{left:322.647808pt;}
.x21{left:396.515246pt;}
.x11{left:413.857333pt;}
.x2a{left:433.100795pt;}
.x29{left:460.233924pt;}
.xc{left:2698.826387pt;}
.x40{left:2704.495720pt;}
.x49{left:2733.587720pt;}
.xd{left:2889.693053pt;}
.xe{left:3080.558387pt;}
}




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