
    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_20ef48925dfd1b3c6a2434fc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.929688;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_c6cf765a79e745cd51a31443.woff')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_e3f6340886aa2f460a114b4c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.836000;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_80c8da4dd6c6954a5942bc93.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6716026cc3abc544497d3be7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959473;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_7a2748a860b4bf614de4350f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_755cdbbbb1154dd3a660691e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.918945;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_a595881d8c53505782067ffc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_576a9a4e9407c90cc7b00991.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;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_291eea4233325b43d1f85c51.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3fd3058c7759d70b9c5de87d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.959473;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_18f97cc9528549196f9d4470.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922852;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_e91f71cadb8c2d9a25e2e39c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cf69244762e1d6e051cb2258.woff')format("woff");}.ffe{font-family:ffe;line-height:0.952637;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;}
.ls30{letter-spacing:-0.211968px;}
.ls2c{letter-spacing:-0.198720px;}
.ls31{letter-spacing:-0.192096px;}
.ls33{letter-spacing:-0.172224px;}
.ls29{letter-spacing:-0.165600px;}
.ls26{letter-spacing:-0.152352px;}
.ls24{letter-spacing:-0.145728px;}
.ls28{letter-spacing:-0.139104px;}
.ls2d{letter-spacing:-0.132480px;}
.ls2a{letter-spacing:-0.125856px;}
.ls34{letter-spacing:-0.119232px;}
.ls7{letter-spacing:-0.117936px;}
.ls2f{letter-spacing:-0.112608px;}
.ls25{letter-spacing:-0.105984px;}
.ls32{letter-spacing:-0.086112px;}
.ls2b{letter-spacing:-0.079488px;}
.ls27{letter-spacing:-0.066240px;}
.ls35{letter-spacing:-0.059616px;}
.ls2e{letter-spacing:-0.046368px;}
.lsc{letter-spacing:-0.036000px;}
.ls13{letter-spacing:-0.021600px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018720px;}
.lsb{letter-spacing:0.021600px;}
.ls3{letter-spacing:0.036576px;}
.ls39{letter-spacing:0.037584px;}
.ls38{letter-spacing:0.050112px;}
.ls3d{letter-spacing:0.054288px;}
.ls1b{letter-spacing:0.059040px;}
.ls1c{letter-spacing:0.060480px;}
.ls1d{letter-spacing:0.066816px;}
.ls1e{letter-spacing:0.079200px;}
.ls5{letter-spacing:0.079344px;}
.ls1a{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.095040px;}
.ls3c{letter-spacing:0.100224px;}
.ls3a{letter-spacing:0.108576px;}
.ls20{letter-spacing:0.109296px;}
.ls6{letter-spacing:0.112752px;}
.ls1{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.120096px;}
.lsd{letter-spacing:0.120960px;}
.ls1f{letter-spacing:0.125280px;}
.lse{letter-spacing:0.126720px;}
.ls37{letter-spacing:0.133632px;}
.ls36{letter-spacing:0.137808px;}
.ls3b{letter-spacing:0.162864px;}
.lsa{letter-spacing:0.209088px;}
.ls16{letter-spacing:0.228096px;}
.ls23{letter-spacing:0.242352px;}
.ls14{letter-spacing:0.247104px;}
.ls8{letter-spacing:0.256608px;}
.ls0{letter-spacing:0.283104px;}
.lsf{letter-spacing:0.285120px;}
.ls9{letter-spacing:0.299376px;}
.ls22{letter-spacing:0.318384px;}
.ls21{letter-spacing:0.327888px;}
.ls15{letter-spacing:0.370656px;}
.ls12{letter-spacing:0.422928px;}
.ls10{letter-spacing:0.437184px;}
.ls18{letter-spacing:0.479952px;}
.ls17{letter-spacing:0.480096px;}
.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.021600px;}
.ws4{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.978400px;}
.ws5{word-spacing:-17.964000px;}
.wsd{word-spacing:-16.560000px;}
.wse{word-spacing:-16.480512px;}
.wsb{word-spacing:-16.454016px;}
.ws10{word-spacing:-16.447392px;}
.wsf{word-spacing:-16.434144px;}
.wsc{word-spacing:-16.394400px;}
.ws8{word-spacing:-12.302928px;}
.ws9{word-spacing:-12.250656px;}
.ws1{word-spacing:-12.136608px;}
.wsa{word-spacing:-12.127104px;}
.ws1a{word-spacing:-10.602864px;}
.ws12{word-spacing:-10.577808px;}
.ws15{word-spacing:-10.573632px;}
.ws18{word-spacing:-10.565280px;}
.ws19{word-spacing:-10.548576px;}
.ws1b{word-spacing:-10.540224px;}
.ws13{word-spacing:-10.519344px;}
.ws14{word-spacing:-10.506816px;}
.ws1c{word-spacing:-10.494288px;}
.ws16{word-spacing:-10.490112px;}
.ws17{word-spacing:-10.477584px;}
.ws0{word-spacing:-8.464752px;}
.ws2{word-spacing:-0.346896px;}
.ws6{word-spacing:-0.216000px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-14.999904px;}
._19{margin-left:-4.291200px;}
._d{margin-left:-3.175200px;}
._2{margin-left:-1.545120px;}
._e{width:1.267200px;}
._a{width:3.398400px;}
._9{width:5.184000px;}
._6{width:6.282000px;}
._27{width:7.452000px;}
._14{width:8.524800px;}
._3{width:9.763200px;}
._13{width:10.886400px;}
._1c{width:13.075200px;}
._1d{width:14.112000px;}
._1f{width:15.220800px;}
._16{width:19.216800px;}
._7{width:21.165264px;}
._11{width:22.226400px;}
._c{width:23.234400px;}
._10{width:25.466400px;}
._f{width:26.539200px;}
._23{width:27.540000px;}
._1e{width:29.239200px;}
._21{width:30.435552px;}
._b{width:31.766400px;}
._20{width:32.875200px;}
._1a{width:34.668000px;}
._12{width:39.700800px;}
._24{width:42.163200px;}
._15{width:46.044000px;}
._8{width:50.392800px;}
._26{width:56.685600px;}
._5{width:58.168800px;}
._18{width:61.034400px;}
._25{width:67.903200px;}
._17{width:74.930400px;}
._4{width:76.896000px;}
._22{width:81.885600px;}
._1{width:1932.600528px;}
._1b{width:3018.898944px;}
.fc4{color:rgb(220,0,106);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(70,120,134);}
.fc1{color:transparent;}
.fc0{color:rgb(24,23,23);}
.fs1{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs3{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:168.480000px;}
.fs6{font-size:182.880000px;}
.fs5{font-size:216.000000px;}
.y7{bottom:-4.980000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.960000px;}
.y8{bottom:6.900000px;}
.y6{bottom:7.260000px;}
.y23{bottom:17.400000px;}
.y25{bottom:19.620000px;}
.y2{bottom:58.680000px;}
.y3{bottom:63.000000px;}
.y21{bottom:123.120000px;}
.y6c{bottom:125.280000px;}
.y51{bottom:128.520000px;}
.y20{bottom:141.480000px;}
.y6b{bottom:143.640000px;}
.y50{bottom:146.880000px;}
.y1f{bottom:159.480000px;}
.y6a{bottom:161.640000px;}
.y4f{bottom:164.880000px;}
.y1e{bottom:177.840000px;}
.y69{bottom:180.000000px;}
.y4e{bottom:183.240000px;}
.y1d{bottom:196.200000px;}
.y68{bottom:198.360000px;}
.y4d{bottom:201.240000px;}
.y1c{bottom:214.200000px;}
.y67{bottom:216.360000px;}
.y4c{bottom:219.600000px;}
.y1b{bottom:232.560000px;}
.y66{bottom:234.720000px;}
.y4b{bottom:237.960000px;}
.yaf{bottom:241.920000px;}
.y1a{bottom:250.560000px;}
.y65{bottom:253.080000px;}
.y4a{bottom:255.960000px;}
.y7f{bottom:258.840000px;}
.y19{bottom:268.920000px;}
.y64{bottom:271.080000px;}
.y49{bottom:274.320000px;}
.y18{bottom:287.280000px;}
.y63{bottom:289.440000px;}
.y48{bottom:292.680000px;}
.y17{bottom:305.280000px;}
.y62{bottom:307.440000px;}
.y47{bottom:310.680000px;}
.yae{bottom:316.440000px;}
.y16{bottom:323.640000px;}
.y61{bottom:325.800000px;}
.yad{bottom:328.320000px;}
.y46{bottom:329.040000px;}
.yac{bottom:339.840000px;}
.y15{bottom:342.000000px;}
.y60{bottom:344.160000px;}
.y45{bottom:347.040000px;}
.yab{bottom:353.880000px;}
.y14{bottom:360.000000px;}
.y5f{bottom:362.160000px;}
.y44{bottom:365.400000px;}
.yaa{bottom:374.040000px;}
.y13{bottom:378.360000px;}
.y5e{bottom:380.520000px;}
.y43{bottom:383.760000px;}
.ya9{bottom:394.200000px;}
.y12{bottom:396.360000px;}
.y5d{bottom:398.880000px;}
.y42{bottom:401.760000px;}
.ya8{bottom:414.360000px;}
.y11{bottom:414.720000px;}
.y5c{bottom:416.880000px;}
.y41{bottom:420.120000px;}
.y10{bottom:433.080000px;}
.ya7{bottom:434.880000px;}
.y5b{bottom:435.240000px;}
.y40{bottom:438.480000px;}
.yf{bottom:451.080000px;}
.y5a{bottom:453.240000px;}
.ya6{bottom:454.320000px;}
.y3f{bottom:456.480000px;}
.y24{bottom:463.500000px;}
.y22{bottom:465.000000px;}
.ye{bottom:469.440000px;}
.ya5{bottom:470.880000px;}
.y59{bottom:471.600000px;}
.y3e{bottom:474.840000px;}
.yd{bottom:487.800000px;}
.y58{bottom:489.960000px;}
.y3d{bottom:492.840000px;}
.ya4{bottom:504.360000px;}
.yc{bottom:505.800000px;}
.y57{bottom:507.960000px;}
.y3c{bottom:511.200000px;}
.ya3{bottom:521.280000px;}
.y56{bottom:524.880000px;}
.y3b{bottom:529.560000px;}
.y55{bottom:537.120000px;}
.ya2{bottom:537.840000px;}
.yb{bottom:541.800000px;}
.y3a{bottom:547.560000px;}
.y54{bottom:549.000000px;}
.ya1{bottom:554.400000px;}
.ya{bottom:558.720000px;}
.y53{bottom:561.240000px;}
.y39{bottom:565.920000px;}
.y52{bottom:570.600000px;}
.ya0{bottom:571.320000px;}
.y38{bottom:584.280000px;}
.y9f{bottom:587.880000px;}
.y37{bottom:602.280000px;}
.y9e{bottom:604.800000px;}
.y36{bottom:620.640000px;}
.y9d{bottom:621.360000px;}
.y7e{bottom:624.960000px;}
.y9c{bottom:637.920000px;}
.y35{bottom:638.640000px;}
.y7d{bottom:642.960000px;}
.y9b{bottom:654.840000px;}
.y34{bottom:657.000000px;}
.y7c{bottom:661.320000px;}
.y9a{bottom:671.400000px;}
.y33{bottom:673.920000px;}
.y7b{bottom:679.680000px;}
.y32{bottom:685.800000px;}
.y99{bottom:688.320000px;}
.y7a{bottom:697.680000px;}
.y31{bottom:698.040000px;}
.y98{bottom:704.880000px;}
.y30{bottom:710.280000px;}
.y79{bottom:716.040000px;}
.y2f{bottom:719.640000px;}
.y97{bottom:721.440000px;}
.y78{bottom:734.400000px;}
.y96{bottom:738.360000px;}
.y77{bottom:752.400000px;}
.y95{bottom:754.920000px;}
.y76{bottom:770.760000px;}
.y94{bottom:771.840000px;}
.y93{bottom:788.400000px;}
.y75{bottom:788.760000px;}
.y92{bottom:804.960000px;}
.y74{bottom:807.120000px;}
.y91{bottom:821.880000px;}
.y73{bottom:825.480000px;}
.y90{bottom:838.440000px;}
.y72{bottom:842.040000px;}
.y71{bottom:854.280000px;}
.y8f{bottom:855.360000px;}
.y70{bottom:866.520000px;}
.y8e{bottom:871.920000px;}
.y6f{bottom:878.760000px;}
.y8d{bottom:888.480000px;}
.y6e{bottom:890.640000px;}
.y6d{bottom:900.000000px;}
.y8c{bottom:905.400000px;}
.y8b{bottom:921.960000px;}
.y8a{bottom:938.880000px;}
.y89{bottom:955.440000px;}
.y88{bottom:972.360000px;}
.y87{bottom:988.920000px;}
.y2e{bottom:995.040000px;}
.y86{bottom:1005.480000px;}
.y2d{bottom:1013.400000px;}
.y85{bottom:1022.400000px;}
.y2c{bottom:1031.760000px;}
.y84{bottom:1038.960000px;}
.y2b{bottom:1049.760000px;}
.y83{bottom:1055.880000px;}
.y2a{bottom:1068.120000px;}
.y82{bottom:1072.440000px;}
.y29{bottom:1086.480000px;}
.y81{bottom:1089.000000px;}
.y9{bottom:1089.360000px;}
.y28{bottom:1104.480000px;}
.y80{bottom:1105.920000px;}
.y27{bottom:1122.840000px;}
.y26{bottom:1140.840000px;}
.y5{bottom:1186.500000px;}
.y1{bottom:1193.400000px;}
.h3{height:15.000000px;}
.h5{height:16.500000px;}
.hd{height:29.077031px;}
.h4{height:29.440800px;}
.h7{height:33.087656px;}
.hc{height:44.149219px;}
.hb{height:46.122188px;}
.h2{height:47.988281px;}
.h8{height:55.500000px;}
.ha{height:57.000000px;}
.h6{height:137.648160px;}
.h9{height:143.964844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:31.500000px;}
.w5{width:55.500000px;}
.w3{width:183.300000px;}
.w4{width:271.500000px;}
.w6{width:273.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:10.170012px;}
.x4{left:21.495108px;}
.x3{left:51.000000px;}
.xe{left:53.624988px;}
.x19{left:55.322388px;}
.x21{left:56.370492px;}
.x18{left:60.103620px;}
.x22{left:62.100936px;}
.x15{left:67.500000px;}
.x20{left:72.197388px;}
.x11{left:75.375000px;}
.x10{left:77.446296px;}
.x12{left:103.124988px;}
.xd{left:108.609012px;}
.x7{left:134.242440px;}
.x23{left:184.529664px;}
.x6{left:189.197520px;}
.x8{left:204.000000px;}
.x1{left:211.094964px;}
.x1a{left:225.546012px;}
.x2{left:238.844988px;}
.x17{left:246.674916px;}
.x14{left:256.935120px;}
.xa{left:299.021472px;}
.xc{left:348.142104px;}
.x16{left:438.075000px;}
.xf{left:453.224880px;}
.x27{left:455.325120px;}
.x1d{left:456.948720px;}
.x1e{left:461.715480px;}
.x1f{left:468.204840px;}
.x1c{left:470.589480px;}
.x24{left:506.774880px;}
.x13{left:574.500000px;}
.x25{left:649.404720px;}
.x5{left:709.500000px;}
.x26{left:720.648720px;}
.xb{left:834.127560px;}
.x1b{left:838.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-0.188416pt;}
.ls2c{letter-spacing:-0.176640pt;}
.ls31{letter-spacing:-0.170752pt;}
.ls33{letter-spacing:-0.153088pt;}
.ls29{letter-spacing:-0.147200pt;}
.ls26{letter-spacing:-0.135424pt;}
.ls24{letter-spacing:-0.129536pt;}
.ls28{letter-spacing:-0.123648pt;}
.ls2d{letter-spacing:-0.117760pt;}
.ls2a{letter-spacing:-0.111872pt;}
.ls34{letter-spacing:-0.105984pt;}
.ls7{letter-spacing:-0.104832pt;}
.ls2f{letter-spacing:-0.100096pt;}
.ls25{letter-spacing:-0.094208pt;}
.ls32{letter-spacing:-0.076544pt;}
.ls2b{letter-spacing:-0.070656pt;}
.ls27{letter-spacing:-0.058880pt;}
.ls35{letter-spacing:-0.052992pt;}
.ls2e{letter-spacing:-0.041216pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls13{letter-spacing:-0.019200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016640pt;}
.lsb{letter-spacing:0.019200pt;}
.ls3{letter-spacing:0.032512pt;}
.ls39{letter-spacing:0.033408pt;}
.ls38{letter-spacing:0.044544pt;}
.ls3d{letter-spacing:0.048256pt;}
.ls1b{letter-spacing:0.052480pt;}
.ls1c{letter-spacing:0.053760pt;}
.ls1d{letter-spacing:0.059392pt;}
.ls1e{letter-spacing:0.070400pt;}
.ls5{letter-spacing:0.070528pt;}
.ls1a{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.084480pt;}
.ls3c{letter-spacing:0.089088pt;}
.ls3a{letter-spacing:0.096512pt;}
.ls20{letter-spacing:0.097152pt;}
.ls6{letter-spacing:0.100224pt;}
.ls1{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.106752pt;}
.lsd{letter-spacing:0.107520pt;}
.ls1f{letter-spacing:0.111360pt;}
.lse{letter-spacing:0.112640pt;}
.ls37{letter-spacing:0.118784pt;}
.ls36{letter-spacing:0.122496pt;}
.ls3b{letter-spacing:0.144768pt;}
.lsa{letter-spacing:0.185856pt;}
.ls16{letter-spacing:0.202752pt;}
.ls23{letter-spacing:0.215424pt;}
.ls14{letter-spacing:0.219648pt;}
.ls8{letter-spacing:0.228096pt;}
.ls0{letter-spacing:0.251648pt;}
.lsf{letter-spacing:0.253440pt;}
.ls9{letter-spacing:0.266112pt;}
.ls22{letter-spacing:0.283008pt;}
.ls21{letter-spacing:0.291456pt;}
.ls15{letter-spacing:0.329472pt;}
.ls12{letter-spacing:0.375936pt;}
.ls10{letter-spacing:0.388608pt;}
.ls18{letter-spacing:0.426624pt;}
.ls17{letter-spacing:0.426752pt;}
.ws3{word-spacing:-16.019200pt;}
.ws4{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.980800pt;}
.ws5{word-spacing:-15.968000pt;}
.wsd{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.649344pt;}
.wsb{word-spacing:-14.625792pt;}
.ws10{word-spacing:-14.619904pt;}
.wsf{word-spacing:-14.608128pt;}
.wsc{word-spacing:-14.572800pt;}
.ws8{word-spacing:-10.935936pt;}
.ws9{word-spacing:-10.889472pt;}
.ws1{word-spacing:-10.788096pt;}
.wsa{word-spacing:-10.779648pt;}
.ws1a{word-spacing:-9.424768pt;}
.ws12{word-spacing:-9.402496pt;}
.ws15{word-spacing:-9.398784pt;}
.ws18{word-spacing:-9.391360pt;}
.ws19{word-spacing:-9.376512pt;}
.ws1b{word-spacing:-9.369088pt;}
.ws13{word-spacing:-9.350528pt;}
.ws14{word-spacing:-9.339392pt;}
.ws1c{word-spacing:-9.328256pt;}
.ws16{word-spacing:-9.324544pt;}
.ws17{word-spacing:-9.313408pt;}
.ws0{word-spacing:-7.524224pt;}
.ws2{word-spacing:-0.308352pt;}
.ws6{word-spacing:-0.192000pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-13.333248pt;}
._19{margin-left:-3.814400pt;}
._d{margin-left:-2.822400pt;}
._2{margin-left:-1.373440pt;}
._e{width:1.126400pt;}
._a{width:3.020800pt;}
._9{width:4.608000pt;}
._6{width:5.584000pt;}
._27{width:6.624000pt;}
._14{width:7.577600pt;}
._3{width:8.678400pt;}
._13{width:9.676800pt;}
._1c{width:11.622400pt;}
._1d{width:12.544000pt;}
._1f{width:13.529600pt;}
._16{width:17.081600pt;}
._7{width:18.813568pt;}
._11{width:19.756800pt;}
._c{width:20.652800pt;}
._10{width:22.636800pt;}
._f{width:23.590400pt;}
._23{width:24.480000pt;}
._1e{width:25.990400pt;}
._21{width:27.053824pt;}
._b{width:28.236800pt;}
._20{width:29.222400pt;}
._1a{width:30.816000pt;}
._12{width:35.289600pt;}
._24{width:37.478400pt;}
._15{width:40.928000pt;}
._8{width:44.793600pt;}
._26{width:50.387200pt;}
._5{width:51.705600pt;}
._18{width:54.252800pt;}
._25{width:60.358400pt;}
._17{width:66.604800pt;}
._4{width:68.352000pt;}
._22{width:72.787200pt;}
._1{width:1717.867136pt;}
._1b{width:2683.465728pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:149.760000pt;}
.fs6{font-size:162.560000pt;}
.fs5{font-size:192.000000pt;}
.y7{bottom:-4.426667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.520000pt;}
.y8{bottom:6.133333pt;}
.y6{bottom:6.453333pt;}
.y23{bottom:15.466667pt;}
.y25{bottom:17.440000pt;}
.y2{bottom:52.160000pt;}
.y3{bottom:56.000000pt;}
.y21{bottom:109.440000pt;}
.y6c{bottom:111.360000pt;}
.y51{bottom:114.240000pt;}
.y20{bottom:125.760000pt;}
.y6b{bottom:127.680000pt;}
.y50{bottom:130.560000pt;}
.y1f{bottom:141.760000pt;}
.y6a{bottom:143.680000pt;}
.y4f{bottom:146.560000pt;}
.y1e{bottom:158.080000pt;}
.y69{bottom:160.000000pt;}
.y4e{bottom:162.880000pt;}
.y1d{bottom:174.400000pt;}
.y68{bottom:176.320000pt;}
.y4d{bottom:178.880000pt;}
.y1c{bottom:190.400000pt;}
.y67{bottom:192.320000pt;}
.y4c{bottom:195.200000pt;}
.y1b{bottom:206.720000pt;}
.y66{bottom:208.640000pt;}
.y4b{bottom:211.520000pt;}
.yaf{bottom:215.040000pt;}
.y1a{bottom:222.720000pt;}
.y65{bottom:224.960000pt;}
.y4a{bottom:227.520000pt;}
.y7f{bottom:230.080000pt;}
.y19{bottom:239.040000pt;}
.y64{bottom:240.960000pt;}
.y49{bottom:243.840000pt;}
.y18{bottom:255.360000pt;}
.y63{bottom:257.280000pt;}
.y48{bottom:260.160000pt;}
.y17{bottom:271.360000pt;}
.y62{bottom:273.280000pt;}
.y47{bottom:276.160000pt;}
.yae{bottom:281.280000pt;}
.y16{bottom:287.680000pt;}
.y61{bottom:289.600000pt;}
.yad{bottom:291.840000pt;}
.y46{bottom:292.480000pt;}
.yac{bottom:302.080000pt;}
.y15{bottom:304.000000pt;}
.y60{bottom:305.920000pt;}
.y45{bottom:308.480000pt;}
.yab{bottom:314.560000pt;}
.y14{bottom:320.000000pt;}
.y5f{bottom:321.920000pt;}
.y44{bottom:324.800000pt;}
.yaa{bottom:332.480000pt;}
.y13{bottom:336.320000pt;}
.y5e{bottom:338.240000pt;}
.y43{bottom:341.120000pt;}
.ya9{bottom:350.400000pt;}
.y12{bottom:352.320000pt;}
.y5d{bottom:354.560000pt;}
.y42{bottom:357.120000pt;}
.ya8{bottom:368.320000pt;}
.y11{bottom:368.640000pt;}
.y5c{bottom:370.560000pt;}
.y41{bottom:373.440000pt;}
.y10{bottom:384.960000pt;}
.ya7{bottom:386.560000pt;}
.y5b{bottom:386.880000pt;}
.y40{bottom:389.760000pt;}
.yf{bottom:400.960000pt;}
.y5a{bottom:402.880000pt;}
.ya6{bottom:403.840000pt;}
.y3f{bottom:405.760000pt;}
.y24{bottom:412.000000pt;}
.y22{bottom:413.333333pt;}
.ye{bottom:417.280000pt;}
.ya5{bottom:418.560000pt;}
.y59{bottom:419.200000pt;}
.y3e{bottom:422.080000pt;}
.yd{bottom:433.600000pt;}
.y58{bottom:435.520000pt;}
.y3d{bottom:438.080000pt;}
.ya4{bottom:448.320000pt;}
.yc{bottom:449.600000pt;}
.y57{bottom:451.520000pt;}
.y3c{bottom:454.400000pt;}
.ya3{bottom:463.360000pt;}
.y56{bottom:466.560000pt;}
.y3b{bottom:470.720000pt;}
.y55{bottom:477.440000pt;}
.ya2{bottom:478.080000pt;}
.yb{bottom:481.600000pt;}
.y3a{bottom:486.720000pt;}
.y54{bottom:488.000000pt;}
.ya1{bottom:492.800000pt;}
.ya{bottom:496.640000pt;}
.y53{bottom:498.880000pt;}
.y39{bottom:503.040000pt;}
.y52{bottom:507.200000pt;}
.ya0{bottom:507.840000pt;}
.y38{bottom:519.360000pt;}
.y9f{bottom:522.560000pt;}
.y37{bottom:535.360000pt;}
.y9e{bottom:537.600000pt;}
.y36{bottom:551.680000pt;}
.y9d{bottom:552.320000pt;}
.y7e{bottom:555.520000pt;}
.y9c{bottom:567.040000pt;}
.y35{bottom:567.680000pt;}
.y7d{bottom:571.520000pt;}
.y9b{bottom:582.080000pt;}
.y34{bottom:584.000000pt;}
.y7c{bottom:587.840000pt;}
.y9a{bottom:596.800000pt;}
.y33{bottom:599.040000pt;}
.y7b{bottom:604.160000pt;}
.y32{bottom:609.600000pt;}
.y99{bottom:611.840000pt;}
.y7a{bottom:620.160000pt;}
.y31{bottom:620.480000pt;}
.y98{bottom:626.560000pt;}
.y30{bottom:631.360000pt;}
.y79{bottom:636.480000pt;}
.y2f{bottom:639.680000pt;}
.y97{bottom:641.280000pt;}
.y78{bottom:652.800000pt;}
.y96{bottom:656.320000pt;}
.y77{bottom:668.800000pt;}
.y95{bottom:671.040000pt;}
.y76{bottom:685.120000pt;}
.y94{bottom:686.080000pt;}
.y93{bottom:700.800000pt;}
.y75{bottom:701.120000pt;}
.y92{bottom:715.520000pt;}
.y74{bottom:717.440000pt;}
.y91{bottom:730.560000pt;}
.y73{bottom:733.760000pt;}
.y90{bottom:745.280000pt;}
.y72{bottom:748.480000pt;}
.y71{bottom:759.360000pt;}
.y8f{bottom:760.320000pt;}
.y70{bottom:770.240000pt;}
.y8e{bottom:775.040000pt;}
.y6f{bottom:781.120000pt;}
.y8d{bottom:789.760000pt;}
.y6e{bottom:791.680000pt;}
.y6d{bottom:800.000000pt;}
.y8c{bottom:804.800000pt;}
.y8b{bottom:819.520000pt;}
.y8a{bottom:834.560000pt;}
.y89{bottom:849.280000pt;}
.y88{bottom:864.320000pt;}
.y87{bottom:879.040000pt;}
.y2e{bottom:884.480000pt;}
.y86{bottom:893.760000pt;}
.y2d{bottom:900.800000pt;}
.y85{bottom:908.800000pt;}
.y2c{bottom:917.120000pt;}
.y84{bottom:923.520000pt;}
.y2b{bottom:933.120000pt;}
.y83{bottom:938.560000pt;}
.y2a{bottom:949.440000pt;}
.y82{bottom:953.280000pt;}
.y29{bottom:965.760000pt;}
.y81{bottom:968.000000pt;}
.y9{bottom:968.320000pt;}
.y28{bottom:981.760000pt;}
.y80{bottom:983.040000pt;}
.y27{bottom:998.080000pt;}
.y26{bottom:1014.080000pt;}
.y5{bottom:1054.666667pt;}
.y1{bottom:1060.800000pt;}
.h3{height:13.333333pt;}
.h5{height:14.666667pt;}
.hd{height:25.846250pt;}
.h4{height:26.169600pt;}
.h7{height:29.411250pt;}
.hc{height:39.243750pt;}
.hb{height:40.997500pt;}
.h2{height:42.656250pt;}
.h8{height:49.333333pt;}
.ha{height:50.666667pt;}
.h6{height:122.353920pt;}
.h9{height:127.968750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:28.000000pt;}
.w5{width:49.333333pt;}
.w3{width:162.933333pt;}
.w4{width:241.333333pt;}
.w6{width:242.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:9.040011pt;}
.x4{left:19.106763pt;}
.x3{left:45.333333pt;}
.xe{left:47.666656pt;}
.x19{left:49.175456pt;}
.x21{left:50.107104pt;}
.x18{left:53.425440pt;}
.x22{left:55.200832pt;}
.x15{left:60.000000pt;}
.x20{left:64.175456pt;}
.x11{left:67.000000pt;}
.x10{left:68.841152pt;}
.x12{left:91.666656pt;}
.xd{left:96.541344pt;}
.x7{left:119.326613pt;}
.x23{left:164.026368pt;}
.x6{left:168.175573pt;}
.x8{left:181.333333pt;}
.x1{left:187.639968pt;}
.x1a{left:200.485344pt;}
.x2{left:212.306656pt;}
.x17{left:219.266592pt;}
.x14{left:228.386773pt;}
.xa{left:265.796864pt;}
.xc{left:309.459648pt;}
.x16{left:389.400000pt;}
.xf{left:402.866560pt;}
.x27{left:404.733440pt;}
.x1d{left:406.176640pt;}
.x1e{left:410.413760pt;}
.x1f{left:416.182080pt;}
.x1c{left:418.301760pt;}
.x24{left:450.466560pt;}
.x13{left:510.666667pt;}
.x25{left:577.248640pt;}
.x5{left:630.666667pt;}
.x26{left:640.576640pt;}
.xb{left:741.446720pt;}
.x1b{left:745.600000pt;}
}




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