
    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_b08b701bef6d5991a748c02a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_735e2901d12ef02486b415d6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_067859729934ca887ea8111c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_2708fd9fd160649447b04223.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_5871cefe6a8ef360875825ed.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_3f6b682cb7b249415343fd7f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_7f01aed5c5f9ff0bc494c879.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_3c1675f5acd4f8ee8fefb14b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_be9ae8471867a54597476802.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_83a6b6a4f81df345d331e90e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.752000px;}
.ls2a{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.552000px;}
.ls7{letter-spacing:-0.372000px;}
.ls1b{letter-spacing:-0.096000px;}
.ls18{letter-spacing:-0.024000px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.372000px;}
.ls29{letter-spacing:0.492000px;}
.ls8{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.528000px;}
.ls1{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.552000px;}
.ls0{letter-spacing:0.600000px;}
.ls24{letter-spacing:0.660000px;}
.ls22{letter-spacing:0.696000px;}
.lse{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.888000px;}
.lsf{letter-spacing:0.948000px;}
.ls13{letter-spacing:1.104000px;}
.ls12{letter-spacing:1.140000px;}
.lsd{letter-spacing:1.200000px;}
.ls21{letter-spacing:1.632000px;}
.ls6{letter-spacing:1.800000px;}
.ls1d{letter-spacing:1.980000px;}
.ls25{letter-spacing:3.000000px;}
.ls3{letter-spacing:6.600000px;}
.ls28{letter-spacing:9.000000px;}
.ls17{letter-spacing:12.600000px;}
.ls16{letter-spacing:15.000000px;}
.lsb{letter-spacing:18.600000px;}
.ls10{letter-spacing:21.000000px;}
.ls23{letter-spacing:21.180000px;}
.ls11{letter-spacing:25.800000px;}
.ls26{letter-spacing:33.000000px;}
.ls14{letter-spacing:34.200000px;}
.lsa{letter-spacing:42.660000px;}
.ls1c{letter-spacing:78.600000px;}
.ls27{letter-spacing:167.448000px;}
.ls2{letter-spacing:191.550000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.552000px;}
.ws7{word-spacing:-21.528000px;}
.ws9{word-spacing:-21.372000px;}
.wsa{word-spacing:-21.037500px;}
.ws0{word-spacing:-21.000000px;}
.ws5{word-spacing:-20.976000px;}
.ws8{word-spacing:-20.904000px;}
.ws1{word-spacing:-20.628000px;}
.ws3{word-spacing:-20.448000px;}
.wsc{word-spacing:-19.800000px;}
.wsb{word-spacing:-15.540000px;}
.ws4{word-spacing:-15.000000px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-2.436000px;}
._0{margin-left:-1.056000px;}
._1{width:1.248000px;}
._2{width:2.292000px;}
._20{width:3.726000px;}
._f{width:5.112000px;}
._6{width:6.804000px;}
._7{width:8.184000px;}
._8{width:9.390000px;}
._22{width:10.602000px;}
._e{width:11.718000px;}
._c{width:12.792000px;}
._d{width:14.256000px;}
._10{width:15.588000px;}
._30{width:16.596000px;}
._15{width:17.652000px;}
._4{width:18.732000px;}
._3{width:19.752000px;}
._14{width:22.056000px;}
._17{width:23.964000px;}
._b{width:26.004000px;}
._9{width:27.012000px;}
._16{width:28.488000px;}
._a{width:29.964000px;}
._18{width:31.488000px;}
._31{width:32.826000px;}
._19{width:33.852000px;}
._1b{width:35.298000px;}
._2e{width:36.402000px;}
._29{width:37.680000px;}
._2a{width:38.688000px;}
._32{width:39.948000px;}
._1f{width:41.760000px;}
._1c{width:42.798000px;}
._1d{width:44.100000px;}
._1e{width:45.900000px;}
._25{width:48.972000px;}
._23{width:50.484000px;}
._24{width:51.648000px;}
._35{width:52.770000px;}
._26{width:54.132000px;}
._21{width:55.572000px;}
._1a{width:57.900000px;}
._2b{width:58.992000px;}
._2c{width:62.436000px;}
._2d{width:63.564000px;}
._2f{width:67.416000px;}
._11{width:69.216000px;}
._12{width:70.536000px;}
._13{width:71.760000px;}
._34{width:73.440000px;}
._27{width:78.564000px;}
._28{width:80.640000px;}
._33{width:1789.260000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,103,152);}
.fs3{font-size:39.600000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:84.150000px;}
.fs0{font-size:96.000000px;}
.y88{bottom:-22.425000px;}
.y84{bottom:-20.550000px;}
.y82{bottom:-20.295000px;}
.y8b{bottom:-19.080000px;}
.y77{bottom:-11.850000px;}
.y71{bottom:-6.420000px;}
.y6a{bottom:-6.405000px;}
.y74{bottom:-1.275000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:7.905000px;}
.y6e{bottom:7.950000px;}
.y87{bottom:13.920000px;}
.y83{bottom:15.750000px;}
.y81{bottom:16.050000px;}
.y8a{bottom:16.920000px;}
.y6{bottom:24.337500px;}
.y78{bottom:24.495000px;}
.y70{bottom:29.625000px;}
.y69{bottom:29.925000px;}
.y73{bottom:32.025000px;}
.y86{bottom:49.920000px;}
.y7e{bottom:51.450000px;}
.y80{bottom:52.050000px;}
.y76{bottom:60.480000px;}
.y5{bottom:60.637500px;}
.y7a{bottom:80.250000px;}
.y6c{bottom:80.280000px;}
.y4{bottom:84.637500px;}
.y40{bottom:117.637500px;}
.y66{bottom:123.037500px;}
.y65{bottom:131.437500px;}
.y3f{bottom:135.037500px;}
.y3e{bottom:140.437500px;}
.y22{bottom:147.337500px;}
.y90{bottom:152.130000px;}
.y8f{bottom:157.530000px;}
.y58{bottom:159.345000px;}
.y3d{bottom:165.930000px;}
.y64{bottom:167.430000px;}
.y8e{bottom:183.075000px;}
.y21{bottom:183.375000px;}
.y91{bottom:194.775000px;}
.y57{bottom:195.375000px;}
.y63{bottom:203.775000px;}
.y3c{bottom:204.975000px;}
.y20{bottom:219.675000px;}
.y56{bottom:231.675000px;}
.y62{bottom:240.075000px;}
.y3b{bottom:240.975000px;}
.y61{bottom:247.575000px;}
.y1f{bottom:255.975000px;}
.y55{bottom:267.975000px;}
.y60{bottom:276.375000px;}
.y1e{bottom:291.975000px;}
.y3a{bottom:298.275000px;}
.y54{bottom:303.975000px;}
.y5f{bottom:312.375000px;}
.y1d{bottom:328.275000px;}
.y39{bottom:334.575000px;}
.y53{bottom:340.320000px;}
.y5e{bottom:348.720000px;}
.y85{bottom:353.400000px;}
.y1c{bottom:364.605000px;}
.y38{bottom:370.905000px;}
.y52{bottom:376.620000px;}
.y5d{bottom:385.005000px;}
.y5c{bottom:392.505000px;}
.y1b{bottom:400.905000px;}
.y37{bottom:406.905000px;}
.y89{bottom:411.900000px;}
.y8d{bottom:412.200000px;}
.y8c{bottom:412.500000px;}
.y51{bottom:412.905000px;}
.y5b{bottom:421.320000px;}
.y1a{bottom:436.905000px;}
.y36{bottom:443.205000px;}
.y50{bottom:448.905000px;}
.y19{bottom:473.205000px;}
.y35{bottom:479.505000px;}
.y4f{bottom:485.205000px;}
.y79{bottom:487.800000px;}
.y18{bottom:509.550000px;}
.y34{bottom:515.850000px;}
.y7f{bottom:516.000000px;}
.y4e{bottom:521.550000px;}
.y7b{bottom:532.050000px;}
.y7d{bottom:534.600000px;}
.y17{bottom:545.850000px;}
.y33{bottom:551.850000px;}
.y4d{bottom:557.850000px;}
.y16{bottom:581.850000px;}
.y32{bottom:588.150000px;}
.y4c{bottom:593.850000px;}
.y15{bottom:618.150000px;}
.y31{bottom:624.450000px;}
.y4b{bottom:630.150000px;}
.y67{bottom:637.650000px;}
.y6b{bottom:652.800000px;}
.y14{bottom:654.450000px;}
.y30{bottom:660.750000px;}
.y4a{bottom:666.450000px;}
.y75{bottom:672.600000px;}
.y13{bottom:690.780000px;}
.y2f{bottom:696.780000px;}
.y6d{bottom:697.095000px;}
.y49{bottom:702.780000px;}
.y12{bottom:726.780000px;}
.y48{bottom:738.780000px;}
.y2e{bottom:754.095000px;}
.y11{bottom:763.080000px;}
.y47{bottom:775.080000px;}
.y2d{bottom:790.380000px;}
.y10{bottom:799.380000px;}
.y46{bottom:811.380000px;}
.y68{bottom:816.600000px;}
.y6f{bottom:819.000000px;}
.y2c{bottom:826.695000px;}
.yf{bottom:835.695000px;}
.y45{bottom:847.725000px;}
.y2b{bottom:862.725000px;}
.ye{bottom:871.725000px;}
.y44{bottom:883.725000px;}
.y2a{bottom:899.025000px;}
.yd{bottom:908.025000px;}
.y43{bottom:920.025000px;}
.y5a{bottom:927.525000px;}
.y29{bottom:935.325000px;}
.y72{bottom:937.800000px;}
.yc{bottom:944.325000px;}
.y42{bottom:956.325000px;}
.y28{bottom:971.625000px;}
.yb{bottom:980.625000px;}
.y41{bottom:992.625000px;}
.ya{bottom:1016.655000px;}
.y26{bottom:1028.670000px;}
.y27{bottom:1036.170000px;}
.y9{bottom:1052.955000px;}
.y25{bottom:1064.955000px;}
.y8{bottom:1100.655000px;}
.y24{bottom:1101.255000px;}
.y7{bottom:1136.955000px;}
.y23{bottom:1137.570000px;}
.y59{bottom:1145.070000px;}
.y3{bottom:1168.755000px;}
.y2{bottom:1193.700000px;}
.y1{bottom:1225.500000px;}
.h13{height:36.000000px;}
.h9{height:38.865234px;}
.he{height:48.600000px;}
.hb{height:48.900000px;}
.h8{height:52.998047px;}
.ha{height:58.886719px;}
.h12{height:69.000000px;}
.hf{height:70.664062px;}
.h2{height:71.062500px;}
.h11{height:71.100000px;}
.h6{height:74.033203px;}
.h10{height:79.500000px;}
.h14{height:82.400391px;}
.h3{height:82.441406px;}
.hc{height:82.588623px;}
.h5{height:84.656250px;}
.h4{height:86.009766px;}
.h15{height:86.338763px;}
.hd{height:99.300000px;}
.h7{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wc{width:78.900000px;}
.w7{width:99.900000px;}
.w8{width:118.500000px;}
.wa{width:124.800000px;}
.w9{width:131.700000px;}
.w6{width:132.000000px;}
.wb{width:136.800000px;}
.w4{width:182.400000px;}
.w5{width:182.700000px;}
.w3{width:291.600000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:10.920000px;}
.x28{left:13.020000px;}
.x2e{left:14.325000px;}
.x21{left:16.680000px;}
.x38{left:18.480000px;}
.x26{left:21.637500px;}
.x35{left:29.475000px;}
.x2c{left:31.425000px;}
.x1a{left:34.230000px;}
.x37{left:35.925000px;}
.x1f{left:38.625000px;}
.x39{left:44.595000px;}
.x1d{left:46.725000px;}
.x25{left:48.337500px;}
.x34{left:59.295000px;}
.x22{left:70.620000px;}
.x2f{left:75.600000px;}
.x24{left:94.200000px;}
.x1b{left:107.475000px;}
.xb{left:108.937500px;}
.xc{left:119.437500px;}
.x19{left:125.400000px;}
.x3{left:127.537500px;}
.xf{left:132.637500px;}
.x14{left:134.437500px;}
.xa{left:170.130000px;}
.x1{left:183.075000px;}
.x7{left:210.075000px;}
.x3b{left:223.200000px;}
.x12{left:237.637500px;}
.x13{left:244.575000px;}
.x4{left:246.375000px;}
.x27{left:282.900000px;}
.x3e{left:286.837500px;}
.x3f{left:293.775000px;}
.x30{left:309.000000px;}
.x3c{left:314.100000px;}
.x2{left:315.420000px;}
.x6{left:326.820000px;}
.x9{left:344.220000px;}
.x42{left:377.505000px;}
.x8{left:382.020000px;}
.x3d{left:402.000000px;}
.x40{left:407.467500px;}
.x41{left:414.405000px;}
.x31{left:434.400000px;}
.x29{left:473.400000px;}
.x3a{left:489.900000px;}
.x5{left:499.650000px;}
.x2a{left:514.350000px;}
.x20{left:527.400000px;}
.x17{left:570.457500px;}
.x32{left:573.900000px;}
.x18{left:577.380000px;}
.x33{left:587.880000px;}
.x1c{left:661.800000px;}
.x1e{left:702.825000px;}
.x2b{left:711.900000px;}
.x36{left:719.100000px;}
.x2d{left:733.425000px;}
.x10{left:752.587500px;}
.x11{left:759.525000px;}
.xd{left:776.332500px;}
.x15{left:779.332500px;}
.xe{left:783.255000px;}
.x16{left:786.255000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.557333pt;}
.ls2a{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.490667pt;}
.ls7{letter-spacing:-0.330667pt;}
.ls1b{letter-spacing:-0.085333pt;}
.ls18{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.330667pt;}
.ls29{letter-spacing:0.437333pt;}
.ls8{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.469333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.490667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls24{letter-spacing:0.586667pt;}
.ls22{letter-spacing:0.618667pt;}
.lse{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.789333pt;}
.lsf{letter-spacing:0.842667pt;}
.ls13{letter-spacing:0.981333pt;}
.ls12{letter-spacing:1.013333pt;}
.lsd{letter-spacing:1.066667pt;}
.ls21{letter-spacing:1.450667pt;}
.ls6{letter-spacing:1.600000pt;}
.ls1d{letter-spacing:1.760000pt;}
.ls25{letter-spacing:2.666667pt;}
.ls3{letter-spacing:5.866667pt;}
.ls28{letter-spacing:8.000000pt;}
.ls17{letter-spacing:11.200000pt;}
.ls16{letter-spacing:13.333333pt;}
.lsb{letter-spacing:16.533333pt;}
.ls10{letter-spacing:18.666667pt;}
.ls23{letter-spacing:18.826667pt;}
.ls11{letter-spacing:22.933333pt;}
.ls26{letter-spacing:29.333333pt;}
.ls14{letter-spacing:30.400000pt;}
.lsa{letter-spacing:37.920000pt;}
.ls1c{letter-spacing:69.866667pt;}
.ls27{letter-spacing:148.842667pt;}
.ls2{letter-spacing:170.266667pt;}
.ws6{word-spacing:-19.157333pt;}
.ws7{word-spacing:-19.136000pt;}
.ws9{word-spacing:-18.997333pt;}
.wsa{word-spacing:-18.700000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws5{word-spacing:-18.645333pt;}
.ws8{word-spacing:-18.581333pt;}
.ws1{word-spacing:-18.336000pt;}
.ws3{word-spacing:-18.176000pt;}
.wsc{word-spacing:-17.600000pt;}
.wsb{word-spacing:-13.813333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-2.165333pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.109333pt;}
._2{width:2.037333pt;}
._20{width:3.312000pt;}
._f{width:4.544000pt;}
._6{width:6.048000pt;}
._7{width:7.274667pt;}
._8{width:8.346667pt;}
._22{width:9.424000pt;}
._e{width:10.416000pt;}
._c{width:11.370667pt;}
._d{width:12.672000pt;}
._10{width:13.856000pt;}
._30{width:14.752000pt;}
._15{width:15.690667pt;}
._4{width:16.650667pt;}
._3{width:17.557333pt;}
._14{width:19.605333pt;}
._17{width:21.301333pt;}
._b{width:23.114667pt;}
._9{width:24.010667pt;}
._16{width:25.322667pt;}
._a{width:26.634667pt;}
._18{width:27.989333pt;}
._31{width:29.178667pt;}
._19{width:30.090667pt;}
._1b{width:31.376000pt;}
._2e{width:32.357333pt;}
._29{width:33.493333pt;}
._2a{width:34.389333pt;}
._32{width:35.509333pt;}
._1f{width:37.120000pt;}
._1c{width:38.042667pt;}
._1d{width:39.200000pt;}
._1e{width:40.800000pt;}
._25{width:43.530667pt;}
._23{width:44.874667pt;}
._24{width:45.909333pt;}
._35{width:46.906667pt;}
._26{width:48.117333pt;}
._21{width:49.397333pt;}
._1a{width:51.466667pt;}
._2b{width:52.437333pt;}
._2c{width:55.498667pt;}
._2d{width:56.501333pt;}
._2f{width:59.925333pt;}
._11{width:61.525333pt;}
._12{width:62.698667pt;}
._13{width:63.786667pt;}
._34{width:65.280000pt;}
._27{width:69.834667pt;}
._28{width:71.680000pt;}
._33{width:1590.453333pt;}
.fs3{font-size:35.200000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:74.800000pt;}
.fs0{font-size:85.333333pt;}
.y88{bottom:-19.933333pt;}
.y84{bottom:-18.266667pt;}
.y82{bottom:-18.040000pt;}
.y8b{bottom:-16.960000pt;}
.y77{bottom:-10.533333pt;}
.y71{bottom:-5.706667pt;}
.y6a{bottom:-5.693333pt;}
.y74{bottom:-1.133333pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:7.026667pt;}
.y6e{bottom:7.066667pt;}
.y87{bottom:12.373333pt;}
.y83{bottom:14.000000pt;}
.y81{bottom:14.266667pt;}
.y8a{bottom:15.040000pt;}
.y6{bottom:21.633333pt;}
.y78{bottom:21.773333pt;}
.y70{bottom:26.333333pt;}
.y69{bottom:26.600000pt;}
.y73{bottom:28.466667pt;}
.y86{bottom:44.373333pt;}
.y7e{bottom:45.733333pt;}
.y80{bottom:46.266667pt;}
.y76{bottom:53.760000pt;}
.y5{bottom:53.900000pt;}
.y7a{bottom:71.333333pt;}
.y6c{bottom:71.360000pt;}
.y4{bottom:75.233333pt;}
.y40{bottom:104.566667pt;}
.y66{bottom:109.366667pt;}
.y65{bottom:116.833333pt;}
.y3f{bottom:120.033333pt;}
.y3e{bottom:124.833333pt;}
.y22{bottom:130.966667pt;}
.y90{bottom:135.226667pt;}
.y8f{bottom:140.026667pt;}
.y58{bottom:141.640000pt;}
.y3d{bottom:147.493333pt;}
.y64{bottom:148.826667pt;}
.y8e{bottom:162.733333pt;}
.y21{bottom:163.000000pt;}
.y91{bottom:173.133333pt;}
.y57{bottom:173.666667pt;}
.y63{bottom:181.133333pt;}
.y3c{bottom:182.200000pt;}
.y20{bottom:195.266667pt;}
.y56{bottom:205.933333pt;}
.y62{bottom:213.400000pt;}
.y3b{bottom:214.200000pt;}
.y61{bottom:220.066667pt;}
.y1f{bottom:227.533333pt;}
.y55{bottom:238.200000pt;}
.y60{bottom:245.666667pt;}
.y1e{bottom:259.533333pt;}
.y3a{bottom:265.133333pt;}
.y54{bottom:270.200000pt;}
.y5f{bottom:277.666667pt;}
.y1d{bottom:291.800000pt;}
.y39{bottom:297.400000pt;}
.y53{bottom:302.506667pt;}
.y5e{bottom:309.973333pt;}
.y85{bottom:314.133333pt;}
.y1c{bottom:324.093333pt;}
.y38{bottom:329.693333pt;}
.y52{bottom:334.773333pt;}
.y5d{bottom:342.226667pt;}
.y5c{bottom:348.893333pt;}
.y1b{bottom:356.360000pt;}
.y37{bottom:361.693333pt;}
.y89{bottom:366.133333pt;}
.y8d{bottom:366.400000pt;}
.y8c{bottom:366.666667pt;}
.y51{bottom:367.026667pt;}
.y5b{bottom:374.506667pt;}
.y1a{bottom:388.360000pt;}
.y36{bottom:393.960000pt;}
.y50{bottom:399.026667pt;}
.y19{bottom:420.626667pt;}
.y35{bottom:426.226667pt;}
.y4f{bottom:431.293333pt;}
.y79{bottom:433.600000pt;}
.y18{bottom:452.933333pt;}
.y34{bottom:458.533333pt;}
.y7f{bottom:458.666667pt;}
.y4e{bottom:463.600000pt;}
.y7b{bottom:472.933333pt;}
.y7d{bottom:475.200000pt;}
.y17{bottom:485.200000pt;}
.y33{bottom:490.533333pt;}
.y4d{bottom:495.866667pt;}
.y16{bottom:517.200000pt;}
.y32{bottom:522.800000pt;}
.y4c{bottom:527.866667pt;}
.y15{bottom:549.466667pt;}
.y31{bottom:555.066667pt;}
.y4b{bottom:560.133333pt;}
.y67{bottom:566.800000pt;}
.y6b{bottom:580.266667pt;}
.y14{bottom:581.733333pt;}
.y30{bottom:587.333333pt;}
.y4a{bottom:592.400000pt;}
.y75{bottom:597.866667pt;}
.y13{bottom:614.026667pt;}
.y2f{bottom:619.360000pt;}
.y6d{bottom:619.640000pt;}
.y49{bottom:624.693333pt;}
.y12{bottom:646.026667pt;}
.y48{bottom:656.693333pt;}
.y2e{bottom:670.306667pt;}
.y11{bottom:678.293333pt;}
.y47{bottom:688.960000pt;}
.y2d{bottom:702.560000pt;}
.y10{bottom:710.560000pt;}
.y46{bottom:721.226667pt;}
.y68{bottom:725.866667pt;}
.y6f{bottom:728.000000pt;}
.y2c{bottom:734.840000pt;}
.yf{bottom:742.840000pt;}
.y45{bottom:753.533333pt;}
.y2b{bottom:766.866667pt;}
.ye{bottom:774.866667pt;}
.y44{bottom:785.533333pt;}
.y2a{bottom:799.133333pt;}
.yd{bottom:807.133333pt;}
.y43{bottom:817.800000pt;}
.y5a{bottom:824.466667pt;}
.y29{bottom:831.400000pt;}
.y72{bottom:833.600000pt;}
.yc{bottom:839.400000pt;}
.y42{bottom:850.066667pt;}
.y28{bottom:863.666667pt;}
.yb{bottom:871.666667pt;}
.y41{bottom:882.333333pt;}
.ya{bottom:903.693333pt;}
.y26{bottom:914.373333pt;}
.y27{bottom:921.040000pt;}
.y9{bottom:935.960000pt;}
.y25{bottom:946.626667pt;}
.y8{bottom:978.360000pt;}
.y24{bottom:978.893333pt;}
.y7{bottom:1010.626667pt;}
.y23{bottom:1011.173333pt;}
.y59{bottom:1017.840000pt;}
.y3{bottom:1038.893333pt;}
.y2{bottom:1061.066667pt;}
.y1{bottom:1089.333333pt;}
.h13{height:32.000000pt;}
.h9{height:34.546875pt;}
.he{height:43.200000pt;}
.hb{height:43.466667pt;}
.h8{height:47.109375pt;}
.ha{height:52.343750pt;}
.h12{height:61.333333pt;}
.hf{height:62.812500pt;}
.h2{height:63.166667pt;}
.h11{height:63.200000pt;}
.h6{height:65.807292pt;}
.h10{height:70.666667pt;}
.h14{height:73.244792pt;}
.h3{height:73.281250pt;}
.hc{height:73.412109pt;}
.h5{height:75.250000pt;}
.h4{height:76.453125pt;}
.h15{height:76.745567pt;}
.hd{height:88.266667pt;}
.h7{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wc{width:70.133333pt;}
.w7{width:88.800000pt;}
.w8{width:105.333333pt;}
.wa{width:110.933333pt;}
.w9{width:117.066667pt;}
.w6{width:117.333333pt;}
.wb{width:121.600000pt;}
.w4{width:162.133333pt;}
.w5{width:162.400000pt;}
.w3{width:259.200000pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:9.706667pt;}
.x28{left:11.573333pt;}
.x2e{left:12.733333pt;}
.x21{left:14.826667pt;}
.x38{left:16.426667pt;}
.x26{left:19.233333pt;}
.x35{left:26.200000pt;}
.x2c{left:27.933333pt;}
.x1a{left:30.426667pt;}
.x37{left:31.933333pt;}
.x1f{left:34.333333pt;}
.x39{left:39.640000pt;}
.x1d{left:41.533333pt;}
.x25{left:42.966667pt;}
.x34{left:52.706667pt;}
.x22{left:62.773333pt;}
.x2f{left:67.200000pt;}
.x24{left:83.733333pt;}
.x1b{left:95.533333pt;}
.xb{left:96.833333pt;}
.xc{left:106.166667pt;}
.x19{left:111.466667pt;}
.x3{left:113.366667pt;}
.xf{left:117.900000pt;}
.x14{left:119.500000pt;}
.xa{left:151.226667pt;}
.x1{left:162.733333pt;}
.x7{left:186.733333pt;}
.x3b{left:198.400000pt;}
.x12{left:211.233333pt;}
.x13{left:217.400000pt;}
.x4{left:219.000000pt;}
.x27{left:251.466667pt;}
.x3e{left:254.966667pt;}
.x3f{left:261.133333pt;}
.x30{left:274.666667pt;}
.x3c{left:279.200000pt;}
.x2{left:280.373333pt;}
.x6{left:290.506667pt;}
.x9{left:305.973333pt;}
.x42{left:335.560000pt;}
.x8{left:339.573333pt;}
.x3d{left:357.333333pt;}
.x40{left:362.193333pt;}
.x41{left:368.360000pt;}
.x31{left:386.133333pt;}
.x29{left:420.800000pt;}
.x3a{left:435.466667pt;}
.x5{left:444.133333pt;}
.x2a{left:457.200000pt;}
.x20{left:468.800000pt;}
.x17{left:507.073333pt;}
.x32{left:510.133333pt;}
.x18{left:513.226667pt;}
.x33{left:522.560000pt;}
.x1c{left:588.266667pt;}
.x1e{left:624.733333pt;}
.x2b{left:632.800000pt;}
.x36{left:639.200000pt;}
.x2d{left:651.933333pt;}
.x10{left:668.966667pt;}
.x11{left:675.133333pt;}
.xd{left:690.073333pt;}
.x15{left:692.740000pt;}
.xe{left:696.226667pt;}
.x16{left:698.893333pt;}
}




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