
    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_a17796aefd43824e8458027e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.632000;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_a1f75840c8a382d119f870c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_1bc9802db0b18a0453af5e8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_96906161a8d9a2af40c52e80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.632000;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_7b9b4170dd697f6d22e9dec6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_917381d3c1fed90431fe2357.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_96906161a8d9a2af40c52e80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.632000;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_98ab32b6c22b7a393f69a304.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_fbc1b6218e8477053cfcd125.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.693000;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_499dbe26fd2be878f03352bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894000;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_ec9c71fddc3bc925d575569f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.691000;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_df930da2499f55407c7b7909.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.625000;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_320dd2a7fe0ddbcd39fa7690.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.873000;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_c6437a552bd6b98fbb37dd97.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893000;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_a8b81e062a390576f1172c97.woff2')format("woff");}.fff{font-family:fff;line-height:0.625000;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_6473ba25f18be2115df079e0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.625000;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_3847352438a70d9d7eb41e84.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910000;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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-5.656320px;}
.ls12{letter-spacing:-0.426240px;}
.ls15{letter-spacing:-0.403200px;}
.ls14{letter-spacing:-0.374400px;}
.lse{letter-spacing:-0.338688px;}
.lsf{letter-spacing:-0.260064px;}
.ls1b{letter-spacing:-0.241920px;}
.ls13{letter-spacing:-0.201600px;}
.ls11{letter-spacing:-0.198720px;}
.ls10{letter-spacing:-0.145152px;}
.ls18{letter-spacing:-0.096768px;}
.ls16{letter-spacing:-0.014400px;}
.lsd{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.001200px;}
.ls3{letter-spacing:0.010800px;}
.ls2{letter-spacing:0.011400px;}
.ls5{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.013200px;}
.ls8{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.018600px;}
.lsb{letter-spacing:0.021600px;}
.ls1{letter-spacing:0.024600px;}
.ls9{letter-spacing:0.070800px;}
.ls19{letter-spacing:0.359136px;}
.ls0{letter-spacing:0.359760px;}
.ls1a{letter-spacing:13.392000px;}
.ls4{letter-spacing:2156.616000px;}
.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;}
}
.wsa{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.985600px;}
.ws1{word-spacing:-16.813440px;}
.wsd{word-spacing:-16.716672px;}
.wse{word-spacing:-16.571520px;}
.ws0{word-spacing:-16.553376px;}
.ws5{word-spacing:-14.400000px;}
.ws4{word-spacing:-14.198400px;}
.ws9{word-spacing:-14.025600px;}
.ws6{word-spacing:-13.996800px;}
.ws8{word-spacing:-13.973760px;}
.wsc{word-spacing:0.000000px;}
.ws2{word-spacing:0.132480px;}
.ws3{word-spacing:0.368640px;}
._19{margin-left:-5.112000px;}
._13{margin-left:-3.981600px;}
._12{margin-left:-2.210400px;}
._1{margin-left:-1.149120px;}
._0{width:1.149120px;}
._c{width:2.599200px;}
._10{width:4.096800px;}
._5{width:5.097600px;}
._15{width:6.350400px;}
._14{width:7.560000px;}
._11{width:9.072000px;}
._16{width:10.144800px;}
._8{width:11.325600px;}
._17{width:12.456000px;}
._18{width:14.112000px;}
._1b{width:15.393600px;}
._3{width:16.531200px;}
._1e{width:19.080000px;}
._1d{width:20.174400px;}
._1a{width:25.516800px;}
._1c{width:28.569600px;}
._a{width:110.736000px;}
._f{width:209.765520px;}
._2{width:326.595720px;}
._e{width:471.600000px;}
._6{width:979.548480px;}
._7{width:1577.101680px;}
._b{width:1735.576080px;}
._d{width:1855.654080px;}
._9{width:2055.240000px;}
._4{width:2289.542520px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs3{font-size:54.720000px;}
.fs6{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.ye{bottom:-1.775850px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.564150px;}
.y2{bottom:4.164150px;}
.y9{bottom:12.204150px;}
.yd{bottom:18.744150px;}
.y4{bottom:27.916950px;}
.y5{bottom:38.004150px;}
.yb{bottom:47.004150px;}
.y3{bottom:47.724150px;}
.y8{bottom:60.000000px;}
.y7{bottom:97.404150px;}
.y6a{bottom:125.484150px;}
.y2e{bottom:126.564150px;}
.y4c{bottom:129.804150px;}
.y69{bottom:156.444150px;}
.y2d{bottom:157.524150px;}
.y4b{bottom:160.764150px;}
.y68{bottom:187.764150px;}
.y2c{bottom:188.484150px;}
.y4a{bottom:192.084150px;}
.y67{bottom:218.724150px;}
.y2b{bottom:219.804150px;}
.y49{bottom:223.044150px;}
.y66{bottom:249.684150px;}
.y2a{bottom:250.764150px;}
.y48{bottom:254.004150px;}
.y29{bottom:274.524150px;}
.y65{bottom:280.644150px;}
.y47{bottom:284.964150px;}
.y28{bottom:305.484150px;}
.y64{bottom:311.964150px;}
.y46{bottom:315.924150px;}
.y7e{bottom:324.924150px;}
.y27{bottom:336.804150px;}
.y63{bottom:342.924150px;}
.y45{bottom:347.244150px;}
.y7d{bottom:355.884150px;}
.y26{bottom:367.764150px;}
.y62{bottom:373.884150px;}
.y44{bottom:378.204150px;}
.y7c{bottom:386.844150px;}
.y25{bottom:391.524150px;}
.y61{bottom:404.844150px;}
.y43{bottom:409.164150px;}
.y7b{bottom:417.804150px;}
.y24{bottom:422.484150px;}
.y60{bottom:435.804150px;}
.y42{bottom:440.124150px;}
.y7a{bottom:449.124150px;}
.y23{bottom:453.444150px;}
.y5f{bottom:467.124150px;}
.y41{bottom:471.444150px;}
.y79{bottom:480.084150px;}
.y22{bottom:484.764150px;}
.y5e{bottom:498.084150px;}
.y40{bottom:502.404150px;}
.y21{bottom:508.524150px;}
.y78{bottom:511.044150px;}
.y5d{bottom:529.044150px;}
.y3f{bottom:533.364150px;}
.y20{bottom:539.484150px;}
.y77{bottom:542.004150px;}
.y5c{bottom:560.004150px;}
.y3e{bottom:564.324150px;}
.y1f{bottom:570.444150px;}
.y76{bottom:573.324150px;}
.y5b{bottom:591.324150px;}
.y1e{bottom:594.204150px;}
.y3d{bottom:595.644150px;}
.y75{bottom:604.284150px;}
.y5a{bottom:622.284150px;}
.y1d{bottom:625.524150px;}
.y3c{bottom:626.604150px;}
.y74{bottom:635.244150px;}
.y59{bottom:653.244150px;}
.y1c{bottom:656.484150px;}
.y3b{bottom:657.564150px;}
.y73{bottom:666.204150px;}
.y58{bottom:684.204150px;}
.y1b{bottom:687.444150px;}
.y3a{bottom:688.524150px;}
.y72{bottom:697.524150px;}
.y1a{bottom:711.204150px;}
.y57{bottom:715.524150px;}
.y39{bottom:719.844150px;}
.y71{bottom:728.484150px;}
.y19{bottom:742.164150px;}
.y56{bottom:746.484150px;}
.y38{bottom:750.804150px;}
.y70{bottom:759.444150px;}
.y18{bottom:773.484150px;}
.y55{bottom:777.444150px;}
.y37{bottom:781.764150px;}
.y6f{bottom:790.404150px;}
.y17{bottom:804.444150px;}
.y54{bottom:808.404150px;}
.y36{bottom:812.724150px;}
.y6e{bottom:821.724150px;}
.y16{bottom:828.204150px;}
.y53{bottom:839.724150px;}
.y35{bottom:844.044150px;}
.y6d{bottom:852.684150px;}
.y15{bottom:859.164150px;}
.y52{bottom:870.684150px;}
.y34{bottom:875.004150px;}
.y6c{bottom:883.644150px;}
.y14{bottom:890.484150px;}
.y51{bottom:901.644150px;}
.y33{bottom:905.964150px;}
.y13{bottom:914.244150px;}
.y6b{bottom:914.604150px;}
.y50{bottom:932.604150px;}
.y12{bottom:936.924150px;}
.y32{bottom:959.964150px;}
.y4f{bottom:963.924150px;}
.y11{bottom:975.084150px;}
.y31{bottom:981.204150px;}
.y4e{bottom:994.884150px;}
.y10{bottom:996.324150px;}
.y30{bottom:999.924150px;}
.yf{bottom:1018.644150px;}
.y2f{bottom:1023.324150px;}
.y4d{bottom:1025.844150px;}
.y6{bottom:1046.004150px;}
.y1{bottom:1053.000000px;}
.yc{bottom:1075.500000px;}
.ha{height:18.900000px;}
.h4{height:19.111680px;}
.h6{height:33.000000px;}
.h5{height:41.040000px;}
.h3{height:44.029440px;}
.h2{height:45.504000px;}
.h9{height:48.816000px;}
.h7{height:50.040000px;}
.h8{height:56.626560px;}
.h1{height:84.000000px;}
.h0{height:1188.000000px;}
.w3{width:111.000000px;}
.w1{width:112.500000px;}
.w4{width:228.000000px;}
.w2{width:486.000000px;}
.w5{width:706.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:8.855700px;}
.xa{left:58.415700px;}
.x2{left:67.175550px;}
.x4{left:70.782300px;}
.x7{left:102.411000px;}
.x1{left:106.500000px;}
.x10{left:160.247700px;}
.x5{left:205.032780px;}
.x3{left:217.500000px;}
.xc{left:218.526150px;}
.x9{left:333.000000px;}
.xd{left:412.713750px;}
.x13{left:417.902550px;}
.xe{left:459.725400px;}
.xb{left:559.500000px;}
.x12{left:691.711050px;}
.x11{left:695.878350px;}
.xf{left:699.210900px;}
.x6{left:702.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-5.027840pt;}
.ls12{letter-spacing:-0.378880pt;}
.ls15{letter-spacing:-0.358400pt;}
.ls14{letter-spacing:-0.332800pt;}
.lse{letter-spacing:-0.301056pt;}
.lsf{letter-spacing:-0.231168pt;}
.ls1b{letter-spacing:-0.215040pt;}
.ls13{letter-spacing:-0.179200pt;}
.ls11{letter-spacing:-0.176640pt;}
.ls10{letter-spacing:-0.129024pt;}
.ls18{letter-spacing:-0.086016pt;}
.ls16{letter-spacing:-0.012800pt;}
.lsd{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.001067pt;}
.ls3{letter-spacing:0.009600pt;}
.ls2{letter-spacing:0.010133pt;}
.ls5{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.011733pt;}
.ls8{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.016533pt;}
.lsb{letter-spacing:0.019200pt;}
.ls1{letter-spacing:0.021867pt;}
.ls9{letter-spacing:0.062933pt;}
.ls19{letter-spacing:0.319232pt;}
.ls0{letter-spacing:0.319787pt;}
.ls1a{letter-spacing:11.904000pt;}
.ls4{letter-spacing:1916.992000pt;}
.wsa{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.987200pt;}
.ws1{word-spacing:-14.945280pt;}
.wsd{word-spacing:-14.859264pt;}
.wse{word-spacing:-14.730240pt;}
.ws0{word-spacing:-14.714112pt;}
.ws5{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.620800pt;}
.ws9{word-spacing:-12.467200pt;}
.ws6{word-spacing:-12.441600pt;}
.ws8{word-spacing:-12.421120pt;}
.wsc{word-spacing:0.000000pt;}
.ws2{word-spacing:0.117760pt;}
.ws3{word-spacing:0.327680pt;}
._19{margin-left:-4.544000pt;}
._13{margin-left:-3.539200pt;}
._12{margin-left:-1.964800pt;}
._1{margin-left:-1.021440pt;}
._0{width:1.021440pt;}
._c{width:2.310400pt;}
._10{width:3.641600pt;}
._5{width:4.531200pt;}
._15{width:5.644800pt;}
._14{width:6.720000pt;}
._11{width:8.064000pt;}
._16{width:9.017600pt;}
._8{width:10.067200pt;}
._17{width:11.072000pt;}
._18{width:12.544000pt;}
._1b{width:13.683200pt;}
._3{width:14.694400pt;}
._1e{width:16.960000pt;}
._1d{width:17.932800pt;}
._1a{width:22.681600pt;}
._1c{width:25.395200pt;}
._a{width:98.432000pt;}
._f{width:186.458240pt;}
._2{width:290.307307pt;}
._e{width:419.200000pt;}
._6{width:870.709760pt;}
._7{width:1401.868160pt;}
._b{width:1542.734293pt;}
._d{width:1649.470293pt;}
._9{width:1826.880000pt;}
._4{width:2035.148907pt;}
.fs2{font-size:26.880000pt;}
.fs3{font-size:48.640000pt;}
.fs6{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.ye{bottom:-1.578533pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.168133pt;}
.y2{bottom:3.701467pt;}
.y9{bottom:10.848133pt;}
.yd{bottom:16.661467pt;}
.y4{bottom:24.815067pt;}
.y5{bottom:33.781467pt;}
.yb{bottom:41.781467pt;}
.y3{bottom:42.421467pt;}
.y8{bottom:53.333333pt;}
.y7{bottom:86.581467pt;}
.y6a{bottom:111.541467pt;}
.y2e{bottom:112.501467pt;}
.y4c{bottom:115.381467pt;}
.y69{bottom:139.061467pt;}
.y2d{bottom:140.021467pt;}
.y4b{bottom:142.901467pt;}
.y68{bottom:166.901467pt;}
.y2c{bottom:167.541467pt;}
.y4a{bottom:170.741467pt;}
.y67{bottom:194.421467pt;}
.y2b{bottom:195.381467pt;}
.y49{bottom:198.261467pt;}
.y66{bottom:221.941467pt;}
.y2a{bottom:222.901467pt;}
.y48{bottom:225.781467pt;}
.y29{bottom:244.021467pt;}
.y65{bottom:249.461467pt;}
.y47{bottom:253.301467pt;}
.y28{bottom:271.541467pt;}
.y64{bottom:277.301467pt;}
.y46{bottom:280.821467pt;}
.y7e{bottom:288.821467pt;}
.y27{bottom:299.381467pt;}
.y63{bottom:304.821467pt;}
.y45{bottom:308.661467pt;}
.y7d{bottom:316.341467pt;}
.y26{bottom:326.901467pt;}
.y62{bottom:332.341467pt;}
.y44{bottom:336.181467pt;}
.y7c{bottom:343.861467pt;}
.y25{bottom:348.021467pt;}
.y61{bottom:359.861467pt;}
.y43{bottom:363.701467pt;}
.y7b{bottom:371.381467pt;}
.y24{bottom:375.541467pt;}
.y60{bottom:387.381467pt;}
.y42{bottom:391.221467pt;}
.y7a{bottom:399.221467pt;}
.y23{bottom:403.061467pt;}
.y5f{bottom:415.221467pt;}
.y41{bottom:419.061467pt;}
.y79{bottom:426.741467pt;}
.y22{bottom:430.901467pt;}
.y5e{bottom:442.741467pt;}
.y40{bottom:446.581467pt;}
.y21{bottom:452.021467pt;}
.y78{bottom:454.261467pt;}
.y5d{bottom:470.261467pt;}
.y3f{bottom:474.101467pt;}
.y20{bottom:479.541467pt;}
.y77{bottom:481.781467pt;}
.y5c{bottom:497.781467pt;}
.y3e{bottom:501.621467pt;}
.y1f{bottom:507.061467pt;}
.y76{bottom:509.621467pt;}
.y5b{bottom:525.621467pt;}
.y1e{bottom:528.181467pt;}
.y3d{bottom:529.461467pt;}
.y75{bottom:537.141467pt;}
.y5a{bottom:553.141467pt;}
.y1d{bottom:556.021467pt;}
.y3c{bottom:556.981467pt;}
.y74{bottom:564.661467pt;}
.y59{bottom:580.661467pt;}
.y1c{bottom:583.541467pt;}
.y3b{bottom:584.501467pt;}
.y73{bottom:592.181467pt;}
.y58{bottom:608.181467pt;}
.y1b{bottom:611.061467pt;}
.y3a{bottom:612.021467pt;}
.y72{bottom:620.021467pt;}
.y1a{bottom:632.181467pt;}
.y57{bottom:636.021467pt;}
.y39{bottom:639.861467pt;}
.y71{bottom:647.541467pt;}
.y19{bottom:659.701467pt;}
.y56{bottom:663.541467pt;}
.y38{bottom:667.381467pt;}
.y70{bottom:675.061467pt;}
.y18{bottom:687.541467pt;}
.y55{bottom:691.061467pt;}
.y37{bottom:694.901467pt;}
.y6f{bottom:702.581467pt;}
.y17{bottom:715.061467pt;}
.y54{bottom:718.581467pt;}
.y36{bottom:722.421467pt;}
.y6e{bottom:730.421467pt;}
.y16{bottom:736.181467pt;}
.y53{bottom:746.421467pt;}
.y35{bottom:750.261467pt;}
.y6d{bottom:757.941467pt;}
.y15{bottom:763.701467pt;}
.y52{bottom:773.941467pt;}
.y34{bottom:777.781467pt;}
.y6c{bottom:785.461467pt;}
.y14{bottom:791.541467pt;}
.y51{bottom:801.461467pt;}
.y33{bottom:805.301467pt;}
.y13{bottom:812.661467pt;}
.y6b{bottom:812.981467pt;}
.y50{bottom:828.981467pt;}
.y12{bottom:832.821467pt;}
.y32{bottom:853.301467pt;}
.y4f{bottom:856.821467pt;}
.y11{bottom:866.741467pt;}
.y31{bottom:872.181467pt;}
.y4e{bottom:884.341467pt;}
.y10{bottom:885.621467pt;}
.y30{bottom:888.821467pt;}
.yf{bottom:905.461467pt;}
.y2f{bottom:909.621467pt;}
.y4d{bottom:911.861467pt;}
.y6{bottom:929.781467pt;}
.y1{bottom:936.000000pt;}
.yc{bottom:956.000000pt;}
.ha{height:16.800000pt;}
.h4{height:16.988160pt;}
.h6{height:29.333333pt;}
.h5{height:36.480000pt;}
.h3{height:39.137280pt;}
.h2{height:40.448000pt;}
.h9{height:43.392000pt;}
.h7{height:44.480000pt;}
.h8{height:50.334720pt;}
.h1{height:74.666667pt;}
.h0{height:1056.000000pt;}
.w3{width:98.666667pt;}
.w1{width:100.000000pt;}
.w4{width:202.666667pt;}
.w2{width:432.000000pt;}
.w5{width:628.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.871733pt;}
.xa{left:51.925067pt;}
.x2{left:59.711600pt;}
.x4{left:62.917600pt;}
.x7{left:91.032000pt;}
.x1{left:94.666667pt;}
.x10{left:142.442400pt;}
.x5{left:182.251360pt;}
.x3{left:193.333333pt;}
.xc{left:194.245467pt;}
.x9{left:296.000000pt;}
.xd{left:366.856667pt;}
.x13{left:371.468933pt;}
.xe{left:408.644800pt;}
.xb{left:497.333333pt;}
.x12{left:614.854267pt;}
.x11{left:618.558533pt;}
.xf{left:621.520800pt;}
.x6{left:624.000000pt;}
}




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