
    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_e08d53eeff274a5528637298.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_2aa459708487efefd3139fc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_1bc9b217711532c26f567a82.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_29997e226021ebcaa3035ec5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908056;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_7b6d232d99eb0004e4dc7248.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909639;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_529d3c605ca261679b3dbbec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_cf5446342f27f21aa72a3781.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_6f3968dda227cb1880b4672a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_99d82589d04818bfb89ddbf2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970000;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_3ee11f858f11348f365eb0d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.972000;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_6b43aa3a7fff2f1ff964ac08.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.974000;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_c043ab518474bbcc20cdbc60.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_64f22c5c221652801b228e23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.707000;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_70963abd080f0655bfcd1c2f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940000;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:fff;src:url('chunks/assets/font_b0a053f3ef24bf7920c1f804.woff2')format("woff");}.fff{font-family:fff;line-height:0.692871;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:ff10;src:url('chunks/assets/font_e08d53eeff274a5528637298.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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:ff11;src:url('chunks/assets/font_2aa459708487efefd3139fc1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_3f8100e01b54648fb9109f3a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.720000;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:ff13;src:url('chunks/assets/font_352d31bb6acc6c7d63546c18.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969000;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;}
.m3{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.720000px;}
.ws4{word-spacing:-0.060000px;}
.ws2{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:0.144000px;}
.wsa{word-spacing:0.720000px;}
.ws7{word-spacing:5.400000px;}
.wsb{word-spacing:13.248000px;}
.ws8{word-spacing:20.952000px;}
.wsd{word-spacing:33.621000px;}
.wse{word-spacing:43.632000px;}
.ws0{word-spacing:48.021000px;}
.ws6{word-spacing:48.528000px;}
.ws1{word-spacing:386.314800px;}
.ws9{word-spacing:1714.377600px;}
._14{margin-left:-18.720000px;}
._24{margin-left:-15.372000px;}
._1d{margin-left:-14.133600px;}
._33{margin-left:-11.842800px;}
._10{margin-left:-10.686000px;}
._1f{margin-left:-9.228000px;}
._26{margin-left:-7.912800px;}
._5{margin-left:-6.616800px;}
._2a{margin-left:-5.430000px;}
._9{margin-left:-3.937800px;}
._1{margin-left:-1.972800px;}
._c{width:1.072800px;}
._18{width:2.404800px;}
._a{width:4.132800px;}
._2b{width:5.860800px;}
._1a{width:6.933600px;}
._13{width:8.719200px;}
._3{width:10.058400px;}
._4{width:11.361600px;}
._29{width:12.650400px;}
._38{width:14.968800px;}
._32{width:16.711200px;}
._6{width:17.784000px;}
._0{width:19.231200px;}
._19{width:20.232000px;}
._12{width:22.060800px;}
._2f{width:23.709600px;}
._39{width:25.682400px;}
._8{width:27.100800px;}
._25{width:28.180800px;}
._1c{width:29.556000px;}
._2d{width:31.348800px;}
._e{width:32.472000px;}
._b{width:34.092000px;}
._34{width:35.661600px;}
._1b{width:37.130400px;}
._2{width:39.391200px;}
._d{width:41.256000px;}
._1e{width:43.444800px;}
._31{width:48.477600px;}
._20{width:49.831200px;}
._37{width:51.112800px;}
._11{width:58.593600px;}
._7{width:59.738400px;}
._17{width:61.560000px;}
._16{width:66.312000px;}
._36{width:67.348800px;}
._3a{width:76.615200px;}
._f{width:78.696000px;}
._2c{width:80.359200px;}
._15{width:84.528000px;}
._27{width:98.380800px;}
._35{width:105.235200px;}
._28{width:115.920000px;}
._22{width:118.872000px;}
._21{width:121.420800px;}
._2e{width:122.832000px;}
._30{width:127.296000px;}
._23{width:129.744000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y2d{bottom:64.760550px;}
.y2c{bottom:65.586600px;}
.y5a{bottom:89.596200px;}
.y7a{bottom:91.096200px;}
.y59{bottom:110.596200px;}
.y79{bottom:112.090200px;}
.y58{bottom:131.596200px;}
.y78{bottom:133.096200px;}
.yc1{bottom:152.442150px;}
.y57{bottom:152.596200px;}
.ya3{bottom:153.960150px;}
.y77{bottom:154.096200px;}
.y22{bottom:164.877300px;}
.y56{bottom:173.596200px;}
.yc0{bottom:174.942150px;}
.ya2{bottom:174.960150px;}
.y76{bottom:175.096200px;}
.y21{bottom:187.899300px;}
.y55{bottom:194.596200px;}
.ybf{bottom:195.948150px;}
.ya1{bottom:195.960150px;}
.y75{bottom:196.096200px;}
.y20{bottom:211.155300px;}
.y54{bottom:215.596200px;}
.ya0{bottom:216.936150px;}
.ybe{bottom:216.954150px;}
.y74{bottom:217.096200px;}
.y1f{bottom:234.411300px;}
.y53{bottom:236.596200px;}
.y9f{bottom:237.942150px;}
.ybd{bottom:237.960150px;}
.y73{bottom:238.096200px;}
.y52{bottom:257.596200px;}
.y1e{bottom:257.661300px;}
.y9e{bottom:258.948150px;}
.y72{bottom:259.096200px;}
.y51{bottom:278.524200px;}
.ybc{bottom:279.912150px;}
.y9d{bottom:279.954150px;}
.y71{bottom:280.096200px;}
.y1d{bottom:280.887300px;}
.y50{bottom:299.530200px;}
.y9c{bottom:300.900150px;}
.ybb{bottom:300.918150px;}
.y70{bottom:301.096200px;}
.y1c{bottom:304.143300px;}
.y4f{bottom:320.536200px;}
.y9b{bottom:321.906150px;}
.yba{bottom:321.924150px;}
.y6f{bottom:322.066200px;}
.y1b{bottom:327.399300px;}
.y4e{bottom:341.542200px;}
.y9a{bottom:342.912150px;}
.yb9{bottom:342.930150px;}
.y6e{bottom:343.072200px;}
.y1a{bottom:350.655300px;}
.y4d{bottom:362.548200px;}
.y99{bottom:363.918150px;}
.yb8{bottom:363.936150px;}
.y6d{bottom:364.078200px;}
.y19{bottom:373.911300px;}
.y4c{bottom:383.554200px;}
.y98{bottom:384.924150px;}
.yb7{bottom:384.942150px;}
.y6c{bottom:385.084200px;}
.y18{bottom:397.167300px;}
.y4b{bottom:404.560200px;}
.y97{bottom:405.930150px;}
.yb6{bottom:405.948150px;}
.y6b{bottom:406.090200px;}
.y4a{bottom:425.566200px;}
.y96{bottom:426.936150px;}
.yb5{bottom:426.954150px;}
.y6a{bottom:427.096200px;}
.y17{bottom:442.167300px;}
.y49{bottom:446.572200px;}
.y95{bottom:447.942150px;}
.yb4{bottom:447.960150px;}
.y2b{bottom:456.514050px;}
.y16{bottom:464.667300px;}
.y48{bottom:467.578200px;}
.yb3{bottom:468.930150px;}
.y94{bottom:468.948150px;}
.y69{bottom:469.048200px;}
.y2a{bottom:479.014050px;}
.y15{bottom:487.167300px;}
.y47{bottom:488.584200px;}
.yb2{bottom:489.936150px;}
.y93{bottom:489.954150px;}
.y68{bottom:490.054200px;}
.y29{bottom:501.514050px;}
.y46{bottom:509.590200px;}
.y14{bottom:509.667300px;}
.yb1{bottom:510.942150px;}
.y92{bottom:510.960150px;}
.y67{bottom:511.060200px;}
.y45{bottom:530.596200px;}
.yb0{bottom:531.948150px;}
.y66{bottom:532.066200px;}
.y13{bottom:532.167300px;}
.y28{bottom:542.014050px;}
.y91{bottom:552.948150px;}
.yaf{bottom:552.954150px;}
.y65{bottom:553.072200px;}
.y12{bottom:554.667300px;}
.y90{bottom:573.954150px;}
.yae{bottom:573.960150px;}
.y44{bottom:574.078200px;}
.y11{bottom:577.167300px;}
.y27{bottom:587.014050px;}
.y8e{bottom:594.954150px;}
.y8f{bottom:594.960150px;}
.y43{bottom:595.084200px;}
.y10{bottom:599.667300px;}
.y8d{bottom:615.960150px;}
.y42{bottom:616.090200px;}
.yf{bottom:622.167300px;}
.y26{bottom:627.514050px;}
.yad{bottom:636.954150px;}
.y8c{bottom:636.960150px;}
.y41{bottom:637.096200px;}
.y8b{bottom:657.960150px;}
.y40{bottom:658.096200px;}
.y25{bottom:663.514050px;}
.ye{bottom:668.649300px;}
.y8a{bottom:678.960150px;}
.y3f{bottom:679.090200px;}
.y64{bottom:679.096200px;}
.yd{bottom:689.653800px;}
.y24{bottom:699.514050px;}
.y89{bottom:699.936150px;}
.yac{bottom:699.960150px;}
.y3e{bottom:700.096200px;}
.yc{bottom:710.658300px;}
.y88{bottom:720.942150px;}
.yab{bottom:720.960150px;}
.y3d{bottom:721.096200px;}
.yb{bottom:731.662800px;}
.y23{bottom:735.514050px;}
.y87{bottom:741.948150px;}
.yaa{bottom:741.960150px;}
.y3c{bottom:742.096200px;}
.ya{bottom:752.667300px;}
.ya9{bottom:762.948150px;}
.y86{bottom:762.954150px;}
.y3b{bottom:763.078200px;}
.y63{bottom:763.096200px;}
.y9{bottom:773.667300px;}
.ya8{bottom:783.954150px;}
.y85{bottom:783.960150px;}
.y3a{bottom:784.084200px;}
.y62{bottom:784.096200px;}
.ya7{bottom:804.954150px;}
.y84{bottom:804.960150px;}
.y39{bottom:805.090200px;}
.y61{bottom:805.096200px;}
.y8{bottom:823.158300px;}
.y83{bottom:825.960150px;}
.y60{bottom:826.060200px;}
.y38{bottom:826.096200px;}
.y7{bottom:844.162800px;}
.y82{bottom:846.960150px;}
.y5f{bottom:847.066200px;}
.y37{bottom:847.096200px;}
.y6{bottom:865.167300px;}
.ya6{bottom:867.954150px;}
.y81{bottom:867.960150px;}
.y5e{bottom:868.072200px;}
.y36{bottom:868.096200px;}
.y5{bottom:886.167300px;}
.y80{bottom:888.954150px;}
.ya5{bottom:888.960150px;}
.y5d{bottom:889.078200px;}
.y35{bottom:889.096200px;}
.y7f{bottom:909.960150px;}
.y5c{bottom:910.084200px;}
.y34{bottom:910.096200px;}
.y7e{bottom:930.960150px;}
.y5b{bottom:931.090200px;}
.y33{bottom:931.096200px;}
.y4{bottom:940.174800px;}
.y7d{bottom:951.960150px;}
.y32{bottom:952.096200px;}
.y3{bottom:965.667300px;}
.y7c{bottom:972.954150px;}
.ya4{bottom:972.960150px;}
.y31{bottom:973.096200px;}
.y7b{bottom:993.960150px;}
.y30{bottom:994.096200px;}
.y2f{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y2e{bottom:1039.374150px;}
.hf{height:34.176000px;}
.he{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.hd{height:42.000000px;}
.hc{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h9{height:50.424000px;}
.h11{height:50.496000px;}
.h8{height:50.520000px;}
.h10{height:50.640000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xf{left:63.779550px;}
.x2{left:65.202600px;}
.x19{left:71.253150px;}
.xe{left:73.695150px;}
.x1{left:74.853150px;}
.x13{left:85.039350px;}
.xd{left:224.323950px;}
.x3{left:238.085850px;}
.x1a{left:259.693650px;}
.x14{left:269.035500px;}
.x15{left:374.424150px;}
.x16{left:399.931350px;}
.x12{left:412.272150px;}
.xb{left:420.869250px;}
.x7{left:424.829400px;}
.x4{left:426.275850px;}
.x6{left:517.394400px;}
.xc{left:522.822750px;}
.x8{left:527.079900px;}
.xa{left:536.715750px;}
.x5{left:544.873650px;}
.x17{left:578.066100px;}
.x9{left:582.039600px;}
.x18{left:591.152250px;}
.x11{left:614.196150px;}
.x10{left:632.875800px;}
.x1b{left:710.580450px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws4{word-spacing:-0.053333pt;}
.ws2{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:0.128000pt;}
.wsa{word-spacing:0.640000pt;}
.ws7{word-spacing:4.800000pt;}
.wsb{word-spacing:11.776000pt;}
.ws8{word-spacing:18.624000pt;}
.wsd{word-spacing:29.885333pt;}
.wse{word-spacing:38.784000pt;}
.ws0{word-spacing:42.685333pt;}
.ws6{word-spacing:43.136000pt;}
.ws1{word-spacing:343.390933pt;}
.ws9{word-spacing:1523.891200pt;}
._14{margin-left:-16.640000pt;}
._24{margin-left:-13.664000pt;}
._1d{margin-left:-12.563200pt;}
._33{margin-left:-10.526933pt;}
._10{margin-left:-9.498667pt;}
._1f{margin-left:-8.202667pt;}
._26{margin-left:-7.033600pt;}
._5{margin-left:-5.881600pt;}
._2a{margin-left:-4.826667pt;}
._9{margin-left:-3.500267pt;}
._1{margin-left:-1.753600pt;}
._c{width:0.953600pt;}
._18{width:2.137600pt;}
._a{width:3.673600pt;}
._2b{width:5.209600pt;}
._1a{width:6.163200pt;}
._13{width:7.750400pt;}
._3{width:8.940800pt;}
._4{width:10.099200pt;}
._29{width:11.244800pt;}
._38{width:13.305600pt;}
._32{width:14.854400pt;}
._6{width:15.808000pt;}
._0{width:17.094400pt;}
._19{width:17.984000pt;}
._12{width:19.609600pt;}
._2f{width:21.075200pt;}
._39{width:22.828800pt;}
._8{width:24.089600pt;}
._25{width:25.049600pt;}
._1c{width:26.272000pt;}
._2d{width:27.865600pt;}
._e{width:28.864000pt;}
._b{width:30.304000pt;}
._34{width:31.699200pt;}
._1b{width:33.004800pt;}
._2{width:35.014400pt;}
._d{width:36.672000pt;}
._1e{width:38.617600pt;}
._31{width:43.091200pt;}
._20{width:44.294400pt;}
._37{width:45.433600pt;}
._11{width:52.083200pt;}
._7{width:53.100800pt;}
._17{width:54.720000pt;}
._16{width:58.944000pt;}
._36{width:59.865600pt;}
._3a{width:68.102400pt;}
._f{width:69.952000pt;}
._2c{width:71.430400pt;}
._15{width:75.136000pt;}
._27{width:87.449600pt;}
._35{width:93.542400pt;}
._28{width:103.040000pt;}
._22{width:105.664000pt;}
._21{width:107.929600pt;}
._2e{width:109.184000pt;}
._30{width:113.152000pt;}
._23{width:115.328000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y2d{bottom:57.564933pt;}
.y2c{bottom:58.299200pt;}
.y5a{bottom:79.641067pt;}
.y7a{bottom:80.974400pt;}
.y59{bottom:98.307733pt;}
.y79{bottom:99.635733pt;}
.y58{bottom:116.974400pt;}
.y78{bottom:118.307733pt;}
.yc1{bottom:135.504133pt;}
.y57{bottom:135.641067pt;}
.ya3{bottom:136.853467pt;}
.y77{bottom:136.974400pt;}
.y22{bottom:146.557600pt;}
.y56{bottom:154.307733pt;}
.yc0{bottom:155.504133pt;}
.ya2{bottom:155.520133pt;}
.y76{bottom:155.641067pt;}
.y21{bottom:167.021600pt;}
.y55{bottom:172.974400pt;}
.ybf{bottom:174.176133pt;}
.ya1{bottom:174.186800pt;}
.y75{bottom:174.307733pt;}
.y20{bottom:187.693600pt;}
.y54{bottom:191.641067pt;}
.ya0{bottom:192.832133pt;}
.ybe{bottom:192.848133pt;}
.y74{bottom:192.974400pt;}
.y1f{bottom:208.365600pt;}
.y53{bottom:210.307733pt;}
.y9f{bottom:211.504133pt;}
.ybd{bottom:211.520133pt;}
.y73{bottom:211.641067pt;}
.y52{bottom:228.974400pt;}
.y1e{bottom:229.032267pt;}
.y9e{bottom:230.176133pt;}
.y72{bottom:230.307733pt;}
.y51{bottom:247.577067pt;}
.ybc{bottom:248.810800pt;}
.y9d{bottom:248.848133pt;}
.y71{bottom:248.974400pt;}
.y1d{bottom:249.677600pt;}
.y50{bottom:266.249067pt;}
.y9c{bottom:267.466800pt;}
.ybb{bottom:267.482800pt;}
.y70{bottom:267.641067pt;}
.y1c{bottom:270.349600pt;}
.y4f{bottom:284.921067pt;}
.y9b{bottom:286.138800pt;}
.yba{bottom:286.154800pt;}
.y6f{bottom:286.281067pt;}
.y1b{bottom:291.021600pt;}
.y4e{bottom:303.593067pt;}
.y9a{bottom:304.810800pt;}
.yb9{bottom:304.826800pt;}
.y6e{bottom:304.953067pt;}
.y1a{bottom:311.693600pt;}
.y4d{bottom:322.265067pt;}
.y99{bottom:323.482800pt;}
.yb8{bottom:323.498800pt;}
.y6d{bottom:323.625067pt;}
.y19{bottom:332.365600pt;}
.y4c{bottom:340.937067pt;}
.y98{bottom:342.154800pt;}
.yb7{bottom:342.170800pt;}
.y6c{bottom:342.297067pt;}
.y18{bottom:353.037600pt;}
.y4b{bottom:359.609067pt;}
.y97{bottom:360.826800pt;}
.yb6{bottom:360.842800pt;}
.y6b{bottom:360.969067pt;}
.y4a{bottom:378.281067pt;}
.y96{bottom:379.498800pt;}
.yb5{bottom:379.514800pt;}
.y6a{bottom:379.641067pt;}
.y17{bottom:393.037600pt;}
.y49{bottom:396.953067pt;}
.y95{bottom:398.170800pt;}
.yb4{bottom:398.186800pt;}
.y2b{bottom:405.790267pt;}
.y16{bottom:413.037600pt;}
.y48{bottom:415.625067pt;}
.yb3{bottom:416.826800pt;}
.y94{bottom:416.842800pt;}
.y69{bottom:416.931733pt;}
.y2a{bottom:425.790267pt;}
.y15{bottom:433.037600pt;}
.y47{bottom:434.297067pt;}
.yb2{bottom:435.498800pt;}
.y93{bottom:435.514800pt;}
.y68{bottom:435.603733pt;}
.y29{bottom:445.790267pt;}
.y46{bottom:452.969067pt;}
.y14{bottom:453.037600pt;}
.yb1{bottom:454.170800pt;}
.y92{bottom:454.186800pt;}
.y67{bottom:454.275733pt;}
.y45{bottom:471.641067pt;}
.yb0{bottom:472.842800pt;}
.y66{bottom:472.947733pt;}
.y13{bottom:473.037600pt;}
.y28{bottom:481.790267pt;}
.y91{bottom:491.509467pt;}
.yaf{bottom:491.514800pt;}
.y65{bottom:491.619733pt;}
.y12{bottom:493.037600pt;}
.y90{bottom:510.181467pt;}
.yae{bottom:510.186800pt;}
.y44{bottom:510.291733pt;}
.y11{bottom:513.037600pt;}
.y27{bottom:521.790267pt;}
.y8e{bottom:528.848133pt;}
.y8f{bottom:528.853467pt;}
.y43{bottom:528.963733pt;}
.y10{bottom:533.037600pt;}
.y8d{bottom:547.520133pt;}
.y42{bottom:547.635733pt;}
.yf{bottom:553.037600pt;}
.y26{bottom:557.790267pt;}
.yad{bottom:566.181467pt;}
.y8c{bottom:566.186800pt;}
.y41{bottom:566.307733pt;}
.y8b{bottom:584.853467pt;}
.y40{bottom:584.974400pt;}
.y25{bottom:589.790267pt;}
.ye{bottom:594.354933pt;}
.y8a{bottom:603.520133pt;}
.y3f{bottom:603.635733pt;}
.y64{bottom:603.641067pt;}
.yd{bottom:613.025600pt;}
.y24{bottom:621.790267pt;}
.y89{bottom:622.165467pt;}
.yac{bottom:622.186800pt;}
.y3e{bottom:622.307733pt;}
.yc{bottom:631.696267pt;}
.y88{bottom:640.837467pt;}
.yab{bottom:640.853467pt;}
.y3d{bottom:640.974400pt;}
.yb{bottom:650.366933pt;}
.y23{bottom:653.790267pt;}
.y87{bottom:659.509467pt;}
.yaa{bottom:659.520133pt;}
.y3c{bottom:659.641067pt;}
.ya{bottom:669.037600pt;}
.ya9{bottom:678.176133pt;}
.y86{bottom:678.181467pt;}
.y3b{bottom:678.291733pt;}
.y63{bottom:678.307733pt;}
.y9{bottom:687.704267pt;}
.ya8{bottom:696.848133pt;}
.y85{bottom:696.853467pt;}
.y3a{bottom:696.963733pt;}
.y62{bottom:696.974400pt;}
.ya7{bottom:715.514800pt;}
.y84{bottom:715.520133pt;}
.y39{bottom:715.635733pt;}
.y61{bottom:715.641067pt;}
.y8{bottom:731.696267pt;}
.y83{bottom:734.186800pt;}
.y60{bottom:734.275733pt;}
.y38{bottom:734.307733pt;}
.y7{bottom:750.366933pt;}
.y82{bottom:752.853467pt;}
.y5f{bottom:752.947733pt;}
.y37{bottom:752.974400pt;}
.y6{bottom:769.037600pt;}
.ya6{bottom:771.514800pt;}
.y81{bottom:771.520133pt;}
.y5e{bottom:771.619733pt;}
.y36{bottom:771.641067pt;}
.y5{bottom:787.704267pt;}
.y80{bottom:790.181467pt;}
.ya5{bottom:790.186800pt;}
.y5d{bottom:790.291733pt;}
.y35{bottom:790.307733pt;}
.y7f{bottom:808.853467pt;}
.y5c{bottom:808.963733pt;}
.y34{bottom:808.974400pt;}
.y7e{bottom:827.520133pt;}
.y5b{bottom:827.635733pt;}
.y33{bottom:827.641067pt;}
.y4{bottom:835.710933pt;}
.y7d{bottom:846.186800pt;}
.y32{bottom:846.307733pt;}
.y3{bottom:858.370933pt;}
.y7c{bottom:864.848133pt;}
.ya4{bottom:864.853467pt;}
.y31{bottom:864.974400pt;}
.y7b{bottom:883.520133pt;}
.y30{bottom:883.641067pt;}
.y2f{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y2e{bottom:923.888133pt;}
.hf{height:30.378667pt;}
.he{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.hd{height:37.333333pt;}
.hc{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h9{height:44.821333pt;}
.h11{height:44.885333pt;}
.h8{height:44.906667pt;}
.h10{height:45.013333pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xf{left:56.692933pt;}
.x2{left:57.957867pt;}
.x19{left:63.336133pt;}
.xe{left:65.506800pt;}
.x1{left:66.536133pt;}
.x13{left:75.590533pt;}
.xd{left:199.399067pt;}
.x3{left:211.631867pt;}
.x1a{left:230.838800pt;}
.x14{left:239.142667pt;}
.x15{left:332.821467pt;}
.x16{left:355.494533pt;}
.x12{left:366.464133pt;}
.xb{left:374.106000pt;}
.x7{left:377.626133pt;}
.x4{left:378.911867pt;}
.x6{left:459.906133pt;}
.xc{left:464.731333pt;}
.x8{left:468.515467pt;}
.xa{left:477.080667pt;}
.x5{left:484.332133pt;}
.x17{left:513.836533pt;}
.x9{left:517.368533pt;}
.x18{left:525.468667pt;}
.x11{left:545.952133pt;}
.x10{left:562.556267pt;}
.x1b{left:631.627067pt;}
}




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